-
Notifications
You must be signed in to change notification settings - Fork 6.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The newer HWMv2 impose a different semantic in the family names. This update from SOC_FAMILY_SAMx to SOC_FAMILY_ATMEL_SAMx to comply with. Fixes #69046 Signed-off-by: Gerson Fernando Budke <[email protected]>
- Loading branch information
Showing
35 changed files
with
57 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# Copyright (c) 2024 Gerson Fernando Budke <[email protected]> | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
config SOC_FAMILY_SAM | ||
config SOC_FAMILY_ATMEL_SAM | ||
select ASF | ||
select HAS_SEGGER_RTT if ZEPHYR_SEGGER_MODULE | ||
|
||
if SOC_FAMILY_SAM | ||
if SOC_FAMILY_ATMEL_SAM | ||
|
||
rsource "*/Kconfig" | ||
|
||
endif # SOC_FAMILY_SAM | ||
endif # SOC_FAMILY_ATMEL_SAM |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
# Copyright (c) 2024 Gerson Fernando Budke <[email protected]> | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
if SOC_FAMILY_SAM | ||
if SOC_FAMILY_ATMEL_SAM | ||
|
||
rsource "*/Kconfig.defconfig" | ||
|
||
|
@@ -23,4 +23,4 @@ config SYS_CLOCK_HW_CYCLES_PER_SEC | |
config WATCHDOG | ||
default y | ||
|
||
endif # SOC_FAMILY_SAM | ||
endif # SOC_FAMILY_ATMEL_SAM |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# Copyright (c) 2024 Gerson Fernando Budke <[email protected]> | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
config SOC_FAMILY_SAM | ||
config SOC_FAMILY_ATMEL_SAM | ||
bool | ||
|
||
config SOC_FAMILY | ||
default "atmel_sam" if SOC_FAMILY_SAM | ||
default "atmel_sam" if SOC_FAMILY_ATMEL_SAM | ||
|
||
rsource "*/Kconfig.soc" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# Copyright (c) 2024 Gerson Fernando Budke <[email protected]> | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
if SOC_FAMILY_SAM && !SOC_SERIES_SAM4L | ||
if SOC_FAMILY_ATMEL_SAM && !SOC_SERIES_SAM4L | ||
|
||
menu "Clocks" | ||
|
||
|
@@ -93,4 +93,4 @@ config SOC_ATMEL_SAM_DISABLE_ERASE_PIN | |
option will switch the pin to general IO mode giving control of the | ||
pin to the GPIO module. | ||
|
||
endif # SOC_FAMILY_SAM && !SOC_SERIES_SAM4L | ||
endif # SOC_FAMILY_ATMEL_SAM && !SOC_SERIES_SAM4L |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,13 +4,13 @@ | |
# Copyright (c) 2024 Gerson Fernando Budke <[email protected]> | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
config SOC_FAMILY_SAM0 | ||
config SOC_FAMILY_ATMEL_SAM0 | ||
select ASF | ||
select HAS_SEGGER_RTT if ZEPHYR_SEGGER_MODULE | ||
|
||
if SOC_FAMILY_SAM0 | ||
if SOC_FAMILY_ATMEL_SAM0 | ||
|
||
rsource "common/Kconfig.sam*" | ||
rsource "*/Kconfig" | ||
|
||
endif # SOC_FAMILY_SAM0 | ||
endif # SOC_FAMILY_ATMEL_SAM0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
# Copyright (c) 2024 Gerson Fernando Budke <[email protected]> | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
if SOC_FAMILY_SAM0 | ||
if SOC_FAMILY_ATMEL_SAM0 | ||
|
||
rsource "*/Kconfig.defconfig" | ||
|
||
|
@@ -27,4 +27,4 @@ config HEAP_MEM_POOL_ADD_SIZE_SOC | |
|
||
endif # USB_DEVICE_DRIVER | ||
|
||
endif # SOC_FAMILY_SAM0 | ||
endif # SOC_FAMILY_ATMEL_SAM0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,20 +2,20 @@ | |
# Copyright (c) 2022-2024 Gerson Fernando Budke <[email protected]> | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
config SOC_FAMILY_SAM0 | ||
config SOC_FAMILY_ATMEL_SAM0 | ||
bool | ||
|
||
config SOC_FAMILY | ||
default "atmel_sam0" if SOC_FAMILY_SAM0 | ||
default "atmel_sam0" if SOC_FAMILY_ATMEL_SAM0 | ||
|
||
config SOC_SERIES_REVISION_N | ||
bool | ||
depends on SOC_FAMILY_SAM0 | ||
depends on SOC_FAMILY_ATMEL_SAM0 | ||
|
||
config SOC_SERIES_REVISION | ||
string | ||
default "n" if SOC_SERIES_REVISION_N | ||
default "" | ||
depends on SOC_FAMILY_SAM0 | ||
depends on SOC_FAMILY_ATMEL_SAM0 | ||
|
||
rsource "*/Kconfig.soc" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.