Arnd Bergmann | 5d0769f | 2012-03-02 23:07:21 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2012 Linaro Ltd |
| 3 | * |
| 4 | * The code contained herein is licensed under the GNU General Public |
| 5 | * License. You may obtain a copy of the GNU General Public License |
| 6 | * Version 2 or later at the following locations: |
| 7 | * |
| 8 | * http://www.opensource.org/licenses/gpl-license.html |
| 9 | * http://www.gnu.org/copyleft/gpl.html |
| 10 | */ |
| 11 | |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 12 | #include <dt-bindings/interrupt-controller/irq.h> |
Lee Jones | 841cd0c | 2013-09-18 09:53:10 +0100 | [diff] [blame] | 13 | #include <dt-bindings/mfd/dbx500-prcmu.h> |
Gabriel Fernandez | 807e883 | 2013-05-27 15:30:53 +0200 | [diff] [blame] | 14 | #include "skeleton.dtsi" |
Arnd Bergmann | 5d0769f | 2012-03-02 23:07:21 +0000 | [diff] [blame] | 15 | |
| 16 | / { |
Gabriel Fernandez | b1ba143 | 2013-03-01 14:38:07 +0100 | [diff] [blame] | 17 | soc { |
Arnd Bergmann | 5d0769f | 2012-03-02 23:07:21 +0000 | [diff] [blame] | 18 | #address-cells = <1>; |
| 19 | #size-cells = <1>; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 20 | compatible = "stericsson,db8500"; |
Lee Jones | dab6487 | 2012-03-07 17:22:30 +0000 | [diff] [blame] | 21 | interrupt-parent = <&intc>; |
Arnd Bergmann | 5d0769f | 2012-03-02 23:07:21 +0000 | [diff] [blame] | 22 | ranges; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 23 | |
Lee Jones | dab6487 | 2012-03-07 17:22:30 +0000 | [diff] [blame] | 24 | intc: interrupt-controller@a0411000 { |
| 25 | compatible = "arm,cortex-a9-gic"; |
| 26 | #interrupt-cells = <3>; |
| 27 | #address-cells = <1>; |
| 28 | interrupt-controller; |
Lee Jones | dab6487 | 2012-03-07 17:22:30 +0000 | [diff] [blame] | 29 | reg = <0xa0411000 0x1000>, |
| 30 | <0xa0410100 0x100>; |
| 31 | }; |
| 32 | |
Lee Jones | f1949ea | 2012-03-08 09:02:02 +0000 | [diff] [blame] | 33 | L2: l2-cache { |
| 34 | compatible = "arm,pl310-cache"; |
| 35 | reg = <0xa0412000 0x1000>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 36 | interrupts = <0 13 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | f1949ea | 2012-03-08 09:02:02 +0000 | [diff] [blame] | 37 | cache-unified; |
| 38 | cache-level = <2>; |
| 39 | }; |
| 40 | |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 41 | pmu { |
| 42 | compatible = "arm,cortex-a9-pmu"; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 43 | interrupts = <0 7 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 44 | }; |
| 45 | |
Lee Jones | 841cd0c | 2013-09-18 09:53:10 +0100 | [diff] [blame] | 46 | clocks { |
| 47 | compatible = "stericsson,u8500-clks"; |
| 48 | |
| 49 | prcmu_clk: prcmu-clock { |
| 50 | #clock-cells = <1>; |
| 51 | }; |
Lee Jones | fcbe5e9 | 2013-06-06 10:51:04 +0100 | [diff] [blame] | 52 | |
| 53 | prcc_pclk: prcc-periph-clock { |
| 54 | #clock-cells = <2>; |
| 55 | }; |
Lee Jones | 841cd0c | 2013-09-18 09:53:10 +0100 | [diff] [blame] | 56 | }; |
| 57 | |
Lee Jones | 71de5c4 | 2012-03-16 09:53:24 +0000 | [diff] [blame] | 58 | timer@a0410600 { |
| 59 | compatible = "arm,cortex-a9-twd-timer"; |
| 60 | reg = <0xa0410600 0x20>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 61 | interrupts = <1 13 0x304>; /* IRQ level high per-CPU */ |
Lee Jones | 71de5c4 | 2012-03-16 09:53:24 +0000 | [diff] [blame] | 62 | }; |
| 63 | |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 64 | rtc@80154000 { |
Lee Jones | ddb3b99 | 2012-05-26 07:01:31 +0100 | [diff] [blame] | 65 | compatible = "arm,rtc-pl031", "arm,primecell"; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 66 | reg = <0x80154000 0x1000>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 67 | interrupts = <0 18 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 68 | }; |
| 69 | |
| 70 | gpio0: gpio@8012e000 { |
| 71 | compatible = "stericsson,db8500-gpio", |
Lee Jones | fd9a80b | 2012-04-13 15:05:03 +0100 | [diff] [blame] | 72 | "st,nomadik-gpio"; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 73 | reg = <0x8012e000 0x80>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 74 | interrupts = <0 119 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 93b5698 | 2012-05-29 14:17:36 +0800 | [diff] [blame] | 75 | interrupt-controller; |
| 76 | #interrupt-cells = <2>; |
Lee Jones | 61be498 | 2012-06-14 11:16:03 +0100 | [diff] [blame] | 77 | st,supports-sleepmode; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 78 | gpio-controller; |
Lee Jones | c0b133b | 2012-04-13 15:05:05 +0100 | [diff] [blame] | 79 | #gpio-cells = <2>; |
| 80 | gpio-bank = <0>; |
Lee Jones | 9d89107 | 2013-06-03 13:07:51 +0100 | [diff] [blame] | 81 | |
| 82 | clocks = <&prcc_pclk 1 9>; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 83 | }; |
| 84 | |
| 85 | gpio1: gpio@8012e080 { |
| 86 | compatible = "stericsson,db8500-gpio", |
Lee Jones | fd9a80b | 2012-04-13 15:05:03 +0100 | [diff] [blame] | 87 | "st,nomadik-gpio"; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 88 | reg = <0x8012e080 0x80>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 89 | interrupts = <0 120 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 93b5698 | 2012-05-29 14:17:36 +0800 | [diff] [blame] | 90 | interrupt-controller; |
| 91 | #interrupt-cells = <2>; |
Lee Jones | 61be498 | 2012-06-14 11:16:03 +0100 | [diff] [blame] | 92 | st,supports-sleepmode; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 93 | gpio-controller; |
Lee Jones | c0b133b | 2012-04-13 15:05:05 +0100 | [diff] [blame] | 94 | #gpio-cells = <2>; |
| 95 | gpio-bank = <1>; |
Lee Jones | 9d89107 | 2013-06-03 13:07:51 +0100 | [diff] [blame] | 96 | |
| 97 | clocks = <&prcc_pclk 1 9>; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 98 | }; |
| 99 | |
| 100 | gpio2: gpio@8000e000 { |
| 101 | compatible = "stericsson,db8500-gpio", |
Lee Jones | fd9a80b | 2012-04-13 15:05:03 +0100 | [diff] [blame] | 102 | "st,nomadik-gpio"; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 103 | reg = <0x8000e000 0x80>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 104 | interrupts = <0 121 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 93b5698 | 2012-05-29 14:17:36 +0800 | [diff] [blame] | 105 | interrupt-controller; |
| 106 | #interrupt-cells = <2>; |
Lee Jones | 61be498 | 2012-06-14 11:16:03 +0100 | [diff] [blame] | 107 | st,supports-sleepmode; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 108 | gpio-controller; |
Lee Jones | c0b133b | 2012-04-13 15:05:05 +0100 | [diff] [blame] | 109 | #gpio-cells = <2>; |
| 110 | gpio-bank = <2>; |
Lee Jones | 9d89107 | 2013-06-03 13:07:51 +0100 | [diff] [blame] | 111 | |
| 112 | clocks = <&prcc_pclk 3 8>; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 113 | }; |
| 114 | |
| 115 | gpio3: gpio@8000e080 { |
| 116 | compatible = "stericsson,db8500-gpio", |
Lee Jones | fd9a80b | 2012-04-13 15:05:03 +0100 | [diff] [blame] | 117 | "st,nomadik-gpio"; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 118 | reg = <0x8000e080 0x80>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 119 | interrupts = <0 122 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 93b5698 | 2012-05-29 14:17:36 +0800 | [diff] [blame] | 120 | interrupt-controller; |
| 121 | #interrupt-cells = <2>; |
Lee Jones | 61be498 | 2012-06-14 11:16:03 +0100 | [diff] [blame] | 122 | st,supports-sleepmode; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 123 | gpio-controller; |
Lee Jones | c0b133b | 2012-04-13 15:05:05 +0100 | [diff] [blame] | 124 | #gpio-cells = <2>; |
| 125 | gpio-bank = <3>; |
Lee Jones | 9d89107 | 2013-06-03 13:07:51 +0100 | [diff] [blame] | 126 | |
| 127 | clocks = <&prcc_pclk 3 8>; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 128 | }; |
| 129 | |
| 130 | gpio4: gpio@8000e100 { |
| 131 | compatible = "stericsson,db8500-gpio", |
Lee Jones | fd9a80b | 2012-04-13 15:05:03 +0100 | [diff] [blame] | 132 | "st,nomadik-gpio"; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 133 | reg = <0x8000e100 0x80>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 134 | interrupts = <0 123 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 93b5698 | 2012-05-29 14:17:36 +0800 | [diff] [blame] | 135 | interrupt-controller; |
| 136 | #interrupt-cells = <2>; |
Lee Jones | 61be498 | 2012-06-14 11:16:03 +0100 | [diff] [blame] | 137 | st,supports-sleepmode; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 138 | gpio-controller; |
Lee Jones | c0b133b | 2012-04-13 15:05:05 +0100 | [diff] [blame] | 139 | #gpio-cells = <2>; |
| 140 | gpio-bank = <4>; |
Lee Jones | 9d89107 | 2013-06-03 13:07:51 +0100 | [diff] [blame] | 141 | |
| 142 | clocks = <&prcc_pclk 3 8>; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 143 | }; |
| 144 | |
| 145 | gpio5: gpio@8000e180 { |
| 146 | compatible = "stericsson,db8500-gpio", |
Lee Jones | fd9a80b | 2012-04-13 15:05:03 +0100 | [diff] [blame] | 147 | "st,nomadik-gpio"; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 148 | reg = <0x8000e180 0x80>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 149 | interrupts = <0 124 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 93b5698 | 2012-05-29 14:17:36 +0800 | [diff] [blame] | 150 | interrupt-controller; |
| 151 | #interrupt-cells = <2>; |
Lee Jones | 61be498 | 2012-06-14 11:16:03 +0100 | [diff] [blame] | 152 | st,supports-sleepmode; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 153 | gpio-controller; |
Lee Jones | c0b133b | 2012-04-13 15:05:05 +0100 | [diff] [blame] | 154 | #gpio-cells = <2>; |
| 155 | gpio-bank = <5>; |
Lee Jones | 9d89107 | 2013-06-03 13:07:51 +0100 | [diff] [blame] | 156 | |
| 157 | clocks = <&prcc_pclk 3 8>; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 158 | }; |
| 159 | |
| 160 | gpio6: gpio@8011e000 { |
| 161 | compatible = "stericsson,db8500-gpio", |
Lee Jones | fd9a80b | 2012-04-13 15:05:03 +0100 | [diff] [blame] | 162 | "st,nomadik-gpio"; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 163 | reg = <0x8011e000 0x80>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 164 | interrupts = <0 125 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 93b5698 | 2012-05-29 14:17:36 +0800 | [diff] [blame] | 165 | interrupt-controller; |
| 166 | #interrupt-cells = <2>; |
Lee Jones | 61be498 | 2012-06-14 11:16:03 +0100 | [diff] [blame] | 167 | st,supports-sleepmode; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 168 | gpio-controller; |
Lee Jones | c0b133b | 2012-04-13 15:05:05 +0100 | [diff] [blame] | 169 | #gpio-cells = <2>; |
| 170 | gpio-bank = <6>; |
Lee Jones | 9d89107 | 2013-06-03 13:07:51 +0100 | [diff] [blame] | 171 | |
| 172 | clocks = <&prcc_pclk 2 1>; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 173 | }; |
| 174 | |
| 175 | gpio7: gpio@8011e080 { |
| 176 | compatible = "stericsson,db8500-gpio", |
Lee Jones | fd9a80b | 2012-04-13 15:05:03 +0100 | [diff] [blame] | 177 | "st,nomadik-gpio"; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 178 | reg = <0x8011e080 0x80>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 179 | interrupts = <0 126 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 93b5698 | 2012-05-29 14:17:36 +0800 | [diff] [blame] | 180 | interrupt-controller; |
| 181 | #interrupt-cells = <2>; |
Lee Jones | 61be498 | 2012-06-14 11:16:03 +0100 | [diff] [blame] | 182 | st,supports-sleepmode; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 183 | gpio-controller; |
Lee Jones | c0b133b | 2012-04-13 15:05:05 +0100 | [diff] [blame] | 184 | #gpio-cells = <2>; |
| 185 | gpio-bank = <7>; |
Lee Jones | 9d89107 | 2013-06-03 13:07:51 +0100 | [diff] [blame] | 186 | |
| 187 | clocks = <&prcc_pclk 2 1>; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 188 | }; |
| 189 | |
| 190 | gpio8: gpio@a03fe000 { |
| 191 | compatible = "stericsson,db8500-gpio", |
Lee Jones | fd9a80b | 2012-04-13 15:05:03 +0100 | [diff] [blame] | 192 | "st,nomadik-gpio"; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 193 | reg = <0xa03fe000 0x80>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 194 | interrupts = <0 127 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 93b5698 | 2012-05-29 14:17:36 +0800 | [diff] [blame] | 195 | interrupt-controller; |
| 196 | #interrupt-cells = <2>; |
Lee Jones | 61be498 | 2012-06-14 11:16:03 +0100 | [diff] [blame] | 197 | st,supports-sleepmode; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 198 | gpio-controller; |
Lee Jones | c0b133b | 2012-04-13 15:05:05 +0100 | [diff] [blame] | 199 | #gpio-cells = <2>; |
| 200 | gpio-bank = <8>; |
Lee Jones | 9d89107 | 2013-06-03 13:07:51 +0100 | [diff] [blame] | 201 | |
| 202 | clocks = <&prcc_pclk 6 1>; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 203 | }; |
| 204 | |
Lee Jones | 8979cfe | 2013-01-11 15:45:28 +0000 | [diff] [blame] | 205 | pinctrl { |
Lee Jones | 818d99a | 2013-05-22 15:22:55 +0100 | [diff] [blame] | 206 | compatible = "stericsson,db8500-pinctrl"; |
Lee Jones | 8979cfe | 2013-01-11 15:45:28 +0000 | [diff] [blame] | 207 | prcm = <&prcmu>; |
Lee Jones | 5910de9 | 2012-05-26 06:25:36 +0100 | [diff] [blame] | 208 | }; |
| 209 | |
Lee Jones | b32dc86 | 2013-05-03 15:31:51 +0100 | [diff] [blame] | 210 | usb_per5@a03e0000 { |
Sebastian Andrzej Siewior | 4a6cd43 | 2013-08-20 18:40:27 +0200 | [diff] [blame] | 211 | compatible = "stericsson,db8500-musb"; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 212 | reg = <0xa03e0000 0x10000>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 213 | interrupts = <0 23 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | b32dc86 | 2013-05-03 15:31:51 +0100 | [diff] [blame] | 214 | interrupt-names = "mc"; |
| 215 | |
| 216 | dr_mode = "otg"; |
| 217 | |
| 218 | dmas = <&dma 38 0 0x2>, /* Logical - DevToMem */ |
| 219 | <&dma 38 0 0x0>, /* Logical - MemToDev */ |
| 220 | <&dma 37 0 0x2>, /* Logical - DevToMem */ |
| 221 | <&dma 37 0 0x0>, /* Logical - MemToDev */ |
| 222 | <&dma 36 0 0x2>, /* Logical - DevToMem */ |
| 223 | <&dma 36 0 0x0>, /* Logical - MemToDev */ |
| 224 | <&dma 19 0 0x2>, /* Logical - DevToMem */ |
| 225 | <&dma 19 0 0x0>, /* Logical - MemToDev */ |
| 226 | <&dma 18 0 0x2>, /* Logical - DevToMem */ |
| 227 | <&dma 18 0 0x0>, /* Logical - MemToDev */ |
| 228 | <&dma 17 0 0x2>, /* Logical - DevToMem */ |
| 229 | <&dma 17 0 0x0>, /* Logical - MemToDev */ |
| 230 | <&dma 16 0 0x2>, /* Logical - DevToMem */ |
| 231 | <&dma 16 0 0x0>, /* Logical - MemToDev */ |
| 232 | <&dma 39 0 0x2>, /* Logical - DevToMem */ |
| 233 | <&dma 39 0 0x0>; /* Logical - MemToDev */ |
| 234 | |
| 235 | dma-names = "iep_1_9", "oep_1_9", |
| 236 | "iep_2_10", "oep_2_10", |
| 237 | "iep_3_11", "oep_3_11", |
| 238 | "iep_4_12", "oep_4_12", |
| 239 | "iep_5_13", "oep_5_13", |
| 240 | "iep_6_14", "oep_6_14", |
| 241 | "iep_7_15", "oep_7_15", |
| 242 | "iep_8", "oep_8"; |
Lee Jones | e47339f | 2013-06-03 13:08:26 +0100 | [diff] [blame^] | 243 | |
| 244 | clocks = <&prcc_pclk 5 0>; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 245 | }; |
| 246 | |
Lee Jones | ba074ae | 2013-05-03 15:31:48 +0100 | [diff] [blame] | 247 | dma: dma-controller@801C0000 { |
| 248 | compatible = "stericsson,db8500-dma40", "stericsson,dma40"; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 249 | reg = <0x801C0000 0x1000 0x40010000 0x800>; |
Lee Jones | 70d39a8 | 2013-05-03 15:31:47 +0100 | [diff] [blame] | 250 | reg-names = "base", "lcpa"; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 251 | interrupts = <0 25 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | ba074ae | 2013-05-03 15:31:48 +0100 | [diff] [blame] | 252 | |
| 253 | #dma-cells = <3>; |
Lee Jones | d37fcdb | 2013-05-03 15:31:52 +0100 | [diff] [blame] | 254 | memcpy-channels = <56 57 58 59 60>; |
Lee Jones | e064cb2 | 2013-06-03 13:13:54 +0100 | [diff] [blame] | 255 | |
| 256 | clocks = <&prcmu_clk PRCMU_DMACLK>; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 257 | }; |
| 258 | |
Lee Jones | 8979cfe | 2013-01-11 15:45:28 +0000 | [diff] [blame] | 259 | prcmu: prcmu@80157000 { |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 260 | compatible = "stericsson,db8500-prcmu"; |
Linus Torvalds | 4d26aa3 | 2013-05-02 08:56:55 -0700 | [diff] [blame] | 261 | reg = <0x80157000 0x2000>, <0x801b0000 0x8000>, <0x801b8000 0x1000>; |
Lee Jones | e73081d | 2013-03-26 10:26:15 +0000 | [diff] [blame] | 262 | reg-names = "prcmu", "prcmu-tcpm", "prcmu-tcdm"; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 263 | interrupts = <0 47 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 264 | #address-cells = <1>; |
Lee Jones | 3de3d74 | 2012-04-24 10:00:15 +0100 | [diff] [blame] | 265 | #size-cells = <1>; |
Lee Jones | c09090b | 2012-08-03 15:42:25 +0100 | [diff] [blame] | 266 | interrupt-controller; |
| 267 | #interrupt-cells = <2>; |
Lee Jones | 3de3d74 | 2012-04-24 10:00:15 +0100 | [diff] [blame] | 268 | ranges; |
| 269 | |
Lee Jones | ccf74f7 | 2012-05-28 16:50:49 +0800 | [diff] [blame] | 270 | prcmu-timer-4@80157450 { |
Lee Jones | 3de3d74 | 2012-04-24 10:00:15 +0100 | [diff] [blame] | 271 | compatible = "stericsson,db8500-prcmu-timer-4"; |
| 272 | reg = <0x80157450 0xC>; |
| 273 | }; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 274 | |
hongbo.zhang | dc1956b | 2012-11-15 18:56:43 +0800 | [diff] [blame] | 275 | thermal@801573c0 { |
| 276 | compatible = "stericsson,db8500-thermal"; |
| 277 | reg = <0x801573c0 0x40>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 278 | interrupts = <21 IRQ_TYPE_LEVEL_HIGH>, |
| 279 | <22 IRQ_TYPE_LEVEL_HIGH>; |
hongbo.zhang | dc1956b | 2012-11-15 18:56:43 +0800 | [diff] [blame] | 280 | interrupt-names = "IRQ_HOTMON_LOW", "IRQ_HOTMON_HIGH"; |
| 281 | status = "disabled"; |
Lee Jones | 1d3f99f | 2013-06-06 12:21:15 +0100 | [diff] [blame] | 282 | }; |
hongbo.zhang | dc1956b | 2012-11-15 18:56:43 +0800 | [diff] [blame] | 283 | |
Lee Jones | e5999f2 | 2012-05-04 13:32:34 +0100 | [diff] [blame] | 284 | db8500-prcmu-regulators { |
| 285 | compatible = "stericsson,db8500-prcmu-regulator"; |
| 286 | |
| 287 | // DB8500_REGULATOR_VAPE |
| 288 | db8500_vape_reg: db8500_vape { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 289 | regulator-compatible = "db8500_vape"; |
Lee Jones | e5999f2 | 2012-05-04 13:32:34 +0100 | [diff] [blame] | 290 | regulator-always-on; |
| 291 | }; |
| 292 | |
| 293 | // DB8500_REGULATOR_VARM |
| 294 | db8500_varm_reg: db8500_varm { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 295 | regulator-compatible = "db8500_varm"; |
Lee Jones | e5999f2 | 2012-05-04 13:32:34 +0100 | [diff] [blame] | 296 | }; |
| 297 | |
| 298 | // DB8500_REGULATOR_VMODEM |
| 299 | db8500_vmodem_reg: db8500_vmodem { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 300 | regulator-compatible = "db8500_vmodem"; |
Lee Jones | e5999f2 | 2012-05-04 13:32:34 +0100 | [diff] [blame] | 301 | }; |
| 302 | |
| 303 | // DB8500_REGULATOR_VPLL |
| 304 | db8500_vpll_reg: db8500_vpll { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 305 | regulator-compatible = "db8500_vpll"; |
Lee Jones | e5999f2 | 2012-05-04 13:32:34 +0100 | [diff] [blame] | 306 | }; |
| 307 | |
| 308 | // DB8500_REGULATOR_VSMPS1 |
| 309 | db8500_vsmps1_reg: db8500_vsmps1 { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 310 | regulator-compatible = "db8500_vsmps1"; |
Lee Jones | e5999f2 | 2012-05-04 13:32:34 +0100 | [diff] [blame] | 311 | }; |
| 312 | |
| 313 | // DB8500_REGULATOR_VSMPS2 |
| 314 | db8500_vsmps2_reg: db8500_vsmps2 { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 315 | regulator-compatible = "db8500_vsmps2"; |
Lee Jones | e5999f2 | 2012-05-04 13:32:34 +0100 | [diff] [blame] | 316 | }; |
| 317 | |
| 318 | // DB8500_REGULATOR_VSMPS3 |
| 319 | db8500_vsmps3_reg: db8500_vsmps3 { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 320 | regulator-compatible = "db8500_vsmps3"; |
Lee Jones | e5999f2 | 2012-05-04 13:32:34 +0100 | [diff] [blame] | 321 | }; |
| 322 | |
| 323 | // DB8500_REGULATOR_VRF1 |
| 324 | db8500_vrf1_reg: db8500_vrf1 { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 325 | regulator-compatible = "db8500_vrf1"; |
Lee Jones | e5999f2 | 2012-05-04 13:32:34 +0100 | [diff] [blame] | 326 | }; |
| 327 | |
| 328 | // DB8500_REGULATOR_SWITCH_SVAMMDSP |
| 329 | db8500_sva_mmdsp_reg: db8500_sva_mmdsp { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 330 | regulator-compatible = "db8500_sva_mmdsp"; |
Lee Jones | e5999f2 | 2012-05-04 13:32:34 +0100 | [diff] [blame] | 331 | }; |
| 332 | |
| 333 | // DB8500_REGULATOR_SWITCH_SVAMMDSPRET |
| 334 | db8500_sva_mmdsp_ret_reg: db8500_sva_mmdsp_ret { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 335 | regulator-compatible = "db8500_sva_mmdsp_ret"; |
Lee Jones | e5999f2 | 2012-05-04 13:32:34 +0100 | [diff] [blame] | 336 | }; |
| 337 | |
| 338 | // DB8500_REGULATOR_SWITCH_SVAPIPE |
| 339 | db8500_sva_pipe_reg: db8500_sva_pipe { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 340 | regulator-compatible = "db8500_sva_pipe"; |
Lee Jones | e5999f2 | 2012-05-04 13:32:34 +0100 | [diff] [blame] | 341 | }; |
| 342 | |
| 343 | // DB8500_REGULATOR_SWITCH_SIAMMDSP |
| 344 | db8500_sia_mmdsp_reg: db8500_sia_mmdsp { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 345 | regulator-compatible = "db8500_sia_mmdsp"; |
Lee Jones | e5999f2 | 2012-05-04 13:32:34 +0100 | [diff] [blame] | 346 | }; |
| 347 | |
| 348 | // DB8500_REGULATOR_SWITCH_SIAMMDSPRET |
| 349 | db8500_sia_mmdsp_ret_reg: db8500_sia_mmdsp_ret { |
Lee Jones | e5999f2 | 2012-05-04 13:32:34 +0100 | [diff] [blame] | 350 | }; |
| 351 | |
| 352 | // DB8500_REGULATOR_SWITCH_SIAPIPE |
| 353 | db8500_sia_pipe_reg: db8500_sia_pipe { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 354 | regulator-compatible = "db8500_sia_pipe"; |
Lee Jones | e5999f2 | 2012-05-04 13:32:34 +0100 | [diff] [blame] | 355 | }; |
| 356 | |
| 357 | // DB8500_REGULATOR_SWITCH_SGA |
| 358 | db8500_sga_reg: db8500_sga { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 359 | regulator-compatible = "db8500_sga"; |
Lee Jones | e5999f2 | 2012-05-04 13:32:34 +0100 | [diff] [blame] | 360 | vin-supply = <&db8500_vape_reg>; |
| 361 | }; |
| 362 | |
| 363 | // DB8500_REGULATOR_SWITCH_B2R2_MCDE |
| 364 | db8500_b2r2_mcde_reg: db8500_b2r2_mcde { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 365 | regulator-compatible = "db8500_b2r2_mcde"; |
Lee Jones | e5999f2 | 2012-05-04 13:32:34 +0100 | [diff] [blame] | 366 | vin-supply = <&db8500_vape_reg>; |
| 367 | }; |
| 368 | |
| 369 | // DB8500_REGULATOR_SWITCH_ESRAM12 |
| 370 | db8500_esram12_reg: db8500_esram12 { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 371 | regulator-compatible = "db8500_esram12"; |
Lee Jones | e5999f2 | 2012-05-04 13:32:34 +0100 | [diff] [blame] | 372 | }; |
| 373 | |
| 374 | // DB8500_REGULATOR_SWITCH_ESRAM12RET |
| 375 | db8500_esram12_ret_reg: db8500_esram12_ret { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 376 | regulator-compatible = "db8500_esram12_ret"; |
Lee Jones | e5999f2 | 2012-05-04 13:32:34 +0100 | [diff] [blame] | 377 | }; |
| 378 | |
| 379 | // DB8500_REGULATOR_SWITCH_ESRAM34 |
| 380 | db8500_esram34_reg: db8500_esram34 { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 381 | regulator-compatible = "db8500_esram34"; |
Lee Jones | e5999f2 | 2012-05-04 13:32:34 +0100 | [diff] [blame] | 382 | }; |
| 383 | |
| 384 | // DB8500_REGULATOR_SWITCH_ESRAM34RET |
| 385 | db8500_esram34_ret_reg: db8500_esram34_ret { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 386 | regulator-compatible = "db8500_esram34_ret"; |
Lee Jones | e5999f2 | 2012-05-04 13:32:34 +0100 | [diff] [blame] | 387 | }; |
| 388 | }; |
| 389 | |
Arnd Bergmann | d52701d | 2013-03-12 09:39:01 +0100 | [diff] [blame] | 390 | ab8500 { |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 391 | compatible = "stericsson,ab8500"; |
Lee Jones | 8d4c6d4 | 2012-08-03 20:37:35 +0100 | [diff] [blame] | 392 | interrupt-parent = <&intc>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 393 | interrupts = <0 40 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 732973c | 2012-05-29 10:49:33 +0800 | [diff] [blame] | 394 | interrupt-controller; |
| 395 | #interrupt-cells = <2>; |
Lee Jones | 4a85c7f | 2012-05-29 14:29:53 +0800 | [diff] [blame] | 396 | |
Lee Jones | 348f3bc | 2013-06-18 09:51:57 +0100 | [diff] [blame] | 397 | ab8500_gpio: ab8500-gpio { |
| 398 | gpio-controller; |
| 399 | #gpio-cells = <2>; |
| 400 | }; |
| 401 | |
Lee Jones | d4b29ac | 2012-05-26 07:03:48 +0100 | [diff] [blame] | 402 | ab8500-rtc { |
| 403 | compatible = "stericsson,ab8500-rtc"; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 404 | interrupts = <17 IRQ_TYPE_LEVEL_HIGH |
| 405 | 18 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | d4b29ac | 2012-05-26 07:03:48 +0100 | [diff] [blame] | 406 | interrupt-names = "60S", "ALARM"; |
| 407 | }; |
| 408 | |
Lee Jones | 4eda912 | 2012-05-28 16:59:26 +0800 | [diff] [blame] | 409 | ab8500-gpadc { |
| 410 | compatible = "stericsson,ab8500-gpadc"; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 411 | interrupts = <32 IRQ_TYPE_LEVEL_HIGH |
| 412 | 39 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 4eda912 | 2012-05-28 16:59:26 +0800 | [diff] [blame] | 413 | interrupt-names = "HW_CONV_END", "SW_CONV_END"; |
| 414 | vddadc-supply = <&ab8500_ldo_tvout_reg>; |
| 415 | }; |
| 416 | |
Rajanikanth H.V | e0f1abe | 2012-11-18 18:45:41 -0800 | [diff] [blame] | 417 | ab8500_battery: ab8500_battery { |
| 418 | stericsson,battery-type = "LIPO"; |
| 419 | thermistor-on-batctrl; |
| 420 | }; |
| 421 | |
| 422 | ab8500_fg { |
| 423 | compatible = "stericsson,ab8500-fg"; |
| 424 | battery = <&ab8500_battery>; |
| 425 | }; |
| 426 | |
Rajanikanth H.V | bd9e8ab | 2012-11-18 19:16:58 -0800 | [diff] [blame] | 427 | ab8500_btemp { |
| 428 | compatible = "stericsson,ab8500-btemp"; |
| 429 | battery = <&ab8500_battery>; |
| 430 | }; |
| 431 | |
Rajanikanth H.V | 4aef72d | 2012-11-18 19:17:47 -0800 | [diff] [blame] | 432 | ab8500_charger { |
| 433 | compatible = "stericsson,ab8500-charger"; |
| 434 | battery = <&ab8500_battery>; |
| 435 | vddadc-supply = <&ab8500_ldo_tvout_reg>; |
| 436 | }; |
| 437 | |
Rajanikanth H.V | a12810a | 2012-10-31 15:40:33 +0000 | [diff] [blame] | 438 | ab8500_chargalg { |
| 439 | compatible = "stericsson,ab8500-chargalg"; |
| 440 | battery = <&ab8500_battery>; |
| 441 | }; |
| 442 | |
Rajanikanth H.V | e0f1abe | 2012-11-18 18:45:41 -0800 | [diff] [blame] | 443 | ab8500_usb { |
Lee Jones | ee189ce | 2012-05-03 14:40:24 +0100 | [diff] [blame] | 444 | compatible = "stericsson,ab8500-usb"; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 445 | interrupts = < 90 IRQ_TYPE_LEVEL_HIGH |
| 446 | 96 IRQ_TYPE_LEVEL_HIGH |
| 447 | 14 IRQ_TYPE_LEVEL_HIGH |
| 448 | 15 IRQ_TYPE_LEVEL_HIGH |
| 449 | 79 IRQ_TYPE_LEVEL_HIGH |
| 450 | 74 IRQ_TYPE_LEVEL_HIGH |
| 451 | 75 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | ee189ce | 2012-05-03 14:40:24 +0100 | [diff] [blame] | 452 | interrupt-names = "ID_WAKEUP_R", |
| 453 | "ID_WAKEUP_F", |
| 454 | "VBUS_DET_F", |
| 455 | "VBUS_DET_R", |
| 456 | "USB_LINK_STATUS", |
| 457 | "USB_ADP_PROBE_PLUG", |
| 458 | "USB_ADP_PROBE_UNPLUG"; |
Fabio Baltieri | 99b38ee | 2013-04-09 11:16:56 +0200 | [diff] [blame] | 459 | vddulpivio18-supply = <&ab8500_ldo_intcore_reg>; |
Lee Jones | ee189ce | 2012-05-03 14:40:24 +0100 | [diff] [blame] | 460 | v-ape-supply = <&db8500_vape_reg>; |
| 461 | musb_1v8-supply = <&db8500_vsmps2_reg>; |
| 462 | }; |
| 463 | |
Lee Jones | 12cb7bd | 2012-05-02 08:45:40 +0100 | [diff] [blame] | 464 | ab8500-ponkey { |
Lee Jones | 7463070 | 2012-08-09 13:00:12 +0100 | [diff] [blame] | 465 | compatible = "stericsson,ab8500-poweron-key"; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 466 | interrupts = <6 IRQ_TYPE_LEVEL_HIGH |
| 467 | 7 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 12cb7bd | 2012-05-02 08:45:40 +0100 | [diff] [blame] | 468 | interrupt-names = "ONKEY_DBF", "ONKEY_DBR"; |
| 469 | }; |
| 470 | |
Lee Jones | 401cd1b | 2012-05-03 12:53:55 +0100 | [diff] [blame] | 471 | ab8500-sysctrl { |
| 472 | compatible = "stericsson,ab8500-sysctrl"; |
| 473 | }; |
| 474 | |
Lee Jones | 78451de | 2012-05-03 13:03:59 +0100 | [diff] [blame] | 475 | ab8500-pwm { |
| 476 | compatible = "stericsson,ab8500-pwm"; |
| 477 | }; |
| 478 | |
Lee Jones | 215891e | 2012-05-01 16:11:19 +0100 | [diff] [blame] | 479 | ab8500-debugfs { |
| 480 | compatible = "stericsson,ab8500-debug"; |
| 481 | }; |
Lee Jones | 4a85c7f | 2012-05-29 14:29:53 +0800 | [diff] [blame] | 482 | |
Lee Jones | 9c06af3 | 2012-07-25 12:50:13 +0100 | [diff] [blame] | 483 | codec: ab8500-codec { |
| 484 | compatible = "stericsson,ab8500-codec"; |
| 485 | |
Fabio Baltieri | f99808a | 2013-05-30 15:27:43 +0200 | [diff] [blame] | 486 | V-AUD-supply = <&ab8500_ldo_audio_reg>; |
| 487 | V-AMIC1-supply = <&ab8500_ldo_anamic1_reg>; |
| 488 | V-AMIC2-supply = <&ab8500_ldo_anamic2_reg>; |
| 489 | V-DMIC-supply = <&ab8500_ldo_dmic_reg>; |
| 490 | |
Lee Jones | 9c06af3 | 2012-07-25 12:50:13 +0100 | [diff] [blame] | 491 | stericsson,earpeice-cmv = <950>; /* Units in mV. */ |
| 492 | }; |
| 493 | |
Lee Jones | 62ebfe6 | 2013-06-07 17:11:19 +0100 | [diff] [blame] | 494 | ext_regulators: ab8500-ext-regulators { |
| 495 | compatible = "stericsson,ab8500-ext-regulator"; |
| 496 | |
| 497 | ab8500_ext1_reg: ab8500_ext1 { |
| 498 | regulator-compatible = "ab8500_ext1"; |
| 499 | regulator-min-microvolt = <1800000>; |
| 500 | regulator-max-microvolt = <1800000>; |
| 501 | regulator-boot-on; |
| 502 | regulator-always-on; |
| 503 | }; |
| 504 | |
| 505 | ab8500_ext2_reg: ab8500_ext2 { |
| 506 | regulator-compatible = "ab8500_ext2"; |
| 507 | regulator-min-microvolt = <1360000>; |
| 508 | regulator-max-microvolt = <1360000>; |
| 509 | regulator-boot-on; |
| 510 | regulator-always-on; |
| 511 | }; |
| 512 | |
| 513 | ab8500_ext3_reg: ab8500_ext3 { |
| 514 | regulator-compatible = "ab8500_ext3"; |
| 515 | regulator-min-microvolt = <3400000>; |
| 516 | regulator-max-microvolt = <3400000>; |
| 517 | regulator-boot-on; |
| 518 | }; |
| 519 | }; |
| 520 | |
Lee Jones | 4a85c7f | 2012-05-29 14:29:53 +0800 | [diff] [blame] | 521 | ab8500-regulators { |
| 522 | compatible = "stericsson,ab8500-regulator"; |
Lee Jones | 75f0999 | 2013-06-07 17:11:20 +0100 | [diff] [blame] | 523 | vin-supply = <&ab8500_ext3_reg>; |
Lee Jones | 4a85c7f | 2012-05-29 14:29:53 +0800 | [diff] [blame] | 524 | |
| 525 | // supplies to the display/camera |
| 526 | ab8500_ldo_aux1_reg: ab8500_ldo_aux1 { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 527 | regulator-compatible = "ab8500_ldo_aux1"; |
Lee Jones | 4a85c7f | 2012-05-29 14:29:53 +0800 | [diff] [blame] | 528 | regulator-min-microvolt = <2500000>; |
| 529 | regulator-max-microvolt = <2900000>; |
| 530 | regulator-boot-on; |
| 531 | /* BUG: If turned off MMC will be affected. */ |
| 532 | regulator-always-on; |
| 533 | }; |
| 534 | |
| 535 | // supplies to the on-board eMMC |
| 536 | ab8500_ldo_aux2_reg: ab8500_ldo_aux2 { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 537 | regulator-compatible = "ab8500_ldo_aux2"; |
Lee Jones | 4a85c7f | 2012-05-29 14:29:53 +0800 | [diff] [blame] | 538 | regulator-min-microvolt = <1100000>; |
| 539 | regulator-max-microvolt = <3300000>; |
| 540 | }; |
| 541 | |
| 542 | // supply for VAUX3; SDcard slots |
| 543 | ab8500_ldo_aux3_reg: ab8500_ldo_aux3 { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 544 | regulator-compatible = "ab8500_ldo_aux3"; |
Lee Jones | 4a85c7f | 2012-05-29 14:29:53 +0800 | [diff] [blame] | 545 | regulator-min-microvolt = <1100000>; |
| 546 | regulator-max-microvolt = <3300000>; |
| 547 | }; |
| 548 | |
| 549 | // supply for v-intcore12; VINTCORE12 LDO |
Fabio Baltieri | 99b38ee | 2013-04-09 11:16:56 +0200 | [diff] [blame] | 550 | ab8500_ldo_intcore_reg: ab8500_ldo_intcore { |
| 551 | regulator-compatible = "ab8500_ldo_intcore"; |
Lee Jones | 4a85c7f | 2012-05-29 14:29:53 +0800 | [diff] [blame] | 552 | }; |
| 553 | |
| 554 | // supply for tvout; gpadc; TVOUT LDO |
| 555 | ab8500_ldo_tvout_reg: ab8500_ldo_tvout { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 556 | regulator-compatible = "ab8500_ldo_tvout"; |
Lee Jones | 4a85c7f | 2012-05-29 14:29:53 +0800 | [diff] [blame] | 557 | }; |
| 558 | |
| 559 | // supply for ab8500-usb; USB LDO |
| 560 | ab8500_ldo_usb_reg: ab8500_ldo_usb { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 561 | regulator-compatible = "ab8500_ldo_usb"; |
Lee Jones | 4a85c7f | 2012-05-29 14:29:53 +0800 | [diff] [blame] | 562 | }; |
| 563 | |
| 564 | // supply for ab8500-vaudio; VAUDIO LDO |
| 565 | ab8500_ldo_audio_reg: ab8500_ldo_audio { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 566 | regulator-compatible = "ab8500_ldo_audio"; |
Lee Jones | 4a85c7f | 2012-05-29 14:29:53 +0800 | [diff] [blame] | 567 | }; |
| 568 | |
Fabio Baltieri | 4aa4487 | 2013-05-30 15:27:41 +0200 | [diff] [blame] | 569 | // supply for v-anamic1 VAMIC1 LDO |
Lee Jones | 4a85c7f | 2012-05-29 14:29:53 +0800 | [diff] [blame] | 570 | ab8500_ldo_anamic1_reg: ab8500_ldo_anamic1 { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 571 | regulator-compatible = "ab8500_ldo_anamic1"; |
Lee Jones | 4a85c7f | 2012-05-29 14:29:53 +0800 | [diff] [blame] | 572 | }; |
| 573 | |
| 574 | // supply for v-amic2; VAMIC2 LDO; reuse constants for AMIC1 |
Fabio Baltieri | 5510ed9 | 2013-05-30 15:27:42 +0200 | [diff] [blame] | 575 | ab8500_ldo_anamic2_reg: ab8500_ldo_anamic2 { |
| 576 | regulator-compatible = "ab8500_ldo_anamic2"; |
Lee Jones | 4a85c7f | 2012-05-29 14:29:53 +0800 | [diff] [blame] | 577 | }; |
| 578 | |
| 579 | // supply for v-dmic; VDMIC LDO |
| 580 | ab8500_ldo_dmic_reg: ab8500_ldo_dmic { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 581 | regulator-compatible = "ab8500_ldo_dmic"; |
Lee Jones | 4a85c7f | 2012-05-29 14:29:53 +0800 | [diff] [blame] | 582 | }; |
| 583 | |
| 584 | // supply for U8500 CSI/DSI; VANA LDO |
| 585 | ab8500_ldo_ana_reg: ab8500_ldo_ana { |
Laxman Dewangan | da26848 | 2012-06-20 17:53:05 +0530 | [diff] [blame] | 586 | regulator-compatible = "ab8500_ldo_ana"; |
Lee Jones | 4a85c7f | 2012-05-29 14:29:53 +0800 | [diff] [blame] | 587 | }; |
| 588 | }; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 589 | }; |
| 590 | }; |
| 591 | |
| 592 | i2c@80004000 { |
Lee Jones | d524fa7 | 2012-06-18 09:55:44 +0100 | [diff] [blame] | 593 | compatible = "stericsson,db8500-i2c", "st,nomadik-i2c", "arm,primecell"; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 594 | reg = <0x80004000 0x1000>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 595 | interrupts = <0 21 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 35b33d2 | 2012-10-24 11:07:02 +0100 | [diff] [blame] | 596 | |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 597 | #address-cells = <1>; |
| 598 | #size-cells = <0>; |
Lee Jones | d524fa7 | 2012-06-18 09:55:44 +0100 | [diff] [blame] | 599 | v-i2c-supply = <&db8500_vape_reg>; |
| 600 | |
| 601 | clock-frequency = <400000>; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 602 | }; |
| 603 | |
| 604 | i2c@80122000 { |
Lee Jones | d524fa7 | 2012-06-18 09:55:44 +0100 | [diff] [blame] | 605 | compatible = "stericsson,db8500-i2c", "st,nomadik-i2c", "arm,primecell"; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 606 | reg = <0x80122000 0x1000>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 607 | interrupts = <0 22 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 35b33d2 | 2012-10-24 11:07:02 +0100 | [diff] [blame] | 608 | |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 609 | #address-cells = <1>; |
| 610 | #size-cells = <0>; |
Lee Jones | d524fa7 | 2012-06-18 09:55:44 +0100 | [diff] [blame] | 611 | v-i2c-supply = <&db8500_vape_reg>; |
| 612 | |
| 613 | clock-frequency = <400000>; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 614 | }; |
| 615 | |
| 616 | i2c@80128000 { |
Lee Jones | d524fa7 | 2012-06-18 09:55:44 +0100 | [diff] [blame] | 617 | compatible = "stericsson,db8500-i2c", "st,nomadik-i2c", "arm,primecell"; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 618 | reg = <0x80128000 0x1000>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 619 | interrupts = <0 55 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 35b33d2 | 2012-10-24 11:07:02 +0100 | [diff] [blame] | 620 | |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 621 | #address-cells = <1>; |
| 622 | #size-cells = <0>; |
Lee Jones | d524fa7 | 2012-06-18 09:55:44 +0100 | [diff] [blame] | 623 | v-i2c-supply = <&db8500_vape_reg>; |
| 624 | |
| 625 | clock-frequency = <400000>; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 626 | }; |
| 627 | |
| 628 | i2c@80110000 { |
Lee Jones | d524fa7 | 2012-06-18 09:55:44 +0100 | [diff] [blame] | 629 | compatible = "stericsson,db8500-i2c", "st,nomadik-i2c", "arm,primecell"; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 630 | reg = <0x80110000 0x1000>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 631 | interrupts = <0 12 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 35b33d2 | 2012-10-24 11:07:02 +0100 | [diff] [blame] | 632 | |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 633 | #address-cells = <1>; |
| 634 | #size-cells = <0>; |
Lee Jones | d524fa7 | 2012-06-18 09:55:44 +0100 | [diff] [blame] | 635 | v-i2c-supply = <&db8500_vape_reg>; |
| 636 | |
| 637 | clock-frequency = <400000>; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 638 | }; |
| 639 | |
| 640 | i2c@8012a000 { |
Lee Jones | d524fa7 | 2012-06-18 09:55:44 +0100 | [diff] [blame] | 641 | compatible = "stericsson,db8500-i2c", "st,nomadik-i2c", "arm,primecell"; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 642 | reg = <0x8012a000 0x1000>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 643 | interrupts = <0 51 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 35b33d2 | 2012-10-24 11:07:02 +0100 | [diff] [blame] | 644 | |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 645 | #address-cells = <1>; |
| 646 | #size-cells = <0>; |
Lee Jones | d524fa7 | 2012-06-18 09:55:44 +0100 | [diff] [blame] | 647 | v-i2c-supply = <&db8500_vape_reg>; |
| 648 | |
| 649 | clock-frequency = <400000>; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 650 | }; |
| 651 | |
| 652 | ssp@80002000 { |
| 653 | compatible = "arm,pl022", "arm,primecell"; |
Lee Jones | c164fa6 | 2012-09-07 12:09:34 +0100 | [diff] [blame] | 654 | reg = <0x80002000 0x1000>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 655 | interrupts = <0 14 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 656 | #address-cells = <1>; |
| 657 | #size-cells = <0>; |
| 658 | status = "disabled"; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 659 | }; |
| 660 | |
| 661 | uart@80120000 { |
| 662 | compatible = "arm,pl011", "arm,primecell"; |
| 663 | reg = <0x80120000 0x1000>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 664 | interrupts = <0 11 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | fbff01c | 2013-05-03 15:31:49 +0100 | [diff] [blame] | 665 | |
| 666 | dmas = <&dma 13 0 0x2>, /* Logical - DevToMem */ |
| 667 | <&dma 13 0 0x0>; /* Logical - MemToDev */ |
| 668 | dma-names = "rx", "tx"; |
| 669 | |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 670 | status = "disabled"; |
| 671 | }; |
Lee Jones | fbff01c | 2013-05-03 15:31:49 +0100 | [diff] [blame] | 672 | |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 673 | uart@80121000 { |
| 674 | compatible = "arm,pl011", "arm,primecell"; |
| 675 | reg = <0x80121000 0x1000>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 676 | interrupts = <0 19 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | fbff01c | 2013-05-03 15:31:49 +0100 | [diff] [blame] | 677 | |
| 678 | dmas = <&dma 12 0 0x2>, /* Logical - DevToMem */ |
| 679 | <&dma 12 0 0x0>; /* Logical - MemToDev */ |
| 680 | dma-names = "rx", "tx"; |
| 681 | |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 682 | status = "disabled"; |
| 683 | }; |
Lee Jones | fbff01c | 2013-05-03 15:31:49 +0100 | [diff] [blame] | 684 | |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 685 | uart@80007000 { |
| 686 | compatible = "arm,pl011", "arm,primecell"; |
| 687 | reg = <0x80007000 0x1000>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 688 | interrupts = <0 26 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | fbff01c | 2013-05-03 15:31:49 +0100 | [diff] [blame] | 689 | |
| 690 | dmas = <&dma 11 0 0x2>, /* Logical - DevToMem */ |
| 691 | <&dma 11 0 0x0>; /* Logical - MemToDev */ |
| 692 | dma-names = "rx", "tx"; |
| 693 | |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 694 | status = "disabled"; |
| 695 | }; |
| 696 | |
Lee Jones | 81bf8c2 | 2012-09-26 12:55:56 +0100 | [diff] [blame] | 697 | sdi0_per1@80126000 { |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 698 | compatible = "arm,pl18x", "arm,primecell"; |
| 699 | reg = <0x80126000 0x1000>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 700 | interrupts = <0 60 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 498315b | 2013-05-03 15:31:50 +0100 | [diff] [blame] | 701 | |
| 702 | dmas = <&dma 29 0 0x2>, /* Logical - DevToMem */ |
| 703 | <&dma 29 0 0x0>; /* Logical - MemToDev */ |
| 704 | dma-names = "rx", "tx"; |
| 705 | |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 706 | status = "disabled"; |
| 707 | }; |
Lee Jones | 76ff4e4 | 2012-10-24 11:10:05 +0100 | [diff] [blame] | 708 | |
Lee Jones | 81bf8c2 | 2012-09-26 12:55:56 +0100 | [diff] [blame] | 709 | sdi1_per2@80118000 { |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 710 | compatible = "arm,pl18x", "arm,primecell"; |
| 711 | reg = <0x80118000 0x1000>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 712 | interrupts = <0 50 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 498315b | 2013-05-03 15:31:50 +0100 | [diff] [blame] | 713 | |
| 714 | dmas = <&dma 32 0 0x2>, /* Logical - DevToMem */ |
| 715 | <&dma 32 0 0x0>; /* Logical - MemToDev */ |
| 716 | dma-names = "rx", "tx"; |
| 717 | |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 718 | status = "disabled"; |
| 719 | }; |
Lee Jones | 76ff4e4 | 2012-10-24 11:10:05 +0100 | [diff] [blame] | 720 | |
Lee Jones | 81bf8c2 | 2012-09-26 12:55:56 +0100 | [diff] [blame] | 721 | sdi2_per3@80005000 { |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 722 | compatible = "arm,pl18x", "arm,primecell"; |
| 723 | reg = <0x80005000 0x1000>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 724 | interrupts = <0 41 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 498315b | 2013-05-03 15:31:50 +0100 | [diff] [blame] | 725 | |
| 726 | dmas = <&dma 28 0 0x2>, /* Logical - DevToMem */ |
| 727 | <&dma 28 0 0x0>; /* Logical - MemToDev */ |
| 728 | dma-names = "rx", "tx"; |
| 729 | |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 730 | status = "disabled"; |
| 731 | }; |
Lee Jones | 76ff4e4 | 2012-10-24 11:10:05 +0100 | [diff] [blame] | 732 | |
Lee Jones | 81bf8c2 | 2012-09-26 12:55:56 +0100 | [diff] [blame] | 733 | sdi3_per2@80119000 { |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 734 | compatible = "arm,pl18x", "arm,primecell"; |
| 735 | reg = <0x80119000 0x1000>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 736 | interrupts = <0 59 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 737 | status = "disabled"; |
| 738 | }; |
Lee Jones | 76ff4e4 | 2012-10-24 11:10:05 +0100 | [diff] [blame] | 739 | |
Lee Jones | 81bf8c2 | 2012-09-26 12:55:56 +0100 | [diff] [blame] | 740 | sdi4_per2@80114000 { |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 741 | compatible = "arm,pl18x", "arm,primecell"; |
| 742 | reg = <0x80114000 0x1000>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 743 | interrupts = <0 99 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 498315b | 2013-05-03 15:31:50 +0100 | [diff] [blame] | 744 | |
| 745 | dmas = <&dma 42 0 0x2>, /* Logical - DevToMem */ |
| 746 | <&dma 42 0 0x0>; /* Logical - MemToDev */ |
| 747 | dma-names = "rx", "tx"; |
| 748 | |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 749 | status = "disabled"; |
| 750 | }; |
Lee Jones | 76ff4e4 | 2012-10-24 11:10:05 +0100 | [diff] [blame] | 751 | |
Lee Jones | 81bf8c2 | 2012-09-26 12:55:56 +0100 | [diff] [blame] | 752 | sdi5_per3@80008000 { |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 753 | compatible = "arm,pl18x", "arm,primecell"; |
Lee Jones | 76ff4e4 | 2012-10-24 11:10:05 +0100 | [diff] [blame] | 754 | reg = <0x80008000 0x1000>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 755 | interrupts = <0 100 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | 7e0ce27 | 2012-03-15 16:46:17 +0000 | [diff] [blame] | 756 | status = "disabled"; |
| 757 | }; |
Lee Jones | bf76e06 | 2012-04-24 10:53:18 +0100 | [diff] [blame] | 758 | |
Lee Jones | fe16452 | 2012-07-31 12:37:16 +0100 | [diff] [blame] | 759 | msp0: msp@80123000 { |
| 760 | compatible = "stericsson,ux500-msp-i2s"; |
| 761 | reg = <0x80123000 0x1000>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 762 | interrupts = <0 31 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | fe16452 | 2012-07-31 12:37:16 +0100 | [diff] [blame] | 763 | v-ape-supply = <&db8500_vape_reg>; |
| 764 | status = "disabled"; |
| 765 | }; |
| 766 | |
| 767 | msp1: msp@80124000 { |
| 768 | compatible = "stericsson,ux500-msp-i2s"; |
| 769 | reg = <0x80124000 0x1000>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 770 | interrupts = <0 62 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | fe16452 | 2012-07-31 12:37:16 +0100 | [diff] [blame] | 771 | v-ape-supply = <&db8500_vape_reg>; |
| 772 | status = "disabled"; |
| 773 | }; |
| 774 | |
| 775 | // HDMI sound |
| 776 | msp2: msp@80117000 { |
| 777 | compatible = "stericsson,ux500-msp-i2s"; |
| 778 | reg = <0x80117000 0x1000>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 779 | interrupts = <0 98 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | fe16452 | 2012-07-31 12:37:16 +0100 | [diff] [blame] | 780 | v-ape-supply = <&db8500_vape_reg>; |
| 781 | status = "disabled"; |
| 782 | }; |
| 783 | |
| 784 | msp3: msp@80125000 { |
| 785 | compatible = "stericsson,ux500-msp-i2s"; |
| 786 | reg = <0x80125000 0x1000>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 787 | interrupts = <0 62 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | fe16452 | 2012-07-31 12:37:16 +0100 | [diff] [blame] | 788 | v-ape-supply = <&db8500_vape_reg>; |
| 789 | status = "disabled"; |
| 790 | }; |
| 791 | |
Lee Jones | bf76e06 | 2012-04-24 10:53:18 +0100 | [diff] [blame] | 792 | external-bus@50000000 { |
| 793 | compatible = "simple-bus"; |
| 794 | reg = <0x50000000 0x4000000>; |
| 795 | #address-cells = <1>; |
| 796 | #size-cells = <1>; |
| 797 | ranges = <0 0x50000000 0x4000000>; |
| 798 | status = "disabled"; |
| 799 | }; |
hongbo.zhang | dc1956b | 2012-11-15 18:56:43 +0800 | [diff] [blame] | 800 | |
| 801 | cpufreq-cooling { |
| 802 | compatible = "stericsson,db8500-cpufreq-cooling"; |
| 803 | status = "disabled"; |
| 804 | }; |
| 805 | |
Lee Jones | 0563f63 | 2012-10-24 11:18:14 +0100 | [diff] [blame] | 806 | vmmci: regulator-gpio { |
| 807 | compatible = "regulator-gpio"; |
| 808 | |
| 809 | regulator-min-microvolt = <1800000>; |
Lee Jones | 4f902b4 | 2012-12-06 14:00:01 +0000 | [diff] [blame] | 810 | regulator-max-microvolt = <2900000>; |
Lee Jones | 0563f63 | 2012-10-24 11:18:14 +0100 | [diff] [blame] | 811 | regulator-name = "mmci-reg"; |
| 812 | regulator-type = "voltage"; |
| 813 | |
Lee Jones | 874c920 | 2012-12-07 13:46:01 +0000 | [diff] [blame] | 814 | startup-delay-us = <100>; |
Lee Jones | e7bda30 | 2012-12-06 15:00:46 +0000 | [diff] [blame] | 815 | enable-active-high; |
| 816 | |
Lee Jones | 0563f63 | 2012-10-24 11:18:14 +0100 | [diff] [blame] | 817 | states = <1800000 0x1 |
| 818 | 2900000 0x0>; |
Lee Jones | c94a4ab | 2012-11-15 13:02:16 +0000 | [diff] [blame] | 819 | |
| 820 | status = "disabled"; |
Lee Jones | 0563f63 | 2012-10-24 11:18:14 +0100 | [diff] [blame] | 821 | }; |
Lee Jones | fe2e9f9 | 2013-05-16 12:27:21 +0100 | [diff] [blame] | 822 | |
| 823 | cryp@a03cb000 { |
| 824 | compatible = "stericsson,ux500-cryp"; |
| 825 | reg = <0xa03cb000 0x1000>; |
Linus Walleij | 90c4025 | 2013-05-29 19:15:39 +0200 | [diff] [blame] | 826 | interrupts = <0 15 IRQ_TYPE_LEVEL_HIGH>; |
Lee Jones | fe2e9f9 | 2013-05-16 12:27:21 +0100 | [diff] [blame] | 827 | |
| 828 | v-ape-supply = <&db8500_vape_reg>; |
Lee Jones | fe2e9f9 | 2013-05-16 12:27:21 +0100 | [diff] [blame] | 829 | }; |
Lee Jones | 61122cf | 2013-05-16 12:27:22 +0100 | [diff] [blame] | 830 | |
| 831 | hash@a03c2000 { |
| 832 | compatible = "stericsson,ux500-hash"; |
| 833 | reg = <0xa03c2000 0x1000>; |
| 834 | |
| 835 | v-ape-supply = <&db8500_vape_reg>; |
Lee Jones | 61122cf | 2013-05-16 12:27:22 +0100 | [diff] [blame] | 836 | }; |
Arnd Bergmann | 5d0769f | 2012-03-02 23:07:21 +0000 | [diff] [blame] | 837 | }; |
| 838 | }; |