Skip to content
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

Draft
wants to merge 28 commits into
base: main
Choose a base branch
from

Conversation

Pacsort17
Copy link

/!\ 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.

  • One main class, Peripheral, describing a peripheral with only a memory field (offset + length). Two subclasses (AOPeripherals and OnOffPeripherals) extend form it, to describe two different type of peripherals (mandatory ones and not mandatory).
  • Another class, DataConfiguration, acts as an interface (in Java) to add the possibility of linking a configuration .hjson file to a peripheral.
  • When creating a peripheral, only the offset should be configured by the user.
  • X_Heep object works with dictionaries of periph_name -> Periph_Object() | None, then converts it to a json-like string (compatibility reasons with hjson's comnfiguration)

Big changes :

  • Adding peripheral.py (one class per peripheral + a bunch of util functions)
  • Editing mcu_gen.py and system.py -> adding a way to add peripherals from python config() file, and checks that user's configuration is legal (everything is then cast to the same format as hjson's configuration, thus kwargs at the end of mcu_gen.py should be coherent between python configuration and hjson configuration)
  • Editingt structs_periph_gen.py (and makefile) -> creates an x_heep object to take peripheral config from python config

Current issues :

  • dma_ch_count is et to 256 instead of 100 (translates 100 to it's decimal reprensentation)
  • Peripheral memory domains are not hard-coded (should be set to a specific value and don't move)
  • auto_peripheral argument should be added to overide argument
  • Check that peripheral domains don't overlap with other domains (not currently useful if peripherals memory domains are hard-coded)
  • Opentitan should be used for configuration
  • No test (add, for different configurations, a test that checks if kwargs are the same for either hjson's configuration and python configuration)

@davidmallasen davidmallasen marked this pull request as draft March 19, 2025 10:01
@davidmallasen davidmallasen changed the title feat:fix: add global python config structure, clean merge with curren… X-HEEP Generator - Adding peripherals to the mcu-gen flow Mar 19, 2025
@davidmallasen
Copy link
Member

@Pacsort17 remember to update the description of the PR and add the corresponding documentation to the docs folder too. There you can also describe the automation and checks that you are adding to the system to ease the user's work. This will bring more value and visibility to your work

@@ -0,0 +1,55 @@
name: Test peripherals (Same output between hjson and python configuration)
Copy link
Member

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
Copy link
Member

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)
Copy link
Member

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.

Copy link
Member

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.
Copy link
Member

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants