mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 21:24:29 +00:00
a1b75cf941
Add U-Boot specific dtsi file for rk3188 SoC. This would help to add U-Boot specific dts nodes, properties which are common across rk3188. Right now, the file is empty, will add required changes in future patches. Signed-off-by: Jagan Teki <jagan@amarulasolutions.com> Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
40 lines
524 B
Text
40 lines
524 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (c) 2018 Fuzhou Rockchip Electronics Co., Ltd.
|
|
*/
|
|
|
|
#include "rk3188-u-boot.dtsi"
|
|
|
|
&cru {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&pinctrl {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&mmc0 {
|
|
fifo-mode;
|
|
max-frequency = <16000000>;
|
|
};
|
|
|
|
&mmc1 {
|
|
fifo-mode;
|
|
max-frequency = <16000000>;
|
|
};
|
|
|
|
&emmc {
|
|
fifo-mode;
|
|
max-frequency = <16000000>;
|
|
};
|
|
|
|
&uart2 {
|
|
status = "okay";
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&timer3 {
|
|
compatible = "rockchip,rk3368-timer", "rockchip,rk3288-timer";
|
|
u-boot,dm-spl;
|
|
clock-frequency = <24000000>;
|
|
};
|