1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2019
4 * Heiko Schocher, DENX Software Engineering, hs@denx.de
5 */
6#include <config.h>
7
8/ {
9	aliases {
10		eeprom0 = &i2c_eeprom0;
11	};
12
13	chosen {
14		stdout-path = &serial0;
15	};
16
17	soc8544@e0000000 {
18		i2c@3000 {
19			bootph-all;
20
21			i2c_eeprom0: eeprom@51{
22				compatible = "atmel,24c64";
23				reg = <0x51>;
24				pagesize = <32>;
25			};
26		};
27	};
28};
29
30&pci0 {
31	clock-frequency = <33000000>;
32	ranges = <0x02000000 0x0 0x80000000 0x80000000 0x0 0x20000000
33		  0x01000000 0x0 0xe2000000 0xe2000000 0x0 0x01000000>;
34};
35
36&serial0 {
37	bootph-all;
38	clock-frequency = <333333330>;
39};
40
41#include "u-boot.dtsi"
42