diff options
| author | fkan@amcc.com <fkan@amcc.com> | 2009-08-12 10:38:47 -0400 |
|---|---|---|
| committer | Josh Boyer <jwboyer@linux.vnet.ibm.com> | 2009-08-31 08:24:15 -0400 |
| commit | c9f75093a497bdc7389df983e914da17fad20d95 (patch) | |
| tree | ba0fd1fdaeaa4d91697b1d001bd51066dfccac76 | |
| parent | 241749261377f2e10d513505a75c071c0f4b3b51 (diff) | |
powerpc/44x: Add Eiger AMCC (AppliedMicro) PPC460SX evaluation board support.
This patch adds support for the AMCC (AppliedMicro) PPC460SX Eiger evaluation
board.
Signed-off-by: Tai Tri Nguyen <ttnguyen@amcc.com>
Acked-by: Feng Kan <fkan@amcc.com>
Acked-by: Tirumala Marri <tmarri@amcc.com>
Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
| -rw-r--r-- | arch/powerpc/boot/dts/eiger.dts | 421 | ||||
| -rw-r--r-- | arch/powerpc/configs/44x/eiger_defconfig | 1252 | ||||
| -rw-r--r-- | arch/powerpc/platforms/44x/Kconfig | 12 | ||||
| -rw-r--r-- | arch/powerpc/platforms/44x/ppc44x_simple.c | 1 |
4 files changed, 1686 insertions, 0 deletions
diff --git a/arch/powerpc/boot/dts/eiger.dts b/arch/powerpc/boot/dts/eiger.dts new file mode 100644 index 000000000000..c4a934f2e886 --- /dev/null +++ b/arch/powerpc/boot/dts/eiger.dts | |||
| @@ -0,0 +1,421 @@ | |||
| 1 | /* | ||
| 2 | * Device Tree Source for AMCC (AppliedMicro) Eiger(460SX) | ||
| 3 | * | ||
| 4 | * Copyright 2009 AMCC (AppliedMicro) <ttnguyen@amcc.com> | ||
| 5 | * | ||
| 6 | * This file is licensed under the terms of the GNU General Public | ||
| 7 | * License version 2. This program is licensed "as is" without | ||
| 8 | * any warranty of any kind, whether express or implied. | ||
| 9 | */ | ||
| 10 | |||
| 11 | /dts-v1/; | ||
| 12 | |||
| 13 | / { | ||
| 14 | #address-cells = <2>; | ||
| 15 | #size-cells = <1>; | ||
| 16 | model = "amcc,eiger"; | ||
| 17 | compatible = "amcc,eiger"; | ||
| 18 | dcr-parent = <&{/cpus/cpu@0}>; | ||
| 19 | |||
| 20 | aliases { | ||
| 21 | ethernet0 = &EMAC0; | ||
| 22 | ethernet1 = &EMAC1; | ||
| 23 | ethernet2 = &EMAC2; | ||
| 24 | ethernet3 = &EMAC3; | ||
| 25 | serial0 = &UART0; | ||
| 26 | serial1 = &UART1; | ||
| 27 | }; | ||
| 28 | |||
| 29 | cpus { | ||
| 30 | #address-cells = <1>; | ||
| 31 | #size-cells = <0>; | ||
| 32 | |||
| 33 | cpu@0 { | ||
| 34 | device_type = "cpu"; | ||
| 35 | model = "PowerPC,460SX"; | ||
| 36 | reg = <0x00000000>; | ||
| 37 | clock-frequency = <0>; /* Filled in by U-Boot */ | ||
| 38 | timebase-frequency = <0>; /* Filled in by U-Boot */ | ||
| 39 | i-cache-line-size = <32>; | ||
| 40 | d-cache-line-size = <32>; | ||
| 41 | i-cache-size = <32768>; | ||
| 42 | d-cache-size = <32768>; | ||
| 43 | dcr-controller; | ||
| 44 | dcr-access-method = "native"; | ||
| 45 | }; | ||
| 46 | }; | ||
| 47 | |||
| 48 | memory { | ||
| 49 | device_type = "memory"; | ||
| 50 | reg = <0x00000000 0x00000000 0x00000000>; /* Filled in by U-Boot */ | ||
| 51 | }; | ||
| 52 | |||
| 53 | UIC0: interrupt-controller0 { | ||
| 54 | compatible = "ibm,uic-460sx","ibm,uic"; | ||
| 55 | interrupt-controller; | ||
| 56 | cell-index = <0>; | ||
| 57 | dcr-reg = <0x0c0 0x009>; | ||
| 58 | #address-cells = <0>; | ||
| 59 | #size-cells = <0>; | ||
| 60 | #interrupt-cells = <2>; | ||
| 61 | }; | ||
| 62 | |||
| 63 | UIC1: interrupt-controller1 { | ||
| 64 | compatible = "ibm,uic-460sx","ibm,uic"; | ||
| 65 | interrupt-controller; | ||
| 66 | cell-index = <1>; | ||
| 67 | dcr-reg = <0x0d0 0x009>; | ||
| 68 | #address-cells = <0>; | ||
| 69 | #size-cells = <0>; | ||
| 70 | #interrupt-cells = <2>; | ||
| 71 | interrupts = <0x1e 0x4 0x1f 0x4>; /* cascade */ | ||
| 72 | interrupt-parent = <&UIC0>; | ||
| 73 | }; | ||
| 74 | |||
| 75 | UIC2: interrupt-controller2 { | ||
| 76 | compatible = "ibm,uic-460sx","ibm,uic"; | ||
| 77 | interrupt-controller; | ||
| 78 | cell-index = <2>; | ||
| 79 | dcr-reg = <0x0e0 0x009>; | ||
| 80 | #address-cells = <0>; | ||
| 81 | #size-cells = <0>; | ||
| 82 | #interrupt-cells = <2>; | ||
| 83 | interrupts = <0xa 0x4 0xb 0x4>; /* cascade */ | ||
| 84 | interrupt-parent = <&UIC0>; | ||
| 85 | }; | ||
| 86 | |||
| 87 | UIC3: interrupt-controller3 { | ||
| 88 | compatible = "ibm,uic-460sx","ibm,uic"; | ||
| 89 | interrupt-controller; | ||
| 90 | cell-index = <3>; | ||
| 91 | dcr-reg = <0x0f0 0x009>; | ||
| 92 | #address-cells = <0>; | ||
| 93 | #size-cells = <0>; | ||
| 94 | #interrupt-cells = <2>; | ||
| 95 | interrupts = <0x10 0x4 0x11 0x4>; /* cascade */ | ||
| 96 | interrupt-parent = <&UIC0>; | ||
| 97 | }; | ||
| 98 | |||
| 99 | SDR0: sdr { | ||
| 100 | compatible = "ibm,sdr-460sx"; | ||
| 101 | dcr-reg = <0x00e 0x002>; | ||
| 102 | }; | ||
| 103 | |||
| 104 | CPR0: cpr { | ||
| 105 | compatible = "ibm,cpr-460sx"; | ||
| 106 | dcr-reg = <0x00c 0x002>; | ||
| 107 | }; | ||
| 108 | |||
| 109 | plb { | ||
| 110 | compatible = "ibm,plb-460sx", "ibm,plb4"; | ||
| 111 | #address-cells = <2>; | ||
| 112 | #size-cells = <1>; | ||
| 113 | ranges; | ||
| 114 | clock-frequency = <0>; /* Filled in by U-Boot */ | ||
| 115 | |||
| 116 | SDRAM0: sdram { | ||
| 117 | compatible = "ibm,sdram-460sx", "ibm,sdram-405gp"; | ||
| 118 | dcr-reg = <0x010 0x002>; | ||
| 119 | }; | ||
| 120 | |||
| 121 | MAL0: mcmal { | ||
| 122 | compatible = "ibm,mcmal-460sx", "ibm,mcmal2"; | ||
| 123 | dcr-reg = <0x180 0x62>; | ||
| 124 | num-tx-chans = <4>; | ||
| 125 | num-rx-chans = <32>; | ||
| 126 | #address-cells = <1>; | ||
| 127 | #size-cells = <1>; | ||
| 128 | interrupt-parent = <&UIC1>; | ||
| 129 | interrupts = < /*TXEOB*/ 0x6 0x4 | ||
| 130 | /*RXEOB*/ 0x7 0x4 | ||
| 131 | /*SERR*/ 0x1 0x4 | ||
| 132 | /*TXDE*/ 0x2 0x4 | ||
| 133 | /*RXDE*/ 0x3 0x4 | ||
| 134 | /*COAL TX0*/ 0x18 0x2 | ||
| 135 | /*COAL TX1*/ 0x19 0x2 | ||
| 136 | /*COAL TX2*/ 0x1a 0x2 | ||
| 137 | /*COAL TX3*/ 0x1b 0x2 | ||
| 138 | /*COAL RX0*/ 0x1c 0x2 | ||
| 139 | /*COAL RX1*/ 0x1d 0x2 | ||
| 140 | /*COAL RX2*/ 0x1e 0x2 | ||
| 141 | /*COAL RX3*/ 0x1f 0x2>; | ||
| 142 | }; | ||
| 143 | |||
| 144 | POB0: opb { | ||
| 145 | compatible = "ibm,opb-460sx", "ibm,opb"; | ||
| 146 | #address-cells = <1>; | ||
| 147 | #size-cells = <1>; | ||
| 148 | ranges = <0xb0000000 0x00000004 0xb0000000 0x50000000>; | ||
| 149 | clock-frequency = <0>; /* Filled in by U-Boot */ | ||
| 150 | |||
| 151 | EBC0: ebc { | ||
| 152 | compatible = "ibm,ebc-460sx", "ibm,ebc"; | ||
| 153 | dcr-reg = <0x012 0x002>; | ||
| 154 | #address-cells = <2>; | ||
| 155 | #size-cells = <1>; | ||
| 156 | clock-frequency = <0>; /* Filled in by U-Boot */ | ||
| 157 | /* ranges property is supplied by U-Boot */ | ||
| 158 | interrupts = <0x6 0x4>; | ||
| 159 | interrupt-parent = <&UIC1>; | ||
| 160 | |||
| 161 | nor_flash@0,0 { | ||
| 162 | compatible = "amd,s29gl512n", "cfi-flash"; | ||
| 163 | bank-width = <2>; | ||
| 164 | /* reg property is supplied in by U-Boot */ | ||
| 165 | #address-cells = <1>; | ||
| 166 | #size-cells = <1>; | ||
| 167 | partition@0 { | ||
| 168 | label = "kernel"; | ||
| 169 | reg = <0x00000000 0x001e0000>; | ||
| 170 | }; | ||
| 171 | partition@1e0000 { | ||
| 172 | label = "dtb"; | ||
| 173 | reg = <0x001e0000 0x00020000>; | ||
| 174 | }; | ||
| 175 | partition@200000 { | ||
| 176 | label = "ramdisk"; | ||
| 177 | reg = <0x00200000 0x01400000>; | ||
| 178 | }; | ||
| 179 | partition@1600000 { | ||
| 180 | label = "jffs2"; | ||
| 181 | reg = <0x01600000 0x00400000>; | ||
| 182 | }; | ||
| 183 | partition@1a00000 { | ||
| 184 | label = "user"; | ||
| 185 | reg = <0x01a00000 0x02560000>; | ||
| 186 | }; | ||
| 187 | partition@3f60000 { | ||
| 188 | label = "env"; | ||
| 189 | reg = <0x03f60000 0x00040000>; | ||
| 190 | }; | ||
| 191 | partition@3fa0000 { | ||
| 192 | label = "u-boot"; | ||
| 193 | reg = <0x03fa0000 0x00060000>; | ||
| 194 | }; | ||
| 195 | }; | ||
| 196 | |||
| 197 | ndfc@1,0 { | ||
| 198 | compatible = "ibm,ndfc"; | ||
| 199 | /* reg property is supplied by U-boot */ | ||
| 200 | ccr = <0x00003000>; | ||
| 201 | bank-settings = <0x80002222>; | ||
| 202 | #address-cells = <1>; | ||
| 203 | #size-cells = <1>; | ||
| 204 | |||
| 205 | nand { | ||
| 206 | #address-cells = <1>; | ||
| 207 | #size-cells = <1>; | ||
| 208 | partition@0 { | ||
| 209 | label = "uboot"; | ||
| 210 | reg = <0x00000000 0x00200000>; | ||
| 211 | }; | ||
| 212 | partition@200000 { | ||
| 213 | label = "uboot-environment"; | ||
| 214 | reg = <0x00200000 0x00100000>; | ||
| 215 | }; | ||
| 216 | partition@300000 { | ||
| 217 | label = "linux"; | ||
| 218 | reg = <0x00300000 0x00300000>; | ||
| 219 | }; | ||
| 220 | partition@600000 { | ||
| 221 | label = "root-file-system"; | ||
| 222 | reg = <0x00600000 0x01900000>; | ||
| 223 | }; | ||
| 224 | partition@1f00000 { | ||
| 225 | label = "device-tree"; | ||
| 226 | reg = <0x01f00000 0x00020000>; | ||
| 227 | }; | ||
| 228 | partition@1f20000 { | ||
| 229 | label = "data"; | ||
| 230 | reg = <0x01f20000 0x060E0000>; | ||
| 231 | }; | ||
| 232 | }; | ||
| 233 | }; | ||
| 234 | }; | ||
| 235 | |||
| 236 | UART0: serial@ef600200 { | ||
| 237 | device_type = "serial"; | ||
| 238 | compatible = "ns16550"; | ||
| 239 | reg = <0xef600200 0x00000008>; | ||
| 240 | virtual-reg = <0xef600200>; | ||
| 241 | clock-frequency = <0>; /* Filled in by U-Boot */ | ||
| 242 | current-speed = <0>; /* Filled in by U-Boot */ | ||
| 243 | interrupt-parent = <&UIC0>; | ||
| 244 | interrupts = <0x0 0x4>; | ||
| 245 | }; | ||
| 246 | |||
| 247 | UART1: serial@ef600300 { | ||
| 248 | device_type = "serial"; | ||
| 249 | compatible = "ns16550"; | ||
| 250 | reg = <0xef600300 0x00000008>; | ||
| 251 | virtual-reg = <0xef600300>; | ||
| 252 | clock-frequency = <0>; /* Filled in by U-Boot */ | ||
| 253 | current-speed = <0>; /* Filled in by U-Boot */ | ||
| 254 | interrupt-parent = <&UIC0>; | ||
| 255 | interrupts = <0x1 0x4>; | ||
| 256 | }; | ||
| 257 | |||
| 258 | IIC0: i2c@ef600400 { | ||
| 259 | compatible = "ibm,iic-460sx", "ibm,iic"; | ||
| 260 | reg = <0xef600400 0x00000014>; | ||
| 261 | interrupt-parent = <&UIC0>; | ||
| 262 | interrupts = <0x2 0x4>; | ||
| 263 | #address-cells = <1>; | ||
| 264 | #size-cells = <0>; | ||
| 265 | index = <0>; | ||
| 266 | }; | ||
| 267 | |||
| 268 | IIC1: i2c@ef600500 { | ||
| 269 | compatible = "ibm,iic-460sx", "ibm,iic"; | ||
| 270 | reg = <0xef600500 0x00000014>; | ||
| 271 | interrupt-parent = <&UIC0>; | ||
| 272 | interrupts = <0x3 0x4>; | ||
| 273 | #address-cells = <1>; | ||
| 274 | #size-cells = <0>; | ||
| 275 | index = <1>; | ||
| 276 | }; | ||
| 277 | |||
| 278 | RGMII0: emac-rgmii@ef600900 { | ||
| 279 | compatible = "ibm,rgmii-460sx", "ibm,rgmii"; | ||
| 280 | reg = <0xef600900 0x00000008>; | ||
| 281 | has-mdio; | ||
| 282 | }; | ||
| 283 | |||
| 284 | RGMII1: emac-rgmii@ef600920 { | ||
| 285 | compatible = "ibm,rgmii-460sx", "ibm,rgmii"; | ||
| 286 | reg = <0xef600920 0x00000008>; | ||
| 287 | has-mdio; | ||
| 288 | }; | ||
| 289 | |||
| 290 | TAH0: emac-tah@ef600e50 { | ||
| 291 | compatible = "ibm,tah-460sx", "ibm,tah"; | ||
| 292 | reg = <0xef600e50 0x00000030>; | ||
| 293 | }; | ||
| 294 | |||
| 295 | TAH1: emac-tah@ef600f50 { | ||
| 296 | compatible = "ibm,tah-460sx", "ibm,tah"; | ||
| 297 | reg = <0xef600f50 0x00000030>; | ||
| 298 | }; | ||
| 299 | |||
| 300 | EMAC0: ethernet@ef600a00 { | ||
| 301 | device_type = "network"; | ||
| 302 | compatible = "ibm,emac-460sx", "ibm,emac4"; | ||
| 303 | interrupt-parent = <&EMAC0>; | ||
| 304 | interrupts = <0x0 0x1>; | ||
| 305 | #interrupt-cells = <1>; | ||
| 306 | #address-cells = <0>; | ||
| 307 | #size-cells = <0>; | ||
| 308 | interrupt-map = </*Status*/ 0x0 &UIC0 0x13 0x4 | ||
| 309 | /*Wake*/ 0x1 &UIC2 0x1d 0x4>; | ||
| 310 | reg = <0xef600a00 0x00000070>; | ||
| 311 | local-mac-address = [000000000000]; /* Filled in by U-Boot */ | ||
| 312 | mal-device = <&MAL0>; | ||
| 313 | mal-tx-channel = <0>; | ||
| 314 | mal-rx-channel = <0>; | ||
| 315 | cell-index = <0>; | ||
| 316 | max-frame-size = <9000>; | ||
| 317 | rx-fifo-size = <4096>; | ||
| 318 | tx-fifo-size = <2048>; | ||
| 319 | phy-mode = "rgmii"; | ||
| 320 | phy-map = <0x00000000>; | ||
| 321 | rgmii-device = <&RGMII0>; | ||
| 322 | rgmii-channel = <0>; | ||
| 323 | tah-device = <&TAH0>; | ||
| 324 | tah-channel = <0>; | ||
| 325 | has-inverted-stacr-oc; | ||
| 326 | has-new-stacr-staopc; | ||
| 327 | }; | ||
| 328 | |||
| 329 | EMAC1: ethernet@ef600b00 { | ||
| 330 | device_type = "network"; | ||
| 331 | compatible = "ibm,emac-460sx", "ibm,emac4"; | ||
| 332 | interrupt-parent = <&EMAC1>; | ||
| 333 | interrupts = <0x0 0x1>; | ||
| 334 | #interrupt-cells = <1>; | ||
| 335 | #address-cells = <0>; | ||
| 336 | #size-cells = <0>; | ||
| 337 | interrupt-map = </*Status*/ 0x0 &UIC0 0x14 0x4 | ||
| 338 | /*Wake*/ 0x1 &UIC2 0x1d 0x4>; | ||
| 339 | reg = <0xef600b00 0x00000070>; | ||
| 340 | local-mac-address = [000000000000]; /* Filled in by U-Boot */ | ||
| 341 | mal-device = <&MAL0>; | ||
| 342 | mal-tx-channel = <1>; | ||
| 343 | mal-rx-channel = <8>; | ||
| 344 | cell-index = <1>; | ||
| 345 | max-frame-size = <9000>; | ||
| 346 | rx-fifo-size = <4096>; | ||
| 347 | tx-fifo-size = <2048>; | ||
| 348 | phy-mode = "rgmii"; | ||
| 349 | phy-map = <0x00000000>; | ||
| 350 | rgmii-device = <&RGMII0>; | ||
| 351 | rgmii-channel = <1>; | ||
| 352 | tah-device = <&TAH1>; | ||
| 353 | tah-channel = <1>; | ||
| 354 | has-inverted-stacr-oc; | ||
| 355 | has-new-stacr-staopc; | ||
| 356 | mdio-device = <&EMAC0>; | ||
| 357 | }; | ||
| 358 | |||
| 359 | EMAC2: ethernet@ef600c00 { | ||
| 360 | device_type = "network"; | ||
| 361 | compatible = "ibm,emac-460sx", "ibm,emac4"; | ||
| 362 | interrupt-parent = <&EMAC2>; | ||
| 363 | interrupts = <0x0 0x1>; | ||
| 364 | #interrupt-cells = <1>; | ||
| 365 | #address-cells = <0>; | ||
| 366 | #size-cells = <0>; | ||
| 367 | interrupt-map = </*Status*/ 0x0 &UIC0 0x15 0x4 | ||
| 368 | /*Wake*/ 0x1 &UIC2 0x1d 0x4>; | ||
| 369 | reg = <0xef600c00 0x00000070>; | ||
| 370 | local-mac-address = [000000000000]; /* Filled in by U-Boot */ | ||
| 371 | mal-device = <&MAL0>; | ||
| 372 | mal-tx-channel = <2>; | ||
| 373 | mal-rx-channel = <16>; | ||
| 374 | cell-index = <2>; | ||
| 375 | max-frame-size = <9000>; | ||
| 376 | rx-fifo-size = <4096>; | ||
| 377 | tx-fifo-size = <2048>; | ||
| 378 | phy-mode = "rgmii"; | ||
| 379 | phy-map = <0x00000000>; | ||
| 380 | rgmii-device = <&RGMII1>; | ||
| 381 | rgmii-channel = <0>; | ||
| 382 | has-inverted-stacr-oc; | ||
| 383 | has-new-stacr-staopc; | ||
| 384 | mdio-device = <&EMAC0>; | ||
| 385 | }; | ||
| 386 | |||
| 387 | EMAC3: ethernet@ef600d00 { | ||
| 388 | device_type = "network"; | ||
| 389 | compatible = "ibm,emac-460sx", "ibm,emac4"; | ||
| 390 | interrupt-parent = <&EMAC3>; | ||
| 391 | interrupts = <0x0 0x1>; | ||
| 392 | #interrupt-cells = <1>; | ||
| 393 | #address-cells = <0>; | ||
| 394 | #size-cells = <0>; | ||
| 395 | interrupt-map = </*Status*/ 0x0 &UIC0 0x16 0x4 | ||
| 396 | /*Wake*/ 0x1 &UIC2 0x1d 0x4>; | ||
| 397 | reg = <0xef600d00 0x00000070>; | ||
| 398 | local-mac-address = [000000000000]; /* Filled in by U-Boot */ | ||
| 399 | mal-device = <&MAL0>; | ||
| 400 | mal-tx-channel = <3>; | ||
| 401 | mal-rx-channel = <24>; | ||
| 402 | cell-index = <3>; | ||
| 403 | max-frame-size = <9000>; | ||
| 404 | rx-fifo-size = <4096>; | ||
| 405 | tx-fifo-size = <2048>; | ||
| 406 | phy-mode = "rgmii"; | ||
| 407 | phy-map = <0x00000000>; | ||
| 408 | rgmii-device = <&RGMII1>; | ||
| 409 | rgmii-channel = <1>; | ||
| 410 | has-inverted-stacr-oc; | ||
| 411 | has-new-stacr-staopc; | ||
| 412 | mdio-device = <&EMAC0>; | ||
| 413 | }; | ||
| 414 | }; | ||
| 415 | |||
| 416 | }; | ||
| 417 | chosen { | ||
| 418 | linux,stdout-path = "/plb/opb/serial@ef600200"; | ||
| 419 | }; | ||
| 420 | |||
| 421 | }; | ||
diff --git a/arch/powerpc/configs/44x/eiger_defconfig b/arch/powerpc/configs/44x/eiger_defconfig new file mode 100644 index 000000000000..007f3bd939e7 --- /dev/null +++ b/arch/powerpc/configs/44x/eiger_defconfig | |||
| @@ -0,0 +1,1252 @@ | |||
| 1 | # | ||
| 2 | # Automatically generated make config: don't edit | ||
| 3 | # Linux kernel version: 2.6.31-rc6 | ||
| 4 | # Wed Aug 19 13:06:50 2009 | ||
| 5 | # | ||
| 6 | # CONFIG_PPC64 is not set | ||
| 7 | |||
| 8 | # | ||
| 9 | # Processor support | ||
| 10 | # | ||
| 11 | # CONFIG_PPC_BOOK3S_32 is not set | ||
| 12 | # CONFIG_PPC_85xx is not set | ||
| 13 | # CONFIG_PPC_8xx is not set | ||
| 14 | # CONFIG_40x is not set | ||
| 15 | CONFIG_44x=y | ||
| 16 | # CONFIG_E200 is not set | ||
| 17 | CONFIG_PPC_FPU=y | ||
| 18 | CONFIG_4xx=y | ||
| 19 | CONFIG_BOOKE=y | ||
| 20 | CONFIG_PTE_64BIT=y | ||
| 21 | CONFIG_PHYS_64BIT=y | ||
| 22 | CONFIG_PPC_MMU_NOHASH=y | ||
| 23 | CONFIG_PPC_MMU_NOHASH_32=y | ||
| 24 | # CONFIG_PPC_MM_SLICES is not set | ||
| 25 | CONFIG_NOT_COHERENT_CACHE=y | ||
| 26 | CONFIG_PPC32=y | ||
| 27 | CONFIG_WORD_SIZE=32 | ||
| 28 | CONFIG_ARCH_PHYS_ADDR_T_64BIT=y | ||
| 29 | CONFIG_MMU=y | ||
| 30 | CONFIG_GENERIC_CMOS_UPDATE=y | ||
| 31 | CONFIG_GENERIC_TIME=y | ||
| 32 | CONFIG_GENERIC_TIME_VSYSCALL=y | ||
| 33 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
| 34 | CONFIG_GENERIC_HARDIRQS=y | ||
| 35 | CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y | ||
| 36 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
| 37 | CONFIG_IRQ_PER_CPU=y | ||
| 38 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 39 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 40 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
| 41 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 42 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | ||
| 43 | CONFIG_ARCH_HAS_ILOG2_U32=y | ||
| 44 | CONFIG_GENERIC_HWEIGHT=y | ||
| 45 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
| 46 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set | ||
| 47 | CONFIG_PPC=y | ||
| 48 | CONFIG_EARLY_PRINTK=y | ||
| 49 | CONFIG_GENERIC_NVRAM=y | ||
| 50 | CONFIG_SCHED_OMIT_FRAME_POINTER=y | ||
| 51 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | ||
| 52 | CONFIG_PPC_OF=y | ||
| 53 | CONFIG_OF=y | ||
| 54 | CONFIG_PPC_UDBG_16550=y | ||
| 55 | # CONFIG_GENERIC_TBSYNC is not set | ||
| 56 | CONFIG_AUDIT_ARCH=y | ||
| 57 | CONFIG_GENERIC_BUG=y | ||
| 58 | CONFIG_DTC=y | ||
| 59 | # CONFIG_DEFAULT_UIMAGE is not set | ||
| 60 | CONFIG_PPC_DCR_NATIVE=y | ||
| 61 | # CONFIG_PPC_DCR_MMIO is not set | ||
| 62 | CONFIG_PPC_DCR=y | ||
| 63 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 64 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
| 65 | CONFIG_CONSTRUCTORS=y | ||
| 66 | |||
| 67 | # | ||
| 68 | # General setup | ||
| 69 | # | ||
| 70 | CONFIG_EXPERIMENTAL=y | ||
| 71 | CONFIG_BROKEN_ON_SMP=y | ||
| 72 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
| 73 | CONFIG_LOCALVERSION="" | ||
| 74 | CONFIG_LOCALVERSION_AUTO=y | ||
| 75 | CONFIG_SWAP=y | ||
| 76 | CONFIG_SYSVIPC=y | ||
| 77 | CONFIG_SYSVIPC_SYSCTL=y | ||
| 78 | CONFIG_POSIX_MQUEUE=y | ||
| 79 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
| 80 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
| 81 | # CONFIG_TASKSTATS is not set | ||
| 82 | # CONFIG_AUDIT is not set | ||
| 83 | |||
| 84 | # | ||
| 85 | # RCU Subsystem | ||
| 86 | # | ||
| 87 | CONFIG_CLASSIC_RCU=y | ||
| 88 | # CONFIG_TREE_RCU is not set | ||
| 89 | # CONFIG_PREEMPT_RCU is not set | ||
| 90 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 91 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 92 | # CONFIG_IKCONFIG is not set | ||
| 93 | CONFIG_LOG_BUF_SHIFT=14 | ||
| 94 | # CONFIG_GROUP_SCHED is not set | ||
| 95 | # CONFIG_CGROUPS is not set | ||
| 96 | CONFIG_SYSFS_DEPRECATED=y | ||
| 97 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
| 98 | # CONFIG_RELAY is not set | ||
| 99 | # CONFIG_NAMESPACES is not set | ||
| 100 | CONFIG_BLK_DEV_INITRD=y | ||
| 101 | CONFIG_INITRAMFS_SOURCE="" | ||
| 102 | CONFIG_RD_GZIP=y | ||
| 103 | # CONFIG_RD_BZIP2 is not set | ||
| 104 | # CONFIG_RD_LZMA is not set | ||
| 105 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
| 106 | CONFIG_SYSCTL=y | ||
| 107 | CONFIG_ANON_INODES=y | ||
| 108 | CONFIG_EMBEDDED=y | ||
| 109 | CONFIG_SYSCTL_SYSCALL=y | ||
| 110 | CONFIG_KALLSYMS=y | ||
| 111 | # CONFIG_KALLSYMS_ALL is not set | ||
| 112 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
| 113 | CONFIG_HOTPLUG=y | ||
| 114 | CONFIG_PRINTK=y | ||
| 115 | CONFIG_BUG=y | ||
| 116 | CONFIG_ELF_CORE=y | ||
| 117 | CONFIG_BASE_FULL=y | ||
| 118 | CONFIG_FUTEX=y | ||
| 119 | CONFIG_EPOLL=y | ||
| 120 | CONFIG_SIGNALFD=y | ||
| 121 | CONFIG_TIMERFD=y | ||
| 122 | CONFIG_EVENTFD=y | ||
| 123 | CONFIG_SHMEM=y | ||
| 124 | CONFIG_AIO=y | ||
| 125 | CONFIG_HAVE_PERF_COUNTERS=y | ||
| 126 | |||
| 127 | # | ||
| 128 | # Performance Counters | ||
| 129 | # | ||
| 130 | # CONFIG_PERF_COUNTERS is not set | ||
| 131 | CONFIG_VM_EVENT_COUNTERS=y | ||
| 132 | CONFIG_PCI_QUIRKS=y | ||
| 133 | CONFIG_SLUB_DEBUG=y | ||
| 134 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 135 | CONFIG_COMPAT_BRK=y | ||
| 136 | # CONFIG_SLAB is not set | ||
| 137 | CONFIG_SLUB=y | ||
| 138 | # CONFIG_SLOB is not set | ||
| 139 | # CONFIG_PROFILING is not set | ||
| 140 | # CONFIG_MARKERS is not set | ||
| 141 | CONFIG_HAVE_OPROFILE=y | ||
| 142 | # CONFIG_KPROBES is not set | ||
| 143 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 144 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 145 | CONFIG_HAVE_KPROBES=y | ||
| 146 | CONFIG_HAVE_KRETPROBES=y | ||
| 147 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 148 | |||
| 149 | # | ||
| 150 | # GCOV-based kernel profiling | ||
| 151 | # | ||
| 152 | # CONFIG_GCOV_KERNEL is not set | ||
| 153 | # CONFIG_SLOW_WORK is not set | ||
| 154 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 155 | CONFIG_SLABINFO=y | ||
| 156 | CONFIG_RT_MUTEXES=y | ||
| 157 | CONFIG_BASE_SMALL=0 | ||
| 158 | CONFIG_MODULES=y | ||
| 159 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 160 | CONFIG_MODULE_UNLOAD=y | ||
| 161 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
| 162 | # CONFIG_MODVERSIONS is not set | ||
| 163 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
| 164 | CONFIG_BLOCK=y | ||
| 165 | CONFIG_LBDAF=y | ||
| 166 | # CONFIG_BLK_DEV_BSG is not set | ||
| 167 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 168 | |||
| 169 | # | ||
| 170 | # IO Schedulers | ||
| 171 | # | ||
| 172 | CONFIG_IOSCHED_NOOP=y | ||
| 173 | CONFIG_IOSCHED_AS=y | ||
| 174 | CONFIG_IOSCHED_DEADLINE=y | ||
| 175 | CONFIG_IOSCHED_CFQ=y | ||
| 176 | CONFIG_DEFAULT_AS=y | ||
| 177 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 178 | # CONFIG_DEFAULT_CFQ is not set | ||
| 179 | # CONFIG_DEFAULT_NOOP is not set | ||
| 180 | CONFIG_DEFAULT_IOSCHED="anticipatory" | ||
| 181 | # CONFIG_FREEZER is not set | ||
| 182 | CONFIG_PPC4xx_PCI_EXPRESS=y | ||
| 183 | |||
| 184 | # | ||
| 185 | # Platform support | ||
| 186 | # | ||
| 187 | # CONFIG_PPC_CELL is not set | ||
| 188 | # CONFIG_PPC_CELL_NATIVE is not set | ||
| 189 | # CONFIG_PQ2ADS is not set | ||
| 190 | # CONFIG_BAMBOO is not set | ||
| 191 | # CONFIG_EBONY is not set | ||
| 192 | # CONFIG_SAM440EP is not set | ||
| 193 | # CONFIG_SEQUOIA is not set | ||
| 194 | # CONFIG_TAISHAN is not set | ||
| 195 | # CONFIG_KATMAI is not set | ||
| 196 | # CONFIG_RAINIER is not set | ||
| 197 | # CONFIG_WARP is not set | ||
| 198 | # CONFIG_ARCHES is not set | ||
| 199 | # CONFIG_CANYONLANDS is not set | ||
| 200 | # CONFIG_GLACIER is not set | ||
| 201 | # CONFIG_REDWOOD is not set | ||
| 202 | CONFIG_EIGER=y | ||
| 203 | # CONFIG_YOSEMITE is not set | ||
| 204 | # CONFIG_XILINX_VIRTEX440_GENERIC_BOARD is not set | ||
| 205 | CONFIG_PPC44x_SIMPLE=y | ||
| 206 | # CONFIG_PPC4xx_GPIO is not set | ||
| 207 | CONFIG_460SX=y | ||
| 208 | # CONFIG_IPIC is not set | ||
| 209 | # CONFIG_MPIC is not set | ||
| 210 | # CONFIG_MPIC_WEIRD is not set | ||
| 211 | # CONFIG_PPC_I8259 is not set | ||
| 212 | # CONFIG_PPC_RTAS is not set | ||
| 213 | # CONFIG_MMIO_NVRAM is not set | ||
| 214 | # CONFIG_PPC_MPC106 is not set | ||
| 215 | # CONFIG_PPC_970_NAP is not set | ||
| 216 | # CONFIG_PPC_INDIRECT_IO is not set | ||
| 217 | # CONFIG_GENERIC_IOMAP is not set | ||
| 218 | # CONFIG_CPU_FREQ is not set | ||
| 219 | # CONFIG_FSL_ULI1575 is not set | ||
| 220 | # CONFIG_SIMPLE_GPIO is not set | ||
| 221 | |||
| 222 | # | ||
| 223 | # Kernel options | ||
| 224 | # | ||
| 225 | # CONFIG_HIGHMEM is not set | ||
| 226 | CONFIG_TICK_ONESHOT=y | ||
| 227 | CONFIG_NO_HZ=y | ||
| 228 | CONFIG_HIGH_RES_TIMERS=y | ||
| 229 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
| 230 | # CONFIG_HZ_100 is not set | ||
| 231 | CONFIG_HZ_250=y | ||
| 232 | # CONFIG_HZ_300 is not set | ||
| 233 | # CONFIG_HZ_1000 is not set | ||
| 234 | CONFIG_HZ=250 | ||
| 235 | CONFIG_SCHED_HRTICK=y | ||
| 236 | CONFIG_PREEMPT_NONE=y | ||
| 237 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
| 238 | # CONFIG_PREEMPT is not set | ||
| 239 | CONFIG_BINFMT_ELF=y | ||
| 240 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | ||
| 241 | # CONFIG_HAVE_AOUT is not set | ||
| 242 | # CONFIG_BINFMT_MISC is not set | ||
| 243 | # CONFIG_MATH_EMULATION is not set | ||
| 244 | # CONFIG_IOMMU_HELPER is not set | ||
| 245 | # CONFIG_SWIOTLB is not set | ||
| 246 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
| 247 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | ||
| 248 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
| 249 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
| 250 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
| 251 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
| 252 | CONFIG_SELECT_MEMORY_MODEL=y | ||
| 253 | CONFIG_FLATMEM_MANUAL=y | ||
| 254 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
| 255 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
| 256 | CONFIG_FLATMEM=y | ||
| 257 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
| 258 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 259 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
| 260 | CONFIG_MIGRATION=y | ||
| 261 | CONFIG_PHYS_ADDR_T_64BIT=y | ||
| 262 | CONFIG_ZONE_DMA_FLAG=1 | ||
| 263 | CONFIG_BOUNCE=y | ||
| 264 | CONFIG_VIRT_TO_BUS=y | ||
| 265 | CONFIG_HAVE_MLOCK=y | ||
| 266 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 267 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | ||
| 268 | CONFIG_STDBINUTILS=y | ||
| 269 | CONFIG_PPC_4K_PAGES=y | ||
| 270 | # CONFIG_PPC_16K_PAGES is not set | ||
| 271 | # CONFIG_PPC_64K_PAGES is not set | ||
| 272 | # CONFIG_PPC_256K_PAGES is not set | ||
| 273 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 274 | CONFIG_PROC_DEVICETREE=y | ||
| 275 | CONFIG_CMDLINE_BOOL=y | ||
| 276 | CONFIG_CMDLINE="" | ||
| 277 | CONFIG_EXTRA_TARGETS="" | ||
| 278 | CONFIG_SECCOMP=y | ||
| 279 | CONFIG_ISA_DMA_API=y | ||
| 280 | |||
| 281 | # | ||
| 282 | # Bus options | ||
| 283 | # | ||
| 284 | CONFIG_ZONE_DMA=y | ||
| 285 | CONFIG_PPC_INDIRECT_PCI=y | ||
| 286 | CONFIG_4xx_SOC=y | ||
| 287 | CONFIG_PPC_PCI_CHOICE=y | ||
| 288 | CONFIG_PCI=y | ||
| 289 | CONFIG_PCI_DOMAINS=y | ||
| 290 | CONFIG_PCI_SYSCALL=y | ||
| 291 | CONFIG_PCIEPORTBUS=y | ||
| 292 | CONFIG_PCIEAER=y | ||
| 293 | # CONFIG_PCIE_ECRC is not set | ||
| 294 | # CONFIG_PCIEAER_INJECT is not set | ||
| 295 | # CONFIG_PCIEASPM is not set | ||
| 296 | CONFIG_ARCH_SUPPORTS_MSI=y | ||
| 297 | # CONFIG_PCI_MSI is not set | ||
| 298 | CONFIG_PCI_LEGACY=y | ||
| 299 | # CONFIG_PCI_DEBUG is not set | ||
| 300 | # CONFIG_PCI_STUB is not set | ||
| 301 | # CONFIG_PCI_IOV is not set | ||
| 302 | # CONFIG_PCCARD is not set | ||
| 303 | # CONFIG_HOTPLUG_PCI is not set | ||
| 304 | # CONFIG_HAS_RAPIDIO is not set | ||
| 305 | |||
| 306 | # | ||
| 307 | # Advanced setup | ||
| 308 | # | ||
| 309 | # CONFIG_ADVANCED_OPTIONS is not set | ||
| 310 | |||
| 311 | # | ||
| 312 | # Default settings for advanced configuration options are used | ||
| 313 | # | ||
| 314 | CONFIG_LOWMEM_SIZE=0x30000000 | ||
| 315 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 316 | CONFIG_KERNEL_START=0xc0000000 | ||
| 317 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 318 | CONFIG_TASK_SIZE=0xc0000000 | ||
| 319 | CONFIG_CONSISTENT_SIZE=0x00200000 | ||
| 320 | CONFIG_NET=y | ||
| 321 | |||
| 322 | # | ||
| 323 | # Networking options | ||
| 324 | # | ||
| 325 | CONFIG_PACKET=y | ||
| 326 | # CONFIG_PACKET_MMAP is not set | ||
| 327 | CONFIG_UNIX=y | ||
| 328 | # CONFIG_NET_KEY is not set | ||
| 329 | CONFIG_INET=y | ||
| 330 | # CONFIG_IP_MULTICAST is not set | ||
| 331 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
| 332 | CONFIG_IP_FIB_HASH=y | ||
| 333 | CONFIG_IP_PNP=y | ||
| 334 | CONFIG_IP_PNP_DHCP=y | ||
| 335 | CONFIG_IP_PNP_BOOTP=y | ||
| 336 | # CONFIG_IP_PNP_RARP is not set | ||
| 337 | # CONFIG_NET_IPIP is not set | ||
| 338 | # CONFIG_NET_IPGRE is not set | ||
| 339 | # CONFIG_ARPD is not set | ||
| 340 | # CONFIG_SYN_COOKIES is not set | ||
| 341 | # CONFIG_INET_AH is not set | ||
| 342 | # CONFIG_INET_ESP is not set | ||
| 343 | # CONFIG_INET_IPCOMP is not set | ||
| 344 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
| 345 | # CONFIG_INET_TUNNEL is not set | ||
| 346 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set | ||
| 347 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set | ||
| 348 | # CONFIG_INET_XFRM_MODE_BEET is not set | ||
| 349 | # CONFIG_INET_LRO is not set | ||
| 350 | CONFIG_INET_DIAG=y | ||
| 351 | CONFIG_INET_TCP_DIAG=y | ||
| 352 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
| 353 | CONFIG_TCP_CONG_CUBIC=y | ||
| 354 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
| 355 | # CONFIG_TCP_MD5SIG is not set | ||
| 356 | # CONFIG_IPV6 is not set | ||
| 357 | # CONFIG_NETWORK_SECMARK is not set | ||
| 358 | # CONFIG_NETFILTER is not set | ||
| 359 | # CONFIG_IP_DCCP is not set | ||
| 360 | # CONFIG_IP_SCTP is not set | ||
| 361 | # CONFIG_TIPC is not set | ||
| 362 | # CONFIG_ATM is not set | ||
| 363 | # CONFIG_BRIDGE is not set | ||
| 364 | # CONFIG_NET_DSA is not set | ||
| 365 | # CONFIG_VLAN_8021Q is not set | ||
| 366 | # CONFIG_DECNET is not set | ||
| 367 | # CONFIG_LLC2 is not set | ||
| 368 | # CONFIG_IPX is not set | ||
| 369 | # CONFIG_ATALK is not set | ||
| 370 | # CONFIG_X25 is not set | ||
| 371 | # CONFIG_LAPB is not set | ||
| 372 | # CONFIG_ECONET is not set | ||
| 373 | # CONFIG_WAN_ROUTER is not set | ||
| 374 | # CONFIG_PHONET is not set | ||
| 375 | # CONFIG_IEEE802154 is not set | ||
| 376 | # CONFIG_NET_SCHED is not set | ||
| 377 | # CONFIG_DCB is not set | ||
| 378 | |||
| 379 | # | ||
| 380 | # Network testing | ||
| 381 | # | ||
| 382 | # CONFIG_NET_PKTGEN is not set | ||
| 383 | # CONFIG_HAMRADIO is not set | ||
| 384 | # CONFIG_CAN is not set | ||
| 385 | # CONFIG_IRDA is not set | ||
| 386 | # CONFIG_BT is not set | ||
| 387 | # CONFIG_AF_RXRPC is not set | ||
| 388 | CONFIG_WIRELESS=y | ||
| 389 | # CONFIG_CFG80211 is not set | ||
| 390 | CONFIG_WIRELESS_OLD_REGULATORY=y | ||
| 391 | # CONFIG_WIRELESS_EXT is not set | ||
| 392 | # CONFIG_LIB80211 is not set | ||
| 393 | |||
| 394 | # | ||
| 395 | # CFG80211 needs to be enabled for MAC80211 | ||
| 396 | # | ||
| 397 | CONFIG_MAC80211_DEFAULT_PS_VALUE=0 | ||
| 398 | # CONFIG_WIMAX is not set | ||
| 399 | # CONFIG_RFKILL is not set | ||
| 400 | # CONFIG_NET_9P is not set | ||
| 401 | |||
| 402 | # | ||
| 403 | # Device Drivers | ||
| 404 | # | ||
| 405 | |||
| 406 | # | ||
| 407 | # Generic Driver Options | ||
| 408 | # | ||
| 409 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
| 410 | CONFIG_STANDALONE=y | ||
| 411 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
| 412 | CONFIG_FW_LOADER=y | ||
| 413 | CONFIG_FIRMWARE_IN_KERNEL=y | ||
| 414 | CONFIG_EXTRA_FIRMWARE="" | ||
| 415 | # CONFIG_DEBUG_DRIVER is not set | ||
| 416 | # CONFIG_DEBUG_DEVRES is not set | ||
| 417 | # CONFIG_SYS_HYPERVISOR is not set | ||
| 418 | CONFIG_CONNECTOR=y | ||
| 419 | CONFIG_PROC_EVENTS=y | ||
| 420 | CONFIG_MTD=y | ||
| 421 | # CONFIG_MTD_DEBUG is not set | ||
| 422 | CONFIG_MTD_CONCAT=y | ||
| 423 | CONFIG_MTD_PARTITIONS=y | ||
| 424 | # CONFIG_MTD_TESTS is not set | ||
| 425 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
| 426 | CONFIG_MTD_CMDLINE_PARTS=y | ||
| 427 | CONFIG_MTD_OF_PARTS=y | ||
| 428 | # CONFIG_MTD_AR7_PARTS is not set | ||
| 429 | |||
| 430 | # | ||
| 431 | # User Modules And Translation Layers | ||
| 432 | # | ||
| 433 | CONFIG_MTD_CHAR=y | ||
| 434 | CONFIG_MTD_BLKDEVS=y | ||
| 435 | CONFIG_MTD_BLOCK=y | ||
| 436 | # CONFIG_FTL is not set | ||
| 437 | # CONFIG_NFTL is not set | ||
| 438 | # CONFIG_INFTL is not set | ||
| 439 | # CONFIG_RFD_FTL is not set | ||
| 440 | # CONFIG_SSFDC is not set | ||
| 441 | # CONFIG_MTD_OOPS is not set | ||
| 442 | |||
| 443 | # | ||
| 444 | # RAM/ROM/Flash chip drivers | ||
| 445 | # | ||
| 446 | CONFIG_MTD_CFI=y | ||
| 447 | # CONFIG_MTD_JEDECPROBE is not set | ||
| 448 | CONFIG_MTD_GEN_PROBE=y | ||
| 449 | # CONFIG_MTD_CFI_ADV_OPTIONS is not set | ||
| 450 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
| 451 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
| 452 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
| 453 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
| 454 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
| 455 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
| 456 | CONFIG_MTD_CFI_I1=y | ||
| 457 | CONFIG_MTD_CFI_I2=y | ||
| 458 | # CONFIG_MTD_CFI_I4 is not set | ||
| 459 | # CONFIG_MTD_CFI_I8 is not set | ||
| 460 | # CONFIG_MTD_CFI_INTELEXT is not set | ||
| 461 | CONFIG_MTD_CFI_AMDSTD=y | ||
| 462 | # CONFIG_MTD_CFI_STAA is not set | ||
| 463 | CONFIG_MTD_CFI_UTIL=y | ||
| 464 | # CONFIG_MTD_RAM is not set | ||
| 465 | # CONFIG_MTD_ROM is not set | ||
| 466 | # CONFIG_MTD_ABSENT is not set | ||
| 467 | |||
| 468 | # | ||
| 469 | # Mapping drivers for chip access | ||
| 470 | # | ||
| 471 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | ||
| 472 | # CONFIG_MTD_PHYSMAP is not set | ||
| 473 | CONFIG_MTD_PHYSMAP_OF=y | ||
| 474 | # CONFIG_MTD_INTEL_VR_NOR is not set | ||
| 475 | # CONFIG_MTD_PLATRAM is not set | ||
| 476 | |||
| 477 | # | ||
| 478 | # Self-contained MTD device drivers | ||
| 479 | # | ||
| 480 | # CONFIG_MTD_PMC551 is not set | ||
| 481 | # CONFIG_MTD_SLRAM is not set | ||
| 482 | # CONFIG_MTD_PHRAM is not set | ||
| 483 | # CONFIG_MTD_MTDRAM is not set | ||
| 484 | # CONFIG_MTD_BLOCK2MTD is not set | ||
| 485 | |||
| 486 | # | ||
| 487 | # Disk-On-Chip Device Drivers | ||
| 488 | # | ||
| 489 | # CONFIG_MTD_DOC2000 is not set | ||
| 490 | # CONFIG_MTD_DOC2001 is not set | ||
| 491 | # CONFIG_MTD_DOC2001PLUS is not set | ||
| 492 | CONFIG_MTD_NAND=y | ||
| 493 | # CONFIG_MTD_NAND_VERIFY_WRITE is not set | ||
| 494 | CONFIG_MTD_NAND_ECC_SMC=y | ||
| 495 | # CONFIG_MTD_NAND_MUSEUM_IDS is not set | ||
| 496 | CONFIG_MTD_NAND_IDS=y | ||
| 497 | CONFIG_MTD_NAND_NDFC=y | ||
| 498 | # CONFIG_MTD_NAND_DISKONCHIP is not set | ||
| 499 | # CONFIG_MTD_NAND_CAFE is not set | ||
| 500 | # CONFIG_MTD_NAND_NANDSIM is not set | ||
| 501 | # CONFIG_MTD_NAND_PLATFORM is not set | ||
| 502 | # CONFIG_MTD_NAND_FSL_ELBC is not set | ||
| 503 | # CONFIG_MTD_ONENAND is not set | ||
| 504 | |||
| 505 | # | ||
| 506 | # LPDDR flash memory drivers | ||
| 507 | # | ||
| 508 | # CONFIG_MTD_LPDDR is not set | ||
| 509 | |||
| 510 | # | ||
| 511 | # UBI - Unsorted block images | ||
| 512 | # | ||
| 513 | # CONFIG_MTD_UBI is not set | ||
| 514 | CONFIG_OF_DEVICE=y | ||
| 515 | CONFIG_OF_I2C=y | ||
| 516 | # CONFIG_PARPORT is not set | ||
| 517 | CONFIG_BLK_DEV=y | ||
| 518 | # CONFIG_BLK_DEV_FD is not set | ||
| 519 | # CONFIG_BLK_CPQ_DA is not set | ||
| 520 | # CONFIG_BLK_CPQ_CISS_DA is not set | ||
| 521 | # CONFIG_BLK_DEV_DAC960 is not set | ||
| 522 | # CONFIG_BLK_DEV_UMEM is not set | ||
| 523 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 524 | # CONFIG_BLK_DEV_LOOP is not set | ||
| 525 | # CONFIG_BLK_DEV_NBD is not set | ||
| 526 | # CONFIG_BLK_DEV_SX8 is not set | ||
| 527 | CONFIG_BLK_DEV_RAM=y | ||
| 528 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
| 529 | CONFIG_BLK_DEV_RAM_SIZE=35000 | ||
| 530 | # CONFIG_BLK_DEV_XIP is not set | ||
| 531 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 532 | # CONFIG_ATA_OVER_ETH is not set | ||
| 533 | # CONFIG_XILINX_SYSACE is not set | ||
| 534 | # CONFIG_BLK_DEV_HD is not set | ||
| 535 | # CONFIG_MISC_DEVICES is not set | ||
| 536 | CONFIG_HAVE_IDE=y | ||
| 537 | # CONFIG_IDE is not set | ||
| 538 | |||
| 539 | # | ||
| 540 | # SCSI device support | ||
| 541 | # | ||
| 542 | # CONFIG_RAID_ATTRS is not set | ||
| 543 | CONFIG_SCSI=y | ||
| 544 | CONFIG_SCSI_DMA=y | ||
| 545 | # CONFIG_SCSI_TGT is not set | ||
| 546 | # CONFIG_SCSI_NETLINK is not set | ||
| 547 | CONFIG_SCSI_PROC_FS=y | ||
| 548 | |||
| 549 | # | ||
| 550 | # SCSI support type (disk, tape, CD-ROM) | ||
| 551 | # | ||
| 552 | CONFIG_BLK_DEV_SD=y | ||
| 553 | # CONFIG_CHR_DEV_ST is not set | ||
| 554 | # CONFIG_CHR_DEV_OSST is not set | ||
| 555 | # CONFIG_BLK_DEV_SR is not set | ||
| 556 | CONFIG_CHR_DEV_SG=y | ||
| 557 | # CONFIG_CHR_DEV_SCH is not set | ||
| 558 | # CONFIG_SCSI_MULTI_LUN is not set | ||
| 559 | # CONFIG_SCSI_CONSTANTS is not set | ||
| 560 | # CONFIG_SCSI_LOGGING is not set | ||
| 561 | # CONFIG_SCSI_SCAN_ASYNC is not set | ||
| 562 | CONFIG_SCSI_WAIT_SCAN=m | ||
| 563 | |||
| 564 | # | ||
| 565 | # SCSI Transports | ||
| 566 | # | ||
| 567 | # CONFIG_SCSI_SPI_ATTRS is not set | ||
| 568 | # CONFIG_SCSI_FC_ATTRS is not set | ||
| 569 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
| 570 | CONFIG_SCSI_SAS_ATTRS=y | ||
| 571 | # CONFIG_SCSI_SAS_LIBSAS is not set | ||
| 572 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
| 573 | CONFIG_SCSI_LOWLEVEL=y | ||
| 574 | # CONFIG_ISCSI_TCP is not set | ||
| 575 | # CONFIG_SCSI_BNX2_ISCSI is not set | ||
| 576 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | ||
| 577 | # CONFIG_SCSI_3W_9XXX is not set | ||
| 578 | # CONFIG_SCSI_ACARD is not set | ||
| 579 | # CONFIG_SCSI_AACRAID is not set | ||
| 580 | # CONFIG_SCSI_AIC7XXX is not set | ||
| 581 | # CONFIG_SCSI_AIC7XXX_OLD is not set | ||
| 582 | # CONFIG_SCSI_AIC79XX is not set | ||
| 583 | # CONFIG_SCSI_AIC94XX is not set | ||
| 584 | # CONFIG_SCSI_MVSAS is not set | ||
| 585 | # CONFIG_SCSI_DPT_I2O is not set | ||
| 586 | # CONFIG_SCSI_ADVANSYS is not set | ||
| 587 | # CONFIG_SCSI_ARCMSR is not set | ||
| 588 | # CONFIG_MEGARAID_NEWGEN is not set | ||
| 589 | # CONFIG_MEGARAID_LEGACY is not set | ||
| 590 | # CONFIG_MEGARAID_SAS is not set | ||
| 591 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 592 | # CONFIG_SCSI_HPTIOP is not set | ||
| 593 | # CONFIG_SCSI_BUSLOGIC is not set | ||
| 594 | # CONFIG_LIBFC is not set | ||
| 595 | # CONFIG_LIBFCOE is not set | ||
| 596 | # CONFIG_FCOE is not set | ||
| 597 | # CONFIG_SCSI_DMX3191D is not set | ||
| 598 | # CONFIG_SCSI_EATA is not set | ||
| 599 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | ||
| 600 | # CONFIG_SCSI_GDTH is not set | ||
| 601 | # CONFIG_SCSI_IPS is not set | ||
| 602 | # CONFIG_SCSI_INITIO is not set | ||
| 603 | # CONFIG_SCSI_INIA100 is not set | ||
| 604 | # CONFIG_SCSI_STEX is not set | ||
| 605 | # CONFIG_SCSI_SYM53C8XX_2 is not set | ||
| 606 | # CONFIG_SCSI_QLOGIC_1280 is not set | ||
| 607 | # CONFIG_SCSI_QLA_FC is not set | ||
| 608 | # CONFIG_SCSI_QLA_ISCSI is not set | ||
| 609 | # CONFIG_SCSI_LPFC is not set | ||
| 610 | # CONFIG_SCSI_DC395x is not set | ||
| 611 | # CONFIG_SCSI_DC390T is not set | ||
| 612 | # CONFIG_SCSI_NSP32 is not set | ||
| 613 | # CONFIG_SCSI_DEBUG is not set | ||
| 614 | # CONFIG_SCSI_SRP is not set | ||
| 615 | # CONFIG_SCSI_DH is not set | ||
| 616 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 617 | # CONFIG_ATA is not set | ||
| 618 | # CONFIG_MD is not set | ||
| 619 | CONFIG_FUSION=y | ||
| 620 | # CONFIG_FUSION_SPI is not set | ||
| 621 | # CONFIG_FUSION_FC is not set | ||
| 622 | CONFIG_FUSION_SAS=y | ||
| 623 | CONFIG_FUSION_MAX_SGE=128 | ||
| 624 | # CONFIG_FUSION_CTL is not set | ||
| 625 | # CONFIG_FUSION_LOGGING is not set | ||
| 626 | |||
| 627 | # | ||
| 628 | # IEEE 1394 (FireWire) support | ||
| 629 | # | ||
| 630 | |||
| 631 | # | ||
| 632 | # You can enable one or both FireWire driver stacks. | ||
| 633 | # | ||
| 634 | |||
| 635 | # | ||
| 636 | # See the help texts for more information. | ||
| 637 | # | ||
| 638 | # CONFIG_FIREWIRE is not set | ||
| 639 | # CONFIG_IEEE1394 is not set | ||
| 640 | CONFIG_I2O=y | ||
| 641 | CONFIG_I2O_LCT_NOTIFY_ON_CHANGES=y | ||
| 642 | CONFIG_I2O_EXT_ADAPTEC=y | ||
| 643 | # CONFIG_I2O_CONFIG is not set | ||
| 644 | # CONFIG_I2O_BUS is not set | ||
| 645 | # CONFIG_I2O_BLOCK is not set | ||
| 646 | # CONFIG_I2O_SCSI is not set | ||
| 647 | # CONFIG_I2O_PROC is not set | ||
| 648 | # CONFIG_MACINTOSH_DRIVERS is not set | ||
| 649 | CONFIG_NETDEVICES=y | ||
| 650 | # CONFIG_DUMMY is not set | ||
| 651 | # CONFIG_BONDING is not set | ||
| 652 | # CONFIG_MACVLAN is not set | ||
| 653 | # CONFIG_EQUALIZER is not set | ||
| 654 | # CONFIG_TUN is not set | ||
| 655 | # CONFIG_VETH is not set | ||
| 656 | # CONFIG_ARCNET is not set | ||
| 657 | # CONFIG_PHYLIB is not set | ||
| 658 | CONFIG_NET_ETHERNET=y | ||
| 659 | # CONFIG_MII is not set | ||
| 660 | # CONFIG_HAPPYMEAL is not set | ||
| 661 | # CONFIG_SUNGEM is not set | ||
| 662 | # CONFIG_CASSINI is not set | ||
| 663 | # CONFIG_NET_VENDOR_3COM is not set | ||
| 664 | # CONFIG_ETHOC is not set | ||
| 665 | # CONFIG_DNET is not set | ||
| 666 | # CONFIG_NET_TULIP is not set | ||
| 667 | # CONFIG_HP100 is not set | ||
| 668 | CONFIG_IBM_NEW_EMAC=y | ||
| 669 | CONFIG_IBM_NEW_EMAC_RXB=256 | ||
| 670 | CONFIG_IBM_NEW_EMAC_TXB=256 | ||
| 671 | CONFIG_IBM_NEW_EMAC_POLL_WEIGHT=32 | ||
| 672 | CONFIG_IBM_NEW_EMAC_RX_COPY_THRESHOLD=256 | ||
| 673 | CONFIG_IBM_NEW_EMAC_RX_SKB_HEADROOM=0 | ||
| 674 | # CONFIG_IBM_NEW_EMAC_DEBUG is not set | ||
| 675 | CONFIG_IBM_NEW_EMAC_ZMII=y | ||
| 676 | CONFIG_IBM_NEW_EMAC_RGMII=y | ||
| 677 | CONFIG_IBM_NEW_EMAC_TAH=y | ||
| 678 | CONFIG_IBM_NEW_EMAC_EMAC4=y | ||
| 679 | # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set | ||
| 680 | # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set | ||
| 681 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | ||
| 682 | # CONFIG_NET_PCI is not set | ||
| 683 | # CONFIG_B44 is not set | ||
| 684 | # CONFIG_KS8842 is not set | ||
| 685 | # CONFIG_ATL2 is not set | ||
| 686 | CONFIG_NETDEV_1000=y | ||
| 687 | # CONFIG_ACENIC is not set | ||
| 688 | # CONFIG_DL2K is not set | ||
| 689 | # CONFIG_E1000 is not set | ||
| 690 | CONFIG_E1000E=y | ||
| 691 | # CONFIG_IP1000 is not set | ||
| 692 | # CONFIG_IGB is not set | ||
| 693 | # CONFIG_IGBVF is not set | ||
| 694 | # CONFIG_NS83820 is not set | ||
| 695 | # CONFIG_HAMACHI is not set | ||
| 696 | # CONFIG_YELLOWFIN is not set | ||
| 697 | # CONFIG_R8169 is not set | ||
| 698 | # CONFIG_SIS190 is not set | ||
| 699 | # CONFIG_SKGE is not set | ||
| 700 | # CONFIG_SKY2 is not set | ||
| 701 | # CONFIG_VIA_VELOCITY is not set | ||
| 702 | # CONFIG_TIGON3 is not set | ||
| 703 | # CONFIG_BNX2 is not set | ||
| 704 | # CONFIG_CNIC is not set | ||
| 705 | # CONFIG_MV643XX_ETH is not set | ||
| 706 | # CONFIG_XILINX_LL_TEMAC is not set | ||
| 707 | # CONFIG_QLA3XXX is not set | ||
| 708 | # CONFIG_ATL1 is not set | ||
| 709 | # CONFIG_ATL1E is not set | ||
| 710 | # CONFIG_ATL1C is not set | ||
| 711 | # CONFIG_JME is not set | ||
| 712 | # CONFIG_NETDEV_10000 is not set | ||
| 713 | # CONFIG_TR is not set | ||
| 714 | |||
| 715 | # | ||
| 716 | # Wireless LAN | ||
| 717 | # | ||
| 718 | # CONFIG_WLAN_PRE80211 is not set | ||
| 719 | # CONFIG_WLAN_80211 is not set | ||
| 720 | |||
| 721 | # | ||
| 722 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 723 | # | ||
| 724 | # CONFIG_WAN is not set | ||
| 725 | # CONFIG_FDDI is not set | ||
| 726 | # CONFIG_HIPPI is not set | ||
| 727 | # CONFIG_PPP is not set | ||
| 728 | # CONFIG_SLIP is not set | ||
| 729 | # CONFIG_NET_FC is not set | ||
| 730 | # CONFIG_NETCONSOLE is not set | ||
| 731 | # CONFIG_NETPOLL is not set | ||
| 732 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
| 733 | # CONFIG_ISDN is not set | ||
| 734 | # CONFIG_PHONE is not set | ||
| 735 | |||
| 736 | # | ||
| 737 | # Input device support | ||
| 738 | # | ||
| 739 | # CONFIG_INPUT is not set | ||
| 740 | |||
| 741 | # | ||
| 742 | # Hardware I/O ports | ||
| 743 | # | ||
| 744 | # CONFIG_SERIO is not set | ||
| 745 | # CONFIG_GAMEPORT is not set | ||
| 746 | |||
| 747 | # | ||
| 748 | # Character devices | ||
| 749 | # | ||
| 750 | # CONFIG_VT is not set | ||
| 751 | CONFIG_DEVKMEM=y | ||
| 752 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
| 753 | # CONFIG_NOZOMI is not set | ||
| 754 | |||
| 755 | # | ||
| 756 | # Serial drivers | ||
| 757 | # | ||
| 758 | CONFIG_SERIAL_8250=y | ||
| 759 | CONFIG_SERIAL_8250_CONSOLE=y | ||
| 760 | # CONFIG_SERIAL_8250_PCI is not set | ||
| 761 | CONFIG_SERIAL_8250_NR_UARTS=2 | ||
| 762 | CONFIG_SERIAL_8250_RUNTIME_UARTS=2 | ||
| 763 | CONFIG_SERIAL_8250_EXTENDED=y | ||
| 764 | # CONFIG_SERIAL_8250_MANY_PORTS is not set | ||
| 765 | CONFIG_SERIAL_8250_SHARE_IRQ=y | ||
| 766 | # CONFIG_SERIAL_8250_DETECT_IRQ is not set | ||
| 767 | # CONFIG_SERIAL_8250_RSA is not set | ||
| 768 | |||
| 769 | # | ||
| 770 | # Non-8250 serial port support | ||
| 771 | # | ||
| 772 | # CONFIG_SERIAL_UARTLITE is not set | ||
| 773 | CONFIG_SERIAL_CORE=y | ||
| 774 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
| 775 | # CONFIG_SERIAL_JSM is not set | ||
| 776 | CONFIG_SERIAL_OF_PLATFORM=y | ||
| 777 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
| 778 | CONFIG_UNIX98_PTYS=y | ||
| 779 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
| 780 | CONFIG_LEGACY_PTYS=y | ||
| 781 | CONFIG_LEGACY_PTY_COUNT=256 | ||
| 782 | # CONFIG_HVC_UDBG is not set | ||
| 783 | # CONFIG_IPMI_HANDLER is not set | ||
| 784 | # CONFIG_HW_RANDOM is not set | ||
| 785 | # CONFIG_NVRAM is not set | ||
| 786 | # CONFIG_GEN_RTC is not set | ||
| 787 | # CONFIG_R3964 is not set | ||
| 788 | # CONFIG_APPLICOM is not set | ||
| 789 | # CONFIG_RAW_DRIVER is not set | ||
| 790 | # CONFIG_TCG_TPM is not set | ||
| 791 | CONFIG_DEVPORT=y | ||
| 792 | CONFIG_I2C=y | ||
| 793 | CONFIG_I2C_BOARDINFO=y | ||
| 794 | CONFIG_I2C_CHARDEV=y | ||
| 795 | CONFIG_I2C_HELPER_AUTO=y | ||
| 796 | |||
| 797 | # | ||
| 798 | # I2C Hardware Bus support | ||
| 799 | # | ||
| 800 | |||
| 801 | # | ||
| 802 | # PC SMBus host controller drivers | ||
| 803 | # | ||
| 804 | # CONFIG_I2C_ALI1535 is not set | ||
| 805 | # CONFIG_I2C_ALI1563 is not set | ||
| 806 | # CONFIG_I2C_ALI15X3 is not set | ||
| 807 | # CONFIG_I2C_AMD756 is not set | ||
| 808 | # CONFIG_I2C_AMD8111 is not set | ||
| 809 | # CONFIG_I2C_I801 is not set | ||
| 810 | # CONFIG_I2C_ISCH is not set | ||
| 811 | # CONFIG_I2C_PIIX4 is not set | ||
| 812 | # CONFIG_I2C_NFORCE2 is not set | ||
| 813 | # CONFIG_I2C_SIS5595 is not set | ||
| 814 | # CONFIG_I2C_SIS630 is not set | ||
| 815 | # CONFIG_I2C_SIS96X is not set | ||
| 816 | # CONFIG_I2C_VIA is not set | ||
| 817 | # CONFIG_I2C_VIAPRO is not set | ||
| 818 | |||
| 819 | # | ||
| 820 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 821 | # | ||
| 822 | CONFIG_I2C_IBM_IIC=y | ||
| 823 | # CONFIG_I2C_MPC is not set | ||
| 824 | # CONFIG_I2C_OCORES is not set | ||
| 825 | # CONFIG_I2C_SIMTEC is not set | ||
| 826 | |||
| 827 | # | ||
| 828 | # External I2C/SMBus adapter drivers | ||
| 829 | # | ||
| 830 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 831 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 832 | |||
| 833 | # | ||
| 834 | # Graphics adapter I2C/DDC channel drivers | ||
| 835 | # | ||
| 836 | # CONFIG_I2C_VOODOO3 is not set | ||
| 837 | |||
| 838 | # | ||
| 839 | # Other I2C/SMBus bus drivers | ||
| 840 | # | ||
| 841 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 842 | # CONFIG_I2C_STUB is not set | ||
| 843 | |||
| 844 | # | ||
| 845 | # Miscellaneous I2C Chip support | ||
| 846 | # | ||
| 847 | # CONFIG_DS1682 is not set | ||
| 848 | # CONFIG_SENSORS_PCF8574 is not set | ||
| 849 | # CONFIG_PCF8575 is not set | ||
| 850 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 851 | # CONFIG_SENSORS_TSL2550 is not set | ||
| 852 | CONFIG_I2C_DEBUG_CORE=y | ||
| 853 | CONFIG_I2C_DEBUG_ALGO=y | ||
| 854 | CONFIG_I2C_DEBUG_BUS=y | ||
| 855 | CONFIG_I2C_DEBUG_CHIP=y | ||
| 856 | # CONFIG_SPI is not set | ||
| 857 | |||
| 858 | # | ||
| 859 | # PPS support | ||
| 860 | # | ||
| 861 | # CONFIG_PPS is not set | ||
| 862 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 863 | # CONFIG_GPIOLIB is not set | ||
| 864 | # CONFIG_W1 is not set | ||
| 865 | # CONFIG_POWER_SUPPLY is not set | ||
| 866 | # CONFIG_HWMON is not set | ||
| 867 | # CONFIG_THERMAL is not set | ||
| 868 | # CONFIG_THERMAL_HWMON is not set | ||
| 869 | # CONFIG_WATCHDOG is not set | ||
| 870 | CONFIG_SSB_POSSIBLE=y | ||
| 871 | |||
| 872 | # | ||
| 873 | # Sonics Silicon Backplane | ||
| 874 | # | ||
| 875 | # CONFIG_SSB is not set | ||
| 876 | |||
| 877 | # | ||
| 878 | # Multifunction device drivers | ||
| 879 | # | ||
| 880 | # CONFIG_MFD_CORE is not set | ||
| 881 | # CONFIG_MFD_SM501 is not set | ||
| 882 | # CONFIG_HTC_PASIC3 is not set | ||
| 883 | # CONFIG_TWL4030_CORE is not set | ||
| 884 | # CONFIG_MFD_TMIO is not set | ||
| 885 | # CONFIG_PMIC_DA903X is not set | ||
| 886 | # CONFIG_MFD_WM8400 is not set | ||
| 887 | # CONFIG_MFD_WM8350_I2C is not set | ||
| 888 | # CONFIG_MFD_PCF50633 is not set | ||
| 889 | # CONFIG_AB3100_CORE is not set | ||
| 890 | # CONFIG_REGULATOR is not set | ||
| 891 | # CONFIG_MEDIA_SUPPORT is not set | ||
| 892 | |||
| 893 | # | ||
| 894 | # Graphics support | ||
| 895 | # | ||
| 896 | # CONFIG_AGP is not set | ||
| 897 | # CONFIG_DRM is not set | ||
| 898 | # CONFIG_VGASTATE is not set | ||
| 899 | CONFIG_VIDEO_OUTPUT_CONTROL=m | ||
| 900 | # CONFIG_FB is not set | ||
| 901 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
| 902 | |||
| 903 | # | ||
| 904 | # Display device support | ||
| 905 | # | ||
| 906 | # CONFIG_DISPLAY_SUPPORT is not set | ||
| 907 | # CONFIG_SOUND is not set | ||
| 908 | # CONFIG_USB_SUPPORT is not set | ||
| 909 | # CONFIG_UWB is not set | ||
| 910 | # CONFIG_MMC is not set | ||
| 911 | # CONFIG_MEMSTICK is not set | ||
| 912 | # CONFIG_NEW_LEDS is not set | ||
| 913 | # CONFIG_ACCESSIBILITY is not set | ||
| 914 | # CONFIG_INFINIBAND is not set | ||
| 915 | # CONFIG_EDAC is not set | ||
| 916 | # CONFIG_RTC_CLASS is not set | ||
| 917 | CONFIG_DMADEVICES=y | ||
| 918 | |||
| 919 | # | ||
| 920 | # DMA Devices | ||
| 921 | # | ||
| 922 | # CONFIG_AUXDISPLAY is not set | ||
| 923 | # CONFIG_UIO is not set | ||
| 924 | |||
| 925 | # | ||
| 926 | # TI VLYNQ | ||
| 927 | # | ||
| 928 | # CONFIG_STAGING is not set | ||
| 929 | |||
| 930 | # | ||
| 931 | # File systems | ||
| 932 | # | ||
| 933 | CONFIG_EXT2_FS=y | ||
| 934 | # CONFIG_EXT2_FS_XATTR is not set | ||
| 935 | # CONFIG_EXT2_FS_XIP is not set | ||
| 936 | # CONFIG_EXT3_FS is not set | ||
| 937 | # CONFIG_EXT4_FS is not set | ||
| 938 | # CONFIG_REISERFS_FS is not set | ||
| 939 | # CONFIG_JFS_FS is not set | ||
| 940 | # CONFIG_FS_POSIX_ACL is not set | ||
| 941 | # CONFIG_XFS_FS is not set | ||
| 942 | # CONFIG_GFS2_FS is not set | ||
| 943 | # CONFIG_OCFS2_FS is not set | ||
| 944 | # CONFIG_BTRFS_FS is not set | ||
| 945 | CONFIG_FILE_LOCKING=y | ||
| 946 | CONFIG_FSNOTIFY=y | ||
| 947 | CONFIG_DNOTIFY=y | ||
| 948 | CONFIG_INOTIFY=y | ||
| 949 | CONFIG_INOTIFY_USER=y | ||
| 950 | # CONFIG_QUOTA is not set | ||
| 951 | # CONFIG_AUTOFS_FS is not set | ||
| 952 | # CONFIG_AUTOFS4_FS is not set | ||
| 953 | # CONFIG_FUSE_FS is not set | ||
| 954 | |||
| 955 | # | ||
| 956 | # Caches | ||
| 957 | # | ||
| 958 | # CONFIG_FSCACHE is not set | ||
| 959 | |||
| 960 | # | ||
| 961 | # CD-ROM/DVD Filesystems | ||
| 962 | # | ||
| 963 | # CONFIG_ISO9660_FS is not set | ||
| 964 | # CONFIG_UDF_FS is not set | ||
| 965 | |||
| 966 | # | ||
| 967 | # DOS/FAT/NT Filesystems | ||
| 968 | # | ||
| 969 | # CONFIG_MSDOS_FS is not set | ||
| 970 | # CONFIG_VFAT_FS is not set | ||
| 971 | # CONFIG_NTFS_FS is not set | ||
| 972 | |||
| 973 | # | ||
| 974 | # Pseudo filesystems | ||
| 975 | # | ||
| 976 | CONFIG_PROC_FS=y | ||
| 977 | CONFIG_PROC_KCORE=y | ||
| 978 | CONFIG_PROC_SYSCTL=y | ||
| 979 | CONFIG_PROC_PAGE_MONITOR=y | ||
| 980 | CONFIG_SYSFS=y | ||
| 981 | CONFIG_TMPFS=y | ||
| 982 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
| 983 | # CONFIG_HUGETLB_PAGE is not set | ||
| 984 | # CONFIG_CONFIGFS_FS is not set | ||
| 985 | CONFIG_MISC_FILESYSTEMS=y | ||
| 986 | # CONFIG_ADFS_FS is not set | ||
| 987 | # CONFIG_AFFS_FS is not set | ||
| 988 | # CONFIG_HFS_FS is not set | ||
| 989 | # CONFIG_HFSPLUS_FS is not set | ||
| 990 | # CONFIG_BEFS_FS is not set | ||
| 991 | # CONFIG_BFS_FS is not set | ||
| 992 | # CONFIG_EFS_FS is not set | ||
| 993 | # CONFIG_JFFS2_FS is not set | ||
| 994 | CONFIG_CRAMFS=y | ||
| 995 | # CONFIG_SQUASHFS is not set | ||
| 996 | # CONFIG_VXFS_FS is not set | ||
| 997 | # CONFIG_MINIX_FS is not set | ||
| 998 | # CONFIG_OMFS_FS is not set | ||
| 999 | # CONFIG_HPFS_FS is not set | ||
| 1000 | # CONFIG_QNX4FS_FS is not set | ||
| 1001 | # CONFIG_ROMFS_FS is not set | ||
| 1002 | # CONFIG_SYSV_FS is not set | ||
| 1003 | # CONFIG_UFS_FS is not set | ||
| 1004 | # CONFIG_NILFS2_FS is not set | ||
| 1005 | CONFIG_NETWORK_FILESYSTEMS=y | ||
| 1006 | CONFIG_NFS_FS=y | ||
| 1007 | CONFIG_NFS_V3=y | ||
| 1008 | # CONFIG_NFS_V3_ACL is not set | ||
| 1009 | # CONFIG_NFS_V4 is not set | ||
| 1010 | CONFIG_ROOT_NFS=y | ||
| 1011 | # CONFIG_NFSD is not set | ||
| 1012 | CONFIG_LOCKD=y | ||
| 1013 | CONFIG_LOCKD_V4=y | ||
| 1014 | CONFIG_NFS_COMMON=y | ||
| 1015 | CONFIG_SUNRPC=y | ||
| 1016 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
| 1017 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
| 1018 | # CONFIG_SMB_FS is not set | ||
| 1019 | # CONFIG_CIFS is not set | ||
| 1020 | # CONFIG_NCP_FS is not set | ||
| 1021 | # CONFIG_CODA_FS is not set | ||
| 1022 | # CONFIG_AFS_FS is not set | ||
| 1023 | |||
| 1024 | # | ||
| 1025 | # Partition Types | ||
| 1026 | # | ||
| 1027 | # CONFIG_PARTITION_ADVANCED is not set | ||
| 1028 | CONFIG_MSDOS_PARTITION=y | ||
| 1029 | # CONFIG_NLS is not set | ||
| 1030 | # CONFIG_DLM is not set | ||
| 1031 | # CONFIG_BINARY_PRINTF is not set | ||
| 1032 | |||
| 1033 | # | ||
| 1034 | # Library routines | ||
| 1035 | # | ||
| 1036 | CONFIG_BITREVERSE=y | ||
| 1037 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
| 1038 | # CONFIG_CRC_CCITT is not set | ||
| 1039 | # CONFIG_CRC16 is not set | ||
| 1040 | # CONFIG_CRC_T10DIF is not set | ||
| 1041 | # CONFIG_CRC_ITU_T is not set | ||
| 1042 | CONFIG_CRC32=y | ||
| 1043 | # CONFIG_CRC7 is not set | ||
| 1044 | # CONFIG_LIBCRC32C is not set | ||
| 1045 | CONFIG_ZLIB_INFLATE=y | ||
| 1046 | CONFIG_DECOMPRESS_GZIP=y | ||
| 1047 | CONFIG_HAS_IOMEM=y | ||
| 1048 | CONFIG_HAS_IOPORT=y | ||
| 1049 | CONFIG_HAS_DMA=y | ||
| 1050 | CONFIG_HAVE_LMB=y | ||
| 1051 | CONFIG_NLATTR=y | ||
| 1052 | CONFIG_GENERIC_ATOMIC64=y | ||
| 1053 | |||
| 1054 | # | ||
| 1055 | # Kernel hacking | ||
| 1056 | # | ||
| 1057 | # CONFIG_PRINTK_TIME is not set | ||
| 1058 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
| 1059 | CONFIG_ENABLE_MUST_CHECK=y | ||
| 1060 | CONFIG_FRAME_WARN=1024 | ||
| 1061 | CONFIG_MAGIC_SYSRQ=y | ||
| 1062 | # CONFIG_UNUSED_SYMBOLS is not set | ||
| 1063 | CONFIG_DEBUG_FS=y | ||
| 1064 | # CONFIG_HEADERS_CHECK is not set | ||
| 1065 | CONFIG_DEBUG_KERNEL=y | ||
| 1066 | # CONFIG_DEBUG_SHIRQ is not set | ||
| 1067 | CONFIG_DETECT_SOFTLOCKUP=y | ||
| 1068 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 1069 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 1070 | CONFIG_DETECT_HUNG_TASK=y | ||
| 1071 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
| 1072 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
| 1073 | CONFIG_SCHED_DEBUG=y | ||
| 1074 | # CONFIG_SCHEDSTATS is not set | ||
| 1075 | # CONFIG_TIMER_STATS is not set | ||
| 1076 | # CONFIG_DEBUG_OBJECTS is not set | ||
| 1077 | # CONFIG_SLUB_DEBUG_ON is not set | ||
| 1078 | # CONFIG_SLUB_STATS is not set | ||
| 1079 | # CONFIG_DEBUG_KMEMLEAK is not set | ||
| 1080 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
| 1081 | # CONFIG_RT_MUTEX_TESTER is not set | ||
| 1082 | # CONFIG_DEBUG_SPINLOCK is not set | ||
| 1083 | # CONFIG_DEBUG_MUTEXES is not set | ||
| 1084 | # CONFIG_DEBUG_LOCK_ALLOC is not set | ||
| 1085 | # CONFIG_PROVE_LOCKING is not set | ||
| 1086 | # CONFIG_LOCK_STAT is not set | ||
| 1087 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
| 1088 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
| 1089 | # CONFIG_DEBUG_KOBJECT is not set | ||
| 1090 | # CONFIG_DEBUG_BUGVERBOSE is not set | ||
| 1091 | # CONFIG_DEBUG_INFO is not set | ||
| 1092 | # CONFIG_DEBUG_VM is not set | ||
| 1093 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
| 1094 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1095 | # CONFIG_DEBUG_LIST is not set | ||
| 1096 | # CONFIG_DEBUG_SG is not set | ||
| 1097 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
| 1098 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 1099 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
| 1100 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
| 1101 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set | ||
| 1102 | # CONFIG_FAULT_INJECTION is not set | ||
| 1103 | # CONFIG_LATENCYTOP is not set | ||
| 1104 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1105 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1106 | CONFIG_HAVE_FUNCTION_TRACER=y | ||
| 1107 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1108 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1109 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
| 1110 | CONFIG_TRACING_SUPPORT=y | ||
| 1111 | CONFIG_FTRACE=y | ||
| 1112 | # CONFIG_FUNCTION_TRACER is not set | ||
| 1113 | # CONFIG_IRQSOFF_TRACER is not set | ||
| 1114 | # CONFIG_SCHED_TRACER is not set | ||
| 1115 | # CONFIG_ENABLE_DEFAULT_TRACERS is not set | ||
| 1116 | # CONFIG_BOOT_TRACER is not set | ||
| 1117 | CONFIG_BRANCH_PROFILE_NONE=y | ||
| 1118 | # CONFIG_PROFILE_ANNOTATED_BRANCHES is not set | ||
| 1119 | # CONFIG_PROFILE_ALL_BRANCHES is not set | ||
| 1120 | # CONFIG_STACK_TRACER is not set | ||
| 1121 | # CONFIG_KMEMTRACE is not set | ||
| 1122 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1123 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1124 | # CONFIG_DYNAMIC_DEBUG is not set | ||
| 1125 | # CONFIG_SAMPLES is not set | ||
| 1126 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1127 | # CONFIG_KGDB is not set | ||
| 1128 | # CONFIG_KMEMCHECK is not set | ||
| 1129 | # CONFIG_PPC_DISABLE_WERROR is not set | ||
| 1130 | CONFIG_PPC_WERROR=y | ||
| 1131 | CONFIG_PRINT_STACK_DEPTH=64 | ||
| 1132 | # CONFIG_DEBUG_STACKOVERFLOW is not set | ||
| 1133 | # CONFIG_DEBUG_STACK_USAGE is not set | ||
| 1134 | # CONFIG_PPC_EMULATED_STATS is not set | ||
| 1135 | # CONFIG_CODE_PATCHING_SELFTEST is not set | ||
| 1136 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
| 1137 | # CONFIG_MSI_BITMAP_SELFTEST is not set | ||
| 1138 | # CONFIG_XMON is not set | ||
| 1139 | # CONFIG_IRQSTACKS is not set | ||
| 1140 | # CONFIG_VIRQ_DEBUG is not set | ||
| 1141 | # CONFIG_BDI_SWITCH is not set | ||
| 1142 | # CONFIG_PPC_EARLY_DEBUG is not set | ||
| 1143 | |||
| 1144 | # | ||
| 1145 | # Security options | ||
| 1146 | # | ||
| 1147 | # CONFIG_KEYS is not set | ||
| 1148 | # CONFIG_SECURITY is not set | ||
| 1149 | # CONFIG_SECURITYFS is not set | ||
| 1150 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
| 1151 | CONFIG_CRYPTO=y | ||
| 1152 | |||
| 1153 | # | ||
| 1154 | # Crypto core or helper | ||
| 1155 | # | ||
| 1156 | # CONFIG_CRYPTO_FIPS is not set | ||
| 1157 | CONFIG_CRYPTO_ALGAPI=y | ||
| 1158 | CONFIG_CRYPTO_ALGAPI2=y | ||
| 1159 | CONFIG_CRYPTO_AEAD=y | ||
| 1160 | CONFIG_CRYPTO_AEAD2=y | ||
| 1161 | CONFIG_CRYPTO_BLKCIPHER=y | ||
| 1162 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
| 1163 | CONFIG_CRYPTO_HASH=y | ||
| 1164 | CONFIG_CRYPTO_HASH2=y | ||
| 1165 | CONFIG_CRYPTO_RNG=y | ||
| 1166 | CONFIG_CRYPTO_RNG2=y | ||
| 1167 | CONFIG_CRYPTO_PCOMP=y | ||
| 1168 | CONFIG_CRYPTO_MANAGER=y | ||
| 1169 | CONFIG_CRYPTO_MANAGER2=y | ||
| 1170 | CONFIG_CRYPTO_GF128MUL=y | ||
| 1171 | # CONFIG_CRYPTO_NULL is not set | ||
| 1172 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1173 | CONFIG_CRYPTO_CRYPTD=y | ||
| 1174 | CONFIG_CRYPTO_AUTHENC=y | ||
| 1175 | # CONFIG_CRYPTO_TEST is not set | ||
| 1176 | |||
| 1177 | # | ||
| 1178 | # Authenticated Encryption with Associated Data | ||
| 1179 | # | ||
| 1180 | CONFIG_CRYPTO_CCM=y | ||
| 1181 | CONFIG_CRYPTO_GCM=y | ||
| 1182 | CONFIG_CRYPTO_SEQIV=y | ||
| 1183 | |||
| 1184 | # | ||
| 1185 | # Block modes | ||
| 1186 | # | ||
| 1187 | CONFIG_CRYPTO_CBC=y | ||
| 1188 | CONFIG_CRYPTO_CTR=y | ||
| 1189 | CONFIG_CRYPTO_CTS=y | ||
| 1190 | CONFIG_CRYPTO_ECB=y | ||
| 1191 | CONFIG_CRYPTO_LRW=y | ||
| 1192 | CONFIG_CRYPTO_PCBC=y | ||
| 1193 | CONFIG_CRYPTO_XTS=y | ||
| 1194 | |||
| 1195 | # | ||
| 1196 | # Hash modes | ||
| 1197 | # | ||
| 1198 | CONFIG_CRYPTO_HMAC=y | ||
| 1199 | CONFIG_CRYPTO_XCBC=y | ||
| 1200 | |||
| 1201 | # | ||
| 1202 | # Digest | ||
| 1203 | # | ||
| 1204 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1205 | CONFIG_CRYPTO_MD4=y | ||
| 1206 | CONFIG_CRYPTO_MD5=y | ||
| 1207 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1208 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1209 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1210 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1211 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1212 | CONFIG_CRYPTO_SHA1=y | ||
| 1213 | CONFIG_CRYPTO_SHA256=y | ||
| 1214 | CONFIG_CRYPTO_SHA512=y | ||
| 1215 | # CONFIG_CRYPTO_TGR192 is not set | ||
| 1216 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1217 | |||
| 1218 | # | ||
| 1219 | # Ciphers | ||
| 1220 | # | ||
| 1221 | CONFIG_CRYPTO_AES=y | ||
| 1222 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1223 | CONFIG_CRYPTO_ARC4=y | ||
| 1224 | CONFIG_CRYPTO_BLOWFISH=y | ||
| 1225 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1226 | # CONFIG_CRYPTO_CAST5 is not set | ||
| 1227 | # CONFIG_CRYPTO_CAST6 is not set | ||
| 1228 | CONFIG_CRYPTO_DES=y | ||
| 1229 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1230 | # CONFIG_CRYPTO_KHAZAD is not set | ||
| 1231 | # CONFIG_CRYPTO_SALSA20 is not set | ||
| 1232 | # CONFIG_CRYPTO_SEED is not set | ||
| 1233 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1234 | # CONFIG_CRYPTO_TEA is not set | ||
| 1235 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1236 | |||
| 1237 | # | ||
| 1238 | # Compression | ||
| 1239 | # | ||
| 1240 | # CONFIG_CRYPTO_DEFLATE is not set | ||
| 1241 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1242 | # CONFIG_CRYPTO_LZO is not set | ||
| 1243 | |||
| 1244 | # | ||
| 1245 | # Random Number Generation | ||
| 1246 | # | ||
| 1247 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | ||
| 1248 | CONFIG_CRYPTO_HW=y | ||
| 1249 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
| 1250 | # CONFIG_CRYPTO_DEV_PPC4XX is not set | ||
| 1251 | # CONFIG_PPC_CLOCK is not set | ||
| 1252 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/platforms/44x/Kconfig b/arch/powerpc/platforms/44x/Kconfig index 90e3192611a4..7486bffd3ebb 100644 --- a/arch/powerpc/platforms/44x/Kconfig +++ b/arch/powerpc/platforms/44x/Kconfig | |||
| @@ -129,6 +129,18 @@ config REDWOOD | |||
| 129 | help | 129 | help |
| 130 | This option enables support for the AMCC PPC460SX Redwood board. | 130 | This option enables support for the AMCC PPC460SX Redwood board. |
| 131 | 131 | ||
| 132 | config EIGER | ||
| 133 | bool "Eiger" | ||
| 134 | depends on 44x | ||
| 135 | default n | ||
| 136 | select PPC44x_SIMPLE | ||
| 137 | select 460SX | ||
| 138 | select PCI | ||
| 139 | select PPC4xx_PCI_EXPRESS | ||
| 140 | select IBM_NEW_EMAC_RGMII | ||
| 141 | help | ||
| 142 | This option enables support for the AMCC PPC460SX evaluation board. | ||
| 143 | |||
| 132 | config YOSEMITE | 144 | config YOSEMITE |
| 133 | bool "Yosemite" | 145 | bool "Yosemite" |
| 134 | depends on 44x | 146 | depends on 44x |
diff --git a/arch/powerpc/platforms/44x/ppc44x_simple.c b/arch/powerpc/platforms/44x/ppc44x_simple.c index 5bcd441885e8..e8c23ccaa1fc 100644 --- a/arch/powerpc/platforms/44x/ppc44x_simple.c +++ b/arch/powerpc/platforms/44x/ppc44x_simple.c | |||
| @@ -55,6 +55,7 @@ static char *board[] __initdata = { | |||
| 55 | "amcc,canyonlands", | 55 | "amcc,canyonlands", |
| 56 | "amcc,glacier", | 56 | "amcc,glacier", |
| 57 | "ibm,ebony", | 57 | "ibm,ebony", |
| 58 | "amcc,eiger", | ||
| 58 | "amcc,katmai", | 59 | "amcc,katmai", |
| 59 | "amcc,rainier", | 60 | "amcc,rainier", |
| 60 | "amcc,redwood", | 61 | "amcc,redwood", |
