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:
Carles Cufi 2023-07-26 16:39:57 +02:00 committed by Fabio Baltieri
commit acb8f6bf0b
3 changed files with 43 additions and 0 deletions

View 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";
};
};

View 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

View file

@ -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