
8 Feb
2019
8 Feb
'19
4:59 p.m.
On Mon, Feb 04, 2019 at 11:58:46AM +0100, Fabien Parent wrote:
Add support for MediaTek MT8516 SoC. This include the file that will initialize the SoC after boot and its device tree.
Signed-off-by: Fabien Parent fparent@baylibre.com
[snip]
- topckgen: clock-controller@10000000 {
compatible = "mediatek,mt8516-topckgen";
reg = <0x10000000 0x1000>;
#clock-cells = <1>;
u-boot,dm-pre-reloc;
- };
The u-boot,xxx properties go in a -u-boot.dtsi file, see scripts/Makefile.lib for the logic on how we automatically find them. This makes future re-syncs with this file from the kernel less problematic (as seen on say am33xx where we broke some platforms when we removed these dm-pre-reloc properties by accident as they didn't get put into am33xx-u-boot.dtsi as the mechanism didn't exist then). Thanks!
--
Tom