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

silabs: siwg917: Fix memory definitions #25

Merged
merged 1 commit into from
Aug 8, 2024

Conversation

jhedberg
Copy link
Collaborator

@jhedberg jhedberg commented Jul 30, 2024

Fix the unit path definitions for flash and RAM, and make sure the board
yaml file is in sync with DTS.

@jhedberg jhedberg requested a review from jerome-pouiller July 30, 2024 07:36
@jhedberg jhedberg self-assigned this Jul 30, 2024
@jhedberg jhedberg changed the title dts: silabs: siwg917: Fix memory definitions silabs: siwg917: Fix memory definitions Jul 31, 2024
@jhedberg jhedberg requested a review from asmellby July 31, 2024 15:46
@jhedberg
Copy link
Collaborator Author

jhedberg commented Aug 8, 2024

@jerome-pouiller any comments on this one? Making the DT node unit path match the reg property should hopefully be non-controversial, since upstream CI will fail otherwise. As for the indicated amount of RAM, I took that from the 917 specs (there are configurations supporting more, but going with the lowest RAM config should be a safe choice for now).

@jerome-pouiller
Copy link
Contributor

I believe I have copied the memory addresses from the linker file of WiseConnect. I am going to check that this morning.

@jhedberg
Copy link
Collaborator Author

jhedberg commented Aug 8, 2024

I believe I have copied the memory addresses from the linker file of WiseConnect. I am going to check that this morning.

Note that I'm not really changing the addresses, rather just making sure that the DT node unit address is in sync with the reg property. Generally, it's the reg property value that gets used (which I'm not changing), so syncing the unit address with it shouldn't make any other difference except making DTS syntax checkers happy.

@jhedberg
Copy link
Collaborator Author

jhedberg commented Aug 8, 2024

I believe I have copied the memory addresses from the linker file of WiseConnect. I am going to check that this morning.

Note that I'm not really changing the addresses, rather just making sure that the DT node unit address is in sync with the reg property. Generally, it's the reg property value that gets used (which I'm not changing), so syncing the unit address with it shouldn't make any other difference except making DTS syntax checkers happy.

Sorry, I realized that I am actually changing reg for the other node here. However, at least in my testing I didn't see any breakage.

@jerome-pouiller
Copy link
Contributor

jerome-pouiller commented Aug 8, 2024

In my WiseConnect linker file, I have found:

 MEMORY
 {
   rom   (rx)  : ORIGIN = 0x81c2000, LENGTH = 0x6e000
   ram   (rwx) : ORIGIN = 0xc, LENGTH = 0x2fc00
   psram (rwx) : ORIGIN = 0xa000000, LENGTH = 0x800000
 }
 MEMORY
 {
   udma0   (rwx)  : ORIGIN = 0x2fc00, LENGTH = 0x400
   udma1   (rwx)  : ORIGIN = 0x24061c00, LENGTH = 0x400
 }

0x2fc00 == 191kB. Probably we could use <0 DT_SIZE_K(192)> and properly declare udma0. However, for now I am not super comfortable with this change.

@jhedberg
Copy link
Collaborator Author

jhedberg commented Aug 8, 2024

0x2fc00 == 191kB. Probably we could use <0 DT_SIZE_K(192)> and properly declare udma0. However, for now I am not super comfortable with this change.

Ok, but then at least the unit address needs fixing, i.e. it should be memory@0 instead of memory@400

@jhedberg
Copy link
Collaborator Author

jhedberg commented Aug 8, 2024

0x2fc00 == 191kB. Probably we could use <0 DT_SIZE_K(192)> and properly declare udma0. However, for now I am not super comfortable with this change.

Ok, but then at least the unit address needs fixing, i.e. it should be memory@0 instead of memory@400

@jerome-pouiller now updated, please take another look

Fix the unit path definitions for flash and RAM, and make sure the board
yaml file is in sync with DTS.

Signed-off-by: Johan Hedberg <johan.hedberg@silabs.com>
@jhedberg jhedberg merged commit d933a52 into SiliconLabsSoftware:main Aug 8, 2024
8 checks passed
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.

2 participants