Merge pull request #14340 from leandrolanzieri/pr/kconfig/msp430_boards_symbols

boards/msp430-based: Model features in Kconfig
This commit is contained in:
Kevin "Tristate Tom" Weiss 2020-06-24 12:53:42 +02:00 committed by GitHub
commit 2d5901dd69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
16 changed files with 275 additions and 4 deletions

15
boards/chronos/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 "chronos" if BOARD_CHRONOS
config BOARD_CHRONOS
bool
default y
select CPU_MODEL_CC430F6137
select HAS_PERIPH_TIMER
select HAS_PERIPH_RTC

View File

@ -0,0 +1,11 @@
# 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_MSB_430
bool
default y
select CPU_MODEL_MSP430F1612

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 "wsn430" if BOARD_WSN430
config BOARD_COMMON_WSN430
bool
default y
select CPU_MODEL_MSP430F1611
select HAS_PERIPH_GPIO
select HAS_PERIPH_GPIO_IRQ
select HAS_PERIPH_TIMER
select HAS_PERIPH_SPI
select HAS_PERIPH_UART

21
boards/msb-430/Kconfig Normal file
View File

@ -0,0 +1,21 @@
# 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 "msb-430" if BOARD_MSB_430
config BOARD_MSB_430
bool
default y
select HAS_PERIPH_GPIO
select HAS_PERIPH_GPIO_IRQ
select HAS_PERIPH_SPI
select HAS_PERIPH_TIMER
select HAS_PERIPH_UART
select BOARD_COMMON_MSB_430
source "$(RIOTBOARD)/common/msb-430/Kconfig"

20
boards/msb-430h/Kconfig Normal file
View File

@ -0,0 +1,20 @@
# 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 "msb-430h" if BOARD_MSB_430H
config BOARD_MSB_430H
bool
default y
select HAS_PERIPH_GPIO
select HAS_PERIPH_GPIO_IRQ
select HAS_PERIPH_SPI
select HAS_PERIPH_TIMER
select HAS_PERIPH_UART
select BOARD_COMMON_MSB_430
source "$(RIOTBOARD)/common/msb-430/Kconfig"

18
boards/telosb/Kconfig Normal file
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 "telosb" if BOARD_TELOSB
config BOARD_TELOSB
bool
default y
select CPU_MODEL_MSP430F1611
select HAS_PERIPH_GPIO
select HAS_PERIPH_GPIO_IRQ
select HAS_PERIPH_SPI
select HAS_PERIPH_TIMER
select HAS_PERIPH_UART

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 "wsn430-v1_3b" if BOARD_WSN430_V1_3B
config BOARD_WSN430_V1_3B
bool
default y
select BOARD_COMMON_WSN430
source "$(RIOTBOARD)/common/wsn430/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 "wsn430-v1_4" if BOARD_WSN430_V1_4
config BOARD_WSN430_V1_4
bool
default y
select BOARD_COMMON_WSN430
source "$(RIOTBOARD)/common/wsn430/Kconfig"

18
boards/z1/Kconfig Normal file
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 "z1" if BOARD_Z1
config BOARD_Z1
bool
default y
select CPU_MODEL_MSP430F2617
select HAS_PERIPH_GPIO
select HAS_PERIPH_GPIO_IRQ
select HAS_PERIPH_SPI
select HAS_PERIPH_TIMER
select HAS_PERIPH_UART

View File

@ -1 +1,35 @@
# Copyright (c) 2020 Freie Universität Berlin
# 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_CC430
bool
select CPU_CORE_MSP430
select HAS_CPU_CC430
## CPU Models
config CPU_MODEL_CC430F6137
bool
select CPU_FAM_CC430
## Definition of specific features
config HAS_CPU_CC430
bool
help
Indicates that a 'cc430' cpu is being used.
## Common CPU symbols
config CPU_FAM
default "cc430" if CPU_FAM_CC430
config CPU_MODEL
default "cc430f6137" if CPU_MODEL_CC430F6137
config CPU
default "cc430" if CPU_FAM_CC430
source "$(RIOTCPU)/msp430_common/Kconfig" source "$(RIOTCPU)/msp430_common/Kconfig"

View File

