Files
zephyr/boards/doiting/dt_bl10_devkit/dt_bl10_devkit.dts
Camille BAUD bdffc08279 bflb: Make BL60x independant from SDK
Reorganize and update soc folder files for SDK-independance
Reorganize and update hal_bouffalolab files for SDK-independance
Reorganize and update soc dts files for SDK-independance
Update serial and pinctrl driver files for SDK-independance
Update ai_wb2_12f, bl604e_iot_dvk, and dt_bl10_dvk
to new bl60x support
and fixup openocd config of ai_wb2_12f

Signed-off-by: Camille BAUD <mail@massdriver.space>
2025-08-01 07:57:36 -04:00

65 lines
1.2 KiB
Plaintext

/*
* Copyright (c) 2021-2025 ATL Electronics
* SPDX-License-Identifier: Apache-2.0
*/
/dts-v1/;
#include <bflb/bl60x.dtsi>
#include "dt_bl10_devkit-pinctrl.dtsi"
/ {
model = "2.4GHz Wi-Fi and BLE coexistence Module Development Kit";
compatible = "bflb,bl602";
chosen {
zephyr,flash = &flash0;
zephyr,code-partition = &slot0_partition;
zephyr,itcm = &itcm;
zephyr,dtcm = &dtcm;
zephyr,sram = &sram0;
zephyr,console = &uart0;
zephyr,shell-uart = &uart0;
};
};
&cpu0 {
clock-frequency = <DT_FREQ_M(192)>;
};
&flashctrl {
flash0: flash@23000000 {
compatible = "soc-nv-flash", "issi,is25lp128";
reg = <0x23000000 (0x1000000 - 0x2000)>;
write-block-size = <256>;
erase-block-size = <DT_SIZE_K(4)>;
/* jedec-id = [96 60 18]; */
partitions {
compatible = "fixed-partitions";
#address-cells = <1>;
#size-cells = <1>;
slot0_partition: partition@0 {
label = "image-0";
reg = <0x00000000 0x100000>;
read-only;
};
storage_partition: partition@100000 {
label = "storage";
reg = <0x00100000 (0xF00000 - 0x2000)>;
};
};
};
};
&uart0 {
status = "okay";
current-speed = <115200>;
pinctrl-0 = <&uart0_default>;
pinctrl-1 = <&uart0_sleep>;
pinctrl-names = "default", "sleep";
};