blob: 1b2768272c628d13efbb7a09f8478922141052ac [file] [log] [blame]
Amit Singh Tomarea6314a2020-04-19 19:28:32 +05301// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2020 Amit Singh Tomar <amittomer25@gmail.com>
4 */
5
6/{
7 soc {
8 u-boot,dm-pre-reloc;
Amit Singh Tomar75523d52020-05-09 19:55:13 +05309
10 gmac: ethernet@e0220000 {
11 compatible = "actions,s700-ethernet";
12 reg = <0 0xe0220000 0 0x2000>;
13 interrupts = <GIC_SPI 55 IRQ_TYPE_LEVEL_HIGH>;
14 interrupt-names = "macirq";
15 local-mac-address = [ 00 18 fe 66 66 66 ];
16 clocks = <&cmu CLK_ETHERNET>, <&cmu CLK_RMII_REF>;
17 clock-names = "ethernet", "rmii_ref";
18 phy-mode = "rmii";
19 status = "okay";
20 };
21
Amit Singh Tomarea6314a2020-04-19 19:28:32 +053022 };
23};
24
25&uart3 {
26 u-boot,dm-pre-reloc;
27};
28
29&cmu {
30 u-boot,dm-pre-reloc;
31};