Niel Fourie | 37bfd9c | 2021-01-21 13:19:20 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
| 2 | /* |
| 3 | * (C) Copyright 2021 Niel Fourie <lusus@denx.de> |
| 4 | */ |
| 5 | |
| 6 | #include <config.h> |
| 7 | |
| 8 | / { |
| 9 | |
| 10 | aliases { |
| 11 | spi0 = "/soc@ffe000000/spi@110000"; |
| 12 | i2c0 = "/soc@ffe000000/i2c@118000"; |
| 13 | i2c1 = "/soc@ffe000000/i2c@118000/mux@70/i2c@0"; |
| 14 | i2c2 = "/soc@ffe000000/i2c@118000/mux@70/i2c@1"; |
| 15 | i2c3 = "/soc@ffe000000/i2c@118000/mux@70/i2c@7"; |
| 16 | i2c4 = "/soc@ffe000000/i2c@118100"; |
| 17 | /delete-property/ pci1; |
| 18 | /delete-property/ pci2; |
| 19 | /delete-property/ pci3; |
| 20 | }; |
| 21 | |
| 22 | chosen { |
| 23 | stdout-path = "/soc@ffe000000/serial@11c500"; |
| 24 | }; |
| 25 | |
| 26 | soc@ffe000000 { |
Simon Glass | 8c103c3 | 2023-02-13 08:56:33 -0700 | [diff] [blame] | 27 | bootph-all; |
Niel Fourie | 37bfd9c | 2021-01-21 13:19:20 +0100 | [diff] [blame] | 28 | spi@110000 { |
| 29 | /* This documents where km_fpgacfg should be appear */ |
| 30 | fpga@0 { |
| 31 | compatible = "keymile,fpga-conf"; |
| 32 | reg = <0>; |
| 33 | spi-max-frequency = <25000000>; |
| 34 | }; |
| 35 | }; |
| 36 | |
| 37 | sdhc@114000 { |
| 38 | status = "okay"; |
| 39 | }; |
| 40 | |
| 41 | i2c@118000 { |
Simon Glass | 8c103c3 | 2023-02-13 08:56:33 -0700 | [diff] [blame] | 42 | bootph-all; |
Niel Fourie | 37bfd9c | 2021-01-21 13:19:20 +0100 | [diff] [blame] | 43 | mux@70 { |
| 44 | i2c@1 { /* IVM bus */ |
| 45 | reg = <1>; |
| 46 | #address-cells = <1>; |
| 47 | #size-cells = <0>; |
| 48 | }; |
| 49 | }; |
| 50 | }; |
| 51 | |
| 52 | serial@11c500 { |
Simon Glass | 8c103c3 | 2023-02-13 08:56:33 -0700 | [diff] [blame] | 53 | bootph-all; |
Niel Fourie | 37bfd9c | 2021-01-21 13:19:20 +0100 | [diff] [blame] | 54 | clock-frequency = <200000000>; |
| 55 | }; |
| 56 | |
| 57 | fman@400000 { |
| 58 | ethernet@e0000 { |
| 59 | phy-connection-type = "sgmii"; |
| 60 | }; |
| 61 | |
| 62 | ethernet@e2000 { |
| 63 | phy-connection-type = "sgmii"; |
| 64 | }; |
| 65 | |
| 66 | ethernet@e8000 { |
| 67 | phy-connection-type = "rgmii-id"; |
| 68 | }; |
| 69 | }; |
| 70 | |
| 71 | }; |
| 72 | |
| 73 | pcie@ffe240000 { |
| 74 | compatible = "fsl,pcie-t104x"; |
| 75 | law_trgt_if = <0>; |
| 76 | }; |
Niel Fourie | 37bfd9c | 2021-01-21 13:19:20 +0100 | [diff] [blame] | 77 | }; |
Pali Rohár | 499fe57 | 2022-08-03 13:20:49 +0200 | [diff] [blame] | 78 | |
| 79 | #include "u-boot.dtsi" |