@ -1 +1,3 @@
-include $(RIOTCPU)/msp430_common/Makefile.features CPU_FAM = cc430
include $(RIOTCPU)/msp430_common/Makefile.features

View File

@ -1,9 +1,37 @@
# Copyright (c) 2020 Freie Universitaet Berlin # Copyright (c) 2020 Freie Universitaet Berlin
# 2020 HAW Hamburg
# #
# This file is subject to the terms and conditions of the GNU Lesser # 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 # General Public License v2.1. See the file LICENSE in the top level
# directory for more details. # directory for more details.
# #
config CPU_ARCH_MSP430
bool
select HAS_ARCH_16BIT
select HAS_ARCH_MSP430
select HAS_PERIPH_FLASHPAGE
select HAS_PERIPH_FLASHPAGE_RAW
select HAS_PERIPH_PM
config CPU_CORE_MSP430
bool
select CPU_ARCH_MSP430
## Common CPU symbols
config CPU_ARCH
default "msp430" if CPU_ARCH_MSP430
config CPU_CORE
default "msp430" if CPU_CORE_MSP430
## Definition of specific features
config HAS_ARCH_MSP430
bool
help
Indicates that the current architecture is MSP430.
## Specific default configuration values
config GNRC_PKTBUF_SIZE config GNRC_PKTBUF_SIZE
default 2560 default 2560
depends on KCONFIG_MODULE_GNRC_PKTBUF_STATIC depends on KCONFIG_MODULE_GNRC_PKTBUF_STATIC

View File

@ -1,3 +1,6 @@
CPU_ARCH = msp430
CPU_CORE = msp430
FEATURES_PROVIDED += arch_16bit FEATURES_PROVIDED += arch_16bit
FEATURES_PROVIDED += arch_msp430 FEATURES_PROVIDED += arch_msp430
FEATURES_PROVIDED += periph_flashpage FEATURES_PROVIDED += periph_flashpage

View File

@ -1 +1,45 @@
# Copyright (c) 2020 Freie Universität Berlin
# 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_MSP430F
bool
select CPU_CORE_MSP430
select HAS_CPU_MSP430FXYZ
## CPU Models
config CPU_MODEL_MSP430F1611
bool
select CPU_FAM_MSP430F
config CPU_MODEL_MSP430F1612
bool
select CPU_FAM_MSP430F
config CPU_MODEL_MSP430F2617
bool
select CPU_FAM_MSP430F
## Definition of specific features
config HAS_CPU_MSP430FXYZ
bool
help
Indicates that an 'msp430fxyz' cpu is being used.
## Common CPU symbols
config CPU_FAM
default "msp430f" if CPU_FAM_MSP430F
config CPU_MODEL
default "msp430f1611" if CPU_MODEL_MSP430F1611
default "msp430f1612" if CPU_MODEL_MSP430F1612
default "msp430f2617" if CPU_MODEL_MSP430F2617
config CPU
default "msp430fxyz" if CPU_FAM_MSP430F
source "$(RIOTCPU)/msp430_common/Kconfig" source "$(RIOTCPU)/msp430_common/Kconfig"

View File

@ -1 +1,3 @@
-include $(RIOTCPU)/msp430_common/Makefile.features CPU_FAM = msp430f
include $(RIOTCPU)/msp430_common/Makefile.features

View File

@ -14,11 +14,14 @@ BOARD_WHITELIST += arduino-duemilanove \
cc1352p-launchpad \ cc1352p-launchpad \
cc2650-launchpad \ cc2650-launchpad \
cc2650stk \ cc2650stk \
chronos \
derfmega128 \ derfmega128 \
derfmega256 \ derfmega256 \
ikea-tradfri \ ikea-tradfri \
mega-xplained \ mega-xplained \
microduino-corerf \ microduino-corerf \
msb-430 \
msb-430h \
samr21-xpro \ samr21-xpro \
slstk3401a \ slstk3401a \
slstk3402a \ slstk3402a \
@ -27,8 +30,12 @@ BOARD_WHITELIST += arduino-duemilanove \
slwstk6000b-slwrb4162a \ slwstk6000b-slwrb4162a \
stk3600 \ stk3600 \
stk3700 \ stk3700 \
waspmote-pro telosb \
waspmote-pro \
wsn430-v1_3b \
wsn430-v1_4 \
z1
#
all: checks all: checks