mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-15 07:43:07 +00:00
a78b2538fd
convert socrates board to use MPC85XX_HAVE_RESET_VECTOR and disable CONFIG_OF_BOARD and use common u-boot.dtsi for creating u-boot-dtb.bin. Signed-off-by: Heiko Schocher <hs@denx.de>
31 lines
515 B
Text
31 lines
515 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2019
|
|
* Heiko Schocher, DENX Software Engineering, hs@denx.de
|
|
*/
|
|
#include <config.h>
|
|
|
|
/ {
|
|
chosen {
|
|
stdout-path = &serial0;
|
|
};
|
|
|
|
soc8544@e0000000 {
|
|
i2c@3000 {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
};
|
|
};
|
|
|
|
&pci0 {
|
|
clock-frequency = <33000000>;
|
|
ranges = <0x02000000 0x0 0x80000000 0x80000000 0x0 0x20000000
|
|
0x01000000 0x0 0xe2000000 0xe2000000 0x0 0x01000000>;
|
|
};
|
|
|
|
&serial0 {
|
|
u-boot,dm-pre-reloc;
|
|
clock-frequency = <333333330>;
|
|
};
|
|
|
|
#include "u-boot.dtsi"
|