2019-10-16 03:55:48 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2019
|
|
|
|
* Heiko Schocher, DENX Software Engineering, hs@denx.de
|
|
|
|
*/
|
2023-01-24 17:06:51 +00:00
|
|
|
#include <config.h>
|
2019-10-16 03:55:48 +00:00
|
|
|
|
2023-01-24 17:06:51 +00:00
|
|
|
/ {
|
2023-01-24 17:06:57 +00:00
|
|
|
aliases {
|
|
|
|
eeprom0 = &i2c_eeprom0;
|
|
|
|
};
|
|
|
|
|
2019-10-16 03:55:48 +00:00
|
|
|
chosen {
|
|
|
|
stdout-path = &serial0;
|
|
|
|
};
|
|
|
|
|
|
|
|
soc8544@e0000000 {
|
|
|
|
i2c@3000 {
|
2023-02-13 15:56:33 +00:00
|
|
|
bootph-all;
|
2023-01-24 17:06:57 +00:00
|
|
|
|
|
|
|
i2c_eeprom0: eeprom@51{
|
|
|
|
compatible = "atmel,24c64";
|
|
|
|
reg = <0x51>;
|
|
|
|
pagesize = <32>;
|
|
|
|
};
|
2019-10-16 03:55:48 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
&pci0 {
|
|
|
|
clock-frequency = <33000000>;
|
|
|
|
ranges = <0x02000000 0x0 0x80000000 0x80000000 0x0 0x20000000
|
|
|
|
0x01000000 0x0 0xe2000000 0xe2000000 0x0 0x01000000>;
|
|
|
|
};
|
|
|
|
|
|
|
|
&serial0 {
|
2023-02-13 15:56:33 +00:00
|
|
|
bootph-all;
|
2019-10-16 03:55:48 +00:00
|
|
|
clock-frequency = <333333330>;
|
|
|
|
};
|
2023-01-24 17:06:51 +00:00
|
|
|
|
|
|
|
#include "u-boot.dtsi"
|