Álvaro Fernández Rojas | 6471a22 | 2017-04-25 00:39:23 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com> |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
Álvaro Fernández Rojas | 5b14e13 | 2017-05-07 20:13:03 +0200 | [diff] [blame] | 7 | #include <dt-bindings/clock/bcm6328-clock.h> |
Álvaro Fernández Rojas | 6471a22 | 2017-04-25 00:39:23 +0200 | [diff] [blame] | 8 | #include <dt-bindings/gpio/gpio.h> |
Álvaro Fernández Rojas | 9a5cb22 | 2017-05-07 20:28:37 +0200 | [diff] [blame] | 9 | #include <dt-bindings/power-domain/bcm6328-power-domain.h> |
Álvaro Fernández Rojas | 7811821 | 2017-05-03 15:10:23 +0200 | [diff] [blame] | 10 | #include <dt-bindings/reset/bcm6328-reset.h> |
Álvaro Fernández Rojas | 6471a22 | 2017-04-25 00:39:23 +0200 | [diff] [blame] | 11 | #include "skeleton.dtsi" |
| 12 | |
| 13 | / { |
| 14 | compatible = "brcm,bcm6328"; |
| 15 | |
| 16 | cpus { |
| 17 | reg = <0x10000000 0x4>; |
| 18 | #address-cells = <1>; |
| 19 | #size-cells = <0>; |
| 20 | u-boot,dm-pre-reloc; |
| 21 | |
| 22 | cpu@0 { |
| 23 | compatible = "brcm,bcm6328-cpu", "mips,mips4Kc"; |
| 24 | device_type = "cpu"; |
| 25 | reg = <0>; |
| 26 | u-boot,dm-pre-reloc; |
| 27 | }; |
| 28 | |
| 29 | cpu@1 { |
| 30 | compatible = "brcm,bcm6328-cpu", "mips,mips4Kc"; |
| 31 | device_type = "cpu"; |
| 32 | reg = <1>; |
| 33 | u-boot,dm-pre-reloc; |
| 34 | }; |
| 35 | }; |
| 36 | |
| 37 | clocks { |
| 38 | compatible = "simple-bus"; |
| 39 | #address-cells = <1>; |
| 40 | #size-cells = <1>; |
| 41 | u-boot,dm-pre-reloc; |
| 42 | |
| 43 | periph_osc: periph-osc { |
| 44 | compatible = "fixed-clock"; |
| 45 | #clock-cells = <0>; |
| 46 | clock-frequency = <50000000>; |
| 47 | u-boot,dm-pre-reloc; |
| 48 | }; |
Álvaro Fernández Rojas | 5b14e13 | 2017-05-07 20:13:03 +0200 | [diff] [blame] | 49 | |
| 50 | periph_clk: periph-clk { |
| 51 | compatible = "brcm,bcm6345-clk"; |
| 52 | reg = <0x10000004 0x4>; |
| 53 | #clock-cells = <1>; |
| 54 | }; |
Álvaro Fernández Rojas | 6471a22 | 2017-04-25 00:39:23 +0200 | [diff] [blame] | 55 | }; |
| 56 | |
| 57 | ubus { |
| 58 | compatible = "simple-bus"; |
| 59 | #address-cells = <1>; |
| 60 | #size-cells = <1>; |
| 61 | u-boot,dm-pre-reloc; |
| 62 | |
Álvaro Fernández Rojas | 7811821 | 2017-05-03 15:10:23 +0200 | [diff] [blame] | 63 | periph_rst: reset-controller@10000010 { |
| 64 | compatible = "brcm,bcm6345-reset"; |
| 65 | reg = <0x10000010 0x4>; |
| 66 | #reset-cells = <1>; |
| 67 | }; |
| 68 | |
Álvaro Fernández Rojas | 6471a22 | 2017-04-25 00:39:23 +0200 | [diff] [blame] | 69 | pll_cntl: syscon@10000068 { |
| 70 | compatible = "syscon"; |
| 71 | reg = <0x10000068 0x4>; |
| 72 | }; |
| 73 | |
| 74 | syscon-reboot { |
| 75 | compatible = "syscon-reboot"; |
| 76 | regmap = <&pll_cntl>; |
| 77 | offset = <0x0>; |
| 78 | mask = <0x1>; |
| 79 | }; |
| 80 | |
Álvaro Fernández Rojas | 404cacb | 2017-05-16 18:29:11 +0200 | [diff] [blame^] | 81 | wdt: watchdog@1000005c { |
| 82 | compatible = "brcm,bcm6345-wdt"; |
| 83 | reg = <0x1000005c 0xc>; |
| 84 | clocks = <&periph_osc>; |
| 85 | }; |
| 86 | |
Álvaro Fernández Rojas | 320186f | 2017-05-07 20:09:32 +0200 | [diff] [blame] | 87 | gpio: gpio-controller@10000084 { |
| 88 | compatible = "brcm,bcm6345-gpio"; |
| 89 | reg = <0x10000084 0x4>, <0x1000008c 0x4>; |
| 90 | gpio-controller; |
| 91 | #gpio-cells = <2>; |
| 92 | |
| 93 | status = "disabled"; |
| 94 | }; |
| 95 | |
Álvaro Fernández Rojas | 6471a22 | 2017-04-25 00:39:23 +0200 | [diff] [blame] | 96 | uart0: serial@10000100 { |
| 97 | compatible = "brcm,bcm6345-uart"; |
| 98 | reg = <0x10000100 0x18>; |
| 99 | clocks = <&periph_osc>; |
| 100 | |
| 101 | status = "disabled"; |
| 102 | }; |
| 103 | |
| 104 | uart1: serial@10000120 { |
| 105 | compatible = "brcm,bcm6345-uart"; |
| 106 | reg = <0x10000120 0x18>; |
| 107 | clocks = <&periph_osc>; |
| 108 | |
| 109 | status = "disabled"; |
| 110 | }; |
| 111 | |
Álvaro Fernández Rojas | e0f1fd2 | 2017-05-07 20:10:25 +0200 | [diff] [blame] | 112 | leds: led-controller@10000800 { |
| 113 | compatible = "brcm,bcm6328-leds"; |
| 114 | reg = <0x10000800 0x24>; |
| 115 | #address-cells = <1>; |
| 116 | #size-cells = <0>; |
| 117 | |
| 118 | status = "disabled"; |
| 119 | }; |
| 120 | |
Álvaro Fernández Rojas | 9a5cb22 | 2017-05-07 20:28:37 +0200 | [diff] [blame] | 121 | periph_pwr: power-controller@10001848 { |
| 122 | compatible = "brcm,bcm6328-power-domain"; |
| 123 | reg = <0x10001848 0x4>; |
| 124 | #power-domain-cells = <1>; |
| 125 | }; |
| 126 | |
Álvaro Fernández Rojas | 6471a22 | 2017-04-25 00:39:23 +0200 | [diff] [blame] | 127 | memory-controller@10003000 { |
| 128 | compatible = "brcm,bcm6328-mc"; |
Álvaro Fernández Rojas | 44d8514 | 2017-05-11 11:01:27 +0200 | [diff] [blame] | 129 | reg = <0x10003000 0x864>; |
Álvaro Fernández Rojas | 6471a22 | 2017-04-25 00:39:23 +0200 | [diff] [blame] | 130 | u-boot,dm-pre-reloc; |
| 131 | }; |
| 132 | }; |
| 133 | }; |