blob: c2a28eaebfae5705f0b99c4cfd40e7c37d6aac49 [file] [log] [blame]
Heiko Schocher81a7abe2019-10-16 05:55:48 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2019
4 * Heiko Schocher, DENX Software Engineering, hs@denx.de
5 */
Heiko Schochera78b2532023-01-24 18:06:51 +01006#include <config.h>
Heiko Schocher81a7abe2019-10-16 05:55:48 +02007
Heiko Schochera78b2532023-01-24 18:06:51 +01008/ {
Heiko Schocher1088fcb2023-01-24 18:06:57 +01009 aliases {
10 eeprom0 = &i2c_eeprom0;
11 };
12
Heiko Schocher81a7abe2019-10-16 05:55:48 +020013 chosen {
14 stdout-path = &serial0;
15 };
16
17 soc8544@e0000000 {
18 i2c@3000 {
Simon Glass8c103c32023-02-13 08:56:33 -070019 bootph-all;
Heiko Schocher1088fcb2023-01-24 18:06:57 +010020
21 i2c_eeprom0: eeprom@51{
22 compatible = "atmel,24c64";
23 reg = <0x51>;
24 pagesize = <32>;
25 };
Heiko Schocher81a7abe2019-10-16 05:55:48 +020026 };
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 {
Simon Glass8c103c32023-02-13 08:56:33 -070037 bootph-all;
Heiko Schocher81a7abe2019-10-16 05:55:48 +020038 clock-frequency = <333333330>;
39};
Heiko Schochera78b2532023-01-24 18:06:51 +010040
41#include "u-boot.dtsi"