mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
ff94c15a3c
The previous version of am335x-fb.c contained the functionalities of two drivers that this patch has split. It was a video type driver that used the same registration compatible string that now registers a panel type driver. The proof of this is that two compatible strings were referred to within the same driver. There are now two drivers, each with its own compatible string, functions and API. Furthermore, the panel driver, in addition to decoding the display timings, is now also able to manage the backlight. Signed-off-by: Dario Binacchi <dariobin@libero.it> Reviewed-by: Simon Glass <sjg@chromium.org>
62 lines
646 B
Text
62 lines
646 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2018 EETS GmbH - https://www.eets.ch/
|
|
*/
|
|
|
|
#include "am33xx-u-boot.dtsi"
|
|
|
|
/ {
|
|
ocp {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
};
|
|
|
|
&l4_wkup {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&l4_per {
|
|
|
|
segment@300000 {
|
|
|
|
target-module@e000 {
|
|
u-boot,dm-pre-reloc;
|
|
|
|
lcdc: lcdc@0 {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
&scm {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&am33xx_pinmux {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&uart3_pins {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&uart3 {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&mmc1 {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&mmc1_pins {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&mmc2 {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&mmc2_pins {
|
|
u-boot,dm-pre-reloc;
|
|
};
|