1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2026-01-01 01:41:18 +01:00

Merge pull request #14343 from leandrolanzieri/pr/kconfig/cc2538_based_symbols

boards/cc2538-based: Model features in Kconfig
This commit is contained in:
Francisco 2020-06-25 13:20:58 +02:00 committed by GitHub
commit c0d171a0a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 193 additions and 1 deletions

19
boards/cc2538dk/Kconfig Normal file
View File

@ -0,0 +1,19 @@
# Copyright (c) 2020 HAW Hamburg
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
config BOARD
default "cc2538dk" if BOARD_CC2538DK
config BOARD_CC2538DK
bool
default y
select CPU_MODEL_CC2538NF53
select HAS_PERIPH_ADC
select HAS_PERIPH_I2C
select HAS_PERIPH_SPI
select HAS_PERIPH_TIMER
select HAS_PERIPH_UART
select HAS_EMULATOR_RENODE

View File

@ -0,0 +1,17 @@
# Copyright (c) 2020 HAW Hamburg
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
#
config BOARD_COMMON_REMOTE
bool
default y
select CPU_MODEL_CC2538SF53
select HAS_PERIPH_ADC
select HAS_PERIPH_I2C
select HAS_PERIPH_RTT
select HAS_PERIPH_SPI
select HAS_PERIPH_TIMER
select HAS_PERIPH_UART

15
boards/firefly/Kconfig Normal file
View File

@ -0,0 +1,15 @@
# Copyright (c) 2020 HAW Hamburg
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
config BOARD
default "firefly" if BOARD_FIREFLY
config BOARD_FIREFLY
bool
default y
select BOARD_COMMON_REMOTE
source "$(RIOTBOARD)/common/remote/Kconfig"

19
boards/openmote-b/Kconfig Normal file
View File

@ -0,0 +1,19 @@
# Copyright (c) 2020 HAW Hamburg
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
config BOARD
default "openmote-b" if BOARD_OPENMOTE_B
config BOARD_OPENMOTE_B
bool
default y
select CPU_MODEL_CC2538SF53
select HAS_PERIPH_ADC
select HAS_PERIPH_I2C
select HAS_PERIPH_RTT
select HAS_PERIPH_SPI
select HAS_PERIPH_TIMER
select HAS_PERIPH_UART

View File

@ -0,0 +1,18 @@
# Copyright (c) 2020 HAW Hamburg
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
config BOARD
default "openmote-cc2538" if BOARD_OPENMOTE_CC2538
config BOARD_OPENMOTE_CC2538
bool
default y
select CPU_MODEL_CC2538SF53
select HAS_PERIPH_ADC
select HAS_PERIPH_I2C
select HAS_PERIPH_SPI
select HAS_PERIPH_TIMER
select HAS_PERIPH_UART

15
boards/remote-pa/Kconfig Normal file
View File

@ -0,0 +1,15 @@
# Copyright (c) 2020 HAW Hamburg
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
config BOARD
default "remote-pa" if BOARD_REMOTE_PA
config BOARD_REMOTE_PA
bool
default y
select BOARD_COMMON_REMOTE
source "$(RIOTBOARD)/common/remote/Kconfig"

View File

@ -0,0 +1,15 @@
# Copyright (c) 2020 HAW Hamburg
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
config BOARD
default "remote-reva" if BOARD_REMOTE_REVA
config BOARD_REMOTE_REVA
bool
default y
select BOARD_COMMON_REMOTE
source "$(RIOTBOARD)/common/remote/Kconfig"

View File

@ -0,0 +1,15 @@
# Copyright (c) 2020 HAW Hamburg
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
config BOARD
default "remote-revb" if BOARD_REMOTE_REVB
config BOARD_REMOTE_REVB
bool
default y
select BOARD_COMMON_REMOTE
source "$(RIOTBOARD)/common/remote/Kconfig"

46
cpu/cc2538/Kconfig Normal file
View File

@ -0,0 +1,46 @@
# Copyright (c) 2020 HAW Hamburg
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
#
config CPU_FAM_CC2538
bool
select CPU_CORE_CORTEX_M3
select HAS_CPU_CC2538
select HAS_PERIPH_CPUID
select HAS_PERIPH_GPIO
select HAS_PERIPH_GPIO_IRQ
select HAS_PERIPH_HWRNG
select HAS_PERIPH_UART_MODECFG
select HAS_CORTEXM_MPU
select HAS_PUF_SRAM
## CPU Models
config CPU_MODEL_CC2538NF53
bool
select CPU_FAM_CC2538
config CPU_MODEL_CC2538SF53
bool
select CPU_FAM_CC2538
## Definition of specific features
config HAS_CPU_CC2538
bool
help
Indicates that a 'cc2538' cpu is being used.
## Common CPU symbols
config CPU_FAM
default "cc2538" if CPU_FAM_CC2538
config CPU_MODEL
default "cc2538nf53" if CPU_MODEL_CC2538NF53
default "cc2538sf53" if CPU_MODEL_CC2538SF53
config CPU
default "cc2538" if CPU_FAM_CC2538
source "$(RIOTCPU)/cortexm_common/Kconfig"

View File

@ -1,4 +1,5 @@
CPU_CORE = cortex-m3
CPU_FAM = cc2538
FEATURES_PROVIDED += periph_cpuid
FEATURES_PROVIDED += periph_gpio periph_gpio_irq
@ -8,4 +9,4 @@ FEATURES_PROVIDED += periph_uart_modecfg
FEATURES_PROVIDED += cortexm_mpu
FEATURES_PROVIDED += puf_sram
-include $(RIOTCPU)/cortexm_common/Makefile.features
include $(RIOTCPU)/cortexm_common/Makefile.features

View File

@ -57,6 +57,11 @@ config HAS_CPU_CHECK_ADDRESS
help
Indicates that address validity check is supported.
config HAS_EMULATOR_RENODE
bool
help
Indicates that the platform is compatible with the Renode emulator.
config HAS_ETHERNET
bool
help

View File

@ -12,11 +12,13 @@ BOARD_WHITELIST += arduino-duemilanove \
cc1312-launchpad \
cc1352-launchpad \
cc1352p-launchpad \
cc2538dk \
cc2650-launchpad \
cc2650stk \
chronos \
derfmega128 \
derfmega256 \
firefly \
hifive1 \
hifive1b \
ikea-tradfri \
@ -24,6 +26,11 @@ BOARD_WHITELIST += arduino-duemilanove \
microduino-corerf \
msb-430 \
msb-430h \
openmote-b \
openmote-cc2538 \
remote-pa \
remote-reva \
remote-revb \
samr21-xpro \
slstk3401a \
slstk3402a \