SOC: Smartbond: Add DA14695

This commits adds the DA14695 variant.
The main difference with the DA14699 is a smaller package with less
GPIO.

Signed-off-by: Niek Ilmer <niek.ilmer.aj@renesas.com>
This commit is contained in:
Niek Ilmer 2023-06-22 15:08:49 +02:00 committed by Carles Cufí
commit 9e6b1d5ba6
3 changed files with 25 additions and 1 deletions

View file

@ -0,0 +1,12 @@
/* Copyright (c) 2023 Renesas Electronics Corporation and/or its affiliates */
/* SPDX-License-Identifier: Apache-2.0 */
#include "da1469x.dtsi"
&sram0 {
reg = <0x20000000 DT_SIZE_K(512)>;
};
&gpio1 {
ngpios = <12>;
};

View file

@ -0,0 +1,9 @@
# Copyright (c) 2023 Renesas Electronics Corporation and/or its affiliates
# SPDX-License-Identifier: Apache-2.0
if SOC_DA14695
config SOC
default "da14695"
endif # SOC_DA14695

View file

@ -1,4 +1,4 @@
# Copyright (c) 2022 Renesas Electronics Corporation
# Copyright (c) 2022-2023 Renesas Electronics Corporation and/or its affiliates
# SPDX-License-Identifier: Apache-2.0
choice
@ -8,4 +8,7 @@ choice
config SOC_DA14699
bool "DA14699"
config SOC_DA14695
bool "DA14695"
endchoice