soc: nordic_nrf: Add nRF52833 QDAA variant
This variant has fewer pins. Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
This commit is contained in:
parent
b140963557
commit
acb8f6bf0b
3 changed files with 43 additions and 0 deletions
23
dts/arm/nordic/nrf52833_qdaa.dtsi
Normal file
23
dts/arm/nordic/nrf52833_qdaa.dtsi
Normal file
|
@ -0,0 +1,23 @@
|
|||
/*
|
||||
* Copyright (c) 2023 Nordic Semiconductor ASA
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <mem.h>
|
||||
#include <nordic/nrf52833.dtsi>
|
||||
|
||||
&flash0 {
|
||||
reg = <0x00000000 DT_SIZE_K(512)>;
|
||||
};
|
||||
|
||||
&sram0 {
|
||||
reg = <0x20000000 DT_SIZE_K(128)>;
|
||||
};
|
||||
|
||||
/ {
|
||||
soc {
|
||||
compatible = "nordic,nRF52833-QDAA", "nordic,nRF52833",
|
||||
"nordic,nRF52", "simple-bus";
|
||||
};
|
||||
};
|
16
soc/arm/nordic_nrf/nrf52/Kconfig.defconfig.nrf52833_QDAA
Normal file
16
soc/arm/nordic_nrf/nrf52/Kconfig.defconfig.nrf52833_QDAA
Normal file
|
@ -0,0 +1,16 @@
|
|||
# Nordic Semiconductor nRF52833 MCU
|
||||
|
||||
# Copyright (c) 2023 Nordic Semiconductor ASA
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if SOC_NRF52833_QDAA
|
||||
|
||||
config SOC
|
||||
string
|
||||
default "nRF52833_QDAA"
|
||||
|
||||
config NUM_IRQS
|
||||
int
|
||||
default 48
|
||||
|
||||
endif # SOC_NRF52833_QDAA
|
|
@ -64,6 +64,10 @@ config SOC_NRF52832_QFAB
|
|||
bool "NRF52832_QFAB"
|
||||
select SOC_NRF52832
|
||||
|
||||
config SOC_NRF52833_QDAA
|
||||
bool "NRF52833_QDAA"
|
||||
select SOC_NRF52833
|
||||
|
||||
config SOC_NRF52833_QIAA
|
||||
bool "NRF52833_QIAA"
|
||||
select SOC_NRF52833
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue