diff --git a/boards/vendor/custom_plank/Kconfig b/boards/vendor/custom_plank/Kconfig deleted file mode 100644 index 8cd0b5520..000000000 --- a/boards/vendor/custom_plank/Kconfig +++ /dev/null @@ -1,8 +0,0 @@ -# Copyright (c) 2021 Nordic Semiconductor ASA -# SPDX-License-Identifier: Apache-2.0 - -config BOARD_ENABLE_DCDC - bool "Enable DCDC mode" - select SOC_DCDC_NRF52X - default y - depends on BOARD_CUSTOM_PLANK diff --git a/boards/vendor/custom_plank/custom_plank.dts b/boards/vendor/custom_plank/custom_plank.dts index d5143a80b..2da3308f2 100644 --- a/boards/vendor/custom_plank/custom_plank.dts +++ b/boards/vendor/custom_plank/custom_plank.dts @@ -29,6 +29,14 @@ }; }; +®0 { + status = "okay"; +}; + +®1 { + regulator-initial-mode = ; +}; + &uicr { gpio-as-nreset; }; diff --git a/boards/vendor/custom_plank/pre_dt_board.cmake b/boards/vendor/custom_plank/pre_dt_board.cmake new file mode 100644 index 000000000..ded6fc3f7 --- /dev/null +++ b/boards/vendor/custom_plank/pre_dt_board.cmake @@ -0,0 +1,7 @@ +# Copyright (c) 2024 Nordic Semiconductor +# SPDX-License-Identifier: Apache-2.0 + +# Suppress "unique_unit_address_if_enabled" to handle the following overlaps: +# - power@40000000 & clock@40000000 & bprot@40000000 +# - acl@4001e000 & flash-controller@4001e000 +list(APPEND EXTRA_DTC_FLAGS "-Wno-unique_unit_address_if_enabled")