Skip to content

Commit

Permalink
same70: patch: Fix SmcCs struct naming to match Zephyr driver
Browse files Browse the repository at this point in the history
Fixes a build failure when adding support for the SMC peripheral to the same70-dts.

Signed-off-by: Asgeir Stavik Hustad <[email protected]>
  • Loading branch information
Asgeir Stavik Hustad committed Sep 8, 2024
1 parent eb923c0 commit af7abaa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions asf/sam/include/same70/README
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ License Link:
https://www.apache.org/licenses/LICENSE-2.0

Patch List:
* Fix SmcCs struct naming to match Zephyr driver.
* Fix the GMAC priority queue registers to match the datasheet.
* Fix GMAC_SA register name.
* Fix XDMAC_CHID register name.
Expand Down
10 changes: 5 additions & 5 deletions asf/sam/include/same70/component/smc.h
Original file line number Diff line number Diff line change
Expand Up @@ -372,12 +372,12 @@ typedef struct {
__IO uint32_t SMC_PULSE; /**< (SMC_CS_NUMBER Offset: 0x04) SMC Pulse Register (CS_number = 0) */
__IO uint32_t SMC_CYCLE; /**< (SMC_CS_NUMBER Offset: 0x08) SMC Cycle Register (CS_number = 0) */
__IO uint32_t SMC_MODE; /**< (SMC_CS_NUMBER Offset: 0x0C) SMC MODE Register (CS_number = 0) */
} SmcCsNumber;
} SmcCs_number;

#define SMCCSNUMBER_NUMBER 4
#define SMCCS_NUMBER_NUMBER 4
/** \brief SMC hardware registers */
typedef struct {
SmcCsNumber SMC_CS_NUMBER[SMCCSNUMBER_NUMBER]; /**< Offset: 0x00 SMC Setup Register (CS_number = 0) */
SmcCs_number SMC_CS_NUMBER[SMCCS_NUMBER_NUMBER]; /**< Offset: 0x00 SMC Setup Register (CS_number = 0) */
__I uint8_t Reserved1[64];
__IO uint32_t SMC_OCMS; /**< (SMC Offset: 0x80) SMC OCMS MODE Register */
__O uint32_t SMC_KEY1; /**< (SMC Offset: 0x84) SMC OCMS KEY1 Register */
Expand All @@ -394,11 +394,11 @@ typedef struct {
__IO SMC_PULSE_Type SMC_PULSE; /**< Offset: 0x04 (R/W 32) SMC Pulse Register (CS_number = 0) */
__IO SMC_CYCLE_Type SMC_CYCLE; /**< Offset: 0x08 (R/W 32) SMC Cycle Register (CS_number = 0) */
__IO SMC_MODE_Type SMC_MODE; /**< Offset: 0x0C (R/W 32) SMC MODE Register (CS_number = 0) */
} SmcCsNumber;
} SmcCs_number;

/** \brief SMC hardware registers */
typedef struct {
SmcCsNumber SMC_CS_NUMBER[4]; /**< Offset: 0x00 SMC Setup Register (CS_number = 0) */
SmcCs_number SMC_CS_NUMBER[4]; /**< Offset: 0x00 SMC Setup Register (CS_number = 0) */
__I uint8_t Reserved1[64];
__IO SMC_OCMS_Type SMC_OCMS; /**< Offset: 0x80 (R/W 32) SMC OCMS MODE Register */
__O SMC_KEY1_Type SMC_KEY1; /**< Offset: 0x84 ( /W 32) SMC OCMS KEY1 Register */
Expand Down

0 comments on commit af7abaa

Please sign in to comment.