mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-17 12:46:59 +02:00
Add pinctrl node in device tree and update in bananapi f3 dts. Signed-off-by: Huan Zhou <me@per1cycle.org> Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
29 lines
495 B
Plaintext
29 lines
495 B
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
/*
|
|
* Copyright (C) 2024 Yangyu Chen <cyy@cyyself.name>
|
|
*/
|
|
|
|
#include "k1.dtsi"
|
|
#include "binman.dtsi"
|
|
#include "k1-pinctrl.dtsi"
|
|
|
|
/ {
|
|
model = "Banana Pi BPI-F3";
|
|
compatible = "bananapi,bpi-f3", "spacemit,k1";
|
|
|
|
chosen {
|
|
stdout-path = "serial0";
|
|
};
|
|
|
|
memory@0 {
|
|
device_type = "memory";
|
|
reg = <0x00000000 0x00000000 0x00000000 0x80000000>;
|
|
};
|
|
};
|
|
|
|
&uart0 {
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&uart0_2_cfg>;
|
|
status = "okay";
|
|
};
|