mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
8c103c33fb
Now that Linux has accepted these tags, move the device tree files in U-Boot over to use them. Signed-off-by: Simon Glass <sjg@chromium.org>
51 lines
710 B
Text
51 lines
710 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright 2018 NXP
|
|
*/
|
|
|
|
&{/aliases} {
|
|
bootph-all;
|
|
display0 = &lcdif;
|
|
};
|
|
|
|
&soc {
|
|
bootph-all;
|
|
};
|
|
|
|
&aips2 {
|
|
bootph-all;
|
|
};
|
|
|
|
&iomuxc {
|
|
bootph-all;
|
|
};
|
|
|
|
&lcdif {
|
|
display = <&display0>;
|
|
bootph-all;
|
|
|
|
display0: display@0 {
|
|
bits-per-pixel = <24>;
|
|
bus-width = <24>;
|
|
|
|
display-timings {
|
|
native-mode = <&timing0>;
|
|
|
|
timing0: timing0 {
|
|
clock-frequency = <9200000>;
|
|
hactive = <480>;
|
|
vactive = <272>;
|
|
hfront-porch = <8>;
|
|
hback-porch = <4>;
|
|
hsync-len = <41>;
|
|
vback-porch = <2>;
|
|
vfront-porch = <4>;
|
|
vsync-len = <10>;
|
|
hsync-active = <0>;
|
|
vsync-active = <0>;
|
|
de-active = <1>;
|
|
pixelclk-active = <0>;
|
|
};
|
|
};
|
|
};
|
|
};
|