Skip to content

Commit abca917

Browse files
tejlmandcarlescufi
authored andcommitted
boards: board dts and defconfig file adjustments
Adjustments of dts and defconfig files to adjust for the MERGE removal. The revert of MERGE requires specific dts and defconfig files for boards which relied on the MERGE feature. Signed-off-by: Torsten Rasmussen <Torsten.Rasmussen@nordicsemi.no>
1 parent 4e3a01d commit abca917

19 files changed

+111
-32
lines changed

boards/arm/mps2/mps2_an521_cpu0_ns_defconfig

+11-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,18 @@
44
# SPDX-License-Identifier: Apache-2.0
55
#
66

7+
CONFIG_RUNTIME_NMI=y
8+
CONFIG_ARM_TRUSTZONE_M=y
9+
CONFIG_ARM_MPU=y
710
CONFIG_QEMU_ICOUNT_SHIFT=6
811

12+
# GPIOs
13+
CONFIG_GPIO=y
14+
15+
# Serial
16+
CONFIG_CONSOLE=y
17+
CONFIG_UART_CONSOLE=y
18+
CONFIG_SERIAL=y
19+
920
# Build a non-secure firmware image
10-
CONFIG_TRUSTED_EXECUTION_SECURE=n
1121
CONFIG_TRUSTED_EXECUTION_NONSECURE=y

boards/intel/adsp/intel_adsp_cavs25_tgph_defconfig

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ CONFIG_2ND_LEVEL_INTERRUPTS=y
1717
CONFIG_BUILD_OUTPUT_BIN=n
1818

1919
CONFIG_MP_MAX_NUM_CPUS=2
20-
CONFIG_CORE_COUNT=2
2120

2221
CONFIG_DCACHE_LINE_SIZE=64
2322

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/*
2+
* Copyright (c) 2023 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
#include "../native_sim/native_sim.dts"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
3+
CONFIG_CONSOLE=y
4+
CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=1000000
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/*
2+
* Copyright (c) 2023 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
#include "native_sim.dts"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
3+
CONFIG_CONSOLE=y
4+
CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=1000000
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/*
2+
* Copyright (c) 2024 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
#include "nrf54h20dk_nrf54h20_cpuppr.dts"

boards/nxp/lpcxpresso55s69/lpcxpresso55s69_defconfig

-12
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
# Copyright 2018 Foundries.io Ltd
3+
4+
CONFIG_GPIO=y
5+
CONFIG_PINCTRL=y
6+
CONFIG_SERIAL=y
7+
CONFIG_CONSOLE=y
8+
CONFIG_UART_CONSOLE=y
9+
CONFIG_UART_INTERRUPT_DRIVEN=y
10+
CONFIG_MULTI_LEVEL_INTERRUPTS=y
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/* SPDX-License-Identifier: Apache-2.0 */
2+
3+
/dts-v1/;
4+
5+
#include <virt.dtsi>
6+
7+
/ {
8+
chosen {
9+
zephyr,console = &uart0;
10+
zephyr,shell-uart = &uart0;
11+
zephyr,sram = &ram0;
12+
};
13+
};
14+
15+
&uart0 {
16+
status = "okay";
17+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/* Copyright (c) 2019 BayLibre SAS */
2+
/* SPDX-License-Identifier: Apache-2.0 */
3+
4+
/dts-v1/;
5+
6+
#include <virt.dtsi>
7+
8+
/ {
9+
chosen {
10+
zephyr,console = &uart0;
11+
zephyr,shell-uart = &uart0;
12+
zephyr,sram = &ram0;
13+
};
14+
};
15+
16+
&uart0 {
17+
status = "okay";
18+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Sipeed longan nano Development Board Configuration
2+
#
3+
# Copyright (c) 2021 Tokita, Hiroshi <tokita.hiroshi@gmail.com>
4+
#
5+
# SPDX-License-Identifier: Apache-2.0
6+
7+
CONFIG_GD32_HXTAL_8MHZ=y
8+
9+
CONFIG_SERIAL=y
10+
CONFIG_UART_INTERRUPT_DRIVEN=y
11+
12+
CONFIG_CONSOLE=y
13+
CONFIG_UART_CONSOLE=y
14+
15+
CONFIG_GPIO=y

boards/snps/em_starterkit/em_starterkit_defconfig

-14
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
CONFIG_SYS_CLOCK_TICKS_PER_SEC=100
4-
CONFIG_XIP=n
5-
CONFIG_BUILD_NO_GAP_FILL=y
64
CONFIG_BUILD_OUTPUT_BIN=n
75
CONFIG_ARCV2_INTERRUPT_UNIT=y
86
CONFIG_ARCV2_TIMER=y
97
CONFIG_CONSOLE=y
108
CONFIG_UART_CONSOLE=y
119
CONFIG_SERIAL=y
12-
CONFIG_UART_INTERRUPT_DRIVEN=y
1310
CONFIG_ARC_MPU_ENABLE=y
14-
CONFIG_GPIO=y
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/*
2+
* Copyright (c) 2023, Fabian Blatz <fabianblatz@gmail.com>
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
&sdl_dc {
8+
compatible = "zephyr,sdl-dc";
9+
height = <272>;
10+
width = <480>;
11+
};

0 commit comments

Comments
 (0)