Angelo Dureghello | c6164c9 | 2019-03-13 21:46:41 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
Angelo Durgehello | c6e17f9 | 2019-11-15 23:54:12 +0100 | [diff] [blame] | 3 | * Copyright (C) 2019 Angelo Dureghello <angelo@sysam.it> |
Angelo Dureghello | c6164c9 | 2019-03-13 21:46:41 +0100 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | / { |
| 7 | compatible = "fsl,mcf5275"; |
| 8 | |
| 9 | aliases { |
| 10 | serial0 = &uart0; |
Angelo Durgehello | c6e17f9 | 2019-11-15 23:54:12 +0100 | [diff] [blame] | 11 | fec0 = &fec0; |
| 12 | fec1 = &fec1; |
Angelo Dureghello | c6164c9 | 2019-03-13 21:46:41 +0100 | [diff] [blame] | 13 | }; |
| 14 | |
| 15 | soc { |
| 16 | compatible = "simple-bus"; |
| 17 | #address-cells = <1>; |
| 18 | #size-cells = <1>; |
| 19 | |
| 20 | ipsbar: ipsbar@4000000 { |
| 21 | compatible = "simple-bus"; |
| 22 | #address-cells = <1>; |
| 23 | #size-cells = <1>; |
| 24 | ranges = <0x00000000 0x40000000 0x40000000>; |
| 25 | reg = <0x40000000 0x40000000>; |
| 26 | |
Angelo Dureghello | 0e81230 | 2023-06-24 23:38:55 +0200 | [diff] [blame] | 27 | wdog0: watchdog@140000 { |
| 28 | compatible = "fsl,mcf5208-wdt"; |
| 29 | reg = <0x140000 0x10>; |
| 30 | status = "disabled"; |
| 31 | }; |
| 32 | |
Angelo Dureghello | c6164c9 | 2019-03-13 21:46:41 +0100 | [diff] [blame] | 33 | uart0: uart@200 { |
| 34 | compatible = "fsl,mcf-uart"; |
| 35 | reg = <0x200 0x40>; |
| 36 | status = "disabled"; |
| 37 | }; |
| 38 | |
| 39 | uart1: uart@240 { |
| 40 | compatible = "fsl,mcf-uart"; |
| 41 | reg = <0x240 0x40>; |
| 42 | status = "disabled"; |
| 43 | }; |
| 44 | |
| 45 | uart2: uart@280 { |
| 46 | compatible = "fsl,mcf-uart"; |
| 47 | reg = <0x280 0x40>; |
| 48 | status = "disabled"; |
| 49 | }; |
Angelo Durgehello | c6e17f9 | 2019-11-15 23:54:12 +0100 | [diff] [blame] | 50 | |
| 51 | fec0: ethernet@1000 { |
| 52 | compatible = "fsl,mcf-fec"; |
| 53 | reg = <0x1000 0x800>; |
| 54 | max-speed = <100>; |
| 55 | phy-addr = <(-1)>; |
| 56 | timeout-loop = <50000>; |
| 57 | status = "disabled"; |
| 58 | }; |
| 59 | |
| 60 | fec1: ethernet@1800 { |
| 61 | compatible = "fsl,mcf-fec"; |
| 62 | reg = <0x1800 0x800>; |
| 63 | mii-base = <0>; |
| 64 | max-speed = <100>; |
| 65 | timeout-loop = <50000>; |
| 66 | status = "disabled"; |
| 67 | }; |
Angelo Dureghello | d768df1 | 2023-04-05 00:59:27 +0200 | [diff] [blame] | 68 | |
| 69 | i2c0: i2c@300 { |
| 70 | compatible = "fsl-i2c"; |
| 71 | #address-cells=<1>; |
| 72 | #size-cells=<0>; |
| 73 | cell-index = <0>; |
| 74 | reg = <0x300 0x14>; |
| 75 | clock-frequency = <100000>; |
| 76 | status = "disabled"; |
| 77 | }; |
Angelo Dureghello | c6164c9 | 2019-03-13 21:46:41 +0100 | [diff] [blame] | 78 | }; |
| 79 | }; |
| 80 | }; |