1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2019
4 * Heiko Schocher, DENX Software Engineering, hs@denx.de
5 */
6/ {
7	binman {
8		filename = "u-boot-socrates.bin";
9		pad-byte = <0xff>;
10		// Place dtb one sector before u-boot-nodtb.bin
11		blob {
12			filename = "dts/dt.dtb";
13		};
14		u-boot-nodtb {
15			filename = "u-boot-nodtb.bin";
16			offset = <0x20000>;
17		};
18	};
19
20	chosen {
21		stdout-path = &serial0;
22	};
23
24	soc8544@e0000000 {
25		i2c@3000 {
26			u-boot,dm-pre-reloc;
27		};
28	};
29};
30
31&pci0 {
32	clock-frequency = <33000000>;
33	ranges = <0x02000000 0x0 0x80000000 0x80000000 0x0 0x20000000
34		  0x01000000 0x0 0xe2000000 0xe2000000 0x0 0x01000000>;
35};
36
37&serial0 {
38	u-boot,dm-pre-reloc;
39	clock-frequency = <333333330>;
40};
41