Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 | # SPDX-License-Identifier: GPL-2.0 %YAML 1.2 --- $id: http://devicetree.org/schemas/arm/atmel-at91.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: Atmel AT91 device tree bindings. maintainers: - Alexandre Belloni <alexandre.belloni@bootlin.com> - Ludovic Desroches <ludovic.desroches@microchip.com> description: | Boards with a SoC of the Atmel AT91 or SMART family shall have the following properties: $nodename: const: '/' compatible: oneOf: - items: - const: atmel,at91rm9200 - items: - enum: - olimex,sam9-l9260 - enum: - atmel,at91sam9260 - atmel,at91sam9261 - atmel,at91sam9263 - atmel,at91sam9g20 - atmel,at91sam9g45 - atmel,at91sam9n12 - atmel,at91sam9rl - atmel,at91sam9xe - atmel,at91sam9x60 - const: atmel,at91sam9 - items: - enum: - overkiz,kizboxmini-base # Overkiz kizbox Mini Base Board - overkiz,kizboxmini-mb # Overkiz kizbox Mini Mother Board - overkiz,kizboxmini-rd # Overkiz kizbox Mini RailDIN - overkiz,smartkiz # Overkiz SmartKiz Board - gardena,smart-gateway-at91sam # GARDENA smart Gateway (Article No. 19000) - const: atmel,at91sam9g25 - const: atmel,at91sam9x5 - const: atmel,at91sam9 - items: - enum: - atmel,at91sam9g15 - atmel,at91sam9g25 - atmel,at91sam9g35 - atmel,at91sam9x25 - atmel,at91sam9x35 - const: atmel,at91sam9x5 - const: atmel,at91sam9 - description: Overkiz kizbox3 board items: - const: overkiz,kizbox3-hs - const: atmel,sama5d27 - const: atmel,sama5d2 - const: atmel,sama5 - description: Microchip SAMA5D27 WLSOM1 items: - const: microchip,sama5d27-wlsom1 - const: atmel,sama5d27 - const: atmel,sama5d2 - const: atmel,sama5 - description: Microchip SAMA5D27 WLSOM1 Evaluation Kit items: - const: microchip,sama5d27-wlsom1-ek - const: microchip,sama5d27-wlsom1 - const: atmel,sama5d27 - const: atmel,sama5d2 - const: atmel,sama5 - items: - const: atmel,sama5d27 - const: atmel,sama5d2 - const: atmel,sama5 - description: Microchip SAMA5D2 Industrial Connectivity Platform items: - const: microchip,sama5d2-icp - const: atmel,sama5d27 - const: atmel,sama5d2 - const: atmel,sama5 - description: SAM9X60-EK board items: - const: microchip,sam9x60ek - const: microchip,sam9x60 - const: atmel,at91sam9 - description: Nattis v2 board with Natte v2 power board items: - const: axentia,nattis-2 - const: axentia,natte-2 - const: axentia,linea - const: atmel,sama5d31 - const: atmel,sama5d3 - const: atmel,sama5 - description: TSE-850 v3 board items: - const: axentia,tse850v3 - const: axentia,linea - const: atmel,sama5d31 - const: atmel,sama5d3 - const: atmel,sama5 - items: - const: axentia,linea - const: atmel,sama5d31 - const: atmel,sama5d3 - const: atmel,sama5 - description: Overkiz kizbox2 board with two heads items: - const: overkiz,kizbox2-2 - const: atmel,sama5d31 - const: atmel,sama5d3 - const: atmel,sama5 - items: - enum: - atmel,sama5d31 - atmel,sama5d33 - atmel,sama5d34 - atmel,sama5d35 - atmel,sama5d36 - const: atmel,sama5d3 - const: atmel,sama5 - items: - enum: - atmel,sama5d41 - atmel,sama5d42 - atmel,sama5d43 - atmel,sama5d44 - const: atmel,sama5d4 - const: atmel,sama5 - items: - enum: - atmel,sams70j19 - atmel,sams70j20 - atmel,sams70j21 - atmel,sams70n19 - atmel,sams70n20 - atmel,sams70n21 - atmel,sams70q19 - atmel,sams70q20 - atmel,sams70q21 - const: atmel,sams70 - const: atmel,samv7 - items: - enum: - atmel,samv70j19 - atmel,samv70j20 - atmel,samv70n19 - atmel,samv70n20 - atmel,samv70q19 - atmel,samv70q20 - const: atmel,samv70 - const: atmel,samv7 - items: - enum: - atmel,samv71j19 - atmel,samv71j20 - atmel,samv71j21 - atmel,samv71n19 - atmel,samv71n20 - atmel,samv71n21 - atmel,samv71q19 - atmel,samv71q20 - atmel,samv71q21 - const: atmel,samv71 - const: atmel,samv7 additionalProperties: true ... |