Angelo Dureghello | b5867b1 | 2019-03-13 21:46:41 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * Copyright (C) 2018 Angelo Dureghello <angelo@sysam.it> |
| 4 | */ |
| 5 | |
| 6 | / { |
| 7 | compatible = "fsl,mcf5208"; |
| 8 | |
| 9 | aliases { |
| 10 | serial0 = &uart0; |
Angelo Durgehello | 04e5dd5 | 2019-11-15 23:54:12 +0100 | [diff] [blame] | 11 | fec0 = &fec0; |
Angelo Dureghello | b5867b1 | 2019-03-13 21:46:41 +0100 | [diff] [blame] | 12 | }; |
| 13 | |
| 14 | soc { |
| 15 | compatible = "simple-bus"; |
| 16 | #address-cells = <1>; |
| 17 | #size-cells = <1>; |
| 18 | |
| 19 | uart0: uart@fc060000 { |
| 20 | compatible = "fsl,mcf-uart"; |
| 21 | reg = <0xfc060000 0x40>; |
| 22 | status = "disabled"; |
| 23 | }; |
| 24 | |
| 25 | uart1: uart@fc064000 { |
| 26 | compatible = "fsl,mcf-uart"; |
| 27 | reg = <0xfc064000 0x40>; |
| 28 | status = "disabled"; |
| 29 | }; |
| 30 | |
| 31 | uart2: uart@fc068000 { |
| 32 | compatible = "fsl,mcf-uart"; |
| 33 | reg = <0xfc068000 0x40>; |
| 34 | status = "disabled"; |
| 35 | }; |
Angelo Durgehello | 04e5dd5 | 2019-11-15 23:54:12 +0100 | [diff] [blame] | 36 | |
| 37 | fec0: ethernet@fc030000 { |
| 38 | compatible = "fsl,mcf-fec"; |
| 39 | reg = <0xfc030000 0x400>; |
| 40 | mii-base = <0>; |
| 41 | max-speed = <100>; |
| 42 | timeout-loop = <50000>; |
| 43 | status = "disabled"; |
| 44 | }; |
Angelo Dureghello | b5867b1 | 2019-03-13 21:46:41 +0100 | [diff] [blame] | 45 | }; |
| 46 | }; |