-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
X-HEEP Generator - Adding peripherals to the mcu-gen flow #679
base: main
Are you sure you want to change the base?
Conversation
…t version of x-heep project
…eral to OnOffPeripheral
@Pacsort17 remember to update the description of the PR and add the corresponding documentation to the |
…how many peripherals are added
@@ -0,0 +1,55 @@ | |||
name: Test peripherals (Same output between hjson and python configuration) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove the parenthesis
conda activate core-v-mini-mcu | ||
make clean-all | ||
|
||
# Targets |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wouldn't it be easier to do everything from here down in a python script? That way we could reuse this in a local way instead of only having it in the CI
# Peripherals | ||
peripheral_domain = system.configure_peripherals() | ||
# Only one input, offset of the peripheral in peripheral domain. If set to None, the offset will be automatically computed in system.validate() | ||
peripheral_domain.configure_rv_plic(0x00000000) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here and in the util/x_heep_gen
I don't understand why there is both the add peripheral and configure peripheral functions. I feel that having a specific configure for each peripheral is a huge redundancy. The information of the peripheral and its configuration should be in its own object instance. If not, you see here that you're only configuring the peripherals when in fact you are adding them. Obtaining or creating the peripheral should not be done inside the config peripheral of each peripheral but here explicitly and then using the add function.
For example, the system can have by default the base peripheral domain with some default values for the peripherals. It would also have the user peripheral domain completely empty. Then the user can add the peripherals that they want here. We can discuss this further if you see that there is a better way of doing this or if you see a usecase that I'm missing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file is getting a bit out of hand in size. Let's create a peripherals folder and have separate files for the different classes
Used to ease the use of peripherals, gets list from dictionnary and removes not instantiated peripherals. | ||
def get_user_peripherals(self): | ||
""" | ||
Returns a copy of the user peripherals, all modifications in the copy will not be recoreded. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I do not understand why you would want to do this, also with the deep copies. You don't use them in the python configuration scripts that you wrote. Let's keep things as simple as they have to be, no need to overengineer these classes
/!\ Currently not finished, but the overall structure is here /!\
Final goal : Being able to add and remove peripherals from python config() function
Overall structure for peripherals.
Big changes :
Current issues :