blob: 38ca7ae1b6b9880c1e934783d429e3f22d48439e [file] [log] [blame]
Lokesh Vutlae8e92b82015-09-19 16:26:55 +05301/*
2 * Copyright 2014 Texas Instruments, Inc.
3 *
4 * Keystone 2 Galileo EVM device tree
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10/dts-v1/;
11
12#include "k2g.dtsi"
13
14/ {
15 compatible = "ti,k2g-evm","ti,keystone";
16 model = "Texas Instruments Keystone 2 Galileo EVM";
17
18 chosen {
19 stdout-path = &uart0;
20 };
21};
Mugunthan V N3784cc22016-02-02 15:51:37 +053022
23&mdio {
24 status = "okay";
25 ethphy0: ethernet-phy@0 {
26 reg = <0>;
27 phy-mode = "rgmii-id";
28 };
29};
30
31&gbe0 {
32 phy-handle = <&ethphy0>;
33};
Vignesh Rcefb8f32016-07-06 09:59:05 +053034
35&spi1 {
36 status = "okay";
37
38 spi_nor: flash@0 {
39 #address-cells = <1>;
40 #size-cells = <1>;
41 compatible = "spi-flash";
42 spi-max-frequency = <50000000>;
43 m25p,fast-read;
44 reg = <0>;
45
46 partition@0 {
47 label = "u-boot-spl";
48 reg = <0x0 0x80000>;
49 read-only;
50 };
51
52 partition@1 {
53 label = "misc";
54 reg = <0x80000 0xf80000>;
55 };
56 };
57};