Introduce dt_bl10_devkit board from doiting vendor. Signed-off-by: Gerson Fernando Budke <nandojve@gmail.com>
52 lines
949 B
Plaintext
52 lines
949 B
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,itcm = &itcm;
|
|
zephyr,dtcm = &dtcm;
|
|
zephyr,sram = &sram0;
|
|
zephyr,console = &uart0;
|
|
zephyr,shell-uart = &uart0;
|
|
};
|
|
};
|
|
|
|
&cpu0 {
|
|
clock-frequency = <DT_FREQ_M(192)>;
|
|
};
|
|
|
|
&spi1 {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
reg = <0x4000b000 0x1000 0x23000000 0xc00000>;
|
|
|
|
flash0: flash@0 {
|
|
compatible = "issi,is25lp128", "jedec,spi-nor";
|
|
status = "disabled";
|
|
size = <DT_SIZE_M(128)>;
|
|
jedec-id = [96 60 18];
|
|
reg = <0>;
|
|
spi-max-frequency = <DT_FREQ_M(133)>;
|
|
};
|
|
};
|
|
|
|
&uart0 {
|
|
status = "okay";
|
|
current-speed = <115200>;
|
|
|
|
pinctrl-0 = <&uart0_default>;
|
|
pinctrl-1 = <&uart0_sleep>;
|
|
pinctrl-names = "default", "sleep";
|
|
};
|