diff options
197 files changed, 8990 insertions, 3510 deletions
diff --git a/Documentation/filesystems/nfs-rdma.txt b/Documentation/filesystems/nfs-rdma.txt index 44bd766f2e5d..85eaeaddd27c 100644 --- a/Documentation/filesystems/nfs-rdma.txt +++ b/Documentation/filesystems/nfs-rdma.txt | |||
@@ -251,7 +251,7 @@ NFS/RDMA Setup | |||
251 | 251 | ||
252 | Instruct the server to listen on the RDMA transport: | 252 | Instruct the server to listen on the RDMA transport: |
253 | 253 | ||
254 | $ echo rdma 2050 > /proc/fs/nfsd/portlist | 254 | $ echo rdma 20049 > /proc/fs/nfsd/portlist |
255 | 255 | ||
256 | - On the client system | 256 | - On the client system |
257 | 257 | ||
@@ -263,7 +263,7 @@ NFS/RDMA Setup | |||
263 | Regardless of how the client was built (module or built-in), use this | 263 | Regardless of how the client was built (module or built-in), use this |
264 | command to mount the NFS/RDMA server: | 264 | command to mount the NFS/RDMA server: |
265 | 265 | ||
266 | $ mount -o rdma,port=2050 <IPoIB-server-name-or-address>:/<export> /mnt | 266 | $ mount -o rdma,port=20049 <IPoIB-server-name-or-address>:/<export> /mnt |
267 | 267 | ||
268 | To verify that the mount is using RDMA, run "cat /proc/mounts" and check | 268 | To verify that the mount is using RDMA, run "cat /proc/mounts" and check |
269 | the "proto" field for the given mount. | 269 | the "proto" field for the given mount. |
@@ -1,7 +1,7 @@ | |||
1 | VERSION = 2 | 1 | VERSION = 2 |
2 | PATCHLEVEL = 6 | 2 | PATCHLEVEL = 6 |
3 | SUBLEVEL = 29 | 3 | SUBLEVEL = 29 |
4 | EXTRAVERSION = -rc2 | 4 | EXTRAVERSION = -rc3 |
5 | NAME = Erotic Pickled Herring | 5 | NAME = Erotic Pickled Herring |
6 | 6 | ||
7 | # *DOCUMENTATION* | 7 | # *DOCUMENTATION* |
diff --git a/arch/arm/mach-davinci/usb.c b/arch/arm/mach-davinci/usb.c index c6fb32c36c52..867ead2559ad 100644 --- a/arch/arm/mach-davinci/usb.c +++ b/arch/arm/mach-davinci/usb.c | |||
@@ -77,29 +77,6 @@ static struct platform_device usb_dev = { | |||
77 | .num_resources = ARRAY_SIZE(usb_resources), | 77 | .num_resources = ARRAY_SIZE(usb_resources), |
78 | }; | 78 | }; |
79 | 79 | ||
80 | #ifdef CONFIG_USB_MUSB_OTG | ||
81 | |||
82 | static struct otg_transceiver *xceiv; | ||
83 | |||
84 | struct otg_transceiver *otg_get_transceiver(void) | ||
85 | { | ||
86 | if (xceiv) | ||
87 | get_device(xceiv->dev); | ||
88 | return xceiv; | ||
89 | } | ||
90 | EXPORT_SYMBOL(otg_get_transceiver); | ||
91 | |||
92 | int otg_set_transceiver(struct otg_transceiver *x) | ||
93 | { | ||
94 | if (xceiv && x) | ||
95 | return -EBUSY; | ||
96 | xceiv = x; | ||
97 | return 0; | ||
98 | } | ||
99 | EXPORT_SYMBOL(otg_set_transceiver); | ||
100 | |||
101 | #endif | ||
102 | |||
103 | void __init setup_usb(unsigned mA, unsigned potpgt_msec) | 80 | void __init setup_usb(unsigned mA, unsigned potpgt_msec) |
104 | { | 81 | { |
105 | usb_data.power = mA / 2; | 82 | usb_data.power = mA / 2; |
diff --git a/arch/arm/mach-integrator/clock.h b/arch/arm/mach-integrator/clock.h deleted file mode 100644 index e69de29bb2d1..000000000000 --- a/arch/arm/mach-integrator/clock.h +++ /dev/null | |||
diff --git a/arch/m68k/include/asm/cacheflush_no.h b/arch/m68k/include/asm/cacheflush_no.h index 87e5dc0413b4..c65f00a94553 100644 --- a/arch/m68k/include/asm/cacheflush_no.h +++ b/arch/m68k/include/asm/cacheflush_no.h | |||
@@ -51,13 +51,20 @@ static inline void __flush_cache_all(void) | |||
51 | "movec %%d0,%%CACR\n\t" | 51 | "movec %%d0,%%CACR\n\t" |
52 | : : : "d0", "a0" ); | 52 | : : : "d0", "a0" ); |
53 | #endif /* CONFIG_M5407 */ | 53 | #endif /* CONFIG_M5407 */ |
54 | #if defined(CONFIG_M527x) || defined(CONFIG_M528x) | 54 | #if defined(CONFIG_M523x) || defined(CONFIG_M527x) |
55 | __asm__ __volatile__ ( | ||
56 | "movel #0x81400100, %%d0\n\t" | ||
57 | "movec %%d0, %%CACR\n\t" | ||
58 | "nop\n\t" | ||
59 | : : : "d0" ); | ||
60 | #endif /* CONFIG_M523x || CONFIG_M527x */ | ||
61 | #if defined(CONFIG_M528x) | ||
55 | __asm__ __volatile__ ( | 62 | __asm__ __volatile__ ( |
56 | "movel #0x81000200, %%d0\n\t" | 63 | "movel #0x81000200, %%d0\n\t" |
57 | "movec %%d0, %%CACR\n\t" | 64 | "movec %%d0, %%CACR\n\t" |
58 | "nop\n\t" | 65 | "nop\n\t" |
59 | : : : "d0" ); | 66 | : : : "d0" ); |
60 | #endif /* CONFIG_M527x || CONFIG_M528x */ | 67 | #endif /* CONFIG_M528x */ |
61 | #if defined(CONFIG_M5206) || defined(CONFIG_M5206e) || defined(CONFIG_M5272) | 68 | #if defined(CONFIG_M5206) || defined(CONFIG_M5206e) || defined(CONFIG_M5272) |
62 | __asm__ __volatile__ ( | 69 | __asm__ __volatile__ ( |
63 | "movel #0x81000100, %%d0\n\t" | 70 | "movel #0x81000100, %%d0\n\t" |
diff --git a/arch/m68k/include/asm/dma-mapping_no.h b/arch/m68k/include/asm/dma-mapping_no.h index 6aeab18e58bd..1748f2bca940 100644 --- a/arch/m68k/include/asm/dma-mapping_no.h +++ b/arch/m68k/include/asm/dma-mapping_no.h | |||
@@ -1,10 +1,6 @@ | |||
1 | #ifndef _M68KNOMMU_DMA_MAPPING_H | 1 | #ifndef _M68KNOMMU_DMA_MAPPING_H |
2 | #define _M68KNOMMU_DMA_MAPPING_H | 2 | #define _M68KNOMMU_DMA_MAPPING_H |
3 | 3 | ||
4 | #ifdef CONFIG_PCI | ||
5 | #include <asm-generic/dma-mapping.h> | ||
6 | #else | ||
7 | #include <asm-generic/dma-mapping-broken.h> | 4 | #include <asm-generic/dma-mapping-broken.h> |
8 | #endif | ||
9 | 5 | ||
10 | #endif /* _M68KNOMMU_DMA_MAPPING_H */ | 6 | #endif /* _M68KNOMMU_DMA_MAPPING_H */ |
diff --git a/arch/m68k/include/asm/system_no.h b/arch/m68k/include/asm/system_no.h index 40f49de69821..4496c0aa8379 100644 --- a/arch/m68k/include/asm/system_no.h +++ b/arch/m68k/include/asm/system_no.h | |||
@@ -230,7 +230,7 @@ static inline unsigned long __xchg(unsigned long x, volatile void * ptr, int siz | |||
230 | jmp 0xf0000400; \ | 230 | jmp 0xf0000400; \ |
231 | "); \ | 231 | "); \ |
232 | }) | 232 | }) |
233 | #elif defined(CONFIG_NETtel) || defined(CONFIG_eLIA) || \ | 233 | #elif defined(CONFIG_NETtel) || \ |
234 | defined(CONFIG_SECUREEDGEMP3) || defined(CONFIG_CLEOPATRA) | 234 | defined(CONFIG_SECUREEDGEMP3) || defined(CONFIG_CLEOPATRA) |
235 | #define HARD_RESET_NOW() ({ \ | 235 | #define HARD_RESET_NOW() ({ \ |
236 | asm(" \ | 236 | asm(" \ |
diff --git a/arch/m68knommu/Kconfig b/arch/m68knommu/Kconfig index 76b66feb74df..4beb59dfc6ec 100644 --- a/arch/m68knommu/Kconfig +++ b/arch/m68knommu/Kconfig | |||
@@ -14,6 +14,10 @@ config MMU | |||
14 | bool | 14 | bool |
15 | default n | 15 | default n |
16 | 16 | ||
17 | config NO_DMA | ||
18 | bool | ||
19 | default y | ||
20 | |||
17 | config FPU | 21 | config FPU |
18 | bool | 22 | bool |
19 | default n | 23 | default n |
@@ -398,12 +402,6 @@ config M5307C3 | |||
398 | help | 402 | help |
399 | Support for the Motorola M5307C3 board. | 403 | Support for the Motorola M5307C3 board. |
400 | 404 | ||
401 | config eLIA | ||
402 | bool "Moreton Bay eLIA board support" | ||
403 | depends on M5307 | ||
404 | help | ||
405 | Support for the Moreton Bay eLIA board. | ||
406 | |||
407 | config SECUREEDGEMP3 | 405 | config SECUREEDGEMP3 |
408 | bool "SnapGear SecureEdge/MP3 platform support" | 406 | bool "SnapGear SecureEdge/MP3 platform support" |
409 | depends on M5307 | 407 | depends on M5307 |
@@ -697,25 +695,8 @@ config ISA_DMA_API | |||
697 | depends on !M5272 | 695 | depends on !M5272 |
698 | default y | 696 | default y |
699 | 697 | ||
700 | menu "Bus options (PCI, PCMCIA, EISA, MCA, ISA)" | ||
701 | |||
702 | config PCI | ||
703 | bool "PCI support" | ||
704 | help | ||
705 | Support for PCI bus. | ||
706 | |||
707 | config COMEMPCI | ||
708 | bool "CO-MEM lite PCI controller support" | ||
709 | depends on (M5307 || M5407) | ||
710 | |||
711 | source "drivers/pci/Kconfig" | ||
712 | |||
713 | source "drivers/pcmcia/Kconfig" | 698 | source "drivers/pcmcia/Kconfig" |
714 | 699 | ||
715 | source "drivers/pci/hotplug/Kconfig" | ||
716 | |||
717 | endmenu | ||
718 | |||
719 | menu "Executable file formats" | 700 | menu "Executable file formats" |
720 | 701 | ||
721 | source "fs/Kconfig.binfmt" | 702 | source "fs/Kconfig.binfmt" |
diff --git a/arch/m68knommu/Makefile b/arch/m68knommu/Makefile index b63bbcf874ff..fd0fb303d885 100644 --- a/arch/m68knommu/Makefile +++ b/arch/m68knommu/Makefile | |||
@@ -41,7 +41,6 @@ board-$(CONFIG_M5271EVB) := M5271EVB | |||
41 | board-$(CONFIG_M5275EVB) := M5275EVB | 41 | board-$(CONFIG_M5275EVB) := M5275EVB |
42 | board-$(CONFIG_M5282EVB) := M5282EVB | 42 | board-$(CONFIG_M5282EVB) := M5282EVB |
43 | board-$(CONFIG_ELITE) := eLITE | 43 | board-$(CONFIG_ELITE) := eLITE |
44 | board-$(CONFIG_eLIA) := eLIA | ||
45 | board-$(CONFIG_NETtel) := NETtel | 44 | board-$(CONFIG_NETtel) := NETtel |
46 | board-$(CONFIG_SECUREEDGEMP3) := MP3 | 45 | board-$(CONFIG_SECUREEDGEMP3) := MP3 |
47 | board-$(CONFIG_CLEOPATRA) := CLEOPATRA | 46 | board-$(CONFIG_CLEOPATRA) := CLEOPATRA |
diff --git a/arch/m68knommu/kernel/Makefile b/arch/m68knommu/kernel/Makefile index f0eab3dedb5a..37c3fc074c0a 100644 --- a/arch/m68knommu/kernel/Makefile +++ b/arch/m68knommu/kernel/Makefile | |||
@@ -8,4 +8,3 @@ obj-y += dma.o entry.o init_task.o irq.o m68k_ksyms.o process.o ptrace.o \ | |||
8 | setup.o signal.o syscalltable.o sys_m68k.o time.o traps.o | 8 | setup.o signal.o syscalltable.o sys_m68k.o time.o traps.o |
9 | 9 | ||
10 | obj-$(CONFIG_MODULES) += module.o | 10 | obj-$(CONFIG_MODULES) += module.o |
11 | obj-$(CONFIG_COMEMPCI) += comempci.o | ||
diff --git a/arch/m68knommu/kernel/comempci.c b/arch/m68knommu/kernel/comempci.c deleted file mode 100644 index 0a68b5a85f86..000000000000 --- a/arch/m68knommu/kernel/comempci.c +++ /dev/null | |||
@@ -1,980 +0,0 @@ | |||
1 | /*****************************************************************************/ | ||
2 | |||
3 | /* | ||
4 | * comemlite.c -- PCI access code for embedded CO-MEM Lite PCI controller. | ||
5 | * | ||
6 | * (C) Copyright 1999-2003, Greg Ungerer (gerg@snapgear.com). | ||
7 | * (C) Copyright 2000, Lineo (www.lineo.com) | ||
8 | */ | ||
9 | |||
10 | /*****************************************************************************/ | ||
11 | |||
12 | #include <linux/kernel.h> | ||
13 | #include <linux/types.h> | ||
14 | #include <linux/pci.h> | ||
15 | #include <linux/ptrace.h> | ||
16 | #include <linux/spinlock.h> | ||
17 | #include <linux/interrupt.h> | ||
18 | #include <linux/sched.h> | ||
19 | #include <asm/coldfire.h> | ||
20 | #include <asm/mcfsim.h> | ||
21 | #include <asm/irq.h> | ||
22 | #include <asm/anchor.h> | ||
23 | |||
24 | #ifdef CONFIG_eLIA | ||
25 | #include <asm/elia.h> | ||
26 | #endif | ||
27 | |||
28 | /*****************************************************************************/ | ||
29 | |||
30 | /* | ||
31 | * Debug configuration defines. DEBUGRES sets debugging output for | ||
32 | * the resource allocation phase. DEBUGPCI traces on pcibios_ function | ||
33 | * calls, and DEBUGIO traces all accesses to devices on the PCI bus. | ||
34 | */ | ||
35 | /*#define DEBUGRES 1*/ | ||
36 | /*#define DEBUGPCI 1*/ | ||
37 | /*#define DEBUGIO 1*/ | ||
38 | |||
39 | /*****************************************************************************/ | ||
40 | |||
41 | /* | ||
42 | * PCI markers for bus present and active slots. | ||
43 | */ | ||
44 | int pci_bus_is_present = 0; | ||
45 | unsigned long pci_slotmask = 0; | ||
46 | |||
47 | /* | ||
48 | * We may or may not need to swap the bytes of PCI bus tranfers. | ||
49 | * The endianess is re-roder automatically by the CO-MEM, but it | ||
50 | * will get the wrong byte order for a pure data stream. | ||
51 | */ | ||
52 | #define pci_byteswap 0 | ||
53 | |||
54 | |||
55 | /* | ||
56 | * Resource tracking. The CO-MEM part creates a virtual address | ||
57 | * space that all the PCI devices live in - it is not in any way | ||
58 | * directly mapped into the ColdFire address space. So we can | ||
59 | * really assign any resources we like to devices, as long as | ||
60 | * they do not clash with other PCI devices. | ||
61 | */ | ||
62 | unsigned int pci_iobase = PCIBIOS_MIN_IO; /* Arbitrary start address */ | ||
63 | unsigned int pci_membase = PCIBIOS_MIN_MEM; /* Arbitrary start address */ | ||
64 | |||
65 | #define PCI_MINIO 0x100 /* 256 byte minimum I/O */ | ||
66 | #define PCI_MINMEM 0x00010000 /* 64k minimum chunk */ | ||
67 | |||
68 | /* | ||
69 | * The CO-MEM's shared memory segment is visible inside the PCI | ||
70 | * memory address space. We need to keep track of the address that | ||
71 | * this is mapped at, to setup the bus masters pointers. | ||
72 | */ | ||
73 | unsigned int pci_shmemaddr; | ||
74 | |||
75 | /*****************************************************************************/ | ||
76 | |||
77 | void pci_interrupt(int irq, void *id, struct pt_regs *fp); | ||
78 | |||
79 | /*****************************************************************************/ | ||
80 | |||
81 | /* | ||
82 | * Some platforms have custom ways of reseting the PCI bus. | ||
83 | */ | ||
84 | |||
85 | void pci_resetbus(void) | ||
86 | { | ||
87 | #ifdef CONFIG_eLIA | ||
88 | int i; | ||
89 | |||
90 | #ifdef DEBUGPCI | ||
91 | printk(KERN_DEBUG "pci_resetbus()\n"); | ||
92 | #endif | ||
93 | |||
94 | *((volatile unsigned short *) (MCF_MBAR+MCFSIM_PADDR)) |= eLIA_PCIRESET; | ||
95 | for (i = 0; (i < 1000); i++) { | ||
96 | *((volatile unsigned short *) (MCF_MBAR + MCFSIM_PADAT)) = | ||
97 | (ppdata | eLIA_PCIRESET); | ||
98 | } | ||
99 | |||
100 | |||
101 | *((volatile unsigned short *) (MCF_MBAR + MCFSIM_PADAT)) = ppdata; | ||
102 | #endif | ||
103 | } | ||
104 | |||
105 | /*****************************************************************************/ | ||
106 | |||
107 | int pcibios_assign_resource_slot(int slot) | ||
108 | { | ||
109 | volatile unsigned long *rp; | ||
110 | volatile unsigned char *ip; | ||
111 | unsigned int idsel, addr, val, align, i; | ||
112 | int bar; | ||
113 | |||
114 | #ifdef DEBUGPCI | ||
115 | printk(KERN_INFO "pcibios_assign_resource_slot(slot=%x)\n", slot); | ||
116 | #endif | ||
117 | |||
118 | rp = (volatile unsigned long *) COMEM_BASE; | ||
119 | idsel = COMEM_DA_ADDR(0x1 << (slot + 16)); | ||
120 | |||
121 | /* Try to assign resource to each BAR */ | ||
122 | for (bar = 0; (bar < 6); bar++) { | ||
123 | addr = COMEM_PCIBUS + PCI_BASE_ADDRESS_0 + (bar * 4); | ||
124 | rp[LREG(COMEM_DAHBASE)] = COMEM_DA_CFGRD | idsel; | ||
125 | val = rp[LREG(addr)]; | ||
126 | #ifdef DEBUGRES | ||
127 | printk(KERN_DEBUG "-----------------------------------" | ||
128 | "-------------------------------------\n"); | ||
129 | printk(KERN_DEBUG "BAR[%d]: read=%08x ", bar, val); | ||
130 | #endif | ||
131 | |||
132 | rp[LREG(COMEM_DAHBASE)] = COMEM_DA_CFGWR | idsel; | ||
133 | rp[LREG(addr)] = 0xffffffff; | ||
134 | |||
135 | rp[LREG(COMEM_DAHBASE)] = COMEM_DA_CFGRD | idsel; | ||
136 | val = rp[LREG(addr)]; | ||
137 | #ifdef DEBUGRES | ||
138 | printk(KERN_DEBUG "write=%08x ", val); | ||
139 | #endif | ||
140 | if (val == 0) { | ||
141 | #ifdef DEBUGRES | ||
142 | printk(KERN_DEBUG "\n"); | ||
143 | #endif | ||
144 | continue; | ||
145 | } | ||
146 | |||
147 | /* Determine space required by BAR */ | ||
148 | /* FIXME: this should go backwords from 0x80000000... */ | ||
149 | for (i = 0; (i < 32); i++) { | ||
150 | if ((0x1 << i) & (val & 0xfffffffc)) | ||
151 | break; | ||
152 | } | ||
153 | |||
154 | #ifdef DEBUGRES | ||
155 | printk(KERN_DEBUG "size=%08x(%d)\n", (0x1 << i), i); | ||
156 | #endif | ||
157 | i = 0x1 << i; | ||
158 | |||
159 | /* Assign a resource */ | ||
160 | if (val & PCI_BASE_ADDRESS_SPACE_IO) { | ||
161 | if (i < PCI_MINIO) | ||
162 | i = PCI_MINIO; | ||
163 | #ifdef DEBUGRES | ||
164 | printk(KERN_DEBUG "BAR[%d]: IO size=%08x iobase=%08x\n", | ||
165 | bar, i, pci_iobase); | ||
166 | #endif | ||
167 | if (i > 0xffff) { | ||
168 | /* Invalid size?? */ | ||
169 | val = 0 | PCI_BASE_ADDRESS_SPACE_IO; | ||
170 | #ifdef DEBUGRES | ||
171 | printk(KERN_DEBUG "BAR[%d]: too big for IO??\n", bar); | ||
172 | #endif | ||
173 | } else { | ||
174 | /* Check for un-alignment */ | ||
175 | if ((align = pci_iobase % i)) | ||
176 | pci_iobase += (i - align); | ||
177 | val = pci_iobase | PCI_BASE_ADDRESS_SPACE_IO; | ||
178 | pci_iobase += i; | ||
179 | } | ||
180 | } else { | ||
181 | if (i < PCI_MINMEM) | ||
182 | i = PCI_MINMEM; | ||
183 | #ifdef DEBUGRES | ||
184 | printk(KERN_DEBUG "BAR[%d]: MEMORY size=%08x membase=%08x\n", | ||
185 | bar, i, pci_membase); | ||
186 | #endif | ||
187 | /* Check for un-alignment */ | ||
188 | if ((align = pci_membase % i)) | ||
189 | pci_membase += (i - align); | ||
190 | val = pci_membase | PCI_BASE_ADDRESS_SPACE_MEMORY; | ||
191 | pci_membase += i; | ||
192 | } | ||
193 | |||
194 | /* Write resource back into BAR register */ | ||
195 | rp[LREG(COMEM_DAHBASE)] = COMEM_DA_CFGWR | idsel; | ||
196 | rp[LREG(addr)] = val; | ||
197 | #ifdef DEBUGRES | ||
198 | printk(KERN_DEBUG "BAR[%d]: assigned bar=%08x\n", bar, val); | ||
199 | #endif | ||
200 | } | ||
201 | |||
202 | #ifdef DEBUGRES | ||
203 | printk(KERN_DEBUG "-----------------------------------" | ||
204 | "-------------------------------------\n"); | ||
205 | #endif | ||
206 | |||
207 | /* Assign IRQ if one is wanted... */ | ||
208 | ip = (volatile unsigned char *) (COMEM_BASE + COMEM_PCIBUS); | ||
209 | rp[LREG(COMEM_DAHBASE)] = COMEM_DA_CFGRD | idsel; | ||
210 | |||
211 | addr = (PCI_INTERRUPT_PIN & 0xfc) + (~PCI_INTERRUPT_PIN & 0x03); | ||
212 | if (ip[addr]) { | ||
213 | rp[LREG(COMEM_DAHBASE)] = COMEM_DA_CFGWR | idsel; | ||
214 | addr = (PCI_INTERRUPT_LINE & 0xfc)+(~PCI_INTERRUPT_LINE & 0x03); | ||
215 | ip[addr] = 25; | ||
216 | #ifdef DEBUGRES | ||
217 | printk(KERN_DEBUG "IRQ LINE=25\n"); | ||
218 | #endif | ||
219 | } | ||
220 | |||
221 | return(0); | ||
222 | } | ||
223 | |||
224 | /*****************************************************************************/ | ||
225 | |||
226 | int pcibios_enable_slot(int slot) | ||
227 | { | ||
228 | volatile unsigned long *rp; | ||
229 | volatile unsigned short *wp; | ||
230 | unsigned int idsel, addr; | ||
231 | unsigned short cmd; | ||
232 | |||
233 | #ifdef DEBUGPCI | ||
234 | printk(KERN_DEBUG "pcibios_enbale_slot(slot=%x)\n", slot); | ||
235 | #endif | ||
236 | |||
237 | rp = (volatile unsigned long *) COMEM_BASE; | ||
238 | wp = (volatile unsigned short *) COMEM_BASE; | ||
239 | idsel = COMEM_DA_ADDR(0x1 << (slot + 16)); | ||
240 | |||
241 | /* Get current command settings */ | ||
242 | addr = COMEM_PCIBUS + PCI_COMMAND; | ||
243 | addr = (addr & ~0x3) + (~addr & 0x02); | ||
244 | rp[LREG(COMEM_DAHBASE)] = COMEM_DA_CFGRD | idsel; | ||
245 | cmd = wp[WREG(addr)]; | ||
246 | /*val = ((val & 0xff) << 8) | ((val >> 8) & 0xff);*/ | ||
247 | |||
248 | /* Enable I/O and memory accesses to this device */ | ||
249 | rp[LREG(COMEM_DAHBASE)] = COMEM_DA_CFGWR | idsel; | ||
250 | cmd |= PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER; | ||
251 | wp[WREG(addr)] = cmd; | ||
252 | |||
253 | return(0); | ||
254 | } | ||
255 | |||
256 | /*****************************************************************************/ | ||
257 | |||
258 | void pcibios_assign_resources(void) | ||
259 | { | ||
260 | volatile unsigned long *rp; | ||
261 | unsigned long sel, id; | ||
262 | int slot; | ||
263 | |||
264 | rp = (volatile unsigned long *) COMEM_BASE; | ||
265 | |||
266 | /* | ||
267 | * Do a quick scan of the PCI bus and see what is here. | ||
268 | */ | ||
269 | for (slot = COMEM_MINDEV; (slot <= COMEM_MAXDEV); slot++) { | ||
270 | sel = COMEM_DA_CFGRD | COMEM_DA_ADDR(0x1 << (slot + 16)); | ||
271 | rp[LREG(COMEM_DAHBASE)] = sel; | ||
272 | rp[LREG(COMEM_PCIBUS)] = 0; /* Clear bus */ | ||
273 | id = rp[LREG(COMEM_PCIBUS)]; | ||
274 | if ((id != 0) && ((id & 0xffff0000) != (sel & 0xffff0000))) { | ||
275 | printk(KERN_INFO "PCI: slot=%d id=%08x\n", slot, (int) id); | ||
276 | pci_slotmask |= 0x1 << slot; | ||
277 | pcibios_assign_resource_slot(slot); | ||
278 | pcibios_enable_slot(slot); | ||
279 | } | ||
280 | } | ||
281 | } | ||
282 | |||
283 | /*****************************************************************************/ | ||
284 | |||
285 | int pcibios_init(void) | ||
286 | { | ||
287 | volatile unsigned long *rp; | ||
288 | unsigned long sel, id; | ||
289 | int slot; | ||
290 | |||
291 | #ifdef DEBUGPCI | ||
292 | printk(KERN_DEBUG "pcibios_init()\n"); | ||
293 | #endif | ||
294 | |||
295 | pci_resetbus(); | ||
296 | |||
297 | /* | ||
298 | * Do some sort of basic check to see if the CO-MEM part | ||
299 | * is present... This works ok, but I think we really need | ||
300 | * something better... | ||
301 | */ | ||
302 | rp = (volatile unsigned long *) COMEM_BASE; | ||
303 | if ((rp[LREG(COMEM_LBUSCFG)] & 0xff) != 0x50) { | ||
304 | printk(KERN_INFO "PCI: no PCI bus present\n"); | ||
305 | return(0); | ||
306 | } | ||
307 | |||
308 | #ifdef COMEM_BRIDGEDEV | ||
309 | /* | ||
310 | * Setup the PCI bridge device first. It needs resources too, | ||
311 | * so that bus masters can get to its shared memory. | ||
312 | */ | ||
313 | slot = COMEM_BRIDGEDEV; | ||
314 | sel = COMEM_DA_CFGRD | COMEM_DA_ADDR(0x1 << (slot + 16)); | ||
315 | rp[LREG(COMEM_DAHBASE)] = sel; | ||
316 | rp[LREG(COMEM_PCIBUS)] = 0; /* Clear bus */ | ||
317 | id = rp[LREG(COMEM_PCIBUS)]; | ||
318 | if ((id == 0) || ((id & 0xffff0000) == (sel & 0xffff0000))) { | ||
319 | printk(KERN_INFO "PCI: no PCI bus bridge present\n"); | ||
320 | return(0); | ||
321 | } | ||
322 | |||
323 | printk(KERN_INFO "PCI: bridge device at slot=%d id=%08x\n", slot, (int) id); | ||
324 | pci_slotmask |= 0x1 << slot; | ||
325 | pci_shmemaddr = pci_membase; | ||
326 | pcibios_assign_resource_slot(slot); | ||
327 | pcibios_enable_slot(slot); | ||
328 | #endif | ||
329 | |||
330 | pci_bus_is_present = 1; | ||
331 | |||
332 | /* Get PCI irq for local vectoring */ | ||
333 | if (request_irq(COMEM_IRQ, pci_interrupt, 0, "PCI bridge", NULL)) { | ||
334 | printk(KERN_WARNING "PCI: failed to acquire interrupt %d\n", COMEM_IRQ); | ||
335 | } else { | ||
336 | mcf_autovector(COMEM_IRQ); | ||
337 | } | ||
338 | |||
339 | pcibios_assign_resources(); | ||
340 | |||
341 | return(0); | ||
342 | } | ||
343 | |||
344 | /*****************************************************************************/ | ||
345 | |||
346 | char *pcibios_setup(char *option) | ||
347 | { | ||
348 | /* Nothing for us to handle. */ | ||
349 | return(option); | ||
350 | } | ||
351 | /*****************************************************************************/ | ||
352 | |||
353 | void pcibios_fixup_bus(struct pci_bus *b) | ||
354 | { | ||
355 | } | ||
356 | |||
357 | /*****************************************************************************/ | ||
358 | |||
359 | void pcibios_align_resource(void *data, struct resource *res, | ||
360 | resource_size_t size, resource_size_t align) | ||
361 | { | ||
362 | } | ||
363 | |||
364 | /*****************************************************************************/ | ||
365 | |||
366 | int pcibios_enable_device(struct pci_dev *dev, int mask) | ||
367 | { | ||
368 | int slot; | ||
369 | |||
370 | slot = PCI_SLOT(dev->devfn); | ||
371 | if ((dev->bus == 0) && (pci_slotmask & (1 << slot))) | ||
372 | pcibios_enable_slot(slot); | ||
373 | return(0); | ||
374 | } | ||
375 | |||
376 | /*****************************************************************************/ | ||
377 | |||
378 | /* | ||
379 | * Local routines to interrcept the standard I/O and vector handling | ||
380 | * code. Don't include this 'till now - initialization code above needs | ||
381 | * access to the real code too. | ||
382 | */ | ||
383 | #include <asm/mcfpci.h> | ||
384 | |||
385 | /*****************************************************************************/ | ||
386 | |||
387 | void pci_outb(unsigned char val, unsigned int addr) | ||
388 | { | ||
389 | volatile unsigned long *rp; | ||
390 | volatile unsigned char *bp; | ||
391 | |||
392 | #ifdef DEBUGIO | ||
393 | printk(KERN_DEBUG "pci_outb(val=%02x,addr=%x)\n", val, addr); | ||
394 | #endif | ||
395 | |||
396 | rp = (volatile unsigned long *) COMEM_BASE; | ||
397 | bp = (volatile unsigned char *) COMEM_BASE; | ||
398 | rp[LREG(COMEM_DAHBASE)] = COMEM_DA_IOWR | COMEM_DA_ADDR(addr); | ||
399 | addr = (addr & ~0x3) + (~addr & 0x03); | ||
400 | bp[(COMEM_PCIBUS + COMEM_DA_OFFSET(addr))] = val; | ||
401 | } | ||
402 | |||
403 | /*****************************************************************************/ | ||
404 | |||
405 | void pci_outw(unsigned short val, unsigned int addr) | ||
406 | { | ||
407 | volatile unsigned long *rp; | ||
408 | volatile unsigned short *sp; | ||
409 | |||
410 | #ifdef DEBUGIO | ||
411 | printk(KERN_DEBUG "pci_outw(val=%04x,addr=%x)\n", val, addr); | ||
412 | #endif | ||
413 | |||
414 | rp = (volatile unsigned long *) COMEM_BASE; | ||
415 | sp = (volatile unsigned short *) COMEM_BASE; | ||
416 | rp[LREG(COMEM_DAHBASE)] = COMEM_DA_IOWR | COMEM_DA_ADDR(addr); | ||
417 | addr = (addr & ~0x3) + (~addr & 0x02); | ||
418 | if (pci_byteswap) | ||
419 | val = ((val & 0xff) << 8) | ((val >> 8) & 0xff); | ||
420 | sp[WREG(COMEM_PCIBUS + COMEM_DA_OFFSET(addr))] = val; | ||
421 | } | ||
422 | |||
423 | /*****************************************************************************/ | ||
424 | |||
425 | void pci_outl(unsigned int val, unsigned int addr) | ||
426 | { | ||
427 | volatile unsigned long *rp; | ||
428 | volatile unsigned int *lp; | ||
429 | |||
430 | #ifdef DEBUGIO | ||
431 | printk(KERN_DEBUG "pci_outl(val=%08x,addr=%x)\n", val, addr); | ||
432 | #endif | ||
433 | |||
434 | rp = (volatile unsigned long *) COMEM_BASE; | ||
435 | lp = (volatile unsigned int *) COMEM_BASE; | ||
436 | rp[LREG(COMEM_DAHBASE)] = COMEM_DA_IOWR | COMEM_DA_ADDR(addr); | ||
437 | |||
438 | if (pci_byteswap) | ||
439 | val = (val << 24) | ((val & 0x0000ff00) << 8) | | ||
440 | ((val & 0x00ff0000) >> 8) | (val >> 24); | ||
441 | |||
442 | lp[LREG(COMEM_PCIBUS + COMEM_DA_OFFSET(addr))] = val; | ||
443 | } | ||
444 | |||
445 | /*****************************************************************************/ | ||
446 | |||
447 | unsigned long pci_blmask[] = { | ||
448 | 0x000000e0, | ||
449 | 0x000000d0, | ||
450 | 0x000000b0, | ||
451 | 0x00000070 | ||
452 | }; | ||
453 | |||
454 | unsigned char pci_inb(unsigned int addr) | ||
455 | { | ||
456 | volatile unsigned long *rp; | ||
457 | volatile unsigned char *bp; | ||
458 | unsigned long r; | ||
459 | unsigned char val; | ||
460 | |||
461 | #ifdef DEBUGIO | ||
462 | printk(KERN_DEBUG "pci_inb(addr=%x)\n", addr); | ||
463 | #endif | ||
464 | |||
465 | rp = (volatile unsigned long *) COMEM_BASE; | ||
466 | bp = (volatile unsigned char *) COMEM_BASE; | ||
467 | |||
468 | r = COMEM_DA_IORD | COMEM_DA_ADDR(addr) | pci_blmask[(addr & 0x3)]; | ||
469 | rp[LREG(COMEM_DAHBASE)] = r; | ||
470 | |||
471 | addr = (addr & ~0x3) + (~addr & 0x3); | ||
472 | val = bp[(COMEM_PCIBUS + COMEM_DA_OFFSET(addr))]; | ||
473 | return(val); | ||
474 | } | ||
475 | |||
476 | /*****************************************************************************/ | ||
477 | |||
478 | unsigned long pci_bwmask[] = { | ||
479 | 0x000000c0, | ||
480 | 0x000000c0, | ||
481 | 0x00000030, | ||
482 | 0x00000030 | ||
483 | }; | ||
484 | |||
485 | unsigned short pci_inw(unsigned int addr) | ||
486 | { | ||
487 | volatile unsigned long *rp; | ||
488 | volatile unsigned short *sp; | ||
489 | unsigned long r; | ||
490 | unsigned short val; | ||
491 | |||
492 | #ifdef DEBUGIO | ||
493 | printk(KERN_DEBUG "pci_inw(addr=%x)", addr); | ||
494 | #endif | ||
495 | |||
496 | rp = (volatile unsigned long *) COMEM_BASE; | ||
497 | r = COMEM_DA_IORD | COMEM_DA_ADDR(addr) | pci_bwmask[(addr & 0x3)]; | ||
498 | rp[LREG(COMEM_DAHBASE)] = r; | ||
499 | |||
500 | sp = (volatile unsigned short *) COMEM_BASE; | ||
501 | addr = (addr & ~0x3) + (~addr & 0x02); | ||
502 | val = sp[WREG(COMEM_PCIBUS + COMEM_DA_OFFSET(addr))]; | ||
503 | if (pci_byteswap) | ||
504 | val = ((val & 0xff) << 8) | ((val >> 8) & 0xff); | ||
505 | #ifdef DEBUGIO | ||
506 | printk(KERN_DEBUG "=%04x\n", val); | ||
507 | #endif | ||
508 | return(val); | ||
509 | } | ||
510 | |||
511 | /*****************************************************************************/ | ||
512 | |||
513 | unsigned int pci_inl(unsigned int addr) | ||
514 | { | ||
515 | volatile unsigned long *rp; | ||
516 | volatile unsigned int *lp; | ||
517 | unsigned int val; | ||
518 | |||
519 | #ifdef DEBUGIO | ||
520 | printk(KERN_DEBUG "pci_inl(addr=%x)", addr); | ||
521 | #endif | ||
522 | |||
523 | rp = (volatile unsigned long *) COMEM_BASE; | ||
524 | lp = (volatile unsigned int *) COMEM_BASE; | ||
525 | rp[LREG(COMEM_DAHBASE)] = COMEM_DA_IORD | COMEM_DA_ADDR(addr); | ||
526 | val = lp[LREG(COMEM_PCIBUS + COMEM_DA_OFFSET(addr))]; | ||
527 | |||
528 | if (pci_byteswap) | ||
529 | val = (val << 24) | ((val & 0x0000ff00) << 8) | | ||
530 | ((val & 0x00ff0000) >> 8) | (val >> 24); | ||
531 | |||
532 | #ifdef DEBUGIO | ||
533 | printk(KERN_DEBUG "=%08x\n", val); | ||
534 | #endif | ||
535 | return(val); | ||
536 | } | ||
537 | |||
538 | /*****************************************************************************/ | ||
539 | |||
540 | void pci_outsb(void *addr, void *buf, int len) | ||
541 | { | ||
542 | volatile unsigned long *rp; | ||
543 | volatile unsigned char *bp; | ||
544 | unsigned char *dp = (unsigned char *) buf; | ||
545 | unsigned int a = (unsigned int) addr; | ||
546 | |||
547 | #ifdef DEBUGIO | ||
548 | printk(KERN_DEBUG "pci_outsb(addr=%x,buf=%x,len=%d)\n", (int)addr, (int)buf, len); | ||
549 | #endif | ||
550 | |||
551 | rp = (volatile unsigned long *) COMEM_BASE; | ||
552 | rp[LREG(COMEM_DAHBASE)] = COMEM_DA_IOWR | COMEM_DA_ADDR(a); | ||
553 | |||
554 | a = (a & ~0x3) + (~a & 0x03); | ||
555 | bp = (volatile unsigned char *) | ||
556 | (COMEM_BASE + COMEM_PCIBUS + COMEM_DA_OFFSET(a)); | ||
557 | |||
558 | while (len--) | ||
559 | *bp = *dp++; | ||
560 | } | ||
561 | |||
562 | /*****************************************************************************/ | ||
563 | |||
564 | void pci_outsw(void *addr, void *buf, int len) | ||
565 | { | ||
566 | volatile unsigned long *rp; | ||
567 | volatile unsigned short *wp; | ||
568 | unsigned short w, *dp = (unsigned short *) buf; | ||
569 | unsigned int a = (unsigned int) addr; | ||
570 | |||
571 | #ifdef DEBUGIO | ||
572 | printk(KERN_DEBUG "pci_outsw(addr=%x,buf=%x,len=%d)\n", (int)addr, (int)buf, len); | ||
573 | #endif | ||
574 | |||
575 | rp = (volatile unsigned long *) COMEM_BASE; | ||
576 | rp[LREG(COMEM_DAHBASE)] = COMEM_DA_IOWR | COMEM_DA_ADDR(a); | ||
577 | |||
578 | a = (a & ~0x3) + (~a & 0x2); | ||
579 | wp = (volatile unsigned short *) | ||
580 | (COMEM_BASE + COMEM_PCIBUS + COMEM_DA_OFFSET(a)); | ||
581 | |||
582 | while (len--) { | ||
583 | w = *dp++; | ||
584 | if (pci_byteswap) | ||
585 | w = ((w & 0xff) << 8) | ((w >> 8) & 0xff); | ||
586 | *wp = w; | ||
587 | } | ||
588 | } | ||
589 | |||
590 | /*****************************************************************************/ | ||
591 | |||
592 | void pci_outsl(void *addr, void *buf, int len) | ||
593 | { | ||
594 | volatile unsigned long *rp; | ||
595 | volatile unsigned long *lp; | ||
596 | unsigned long l, *dp = (unsigned long *) buf; | ||
597 | unsigned int a = (unsigned int) addr; | ||
598 | |||
599 | #ifdef DEBUGIO | ||
600 | printk(KERN_DEBUG "pci_outsl(addr=%x,buf=%x,len=%d)\n", (int)addr, (int)buf, len); | ||
601 | #endif | ||
602 | |||
603 | rp = (volatile unsigned long *) COMEM_BASE; | ||
604 | rp[LREG(COMEM_DAHBASE)] = COMEM_DA_IOWR | COMEM_DA_ADDR(a); | ||
605 | |||
606 | lp = (volatile unsigned long *) | ||
607 | (COMEM_BASE + COMEM_PCIBUS + COMEM_DA_OFFSET(a)); | ||
608 | |||
609 | while (len--) { | ||
610 | l = *dp++; | ||
611 | if (pci_byteswap) | ||
612 | l = (l << 24) | ((l & 0x0000ff00) << 8) | | ||
613 | ((l & 0x00ff0000) >> 8) | (l >> 24); | ||
614 | *lp = l; | ||
615 | } | ||
616 | } | ||
617 | |||
618 | /*****************************************************************************/ | ||
619 | |||
620 | void pci_insb(void *addr, void *buf, int len) | ||
621 | { | ||
622 | volatile unsigned long *rp; | ||
623 | volatile unsigned char *bp; | ||
624 | unsigned char *dp = (unsigned char *) buf; | ||
625 | unsigned int a = (unsigned int) addr; | ||
626 | |||
627 | #ifdef DEBUGIO | ||
628 | printk(KERN_DEBUG "pci_insb(addr=%x,buf=%x,len=%d)\n", (int)addr, (int)buf, len); | ||
629 | #endif | ||
630 | |||
631 | rp = (volatile unsigned long *) COMEM_BASE; | ||
632 | rp[LREG(COMEM_DAHBASE)] = COMEM_DA_IORD | COMEM_DA_ADDR(a); | ||
633 | |||
634 | a = (a & ~0x3) + (~a & 0x03); | ||
635 | bp = (volatile unsigned char *) | ||
636 | (COMEM_BASE + COMEM_PCIBUS + COMEM_DA_OFFSET(a)); | ||
637 | |||
638 | while (len--) | ||
639 | *dp++ = *bp; | ||
640 | } | ||
641 | |||
642 | /*****************************************************************************/ | ||
643 | |||
644 | void pci_insw(void *addr, void *buf, int len) | ||
645 | { | ||
646 | volatile unsigned long *rp; | ||
647 | volatile unsigned short *wp; | ||
648 | unsigned short w, *dp = (unsigned short *) buf; | ||
649 | unsigned int a = (unsigned int) addr; | ||
650 | |||
651 | #ifdef DEBUGIO | ||
652 | printk(KERN_DEBUG "pci_insw(addr=%x,buf=%x,len=%d)\n", (int)addr, (int)buf, len); | ||
653 | #endif | ||
654 | |||
655 | rp = (volatile unsigned long *) COMEM_BASE; | ||
656 | rp[LREG(COMEM_DAHBASE)] = COMEM_DA_IORD | COMEM_DA_ADDR(a); | ||
657 | |||
658 | a = (a & ~0x3) + (~a & 0x2); | ||
659 | wp = (volatile unsigned short *) | ||
660 | (COMEM_BASE + COMEM_PCIBUS + COMEM_DA_OFFSET(a)); | ||
661 | |||
662 | while (len--) { | ||
663 | w = *wp; | ||
664 | if (pci_byteswap) | ||
665 | w = ((w & 0xff) << 8) | ((w >> 8) & 0xff); | ||
666 | *dp++ = w; | ||
667 | } | ||
668 | } | ||
669 | |||
670 | /*****************************************************************************/ | ||
671 | |||
672 | void pci_insl(void *addr, void *buf, int len) | ||
673 | { | ||
674 | volatile unsigned long *rp; | ||
675 | volatile unsigned long *lp; | ||
676 | unsigned long l, *dp = (unsigned long *) buf; | ||
677 | unsigned int a = (unsigned int) addr; | ||
678 | |||
679 | #ifdef DEBUGIO | ||
680 | printk(KERN_DEBUG "pci_insl(addr=%x,buf=%x,len=%d)\n", (int)addr, (int)buf, len); | ||
681 | #endif | ||
682 | |||
683 | rp = (volatile unsigned long *) COMEM_BASE; | ||
684 | rp[LREG(COMEM_DAHBASE)] = COMEM_DA_IORD | COMEM_DA_ADDR(a); | ||
685 | |||
686 | lp = (volatile unsigned long *) | ||
687 | (COMEM_BASE + COMEM_PCIBUS + COMEM_DA_OFFSET(a)); | ||
688 | |||
689 | while (len--) { | ||
690 | l = *lp; | ||
691 | if (pci_byteswap) | ||
692 | l = (l << 24) | ((l & 0x0000ff00) << 8) | | ||
693 | ((l & 0x00ff0000) >> 8) | (l >> 24); | ||
694 | *dp++ = l; | ||
695 | } | ||
696 | } | ||
697 | |||
698 | /*****************************************************************************/ | ||
699 | |||
700 | struct pci_localirqlist { | ||
701 | void (*handler)(int, void *, struct pt_regs *); | ||
702 | const char *device; | ||
703 | void *dev_id; | ||
704 | }; | ||
705 | |||
706 | struct pci_localirqlist pci_irqlist[COMEM_MAXPCI]; | ||
707 | |||
708 | /*****************************************************************************/ | ||
709 | |||
710 | int pci_request_irq(unsigned int irq, | ||
711 | void (*handler)(int, void *, struct pt_regs *), | ||
712 | unsigned long flags, const char *device, void *dev_id) | ||
713 | { | ||
714 | int i; | ||
715 | |||
716 | #ifdef DEBUGIO | ||
717 | printk(KERN_DEBUG "pci_request_irq(irq=%d,handler=%x,flags=%x,device=%s," | ||
718 | "dev_id=%x)\n", irq, (int) handler, (int) flags, device, | ||
719 | (int) dev_id); | ||
720 | #endif | ||
721 | |||
722 | /* Check if this interrupt handler is already lodged */ | ||
723 | for (i = 0; (i < COMEM_MAXPCI); i++) { | ||
724 | if (pci_irqlist[i].handler == handler) | ||
725 | return(0); | ||
726 | } | ||
727 | |||
728 | /* Find a free spot to put this handler */ | ||
729 | for (i = 0; (i < COMEM_MAXPCI); i++) { | ||
730 | if (pci_irqlist[i].handler == 0) { | ||
731 | pci_irqlist[i].handler = handler; | ||
732 | pci_irqlist[i].device = device; | ||
733 | pci_irqlist[i].dev_id = dev_id; | ||
734 | return(0); | ||
735 | } | ||
736 | } | ||
737 | |||
738 | /* Couldn't fit?? */ | ||
739 | return(1); | ||
740 | } | ||
741 | |||
742 | /*****************************************************************************/ | ||
743 | |||
744 | void pci_free_irq(unsigned int irq, void *dev_id) | ||
745 | { | ||
746 | int i; | ||
747 | |||
748 | #ifdef DEBUGIO | ||
749 | printk(KERN_DEBUG "pci_free_irq(irq=%d,dev_id=%x)\n", irq, (int) dev_id); | ||
750 | #endif | ||
751 | |||
752 | if (dev_id == (void *) NULL) | ||
753 | return; | ||
754 | |||
755 | /* Check if this interrupt handler is lodged */ | ||
756 | for (i = 0; (i < COMEM_MAXPCI); i++) { | ||
757 | if (pci_irqlist[i].dev_id == dev_id) { | ||
758 | pci_irqlist[i].handler = NULL; | ||
759 | pci_irqlist[i].device = NULL; | ||
760 | pci_irqlist[i].dev_id = NULL; | ||
761 | break; | ||
762 | } | ||
763 | } | ||
764 | } | ||
765 | |||
766 | /*****************************************************************************/ | ||
767 | |||
768 | void pci_interrupt(int irq, void *id, struct pt_regs *fp) | ||
769 | { | ||
770 | int i; | ||
771 | |||
772 | #ifdef DEBUGIO | ||
773 | printk(KERN_DEBUG "pci_interrupt(irq=%d,id=%x,fp=%x)\n", irq, (int) id, (int) fp); | ||
774 | #endif | ||
775 | |||
776 | for (i = 0; (i < COMEM_MAXPCI); i++) { | ||
777 | if (pci_irqlist[i].handler) | ||
778 | (*pci_irqlist[i].handler)(irq,pci_irqlist[i].dev_id,fp); | ||
779 | } | ||
780 | } | ||
781 | |||
782 | /*****************************************************************************/ | ||
783 | |||
784 | /* | ||
785 | * The shared memory region is broken up into contiguous 512 byte | ||
786 | * regions for easy allocation... This is not an optimal solution | ||
787 | * but it makes allocation and freeing regions really easy. | ||
788 | */ | ||
789 | |||
790 | #define PCI_MEMSLOTSIZE 512 | ||
791 | #define PCI_MEMSLOTS (COMEM_SHMEMSIZE / PCI_MEMSLOTSIZE) | ||
792 | |||
793 | char pci_shmemmap[PCI_MEMSLOTS]; | ||
794 | |||
795 | |||
796 | void *pci_bmalloc(int size) | ||
797 | { | ||
798 | int i, j, nrslots; | ||
799 | |||
800 | #ifdef DEBUGIO | ||
801 | printk(KERN_DEBUG "pci_bmalloc(size=%d)\n", size); | ||
802 | #endif | ||
803 | |||
804 | if (size <= 0) | ||
805 | return((void *) NULL); | ||
806 | |||
807 | nrslots = (size - 1) / PCI_MEMSLOTSIZE; | ||
808 | |||
809 | for (i = 0; (i < (PCI_MEMSLOTS-nrslots)); i++) { | ||
810 | if (pci_shmemmap[i] == 0) { | ||
811 | for (j = i+1; (j < (i+nrslots)); j++) { | ||
812 | if (pci_shmemmap[j]) | ||
813 | goto restart; | ||
814 | } | ||
815 | |||
816 | for (j = i; (j <= i+nrslots); j++) | ||
817 | pci_shmemmap[j] = 1; | ||
818 | break; | ||
819 | } | ||
820 | restart: | ||
821 | } | ||
822 | |||
823 | return((void *) (COMEM_BASE + COMEM_SHMEM + (i * PCI_MEMSLOTSIZE))); | ||
824 | } | ||
825 | |||
826 | /*****************************************************************************/ | ||
827 | |||
828 | void pci_bmfree(void *mp, int size) | ||
829 | { | ||
830 | int i, j, nrslots; | ||
831 | |||
832 | #ifdef DEBUGIO | ||
833 | printk(KERN_DEBUG "pci_bmfree(mp=%x,size=%d)\n", (int) mp, size); | ||
834 | #endif | ||
835 | |||
836 | nrslots = size / PCI_MEMSLOTSIZE; | ||
837 | i = (((unsigned long) mp) - (COMEM_BASE + COMEM_SHMEM)) / | ||
838 | PCI_MEMSLOTSIZE; | ||
839 | |||
840 | for (j = i; (j < (i+nrslots)); j++) | ||
841 | pci_shmemmap[j] = 0; | ||
842 | } | ||
843 | |||
844 | /*****************************************************************************/ | ||
845 | |||
846 | unsigned long pci_virt_to_bus(volatile void *address) | ||
847 | { | ||
848 | unsigned long l; | ||
849 | |||
850 | #ifdef DEBUGIO | ||
851 | printk(KERN_DEBUG "pci_virt_to_bus(address=%x)", (int) address); | ||
852 | #endif | ||
853 | |||
854 | l = ((unsigned long) address) - COMEM_BASE; | ||
855 | #ifdef DEBUGIO | ||
856 | printk(KERN_DEBUG "=%x\n", (int) (l+pci_shmemaddr)); | ||
857 | #endif | ||
858 | return(l + pci_shmemaddr); | ||
859 | } | ||
860 | |||
861 | /*****************************************************************************/ | ||
862 | |||
863 | void *pci_bus_to_virt(unsigned long address) | ||
864 | { | ||
865 | unsigned long l; | ||
866 | |||
867 | #ifdef DEBUGIO | ||
868 | printk(KERN_DEBUG "pci_bus_to_virt(address=%x)", (int) address); | ||
869 | #endif | ||
870 | |||
871 | l = address - pci_shmemaddr; | ||
872 | #ifdef DEBUGIO | ||
873 | printk(KERN_DEBUG "=%x\n", (int) (address + COMEM_BASE)); | ||
874 | #endif | ||
875 | return((void *) (address + COMEM_BASE)); | ||
876 | } | ||
877 | |||
878 | /*****************************************************************************/ | ||
879 | |||
880 | void pci_bmcpyto(void *dst, void *src, int len) | ||
881 | { | ||
882 | unsigned long *dp, *sp, val; | ||
883 | unsigned char *dcp, *scp; | ||
884 | int i, j; | ||
885 | |||
886 | #ifdef DEBUGIO | ||
887 | printk(KERN_DEBUG "pci_bmcpyto(dst=%x,src=%x,len=%d)\n", (int)dst, (int)src, len); | ||
888 | #endif | ||
889 | |||
890 | dp = (unsigned long *) dst; | ||
891 | sp = (unsigned long *) src; | ||
892 | i = len >> 2; | ||
893 | |||
894 | #if 0 | ||
895 | printk(KERN_INFO "DATA:"); | ||
896 | scp = (unsigned char *) sp; | ||
897 | for (i = 0; (i < len); i++) { | ||
898 | if ((i % 16) == 0) printk(KERN_INFO "\n%04x: ", i); | ||
899 | printk(KERN_INFO "%02x ", *scp++); | ||
900 | } | ||
901 | printk(KERN_INFO "\n"); | ||
902 | #endif | ||
903 | |||
904 | for (j = 0; (i >= 0); i--, j++) { | ||
905 | val = *sp++; | ||
906 | val = (val << 24) | ((val & 0x0000ff00) << 8) | | ||
907 | ((val & 0x00ff0000) >> 8) | (val >> 24); | ||
908 | *dp++ = val; | ||
909 | } | ||
910 | |||
911 | if (len & 0x3) { | ||
912 | dcp = (unsigned char *) dp; | ||
913 | scp = ((unsigned char *) sp) + 3; | ||
914 | for (i = 0; (i < (len & 0x3)); i++) | ||
915 | *dcp++ = *scp--; | ||
916 | } | ||
917 | } | ||
918 | |||
919 | /*****************************************************************************/ | ||
920 | |||
921 | void pci_bmcpyfrom(void *dst, void *src, int len) | ||
922 | { | ||
923 | unsigned long *dp, *sp, val; | ||
924 | unsigned char *dcp, *scp; | ||
925 | int i; | ||
926 | |||
927 | #ifdef DEBUGIO | ||
928 | printk(KERN_DEBUG "pci_bmcpyfrom(dst=%x,src=%x,len=%d)\n",(int)dst,(int)src,len); | ||
929 | #endif | ||
930 | |||
931 | dp = (unsigned long *) dst; | ||
932 | sp = (unsigned long *) src; | ||
933 | i = len >> 2; | ||
934 | |||
935 | for (; (i >= 0); i--) { | ||
936 | val = *sp++; | ||
937 | val = (val << 24) | ((val & 0x0000ff00) << 8) | | ||
938 | ((val & 0x00ff0000) >> 8) | (val >> 24); | ||
939 | *dp++ = val; | ||
940 | } | ||
941 | |||
942 | if (len & 0x3) { | ||
943 | dcp = ((unsigned char *) dp) + 3; | ||
944 | scp = (unsigned char *) sp; | ||
945 | for (i = 0; (i < (len & 0x3)); i++) | ||
946 | *dcp++ = *scp--; | ||
947 | } | ||
948 | |||
949 | #if 0 | ||
950 | printk(KERN_INFO "DATA:"); | ||
951 | dcp = (unsigned char *) dst; | ||
952 | for (i = 0; (i < len); i++) { | ||
953 | if ((i % 16) == 0) printk(KERN_INFO "\n%04x: ", i); | ||
954 | printk(KERN_INFO "%02x ", *dcp++); | ||
955 | } | ||
956 | printk(KERN_INFO "\n"); | ||
957 | #endif | ||
958 | } | ||
959 | |||
960 | /*****************************************************************************/ | ||
961 | |||
962 | void *pci_alloc_consistent(struct pci_dev *dev, size_t size, dma_addr_t *dma_addr) | ||
963 | { | ||
964 | void *mp; | ||
965 | if ((mp = pci_bmalloc(size)) != NULL) { | ||
966 | dma_addr = mp - (COMEM_BASE + COMEM_SHMEM); | ||
967 | return(mp); | ||
968 | } | ||
969 | *dma_addr = (dma_addr_t) NULL; | ||
970 | return(NULL); | ||
971 | } | ||
972 | |||
973 | /*****************************************************************************/ | ||
974 | |||
975 | void pci_free_consistent(struct pci_dev *dev, size_t size, void *cpu_addr, dma_addr_t dma_addr) | ||
976 | { | ||
977 | pci_bmfree(cpu_addr, size); | ||
978 | } | ||
979 | |||
980 | /*****************************************************************************/ | ||
diff --git a/arch/m68knommu/kernel/signal.c b/arch/m68knommu/kernel/signal.c index bbfcae9e52b4..5ab6a04af14e 100644 --- a/arch/m68knommu/kernel/signal.c +++ b/arch/m68knommu/kernel/signal.c | |||
@@ -279,6 +279,9 @@ restore_sigcontext(struct pt_regs *regs, struct sigcontext *usc, void *fp, | |||
279 | struct sigcontext context; | 279 | struct sigcontext context; |
280 | int err = 0; | 280 | int err = 0; |
281 | 281 | ||
282 | /* Always make any pending restarted system calls return -EINTR */ | ||
283 | current_thread_info()->restart_block.fn = do_no_restart_syscall; | ||
284 | |||
282 | /* get previous context */ | 285 | /* get previous context */ |
283 | if (copy_from_user(&context, usc, sizeof(context))) | 286 | if (copy_from_user(&context, usc, sizeof(context))) |
284 | goto badframe; | 287 | goto badframe; |
@@ -316,6 +319,9 @@ rt_restore_ucontext(struct pt_regs *regs, struct switch_stack *sw, | |||
316 | unsigned long usp; | 319 | unsigned long usp; |
317 | int err; | 320 | int err; |
318 | 321 | ||
322 | /* Always make any pending restarted system calls return -EINTR */ | ||
323 | current_thread_info()->restart_block.fn = do_no_restart_syscall; | ||
324 | |||
319 | err = __get_user(temp, &uc->uc_mcontext.version); | 325 | err = __get_user(temp, &uc->uc_mcontext.version); |
320 | if (temp != MCONTEXT_VERSION) | 326 | if (temp != MCONTEXT_VERSION) |
321 | goto badframe; | 327 | goto badframe; |
@@ -692,6 +698,15 @@ handle_restart(struct pt_regs *regs, struct k_sigaction *ka, int has_handler) | |||
692 | regs->d0 = -EINTR; | 698 | regs->d0 = -EINTR; |
693 | break; | 699 | break; |
694 | 700 | ||
701 | case -ERESTART_RESTARTBLOCK: | ||
702 | if (!has_handler) { | ||
703 | regs->d0 = __NR_restart_syscall; | ||
704 | regs->pc -= 2; | ||
705 | break; | ||
706 | } | ||
707 | regs->d0 = -EINTR; | ||
708 | break; | ||
709 | |||
695 | case -ERESTARTSYS: | 710 | case -ERESTARTSYS: |
696 | if (has_handler && !(ka->sa.sa_flags & SA_RESTART)) { | 711 | if (has_handler && !(ka->sa.sa_flags & SA_RESTART)) { |
697 | regs->d0 = -EINTR; | 712 | regs->d0 = -EINTR; |
diff --git a/arch/m68knommu/kernel/syscalltable.S b/arch/m68knommu/kernel/syscalltable.S index 5c3e3f62194a..1017e76f3711 100644 --- a/arch/m68knommu/kernel/syscalltable.S +++ b/arch/m68knommu/kernel/syscalltable.S | |||
@@ -18,7 +18,7 @@ | |||
18 | .text | 18 | .text |
19 | ALIGN | 19 | ALIGN |
20 | ENTRY(sys_call_table) | 20 | ENTRY(sys_call_table) |
21 | .long sys_ni_syscall /* 0 - old "setup()" system call*/ | 21 | .long sys_restart_syscall /* 0 - old "setup()" system call */ |
22 | .long sys_exit | 22 | .long sys_exit |
23 | .long sys_fork | 23 | .long sys_fork |
24 | .long sys_read | 24 | .long sys_read |
diff --git a/arch/m68knommu/platform/5307/config.c b/arch/m68knommu/platform/5307/config.c index 11cff6625dcc..724faf05852a 100644 --- a/arch/m68knommu/platform/5307/config.c +++ b/arch/m68knommu/platform/5307/config.c | |||
@@ -123,7 +123,7 @@ void __init config_BSP(char *commandp, int size) | |||
123 | { | 123 | { |
124 | mcf_setimr(MCFSIM_IMR_MASKALL); | 124 | mcf_setimr(MCFSIM_IMR_MASKALL); |
125 | 125 | ||
126 | #if defined(CONFIG_NETtel) || defined(CONFIG_eLIA) || \ | 126 | #if defined(CONFIG_NETtel) || \ |
127 | defined(CONFIG_SECUREEDGEMP3) || defined(CONFIG_CLEOPATRA) | 127 | defined(CONFIG_SECUREEDGEMP3) || defined(CONFIG_CLEOPATRA) |
128 | /* Copy command line from FLASH to local buffer... */ | 128 | /* Copy command line from FLASH to local buffer... */ |
129 | memcpy(commandp, (char *) 0xf0004000, size); | 129 | memcpy(commandp, (char *) 0xf0004000, size); |
diff --git a/arch/m68knommu/platform/532x/config.c b/arch/m68knommu/platform/532x/config.c index 4f44b632045b..a347623d6ee6 100644 --- a/arch/m68knommu/platform/532x/config.c +++ b/arch/m68knommu/platform/532x/config.c | |||
@@ -41,15 +41,15 @@ extern unsigned int mcf_timerlevel; | |||
41 | 41 | ||
42 | static struct mcf_platform_uart m532x_uart_platform[] = { | 42 | static struct mcf_platform_uart m532x_uart_platform[] = { |
43 | { | 43 | { |
44 | .mapbase = MCF_MBAR + MCFUART_BASE1, | 44 | .mapbase = MCFUART_BASE1, |
45 | .irq = MCFINT_VECBASE + MCFINT_UART0, | 45 | .irq = MCFINT_VECBASE + MCFINT_UART0, |
46 | }, | 46 | }, |
47 | { | 47 | { |
48 | .mapbase = MCF_MBAR + MCFUART_BASE2, | 48 | .mapbase = MCFUART_BASE2, |
49 | .irq = MCFINT_VECBASE + MCFINT_UART1, | 49 | .irq = MCFINT_VECBASE + MCFINT_UART1, |
50 | }, | 50 | }, |
51 | { | 51 | { |
52 | .mapbase = MCF_MBAR + MCFUART_BASE3, | 52 | .mapbase = MCFUART_BASE3, |
53 | .irq = MCFINT_VECBASE + MCFINT_UART2, | 53 | .irq = MCFINT_VECBASE + MCFINT_UART2, |
54 | }, | 54 | }, |
55 | { }, | 55 | { }, |
@@ -108,7 +108,7 @@ void mcf_settimericr(unsigned int timer, unsigned int level) | |||
108 | default: irq = 32; icr = MCFSIM_ICR_TIMER1; break; | 108 | default: irq = 32; icr = MCFSIM_ICR_TIMER1; break; |
109 | } | 109 | } |
110 | 110 | ||
111 | icrp = (volatile unsigned char *) (MCF_MBAR + icr); | 111 | icrp = (volatile unsigned char *) (icr); |
112 | *icrp = level; | 112 | *icrp = level; |
113 | mcf_enable_irq0(irq); | 113 | mcf_enable_irq0(irq); |
114 | } | 114 | } |
diff --git a/arch/m68knommu/platform/coldfire/entry.S b/arch/m68knommu/platform/coldfire/entry.S index 1e3c0dcbd7ac..3b471c0da24a 100644 --- a/arch/m68knommu/platform/coldfire/entry.S +++ b/arch/m68knommu/platform/coldfire/entry.S | |||
@@ -215,19 +215,8 @@ ENTRY(fasthandler) | |||
215 | RESTORE_LOCAL | 215 | RESTORE_LOCAL |
216 | 216 | ||
217 | ENTRY(ret_from_interrupt) | 217 | ENTRY(ret_from_interrupt) |
218 | moveb %sp@(PT_SR),%d0 | 218 | /* the fasthandler is confusing me, haven't seen any user */ |
219 | andl #0x7,%d0 | 219 | jmp ret_from_exception |
220 | jeq 1f | ||
221 | |||
222 | RESTORE_ALL | ||
223 | |||
224 | 1: | ||
225 | /* check if we need to do software interrupts */ | ||
226 | movel irq_stat+CPUSTAT_SOFTIRQ_PENDING,%d0 | ||
227 | jeq ret_from_exception | ||
228 | |||
229 | pea ret_from_exception | ||
230 | jmp do_softirq | ||
231 | 220 | ||
232 | /* | 221 | /* |
233 | * Beware - when entering resume, prev (the current task) is | 222 | * Beware - when entering resume, prev (the current task) is |
diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig index e39b73bc0ff8..74cc312c347c 100644 --- a/arch/powerpc/Kconfig +++ b/arch/powerpc/Kconfig | |||
@@ -876,10 +876,6 @@ source "drivers/Kconfig" | |||
876 | 876 | ||
877 | source "fs/Kconfig" | 877 | source "fs/Kconfig" |
878 | 878 | ||
879 | # XXX source "arch/ppc/8xx_io/Kconfig" | ||
880 | |||
881 | # XXX source "arch/ppc/8260_io/Kconfig" | ||
882 | |||
883 | source "arch/powerpc/sysdev/qe_lib/Kconfig" | 879 | source "arch/powerpc/sysdev/qe_lib/Kconfig" |
884 | 880 | ||
885 | source "lib/Kconfig" | 881 | source "lib/Kconfig" |
diff --git a/arch/powerpc/boot/cuboot-warp.c b/arch/powerpc/boot/cuboot-warp.c index 21780210057d..806df693fea6 100644 --- a/arch/powerpc/boot/cuboot-warp.c +++ b/arch/powerpc/boot/cuboot-warp.c | |||
@@ -18,57 +18,14 @@ | |||
18 | 18 | ||
19 | static bd_t bd; | 19 | static bd_t bd; |
20 | 20 | ||
21 | static void warp_fixup_one_nor(u32 from, u32 to) | ||
22 | { | ||
23 | void *devp; | ||
24 | char name[50]; | ||
25 | u32 v[2]; | ||
26 | |||
27 | sprintf(name, "/plb/opb/ebc/nor_flash@0,0/partition@%x", from); | ||
28 | |||
29 | devp = finddevice(name); | ||
30 | if (!devp) | ||
31 | return; | ||
32 | |||
33 | if (getprop(devp, "reg", v, sizeof(v)) == sizeof(v)) { | ||
34 | v[0] = to; | ||
35 | setprop(devp, "reg", v, sizeof(v)); | ||
36 | |||
37 | printf("NOR 64M fixup %x -> %x\r\n", from, to); | ||
38 | } | ||
39 | } | ||
40 | |||
41 | |||
42 | static void warp_fixups(void) | 21 | static void warp_fixups(void) |
43 | { | 22 | { |
44 | ibm440ep_fixup_clocks(66000000, 11059200, 50000000); | 23 | ibm440ep_fixup_clocks(66000000, 11059200, 50000000); |
45 | ibm4xx_sdram_fixup_memsize(); | 24 | ibm4xx_sdram_fixup_memsize(); |
46 | ibm4xx_fixup_ebc_ranges("/plb/opb/ebc"); | 25 | ibm4xx_fixup_ebc_ranges("/plb/opb/ebc"); |
47 | dt_fixup_mac_address_by_alias("ethernet0", bd.bi_enetaddr); | 26 | dt_fixup_mac_address_by_alias("ethernet0", bd.bi_enetaddr); |
48 | |||
49 | /* Fixup for 64M flash on Rev A boards. */ | ||
50 | if (bd.bi_flashsize == 0x4000000) { | ||
51 | void *devp; | ||
52 | u32 v[3]; | ||
53 | |||
54 | devp = finddevice("/plb/opb/ebc/nor_flash@0,0"); | ||
55 | if (!devp) | ||
56 | return; | ||
57 | |||
58 | /* Fixup the size */ | ||
59 | if (getprop(devp, "reg", v, sizeof(v)) == sizeof(v)) { | ||
60 | v[2] = bd.bi_flashsize; | ||
61 | setprop(devp, "reg", v, sizeof(v)); | ||
62 | } | ||
63 | |||
64 | /* Fixup parition offsets */ | ||
65 | warp_fixup_one_nor(0x300000, 0x3f00000); | ||
66 | warp_fixup_one_nor(0x340000, 0x3f40000); | ||
67 | warp_fixup_one_nor(0x380000, 0x3f80000); | ||
68 | } | ||
69 | } | 27 | } |
70 | 28 | ||
71 | |||
72 | void platform_init(unsigned long r3, unsigned long r4, unsigned long r5, | 29 | void platform_init(unsigned long r3, unsigned long r4, unsigned long r5, |
73 | unsigned long r6, unsigned long r7) | 30 | unsigned long r6, unsigned long r7) |
74 | { | 31 | { |
diff --git a/arch/powerpc/boot/dts/haleakala.dts b/arch/powerpc/boot/dts/haleakala.dts index 513bc43a71af..5b2a4947bf82 100644 --- a/arch/powerpc/boot/dts/haleakala.dts +++ b/arch/powerpc/boot/dts/haleakala.dts | |||
@@ -89,8 +89,11 @@ | |||
89 | clock-frequency = <0>; /* Filled in by U-Boot */ | 89 | clock-frequency = <0>; /* Filled in by U-Boot */ |
90 | 90 | ||
91 | SDRAM0: memory-controller { | 91 | SDRAM0: memory-controller { |
92 | compatible = "ibm,sdram-405exr"; | 92 | compatible = "ibm,sdram-405exr", "ibm,sdram-4xx-ddr2"; |
93 | dcr-reg = <0x010 0x002>; | 93 | dcr-reg = <0x010 0x002>; |
94 | interrupt-parent = <&UIC2>; | ||
95 | interrupts = <0x5 0x4 /* ECC DED Error */ | ||
96 | 0x6 0x4>; /* ECC SEC Error */ | ||
94 | }; | 97 | }; |
95 | 98 | ||
96 | MAL0: mcmal { | 99 | MAL0: mcmal { |
diff --git a/arch/powerpc/boot/dts/kilauea.dts b/arch/powerpc/boot/dts/kilauea.dts index dececc4b5ff2..2804444812e5 100644 --- a/arch/powerpc/boot/dts/kilauea.dts +++ b/arch/powerpc/boot/dts/kilauea.dts | |||
@@ -90,8 +90,11 @@ | |||
90 | clock-frequency = <0>; /* Filled in by U-Boot */ | 90 | clock-frequency = <0>; /* Filled in by U-Boot */ |
91 | 91 | ||
92 | SDRAM0: memory-controller { | 92 | SDRAM0: memory-controller { |
93 | compatible = "ibm,sdram-405ex"; | 93 | compatible = "ibm,sdram-405ex", "ibm,sdram-4xx-ddr2"; |
94 | dcr-reg = <0x010 0x002>; | 94 | dcr-reg = <0x010 0x002>; |
95 | interrupt-parent = <&UIC2>; | ||
96 | interrupts = <0x5 0x4 /* ECC DED Error */ | ||
97 | 0x6 0x4>; /* ECC SEC Error */ | ||
95 | }; | 98 | }; |
96 | 99 | ||
97 | MAL0: mcmal { | 100 | MAL0: mcmal { |
diff --git a/arch/powerpc/boot/dts/makalu.dts b/arch/powerpc/boot/dts/makalu.dts index 945508c7e7d8..ffc246e72670 100644 --- a/arch/powerpc/boot/dts/makalu.dts +++ b/arch/powerpc/boot/dts/makalu.dts | |||
@@ -90,8 +90,11 @@ | |||
90 | clock-frequency = <0>; /* Filled in by U-Boot */ | 90 | clock-frequency = <0>; /* Filled in by U-Boot */ |
91 | 91 | ||
92 | SDRAM0: memory-controller { | 92 | SDRAM0: memory-controller { |
93 | compatible = "ibm,sdram-405ex"; | 93 | compatible = "ibm,sdram-405ex", "ibm,sdram-4xx-ddr2"; |
94 | dcr-reg = <0x010 0x002>; | 94 | dcr-reg = <0x010 0x002>; |
95 | interrupt-parent = <&UIC2>; | ||
96 | interrupts = <0x5 0x4 /* ECC DED Error */ | ||
97 | 0x6 0x4 /* ECC SEC Error */ >; | ||
95 | }; | 98 | }; |
96 | 99 | ||
97 | MAL0: mcmal { | 100 | MAL0: mcmal { |
diff --git a/arch/powerpc/boot/dts/mpc8313erdb.dts b/arch/powerpc/boot/dts/mpc8313erdb.dts index d4df8b6857a4..909a89cab9ac 100644 --- a/arch/powerpc/boot/dts/mpc8313erdb.dts +++ b/arch/powerpc/boot/dts/mpc8313erdb.dts | |||
@@ -185,7 +185,7 @@ | |||
185 | cell-index = <0>; | 185 | cell-index = <0>; |
186 | device_type = "network"; | 186 | device_type = "network"; |
187 | model = "eTSEC"; | 187 | model = "eTSEC"; |
188 | compatible = "gianfar", "simple-bus"; | 188 | compatible = "gianfar"; |
189 | reg = <0x24000 0x1000>; | 189 | reg = <0x24000 0x1000>; |
190 | local-mac-address = [ 00 00 00 00 00 00 ]; | 190 | local-mac-address = [ 00 00 00 00 00 00 ]; |
191 | interrupts = <37 0x8 36 0x8 35 0x8>; | 191 | interrupts = <37 0x8 36 0x8 35 0x8>; |
diff --git a/arch/powerpc/boot/dts/mpc8572ds.dts b/arch/powerpc/boot/dts/mpc8572ds.dts index 3dcc001b8ed3..359c3b727420 100644 --- a/arch/powerpc/boot/dts/mpc8572ds.dts +++ b/arch/powerpc/boot/dts/mpc8572ds.dts | |||
@@ -89,7 +89,7 @@ | |||
89 | 89 | ||
90 | ramdisk@0 { | 90 | ramdisk@0 { |
91 | reg = <0x0 0x03000000>; | 91 | reg = <0x0 0x03000000>; |
92 | readl-only; | 92 | read-only; |
93 | }; | 93 | }; |
94 | 94 | ||
95 | diagnostic@3000000 { | 95 | diagnostic@3000000 { |
diff --git a/arch/powerpc/boot/dts/warp.dts b/arch/powerpc/boot/dts/warp.dts index f4e4ba69eef7..7e183ff9a317 100644 --- a/arch/powerpc/boot/dts/warp.dts +++ b/arch/powerpc/boot/dts/warp.dts | |||
@@ -149,12 +149,17 @@ | |||
149 | reg = <0x00000002 0x00004000 0x00000A00>; | 149 | reg = <0x00000002 0x00004000 0x00000A00>; |
150 | }; | 150 | }; |
151 | 151 | ||
152 | nor_flash@0,0 { | 152 | nor@0,0 { |
153 | compatible = "amd,s29gl032a", "cfi-flash"; | 153 | compatible = "amd,s29gl032a", "cfi-flash"; |
154 | bank-width = <2>; | 154 | bank-width = <2>; |
155 | reg = <0x00000000 0x00000000 0x00400000>; | 155 | reg = <0x00000000 0x00000000 0x00400000>; |
156 | #address-cells = <1>; | 156 | #address-cells = <1>; |
157 | #size-cells = <1>; | 157 | #size-cells = <1>; |
158 | |||
159 | partition@0 { | ||
160 | label = "splash"; | ||
161 | reg = <0x00000000 0x00020000>; | ||
162 | }; | ||
158 | partition@300000 { | 163 | partition@300000 { |
159 | label = "fpga"; | 164 | label = "fpga"; |
160 | reg = <0x0300000 0x00040000>; | 165 | reg = <0x0300000 0x00040000>; |
@@ -168,6 +173,41 @@ | |||
168 | reg = <0x0380000 0x00080000>; | 173 | reg = <0x0380000 0x00080000>; |
169 | }; | 174 | }; |
170 | }; | 175 | }; |
176 | |||
177 | ndfc@1,0 { | ||
178 | compatible = "ibm,ndfc"; | ||
179 | reg = <0x00000001 0x00000000 0x00002000>; | ||
180 | ccr = <0x00001000>; | ||
181 | bank-settings = <0x80002222>; | ||
182 | #address-cells = <1>; | ||
183 | #size-cells = <1>; | ||
184 | |||
185 | nand { | ||
186 | #address-cells = <1>; | ||
187 | #size-cells = <1>; | ||
188 | |||
189 | partition@0 { | ||
190 | label = "kernel"; | ||
191 | reg = <0x00000000 0x00200000>; | ||
192 | }; | ||
193 | partition@200000 { | ||
194 | label = "root"; | ||
195 | reg = <0x00200000 0x03E00000>; | ||
196 | }; | ||
197 | partition@40000000 { | ||
198 | label = "persistent"; | ||
199 | reg = <0x04000000 0x04000000>; | ||
200 | }; | ||
201 | partition@80000000 { | ||
202 | label = "persistent1"; | ||
203 | reg = <0x08000000 0x04000000>; | ||
204 | }; | ||
205 | partition@C0000000 { | ||
206 | label = "persistent2"; | ||
207 | reg = <0x0C000000 0x04000000>; | ||
208 | }; | ||
209 | }; | ||
210 | }; | ||
171 | }; | 211 | }; |
172 | 212 | ||
173 | UART0: serial@ef600300 { | 213 | UART0: serial@ef600300 { |
diff --git a/arch/powerpc/configs/40x/acadia_defconfig b/arch/powerpc/configs/40x/acadia_defconfig index 25572cc837ca..a32ec8d323a0 100644 --- a/arch/powerpc/configs/40x/acadia_defconfig +++ b/arch/powerpc/configs/40x/acadia_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 08:49:18 2008 | 4 | # Tue Jan 20 08:17:46 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_40x=y | |||
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_4xx=y | 17 | CONFIG_4xx=y |
18 | CONFIG_PPC_MMU_NOHASH=y | ||
18 | # CONFIG_PPC_MM_SLICES is not set | 19 | # CONFIG_PPC_MM_SLICES is not set |
19 | CONFIG_NOT_COHERENT_CACHE=y | 20 | CONFIG_NOT_COHERENT_CACHE=y |
20 | CONFIG_PPC32=y | 21 | CONFIG_PPC32=y |
@@ -40,7 +41,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
40 | CONFIG_PPC=y | 41 | CONFIG_PPC=y |
41 | CONFIG_EARLY_PRINTK=y | 42 | CONFIG_EARLY_PRINTK=y |
42 | CONFIG_GENERIC_NVRAM=y | 43 | CONFIG_GENERIC_NVRAM=y |
43 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 44 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
44 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
45 | CONFIG_PPC_OF=y | 46 | CONFIG_PPC_OF=y |
46 | CONFIG_OF=y | 47 | CONFIG_OF=y |
@@ -71,12 +72,12 @@ CONFIG_POSIX_MQUEUE=y | |||
71 | # CONFIG_AUDIT is not set | 72 | # CONFIG_AUDIT is not set |
72 | # CONFIG_IKCONFIG is not set | 73 | # CONFIG_IKCONFIG is not set |
73 | CONFIG_LOG_BUF_SHIFT=14 | 74 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | ||
75 | CONFIG_GROUP_SCHED=y | 75 | CONFIG_GROUP_SCHED=y |
76 | # CONFIG_FAIR_GROUP_SCHED is not set | 76 | # CONFIG_FAIR_GROUP_SCHED is not set |
77 | # CONFIG_RT_GROUP_SCHED is not set | 77 | # CONFIG_RT_GROUP_SCHED is not set |
78 | CONFIG_USER_SCHED=y | 78 | CONFIG_USER_SCHED=y |
79 | # CONFIG_CGROUP_SCHED is not set | 79 | # CONFIG_CGROUP_SCHED is not set |
80 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_SYSFS_DEPRECATED=y | 81 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | 82 | CONFIG_SYSFS_DEPRECATED_V2=y |
82 | # CONFIG_RELAY is not set | 83 | # CONFIG_RELAY is not set |
@@ -89,6 +90,7 @@ CONFIG_EMBEDDED=y | |||
89 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
90 | CONFIG_KALLSYMS=y | 91 | CONFIG_KALLSYMS=y |
91 | CONFIG_KALLSYMS_ALL=y | 92 | CONFIG_KALLSYMS_ALL=y |
93 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
92 | CONFIG_KALLSYMS_EXTRA_PASS=y | 94 | CONFIG_KALLSYMS_EXTRA_PASS=y |
93 | CONFIG_HOTPLUG=y | 95 | CONFIG_HOTPLUG=y |
94 | CONFIG_PRINTK=y | 96 | CONFIG_PRINTK=y |
@@ -111,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
111 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
112 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
113 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
114 | # CONFIG_MARKERS is not set | ||
115 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
116 | # CONFIG_KPROBES is not set | 117 | # CONFIG_KPROBES is not set |
117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -122,7 +123,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
123 | CONFIG_SLABINFO=y | 124 | CONFIG_SLABINFO=y |
124 | CONFIG_RT_MUTEXES=y | 125 | CONFIG_RT_MUTEXES=y |
125 | # CONFIG_TINY_SHMEM is not set | ||
126 | CONFIG_BASE_SMALL=0 | 126 | CONFIG_BASE_SMALL=0 |
127 | CONFIG_MODULES=y | 127 | CONFIG_MODULES=y |
128 | # CONFIG_MODULE_FORCE_LOAD is not set | 128 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -130,11 +130,9 @@ CONFIG_MODULE_UNLOAD=y | |||
130 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 130 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
131 | # CONFIG_MODVERSIONS is not set | 131 | # CONFIG_MODVERSIONS is not set |
132 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 132 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
133 | CONFIG_KMOD=y | ||
134 | CONFIG_BLOCK=y | 133 | CONFIG_BLOCK=y |
135 | CONFIG_LBD=y | 134 | CONFIG_LBD=y |
136 | # CONFIG_BLK_DEV_IO_TRACE is not set | 135 | # CONFIG_BLK_DEV_IO_TRACE is not set |
137 | # CONFIG_LSF is not set | ||
138 | # CONFIG_BLK_DEV_BSG is not set | 136 | # CONFIG_BLK_DEV_BSG is not set |
139 | # CONFIG_BLK_DEV_INTEGRITY is not set | 137 | # CONFIG_BLK_DEV_INTEGRITY is not set |
140 | 138 | ||
@@ -151,6 +149,10 @@ CONFIG_DEFAULT_AS=y | |||
151 | # CONFIG_DEFAULT_NOOP is not set | 149 | # CONFIG_DEFAULT_NOOP is not set |
152 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
153 | CONFIG_CLASSIC_RCU=y | 151 | CONFIG_CLASSIC_RCU=y |
152 | # CONFIG_TREE_RCU is not set | ||
153 | # CONFIG_PREEMPT_RCU is not set | ||
154 | # CONFIG_TREE_RCU_TRACE is not set | ||
155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
154 | # CONFIG_FREEZER is not set | 156 | # CONFIG_FREEZER is not set |
155 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 157 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
156 | 158 | ||
@@ -182,6 +184,7 @@ CONFIG_405EZ=y | |||
182 | # CONFIG_GENERIC_IOMAP is not set | 184 | # CONFIG_GENERIC_IOMAP is not set |
183 | # CONFIG_CPU_FREQ is not set | 185 | # CONFIG_CPU_FREQ is not set |
184 | # CONFIG_FSL_ULI1575 is not set | 186 | # CONFIG_FSL_ULI1575 is not set |
187 | # CONFIG_SIMPLE_GPIO is not set | ||
185 | 188 | ||
186 | # | 189 | # |
187 | # Kernel options | 190 | # Kernel options |
@@ -205,6 +208,7 @@ CONFIG_BINFMT_ELF=y | |||
205 | # CONFIG_BINFMT_MISC is not set | 208 | # CONFIG_BINFMT_MISC is not set |
206 | # CONFIG_MATH_EMULATION is not set | 209 | # CONFIG_MATH_EMULATION is not set |
207 | # CONFIG_IOMMU_HELPER is not set | 210 | # CONFIG_IOMMU_HELPER is not set |
211 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
208 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 212 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
209 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 213 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
210 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 214 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -219,12 +223,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
219 | CONFIG_PAGEFLAGS_EXTENDED=y | 223 | CONFIG_PAGEFLAGS_EXTENDED=y |
220 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 224 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
221 | CONFIG_MIGRATION=y | 225 | CONFIG_MIGRATION=y |
222 | # CONFIG_RESOURCES_64BIT is not set | ||
223 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 226 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
224 | CONFIG_ZONE_DMA_FLAG=1 | 227 | CONFIG_ZONE_DMA_FLAG=1 |
225 | CONFIG_BOUNCE=y | 228 | CONFIG_BOUNCE=y |
226 | CONFIG_VIRT_TO_BUS=y | 229 | CONFIG_VIRT_TO_BUS=y |
227 | CONFIG_UNEVICTABLE_LRU=y | 230 | CONFIG_UNEVICTABLE_LRU=y |
231 | CONFIG_PPC_4K_PAGES=y | ||
232 | # CONFIG_PPC_16K_PAGES is not set | ||
233 | # CONFIG_PPC_64K_PAGES is not set | ||
228 | CONFIG_FORCE_MAX_ZONEORDER=11 | 234 | CONFIG_FORCE_MAX_ZONEORDER=11 |
229 | CONFIG_PROC_DEVICETREE=y | 235 | CONFIG_PROC_DEVICETREE=y |
230 | # CONFIG_CMDLINE_BOOL is not set | 236 | # CONFIG_CMDLINE_BOOL is not set |
@@ -248,6 +254,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
248 | # CONFIG_PCI_MSI is not set | 254 | # CONFIG_PCI_MSI is not set |
249 | CONFIG_PCI_LEGACY=y | 255 | CONFIG_PCI_LEGACY=y |
250 | # CONFIG_PCI_DEBUG is not set | 256 | # CONFIG_PCI_DEBUG is not set |
257 | # CONFIG_PCI_STUB is not set | ||
251 | # CONFIG_PCCARD is not set | 258 | # CONFIG_PCCARD is not set |
252 | # CONFIG_HOTPLUG_PCI is not set | 259 | # CONFIG_HOTPLUG_PCI is not set |
253 | # CONFIG_HAS_RAPIDIO is not set | 260 | # CONFIG_HAS_RAPIDIO is not set |
@@ -272,6 +279,7 @@ CONFIG_NET=y | |||
272 | # | 279 | # |
273 | # Networking options | 280 | # Networking options |
274 | # | 281 | # |
282 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
275 | CONFIG_PACKET=y | 283 | CONFIG_PACKET=y |
276 | # CONFIG_PACKET_MMAP is not set | 284 | # CONFIG_PACKET_MMAP is not set |
277 | CONFIG_UNIX=y | 285 | CONFIG_UNIX=y |
@@ -322,6 +330,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
322 | # CONFIG_ECONET is not set | 330 | # CONFIG_ECONET is not set |
323 | # CONFIG_WAN_ROUTER is not set | 331 | # CONFIG_WAN_ROUTER is not set |
324 | # CONFIG_NET_SCHED is not set | 332 | # CONFIG_NET_SCHED is not set |
333 | # CONFIG_DCB is not set | ||
325 | 334 | ||
326 | # | 335 | # |
327 | # Network testing | 336 | # Network testing |
@@ -334,6 +343,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
334 | # CONFIG_AF_RXRPC is not set | 343 | # CONFIG_AF_RXRPC is not set |
335 | # CONFIG_PHONET is not set | 344 | # CONFIG_PHONET is not set |
336 | # CONFIG_WIRELESS is not set | 345 | # CONFIG_WIRELESS is not set |
346 | # CONFIG_WIMAX is not set | ||
337 | # CONFIG_RFKILL is not set | 347 | # CONFIG_RFKILL is not set |
338 | # CONFIG_NET_9P is not set | 348 | # CONFIG_NET_9P is not set |
339 | 349 | ||
@@ -359,6 +369,7 @@ CONFIG_MTD=y | |||
359 | # CONFIG_MTD_DEBUG is not set | 369 | # CONFIG_MTD_DEBUG is not set |
360 | # CONFIG_MTD_CONCAT is not set | 370 | # CONFIG_MTD_CONCAT is not set |
361 | CONFIG_MTD_PARTITIONS=y | 371 | CONFIG_MTD_PARTITIONS=y |
372 | # CONFIG_MTD_TESTS is not set | ||
362 | # CONFIG_MTD_REDBOOT_PARTS is not set | 373 | # CONFIG_MTD_REDBOOT_PARTS is not set |
363 | CONFIG_MTD_CMDLINE_PARTS=y | 374 | CONFIG_MTD_CMDLINE_PARTS=y |
364 | CONFIG_MTD_OF_PARTS=y | 375 | CONFIG_MTD_OF_PARTS=y |
@@ -431,6 +442,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
431 | # CONFIG_MTD_ONENAND is not set | 442 | # CONFIG_MTD_ONENAND is not set |
432 | 443 | ||
433 | # | 444 | # |
445 | # LPDDR flash memory drivers | ||
446 | # | ||
447 | # CONFIG_MTD_LPDDR is not set | ||
448 | # CONFIG_MTD_QINFO_PROBE is not set | ||
449 | |||
450 | # | ||
434 | # UBI - Unsorted block images | 451 | # UBI - Unsorted block images |
435 | # | 452 | # |
436 | # CONFIG_MTD_UBI is not set | 453 | # CONFIG_MTD_UBI is not set |
@@ -524,6 +541,10 @@ CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR=y | |||
524 | # CONFIG_WLAN_PRE80211 is not set | 541 | # CONFIG_WLAN_PRE80211 is not set |
525 | # CONFIG_WLAN_80211 is not set | 542 | # CONFIG_WLAN_80211 is not set |
526 | # CONFIG_IWLWIFI_LEDS is not set | 543 | # CONFIG_IWLWIFI_LEDS is not set |
544 | |||
545 | # | ||
546 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
547 | # | ||
527 | # CONFIG_WAN is not set | 548 | # CONFIG_WAN is not set |
528 | # CONFIG_FDDI is not set | 549 | # CONFIG_FDDI is not set |
529 | # CONFIG_HIPPI is not set | 550 | # CONFIG_HIPPI is not set |
@@ -576,9 +597,12 @@ CONFIG_SERIAL_CORE=y | |||
576 | CONFIG_SERIAL_CORE_CONSOLE=y | 597 | CONFIG_SERIAL_CORE_CONSOLE=y |
577 | # CONFIG_SERIAL_JSM is not set | 598 | # CONFIG_SERIAL_JSM is not set |
578 | CONFIG_SERIAL_OF_PLATFORM=y | 599 | CONFIG_SERIAL_OF_PLATFORM=y |
600 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
579 | CONFIG_UNIX98_PTYS=y | 601 | CONFIG_UNIX98_PTYS=y |
602 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
580 | CONFIG_LEGACY_PTYS=y | 603 | CONFIG_LEGACY_PTYS=y |
581 | CONFIG_LEGACY_PTY_COUNT=256 | 604 | CONFIG_LEGACY_PTY_COUNT=256 |
605 | # CONFIG_HVC_UDBG is not set | ||
582 | # CONFIG_IPMI_HANDLER is not set | 606 | # CONFIG_IPMI_HANDLER is not set |
583 | # CONFIG_HW_RANDOM is not set | 607 | # CONFIG_HW_RANDOM is not set |
584 | # CONFIG_NVRAM is not set | 608 | # CONFIG_NVRAM is not set |
@@ -597,11 +621,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
597 | # CONFIG_HWMON is not set | 621 | # CONFIG_HWMON is not set |
598 | CONFIG_THERMAL=y | 622 | CONFIG_THERMAL=y |
599 | # CONFIG_WATCHDOG is not set | 623 | # CONFIG_WATCHDOG is not set |
624 | CONFIG_SSB_POSSIBLE=y | ||
600 | 625 | ||
601 | # | 626 | # |
602 | # Sonics Silicon Backplane | 627 | # Sonics Silicon Backplane |
603 | # | 628 | # |
604 | CONFIG_SSB_POSSIBLE=y | ||
605 | # CONFIG_SSB is not set | 629 | # CONFIG_SSB is not set |
606 | 630 | ||
607 | # | 631 | # |
@@ -611,7 +635,7 @@ CONFIG_SSB_POSSIBLE=y | |||
611 | # CONFIG_MFD_SM501 is not set | 635 | # CONFIG_MFD_SM501 is not set |
612 | # CONFIG_HTC_PASIC3 is not set | 636 | # CONFIG_HTC_PASIC3 is not set |
613 | # CONFIG_MFD_TMIO is not set | 637 | # CONFIG_MFD_TMIO is not set |
614 | # CONFIG_MFD_WM8400 is not set | 638 | # CONFIG_REGULATOR is not set |
615 | 639 | ||
616 | # | 640 | # |
617 | # Multimedia devices | 641 | # Multimedia devices |
@@ -670,7 +694,9 @@ CONFIG_EXT2_FS=y | |||
670 | # CONFIG_FS_POSIX_ACL is not set | 694 | # CONFIG_FS_POSIX_ACL is not set |
671 | CONFIG_FILE_LOCKING=y | 695 | CONFIG_FILE_LOCKING=y |
672 | # CONFIG_XFS_FS is not set | 696 | # CONFIG_XFS_FS is not set |
697 | # CONFIG_GFS2_FS is not set | ||
673 | # CONFIG_OCFS2_FS is not set | 698 | # CONFIG_OCFS2_FS is not set |
699 | # CONFIG_BTRFS_FS is not set | ||
674 | CONFIG_DNOTIFY=y | 700 | CONFIG_DNOTIFY=y |
675 | CONFIG_INOTIFY=y | 701 | CONFIG_INOTIFY=y |
676 | CONFIG_INOTIFY_USER=y | 702 | CONFIG_INOTIFY_USER=y |
@@ -704,10 +730,7 @@ CONFIG_TMPFS=y | |||
704 | # CONFIG_TMPFS_POSIX_ACL is not set | 730 | # CONFIG_TMPFS_POSIX_ACL is not set |
705 | # CONFIG_HUGETLB_PAGE is not set | 731 | # CONFIG_HUGETLB_PAGE is not set |
706 | # CONFIG_CONFIGFS_FS is not set | 732 | # CONFIG_CONFIGFS_FS is not set |
707 | 733 | CONFIG_MISC_FILESYSTEMS=y | |
708 | # | ||
709 | # Miscellaneous filesystems | ||
710 | # | ||
711 | # CONFIG_ADFS_FS is not set | 734 | # CONFIG_ADFS_FS is not set |
712 | # CONFIG_AFFS_FS is not set | 735 | # CONFIG_AFFS_FS is not set |
713 | # CONFIG_HFS_FS is not set | 736 | # CONFIG_HFS_FS is not set |
@@ -717,6 +740,7 @@ CONFIG_TMPFS=y | |||
717 | # CONFIG_EFS_FS is not set | 740 | # CONFIG_EFS_FS is not set |
718 | # CONFIG_JFFS2_FS is not set | 741 | # CONFIG_JFFS2_FS is not set |
719 | CONFIG_CRAMFS=y | 742 | CONFIG_CRAMFS=y |
743 | # CONFIG_SQUASHFS is not set | ||
720 | # CONFIG_VXFS_FS is not set | 744 | # CONFIG_VXFS_FS is not set |
721 | # CONFIG_MINIX_FS is not set | 745 | # CONFIG_MINIX_FS is not set |
722 | # CONFIG_OMFS_FS is not set | 746 | # CONFIG_OMFS_FS is not set |
@@ -757,6 +781,7 @@ CONFIG_MSDOS_PARTITION=y | |||
757 | # Library routines | 781 | # Library routines |
758 | # | 782 | # |
759 | CONFIG_BITREVERSE=y | 783 | CONFIG_BITREVERSE=y |
784 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
760 | # CONFIG_CRC_CCITT is not set | 785 | # CONFIG_CRC_CCITT is not set |
761 | # CONFIG_CRC16 is not set | 786 | # CONFIG_CRC16 is not set |
762 | # CONFIG_CRC_T10DIF is not set | 787 | # CONFIG_CRC_T10DIF is not set |
@@ -807,6 +832,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
807 | # CONFIG_DEBUG_MEMORY_INIT is not set | 832 | # CONFIG_DEBUG_MEMORY_INIT is not set |
808 | # CONFIG_DEBUG_LIST is not set | 833 | # CONFIG_DEBUG_LIST is not set |
809 | # CONFIG_DEBUG_SG is not set | 834 | # CONFIG_DEBUG_SG is not set |
835 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
810 | # CONFIG_BOOT_PRINTK_DELAY is not set | 836 | # CONFIG_BOOT_PRINTK_DELAY is not set |
811 | # CONFIG_RCU_TORTURE_TEST is not set | 837 | # CONFIG_RCU_TORTURE_TEST is not set |
812 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 838 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -815,18 +841,24 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
815 | # CONFIG_FAULT_INJECTION is not set | 841 | # CONFIG_FAULT_INJECTION is not set |
816 | # CONFIG_LATENCYTOP is not set | 842 | # CONFIG_LATENCYTOP is not set |
817 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 843 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
818 | CONFIG_NOP_TRACER=y | 844 | CONFIG_HAVE_FUNCTION_TRACER=y |
819 | CONFIG_HAVE_FTRACE=y | ||
820 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 845 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
821 | # CONFIG_FTRACE is not set | 846 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
847 | |||
848 | # | ||
849 | # Tracers | ||
850 | # | ||
851 | # CONFIG_FUNCTION_TRACER is not set | ||
822 | # CONFIG_SCHED_TRACER is not set | 852 | # CONFIG_SCHED_TRACER is not set |
823 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 853 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
824 | # CONFIG_BOOT_TRACER is not set | 854 | # CONFIG_BOOT_TRACER is not set |
855 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
825 | # CONFIG_STACK_TRACER is not set | 856 | # CONFIG_STACK_TRACER is not set |
826 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 857 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
827 | # CONFIG_SAMPLES is not set | 858 | # CONFIG_SAMPLES is not set |
828 | CONFIG_HAVE_ARCH_KGDB=y | 859 | CONFIG_HAVE_ARCH_KGDB=y |
829 | # CONFIG_KGDB is not set | 860 | # CONFIG_KGDB is not set |
861 | CONFIG_PRINT_STACK_DEPTH=64 | ||
830 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 862 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
831 | # CONFIG_DEBUG_STACK_USAGE is not set | 863 | # CONFIG_DEBUG_STACK_USAGE is not set |
832 | # CONFIG_DEBUG_PAGEALLOC is not set | 864 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -853,11 +885,15 @@ CONFIG_CRYPTO=y | |||
853 | # | 885 | # |
854 | # CONFIG_CRYPTO_FIPS is not set | 886 | # CONFIG_CRYPTO_FIPS is not set |
855 | CONFIG_CRYPTO_ALGAPI=y | 887 | CONFIG_CRYPTO_ALGAPI=y |
856 | CONFIG_CRYPTO_AEAD=y | 888 | CONFIG_CRYPTO_ALGAPI2=y |
889 | CONFIG_CRYPTO_AEAD2=y | ||
857 | CONFIG_CRYPTO_BLKCIPHER=y | 890 | CONFIG_CRYPTO_BLKCIPHER=y |
891 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
858 | CONFIG_CRYPTO_HASH=y | 892 | CONFIG_CRYPTO_HASH=y |
859 | CONFIG_CRYPTO_RNG=y | 893 | CONFIG_CRYPTO_HASH2=y |
894 | CONFIG_CRYPTO_RNG2=y | ||
860 | CONFIG_CRYPTO_MANAGER=y | 895 | CONFIG_CRYPTO_MANAGER=y |
896 | CONFIG_CRYPTO_MANAGER2=y | ||
861 | # CONFIG_CRYPTO_GF128MUL is not set | 897 | # CONFIG_CRYPTO_GF128MUL is not set |
862 | # CONFIG_CRYPTO_NULL is not set | 898 | # CONFIG_CRYPTO_NULL is not set |
863 | # CONFIG_CRYPTO_CRYPTD is not set | 899 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/40x/ep405_defconfig b/arch/powerpc/configs/40x/ep405_defconfig index b80ba7aa3129..4e9d85f39da0 100644 --- a/arch/powerpc/configs/40x/ep405_defconfig +++ b/arch/powerpc/configs/40x/ep405_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 08:49:20 2008 | 4 | # Tue Jan 20 08:17:48 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_40x=y | |||
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_4xx=y | 17 | CONFIG_4xx=y |
18 | CONFIG_PPC_MMU_NOHASH=y | ||
18 | # CONFIG_PPC_MM_SLICES is not set | 19 | # CONFIG_PPC_MM_SLICES is not set |
19 | CONFIG_NOT_COHERENT_CACHE=y | 20 | CONFIG_NOT_COHERENT_CACHE=y |
20 | CONFIG_PPC32=y | 21 | CONFIG_PPC32=y |
@@ -40,7 +41,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
40 | CONFIG_PPC=y | 41 | CONFIG_PPC=y |
41 | CONFIG_EARLY_PRINTK=y | 42 | CONFIG_EARLY_PRINTK=y |
42 | CONFIG_GENERIC_NVRAM=y | 43 | CONFIG_GENERIC_NVRAM=y |
43 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 44 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
44 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
45 | CONFIG_PPC_OF=y | 46 | CONFIG_PPC_OF=y |
46 | CONFIG_OF=y | 47 | CONFIG_OF=y |
@@ -71,12 +72,12 @@ CONFIG_POSIX_MQUEUE=y | |||
71 | # CONFIG_AUDIT is not set | 72 | # CONFIG_AUDIT is not set |
72 | # CONFIG_IKCONFIG is not set | 73 | # CONFIG_IKCONFIG is not set |
73 | CONFIG_LOG_BUF_SHIFT=14 | 74 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | ||
75 | CONFIG_GROUP_SCHED=y | 75 | CONFIG_GROUP_SCHED=y |
76 | CONFIG_FAIR_GROUP_SCHED=y | 76 | CONFIG_FAIR_GROUP_SCHED=y |
77 | # CONFIG_RT_GROUP_SCHED is not set | 77 | # CONFIG_RT_GROUP_SCHED is not set |
78 | CONFIG_USER_SCHED=y | 78 | CONFIG_USER_SCHED=y |
79 | # CONFIG_CGROUP_SCHED is not set | 79 | # CONFIG_CGROUP_SCHED is not set |
80 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_SYSFS_DEPRECATED=y | 81 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | 82 | CONFIG_SYSFS_DEPRECATED_V2=y |
82 | # CONFIG_RELAY is not set | 83 | # CONFIG_RELAY is not set |
@@ -89,6 +90,7 @@ CONFIG_EMBEDDED=y | |||
89 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
90 | CONFIG_KALLSYMS=y | 91 | CONFIG_KALLSYMS=y |
91 | CONFIG_KALLSYMS_ALL=y | 92 | CONFIG_KALLSYMS_ALL=y |
93 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
92 | CONFIG_KALLSYMS_EXTRA_PASS=y | 94 | CONFIG_KALLSYMS_EXTRA_PASS=y |
93 | CONFIG_HOTPLUG=y | 95 | CONFIG_HOTPLUG=y |
94 | CONFIG_PRINTK=y | 96 | CONFIG_PRINTK=y |
@@ -111,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
111 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
112 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
113 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
114 | # CONFIG_MARKERS is not set | ||
115 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
116 | # CONFIG_KPROBES is not set | 117 | # CONFIG_KPROBES is not set |
117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -122,7 +123,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
123 | CONFIG_SLABINFO=y | 124 | CONFIG_SLABINFO=y |
124 | CONFIG_RT_MUTEXES=y | 125 | CONFIG_RT_MUTEXES=y |
125 | # CONFIG_TINY_SHMEM is not set | ||
126 | CONFIG_BASE_SMALL=0 | 126 | CONFIG_BASE_SMALL=0 |
127 | CONFIG_MODULES=y | 127 | CONFIG_MODULES=y |
128 | # CONFIG_MODULE_FORCE_LOAD is not set | 128 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -130,11 +130,9 @@ CONFIG_MODULE_UNLOAD=y | |||
130 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 130 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
131 | # CONFIG_MODVERSIONS is not set | 131 | # CONFIG_MODVERSIONS is not set |
132 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 132 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
133 | CONFIG_KMOD=y | ||
134 | CONFIG_BLOCK=y | 133 | CONFIG_BLOCK=y |
135 | CONFIG_LBD=y | 134 | CONFIG_LBD=y |
136 | # CONFIG_BLK_DEV_IO_TRACE is not set | 135 | # CONFIG_BLK_DEV_IO_TRACE is not set |
137 | # CONFIG_LSF is not set | ||
138 | # CONFIG_BLK_DEV_BSG is not set | 136 | # CONFIG_BLK_DEV_BSG is not set |
139 | # CONFIG_BLK_DEV_INTEGRITY is not set | 137 | # CONFIG_BLK_DEV_INTEGRITY is not set |
140 | 138 | ||
@@ -151,6 +149,10 @@ CONFIG_DEFAULT_AS=y | |||
151 | # CONFIG_DEFAULT_NOOP is not set | 149 | # CONFIG_DEFAULT_NOOP is not set |
152 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
153 | CONFIG_CLASSIC_RCU=y | 151 | CONFIG_CLASSIC_RCU=y |
152 | # CONFIG_TREE_RCU is not set | ||
153 | # CONFIG_PREEMPT_RCU is not set | ||
154 | # CONFIG_TREE_RCU_TRACE is not set | ||
155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
154 | # CONFIG_FREEZER is not set | 156 | # CONFIG_FREEZER is not set |
155 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 157 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
156 | 158 | ||
@@ -184,6 +186,7 @@ CONFIG_IBM405_ERR51=y | |||
184 | # CONFIG_GENERIC_IOMAP is not set | 186 | # CONFIG_GENERIC_IOMAP is not set |
185 | # CONFIG_CPU_FREQ is not set | 187 | # CONFIG_CPU_FREQ is not set |
186 | # CONFIG_FSL_ULI1575 is not set | 188 | # CONFIG_FSL_ULI1575 is not set |
189 | # CONFIG_SIMPLE_GPIO is not set | ||
187 | 190 | ||
188 | # | 191 | # |
189 | # Kernel options | 192 | # Kernel options |
@@ -207,6 +210,7 @@ CONFIG_BINFMT_ELF=y | |||
207 | # CONFIG_BINFMT_MISC is not set | 210 | # CONFIG_BINFMT_MISC is not set |
208 | # CONFIG_MATH_EMULATION is not set | 211 | # CONFIG_MATH_EMULATION is not set |
209 | # CONFIG_IOMMU_HELPER is not set | 212 | # CONFIG_IOMMU_HELPER is not set |
213 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
210 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 214 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
211 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 215 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
212 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 216 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -221,12 +225,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
221 | CONFIG_PAGEFLAGS_EXTENDED=y | 225 | CONFIG_PAGEFLAGS_EXTENDED=y |
222 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 226 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
223 | CONFIG_MIGRATION=y | 227 | CONFIG_MIGRATION=y |
224 | # CONFIG_RESOURCES_64BIT is not set | ||
225 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 228 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
226 | CONFIG_ZONE_DMA_FLAG=1 | 229 | CONFIG_ZONE_DMA_FLAG=1 |
227 | CONFIG_BOUNCE=y | 230 | CONFIG_BOUNCE=y |
228 | CONFIG_VIRT_TO_BUS=y | 231 | CONFIG_VIRT_TO_BUS=y |
229 | CONFIG_UNEVICTABLE_LRU=y | 232 | CONFIG_UNEVICTABLE_LRU=y |
233 | CONFIG_PPC_4K_PAGES=y | ||
234 | # CONFIG_PPC_16K_PAGES is not set | ||
235 | # CONFIG_PPC_64K_PAGES is not set | ||
230 | CONFIG_FORCE_MAX_ZONEORDER=11 | 236 | CONFIG_FORCE_MAX_ZONEORDER=11 |
231 | CONFIG_PROC_DEVICETREE=y | 237 | CONFIG_PROC_DEVICETREE=y |
232 | # CONFIG_CMDLINE_BOOL is not set | 238 | # CONFIG_CMDLINE_BOOL is not set |
@@ -250,6 +256,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
250 | # CONFIG_PCI_MSI is not set | 256 | # CONFIG_PCI_MSI is not set |
251 | CONFIG_PCI_LEGACY=y | 257 | CONFIG_PCI_LEGACY=y |
252 | # CONFIG_PCI_DEBUG is not set | 258 | # CONFIG_PCI_DEBUG is not set |
259 | # CONFIG_PCI_STUB is not set | ||
253 | # CONFIG_PCCARD is not set | 260 | # CONFIG_PCCARD is not set |
254 | # CONFIG_HOTPLUG_PCI is not set | 261 | # CONFIG_HOTPLUG_PCI is not set |
255 | # CONFIG_HAS_RAPIDIO is not set | 262 | # CONFIG_HAS_RAPIDIO is not set |
@@ -274,6 +281,7 @@ CONFIG_NET=y | |||
274 | # | 281 | # |
275 | # Networking options | 282 | # Networking options |
276 | # | 283 | # |
284 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
277 | CONFIG_PACKET=y | 285 | CONFIG_PACKET=y |
278 | # CONFIG_PACKET_MMAP is not set | 286 | # CONFIG_PACKET_MMAP is not set |
279 | CONFIG_UNIX=y | 287 | CONFIG_UNIX=y |
@@ -324,6 +332,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
324 | # CONFIG_ECONET is not set | 332 | # CONFIG_ECONET is not set |
325 | # CONFIG_WAN_ROUTER is not set | 333 | # CONFIG_WAN_ROUTER is not set |
326 | # CONFIG_NET_SCHED is not set | 334 | # CONFIG_NET_SCHED is not set |
335 | # CONFIG_DCB is not set | ||
327 | 336 | ||
328 | # | 337 | # |
329 | # Network testing | 338 | # Network testing |
@@ -336,6 +345,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
336 | # CONFIG_AF_RXRPC is not set | 345 | # CONFIG_AF_RXRPC is not set |
337 | # CONFIG_PHONET is not set | 346 | # CONFIG_PHONET is not set |
338 | # CONFIG_WIRELESS is not set | 347 | # CONFIG_WIRELESS is not set |
348 | # CONFIG_WIMAX is not set | ||
339 | # CONFIG_RFKILL is not set | 349 | # CONFIG_RFKILL is not set |
340 | # CONFIG_NET_9P is not set | 350 | # CONFIG_NET_9P is not set |
341 | 351 | ||
@@ -361,6 +371,7 @@ CONFIG_MTD=y | |||
361 | # CONFIG_MTD_DEBUG is not set | 371 | # CONFIG_MTD_DEBUG is not set |
362 | # CONFIG_MTD_CONCAT is not set | 372 | # CONFIG_MTD_CONCAT is not set |
363 | CONFIG_MTD_PARTITIONS=y | 373 | CONFIG_MTD_PARTITIONS=y |
374 | # CONFIG_MTD_TESTS is not set | ||
364 | # CONFIG_MTD_REDBOOT_PARTS is not set | 375 | # CONFIG_MTD_REDBOOT_PARTS is not set |
365 | CONFIG_MTD_CMDLINE_PARTS=y | 376 | CONFIG_MTD_CMDLINE_PARTS=y |
366 | CONFIG_MTD_OF_PARTS=y | 377 | CONFIG_MTD_OF_PARTS=y |
@@ -433,6 +444,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
433 | # CONFIG_MTD_ONENAND is not set | 444 | # CONFIG_MTD_ONENAND is not set |
434 | 445 | ||
435 | # | 446 | # |
447 | # LPDDR flash memory drivers | ||
448 | # | ||
449 | # CONFIG_MTD_LPDDR is not set | ||
450 | # CONFIG_MTD_QINFO_PROBE is not set | ||
451 | |||
452 | # | ||
436 | # UBI - Unsorted block images | 453 | # UBI - Unsorted block images |
437 | # | 454 | # |
438 | # CONFIG_MTD_UBI is not set | 455 | # CONFIG_MTD_UBI is not set |
@@ -464,6 +481,7 @@ CONFIG_MISC_DEVICES=y | |||
464 | # CONFIG_TIFM_CORE is not set | 481 | # CONFIG_TIFM_CORE is not set |
465 | # CONFIG_ENCLOSURE_SERVICES is not set | 482 | # CONFIG_ENCLOSURE_SERVICES is not set |
466 | # CONFIG_HP_ILO is not set | 483 | # CONFIG_HP_ILO is not set |
484 | # CONFIG_C2PORT is not set | ||
467 | CONFIG_HAVE_IDE=y | 485 | CONFIG_HAVE_IDE=y |
468 | # CONFIG_IDE is not set | 486 | # CONFIG_IDE is not set |
469 | 487 | ||
@@ -546,6 +564,7 @@ CONFIG_NETDEV_1000=y | |||
546 | # CONFIG_JME is not set | 564 | # CONFIG_JME is not set |
547 | CONFIG_NETDEV_10000=y | 565 | CONFIG_NETDEV_10000=y |
548 | # CONFIG_CHELSIO_T1 is not set | 566 | # CONFIG_CHELSIO_T1 is not set |
567 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
549 | # CONFIG_CHELSIO_T3 is not set | 568 | # CONFIG_CHELSIO_T3 is not set |
550 | # CONFIG_ENIC is not set | 569 | # CONFIG_ENIC is not set |
551 | # CONFIG_IXGBE is not set | 570 | # CONFIG_IXGBE is not set |
@@ -570,6 +589,10 @@ CONFIG_NETDEV_10000=y | |||
570 | # CONFIG_IWLWIFI_LEDS is not set | 589 | # CONFIG_IWLWIFI_LEDS is not set |
571 | 590 | ||
572 | # | 591 | # |
592 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
593 | # | ||
594 | |||
595 | # | ||
573 | # USB Network Adapters | 596 | # USB Network Adapters |
574 | # | 597 | # |
575 | # CONFIG_USB_CATC is not set | 598 | # CONFIG_USB_CATC is not set |
@@ -629,9 +652,12 @@ CONFIG_SERIAL_CORE=y | |||
629 | CONFIG_SERIAL_CORE_CONSOLE=y | 652 | CONFIG_SERIAL_CORE_CONSOLE=y |
630 | # CONFIG_SERIAL_JSM is not set | 653 | # CONFIG_SERIAL_JSM is not set |
631 | CONFIG_SERIAL_OF_PLATFORM=y | 654 | CONFIG_SERIAL_OF_PLATFORM=y |
655 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
632 | CONFIG_UNIX98_PTYS=y | 656 | CONFIG_UNIX98_PTYS=y |
657 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
633 | CONFIG_LEGACY_PTYS=y | 658 | CONFIG_LEGACY_PTYS=y |
634 | CONFIG_LEGACY_PTY_COUNT=256 | 659 | CONFIG_LEGACY_PTY_COUNT=256 |
660 | # CONFIG_HVC_UDBG is not set | ||
635 | # CONFIG_IPMI_HANDLER is not set | 661 | # CONFIG_IPMI_HANDLER is not set |
636 | # CONFIG_HW_RANDOM is not set | 662 | # CONFIG_HW_RANDOM is not set |
637 | # CONFIG_NVRAM is not set | 663 | # CONFIG_NVRAM is not set |
@@ -650,11 +676,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
650 | # CONFIG_HWMON is not set | 676 | # CONFIG_HWMON is not set |
651 | CONFIG_THERMAL=y | 677 | CONFIG_THERMAL=y |
652 | # CONFIG_WATCHDOG is not set | 678 | # CONFIG_WATCHDOG is not set |
679 | CONFIG_SSB_POSSIBLE=y | ||
653 | 680 | ||
654 | # | 681 | # |
655 | # Sonics Silicon Backplane | 682 | # Sonics Silicon Backplane |
656 | # | 683 | # |
657 | CONFIG_SSB_POSSIBLE=y | ||
658 | # CONFIG_SSB is not set | 684 | # CONFIG_SSB is not set |
659 | 685 | ||
660 | # | 686 | # |
@@ -664,7 +690,7 @@ CONFIG_SSB_POSSIBLE=y | |||
664 | # CONFIG_MFD_SM501 is not set | 690 | # CONFIG_MFD_SM501 is not set |
665 | # CONFIG_HTC_PASIC3 is not set | 691 | # CONFIG_HTC_PASIC3 is not set |
666 | # CONFIG_MFD_TMIO is not set | 692 | # CONFIG_MFD_TMIO is not set |
667 | # CONFIG_MFD_WM8400 is not set | 693 | # CONFIG_REGULATOR is not set |
668 | 694 | ||
669 | # | 695 | # |
670 | # Multimedia devices | 696 | # Multimedia devices |
@@ -723,6 +749,7 @@ CONFIG_USB_MON=y | |||
723 | # | 749 | # |
724 | # CONFIG_USB_C67X00_HCD is not set | 750 | # CONFIG_USB_C67X00_HCD is not set |
725 | # CONFIG_USB_EHCI_HCD is not set | 751 | # CONFIG_USB_EHCI_HCD is not set |
752 | # CONFIG_USB_OXU210HP_HCD is not set | ||
726 | # CONFIG_USB_ISP116X_HCD is not set | 753 | # CONFIG_USB_ISP116X_HCD is not set |
727 | # CONFIG_USB_ISP1760_HCD is not set | 754 | # CONFIG_USB_ISP1760_HCD is not set |
728 | CONFIG_USB_OHCI_HCD=y | 755 | CONFIG_USB_OHCI_HCD=y |
@@ -748,11 +775,11 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
748 | # CONFIG_USB_TMC is not set | 775 | # CONFIG_USB_TMC is not set |
749 | 776 | ||
750 | # | 777 | # |
751 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 778 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
752 | # | 779 | # |
753 | 780 | ||
754 | # | 781 | # |
755 | # may also be needed; see USB_STORAGE Help for more information | 782 | # see USB_STORAGE Help for more information |
756 | # | 783 | # |
757 | # CONFIG_USB_LIBUSUAL is not set | 784 | # CONFIG_USB_LIBUSUAL is not set |
758 | 785 | ||
@@ -791,6 +818,10 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
791 | # CONFIG_USB_ISIGHTFW is not set | 818 | # CONFIG_USB_ISIGHTFW is not set |
792 | # CONFIG_USB_VST is not set | 819 | # CONFIG_USB_VST is not set |
793 | # CONFIG_USB_GADGET is not set | 820 | # CONFIG_USB_GADGET is not set |
821 | |||
822 | # | ||
823 | # OTG and related infrastructure | ||
824 | # | ||
794 | # CONFIG_UWB is not set | 825 | # CONFIG_UWB is not set |
795 | # CONFIG_MMC is not set | 826 | # CONFIG_MMC is not set |
796 | # CONFIG_MEMSTICK is not set | 827 | # CONFIG_MEMSTICK is not set |
@@ -816,7 +847,9 @@ CONFIG_EXT2_FS=y | |||
816 | # CONFIG_FS_POSIX_ACL is not set | 847 | # CONFIG_FS_POSIX_ACL is not set |
817 | CONFIG_FILE_LOCKING=y | 848 | CONFIG_FILE_LOCKING=y |
818 | # CONFIG_XFS_FS is not set | 849 | # CONFIG_XFS_FS is not set |
850 | # CONFIG_GFS2_FS is not set | ||
819 | # CONFIG_OCFS2_FS is not set | 851 | # CONFIG_OCFS2_FS is not set |
852 | # CONFIG_BTRFS_FS is not set | ||
820 | CONFIG_DNOTIFY=y | 853 | CONFIG_DNOTIFY=y |
821 | CONFIG_INOTIFY=y | 854 | CONFIG_INOTIFY=y |
822 | CONFIG_INOTIFY_USER=y | 855 | CONFIG_INOTIFY_USER=y |
@@ -850,10 +883,7 @@ CONFIG_TMPFS=y | |||
850 | # CONFIG_TMPFS_POSIX_ACL is not set | 883 | # CONFIG_TMPFS_POSIX_ACL is not set |
851 | # CONFIG_HUGETLB_PAGE is not set | 884 | # CONFIG_HUGETLB_PAGE is not set |
852 | # CONFIG_CONFIGFS_FS is not set | 885 | # CONFIG_CONFIGFS_FS is not set |
853 | 886 | CONFIG_MISC_FILESYSTEMS=y | |
854 | # | ||
855 | # Miscellaneous filesystems | ||
856 | # | ||
857 | # CONFIG_ADFS_FS is not set | 887 | # CONFIG_ADFS_FS is not set |
858 | # CONFIG_AFFS_FS is not set | 888 | # CONFIG_AFFS_FS is not set |
859 | # CONFIG_HFS_FS is not set | 889 | # CONFIG_HFS_FS is not set |
@@ -863,6 +893,7 @@ CONFIG_TMPFS=y | |||
863 | # CONFIG_EFS_FS is not set | 893 | # CONFIG_EFS_FS is not set |
864 | # CONFIG_JFFS2_FS is not set | 894 | # CONFIG_JFFS2_FS is not set |
865 | CONFIG_CRAMFS=y | 895 | CONFIG_CRAMFS=y |
896 | # CONFIG_SQUASHFS is not set | ||
866 | # CONFIG_VXFS_FS is not set | 897 | # CONFIG_VXFS_FS is not set |
867 | # CONFIG_MINIX_FS is not set | 898 | # CONFIG_MINIX_FS is not set |
868 | # CONFIG_OMFS_FS is not set | 899 | # CONFIG_OMFS_FS is not set |
@@ -903,6 +934,7 @@ CONFIG_MSDOS_PARTITION=y | |||
903 | # Library routines | 934 | # Library routines |
904 | # | 935 | # |
905 | CONFIG_BITREVERSE=y | 936 | CONFIG_BITREVERSE=y |
937 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
906 | # CONFIG_CRC_CCITT is not set | 938 | # CONFIG_CRC_CCITT is not set |
907 | # CONFIG_CRC16 is not set | 939 | # CONFIG_CRC16 is not set |
908 | # CONFIG_CRC_T10DIF is not set | 940 | # CONFIG_CRC_T10DIF is not set |
@@ -953,6 +985,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
953 | # CONFIG_DEBUG_MEMORY_INIT is not set | 985 | # CONFIG_DEBUG_MEMORY_INIT is not set |
954 | # CONFIG_DEBUG_LIST is not set | 986 | # CONFIG_DEBUG_LIST is not set |
955 | # CONFIG_DEBUG_SG is not set | 987 | # CONFIG_DEBUG_SG is not set |
988 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
956 | # CONFIG_BOOT_PRINTK_DELAY is not set | 989 | # CONFIG_BOOT_PRINTK_DELAY is not set |
957 | # CONFIG_RCU_TORTURE_TEST is not set | 990 | # CONFIG_RCU_TORTURE_TEST is not set |
958 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 991 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -961,18 +994,24 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
961 | # CONFIG_FAULT_INJECTION is not set | 994 | # CONFIG_FAULT_INJECTION is not set |
962 | # CONFIG_LATENCYTOP is not set | 995 | # CONFIG_LATENCYTOP is not set |
963 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 996 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
964 | CONFIG_NOP_TRACER=y | 997 | CONFIG_HAVE_FUNCTION_TRACER=y |
965 | CONFIG_HAVE_FTRACE=y | ||
966 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 998 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
967 | # CONFIG_FTRACE is not set | 999 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
1000 | |||
1001 | # | ||
1002 | # Tracers | ||
1003 | # | ||
1004 | # CONFIG_FUNCTION_TRACER is not set | ||
968 | # CONFIG_SCHED_TRACER is not set | 1005 | # CONFIG_SCHED_TRACER is not set |
969 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1006 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
970 | # CONFIG_BOOT_TRACER is not set | 1007 | # CONFIG_BOOT_TRACER is not set |
1008 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
971 | # CONFIG_STACK_TRACER is not set | 1009 | # CONFIG_STACK_TRACER is not set |
972 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1010 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
973 | # CONFIG_SAMPLES is not set | 1011 | # CONFIG_SAMPLES is not set |
974 | CONFIG_HAVE_ARCH_KGDB=y | 1012 | CONFIG_HAVE_ARCH_KGDB=y |
975 | # CONFIG_KGDB is not set | 1013 | # CONFIG_KGDB is not set |
1014 | CONFIG_PRINT_STACK_DEPTH=64 | ||
976 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1015 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
977 | # CONFIG_DEBUG_STACK_USAGE is not set | 1016 | # CONFIG_DEBUG_STACK_USAGE is not set |
978 | # CONFIG_DEBUG_PAGEALLOC is not set | 1017 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -999,11 +1038,15 @@ CONFIG_CRYPTO=y | |||
999 | # | 1038 | # |
1000 | # CONFIG_CRYPTO_FIPS is not set | 1039 | # CONFIG_CRYPTO_FIPS is not set |
1001 | CONFIG_CRYPTO_ALGAPI=y | 1040 | CONFIG_CRYPTO_ALGAPI=y |
1002 | CONFIG_CRYPTO_AEAD=y | 1041 | CONFIG_CRYPTO_ALGAPI2=y |
1042 | CONFIG_CRYPTO_AEAD2=y | ||
1003 | CONFIG_CRYPTO_BLKCIPHER=y | 1043 | CONFIG_CRYPTO_BLKCIPHER=y |
1044 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1004 | CONFIG_CRYPTO_HASH=y | 1045 | CONFIG_CRYPTO_HASH=y |
1005 | CONFIG_CRYPTO_RNG=y | 1046 | CONFIG_CRYPTO_HASH2=y |
1047 | CONFIG_CRYPTO_RNG2=y | ||
1006 | CONFIG_CRYPTO_MANAGER=y | 1048 | CONFIG_CRYPTO_MANAGER=y |
1049 | CONFIG_CRYPTO_MANAGER2=y | ||
1007 | # CONFIG_CRYPTO_GF128MUL is not set | 1050 | # CONFIG_CRYPTO_GF128MUL is not set |
1008 | # CONFIG_CRYPTO_NULL is not set | 1051 | # CONFIG_CRYPTO_NULL is not set |
1009 | # CONFIG_CRYPTO_CRYPTD is not set | 1052 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/40x/hcu4_defconfig b/arch/powerpc/configs/40x/hcu4_defconfig index 45dcb824503f..8c019d79bf2a 100644 --- a/arch/powerpc/configs/40x/hcu4_defconfig +++ b/arch/powerpc/configs/40x/hcu4_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 08:49:22 2008 | 4 | # Tue Jan 20 08:17:50 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_40x=y | |||
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_4xx=y | 17 | CONFIG_4xx=y |
18 | CONFIG_PPC_MMU_NOHASH=y | ||
18 | # CONFIG_PPC_MM_SLICES is not set | 19 | # CONFIG_PPC_MM_SLICES is not set |
19 | CONFIG_NOT_COHERENT_CACHE=y | 20 | CONFIG_NOT_COHERENT_CACHE=y |
20 | CONFIG_PPC32=y | 21 | CONFIG_PPC32=y |
@@ -40,7 +41,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
40 | CONFIG_PPC=y | 41 | CONFIG_PPC=y |
41 | CONFIG_EARLY_PRINTK=y | 42 | CONFIG_EARLY_PRINTK=y |
42 | CONFIG_GENERIC_NVRAM=y | 43 | CONFIG_GENERIC_NVRAM=y |
43 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 44 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
44 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
45 | CONFIG_PPC_OF=y | 46 | CONFIG_PPC_OF=y |
46 | CONFIG_OF=y | 47 | CONFIG_OF=y |
@@ -71,12 +72,12 @@ CONFIG_POSIX_MQUEUE=y | |||
71 | # CONFIG_AUDIT is not set | 72 | # CONFIG_AUDIT is not set |
72 | # CONFIG_IKCONFIG is not set | 73 | # CONFIG_IKCONFIG is not set |
73 | CONFIG_LOG_BUF_SHIFT=14 | 74 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | ||
75 | CONFIG_GROUP_SCHED=y | 75 | CONFIG_GROUP_SCHED=y |
76 | CONFIG_FAIR_GROUP_SCHED=y | 76 | CONFIG_FAIR_GROUP_SCHED=y |
77 | # CONFIG_RT_GROUP_SCHED is not set | 77 | # CONFIG_RT_GROUP_SCHED is not set |
78 | CONFIG_USER_SCHED=y | 78 | CONFIG_USER_SCHED=y |
79 | # CONFIG_CGROUP_SCHED is not set | 79 | # CONFIG_CGROUP_SCHED is not set |
80 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_SYSFS_DEPRECATED=y | 81 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | 82 | CONFIG_SYSFS_DEPRECATED_V2=y |
82 | # CONFIG_RELAY is not set | 83 | # CONFIG_RELAY is not set |
@@ -89,6 +90,7 @@ CONFIG_EMBEDDED=y | |||
89 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
90 | CONFIG_KALLSYMS=y | 91 | CONFIG_KALLSYMS=y |
91 | CONFIG_KALLSYMS_ALL=y | 92 | CONFIG_KALLSYMS_ALL=y |
93 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
92 | CONFIG_KALLSYMS_EXTRA_PASS=y | 94 | CONFIG_KALLSYMS_EXTRA_PASS=y |
93 | CONFIG_HOTPLUG=y | 95 | CONFIG_HOTPLUG=y |
94 | CONFIG_PRINTK=y | 96 | CONFIG_PRINTK=y |
@@ -111,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
111 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
112 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
113 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
114 | # CONFIG_MARKERS is not set | ||
115 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
116 | # CONFIG_KPROBES is not set | 117 | # CONFIG_KPROBES is not set |
117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -122,7 +123,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
123 | CONFIG_SLABINFO=y | 124 | CONFIG_SLABINFO=y |
124 | CONFIG_RT_MUTEXES=y | 125 | CONFIG_RT_MUTEXES=y |
125 | # CONFIG_TINY_SHMEM is not set | ||
126 | CONFIG_BASE_SMALL=0 | 126 | CONFIG_BASE_SMALL=0 |
127 | CONFIG_MODULES=y | 127 | CONFIG_MODULES=y |
128 | # CONFIG_MODULE_FORCE_LOAD is not set | 128 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -130,11 +130,9 @@ CONFIG_MODULE_UNLOAD=y | |||
130 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 130 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
131 | # CONFIG_MODVERSIONS is not set | 131 | # CONFIG_MODVERSIONS is not set |
132 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 132 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
133 | CONFIG_KMOD=y | ||
134 | CONFIG_BLOCK=y | 133 | CONFIG_BLOCK=y |
135 | CONFIG_LBD=y | 134 | CONFIG_LBD=y |
136 | # CONFIG_BLK_DEV_IO_TRACE is not set | 135 | # CONFIG_BLK_DEV_IO_TRACE is not set |
137 | # CONFIG_LSF is not set | ||
138 | # CONFIG_BLK_DEV_BSG is not set | 136 | # CONFIG_BLK_DEV_BSG is not set |
139 | # CONFIG_BLK_DEV_INTEGRITY is not set | 137 | # CONFIG_BLK_DEV_INTEGRITY is not set |
140 | 138 | ||
@@ -151,6 +149,10 @@ CONFIG_DEFAULT_AS=y | |||
151 | # CONFIG_DEFAULT_NOOP is not set | 149 | # CONFIG_DEFAULT_NOOP is not set |
152 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
153 | CONFIG_CLASSIC_RCU=y | 151 | CONFIG_CLASSIC_RCU=y |
152 | # CONFIG_TREE_RCU is not set | ||
153 | # CONFIG_PREEMPT_RCU is not set | ||
154 | # CONFIG_TREE_RCU_TRACE is not set | ||
155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
154 | # CONFIG_FREEZER is not set | 156 | # CONFIG_FREEZER is not set |
155 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 157 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
156 | 158 | ||
@@ -182,6 +184,7 @@ CONFIG_405GPR=y | |||
182 | # CONFIG_GENERIC_IOMAP is not set | 184 | # CONFIG_GENERIC_IOMAP is not set |
183 | # CONFIG_CPU_FREQ is not set | 185 | # CONFIG_CPU_FREQ is not set |
184 | # CONFIG_FSL_ULI1575 is not set | 186 | # CONFIG_FSL_ULI1575 is not set |
187 | # CONFIG_SIMPLE_GPIO is not set | ||
185 | 188 | ||
186 | # | 189 | # |
187 | # Kernel options | 190 | # Kernel options |
@@ -205,6 +208,7 @@ CONFIG_BINFMT_ELF=y | |||
205 | # CONFIG_BINFMT_MISC is not set | 208 | # CONFIG_BINFMT_MISC is not set |
206 | # CONFIG_MATH_EMULATION is not set | 209 | # CONFIG_MATH_EMULATION is not set |
207 | # CONFIG_IOMMU_HELPER is not set | 210 | # CONFIG_IOMMU_HELPER is not set |
211 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
208 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 212 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
209 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 213 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
210 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 214 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -219,12 +223,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
219 | CONFIG_PAGEFLAGS_EXTENDED=y | 223 | CONFIG_PAGEFLAGS_EXTENDED=y |
220 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 224 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
221 | CONFIG_MIGRATION=y | 225 | CONFIG_MIGRATION=y |
222 | CONFIG_RESOURCES_64BIT=y | ||
223 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 226 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
224 | CONFIG_ZONE_DMA_FLAG=1 | 227 | CONFIG_ZONE_DMA_FLAG=1 |
225 | CONFIG_BOUNCE=y | 228 | CONFIG_BOUNCE=y |
226 | CONFIG_VIRT_TO_BUS=y | 229 | CONFIG_VIRT_TO_BUS=y |
227 | CONFIG_UNEVICTABLE_LRU=y | 230 | CONFIG_UNEVICTABLE_LRU=y |
231 | CONFIG_PPC_4K_PAGES=y | ||
232 | # CONFIG_PPC_16K_PAGES is not set | ||
233 | # CONFIG_PPC_64K_PAGES is not set | ||
228 | CONFIG_FORCE_MAX_ZONEORDER=11 | 234 | CONFIG_FORCE_MAX_ZONEORDER=11 |
229 | CONFIG_PROC_DEVICETREE=y | 235 | CONFIG_PROC_DEVICETREE=y |
230 | # CONFIG_CMDLINE_BOOL is not set | 236 | # CONFIG_CMDLINE_BOOL is not set |
@@ -248,6 +254,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
248 | # CONFIG_PCI_MSI is not set | 254 | # CONFIG_PCI_MSI is not set |
249 | # CONFIG_PCI_LEGACY is not set | 255 | # CONFIG_PCI_LEGACY is not set |
250 | # CONFIG_PCI_DEBUG is not set | 256 | # CONFIG_PCI_DEBUG is not set |
257 | # CONFIG_PCI_STUB is not set | ||
251 | # CONFIG_PCCARD is not set | 258 | # CONFIG_PCCARD is not set |
252 | # CONFIG_HOTPLUG_PCI is not set | 259 | # CONFIG_HOTPLUG_PCI is not set |
253 | # CONFIG_HAS_RAPIDIO is not set | 260 | # CONFIG_HAS_RAPIDIO is not set |
@@ -272,6 +279,7 @@ CONFIG_NET=y | |||
272 | # | 279 | # |
273 | # Networking options | 280 | # Networking options |
274 | # | 281 | # |
282 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
275 | CONFIG_PACKET=y | 283 | CONFIG_PACKET=y |
276 | # CONFIG_PACKET_MMAP is not set | 284 | # CONFIG_PACKET_MMAP is not set |
277 | CONFIG_UNIX=y | 285 | CONFIG_UNIX=y |
@@ -322,6 +330,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
322 | # CONFIG_ECONET is not set | 330 | # CONFIG_ECONET is not set |
323 | # CONFIG_WAN_ROUTER is not set | 331 | # CONFIG_WAN_ROUTER is not set |
324 | # CONFIG_NET_SCHED is not set | 332 | # CONFIG_NET_SCHED is not set |
333 | # CONFIG_DCB is not set | ||
325 | 334 | ||
326 | # | 335 | # |
327 | # Network testing | 336 | # Network testing |
@@ -334,6 +343,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
334 | # CONFIG_AF_RXRPC is not set | 343 | # CONFIG_AF_RXRPC is not set |
335 | # CONFIG_PHONET is not set | 344 | # CONFIG_PHONET is not set |
336 | # CONFIG_WIRELESS is not set | 345 | # CONFIG_WIRELESS is not set |
346 | # CONFIG_WIMAX is not set | ||
337 | # CONFIG_RFKILL is not set | 347 | # CONFIG_RFKILL is not set |
338 | # CONFIG_NET_9P is not set | 348 | # CONFIG_NET_9P is not set |
339 | 349 | ||
@@ -359,6 +369,7 @@ CONFIG_MTD=y | |||
359 | # CONFIG_MTD_DEBUG is not set | 369 | # CONFIG_MTD_DEBUG is not set |
360 | # CONFIG_MTD_CONCAT is not set | 370 | # CONFIG_MTD_CONCAT is not set |
361 | CONFIG_MTD_PARTITIONS=y | 371 | CONFIG_MTD_PARTITIONS=y |
372 | # CONFIG_MTD_TESTS is not set | ||
362 | # CONFIG_MTD_REDBOOT_PARTS is not set | 373 | # CONFIG_MTD_REDBOOT_PARTS is not set |
363 | CONFIG_MTD_CMDLINE_PARTS=y | 374 | CONFIG_MTD_CMDLINE_PARTS=y |
364 | CONFIG_MTD_OF_PARTS=y | 375 | CONFIG_MTD_OF_PARTS=y |
@@ -431,6 +442,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
431 | # CONFIG_MTD_ONENAND is not set | 442 | # CONFIG_MTD_ONENAND is not set |
432 | 443 | ||
433 | # | 444 | # |
445 | # LPDDR flash memory drivers | ||
446 | # | ||
447 | # CONFIG_MTD_LPDDR is not set | ||
448 | # CONFIG_MTD_QINFO_PROBE is not set | ||
449 | |||
450 | # | ||
434 | # UBI - Unsorted block images | 451 | # UBI - Unsorted block images |
435 | # | 452 | # |
436 | # CONFIG_MTD_UBI is not set | 453 | # CONFIG_MTD_UBI is not set |
@@ -461,6 +478,7 @@ CONFIG_MISC_DEVICES=y | |||
461 | # CONFIG_TIFM_CORE is not set | 478 | # CONFIG_TIFM_CORE is not set |
462 | # CONFIG_ENCLOSURE_SERVICES is not set | 479 | # CONFIG_ENCLOSURE_SERVICES is not set |
463 | # CONFIG_HP_ILO is not set | 480 | # CONFIG_HP_ILO is not set |
481 | # CONFIG_C2PORT is not set | ||
464 | CONFIG_HAVE_IDE=y | 482 | CONFIG_HAVE_IDE=y |
465 | # CONFIG_IDE is not set | 483 | # CONFIG_IDE is not set |
466 | 484 | ||
@@ -543,6 +561,7 @@ CONFIG_NETDEV_1000=y | |||
543 | # CONFIG_JME is not set | 561 | # CONFIG_JME is not set |
544 | CONFIG_NETDEV_10000=y | 562 | CONFIG_NETDEV_10000=y |
545 | # CONFIG_CHELSIO_T1 is not set | 563 | # CONFIG_CHELSIO_T1 is not set |
564 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
546 | # CONFIG_CHELSIO_T3 is not set | 565 | # CONFIG_CHELSIO_T3 is not set |
547 | # CONFIG_ENIC is not set | 566 | # CONFIG_ENIC is not set |
548 | # CONFIG_IXGBE is not set | 567 | # CONFIG_IXGBE is not set |
@@ -565,6 +584,10 @@ CONFIG_NETDEV_10000=y | |||
565 | # CONFIG_WLAN_PRE80211 is not set | 584 | # CONFIG_WLAN_PRE80211 is not set |
566 | # CONFIG_WLAN_80211 is not set | 585 | # CONFIG_WLAN_80211 is not set |
567 | # CONFIG_IWLWIFI_LEDS is not set | 586 | # CONFIG_IWLWIFI_LEDS is not set |
587 | |||
588 | # | ||
589 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
590 | # | ||
568 | # CONFIG_WAN is not set | 591 | # CONFIG_WAN is not set |
569 | # CONFIG_FDDI is not set | 592 | # CONFIG_FDDI is not set |
570 | # CONFIG_HIPPI is not set | 593 | # CONFIG_HIPPI is not set |
@@ -617,9 +640,12 @@ CONFIG_SERIAL_CORE=y | |||
617 | CONFIG_SERIAL_CORE_CONSOLE=y | 640 | CONFIG_SERIAL_CORE_CONSOLE=y |
618 | # CONFIG_SERIAL_JSM is not set | 641 | # CONFIG_SERIAL_JSM is not set |
619 | CONFIG_SERIAL_OF_PLATFORM=y | 642 | CONFIG_SERIAL_OF_PLATFORM=y |
643 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
620 | CONFIG_UNIX98_PTYS=y | 644 | CONFIG_UNIX98_PTYS=y |
645 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
621 | CONFIG_LEGACY_PTYS=y | 646 | CONFIG_LEGACY_PTYS=y |
622 | CONFIG_LEGACY_PTY_COUNT=256 | 647 | CONFIG_LEGACY_PTY_COUNT=256 |
648 | # CONFIG_HVC_UDBG is not set | ||
623 | # CONFIG_IPMI_HANDLER is not set | 649 | # CONFIG_IPMI_HANDLER is not set |
624 | # CONFIG_HW_RANDOM is not set | 650 | # CONFIG_HW_RANDOM is not set |
625 | # CONFIG_NVRAM is not set | 651 | # CONFIG_NVRAM is not set |
@@ -639,11 +665,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
639 | # CONFIG_THERMAL is not set | 665 | # CONFIG_THERMAL is not set |
640 | # CONFIG_THERMAL_HWMON is not set | 666 | # CONFIG_THERMAL_HWMON is not set |
641 | # CONFIG_WATCHDOG is not set | 667 | # CONFIG_WATCHDOG is not set |
668 | CONFIG_SSB_POSSIBLE=y | ||
642 | 669 | ||
643 | # | 670 | # |
644 | # Sonics Silicon Backplane | 671 | # Sonics Silicon Backplane |
645 | # | 672 | # |
646 | CONFIG_SSB_POSSIBLE=y | ||
647 | # CONFIG_SSB is not set | 673 | # CONFIG_SSB is not set |
648 | 674 | ||
649 | # | 675 | # |
@@ -653,7 +679,7 @@ CONFIG_SSB_POSSIBLE=y | |||
653 | # CONFIG_MFD_SM501 is not set | 679 | # CONFIG_MFD_SM501 is not set |
654 | # CONFIG_HTC_PASIC3 is not set | 680 | # CONFIG_HTC_PASIC3 is not set |
655 | # CONFIG_MFD_TMIO is not set | 681 | # CONFIG_MFD_TMIO is not set |
656 | # CONFIG_MFD_WM8400 is not set | 682 | # CONFIG_REGULATOR is not set |
657 | 683 | ||
658 | # | 684 | # |
659 | # Multimedia devices | 685 | # Multimedia devices |
@@ -712,7 +738,9 @@ CONFIG_EXT2_FS=y | |||
712 | # CONFIG_FS_POSIX_ACL is not set | 738 | # CONFIG_FS_POSIX_ACL is not set |
713 | CONFIG_FILE_LOCKING=y | 739 | CONFIG_FILE_LOCKING=y |
714 | # CONFIG_XFS_FS is not set | 740 | # CONFIG_XFS_FS is not set |
741 | # CONFIG_GFS2_FS is not set | ||
715 | # CONFIG_OCFS2_FS is not set | 742 | # CONFIG_OCFS2_FS is not set |
743 | # CONFIG_BTRFS_FS is not set | ||
716 | CONFIG_DNOTIFY=y | 744 | CONFIG_DNOTIFY=y |
717 | CONFIG_INOTIFY=y | 745 | CONFIG_INOTIFY=y |
718 | CONFIG_INOTIFY_USER=y | 746 | CONFIG_INOTIFY_USER=y |
@@ -746,10 +774,7 @@ CONFIG_TMPFS=y | |||
746 | # CONFIG_TMPFS_POSIX_ACL is not set | 774 | # CONFIG_TMPFS_POSIX_ACL is not set |
747 | # CONFIG_HUGETLB_PAGE is not set | 775 | # CONFIG_HUGETLB_PAGE is not set |
748 | # CONFIG_CONFIGFS_FS is not set | 776 | # CONFIG_CONFIGFS_FS is not set |
749 | 777 | CONFIG_MISC_FILESYSTEMS=y | |
750 | # | ||
751 | # Miscellaneous filesystems | ||
752 | # | ||
753 | # CONFIG_ADFS_FS is not set | 778 | # CONFIG_ADFS_FS is not set |
754 | # CONFIG_AFFS_FS is not set | 779 | # CONFIG_AFFS_FS is not set |
755 | # CONFIG_HFS_FS is not set | 780 | # CONFIG_HFS_FS is not set |
@@ -759,6 +784,7 @@ CONFIG_TMPFS=y | |||
759 | # CONFIG_EFS_FS is not set | 784 | # CONFIG_EFS_FS is not set |
760 | # CONFIG_JFFS2_FS is not set | 785 | # CONFIG_JFFS2_FS is not set |
761 | CONFIG_CRAMFS=y | 786 | CONFIG_CRAMFS=y |
787 | # CONFIG_SQUASHFS is not set | ||
762 | # CONFIG_VXFS_FS is not set | 788 | # CONFIG_VXFS_FS is not set |
763 | # CONFIG_MINIX_FS is not set | 789 | # CONFIG_MINIX_FS is not set |
764 | # CONFIG_OMFS_FS is not set | 790 | # CONFIG_OMFS_FS is not set |
@@ -799,6 +825,7 @@ CONFIG_MSDOS_PARTITION=y | |||
799 | # Library routines | 825 | # Library routines |
800 | # | 826 | # |
801 | CONFIG_BITREVERSE=y | 827 | CONFIG_BITREVERSE=y |
828 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
802 | # CONFIG_CRC_CCITT is not set | 829 | # CONFIG_CRC_CCITT is not set |
803 | # CONFIG_CRC16 is not set | 830 | # CONFIG_CRC16 is not set |
804 | # CONFIG_CRC_T10DIF is not set | 831 | # CONFIG_CRC_T10DIF is not set |
@@ -849,6 +876,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
849 | # CONFIG_DEBUG_MEMORY_INIT is not set | 876 | # CONFIG_DEBUG_MEMORY_INIT is not set |
850 | # CONFIG_DEBUG_LIST is not set | 877 | # CONFIG_DEBUG_LIST is not set |
851 | # CONFIG_DEBUG_SG is not set | 878 | # CONFIG_DEBUG_SG is not set |
879 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
852 | # CONFIG_BOOT_PRINTK_DELAY is not set | 880 | # CONFIG_BOOT_PRINTK_DELAY is not set |
853 | # CONFIG_RCU_TORTURE_TEST is not set | 881 | # CONFIG_RCU_TORTURE_TEST is not set |
854 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 882 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -857,18 +885,24 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
857 | # CONFIG_FAULT_INJECTION is not set | 885 | # CONFIG_FAULT_INJECTION is not set |
858 | # CONFIG_LATENCYTOP is not set | 886 | # CONFIG_LATENCYTOP is not set |
859 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 887 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
860 | CONFIG_NOP_TRACER=y | 888 | CONFIG_HAVE_FUNCTION_TRACER=y |
861 | CONFIG_HAVE_FTRACE=y | ||
862 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 889 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
863 | # CONFIG_FTRACE is not set | 890 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
891 | |||
892 | # | ||
893 | # Tracers | ||
894 | # | ||
895 | # CONFIG_FUNCTION_TRACER is not set | ||
864 | # CONFIG_SCHED_TRACER is not set | 896 | # CONFIG_SCHED_TRACER is not set |
865 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 897 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
866 | # CONFIG_BOOT_TRACER is not set | 898 | # CONFIG_BOOT_TRACER is not set |
899 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
867 | # CONFIG_STACK_TRACER is not set | 900 | # CONFIG_STACK_TRACER is not set |
868 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 901 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
869 | # CONFIG_SAMPLES is not set | 902 | # CONFIG_SAMPLES is not set |
870 | CONFIG_HAVE_ARCH_KGDB=y | 903 | CONFIG_HAVE_ARCH_KGDB=y |
871 | # CONFIG_KGDB is not set | 904 | # CONFIG_KGDB is not set |
905 | CONFIG_PRINT_STACK_DEPTH=64 | ||
872 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 906 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
873 | # CONFIG_DEBUG_STACK_USAGE is not set | 907 | # CONFIG_DEBUG_STACK_USAGE is not set |
874 | # CONFIG_DEBUG_PAGEALLOC is not set | 908 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -895,11 +929,15 @@ CONFIG_CRYPTO=y | |||
895 | # | 929 | # |
896 | # CONFIG_CRYPTO_FIPS is not set | 930 | # CONFIG_CRYPTO_FIPS is not set |
897 | CONFIG_CRYPTO_ALGAPI=y | 931 | CONFIG_CRYPTO_ALGAPI=y |
898 | CONFIG_CRYPTO_AEAD=y | 932 | CONFIG_CRYPTO_ALGAPI2=y |
933 | CONFIG_CRYPTO_AEAD2=y | ||
899 | CONFIG_CRYPTO_BLKCIPHER=y | 934 | CONFIG_CRYPTO_BLKCIPHER=y |
935 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
900 | CONFIG_CRYPTO_HASH=y | 936 | CONFIG_CRYPTO_HASH=y |
901 | CONFIG_CRYPTO_RNG=y | 937 | CONFIG_CRYPTO_HASH2=y |
938 | CONFIG_CRYPTO_RNG2=y | ||
902 | CONFIG_CRYPTO_MANAGER=y | 939 | CONFIG_CRYPTO_MANAGER=y |
940 | CONFIG_CRYPTO_MANAGER2=y | ||
903 | # CONFIG_CRYPTO_GF128MUL is not set | 941 | # CONFIG_CRYPTO_GF128MUL is not set |
904 | # CONFIG_CRYPTO_NULL is not set | 942 | # CONFIG_CRYPTO_NULL is not set |
905 | # CONFIG_CRYPTO_CRYPTD is not set | 943 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/40x/kilauea_defconfig b/arch/powerpc/configs/40x/kilauea_defconfig index e2f3695d9d0b..9917a09bad3a 100644 --- a/arch/powerpc/configs/40x/kilauea_defconfig +++ b/arch/powerpc/configs/40x/kilauea_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 08:49:23 2008 | 4 | # Tue Jan 20 08:17:52 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_40x=y | |||
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_4xx=y | 17 | CONFIG_4xx=y |
18 | CONFIG_PPC_MMU_NOHASH=y | ||
18 | # CONFIG_PPC_MM_SLICES is not set | 19 | # CONFIG_PPC_MM_SLICES is not set |
19 | CONFIG_NOT_COHERENT_CACHE=y | 20 | CONFIG_NOT_COHERENT_CACHE=y |
20 | CONFIG_PPC32=y | 21 | CONFIG_PPC32=y |
@@ -40,7 +41,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
40 | CONFIG_PPC=y | 41 | CONFIG_PPC=y |
41 | CONFIG_EARLY_PRINTK=y | 42 | CONFIG_EARLY_PRINTK=y |
42 | CONFIG_GENERIC_NVRAM=y | 43 | CONFIG_GENERIC_NVRAM=y |
43 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 44 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
44 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
45 | CONFIG_PPC_OF=y | 46 | CONFIG_PPC_OF=y |
46 | CONFIG_OF=y | 47 | CONFIG_OF=y |
@@ -71,12 +72,12 @@ CONFIG_POSIX_MQUEUE=y | |||
71 | # CONFIG_AUDIT is not set | 72 | # CONFIG_AUDIT is not set |
72 | # CONFIG_IKCONFIG is not set | 73 | # CONFIG_IKCONFIG is not set |
73 | CONFIG_LOG_BUF_SHIFT=14 | 74 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | ||
75 | CONFIG_GROUP_SCHED=y | 75 | CONFIG_GROUP_SCHED=y |
76 | # CONFIG_FAIR_GROUP_SCHED is not set | 76 | # CONFIG_FAIR_GROUP_SCHED is not set |
77 | # CONFIG_RT_GROUP_SCHED is not set | 77 | # CONFIG_RT_GROUP_SCHED is not set |
78 | CONFIG_USER_SCHED=y | 78 | CONFIG_USER_SCHED=y |
79 | # CONFIG_CGROUP_SCHED is not set | 79 | # CONFIG_CGROUP_SCHED is not set |
80 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_SYSFS_DEPRECATED=y | 81 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | 82 | CONFIG_SYSFS_DEPRECATED_V2=y |
82 | # CONFIG_RELAY is not set | 83 | # CONFIG_RELAY is not set |
@@ -89,6 +90,7 @@ CONFIG_EMBEDDED=y | |||
89 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
90 | CONFIG_KALLSYMS=y | 91 | CONFIG_KALLSYMS=y |
91 | CONFIG_KALLSYMS_ALL=y | 92 | CONFIG_KALLSYMS_ALL=y |
93 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
92 | CONFIG_KALLSYMS_EXTRA_PASS=y | 94 | CONFIG_KALLSYMS_EXTRA_PASS=y |
93 | CONFIG_HOTPLUG=y | 95 | CONFIG_HOTPLUG=y |
94 | CONFIG_PRINTK=y | 96 | CONFIG_PRINTK=y |
@@ -111,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
111 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
112 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
113 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
114 | # CONFIG_MARKERS is not set | ||
115 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
116 | # CONFIG_KPROBES is not set | 117 | # CONFIG_KPROBES is not set |
117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -122,7 +123,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
123 | CONFIG_SLABINFO=y | 124 | CONFIG_SLABINFO=y |
124 | CONFIG_RT_MUTEXES=y | 125 | CONFIG_RT_MUTEXES=y |
125 | # CONFIG_TINY_SHMEM is not set | ||
126 | CONFIG_BASE_SMALL=0 | 126 | CONFIG_BASE_SMALL=0 |
127 | CONFIG_MODULES=y | 127 | CONFIG_MODULES=y |
128 | # CONFIG_MODULE_FORCE_LOAD is not set | 128 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -130,11 +130,9 @@ CONFIG_MODULE_UNLOAD=y | |||
130 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 130 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
131 | # CONFIG_MODVERSIONS is not set | 131 | # CONFIG_MODVERSIONS is not set |
132 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 132 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
133 | CONFIG_KMOD=y | ||
134 | CONFIG_BLOCK=y | 133 | CONFIG_BLOCK=y |
135 | CONFIG_LBD=y | 134 | CONFIG_LBD=y |
136 | # CONFIG_BLK_DEV_IO_TRACE is not set | 135 | # CONFIG_BLK_DEV_IO_TRACE is not set |
137 | # CONFIG_LSF is not set | ||
138 | # CONFIG_BLK_DEV_BSG is not set | 136 | # CONFIG_BLK_DEV_BSG is not set |
139 | # CONFIG_BLK_DEV_INTEGRITY is not set | 137 | # CONFIG_BLK_DEV_INTEGRITY is not set |
140 | 138 | ||
@@ -151,6 +149,10 @@ CONFIG_DEFAULT_AS=y | |||
151 | # CONFIG_DEFAULT_NOOP is not set | 149 | # CONFIG_DEFAULT_NOOP is not set |
152 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
153 | CONFIG_CLASSIC_RCU=y | 151 | CONFIG_CLASSIC_RCU=y |
152 | # CONFIG_TREE_RCU is not set | ||
153 | # CONFIG_PREEMPT_RCU is not set | ||
154 | # CONFIG_TREE_RCU_TRACE is not set | ||
155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
154 | # CONFIG_FREEZER is not set | 156 | # CONFIG_FREEZER is not set |
155 | CONFIG_PPC4xx_PCI_EXPRESS=y | 157 | CONFIG_PPC4xx_PCI_EXPRESS=y |
156 | 158 | ||
@@ -182,6 +184,7 @@ CONFIG_405EX=y | |||
182 | # CONFIG_GENERIC_IOMAP is not set | 184 | # CONFIG_GENERIC_IOMAP is not set |
183 | # CONFIG_CPU_FREQ is not set | 185 | # CONFIG_CPU_FREQ is not set |
184 | # CONFIG_FSL_ULI1575 is not set | 186 | # CONFIG_FSL_ULI1575 is not set |
187 | # CONFIG_SIMPLE_GPIO is not set | ||
185 | 188 | ||
186 | # | 189 | # |
187 | # Kernel options | 190 | # Kernel options |
@@ -205,6 +208,7 @@ CONFIG_BINFMT_ELF=y | |||
205 | # CONFIG_BINFMT_MISC is not set | 208 | # CONFIG_BINFMT_MISC is not set |
206 | # CONFIG_MATH_EMULATION is not set | 209 | # CONFIG_MATH_EMULATION is not set |
207 | # CONFIG_IOMMU_HELPER is not set | 210 | # CONFIG_IOMMU_HELPER is not set |
211 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
208 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 212 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
209 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 213 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
210 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 214 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -219,12 +223,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
219 | CONFIG_PAGEFLAGS_EXTENDED=y | 223 | CONFIG_PAGEFLAGS_EXTENDED=y |
220 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 224 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
221 | CONFIG_MIGRATION=y | 225 | CONFIG_MIGRATION=y |
222 | # CONFIG_RESOURCES_64BIT is not set | ||
223 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 226 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
224 | CONFIG_ZONE_DMA_FLAG=1 | 227 | CONFIG_ZONE_DMA_FLAG=1 |
225 | CONFIG_BOUNCE=y | 228 | CONFIG_BOUNCE=y |
226 | CONFIG_VIRT_TO_BUS=y | 229 | CONFIG_VIRT_TO_BUS=y |
227 | CONFIG_UNEVICTABLE_LRU=y | 230 | CONFIG_UNEVICTABLE_LRU=y |
231 | CONFIG_PPC_4K_PAGES=y | ||
232 | # CONFIG_PPC_16K_PAGES is not set | ||
233 | # CONFIG_PPC_64K_PAGES is not set | ||
228 | CONFIG_FORCE_MAX_ZONEORDER=11 | 234 | CONFIG_FORCE_MAX_ZONEORDER=11 |
229 | CONFIG_PROC_DEVICETREE=y | 235 | CONFIG_PROC_DEVICETREE=y |
230 | # CONFIG_CMDLINE_BOOL is not set | 236 | # CONFIG_CMDLINE_BOOL is not set |
@@ -248,6 +254,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
248 | # CONFIG_PCI_MSI is not set | 254 | # CONFIG_PCI_MSI is not set |
249 | CONFIG_PCI_LEGACY=y | 255 | CONFIG_PCI_LEGACY=y |
250 | # CONFIG_PCI_DEBUG is not set | 256 | # CONFIG_PCI_DEBUG is not set |
257 | # CONFIG_PCI_STUB is not set | ||
251 | # CONFIG_PCCARD is not set | 258 | # CONFIG_PCCARD is not set |
252 | # CONFIG_HOTPLUG_PCI is not set | 259 | # CONFIG_HOTPLUG_PCI is not set |
253 | # CONFIG_HAS_RAPIDIO is not set | 260 | # CONFIG_HAS_RAPIDIO is not set |
@@ -272,6 +279,7 @@ CONFIG_NET=y | |||
272 | # | 279 | # |
273 | # Networking options | 280 | # Networking options |
274 | # | 281 | # |
282 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
275 | CONFIG_PACKET=y | 283 | CONFIG_PACKET=y |
276 | # CONFIG_PACKET_MMAP is not set | 284 | # CONFIG_PACKET_MMAP is not set |
277 | CONFIG_UNIX=y | 285 | CONFIG_UNIX=y |
@@ -322,6 +330,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
322 | # CONFIG_ECONET is not set | 330 | # CONFIG_ECONET is not set |
323 | # CONFIG_WAN_ROUTER is not set | 331 | # CONFIG_WAN_ROUTER is not set |
324 | # CONFIG_NET_SCHED is not set | 332 | # CONFIG_NET_SCHED is not set |
333 | # CONFIG_DCB is not set | ||
325 | 334 | ||
326 | # | 335 | # |
327 | # Network testing | 336 | # Network testing |
@@ -334,6 +343,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
334 | # CONFIG_AF_RXRPC is not set | 343 | # CONFIG_AF_RXRPC is not set |
335 | # CONFIG_PHONET is not set | 344 | # CONFIG_PHONET is not set |
336 | # CONFIG_WIRELESS is not set | 345 | # CONFIG_WIRELESS is not set |
346 | # CONFIG_WIMAX is not set | ||
337 | # CONFIG_RFKILL is not set | 347 | # CONFIG_RFKILL is not set |
338 | # CONFIG_NET_9P is not set | 348 | # CONFIG_NET_9P is not set |
339 | 349 | ||
@@ -359,6 +369,7 @@ CONFIG_MTD=y | |||
359 | # CONFIG_MTD_DEBUG is not set | 369 | # CONFIG_MTD_DEBUG is not set |
360 | # CONFIG_MTD_CONCAT is not set | 370 | # CONFIG_MTD_CONCAT is not set |
361 | CONFIG_MTD_PARTITIONS=y | 371 | CONFIG_MTD_PARTITIONS=y |
372 | # CONFIG_MTD_TESTS is not set | ||
362 | # CONFIG_MTD_REDBOOT_PARTS is not set | 373 | # CONFIG_MTD_REDBOOT_PARTS is not set |
363 | CONFIG_MTD_CMDLINE_PARTS=y | 374 | CONFIG_MTD_CMDLINE_PARTS=y |
364 | CONFIG_MTD_OF_PARTS=y | 375 | CONFIG_MTD_OF_PARTS=y |
@@ -431,6 +442,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
431 | # CONFIG_MTD_ONENAND is not set | 442 | # CONFIG_MTD_ONENAND is not set |
432 | 443 | ||
433 | # | 444 | # |
445 | # LPDDR flash memory drivers | ||
446 | # | ||
447 | # CONFIG_MTD_LPDDR is not set | ||
448 | # CONFIG_MTD_QINFO_PROBE is not set | ||
449 | |||
450 | # | ||
434 | # UBI - Unsorted block images | 451 | # UBI - Unsorted block images |
435 | # | 452 | # |
436 | # CONFIG_MTD_UBI is not set | 453 | # CONFIG_MTD_UBI is not set |
@@ -524,6 +541,10 @@ CONFIG_IBM_NEW_EMAC_EMAC4=y | |||
524 | # CONFIG_WLAN_PRE80211 is not set | 541 | # CONFIG_WLAN_PRE80211 is not set |
525 | # CONFIG_WLAN_80211 is not set | 542 | # CONFIG_WLAN_80211 is not set |
526 | # CONFIG_IWLWIFI_LEDS is not set | 543 | # CONFIG_IWLWIFI_LEDS is not set |
544 | |||
545 | # | ||
546 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
547 | # | ||
527 | # CONFIG_WAN is not set | 548 | # CONFIG_WAN is not set |
528 | # CONFIG_FDDI is not set | 549 | # CONFIG_FDDI is not set |
529 | # CONFIG_HIPPI is not set | 550 | # CONFIG_HIPPI is not set |
@@ -576,9 +597,12 @@ CONFIG_SERIAL_CORE=y | |||
576 | CONFIG_SERIAL_CORE_CONSOLE=y | 597 | CONFIG_SERIAL_CORE_CONSOLE=y |
577 | # CONFIG_SERIAL_JSM is not set | 598 | # CONFIG_SERIAL_JSM is not set |
578 | CONFIG_SERIAL_OF_PLATFORM=y | 599 | CONFIG_SERIAL_OF_PLATFORM=y |
600 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
579 | CONFIG_UNIX98_PTYS=y | 601 | CONFIG_UNIX98_PTYS=y |
602 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
580 | CONFIG_LEGACY_PTYS=y | 603 | CONFIG_LEGACY_PTYS=y |
581 | CONFIG_LEGACY_PTY_COUNT=256 | 604 | CONFIG_LEGACY_PTY_COUNT=256 |
605 | # CONFIG_HVC_UDBG is not set | ||
582 | # CONFIG_IPMI_HANDLER is not set | 606 | # CONFIG_IPMI_HANDLER is not set |
583 | # CONFIG_HW_RANDOM is not set | 607 | # CONFIG_HW_RANDOM is not set |
584 | # CONFIG_NVRAM is not set | 608 | # CONFIG_NVRAM is not set |
@@ -597,11 +621,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
597 | # CONFIG_HWMON is not set | 621 | # CONFIG_HWMON is not set |
598 | CONFIG_THERMAL=y | 622 | CONFIG_THERMAL=y |
599 | # CONFIG_WATCHDOG is not set | 623 | # CONFIG_WATCHDOG is not set |
624 | CONFIG_SSB_POSSIBLE=y | ||
600 | 625 | ||
601 | # | 626 | # |
602 | # Sonics Silicon Backplane | 627 | # Sonics Silicon Backplane |
603 | # | 628 | # |
604 | CONFIG_SSB_POSSIBLE=y | ||
605 | # CONFIG_SSB is not set | 629 | # CONFIG_SSB is not set |
606 | 630 | ||
607 | # | 631 | # |
@@ -611,7 +635,7 @@ CONFIG_SSB_POSSIBLE=y | |||
611 | # CONFIG_MFD_SM501 is not set | 635 | # CONFIG_MFD_SM501 is not set |
612 | # CONFIG_HTC_PASIC3 is not set | 636 | # CONFIG_HTC_PASIC3 is not set |
613 | # CONFIG_MFD_TMIO is not set | 637 | # CONFIG_MFD_TMIO is not set |
614 | # CONFIG_MFD_WM8400 is not set | 638 | # CONFIG_REGULATOR is not set |
615 | 639 | ||
616 | # | 640 | # |
617 | # Multimedia devices | 641 | # Multimedia devices |
@@ -670,7 +694,9 @@ CONFIG_EXT2_FS=y | |||
670 | # CONFIG_FS_POSIX_ACL is not set | 694 | # CONFIG_FS_POSIX_ACL is not set |
671 | CONFIG_FILE_LOCKING=y | 695 | CONFIG_FILE_LOCKING=y |
672 | # CONFIG_XFS_FS is not set | 696 | # CONFIG_XFS_FS is not set |
697 | # CONFIG_GFS2_FS is not set | ||
673 | # CONFIG_OCFS2_FS is not set | 698 | # CONFIG_OCFS2_FS is not set |
699 | # CONFIG_BTRFS_FS is not set | ||
674 | CONFIG_DNOTIFY=y | 700 | CONFIG_DNOTIFY=y |
675 | CONFIG_INOTIFY=y | 701 | CONFIG_INOTIFY=y |
676 | CONFIG_INOTIFY_USER=y | 702 | CONFIG_INOTIFY_USER=y |
@@ -704,10 +730,7 @@ CONFIG_TMPFS=y | |||
704 | # CONFIG_TMPFS_POSIX_ACL is not set | 730 | # CONFIG_TMPFS_POSIX_ACL is not set |
705 | # CONFIG_HUGETLB_PAGE is not set | 731 | # CONFIG_HUGETLB_PAGE is not set |
706 | # CONFIG_CONFIGFS_FS is not set | 732 | # CONFIG_CONFIGFS_FS is not set |
707 | 733 | CONFIG_MISC_FILESYSTEMS=y | |
708 | # | ||
709 | # Miscellaneous filesystems | ||
710 | # | ||
711 | # CONFIG_ADFS_FS is not set | 734 | # CONFIG_ADFS_FS is not set |
712 | # CONFIG_AFFS_FS is not set | 735 | # CONFIG_AFFS_FS is not set |
713 | # CONFIG_HFS_FS is not set | 736 | # CONFIG_HFS_FS is not set |
@@ -717,6 +740,7 @@ CONFIG_TMPFS=y | |||
717 | # CONFIG_EFS_FS is not set | 740 | # CONFIG_EFS_FS is not set |
718 | # CONFIG_JFFS2_FS is not set | 741 | # CONFIG_JFFS2_FS is not set |
719 | CONFIG_CRAMFS=y | 742 | CONFIG_CRAMFS=y |
743 | # CONFIG_SQUASHFS is not set | ||
720 | # CONFIG_VXFS_FS is not set | 744 | # CONFIG_VXFS_FS is not set |
721 | # CONFIG_MINIX_FS is not set | 745 | # CONFIG_MINIX_FS is not set |
722 | # CONFIG_OMFS_FS is not set | 746 | # CONFIG_OMFS_FS is not set |
@@ -757,6 +781,7 @@ CONFIG_MSDOS_PARTITION=y | |||
757 | # Library routines | 781 | # Library routines |
758 | # | 782 | # |
759 | CONFIG_BITREVERSE=y | 783 | CONFIG_BITREVERSE=y |
784 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
760 | # CONFIG_CRC_CCITT is not set | 785 | # CONFIG_CRC_CCITT is not set |
761 | # CONFIG_CRC16 is not set | 786 | # CONFIG_CRC16 is not set |
762 | # CONFIG_CRC_T10DIF is not set | 787 | # CONFIG_CRC_T10DIF is not set |
@@ -807,6 +832,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
807 | # CONFIG_DEBUG_MEMORY_INIT is not set | 832 | # CONFIG_DEBUG_MEMORY_INIT is not set |
808 | # CONFIG_DEBUG_LIST is not set | 833 | # CONFIG_DEBUG_LIST is not set |
809 | # CONFIG_DEBUG_SG is not set | 834 | # CONFIG_DEBUG_SG is not set |
835 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
810 | # CONFIG_BOOT_PRINTK_DELAY is not set | 836 | # CONFIG_BOOT_PRINTK_DELAY is not set |
811 | # CONFIG_RCU_TORTURE_TEST is not set | 837 | # CONFIG_RCU_TORTURE_TEST is not set |
812 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 838 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -815,18 +841,24 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
815 | # CONFIG_FAULT_INJECTION is not set | 841 | # CONFIG_FAULT_INJECTION is not set |
816 | # CONFIG_LATENCYTOP is not set | 842 | # CONFIG_LATENCYTOP is not set |
817 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 843 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
818 | CONFIG_NOP_TRACER=y | 844 | CONFIG_HAVE_FUNCTION_TRACER=y |
819 | CONFIG_HAVE_FTRACE=y | ||
820 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 845 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
821 | # CONFIG_FTRACE is not set | 846 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
847 | |||
848 | # | ||
849 | # Tracers | ||
850 | # | ||
851 | # CONFIG_FUNCTION_TRACER is not set | ||
822 | # CONFIG_SCHED_TRACER is not set | 852 | # CONFIG_SCHED_TRACER is not set |
823 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 853 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
824 | # CONFIG_BOOT_TRACER is not set | 854 | # CONFIG_BOOT_TRACER is not set |
855 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
825 | # CONFIG_STACK_TRACER is not set | 856 | # CONFIG_STACK_TRACER is not set |
826 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 857 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
827 | # CONFIG_SAMPLES is not set | 858 | # CONFIG_SAMPLES is not set |
828 | CONFIG_HAVE_ARCH_KGDB=y | 859 | CONFIG_HAVE_ARCH_KGDB=y |
829 | # CONFIG_KGDB is not set | 860 | # CONFIG_KGDB is not set |
861 | CONFIG_PRINT_STACK_DEPTH=64 | ||
830 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 862 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
831 | # CONFIG_DEBUG_STACK_USAGE is not set | 863 | # CONFIG_DEBUG_STACK_USAGE is not set |
832 | # CONFIG_DEBUG_PAGEALLOC is not set | 864 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -853,11 +885,15 @@ CONFIG_CRYPTO=y | |||
853 | # | 885 | # |
854 | # CONFIG_CRYPTO_FIPS is not set | 886 | # CONFIG_CRYPTO_FIPS is not set |
855 | CONFIG_CRYPTO_ALGAPI=y | 887 | CONFIG_CRYPTO_ALGAPI=y |
856 | CONFIG_CRYPTO_AEAD=y | 888 | CONFIG_CRYPTO_ALGAPI2=y |
889 | CONFIG_CRYPTO_AEAD2=y | ||
857 | CONFIG_CRYPTO_BLKCIPHER=y | 890 | CONFIG_CRYPTO_BLKCIPHER=y |
891 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
858 | CONFIG_CRYPTO_HASH=y | 892 | CONFIG_CRYPTO_HASH=y |
859 | CONFIG_CRYPTO_RNG=y | 893 | CONFIG_CRYPTO_HASH2=y |
894 | CONFIG_CRYPTO_RNG2=y | ||
860 | CONFIG_CRYPTO_MANAGER=y | 895 | CONFIG_CRYPTO_MANAGER=y |
896 | CONFIG_CRYPTO_MANAGER2=y | ||
861 | # CONFIG_CRYPTO_GF128MUL is not set | 897 | # CONFIG_CRYPTO_GF128MUL is not set |
862 | # CONFIG_CRYPTO_NULL is not set | 898 | # CONFIG_CRYPTO_NULL is not set |
863 | # CONFIG_CRYPTO_CRYPTD is not set | 899 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/40x/makalu_defconfig b/arch/powerpc/configs/40x/makalu_defconfig index 413c778ecd7c..58bf2ac2e0dd 100644 --- a/arch/powerpc/configs/40x/makalu_defconfig +++ b/arch/powerpc/configs/40x/makalu_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 08:49:25 2008 | 4 | # Tue Jan 20 08:17:53 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_40x=y | |||
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_4xx=y | 17 | CONFIG_4xx=y |
18 | CONFIG_PPC_MMU_NOHASH=y | ||
18 | # CONFIG_PPC_MM_SLICES is not set | 19 | # CONFIG_PPC_MM_SLICES is not set |
19 | CONFIG_NOT_COHERENT_CACHE=y | 20 | CONFIG_NOT_COHERENT_CACHE=y |
20 | CONFIG_PPC32=y | 21 | CONFIG_PPC32=y |
@@ -40,7 +41,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
40 | CONFIG_PPC=y | 41 | CONFIG_PPC=y |
41 | CONFIG_EARLY_PRINTK=y | 42 | CONFIG_EARLY_PRINTK=y |
42 | CONFIG_GENERIC_NVRAM=y | 43 | CONFIG_GENERIC_NVRAM=y |
43 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 44 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
44 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
45 | CONFIG_PPC_OF=y | 46 | CONFIG_PPC_OF=y |
46 | CONFIG_OF=y | 47 | CONFIG_OF=y |
@@ -71,12 +72,12 @@ CONFIG_POSIX_MQUEUE=y | |||
71 | # CONFIG_AUDIT is not set | 72 | # CONFIG_AUDIT is not set |
72 | # CONFIG_IKCONFIG is not set | 73 | # CONFIG_IKCONFIG is not set |
73 | CONFIG_LOG_BUF_SHIFT=14 | 74 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | ||
75 | CONFIG_GROUP_SCHED=y | 75 | CONFIG_GROUP_SCHED=y |
76 | # CONFIG_FAIR_GROUP_SCHED is not set | 76 | # CONFIG_FAIR_GROUP_SCHED is not set |
77 | # CONFIG_RT_GROUP_SCHED is not set | 77 | # CONFIG_RT_GROUP_SCHED is not set |
78 | CONFIG_USER_SCHED=y | 78 | CONFIG_USER_SCHED=y |
79 | # CONFIG_CGROUP_SCHED is not set | 79 | # CONFIG_CGROUP_SCHED is not set |
80 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_SYSFS_DEPRECATED=y | 81 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | 82 | CONFIG_SYSFS_DEPRECATED_V2=y |
82 | # CONFIG_RELAY is not set | 83 | # CONFIG_RELAY is not set |
@@ -89,6 +90,7 @@ CONFIG_EMBEDDED=y | |||
89 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
90 | CONFIG_KALLSYMS=y | 91 | CONFIG_KALLSYMS=y |
91 | CONFIG_KALLSYMS_ALL=y | 92 | CONFIG_KALLSYMS_ALL=y |
93 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
92 | CONFIG_KALLSYMS_EXTRA_PASS=y | 94 | CONFIG_KALLSYMS_EXTRA_PASS=y |
93 | CONFIG_HOTPLUG=y | 95 | CONFIG_HOTPLUG=y |
94 | CONFIG_PRINTK=y | 96 | CONFIG_PRINTK=y |
@@ -111,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
111 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
112 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
113 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
114 | # CONFIG_MARKERS is not set | ||
115 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
116 | # CONFIG_KPROBES is not set | 117 | # CONFIG_KPROBES is not set |
117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -122,7 +123,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
123 | CONFIG_SLABINFO=y | 124 | CONFIG_SLABINFO=y |
124 | CONFIG_RT_MUTEXES=y | 125 | CONFIG_RT_MUTEXES=y |
125 | # CONFIG_TINY_SHMEM is not set | ||
126 | CONFIG_BASE_SMALL=0 | 126 | CONFIG_BASE_SMALL=0 |
127 | CONFIG_MODULES=y | 127 | CONFIG_MODULES=y |
128 | # CONFIG_MODULE_FORCE_LOAD is not set | 128 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -130,11 +130,9 @@ CONFIG_MODULE_UNLOAD=y | |||
130 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 130 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
131 | # CONFIG_MODVERSIONS is not set | 131 | # CONFIG_MODVERSIONS is not set |
132 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 132 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
133 | CONFIG_KMOD=y | ||
134 | CONFIG_BLOCK=y | 133 | CONFIG_BLOCK=y |
135 | CONFIG_LBD=y | 134 | CONFIG_LBD=y |
136 | # CONFIG_BLK_DEV_IO_TRACE is not set | 135 | # CONFIG_BLK_DEV_IO_TRACE is not set |
137 | # CONFIG_LSF is not set | ||
138 | # CONFIG_BLK_DEV_BSG is not set | 136 | # CONFIG_BLK_DEV_BSG is not set |
139 | # CONFIG_BLK_DEV_INTEGRITY is not set | 137 | # CONFIG_BLK_DEV_INTEGRITY is not set |
140 | 138 | ||
@@ -151,6 +149,10 @@ CONFIG_DEFAULT_AS=y | |||
151 | # CONFIG_DEFAULT_NOOP is not set | 149 | # CONFIG_DEFAULT_NOOP is not set |
152 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
153 | CONFIG_CLASSIC_RCU=y | 151 | CONFIG_CLASSIC_RCU=y |
152 | # CONFIG_TREE_RCU is not set | ||
153 | # CONFIG_PREEMPT_RCU is not set | ||
154 | # CONFIG_TREE_RCU_TRACE is not set | ||
155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
154 | # CONFIG_FREEZER is not set | 156 | # CONFIG_FREEZER is not set |
155 | CONFIG_PPC4xx_PCI_EXPRESS=y | 157 | CONFIG_PPC4xx_PCI_EXPRESS=y |
156 | 158 | ||
@@ -182,6 +184,7 @@ CONFIG_405EX=y | |||
182 | # CONFIG_GENERIC_IOMAP is not set | 184 | # CONFIG_GENERIC_IOMAP is not set |
183 | # CONFIG_CPU_FREQ is not set | 185 | # CONFIG_CPU_FREQ is not set |
184 | # CONFIG_FSL_ULI1575 is not set | 186 | # CONFIG_FSL_ULI1575 is not set |
187 | # CONFIG_SIMPLE_GPIO is not set | ||
185 | 188 | ||
186 | # | 189 | # |
187 | # Kernel options | 190 | # Kernel options |
@@ -205,6 +208,7 @@ CONFIG_BINFMT_ELF=y | |||
205 | # CONFIG_BINFMT_MISC is not set | 208 | # CONFIG_BINFMT_MISC is not set |
206 | # CONFIG_MATH_EMULATION is not set | 209 | # CONFIG_MATH_EMULATION is not set |
207 | # CONFIG_IOMMU_HELPER is not set | 210 | # CONFIG_IOMMU_HELPER is not set |
211 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
208 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 212 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
209 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 213 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
210 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 214 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -219,12 +223,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
219 | CONFIG_PAGEFLAGS_EXTENDED=y | 223 | CONFIG_PAGEFLAGS_EXTENDED=y |
220 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 224 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
221 | CONFIG_MIGRATION=y | 225 | CONFIG_MIGRATION=y |
222 | # CONFIG_RESOURCES_64BIT is not set | ||
223 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 226 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
224 | CONFIG_ZONE_DMA_FLAG=1 | 227 | CONFIG_ZONE_DMA_FLAG=1 |
225 | CONFIG_BOUNCE=y | 228 | CONFIG_BOUNCE=y |
226 | CONFIG_VIRT_TO_BUS=y | 229 | CONFIG_VIRT_TO_BUS=y |
227 | CONFIG_UNEVICTABLE_LRU=y | 230 | CONFIG_UNEVICTABLE_LRU=y |
231 | CONFIG_PPC_4K_PAGES=y | ||
232 | # CONFIG_PPC_16K_PAGES is not set | ||
233 | # CONFIG_PPC_64K_PAGES is not set | ||
228 | CONFIG_FORCE_MAX_ZONEORDER=11 | 234 | CONFIG_FORCE_MAX_ZONEORDER=11 |
229 | CONFIG_PROC_DEVICETREE=y | 235 | CONFIG_PROC_DEVICETREE=y |
230 | # CONFIG_CMDLINE_BOOL is not set | 236 | # CONFIG_CMDLINE_BOOL is not set |
@@ -248,6 +254,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
248 | # CONFIG_PCI_MSI is not set | 254 | # CONFIG_PCI_MSI is not set |
249 | CONFIG_PCI_LEGACY=y | 255 | CONFIG_PCI_LEGACY=y |
250 | # CONFIG_PCI_DEBUG is not set | 256 | # CONFIG_PCI_DEBUG is not set |
257 | # CONFIG_PCI_STUB is not set | ||
251 | # CONFIG_PCCARD is not set | 258 | # CONFIG_PCCARD is not set |
252 | # CONFIG_HOTPLUG_PCI is not set | 259 | # CONFIG_HOTPLUG_PCI is not set |
253 | # CONFIG_HAS_RAPIDIO is not set | 260 | # CONFIG_HAS_RAPIDIO is not set |
@@ -272,6 +279,7 @@ CONFIG_NET=y | |||
272 | # | 279 | # |
273 | # Networking options | 280 | # Networking options |
274 | # | 281 | # |
282 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
275 | CONFIG_PACKET=y | 283 | CONFIG_PACKET=y |
276 | # CONFIG_PACKET_MMAP is not set | 284 | # CONFIG_PACKET_MMAP is not set |
277 | CONFIG_UNIX=y | 285 | CONFIG_UNIX=y |
@@ -322,6 +330,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
322 | # CONFIG_ECONET is not set | 330 | # CONFIG_ECONET is not set |
323 | # CONFIG_WAN_ROUTER is not set | 331 | # CONFIG_WAN_ROUTER is not set |
324 | # CONFIG_NET_SCHED is not set | 332 | # CONFIG_NET_SCHED is not set |
333 | # CONFIG_DCB is not set | ||
325 | 334 | ||
326 | # | 335 | # |
327 | # Network testing | 336 | # Network testing |
@@ -334,6 +343,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
334 | # CONFIG_AF_RXRPC is not set | 343 | # CONFIG_AF_RXRPC is not set |
335 | # CONFIG_PHONET is not set | 344 | # CONFIG_PHONET is not set |
336 | # CONFIG_WIRELESS is not set | 345 | # CONFIG_WIRELESS is not set |
346 | # CONFIG_WIMAX is not set | ||
337 | # CONFIG_RFKILL is not set | 347 | # CONFIG_RFKILL is not set |
338 | # CONFIG_NET_9P is not set | 348 | # CONFIG_NET_9P is not set |
339 | 349 | ||
@@ -359,6 +369,7 @@ CONFIG_MTD=y | |||
359 | # CONFIG_MTD_DEBUG is not set | 369 | # CONFIG_MTD_DEBUG is not set |
360 | # CONFIG_MTD_CONCAT is not set | 370 | # CONFIG_MTD_CONCAT is not set |
361 | CONFIG_MTD_PARTITIONS=y | 371 | CONFIG_MTD_PARTITIONS=y |
372 | # CONFIG_MTD_TESTS is not set | ||
362 | # CONFIG_MTD_REDBOOT_PARTS is not set | 373 | # CONFIG_MTD_REDBOOT_PARTS is not set |
363 | CONFIG_MTD_CMDLINE_PARTS=y | 374 | CONFIG_MTD_CMDLINE_PARTS=y |
364 | CONFIG_MTD_OF_PARTS=y | 375 | CONFIG_MTD_OF_PARTS=y |
@@ -431,6 +442,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
431 | # CONFIG_MTD_ONENAND is not set | 442 | # CONFIG_MTD_ONENAND is not set |
432 | 443 | ||
433 | # | 444 | # |
445 | # LPDDR flash memory drivers | ||
446 | # | ||
447 | # CONFIG_MTD_LPDDR is not set | ||
448 | # CONFIG_MTD_QINFO_PROBE is not set | ||
449 | |||
450 | # | ||
434 | # UBI - Unsorted block images | 451 | # UBI - Unsorted block images |
435 | # | 452 | # |
436 | # CONFIG_MTD_UBI is not set | 453 | # CONFIG_MTD_UBI is not set |
@@ -524,6 +541,10 @@ CONFIG_IBM_NEW_EMAC_EMAC4=y | |||
524 | # CONFIG_WLAN_PRE80211 is not set | 541 | # CONFIG_WLAN_PRE80211 is not set |
525 | # CONFIG_WLAN_80211 is not set | 542 | # CONFIG_WLAN_80211 is not set |
526 | # CONFIG_IWLWIFI_LEDS is not set | 543 | # CONFIG_IWLWIFI_LEDS is not set |
544 | |||
545 | # | ||
546 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
547 | # | ||
527 | # CONFIG_WAN is not set | 548 | # CONFIG_WAN is not set |
528 | # CONFIG_FDDI is not set | 549 | # CONFIG_FDDI is not set |
529 | # CONFIG_HIPPI is not set | 550 | # CONFIG_HIPPI is not set |
@@ -576,9 +597,12 @@ CONFIG_SERIAL_CORE=y | |||
576 | CONFIG_SERIAL_CORE_CONSOLE=y | 597 | CONFIG_SERIAL_CORE_CONSOLE=y |
577 | # CONFIG_SERIAL_JSM is not set | 598 | # CONFIG_SERIAL_JSM is not set |
578 | CONFIG_SERIAL_OF_PLATFORM=y | 599 | CONFIG_SERIAL_OF_PLATFORM=y |
600 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
579 | CONFIG_UNIX98_PTYS=y | 601 | CONFIG_UNIX98_PTYS=y |
602 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
580 | CONFIG_LEGACY_PTYS=y | 603 | CONFIG_LEGACY_PTYS=y |
581 | CONFIG_LEGACY_PTY_COUNT=256 | 604 | CONFIG_LEGACY_PTY_COUNT=256 |
605 | # CONFIG_HVC_UDBG is not set | ||
582 | # CONFIG_IPMI_HANDLER is not set | 606 | # CONFIG_IPMI_HANDLER is not set |
583 | # CONFIG_HW_RANDOM is not set | 607 | # CONFIG_HW_RANDOM is not set |
584 | # CONFIG_NVRAM is not set | 608 | # CONFIG_NVRAM is not set |
@@ -597,11 +621,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
597 | # CONFIG_HWMON is not set | 621 | # CONFIG_HWMON is not set |
598 | CONFIG_THERMAL=y | 622 | CONFIG_THERMAL=y |
599 | # CONFIG_WATCHDOG is not set | 623 | # CONFIG_WATCHDOG is not set |
624 | CONFIG_SSB_POSSIBLE=y | ||
600 | 625 | ||
601 | # | 626 | # |
602 | # Sonics Silicon Backplane | 627 | # Sonics Silicon Backplane |
603 | # | 628 | # |
604 | CONFIG_SSB_POSSIBLE=y | ||
605 | # CONFIG_SSB is not set | 629 | # CONFIG_SSB is not set |
606 | 630 | ||
607 | # | 631 | # |
@@ -611,7 +635,7 @@ CONFIG_SSB_POSSIBLE=y | |||
611 | # CONFIG_MFD_SM501 is not set | 635 | # CONFIG_MFD_SM501 is not set |
612 | # CONFIG_HTC_PASIC3 is not set | 636 | # CONFIG_HTC_PASIC3 is not set |
613 | # CONFIG_MFD_TMIO is not set | 637 | # CONFIG_MFD_TMIO is not set |
614 | # CONFIG_MFD_WM8400 is not set | 638 | # CONFIG_REGULATOR is not set |
615 | 639 | ||
616 | # | 640 | # |
617 | # Multimedia devices | 641 | # Multimedia devices |
@@ -670,7 +694,9 @@ CONFIG_EXT2_FS=y | |||
670 | # CONFIG_FS_POSIX_ACL is not set | 694 | # CONFIG_FS_POSIX_ACL is not set |
671 | CONFIG_FILE_LOCKING=y | 695 | CONFIG_FILE_LOCKING=y |
672 | # CONFIG_XFS_FS is not set | 696 | # CONFIG_XFS_FS is not set |
697 | # CONFIG_GFS2_FS is not set | ||
673 | # CONFIG_OCFS2_FS is not set | 698 | # CONFIG_OCFS2_FS is not set |
699 | # CONFIG_BTRFS_FS is not set | ||
674 | CONFIG_DNOTIFY=y | 700 | CONFIG_DNOTIFY=y |
675 | CONFIG_INOTIFY=y | 701 | CONFIG_INOTIFY=y |
676 | CONFIG_INOTIFY_USER=y | 702 | CONFIG_INOTIFY_USER=y |
@@ -704,10 +730,7 @@ CONFIG_TMPFS=y | |||
704 | # CONFIG_TMPFS_POSIX_ACL is not set | 730 | # CONFIG_TMPFS_POSIX_ACL is not set |
705 | # CONFIG_HUGETLB_PAGE is not set | 731 | # CONFIG_HUGETLB_PAGE is not set |
706 | # CONFIG_CONFIGFS_FS is not set | 732 | # CONFIG_CONFIGFS_FS is not set |
707 | 733 | CONFIG_MISC_FILESYSTEMS=y | |
708 | # | ||
709 | # Miscellaneous filesystems | ||
710 | # | ||
711 | # CONFIG_ADFS_FS is not set | 734 | # CONFIG_ADFS_FS is not set |
712 | # CONFIG_AFFS_FS is not set | 735 | # CONFIG_AFFS_FS is not set |
713 | # CONFIG_HFS_FS is not set | 736 | # CONFIG_HFS_FS is not set |
@@ -717,6 +740,7 @@ CONFIG_TMPFS=y | |||
717 | # CONFIG_EFS_FS is not set | 740 | # CONFIG_EFS_FS is not set |
718 | # CONFIG_JFFS2_FS is not set | 741 | # CONFIG_JFFS2_FS is not set |
719 | CONFIG_CRAMFS=y | 742 | CONFIG_CRAMFS=y |
743 | # CONFIG_SQUASHFS is not set | ||
720 | # CONFIG_VXFS_FS is not set | 744 | # CONFIG_VXFS_FS is not set |
721 | # CONFIG_MINIX_FS is not set | 745 | # CONFIG_MINIX_FS is not set |
722 | # CONFIG_OMFS_FS is not set | 746 | # CONFIG_OMFS_FS is not set |
@@ -757,6 +781,7 @@ CONFIG_MSDOS_PARTITION=y | |||
757 | # Library routines | 781 | # Library routines |
758 | # | 782 | # |
759 | CONFIG_BITREVERSE=y | 783 | CONFIG_BITREVERSE=y |
784 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
760 | # CONFIG_CRC_CCITT is not set | 785 | # CONFIG_CRC_CCITT is not set |
761 | # CONFIG_CRC16 is not set | 786 | # CONFIG_CRC16 is not set |
762 | # CONFIG_CRC_T10DIF is not set | 787 | # CONFIG_CRC_T10DIF is not set |
@@ -807,6 +832,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
807 | # CONFIG_DEBUG_MEMORY_INIT is not set | 832 | # CONFIG_DEBUG_MEMORY_INIT is not set |
808 | # CONFIG_DEBUG_LIST is not set | 833 | # CONFIG_DEBUG_LIST is not set |
809 | # CONFIG_DEBUG_SG is not set | 834 | # CONFIG_DEBUG_SG is not set |
835 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
810 | # CONFIG_BOOT_PRINTK_DELAY is not set | 836 | # CONFIG_BOOT_PRINTK_DELAY is not set |
811 | # CONFIG_RCU_TORTURE_TEST is not set | 837 | # CONFIG_RCU_TORTURE_TEST is not set |
812 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 838 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -815,18 +841,24 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
815 | # CONFIG_FAULT_INJECTION is not set | 841 | # CONFIG_FAULT_INJECTION is not set |
816 | # CONFIG_LATENCYTOP is not set | 842 | # CONFIG_LATENCYTOP is not set |
817 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 843 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
818 | CONFIG_NOP_TRACER=y | 844 | CONFIG_HAVE_FUNCTION_TRACER=y |
819 | CONFIG_HAVE_FTRACE=y | ||
820 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 845 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
821 | # CONFIG_FTRACE is not set | 846 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
847 | |||
848 | # | ||
849 | # Tracers | ||
850 | # | ||
851 | # CONFIG_FUNCTION_TRACER is not set | ||
822 | # CONFIG_SCHED_TRACER is not set | 852 | # CONFIG_SCHED_TRACER is not set |
823 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 853 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
824 | # CONFIG_BOOT_TRACER is not set | 854 | # CONFIG_BOOT_TRACER is not set |
855 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
825 | # CONFIG_STACK_TRACER is not set | 856 | # CONFIG_STACK_TRACER is not set |
826 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 857 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
827 | # CONFIG_SAMPLES is not set | 858 | # CONFIG_SAMPLES is not set |
828 | CONFIG_HAVE_ARCH_KGDB=y | 859 | CONFIG_HAVE_ARCH_KGDB=y |
829 | # CONFIG_KGDB is not set | 860 | # CONFIG_KGDB is not set |
861 | CONFIG_PRINT_STACK_DEPTH=64 | ||
830 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 862 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
831 | # CONFIG_DEBUG_STACK_USAGE is not set | 863 | # CONFIG_DEBUG_STACK_USAGE is not set |
832 | # CONFIG_DEBUG_PAGEALLOC is not set | 864 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -853,11 +885,15 @@ CONFIG_CRYPTO=y | |||
853 | # | 885 | # |
854 | # CONFIG_CRYPTO_FIPS is not set | 886 | # CONFIG_CRYPTO_FIPS is not set |
855 | CONFIG_CRYPTO_ALGAPI=y | 887 | CONFIG_CRYPTO_ALGAPI=y |
856 | CONFIG_CRYPTO_AEAD=y | 888 | CONFIG_CRYPTO_ALGAPI2=y |
889 | CONFIG_CRYPTO_AEAD2=y | ||
857 | CONFIG_CRYPTO_BLKCIPHER=y | 890 | CONFIG_CRYPTO_BLKCIPHER=y |
891 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
858 | CONFIG_CRYPTO_HASH=y | 892 | CONFIG_CRYPTO_HASH=y |
859 | CONFIG_CRYPTO_RNG=y | 893 | CONFIG_CRYPTO_HASH2=y |
894 | CONFIG_CRYPTO_RNG2=y | ||
860 | CONFIG_CRYPTO_MANAGER=y | 895 | CONFIG_CRYPTO_MANAGER=y |
896 | CONFIG_CRYPTO_MANAGER2=y | ||
861 | # CONFIG_CRYPTO_GF128MUL is not set | 897 | # CONFIG_CRYPTO_GF128MUL is not set |
862 | # CONFIG_CRYPTO_NULL is not set | 898 | # CONFIG_CRYPTO_NULL is not set |
863 | # CONFIG_CRYPTO_CRYPTD is not set | 899 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/40x/virtex_defconfig b/arch/powerpc/configs/40x/virtex_defconfig index 9a9350ded292..b6888384dd74 100644 --- a/arch/powerpc/configs/40x/virtex_defconfig +++ b/arch/powerpc/configs/40x/virtex_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc4 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Fri Nov 14 10:49:16 2008 | 4 | # Tue Jan 20 08:17:55 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_40x=y | |||
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_4xx=y | 17 | CONFIG_4xx=y |
18 | CONFIG_PPC_MMU_NOHASH=y | ||
18 | # CONFIG_PPC_MM_SLICES is not set | 19 | # CONFIG_PPC_MM_SLICES is not set |
19 | CONFIG_NOT_COHERENT_CACHE=y | 20 | CONFIG_NOT_COHERENT_CACHE=y |
20 | CONFIG_PPC32=y | 21 | CONFIG_PPC32=y |
@@ -41,7 +42,7 @@ CONFIG_GENERIC_GPIO=y | |||
41 | CONFIG_PPC=y | 42 | CONFIG_PPC=y |
42 | CONFIG_EARLY_PRINTK=y | 43 | CONFIG_EARLY_PRINTK=y |
43 | CONFIG_GENERIC_NVRAM=y | 44 | CONFIG_GENERIC_NVRAM=y |
44 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 45 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 46 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
46 | CONFIG_PPC_OF=y | 47 | CONFIG_PPC_OF=y |
47 | CONFIG_OF=y | 48 | CONFIG_OF=y |
@@ -74,8 +75,8 @@ CONFIG_POSIX_MQUEUE=y | |||
74 | CONFIG_IKCONFIG=y | 75 | CONFIG_IKCONFIG=y |
75 | CONFIG_IKCONFIG_PROC=y | 76 | CONFIG_IKCONFIG_PROC=y |
76 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
77 | # CONFIG_CGROUPS is not set | ||
78 | # CONFIG_GROUP_SCHED is not set | 78 | # CONFIG_GROUP_SCHED is not set |
79 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_SYSFS_DEPRECATED=y | 80 | CONFIG_SYSFS_DEPRECATED=y |
80 | CONFIG_SYSFS_DEPRECATED_V2=y | 81 | CONFIG_SYSFS_DEPRECATED_V2=y |
81 | # CONFIG_RELAY is not set | 82 | # CONFIG_RELAY is not set |
@@ -113,7 +114,6 @@ CONFIG_SLAB=y | |||
113 | # CONFIG_SLUB is not set | 114 | # CONFIG_SLUB is not set |
114 | # CONFIG_SLOB is not set | 115 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 116 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 117 | CONFIG_HAVE_OPROFILE=y |
118 | # CONFIG_KPROBES is not set | 118 | # CONFIG_KPROBES is not set |
119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -124,7 +124,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
125 | CONFIG_SLABINFO=y | 125 | CONFIG_SLABINFO=y |
126 | CONFIG_RT_MUTEXES=y | 126 | CONFIG_RT_MUTEXES=y |
127 | # CONFIG_TINY_SHMEM is not set | ||
128 | CONFIG_BASE_SMALL=0 | 127 | CONFIG_BASE_SMALL=0 |
129 | CONFIG_MODULES=y | 128 | CONFIG_MODULES=y |
130 | # CONFIG_MODULE_FORCE_LOAD is not set | 129 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -132,11 +131,9 @@ CONFIG_MODULE_UNLOAD=y | |||
132 | CONFIG_MODULE_FORCE_UNLOAD=y | 131 | CONFIG_MODULE_FORCE_UNLOAD=y |
133 | CONFIG_MODVERSIONS=y | 132 | CONFIG_MODVERSIONS=y |
134 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 133 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
135 | CONFIG_KMOD=y | ||
136 | CONFIG_BLOCK=y | 134 | CONFIG_BLOCK=y |
137 | # CONFIG_LBD is not set | 135 | # CONFIG_LBD is not set |
138 | # CONFIG_BLK_DEV_IO_TRACE is not set | 136 | # CONFIG_BLK_DEV_IO_TRACE is not set |
139 | # CONFIG_LSF is not set | ||
140 | # CONFIG_BLK_DEV_BSG is not set | 137 | # CONFIG_BLK_DEV_BSG is not set |
141 | # CONFIG_BLK_DEV_INTEGRITY is not set | 138 | # CONFIG_BLK_DEV_INTEGRITY is not set |
142 | 139 | ||
@@ -153,6 +150,10 @@ CONFIG_DEFAULT_CFQ=y | |||
153 | # CONFIG_DEFAULT_NOOP is not set | 150 | # CONFIG_DEFAULT_NOOP is not set |
154 | CONFIG_DEFAULT_IOSCHED="cfq" | 151 | CONFIG_DEFAULT_IOSCHED="cfq" |
155 | CONFIG_CLASSIC_RCU=y | 152 | CONFIG_CLASSIC_RCU=y |
153 | # CONFIG_TREE_RCU is not set | ||
154 | # CONFIG_PREEMPT_RCU is not set | ||
155 | # CONFIG_TREE_RCU_TRACE is not set | ||
156 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
156 | # CONFIG_FREEZER is not set | 157 | # CONFIG_FREEZER is not set |
157 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 158 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
158 | 159 | ||
@@ -188,6 +189,7 @@ CONFIG_IBM405_ERR51=y | |||
188 | # CONFIG_GENERIC_IOMAP is not set | 189 | # CONFIG_GENERIC_IOMAP is not set |
189 | # CONFIG_CPU_FREQ is not set | 190 | # CONFIG_CPU_FREQ is not set |
190 | # CONFIG_FSL_ULI1575 is not set | 191 | # CONFIG_FSL_ULI1575 is not set |
192 | # CONFIG_SIMPLE_GPIO is not set | ||
191 | 193 | ||
192 | # | 194 | # |
193 | # Kernel options | 195 | # Kernel options |
@@ -205,13 +207,13 @@ CONFIG_HZ=250 | |||
205 | # CONFIG_PREEMPT_NONE is not set | 207 | # CONFIG_PREEMPT_NONE is not set |
206 | # CONFIG_PREEMPT_VOLUNTARY is not set | 208 | # CONFIG_PREEMPT_VOLUNTARY is not set |
207 | CONFIG_PREEMPT=y | 209 | CONFIG_PREEMPT=y |
208 | # CONFIG_PREEMPT_RCU is not set | ||
209 | CONFIG_BINFMT_ELF=y | 210 | CONFIG_BINFMT_ELF=y |
210 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | 211 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set |
211 | # CONFIG_HAVE_AOUT is not set | 212 | # CONFIG_HAVE_AOUT is not set |
212 | # CONFIG_BINFMT_MISC is not set | 213 | # CONFIG_BINFMT_MISC is not set |
213 | CONFIG_MATH_EMULATION=y | 214 | CONFIG_MATH_EMULATION=y |
214 | # CONFIG_IOMMU_HELPER is not set | 215 | # CONFIG_IOMMU_HELPER is not set |
216 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
215 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 217 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
216 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 218 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
217 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 219 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -226,12 +228,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
226 | CONFIG_PAGEFLAGS_EXTENDED=y | 228 | CONFIG_PAGEFLAGS_EXTENDED=y |
227 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 229 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
228 | CONFIG_MIGRATION=y | 230 | CONFIG_MIGRATION=y |
229 | CONFIG_RESOURCES_64BIT=y | ||
230 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 231 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
231 | CONFIG_ZONE_DMA_FLAG=1 | 232 | CONFIG_ZONE_DMA_FLAG=1 |
232 | CONFIG_BOUNCE=y | 233 | CONFIG_BOUNCE=y |
233 | CONFIG_VIRT_TO_BUS=y | 234 | CONFIG_VIRT_TO_BUS=y |
234 | CONFIG_UNEVICTABLE_LRU=y | 235 | CONFIG_UNEVICTABLE_LRU=y |
236 | CONFIG_PPC_4K_PAGES=y | ||
237 | # CONFIG_PPC_16K_PAGES is not set | ||
238 | # CONFIG_PPC_64K_PAGES is not set | ||
235 | CONFIG_FORCE_MAX_ZONEORDER=11 | 239 | CONFIG_FORCE_MAX_ZONEORDER=11 |
236 | CONFIG_PROC_DEVICETREE=y | 240 | CONFIG_PROC_DEVICETREE=y |
237 | CONFIG_CMDLINE_BOOL=y | 241 | CONFIG_CMDLINE_BOOL=y |
@@ -256,6 +260,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
256 | # CONFIG_PCI_MSI is not set | 260 | # CONFIG_PCI_MSI is not set |
257 | CONFIG_PCI_LEGACY=y | 261 | CONFIG_PCI_LEGACY=y |
258 | # CONFIG_PCI_DEBUG is not set | 262 | # CONFIG_PCI_DEBUG is not set |
263 | # CONFIG_PCI_STUB is not set | ||
259 | # CONFIG_PCCARD is not set | 264 | # CONFIG_PCCARD is not set |
260 | # CONFIG_HOTPLUG_PCI is not set | 265 | # CONFIG_HOTPLUG_PCI is not set |
261 | # CONFIG_HAS_RAPIDIO is not set | 266 | # CONFIG_HAS_RAPIDIO is not set |
@@ -280,6 +285,8 @@ CONFIG_NET=y | |||
280 | # | 285 | # |
281 | # Networking options | 286 | # Networking options |
282 | # | 287 | # |
288 | # CONFIG_NET_NS is not set | ||
289 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
283 | CONFIG_PACKET=y | 290 | CONFIG_PACKET=y |
284 | # CONFIG_PACKET_MMAP is not set | 291 | # CONFIG_PACKET_MMAP is not set |
285 | CONFIG_UNIX=y | 292 | CONFIG_UNIX=y |
@@ -423,6 +430,7 @@ CONFIG_IP_NF_MANGLE=m | |||
423 | # CONFIG_ECONET is not set | 430 | # CONFIG_ECONET is not set |
424 | # CONFIG_WAN_ROUTER is not set | 431 | # CONFIG_WAN_ROUTER is not set |
425 | # CONFIG_NET_SCHED is not set | 432 | # CONFIG_NET_SCHED is not set |
433 | # CONFIG_DCB is not set | ||
426 | 434 | ||
427 | # | 435 | # |
428 | # Network testing | 436 | # Network testing |
@@ -438,8 +446,9 @@ CONFIG_WIRELESS=y | |||
438 | # CONFIG_CFG80211 is not set | 446 | # CONFIG_CFG80211 is not set |
439 | CONFIG_WIRELESS_OLD_REGULATORY=y | 447 | CONFIG_WIRELESS_OLD_REGULATORY=y |
440 | # CONFIG_WIRELESS_EXT is not set | 448 | # CONFIG_WIRELESS_EXT is not set |
449 | # CONFIG_LIB80211 is not set | ||
441 | # CONFIG_MAC80211 is not set | 450 | # CONFIG_MAC80211 is not set |
442 | # CONFIG_IEEE80211 is not set | 451 | # CONFIG_WIMAX is not set |
443 | # CONFIG_RFKILL is not set | 452 | # CONFIG_RFKILL is not set |
444 | # CONFIG_NET_9P is not set | 453 | # CONFIG_NET_9P is not set |
445 | 454 | ||
@@ -574,6 +583,10 @@ CONFIG_NETDEV_1000=y | |||
574 | # CONFIG_WLAN_PRE80211 is not set | 583 | # CONFIG_WLAN_PRE80211 is not set |
575 | # CONFIG_WLAN_80211 is not set | 584 | # CONFIG_WLAN_80211 is not set |
576 | # CONFIG_IWLWIFI_LEDS is not set | 585 | # CONFIG_IWLWIFI_LEDS is not set |
586 | |||
587 | # | ||
588 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
589 | # | ||
577 | # CONFIG_WAN is not set | 590 | # CONFIG_WAN is not set |
578 | # CONFIG_FDDI is not set | 591 | # CONFIG_FDDI is not set |
579 | # CONFIG_HIPPI is not set | 592 | # CONFIG_HIPPI is not set |
@@ -674,9 +687,12 @@ CONFIG_SERIAL_CORE=y | |||
674 | CONFIG_SERIAL_CORE_CONSOLE=y | 687 | CONFIG_SERIAL_CORE_CONSOLE=y |
675 | # CONFIG_SERIAL_JSM is not set | 688 | # CONFIG_SERIAL_JSM is not set |
676 | # CONFIG_SERIAL_OF_PLATFORM is not set | 689 | # CONFIG_SERIAL_OF_PLATFORM is not set |
690 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
677 | CONFIG_UNIX98_PTYS=y | 691 | CONFIG_UNIX98_PTYS=y |
692 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
678 | CONFIG_LEGACY_PTYS=y | 693 | CONFIG_LEGACY_PTYS=y |
679 | CONFIG_LEGACY_PTY_COUNT=256 | 694 | CONFIG_LEGACY_PTY_COUNT=256 |
695 | # CONFIG_HVC_UDBG is not set | ||
680 | # CONFIG_IPMI_HANDLER is not set | 696 | # CONFIG_IPMI_HANDLER is not set |
681 | CONFIG_HW_RANDOM=m | 697 | CONFIG_HW_RANDOM=m |
682 | # CONFIG_NVRAM is not set | 698 | # CONFIG_NVRAM is not set |
@@ -854,7 +870,6 @@ CONFIG_LOGO_LINUX_CLUT224=y | |||
854 | # CONFIG_DMADEVICES is not set | 870 | # CONFIG_DMADEVICES is not set |
855 | # CONFIG_UIO is not set | 871 | # CONFIG_UIO is not set |
856 | # CONFIG_STAGING is not set | 872 | # CONFIG_STAGING is not set |
857 | CONFIG_STAGING_EXCLUDE_BUILD=y | ||
858 | 873 | ||
859 | # | 874 | # |
860 | # File systems | 875 | # File systems |
@@ -870,6 +885,7 @@ CONFIG_EXT2_FS=y | |||
870 | CONFIG_FILE_LOCKING=y | 885 | CONFIG_FILE_LOCKING=y |
871 | # CONFIG_XFS_FS is not set | 886 | # CONFIG_XFS_FS is not set |
872 | # CONFIG_OCFS2_FS is not set | 887 | # CONFIG_OCFS2_FS is not set |
888 | # CONFIG_BTRFS_FS is not set | ||
873 | CONFIG_DNOTIFY=y | 889 | CONFIG_DNOTIFY=y |
874 | CONFIG_INOTIFY=y | 890 | CONFIG_INOTIFY=y |
875 | CONFIG_INOTIFY_USER=y | 891 | CONFIG_INOTIFY_USER=y |
@@ -906,10 +922,7 @@ CONFIG_TMPFS=y | |||
906 | # CONFIG_TMPFS_POSIX_ACL is not set | 922 | # CONFIG_TMPFS_POSIX_ACL is not set |
907 | # CONFIG_HUGETLB_PAGE is not set | 923 | # CONFIG_HUGETLB_PAGE is not set |
908 | # CONFIG_CONFIGFS_FS is not set | 924 | # CONFIG_CONFIGFS_FS is not set |
909 | 925 | CONFIG_MISC_FILESYSTEMS=y | |
910 | # | ||
911 | # Miscellaneous filesystems | ||
912 | # | ||
913 | # CONFIG_ADFS_FS is not set | 926 | # CONFIG_ADFS_FS is not set |
914 | # CONFIG_AFFS_FS is not set | 927 | # CONFIG_AFFS_FS is not set |
915 | # CONFIG_HFS_FS is not set | 928 | # CONFIG_HFS_FS is not set |
@@ -918,6 +931,7 @@ CONFIG_TMPFS=y | |||
918 | # CONFIG_BFS_FS is not set | 931 | # CONFIG_BFS_FS is not set |
919 | # CONFIG_EFS_FS is not set | 932 | # CONFIG_EFS_FS is not set |
920 | CONFIG_CRAMFS=y | 933 | CONFIG_CRAMFS=y |
934 | # CONFIG_SQUASHFS is not set | ||
921 | # CONFIG_VXFS_FS is not set | 935 | # CONFIG_VXFS_FS is not set |
922 | # CONFIG_MINIX_FS is not set | 936 | # CONFIG_MINIX_FS is not set |
923 | # CONFIG_OMFS_FS is not set | 937 | # CONFIG_OMFS_FS is not set |
@@ -997,6 +1011,7 @@ CONFIG_NLS_UTF8=m | |||
997 | # Library routines | 1011 | # Library routines |
998 | # | 1012 | # |
999 | CONFIG_BITREVERSE=y | 1013 | CONFIG_BITREVERSE=y |
1014 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1000 | CONFIG_CRC_CCITT=y | 1015 | CONFIG_CRC_CCITT=y |
1001 | # CONFIG_CRC16 is not set | 1016 | # CONFIG_CRC16 is not set |
1002 | # CONFIG_CRC_T10DIF is not set | 1017 | # CONFIG_CRC_T10DIF is not set |
@@ -1046,6 +1061,7 @@ CONFIG_DEBUG_INFO=y | |||
1046 | CONFIG_DEBUG_MEMORY_INIT=y | 1061 | CONFIG_DEBUG_MEMORY_INIT=y |
1047 | # CONFIG_DEBUG_LIST is not set | 1062 | # CONFIG_DEBUG_LIST is not set |
1048 | # CONFIG_DEBUG_SG is not set | 1063 | # CONFIG_DEBUG_SG is not set |
1064 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1049 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1065 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1050 | # CONFIG_RCU_TORTURE_TEST is not set | 1066 | # CONFIG_RCU_TORTURE_TEST is not set |
1051 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1067 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1055,6 +1071,8 @@ CONFIG_DEBUG_MEMORY_INIT=y | |||
1055 | # CONFIG_LATENCYTOP is not set | 1071 | # CONFIG_LATENCYTOP is not set |
1056 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1072 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1057 | CONFIG_HAVE_FUNCTION_TRACER=y | 1073 | CONFIG_HAVE_FUNCTION_TRACER=y |
1074 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1075 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1058 | 1076 | ||
1059 | # | 1077 | # |
1060 | # Tracers | 1078 | # Tracers |
@@ -1064,11 +1082,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1064 | # CONFIG_SCHED_TRACER is not set | 1082 | # CONFIG_SCHED_TRACER is not set |
1065 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1083 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1066 | # CONFIG_BOOT_TRACER is not set | 1084 | # CONFIG_BOOT_TRACER is not set |
1085 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1067 | # CONFIG_STACK_TRACER is not set | 1086 | # CONFIG_STACK_TRACER is not set |
1068 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1087 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1069 | # CONFIG_SAMPLES is not set | 1088 | # CONFIG_SAMPLES is not set |
1070 | CONFIG_HAVE_ARCH_KGDB=y | 1089 | CONFIG_HAVE_ARCH_KGDB=y |
1071 | # CONFIG_KGDB is not set | 1090 | # CONFIG_KGDB is not set |
1091 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1072 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1092 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1073 | # CONFIG_DEBUG_STACK_USAGE is not set | 1093 | # CONFIG_DEBUG_STACK_USAGE is not set |
1074 | # CONFIG_DEBUG_PAGEALLOC is not set | 1094 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1094,6 +1114,7 @@ CONFIG_CRYPTO=y | |||
1094 | # | 1114 | # |
1095 | # CONFIG_CRYPTO_FIPS is not set | 1115 | # CONFIG_CRYPTO_FIPS is not set |
1096 | # CONFIG_CRYPTO_MANAGER is not set | 1116 | # CONFIG_CRYPTO_MANAGER is not set |
1117 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
1097 | # CONFIG_CRYPTO_GF128MUL is not set | 1118 | # CONFIG_CRYPTO_GF128MUL is not set |
1098 | # CONFIG_CRYPTO_NULL is not set | 1119 | # CONFIG_CRYPTO_NULL is not set |
1099 | # CONFIG_CRYPTO_CRYPTD is not set | 1120 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/40x/walnut_defconfig b/arch/powerpc/configs/40x/walnut_defconfig index 5820e0a4fc55..5ab29dddd21c 100644 --- a/arch/powerpc/configs/40x/walnut_defconfig +++ b/arch/powerpc/configs/40x/walnut_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 08:49:27 2008 | 4 | # Tue Jan 20 08:17:57 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_40x=y | |||
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_4xx=y | 17 | CONFIG_4xx=y |
18 | CONFIG_PPC_MMU_NOHASH=y | ||
18 | # CONFIG_PPC_MM_SLICES is not set | 19 | # CONFIG_PPC_MM_SLICES is not set |
19 | CONFIG_NOT_COHERENT_CACHE=y | 20 | CONFIG_NOT_COHERENT_CACHE=y |
20 | CONFIG_PPC32=y | 21 | CONFIG_PPC32=y |
@@ -40,7 +41,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
40 | CONFIG_PPC=y | 41 | CONFIG_PPC=y |
41 | CONFIG_EARLY_PRINTK=y | 42 | CONFIG_EARLY_PRINTK=y |
42 | CONFIG_GENERIC_NVRAM=y | 43 | CONFIG_GENERIC_NVRAM=y |
43 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 44 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
44 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
45 | CONFIG_PPC_OF=y | 46 | CONFIG_PPC_OF=y |
46 | CONFIG_OF=y | 47 | CONFIG_OF=y |
@@ -71,12 +72,12 @@ CONFIG_POSIX_MQUEUE=y | |||
71 | # CONFIG_AUDIT is not set | 72 | # CONFIG_AUDIT is not set |
72 | # CONFIG_IKCONFIG is not set | 73 | # CONFIG_IKCONFIG is not set |
73 | CONFIG_LOG_BUF_SHIFT=14 | 74 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | ||
75 | CONFIG_GROUP_SCHED=y | 75 | CONFIG_GROUP_SCHED=y |
76 | CONFIG_FAIR_GROUP_SCHED=y | 76 | CONFIG_FAIR_GROUP_SCHED=y |
77 | # CONFIG_RT_GROUP_SCHED is not set | 77 | # CONFIG_RT_GROUP_SCHED is not set |
78 | CONFIG_USER_SCHED=y | 78 | CONFIG_USER_SCHED=y |
79 | # CONFIG_CGROUP_SCHED is not set | 79 | # CONFIG_CGROUP_SCHED is not set |
80 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_SYSFS_DEPRECATED=y | 81 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | 82 | CONFIG_SYSFS_DEPRECATED_V2=y |
82 | # CONFIG_RELAY is not set | 83 | # CONFIG_RELAY is not set |
@@ -89,6 +90,7 @@ CONFIG_EMBEDDED=y | |||
89 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
90 | CONFIG_KALLSYMS=y | 91 | CONFIG_KALLSYMS=y |
91 | CONFIG_KALLSYMS_ALL=y | 92 | CONFIG_KALLSYMS_ALL=y |
93 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
92 | CONFIG_KALLSYMS_EXTRA_PASS=y | 94 | CONFIG_KALLSYMS_EXTRA_PASS=y |
93 | CONFIG_HOTPLUG=y | 95 | CONFIG_HOTPLUG=y |
94 | CONFIG_PRINTK=y | 96 | CONFIG_PRINTK=y |
@@ -111,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
111 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
112 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
113 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
114 | # CONFIG_MARKERS is not set | ||
115 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
116 | # CONFIG_KPROBES is not set | 117 | # CONFIG_KPROBES is not set |
117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -122,7 +123,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
123 | CONFIG_SLABINFO=y | 124 | CONFIG_SLABINFO=y |
124 | CONFIG_RT_MUTEXES=y | 125 | CONFIG_RT_MUTEXES=y |
125 | # CONFIG_TINY_SHMEM is not set | ||
126 | CONFIG_BASE_SMALL=0 | 126 | CONFIG_BASE_SMALL=0 |
127 | CONFIG_MODULES=y | 127 | CONFIG_MODULES=y |
128 | # CONFIG_MODULE_FORCE_LOAD is not set | 128 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -130,11 +130,9 @@ CONFIG_MODULE_UNLOAD=y | |||
130 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 130 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
131 | # CONFIG_MODVERSIONS is not set | 131 | # CONFIG_MODVERSIONS is not set |
132 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 132 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
133 | CONFIG_KMOD=y | ||
134 | CONFIG_BLOCK=y | 133 | CONFIG_BLOCK=y |
135 | CONFIG_LBD=y | 134 | CONFIG_LBD=y |
136 | # CONFIG_BLK_DEV_IO_TRACE is not set | 135 | # CONFIG_BLK_DEV_IO_TRACE is not set |
137 | # CONFIG_LSF is not set | ||
138 | # CONFIG_BLK_DEV_BSG is not set | 136 | # CONFIG_BLK_DEV_BSG is not set |
139 | # CONFIG_BLK_DEV_INTEGRITY is not set | 137 | # CONFIG_BLK_DEV_INTEGRITY is not set |
140 | 138 | ||
@@ -151,6 +149,10 @@ CONFIG_DEFAULT_AS=y | |||
151 | # CONFIG_DEFAULT_NOOP is not set | 149 | # CONFIG_DEFAULT_NOOP is not set |
152 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
153 | CONFIG_CLASSIC_RCU=y | 151 | CONFIG_CLASSIC_RCU=y |
152 | # CONFIG_TREE_RCU is not set | ||
153 | # CONFIG_PREEMPT_RCU is not set | ||
154 | # CONFIG_TREE_RCU_TRACE is not set | ||
155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
154 | # CONFIG_FREEZER is not set | 156 | # CONFIG_FREEZER is not set |
155 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 157 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
156 | 158 | ||
@@ -185,6 +187,7 @@ CONFIG_IBM405_ERR51=y | |||
185 | # CONFIG_CPU_FREQ is not set | 187 | # CONFIG_CPU_FREQ is not set |
186 | # CONFIG_FSL_ULI1575 is not set | 188 | # CONFIG_FSL_ULI1575 is not set |
187 | CONFIG_OF_RTC=y | 189 | CONFIG_OF_RTC=y |
190 | # CONFIG_SIMPLE_GPIO is not set | ||
188 | 191 | ||
189 | # | 192 | # |
190 | # Kernel options | 193 | # Kernel options |
@@ -208,6 +211,7 @@ CONFIG_BINFMT_ELF=y | |||
208 | # CONFIG_BINFMT_MISC is not set | 211 | # CONFIG_BINFMT_MISC is not set |
209 | # CONFIG_MATH_EMULATION is not set | 212 | # CONFIG_MATH_EMULATION is not set |
210 | # CONFIG_IOMMU_HELPER is not set | 213 | # CONFIG_IOMMU_HELPER is not set |
214 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
211 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 215 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
212 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 216 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
213 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 217 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -222,12 +226,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
222 | CONFIG_PAGEFLAGS_EXTENDED=y | 226 | CONFIG_PAGEFLAGS_EXTENDED=y |
223 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 227 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
224 | CONFIG_MIGRATION=y | 228 | CONFIG_MIGRATION=y |
225 | CONFIG_RESOURCES_64BIT=y | ||
226 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 229 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
227 | CONFIG_ZONE_DMA_FLAG=1 | 230 | CONFIG_ZONE_DMA_FLAG=1 |
228 | CONFIG_BOUNCE=y | 231 | CONFIG_BOUNCE=y |
229 | CONFIG_VIRT_TO_BUS=y | 232 | CONFIG_VIRT_TO_BUS=y |
230 | CONFIG_UNEVICTABLE_LRU=y | 233 | CONFIG_UNEVICTABLE_LRU=y |
234 | CONFIG_PPC_4K_PAGES=y | ||
235 | # CONFIG_PPC_16K_PAGES is not set | ||
236 | # CONFIG_PPC_64K_PAGES is not set | ||
231 | CONFIG_FORCE_MAX_ZONEORDER=11 | 237 | CONFIG_FORCE_MAX_ZONEORDER=11 |
232 | CONFIG_PROC_DEVICETREE=y | 238 | CONFIG_PROC_DEVICETREE=y |
233 | # CONFIG_CMDLINE_BOOL is not set | 239 | # CONFIG_CMDLINE_BOOL is not set |
@@ -251,6 +257,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
251 | # CONFIG_PCI_MSI is not set | 257 | # CONFIG_PCI_MSI is not set |
252 | # CONFIG_PCI_LEGACY is not set | 258 | # CONFIG_PCI_LEGACY is not set |
253 | # CONFIG_PCI_DEBUG is not set | 259 | # CONFIG_PCI_DEBUG is not set |
260 | # CONFIG_PCI_STUB is not set | ||
254 | # CONFIG_PCCARD is not set | 261 | # CONFIG_PCCARD is not set |
255 | # CONFIG_HOTPLUG_PCI is not set | 262 | # CONFIG_HOTPLUG_PCI is not set |
256 | # CONFIG_HAS_RAPIDIO is not set | 263 | # CONFIG_HAS_RAPIDIO is not set |
@@ -275,6 +282,7 @@ CONFIG_NET=y | |||
275 | # | 282 | # |
276 | # Networking options | 283 | # Networking options |
277 | # | 284 | # |
285 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
278 | CONFIG_PACKET=y | 286 | CONFIG_PACKET=y |
279 | # CONFIG_PACKET_MMAP is not set | 287 | # CONFIG_PACKET_MMAP is not set |
280 | CONFIG_UNIX=y | 288 | CONFIG_UNIX=y |
@@ -325,6 +333,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
325 | # CONFIG_ECONET is not set | 333 | # CONFIG_ECONET is not set |
326 | # CONFIG_WAN_ROUTER is not set | 334 | # CONFIG_WAN_ROUTER is not set |
327 | # CONFIG_NET_SCHED is not set | 335 | # CONFIG_NET_SCHED is not set |
336 | # CONFIG_DCB is not set | ||
328 | 337 | ||
329 | # | 338 | # |
330 | # Network testing | 339 | # Network testing |
@@ -337,6 +346,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
337 | # CONFIG_AF_RXRPC is not set | 346 | # CONFIG_AF_RXRPC is not set |
338 | # CONFIG_PHONET is not set | 347 | # CONFIG_PHONET is not set |
339 | # CONFIG_WIRELESS is not set | 348 | # CONFIG_WIRELESS is not set |
349 | # CONFIG_WIMAX is not set | ||
340 | # CONFIG_RFKILL is not set | 350 | # CONFIG_RFKILL is not set |
341 | # CONFIG_NET_9P is not set | 351 | # CONFIG_NET_9P is not set |
342 | 352 | ||
@@ -362,6 +372,7 @@ CONFIG_MTD=y | |||
362 | # CONFIG_MTD_DEBUG is not set | 372 | # CONFIG_MTD_DEBUG is not set |
363 | # CONFIG_MTD_CONCAT is not set | 373 | # CONFIG_MTD_CONCAT is not set |
364 | CONFIG_MTD_PARTITIONS=y | 374 | CONFIG_MTD_PARTITIONS=y |
375 | # CONFIG_MTD_TESTS is not set | ||
365 | # CONFIG_MTD_REDBOOT_PARTS is not set | 376 | # CONFIG_MTD_REDBOOT_PARTS is not set |
366 | CONFIG_MTD_CMDLINE_PARTS=y | 377 | CONFIG_MTD_CMDLINE_PARTS=y |
367 | CONFIG_MTD_OF_PARTS=y | 378 | CONFIG_MTD_OF_PARTS=y |
@@ -434,6 +445,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
434 | # CONFIG_MTD_ONENAND is not set | 445 | # CONFIG_MTD_ONENAND is not set |
435 | 446 | ||
436 | # | 447 | # |
448 | # LPDDR flash memory drivers | ||
449 | # | ||
450 | # CONFIG_MTD_LPDDR is not set | ||
451 | # CONFIG_MTD_QINFO_PROBE is not set | ||
452 | |||
453 | # | ||
437 | # UBI - Unsorted block images | 454 | # UBI - Unsorted block images |
438 | # | 455 | # |
439 | # CONFIG_MTD_UBI is not set | 456 | # CONFIG_MTD_UBI is not set |
@@ -464,6 +481,7 @@ CONFIG_MISC_DEVICES=y | |||
464 | # CONFIG_TIFM_CORE is not set | 481 | # CONFIG_TIFM_CORE is not set |
465 | # CONFIG_ENCLOSURE_SERVICES is not set | 482 | # CONFIG_ENCLOSURE_SERVICES is not set |
466 | # CONFIG_HP_ILO is not set | 483 | # CONFIG_HP_ILO is not set |
484 | # CONFIG_C2PORT is not set | ||
467 | CONFIG_HAVE_IDE=y | 485 | CONFIG_HAVE_IDE=y |
468 | # CONFIG_IDE is not set | 486 | # CONFIG_IDE is not set |
469 | 487 | ||
@@ -546,6 +564,7 @@ CONFIG_NETDEV_1000=y | |||
546 | # CONFIG_JME is not set | 564 | # CONFIG_JME is not set |
547 | CONFIG_NETDEV_10000=y | 565 | CONFIG_NETDEV_10000=y |
548 | # CONFIG_CHELSIO_T1 is not set | 566 | # CONFIG_CHELSIO_T1 is not set |
567 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
549 | # CONFIG_CHELSIO_T3 is not set | 568 | # CONFIG_CHELSIO_T3 is not set |
550 | # CONFIG_ENIC is not set | 569 | # CONFIG_ENIC is not set |
551 | # CONFIG_IXGBE is not set | 570 | # CONFIG_IXGBE is not set |
@@ -568,6 +587,10 @@ CONFIG_NETDEV_10000=y | |||
568 | # CONFIG_WLAN_PRE80211 is not set | 587 | # CONFIG_WLAN_PRE80211 is not set |
569 | # CONFIG_WLAN_80211 is not set | 588 | # CONFIG_WLAN_80211 is not set |
570 | # CONFIG_IWLWIFI_LEDS is not set | 589 | # CONFIG_IWLWIFI_LEDS is not set |
590 | |||
591 | # | ||
592 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
593 | # | ||
571 | # CONFIG_WAN is not set | 594 | # CONFIG_WAN is not set |
572 | # CONFIG_FDDI is not set | 595 | # CONFIG_FDDI is not set |
573 | # CONFIG_HIPPI is not set | 596 | # CONFIG_HIPPI is not set |
@@ -620,9 +643,12 @@ CONFIG_SERIAL_CORE=y | |||
620 | CONFIG_SERIAL_CORE_CONSOLE=y | 643 | CONFIG_SERIAL_CORE_CONSOLE=y |
621 | # CONFIG_SERIAL_JSM is not set | 644 | # CONFIG_SERIAL_JSM is not set |
622 | CONFIG_SERIAL_OF_PLATFORM=y | 645 | CONFIG_SERIAL_OF_PLATFORM=y |
646 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
623 | CONFIG_UNIX98_PTYS=y | 647 | CONFIG_UNIX98_PTYS=y |
648 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
624 | CONFIG_LEGACY_PTYS=y | 649 | CONFIG_LEGACY_PTYS=y |
625 | CONFIG_LEGACY_PTY_COUNT=256 | 650 | CONFIG_LEGACY_PTY_COUNT=256 |
651 | # CONFIG_HVC_UDBG is not set | ||
626 | # CONFIG_IPMI_HANDLER is not set | 652 | # CONFIG_IPMI_HANDLER is not set |
627 | # CONFIG_HW_RANDOM is not set | 653 | # CONFIG_HW_RANDOM is not set |
628 | # CONFIG_NVRAM is not set | 654 | # CONFIG_NVRAM is not set |
@@ -641,11 +667,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
641 | # CONFIG_HWMON is not set | 667 | # CONFIG_HWMON is not set |
642 | CONFIG_THERMAL=y | 668 | CONFIG_THERMAL=y |
643 | # CONFIG_WATCHDOG is not set | 669 | # CONFIG_WATCHDOG is not set |
670 | CONFIG_SSB_POSSIBLE=y | ||
644 | 671 | ||
645 | # | 672 | # |
646 | # Sonics Silicon Backplane | 673 | # Sonics Silicon Backplane |
647 | # | 674 | # |
648 | CONFIG_SSB_POSSIBLE=y | ||
649 | # CONFIG_SSB is not set | 675 | # CONFIG_SSB is not set |
650 | 676 | ||
651 | # | 677 | # |
@@ -655,7 +681,7 @@ CONFIG_SSB_POSSIBLE=y | |||
655 | # CONFIG_MFD_SM501 is not set | 681 | # CONFIG_MFD_SM501 is not set |
656 | # CONFIG_HTC_PASIC3 is not set | 682 | # CONFIG_HTC_PASIC3 is not set |
657 | # CONFIG_MFD_TMIO is not set | 683 | # CONFIG_MFD_TMIO is not set |
658 | # CONFIG_MFD_WM8400 is not set | 684 | # CONFIG_REGULATOR is not set |
659 | 685 | ||
660 | # | 686 | # |
661 | # Multimedia devices | 687 | # Multimedia devices |
@@ -701,9 +727,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
701 | # | 727 | # |
702 | 728 | ||
703 | # | 729 | # |
704 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 730 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
705 | # | 731 | # |
706 | # CONFIG_USB_GADGET is not set | 732 | # CONFIG_USB_GADGET is not set |
733 | |||
734 | # | ||
735 | # OTG and related infrastructure | ||
736 | # | ||
707 | # CONFIG_UWB is not set | 737 | # CONFIG_UWB is not set |
708 | # CONFIG_MMC is not set | 738 | # CONFIG_MMC is not set |
709 | # CONFIG_MEMSTICK is not set | 739 | # CONFIG_MEMSTICK is not set |
@@ -729,7 +759,9 @@ CONFIG_EXT2_FS=y | |||
729 | # CONFIG_FS_POSIX_ACL is not set | 759 | # CONFIG_FS_POSIX_ACL is not set |
730 | CONFIG_FILE_LOCKING=y | 760 | CONFIG_FILE_LOCKING=y |
731 | # CONFIG_XFS_FS is not set | 761 | # CONFIG_XFS_FS is not set |
762 | # CONFIG_GFS2_FS is not set | ||
732 | # CONFIG_OCFS2_FS is not set | 763 | # CONFIG_OCFS2_FS is not set |
764 | # CONFIG_BTRFS_FS is not set | ||
733 | CONFIG_DNOTIFY=y | 765 | CONFIG_DNOTIFY=y |
734 | CONFIG_INOTIFY=y | 766 | CONFIG_INOTIFY=y |
735 | CONFIG_INOTIFY_USER=y | 767 | CONFIG_INOTIFY_USER=y |
@@ -763,10 +795,7 @@ CONFIG_TMPFS=y | |||
763 | # CONFIG_TMPFS_POSIX_ACL is not set | 795 | # CONFIG_TMPFS_POSIX_ACL is not set |
764 | # CONFIG_HUGETLB_PAGE is not set | 796 | # CONFIG_HUGETLB_PAGE is not set |
765 | # CONFIG_CONFIGFS_FS is not set | 797 | # CONFIG_CONFIGFS_FS is not set |
766 | 798 | CONFIG_MISC_FILESYSTEMS=y | |
767 | # | ||
768 | # Miscellaneous filesystems | ||
769 | # | ||
770 | # CONFIG_ADFS_FS is not set | 799 | # CONFIG_ADFS_FS is not set |
771 | # CONFIG_AFFS_FS is not set | 800 | # CONFIG_AFFS_FS is not set |
772 | # CONFIG_HFS_FS is not set | 801 | # CONFIG_HFS_FS is not set |
@@ -776,6 +805,7 @@ CONFIG_TMPFS=y | |||
776 | # CONFIG_EFS_FS is not set | 805 | # CONFIG_EFS_FS is not set |
777 | # CONFIG_JFFS2_FS is not set | 806 | # CONFIG_JFFS2_FS is not set |
778 | CONFIG_CRAMFS=y | 807 | CONFIG_CRAMFS=y |
808 | # CONFIG_SQUASHFS is not set | ||
779 | # CONFIG_VXFS_FS is not set | 809 | # CONFIG_VXFS_FS is not set |
780 | # CONFIG_MINIX_FS is not set | 810 | # CONFIG_MINIX_FS is not set |
781 | # CONFIG_OMFS_FS is not set | 811 | # CONFIG_OMFS_FS is not set |
@@ -816,6 +846,7 @@ CONFIG_MSDOS_PARTITION=y | |||
816 | # Library routines | 846 | # Library routines |
817 | # | 847 | # |
818 | CONFIG_BITREVERSE=y | 848 | CONFIG_BITREVERSE=y |
849 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
819 | # CONFIG_CRC_CCITT is not set | 850 | # CONFIG_CRC_CCITT is not set |
820 | # CONFIG_CRC16 is not set | 851 | # CONFIG_CRC16 is not set |
821 | # CONFIG_CRC_T10DIF is not set | 852 | # CONFIG_CRC_T10DIF is not set |
@@ -866,6 +897,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
866 | # CONFIG_DEBUG_MEMORY_INIT is not set | 897 | # CONFIG_DEBUG_MEMORY_INIT is not set |
867 | # CONFIG_DEBUG_LIST is not set | 898 | # CONFIG_DEBUG_LIST is not set |
868 | # CONFIG_DEBUG_SG is not set | 899 | # CONFIG_DEBUG_SG is not set |
900 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
869 | # CONFIG_BOOT_PRINTK_DELAY is not set | 901 | # CONFIG_BOOT_PRINTK_DELAY is not set |
870 | # CONFIG_RCU_TORTURE_TEST is not set | 902 | # CONFIG_RCU_TORTURE_TEST is not set |
871 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 903 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -874,18 +906,24 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
874 | # CONFIG_FAULT_INJECTION is not set | 906 | # CONFIG_FAULT_INJECTION is not set |
875 | # CONFIG_LATENCYTOP is not set | 907 | # CONFIG_LATENCYTOP is not set |
876 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 908 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
877 | CONFIG_NOP_TRACER=y | 909 | CONFIG_HAVE_FUNCTION_TRACER=y |
878 | CONFIG_HAVE_FTRACE=y | ||
879 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 910 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
880 | # CONFIG_FTRACE is not set | 911 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
912 | |||
913 | # | ||
914 | # Tracers | ||
915 | # | ||
916 | # CONFIG_FUNCTION_TRACER is not set | ||
881 | # CONFIG_SCHED_TRACER is not set | 917 | # CONFIG_SCHED_TRACER is not set |
882 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 918 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
883 | # CONFIG_BOOT_TRACER is not set | 919 | # CONFIG_BOOT_TRACER is not set |
920 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
884 | # CONFIG_STACK_TRACER is not set | 921 | # CONFIG_STACK_TRACER is not set |
885 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 922 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
886 | # CONFIG_SAMPLES is not set | 923 | # CONFIG_SAMPLES is not set |
887 | CONFIG_HAVE_ARCH_KGDB=y | 924 | CONFIG_HAVE_ARCH_KGDB=y |
888 | # CONFIG_KGDB is not set | 925 | # CONFIG_KGDB is not set |
926 | CONFIG_PRINT_STACK_DEPTH=64 | ||
889 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 927 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
890 | # CONFIG_DEBUG_STACK_USAGE is not set | 928 | # CONFIG_DEBUG_STACK_USAGE is not set |
891 | # CONFIG_DEBUG_PAGEALLOC is not set | 929 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -912,11 +950,15 @@ CONFIG_CRYPTO=y | |||
912 | # | 950 | # |
913 | # CONFIG_CRYPTO_FIPS is not set | 951 | # CONFIG_CRYPTO_FIPS is not set |
914 | CONFIG_CRYPTO_ALGAPI=y | 952 | CONFIG_CRYPTO_ALGAPI=y |
915 | CONFIG_CRYPTO_AEAD=y | 953 | CONFIG_CRYPTO_ALGAPI2=y |
954 | CONFIG_CRYPTO_AEAD2=y | ||
916 | CONFIG_CRYPTO_BLKCIPHER=y | 955 | CONFIG_CRYPTO_BLKCIPHER=y |
956 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
917 | CONFIG_CRYPTO_HASH=y | 957 | CONFIG_CRYPTO_HASH=y |
918 | CONFIG_CRYPTO_RNG=y | 958 | CONFIG_CRYPTO_HASH2=y |
959 | CONFIG_CRYPTO_RNG2=y | ||
919 | CONFIG_CRYPTO_MANAGER=y | 960 | CONFIG_CRYPTO_MANAGER=y |
961 | CONFIG_CRYPTO_MANAGER2=y | ||
920 | # CONFIG_CRYPTO_GF128MUL is not set | 962 | # CONFIG_CRYPTO_GF128MUL is not set |
921 | # CONFIG_CRYPTO_NULL is not set | 963 | # CONFIG_CRYPTO_NULL is not set |
922 | # CONFIG_CRYPTO_CRYPTD is not set | 964 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/44x/arches_defconfig b/arch/powerpc/configs/44x/arches_defconfig index 082158d591c5..1d72b0ac3f25 100644 --- a/arch/powerpc/configs/44x/arches_defconfig +++ b/arch/powerpc/configs/44x/arches_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 09:16:04 2008 | 4 | # Tue Jan 20 08:22:31 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -19,6 +19,7 @@ CONFIG_4xx=y | |||
19 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
20 | CONFIG_PTE_64BIT=y | 20 | CONFIG_PTE_64BIT=y |
21 | CONFIG_PHYS_64BIT=y | 21 | CONFIG_PHYS_64BIT=y |
22 | CONFIG_PPC_MMU_NOHASH=y | ||
22 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
23 | CONFIG_NOT_COHERENT_CACHE=y | 24 | CONFIG_NOT_COHERENT_CACHE=y |
24 | CONFIG_PPC32=y | 25 | CONFIG_PPC32=y |
@@ -44,7 +45,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 45 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 46 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 47 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 48 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 50 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 51 | CONFIG_OF=y |
@@ -75,8 +76,8 @@ CONFIG_POSIX_MQUEUE=y | |||
75 | # CONFIG_AUDIT is not set | 76 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 77 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 78 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | # CONFIG_GROUP_SCHED is not set | 79 | # CONFIG_GROUP_SCHED is not set |
80 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_SYSFS_DEPRECATED=y | 81 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | 82 | CONFIG_SYSFS_DEPRECATED_V2=y |
82 | # CONFIG_RELAY is not set | 83 | # CONFIG_RELAY is not set |
@@ -111,7 +112,6 @@ CONFIG_SLUB_DEBUG=y | |||
111 | CONFIG_SLUB=y | 112 | CONFIG_SLUB=y |
112 | # CONFIG_SLOB is not set | 113 | # CONFIG_SLOB is not set |
113 | # CONFIG_PROFILING is not set | 114 | # CONFIG_PROFILING is not set |
114 | # CONFIG_MARKERS is not set | ||
115 | CONFIG_HAVE_OPROFILE=y | 115 | CONFIG_HAVE_OPROFILE=y |
116 | # CONFIG_KPROBES is not set | 116 | # CONFIG_KPROBES is not set |
117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -122,7 +122,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
123 | CONFIG_SLABINFO=y | 123 | CONFIG_SLABINFO=y |
124 | CONFIG_RT_MUTEXES=y | 124 | CONFIG_RT_MUTEXES=y |
125 | # CONFIG_TINY_SHMEM is not set | ||
126 | CONFIG_BASE_SMALL=0 | 125 | CONFIG_BASE_SMALL=0 |
127 | CONFIG_MODULES=y | 126 | CONFIG_MODULES=y |
128 | # CONFIG_MODULE_FORCE_LOAD is not set | 127 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -130,11 +129,9 @@ CONFIG_MODULE_UNLOAD=y | |||
130 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 129 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
131 | # CONFIG_MODVERSIONS is not set | 130 | # CONFIG_MODVERSIONS is not set |
132 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
133 | CONFIG_KMOD=y | ||
134 | CONFIG_BLOCK=y | 132 | CONFIG_BLOCK=y |
135 | CONFIG_LBD=y | 133 | CONFIG_LBD=y |
136 | # CONFIG_BLK_DEV_IO_TRACE is not set | 134 | # CONFIG_BLK_DEV_IO_TRACE is not set |
137 | # CONFIG_LSF is not set | ||
138 | # CONFIG_BLK_DEV_BSG is not set | 135 | # CONFIG_BLK_DEV_BSG is not set |
139 | # CONFIG_BLK_DEV_INTEGRITY is not set | 136 | # CONFIG_BLK_DEV_INTEGRITY is not set |
140 | 137 | ||
@@ -151,6 +148,10 @@ CONFIG_DEFAULT_AS=y | |||
151 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
152 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
153 | CONFIG_CLASSIC_RCU=y | 150 | CONFIG_CLASSIC_RCU=y |
151 | # CONFIG_TREE_RCU is not set | ||
152 | # CONFIG_PREEMPT_RCU is not set | ||
153 | # CONFIG_TREE_RCU_TRACE is not set | ||
154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
154 | # CONFIG_FREEZER is not set | 155 | # CONFIG_FREEZER is not set |
155 | CONFIG_PPC4xx_PCI_EXPRESS=y | 156 | CONFIG_PPC4xx_PCI_EXPRESS=y |
156 | 157 | ||
@@ -188,6 +189,7 @@ CONFIG_460EX=y | |||
188 | # CONFIG_GENERIC_IOMAP is not set | 189 | # CONFIG_GENERIC_IOMAP is not set |
189 | # CONFIG_CPU_FREQ is not set | 190 | # CONFIG_CPU_FREQ is not set |
190 | # CONFIG_FSL_ULI1575 is not set | 191 | # CONFIG_FSL_ULI1575 is not set |
192 | # CONFIG_SIMPLE_GPIO is not set | ||
191 | 193 | ||
192 | # | 194 | # |
193 | # Kernel options | 195 | # Kernel options |
@@ -212,6 +214,7 @@ CONFIG_BINFMT_ELF=y | |||
212 | # CONFIG_BINFMT_MISC is not set | 214 | # CONFIG_BINFMT_MISC is not set |
213 | # CONFIG_MATH_EMULATION is not set | 215 | # CONFIG_MATH_EMULATION is not set |
214 | # CONFIG_IOMMU_HELPER is not set | 216 | # CONFIG_IOMMU_HELPER is not set |
217 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
215 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 218 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
216 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 219 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
217 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 220 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -226,12 +229,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
226 | CONFIG_PAGEFLAGS_EXTENDED=y | 229 | CONFIG_PAGEFLAGS_EXTENDED=y |
227 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 230 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
228 | CONFIG_MIGRATION=y | 231 | CONFIG_MIGRATION=y |
229 | CONFIG_RESOURCES_64BIT=y | ||
230 | CONFIG_PHYS_ADDR_T_64BIT=y | 232 | CONFIG_PHYS_ADDR_T_64BIT=y |
231 | CONFIG_ZONE_DMA_FLAG=1 | 233 | CONFIG_ZONE_DMA_FLAG=1 |
232 | CONFIG_BOUNCE=y | 234 | CONFIG_BOUNCE=y |
233 | CONFIG_VIRT_TO_BUS=y | 235 | CONFIG_VIRT_TO_BUS=y |
234 | CONFIG_UNEVICTABLE_LRU=y | 236 | CONFIG_UNEVICTABLE_LRU=y |
237 | CONFIG_PPC_4K_PAGES=y | ||
238 | # CONFIG_PPC_16K_PAGES is not set | ||
239 | # CONFIG_PPC_64K_PAGES is not set | ||
235 | CONFIG_FORCE_MAX_ZONEORDER=11 | 240 | CONFIG_FORCE_MAX_ZONEORDER=11 |
236 | CONFIG_PROC_DEVICETREE=y | 241 | CONFIG_PROC_DEVICETREE=y |
237 | CONFIG_CMDLINE_BOOL=y | 242 | CONFIG_CMDLINE_BOOL=y |
@@ -255,6 +260,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
255 | # CONFIG_PCI_MSI is not set | 260 | # CONFIG_PCI_MSI is not set |
256 | CONFIG_PCI_LEGACY=y | 261 | CONFIG_PCI_LEGACY=y |
257 | # CONFIG_PCI_DEBUG is not set | 262 | # CONFIG_PCI_DEBUG is not set |
263 | # CONFIG_PCI_STUB is not set | ||
258 | # CONFIG_PCCARD is not set | 264 | # CONFIG_PCCARD is not set |
259 | # CONFIG_HOTPLUG_PCI is not set | 265 | # CONFIG_HOTPLUG_PCI is not set |
260 | # CONFIG_HAS_RAPIDIO is not set | 266 | # CONFIG_HAS_RAPIDIO is not set |
@@ -279,6 +285,7 @@ CONFIG_NET=y | |||
279 | # | 285 | # |
280 | # Networking options | 286 | # Networking options |
281 | # | 287 | # |
288 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
282 | CONFIG_PACKET=y | 289 | CONFIG_PACKET=y |
283 | # CONFIG_PACKET_MMAP is not set | 290 | # CONFIG_PACKET_MMAP is not set |
284 | CONFIG_UNIX=y | 291 | CONFIG_UNIX=y |
@@ -329,6 +336,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
329 | # CONFIG_ECONET is not set | 336 | # CONFIG_ECONET is not set |
330 | # CONFIG_WAN_ROUTER is not set | 337 | # CONFIG_WAN_ROUTER is not set |
331 | # CONFIG_NET_SCHED is not set | 338 | # CONFIG_NET_SCHED is not set |
339 | # CONFIG_DCB is not set | ||
332 | 340 | ||
333 | # | 341 | # |
334 | # Network testing | 342 | # Network testing |
@@ -341,6 +349,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
341 | # CONFIG_AF_RXRPC is not set | 349 | # CONFIG_AF_RXRPC is not set |
342 | # CONFIG_PHONET is not set | 350 | # CONFIG_PHONET is not set |
343 | # CONFIG_WIRELESS is not set | 351 | # CONFIG_WIRELESS is not set |
352 | # CONFIG_WIMAX is not set | ||
344 | # CONFIG_RFKILL is not set | 353 | # CONFIG_RFKILL is not set |
345 | # CONFIG_NET_9P is not set | 354 | # CONFIG_NET_9P is not set |
346 | 355 | ||
@@ -453,6 +462,10 @@ CONFIG_IBM_NEW_EMAC_EMAC4=y | |||
453 | # CONFIG_WLAN_PRE80211 is not set | 462 | # CONFIG_WLAN_PRE80211 is not set |
454 | # CONFIG_WLAN_80211 is not set | 463 | # CONFIG_WLAN_80211 is not set |
455 | # CONFIG_IWLWIFI_LEDS is not set | 464 | # CONFIG_IWLWIFI_LEDS is not set |
465 | |||
466 | # | ||
467 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
468 | # | ||
456 | # CONFIG_WAN is not set | 469 | # CONFIG_WAN is not set |
457 | # CONFIG_FDDI is not set | 470 | # CONFIG_FDDI is not set |
458 | # CONFIG_HIPPI is not set | 471 | # CONFIG_HIPPI is not set |
@@ -505,9 +518,12 @@ CONFIG_SERIAL_CORE=y | |||
505 | CONFIG_SERIAL_CORE_CONSOLE=y | 518 | CONFIG_SERIAL_CORE_CONSOLE=y |
506 | # CONFIG_SERIAL_JSM is not set | 519 | # CONFIG_SERIAL_JSM is not set |
507 | CONFIG_SERIAL_OF_PLATFORM=y | 520 | CONFIG_SERIAL_OF_PLATFORM=y |
521 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
508 | CONFIG_UNIX98_PTYS=y | 522 | CONFIG_UNIX98_PTYS=y |
523 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
509 | CONFIG_LEGACY_PTYS=y | 524 | CONFIG_LEGACY_PTYS=y |
510 | CONFIG_LEGACY_PTY_COUNT=256 | 525 | CONFIG_LEGACY_PTY_COUNT=256 |
526 | # CONFIG_HVC_UDBG is not set | ||
511 | # CONFIG_IPMI_HANDLER is not set | 527 | # CONFIG_IPMI_HANDLER is not set |
512 | # CONFIG_HW_RANDOM is not set | 528 | # CONFIG_HW_RANDOM is not set |
513 | # CONFIG_NVRAM is not set | 529 | # CONFIG_NVRAM is not set |
@@ -527,11 +543,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
527 | # CONFIG_THERMAL is not set | 543 | # CONFIG_THERMAL is not set |
528 | # CONFIG_THERMAL_HWMON is not set | 544 | # CONFIG_THERMAL_HWMON is not set |
529 | # CONFIG_WATCHDOG is not set | 545 | # CONFIG_WATCHDOG is not set |
546 | CONFIG_SSB_POSSIBLE=y | ||
530 | 547 | ||
531 | # | 548 | # |
532 | # Sonics Silicon Backplane | 549 | # Sonics Silicon Backplane |
533 | # | 550 | # |
534 | CONFIG_SSB_POSSIBLE=y | ||
535 | # CONFIG_SSB is not set | 551 | # CONFIG_SSB is not set |
536 | 552 | ||
537 | # | 553 | # |
@@ -541,7 +557,7 @@ CONFIG_SSB_POSSIBLE=y | |||
541 | # CONFIG_MFD_SM501 is not set | 557 | # CONFIG_MFD_SM501 is not set |
542 | # CONFIG_HTC_PASIC3 is not set | 558 | # CONFIG_HTC_PASIC3 is not set |
543 | # CONFIG_MFD_TMIO is not set | 559 | # CONFIG_MFD_TMIO is not set |
544 | # CONFIG_MFD_WM8400 is not set | 560 | # CONFIG_REGULATOR is not set |
545 | 561 | ||
546 | # | 562 | # |
547 | # Multimedia devices | 563 | # Multimedia devices |
@@ -600,7 +616,9 @@ CONFIG_EXT2_FS=y | |||
600 | # CONFIG_FS_POSIX_ACL is not set | 616 | # CONFIG_FS_POSIX_ACL is not set |
601 | CONFIG_FILE_LOCKING=y | 617 | CONFIG_FILE_LOCKING=y |
602 | # CONFIG_XFS_FS is not set | 618 | # CONFIG_XFS_FS is not set |
619 | # CONFIG_GFS2_FS is not set | ||
603 | # CONFIG_OCFS2_FS is not set | 620 | # CONFIG_OCFS2_FS is not set |
621 | # CONFIG_BTRFS_FS is not set | ||
604 | CONFIG_DNOTIFY=y | 622 | CONFIG_DNOTIFY=y |
605 | CONFIG_INOTIFY=y | 623 | CONFIG_INOTIFY=y |
606 | CONFIG_INOTIFY_USER=y | 624 | CONFIG_INOTIFY_USER=y |
@@ -634,10 +652,7 @@ CONFIG_TMPFS=y | |||
634 | # CONFIG_TMPFS_POSIX_ACL is not set | 652 | # CONFIG_TMPFS_POSIX_ACL is not set |
635 | # CONFIG_HUGETLB_PAGE is not set | 653 | # CONFIG_HUGETLB_PAGE is not set |
636 | # CONFIG_CONFIGFS_FS is not set | 654 | # CONFIG_CONFIGFS_FS is not set |
637 | 655 | CONFIG_MISC_FILESYSTEMS=y | |
638 | # | ||
639 | # Miscellaneous filesystems | ||
640 | # | ||
641 | # CONFIG_ADFS_FS is not set | 656 | # CONFIG_ADFS_FS is not set |
642 | # CONFIG_AFFS_FS is not set | 657 | # CONFIG_AFFS_FS is not set |
643 | # CONFIG_HFS_FS is not set | 658 | # CONFIG_HFS_FS is not set |
@@ -646,6 +661,7 @@ CONFIG_TMPFS=y | |||
646 | # CONFIG_BFS_FS is not set | 661 | # CONFIG_BFS_FS is not set |
647 | # CONFIG_EFS_FS is not set | 662 | # CONFIG_EFS_FS is not set |
648 | CONFIG_CRAMFS=y | 663 | CONFIG_CRAMFS=y |
664 | # CONFIG_SQUASHFS is not set | ||
649 | # CONFIG_VXFS_FS is not set | 665 | # CONFIG_VXFS_FS is not set |
650 | # CONFIG_MINIX_FS is not set | 666 | # CONFIG_MINIX_FS is not set |
651 | # CONFIG_OMFS_FS is not set | 667 | # CONFIG_OMFS_FS is not set |
@@ -686,6 +702,7 @@ CONFIG_MSDOS_PARTITION=y | |||
686 | # Library routines | 702 | # Library routines |
687 | # | 703 | # |
688 | CONFIG_BITREVERSE=y | 704 | CONFIG_BITREVERSE=y |
705 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
689 | # CONFIG_CRC_CCITT is not set | 706 | # CONFIG_CRC_CCITT is not set |
690 | # CONFIG_CRC16 is not set | 707 | # CONFIG_CRC16 is not set |
691 | # CONFIG_CRC_T10DIF is not set | 708 | # CONFIG_CRC_T10DIF is not set |
@@ -736,6 +753,7 @@ CONFIG_SCHED_DEBUG=y | |||
736 | # CONFIG_DEBUG_MEMORY_INIT is not set | 753 | # CONFIG_DEBUG_MEMORY_INIT is not set |
737 | # CONFIG_DEBUG_LIST is not set | 754 | # CONFIG_DEBUG_LIST is not set |
738 | # CONFIG_DEBUG_SG is not set | 755 | # CONFIG_DEBUG_SG is not set |
756 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
739 | # CONFIG_BOOT_PRINTK_DELAY is not set | 757 | # CONFIG_BOOT_PRINTK_DELAY is not set |
740 | # CONFIG_RCU_TORTURE_TEST is not set | 758 | # CONFIG_RCU_TORTURE_TEST is not set |
741 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 759 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -744,18 +762,24 @@ CONFIG_SCHED_DEBUG=y | |||
744 | # CONFIG_FAULT_INJECTION is not set | 762 | # CONFIG_FAULT_INJECTION is not set |
745 | # CONFIG_LATENCYTOP is not set | 763 | # CONFIG_LATENCYTOP is not set |
746 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 764 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
747 | CONFIG_NOP_TRACER=y | 765 | CONFIG_HAVE_FUNCTION_TRACER=y |
748 | CONFIG_HAVE_FTRACE=y | ||
749 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 766 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
750 | # CONFIG_FTRACE is not set | 767 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
768 | |||
769 | # | ||
770 | # Tracers | ||
771 | # | ||
772 | # CONFIG_FUNCTION_TRACER is not set | ||
751 | # CONFIG_SCHED_TRACER is not set | 773 | # CONFIG_SCHED_TRACER is not set |
752 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 774 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
753 | # CONFIG_BOOT_TRACER is not set | 775 | # CONFIG_BOOT_TRACER is not set |
776 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
754 | # CONFIG_STACK_TRACER is not set | 777 | # CONFIG_STACK_TRACER is not set |
755 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 778 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
756 | # CONFIG_SAMPLES is not set | 779 | # CONFIG_SAMPLES is not set |
757 | CONFIG_HAVE_ARCH_KGDB=y | 780 | CONFIG_HAVE_ARCH_KGDB=y |
758 | # CONFIG_KGDB is not set | 781 | # CONFIG_KGDB is not set |
782 | CONFIG_PRINT_STACK_DEPTH=64 | ||
759 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 783 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
760 | # CONFIG_DEBUG_STACK_USAGE is not set | 784 | # CONFIG_DEBUG_STACK_USAGE is not set |
761 | # CONFIG_DEBUG_PAGEALLOC is not set | 785 | # CONFIG_DEBUG_PAGEALLOC is not set |
diff --git a/arch/powerpc/configs/44x/bamboo_defconfig b/arch/powerpc/configs/44x/bamboo_defconfig index f47c2f3420f6..959bdc43a491 100644 --- a/arch/powerpc/configs/44x/bamboo_defconfig +++ b/arch/powerpc/configs/44x/bamboo_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 09:16:06 2008 | 4 | # Tue Jan 20 08:22:33 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -19,6 +19,7 @@ CONFIG_4xx=y | |||
19 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
20 | CONFIG_PTE_64BIT=y | 20 | CONFIG_PTE_64BIT=y |
21 | CONFIG_PHYS_64BIT=y | 21 | CONFIG_PHYS_64BIT=y |
22 | CONFIG_PPC_MMU_NOHASH=y | ||
22 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
23 | CONFIG_NOT_COHERENT_CACHE=y | 24 | CONFIG_NOT_COHERENT_CACHE=y |
24 | CONFIG_PPC32=y | 25 | CONFIG_PPC32=y |
@@ -44,7 +45,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 45 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 46 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 47 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 48 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 50 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 51 | CONFIG_OF=y |
@@ -75,12 +76,12 @@ CONFIG_POSIX_MQUEUE=y | |||
75 | # CONFIG_AUDIT is not set | 76 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 77 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 78 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 79 | CONFIG_GROUP_SCHED=y |
80 | CONFIG_FAIR_GROUP_SCHED=y | 80 | CONFIG_FAIR_GROUP_SCHED=y |
81 | # CONFIG_RT_GROUP_SCHED is not set | 81 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 82 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 83 | # CONFIG_CGROUP_SCHED is not set |
84 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 85 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 86 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 87 | # CONFIG_RELAY is not set |
@@ -115,7 +116,6 @@ CONFIG_SLUB_DEBUG=y | |||
115 | CONFIG_SLUB=y | 116 | CONFIG_SLUB=y |
116 | # CONFIG_SLOB is not set | 117 | # CONFIG_SLOB is not set |
117 | # CONFIG_PROFILING is not set | 118 | # CONFIG_PROFILING is not set |
118 | # CONFIG_MARKERS is not set | ||
119 | CONFIG_HAVE_OPROFILE=y | 119 | CONFIG_HAVE_OPROFILE=y |
120 | # CONFIG_KPROBES is not set | 120 | # CONFIG_KPROBES is not set |
121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -126,7 +126,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
127 | CONFIG_SLABINFO=y | 127 | CONFIG_SLABINFO=y |
128 | CONFIG_RT_MUTEXES=y | 128 | CONFIG_RT_MUTEXES=y |
129 | # CONFIG_TINY_SHMEM is not set | ||
130 | CONFIG_BASE_SMALL=0 | 129 | CONFIG_BASE_SMALL=0 |
131 | CONFIG_MODULES=y | 130 | CONFIG_MODULES=y |
132 | # CONFIG_MODULE_FORCE_LOAD is not set | 131 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -134,11 +133,9 @@ CONFIG_MODULE_UNLOAD=y | |||
134 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 133 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
135 | # CONFIG_MODVERSIONS is not set | 134 | # CONFIG_MODVERSIONS is not set |
136 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 135 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
137 | CONFIG_KMOD=y | ||
138 | CONFIG_BLOCK=y | 136 | CONFIG_BLOCK=y |
139 | CONFIG_LBD=y | 137 | CONFIG_LBD=y |
140 | # CONFIG_BLK_DEV_IO_TRACE is not set | 138 | # CONFIG_BLK_DEV_IO_TRACE is not set |
141 | # CONFIG_LSF is not set | ||
142 | # CONFIG_BLK_DEV_BSG is not set | 139 | # CONFIG_BLK_DEV_BSG is not set |
143 | # CONFIG_BLK_DEV_INTEGRITY is not set | 140 | # CONFIG_BLK_DEV_INTEGRITY is not set |
144 | 141 | ||
@@ -155,6 +152,10 @@ CONFIG_DEFAULT_AS=y | |||
155 | # CONFIG_DEFAULT_NOOP is not set | 152 | # CONFIG_DEFAULT_NOOP is not set |
156 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 153 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
157 | CONFIG_CLASSIC_RCU=y | 154 | CONFIG_CLASSIC_RCU=y |
155 | # CONFIG_TREE_RCU is not set | ||
156 | # CONFIG_PREEMPT_RCU is not set | ||
157 | # CONFIG_TREE_RCU_TRACE is not set | ||
158 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
158 | # CONFIG_FREEZER is not set | 159 | # CONFIG_FREEZER is not set |
159 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 160 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
160 | 161 | ||
@@ -193,6 +194,7 @@ CONFIG_IBM440EP_ERR42=y | |||
193 | # CONFIG_GENERIC_IOMAP is not set | 194 | # CONFIG_GENERIC_IOMAP is not set |
194 | # CONFIG_CPU_FREQ is not set | 195 | # CONFIG_CPU_FREQ is not set |
195 | # CONFIG_FSL_ULI1575 is not set | 196 | # CONFIG_FSL_ULI1575 is not set |
197 | # CONFIG_SIMPLE_GPIO is not set | ||
196 | 198 | ||
197 | # | 199 | # |
198 | # Kernel options | 200 | # Kernel options |
@@ -216,6 +218,7 @@ CONFIG_BINFMT_ELF=y | |||
216 | # CONFIG_BINFMT_MISC is not set | 218 | # CONFIG_BINFMT_MISC is not set |
217 | # CONFIG_MATH_EMULATION is not set | 219 | # CONFIG_MATH_EMULATION is not set |
218 | # CONFIG_IOMMU_HELPER is not set | 220 | # CONFIG_IOMMU_HELPER is not set |
221 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
219 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 222 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
220 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 223 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
221 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 224 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -230,12 +233,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
230 | CONFIG_PAGEFLAGS_EXTENDED=y | 233 | CONFIG_PAGEFLAGS_EXTENDED=y |
231 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 234 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
232 | CONFIG_MIGRATION=y | 235 | CONFIG_MIGRATION=y |
233 | CONFIG_RESOURCES_64BIT=y | ||
234 | CONFIG_PHYS_ADDR_T_64BIT=y | 236 | CONFIG_PHYS_ADDR_T_64BIT=y |
235 | CONFIG_ZONE_DMA_FLAG=1 | 237 | CONFIG_ZONE_DMA_FLAG=1 |
236 | CONFIG_BOUNCE=y | 238 | CONFIG_BOUNCE=y |
237 | CONFIG_VIRT_TO_BUS=y | 239 | CONFIG_VIRT_TO_BUS=y |
238 | CONFIG_UNEVICTABLE_LRU=y | 240 | CONFIG_UNEVICTABLE_LRU=y |
241 | CONFIG_PPC_4K_PAGES=y | ||
242 | # CONFIG_PPC_16K_PAGES is not set | ||
243 | # CONFIG_PPC_64K_PAGES is not set | ||
239 | CONFIG_FORCE_MAX_ZONEORDER=11 | 244 | CONFIG_FORCE_MAX_ZONEORDER=11 |
240 | CONFIG_PROC_DEVICETREE=y | 245 | CONFIG_PROC_DEVICETREE=y |
241 | CONFIG_CMDLINE_BOOL=y | 246 | CONFIG_CMDLINE_BOOL=y |
@@ -259,6 +264,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
259 | # CONFIG_PCI_MSI is not set | 264 | # CONFIG_PCI_MSI is not set |
260 | CONFIG_PCI_LEGACY=y | 265 | CONFIG_PCI_LEGACY=y |
261 | # CONFIG_PCI_DEBUG is not set | 266 | # CONFIG_PCI_DEBUG is not set |
267 | # CONFIG_PCI_STUB is not set | ||
262 | # CONFIG_PCCARD is not set | 268 | # CONFIG_PCCARD is not set |
263 | # CONFIG_HOTPLUG_PCI is not set | 269 | # CONFIG_HOTPLUG_PCI is not set |
264 | # CONFIG_HAS_RAPIDIO is not set | 270 | # CONFIG_HAS_RAPIDIO is not set |
@@ -283,6 +289,7 @@ CONFIG_NET=y | |||
283 | # | 289 | # |
284 | # Networking options | 290 | # Networking options |
285 | # | 291 | # |
292 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
286 | CONFIG_PACKET=y | 293 | CONFIG_PACKET=y |
287 | # CONFIG_PACKET_MMAP is not set | 294 | # CONFIG_PACKET_MMAP is not set |
288 | CONFIG_UNIX=y | 295 | CONFIG_UNIX=y |
@@ -333,6 +340,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
333 | # CONFIG_ECONET is not set | 340 | # CONFIG_ECONET is not set |
334 | # CONFIG_WAN_ROUTER is not set | 341 | # CONFIG_WAN_ROUTER is not set |
335 | # CONFIG_NET_SCHED is not set | 342 | # CONFIG_NET_SCHED is not set |
343 | # CONFIG_DCB is not set | ||
336 | 344 | ||
337 | # | 345 | # |
338 | # Network testing | 346 | # Network testing |
@@ -345,6 +353,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
345 | # CONFIG_AF_RXRPC is not set | 353 | # CONFIG_AF_RXRPC is not set |
346 | # CONFIG_PHONET is not set | 354 | # CONFIG_PHONET is not set |
347 | # CONFIG_WIRELESS is not set | 355 | # CONFIG_WIRELESS is not set |
356 | # CONFIG_WIMAX is not set | ||
348 | # CONFIG_RFKILL is not set | 357 | # CONFIG_RFKILL is not set |
349 | # CONFIG_NET_9P is not set | 358 | # CONFIG_NET_9P is not set |
350 | 359 | ||
@@ -394,6 +403,7 @@ CONFIG_MISC_DEVICES=y | |||
394 | # CONFIG_TIFM_CORE is not set | 403 | # CONFIG_TIFM_CORE is not set |
395 | # CONFIG_ENCLOSURE_SERVICES is not set | 404 | # CONFIG_ENCLOSURE_SERVICES is not set |
396 | # CONFIG_HP_ILO is not set | 405 | # CONFIG_HP_ILO is not set |
406 | # CONFIG_C2PORT is not set | ||
397 | CONFIG_HAVE_IDE=y | 407 | CONFIG_HAVE_IDE=y |
398 | # CONFIG_IDE is not set | 408 | # CONFIG_IDE is not set |
399 | 409 | ||
@@ -476,6 +486,7 @@ CONFIG_NETDEV_1000=y | |||
476 | # CONFIG_JME is not set | 486 | # CONFIG_JME is not set |
477 | CONFIG_NETDEV_10000=y | 487 | CONFIG_NETDEV_10000=y |
478 | # CONFIG_CHELSIO_T1 is not set | 488 | # CONFIG_CHELSIO_T1 is not set |
489 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
479 | # CONFIG_CHELSIO_T3 is not set | 490 | # CONFIG_CHELSIO_T3 is not set |
480 | # CONFIG_ENIC is not set | 491 | # CONFIG_ENIC is not set |
481 | # CONFIG_IXGBE is not set | 492 | # CONFIG_IXGBE is not set |
@@ -498,6 +509,10 @@ CONFIG_NETDEV_10000=y | |||
498 | # CONFIG_WLAN_PRE80211 is not set | 509 | # CONFIG_WLAN_PRE80211 is not set |
499 | # CONFIG_WLAN_80211 is not set | 510 | # CONFIG_WLAN_80211 is not set |
500 | # CONFIG_IWLWIFI_LEDS is not set | 511 | # CONFIG_IWLWIFI_LEDS is not set |
512 | |||
513 | # | ||
514 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
515 | # | ||
501 | # CONFIG_WAN is not set | 516 | # CONFIG_WAN is not set |
502 | # CONFIG_FDDI is not set | 517 | # CONFIG_FDDI is not set |
503 | # CONFIG_HIPPI is not set | 518 | # CONFIG_HIPPI is not set |
@@ -550,9 +565,12 @@ CONFIG_SERIAL_CORE=y | |||
550 | CONFIG_SERIAL_CORE_CONSOLE=y | 565 | CONFIG_SERIAL_CORE_CONSOLE=y |
551 | # CONFIG_SERIAL_JSM is not set | 566 | # CONFIG_SERIAL_JSM is not set |
552 | CONFIG_SERIAL_OF_PLATFORM=y | 567 | CONFIG_SERIAL_OF_PLATFORM=y |
568 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
553 | CONFIG_UNIX98_PTYS=y | 569 | CONFIG_UNIX98_PTYS=y |
570 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
554 | CONFIG_LEGACY_PTYS=y | 571 | CONFIG_LEGACY_PTYS=y |
555 | CONFIG_LEGACY_PTY_COUNT=256 | 572 | CONFIG_LEGACY_PTY_COUNT=256 |
573 | # CONFIG_HVC_UDBG is not set | ||
556 | # CONFIG_IPMI_HANDLER is not set | 574 | # CONFIG_IPMI_HANDLER is not set |
557 | # CONFIG_HW_RANDOM is not set | 575 | # CONFIG_HW_RANDOM is not set |
558 | # CONFIG_NVRAM is not set | 576 | # CONFIG_NVRAM is not set |
@@ -571,11 +589,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
571 | # CONFIG_HWMON is not set | 589 | # CONFIG_HWMON is not set |
572 | CONFIG_THERMAL=y | 590 | CONFIG_THERMAL=y |
573 | # CONFIG_WATCHDOG is not set | 591 | # CONFIG_WATCHDOG is not set |
592 | CONFIG_SSB_POSSIBLE=y | ||
574 | 593 | ||
575 | # | 594 | # |
576 | # Sonics Silicon Backplane | 595 | # Sonics Silicon Backplane |
577 | # | 596 | # |
578 | CONFIG_SSB_POSSIBLE=y | ||
579 | # CONFIG_SSB is not set | 597 | # CONFIG_SSB is not set |
580 | 598 | ||
581 | # | 599 | # |
@@ -585,7 +603,7 @@ CONFIG_SSB_POSSIBLE=y | |||
585 | # CONFIG_MFD_SM501 is not set | 603 | # CONFIG_MFD_SM501 is not set |
586 | # CONFIG_HTC_PASIC3 is not set | 604 | # CONFIG_HTC_PASIC3 is not set |
587 | # CONFIG_MFD_TMIO is not set | 605 | # CONFIG_MFD_TMIO is not set |
588 | # CONFIG_MFD_WM8400 is not set | 606 | # CONFIG_REGULATOR is not set |
589 | 607 | ||
590 | # | 608 | # |
591 | # Multimedia devices | 609 | # Multimedia devices |
@@ -631,9 +649,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
631 | # | 649 | # |
632 | 650 | ||
633 | # | 651 | # |
634 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 652 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
635 | # | 653 | # |
636 | # CONFIG_USB_GADGET is not set | 654 | # CONFIG_USB_GADGET is not set |
655 | |||
656 | # | ||
657 | # OTG and related infrastructure | ||
658 | # | ||
637 | # CONFIG_UWB is not set | 659 | # CONFIG_UWB is not set |
638 | # CONFIG_MMC is not set | 660 | # CONFIG_MMC is not set |
639 | # CONFIG_MEMSTICK is not set | 661 | # CONFIG_MEMSTICK is not set |
@@ -659,7 +681,9 @@ CONFIG_EXT2_FS=y | |||
659 | # CONFIG_FS_POSIX_ACL is not set | 681 | # CONFIG_FS_POSIX_ACL is not set |
660 | CONFIG_FILE_LOCKING=y | 682 | CONFIG_FILE_LOCKING=y |
661 | # CONFIG_XFS_FS is not set | 683 | # CONFIG_XFS_FS is not set |
684 | # CONFIG_GFS2_FS is not set | ||
662 | # CONFIG_OCFS2_FS is not set | 685 | # CONFIG_OCFS2_FS is not set |
686 | # CONFIG_BTRFS_FS is not set | ||
663 | CONFIG_DNOTIFY=y | 687 | CONFIG_DNOTIFY=y |
664 | CONFIG_INOTIFY=y | 688 | CONFIG_INOTIFY=y |
665 | CONFIG_INOTIFY_USER=y | 689 | CONFIG_INOTIFY_USER=y |
@@ -693,10 +717,7 @@ CONFIG_TMPFS=y | |||
693 | # CONFIG_TMPFS_POSIX_ACL is not set | 717 | # CONFIG_TMPFS_POSIX_ACL is not set |
694 | # CONFIG_HUGETLB_PAGE is not set | 718 | # CONFIG_HUGETLB_PAGE is not set |
695 | # CONFIG_CONFIGFS_FS is not set | 719 | # CONFIG_CONFIGFS_FS is not set |
696 | 720 | CONFIG_MISC_FILESYSTEMS=y | |
697 | # | ||
698 | # Miscellaneous filesystems | ||
699 | # | ||
700 | # CONFIG_ADFS_FS is not set | 721 | # CONFIG_ADFS_FS is not set |
701 | # CONFIG_AFFS_FS is not set | 722 | # CONFIG_AFFS_FS is not set |
702 | # CONFIG_HFS_FS is not set | 723 | # CONFIG_HFS_FS is not set |
@@ -705,6 +726,7 @@ CONFIG_TMPFS=y | |||
705 | # CONFIG_BFS_FS is not set | 726 | # CONFIG_BFS_FS is not set |
706 | # CONFIG_EFS_FS is not set | 727 | # CONFIG_EFS_FS is not set |
707 | CONFIG_CRAMFS=y | 728 | CONFIG_CRAMFS=y |
729 | # CONFIG_SQUASHFS is not set | ||
708 | # CONFIG_VXFS_FS is not set | 730 | # CONFIG_VXFS_FS is not set |
709 | # CONFIG_MINIX_FS is not set | 731 | # CONFIG_MINIX_FS is not set |
710 | # CONFIG_OMFS_FS is not set | 732 | # CONFIG_OMFS_FS is not set |
@@ -745,6 +767,7 @@ CONFIG_MSDOS_PARTITION=y | |||
745 | # Library routines | 767 | # Library routines |
746 | # | 768 | # |
747 | CONFIG_BITREVERSE=y | 769 | CONFIG_BITREVERSE=y |
770 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
748 | # CONFIG_CRC_CCITT is not set | 771 | # CONFIG_CRC_CCITT is not set |
749 | # CONFIG_CRC16 is not set | 772 | # CONFIG_CRC16 is not set |
750 | # CONFIG_CRC_T10DIF is not set | 773 | # CONFIG_CRC_T10DIF is not set |
@@ -795,6 +818,7 @@ CONFIG_SCHED_DEBUG=y | |||
795 | # CONFIG_DEBUG_MEMORY_INIT is not set | 818 | # CONFIG_DEBUG_MEMORY_INIT is not set |
796 | # CONFIG_DEBUG_LIST is not set | 819 | # CONFIG_DEBUG_LIST is not set |
797 | # CONFIG_DEBUG_SG is not set | 820 | # CONFIG_DEBUG_SG is not set |
821 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
798 | # CONFIG_BOOT_PRINTK_DELAY is not set | 822 | # CONFIG_BOOT_PRINTK_DELAY is not set |
799 | # CONFIG_RCU_TORTURE_TEST is not set | 823 | # CONFIG_RCU_TORTURE_TEST is not set |
800 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 824 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -803,18 +827,24 @@ CONFIG_SCHED_DEBUG=y | |||
803 | # CONFIG_FAULT_INJECTION is not set | 827 | # CONFIG_FAULT_INJECTION is not set |
804 | # CONFIG_LATENCYTOP is not set | 828 | # CONFIG_LATENCYTOP is not set |
805 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 829 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
806 | CONFIG_NOP_TRACER=y | 830 | CONFIG_HAVE_FUNCTION_TRACER=y |
807 | CONFIG_HAVE_FTRACE=y | ||
808 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 831 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
809 | # CONFIG_FTRACE is not set | 832 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
833 | |||
834 | # | ||
835 | # Tracers | ||
836 | # | ||
837 | # CONFIG_FUNCTION_TRACER is not set | ||
810 | # CONFIG_SCHED_TRACER is not set | 838 | # CONFIG_SCHED_TRACER is not set |
811 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 839 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
812 | # CONFIG_BOOT_TRACER is not set | 840 | # CONFIG_BOOT_TRACER is not set |
841 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
813 | # CONFIG_STACK_TRACER is not set | 842 | # CONFIG_STACK_TRACER is not set |
814 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 843 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
815 | # CONFIG_SAMPLES is not set | 844 | # CONFIG_SAMPLES is not set |
816 | CONFIG_HAVE_ARCH_KGDB=y | 845 | CONFIG_HAVE_ARCH_KGDB=y |
817 | # CONFIG_KGDB is not set | 846 | # CONFIG_KGDB is not set |
847 | CONFIG_PRINT_STACK_DEPTH=64 | ||
818 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 848 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
819 | # CONFIG_DEBUG_STACK_USAGE is not set | 849 | # CONFIG_DEBUG_STACK_USAGE is not set |
820 | # CONFIG_DEBUG_PAGEALLOC is not set | 850 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -841,11 +871,15 @@ CONFIG_CRYPTO=y | |||
841 | # | 871 | # |
842 | # CONFIG_CRYPTO_FIPS is not set | 872 | # CONFIG_CRYPTO_FIPS is not set |
843 | CONFIG_CRYPTO_ALGAPI=y | 873 | CONFIG_CRYPTO_ALGAPI=y |
844 | CONFIG_CRYPTO_AEAD=y | 874 | CONFIG_CRYPTO_ALGAPI2=y |
875 | CONFIG_CRYPTO_AEAD2=y | ||
845 | CONFIG_CRYPTO_BLKCIPHER=y | 876 | CONFIG_CRYPTO_BLKCIPHER=y |
877 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
846 | CONFIG_CRYPTO_HASH=y | 878 | CONFIG_CRYPTO_HASH=y |
847 | CONFIG_CRYPTO_RNG=y | 879 | CONFIG_CRYPTO_HASH2=y |
880 | CONFIG_CRYPTO_RNG2=y | ||
848 | CONFIG_CRYPTO_MANAGER=y | 881 | CONFIG_CRYPTO_MANAGER=y |
882 | CONFIG_CRYPTO_MANAGER2=y | ||
849 | # CONFIG_CRYPTO_GF128MUL is not set | 883 | # CONFIG_CRYPTO_GF128MUL is not set |
850 | # CONFIG_CRYPTO_NULL is not set | 884 | # CONFIG_CRYPTO_NULL is not set |
851 | # CONFIG_CRYPTO_CRYPTD is not set | 885 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/44x/canyonlands_defconfig b/arch/powerpc/configs/44x/canyonlands_defconfig index 0694756ac759..81cdcc4b9278 100644 --- a/arch/powerpc/configs/44x/canyonlands_defconfig +++ b/arch/powerpc/configs/44x/canyonlands_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 09:16:08 2008 | 4 | # Tue Jan 20 08:22:35 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -19,6 +19,7 @@ CONFIG_4xx=y | |||
19 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
20 | CONFIG_PTE_64BIT=y | 20 | CONFIG_PTE_64BIT=y |
21 | CONFIG_PHYS_64BIT=y | 21 | CONFIG_PHYS_64BIT=y |
22 | CONFIG_PPC_MMU_NOHASH=y | ||
22 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
23 | CONFIG_NOT_COHERENT_CACHE=y | 24 | CONFIG_NOT_COHERENT_CACHE=y |
24 | CONFIG_PPC32=y | 25 | CONFIG_PPC32=y |
@@ -44,7 +45,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 45 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 46 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 47 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 48 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 50 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 51 | CONFIG_OF=y |
@@ -75,8 +76,8 @@ CONFIG_POSIX_MQUEUE=y | |||
75 | # CONFIG_AUDIT is not set | 76 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 77 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 78 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | # CONFIG_GROUP_SCHED is not set | 79 | # CONFIG_GROUP_SCHED is not set |
80 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_SYSFS_DEPRECATED=y | 81 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | 82 | CONFIG_SYSFS_DEPRECATED_V2=y |
82 | # CONFIG_RELAY is not set | 83 | # CONFIG_RELAY is not set |
@@ -111,7 +112,6 @@ CONFIG_SLUB_DEBUG=y | |||
111 | CONFIG_SLUB=y | 112 | CONFIG_SLUB=y |
112 | # CONFIG_SLOB is not set | 113 | # CONFIG_SLOB is not set |
113 | # CONFIG_PROFILING is not set | 114 | # CONFIG_PROFILING is not set |
114 | # CONFIG_MARKERS is not set | ||
115 | CONFIG_HAVE_OPROFILE=y | 115 | CONFIG_HAVE_OPROFILE=y |
116 | # CONFIG_KPROBES is not set | 116 | # CONFIG_KPROBES is not set |
117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -122,7 +122,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
123 | CONFIG_SLABINFO=y | 123 | CONFIG_SLABINFO=y |
124 | CONFIG_RT_MUTEXES=y | 124 | CONFIG_RT_MUTEXES=y |
125 | # CONFIG_TINY_SHMEM is not set | ||
126 | CONFIG_BASE_SMALL=0 | 125 | CONFIG_BASE_SMALL=0 |
127 | CONFIG_MODULES=y | 126 | CONFIG_MODULES=y |
128 | # CONFIG_MODULE_FORCE_LOAD is not set | 127 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -130,11 +129,9 @@ CONFIG_MODULE_UNLOAD=y | |||
130 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 129 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
131 | # CONFIG_MODVERSIONS is not set | 130 | # CONFIG_MODVERSIONS is not set |
132 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
133 | CONFIG_KMOD=y | ||
134 | CONFIG_BLOCK=y | 132 | CONFIG_BLOCK=y |
135 | CONFIG_LBD=y | 133 | CONFIG_LBD=y |
136 | # CONFIG_BLK_DEV_IO_TRACE is not set | 134 | # CONFIG_BLK_DEV_IO_TRACE is not set |
137 | # CONFIG_LSF is not set | ||
138 | # CONFIG_BLK_DEV_BSG is not set | 135 | # CONFIG_BLK_DEV_BSG is not set |
139 | # CONFIG_BLK_DEV_INTEGRITY is not set | 136 | # CONFIG_BLK_DEV_INTEGRITY is not set |
140 | 137 | ||
@@ -151,6 +148,10 @@ CONFIG_DEFAULT_AS=y | |||
151 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
152 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
153 | CONFIG_CLASSIC_RCU=y | 150 | CONFIG_CLASSIC_RCU=y |
151 | # CONFIG_TREE_RCU is not set | ||
152 | # CONFIG_PREEMPT_RCU is not set | ||
153 | # CONFIG_TREE_RCU_TRACE is not set | ||
154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
154 | # CONFIG_FREEZER is not set | 155 | # CONFIG_FREEZER is not set |
155 | CONFIG_PPC4xx_PCI_EXPRESS=y | 156 | CONFIG_PPC4xx_PCI_EXPRESS=y |
156 | 157 | ||
@@ -188,6 +189,7 @@ CONFIG_460EX=y | |||
188 | # CONFIG_GENERIC_IOMAP is not set | 189 | # CONFIG_GENERIC_IOMAP is not set |
189 | # CONFIG_CPU_FREQ is not set | 190 | # CONFIG_CPU_FREQ is not set |
190 | # CONFIG_FSL_ULI1575 is not set | 191 | # CONFIG_FSL_ULI1575 is not set |
192 | # CONFIG_SIMPLE_GPIO is not set | ||
191 | 193 | ||
192 | # | 194 | # |
193 | # Kernel options | 195 | # Kernel options |
@@ -212,6 +214,7 @@ CONFIG_BINFMT_ELF=y | |||
212 | # CONFIG_BINFMT_MISC is not set | 214 | # CONFIG_BINFMT_MISC is not set |
213 | # CONFIG_MATH_EMULATION is not set | 215 | # CONFIG_MATH_EMULATION is not set |
214 | # CONFIG_IOMMU_HELPER is not set | 216 | # CONFIG_IOMMU_HELPER is not set |
217 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
215 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 218 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
216 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 219 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
217 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 220 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -226,12 +229,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
226 | CONFIG_PAGEFLAGS_EXTENDED=y | 229 | CONFIG_PAGEFLAGS_EXTENDED=y |
227 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 230 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
228 | CONFIG_MIGRATION=y | 231 | CONFIG_MIGRATION=y |
229 | CONFIG_RESOURCES_64BIT=y | ||
230 | CONFIG_PHYS_ADDR_T_64BIT=y | 232 | CONFIG_PHYS_ADDR_T_64BIT=y |
231 | CONFIG_ZONE_DMA_FLAG=1 | 233 | CONFIG_ZONE_DMA_FLAG=1 |
232 | CONFIG_BOUNCE=y | 234 | CONFIG_BOUNCE=y |
233 | CONFIG_VIRT_TO_BUS=y | 235 | CONFIG_VIRT_TO_BUS=y |
234 | CONFIG_UNEVICTABLE_LRU=y | 236 | CONFIG_UNEVICTABLE_LRU=y |
237 | CONFIG_PPC_4K_PAGES=y | ||
238 | # CONFIG_PPC_16K_PAGES is not set | ||
239 | # CONFIG_PPC_64K_PAGES is not set | ||
235 | CONFIG_FORCE_MAX_ZONEORDER=11 | 240 | CONFIG_FORCE_MAX_ZONEORDER=11 |
236 | CONFIG_PROC_DEVICETREE=y | 241 | CONFIG_PROC_DEVICETREE=y |
237 | CONFIG_CMDLINE_BOOL=y | 242 | CONFIG_CMDLINE_BOOL=y |
@@ -255,6 +260,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
255 | # CONFIG_PCI_MSI is not set | 260 | # CONFIG_PCI_MSI is not set |
256 | CONFIG_PCI_LEGACY=y | 261 | CONFIG_PCI_LEGACY=y |
257 | # CONFIG_PCI_DEBUG is not set | 262 | # CONFIG_PCI_DEBUG is not set |
263 | # CONFIG_PCI_STUB is not set | ||
258 | # CONFIG_PCCARD is not set | 264 | # CONFIG_PCCARD is not set |
259 | # CONFIG_HOTPLUG_PCI is not set | 265 | # CONFIG_HOTPLUG_PCI is not set |
260 | # CONFIG_HAS_RAPIDIO is not set | 266 | # CONFIG_HAS_RAPIDIO is not set |
@@ -279,6 +285,7 @@ CONFIG_NET=y | |||
279 | # | 285 | # |
280 | # Networking options | 286 | # Networking options |
281 | # | 287 | # |
288 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
282 | CONFIG_PACKET=y | 289 | CONFIG_PACKET=y |
283 | # CONFIG_PACKET_MMAP is not set | 290 | # CONFIG_PACKET_MMAP is not set |
284 | CONFIG_UNIX=y | 291 | CONFIG_UNIX=y |
@@ -329,6 +336,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
329 | # CONFIG_ECONET is not set | 336 | # CONFIG_ECONET is not set |
330 | # CONFIG_WAN_ROUTER is not set | 337 | # CONFIG_WAN_ROUTER is not set |
331 | # CONFIG_NET_SCHED is not set | 338 | # CONFIG_NET_SCHED is not set |
339 | # CONFIG_DCB is not set | ||
332 | 340 | ||
333 | # | 341 | # |
334 | # Network testing | 342 | # Network testing |
@@ -341,6 +349,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
341 | # CONFIG_AF_RXRPC is not set | 349 | # CONFIG_AF_RXRPC is not set |
342 | # CONFIG_PHONET is not set | 350 | # CONFIG_PHONET is not set |
343 | # CONFIG_WIRELESS is not set | 351 | # CONFIG_WIRELESS is not set |
352 | # CONFIG_WIMAX is not set | ||
344 | # CONFIG_RFKILL is not set | 353 | # CONFIG_RFKILL is not set |
345 | # CONFIG_NET_9P is not set | 354 | # CONFIG_NET_9P is not set |
346 | 355 | ||
@@ -453,6 +462,10 @@ CONFIG_IBM_NEW_EMAC_EMAC4=y | |||
453 | # CONFIG_WLAN_PRE80211 is not set | 462 | # CONFIG_WLAN_PRE80211 is not set |
454 | # CONFIG_WLAN_80211 is not set | 463 | # CONFIG_WLAN_80211 is not set |
455 | # CONFIG_IWLWIFI_LEDS is not set | 464 | # CONFIG_IWLWIFI_LEDS is not set |
465 | |||
466 | # | ||
467 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
468 | # | ||
456 | # CONFIG_WAN is not set | 469 | # CONFIG_WAN is not set |
457 | # CONFIG_FDDI is not set | 470 | # CONFIG_FDDI is not set |
458 | # CONFIG_HIPPI is not set | 471 | # CONFIG_HIPPI is not set |
@@ -505,9 +518,12 @@ CONFIG_SERIAL_CORE=y | |||
505 | CONFIG_SERIAL_CORE_CONSOLE=y | 518 | CONFIG_SERIAL_CORE_CONSOLE=y |
506 | # CONFIG_SERIAL_JSM is not set | 519 | # CONFIG_SERIAL_JSM is not set |
507 | CONFIG_SERIAL_OF_PLATFORM=y | 520 | CONFIG_SERIAL_OF_PLATFORM=y |
521 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
508 | CONFIG_UNIX98_PTYS=y | 522 | CONFIG_UNIX98_PTYS=y |
523 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
509 | CONFIG_LEGACY_PTYS=y | 524 | CONFIG_LEGACY_PTYS=y |
510 | CONFIG_LEGACY_PTY_COUNT=256 | 525 | CONFIG_LEGACY_PTY_COUNT=256 |
526 | # CONFIG_HVC_UDBG is not set | ||
511 | # CONFIG_IPMI_HANDLER is not set | 527 | # CONFIG_IPMI_HANDLER is not set |
512 | # CONFIG_HW_RANDOM is not set | 528 | # CONFIG_HW_RANDOM is not set |
513 | # CONFIG_NVRAM is not set | 529 | # CONFIG_NVRAM is not set |
@@ -527,11 +543,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
527 | # CONFIG_THERMAL is not set | 543 | # CONFIG_THERMAL is not set |
528 | # CONFIG_THERMAL_HWMON is not set | 544 | # CONFIG_THERMAL_HWMON is not set |
529 | # CONFIG_WATCHDOG is not set | 545 | # CONFIG_WATCHDOG is not set |
546 | CONFIG_SSB_POSSIBLE=y | ||
530 | 547 | ||
531 | # | 548 | # |
532 | # Sonics Silicon Backplane | 549 | # Sonics Silicon Backplane |
533 | # | 550 | # |
534 | CONFIG_SSB_POSSIBLE=y | ||
535 | # CONFIG_SSB is not set | 551 | # CONFIG_SSB is not set |
536 | 552 | ||
537 | # | 553 | # |
@@ -541,7 +557,7 @@ CONFIG_SSB_POSSIBLE=y | |||
541 | # CONFIG_MFD_SM501 is not set | 557 | # CONFIG_MFD_SM501 is not set |
542 | # CONFIG_HTC_PASIC3 is not set | 558 | # CONFIG_HTC_PASIC3 is not set |
543 | # CONFIG_MFD_TMIO is not set | 559 | # CONFIG_MFD_TMIO is not set |
544 | # CONFIG_MFD_WM8400 is not set | 560 | # CONFIG_REGULATOR is not set |
545 | 561 | ||
546 | # | 562 | # |
547 | # Multimedia devices | 563 | # Multimedia devices |
@@ -600,7 +616,9 @@ CONFIG_EXT2_FS=y | |||
600 | # CONFIG_FS_POSIX_ACL is not set | 616 | # CONFIG_FS_POSIX_ACL is not set |
601 | CONFIG_FILE_LOCKING=y | 617 | CONFIG_FILE_LOCKING=y |
602 | # CONFIG_XFS_FS is not set | 618 | # CONFIG_XFS_FS is not set |
619 | # CONFIG_GFS2_FS is not set | ||
603 | # CONFIG_OCFS2_FS is not set | 620 | # CONFIG_OCFS2_FS is not set |
621 | # CONFIG_BTRFS_FS is not set | ||
604 | CONFIG_DNOTIFY=y | 622 | CONFIG_DNOTIFY=y |
605 | CONFIG_INOTIFY=y | 623 | CONFIG_INOTIFY=y |
606 | CONFIG_INOTIFY_USER=y | 624 | CONFIG_INOTIFY_USER=y |
@@ -634,10 +652,7 @@ CONFIG_TMPFS=y | |||
634 | # CONFIG_TMPFS_POSIX_ACL is not set | 652 | # CONFIG_TMPFS_POSIX_ACL is not set |
635 | # CONFIG_HUGETLB_PAGE is not set | 653 | # CONFIG_HUGETLB_PAGE is not set |
636 | # CONFIG_CONFIGFS_FS is not set | 654 | # CONFIG_CONFIGFS_FS is not set |
637 | 655 | CONFIG_MISC_FILESYSTEMS=y | |
638 | # | ||
639 | # Miscellaneous filesystems | ||
640 | # | ||
641 | # CONFIG_ADFS_FS is not set | 656 | # CONFIG_ADFS_FS is not set |
642 | # CONFIG_AFFS_FS is not set | 657 | # CONFIG_AFFS_FS is not set |
643 | # CONFIG_HFS_FS is not set | 658 | # CONFIG_HFS_FS is not set |
@@ -646,6 +661,7 @@ CONFIG_TMPFS=y | |||
646 | # CONFIG_BFS_FS is not set | 661 | # CONFIG_BFS_FS is not set |
647 | # CONFIG_EFS_FS is not set | 662 | # CONFIG_EFS_FS is not set |
648 | CONFIG_CRAMFS=y | 663 | CONFIG_CRAMFS=y |
664 | # CONFIG_SQUASHFS is not set | ||
649 | # CONFIG_VXFS_FS is not set | 665 | # CONFIG_VXFS_FS is not set |
650 | # CONFIG_MINIX_FS is not set | 666 | # CONFIG_MINIX_FS is not set |
651 | # CONFIG_OMFS_FS is not set | 667 | # CONFIG_OMFS_FS is not set |
@@ -686,6 +702,7 @@ CONFIG_MSDOS_PARTITION=y | |||
686 | # Library routines | 702 | # Library routines |
687 | # | 703 | # |
688 | CONFIG_BITREVERSE=y | 704 | CONFIG_BITREVERSE=y |
705 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
689 | # CONFIG_CRC_CCITT is not set | 706 | # CONFIG_CRC_CCITT is not set |
690 | # CONFIG_CRC16 is not set | 707 | # CONFIG_CRC16 is not set |
691 | # CONFIG_CRC_T10DIF is not set | 708 | # CONFIG_CRC_T10DIF is not set |
@@ -736,6 +753,7 @@ CONFIG_SCHED_DEBUG=y | |||
736 | # CONFIG_DEBUG_MEMORY_INIT is not set | 753 | # CONFIG_DEBUG_MEMORY_INIT is not set |
737 | # CONFIG_DEBUG_LIST is not set | 754 | # CONFIG_DEBUG_LIST is not set |
738 | # CONFIG_DEBUG_SG is not set | 755 | # CONFIG_DEBUG_SG is not set |
756 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
739 | # CONFIG_BOOT_PRINTK_DELAY is not set | 757 | # CONFIG_BOOT_PRINTK_DELAY is not set |
740 | # CONFIG_RCU_TORTURE_TEST is not set | 758 | # CONFIG_RCU_TORTURE_TEST is not set |
741 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 759 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -744,18 +762,24 @@ CONFIG_SCHED_DEBUG=y | |||
744 | # CONFIG_FAULT_INJECTION is not set | 762 | # CONFIG_FAULT_INJECTION is not set |
745 | # CONFIG_LATENCYTOP is not set | 763 | # CONFIG_LATENCYTOP is not set |
746 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 764 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
747 | CONFIG_NOP_TRACER=y | 765 | CONFIG_HAVE_FUNCTION_TRACER=y |
748 | CONFIG_HAVE_FTRACE=y | ||
749 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 766 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
750 | # CONFIG_FTRACE is not set | 767 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
768 | |||
769 | # | ||
770 | # Tracers | ||
771 | # | ||
772 | # CONFIG_FUNCTION_TRACER is not set | ||
751 | # CONFIG_SCHED_TRACER is not set | 773 | # CONFIG_SCHED_TRACER is not set |
752 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 774 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
753 | # CONFIG_BOOT_TRACER is not set | 775 | # CONFIG_BOOT_TRACER is not set |
776 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
754 | # CONFIG_STACK_TRACER is not set | 777 | # CONFIG_STACK_TRACER is not set |
755 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 778 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
756 | # CONFIG_SAMPLES is not set | 779 | # CONFIG_SAMPLES is not set |
757 | CONFIG_HAVE_ARCH_KGDB=y | 780 | CONFIG_HAVE_ARCH_KGDB=y |
758 | # CONFIG_KGDB is not set | 781 | # CONFIG_KGDB is not set |
782 | CONFIG_PRINT_STACK_DEPTH=64 | ||
759 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 783 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
760 | # CONFIG_DEBUG_STACK_USAGE is not set | 784 | # CONFIG_DEBUG_STACK_USAGE is not set |
761 | # CONFIG_DEBUG_PAGEALLOC is not set | 785 | # CONFIG_DEBUG_PAGEALLOC is not set |
diff --git a/arch/powerpc/configs/44x/ebony_defconfig b/arch/powerpc/configs/44x/ebony_defconfig index c9937578ef7f..be64aa644d15 100644 --- a/arch/powerpc/configs/44x/ebony_defconfig +++ b/arch/powerpc/configs/44x/ebony_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 09:16:09 2008 | 4 | # Tue Jan 20 08:22:36 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -18,6 +18,7 @@ CONFIG_4xx=y | |||
18 | CONFIG_BOOKE=y | 18 | CONFIG_BOOKE=y |
19 | CONFIG_PTE_64BIT=y | 19 | CONFIG_PTE_64BIT=y |
20 | CONFIG_PHYS_64BIT=y | 20 | CONFIG_PHYS_64BIT=y |
21 | CONFIG_PPC_MMU_NOHASH=y | ||
21 | # CONFIG_PPC_MM_SLICES is not set | 22 | # CONFIG_PPC_MM_SLICES is not set |
22 | CONFIG_NOT_COHERENT_CACHE=y | 23 | CONFIG_NOT_COHERENT_CACHE=y |
23 | CONFIG_PPC32=y | 24 | CONFIG_PPC32=y |
@@ -43,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
43 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
44 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
45 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
46 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
47 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
48 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
49 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -74,12 +75,12 @@ CONFIG_POSIX_MQUEUE=y | |||
74 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
75 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
76 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
77 | # CONFIG_CGROUPS is not set | ||
78 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
79 | CONFIG_FAIR_GROUP_SCHED=y | 79 | CONFIG_FAIR_GROUP_SCHED=y |
80 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
81 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
82 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
83 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
84 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
85 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -92,6 +93,7 @@ CONFIG_EMBEDDED=y | |||
92 | CONFIG_SYSCTL_SYSCALL=y | 93 | CONFIG_SYSCTL_SYSCALL=y |
93 | CONFIG_KALLSYMS=y | 94 | CONFIG_KALLSYMS=y |
94 | CONFIG_KALLSYMS_ALL=y | 95 | CONFIG_KALLSYMS_ALL=y |
96 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
95 | CONFIG_KALLSYMS_EXTRA_PASS=y | 97 | CONFIG_KALLSYMS_EXTRA_PASS=y |
96 | CONFIG_HOTPLUG=y | 98 | CONFIG_HOTPLUG=y |
97 | CONFIG_PRINTK=y | 99 | CONFIG_PRINTK=y |
@@ -114,7 +116,6 @@ CONFIG_SLUB_DEBUG=y | |||
114 | CONFIG_SLUB=y | 116 | CONFIG_SLUB=y |
115 | # CONFIG_SLOB is not set | 117 | # CONFIG_SLOB is not set |
116 | # CONFIG_PROFILING is not set | 118 | # CONFIG_PROFILING is not set |
117 | # CONFIG_MARKERS is not set | ||
118 | CONFIG_HAVE_OPROFILE=y | 119 | CONFIG_HAVE_OPROFILE=y |
119 | # CONFIG_KPROBES is not set | 120 | # CONFIG_KPROBES is not set |
120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -125,7 +126,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
126 | CONFIG_SLABINFO=y | 127 | CONFIG_SLABINFO=y |
127 | CONFIG_RT_MUTEXES=y | 128 | CONFIG_RT_MUTEXES=y |
128 | # CONFIG_TINY_SHMEM is not set | ||
129 | CONFIG_BASE_SMALL=0 | 129 | CONFIG_BASE_SMALL=0 |
130 | CONFIG_MODULES=y | 130 | CONFIG_MODULES=y |
131 | # CONFIG_MODULE_FORCE_LOAD is not set | 131 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -133,11 +133,9 @@ CONFIG_MODULE_UNLOAD=y | |||
133 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 133 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
134 | # CONFIG_MODVERSIONS is not set | 134 | # CONFIG_MODVERSIONS is not set |
135 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 135 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
136 | CONFIG_KMOD=y | ||
137 | CONFIG_BLOCK=y | 136 | CONFIG_BLOCK=y |
138 | CONFIG_LBD=y | 137 | CONFIG_LBD=y |
139 | # CONFIG_BLK_DEV_IO_TRACE is not set | 138 | # CONFIG_BLK_DEV_IO_TRACE is not set |
140 | # CONFIG_LSF is not set | ||
141 | # CONFIG_BLK_DEV_BSG is not set | 139 | # CONFIG_BLK_DEV_BSG is not set |
142 | # CONFIG_BLK_DEV_INTEGRITY is not set | 140 | # CONFIG_BLK_DEV_INTEGRITY is not set |
143 | 141 | ||
@@ -154,6 +152,10 @@ CONFIG_DEFAULT_AS=y | |||
154 | # CONFIG_DEFAULT_NOOP is not set | 152 | # CONFIG_DEFAULT_NOOP is not set |
155 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 153 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
156 | CONFIG_CLASSIC_RCU=y | 154 | CONFIG_CLASSIC_RCU=y |
155 | # CONFIG_TREE_RCU is not set | ||
156 | # CONFIG_PREEMPT_RCU is not set | ||
157 | # CONFIG_TREE_RCU_TRACE is not set | ||
158 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
157 | # CONFIG_FREEZER is not set | 159 | # CONFIG_FREEZER is not set |
158 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 160 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
159 | 161 | ||
@@ -192,6 +194,7 @@ CONFIG_440GP=y | |||
192 | # CONFIG_CPU_FREQ is not set | 194 | # CONFIG_CPU_FREQ is not set |
193 | # CONFIG_FSL_ULI1575 is not set | 195 | # CONFIG_FSL_ULI1575 is not set |
194 | CONFIG_OF_RTC=y | 196 | CONFIG_OF_RTC=y |
197 | # CONFIG_SIMPLE_GPIO is not set | ||
195 | 198 | ||
196 | # | 199 | # |
197 | # Kernel options | 200 | # Kernel options |
@@ -215,6 +218,7 @@ CONFIG_BINFMT_ELF=y | |||
215 | # CONFIG_BINFMT_MISC is not set | 218 | # CONFIG_BINFMT_MISC is not set |
216 | CONFIG_MATH_EMULATION=y | 219 | CONFIG_MATH_EMULATION=y |
217 | # CONFIG_IOMMU_HELPER is not set | 220 | # CONFIG_IOMMU_HELPER is not set |
221 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
218 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 222 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
219 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 223 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
220 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 224 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -229,12 +233,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
229 | CONFIG_PAGEFLAGS_EXTENDED=y | 233 | CONFIG_PAGEFLAGS_EXTENDED=y |
230 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 234 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
231 | CONFIG_MIGRATION=y | 235 | CONFIG_MIGRATION=y |
232 | CONFIG_RESOURCES_64BIT=y | ||
233 | CONFIG_PHYS_ADDR_T_64BIT=y | 236 | CONFIG_PHYS_ADDR_T_64BIT=y |
234 | CONFIG_ZONE_DMA_FLAG=1 | 237 | CONFIG_ZONE_DMA_FLAG=1 |
235 | CONFIG_BOUNCE=y | 238 | CONFIG_BOUNCE=y |
236 | CONFIG_VIRT_TO_BUS=y | 239 | CONFIG_VIRT_TO_BUS=y |
237 | CONFIG_UNEVICTABLE_LRU=y | 240 | CONFIG_UNEVICTABLE_LRU=y |
241 | CONFIG_PPC_4K_PAGES=y | ||
242 | # CONFIG_PPC_16K_PAGES is not set | ||
243 | # CONFIG_PPC_64K_PAGES is not set | ||
238 | CONFIG_FORCE_MAX_ZONEORDER=11 | 244 | CONFIG_FORCE_MAX_ZONEORDER=11 |
239 | CONFIG_PROC_DEVICETREE=y | 245 | CONFIG_PROC_DEVICETREE=y |
240 | # CONFIG_CMDLINE_BOOL is not set | 246 | # CONFIG_CMDLINE_BOOL is not set |
@@ -257,6 +263,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
257 | # CONFIG_PCI_MSI is not set | 263 | # CONFIG_PCI_MSI is not set |
258 | CONFIG_PCI_LEGACY=y | 264 | CONFIG_PCI_LEGACY=y |
259 | # CONFIG_PCI_DEBUG is not set | 265 | # CONFIG_PCI_DEBUG is not set |
266 | # CONFIG_PCI_STUB is not set | ||
260 | # CONFIG_PCCARD is not set | 267 | # CONFIG_PCCARD is not set |
261 | # CONFIG_HOTPLUG_PCI is not set | 268 | # CONFIG_HOTPLUG_PCI is not set |
262 | # CONFIG_HAS_RAPIDIO is not set | 269 | # CONFIG_HAS_RAPIDIO is not set |
@@ -281,6 +288,7 @@ CONFIG_NET=y | |||
281 | # | 288 | # |
282 | # Networking options | 289 | # Networking options |
283 | # | 290 | # |
291 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
284 | CONFIG_PACKET=y | 292 | CONFIG_PACKET=y |
285 | # CONFIG_PACKET_MMAP is not set | 293 | # CONFIG_PACKET_MMAP is not set |
286 | CONFIG_UNIX=y | 294 | CONFIG_UNIX=y |
@@ -331,6 +339,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
331 | # CONFIG_ECONET is not set | 339 | # CONFIG_ECONET is not set |
332 | # CONFIG_WAN_ROUTER is not set | 340 | # CONFIG_WAN_ROUTER is not set |
333 | # CONFIG_NET_SCHED is not set | 341 | # CONFIG_NET_SCHED is not set |
342 | # CONFIG_DCB is not set | ||
334 | 343 | ||
335 | # | 344 | # |
336 | # Network testing | 345 | # Network testing |
@@ -343,6 +352,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
343 | # CONFIG_AF_RXRPC is not set | 352 | # CONFIG_AF_RXRPC is not set |
344 | # CONFIG_PHONET is not set | 353 | # CONFIG_PHONET is not set |
345 | # CONFIG_WIRELESS is not set | 354 | # CONFIG_WIRELESS is not set |
355 | # CONFIG_WIMAX is not set | ||
346 | # CONFIG_RFKILL is not set | 356 | # CONFIG_RFKILL is not set |
347 | # CONFIG_NET_9P is not set | 357 | # CONFIG_NET_9P is not set |
348 | 358 | ||
@@ -368,6 +378,7 @@ CONFIG_MTD=y | |||
368 | # CONFIG_MTD_DEBUG is not set | 378 | # CONFIG_MTD_DEBUG is not set |
369 | # CONFIG_MTD_CONCAT is not set | 379 | # CONFIG_MTD_CONCAT is not set |
370 | CONFIG_MTD_PARTITIONS=y | 380 | CONFIG_MTD_PARTITIONS=y |
381 | # CONFIG_MTD_TESTS is not set | ||
371 | # CONFIG_MTD_REDBOOT_PARTS is not set | 382 | # CONFIG_MTD_REDBOOT_PARTS is not set |
372 | # CONFIG_MTD_CMDLINE_PARTS is not set | 383 | # CONFIG_MTD_CMDLINE_PARTS is not set |
373 | CONFIG_MTD_OF_PARTS=y | 384 | CONFIG_MTD_OF_PARTS=y |
@@ -439,6 +450,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
439 | # CONFIG_MTD_ONENAND is not set | 450 | # CONFIG_MTD_ONENAND is not set |
440 | 451 | ||
441 | # | 452 | # |
453 | # LPDDR flash memory drivers | ||
454 | # | ||
455 | # CONFIG_MTD_LPDDR is not set | ||
456 | # CONFIG_MTD_QINFO_PROBE is not set | ||
457 | |||
458 | # | ||
442 | # UBI - Unsorted block images | 459 | # UBI - Unsorted block images |
443 | # | 460 | # |
444 | # CONFIG_MTD_UBI is not set | 461 | # CONFIG_MTD_UBI is not set |
@@ -469,6 +486,7 @@ CONFIG_MISC_DEVICES=y | |||
469 | # CONFIG_TIFM_CORE is not set | 486 | # CONFIG_TIFM_CORE is not set |
470 | # CONFIG_ENCLOSURE_SERVICES is not set | 487 | # CONFIG_ENCLOSURE_SERVICES is not set |
471 | # CONFIG_HP_ILO is not set | 488 | # CONFIG_HP_ILO is not set |
489 | # CONFIG_C2PORT is not set | ||
472 | CONFIG_HAVE_IDE=y | 490 | CONFIG_HAVE_IDE=y |
473 | # CONFIG_IDE is not set | 491 | # CONFIG_IDE is not set |
474 | 492 | ||
@@ -551,6 +569,7 @@ CONFIG_NETDEV_1000=y | |||
551 | # CONFIG_JME is not set | 569 | # CONFIG_JME is not set |
552 | CONFIG_NETDEV_10000=y | 570 | CONFIG_NETDEV_10000=y |
553 | # CONFIG_CHELSIO_T1 is not set | 571 | # CONFIG_CHELSIO_T1 is not set |
572 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
554 | # CONFIG_CHELSIO_T3 is not set | 573 | # CONFIG_CHELSIO_T3 is not set |
555 | # CONFIG_ENIC is not set | 574 | # CONFIG_ENIC is not set |
556 | # CONFIG_IXGBE is not set | 575 | # CONFIG_IXGBE is not set |
@@ -573,6 +592,10 @@ CONFIG_NETDEV_10000=y | |||
573 | # CONFIG_WLAN_PRE80211 is not set | 592 | # CONFIG_WLAN_PRE80211 is not set |
574 | # CONFIG_WLAN_80211 is not set | 593 | # CONFIG_WLAN_80211 is not set |
575 | # CONFIG_IWLWIFI_LEDS is not set | 594 | # CONFIG_IWLWIFI_LEDS is not set |
595 | |||
596 | # | ||
597 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
598 | # | ||
576 | # CONFIG_WAN is not set | 599 | # CONFIG_WAN is not set |
577 | # CONFIG_FDDI is not set | 600 | # CONFIG_FDDI is not set |
578 | # CONFIG_HIPPI is not set | 601 | # CONFIG_HIPPI is not set |
@@ -625,9 +648,12 @@ CONFIG_SERIAL_CORE=y | |||
625 | CONFIG_SERIAL_CORE_CONSOLE=y | 648 | CONFIG_SERIAL_CORE_CONSOLE=y |
626 | # CONFIG_SERIAL_JSM is not set | 649 | # CONFIG_SERIAL_JSM is not set |
627 | CONFIG_SERIAL_OF_PLATFORM=y | 650 | CONFIG_SERIAL_OF_PLATFORM=y |
651 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
628 | CONFIG_UNIX98_PTYS=y | 652 | CONFIG_UNIX98_PTYS=y |
653 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
629 | CONFIG_LEGACY_PTYS=y | 654 | CONFIG_LEGACY_PTYS=y |
630 | CONFIG_LEGACY_PTY_COUNT=256 | 655 | CONFIG_LEGACY_PTY_COUNT=256 |
656 | # CONFIG_HVC_UDBG is not set | ||
631 | # CONFIG_IPMI_HANDLER is not set | 657 | # CONFIG_IPMI_HANDLER is not set |
632 | # CONFIG_HW_RANDOM is not set | 658 | # CONFIG_HW_RANDOM is not set |
633 | # CONFIG_NVRAM is not set | 659 | # CONFIG_NVRAM is not set |
@@ -646,11 +672,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
646 | # CONFIG_HWMON is not set | 672 | # CONFIG_HWMON is not set |
647 | CONFIG_THERMAL=y | 673 | CONFIG_THERMAL=y |
648 | # CONFIG_WATCHDOG is not set | 674 | # CONFIG_WATCHDOG is not set |
675 | CONFIG_SSB_POSSIBLE=y | ||
649 | 676 | ||
650 | # | 677 | # |
651 | # Sonics Silicon Backplane | 678 | # Sonics Silicon Backplane |
652 | # | 679 | # |
653 | CONFIG_SSB_POSSIBLE=y | ||
654 | # CONFIG_SSB is not set | 680 | # CONFIG_SSB is not set |
655 | 681 | ||
656 | # | 682 | # |
@@ -660,7 +686,7 @@ CONFIG_SSB_POSSIBLE=y | |||
660 | # CONFIG_MFD_SM501 is not set | 686 | # CONFIG_MFD_SM501 is not set |
661 | # CONFIG_HTC_PASIC3 is not set | 687 | # CONFIG_HTC_PASIC3 is not set |
662 | # CONFIG_MFD_TMIO is not set | 688 | # CONFIG_MFD_TMIO is not set |
663 | # CONFIG_MFD_WM8400 is not set | 689 | # CONFIG_REGULATOR is not set |
664 | 690 | ||
665 | # | 691 | # |
666 | # Multimedia devices | 692 | # Multimedia devices |
@@ -706,9 +732,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
706 | # | 732 | # |
707 | 733 | ||
708 | # | 734 | # |
709 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 735 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
710 | # | 736 | # |
711 | # CONFIG_USB_GADGET is not set | 737 | # CONFIG_USB_GADGET is not set |
738 | |||
739 | # | ||
740 | # OTG and related infrastructure | ||
741 | # | ||
712 | # CONFIG_UWB is not set | 742 | # CONFIG_UWB is not set |
713 | # CONFIG_MMC is not set | 743 | # CONFIG_MMC is not set |
714 | # CONFIG_MEMSTICK is not set | 744 | # CONFIG_MEMSTICK is not set |
@@ -734,7 +764,9 @@ CONFIG_EXT2_FS=y | |||
734 | # CONFIG_FS_POSIX_ACL is not set | 764 | # CONFIG_FS_POSIX_ACL is not set |
735 | CONFIG_FILE_LOCKING=y | 765 | CONFIG_FILE_LOCKING=y |
736 | # CONFIG_XFS_FS is not set | 766 | # CONFIG_XFS_FS is not set |
767 | # CONFIG_GFS2_FS is not set | ||
737 | # CONFIG_OCFS2_FS is not set | 768 | # CONFIG_OCFS2_FS is not set |
769 | # CONFIG_BTRFS_FS is not set | ||
738 | CONFIG_DNOTIFY=y | 770 | CONFIG_DNOTIFY=y |
739 | CONFIG_INOTIFY=y | 771 | CONFIG_INOTIFY=y |
740 | CONFIG_INOTIFY_USER=y | 772 | CONFIG_INOTIFY_USER=y |
@@ -768,10 +800,7 @@ CONFIG_TMPFS=y | |||
768 | # CONFIG_TMPFS_POSIX_ACL is not set | 800 | # CONFIG_TMPFS_POSIX_ACL is not set |
769 | # CONFIG_HUGETLB_PAGE is not set | 801 | # CONFIG_HUGETLB_PAGE is not set |
770 | # CONFIG_CONFIGFS_FS is not set | 802 | # CONFIG_CONFIGFS_FS is not set |
771 | 803 | CONFIG_MISC_FILESYSTEMS=y | |
772 | # | ||
773 | # Miscellaneous filesystems | ||
774 | # | ||
775 | # CONFIG_ADFS_FS is not set | 804 | # CONFIG_ADFS_FS is not set |
776 | # CONFIG_AFFS_FS is not set | 805 | # CONFIG_AFFS_FS is not set |
777 | # CONFIG_HFS_FS is not set | 806 | # CONFIG_HFS_FS is not set |
@@ -791,6 +820,7 @@ CONFIG_JFFS2_ZLIB=y | |||
791 | CONFIG_JFFS2_RTIME=y | 820 | CONFIG_JFFS2_RTIME=y |
792 | # CONFIG_JFFS2_RUBIN is not set | 821 | # CONFIG_JFFS2_RUBIN is not set |
793 | CONFIG_CRAMFS=y | 822 | CONFIG_CRAMFS=y |
823 | # CONFIG_SQUASHFS is not set | ||
794 | # CONFIG_VXFS_FS is not set | 824 | # CONFIG_VXFS_FS is not set |
795 | # CONFIG_MINIX_FS is not set | 825 | # CONFIG_MINIX_FS is not set |
796 | # CONFIG_OMFS_FS is not set | 826 | # CONFIG_OMFS_FS is not set |
@@ -831,6 +861,7 @@ CONFIG_MSDOS_PARTITION=y | |||
831 | # Library routines | 861 | # Library routines |
832 | # | 862 | # |
833 | CONFIG_BITREVERSE=y | 863 | CONFIG_BITREVERSE=y |
864 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
834 | # CONFIG_CRC_CCITT is not set | 865 | # CONFIG_CRC_CCITT is not set |
835 | # CONFIG_CRC16 is not set | 866 | # CONFIG_CRC16 is not set |
836 | # CONFIG_CRC_T10DIF is not set | 867 | # CONFIG_CRC_T10DIF is not set |
@@ -882,6 +913,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
882 | # CONFIG_DEBUG_MEMORY_INIT is not set | 913 | # CONFIG_DEBUG_MEMORY_INIT is not set |
883 | # CONFIG_DEBUG_LIST is not set | 914 | # CONFIG_DEBUG_LIST is not set |
884 | # CONFIG_DEBUG_SG is not set | 915 | # CONFIG_DEBUG_SG is not set |
916 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
885 | # CONFIG_BOOT_PRINTK_DELAY is not set | 917 | # CONFIG_BOOT_PRINTK_DELAY is not set |
886 | # CONFIG_RCU_TORTURE_TEST is not set | 918 | # CONFIG_RCU_TORTURE_TEST is not set |
887 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 919 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -890,18 +922,24 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
890 | # CONFIG_FAULT_INJECTION is not set | 922 | # CONFIG_FAULT_INJECTION is not set |
891 | # CONFIG_LATENCYTOP is not set | 923 | # CONFIG_LATENCYTOP is not set |
892 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 924 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
893 | CONFIG_NOP_TRACER=y | 925 | CONFIG_HAVE_FUNCTION_TRACER=y |
894 | CONFIG_HAVE_FTRACE=y | ||
895 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 926 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
896 | # CONFIG_FTRACE is not set | 927 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
928 | |||
929 | # | ||
930 | # Tracers | ||
931 | # | ||
932 | # CONFIG_FUNCTION_TRACER is not set | ||
897 | # CONFIG_SCHED_TRACER is not set | 933 | # CONFIG_SCHED_TRACER is not set |
898 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 934 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
899 | # CONFIG_BOOT_TRACER is not set | 935 | # CONFIG_BOOT_TRACER is not set |
936 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
900 | # CONFIG_STACK_TRACER is not set | 937 | # CONFIG_STACK_TRACER is not set |
901 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 938 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
902 | # CONFIG_SAMPLES is not set | 939 | # CONFIG_SAMPLES is not set |
903 | CONFIG_HAVE_ARCH_KGDB=y | 940 | CONFIG_HAVE_ARCH_KGDB=y |
904 | # CONFIG_KGDB is not set | 941 | # CONFIG_KGDB is not set |
942 | CONFIG_PRINT_STACK_DEPTH=64 | ||
905 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 943 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
906 | # CONFIG_DEBUG_STACK_USAGE is not set | 944 | # CONFIG_DEBUG_STACK_USAGE is not set |
907 | # CONFIG_DEBUG_PAGEALLOC is not set | 945 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -928,11 +966,15 @@ CONFIG_CRYPTO=y | |||
928 | # | 966 | # |
929 | # CONFIG_CRYPTO_FIPS is not set | 967 | # CONFIG_CRYPTO_FIPS is not set |
930 | CONFIG_CRYPTO_ALGAPI=y | 968 | CONFIG_CRYPTO_ALGAPI=y |
931 | CONFIG_CRYPTO_AEAD=y | 969 | CONFIG_CRYPTO_ALGAPI2=y |
970 | CONFIG_CRYPTO_AEAD2=y | ||
932 | CONFIG_CRYPTO_BLKCIPHER=y | 971 | CONFIG_CRYPTO_BLKCIPHER=y |
972 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
933 | CONFIG_CRYPTO_HASH=y | 973 | CONFIG_CRYPTO_HASH=y |
934 | CONFIG_CRYPTO_RNG=y | 974 | CONFIG_CRYPTO_HASH2=y |
975 | CONFIG_CRYPTO_RNG2=y | ||
935 | CONFIG_CRYPTO_MANAGER=y | 976 | CONFIG_CRYPTO_MANAGER=y |
977 | CONFIG_CRYPTO_MANAGER2=y | ||
936 | # CONFIG_CRYPTO_GF128MUL is not set | 978 | # CONFIG_CRYPTO_GF128MUL is not set |
937 | # CONFIG_CRYPTO_NULL is not set | 979 | # CONFIG_CRYPTO_NULL is not set |
938 | # CONFIG_CRYPTO_CRYPTD is not set | 980 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/44x/katmai_defconfig b/arch/powerpc/configs/44x/katmai_defconfig index e326ee8bd195..f67250b24ec5 100644 --- a/arch/powerpc/configs/44x/katmai_defconfig +++ b/arch/powerpc/configs/44x/katmai_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 09:16:11 2008 | 4 | # Tue Jan 20 08:22:38 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -18,6 +18,7 @@ CONFIG_4xx=y | |||
18 | CONFIG_BOOKE=y | 18 | CONFIG_BOOKE=y |
19 | CONFIG_PTE_64BIT=y | 19 | CONFIG_PTE_64BIT=y |
20 | CONFIG_PHYS_64BIT=y | 20 | CONFIG_PHYS_64BIT=y |
21 | CONFIG_PPC_MMU_NOHASH=y | ||
21 | # CONFIG_PPC_MM_SLICES is not set | 22 | # CONFIG_PPC_MM_SLICES is not set |
22 | CONFIG_NOT_COHERENT_CACHE=y | 23 | CONFIG_NOT_COHERENT_CACHE=y |
23 | CONFIG_PPC32=y | 24 | CONFIG_PPC32=y |
@@ -43,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
43 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
44 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
45 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
46 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
47 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
48 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
49 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -74,8 +75,8 @@ CONFIG_POSIX_MQUEUE=y | |||
74 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
75 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
76 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
77 | # CONFIG_CGROUPS is not set | ||
78 | # CONFIG_GROUP_SCHED is not set | 78 | # CONFIG_GROUP_SCHED is not set |
79 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_SYSFS_DEPRECATED=y | 80 | CONFIG_SYSFS_DEPRECATED=y |
80 | CONFIG_SYSFS_DEPRECATED_V2=y | 81 | CONFIG_SYSFS_DEPRECATED_V2=y |
81 | # CONFIG_RELAY is not set | 82 | # CONFIG_RELAY is not set |
@@ -110,7 +111,6 @@ CONFIG_SLUB_DEBUG=y | |||
110 | CONFIG_SLUB=y | 111 | CONFIG_SLUB=y |
111 | # CONFIG_SLOB is not set | 112 | # CONFIG_SLOB is not set |
112 | # CONFIG_PROFILING is not set | 113 | # CONFIG_PROFILING is not set |
113 | # CONFIG_MARKERS is not set | ||
114 | CONFIG_HAVE_OPROFILE=y | 114 | CONFIG_HAVE_OPROFILE=y |
115 | # CONFIG_KPROBES is not set | 115 | # CONFIG_KPROBES is not set |
116 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 116 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -121,7 +121,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
121 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 121 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
122 | CONFIG_SLABINFO=y | 122 | CONFIG_SLABINFO=y |
123 | CONFIG_RT_MUTEXES=y | 123 | CONFIG_RT_MUTEXES=y |
124 | # CONFIG_TINY_SHMEM is not set | ||
125 | CONFIG_BASE_SMALL=0 | 124 | CONFIG_BASE_SMALL=0 |
126 | CONFIG_MODULES=y | 125 | CONFIG_MODULES=y |
127 | # CONFIG_MODULE_FORCE_LOAD is not set | 126 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -129,11 +128,9 @@ CONFIG_MODULE_UNLOAD=y | |||
129 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 128 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
130 | # CONFIG_MODVERSIONS is not set | 129 | # CONFIG_MODVERSIONS is not set |
131 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 130 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
132 | CONFIG_KMOD=y | ||
133 | CONFIG_BLOCK=y | 131 | CONFIG_BLOCK=y |
134 | CONFIG_LBD=y | 132 | CONFIG_LBD=y |
135 | # CONFIG_BLK_DEV_IO_TRACE is not set | 133 | # CONFIG_BLK_DEV_IO_TRACE is not set |
136 | # CONFIG_LSF is not set | ||
137 | # CONFIG_BLK_DEV_BSG is not set | 134 | # CONFIG_BLK_DEV_BSG is not set |
138 | # CONFIG_BLK_DEV_INTEGRITY is not set | 135 | # CONFIG_BLK_DEV_INTEGRITY is not set |
139 | 136 | ||
@@ -150,6 +147,10 @@ CONFIG_DEFAULT_AS=y | |||
150 | # CONFIG_DEFAULT_NOOP is not set | 147 | # CONFIG_DEFAULT_NOOP is not set |
151 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 148 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
152 | CONFIG_CLASSIC_RCU=y | 149 | CONFIG_CLASSIC_RCU=y |
150 | # CONFIG_TREE_RCU is not set | ||
151 | # CONFIG_PREEMPT_RCU is not set | ||
152 | # CONFIG_TREE_RCU_TRACE is not set | ||
153 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
153 | # CONFIG_FREEZER is not set | 154 | # CONFIG_FREEZER is not set |
154 | CONFIG_PPC4xx_PCI_EXPRESS=y | 155 | CONFIG_PPC4xx_PCI_EXPRESS=y |
155 | 156 | ||
@@ -187,6 +188,7 @@ CONFIG_440SPe=y | |||
187 | # CONFIG_GENERIC_IOMAP is not set | 188 | # CONFIG_GENERIC_IOMAP is not set |
188 | # CONFIG_CPU_FREQ is not set | 189 | # CONFIG_CPU_FREQ is not set |
189 | # CONFIG_FSL_ULI1575 is not set | 190 | # CONFIG_FSL_ULI1575 is not set |
191 | # CONFIG_SIMPLE_GPIO is not set | ||
190 | 192 | ||
191 | # | 193 | # |
192 | # Kernel options | 194 | # Kernel options |
@@ -210,6 +212,7 @@ CONFIG_BINFMT_ELF=y | |||
210 | # CONFIG_BINFMT_MISC is not set | 212 | # CONFIG_BINFMT_MISC is not set |
211 | # CONFIG_MATH_EMULATION is not set | 213 | # CONFIG_MATH_EMULATION is not set |
212 | # CONFIG_IOMMU_HELPER is not set | 214 | # CONFIG_IOMMU_HELPER is not set |
215 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
213 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 216 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
214 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 217 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
215 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 218 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -224,12 +227,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
224 | CONFIG_PAGEFLAGS_EXTENDED=y | 227 | CONFIG_PAGEFLAGS_EXTENDED=y |
225 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 228 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
226 | CONFIG_MIGRATION=y | 229 | CONFIG_MIGRATION=y |
227 | CONFIG_RESOURCES_64BIT=y | ||
228 | CONFIG_PHYS_ADDR_T_64BIT=y | 230 | CONFIG_PHYS_ADDR_T_64BIT=y |
229 | CONFIG_ZONE_DMA_FLAG=1 | 231 | CONFIG_ZONE_DMA_FLAG=1 |
230 | CONFIG_BOUNCE=y | 232 | CONFIG_BOUNCE=y |
231 | CONFIG_VIRT_TO_BUS=y | 233 | CONFIG_VIRT_TO_BUS=y |
232 | CONFIG_UNEVICTABLE_LRU=y | 234 | CONFIG_UNEVICTABLE_LRU=y |
235 | CONFIG_PPC_4K_PAGES=y | ||
236 | # CONFIG_PPC_16K_PAGES is not set | ||
237 | # CONFIG_PPC_64K_PAGES is not set | ||
233 | CONFIG_FORCE_MAX_ZONEORDER=11 | 238 | CONFIG_FORCE_MAX_ZONEORDER=11 |
234 | CONFIG_PROC_DEVICETREE=y | 239 | CONFIG_PROC_DEVICETREE=y |
235 | CONFIG_CMDLINE_BOOL=y | 240 | CONFIG_CMDLINE_BOOL=y |
@@ -253,6 +258,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
253 | # CONFIG_PCI_MSI is not set | 258 | # CONFIG_PCI_MSI is not set |
254 | CONFIG_PCI_LEGACY=y | 259 | CONFIG_PCI_LEGACY=y |
255 | # CONFIG_PCI_DEBUG is not set | 260 | # CONFIG_PCI_DEBUG is not set |
261 | # CONFIG_PCI_STUB is not set | ||
256 | # CONFIG_PCCARD is not set | 262 | # CONFIG_PCCARD is not set |
257 | # CONFIG_HOTPLUG_PCI is not set | 263 | # CONFIG_HOTPLUG_PCI is not set |
258 | # CONFIG_HAS_RAPIDIO is not set | 264 | # CONFIG_HAS_RAPIDIO is not set |
@@ -277,6 +283,7 @@ CONFIG_NET=y | |||
277 | # | 283 | # |
278 | # Networking options | 284 | # Networking options |
279 | # | 285 | # |
286 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
280 | CONFIG_PACKET=y | 287 | CONFIG_PACKET=y |
281 | # CONFIG_PACKET_MMAP is not set | 288 | # CONFIG_PACKET_MMAP is not set |
282 | CONFIG_UNIX=y | 289 | CONFIG_UNIX=y |
@@ -327,6 +334,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
327 | # CONFIG_ECONET is not set | 334 | # CONFIG_ECONET is not set |
328 | # CONFIG_WAN_ROUTER is not set | 335 | # CONFIG_WAN_ROUTER is not set |
329 | # CONFIG_NET_SCHED is not set | 336 | # CONFIG_NET_SCHED is not set |
337 | # CONFIG_DCB is not set | ||
330 | 338 | ||
331 | # | 339 | # |
332 | # Network testing | 340 | # Network testing |
@@ -339,6 +347,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
339 | # CONFIG_AF_RXRPC is not set | 347 | # CONFIG_AF_RXRPC is not set |
340 | # CONFIG_PHONET is not set | 348 | # CONFIG_PHONET is not set |
341 | # CONFIG_WIRELESS is not set | 349 | # CONFIG_WIRELESS is not set |
350 | # CONFIG_WIMAX is not set | ||
342 | # CONFIG_RFKILL is not set | 351 | # CONFIG_RFKILL is not set |
343 | # CONFIG_NET_9P is not set | 352 | # CONFIG_NET_9P is not set |
344 | 353 | ||
@@ -388,6 +397,7 @@ CONFIG_MISC_DEVICES=y | |||
388 | # CONFIG_TIFM_CORE is not set | 397 | # CONFIG_TIFM_CORE is not set |
389 | # CONFIG_ENCLOSURE_SERVICES is not set | 398 | # CONFIG_ENCLOSURE_SERVICES is not set |
390 | # CONFIG_HP_ILO is not set | 399 | # CONFIG_HP_ILO is not set |
400 | # CONFIG_C2PORT is not set | ||
391 | CONFIG_HAVE_IDE=y | 401 | CONFIG_HAVE_IDE=y |
392 | # CONFIG_IDE is not set | 402 | # CONFIG_IDE is not set |
393 | 403 | ||
@@ -472,6 +482,7 @@ CONFIG_NETDEV_1000=y | |||
472 | # CONFIG_JME is not set | 482 | # CONFIG_JME is not set |
473 | CONFIG_NETDEV_10000=y | 483 | CONFIG_NETDEV_10000=y |
474 | # CONFIG_CHELSIO_T1 is not set | 484 | # CONFIG_CHELSIO_T1 is not set |
485 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
475 | # CONFIG_CHELSIO_T3 is not set | 486 | # CONFIG_CHELSIO_T3 is not set |
476 | # CONFIG_ENIC is not set | 487 | # CONFIG_ENIC is not set |
477 | # CONFIG_IXGBE is not set | 488 | # CONFIG_IXGBE is not set |
@@ -494,6 +505,10 @@ CONFIG_NETDEV_10000=y | |||
494 | # CONFIG_WLAN_PRE80211 is not set | 505 | # CONFIG_WLAN_PRE80211 is not set |
495 | # CONFIG_WLAN_80211 is not set | 506 | # CONFIG_WLAN_80211 is not set |
496 | # CONFIG_IWLWIFI_LEDS is not set | 507 | # CONFIG_IWLWIFI_LEDS is not set |
508 | |||
509 | # | ||
510 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
511 | # | ||
497 | # CONFIG_WAN is not set | 512 | # CONFIG_WAN is not set |
498 | # CONFIG_FDDI is not set | 513 | # CONFIG_FDDI is not set |
499 | # CONFIG_HIPPI is not set | 514 | # CONFIG_HIPPI is not set |
@@ -546,9 +561,12 @@ CONFIG_SERIAL_CORE=y | |||
546 | CONFIG_SERIAL_CORE_CONSOLE=y | 561 | CONFIG_SERIAL_CORE_CONSOLE=y |
547 | # CONFIG_SERIAL_JSM is not set | 562 | # CONFIG_SERIAL_JSM is not set |
548 | CONFIG_SERIAL_OF_PLATFORM=y | 563 | CONFIG_SERIAL_OF_PLATFORM=y |
564 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
549 | CONFIG_UNIX98_PTYS=y | 565 | CONFIG_UNIX98_PTYS=y |
566 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
550 | CONFIG_LEGACY_PTYS=y | 567 | CONFIG_LEGACY_PTYS=y |
551 | CONFIG_LEGACY_PTY_COUNT=256 | 568 | CONFIG_LEGACY_PTY_COUNT=256 |
569 | # CONFIG_HVC_UDBG is not set | ||
552 | # CONFIG_IPMI_HANDLER is not set | 570 | # CONFIG_IPMI_HANDLER is not set |
553 | # CONFIG_HW_RANDOM is not set | 571 | # CONFIG_HW_RANDOM is not set |
554 | # CONFIG_NVRAM is not set | 572 | # CONFIG_NVRAM is not set |
@@ -568,11 +586,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
568 | # CONFIG_THERMAL is not set | 586 | # CONFIG_THERMAL is not set |
569 | # CONFIG_THERMAL_HWMON is not set | 587 | # CONFIG_THERMAL_HWMON is not set |
570 | # CONFIG_WATCHDOG is not set | 588 | # CONFIG_WATCHDOG is not set |
589 | CONFIG_SSB_POSSIBLE=y | ||
571 | 590 | ||
572 | # | 591 | # |
573 | # Sonics Silicon Backplane | 592 | # Sonics Silicon Backplane |
574 | # | 593 | # |
575 | CONFIG_SSB_POSSIBLE=y | ||
576 | # CONFIG_SSB is not set | 594 | # CONFIG_SSB is not set |
577 | 595 | ||
578 | # | 596 | # |
@@ -582,7 +600,7 @@ CONFIG_SSB_POSSIBLE=y | |||
582 | # CONFIG_MFD_SM501 is not set | 600 | # CONFIG_MFD_SM501 is not set |
583 | # CONFIG_HTC_PASIC3 is not set | 601 | # CONFIG_HTC_PASIC3 is not set |
584 | # CONFIG_MFD_TMIO is not set | 602 | # CONFIG_MFD_TMIO is not set |
585 | # CONFIG_MFD_WM8400 is not set | 603 | # CONFIG_REGULATOR is not set |
586 | 604 | ||
587 | # | 605 | # |
588 | # Multimedia devices | 606 | # Multimedia devices |
@@ -628,9 +646,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
628 | # | 646 | # |
629 | 647 | ||
630 | # | 648 | # |
631 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 649 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
632 | # | 650 | # |
633 | # CONFIG_USB_GADGET is not set | 651 | # CONFIG_USB_GADGET is not set |
652 | |||
653 | # | ||
654 | # OTG and related infrastructure | ||
655 | # | ||
634 | # CONFIG_UWB is not set | 656 | # CONFIG_UWB is not set |
635 | # CONFIG_MMC is not set | 657 | # CONFIG_MMC is not set |
636 | # CONFIG_MEMSTICK is not set | 658 | # CONFIG_MEMSTICK is not set |
@@ -656,7 +678,9 @@ CONFIG_EXT2_FS=y | |||
656 | # CONFIG_FS_POSIX_ACL is not set | 678 | # CONFIG_FS_POSIX_ACL is not set |
657 | CONFIG_FILE_LOCKING=y | 679 | CONFIG_FILE_LOCKING=y |
658 | # CONFIG_XFS_FS is not set | 680 | # CONFIG_XFS_FS is not set |
681 | # CONFIG_GFS2_FS is not set | ||
659 | # CONFIG_OCFS2_FS is not set | 682 | # CONFIG_OCFS2_FS is not set |
683 | # CONFIG_BTRFS_FS is not set | ||
660 | CONFIG_DNOTIFY=y | 684 | CONFIG_DNOTIFY=y |
661 | CONFIG_INOTIFY=y | 685 | CONFIG_INOTIFY=y |
662 | CONFIG_INOTIFY_USER=y | 686 | CONFIG_INOTIFY_USER=y |
@@ -690,10 +714,7 @@ CONFIG_TMPFS=y | |||
690 | # CONFIG_TMPFS_POSIX_ACL is not set | 714 | # CONFIG_TMPFS_POSIX_ACL is not set |
691 | # CONFIG_HUGETLB_PAGE is not set | 715 | # CONFIG_HUGETLB_PAGE is not set |
692 | # CONFIG_CONFIGFS_FS is not set | 716 | # CONFIG_CONFIGFS_FS is not set |
693 | 717 | CONFIG_MISC_FILESYSTEMS=y | |
694 | # | ||
695 | # Miscellaneous filesystems | ||
696 | # | ||
697 | # CONFIG_ADFS_FS is not set | 718 | # CONFIG_ADFS_FS is not set |
698 | # CONFIG_AFFS_FS is not set | 719 | # CONFIG_AFFS_FS is not set |
699 | # CONFIG_HFS_FS is not set | 720 | # CONFIG_HFS_FS is not set |
@@ -702,6 +723,7 @@ CONFIG_TMPFS=y | |||
702 | # CONFIG_BFS_FS is not set | 723 | # CONFIG_BFS_FS is not set |
703 | # CONFIG_EFS_FS is not set | 724 | # CONFIG_EFS_FS is not set |
704 | CONFIG_CRAMFS=y | 725 | CONFIG_CRAMFS=y |
726 | # CONFIG_SQUASHFS is not set | ||
705 | # CONFIG_VXFS_FS is not set | 727 | # CONFIG_VXFS_FS is not set |
706 | # CONFIG_MINIX_FS is not set | 728 | # CONFIG_MINIX_FS is not set |
707 | # CONFIG_OMFS_FS is not set | 729 | # CONFIG_OMFS_FS is not set |
@@ -742,6 +764,7 @@ CONFIG_MSDOS_PARTITION=y | |||
742 | # Library routines | 764 | # Library routines |
743 | # | 765 | # |
744 | CONFIG_BITREVERSE=y | 766 | CONFIG_BITREVERSE=y |
767 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
745 | # CONFIG_CRC_CCITT is not set | 768 | # CONFIG_CRC_CCITT is not set |
746 | # CONFIG_CRC16 is not set | 769 | # CONFIG_CRC16 is not set |
747 | # CONFIG_CRC_T10DIF is not set | 770 | # CONFIG_CRC_T10DIF is not set |
@@ -792,6 +815,7 @@ CONFIG_SCHED_DEBUG=y | |||
792 | # CONFIG_DEBUG_MEMORY_INIT is not set | 815 | # CONFIG_DEBUG_MEMORY_INIT is not set |
793 | # CONFIG_DEBUG_LIST is not set | 816 | # CONFIG_DEBUG_LIST is not set |
794 | # CONFIG_DEBUG_SG is not set | 817 | # CONFIG_DEBUG_SG is not set |
818 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
795 | # CONFIG_BOOT_PRINTK_DELAY is not set | 819 | # CONFIG_BOOT_PRINTK_DELAY is not set |
796 | # CONFIG_RCU_TORTURE_TEST is not set | 820 | # CONFIG_RCU_TORTURE_TEST is not set |
797 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 821 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -800,18 +824,24 @@ CONFIG_SCHED_DEBUG=y | |||
800 | # CONFIG_FAULT_INJECTION is not set | 824 | # CONFIG_FAULT_INJECTION is not set |
801 | # CONFIG_LATENCYTOP is not set | 825 | # CONFIG_LATENCYTOP is not set |
802 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 826 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
803 | CONFIG_NOP_TRACER=y | 827 | CONFIG_HAVE_FUNCTION_TRACER=y |
804 | CONFIG_HAVE_FTRACE=y | ||
805 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 828 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
806 | # CONFIG_FTRACE is not set | 829 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
830 | |||
831 | # | ||
832 | # Tracers | ||
833 | # | ||
834 | # CONFIG_FUNCTION_TRACER is not set | ||
807 | # CONFIG_SCHED_TRACER is not set | 835 | # CONFIG_SCHED_TRACER is not set |
808 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 836 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
809 | # CONFIG_BOOT_TRACER is not set | 837 | # CONFIG_BOOT_TRACER is not set |
838 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
810 | # CONFIG_STACK_TRACER is not set | 839 | # CONFIG_STACK_TRACER is not set |
811 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 840 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
812 | # CONFIG_SAMPLES is not set | 841 | # CONFIG_SAMPLES is not set |
813 | CONFIG_HAVE_ARCH_KGDB=y | 842 | CONFIG_HAVE_ARCH_KGDB=y |
814 | # CONFIG_KGDB is not set | 843 | # CONFIG_KGDB is not set |
844 | CONFIG_PRINT_STACK_DEPTH=64 | ||
815 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 845 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
816 | # CONFIG_DEBUG_STACK_USAGE is not set | 846 | # CONFIG_DEBUG_STACK_USAGE is not set |
817 | # CONFIG_DEBUG_PAGEALLOC is not set | 847 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -837,11 +867,15 @@ CONFIG_CRYPTO=y | |||
837 | # | 867 | # |
838 | # CONFIG_CRYPTO_FIPS is not set | 868 | # CONFIG_CRYPTO_FIPS is not set |
839 | CONFIG_CRYPTO_ALGAPI=y | 869 | CONFIG_CRYPTO_ALGAPI=y |
840 | CONFIG_CRYPTO_AEAD=y | 870 | CONFIG_CRYPTO_ALGAPI2=y |
871 | CONFIG_CRYPTO_AEAD2=y | ||
841 | CONFIG_CRYPTO_BLKCIPHER=y | 872 | CONFIG_CRYPTO_BLKCIPHER=y |
873 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
842 | CONFIG_CRYPTO_HASH=y | 874 | CONFIG_CRYPTO_HASH=y |
843 | CONFIG_CRYPTO_RNG=y | 875 | CONFIG_CRYPTO_HASH2=y |
876 | CONFIG_CRYPTO_RNG2=y | ||
844 | CONFIG_CRYPTO_MANAGER=y | 877 | CONFIG_CRYPTO_MANAGER=y |
878 | CONFIG_CRYPTO_MANAGER2=y | ||
845 | # CONFIG_CRYPTO_GF128MUL is not set | 879 | # CONFIG_CRYPTO_GF128MUL is not set |
846 | # CONFIG_CRYPTO_NULL is not set | 880 | # CONFIG_CRYPTO_NULL is not set |
847 | # CONFIG_CRYPTO_CRYPTD is not set | 881 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/44x/rainier_defconfig b/arch/powerpc/configs/44x/rainier_defconfig index 927f829e2087..9348c12bd7a6 100644 --- a/arch/powerpc/configs/44x/rainier_defconfig +++ b/arch/powerpc/configs/44x/rainier_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 09:16:13 2008 | 4 | # Tue Jan 20 08:22:41 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -18,6 +18,7 @@ CONFIG_4xx=y | |||
18 | CONFIG_BOOKE=y | 18 | CONFIG_BOOKE=y |
19 | CONFIG_PTE_64BIT=y | 19 | CONFIG_PTE_64BIT=y |
20 | CONFIG_PHYS_64BIT=y | 20 | CONFIG_PHYS_64BIT=y |
21 | CONFIG_PPC_MMU_NOHASH=y | ||
21 | # CONFIG_PPC_MM_SLICES is not set | 22 | # CONFIG_PPC_MM_SLICES is not set |
22 | CONFIG_NOT_COHERENT_CACHE=y | 23 | CONFIG_NOT_COHERENT_CACHE=y |
23 | CONFIG_PPC32=y | 24 | CONFIG_PPC32=y |
@@ -43,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
43 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
44 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
45 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
46 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
47 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
48 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
49 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -74,12 +75,12 @@ CONFIG_POSIX_MQUEUE=y | |||
74 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
75 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
76 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
77 | # CONFIG_CGROUPS is not set | ||
78 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
79 | CONFIG_FAIR_GROUP_SCHED=y | 79 | CONFIG_FAIR_GROUP_SCHED=y |
80 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
81 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
82 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
83 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
84 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
85 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -114,7 +115,6 @@ CONFIG_SLUB_DEBUG=y | |||
114 | CONFIG_SLUB=y | 115 | CONFIG_SLUB=y |
115 | # CONFIG_SLOB is not set | 116 | # CONFIG_SLOB is not set |
116 | # CONFIG_PROFILING is not set | 117 | # CONFIG_PROFILING is not set |
117 | # CONFIG_MARKERS is not set | ||
118 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
119 | # CONFIG_KPROBES is not set | 119 | # CONFIG_KPROBES is not set |
120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -125,7 +125,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
126 | CONFIG_SLABINFO=y | 126 | CONFIG_SLABINFO=y |
127 | CONFIG_RT_MUTEXES=y | 127 | CONFIG_RT_MUTEXES=y |
128 | # CONFIG_TINY_SHMEM is not set | ||
129 | CONFIG_BASE_SMALL=0 | 128 | CONFIG_BASE_SMALL=0 |
130 | CONFIG_MODULES=y | 129 | CONFIG_MODULES=y |
131 | # CONFIG_MODULE_FORCE_LOAD is not set | 130 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -133,11 +132,9 @@ CONFIG_MODULE_UNLOAD=y | |||
133 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 132 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
134 | # CONFIG_MODVERSIONS is not set | 133 | # CONFIG_MODVERSIONS is not set |
135 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 134 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
136 | CONFIG_KMOD=y | ||
137 | CONFIG_BLOCK=y | 135 | CONFIG_BLOCK=y |
138 | CONFIG_LBD=y | 136 | CONFIG_LBD=y |
139 | # CONFIG_BLK_DEV_IO_TRACE is not set | 137 | # CONFIG_BLK_DEV_IO_TRACE is not set |
140 | # CONFIG_LSF is not set | ||
141 | # CONFIG_BLK_DEV_BSG is not set | 138 | # CONFIG_BLK_DEV_BSG is not set |
142 | # CONFIG_BLK_DEV_INTEGRITY is not set | 139 | # CONFIG_BLK_DEV_INTEGRITY is not set |
143 | 140 | ||
@@ -154,6 +151,10 @@ CONFIG_DEFAULT_AS=y | |||
154 | # CONFIG_DEFAULT_NOOP is not set | 151 | # CONFIG_DEFAULT_NOOP is not set |
155 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 152 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
156 | CONFIG_CLASSIC_RCU=y | 153 | CONFIG_CLASSIC_RCU=y |
154 | # CONFIG_TREE_RCU is not set | ||
155 | # CONFIG_PREEMPT_RCU is not set | ||
156 | # CONFIG_TREE_RCU_TRACE is not set | ||
157 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
157 | # CONFIG_FREEZER is not set | 158 | # CONFIG_FREEZER is not set |
158 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 159 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
159 | 160 | ||
@@ -191,6 +192,7 @@ CONFIG_440GRX=y | |||
191 | # CONFIG_GENERIC_IOMAP is not set | 192 | # CONFIG_GENERIC_IOMAP is not set |
192 | # CONFIG_CPU_FREQ is not set | 193 | # CONFIG_CPU_FREQ is not set |
193 | # CONFIG_FSL_ULI1575 is not set | 194 | # CONFIG_FSL_ULI1575 is not set |
195 | # CONFIG_SIMPLE_GPIO is not set | ||
194 | 196 | ||
195 | # | 197 | # |
196 | # Kernel options | 198 | # Kernel options |
@@ -214,6 +216,7 @@ CONFIG_BINFMT_ELF=y | |||
214 | # CONFIG_BINFMT_MISC is not set | 216 | # CONFIG_BINFMT_MISC is not set |
215 | CONFIG_MATH_EMULATION=y | 217 | CONFIG_MATH_EMULATION=y |
216 | # CONFIG_IOMMU_HELPER is not set | 218 | # CONFIG_IOMMU_HELPER is not set |
219 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
217 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 220 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
218 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 221 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
219 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 222 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -228,12 +231,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
228 | CONFIG_PAGEFLAGS_EXTENDED=y | 231 | CONFIG_PAGEFLAGS_EXTENDED=y |
229 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 232 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
230 | CONFIG_MIGRATION=y | 233 | CONFIG_MIGRATION=y |
231 | CONFIG_RESOURCES_64BIT=y | ||
232 | CONFIG_PHYS_ADDR_T_64BIT=y | 234 | CONFIG_PHYS_ADDR_T_64BIT=y |
233 | CONFIG_ZONE_DMA_FLAG=1 | 235 | CONFIG_ZONE_DMA_FLAG=1 |
234 | CONFIG_BOUNCE=y | 236 | CONFIG_BOUNCE=y |
235 | CONFIG_VIRT_TO_BUS=y | 237 | CONFIG_VIRT_TO_BUS=y |
236 | CONFIG_UNEVICTABLE_LRU=y | 238 | CONFIG_UNEVICTABLE_LRU=y |
239 | CONFIG_PPC_4K_PAGES=y | ||
240 | # CONFIG_PPC_16K_PAGES is not set | ||
241 | # CONFIG_PPC_64K_PAGES is not set | ||
237 | CONFIG_FORCE_MAX_ZONEORDER=11 | 242 | CONFIG_FORCE_MAX_ZONEORDER=11 |
238 | CONFIG_PROC_DEVICETREE=y | 243 | CONFIG_PROC_DEVICETREE=y |
239 | CONFIG_CMDLINE_BOOL=y | 244 | CONFIG_CMDLINE_BOOL=y |
@@ -257,6 +262,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
257 | # CONFIG_PCI_MSI is not set | 262 | # CONFIG_PCI_MSI is not set |
258 | CONFIG_PCI_LEGACY=y | 263 | CONFIG_PCI_LEGACY=y |
259 | # CONFIG_PCI_DEBUG is not set | 264 | # CONFIG_PCI_DEBUG is not set |
265 | # CONFIG_PCI_STUB is not set | ||
260 | # CONFIG_PCCARD is not set | 266 | # CONFIG_PCCARD is not set |
261 | # CONFIG_HOTPLUG_PCI is not set | 267 | # CONFIG_HOTPLUG_PCI is not set |
262 | # CONFIG_HAS_RAPIDIO is not set | 268 | # CONFIG_HAS_RAPIDIO is not set |
@@ -281,6 +287,7 @@ CONFIG_NET=y | |||
281 | # | 287 | # |
282 | # Networking options | 288 | # Networking options |
283 | # | 289 | # |
290 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
284 | CONFIG_PACKET=y | 291 | CONFIG_PACKET=y |
285 | # CONFIG_PACKET_MMAP is not set | 292 | # CONFIG_PACKET_MMAP is not set |
286 | CONFIG_UNIX=y | 293 | CONFIG_UNIX=y |
@@ -331,6 +338,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
331 | # CONFIG_ECONET is not set | 338 | # CONFIG_ECONET is not set |
332 | # CONFIG_WAN_ROUTER is not set | 339 | # CONFIG_WAN_ROUTER is not set |
333 | # CONFIG_NET_SCHED is not set | 340 | # CONFIG_NET_SCHED is not set |
341 | # CONFIG_DCB is not set | ||
334 | 342 | ||
335 | # | 343 | # |
336 | # Network testing | 344 | # Network testing |
@@ -343,6 +351,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
343 | # CONFIG_AF_RXRPC is not set | 351 | # CONFIG_AF_RXRPC is not set |
344 | # CONFIG_PHONET is not set | 352 | # CONFIG_PHONET is not set |
345 | # CONFIG_WIRELESS is not set | 353 | # CONFIG_WIRELESS is not set |
354 | # CONFIG_WIMAX is not set | ||
346 | # CONFIG_RFKILL is not set | 355 | # CONFIG_RFKILL is not set |
347 | # CONFIG_NET_9P is not set | 356 | # CONFIG_NET_9P is not set |
348 | 357 | ||
@@ -368,6 +377,7 @@ CONFIG_MTD=y | |||
368 | # CONFIG_MTD_DEBUG is not set | 377 | # CONFIG_MTD_DEBUG is not set |
369 | # CONFIG_MTD_CONCAT is not set | 378 | # CONFIG_MTD_CONCAT is not set |
370 | CONFIG_MTD_PARTITIONS=y | 379 | CONFIG_MTD_PARTITIONS=y |
380 | # CONFIG_MTD_TESTS is not set | ||
371 | # CONFIG_MTD_REDBOOT_PARTS is not set | 381 | # CONFIG_MTD_REDBOOT_PARTS is not set |
372 | CONFIG_MTD_CMDLINE_PARTS=y | 382 | CONFIG_MTD_CMDLINE_PARTS=y |
373 | CONFIG_MTD_OF_PARTS=y | 383 | CONFIG_MTD_OF_PARTS=y |
@@ -440,6 +450,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
440 | # CONFIG_MTD_ONENAND is not set | 450 | # CONFIG_MTD_ONENAND is not set |
441 | 451 | ||
442 | # | 452 | # |
453 | # LPDDR flash memory drivers | ||
454 | # | ||
455 | # CONFIG_MTD_LPDDR is not set | ||
456 | # CONFIG_MTD_QINFO_PROBE is not set | ||
457 | |||
458 | # | ||
443 | # UBI - Unsorted block images | 459 | # UBI - Unsorted block images |
444 | # | 460 | # |
445 | # CONFIG_MTD_UBI is not set | 461 | # CONFIG_MTD_UBI is not set |
@@ -470,6 +486,7 @@ CONFIG_MISC_DEVICES=y | |||
470 | # CONFIG_TIFM_CORE is not set | 486 | # CONFIG_TIFM_CORE is not set |
471 | # CONFIG_ENCLOSURE_SERVICES is not set | 487 | # CONFIG_ENCLOSURE_SERVICES is not set |
472 | # CONFIG_HP_ILO is not set | 488 | # CONFIG_HP_ILO is not set |
489 | # CONFIG_C2PORT is not set | ||
473 | CONFIG_HAVE_IDE=y | 490 | CONFIG_HAVE_IDE=y |
474 | # CONFIG_IDE is not set | 491 | # CONFIG_IDE is not set |
475 | 492 | ||
@@ -532,6 +549,7 @@ CONFIG_NETDEV_1000=y | |||
532 | # CONFIG_JME is not set | 549 | # CONFIG_JME is not set |
533 | CONFIG_NETDEV_10000=y | 550 | CONFIG_NETDEV_10000=y |
534 | # CONFIG_CHELSIO_T1 is not set | 551 | # CONFIG_CHELSIO_T1 is not set |
552 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
535 | # CONFIG_CHELSIO_T3 is not set | 553 | # CONFIG_CHELSIO_T3 is not set |
536 | # CONFIG_ENIC is not set | 554 | # CONFIG_ENIC is not set |
537 | # CONFIG_IXGBE is not set | 555 | # CONFIG_IXGBE is not set |
@@ -554,6 +572,10 @@ CONFIG_NETDEV_10000=y | |||
554 | # CONFIG_WLAN_PRE80211 is not set | 572 | # CONFIG_WLAN_PRE80211 is not set |
555 | # CONFIG_WLAN_80211 is not set | 573 | # CONFIG_WLAN_80211 is not set |
556 | # CONFIG_IWLWIFI_LEDS is not set | 574 | # CONFIG_IWLWIFI_LEDS is not set |
575 | |||
576 | # | ||
577 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
578 | # | ||
557 | # CONFIG_WAN is not set | 579 | # CONFIG_WAN is not set |
558 | # CONFIG_FDDI is not set | 580 | # CONFIG_FDDI is not set |
559 | # CONFIG_HIPPI is not set | 581 | # CONFIG_HIPPI is not set |
@@ -606,9 +628,12 @@ CONFIG_SERIAL_CORE=y | |||
606 | CONFIG_SERIAL_CORE_CONSOLE=y | 628 | CONFIG_SERIAL_CORE_CONSOLE=y |
607 | # CONFIG_SERIAL_JSM is not set | 629 | # CONFIG_SERIAL_JSM is not set |
608 | CONFIG_SERIAL_OF_PLATFORM=y | 630 | CONFIG_SERIAL_OF_PLATFORM=y |
631 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
609 | CONFIG_UNIX98_PTYS=y | 632 | CONFIG_UNIX98_PTYS=y |
633 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
610 | CONFIG_LEGACY_PTYS=y | 634 | CONFIG_LEGACY_PTYS=y |
611 | CONFIG_LEGACY_PTY_COUNT=256 | 635 | CONFIG_LEGACY_PTY_COUNT=256 |
636 | # CONFIG_HVC_UDBG is not set | ||
612 | # CONFIG_IPMI_HANDLER is not set | 637 | # CONFIG_IPMI_HANDLER is not set |
613 | # CONFIG_HW_RANDOM is not set | 638 | # CONFIG_HW_RANDOM is not set |
614 | # CONFIG_NVRAM is not set | 639 | # CONFIG_NVRAM is not set |
@@ -627,11 +652,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
627 | # CONFIG_HWMON is not set | 652 | # CONFIG_HWMON is not set |
628 | CONFIG_THERMAL=y | 653 | CONFIG_THERMAL=y |
629 | # CONFIG_WATCHDOG is not set | 654 | # CONFIG_WATCHDOG is not set |
655 | CONFIG_SSB_POSSIBLE=y | ||
630 | 656 | ||
631 | # | 657 | # |
632 | # Sonics Silicon Backplane | 658 | # Sonics Silicon Backplane |
633 | # | 659 | # |
634 | CONFIG_SSB_POSSIBLE=y | ||
635 | # CONFIG_SSB is not set | 660 | # CONFIG_SSB is not set |
636 | 661 | ||
637 | # | 662 | # |
@@ -641,7 +666,7 @@ CONFIG_SSB_POSSIBLE=y | |||
641 | # CONFIG_MFD_SM501 is not set | 666 | # CONFIG_MFD_SM501 is not set |
642 | # CONFIG_HTC_PASIC3 is not set | 667 | # CONFIG_HTC_PASIC3 is not set |
643 | # CONFIG_MFD_TMIO is not set | 668 | # CONFIG_MFD_TMIO is not set |
644 | # CONFIG_MFD_WM8400 is not set | 669 | # CONFIG_REGULATOR is not set |
645 | 670 | ||
646 | # | 671 | # |
647 | # Multimedia devices | 672 | # Multimedia devices |
@@ -687,9 +712,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
687 | # | 712 | # |
688 | 713 | ||
689 | # | 714 | # |
690 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 715 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
691 | # | 716 | # |
692 | # CONFIG_USB_GADGET is not set | 717 | # CONFIG_USB_GADGET is not set |
718 | |||
719 | # | ||
720 | # OTG and related infrastructure | ||
721 | # | ||
693 | # CONFIG_UWB is not set | 722 | # CONFIG_UWB is not set |
694 | # CONFIG_MMC is not set | 723 | # CONFIG_MMC is not set |
695 | # CONFIG_MEMSTICK is not set | 724 | # CONFIG_MEMSTICK is not set |
@@ -715,7 +744,9 @@ CONFIG_EXT2_FS=y | |||
715 | # CONFIG_FS_POSIX_ACL is not set | 744 | # CONFIG_FS_POSIX_ACL is not set |
716 | CONFIG_FILE_LOCKING=y | 745 | CONFIG_FILE_LOCKING=y |
717 | # CONFIG_XFS_FS is not set | 746 | # CONFIG_XFS_FS is not set |
747 | # CONFIG_GFS2_FS is not set | ||
718 | # CONFIG_OCFS2_FS is not set | 748 | # CONFIG_OCFS2_FS is not set |
749 | # CONFIG_BTRFS_FS is not set | ||
719 | CONFIG_DNOTIFY=y | 750 | CONFIG_DNOTIFY=y |
720 | CONFIG_INOTIFY=y | 751 | CONFIG_INOTIFY=y |
721 | CONFIG_INOTIFY_USER=y | 752 | CONFIG_INOTIFY_USER=y |
@@ -749,10 +780,7 @@ CONFIG_TMPFS=y | |||
749 | # CONFIG_TMPFS_POSIX_ACL is not set | 780 | # CONFIG_TMPFS_POSIX_ACL is not set |
750 | # CONFIG_HUGETLB_PAGE is not set | 781 | # CONFIG_HUGETLB_PAGE is not set |
751 | # CONFIG_CONFIGFS_FS is not set | 782 | # CONFIG_CONFIGFS_FS is not set |
752 | 783 | CONFIG_MISC_FILESYSTEMS=y | |
753 | # | ||
754 | # Miscellaneous filesystems | ||
755 | # | ||
756 | # CONFIG_ADFS_FS is not set | 784 | # CONFIG_ADFS_FS is not set |
757 | # CONFIG_AFFS_FS is not set | 785 | # CONFIG_AFFS_FS is not set |
758 | # CONFIG_HFS_FS is not set | 786 | # CONFIG_HFS_FS is not set |
@@ -772,6 +800,7 @@ CONFIG_JFFS2_ZLIB=y | |||
772 | CONFIG_JFFS2_RTIME=y | 800 | CONFIG_JFFS2_RTIME=y |
773 | # CONFIG_JFFS2_RUBIN is not set | 801 | # CONFIG_JFFS2_RUBIN is not set |
774 | CONFIG_CRAMFS=y | 802 | CONFIG_CRAMFS=y |
803 | # CONFIG_SQUASHFS is not set | ||
775 | # CONFIG_VXFS_FS is not set | 804 | # CONFIG_VXFS_FS is not set |
776 | # CONFIG_MINIX_FS is not set | 805 | # CONFIG_MINIX_FS is not set |
777 | # CONFIG_OMFS_FS is not set | 806 | # CONFIG_OMFS_FS is not set |
@@ -812,6 +841,7 @@ CONFIG_MSDOS_PARTITION=y | |||
812 | # Library routines | 841 | # Library routines |
813 | # | 842 | # |
814 | CONFIG_BITREVERSE=y | 843 | CONFIG_BITREVERSE=y |
844 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
815 | # CONFIG_CRC_CCITT is not set | 845 | # CONFIG_CRC_CCITT is not set |
816 | # CONFIG_CRC16 is not set | 846 | # CONFIG_CRC16 is not set |
817 | # CONFIG_CRC_T10DIF is not set | 847 | # CONFIG_CRC_T10DIF is not set |
@@ -863,6 +893,7 @@ CONFIG_SCHED_DEBUG=y | |||
863 | # CONFIG_DEBUG_MEMORY_INIT is not set | 893 | # CONFIG_DEBUG_MEMORY_INIT is not set |
864 | # CONFIG_DEBUG_LIST is not set | 894 | # CONFIG_DEBUG_LIST is not set |
865 | # CONFIG_DEBUG_SG is not set | 895 | # CONFIG_DEBUG_SG is not set |
896 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
866 | # CONFIG_BOOT_PRINTK_DELAY is not set | 897 | # CONFIG_BOOT_PRINTK_DELAY is not set |
867 | # CONFIG_RCU_TORTURE_TEST is not set | 898 | # CONFIG_RCU_TORTURE_TEST is not set |
868 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 899 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -871,18 +902,24 @@ CONFIG_SCHED_DEBUG=y | |||
871 | # CONFIG_FAULT_INJECTION is not set | 902 | # CONFIG_FAULT_INJECTION is not set |
872 | # CONFIG_LATENCYTOP is not set | 903 | # CONFIG_LATENCYTOP is not set |
873 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 904 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
874 | CONFIG_NOP_TRACER=y | 905 | CONFIG_HAVE_FUNCTION_TRACER=y |
875 | CONFIG_HAVE_FTRACE=y | ||
876 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 906 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
877 | # CONFIG_FTRACE is not set | 907 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
908 | |||
909 | # | ||
910 | # Tracers | ||
911 | # | ||
912 | # CONFIG_FUNCTION_TRACER is not set | ||
878 | # CONFIG_SCHED_TRACER is not set | 913 | # CONFIG_SCHED_TRACER is not set |
879 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 914 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
880 | # CONFIG_BOOT_TRACER is not set | 915 | # CONFIG_BOOT_TRACER is not set |
916 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
881 | # CONFIG_STACK_TRACER is not set | 917 | # CONFIG_STACK_TRACER is not set |
882 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 918 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
883 | # CONFIG_SAMPLES is not set | 919 | # CONFIG_SAMPLES is not set |
884 | CONFIG_HAVE_ARCH_KGDB=y | 920 | CONFIG_HAVE_ARCH_KGDB=y |
885 | # CONFIG_KGDB is not set | 921 | # CONFIG_KGDB is not set |
922 | CONFIG_PRINT_STACK_DEPTH=64 | ||
886 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 923 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
887 | # CONFIG_DEBUG_STACK_USAGE is not set | 924 | # CONFIG_DEBUG_STACK_USAGE is not set |
888 | # CONFIG_DEBUG_PAGEALLOC is not set | 925 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -922,11 +959,15 @@ CONFIG_CRYPTO=y | |||
922 | # | 959 | # |
923 | # CONFIG_CRYPTO_FIPS is not set | 960 | # CONFIG_CRYPTO_FIPS is not set |
924 | CONFIG_CRYPTO_ALGAPI=y | 961 | CONFIG_CRYPTO_ALGAPI=y |
925 | CONFIG_CRYPTO_AEAD=y | 962 | CONFIG_CRYPTO_ALGAPI2=y |
963 | CONFIG_CRYPTO_AEAD2=y | ||
926 | CONFIG_CRYPTO_BLKCIPHER=y | 964 | CONFIG_CRYPTO_BLKCIPHER=y |
965 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
927 | CONFIG_CRYPTO_HASH=y | 966 | CONFIG_CRYPTO_HASH=y |
928 | CONFIG_CRYPTO_RNG=y | 967 | CONFIG_CRYPTO_HASH2=y |
968 | CONFIG_CRYPTO_RNG2=y | ||
929 | CONFIG_CRYPTO_MANAGER=y | 969 | CONFIG_CRYPTO_MANAGER=y |
970 | CONFIG_CRYPTO_MANAGER2=y | ||
930 | # CONFIG_CRYPTO_GF128MUL is not set | 971 | # CONFIG_CRYPTO_GF128MUL is not set |
931 | # CONFIG_CRYPTO_NULL is not set | 972 | # CONFIG_CRYPTO_NULL is not set |
932 | # CONFIG_CRYPTO_CRYPTD is not set | 973 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/44x/sam440ep_defconfig b/arch/powerpc/configs/44x/sam440ep_defconfig index ce28cd6f0d4f..70d5c3fa3283 100644 --- a/arch/powerpc/configs/44x/sam440ep_defconfig +++ b/arch/powerpc/configs/44x/sam440ep_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 09:16:15 2008 | 4 | # Tue Jan 20 08:22:42 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -19,6 +19,7 @@ CONFIG_4xx=y | |||
19 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
20 | CONFIG_PTE_64BIT=y | 20 | CONFIG_PTE_64BIT=y |
21 | CONFIG_PHYS_64BIT=y | 21 | CONFIG_PHYS_64BIT=y |
22 | CONFIG_PPC_MMU_NOHASH=y | ||
22 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
23 | CONFIG_NOT_COHERENT_CACHE=y | 24 | CONFIG_NOT_COHERENT_CACHE=y |
24 | CONFIG_PPC32=y | 25 | CONFIG_PPC32=y |
@@ -44,7 +45,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 45 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 46 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 47 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 48 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 50 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 51 | CONFIG_OF=y |
@@ -76,12 +77,12 @@ CONFIG_POSIX_MQUEUE=y | |||
76 | CONFIG_IKCONFIG=y | 77 | CONFIG_IKCONFIG=y |
77 | # CONFIG_IKCONFIG_PROC is not set | 78 | # CONFIG_IKCONFIG_PROC is not set |
78 | CONFIG_LOG_BUF_SHIFT=14 | 79 | CONFIG_LOG_BUF_SHIFT=14 |
79 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_GROUP_SCHED=y | 80 | CONFIG_GROUP_SCHED=y |
81 | CONFIG_FAIR_GROUP_SCHED=y | 81 | CONFIG_FAIR_GROUP_SCHED=y |
82 | # CONFIG_RT_GROUP_SCHED is not set | 82 | # CONFIG_RT_GROUP_SCHED is not set |
83 | CONFIG_USER_SCHED=y | 83 | CONFIG_USER_SCHED=y |
84 | # CONFIG_CGROUP_SCHED is not set | 84 | # CONFIG_CGROUP_SCHED is not set |
85 | # CONFIG_CGROUPS is not set | ||
85 | CONFIG_SYSFS_DEPRECATED=y | 86 | CONFIG_SYSFS_DEPRECATED=y |
86 | CONFIG_SYSFS_DEPRECATED_V2=y | 87 | CONFIG_SYSFS_DEPRECATED_V2=y |
87 | # CONFIG_RELAY is not set | 88 | # CONFIG_RELAY is not set |
@@ -115,7 +116,6 @@ CONFIG_SLUB_DEBUG=y | |||
115 | CONFIG_SLUB=y | 116 | CONFIG_SLUB=y |
116 | # CONFIG_SLOB is not set | 117 | # CONFIG_SLOB is not set |
117 | # CONFIG_PROFILING is not set | 118 | # CONFIG_PROFILING is not set |
118 | # CONFIG_MARKERS is not set | ||
119 | CONFIG_HAVE_OPROFILE=y | 119 | CONFIG_HAVE_OPROFILE=y |
120 | # CONFIG_KPROBES is not set | 120 | # CONFIG_KPROBES is not set |
121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -126,7 +126,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
127 | CONFIG_SLABINFO=y | 127 | CONFIG_SLABINFO=y |
128 | CONFIG_RT_MUTEXES=y | 128 | CONFIG_RT_MUTEXES=y |
129 | # CONFIG_TINY_SHMEM is not set | ||
130 | CONFIG_BASE_SMALL=0 | 129 | CONFIG_BASE_SMALL=0 |
131 | CONFIG_MODULES=y | 130 | CONFIG_MODULES=y |
132 | # CONFIG_MODULE_FORCE_LOAD is not set | 131 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -134,11 +133,9 @@ CONFIG_MODULE_UNLOAD=y | |||
134 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 133 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
135 | # CONFIG_MODVERSIONS is not set | 134 | # CONFIG_MODVERSIONS is not set |
136 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 135 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
137 | CONFIG_KMOD=y | ||
138 | CONFIG_BLOCK=y | 136 | CONFIG_BLOCK=y |
139 | # CONFIG_LBD is not set | 137 | # CONFIG_LBD is not set |
140 | # CONFIG_BLK_DEV_IO_TRACE is not set | 138 | # CONFIG_BLK_DEV_IO_TRACE is not set |
141 | # CONFIG_LSF is not set | ||
142 | # CONFIG_BLK_DEV_BSG is not set | 139 | # CONFIG_BLK_DEV_BSG is not set |
143 | # CONFIG_BLK_DEV_INTEGRITY is not set | 140 | # CONFIG_BLK_DEV_INTEGRITY is not set |
144 | 141 | ||
@@ -155,6 +152,10 @@ CONFIG_DEFAULT_AS=y | |||
155 | # CONFIG_DEFAULT_NOOP is not set | 152 | # CONFIG_DEFAULT_NOOP is not set |
156 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 153 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
157 | CONFIG_CLASSIC_RCU=y | 154 | CONFIG_CLASSIC_RCU=y |
155 | # CONFIG_TREE_RCU is not set | ||
156 | # CONFIG_PREEMPT_RCU is not set | ||
157 | # CONFIG_TREE_RCU_TRACE is not set | ||
158 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
158 | # CONFIG_FREEZER is not set | 159 | # CONFIG_FREEZER is not set |
159 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 160 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
160 | 161 | ||
@@ -193,6 +194,7 @@ CONFIG_IBM440EP_ERR42=y | |||
193 | # CONFIG_GENERIC_IOMAP is not set | 194 | # CONFIG_GENERIC_IOMAP is not set |
194 | # CONFIG_CPU_FREQ is not set | 195 | # CONFIG_CPU_FREQ is not set |
195 | # CONFIG_FSL_ULI1575 is not set | 196 | # CONFIG_FSL_ULI1575 is not set |
197 | # CONFIG_SIMPLE_GPIO is not set | ||
196 | 198 | ||
197 | # | 199 | # |
198 | # Kernel options | 200 | # Kernel options |
@@ -216,6 +218,7 @@ CONFIG_BINFMT_ELF=y | |||
216 | # CONFIG_BINFMT_MISC is not set | 218 | # CONFIG_BINFMT_MISC is not set |
217 | # CONFIG_MATH_EMULATION is not set | 219 | # CONFIG_MATH_EMULATION is not set |
218 | # CONFIG_IOMMU_HELPER is not set | 220 | # CONFIG_IOMMU_HELPER is not set |
221 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
219 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 222 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
220 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 223 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
221 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 224 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -230,12 +233,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
230 | CONFIG_PAGEFLAGS_EXTENDED=y | 233 | CONFIG_PAGEFLAGS_EXTENDED=y |
231 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 234 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
232 | CONFIG_MIGRATION=y | 235 | CONFIG_MIGRATION=y |
233 | CONFIG_RESOURCES_64BIT=y | ||
234 | CONFIG_PHYS_ADDR_T_64BIT=y | 236 | CONFIG_PHYS_ADDR_T_64BIT=y |
235 | CONFIG_ZONE_DMA_FLAG=1 | 237 | CONFIG_ZONE_DMA_FLAG=1 |
236 | CONFIG_BOUNCE=y | 238 | CONFIG_BOUNCE=y |
237 | CONFIG_VIRT_TO_BUS=y | 239 | CONFIG_VIRT_TO_BUS=y |
238 | CONFIG_UNEVICTABLE_LRU=y | 240 | CONFIG_UNEVICTABLE_LRU=y |
241 | CONFIG_PPC_4K_PAGES=y | ||
242 | # CONFIG_PPC_16K_PAGES is not set | ||
243 | # CONFIG_PPC_64K_PAGES is not set | ||
239 | CONFIG_FORCE_MAX_ZONEORDER=11 | 244 | CONFIG_FORCE_MAX_ZONEORDER=11 |
240 | CONFIG_PROC_DEVICETREE=y | 245 | CONFIG_PROC_DEVICETREE=y |
241 | CONFIG_CMDLINE_BOOL=y | 246 | CONFIG_CMDLINE_BOOL=y |
@@ -258,6 +263,7 @@ CONFIG_PCI_SYSCALL=y | |||
258 | CONFIG_ARCH_SUPPORTS_MSI=y | 263 | CONFIG_ARCH_SUPPORTS_MSI=y |
259 | # CONFIG_PCI_MSI is not set | 264 | # CONFIG_PCI_MSI is not set |
260 | CONFIG_PCI_LEGACY=y | 265 | CONFIG_PCI_LEGACY=y |
266 | # CONFIG_PCI_STUB is not set | ||
261 | # CONFIG_PCCARD is not set | 267 | # CONFIG_PCCARD is not set |
262 | # CONFIG_HOTPLUG_PCI is not set | 268 | # CONFIG_HOTPLUG_PCI is not set |
263 | # CONFIG_HAS_RAPIDIO is not set | 269 | # CONFIG_HAS_RAPIDIO is not set |
@@ -282,6 +288,7 @@ CONFIG_NET=y | |||
282 | # | 288 | # |
283 | # Networking options | 289 | # Networking options |
284 | # | 290 | # |
291 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
285 | CONFIG_PACKET=y | 292 | CONFIG_PACKET=y |
286 | # CONFIG_PACKET_MMAP is not set | 293 | # CONFIG_PACKET_MMAP is not set |
287 | CONFIG_UNIX=y | 294 | CONFIG_UNIX=y |
@@ -332,6 +339,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
332 | # CONFIG_ECONET is not set | 339 | # CONFIG_ECONET is not set |
333 | # CONFIG_WAN_ROUTER is not set | 340 | # CONFIG_WAN_ROUTER is not set |
334 | # CONFIG_NET_SCHED is not set | 341 | # CONFIG_NET_SCHED is not set |
342 | # CONFIG_DCB is not set | ||
335 | 343 | ||
336 | # | 344 | # |
337 | # Network testing | 345 | # Network testing |
@@ -344,6 +352,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
344 | # CONFIG_AF_RXRPC is not set | 352 | # CONFIG_AF_RXRPC is not set |
345 | # CONFIG_PHONET is not set | 353 | # CONFIG_PHONET is not set |
346 | # CONFIG_WIRELESS is not set | 354 | # CONFIG_WIRELESS is not set |
355 | # CONFIG_WIMAX is not set | ||
347 | # CONFIG_RFKILL is not set | 356 | # CONFIG_RFKILL is not set |
348 | # CONFIG_NET_9P is not set | 357 | # CONFIG_NET_9P is not set |
349 | 358 | ||
@@ -551,6 +560,10 @@ CONFIG_IBM_NEW_EMAC_ZMII=y | |||
551 | # CONFIG_IWLWIFI_LEDS is not set | 560 | # CONFIG_IWLWIFI_LEDS is not set |
552 | 561 | ||
553 | # | 562 | # |
563 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
564 | # | ||
565 | |||
566 | # | ||
554 | # USB Network Adapters | 567 | # USB Network Adapters |
555 | # | 568 | # |
556 | # CONFIG_USB_CATC is not set | 569 | # CONFIG_USB_CATC is not set |
@@ -605,6 +618,7 @@ CONFIG_MOUSE_PS2_LOGIPS2PP=y | |||
605 | CONFIG_MOUSE_PS2_SYNAPTICS=y | 618 | CONFIG_MOUSE_PS2_SYNAPTICS=y |
606 | CONFIG_MOUSE_PS2_LIFEBOOK=y | 619 | CONFIG_MOUSE_PS2_LIFEBOOK=y |
607 | CONFIG_MOUSE_PS2_TRACKPOINT=y | 620 | CONFIG_MOUSE_PS2_TRACKPOINT=y |
621 | # CONFIG_MOUSE_PS2_ELANTECH is not set | ||
608 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 622 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
609 | # CONFIG_MOUSE_SERIAL is not set | 623 | # CONFIG_MOUSE_SERIAL is not set |
610 | # CONFIG_MOUSE_APPLETOUCH is not set | 624 | # CONFIG_MOUSE_APPLETOUCH is not set |
@@ -661,9 +675,12 @@ CONFIG_SERIAL_CORE=y | |||
661 | CONFIG_SERIAL_CORE_CONSOLE=y | 675 | CONFIG_SERIAL_CORE_CONSOLE=y |
662 | # CONFIG_SERIAL_JSM is not set | 676 | # CONFIG_SERIAL_JSM is not set |
663 | CONFIG_SERIAL_OF_PLATFORM=y | 677 | CONFIG_SERIAL_OF_PLATFORM=y |
678 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
664 | CONFIG_UNIX98_PTYS=y | 679 | CONFIG_UNIX98_PTYS=y |
680 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
665 | CONFIG_LEGACY_PTYS=y | 681 | CONFIG_LEGACY_PTYS=y |
666 | CONFIG_LEGACY_PTY_COUNT=256 | 682 | CONFIG_LEGACY_PTY_COUNT=256 |
683 | # CONFIG_HVC_UDBG is not set | ||
667 | # CONFIG_IPMI_HANDLER is not set | 684 | # CONFIG_IPMI_HANDLER is not set |
668 | # CONFIG_HW_RANDOM is not set | 685 | # CONFIG_HW_RANDOM is not set |
669 | # CONFIG_NVRAM is not set | 686 | # CONFIG_NVRAM is not set |
@@ -751,11 +768,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
751 | # CONFIG_THERMAL is not set | 768 | # CONFIG_THERMAL is not set |
752 | # CONFIG_THERMAL_HWMON is not set | 769 | # CONFIG_THERMAL_HWMON is not set |
753 | # CONFIG_WATCHDOG is not set | 770 | # CONFIG_WATCHDOG is not set |
771 | CONFIG_SSB_POSSIBLE=y | ||
754 | 772 | ||
755 | # | 773 | # |
756 | # Sonics Silicon Backplane | 774 | # Sonics Silicon Backplane |
757 | # | 775 | # |
758 | CONFIG_SSB_POSSIBLE=y | ||
759 | # CONFIG_SSB is not set | 776 | # CONFIG_SSB is not set |
760 | 777 | ||
761 | # | 778 | # |
@@ -764,9 +781,13 @@ CONFIG_SSB_POSSIBLE=y | |||
764 | # CONFIG_MFD_CORE is not set | 781 | # CONFIG_MFD_CORE is not set |
765 | # CONFIG_MFD_SM501 is not set | 782 | # CONFIG_MFD_SM501 is not set |
766 | # CONFIG_HTC_PASIC3 is not set | 783 | # CONFIG_HTC_PASIC3 is not set |
784 | # CONFIG_TWL4030_CORE is not set | ||
767 | # CONFIG_MFD_TMIO is not set | 785 | # CONFIG_MFD_TMIO is not set |
786 | # CONFIG_PMIC_DA903X is not set | ||
768 | # CONFIG_MFD_WM8400 is not set | 787 | # CONFIG_MFD_WM8400 is not set |
769 | # CONFIG_MFD_WM8350_I2C is not set | 788 | # CONFIG_MFD_WM8350_I2C is not set |
789 | # CONFIG_MFD_PCF50633 is not set | ||
790 | # CONFIG_REGULATOR is not set | ||
770 | 791 | ||
771 | # | 792 | # |
772 | # Multimedia devices | 793 | # Multimedia devices |
@@ -848,12 +869,13 @@ CONFIG_FB_RADEON_BACKLIGHT=y | |||
848 | # CONFIG_FB_IBM_GXT4500 is not set | 869 | # CONFIG_FB_IBM_GXT4500 is not set |
849 | # CONFIG_FB_VIRTUAL is not set | 870 | # CONFIG_FB_VIRTUAL is not set |
850 | # CONFIG_FB_METRONOME is not set | 871 | # CONFIG_FB_METRONOME is not set |
872 | # CONFIG_FB_MB862XX is not set | ||
851 | CONFIG_BACKLIGHT_LCD_SUPPORT=y | 873 | CONFIG_BACKLIGHT_LCD_SUPPORT=y |
852 | CONFIG_LCD_CLASS_DEVICE=y | 874 | CONFIG_LCD_CLASS_DEVICE=y |
853 | # CONFIG_LCD_ILI9320 is not set | 875 | # CONFIG_LCD_ILI9320 is not set |
854 | # CONFIG_LCD_PLATFORM is not set | 876 | # CONFIG_LCD_PLATFORM is not set |
855 | CONFIG_BACKLIGHT_CLASS_DEVICE=y | 877 | CONFIG_BACKLIGHT_CLASS_DEVICE=y |
856 | # CONFIG_BACKLIGHT_CORGI is not set | 878 | CONFIG_BACKLIGHT_GENERIC=y |
857 | 879 | ||
858 | # | 880 | # |
859 | # Display device support | 881 | # Display device support |
@@ -894,11 +916,9 @@ CONFIG_HID_COMPAT=y | |||
894 | CONFIG_HID_A4TECH=y | 916 | CONFIG_HID_A4TECH=y |
895 | CONFIG_HID_APPLE=y | 917 | CONFIG_HID_APPLE=y |
896 | CONFIG_HID_BELKIN=y | 918 | CONFIG_HID_BELKIN=y |
897 | CONFIG_HID_BRIGHT=y | ||
898 | CONFIG_HID_CHERRY=y | 919 | CONFIG_HID_CHERRY=y |
899 | CONFIG_HID_CHICONY=y | 920 | CONFIG_HID_CHICONY=y |
900 | CONFIG_HID_CYPRESS=y | 921 | CONFIG_HID_CYPRESS=y |
901 | CONFIG_HID_DELL=y | ||
902 | CONFIG_HID_EZKEY=y | 922 | CONFIG_HID_EZKEY=y |
903 | CONFIG_HID_GYRATION=y | 923 | CONFIG_HID_GYRATION=y |
904 | CONFIG_HID_LOGITECH=y | 924 | CONFIG_HID_LOGITECH=y |
@@ -906,12 +926,15 @@ CONFIG_HID_LOGITECH=y | |||
906 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 926 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
907 | CONFIG_HID_MICROSOFT=y | 927 | CONFIG_HID_MICROSOFT=y |
908 | CONFIG_HID_MONTEREY=y | 928 | CONFIG_HID_MONTEREY=y |
929 | # CONFIG_HID_NTRIG is not set | ||
909 | CONFIG_HID_PANTHERLORD=y | 930 | CONFIG_HID_PANTHERLORD=y |
910 | # CONFIG_PANTHERLORD_FF is not set | 931 | # CONFIG_PANTHERLORD_FF is not set |
911 | CONFIG_HID_PETALYNX=y | 932 | CONFIG_HID_PETALYNX=y |
912 | CONFIG_HID_SAMSUNG=y | 933 | CONFIG_HID_SAMSUNG=y |
913 | CONFIG_HID_SONY=y | 934 | CONFIG_HID_SONY=y |
914 | CONFIG_HID_SUNPLUS=y | 935 | CONFIG_HID_SUNPLUS=y |
936 | # CONFIG_GREENASIA_FF is not set | ||
937 | # CONFIG_HID_TOPSEED is not set | ||
915 | CONFIG_THRUSTMASTER_FF=m | 938 | CONFIG_THRUSTMASTER_FF=m |
916 | CONFIG_ZEROPLUS_FF=m | 939 | CONFIG_ZEROPLUS_FF=m |
917 | CONFIG_USB_SUPPORT=y | 940 | CONFIG_USB_SUPPORT=y |
@@ -943,6 +966,7 @@ CONFIG_USB_EHCI_HCD=m | |||
943 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 966 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
944 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 967 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
945 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 968 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
969 | # CONFIG_USB_OXU210HP_HCD is not set | ||
946 | # CONFIG_USB_ISP116X_HCD is not set | 970 | # CONFIG_USB_ISP116X_HCD is not set |
947 | # CONFIG_USB_ISP1760_HCD is not set | 971 | # CONFIG_USB_ISP1760_HCD is not set |
948 | CONFIG_USB_OHCI_HCD=y | 972 | CONFIG_USB_OHCI_HCD=y |
@@ -968,18 +992,17 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
968 | # CONFIG_USB_TMC is not set | 992 | # CONFIG_USB_TMC is not set |
969 | 993 | ||
970 | # | 994 | # |
971 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 995 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
972 | # | 996 | # |
973 | 997 | ||
974 | # | 998 | # |
975 | # may also be needed; see USB_STORAGE Help for more information | 999 | # see USB_STORAGE Help for more information |
976 | # | 1000 | # |
977 | CONFIG_USB_STORAGE=m | 1001 | CONFIG_USB_STORAGE=m |
978 | # CONFIG_USB_STORAGE_DEBUG is not set | 1002 | # CONFIG_USB_STORAGE_DEBUG is not set |
979 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1003 | # CONFIG_USB_STORAGE_DATAFAB is not set |
980 | # CONFIG_USB_STORAGE_FREECOM is not set | 1004 | # CONFIG_USB_STORAGE_FREECOM is not set |
981 | # CONFIG_USB_STORAGE_ISD200 is not set | 1005 | # CONFIG_USB_STORAGE_ISD200 is not set |
982 | # CONFIG_USB_STORAGE_DPCM is not set | ||
983 | # CONFIG_USB_STORAGE_USBAT is not set | 1006 | # CONFIG_USB_STORAGE_USBAT is not set |
984 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1007 | # CONFIG_USB_STORAGE_SDDR09 is not set |
985 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1008 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1027,6 +1050,10 @@ CONFIG_USB_STORAGE=m | |||
1027 | # CONFIG_USB_ISIGHTFW is not set | 1050 | # CONFIG_USB_ISIGHTFW is not set |
1028 | # CONFIG_USB_VST is not set | 1051 | # CONFIG_USB_VST is not set |
1029 | # CONFIG_USB_GADGET is not set | 1052 | # CONFIG_USB_GADGET is not set |
1053 | |||
1054 | # | ||
1055 | # OTG and related infrastructure | ||
1056 | # | ||
1030 | # CONFIG_UWB is not set | 1057 | # CONFIG_UWB is not set |
1031 | # CONFIG_MMC is not set | 1058 | # CONFIG_MMC is not set |
1032 | # CONFIG_MEMSTICK is not set | 1059 | # CONFIG_MEMSTICK is not set |
@@ -1065,6 +1092,7 @@ CONFIG_RTC_DRV_M41T80=y | |||
1065 | CONFIG_RTC_DRV_M41T80_WDT=y | 1092 | CONFIG_RTC_DRV_M41T80_WDT=y |
1066 | # CONFIG_RTC_DRV_S35390A is not set | 1093 | # CONFIG_RTC_DRV_S35390A is not set |
1067 | # CONFIG_RTC_DRV_FM3130 is not set | 1094 | # CONFIG_RTC_DRV_FM3130 is not set |
1095 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1068 | 1096 | ||
1069 | # | 1097 | # |
1070 | # SPI RTC drivers | 1098 | # SPI RTC drivers |
@@ -1117,6 +1145,7 @@ CONFIG_FS_POSIX_ACL=y | |||
1117 | CONFIG_FILE_LOCKING=y | 1145 | CONFIG_FILE_LOCKING=y |
1118 | # CONFIG_XFS_FS is not set | 1146 | # CONFIG_XFS_FS is not set |
1119 | # CONFIG_OCFS2_FS is not set | 1147 | # CONFIG_OCFS2_FS is not set |
1148 | # CONFIG_BTRFS_FS is not set | ||
1120 | CONFIG_DNOTIFY=y | 1149 | CONFIG_DNOTIFY=y |
1121 | CONFIG_INOTIFY=y | 1150 | CONFIG_INOTIFY=y |
1122 | CONFIG_INOTIFY_USER=y | 1151 | CONFIG_INOTIFY_USER=y |
@@ -1156,10 +1185,7 @@ CONFIG_TMPFS=y | |||
1156 | # CONFIG_TMPFS_POSIX_ACL is not set | 1185 | # CONFIG_TMPFS_POSIX_ACL is not set |
1157 | # CONFIG_HUGETLB_PAGE is not set | 1186 | # CONFIG_HUGETLB_PAGE is not set |
1158 | # CONFIG_CONFIGFS_FS is not set | 1187 | # CONFIG_CONFIGFS_FS is not set |
1159 | 1188 | CONFIG_MISC_FILESYSTEMS=y | |
1160 | # | ||
1161 | # Miscellaneous filesystems | ||
1162 | # | ||
1163 | # CONFIG_ADFS_FS is not set | 1189 | # CONFIG_ADFS_FS is not set |
1164 | CONFIG_AFFS_FS=m | 1190 | CONFIG_AFFS_FS=m |
1165 | # CONFIG_HFS_FS is not set | 1191 | # CONFIG_HFS_FS is not set |
@@ -1168,6 +1194,7 @@ CONFIG_AFFS_FS=m | |||
1168 | # CONFIG_BFS_FS is not set | 1194 | # CONFIG_BFS_FS is not set |
1169 | # CONFIG_EFS_FS is not set | 1195 | # CONFIG_EFS_FS is not set |
1170 | # CONFIG_CRAMFS is not set | 1196 | # CONFIG_CRAMFS is not set |
1197 | # CONFIG_SQUASHFS is not set | ||
1171 | # CONFIG_VXFS_FS is not set | 1198 | # CONFIG_VXFS_FS is not set |
1172 | # CONFIG_MINIX_FS is not set | 1199 | # CONFIG_MINIX_FS is not set |
1173 | # CONFIG_OMFS_FS is not set | 1200 | # CONFIG_OMFS_FS is not set |
@@ -1245,6 +1272,7 @@ CONFIG_NLS_ISO8859_1=y | |||
1245 | # Library routines | 1272 | # Library routines |
1246 | # | 1273 | # |
1247 | CONFIG_BITREVERSE=y | 1274 | CONFIG_BITREVERSE=y |
1275 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1248 | # CONFIG_CRC_CCITT is not set | 1276 | # CONFIG_CRC_CCITT is not set |
1249 | # CONFIG_CRC16 is not set | 1277 | # CONFIG_CRC16 is not set |
1250 | CONFIG_CRC_T10DIF=y | 1278 | CONFIG_CRC_T10DIF=y |
@@ -1278,12 +1306,17 @@ CONFIG_MAGIC_SYSRQ=y | |||
1278 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1306 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
1279 | # CONFIG_LATENCYTOP is not set | 1307 | # CONFIG_LATENCYTOP is not set |
1280 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1308 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1281 | CONFIG_NOP_TRACER=y | 1309 | CONFIG_HAVE_FUNCTION_TRACER=y |
1282 | CONFIG_HAVE_FTRACE=y | ||
1283 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1310 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
1311 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1312 | |||
1313 | # | ||
1314 | # Tracers | ||
1315 | # | ||
1284 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1316 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1285 | # CONFIG_SAMPLES is not set | 1317 | # CONFIG_SAMPLES is not set |
1286 | CONFIG_HAVE_ARCH_KGDB=y | 1318 | CONFIG_HAVE_ARCH_KGDB=y |
1319 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1287 | # CONFIG_IRQSTACKS is not set | 1320 | # CONFIG_IRQSTACKS is not set |
1288 | # CONFIG_PPC_EARLY_DEBUG is not set | 1321 | # CONFIG_PPC_EARLY_DEBUG is not set |
1289 | 1322 | ||
diff --git a/arch/powerpc/configs/44x/sequoia_defconfig b/arch/powerpc/configs/44x/sequoia_defconfig index 562beeaab53d..a921fe3c3711 100644 --- a/arch/powerpc/configs/44x/sequoia_defconfig +++ b/arch/powerpc/configs/44x/sequoia_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 09:16:16 2008 | 4 | # Tue Jan 20 08:22:45 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -19,6 +19,7 @@ CONFIG_4xx=y | |||
19 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
20 | CONFIG_PTE_64BIT=y | 20 | CONFIG_PTE_64BIT=y |
21 | CONFIG_PHYS_64BIT=y | 21 | CONFIG_PHYS_64BIT=y |
22 | CONFIG_PPC_MMU_NOHASH=y | ||
22 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
23 | CONFIG_NOT_COHERENT_CACHE=y | 24 | CONFIG_NOT_COHERENT_CACHE=y |
24 | CONFIG_PPC32=y | 25 | CONFIG_PPC32=y |
@@ -44,7 +45,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 45 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 46 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 47 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 48 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 50 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 51 | CONFIG_OF=y |
@@ -75,12 +76,12 @@ CONFIG_POSIX_MQUEUE=y | |||
75 | # CONFIG_AUDIT is not set | 76 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 77 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 78 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 79 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 80 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 81 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 82 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 83 | # CONFIG_CGROUP_SCHED is not set |
84 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 85 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 86 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 87 | # CONFIG_RELAY is not set |
@@ -115,7 +116,6 @@ CONFIG_SLUB_DEBUG=y | |||
115 | CONFIG_SLUB=y | 116 | CONFIG_SLUB=y |
116 | # CONFIG_SLOB is not set | 117 | # CONFIG_SLOB is not set |
117 | # CONFIG_PROFILING is not set | 118 | # CONFIG_PROFILING is not set |
118 | # CONFIG_MARKERS is not set | ||
119 | CONFIG_HAVE_OPROFILE=y | 119 | CONFIG_HAVE_OPROFILE=y |
120 | # CONFIG_KPROBES is not set | 120 | # CONFIG_KPROBES is not set |
121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -126,7 +126,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
127 | CONFIG_SLABINFO=y | 127 | CONFIG_SLABINFO=y |
128 | CONFIG_RT_MUTEXES=y | 128 | CONFIG_RT_MUTEXES=y |
129 | # CONFIG_TINY_SHMEM is not set | ||
130 | CONFIG_BASE_SMALL=0 | 129 | CONFIG_BASE_SMALL=0 |
131 | CONFIG_MODULES=y | 130 | CONFIG_MODULES=y |
132 | # CONFIG_MODULE_FORCE_LOAD is not set | 131 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -134,11 +133,9 @@ CONFIG_MODULE_UNLOAD=y | |||
134 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 133 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
135 | # CONFIG_MODVERSIONS is not set | 134 | # CONFIG_MODVERSIONS is not set |
136 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 135 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
137 | CONFIG_KMOD=y | ||
138 | CONFIG_BLOCK=y | 136 | CONFIG_BLOCK=y |
139 | CONFIG_LBD=y | 137 | CONFIG_LBD=y |
140 | # CONFIG_BLK_DEV_IO_TRACE is not set | 138 | # CONFIG_BLK_DEV_IO_TRACE is not set |
141 | # CONFIG_LSF is not set | ||
142 | # CONFIG_BLK_DEV_BSG is not set | 139 | # CONFIG_BLK_DEV_BSG is not set |
143 | # CONFIG_BLK_DEV_INTEGRITY is not set | 140 | # CONFIG_BLK_DEV_INTEGRITY is not set |
144 | 141 | ||
@@ -155,6 +152,10 @@ CONFIG_DEFAULT_AS=y | |||
155 | # CONFIG_DEFAULT_NOOP is not set | 152 | # CONFIG_DEFAULT_NOOP is not set |
156 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 153 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
157 | CONFIG_CLASSIC_RCU=y | 154 | CONFIG_CLASSIC_RCU=y |
155 | # CONFIG_TREE_RCU is not set | ||
156 | # CONFIG_PREEMPT_RCU is not set | ||
157 | # CONFIG_TREE_RCU_TRACE is not set | ||
158 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
158 | # CONFIG_FREEZER is not set | 159 | # CONFIG_FREEZER is not set |
159 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 160 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
160 | 161 | ||
@@ -192,6 +193,7 @@ CONFIG_440EPX=y | |||
192 | # CONFIG_GENERIC_IOMAP is not set | 193 | # CONFIG_GENERIC_IOMAP is not set |
193 | # CONFIG_CPU_FREQ is not set | 194 | # CONFIG_CPU_FREQ is not set |
194 | # CONFIG_FSL_ULI1575 is not set | 195 | # CONFIG_FSL_ULI1575 is not set |
196 | # CONFIG_SIMPLE_GPIO is not set | ||
195 | 197 | ||
196 | # | 198 | # |
197 | # Kernel options | 199 | # Kernel options |
@@ -216,6 +218,7 @@ CONFIG_BINFMT_ELF=y | |||
216 | # CONFIG_BINFMT_MISC is not set | 218 | # CONFIG_BINFMT_MISC is not set |
217 | # CONFIG_MATH_EMULATION is not set | 219 | # CONFIG_MATH_EMULATION is not set |
218 | # CONFIG_IOMMU_HELPER is not set | 220 | # CONFIG_IOMMU_HELPER is not set |
221 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
219 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 222 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
220 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 223 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
221 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 224 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -230,12 +233,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
230 | CONFIG_PAGEFLAGS_EXTENDED=y | 233 | CONFIG_PAGEFLAGS_EXTENDED=y |
231 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 234 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
232 | CONFIG_MIGRATION=y | 235 | CONFIG_MIGRATION=y |
233 | CONFIG_RESOURCES_64BIT=y | ||
234 | CONFIG_PHYS_ADDR_T_64BIT=y | 236 | CONFIG_PHYS_ADDR_T_64BIT=y |
235 | CONFIG_ZONE_DMA_FLAG=1 | 237 | CONFIG_ZONE_DMA_FLAG=1 |
236 | CONFIG_BOUNCE=y | 238 | CONFIG_BOUNCE=y |
237 | CONFIG_VIRT_TO_BUS=y | 239 | CONFIG_VIRT_TO_BUS=y |
238 | CONFIG_UNEVICTABLE_LRU=y | 240 | CONFIG_UNEVICTABLE_LRU=y |
241 | CONFIG_PPC_4K_PAGES=y | ||
242 | # CONFIG_PPC_16K_PAGES is not set | ||
243 | # CONFIG_PPC_64K_PAGES is not set | ||
239 | CONFIG_FORCE_MAX_ZONEORDER=11 | 244 | CONFIG_FORCE_MAX_ZONEORDER=11 |
240 | CONFIG_PROC_DEVICETREE=y | 245 | CONFIG_PROC_DEVICETREE=y |
241 | CONFIG_CMDLINE_BOOL=y | 246 | CONFIG_CMDLINE_BOOL=y |
@@ -259,6 +264,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
259 | # CONFIG_PCI_MSI is not set | 264 | # CONFIG_PCI_MSI is not set |
260 | CONFIG_PCI_LEGACY=y | 265 | CONFIG_PCI_LEGACY=y |
261 | # CONFIG_PCI_DEBUG is not set | 266 | # CONFIG_PCI_DEBUG is not set |
267 | # CONFIG_PCI_STUB is not set | ||
262 | # CONFIG_PCCARD is not set | 268 | # CONFIG_PCCARD is not set |
263 | # CONFIG_HOTPLUG_PCI is not set | 269 | # CONFIG_HOTPLUG_PCI is not set |
264 | # CONFIG_HAS_RAPIDIO is not set | 270 | # CONFIG_HAS_RAPIDIO is not set |
@@ -283,6 +289,7 @@ CONFIG_NET=y | |||
283 | # | 289 | # |
284 | # Networking options | 290 | # Networking options |
285 | # | 291 | # |
292 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
286 | CONFIG_PACKET=y | 293 | CONFIG_PACKET=y |
287 | # CONFIG_PACKET_MMAP is not set | 294 | # CONFIG_PACKET_MMAP is not set |
288 | CONFIG_UNIX=y | 295 | CONFIG_UNIX=y |
@@ -333,6 +340,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
333 | # CONFIG_ECONET is not set | 340 | # CONFIG_ECONET is not set |
334 | # CONFIG_WAN_ROUTER is not set | 341 | # CONFIG_WAN_ROUTER is not set |
335 | # CONFIG_NET_SCHED is not set | 342 | # CONFIG_NET_SCHED is not set |
343 | # CONFIG_DCB is not set | ||
336 | 344 | ||
337 | # | 345 | # |
338 | # Network testing | 346 | # Network testing |
@@ -345,6 +353,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
345 | # CONFIG_AF_RXRPC is not set | 353 | # CONFIG_AF_RXRPC is not set |
346 | # CONFIG_PHONET is not set | 354 | # CONFIG_PHONET is not set |
347 | # CONFIG_WIRELESS is not set | 355 | # CONFIG_WIRELESS is not set |
356 | # CONFIG_WIMAX is not set | ||
348 | # CONFIG_RFKILL is not set | 357 | # CONFIG_RFKILL is not set |
349 | # CONFIG_NET_9P is not set | 358 | # CONFIG_NET_9P is not set |
350 | 359 | ||
@@ -370,6 +379,7 @@ CONFIG_MTD=y | |||
370 | # CONFIG_MTD_DEBUG is not set | 379 | # CONFIG_MTD_DEBUG is not set |
371 | # CONFIG_MTD_CONCAT is not set | 380 | # CONFIG_MTD_CONCAT is not set |
372 | CONFIG_MTD_PARTITIONS=y | 381 | CONFIG_MTD_PARTITIONS=y |
382 | # CONFIG_MTD_TESTS is not set | ||
373 | # CONFIG_MTD_REDBOOT_PARTS is not set | 383 | # CONFIG_MTD_REDBOOT_PARTS is not set |
374 | CONFIG_MTD_CMDLINE_PARTS=y | 384 | CONFIG_MTD_CMDLINE_PARTS=y |
375 | CONFIG_MTD_OF_PARTS=y | 385 | CONFIG_MTD_OF_PARTS=y |
@@ -442,6 +452,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
442 | # CONFIG_MTD_ONENAND is not set | 452 | # CONFIG_MTD_ONENAND is not set |
443 | 453 | ||
444 | # | 454 | # |
455 | # LPDDR flash memory drivers | ||
456 | # | ||
457 | # CONFIG_MTD_LPDDR is not set | ||
458 | # CONFIG_MTD_QINFO_PROBE is not set | ||
459 | |||
460 | # | ||
445 | # UBI - Unsorted block images | 461 | # UBI - Unsorted block images |
446 | # | 462 | # |
447 | # CONFIG_MTD_UBI is not set | 463 | # CONFIG_MTD_UBI is not set |
@@ -472,6 +488,7 @@ CONFIG_MISC_DEVICES=y | |||
472 | # CONFIG_TIFM_CORE is not set | 488 | # CONFIG_TIFM_CORE is not set |
473 | # CONFIG_ENCLOSURE_SERVICES is not set | 489 | # CONFIG_ENCLOSURE_SERVICES is not set |
474 | # CONFIG_HP_ILO is not set | 490 | # CONFIG_HP_ILO is not set |
491 | # CONFIG_C2PORT is not set | ||
475 | CONFIG_HAVE_IDE=y | 492 | CONFIG_HAVE_IDE=y |
476 | # CONFIG_IDE is not set | 493 | # CONFIG_IDE is not set |
477 | 494 | ||
@@ -554,6 +571,7 @@ CONFIG_NETDEV_1000=y | |||
554 | # CONFIG_JME is not set | 571 | # CONFIG_JME is not set |
555 | CONFIG_NETDEV_10000=y | 572 | CONFIG_NETDEV_10000=y |
556 | # CONFIG_CHELSIO_T1 is not set | 573 | # CONFIG_CHELSIO_T1 is not set |
574 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
557 | # CONFIG_CHELSIO_T3 is not set | 575 | # CONFIG_CHELSIO_T3 is not set |
558 | # CONFIG_ENIC is not set | 576 | # CONFIG_ENIC is not set |
559 | # CONFIG_IXGBE is not set | 577 | # CONFIG_IXGBE is not set |
@@ -576,6 +594,10 @@ CONFIG_NETDEV_10000=y | |||
576 | # CONFIG_WLAN_PRE80211 is not set | 594 | # CONFIG_WLAN_PRE80211 is not set |
577 | # CONFIG_WLAN_80211 is not set | 595 | # CONFIG_WLAN_80211 is not set |
578 | # CONFIG_IWLWIFI_LEDS is not set | 596 | # CONFIG_IWLWIFI_LEDS is not set |
597 | |||
598 | # | ||
599 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
600 | # | ||
579 | # CONFIG_WAN is not set | 601 | # CONFIG_WAN is not set |
580 | # CONFIG_FDDI is not set | 602 | # CONFIG_FDDI is not set |
581 | # CONFIG_HIPPI is not set | 603 | # CONFIG_HIPPI is not set |
@@ -628,9 +650,12 @@ CONFIG_SERIAL_CORE=y | |||
628 | CONFIG_SERIAL_CORE_CONSOLE=y | 650 | CONFIG_SERIAL_CORE_CONSOLE=y |
629 | # CONFIG_SERIAL_JSM is not set | 651 | # CONFIG_SERIAL_JSM is not set |
630 | CONFIG_SERIAL_OF_PLATFORM=y | 652 | CONFIG_SERIAL_OF_PLATFORM=y |
653 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
631 | CONFIG_UNIX98_PTYS=y | 654 | CONFIG_UNIX98_PTYS=y |
655 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
632 | CONFIG_LEGACY_PTYS=y | 656 | CONFIG_LEGACY_PTYS=y |
633 | CONFIG_LEGACY_PTY_COUNT=256 | 657 | CONFIG_LEGACY_PTY_COUNT=256 |
658 | # CONFIG_HVC_UDBG is not set | ||
634 | # CONFIG_IPMI_HANDLER is not set | 659 | # CONFIG_IPMI_HANDLER is not set |
635 | # CONFIG_HW_RANDOM is not set | 660 | # CONFIG_HW_RANDOM is not set |
636 | # CONFIG_NVRAM is not set | 661 | # CONFIG_NVRAM is not set |
@@ -649,11 +674,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
649 | # CONFIG_HWMON is not set | 674 | # CONFIG_HWMON is not set |
650 | CONFIG_THERMAL=y | 675 | CONFIG_THERMAL=y |
651 | # CONFIG_WATCHDOG is not set | 676 | # CONFIG_WATCHDOG is not set |
677 | CONFIG_SSB_POSSIBLE=y | ||
652 | 678 | ||
653 | # | 679 | # |
654 | # Sonics Silicon Backplane | 680 | # Sonics Silicon Backplane |
655 | # | 681 | # |
656 | CONFIG_SSB_POSSIBLE=y | ||
657 | # CONFIG_SSB is not set | 682 | # CONFIG_SSB is not set |
658 | 683 | ||
659 | # | 684 | # |
@@ -663,7 +688,7 @@ CONFIG_SSB_POSSIBLE=y | |||
663 | # CONFIG_MFD_SM501 is not set | 688 | # CONFIG_MFD_SM501 is not set |
664 | # CONFIG_HTC_PASIC3 is not set | 689 | # CONFIG_HTC_PASIC3 is not set |
665 | # CONFIG_MFD_TMIO is not set | 690 | # CONFIG_MFD_TMIO is not set |
666 | # CONFIG_MFD_WM8400 is not set | 691 | # CONFIG_REGULATOR is not set |
667 | 692 | ||
668 | # | 693 | # |
669 | # Multimedia devices | 694 | # Multimedia devices |
@@ -709,9 +734,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
709 | # | 734 | # |
710 | 735 | ||
711 | # | 736 | # |
712 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 737 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
713 | # | 738 | # |
714 | # CONFIG_USB_GADGET is not set | 739 | # CONFIG_USB_GADGET is not set |
740 | |||
741 | # | ||
742 | # OTG and related infrastructure | ||
743 | # | ||
715 | # CONFIG_UWB is not set | 744 | # CONFIG_UWB is not set |
716 | # CONFIG_MMC is not set | 745 | # CONFIG_MMC is not set |
717 | # CONFIG_MEMSTICK is not set | 746 | # CONFIG_MEMSTICK is not set |
@@ -737,7 +766,9 @@ CONFIG_EXT2_FS=y | |||
737 | # CONFIG_FS_POSIX_ACL is not set | 766 | # CONFIG_FS_POSIX_ACL is not set |
738 | CONFIG_FILE_LOCKING=y | 767 | CONFIG_FILE_LOCKING=y |
739 | # CONFIG_XFS_FS is not set | 768 | # CONFIG_XFS_FS is not set |
769 | # CONFIG_GFS2_FS is not set | ||
740 | # CONFIG_OCFS2_FS is not set | 770 | # CONFIG_OCFS2_FS is not set |
771 | # CONFIG_BTRFS_FS is not set | ||
741 | CONFIG_DNOTIFY=y | 772 | CONFIG_DNOTIFY=y |
742 | CONFIG_INOTIFY=y | 773 | CONFIG_INOTIFY=y |
743 | CONFIG_INOTIFY_USER=y | 774 | CONFIG_INOTIFY_USER=y |
@@ -771,10 +802,7 @@ CONFIG_TMPFS=y | |||
771 | # CONFIG_TMPFS_POSIX_ACL is not set | 802 | # CONFIG_TMPFS_POSIX_ACL is not set |
772 | # CONFIG_HUGETLB_PAGE is not set | 803 | # CONFIG_HUGETLB_PAGE is not set |
773 | # CONFIG_CONFIGFS_FS is not set | 804 | # CONFIG_CONFIGFS_FS is not set |
774 | 805 | CONFIG_MISC_FILESYSTEMS=y | |
775 | # | ||
776 | # Miscellaneous filesystems | ||
777 | # | ||
778 | # CONFIG_ADFS_FS is not set | 806 | # CONFIG_ADFS_FS is not set |
779 | # CONFIG_AFFS_FS is not set | 807 | # CONFIG_AFFS_FS is not set |
780 | # CONFIG_HFS_FS is not set | 808 | # CONFIG_HFS_FS is not set |
@@ -794,6 +822,7 @@ CONFIG_JFFS2_ZLIB=y | |||
794 | CONFIG_JFFS2_RTIME=y | 822 | CONFIG_JFFS2_RTIME=y |
795 | # CONFIG_JFFS2_RUBIN is not set | 823 | # CONFIG_JFFS2_RUBIN is not set |
796 | CONFIG_CRAMFS=y | 824 | CONFIG_CRAMFS=y |
825 | # CONFIG_SQUASHFS is not set | ||
797 | # CONFIG_VXFS_FS is not set | 826 | # CONFIG_VXFS_FS is not set |
798 | # CONFIG_MINIX_FS is not set | 827 | # CONFIG_MINIX_FS is not set |
799 | # CONFIG_OMFS_FS is not set | 828 | # CONFIG_OMFS_FS is not set |
@@ -834,6 +863,7 @@ CONFIG_MSDOS_PARTITION=y | |||
834 | # Library routines | 863 | # Library routines |
835 | # | 864 | # |
836 | CONFIG_BITREVERSE=y | 865 | CONFIG_BITREVERSE=y |
866 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
837 | # CONFIG_CRC_CCITT is not set | 867 | # CONFIG_CRC_CCITT is not set |
838 | # CONFIG_CRC16 is not set | 868 | # CONFIG_CRC16 is not set |
839 | # CONFIG_CRC_T10DIF is not set | 869 | # CONFIG_CRC_T10DIF is not set |
@@ -885,6 +915,7 @@ CONFIG_SCHED_DEBUG=y | |||
885 | # CONFIG_DEBUG_MEMORY_INIT is not set | 915 | # CONFIG_DEBUG_MEMORY_INIT is not set |
886 | # CONFIG_DEBUG_LIST is not set | 916 | # CONFIG_DEBUG_LIST is not set |
887 | # CONFIG_DEBUG_SG is not set | 917 | # CONFIG_DEBUG_SG is not set |
918 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
888 | # CONFIG_BOOT_PRINTK_DELAY is not set | 919 | # CONFIG_BOOT_PRINTK_DELAY is not set |
889 | # CONFIG_RCU_TORTURE_TEST is not set | 920 | # CONFIG_RCU_TORTURE_TEST is not set |
890 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 921 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -893,18 +924,24 @@ CONFIG_SCHED_DEBUG=y | |||
893 | # CONFIG_FAULT_INJECTION is not set | 924 | # CONFIG_FAULT_INJECTION is not set |
894 | # CONFIG_LATENCYTOP is not set | 925 | # CONFIG_LATENCYTOP is not set |
895 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 926 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
896 | CONFIG_NOP_TRACER=y | 927 | CONFIG_HAVE_FUNCTION_TRACER=y |
897 | CONFIG_HAVE_FTRACE=y | ||
898 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 928 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
899 | # CONFIG_FTRACE is not set | 929 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
930 | |||
931 | # | ||
932 | # Tracers | ||
933 | # | ||
934 | # CONFIG_FUNCTION_TRACER is not set | ||
900 | # CONFIG_SCHED_TRACER is not set | 935 | # CONFIG_SCHED_TRACER is not set |
901 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 936 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
902 | # CONFIG_BOOT_TRACER is not set | 937 | # CONFIG_BOOT_TRACER is not set |
938 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
903 | # CONFIG_STACK_TRACER is not set | 939 | # CONFIG_STACK_TRACER is not set |
904 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 940 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
905 | # CONFIG_SAMPLES is not set | 941 | # CONFIG_SAMPLES is not set |
906 | CONFIG_HAVE_ARCH_KGDB=y | 942 | CONFIG_HAVE_ARCH_KGDB=y |
907 | # CONFIG_KGDB is not set | 943 | # CONFIG_KGDB is not set |
944 | CONFIG_PRINT_STACK_DEPTH=64 | ||
908 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 945 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
909 | # CONFIG_DEBUG_STACK_USAGE is not set | 946 | # CONFIG_DEBUG_STACK_USAGE is not set |
910 | # CONFIG_DEBUG_PAGEALLOC is not set | 947 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -944,11 +981,15 @@ CONFIG_CRYPTO=y | |||
944 | # | 981 | # |
945 | # CONFIG_CRYPTO_FIPS is not set | 982 | # CONFIG_CRYPTO_FIPS is not set |
946 | CONFIG_CRYPTO_ALGAPI=y | 983 | CONFIG_CRYPTO_ALGAPI=y |
947 | CONFIG_CRYPTO_AEAD=y | 984 | CONFIG_CRYPTO_ALGAPI2=y |
985 | CONFIG_CRYPTO_AEAD2=y | ||
948 | CONFIG_CRYPTO_BLKCIPHER=y | 986 | CONFIG_CRYPTO_BLKCIPHER=y |
987 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
949 | CONFIG_CRYPTO_HASH=y | 988 | CONFIG_CRYPTO_HASH=y |
950 | CONFIG_CRYPTO_RNG=y | 989 | CONFIG_CRYPTO_HASH2=y |
990 | CONFIG_CRYPTO_RNG2=y | ||
951 | CONFIG_CRYPTO_MANAGER=y | 991 | CONFIG_CRYPTO_MANAGER=y |
992 | CONFIG_CRYPTO_MANAGER2=y | ||
952 | # CONFIG_CRYPTO_GF128MUL is not set | 993 | # CONFIG_CRYPTO_GF128MUL is not set |
953 | # CONFIG_CRYPTO_NULL is not set | 994 | # CONFIG_CRYPTO_NULL is not set |
954 | # CONFIG_CRYPTO_CRYPTD is not set | 995 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/44x/taishan_defconfig b/arch/powerpc/configs/44x/taishan_defconfig index 427bb6a11be5..826700872d26 100644 --- a/arch/powerpc/configs/44x/taishan_defconfig +++ b/arch/powerpc/configs/44x/taishan_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 09:16:18 2008 | 4 | # Tue Jan 20 08:22:47 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -18,6 +18,7 @@ CONFIG_4xx=y | |||
18 | CONFIG_BOOKE=y | 18 | CONFIG_BOOKE=y |
19 | CONFIG_PTE_64BIT=y | 19 | CONFIG_PTE_64BIT=y |
20 | CONFIG_PHYS_64BIT=y | 20 | CONFIG_PHYS_64BIT=y |
21 | CONFIG_PPC_MMU_NOHASH=y | ||
21 | # CONFIG_PPC_MM_SLICES is not set | 22 | # CONFIG_PPC_MM_SLICES is not set |
22 | CONFIG_NOT_COHERENT_CACHE=y | 23 | CONFIG_NOT_COHERENT_CACHE=y |
23 | CONFIG_PPC32=y | 24 | CONFIG_PPC32=y |
@@ -43,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
43 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
44 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
45 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
46 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
47 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
48 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
49 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -74,12 +75,12 @@ CONFIG_POSIX_MQUEUE=y | |||
74 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
75 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
76 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
77 | # CONFIG_CGROUPS is not set | ||
78 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
79 | CONFIG_FAIR_GROUP_SCHED=y | 79 | CONFIG_FAIR_GROUP_SCHED=y |
80 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
81 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
82 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
83 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
84 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
85 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -114,7 +115,6 @@ CONFIG_SLUB_DEBUG=y | |||
114 | CONFIG_SLUB=y | 115 | CONFIG_SLUB=y |
115 | # CONFIG_SLOB is not set | 116 | # CONFIG_SLOB is not set |
116 | # CONFIG_PROFILING is not set | 117 | # CONFIG_PROFILING is not set |
117 | # CONFIG_MARKERS is not set | ||
118 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
119 | # CONFIG_KPROBES is not set | 119 | # CONFIG_KPROBES is not set |
120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -125,7 +125,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
126 | CONFIG_SLABINFO=y | 126 | CONFIG_SLABINFO=y |
127 | CONFIG_RT_MUTEXES=y | 127 | CONFIG_RT_MUTEXES=y |
128 | # CONFIG_TINY_SHMEM is not set | ||
129 | CONFIG_BASE_SMALL=0 | 128 | CONFIG_BASE_SMALL=0 |
130 | CONFIG_MODULES=y | 129 | CONFIG_MODULES=y |
131 | # CONFIG_MODULE_FORCE_LOAD is not set | 130 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -133,11 +132,9 @@ CONFIG_MODULE_UNLOAD=y | |||
133 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 132 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
134 | # CONFIG_MODVERSIONS is not set | 133 | # CONFIG_MODVERSIONS is not set |
135 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 134 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
136 | CONFIG_KMOD=y | ||
137 | CONFIG_BLOCK=y | 135 | CONFIG_BLOCK=y |
138 | CONFIG_LBD=y | 136 | CONFIG_LBD=y |
139 | # CONFIG_BLK_DEV_IO_TRACE is not set | 137 | # CONFIG_BLK_DEV_IO_TRACE is not set |
140 | # CONFIG_LSF is not set | ||
141 | # CONFIG_BLK_DEV_BSG is not set | 138 | # CONFIG_BLK_DEV_BSG is not set |
142 | # CONFIG_BLK_DEV_INTEGRITY is not set | 139 | # CONFIG_BLK_DEV_INTEGRITY is not set |
143 | 140 | ||
@@ -154,6 +151,10 @@ CONFIG_DEFAULT_AS=y | |||
154 | # CONFIG_DEFAULT_NOOP is not set | 151 | # CONFIG_DEFAULT_NOOP is not set |
155 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 152 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
156 | CONFIG_CLASSIC_RCU=y | 153 | CONFIG_CLASSIC_RCU=y |
154 | # CONFIG_TREE_RCU is not set | ||
155 | # CONFIG_PREEMPT_RCU is not set | ||
156 | # CONFIG_TREE_RCU_TRACE is not set | ||
157 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
157 | # CONFIG_FREEZER is not set | 158 | # CONFIG_FREEZER is not set |
158 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 159 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
159 | 160 | ||
@@ -191,6 +192,7 @@ CONFIG_440GX=y | |||
191 | # CONFIG_GENERIC_IOMAP is not set | 192 | # CONFIG_GENERIC_IOMAP is not set |
192 | # CONFIG_CPU_FREQ is not set | 193 | # CONFIG_CPU_FREQ is not set |
193 | # CONFIG_FSL_ULI1575 is not set | 194 | # CONFIG_FSL_ULI1575 is not set |
195 | # CONFIG_SIMPLE_GPIO is not set | ||
194 | 196 | ||
195 | # | 197 | # |
196 | # Kernel options | 198 | # Kernel options |
@@ -214,6 +216,7 @@ CONFIG_BINFMT_ELF=y | |||
214 | # CONFIG_BINFMT_MISC is not set | 216 | # CONFIG_BINFMT_MISC is not set |
215 | # CONFIG_MATH_EMULATION is not set | 217 | # CONFIG_MATH_EMULATION is not set |
216 | # CONFIG_IOMMU_HELPER is not set | 218 | # CONFIG_IOMMU_HELPER is not set |
219 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
217 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 220 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
218 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 221 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
219 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 222 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -228,12 +231,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
228 | CONFIG_PAGEFLAGS_EXTENDED=y | 231 | CONFIG_PAGEFLAGS_EXTENDED=y |
229 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 232 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
230 | CONFIG_MIGRATION=y | 233 | CONFIG_MIGRATION=y |
231 | CONFIG_RESOURCES_64BIT=y | ||
232 | CONFIG_PHYS_ADDR_T_64BIT=y | 234 | CONFIG_PHYS_ADDR_T_64BIT=y |
233 | CONFIG_ZONE_DMA_FLAG=1 | 235 | CONFIG_ZONE_DMA_FLAG=1 |
234 | CONFIG_BOUNCE=y | 236 | CONFIG_BOUNCE=y |
235 | CONFIG_VIRT_TO_BUS=y | 237 | CONFIG_VIRT_TO_BUS=y |
236 | CONFIG_UNEVICTABLE_LRU=y | 238 | CONFIG_UNEVICTABLE_LRU=y |
239 | CONFIG_PPC_4K_PAGES=y | ||
240 | # CONFIG_PPC_16K_PAGES is not set | ||
241 | # CONFIG_PPC_64K_PAGES is not set | ||
237 | CONFIG_FORCE_MAX_ZONEORDER=11 | 242 | CONFIG_FORCE_MAX_ZONEORDER=11 |
238 | CONFIG_PROC_DEVICETREE=y | 243 | CONFIG_PROC_DEVICETREE=y |
239 | CONFIG_CMDLINE_BOOL=y | 244 | CONFIG_CMDLINE_BOOL=y |
@@ -257,6 +262,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
257 | # CONFIG_PCI_MSI is not set | 262 | # CONFIG_PCI_MSI is not set |
258 | CONFIG_PCI_LEGACY=y | 263 | CONFIG_PCI_LEGACY=y |
259 | # CONFIG_PCI_DEBUG is not set | 264 | # CONFIG_PCI_DEBUG is not set |
265 | # CONFIG_PCI_STUB is not set | ||
260 | # CONFIG_PCCARD is not set | 266 | # CONFIG_PCCARD is not set |
261 | # CONFIG_HOTPLUG_PCI is not set | 267 | # CONFIG_HOTPLUG_PCI is not set |
262 | # CONFIG_HAS_RAPIDIO is not set | 268 | # CONFIG_HAS_RAPIDIO is not set |
@@ -281,6 +287,7 @@ CONFIG_NET=y | |||
281 | # | 287 | # |
282 | # Networking options | 288 | # Networking options |
283 | # | 289 | # |
290 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
284 | CONFIG_PACKET=y | 291 | CONFIG_PACKET=y |
285 | # CONFIG_PACKET_MMAP is not set | 292 | # CONFIG_PACKET_MMAP is not set |
286 | CONFIG_UNIX=y | 293 | CONFIG_UNIX=y |
@@ -331,6 +338,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
331 | # CONFIG_ECONET is not set | 338 | # CONFIG_ECONET is not set |
332 | # CONFIG_WAN_ROUTER is not set | 339 | # CONFIG_WAN_ROUTER is not set |
333 | # CONFIG_NET_SCHED is not set | 340 | # CONFIG_NET_SCHED is not set |
341 | # CONFIG_DCB is not set | ||
334 | 342 | ||
335 | # | 343 | # |
336 | # Network testing | 344 | # Network testing |
@@ -343,6 +351,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
343 | # CONFIG_AF_RXRPC is not set | 351 | # CONFIG_AF_RXRPC is not set |
344 | # CONFIG_PHONET is not set | 352 | # CONFIG_PHONET is not set |
345 | # CONFIG_WIRELESS is not set | 353 | # CONFIG_WIRELESS is not set |
354 | # CONFIG_WIMAX is not set | ||
346 | # CONFIG_RFKILL is not set | 355 | # CONFIG_RFKILL is not set |
347 | # CONFIG_NET_9P is not set | 356 | # CONFIG_NET_9P is not set |
348 | 357 | ||
@@ -368,6 +377,7 @@ CONFIG_MTD=y | |||
368 | # CONFIG_MTD_DEBUG is not set | 377 | # CONFIG_MTD_DEBUG is not set |
369 | # CONFIG_MTD_CONCAT is not set | 378 | # CONFIG_MTD_CONCAT is not set |
370 | CONFIG_MTD_PARTITIONS=y | 379 | CONFIG_MTD_PARTITIONS=y |
380 | # CONFIG_MTD_TESTS is not set | ||
371 | # CONFIG_MTD_REDBOOT_PARTS is not set | 381 | # CONFIG_MTD_REDBOOT_PARTS is not set |
372 | CONFIG_MTD_CMDLINE_PARTS=y | 382 | CONFIG_MTD_CMDLINE_PARTS=y |
373 | # CONFIG_MTD_OF_PARTS is not set | 383 | # CONFIG_MTD_OF_PARTS is not set |
@@ -440,6 +450,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
440 | # CONFIG_MTD_ONENAND is not set | 450 | # CONFIG_MTD_ONENAND is not set |
441 | 451 | ||
442 | # | 452 | # |
453 | # LPDDR flash memory drivers | ||
454 | # | ||
455 | # CONFIG_MTD_LPDDR is not set | ||
456 | # CONFIG_MTD_QINFO_PROBE is not set | ||
457 | |||
458 | # | ||
443 | # UBI - Unsorted block images | 459 | # UBI - Unsorted block images |
444 | # | 460 | # |
445 | # CONFIG_MTD_UBI is not set | 461 | # CONFIG_MTD_UBI is not set |
@@ -470,6 +486,7 @@ CONFIG_MISC_DEVICES=y | |||
470 | # CONFIG_TIFM_CORE is not set | 486 | # CONFIG_TIFM_CORE is not set |
471 | # CONFIG_ENCLOSURE_SERVICES is not set | 487 | # CONFIG_ENCLOSURE_SERVICES is not set |
472 | # CONFIG_HP_ILO is not set | 488 | # CONFIG_HP_ILO is not set |
489 | # CONFIG_C2PORT is not set | ||
473 | CONFIG_HAVE_IDE=y | 490 | CONFIG_HAVE_IDE=y |
474 | # CONFIG_IDE is not set | 491 | # CONFIG_IDE is not set |
475 | 492 | ||
@@ -554,6 +571,7 @@ CONFIG_NETDEV_1000=y | |||
554 | # CONFIG_JME is not set | 571 | # CONFIG_JME is not set |
555 | CONFIG_NETDEV_10000=y | 572 | CONFIG_NETDEV_10000=y |
556 | # CONFIG_CHELSIO_T1 is not set | 573 | # CONFIG_CHELSIO_T1 is not set |
574 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
557 | # CONFIG_CHELSIO_T3 is not set | 575 | # CONFIG_CHELSIO_T3 is not set |
558 | # CONFIG_ENIC is not set | 576 | # CONFIG_ENIC is not set |
559 | # CONFIG_IXGBE is not set | 577 | # CONFIG_IXGBE is not set |
@@ -576,6 +594,10 @@ CONFIG_NETDEV_10000=y | |||
576 | # CONFIG_WLAN_PRE80211 is not set | 594 | # CONFIG_WLAN_PRE80211 is not set |
577 | # CONFIG_WLAN_80211 is not set | 595 | # CONFIG_WLAN_80211 is not set |
578 | # CONFIG_IWLWIFI_LEDS is not set | 596 | # CONFIG_IWLWIFI_LEDS is not set |
597 | |||
598 | # | ||
599 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
600 | # | ||
579 | # CONFIG_WAN is not set | 601 | # CONFIG_WAN is not set |
580 | # CONFIG_FDDI is not set | 602 | # CONFIG_FDDI is not set |
581 | # CONFIG_HIPPI is not set | 603 | # CONFIG_HIPPI is not set |
@@ -628,9 +650,12 @@ CONFIG_SERIAL_CORE=y | |||
628 | CONFIG_SERIAL_CORE_CONSOLE=y | 650 | CONFIG_SERIAL_CORE_CONSOLE=y |
629 | # CONFIG_SERIAL_JSM is not set | 651 | # CONFIG_SERIAL_JSM is not set |
630 | CONFIG_SERIAL_OF_PLATFORM=y | 652 | CONFIG_SERIAL_OF_PLATFORM=y |
653 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
631 | CONFIG_UNIX98_PTYS=y | 654 | CONFIG_UNIX98_PTYS=y |
655 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
632 | CONFIG_LEGACY_PTYS=y | 656 | CONFIG_LEGACY_PTYS=y |
633 | CONFIG_LEGACY_PTY_COUNT=256 | 657 | CONFIG_LEGACY_PTY_COUNT=256 |
658 | # CONFIG_HVC_UDBG is not set | ||
634 | # CONFIG_IPMI_HANDLER is not set | 659 | # CONFIG_IPMI_HANDLER is not set |
635 | # CONFIG_HW_RANDOM is not set | 660 | # CONFIG_HW_RANDOM is not set |
636 | # CONFIG_NVRAM is not set | 661 | # CONFIG_NVRAM is not set |
@@ -649,11 +674,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
649 | # CONFIG_HWMON is not set | 674 | # CONFIG_HWMON is not set |
650 | CONFIG_THERMAL=y | 675 | CONFIG_THERMAL=y |
651 | # CONFIG_WATCHDOG is not set | 676 | # CONFIG_WATCHDOG is not set |
677 | CONFIG_SSB_POSSIBLE=y | ||
652 | 678 | ||
653 | # | 679 | # |
654 | # Sonics Silicon Backplane | 680 | # Sonics Silicon Backplane |
655 | # | 681 | # |
656 | CONFIG_SSB_POSSIBLE=y | ||
657 | # CONFIG_SSB is not set | 682 | # CONFIG_SSB is not set |
658 | 683 | ||
659 | # | 684 | # |
@@ -663,7 +688,7 @@ CONFIG_SSB_POSSIBLE=y | |||
663 | # CONFIG_MFD_SM501 is not set | 688 | # CONFIG_MFD_SM501 is not set |
664 | # CONFIG_HTC_PASIC3 is not set | 689 | # CONFIG_HTC_PASIC3 is not set |
665 | # CONFIG_MFD_TMIO is not set | 690 | # CONFIG_MFD_TMIO is not set |
666 | # CONFIG_MFD_WM8400 is not set | 691 | # CONFIG_REGULATOR is not set |
667 | 692 | ||
668 | # | 693 | # |
669 | # Multimedia devices | 694 | # Multimedia devices |
@@ -709,9 +734,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
709 | # | 734 | # |
710 | 735 | ||
711 | # | 736 | # |
712 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 737 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
713 | # | 738 | # |
714 | # CONFIG_USB_GADGET is not set | 739 | # CONFIG_USB_GADGET is not set |
740 | |||
741 | # | ||
742 | # OTG and related infrastructure | ||
743 | # | ||
715 | # CONFIG_UWB is not set | 744 | # CONFIG_UWB is not set |
716 | # CONFIG_MMC is not set | 745 | # CONFIG_MMC is not set |
717 | # CONFIG_MEMSTICK is not set | 746 | # CONFIG_MEMSTICK is not set |
@@ -737,7 +766,9 @@ CONFIG_EXT2_FS=y | |||
737 | # CONFIG_FS_POSIX_ACL is not set | 766 | # CONFIG_FS_POSIX_ACL is not set |
738 | CONFIG_FILE_LOCKING=y | 767 | CONFIG_FILE_LOCKING=y |
739 | # CONFIG_XFS_FS is not set | 768 | # CONFIG_XFS_FS is not set |
769 | # CONFIG_GFS2_FS is not set | ||
740 | # CONFIG_OCFS2_FS is not set | 770 | # CONFIG_OCFS2_FS is not set |
771 | # CONFIG_BTRFS_FS is not set | ||
741 | CONFIG_DNOTIFY=y | 772 | CONFIG_DNOTIFY=y |
742 | CONFIG_INOTIFY=y | 773 | CONFIG_INOTIFY=y |
743 | CONFIG_INOTIFY_USER=y | 774 | CONFIG_INOTIFY_USER=y |
@@ -771,10 +802,7 @@ CONFIG_TMPFS=y | |||
771 | # CONFIG_TMPFS_POSIX_ACL is not set | 802 | # CONFIG_TMPFS_POSIX_ACL is not set |
772 | # CONFIG_HUGETLB_PAGE is not set | 803 | # CONFIG_HUGETLB_PAGE is not set |
773 | # CONFIG_CONFIGFS_FS is not set | 804 | # CONFIG_CONFIGFS_FS is not set |
774 | 805 | CONFIG_MISC_FILESYSTEMS=y | |
775 | # | ||
776 | # Miscellaneous filesystems | ||
777 | # | ||
778 | # CONFIG_ADFS_FS is not set | 806 | # CONFIG_ADFS_FS is not set |
779 | # CONFIG_AFFS_FS is not set | 807 | # CONFIG_AFFS_FS is not set |
780 | # CONFIG_HFS_FS is not set | 808 | # CONFIG_HFS_FS is not set |
@@ -784,6 +812,7 @@ CONFIG_TMPFS=y | |||
784 | # CONFIG_EFS_FS is not set | 812 | # CONFIG_EFS_FS is not set |
785 | # CONFIG_JFFS2_FS is not set | 813 | # CONFIG_JFFS2_FS is not set |
786 | CONFIG_CRAMFS=y | 814 | CONFIG_CRAMFS=y |
815 | # CONFIG_SQUASHFS is not set | ||
787 | # CONFIG_VXFS_FS is not set | 816 | # CONFIG_VXFS_FS is not set |
788 | # CONFIG_MINIX_FS is not set | 817 | # CONFIG_MINIX_FS is not set |
789 | # CONFIG_OMFS_FS is not set | 818 | # CONFIG_OMFS_FS is not set |
@@ -824,6 +853,7 @@ CONFIG_MSDOS_PARTITION=y | |||
824 | # Library routines | 853 | # Library routines |
825 | # | 854 | # |
826 | CONFIG_BITREVERSE=y | 855 | CONFIG_BITREVERSE=y |
856 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
827 | # CONFIG_CRC_CCITT is not set | 857 | # CONFIG_CRC_CCITT is not set |
828 | # CONFIG_CRC16 is not set | 858 | # CONFIG_CRC16 is not set |
829 | # CONFIG_CRC_T10DIF is not set | 859 | # CONFIG_CRC_T10DIF is not set |
@@ -874,6 +904,7 @@ CONFIG_SCHED_DEBUG=y | |||
874 | # CONFIG_DEBUG_MEMORY_INIT is not set | 904 | # CONFIG_DEBUG_MEMORY_INIT is not set |
875 | # CONFIG_DEBUG_LIST is not set | 905 | # CONFIG_DEBUG_LIST is not set |
876 | # CONFIG_DEBUG_SG is not set | 906 | # CONFIG_DEBUG_SG is not set |
907 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
877 | # CONFIG_BOOT_PRINTK_DELAY is not set | 908 | # CONFIG_BOOT_PRINTK_DELAY is not set |
878 | # CONFIG_RCU_TORTURE_TEST is not set | 909 | # CONFIG_RCU_TORTURE_TEST is not set |
879 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 910 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -882,18 +913,24 @@ CONFIG_SCHED_DEBUG=y | |||
882 | # CONFIG_FAULT_INJECTION is not set | 913 | # CONFIG_FAULT_INJECTION is not set |
883 | # CONFIG_LATENCYTOP is not set | 914 | # CONFIG_LATENCYTOP is not set |
884 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 915 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
885 | CONFIG_NOP_TRACER=y | 916 | CONFIG_HAVE_FUNCTION_TRACER=y |
886 | CONFIG_HAVE_FTRACE=y | ||
887 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 917 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
888 | # CONFIG_FTRACE is not set | 918 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
919 | |||
920 | # | ||
921 | # Tracers | ||
922 | # | ||
923 | # CONFIG_FUNCTION_TRACER is not set | ||
889 | # CONFIG_SCHED_TRACER is not set | 924 | # CONFIG_SCHED_TRACER is not set |
890 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 925 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
891 | # CONFIG_BOOT_TRACER is not set | 926 | # CONFIG_BOOT_TRACER is not set |
927 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
892 | # CONFIG_STACK_TRACER is not set | 928 | # CONFIG_STACK_TRACER is not set |
893 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 929 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
894 | # CONFIG_SAMPLES is not set | 930 | # CONFIG_SAMPLES is not set |
895 | CONFIG_HAVE_ARCH_KGDB=y | 931 | CONFIG_HAVE_ARCH_KGDB=y |
896 | # CONFIG_KGDB is not set | 932 | # CONFIG_KGDB is not set |
933 | CONFIG_PRINT_STACK_DEPTH=64 | ||
897 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 934 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
898 | # CONFIG_DEBUG_STACK_USAGE is not set | 935 | # CONFIG_DEBUG_STACK_USAGE is not set |
899 | # CONFIG_DEBUG_PAGEALLOC is not set | 936 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -920,11 +957,15 @@ CONFIG_CRYPTO=y | |||
920 | # | 957 | # |
921 | # CONFIG_CRYPTO_FIPS is not set | 958 | # CONFIG_CRYPTO_FIPS is not set |
922 | CONFIG_CRYPTO_ALGAPI=y | 959 | CONFIG_CRYPTO_ALGAPI=y |
923 | CONFIG_CRYPTO_AEAD=y | 960 | CONFIG_CRYPTO_ALGAPI2=y |
961 | CONFIG_CRYPTO_AEAD2=y | ||
924 | CONFIG_CRYPTO_BLKCIPHER=y | 962 | CONFIG_CRYPTO_BLKCIPHER=y |
963 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
925 | CONFIG_CRYPTO_HASH=y | 964 | CONFIG_CRYPTO_HASH=y |
926 | CONFIG_CRYPTO_RNG=y | 965 | CONFIG_CRYPTO_HASH2=y |
966 | CONFIG_CRYPTO_RNG2=y | ||
927 | CONFIG_CRYPTO_MANAGER=y | 967 | CONFIG_CRYPTO_MANAGER=y |
968 | CONFIG_CRYPTO_MANAGER2=y | ||
928 | # CONFIG_CRYPTO_GF128MUL is not set | 969 | # CONFIG_CRYPTO_GF128MUL is not set |
929 | # CONFIG_CRYPTO_NULL is not set | 970 | # CONFIG_CRYPTO_NULL is not set |
930 | # CONFIG_CRYPTO_CRYPTD is not set | 971 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/44x/virtex5_defconfig b/arch/powerpc/configs/44x/virtex5_defconfig index 7513d360e0b0..15aab1ca6384 100644 --- a/arch/powerpc/configs/44x/virtex5_defconfig +++ b/arch/powerpc/configs/44x/virtex5_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc4 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Fri Nov 14 10:31:16 2008 | 4 | # Tue Jan 20 08:22:49 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -18,6 +18,7 @@ CONFIG_4xx=y | |||
18 | CONFIG_BOOKE=y | 18 | CONFIG_BOOKE=y |
19 | CONFIG_PTE_64BIT=y | 19 | CONFIG_PTE_64BIT=y |
20 | CONFIG_PHYS_64BIT=y | 20 | CONFIG_PHYS_64BIT=y |
21 | CONFIG_PPC_MMU_NOHASH=y | ||
21 | # CONFIG_PPC_MM_SLICES is not set | 22 | # CONFIG_PPC_MM_SLICES is not set |
22 | CONFIG_NOT_COHERENT_CACHE=y | 23 | CONFIG_NOT_COHERENT_CACHE=y |
23 | CONFIG_PPC32=y | 24 | CONFIG_PPC32=y |
@@ -44,7 +45,7 @@ CONFIG_GENERIC_GPIO=y | |||
44 | CONFIG_PPC=y | 45 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 46 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 47 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 48 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 50 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 51 | CONFIG_OF=y |
@@ -77,8 +78,8 @@ CONFIG_POSIX_MQUEUE=y | |||
77 | CONFIG_IKCONFIG=y | 78 | CONFIG_IKCONFIG=y |
78 | CONFIG_IKCONFIG_PROC=y | 79 | CONFIG_IKCONFIG_PROC=y |
79 | CONFIG_LOG_BUF_SHIFT=14 | 80 | CONFIG_LOG_BUF_SHIFT=14 |
80 | # CONFIG_CGROUPS is not set | ||
81 | # CONFIG_GROUP_SCHED is not set | 81 | # CONFIG_GROUP_SCHED is not set |
82 | # CONFIG_CGROUPS is not set | ||
82 | CONFIG_SYSFS_DEPRECATED=y | 83 | CONFIG_SYSFS_DEPRECATED=y |
83 | CONFIG_SYSFS_DEPRECATED_V2=y | 84 | CONFIG_SYSFS_DEPRECATED_V2=y |
84 | # CONFIG_RELAY is not set | 85 | # CONFIG_RELAY is not set |
@@ -116,7 +117,6 @@ CONFIG_SLAB=y | |||
116 | # CONFIG_SLUB is not set | 117 | # CONFIG_SLUB is not set |
117 | # CONFIG_SLOB is not set | 118 | # CONFIG_SLOB is not set |
118 | # CONFIG_PROFILING is not set | 119 | # CONFIG_PROFILING is not set |
119 | # CONFIG_MARKERS is not set | ||
120 | CONFIG_HAVE_OPROFILE=y | 120 | CONFIG_HAVE_OPROFILE=y |
121 | # CONFIG_KPROBES is not set | 121 | # CONFIG_KPROBES is not set |
122 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 122 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -127,7 +127,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
127 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 127 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
128 | CONFIG_SLABINFO=y | 128 | CONFIG_SLABINFO=y |
129 | CONFIG_RT_MUTEXES=y | 129 | CONFIG_RT_MUTEXES=y |
130 | # CONFIG_TINY_SHMEM is not set | ||
131 | CONFIG_BASE_SMALL=0 | 130 | CONFIG_BASE_SMALL=0 |
132 | CONFIG_MODULES=y | 131 | CONFIG_MODULES=y |
133 | # CONFIG_MODULE_FORCE_LOAD is not set | 132 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -135,11 +134,9 @@ CONFIG_MODULE_UNLOAD=y | |||
135 | CONFIG_MODULE_FORCE_UNLOAD=y | 134 | CONFIG_MODULE_FORCE_UNLOAD=y |
136 | CONFIG_MODVERSIONS=y | 135 | CONFIG_MODVERSIONS=y |
137 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 136 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
138 | CONFIG_KMOD=y | ||
139 | CONFIG_BLOCK=y | 137 | CONFIG_BLOCK=y |
140 | # CONFIG_LBD is not set | 138 | # CONFIG_LBD is not set |
141 | # CONFIG_BLK_DEV_IO_TRACE is not set | 139 | # CONFIG_BLK_DEV_IO_TRACE is not set |
142 | # CONFIG_LSF is not set | ||
143 | # CONFIG_BLK_DEV_BSG is not set | 140 | # CONFIG_BLK_DEV_BSG is not set |
144 | # CONFIG_BLK_DEV_INTEGRITY is not set | 141 | # CONFIG_BLK_DEV_INTEGRITY is not set |
145 | 142 | ||
@@ -156,6 +153,10 @@ CONFIG_DEFAULT_CFQ=y | |||
156 | # CONFIG_DEFAULT_NOOP is not set | 153 | # CONFIG_DEFAULT_NOOP is not set |
157 | CONFIG_DEFAULT_IOSCHED="cfq" | 154 | CONFIG_DEFAULT_IOSCHED="cfq" |
158 | CONFIG_CLASSIC_RCU=y | 155 | CONFIG_CLASSIC_RCU=y |
156 | # CONFIG_TREE_RCU is not set | ||
157 | # CONFIG_PREEMPT_RCU is not set | ||
158 | # CONFIG_TREE_RCU_TRACE is not set | ||
159 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
159 | # CONFIG_FREEZER is not set | 160 | # CONFIG_FREEZER is not set |
160 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 161 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
161 | 162 | ||
@@ -194,6 +195,7 @@ CONFIG_XILINX_VIRTEX_5_FXT=y | |||
194 | # CONFIG_GENERIC_IOMAP is not set | 195 | # CONFIG_GENERIC_IOMAP is not set |
195 | # CONFIG_CPU_FREQ is not set | 196 | # CONFIG_CPU_FREQ is not set |
196 | # CONFIG_FSL_ULI1575 is not set | 197 | # CONFIG_FSL_ULI1575 is not set |
198 | # CONFIG_SIMPLE_GPIO is not set | ||
197 | 199 | ||
198 | # | 200 | # |
199 | # Kernel options | 201 | # Kernel options |
@@ -211,13 +213,13 @@ CONFIG_HZ=250 | |||
211 | # CONFIG_PREEMPT_NONE is not set | 213 | # CONFIG_PREEMPT_NONE is not set |
212 | # CONFIG_PREEMPT_VOLUNTARY is not set | 214 | # CONFIG_PREEMPT_VOLUNTARY is not set |
213 | CONFIG_PREEMPT=y | 215 | CONFIG_PREEMPT=y |
214 | # CONFIG_PREEMPT_RCU is not set | ||
215 | CONFIG_BINFMT_ELF=y | 216 | CONFIG_BINFMT_ELF=y |
216 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | 217 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set |
217 | # CONFIG_HAVE_AOUT is not set | 218 | # CONFIG_HAVE_AOUT is not set |
218 | # CONFIG_BINFMT_MISC is not set | 219 | # CONFIG_BINFMT_MISC is not set |
219 | CONFIG_MATH_EMULATION=y | 220 | CONFIG_MATH_EMULATION=y |
220 | # CONFIG_IOMMU_HELPER is not set | 221 | # CONFIG_IOMMU_HELPER is not set |
222 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
221 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 223 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
222 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 224 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
223 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 225 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -232,12 +234,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
232 | CONFIG_PAGEFLAGS_EXTENDED=y | 234 | CONFIG_PAGEFLAGS_EXTENDED=y |
233 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 235 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
234 | CONFIG_MIGRATION=y | 236 | CONFIG_MIGRATION=y |
235 | CONFIG_RESOURCES_64BIT=y | ||
236 | CONFIG_PHYS_ADDR_T_64BIT=y | 237 | CONFIG_PHYS_ADDR_T_64BIT=y |
237 | CONFIG_ZONE_DMA_FLAG=1 | 238 | CONFIG_ZONE_DMA_FLAG=1 |
238 | CONFIG_BOUNCE=y | 239 | CONFIG_BOUNCE=y |
239 | CONFIG_VIRT_TO_BUS=y | 240 | CONFIG_VIRT_TO_BUS=y |
240 | CONFIG_UNEVICTABLE_LRU=y | 241 | CONFIG_UNEVICTABLE_LRU=y |
242 | CONFIG_PPC_4K_PAGES=y | ||
243 | # CONFIG_PPC_16K_PAGES is not set | ||
244 | # CONFIG_PPC_64K_PAGES is not set | ||
241 | CONFIG_FORCE_MAX_ZONEORDER=11 | 245 | CONFIG_FORCE_MAX_ZONEORDER=11 |
242 | CONFIG_PROC_DEVICETREE=y | 246 | CONFIG_PROC_DEVICETREE=y |
243 | CONFIG_CMDLINE_BOOL=y | 247 | CONFIG_CMDLINE_BOOL=y |
@@ -261,6 +265,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
261 | # CONFIG_PCI_MSI is not set | 265 | # CONFIG_PCI_MSI is not set |
262 | CONFIG_PCI_LEGACY=y | 266 | CONFIG_PCI_LEGACY=y |
263 | # CONFIG_PCI_DEBUG is not set | 267 | # CONFIG_PCI_DEBUG is not set |
268 | # CONFIG_PCI_STUB is not set | ||
264 | # CONFIG_PCCARD is not set | 269 | # CONFIG_PCCARD is not set |
265 | # CONFIG_HOTPLUG_PCI is not set | 270 | # CONFIG_HOTPLUG_PCI is not set |
266 | # CONFIG_HAS_RAPIDIO is not set | 271 | # CONFIG_HAS_RAPIDIO is not set |
@@ -285,6 +290,8 @@ CONFIG_NET=y | |||
285 | # | 290 | # |
286 | # Networking options | 291 | # Networking options |
287 | # | 292 | # |
293 | # CONFIG_NET_NS is not set | ||
294 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
288 | CONFIG_PACKET=y | 295 | CONFIG_PACKET=y |
289 | # CONFIG_PACKET_MMAP is not set | 296 | # CONFIG_PACKET_MMAP is not set |
290 | CONFIG_UNIX=y | 297 | CONFIG_UNIX=y |
@@ -428,6 +435,7 @@ CONFIG_IP_NF_MANGLE=m | |||
428 | # CONFIG_ECONET is not set | 435 | # CONFIG_ECONET is not set |
429 | # CONFIG_WAN_ROUTER is not set | 436 | # CONFIG_WAN_ROUTER is not set |
430 | # CONFIG_NET_SCHED is not set | 437 | # CONFIG_NET_SCHED is not set |
438 | # CONFIG_DCB is not set | ||
431 | 439 | ||
432 | # | 440 | # |
433 | # Network testing | 441 | # Network testing |
@@ -443,8 +451,9 @@ CONFIG_WIRELESS=y | |||
443 | # CONFIG_CFG80211 is not set | 451 | # CONFIG_CFG80211 is not set |
444 | CONFIG_WIRELESS_OLD_REGULATORY=y | 452 | CONFIG_WIRELESS_OLD_REGULATORY=y |
445 | # CONFIG_WIRELESS_EXT is not set | 453 | # CONFIG_WIRELESS_EXT is not set |
454 | # CONFIG_LIB80211 is not set | ||
446 | # CONFIG_MAC80211 is not set | 455 | # CONFIG_MAC80211 is not set |
447 | # CONFIG_IEEE80211 is not set | 456 | # CONFIG_WIMAX is not set |
448 | # CONFIG_RFKILL is not set | 457 | # CONFIG_RFKILL is not set |
449 | # CONFIG_NET_9P is not set | 458 | # CONFIG_NET_9P is not set |
450 | 459 | ||
@@ -579,6 +588,10 @@ CONFIG_NETDEV_1000=y | |||
579 | # CONFIG_WLAN_PRE80211 is not set | 588 | # CONFIG_WLAN_PRE80211 is not set |
580 | # CONFIG_WLAN_80211 is not set | 589 | # CONFIG_WLAN_80211 is not set |
581 | # CONFIG_IWLWIFI_LEDS is not set | 590 | # CONFIG_IWLWIFI_LEDS is not set |
591 | |||
592 | # | ||
593 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
594 | # | ||
582 | # CONFIG_WAN is not set | 595 | # CONFIG_WAN is not set |
583 | # CONFIG_FDDI is not set | 596 | # CONFIG_FDDI is not set |
584 | # CONFIG_HIPPI is not set | 597 | # CONFIG_HIPPI is not set |
@@ -679,9 +692,12 @@ CONFIG_SERIAL_CORE=y | |||
679 | CONFIG_SERIAL_CORE_CONSOLE=y | 692 | CONFIG_SERIAL_CORE_CONSOLE=y |
680 | # CONFIG_SERIAL_JSM is not set | 693 | # CONFIG_SERIAL_JSM is not set |
681 | # CONFIG_SERIAL_OF_PLATFORM is not set | 694 | # CONFIG_SERIAL_OF_PLATFORM is not set |
695 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
682 | CONFIG_UNIX98_PTYS=y | 696 | CONFIG_UNIX98_PTYS=y |
697 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
683 | CONFIG_LEGACY_PTYS=y | 698 | CONFIG_LEGACY_PTYS=y |
684 | CONFIG_LEGACY_PTY_COUNT=256 | 699 | CONFIG_LEGACY_PTY_COUNT=256 |
700 | # CONFIG_HVC_UDBG is not set | ||
685 | # CONFIG_IPMI_HANDLER is not set | 701 | # CONFIG_IPMI_HANDLER is not set |
686 | CONFIG_HW_RANDOM=m | 702 | CONFIG_HW_RANDOM=m |
687 | # CONFIG_NVRAM is not set | 703 | # CONFIG_NVRAM is not set |
@@ -859,7 +875,6 @@ CONFIG_LOGO_LINUX_CLUT224=y | |||
859 | # CONFIG_DMADEVICES is not set | 875 | # CONFIG_DMADEVICES is not set |
860 | # CONFIG_UIO is not set | 876 | # CONFIG_UIO is not set |
861 | # CONFIG_STAGING is not set | 877 | # CONFIG_STAGING is not set |
862 | CONFIG_STAGING_EXCLUDE_BUILD=y | ||
863 | 878 | ||
864 | # | 879 | # |
865 | # File systems | 880 | # File systems |
@@ -875,6 +890,7 @@ CONFIG_EXT2_FS=y | |||
875 | CONFIG_FILE_LOCKING=y | 890 | CONFIG_FILE_LOCKING=y |
876 | # CONFIG_XFS_FS is not set | 891 | # CONFIG_XFS_FS is not set |
877 | # CONFIG_OCFS2_FS is not set | 892 | # CONFIG_OCFS2_FS is not set |
893 | # CONFIG_BTRFS_FS is not set | ||
878 | CONFIG_DNOTIFY=y | 894 | CONFIG_DNOTIFY=y |
879 | CONFIG_INOTIFY=y | 895 | CONFIG_INOTIFY=y |
880 | CONFIG_INOTIFY_USER=y | 896 | CONFIG_INOTIFY_USER=y |
@@ -911,10 +927,7 @@ CONFIG_TMPFS=y | |||
911 | # CONFIG_TMPFS_POSIX_ACL is not set | 927 | # CONFIG_TMPFS_POSIX_ACL is not set |
912 | # CONFIG_HUGETLB_PAGE is not set | 928 | # CONFIG_HUGETLB_PAGE is not set |
913 | # CONFIG_CONFIGFS_FS is not set | 929 | # CONFIG_CONFIGFS_FS is not set |
914 | 930 | CONFIG_MISC_FILESYSTEMS=y | |
915 | # | ||
916 | # Miscellaneous filesystems | ||
917 | # | ||
918 | # CONFIG_ADFS_FS is not set | 931 | # CONFIG_ADFS_FS is not set |
919 | # CONFIG_AFFS_FS is not set | 932 | # CONFIG_AFFS_FS is not set |
920 | # CONFIG_HFS_FS is not set | 933 | # CONFIG_HFS_FS is not set |
@@ -923,6 +936,7 @@ CONFIG_TMPFS=y | |||
923 | # CONFIG_BFS_FS is not set | 936 | # CONFIG_BFS_FS is not set |
924 | # CONFIG_EFS_FS is not set | 937 | # CONFIG_EFS_FS is not set |
925 | CONFIG_CRAMFS=y | 938 | CONFIG_CRAMFS=y |
939 | # CONFIG_SQUASHFS is not set | ||
926 | # CONFIG_VXFS_FS is not set | 940 | # CONFIG_VXFS_FS is not set |
927 | # CONFIG_MINIX_FS is not set | 941 | # CONFIG_MINIX_FS is not set |
928 | # CONFIG_OMFS_FS is not set | 942 | # CONFIG_OMFS_FS is not set |
@@ -1002,6 +1016,7 @@ CONFIG_NLS_UTF8=m | |||
1002 | # Library routines | 1016 | # Library routines |
1003 | # | 1017 | # |
1004 | CONFIG_BITREVERSE=y | 1018 | CONFIG_BITREVERSE=y |
1019 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1005 | CONFIG_CRC_CCITT=y | 1020 | CONFIG_CRC_CCITT=y |
1006 | # CONFIG_CRC16 is not set | 1021 | # CONFIG_CRC16 is not set |
1007 | # CONFIG_CRC_T10DIF is not set | 1022 | # CONFIG_CRC_T10DIF is not set |
@@ -1051,6 +1066,7 @@ CONFIG_DEBUG_INFO=y | |||
1051 | CONFIG_DEBUG_MEMORY_INIT=y | 1066 | CONFIG_DEBUG_MEMORY_INIT=y |
1052 | # CONFIG_DEBUG_LIST is not set | 1067 | # CONFIG_DEBUG_LIST is not set |
1053 | # CONFIG_DEBUG_SG is not set | 1068 | # CONFIG_DEBUG_SG is not set |
1069 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1054 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1070 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1055 | # CONFIG_RCU_TORTURE_TEST is not set | 1071 | # CONFIG_RCU_TORTURE_TEST is not set |
1056 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1072 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1060,6 +1076,8 @@ CONFIG_DEBUG_MEMORY_INIT=y | |||
1060 | # CONFIG_LATENCYTOP is not set | 1076 | # CONFIG_LATENCYTOP is not set |
1061 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1077 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1062 | CONFIG_HAVE_FUNCTION_TRACER=y | 1078 | CONFIG_HAVE_FUNCTION_TRACER=y |
1079 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1080 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1063 | 1081 | ||
1064 | # | 1082 | # |
1065 | # Tracers | 1083 | # Tracers |
@@ -1069,11 +1087,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1069 | # CONFIG_SCHED_TRACER is not set | 1087 | # CONFIG_SCHED_TRACER is not set |
1070 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1088 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1071 | # CONFIG_BOOT_TRACER is not set | 1089 | # CONFIG_BOOT_TRACER is not set |
1090 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1072 | # CONFIG_STACK_TRACER is not set | 1091 | # CONFIG_STACK_TRACER is not set |
1073 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1092 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1074 | # CONFIG_SAMPLES is not set | 1093 | # CONFIG_SAMPLES is not set |
1075 | CONFIG_HAVE_ARCH_KGDB=y | 1094 | CONFIG_HAVE_ARCH_KGDB=y |
1076 | # CONFIG_KGDB is not set | 1095 | # CONFIG_KGDB is not set |
1096 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1077 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1097 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1078 | # CONFIG_DEBUG_STACK_USAGE is not set | 1098 | # CONFIG_DEBUG_STACK_USAGE is not set |
1079 | # CONFIG_DEBUG_PAGEALLOC is not set | 1099 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1099,6 +1119,7 @@ CONFIG_CRYPTO=y | |||
1099 | # | 1119 | # |
1100 | # CONFIG_CRYPTO_FIPS is not set | 1120 | # CONFIG_CRYPTO_FIPS is not set |
1101 | # CONFIG_CRYPTO_MANAGER is not set | 1121 | # CONFIG_CRYPTO_MANAGER is not set |
1122 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
1102 | # CONFIG_CRYPTO_GF128MUL is not set | 1123 | # CONFIG_CRYPTO_GF128MUL is not set |
1103 | # CONFIG_CRYPTO_NULL is not set | 1124 | # CONFIG_CRYPTO_NULL is not set |
1104 | # CONFIG_CRYPTO_CRYPTD is not set | 1125 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/44x/warp_defconfig b/arch/powerpc/configs/44x/warp_defconfig index 031ac6d4212f..3b77f092abe1 100644 --- a/arch/powerpc/configs/44x/warp_defconfig +++ b/arch/powerpc/configs/44x/warp_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 09:16:22 2008 | 4 | # Fri Jan 23 07:57:16 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -19,6 +19,7 @@ CONFIG_4xx=y | |||
19 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
20 | CONFIG_PTE_64BIT=y | 20 | CONFIG_PTE_64BIT=y |
21 | CONFIG_PHYS_64BIT=y | 21 | CONFIG_PHYS_64BIT=y |
22 | CONFIG_PPC_MMU_NOHASH=y | ||
22 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
23 | CONFIG_NOT_COHERENT_CACHE=y | 24 | CONFIG_NOT_COHERENT_CACHE=y |
24 | CONFIG_PPC32=y | 25 | CONFIG_PPC32=y |
@@ -44,7 +45,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 45 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 46 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 47 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 48 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 50 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 51 | CONFIG_OF=y |
@@ -75,12 +76,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 76 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 77 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 78 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 79 | CONFIG_GROUP_SCHED=y |
80 | CONFIG_FAIR_GROUP_SCHED=y | 80 | CONFIG_FAIR_GROUP_SCHED=y |
81 | # CONFIG_RT_GROUP_SCHED is not set | 81 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 82 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 83 | # CONFIG_CGROUP_SCHED is not set |
84 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 85 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 86 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 87 | # CONFIG_RELAY is not set |
@@ -113,7 +114,6 @@ CONFIG_SLAB=y | |||
113 | # CONFIG_SLUB is not set | 114 | # CONFIG_SLUB is not set |
114 | # CONFIG_SLOB is not set | 115 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 116 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 117 | CONFIG_HAVE_OPROFILE=y |
118 | # CONFIG_KPROBES is not set | 118 | # CONFIG_KPROBES is not set |
119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -124,7 +124,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
125 | CONFIG_SLABINFO=y | 125 | CONFIG_SLABINFO=y |
126 | CONFIG_RT_MUTEXES=y | 126 | CONFIG_RT_MUTEXES=y |
127 | # CONFIG_TINY_SHMEM is not set | ||
128 | CONFIG_BASE_SMALL=0 | 127 | CONFIG_BASE_SMALL=0 |
129 | CONFIG_MODULES=y | 128 | CONFIG_MODULES=y |
130 | # CONFIG_MODULE_FORCE_LOAD is not set | 129 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -132,11 +131,9 @@ CONFIG_MODULE_UNLOAD=y | |||
132 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 131 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
133 | # CONFIG_MODVERSIONS is not set | 132 | # CONFIG_MODVERSIONS is not set |
134 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 133 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
135 | CONFIG_KMOD=y | ||
136 | CONFIG_BLOCK=y | 134 | CONFIG_BLOCK=y |
137 | # CONFIG_LBD is not set | 135 | # CONFIG_LBD is not set |
138 | # CONFIG_BLK_DEV_IO_TRACE is not set | 136 | # CONFIG_BLK_DEV_IO_TRACE is not set |
139 | # CONFIG_LSF is not set | ||
140 | # CONFIG_BLK_DEV_BSG is not set | 137 | # CONFIG_BLK_DEV_BSG is not set |
141 | # CONFIG_BLK_DEV_INTEGRITY is not set | 138 | # CONFIG_BLK_DEV_INTEGRITY is not set |
142 | 139 | ||
@@ -153,6 +150,10 @@ CONFIG_DEFAULT_AS=y | |||
153 | # CONFIG_DEFAULT_NOOP is not set | 150 | # CONFIG_DEFAULT_NOOP is not set |
154 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 151 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
155 | CONFIG_CLASSIC_RCU=y | 152 | CONFIG_CLASSIC_RCU=y |
153 | # CONFIG_TREE_RCU is not set | ||
154 | # CONFIG_PREEMPT_RCU is not set | ||
155 | # CONFIG_TREE_RCU_TRACE is not set | ||
156 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
156 | # CONFIG_FREEZER is not set | 157 | # CONFIG_FREEZER is not set |
157 | 158 | ||
158 | # | 159 | # |
@@ -190,6 +191,7 @@ CONFIG_IBM440EP_ERR42=y | |||
190 | # CONFIG_GENERIC_IOMAP is not set | 191 | # CONFIG_GENERIC_IOMAP is not set |
191 | # CONFIG_CPU_FREQ is not set | 192 | # CONFIG_CPU_FREQ is not set |
192 | # CONFIG_FSL_ULI1575 is not set | 193 | # CONFIG_FSL_ULI1575 is not set |
194 | # CONFIG_SIMPLE_GPIO is not set | ||
193 | 195 | ||
194 | # | 196 | # |
195 | # Kernel options | 197 | # Kernel options |
@@ -213,6 +215,7 @@ CONFIG_BINFMT_ELF=y | |||
213 | # CONFIG_BINFMT_MISC is not set | 215 | # CONFIG_BINFMT_MISC is not set |
214 | # CONFIG_MATH_EMULATION is not set | 216 | # CONFIG_MATH_EMULATION is not set |
215 | # CONFIG_IOMMU_HELPER is not set | 217 | # CONFIG_IOMMU_HELPER is not set |
218 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
216 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 219 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
217 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 220 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
218 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 221 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -227,12 +230,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
227 | CONFIG_PAGEFLAGS_EXTENDED=y | 230 | CONFIG_PAGEFLAGS_EXTENDED=y |
228 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 231 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
229 | CONFIG_MIGRATION=y | 232 | CONFIG_MIGRATION=y |
230 | CONFIG_RESOURCES_64BIT=y | ||
231 | CONFIG_PHYS_ADDR_T_64BIT=y | 233 | CONFIG_PHYS_ADDR_T_64BIT=y |
232 | CONFIG_ZONE_DMA_FLAG=1 | 234 | CONFIG_ZONE_DMA_FLAG=1 |
233 | CONFIG_BOUNCE=y | 235 | CONFIG_BOUNCE=y |
234 | CONFIG_VIRT_TO_BUS=y | 236 | CONFIG_VIRT_TO_BUS=y |
235 | CONFIG_UNEVICTABLE_LRU=y | 237 | CONFIG_UNEVICTABLE_LRU=y |
238 | CONFIG_PPC_4K_PAGES=y | ||
239 | # CONFIG_PPC_16K_PAGES is not set | ||
240 | # CONFIG_PPC_64K_PAGES is not set | ||
236 | CONFIG_FORCE_MAX_ZONEORDER=11 | 241 | CONFIG_FORCE_MAX_ZONEORDER=11 |
237 | CONFIG_PROC_DEVICETREE=y | 242 | CONFIG_PROC_DEVICETREE=y |
238 | CONFIG_CMDLINE_BOOL=y | 243 | CONFIG_CMDLINE_BOOL=y |
@@ -273,6 +278,7 @@ CONFIG_NET=y | |||
273 | # | 278 | # |
274 | # Networking options | 279 | # Networking options |
275 | # | 280 | # |
281 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
276 | CONFIG_PACKET=y | 282 | CONFIG_PACKET=y |
277 | # CONFIG_PACKET_MMAP is not set | 283 | # CONFIG_PACKET_MMAP is not set |
278 | CONFIG_UNIX=y | 284 | CONFIG_UNIX=y |
@@ -348,6 +354,7 @@ CONFIG_VLAN_8021Q=y | |||
348 | # CONFIG_ECONET is not set | 354 | # CONFIG_ECONET is not set |
349 | # CONFIG_WAN_ROUTER is not set | 355 | # CONFIG_WAN_ROUTER is not set |
350 | # CONFIG_NET_SCHED is not set | 356 | # CONFIG_NET_SCHED is not set |
357 | # CONFIG_DCB is not set | ||
351 | 358 | ||
352 | # | 359 | # |
353 | # Network testing | 360 | # Network testing |
@@ -360,6 +367,7 @@ CONFIG_VLAN_8021Q=y | |||
360 | # CONFIG_AF_RXRPC is not set | 367 | # CONFIG_AF_RXRPC is not set |
361 | # CONFIG_PHONET is not set | 368 | # CONFIG_PHONET is not set |
362 | # CONFIG_WIRELESS is not set | 369 | # CONFIG_WIRELESS is not set |
370 | # CONFIG_WIMAX is not set | ||
363 | # CONFIG_RFKILL is not set | 371 | # CONFIG_RFKILL is not set |
364 | # CONFIG_NET_9P is not set | 372 | # CONFIG_NET_9P is not set |
365 | 373 | ||
@@ -380,8 +388,9 @@ CONFIG_MTD=y | |||
380 | # CONFIG_MTD_DEBUG is not set | 388 | # CONFIG_MTD_DEBUG is not set |
381 | # CONFIG_MTD_CONCAT is not set | 389 | # CONFIG_MTD_CONCAT is not set |
382 | CONFIG_MTD_PARTITIONS=y | 390 | CONFIG_MTD_PARTITIONS=y |
391 | # CONFIG_MTD_TESTS is not set | ||
383 | # CONFIG_MTD_REDBOOT_PARTS is not set | 392 | # CONFIG_MTD_REDBOOT_PARTS is not set |
384 | # CONFIG_MTD_CMDLINE_PARTS is not set | 393 | CONFIG_MTD_CMDLINE_PARTS=y |
385 | CONFIG_MTD_OF_PARTS=y | 394 | CONFIG_MTD_OF_PARTS=y |
386 | # CONFIG_MTD_AR7_PARTS is not set | 395 | # CONFIG_MTD_AR7_PARTS is not set |
387 | 396 | ||
@@ -396,7 +405,7 @@ CONFIG_MTD_BLOCK=y | |||
396 | # CONFIG_INFTL is not set | 405 | # CONFIG_INFTL is not set |
397 | # CONFIG_RFD_FTL is not set | 406 | # CONFIG_RFD_FTL is not set |
398 | # CONFIG_SSFDC is not set | 407 | # CONFIG_SSFDC is not set |
399 | CONFIG_MTD_OOPS=m | 408 | # CONFIG_MTD_OOPS is not set |
400 | 409 | ||
401 | # | 410 | # |
402 | # RAM/ROM/Flash chip drivers | 411 | # RAM/ROM/Flash chip drivers |
@@ -450,6 +459,7 @@ CONFIG_MTD_NAND=y | |||
450 | CONFIG_MTD_NAND_ECC_SMC=y | 459 | CONFIG_MTD_NAND_ECC_SMC=y |
451 | # CONFIG_MTD_NAND_MUSEUM_IDS is not set | 460 | # CONFIG_MTD_NAND_MUSEUM_IDS is not set |
452 | CONFIG_MTD_NAND_IDS=y | 461 | CONFIG_MTD_NAND_IDS=y |
462 | CONFIG_MTD_NAND_NDFC=y | ||
453 | # CONFIG_MTD_NAND_DISKONCHIP is not set | 463 | # CONFIG_MTD_NAND_DISKONCHIP is not set |
454 | # CONFIG_MTD_NAND_NANDSIM is not set | 464 | # CONFIG_MTD_NAND_NANDSIM is not set |
455 | # CONFIG_MTD_NAND_PLATFORM is not set | 465 | # CONFIG_MTD_NAND_PLATFORM is not set |
@@ -458,6 +468,12 @@ CONFIG_MTD_NAND_IDS=y | |||
458 | # CONFIG_MTD_ONENAND is not set | 468 | # CONFIG_MTD_ONENAND is not set |
459 | 469 | ||
460 | # | 470 | # |
471 | # LPDDR flash memory drivers | ||
472 | # | ||
473 | # CONFIG_MTD_LPDDR is not set | ||
474 | # CONFIG_MTD_QINFO_PROBE is not set | ||
475 | |||
476 | # | ||
461 | # UBI - Unsorted block images | 477 | # UBI - Unsorted block images |
462 | # | 478 | # |
463 | # CONFIG_MTD_UBI is not set | 479 | # CONFIG_MTD_UBI is not set |
@@ -480,7 +496,9 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
480 | # CONFIG_BLK_DEV_HD is not set | 496 | # CONFIG_BLK_DEV_HD is not set |
481 | CONFIG_MISC_DEVICES=y | 497 | CONFIG_MISC_DEVICES=y |
482 | # CONFIG_EEPROM_93CX6 is not set | 498 | # CONFIG_EEPROM_93CX6 is not set |
499 | # CONFIG_ICS932S401 is not set | ||
483 | # CONFIG_ENCLOSURE_SERVICES is not set | 500 | # CONFIG_ENCLOSURE_SERVICES is not set |
501 | # CONFIG_C2PORT is not set | ||
484 | CONFIG_HAVE_IDE=y | 502 | CONFIG_HAVE_IDE=y |
485 | # CONFIG_IDE is not set | 503 | # CONFIG_IDE is not set |
486 | 504 | ||
@@ -562,6 +580,10 @@ CONFIG_IBM_NEW_EMAC_ZMII=y | |||
562 | # CONFIG_IWLWIFI_LEDS is not set | 580 | # CONFIG_IWLWIFI_LEDS is not set |
563 | 581 | ||
564 | # | 582 | # |
583 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
584 | # | ||
585 | |||
586 | # | ||
565 | # USB Network Adapters | 587 | # USB Network Adapters |
566 | # | 588 | # |
567 | # CONFIG_USB_CATC is not set | 589 | # CONFIG_USB_CATC is not set |
@@ -616,9 +638,12 @@ CONFIG_SERIAL_8250_SHARE_IRQ=y | |||
616 | CONFIG_SERIAL_CORE=y | 638 | CONFIG_SERIAL_CORE=y |
617 | CONFIG_SERIAL_CORE_CONSOLE=y | 639 | CONFIG_SERIAL_CORE_CONSOLE=y |
618 | # CONFIG_SERIAL_OF_PLATFORM is not set | 640 | # CONFIG_SERIAL_OF_PLATFORM is not set |
641 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
619 | CONFIG_UNIX98_PTYS=y | 642 | CONFIG_UNIX98_PTYS=y |
643 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
620 | CONFIG_LEGACY_PTYS=y | 644 | CONFIG_LEGACY_PTYS=y |
621 | CONFIG_LEGACY_PTY_COUNT=256 | 645 | CONFIG_LEGACY_PTY_COUNT=256 |
646 | # CONFIG_HVC_UDBG is not set | ||
622 | # CONFIG_IPMI_HANDLER is not set | 647 | # CONFIG_IPMI_HANDLER is not set |
623 | CONFIG_HW_RANDOM=y | 648 | CONFIG_HW_RANDOM=y |
624 | # CONFIG_NVRAM is not set | 649 | # CONFIG_NVRAM is not set |
@@ -638,7 +663,7 @@ CONFIG_I2C_HELPER_AUTO=y | |||
638 | # | 663 | # |
639 | # I2C system bus drivers (mostly embedded / system-on-chip) | 664 | # I2C system bus drivers (mostly embedded / system-on-chip) |
640 | # | 665 | # |
641 | # CONFIG_I2C_IBM_IIC is not set | 666 | CONFIG_I2C_IBM_IIC=y |
642 | # CONFIG_I2C_MPC is not set | 667 | # CONFIG_I2C_MPC is not set |
643 | # CONFIG_I2C_OCORES is not set | 668 | # CONFIG_I2C_OCORES is not set |
644 | # CONFIG_I2C_SIMTEC is not set | 669 | # CONFIG_I2C_SIMTEC is not set |
@@ -660,7 +685,7 @@ CONFIG_I2C_HELPER_AUTO=y | |||
660 | # Miscellaneous I2C Chip support | 685 | # Miscellaneous I2C Chip support |
661 | # | 686 | # |
662 | # CONFIG_DS1682 is not set | 687 | # CONFIG_DS1682 is not set |
663 | # CONFIG_EEPROM_AT24 is not set | 688 | CONFIG_EEPROM_AT24=y |
664 | CONFIG_EEPROM_LEGACY=y | 689 | CONFIG_EEPROM_LEGACY=y |
665 | # CONFIG_SENSORS_PCF8574 is not set | 690 | # CONFIG_SENSORS_PCF8574 is not set |
666 | # CONFIG_PCF8575 is not set | 691 | # CONFIG_PCF8575 is not set |
@@ -679,7 +704,7 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
679 | # CONFIG_POWER_SUPPLY is not set | 704 | # CONFIG_POWER_SUPPLY is not set |
680 | CONFIG_HWMON=y | 705 | CONFIG_HWMON=y |
681 | # CONFIG_HWMON_VID is not set | 706 | # CONFIG_HWMON_VID is not set |
682 | # CONFIG_SENSORS_AD7414 is not set | 707 | CONFIG_SENSORS_AD7414=y |
683 | # CONFIG_SENSORS_AD7418 is not set | 708 | # CONFIG_SENSORS_AD7418 is not set |
684 | # CONFIG_SENSORS_ADM1021 is not set | 709 | # CONFIG_SENSORS_ADM1021 is not set |
685 | # CONFIG_SENSORS_ADM1025 is not set | 710 | # CONFIG_SENSORS_ADM1025 is not set |
@@ -687,8 +712,10 @@ CONFIG_HWMON=y | |||
687 | # CONFIG_SENSORS_ADM1029 is not set | 712 | # CONFIG_SENSORS_ADM1029 is not set |
688 | # CONFIG_SENSORS_ADM1031 is not set | 713 | # CONFIG_SENSORS_ADM1031 is not set |
689 | # CONFIG_SENSORS_ADM9240 is not set | 714 | # CONFIG_SENSORS_ADM9240 is not set |
715 | # CONFIG_SENSORS_ADT7462 is not set | ||
690 | # CONFIG_SENSORS_ADT7470 is not set | 716 | # CONFIG_SENSORS_ADT7470 is not set |
691 | # CONFIG_SENSORS_ADT7473 is not set | 717 | # CONFIG_SENSORS_ADT7473 is not set |
718 | # CONFIG_SENSORS_ADT7475 is not set | ||
692 | # CONFIG_SENSORS_ATXP1 is not set | 719 | # CONFIG_SENSORS_ATXP1 is not set |
693 | # CONFIG_SENSORS_DS1621 is not set | 720 | # CONFIG_SENSORS_DS1621 is not set |
694 | # CONFIG_SENSORS_F71805F is not set | 721 | # CONFIG_SENSORS_F71805F is not set |
@@ -708,6 +735,7 @@ CONFIG_HWMON=y | |||
708 | # CONFIG_SENSORS_LM90 is not set | 735 | # CONFIG_SENSORS_LM90 is not set |
709 | # CONFIG_SENSORS_LM92 is not set | 736 | # CONFIG_SENSORS_LM92 is not set |
710 | # CONFIG_SENSORS_LM93 is not set | 737 | # CONFIG_SENSORS_LM93 is not set |
738 | # CONFIG_SENSORS_LTC4245 is not set | ||
711 | # CONFIG_SENSORS_MAX1619 is not set | 739 | # CONFIG_SENSORS_MAX1619 is not set |
712 | # CONFIG_SENSORS_MAX6650 is not set | 740 | # CONFIG_SENSORS_MAX6650 is not set |
713 | # CONFIG_SENSORS_PC87360 is not set | 741 | # CONFIG_SENSORS_PC87360 is not set |
@@ -729,13 +757,26 @@ CONFIG_HWMON=y | |||
729 | # CONFIG_SENSORS_W83627EHF is not set | 757 | # CONFIG_SENSORS_W83627EHF is not set |
730 | # CONFIG_HWMON_DEBUG_CHIP is not set | 758 | # CONFIG_HWMON_DEBUG_CHIP is not set |
731 | CONFIG_THERMAL=y | 759 | CONFIG_THERMAL=y |
732 | # CONFIG_THERMAL_HWMON is not set | 760 | CONFIG_THERMAL_HWMON=y |
733 | # CONFIG_WATCHDOG is not set | 761 | CONFIG_WATCHDOG=y |
762 | # CONFIG_WATCHDOG_NOWAYOUT is not set | ||
734 | 763 | ||
735 | # | 764 | # |
736 | # Sonics Silicon Backplane | 765 | # Watchdog Device Drivers |
766 | # | ||
767 | # CONFIG_SOFT_WATCHDOG is not set | ||
768 | CONFIG_PIKA_WDT=y | ||
769 | # CONFIG_BOOKE_WDT is not set | ||
770 | |||
771 | # | ||
772 | # USB-based Watchdog Cards | ||
737 | # | 773 | # |
774 | # CONFIG_USBPCWATCHDOG is not set | ||
738 | CONFIG_SSB_POSSIBLE=y | 775 | CONFIG_SSB_POSSIBLE=y |
776 | |||
777 | # | ||
778 | # Sonics Silicon Backplane | ||
779 | # | ||
739 | # CONFIG_SSB is not set | 780 | # CONFIG_SSB is not set |
740 | 781 | ||
741 | # | 782 | # |
@@ -744,9 +785,13 @@ CONFIG_SSB_POSSIBLE=y | |||
744 | # CONFIG_MFD_CORE is not set | 785 | # CONFIG_MFD_CORE is not set |
745 | # CONFIG_MFD_SM501 is not set | 786 | # CONFIG_MFD_SM501 is not set |
746 | # CONFIG_HTC_PASIC3 is not set | 787 | # CONFIG_HTC_PASIC3 is not set |
788 | # CONFIG_TWL4030_CORE is not set | ||
747 | # CONFIG_MFD_TMIO is not set | 789 | # CONFIG_MFD_TMIO is not set |
790 | # CONFIG_PMIC_DA903X is not set | ||
748 | # CONFIG_MFD_WM8400 is not set | 791 | # CONFIG_MFD_WM8400 is not set |
749 | # CONFIG_MFD_WM8350_I2C is not set | 792 | # CONFIG_MFD_WM8350_I2C is not set |
793 | # CONFIG_MFD_PCF50633 is not set | ||
794 | # CONFIG_REGULATOR is not set | ||
750 | 795 | ||
751 | # | 796 | # |
752 | # Multimedia devices | 797 | # Multimedia devices |
@@ -802,6 +847,7 @@ CONFIG_USB_MON=y | |||
802 | # USB Host Controller Drivers | 847 | # USB Host Controller Drivers |
803 | # | 848 | # |
804 | # CONFIG_USB_C67X00_HCD is not set | 849 | # CONFIG_USB_C67X00_HCD is not set |
850 | # CONFIG_USB_OXU210HP_HCD is not set | ||
805 | # CONFIG_USB_ISP116X_HCD is not set | 851 | # CONFIG_USB_ISP116X_HCD is not set |
806 | # CONFIG_USB_ISP1760_HCD is not set | 852 | # CONFIG_USB_ISP1760_HCD is not set |
807 | CONFIG_USB_OHCI_HCD=y | 853 | CONFIG_USB_OHCI_HCD=y |
@@ -824,18 +870,17 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
824 | # CONFIG_USB_TMC is not set | 870 | # CONFIG_USB_TMC is not set |
825 | 871 | ||
826 | # | 872 | # |
827 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 873 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
828 | # | 874 | # |
829 | 875 | ||
830 | # | 876 | # |
831 | # may also be needed; see USB_STORAGE Help for more information | 877 | # see USB_STORAGE Help for more information |
832 | # | 878 | # |
833 | CONFIG_USB_STORAGE=y | 879 | CONFIG_USB_STORAGE=y |
834 | # CONFIG_USB_STORAGE_DEBUG is not set | 880 | # CONFIG_USB_STORAGE_DEBUG is not set |
835 | # CONFIG_USB_STORAGE_DATAFAB is not set | 881 | # CONFIG_USB_STORAGE_DATAFAB is not set |
836 | # CONFIG_USB_STORAGE_FREECOM is not set | 882 | # CONFIG_USB_STORAGE_FREECOM is not set |
837 | # CONFIG_USB_STORAGE_ISD200 is not set | 883 | # CONFIG_USB_STORAGE_ISD200 is not set |
838 | # CONFIG_USB_STORAGE_DPCM is not set | ||
839 | # CONFIG_USB_STORAGE_USBAT is not set | 884 | # CONFIG_USB_STORAGE_USBAT is not set |
840 | # CONFIG_USB_STORAGE_SDDR09 is not set | 885 | # CONFIG_USB_STORAGE_SDDR09 is not set |
841 | # CONFIG_USB_STORAGE_SDDR55 is not set | 886 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -880,14 +925,18 @@ CONFIG_USB_STORAGE=y | |||
880 | # CONFIG_USB_ISIGHTFW is not set | 925 | # CONFIG_USB_ISIGHTFW is not set |
881 | # CONFIG_USB_VST is not set | 926 | # CONFIG_USB_VST is not set |
882 | # CONFIG_USB_GADGET is not set | 927 | # CONFIG_USB_GADGET is not set |
883 | CONFIG_MMC=m | 928 | |
929 | # | ||
930 | # OTG and related infrastructure | ||
931 | # | ||
932 | CONFIG_MMC=y | ||
884 | # CONFIG_MMC_DEBUG is not set | 933 | # CONFIG_MMC_DEBUG is not set |
885 | # CONFIG_MMC_UNSAFE_RESUME is not set | 934 | # CONFIG_MMC_UNSAFE_RESUME is not set |
886 | 935 | ||
887 | # | 936 | # |
888 | # MMC/SD/SDIO Card Drivers | 937 | # MMC/SD/SDIO Card Drivers |
889 | # | 938 | # |
890 | CONFIG_MMC_BLOCK=m | 939 | CONFIG_MMC_BLOCK=y |
891 | CONFIG_MMC_BLOCK_BOUNCE=y | 940 | CONFIG_MMC_BLOCK_BOUNCE=y |
892 | # CONFIG_SDIO_UART is not set | 941 | # CONFIG_SDIO_UART is not set |
893 | # CONFIG_MMC_TEST is not set | 942 | # CONFIG_MMC_TEST is not set |
@@ -898,7 +947,18 @@ CONFIG_MMC_BLOCK_BOUNCE=y | |||
898 | # CONFIG_MMC_SDHCI is not set | 947 | # CONFIG_MMC_SDHCI is not set |
899 | # CONFIG_MMC_WBSD is not set | 948 | # CONFIG_MMC_WBSD is not set |
900 | # CONFIG_MEMSTICK is not set | 949 | # CONFIG_MEMSTICK is not set |
901 | # CONFIG_NEW_LEDS is not set | 950 | CONFIG_NEW_LEDS=y |
951 | CONFIG_LEDS_CLASS=y | ||
952 | |||
953 | # | ||
954 | # LED drivers | ||
955 | # | ||
956 | # CONFIG_LEDS_PCA955X is not set | ||
957 | |||
958 | # | ||
959 | # LED Triggers | ||
960 | # | ||
961 | # CONFIG_LEDS_TRIGGERS is not set | ||
902 | # CONFIG_ACCESSIBILITY is not set | 962 | # CONFIG_ACCESSIBILITY is not set |
903 | # CONFIG_EDAC is not set | 963 | # CONFIG_EDAC is not set |
904 | # CONFIG_RTC_CLASS is not set | 964 | # CONFIG_RTC_CLASS is not set |
@@ -912,14 +972,18 @@ CONFIG_MMC_BLOCK_BOUNCE=y | |||
912 | CONFIG_EXT2_FS=y | 972 | CONFIG_EXT2_FS=y |
913 | # CONFIG_EXT2_FS_XATTR is not set | 973 | # CONFIG_EXT2_FS_XATTR is not set |
914 | # CONFIG_EXT2_FS_XIP is not set | 974 | # CONFIG_EXT2_FS_XIP is not set |
915 | # CONFIG_EXT3_FS is not set | 975 | CONFIG_EXT3_FS=y |
976 | # CONFIG_EXT3_FS_XATTR is not set | ||
916 | # CONFIG_EXT4_FS is not set | 977 | # CONFIG_EXT4_FS is not set |
978 | CONFIG_JBD=y | ||
979 | # CONFIG_JBD_DEBUG is not set | ||
917 | # CONFIG_REISERFS_FS is not set | 980 | # CONFIG_REISERFS_FS is not set |
918 | # CONFIG_JFS_FS is not set | 981 | # CONFIG_JFS_FS is not set |
919 | # CONFIG_FS_POSIX_ACL is not set | 982 | # CONFIG_FS_POSIX_ACL is not set |
920 | CONFIG_FILE_LOCKING=y | 983 | CONFIG_FILE_LOCKING=y |
921 | # CONFIG_XFS_FS is not set | 984 | # CONFIG_XFS_FS is not set |
922 | # CONFIG_OCFS2_FS is not set | 985 | # CONFIG_OCFS2_FS is not set |
986 | # CONFIG_BTRFS_FS is not set | ||
923 | CONFIG_DNOTIFY=y | 987 | CONFIG_DNOTIFY=y |
924 | CONFIG_INOTIFY=y | 988 | CONFIG_INOTIFY=y |
925 | CONFIG_INOTIFY_USER=y | 989 | CONFIG_INOTIFY_USER=y |
@@ -952,13 +1016,11 @@ CONFIG_PROC_KCORE=y | |||
952 | CONFIG_PROC_SYSCTL=y | 1016 | CONFIG_PROC_SYSCTL=y |
953 | CONFIG_PROC_PAGE_MONITOR=y | 1017 | CONFIG_PROC_PAGE_MONITOR=y |
954 | CONFIG_SYSFS=y | 1018 | CONFIG_SYSFS=y |
955 | # CONFIG_TMPFS is not set | 1019 | CONFIG_TMPFS=y |
1020 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
956 | # CONFIG_HUGETLB_PAGE is not set | 1021 | # CONFIG_HUGETLB_PAGE is not set |
957 | # CONFIG_CONFIGFS_FS is not set | 1022 | # CONFIG_CONFIGFS_FS is not set |
958 | 1023 | CONFIG_MISC_FILESYSTEMS=y | |
959 | # | ||
960 | # Miscellaneous filesystems | ||
961 | # | ||
962 | # CONFIG_ADFS_FS is not set | 1024 | # CONFIG_ADFS_FS is not set |
963 | # CONFIG_AFFS_FS is not set | 1025 | # CONFIG_AFFS_FS is not set |
964 | # CONFIG_HFS_FS is not set | 1026 | # CONFIG_HFS_FS is not set |
@@ -978,6 +1040,7 @@ CONFIG_JFFS2_ZLIB=y | |||
978 | CONFIG_JFFS2_RTIME=y | 1040 | CONFIG_JFFS2_RTIME=y |
979 | # CONFIG_JFFS2_RUBIN is not set | 1041 | # CONFIG_JFFS2_RUBIN is not set |
980 | CONFIG_CRAMFS=y | 1042 | CONFIG_CRAMFS=y |
1043 | # CONFIG_SQUASHFS is not set | ||
981 | # CONFIG_VXFS_FS is not set | 1044 | # CONFIG_VXFS_FS is not set |
982 | # CONFIG_MINIX_FS is not set | 1045 | # CONFIG_MINIX_FS is not set |
983 | # CONFIG_OMFS_FS is not set | 1046 | # CONFIG_OMFS_FS is not set |
@@ -1057,6 +1120,7 @@ CONFIG_NLS_UTF8=y | |||
1057 | # Library routines | 1120 | # Library routines |
1058 | # | 1121 | # |
1059 | CONFIG_BITREVERSE=y | 1122 | CONFIG_BITREVERSE=y |
1123 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1060 | CONFIG_CRC_CCITT=y | 1124 | CONFIG_CRC_CCITT=y |
1061 | # CONFIG_CRC16 is not set | 1125 | # CONFIG_CRC16 is not set |
1062 | CONFIG_CRC_T10DIF=y | 1126 | CONFIG_CRC_T10DIF=y |
@@ -1107,6 +1171,7 @@ CONFIG_DEBUG_INFO=y | |||
1107 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1171 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1108 | # CONFIG_DEBUG_LIST is not set | 1172 | # CONFIG_DEBUG_LIST is not set |
1109 | # CONFIG_DEBUG_SG is not set | 1173 | # CONFIG_DEBUG_SG is not set |
1174 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1110 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1175 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1111 | # CONFIG_RCU_TORTURE_TEST is not set | 1176 | # CONFIG_RCU_TORTURE_TEST is not set |
1112 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1177 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1115,18 +1180,24 @@ CONFIG_DEBUG_INFO=y | |||
1115 | # CONFIG_FAULT_INJECTION is not set | 1180 | # CONFIG_FAULT_INJECTION is not set |
1116 | # CONFIG_LATENCYTOP is not set | 1181 | # CONFIG_LATENCYTOP is not set |
1117 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1182 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1118 | CONFIG_NOP_TRACER=y | 1183 | CONFIG_HAVE_FUNCTION_TRACER=y |
1119 | CONFIG_HAVE_FTRACE=y | ||
1120 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1184 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
1121 | # CONFIG_FTRACE is not set | 1185 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
1186 | |||
1187 | # | ||
1188 | # Tracers | ||
1189 | # | ||
1190 | # CONFIG_FUNCTION_TRACER is not set | ||
1122 | # CONFIG_SCHED_TRACER is not set | 1191 | # CONFIG_SCHED_TRACER is not set |
1123 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1192 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1124 | # CONFIG_BOOT_TRACER is not set | 1193 | # CONFIG_BOOT_TRACER is not set |
1194 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1125 | # CONFIG_STACK_TRACER is not set | 1195 | # CONFIG_STACK_TRACER is not set |
1126 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1196 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1127 | # CONFIG_SAMPLES is not set | 1197 | # CONFIG_SAMPLES is not set |
1128 | CONFIG_HAVE_ARCH_KGDB=y | 1198 | CONFIG_HAVE_ARCH_KGDB=y |
1129 | # CONFIG_KGDB is not set | 1199 | # CONFIG_KGDB is not set |
1200 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1130 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1201 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1131 | # CONFIG_DEBUG_STACK_USAGE is not set | 1202 | # CONFIG_DEBUG_STACK_USAGE is not set |
1132 | # CONFIG_DEBUG_PAGEALLOC is not set | 1203 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1134,7 +1205,7 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
1134 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1205 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
1135 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1206 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
1136 | # CONFIG_XMON is not set | 1207 | # CONFIG_XMON is not set |
1137 | # CONFIG_IRQSTACKS is not set | 1208 | CONFIG_IRQSTACKS=y |
1138 | # CONFIG_VIRQ_DEBUG is not set | 1209 | # CONFIG_VIRQ_DEBUG is not set |
1139 | CONFIG_BDI_SWITCH=y | 1210 | CONFIG_BDI_SWITCH=y |
1140 | # CONFIG_PPC_EARLY_DEBUG is not set | 1211 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1153,6 +1224,7 @@ CONFIG_CRYPTO=y | |||
1153 | # | 1224 | # |
1154 | # CONFIG_CRYPTO_FIPS is not set | 1225 | # CONFIG_CRYPTO_FIPS is not set |
1155 | # CONFIG_CRYPTO_MANAGER is not set | 1226 | # CONFIG_CRYPTO_MANAGER is not set |
1227 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
1156 | # CONFIG_CRYPTO_GF128MUL is not set | 1228 | # CONFIG_CRYPTO_GF128MUL is not set |
1157 | # CONFIG_CRYPTO_NULL is not set | 1229 | # CONFIG_CRYPTO_NULL is not set |
1158 | # CONFIG_CRYPTO_CRYPTD is not set | 1230 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/83xx/asp8347_defconfig b/arch/powerpc/configs/83xx/asp8347_defconfig index b3d9d1a8dfaf..fc4a39a40e72 100644 --- a/arch/powerpc/configs/83xx/asp8347_defconfig +++ b/arch/powerpc/configs/83xx/asp8347_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:49 2008 | 4 | # Mon Jan 26 15:35:47 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -76,12 +76,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
76 | # CONFIG_AUDIT is not set | 76 | # CONFIG_AUDIT is not set |
77 | # CONFIG_IKCONFIG is not set | 77 | # CONFIG_IKCONFIG is not set |
78 | CONFIG_LOG_BUF_SHIFT=14 | 78 | CONFIG_LOG_BUF_SHIFT=14 |
79 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_GROUP_SCHED=y | 79 | CONFIG_GROUP_SCHED=y |
81 | # CONFIG_FAIR_GROUP_SCHED is not set | 80 | # CONFIG_FAIR_GROUP_SCHED is not set |
82 | # CONFIG_RT_GROUP_SCHED is not set | 81 | # CONFIG_RT_GROUP_SCHED is not set |
83 | CONFIG_USER_SCHED=y | 82 | CONFIG_USER_SCHED=y |
84 | # CONFIG_CGROUP_SCHED is not set | 83 | # CONFIG_CGROUP_SCHED is not set |
84 | # CONFIG_CGROUPS is not set | ||
85 | CONFIG_SYSFS_DEPRECATED=y | 85 | CONFIG_SYSFS_DEPRECATED=y |
86 | CONFIG_SYSFS_DEPRECATED_V2=y | 86 | CONFIG_SYSFS_DEPRECATED_V2=y |
87 | # CONFIG_RELAY is not set | 87 | # CONFIG_RELAY is not set |
@@ -114,7 +114,6 @@ CONFIG_SLUB_DEBUG=y | |||
114 | CONFIG_SLUB=y | 114 | CONFIG_SLUB=y |
115 | # CONFIG_SLOB is not set | 115 | # CONFIG_SLOB is not set |
116 | # CONFIG_PROFILING is not set | 116 | # CONFIG_PROFILING is not set |
117 | # CONFIG_MARKERS is not set | ||
118 | CONFIG_HAVE_OPROFILE=y | 117 | CONFIG_HAVE_OPROFILE=y |
119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
120 | CONFIG_HAVE_IOREMAP_PROT=y | 119 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -124,7 +123,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
125 | CONFIG_SLABINFO=y | 124 | CONFIG_SLABINFO=y |
126 | CONFIG_RT_MUTEXES=y | 125 | CONFIG_RT_MUTEXES=y |
127 | # CONFIG_TINY_SHMEM is not set | ||
128 | CONFIG_BASE_SMALL=0 | 126 | CONFIG_BASE_SMALL=0 |
129 | CONFIG_MODULES=y | 127 | CONFIG_MODULES=y |
130 | # CONFIG_MODULE_FORCE_LOAD is not set | 128 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -132,11 +130,9 @@ CONFIG_MODULE_UNLOAD=y | |||
132 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 130 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
133 | # CONFIG_MODVERSIONS is not set | 131 | # CONFIG_MODVERSIONS is not set |
134 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 132 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
135 | CONFIG_KMOD=y | ||
136 | CONFIG_BLOCK=y | 133 | CONFIG_BLOCK=y |
137 | # CONFIG_LBD is not set | 134 | # CONFIG_LBD is not set |
138 | # CONFIG_BLK_DEV_IO_TRACE is not set | 135 | # CONFIG_BLK_DEV_IO_TRACE is not set |
139 | # CONFIG_LSF is not set | ||
140 | # CONFIG_BLK_DEV_BSG is not set | 136 | # CONFIG_BLK_DEV_BSG is not set |
141 | # CONFIG_BLK_DEV_INTEGRITY is not set | 137 | # CONFIG_BLK_DEV_INTEGRITY is not set |
142 | 138 | ||
@@ -153,6 +149,10 @@ CONFIG_DEFAULT_AS=y | |||
153 | # CONFIG_DEFAULT_NOOP is not set | 149 | # CONFIG_DEFAULT_NOOP is not set |
154 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
155 | CONFIG_CLASSIC_RCU=y | 151 | CONFIG_CLASSIC_RCU=y |
152 | # CONFIG_TREE_RCU is not set | ||
153 | # CONFIG_PREEMPT_RCU is not set | ||
154 | # CONFIG_TREE_RCU_TRACE is not set | ||
155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
156 | # CONFIG_FREEZER is not set | 156 | # CONFIG_FREEZER is not set |
157 | 157 | ||
158 | # | 158 | # |
@@ -199,6 +199,8 @@ CONFIG_IPIC=y | |||
199 | # CONFIG_QUICC_ENGINE is not set | 199 | # CONFIG_QUICC_ENGINE is not set |
200 | # CONFIG_FSL_ULI1575 is not set | 200 | # CONFIG_FSL_ULI1575 is not set |
201 | # CONFIG_MPC8xxx_GPIO is not set | 201 | # CONFIG_MPC8xxx_GPIO is not set |
202 | # CONFIG_SIMPLE_GPIO is not set | ||
203 | # CONFIG_MCU_MPC8349EMITX is not set | ||
202 | 204 | ||
203 | # | 205 | # |
204 | # Kernel options | 206 | # Kernel options |
@@ -226,6 +228,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
226 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 228 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
227 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 229 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
228 | # CONFIG_KEXEC is not set | 230 | # CONFIG_KEXEC is not set |
231 | # CONFIG_CRASH_DUMP is not set | ||
229 | CONFIG_ARCH_FLATMEM_ENABLE=y | 232 | CONFIG_ARCH_FLATMEM_ENABLE=y |
230 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 233 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
231 | CONFIG_SELECT_MEMORY_MODEL=y | 234 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -237,12 +240,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
237 | CONFIG_PAGEFLAGS_EXTENDED=y | 240 | CONFIG_PAGEFLAGS_EXTENDED=y |
238 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 241 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
239 | CONFIG_MIGRATION=y | 242 | CONFIG_MIGRATION=y |
240 | # CONFIG_RESOURCES_64BIT is not set | ||
241 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 243 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
242 | CONFIG_ZONE_DMA_FLAG=1 | 244 | CONFIG_ZONE_DMA_FLAG=1 |
243 | CONFIG_BOUNCE=y | 245 | CONFIG_BOUNCE=y |
244 | CONFIG_VIRT_TO_BUS=y | 246 | CONFIG_VIRT_TO_BUS=y |
245 | CONFIG_UNEVICTABLE_LRU=y | 247 | CONFIG_UNEVICTABLE_LRU=y |
248 | CONFIG_PPC_4K_PAGES=y | ||
249 | # CONFIG_PPC_16K_PAGES is not set | ||
250 | # CONFIG_PPC_64K_PAGES is not set | ||
246 | CONFIG_FORCE_MAX_ZONEORDER=11 | 251 | CONFIG_FORCE_MAX_ZONEORDER=11 |
247 | CONFIG_PROC_DEVICETREE=y | 252 | CONFIG_PROC_DEVICETREE=y |
248 | # CONFIG_CMDLINE_BOOL is not set | 253 | # CONFIG_CMDLINE_BOOL is not set |
@@ -267,6 +272,7 @@ CONFIG_PCI_SYSCALL=y | |||
267 | CONFIG_ARCH_SUPPORTS_MSI=y | 272 | CONFIG_ARCH_SUPPORTS_MSI=y |
268 | # CONFIG_PCI_MSI is not set | 273 | # CONFIG_PCI_MSI is not set |
269 | # CONFIG_PCI_LEGACY is not set | 274 | # CONFIG_PCI_LEGACY is not set |
275 | # CONFIG_PCI_STUB is not set | ||
270 | # CONFIG_PCCARD is not set | 276 | # CONFIG_PCCARD is not set |
271 | # CONFIG_HOTPLUG_PCI is not set | 277 | # CONFIG_HOTPLUG_PCI is not set |
272 | # CONFIG_HAS_RAPIDIO is not set | 278 | # CONFIG_HAS_RAPIDIO is not set |
@@ -289,6 +295,7 @@ CONFIG_NET=y | |||
289 | # | 295 | # |
290 | # Networking options | 296 | # Networking options |
291 | # | 297 | # |
298 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
292 | CONFIG_PACKET=y | 299 | CONFIG_PACKET=y |
293 | # CONFIG_PACKET_MMAP is not set | 300 | # CONFIG_PACKET_MMAP is not set |
294 | CONFIG_UNIX=y | 301 | CONFIG_UNIX=y |
@@ -345,6 +352,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
345 | # CONFIG_ECONET is not set | 352 | # CONFIG_ECONET is not set |
346 | # CONFIG_WAN_ROUTER is not set | 353 | # CONFIG_WAN_ROUTER is not set |
347 | # CONFIG_NET_SCHED is not set | 354 | # CONFIG_NET_SCHED is not set |
355 | # CONFIG_DCB is not set | ||
348 | 356 | ||
349 | # | 357 | # |
350 | # Network testing | 358 | # Network testing |
@@ -360,8 +368,9 @@ CONFIG_WIRELESS=y | |||
360 | # CONFIG_CFG80211 is not set | 368 | # CONFIG_CFG80211 is not set |
361 | CONFIG_WIRELESS_OLD_REGULATORY=y | 369 | CONFIG_WIRELESS_OLD_REGULATORY=y |
362 | # CONFIG_WIRELESS_EXT is not set | 370 | # CONFIG_WIRELESS_EXT is not set |
371 | # CONFIG_LIB80211 is not set | ||
363 | # CONFIG_MAC80211 is not set | 372 | # CONFIG_MAC80211 is not set |
364 | # CONFIG_IEEE80211 is not set | 373 | # CONFIG_WIMAX is not set |
365 | # CONFIG_RFKILL is not set | 374 | # CONFIG_RFKILL is not set |
366 | # CONFIG_NET_9P is not set | 375 | # CONFIG_NET_9P is not set |
367 | 376 | ||
@@ -382,6 +391,7 @@ CONFIG_MTD=y | |||
382 | # CONFIG_MTD_DEBUG is not set | 391 | # CONFIG_MTD_DEBUG is not set |
383 | # CONFIG_MTD_CONCAT is not set | 392 | # CONFIG_MTD_CONCAT is not set |
384 | CONFIG_MTD_PARTITIONS=y | 393 | CONFIG_MTD_PARTITIONS=y |
394 | # CONFIG_MTD_TESTS is not set | ||
385 | CONFIG_MTD_REDBOOT_PARTS=y | 395 | CONFIG_MTD_REDBOOT_PARTS=y |
386 | CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 | 396 | CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 |
387 | CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED=y | 397 | CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED=y |
@@ -456,6 +466,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
456 | # CONFIG_MTD_ONENAND is not set | 466 | # CONFIG_MTD_ONENAND is not set |
457 | 467 | ||
458 | # | 468 | # |
469 | # LPDDR flash memory drivers | ||
470 | # | ||
471 | # CONFIG_MTD_LPDDR is not set | ||
472 | # CONFIG_MTD_QINFO_PROBE is not set | ||
473 | |||
474 | # | ||
459 | # UBI - Unsorted block images | 475 | # UBI - Unsorted block images |
460 | # | 476 | # |
461 | # CONFIG_MTD_UBI is not set | 477 | # CONFIG_MTD_UBI is not set |
@@ -486,8 +502,10 @@ CONFIG_MISC_DEVICES=y | |||
486 | # CONFIG_EEPROM_93CX6 is not set | 502 | # CONFIG_EEPROM_93CX6 is not set |
487 | # CONFIG_SGI_IOC4 is not set | 503 | # CONFIG_SGI_IOC4 is not set |
488 | # CONFIG_TIFM_CORE is not set | 504 | # CONFIG_TIFM_CORE is not set |
505 | # CONFIG_ICS932S401 is not set | ||
489 | # CONFIG_ENCLOSURE_SERVICES is not set | 506 | # CONFIG_ENCLOSURE_SERVICES is not set |
490 | # CONFIG_HP_ILO is not set | 507 | # CONFIG_HP_ILO is not set |
508 | # CONFIG_C2PORT is not set | ||
491 | CONFIG_HAVE_IDE=y | 509 | CONFIG_HAVE_IDE=y |
492 | # CONFIG_IDE is not set | 510 | # CONFIG_IDE is not set |
493 | 511 | ||
@@ -536,6 +554,9 @@ CONFIG_PHYLIB=y | |||
536 | # CONFIG_BROADCOM_PHY is not set | 554 | # CONFIG_BROADCOM_PHY is not set |
537 | # CONFIG_ICPLUS_PHY is not set | 555 | # CONFIG_ICPLUS_PHY is not set |
538 | # CONFIG_REALTEK_PHY is not set | 556 | # CONFIG_REALTEK_PHY is not set |
557 | # CONFIG_NATIONAL_PHY is not set | ||
558 | # CONFIG_STE10XP is not set | ||
559 | # CONFIG_LSI_ET1011C_PHY is not set | ||
539 | # CONFIG_FIXED_PHY is not set | 560 | # CONFIG_FIXED_PHY is not set |
540 | # CONFIG_MDIO_BITBANG is not set | 561 | # CONFIG_MDIO_BITBANG is not set |
541 | CONFIG_NET_ETHERNET=y | 562 | CONFIG_NET_ETHERNET=y |
@@ -590,6 +611,10 @@ CONFIG_GIANFAR=y | |||
590 | # CONFIG_IWLWIFI_LEDS is not set | 611 | # CONFIG_IWLWIFI_LEDS is not set |
591 | 612 | ||
592 | # | 613 | # |
614 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
615 | # | ||
616 | |||
617 | # | ||
593 | # USB Network Adapters | 618 | # USB Network Adapters |
594 | # | 619 | # |
595 | # CONFIG_USB_CATC is not set | 620 | # CONFIG_USB_CATC is not set |
@@ -666,8 +691,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
666 | # CONFIG_SERIAL_JSM is not set | 691 | # CONFIG_SERIAL_JSM is not set |
667 | # CONFIG_SERIAL_OF_PLATFORM is not set | 692 | # CONFIG_SERIAL_OF_PLATFORM is not set |
668 | CONFIG_UNIX98_PTYS=y | 693 | CONFIG_UNIX98_PTYS=y |
694 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
669 | CONFIG_LEGACY_PTYS=y | 695 | CONFIG_LEGACY_PTYS=y |
670 | CONFIG_LEGACY_PTY_COUNT=256 | 696 | CONFIG_LEGACY_PTY_COUNT=256 |
697 | # CONFIG_HVC_UDBG is not set | ||
671 | # CONFIG_IPMI_HANDLER is not set | 698 | # CONFIG_IPMI_HANDLER is not set |
672 | # CONFIG_HW_RANDOM is not set | 699 | # CONFIG_HW_RANDOM is not set |
673 | # CONFIG_NVRAM is not set | 700 | # CONFIG_NVRAM is not set |
@@ -740,7 +767,6 @@ CONFIG_I2C_MPC=y | |||
740 | # CONFIG_SENSORS_PCF8591 is not set | 767 | # CONFIG_SENSORS_PCF8591 is not set |
741 | # CONFIG_SENSORS_MAX6875 is not set | 768 | # CONFIG_SENSORS_MAX6875 is not set |
742 | # CONFIG_SENSORS_TSL2550 is not set | 769 | # CONFIG_SENSORS_TSL2550 is not set |
743 | # CONFIG_MCU_MPC8349EMITX is not set | ||
744 | # CONFIG_I2C_DEBUG_CORE is not set | 770 | # CONFIG_I2C_DEBUG_CORE is not set |
745 | # CONFIG_I2C_DEBUG_ALGO is not set | 771 | # CONFIG_I2C_DEBUG_ALGO is not set |
746 | # CONFIG_I2C_DEBUG_BUS is not set | 772 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -760,8 +786,10 @@ CONFIG_HWMON=y | |||
760 | # CONFIG_SENSORS_ADM1029 is not set | 786 | # CONFIG_SENSORS_ADM1029 is not set |
761 | # CONFIG_SENSORS_ADM1031 is not set | 787 | # CONFIG_SENSORS_ADM1031 is not set |
762 | # CONFIG_SENSORS_ADM9240 is not set | 788 | # CONFIG_SENSORS_ADM9240 is not set |
789 | # CONFIG_SENSORS_ADT7462 is not set | ||
763 | # CONFIG_SENSORS_ADT7470 is not set | 790 | # CONFIG_SENSORS_ADT7470 is not set |
764 | # CONFIG_SENSORS_ADT7473 is not set | 791 | # CONFIG_SENSORS_ADT7473 is not set |
792 | # CONFIG_SENSORS_ADT7475 is not set | ||
765 | # CONFIG_SENSORS_ATXP1 is not set | 793 | # CONFIG_SENSORS_ATXP1 is not set |
766 | # CONFIG_SENSORS_DS1621 is not set | 794 | # CONFIG_SENSORS_DS1621 is not set |
767 | # CONFIG_SENSORS_I5K_AMB is not set | 795 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -782,6 +810,7 @@ CONFIG_HWMON=y | |||
782 | # CONFIG_SENSORS_LM90 is not set | 810 | # CONFIG_SENSORS_LM90 is not set |
783 | # CONFIG_SENSORS_LM92 is not set | 811 | # CONFIG_SENSORS_LM92 is not set |
784 | # CONFIG_SENSORS_LM93 is not set | 812 | # CONFIG_SENSORS_LM93 is not set |
813 | # CONFIG_SENSORS_LTC4245 is not set | ||
785 | # CONFIG_SENSORS_MAX1619 is not set | 814 | # CONFIG_SENSORS_MAX1619 is not set |
786 | # CONFIG_SENSORS_MAX6650 is not set | 815 | # CONFIG_SENSORS_MAX6650 is not set |
787 | # CONFIG_SENSORS_PC87360 is not set | 816 | # CONFIG_SENSORS_PC87360 is not set |
@@ -827,11 +856,11 @@ CONFIG_WATCHDOG=y | |||
827 | # USB-based Watchdog Cards | 856 | # USB-based Watchdog Cards |
828 | # | 857 | # |
829 | # CONFIG_USBPCWATCHDOG is not set | 858 | # CONFIG_USBPCWATCHDOG is not set |
859 | CONFIG_SSB_POSSIBLE=y | ||
830 | 860 | ||
831 | # | 861 | # |
832 | # Sonics Silicon Backplane | 862 | # Sonics Silicon Backplane |
833 | # | 863 | # |
834 | CONFIG_SSB_POSSIBLE=y | ||
835 | # CONFIG_SSB is not set | 864 | # CONFIG_SSB is not set |
836 | 865 | ||
837 | # | 866 | # |
@@ -840,18 +869,13 @@ CONFIG_SSB_POSSIBLE=y | |||
840 | # CONFIG_MFD_CORE is not set | 869 | # CONFIG_MFD_CORE is not set |
841 | # CONFIG_MFD_SM501 is not set | 870 | # CONFIG_MFD_SM501 is not set |
842 | # CONFIG_HTC_PASIC3 is not set | 871 | # CONFIG_HTC_PASIC3 is not set |
872 | # CONFIG_TWL4030_CORE is not set | ||
843 | # CONFIG_MFD_TMIO is not set | 873 | # CONFIG_MFD_TMIO is not set |
844 | # CONFIG_PMIC_DA903X is not set | 874 | # CONFIG_PMIC_DA903X is not set |
845 | # CONFIG_MFD_WM8400 is not set | 875 | # CONFIG_MFD_WM8400 is not set |
846 | # CONFIG_MFD_WM8350_I2C is not set | 876 | # CONFIG_MFD_WM8350_I2C is not set |
847 | 877 | # CONFIG_MFD_PCF50633 is not set | |
848 | # | ||
849 | # Voltage and Current regulators | ||
850 | # | ||
851 | # CONFIG_REGULATOR is not set | 878 | # CONFIG_REGULATOR is not set |
852 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
853 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
854 | # CONFIG_REGULATOR_BQ24022 is not set | ||
855 | 879 | ||
856 | # | 880 | # |
857 | # Multimedia devices | 881 | # Multimedia devices |
@@ -916,6 +940,7 @@ CONFIG_USB_EHCI_ROOT_HUB_TT=y | |||
916 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 940 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
917 | CONFIG_USB_EHCI_FSL=y | 941 | CONFIG_USB_EHCI_FSL=y |
918 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 942 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
943 | # CONFIG_USB_OXU210HP_HCD is not set | ||
919 | # CONFIG_USB_ISP116X_HCD is not set | 944 | # CONFIG_USB_ISP116X_HCD is not set |
920 | # CONFIG_USB_ISP1760_HCD is not set | 945 | # CONFIG_USB_ISP1760_HCD is not set |
921 | # CONFIG_USB_OHCI_HCD is not set | 946 | # CONFIG_USB_OHCI_HCD is not set |
@@ -934,11 +959,11 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
934 | # CONFIG_USB_TMC is not set | 959 | # CONFIG_USB_TMC is not set |
935 | 960 | ||
936 | # | 961 | # |
937 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 962 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
938 | # | 963 | # |
939 | 964 | ||
940 | # | 965 | # |
941 | # may also be needed; see USB_STORAGE Help for more information | 966 | # see USB_STORAGE Help for more information |
942 | # | 967 | # |
943 | # CONFIG_USB_LIBUSUAL is not set | 968 | # CONFIG_USB_LIBUSUAL is not set |
944 | 969 | ||
@@ -977,6 +1002,10 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
977 | # CONFIG_USB_ISIGHTFW is not set | 1002 | # CONFIG_USB_ISIGHTFW is not set |
978 | # CONFIG_USB_VST is not set | 1003 | # CONFIG_USB_VST is not set |
979 | # CONFIG_USB_GADGET is not set | 1004 | # CONFIG_USB_GADGET is not set |
1005 | |||
1006 | # | ||
1007 | # OTG and related infrastructure | ||
1008 | # | ||
980 | # CONFIG_UWB is not set | 1009 | # CONFIG_UWB is not set |
981 | # CONFIG_MMC is not set | 1010 | # CONFIG_MMC is not set |
982 | # CONFIG_MEMSTICK is not set | 1011 | # CONFIG_MEMSTICK is not set |
@@ -1014,6 +1043,7 @@ CONFIG_RTC_DRV_DS1374=y | |||
1014 | # CONFIG_RTC_DRV_M41T80 is not set | 1043 | # CONFIG_RTC_DRV_M41T80 is not set |
1015 | # CONFIG_RTC_DRV_S35390A is not set | 1044 | # CONFIG_RTC_DRV_S35390A is not set |
1016 | # CONFIG_RTC_DRV_FM3130 is not set | 1045 | # CONFIG_RTC_DRV_FM3130 is not set |
1046 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1017 | 1047 | ||
1018 | # | 1048 | # |
1019 | # SPI RTC drivers | 1049 | # SPI RTC drivers |
@@ -1061,6 +1091,7 @@ CONFIG_FS_MBCACHE=y | |||
1061 | CONFIG_FILE_LOCKING=y | 1091 | CONFIG_FILE_LOCKING=y |
1062 | # CONFIG_XFS_FS is not set | 1092 | # CONFIG_XFS_FS is not set |
1063 | # CONFIG_OCFS2_FS is not set | 1093 | # CONFIG_OCFS2_FS is not set |
1094 | # CONFIG_BTRFS_FS is not set | ||
1064 | CONFIG_DNOTIFY=y | 1095 | CONFIG_DNOTIFY=y |
1065 | CONFIG_INOTIFY=y | 1096 | CONFIG_INOTIFY=y |
1066 | CONFIG_INOTIFY_USER=y | 1097 | CONFIG_INOTIFY_USER=y |
@@ -1094,10 +1125,7 @@ CONFIG_TMPFS=y | |||
1094 | # CONFIG_TMPFS_POSIX_ACL is not set | 1125 | # CONFIG_TMPFS_POSIX_ACL is not set |
1095 | # CONFIG_HUGETLB_PAGE is not set | 1126 | # CONFIG_HUGETLB_PAGE is not set |
1096 | # CONFIG_CONFIGFS_FS is not set | 1127 | # CONFIG_CONFIGFS_FS is not set |
1097 | 1128 | CONFIG_MISC_FILESYSTEMS=y | |
1098 | # | ||
1099 | # Miscellaneous filesystems | ||
1100 | # | ||
1101 | # CONFIG_ADFS_FS is not set | 1129 | # CONFIG_ADFS_FS is not set |
1102 | # CONFIG_AFFS_FS is not set | 1130 | # CONFIG_AFFS_FS is not set |
1103 | # CONFIG_HFS_FS is not set | 1131 | # CONFIG_HFS_FS is not set |
@@ -1117,6 +1145,7 @@ CONFIG_JFFS2_ZLIB=y | |||
1117 | CONFIG_JFFS2_RTIME=y | 1145 | CONFIG_JFFS2_RTIME=y |
1118 | # CONFIG_JFFS2_RUBIN is not set | 1146 | # CONFIG_JFFS2_RUBIN is not set |
1119 | # CONFIG_CRAMFS is not set | 1147 | # CONFIG_CRAMFS is not set |
1148 | # CONFIG_SQUASHFS is not set | ||
1120 | # CONFIG_VXFS_FS is not set | 1149 | # CONFIG_VXFS_FS is not set |
1121 | # CONFIG_MINIX_FS is not set | 1150 | # CONFIG_MINIX_FS is not set |
1122 | # CONFIG_OMFS_FS is not set | 1151 | # CONFIG_OMFS_FS is not set |
@@ -1209,6 +1238,7 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
1209 | # Library routines | 1238 | # Library routines |
1210 | # | 1239 | # |
1211 | CONFIG_BITREVERSE=y | 1240 | CONFIG_BITREVERSE=y |
1241 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1212 | # CONFIG_CRC_CCITT is not set | 1242 | # CONFIG_CRC_CCITT is not set |
1213 | # CONFIG_CRC16 is not set | 1243 | # CONFIG_CRC16 is not set |
1214 | # CONFIG_CRC_T10DIF is not set | 1244 | # CONFIG_CRC_T10DIF is not set |
@@ -1244,6 +1274,8 @@ CONFIG_FRAME_WARN=1024 | |||
1244 | # CONFIG_LATENCYTOP is not set | 1274 | # CONFIG_LATENCYTOP is not set |
1245 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | 1275 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set |
1246 | CONFIG_HAVE_FUNCTION_TRACER=y | 1276 | CONFIG_HAVE_FUNCTION_TRACER=y |
1277 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1278 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1247 | 1279 | ||
1248 | # | 1280 | # |
1249 | # Tracers | 1281 | # Tracers |
@@ -1251,6 +1283,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1251 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1283 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1252 | # CONFIG_SAMPLES is not set | 1284 | # CONFIG_SAMPLES is not set |
1253 | CONFIG_HAVE_ARCH_KGDB=y | 1285 | CONFIG_HAVE_ARCH_KGDB=y |
1286 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1254 | # CONFIG_IRQSTACKS is not set | 1287 | # CONFIG_IRQSTACKS is not set |
1255 | # CONFIG_BOOTX_TEXT is not set | 1288 | # CONFIG_BOOTX_TEXT is not set |
1256 | # CONFIG_PPC_EARLY_DEBUG is not set | 1289 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1269,11 +1302,15 @@ CONFIG_CRYPTO=y | |||
1269 | # | 1302 | # |
1270 | # CONFIG_CRYPTO_FIPS is not set | 1303 | # CONFIG_CRYPTO_FIPS is not set |
1271 | CONFIG_CRYPTO_ALGAPI=y | 1304 | CONFIG_CRYPTO_ALGAPI=y |
1272 | CONFIG_CRYPTO_AEAD=y | 1305 | CONFIG_CRYPTO_ALGAPI2=y |
1306 | CONFIG_CRYPTO_AEAD2=y | ||
1273 | CONFIG_CRYPTO_BLKCIPHER=y | 1307 | CONFIG_CRYPTO_BLKCIPHER=y |
1308 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1274 | CONFIG_CRYPTO_HASH=y | 1309 | CONFIG_CRYPTO_HASH=y |
1275 | CONFIG_CRYPTO_RNG=y | 1310 | CONFIG_CRYPTO_HASH2=y |
1311 | CONFIG_CRYPTO_RNG2=y | ||
1276 | CONFIG_CRYPTO_MANAGER=y | 1312 | CONFIG_CRYPTO_MANAGER=y |
1313 | CONFIG_CRYPTO_MANAGER2=y | ||
1277 | # CONFIG_CRYPTO_GF128MUL is not set | 1314 | # CONFIG_CRYPTO_GF128MUL is not set |
1278 | # CONFIG_CRYPTO_NULL is not set | 1315 | # CONFIG_CRYPTO_NULL is not set |
1279 | # CONFIG_CRYPTO_CRYPTD is not set | 1316 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/83xx/mpc8313_rdb_defconfig b/arch/powerpc/configs/83xx/mpc8313_rdb_defconfig index 6293bb99b52e..9e47ae957e2e 100644 --- a/arch/powerpc/configs/83xx/mpc8313_rdb_defconfig +++ b/arch/powerpc/configs/83xx/mpc8313_rdb_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:50 2008 | 4 | # Mon Jan 26 15:35:48 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -75,12 +75,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 79 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -113,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
113 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
114 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
119 | CONFIG_HAVE_IOREMAP_PROT=y | 118 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -123,7 +122,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
124 | CONFIG_SLABINFO=y | 123 | CONFIG_SLABINFO=y |
125 | CONFIG_RT_MUTEXES=y | 124 | CONFIG_RT_MUTEXES=y |
126 | # CONFIG_TINY_SHMEM is not set | ||
127 | CONFIG_BASE_SMALL=0 | 125 | CONFIG_BASE_SMALL=0 |
128 | CONFIG_MODULES=y | 126 | CONFIG_MODULES=y |
129 | # CONFIG_MODULE_FORCE_LOAD is not set | 127 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -131,11 +129,9 @@ CONFIG_MODULE_UNLOAD=y | |||
131 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 129 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
132 | # CONFIG_MODVERSIONS is not set | 130 | # CONFIG_MODVERSIONS is not set |
133 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
134 | CONFIG_KMOD=y | ||
135 | CONFIG_BLOCK=y | 132 | CONFIG_BLOCK=y |
136 | # CONFIG_LBD is not set | 133 | # CONFIG_LBD is not set |
137 | # CONFIG_BLK_DEV_IO_TRACE is not set | 134 | # CONFIG_BLK_DEV_IO_TRACE is not set |
138 | # CONFIG_LSF is not set | ||
139 | # CONFIG_BLK_DEV_BSG is not set | 135 | # CONFIG_BLK_DEV_BSG is not set |
140 | # CONFIG_BLK_DEV_INTEGRITY is not set | 136 | # CONFIG_BLK_DEV_INTEGRITY is not set |
141 | 137 | ||
@@ -152,6 +148,10 @@ CONFIG_DEFAULT_AS=y | |||
152 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
153 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
154 | CONFIG_CLASSIC_RCU=y | 150 | CONFIG_CLASSIC_RCU=y |
151 | # CONFIG_TREE_RCU is not set | ||
152 | # CONFIG_PREEMPT_RCU is not set | ||
153 | # CONFIG_TREE_RCU_TRACE is not set | ||
154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
155 | # CONFIG_FREEZER is not set | 155 | # CONFIG_FREEZER is not set |
156 | 156 | ||
157 | # | 157 | # |
@@ -198,6 +198,8 @@ CONFIG_IPIC=y | |||
198 | # CONFIG_QUICC_ENGINE is not set | 198 | # CONFIG_QUICC_ENGINE is not set |
199 | # CONFIG_FSL_ULI1575 is not set | 199 | # CONFIG_FSL_ULI1575 is not set |
200 | # CONFIG_MPC8xxx_GPIO is not set | 200 | # CONFIG_MPC8xxx_GPIO is not set |
201 | # CONFIG_SIMPLE_GPIO is not set | ||
202 | # CONFIG_MCU_MPC8349EMITX is not set | ||
201 | 203 | ||
202 | # | 204 | # |
203 | # Kernel options | 205 | # Kernel options |
@@ -225,6 +227,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
225 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 227 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
226 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 228 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
227 | # CONFIG_KEXEC is not set | 229 | # CONFIG_KEXEC is not set |
230 | # CONFIG_CRASH_DUMP is not set | ||
228 | CONFIG_ARCH_FLATMEM_ENABLE=y | 231 | CONFIG_ARCH_FLATMEM_ENABLE=y |
229 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 232 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
230 | CONFIG_SELECT_MEMORY_MODEL=y | 233 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -236,12 +239,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
236 | CONFIG_PAGEFLAGS_EXTENDED=y | 239 | CONFIG_PAGEFLAGS_EXTENDED=y |
237 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 240 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
238 | CONFIG_MIGRATION=y | 241 | CONFIG_MIGRATION=y |
239 | # CONFIG_RESOURCES_64BIT is not set | ||
240 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 242 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
241 | CONFIG_ZONE_DMA_FLAG=1 | 243 | CONFIG_ZONE_DMA_FLAG=1 |
242 | CONFIG_BOUNCE=y | 244 | CONFIG_BOUNCE=y |
243 | CONFIG_VIRT_TO_BUS=y | 245 | CONFIG_VIRT_TO_BUS=y |
244 | CONFIG_UNEVICTABLE_LRU=y | 246 | CONFIG_UNEVICTABLE_LRU=y |
247 | CONFIG_PPC_4K_PAGES=y | ||
248 | # CONFIG_PPC_16K_PAGES is not set | ||
249 | # CONFIG_PPC_64K_PAGES is not set | ||
245 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
246 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
247 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
@@ -267,6 +272,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
267 | # CONFIG_PCI_MSI is not set | 272 | # CONFIG_PCI_MSI is not set |
268 | # CONFIG_PCI_LEGACY is not set | 273 | # CONFIG_PCI_LEGACY is not set |
269 | # CONFIG_PCI_DEBUG is not set | 274 | # CONFIG_PCI_DEBUG is not set |
275 | # CONFIG_PCI_STUB is not set | ||
270 | # CONFIG_PCCARD is not set | 276 | # CONFIG_PCCARD is not set |
271 | # CONFIG_HOTPLUG_PCI is not set | 277 | # CONFIG_HOTPLUG_PCI is not set |
272 | # CONFIG_HAS_RAPIDIO is not set | 278 | # CONFIG_HAS_RAPIDIO is not set |
@@ -289,6 +295,7 @@ CONFIG_NET=y | |||
289 | # | 295 | # |
290 | # Networking options | 296 | # Networking options |
291 | # | 297 | # |
298 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
292 | CONFIG_PACKET=y | 299 | CONFIG_PACKET=y |
293 | # CONFIG_PACKET_MMAP is not set | 300 | # CONFIG_PACKET_MMAP is not set |
294 | CONFIG_UNIX=y | 301 | CONFIG_UNIX=y |
@@ -345,6 +352,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
345 | # CONFIG_ECONET is not set | 352 | # CONFIG_ECONET is not set |
346 | # CONFIG_WAN_ROUTER is not set | 353 | # CONFIG_WAN_ROUTER is not set |
347 | # CONFIG_NET_SCHED is not set | 354 | # CONFIG_NET_SCHED is not set |
355 | # CONFIG_DCB is not set | ||
348 | 356 | ||
349 | # | 357 | # |
350 | # Network testing | 358 | # Network testing |
@@ -360,8 +368,9 @@ CONFIG_WIRELESS=y | |||
360 | # CONFIG_CFG80211 is not set | 368 | # CONFIG_CFG80211 is not set |
361 | CONFIG_WIRELESS_OLD_REGULATORY=y | 369 | CONFIG_WIRELESS_OLD_REGULATORY=y |
362 | # CONFIG_WIRELESS_EXT is not set | 370 | # CONFIG_WIRELESS_EXT is not set |
371 | # CONFIG_LIB80211 is not set | ||
363 | # CONFIG_MAC80211 is not set | 372 | # CONFIG_MAC80211 is not set |
364 | # CONFIG_IEEE80211 is not set | 373 | # CONFIG_WIMAX is not set |
365 | # CONFIG_RFKILL is not set | 374 | # CONFIG_RFKILL is not set |
366 | # CONFIG_NET_9P is not set | 375 | # CONFIG_NET_9P is not set |
367 | 376 | ||
@@ -384,6 +393,7 @@ CONFIG_MTD=y | |||
384 | # CONFIG_MTD_DEBUG is not set | 393 | # CONFIG_MTD_DEBUG is not set |
385 | # CONFIG_MTD_CONCAT is not set | 394 | # CONFIG_MTD_CONCAT is not set |
386 | CONFIG_MTD_PARTITIONS=y | 395 | CONFIG_MTD_PARTITIONS=y |
396 | # CONFIG_MTD_TESTS is not set | ||
387 | # CONFIG_MTD_REDBOOT_PARTS is not set | 397 | # CONFIG_MTD_REDBOOT_PARTS is not set |
388 | # CONFIG_MTD_CMDLINE_PARTS is not set | 398 | # CONFIG_MTD_CMDLINE_PARTS is not set |
389 | CONFIG_MTD_OF_PARTS=y | 399 | CONFIG_MTD_OF_PARTS=y |
@@ -468,6 +478,12 @@ CONFIG_MTD_NAND_FSL_ELBC=y | |||
468 | # CONFIG_MTD_ONENAND is not set | 478 | # CONFIG_MTD_ONENAND is not set |
469 | 479 | ||
470 | # | 480 | # |
481 | # LPDDR flash memory drivers | ||
482 | # | ||
483 | # CONFIG_MTD_LPDDR is not set | ||
484 | # CONFIG_MTD_QINFO_PROBE is not set | ||
485 | |||
486 | # | ||
471 | # UBI - Unsorted block images | 487 | # UBI - Unsorted block images |
472 | # | 488 | # |
473 | # CONFIG_MTD_UBI is not set | 489 | # CONFIG_MTD_UBI is not set |
@@ -499,8 +515,10 @@ CONFIG_MISC_DEVICES=y | |||
499 | # CONFIG_EEPROM_93CX6 is not set | 515 | # CONFIG_EEPROM_93CX6 is not set |
500 | # CONFIG_SGI_IOC4 is not set | 516 | # CONFIG_SGI_IOC4 is not set |
501 | # CONFIG_TIFM_CORE is not set | 517 | # CONFIG_TIFM_CORE is not set |
518 | # CONFIG_ICS932S401 is not set | ||
502 | # CONFIG_ENCLOSURE_SERVICES is not set | 519 | # CONFIG_ENCLOSURE_SERVICES is not set |
503 | # CONFIG_HP_ILO is not set | 520 | # CONFIG_HP_ILO is not set |
521 | # CONFIG_C2PORT is not set | ||
504 | CONFIG_HAVE_IDE=y | 522 | CONFIG_HAVE_IDE=y |
505 | # CONFIG_IDE is not set | 523 | # CONFIG_IDE is not set |
506 | 524 | ||
@@ -543,6 +561,7 @@ CONFIG_SCSI_SPI_ATTRS=y | |||
543 | # CONFIG_SCSI_SRP_ATTRS is not set | 561 | # CONFIG_SCSI_SRP_ATTRS is not set |
544 | CONFIG_SCSI_LOWLEVEL=y | 562 | CONFIG_SCSI_LOWLEVEL=y |
545 | # CONFIG_ISCSI_TCP is not set | 563 | # CONFIG_ISCSI_TCP is not set |
564 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
546 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 565 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
547 | # CONFIG_SCSI_3W_9XXX is not set | 566 | # CONFIG_SCSI_3W_9XXX is not set |
548 | # CONFIG_SCSI_ACARD is not set | 567 | # CONFIG_SCSI_ACARD is not set |
@@ -559,6 +578,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
559 | # CONFIG_MEGARAID_SAS is not set | 578 | # CONFIG_MEGARAID_SAS is not set |
560 | # CONFIG_SCSI_HPTIOP is not set | 579 | # CONFIG_SCSI_HPTIOP is not set |
561 | # CONFIG_SCSI_BUSLOGIC is not set | 580 | # CONFIG_SCSI_BUSLOGIC is not set |
581 | # CONFIG_LIBFC is not set | ||
582 | # CONFIG_FCOE is not set | ||
562 | # CONFIG_SCSI_DMX3191D is not set | 583 | # CONFIG_SCSI_DMX3191D is not set |
563 | # CONFIG_SCSI_EATA is not set | 584 | # CONFIG_SCSI_EATA is not set |
564 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 585 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -627,6 +648,9 @@ CONFIG_CICADA_PHY=y | |||
627 | # CONFIG_BROADCOM_PHY is not set | 648 | # CONFIG_BROADCOM_PHY is not set |
628 | # CONFIG_ICPLUS_PHY is not set | 649 | # CONFIG_ICPLUS_PHY is not set |
629 | # CONFIG_REALTEK_PHY is not set | 650 | # CONFIG_REALTEK_PHY is not set |
651 | # CONFIG_NATIONAL_PHY is not set | ||
652 | # CONFIG_STE10XP is not set | ||
653 | # CONFIG_LSI_ET1011C_PHY is not set | ||
630 | # CONFIG_FIXED_PHY is not set | 654 | # CONFIG_FIXED_PHY is not set |
631 | # CONFIG_MDIO_BITBANG is not set | 655 | # CONFIG_MDIO_BITBANG is not set |
632 | CONFIG_NET_ETHERNET=y | 656 | CONFIG_NET_ETHERNET=y |
@@ -651,7 +675,6 @@ CONFIG_NET_PCI=y | |||
651 | # CONFIG_ADAPTEC_STARFIRE is not set | 675 | # CONFIG_ADAPTEC_STARFIRE is not set |
652 | # CONFIG_B44 is not set | 676 | # CONFIG_B44 is not set |
653 | # CONFIG_FORCEDETH is not set | 677 | # CONFIG_FORCEDETH is not set |
654 | # CONFIG_EEPRO100 is not set | ||
655 | CONFIG_E100=y | 678 | CONFIG_E100=y |
656 | # CONFIG_FEALNX is not set | 679 | # CONFIG_FEALNX is not set |
657 | # CONFIG_NATSEMI is not set | 680 | # CONFIG_NATSEMI is not set |
@@ -661,6 +684,7 @@ CONFIG_E100=y | |||
661 | # CONFIG_R6040 is not set | 684 | # CONFIG_R6040 is not set |
662 | # CONFIG_SIS900 is not set | 685 | # CONFIG_SIS900 is not set |
663 | # CONFIG_EPIC100 is not set | 686 | # CONFIG_EPIC100 is not set |
687 | # CONFIG_SMSC9420 is not set | ||
664 | # CONFIG_SUNDANCE is not set | 688 | # CONFIG_SUNDANCE is not set |
665 | # CONFIG_TLAN is not set | 689 | # CONFIG_TLAN is not set |
666 | # CONFIG_VIA_RHINE is not set | 690 | # CONFIG_VIA_RHINE is not set |
@@ -691,6 +715,7 @@ CONFIG_GIANFAR=y | |||
691 | # CONFIG_JME is not set | 715 | # CONFIG_JME is not set |
692 | CONFIG_NETDEV_10000=y | 716 | CONFIG_NETDEV_10000=y |
693 | # CONFIG_CHELSIO_T1 is not set | 717 | # CONFIG_CHELSIO_T1 is not set |
718 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
694 | # CONFIG_CHELSIO_T3 is not set | 719 | # CONFIG_CHELSIO_T3 is not set |
695 | # CONFIG_ENIC is not set | 720 | # CONFIG_ENIC is not set |
696 | # CONFIG_IXGBE is not set | 721 | # CONFIG_IXGBE is not set |
@@ -715,6 +740,10 @@ CONFIG_NETDEV_10000=y | |||
715 | # CONFIG_IWLWIFI_LEDS is not set | 740 | # CONFIG_IWLWIFI_LEDS is not set |
716 | 741 | ||
717 | # | 742 | # |
743 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
744 | # | ||
745 | |||
746 | # | ||
718 | # USB Network Adapters | 747 | # USB Network Adapters |
719 | # | 748 | # |
720 | # CONFIG_USB_CATC is not set | 749 | # CONFIG_USB_CATC is not set |
@@ -792,8 +821,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
792 | # CONFIG_SERIAL_JSM is not set | 821 | # CONFIG_SERIAL_JSM is not set |
793 | # CONFIG_SERIAL_OF_PLATFORM is not set | 822 | # CONFIG_SERIAL_OF_PLATFORM is not set |
794 | CONFIG_UNIX98_PTYS=y | 823 | CONFIG_UNIX98_PTYS=y |
824 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
795 | CONFIG_LEGACY_PTYS=y | 825 | CONFIG_LEGACY_PTYS=y |
796 | CONFIG_LEGACY_PTY_COUNT=256 | 826 | CONFIG_LEGACY_PTY_COUNT=256 |
827 | # CONFIG_HVC_UDBG is not set | ||
797 | # CONFIG_IPMI_HANDLER is not set | 828 | # CONFIG_IPMI_HANDLER is not set |
798 | CONFIG_HW_RANDOM=y | 829 | CONFIG_HW_RANDOM=y |
799 | # CONFIG_NVRAM is not set | 830 | # CONFIG_NVRAM is not set |
@@ -866,7 +897,6 @@ CONFIG_I2C_MPC=y | |||
866 | # CONFIG_SENSORS_PCF8591 is not set | 897 | # CONFIG_SENSORS_PCF8591 is not set |
867 | # CONFIG_SENSORS_MAX6875 is not set | 898 | # CONFIG_SENSORS_MAX6875 is not set |
868 | # CONFIG_SENSORS_TSL2550 is not set | 899 | # CONFIG_SENSORS_TSL2550 is not set |
869 | # CONFIG_MCU_MPC8349EMITX is not set | ||
870 | # CONFIG_I2C_DEBUG_CORE is not set | 900 | # CONFIG_I2C_DEBUG_CORE is not set |
871 | # CONFIG_I2C_DEBUG_ALGO is not set | 901 | # CONFIG_I2C_DEBUG_ALGO is not set |
872 | # CONFIG_I2C_DEBUG_BUS is not set | 902 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -902,8 +932,10 @@ CONFIG_HWMON=y | |||
902 | # CONFIG_SENSORS_ADM1029 is not set | 932 | # CONFIG_SENSORS_ADM1029 is not set |
903 | # CONFIG_SENSORS_ADM1031 is not set | 933 | # CONFIG_SENSORS_ADM1031 is not set |
904 | # CONFIG_SENSORS_ADM9240 is not set | 934 | # CONFIG_SENSORS_ADM9240 is not set |
935 | # CONFIG_SENSORS_ADT7462 is not set | ||
905 | # CONFIG_SENSORS_ADT7470 is not set | 936 | # CONFIG_SENSORS_ADT7470 is not set |
906 | # CONFIG_SENSORS_ADT7473 is not set | 937 | # CONFIG_SENSORS_ADT7473 is not set |
938 | # CONFIG_SENSORS_ADT7475 is not set | ||
907 | # CONFIG_SENSORS_ATXP1 is not set | 939 | # CONFIG_SENSORS_ATXP1 is not set |
908 | # CONFIG_SENSORS_DS1621 is not set | 940 | # CONFIG_SENSORS_DS1621 is not set |
909 | # CONFIG_SENSORS_I5K_AMB is not set | 941 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -925,6 +957,7 @@ CONFIG_HWMON=y | |||
925 | # CONFIG_SENSORS_LM90 is not set | 957 | # CONFIG_SENSORS_LM90 is not set |
926 | # CONFIG_SENSORS_LM92 is not set | 958 | # CONFIG_SENSORS_LM92 is not set |
927 | # CONFIG_SENSORS_LM93 is not set | 959 | # CONFIG_SENSORS_LM93 is not set |
960 | # CONFIG_SENSORS_LTC4245 is not set | ||
928 | # CONFIG_SENSORS_MAX1111 is not set | 961 | # CONFIG_SENSORS_MAX1111 is not set |
929 | # CONFIG_SENSORS_MAX1619 is not set | 962 | # CONFIG_SENSORS_MAX1619 is not set |
930 | # CONFIG_SENSORS_MAX6650 is not set | 963 | # CONFIG_SENSORS_MAX6650 is not set |
@@ -971,11 +1004,11 @@ CONFIG_WATCHDOG=y | |||
971 | # USB-based Watchdog Cards | 1004 | # USB-based Watchdog Cards |
972 | # | 1005 | # |
973 | # CONFIG_USBPCWATCHDOG is not set | 1006 | # CONFIG_USBPCWATCHDOG is not set |
1007 | CONFIG_SSB_POSSIBLE=y | ||
974 | 1008 | ||
975 | # | 1009 | # |
976 | # Sonics Silicon Backplane | 1010 | # Sonics Silicon Backplane |
977 | # | 1011 | # |
978 | CONFIG_SSB_POSSIBLE=y | ||
979 | # CONFIG_SSB is not set | 1012 | # CONFIG_SSB is not set |
980 | 1013 | ||
981 | # | 1014 | # |
@@ -984,18 +1017,13 @@ CONFIG_SSB_POSSIBLE=y | |||
984 | # CONFIG_MFD_CORE is not set | 1017 | # CONFIG_MFD_CORE is not set |
985 | # CONFIG_MFD_SM501 is not set | 1018 | # CONFIG_MFD_SM501 is not set |
986 | # CONFIG_HTC_PASIC3 is not set | 1019 | # CONFIG_HTC_PASIC3 is not set |
1020 | # CONFIG_TWL4030_CORE is not set | ||
987 | # CONFIG_MFD_TMIO is not set | 1021 | # CONFIG_MFD_TMIO is not set |
988 | # CONFIG_PMIC_DA903X is not set | 1022 | # CONFIG_PMIC_DA903X is not set |
989 | # CONFIG_MFD_WM8400 is not set | 1023 | # CONFIG_MFD_WM8400 is not set |
990 | # CONFIG_MFD_WM8350_I2C is not set | 1024 | # CONFIG_MFD_WM8350_I2C is not set |
991 | 1025 | # CONFIG_MFD_PCF50633 is not set | |
992 | # | ||
993 | # Voltage and Current regulators | ||
994 | # | ||
995 | # CONFIG_REGULATOR is not set | 1026 | # CONFIG_REGULATOR is not set |
996 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
997 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
998 | # CONFIG_REGULATOR_BQ24022 is not set | ||
999 | 1027 | ||
1000 | # | 1028 | # |
1001 | # Multimedia devices | 1029 | # Multimedia devices |
@@ -1080,6 +1108,7 @@ CONFIG_USB_EHCI_ROOT_HUB_TT=y | |||
1080 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1108 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1081 | CONFIG_USB_EHCI_FSL=y | 1109 | CONFIG_USB_EHCI_FSL=y |
1082 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1110 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1111 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1083 | # CONFIG_USB_ISP116X_HCD is not set | 1112 | # CONFIG_USB_ISP116X_HCD is not set |
1084 | # CONFIG_USB_ISP1760_HCD is not set | 1113 | # CONFIG_USB_ISP1760_HCD is not set |
1085 | CONFIG_USB_OHCI_HCD=y | 1114 | CONFIG_USB_OHCI_HCD=y |
@@ -1106,18 +1135,17 @@ CONFIG_USB_UHCI_HCD=y | |||
1106 | # CONFIG_USB_TMC is not set | 1135 | # CONFIG_USB_TMC is not set |
1107 | 1136 | ||
1108 | # | 1137 | # |
1109 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1138 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1110 | # | 1139 | # |
1111 | 1140 | ||
1112 | # | 1141 | # |
1113 | # may also be needed; see USB_STORAGE Help for more information | 1142 | # see USB_STORAGE Help for more information |
1114 | # | 1143 | # |
1115 | CONFIG_USB_STORAGE=y | 1144 | CONFIG_USB_STORAGE=y |
1116 | # CONFIG_USB_STORAGE_DEBUG is not set | 1145 | # CONFIG_USB_STORAGE_DEBUG is not set |
1117 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1146 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1118 | # CONFIG_USB_STORAGE_FREECOM is not set | 1147 | # CONFIG_USB_STORAGE_FREECOM is not set |
1119 | # CONFIG_USB_STORAGE_ISD200 is not set | 1148 | # CONFIG_USB_STORAGE_ISD200 is not set |
1120 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1121 | # CONFIG_USB_STORAGE_USBAT is not set | 1149 | # CONFIG_USB_STORAGE_USBAT is not set |
1122 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1150 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1123 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1151 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1177,9 +1205,11 @@ CONFIG_USB_GADGET_SELECTED=y | |||
1177 | # CONFIG_USB_GADGET_PXA25X is not set | 1205 | # CONFIG_USB_GADGET_PXA25X is not set |
1178 | # CONFIG_USB_GADGET_PXA27X is not set | 1206 | # CONFIG_USB_GADGET_PXA27X is not set |
1179 | # CONFIG_USB_GADGET_S3C2410 is not set | 1207 | # CONFIG_USB_GADGET_S3C2410 is not set |
1208 | # CONFIG_USB_GADGET_IMX is not set | ||
1180 | # CONFIG_USB_GADGET_M66592 is not set | 1209 | # CONFIG_USB_GADGET_M66592 is not set |
1181 | # CONFIG_USB_GADGET_AMD5536UDC is not set | 1210 | # CONFIG_USB_GADGET_AMD5536UDC is not set |
1182 | # CONFIG_USB_GADGET_FSL_QE is not set | 1211 | # CONFIG_USB_GADGET_FSL_QE is not set |
1212 | # CONFIG_USB_GADGET_CI13XXX is not set | ||
1183 | CONFIG_USB_GADGET_NET2280=y | 1213 | CONFIG_USB_GADGET_NET2280=y |
1184 | CONFIG_USB_NET2280=y | 1214 | CONFIG_USB_NET2280=y |
1185 | # CONFIG_USB_GADGET_GOKU is not set | 1215 | # CONFIG_USB_GADGET_GOKU is not set |
@@ -1194,6 +1224,10 @@ CONFIG_USB_ETH_RNDIS=y | |||
1194 | # CONFIG_USB_MIDI_GADGET is not set | 1224 | # CONFIG_USB_MIDI_GADGET is not set |
1195 | # CONFIG_USB_G_PRINTER is not set | 1225 | # CONFIG_USB_G_PRINTER is not set |
1196 | # CONFIG_USB_CDC_COMPOSITE is not set | 1226 | # CONFIG_USB_CDC_COMPOSITE is not set |
1227 | |||
1228 | # | ||
1229 | # OTG and related infrastructure | ||
1230 | # | ||
1197 | # CONFIG_UWB is not set | 1231 | # CONFIG_UWB is not set |
1198 | # CONFIG_MMC is not set | 1232 | # CONFIG_MMC is not set |
1199 | # CONFIG_MEMSTICK is not set | 1233 | # CONFIG_MEMSTICK is not set |
@@ -1231,12 +1265,14 @@ CONFIG_RTC_DRV_DS1307=y | |||
1231 | # CONFIG_RTC_DRV_M41T80 is not set | 1265 | # CONFIG_RTC_DRV_M41T80 is not set |
1232 | # CONFIG_RTC_DRV_S35390A is not set | 1266 | # CONFIG_RTC_DRV_S35390A is not set |
1233 | # CONFIG_RTC_DRV_FM3130 is not set | 1267 | # CONFIG_RTC_DRV_FM3130 is not set |
1268 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1234 | 1269 | ||
1235 | # | 1270 | # |
1236 | # SPI RTC drivers | 1271 | # SPI RTC drivers |
1237 | # | 1272 | # |
1238 | # CONFIG_RTC_DRV_M41T94 is not set | 1273 | # CONFIG_RTC_DRV_M41T94 is not set |
1239 | # CONFIG_RTC_DRV_DS1305 is not set | 1274 | # CONFIG_RTC_DRV_DS1305 is not set |
1275 | # CONFIG_RTC_DRV_DS1390 is not set | ||
1240 | # CONFIG_RTC_DRV_MAX6902 is not set | 1276 | # CONFIG_RTC_DRV_MAX6902 is not set |
1241 | # CONFIG_RTC_DRV_R9701 is not set | 1277 | # CONFIG_RTC_DRV_R9701 is not set |
1242 | # CONFIG_RTC_DRV_RS5C348 is not set | 1278 | # CONFIG_RTC_DRV_RS5C348 is not set |
@@ -1284,6 +1320,7 @@ CONFIG_FS_MBCACHE=y | |||
1284 | CONFIG_FILE_LOCKING=y | 1320 | CONFIG_FILE_LOCKING=y |
1285 | # CONFIG_XFS_FS is not set | 1321 | # CONFIG_XFS_FS is not set |
1286 | # CONFIG_OCFS2_FS is not set | 1322 | # CONFIG_OCFS2_FS is not set |
1323 | # CONFIG_BTRFS_FS is not set | ||
1287 | CONFIG_DNOTIFY=y | 1324 | CONFIG_DNOTIFY=y |
1288 | CONFIG_INOTIFY=y | 1325 | CONFIG_INOTIFY=y |
1289 | CONFIG_INOTIFY_USER=y | 1326 | CONFIG_INOTIFY_USER=y |
@@ -1317,10 +1354,7 @@ CONFIG_TMPFS=y | |||
1317 | # CONFIG_TMPFS_POSIX_ACL is not set | 1354 | # CONFIG_TMPFS_POSIX_ACL is not set |
1318 | # CONFIG_HUGETLB_PAGE is not set | 1355 | # CONFIG_HUGETLB_PAGE is not set |
1319 | # CONFIG_CONFIGFS_FS is not set | 1356 | # CONFIG_CONFIGFS_FS is not set |
1320 | 1357 | CONFIG_MISC_FILESYSTEMS=y | |
1321 | # | ||
1322 | # Miscellaneous filesystems | ||
1323 | # | ||
1324 | # CONFIG_ADFS_FS is not set | 1358 | # CONFIG_ADFS_FS is not set |
1325 | # CONFIG_AFFS_FS is not set | 1359 | # CONFIG_AFFS_FS is not set |
1326 | # CONFIG_HFS_FS is not set | 1360 | # CONFIG_HFS_FS is not set |
@@ -1340,6 +1374,7 @@ CONFIG_JFFS2_ZLIB=y | |||
1340 | CONFIG_JFFS2_RTIME=y | 1374 | CONFIG_JFFS2_RTIME=y |
1341 | # CONFIG_JFFS2_RUBIN is not set | 1375 | # CONFIG_JFFS2_RUBIN is not set |
1342 | # CONFIG_CRAMFS is not set | 1376 | # CONFIG_CRAMFS is not set |
1377 | # CONFIG_SQUASHFS is not set | ||
1343 | # CONFIG_VXFS_FS is not set | 1378 | # CONFIG_VXFS_FS is not set |
1344 | # CONFIG_MINIX_FS is not set | 1379 | # CONFIG_MINIX_FS is not set |
1345 | # CONFIG_OMFS_FS is not set | 1380 | # CONFIG_OMFS_FS is not set |
@@ -1397,6 +1432,7 @@ CONFIG_MSDOS_PARTITION=y | |||
1397 | # Library routines | 1432 | # Library routines |
1398 | # | 1433 | # |
1399 | CONFIG_BITREVERSE=y | 1434 | CONFIG_BITREVERSE=y |
1435 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1400 | # CONFIG_CRC_CCITT is not set | 1436 | # CONFIG_CRC_CCITT is not set |
1401 | # CONFIG_CRC16 is not set | 1437 | # CONFIG_CRC16 is not set |
1402 | # CONFIG_CRC_T10DIF is not set | 1438 | # CONFIG_CRC_T10DIF is not set |
@@ -1448,6 +1484,7 @@ CONFIG_SCHED_DEBUG=y | |||
1448 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1484 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1449 | # CONFIG_DEBUG_LIST is not set | 1485 | # CONFIG_DEBUG_LIST is not set |
1450 | # CONFIG_DEBUG_SG is not set | 1486 | # CONFIG_DEBUG_SG is not set |
1487 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1451 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1488 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1452 | # CONFIG_RCU_TORTURE_TEST is not set | 1489 | # CONFIG_RCU_TORTURE_TEST is not set |
1453 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1490 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1457,6 +1494,8 @@ CONFIG_SCHED_DEBUG=y | |||
1457 | # CONFIG_LATENCYTOP is not set | 1494 | # CONFIG_LATENCYTOP is not set |
1458 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1495 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1459 | CONFIG_HAVE_FUNCTION_TRACER=y | 1496 | CONFIG_HAVE_FUNCTION_TRACER=y |
1497 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1498 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1460 | 1499 | ||
1461 | # | 1500 | # |
1462 | # Tracers | 1501 | # Tracers |
@@ -1465,11 +1504,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1465 | # CONFIG_SCHED_TRACER is not set | 1504 | # CONFIG_SCHED_TRACER is not set |
1466 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1505 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1467 | # CONFIG_BOOT_TRACER is not set | 1506 | # CONFIG_BOOT_TRACER is not set |
1507 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1468 | # CONFIG_STACK_TRACER is not set | 1508 | # CONFIG_STACK_TRACER is not set |
1469 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1509 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1470 | # CONFIG_SAMPLES is not set | 1510 | # CONFIG_SAMPLES is not set |
1471 | CONFIG_HAVE_ARCH_KGDB=y | 1511 | CONFIG_HAVE_ARCH_KGDB=y |
1472 | # CONFIG_KGDB is not set | 1512 | # CONFIG_KGDB is not set |
1513 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1473 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1514 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1474 | # CONFIG_DEBUG_STACK_USAGE is not set | 1515 | # CONFIG_DEBUG_STACK_USAGE is not set |
1475 | # CONFIG_DEBUG_PAGEALLOC is not set | 1516 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1496,11 +1537,15 @@ CONFIG_CRYPTO=y | |||
1496 | # | 1537 | # |
1497 | # CONFIG_CRYPTO_FIPS is not set | 1538 | # CONFIG_CRYPTO_FIPS is not set |
1498 | CONFIG_CRYPTO_ALGAPI=y | 1539 | CONFIG_CRYPTO_ALGAPI=y |
1499 | CONFIG_CRYPTO_AEAD=y | 1540 | CONFIG_CRYPTO_ALGAPI2=y |
1541 | CONFIG_CRYPTO_AEAD2=y | ||
1500 | CONFIG_CRYPTO_BLKCIPHER=y | 1542 | CONFIG_CRYPTO_BLKCIPHER=y |
1543 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1501 | CONFIG_CRYPTO_HASH=y | 1544 | CONFIG_CRYPTO_HASH=y |
1502 | CONFIG_CRYPTO_RNG=y | 1545 | CONFIG_CRYPTO_HASH2=y |
1546 | CONFIG_CRYPTO_RNG2=y | ||
1503 | CONFIG_CRYPTO_MANAGER=y | 1547 | CONFIG_CRYPTO_MANAGER=y |
1548 | CONFIG_CRYPTO_MANAGER2=y | ||
1504 | # CONFIG_CRYPTO_GF128MUL is not set | 1549 | # CONFIG_CRYPTO_GF128MUL is not set |
1505 | # CONFIG_CRYPTO_NULL is not set | 1550 | # CONFIG_CRYPTO_NULL is not set |
1506 | # CONFIG_CRYPTO_CRYPTD is not set | 1551 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/83xx/mpc8315_rdb_defconfig b/arch/powerpc/configs/83xx/mpc8315_rdb_defconfig index c7cceb4536d8..03db97c6cf33 100644 --- a/arch/powerpc/configs/83xx/mpc8315_rdb_defconfig +++ b/arch/powerpc/configs/83xx/mpc8315_rdb_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:51 2008 | 4 | # Mon Jan 26 15:35:49 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -75,12 +75,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 79 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -113,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
113 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
114 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
119 | CONFIG_HAVE_IOREMAP_PROT=y | 118 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -123,7 +122,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
124 | CONFIG_SLABINFO=y | 123 | CONFIG_SLABINFO=y |
125 | CONFIG_RT_MUTEXES=y | 124 | CONFIG_RT_MUTEXES=y |
126 | # CONFIG_TINY_SHMEM is not set | ||
127 | CONFIG_BASE_SMALL=0 | 125 | CONFIG_BASE_SMALL=0 |
128 | CONFIG_MODULES=y | 126 | CONFIG_MODULES=y |
129 | # CONFIG_MODULE_FORCE_LOAD is not set | 127 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -131,11 +129,9 @@ CONFIG_MODULE_UNLOAD=y | |||
131 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 129 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
132 | # CONFIG_MODVERSIONS is not set | 130 | # CONFIG_MODVERSIONS is not set |
133 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
134 | CONFIG_KMOD=y | ||
135 | CONFIG_BLOCK=y | 132 | CONFIG_BLOCK=y |
136 | # CONFIG_LBD is not set | 133 | # CONFIG_LBD is not set |
137 | # CONFIG_BLK_DEV_IO_TRACE is not set | 134 | # CONFIG_BLK_DEV_IO_TRACE is not set |
138 | # CONFIG_LSF is not set | ||
139 | # CONFIG_BLK_DEV_BSG is not set | 135 | # CONFIG_BLK_DEV_BSG is not set |
140 | # CONFIG_BLK_DEV_INTEGRITY is not set | 136 | # CONFIG_BLK_DEV_INTEGRITY is not set |
141 | 137 | ||
@@ -152,6 +148,10 @@ CONFIG_DEFAULT_AS=y | |||
152 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
153 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
154 | CONFIG_CLASSIC_RCU=y | 150 | CONFIG_CLASSIC_RCU=y |
151 | # CONFIG_TREE_RCU is not set | ||
152 | # CONFIG_PREEMPT_RCU is not set | ||
153 | # CONFIG_TREE_RCU_TRACE is not set | ||
154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
155 | # CONFIG_FREEZER is not set | 155 | # CONFIG_FREEZER is not set |
156 | 156 | ||
157 | # | 157 | # |
@@ -198,6 +198,8 @@ CONFIG_IPIC=y | |||
198 | # CONFIG_QUICC_ENGINE is not set | 198 | # CONFIG_QUICC_ENGINE is not set |
199 | # CONFIG_FSL_ULI1575 is not set | 199 | # CONFIG_FSL_ULI1575 is not set |
200 | # CONFIG_MPC8xxx_GPIO is not set | 200 | # CONFIG_MPC8xxx_GPIO is not set |
201 | # CONFIG_SIMPLE_GPIO is not set | ||
202 | # CONFIG_MCU_MPC8349EMITX is not set | ||
201 | 203 | ||
202 | # | 204 | # |
203 | # Kernel options | 205 | # Kernel options |
@@ -225,6 +227,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
225 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 227 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
226 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 228 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
227 | # CONFIG_KEXEC is not set | 229 | # CONFIG_KEXEC is not set |
230 | # CONFIG_CRASH_DUMP is not set | ||
228 | CONFIG_ARCH_FLATMEM_ENABLE=y | 231 | CONFIG_ARCH_FLATMEM_ENABLE=y |
229 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 232 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
230 | CONFIG_SELECT_MEMORY_MODEL=y | 233 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -236,12 +239,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
236 | CONFIG_PAGEFLAGS_EXTENDED=y | 239 | CONFIG_PAGEFLAGS_EXTENDED=y |
237 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 240 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
238 | CONFIG_MIGRATION=y | 241 | CONFIG_MIGRATION=y |
239 | # CONFIG_RESOURCES_64BIT is not set | ||
240 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 242 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
241 | CONFIG_ZONE_DMA_FLAG=1 | 243 | CONFIG_ZONE_DMA_FLAG=1 |
242 | CONFIG_BOUNCE=y | 244 | CONFIG_BOUNCE=y |
243 | CONFIG_VIRT_TO_BUS=y | 245 | CONFIG_VIRT_TO_BUS=y |
244 | CONFIG_UNEVICTABLE_LRU=y | 246 | CONFIG_UNEVICTABLE_LRU=y |
247 | CONFIG_PPC_4K_PAGES=y | ||
248 | # CONFIG_PPC_16K_PAGES is not set | ||
249 | # CONFIG_PPC_64K_PAGES is not set | ||
245 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
246 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
247 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
@@ -267,6 +272,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
267 | # CONFIG_PCI_MSI is not set | 272 | # CONFIG_PCI_MSI is not set |
268 | # CONFIG_PCI_LEGACY is not set | 273 | # CONFIG_PCI_LEGACY is not set |
269 | # CONFIG_PCI_DEBUG is not set | 274 | # CONFIG_PCI_DEBUG is not set |
275 | # CONFIG_PCI_STUB is not set | ||
270 | # CONFIG_PCCARD is not set | 276 | # CONFIG_PCCARD is not set |
271 | # CONFIG_HOTPLUG_PCI is not set | 277 | # CONFIG_HOTPLUG_PCI is not set |
272 | # CONFIG_HAS_RAPIDIO is not set | 278 | # CONFIG_HAS_RAPIDIO is not set |
@@ -289,6 +295,7 @@ CONFIG_NET=y | |||
289 | # | 295 | # |
290 | # Networking options | 296 | # Networking options |
291 | # | 297 | # |
298 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
292 | CONFIG_PACKET=y | 299 | CONFIG_PACKET=y |
293 | # CONFIG_PACKET_MMAP is not set | 300 | # CONFIG_PACKET_MMAP is not set |
294 | CONFIG_UNIX=y | 301 | CONFIG_UNIX=y |
@@ -345,6 +352,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
345 | # CONFIG_ECONET is not set | 352 | # CONFIG_ECONET is not set |
346 | # CONFIG_WAN_ROUTER is not set | 353 | # CONFIG_WAN_ROUTER is not set |
347 | # CONFIG_NET_SCHED is not set | 354 | # CONFIG_NET_SCHED is not set |
355 | # CONFIG_DCB is not set | ||
348 | 356 | ||
349 | # | 357 | # |
350 | # Network testing | 358 | # Network testing |
@@ -360,8 +368,9 @@ CONFIG_WIRELESS=y | |||
360 | # CONFIG_CFG80211 is not set | 368 | # CONFIG_CFG80211 is not set |
361 | CONFIG_WIRELESS_OLD_REGULATORY=y | 369 | CONFIG_WIRELESS_OLD_REGULATORY=y |
362 | # CONFIG_WIRELESS_EXT is not set | 370 | # CONFIG_WIRELESS_EXT is not set |
371 | # CONFIG_LIB80211 is not set | ||
363 | # CONFIG_MAC80211 is not set | 372 | # CONFIG_MAC80211 is not set |
364 | # CONFIG_IEEE80211 is not set | 373 | # CONFIG_WIMAX is not set |
365 | # CONFIG_RFKILL is not set | 374 | # CONFIG_RFKILL is not set |
366 | # CONFIG_NET_9P is not set | 375 | # CONFIG_NET_9P is not set |
367 | 376 | ||
@@ -384,6 +393,7 @@ CONFIG_MTD=y | |||
384 | # CONFIG_MTD_DEBUG is not set | 393 | # CONFIG_MTD_DEBUG is not set |
385 | # CONFIG_MTD_CONCAT is not set | 394 | # CONFIG_MTD_CONCAT is not set |
386 | CONFIG_MTD_PARTITIONS=y | 395 | CONFIG_MTD_PARTITIONS=y |
396 | # CONFIG_MTD_TESTS is not set | ||
387 | # CONFIG_MTD_REDBOOT_PARTS is not set | 397 | # CONFIG_MTD_REDBOOT_PARTS is not set |
388 | # CONFIG_MTD_CMDLINE_PARTS is not set | 398 | # CONFIG_MTD_CMDLINE_PARTS is not set |
389 | # CONFIG_MTD_OF_PARTS is not set | 399 | # CONFIG_MTD_OF_PARTS is not set |
@@ -468,6 +478,12 @@ CONFIG_MTD_NAND_IDS=y | |||
468 | # CONFIG_MTD_ONENAND is not set | 478 | # CONFIG_MTD_ONENAND is not set |
469 | 479 | ||
470 | # | 480 | # |
481 | # LPDDR flash memory drivers | ||
482 | # | ||
483 | # CONFIG_MTD_LPDDR is not set | ||
484 | # CONFIG_MTD_QINFO_PROBE is not set | ||
485 | |||
486 | # | ||
471 | # UBI - Unsorted block images | 487 | # UBI - Unsorted block images |
472 | # | 488 | # |
473 | # CONFIG_MTD_UBI is not set | 489 | # CONFIG_MTD_UBI is not set |
@@ -499,8 +515,10 @@ CONFIG_MISC_DEVICES=y | |||
499 | # CONFIG_EEPROM_93CX6 is not set | 515 | # CONFIG_EEPROM_93CX6 is not set |
500 | # CONFIG_SGI_IOC4 is not set | 516 | # CONFIG_SGI_IOC4 is not set |
501 | # CONFIG_TIFM_CORE is not set | 517 | # CONFIG_TIFM_CORE is not set |
518 | # CONFIG_ICS932S401 is not set | ||
502 | # CONFIG_ENCLOSURE_SERVICES is not set | 519 | # CONFIG_ENCLOSURE_SERVICES is not set |
503 | # CONFIG_HP_ILO is not set | 520 | # CONFIG_HP_ILO is not set |
521 | # CONFIG_C2PORT is not set | ||
504 | CONFIG_HAVE_IDE=y | 522 | CONFIG_HAVE_IDE=y |
505 | # CONFIG_IDE is not set | 523 | # CONFIG_IDE is not set |
506 | 524 | ||
@@ -543,6 +561,7 @@ CONFIG_SCSI_SPI_ATTRS=y | |||
543 | # CONFIG_SCSI_SRP_ATTRS is not set | 561 | # CONFIG_SCSI_SRP_ATTRS is not set |
544 | CONFIG_SCSI_LOWLEVEL=y | 562 | CONFIG_SCSI_LOWLEVEL=y |
545 | # CONFIG_ISCSI_TCP is not set | 563 | # CONFIG_ISCSI_TCP is not set |
564 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
546 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 565 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
547 | # CONFIG_SCSI_3W_9XXX is not set | 566 | # CONFIG_SCSI_3W_9XXX is not set |
548 | # CONFIG_SCSI_ACARD is not set | 567 | # CONFIG_SCSI_ACARD is not set |
@@ -559,6 +578,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
559 | # CONFIG_MEGARAID_SAS is not set | 578 | # CONFIG_MEGARAID_SAS is not set |
560 | # CONFIG_SCSI_HPTIOP is not set | 579 | # CONFIG_SCSI_HPTIOP is not set |
561 | # CONFIG_SCSI_BUSLOGIC is not set | 580 | # CONFIG_SCSI_BUSLOGIC is not set |
581 | # CONFIG_LIBFC is not set | ||
582 | # CONFIG_FCOE is not set | ||
562 | # CONFIG_SCSI_DMX3191D is not set | 583 | # CONFIG_SCSI_DMX3191D is not set |
563 | # CONFIG_SCSI_EATA is not set | 584 | # CONFIG_SCSI_EATA is not set |
564 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 585 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -688,6 +709,9 @@ CONFIG_PHYLIB=y | |||
688 | # CONFIG_BROADCOM_PHY is not set | 709 | # CONFIG_BROADCOM_PHY is not set |
689 | # CONFIG_ICPLUS_PHY is not set | 710 | # CONFIG_ICPLUS_PHY is not set |
690 | # CONFIG_REALTEK_PHY is not set | 711 | # CONFIG_REALTEK_PHY is not set |
712 | # CONFIG_NATIONAL_PHY is not set | ||
713 | # CONFIG_STE10XP is not set | ||
714 | # CONFIG_LSI_ET1011C_PHY is not set | ||
691 | # CONFIG_FIXED_PHY is not set | 715 | # CONFIG_FIXED_PHY is not set |
692 | # CONFIG_MDIO_BITBANG is not set | 716 | # CONFIG_MDIO_BITBANG is not set |
693 | CONFIG_NET_ETHERNET=y | 717 | CONFIG_NET_ETHERNET=y |
@@ -712,7 +736,6 @@ CONFIG_NET_PCI=y | |||
712 | # CONFIG_ADAPTEC_STARFIRE is not set | 736 | # CONFIG_ADAPTEC_STARFIRE is not set |
713 | # CONFIG_B44 is not set | 737 | # CONFIG_B44 is not set |
714 | # CONFIG_FORCEDETH is not set | 738 | # CONFIG_FORCEDETH is not set |
715 | # CONFIG_EEPRO100 is not set | ||
716 | CONFIG_E100=y | 739 | CONFIG_E100=y |
717 | # CONFIG_FEALNX is not set | 740 | # CONFIG_FEALNX is not set |
718 | # CONFIG_NATSEMI is not set | 741 | # CONFIG_NATSEMI is not set |
@@ -722,6 +745,7 @@ CONFIG_E100=y | |||
722 | # CONFIG_R6040 is not set | 745 | # CONFIG_R6040 is not set |
723 | # CONFIG_SIS900 is not set | 746 | # CONFIG_SIS900 is not set |
724 | # CONFIG_EPIC100 is not set | 747 | # CONFIG_EPIC100 is not set |
748 | # CONFIG_SMSC9420 is not set | ||
725 | # CONFIG_SUNDANCE is not set | 749 | # CONFIG_SUNDANCE is not set |
726 | # CONFIG_TLAN is not set | 750 | # CONFIG_TLAN is not set |
727 | # CONFIG_VIA_RHINE is not set | 751 | # CONFIG_VIA_RHINE is not set |
@@ -752,6 +776,7 @@ CONFIG_GIANFAR=y | |||
752 | # CONFIG_JME is not set | 776 | # CONFIG_JME is not set |
753 | CONFIG_NETDEV_10000=y | 777 | CONFIG_NETDEV_10000=y |
754 | # CONFIG_CHELSIO_T1 is not set | 778 | # CONFIG_CHELSIO_T1 is not set |
779 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
755 | # CONFIG_CHELSIO_T3 is not set | 780 | # CONFIG_CHELSIO_T3 is not set |
756 | # CONFIG_ENIC is not set | 781 | # CONFIG_ENIC is not set |
757 | # CONFIG_IXGBE is not set | 782 | # CONFIG_IXGBE is not set |
@@ -776,6 +801,10 @@ CONFIG_NETDEV_10000=y | |||
776 | # CONFIG_IWLWIFI_LEDS is not set | 801 | # CONFIG_IWLWIFI_LEDS is not set |
777 | 802 | ||
778 | # | 803 | # |
804 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
805 | # | ||
806 | |||
807 | # | ||
779 | # USB Network Adapters | 808 | # USB Network Adapters |
780 | # | 809 | # |
781 | # CONFIG_USB_CATC is not set | 810 | # CONFIG_USB_CATC is not set |
@@ -853,8 +882,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
853 | # CONFIG_SERIAL_JSM is not set | 882 | # CONFIG_SERIAL_JSM is not set |
854 | # CONFIG_SERIAL_OF_PLATFORM is not set | 883 | # CONFIG_SERIAL_OF_PLATFORM is not set |
855 | CONFIG_UNIX98_PTYS=y | 884 | CONFIG_UNIX98_PTYS=y |
885 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
856 | CONFIG_LEGACY_PTYS=y | 886 | CONFIG_LEGACY_PTYS=y |
857 | CONFIG_LEGACY_PTY_COUNT=256 | 887 | CONFIG_LEGACY_PTY_COUNT=256 |
888 | # CONFIG_HVC_UDBG is not set | ||
858 | # CONFIG_IPMI_HANDLER is not set | 889 | # CONFIG_IPMI_HANDLER is not set |
859 | CONFIG_HW_RANDOM=y | 890 | CONFIG_HW_RANDOM=y |
860 | # CONFIG_NVRAM is not set | 891 | # CONFIG_NVRAM is not set |
@@ -927,7 +958,6 @@ CONFIG_I2C_MPC=y | |||
927 | # CONFIG_SENSORS_PCF8591 is not set | 958 | # CONFIG_SENSORS_PCF8591 is not set |
928 | # CONFIG_SENSORS_MAX6875 is not set | 959 | # CONFIG_SENSORS_MAX6875 is not set |
929 | # CONFIG_SENSORS_TSL2550 is not set | 960 | # CONFIG_SENSORS_TSL2550 is not set |
930 | # CONFIG_MCU_MPC8349EMITX is not set | ||
931 | # CONFIG_I2C_DEBUG_CORE is not set | 961 | # CONFIG_I2C_DEBUG_CORE is not set |
932 | # CONFIG_I2C_DEBUG_ALGO is not set | 962 | # CONFIG_I2C_DEBUG_ALGO is not set |
933 | # CONFIG_I2C_DEBUG_BUS is not set | 963 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -963,8 +993,10 @@ CONFIG_HWMON=y | |||
963 | # CONFIG_SENSORS_ADM1029 is not set | 993 | # CONFIG_SENSORS_ADM1029 is not set |
964 | # CONFIG_SENSORS_ADM1031 is not set | 994 | # CONFIG_SENSORS_ADM1031 is not set |
965 | # CONFIG_SENSORS_ADM9240 is not set | 995 | # CONFIG_SENSORS_ADM9240 is not set |
996 | # CONFIG_SENSORS_ADT7462 is not set | ||
966 | # CONFIG_SENSORS_ADT7470 is not set | 997 | # CONFIG_SENSORS_ADT7470 is not set |
967 | # CONFIG_SENSORS_ADT7473 is not set | 998 | # CONFIG_SENSORS_ADT7473 is not set |
999 | # CONFIG_SENSORS_ADT7475 is not set | ||
968 | # CONFIG_SENSORS_ATXP1 is not set | 1000 | # CONFIG_SENSORS_ATXP1 is not set |
969 | # CONFIG_SENSORS_DS1621 is not set | 1001 | # CONFIG_SENSORS_DS1621 is not set |
970 | # CONFIG_SENSORS_I5K_AMB is not set | 1002 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -986,6 +1018,7 @@ CONFIG_HWMON=y | |||
986 | # CONFIG_SENSORS_LM90 is not set | 1018 | # CONFIG_SENSORS_LM90 is not set |
987 | # CONFIG_SENSORS_LM92 is not set | 1019 | # CONFIG_SENSORS_LM92 is not set |
988 | # CONFIG_SENSORS_LM93 is not set | 1020 | # CONFIG_SENSORS_LM93 is not set |
1021 | # CONFIG_SENSORS_LTC4245 is not set | ||
989 | # CONFIG_SENSORS_MAX1111 is not set | 1022 | # CONFIG_SENSORS_MAX1111 is not set |
990 | # CONFIG_SENSORS_MAX1619 is not set | 1023 | # CONFIG_SENSORS_MAX1619 is not set |
991 | # CONFIG_SENSORS_MAX6650 is not set | 1024 | # CONFIG_SENSORS_MAX6650 is not set |
@@ -1032,11 +1065,11 @@ CONFIG_WATCHDOG=y | |||
1032 | # USB-based Watchdog Cards | 1065 | # USB-based Watchdog Cards |
1033 | # | 1066 | # |
1034 | # CONFIG_USBPCWATCHDOG is not set | 1067 | # CONFIG_USBPCWATCHDOG is not set |
1068 | CONFIG_SSB_POSSIBLE=y | ||
1035 | 1069 | ||
1036 | # | 1070 | # |
1037 | # Sonics Silicon Backplane | 1071 | # Sonics Silicon Backplane |
1038 | # | 1072 | # |
1039 | CONFIG_SSB_POSSIBLE=y | ||
1040 | # CONFIG_SSB is not set | 1073 | # CONFIG_SSB is not set |
1041 | 1074 | ||
1042 | # | 1075 | # |
@@ -1045,18 +1078,13 @@ CONFIG_SSB_POSSIBLE=y | |||
1045 | # CONFIG_MFD_CORE is not set | 1078 | # CONFIG_MFD_CORE is not set |
1046 | # CONFIG_MFD_SM501 is not set | 1079 | # CONFIG_MFD_SM501 is not set |
1047 | # CONFIG_HTC_PASIC3 is not set | 1080 | # CONFIG_HTC_PASIC3 is not set |
1081 | # CONFIG_TWL4030_CORE is not set | ||
1048 | # CONFIG_MFD_TMIO is not set | 1082 | # CONFIG_MFD_TMIO is not set |
1049 | # CONFIG_PMIC_DA903X is not set | 1083 | # CONFIG_PMIC_DA903X is not set |
1050 | # CONFIG_MFD_WM8400 is not set | 1084 | # CONFIG_MFD_WM8400 is not set |
1051 | # CONFIG_MFD_WM8350_I2C is not set | 1085 | # CONFIG_MFD_WM8350_I2C is not set |
1052 | 1086 | # CONFIG_MFD_PCF50633 is not set | |
1053 | # | ||
1054 | # Voltage and Current regulators | ||
1055 | # | ||
1056 | # CONFIG_REGULATOR is not set | 1087 | # CONFIG_REGULATOR is not set |
1057 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
1058 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
1059 | # CONFIG_REGULATOR_BQ24022 is not set | ||
1060 | 1088 | ||
1061 | # | 1089 | # |
1062 | # Multimedia devices | 1090 | # Multimedia devices |
@@ -1141,6 +1169,7 @@ CONFIG_USB_EHCI_ROOT_HUB_TT=y | |||
1141 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1169 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1142 | CONFIG_USB_EHCI_FSL=y | 1170 | CONFIG_USB_EHCI_FSL=y |
1143 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1171 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1172 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1144 | # CONFIG_USB_ISP116X_HCD is not set | 1173 | # CONFIG_USB_ISP116X_HCD is not set |
1145 | # CONFIG_USB_ISP1760_HCD is not set | 1174 | # CONFIG_USB_ISP1760_HCD is not set |
1146 | CONFIG_USB_OHCI_HCD=y | 1175 | CONFIG_USB_OHCI_HCD=y |
@@ -1167,18 +1196,17 @@ CONFIG_USB_UHCI_HCD=y | |||
1167 | # CONFIG_USB_TMC is not set | 1196 | # CONFIG_USB_TMC is not set |
1168 | 1197 | ||
1169 | # | 1198 | # |
1170 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1199 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1171 | # | 1200 | # |
1172 | 1201 | ||
1173 | # | 1202 | # |
1174 | # may also be needed; see USB_STORAGE Help for more information | 1203 | # see USB_STORAGE Help for more information |
1175 | # | 1204 | # |
1176 | CONFIG_USB_STORAGE=y | 1205 | CONFIG_USB_STORAGE=y |
1177 | # CONFIG_USB_STORAGE_DEBUG is not set | 1206 | # CONFIG_USB_STORAGE_DEBUG is not set |
1178 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1207 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1179 | # CONFIG_USB_STORAGE_FREECOM is not set | 1208 | # CONFIG_USB_STORAGE_FREECOM is not set |
1180 | # CONFIG_USB_STORAGE_ISD200 is not set | 1209 | # CONFIG_USB_STORAGE_ISD200 is not set |
1181 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1182 | # CONFIG_USB_STORAGE_USBAT is not set | 1210 | # CONFIG_USB_STORAGE_USBAT is not set |
1183 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1211 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1184 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1212 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1238,9 +1266,11 @@ CONFIG_USB_GADGET_SELECTED=y | |||
1238 | # CONFIG_USB_GADGET_PXA25X is not set | 1266 | # CONFIG_USB_GADGET_PXA25X is not set |
1239 | # CONFIG_USB_GADGET_PXA27X is not set | 1267 | # CONFIG_USB_GADGET_PXA27X is not set |
1240 | # CONFIG_USB_GADGET_S3C2410 is not set | 1268 | # CONFIG_USB_GADGET_S3C2410 is not set |
1269 | # CONFIG_USB_GADGET_IMX is not set | ||
1241 | # CONFIG_USB_GADGET_M66592 is not set | 1270 | # CONFIG_USB_GADGET_M66592 is not set |
1242 | # CONFIG_USB_GADGET_AMD5536UDC is not set | 1271 | # CONFIG_USB_GADGET_AMD5536UDC is not set |
1243 | # CONFIG_USB_GADGET_FSL_QE is not set | 1272 | # CONFIG_USB_GADGET_FSL_QE is not set |
1273 | # CONFIG_USB_GADGET_CI13XXX is not set | ||
1244 | CONFIG_USB_GADGET_NET2280=y | 1274 | CONFIG_USB_GADGET_NET2280=y |
1245 | CONFIG_USB_NET2280=y | 1275 | CONFIG_USB_NET2280=y |
1246 | # CONFIG_USB_GADGET_GOKU is not set | 1276 | # CONFIG_USB_GADGET_GOKU is not set |
@@ -1255,6 +1285,10 @@ CONFIG_USB_ETH_RNDIS=y | |||
1255 | # CONFIG_USB_MIDI_GADGET is not set | 1285 | # CONFIG_USB_MIDI_GADGET is not set |
1256 | # CONFIG_USB_G_PRINTER is not set | 1286 | # CONFIG_USB_G_PRINTER is not set |
1257 | # CONFIG_USB_CDC_COMPOSITE is not set | 1287 | # CONFIG_USB_CDC_COMPOSITE is not set |
1288 | |||
1289 | # | ||
1290 | # OTG and related infrastructure | ||
1291 | # | ||
1258 | # CONFIG_UWB is not set | 1292 | # CONFIG_UWB is not set |
1259 | # CONFIG_MMC is not set | 1293 | # CONFIG_MMC is not set |
1260 | # CONFIG_MEMSTICK is not set | 1294 | # CONFIG_MEMSTICK is not set |
@@ -1292,12 +1326,14 @@ CONFIG_RTC_DRV_DS1307=y | |||
1292 | # CONFIG_RTC_DRV_M41T80 is not set | 1326 | # CONFIG_RTC_DRV_M41T80 is not set |
1293 | # CONFIG_RTC_DRV_S35390A is not set | 1327 | # CONFIG_RTC_DRV_S35390A is not set |
1294 | # CONFIG_RTC_DRV_FM3130 is not set | 1328 | # CONFIG_RTC_DRV_FM3130 is not set |
1329 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1295 | 1330 | ||
1296 | # | 1331 | # |
1297 | # SPI RTC drivers | 1332 | # SPI RTC drivers |
1298 | # | 1333 | # |
1299 | # CONFIG_RTC_DRV_M41T94 is not set | 1334 | # CONFIG_RTC_DRV_M41T94 is not set |
1300 | # CONFIG_RTC_DRV_DS1305 is not set | 1335 | # CONFIG_RTC_DRV_DS1305 is not set |
1336 | # CONFIG_RTC_DRV_DS1390 is not set | ||
1301 | # CONFIG_RTC_DRV_MAX6902 is not set | 1337 | # CONFIG_RTC_DRV_MAX6902 is not set |
1302 | # CONFIG_RTC_DRV_R9701 is not set | 1338 | # CONFIG_RTC_DRV_R9701 is not set |
1303 | # CONFIG_RTC_DRV_RS5C348 is not set | 1339 | # CONFIG_RTC_DRV_RS5C348 is not set |
@@ -1345,6 +1381,7 @@ CONFIG_FS_MBCACHE=y | |||
1345 | CONFIG_FILE_LOCKING=y | 1381 | CONFIG_FILE_LOCKING=y |
1346 | # CONFIG_XFS_FS is not set | 1382 | # CONFIG_XFS_FS is not set |
1347 | # CONFIG_OCFS2_FS is not set | 1383 | # CONFIG_OCFS2_FS is not set |
1384 | # CONFIG_BTRFS_FS is not set | ||
1348 | CONFIG_DNOTIFY=y | 1385 | CONFIG_DNOTIFY=y |
1349 | CONFIG_INOTIFY=y | 1386 | CONFIG_INOTIFY=y |
1350 | CONFIG_INOTIFY_USER=y | 1387 | CONFIG_INOTIFY_USER=y |
@@ -1378,10 +1415,7 @@ CONFIG_TMPFS=y | |||
1378 | # CONFIG_TMPFS_POSIX_ACL is not set | 1415 | # CONFIG_TMPFS_POSIX_ACL is not set |
1379 | # CONFIG_HUGETLB_PAGE is not set | 1416 | # CONFIG_HUGETLB_PAGE is not set |
1380 | # CONFIG_CONFIGFS_FS is not set | 1417 | # CONFIG_CONFIGFS_FS is not set |
1381 | 1418 | CONFIG_MISC_FILESYSTEMS=y | |
1382 | # | ||
1383 | # Miscellaneous filesystems | ||
1384 | # | ||
1385 | # CONFIG_ADFS_FS is not set | 1419 | # CONFIG_ADFS_FS is not set |
1386 | # CONFIG_AFFS_FS is not set | 1420 | # CONFIG_AFFS_FS is not set |
1387 | # CONFIG_HFS_FS is not set | 1421 | # CONFIG_HFS_FS is not set |
@@ -1401,6 +1435,7 @@ CONFIG_JFFS2_ZLIB=y | |||
1401 | CONFIG_JFFS2_RTIME=y | 1435 | CONFIG_JFFS2_RTIME=y |
1402 | # CONFIG_JFFS2_RUBIN is not set | 1436 | # CONFIG_JFFS2_RUBIN is not set |
1403 | # CONFIG_CRAMFS is not set | 1437 | # CONFIG_CRAMFS is not set |
1438 | # CONFIG_SQUASHFS is not set | ||
1404 | # CONFIG_VXFS_FS is not set | 1439 | # CONFIG_VXFS_FS is not set |
1405 | # CONFIG_MINIX_FS is not set | 1440 | # CONFIG_MINIX_FS is not set |
1406 | # CONFIG_OMFS_FS is not set | 1441 | # CONFIG_OMFS_FS is not set |
@@ -1458,6 +1493,7 @@ CONFIG_MSDOS_PARTITION=y | |||
1458 | # Library routines | 1493 | # Library routines |
1459 | # | 1494 | # |
1460 | CONFIG_BITREVERSE=y | 1495 | CONFIG_BITREVERSE=y |
1496 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1461 | # CONFIG_CRC_CCITT is not set | 1497 | # CONFIG_CRC_CCITT is not set |
1462 | # CONFIG_CRC16 is not set | 1498 | # CONFIG_CRC16 is not set |
1463 | # CONFIG_CRC_T10DIF is not set | 1499 | # CONFIG_CRC_T10DIF is not set |
@@ -1509,6 +1545,7 @@ CONFIG_SCHED_DEBUG=y | |||
1509 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1545 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1510 | # CONFIG_DEBUG_LIST is not set | 1546 | # CONFIG_DEBUG_LIST is not set |
1511 | # CONFIG_DEBUG_SG is not set | 1547 | # CONFIG_DEBUG_SG is not set |
1548 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1512 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1549 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1513 | # CONFIG_RCU_TORTURE_TEST is not set | 1550 | # CONFIG_RCU_TORTURE_TEST is not set |
1514 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1551 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1518,6 +1555,8 @@ CONFIG_SCHED_DEBUG=y | |||
1518 | # CONFIG_LATENCYTOP is not set | 1555 | # CONFIG_LATENCYTOP is not set |
1519 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1556 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1520 | CONFIG_HAVE_FUNCTION_TRACER=y | 1557 | CONFIG_HAVE_FUNCTION_TRACER=y |
1558 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1559 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1521 | 1560 | ||
1522 | # | 1561 | # |
1523 | # Tracers | 1562 | # Tracers |
@@ -1526,11 +1565,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1526 | # CONFIG_SCHED_TRACER is not set | 1565 | # CONFIG_SCHED_TRACER is not set |
1527 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1566 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1528 | # CONFIG_BOOT_TRACER is not set | 1567 | # CONFIG_BOOT_TRACER is not set |
1568 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1529 | # CONFIG_STACK_TRACER is not set | 1569 | # CONFIG_STACK_TRACER is not set |
1530 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1570 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1531 | # CONFIG_SAMPLES is not set | 1571 | # CONFIG_SAMPLES is not set |
1532 | CONFIG_HAVE_ARCH_KGDB=y | 1572 | CONFIG_HAVE_ARCH_KGDB=y |
1533 | # CONFIG_KGDB is not set | 1573 | # CONFIG_KGDB is not set |
1574 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1534 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1575 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1535 | # CONFIG_DEBUG_STACK_USAGE is not set | 1576 | # CONFIG_DEBUG_STACK_USAGE is not set |
1536 | # CONFIG_DEBUG_PAGEALLOC is not set | 1577 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1557,11 +1598,15 @@ CONFIG_CRYPTO=y | |||
1557 | # | 1598 | # |
1558 | # CONFIG_CRYPTO_FIPS is not set | 1599 | # CONFIG_CRYPTO_FIPS is not set |
1559 | CONFIG_CRYPTO_ALGAPI=y | 1600 | CONFIG_CRYPTO_ALGAPI=y |
1560 | CONFIG_CRYPTO_AEAD=y | 1601 | CONFIG_CRYPTO_ALGAPI2=y |
1602 | CONFIG_CRYPTO_AEAD2=y | ||
1561 | CONFIG_CRYPTO_BLKCIPHER=y | 1603 | CONFIG_CRYPTO_BLKCIPHER=y |
1604 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1562 | CONFIG_CRYPTO_HASH=y | 1605 | CONFIG_CRYPTO_HASH=y |
1563 | CONFIG_CRYPTO_RNG=y | 1606 | CONFIG_CRYPTO_HASH2=y |
1607 | CONFIG_CRYPTO_RNG2=y | ||
1564 | CONFIG_CRYPTO_MANAGER=y | 1608 | CONFIG_CRYPTO_MANAGER=y |
1609 | CONFIG_CRYPTO_MANAGER2=y | ||
1565 | # CONFIG_CRYPTO_GF128MUL is not set | 1610 | # CONFIG_CRYPTO_GF128MUL is not set |
1566 | # CONFIG_CRYPTO_NULL is not set | 1611 | # CONFIG_CRYPTO_NULL is not set |
1567 | # CONFIG_CRYPTO_CRYPTD is not set | 1612 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/83xx/mpc832x_mds_defconfig b/arch/powerpc/configs/83xx/mpc832x_mds_defconfig index 5e3cd49a2e9c..fb17de53cc02 100644 --- a/arch/powerpc/configs/83xx/mpc832x_mds_defconfig +++ b/arch/powerpc/configs/83xx/mpc832x_mds_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:53 2008 | 4 | # Mon Jan 26 15:35:50 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -75,12 +75,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 79 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -113,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
113 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
114 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
119 | CONFIG_HAVE_IOREMAP_PROT=y | 118 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -123,7 +122,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
124 | CONFIG_SLABINFO=y | 123 | CONFIG_SLABINFO=y |
125 | CONFIG_RT_MUTEXES=y | 124 | CONFIG_RT_MUTEXES=y |
126 | # CONFIG_TINY_SHMEM is not set | ||
127 | CONFIG_BASE_SMALL=0 | 125 | CONFIG_BASE_SMALL=0 |
128 | CONFIG_MODULES=y | 126 | CONFIG_MODULES=y |
129 | # CONFIG_MODULE_FORCE_LOAD is not set | 127 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -131,11 +129,9 @@ CONFIG_MODULE_UNLOAD=y | |||
131 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 129 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
132 | # CONFIG_MODVERSIONS is not set | 130 | # CONFIG_MODVERSIONS is not set |
133 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
134 | CONFIG_KMOD=y | ||
135 | CONFIG_BLOCK=y | 132 | CONFIG_BLOCK=y |
136 | # CONFIG_LBD is not set | 133 | # CONFIG_LBD is not set |
137 | # CONFIG_BLK_DEV_IO_TRACE is not set | 134 | # CONFIG_BLK_DEV_IO_TRACE is not set |
138 | # CONFIG_LSF is not set | ||
139 | # CONFIG_BLK_DEV_BSG is not set | 135 | # CONFIG_BLK_DEV_BSG is not set |
140 | # CONFIG_BLK_DEV_INTEGRITY is not set | 136 | # CONFIG_BLK_DEV_INTEGRITY is not set |
141 | 137 | ||
@@ -152,6 +148,10 @@ CONFIG_DEFAULT_AS=y | |||
152 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
153 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
154 | CONFIG_CLASSIC_RCU=y | 150 | CONFIG_CLASSIC_RCU=y |
151 | # CONFIG_TREE_RCU is not set | ||
152 | # CONFIG_PREEMPT_RCU is not set | ||
153 | # CONFIG_TREE_RCU_TRACE is not set | ||
154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
155 | # CONFIG_FREEZER is not set | 155 | # CONFIG_FREEZER is not set |
156 | 156 | ||
157 | # | 157 | # |
@@ -198,6 +198,8 @@ CONFIG_IPIC=y | |||
198 | CONFIG_QUICC_ENGINE=y | 198 | CONFIG_QUICC_ENGINE=y |
199 | # CONFIG_QE_GPIO is not set | 199 | # CONFIG_QE_GPIO is not set |
200 | # CONFIG_FSL_ULI1575 is not set | 200 | # CONFIG_FSL_ULI1575 is not set |
201 | # CONFIG_SIMPLE_GPIO is not set | ||
202 | # CONFIG_MCU_MPC8349EMITX is not set | ||
201 | 203 | ||
202 | # | 204 | # |
203 | # Kernel options | 205 | # Kernel options |
@@ -226,6 +228,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
226 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 228 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
227 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 229 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
228 | # CONFIG_KEXEC is not set | 230 | # CONFIG_KEXEC is not set |
231 | # CONFIG_CRASH_DUMP is not set | ||
229 | CONFIG_ARCH_FLATMEM_ENABLE=y | 232 | CONFIG_ARCH_FLATMEM_ENABLE=y |
230 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 233 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
231 | CONFIG_SELECT_MEMORY_MODEL=y | 234 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -237,12 +240,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
237 | CONFIG_PAGEFLAGS_EXTENDED=y | 240 | CONFIG_PAGEFLAGS_EXTENDED=y |
238 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 241 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
239 | CONFIG_MIGRATION=y | 242 | CONFIG_MIGRATION=y |
240 | # CONFIG_RESOURCES_64BIT is not set | ||
241 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 243 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
242 | CONFIG_ZONE_DMA_FLAG=1 | 244 | CONFIG_ZONE_DMA_FLAG=1 |
243 | CONFIG_BOUNCE=y | 245 | CONFIG_BOUNCE=y |
244 | CONFIG_VIRT_TO_BUS=y | 246 | CONFIG_VIRT_TO_BUS=y |
245 | CONFIG_UNEVICTABLE_LRU=y | 247 | CONFIG_UNEVICTABLE_LRU=y |
248 | CONFIG_PPC_4K_PAGES=y | ||
249 | # CONFIG_PPC_16K_PAGES is not set | ||
250 | # CONFIG_PPC_64K_PAGES is not set | ||
246 | CONFIG_FORCE_MAX_ZONEORDER=11 | 251 | CONFIG_FORCE_MAX_ZONEORDER=11 |
247 | CONFIG_PROC_DEVICETREE=y | 252 | CONFIG_PROC_DEVICETREE=y |
248 | # CONFIG_CMDLINE_BOOL is not set | 253 | # CONFIG_CMDLINE_BOOL is not set |
@@ -267,6 +272,7 @@ CONFIG_PCI_SYSCALL=y | |||
267 | CONFIG_ARCH_SUPPORTS_MSI=y | 272 | CONFIG_ARCH_SUPPORTS_MSI=y |
268 | # CONFIG_PCI_MSI is not set | 273 | # CONFIG_PCI_MSI is not set |
269 | # CONFIG_PCI_LEGACY is not set | 274 | # CONFIG_PCI_LEGACY is not set |
275 | # CONFIG_PCI_STUB is not set | ||
270 | # CONFIG_PCCARD is not set | 276 | # CONFIG_PCCARD is not set |
271 | # CONFIG_HOTPLUG_PCI is not set | 277 | # CONFIG_HOTPLUG_PCI is not set |
272 | # CONFIG_HAS_RAPIDIO is not set | 278 | # CONFIG_HAS_RAPIDIO is not set |
@@ -289,6 +295,7 @@ CONFIG_NET=y | |||
289 | # | 295 | # |
290 | # Networking options | 296 | # Networking options |
291 | # | 297 | # |
298 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
292 | CONFIG_PACKET=y | 299 | CONFIG_PACKET=y |
293 | # CONFIG_PACKET_MMAP is not set | 300 | # CONFIG_PACKET_MMAP is not set |
294 | CONFIG_UNIX=y | 301 | CONFIG_UNIX=y |
@@ -345,6 +352,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
345 | # CONFIG_ECONET is not set | 352 | # CONFIG_ECONET is not set |
346 | # CONFIG_WAN_ROUTER is not set | 353 | # CONFIG_WAN_ROUTER is not set |
347 | # CONFIG_NET_SCHED is not set | 354 | # CONFIG_NET_SCHED is not set |
355 | # CONFIG_DCB is not set | ||
348 | 356 | ||
349 | # | 357 | # |
350 | # Network testing | 358 | # Network testing |
@@ -360,8 +368,9 @@ CONFIG_WIRELESS=y | |||
360 | # CONFIG_CFG80211 is not set | 368 | # CONFIG_CFG80211 is not set |
361 | CONFIG_WIRELESS_OLD_REGULATORY=y | 369 | CONFIG_WIRELESS_OLD_REGULATORY=y |
362 | # CONFIG_WIRELESS_EXT is not set | 370 | # CONFIG_WIRELESS_EXT is not set |
371 | # CONFIG_LIB80211 is not set | ||
363 | # CONFIG_MAC80211 is not set | 372 | # CONFIG_MAC80211 is not set |
364 | # CONFIG_IEEE80211 is not set | 373 | # CONFIG_WIMAX is not set |
365 | # CONFIG_RFKILL is not set | 374 | # CONFIG_RFKILL is not set |
366 | # CONFIG_NET_9P is not set | 375 | # CONFIG_NET_9P is not set |
367 | 376 | ||
@@ -405,8 +414,10 @@ CONFIG_MISC_DEVICES=y | |||
405 | # CONFIG_EEPROM_93CX6 is not set | 414 | # CONFIG_EEPROM_93CX6 is not set |
406 | # CONFIG_SGI_IOC4 is not set | 415 | # CONFIG_SGI_IOC4 is not set |
407 | # CONFIG_TIFM_CORE is not set | 416 | # CONFIG_TIFM_CORE is not set |
417 | # CONFIG_ICS932S401 is not set | ||
408 | # CONFIG_ENCLOSURE_SERVICES is not set | 418 | # CONFIG_ENCLOSURE_SERVICES is not set |
409 | # CONFIG_HP_ILO is not set | 419 | # CONFIG_HP_ILO is not set |
420 | # CONFIG_C2PORT is not set | ||
410 | CONFIG_HAVE_IDE=y | 421 | CONFIG_HAVE_IDE=y |
411 | # CONFIG_IDE is not set | 422 | # CONFIG_IDE is not set |
412 | 423 | ||
@@ -449,6 +460,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
449 | # CONFIG_SCSI_SRP_ATTRS is not set | 460 | # CONFIG_SCSI_SRP_ATTRS is not set |
450 | CONFIG_SCSI_LOWLEVEL=y | 461 | CONFIG_SCSI_LOWLEVEL=y |
451 | # CONFIG_ISCSI_TCP is not set | 462 | # CONFIG_ISCSI_TCP is not set |
463 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
452 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 464 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
453 | # CONFIG_SCSI_3W_9XXX is not set | 465 | # CONFIG_SCSI_3W_9XXX is not set |
454 | # CONFIG_SCSI_ACARD is not set | 466 | # CONFIG_SCSI_ACARD is not set |
@@ -465,6 +477,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
465 | # CONFIG_MEGARAID_SAS is not set | 477 | # CONFIG_MEGARAID_SAS is not set |
466 | # CONFIG_SCSI_HPTIOP is not set | 478 | # CONFIG_SCSI_HPTIOP is not set |
467 | # CONFIG_SCSI_BUSLOGIC is not set | 479 | # CONFIG_SCSI_BUSLOGIC is not set |
480 | # CONFIG_LIBFC is not set | ||
481 | # CONFIG_FCOE is not set | ||
468 | # CONFIG_SCSI_DMX3191D is not set | 482 | # CONFIG_SCSI_DMX3191D is not set |
469 | # CONFIG_SCSI_EATA is not set | 483 | # CONFIG_SCSI_EATA is not set |
470 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 484 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -523,6 +537,9 @@ CONFIG_DAVICOM_PHY=y | |||
523 | # CONFIG_BROADCOM_PHY is not set | 537 | # CONFIG_BROADCOM_PHY is not set |
524 | # CONFIG_ICPLUS_PHY is not set | 538 | # CONFIG_ICPLUS_PHY is not set |
525 | # CONFIG_REALTEK_PHY is not set | 539 | # CONFIG_REALTEK_PHY is not set |
540 | # CONFIG_NATIONAL_PHY is not set | ||
541 | # CONFIG_STE10XP is not set | ||
542 | # CONFIG_LSI_ET1011C_PHY is not set | ||
526 | # CONFIG_FIXED_PHY is not set | 543 | # CONFIG_FIXED_PHY is not set |
527 | # CONFIG_MDIO_BITBANG is not set | 544 | # CONFIG_MDIO_BITBANG is not set |
528 | CONFIG_NET_ETHERNET=y | 545 | CONFIG_NET_ETHERNET=y |
@@ -563,7 +580,6 @@ CONFIG_NETDEV_1000=y | |||
563 | # CONFIG_GIANFAR is not set | 580 | # CONFIG_GIANFAR is not set |
564 | CONFIG_UCC_GETH=y | 581 | CONFIG_UCC_GETH=y |
565 | # CONFIG_UGETH_MAGIC_PACKET is not set | 582 | # CONFIG_UGETH_MAGIC_PACKET is not set |
566 | # CONFIG_UGETH_FILTERING is not set | ||
567 | # CONFIG_UGETH_TX_ON_DEMAND is not set | 583 | # CONFIG_UGETH_TX_ON_DEMAND is not set |
568 | # CONFIG_MV643XX_ETH is not set | 584 | # CONFIG_MV643XX_ETH is not set |
569 | # CONFIG_QLA3XXX is not set | 585 | # CONFIG_QLA3XXX is not set |
@@ -572,6 +588,7 @@ CONFIG_UCC_GETH=y | |||
572 | # CONFIG_JME is not set | 588 | # CONFIG_JME is not set |
573 | CONFIG_NETDEV_10000=y | 589 | CONFIG_NETDEV_10000=y |
574 | # CONFIG_CHELSIO_T1 is not set | 590 | # CONFIG_CHELSIO_T1 is not set |
591 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
575 | # CONFIG_CHELSIO_T3 is not set | 592 | # CONFIG_CHELSIO_T3 is not set |
576 | # CONFIG_ENIC is not set | 593 | # CONFIG_ENIC is not set |
577 | # CONFIG_IXGBE is not set | 594 | # CONFIG_IXGBE is not set |
@@ -594,6 +611,10 @@ CONFIG_NETDEV_10000=y | |||
594 | # CONFIG_WLAN_PRE80211 is not set | 611 | # CONFIG_WLAN_PRE80211 is not set |
595 | # CONFIG_WLAN_80211 is not set | 612 | # CONFIG_WLAN_80211 is not set |
596 | # CONFIG_IWLWIFI_LEDS is not set | 613 | # CONFIG_IWLWIFI_LEDS is not set |
614 | |||
615 | # | ||
616 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
617 | # | ||
597 | # CONFIG_WAN is not set | 618 | # CONFIG_WAN is not set |
598 | # CONFIG_FDDI is not set | 619 | # CONFIG_FDDI is not set |
599 | # CONFIG_HIPPI is not set | 620 | # CONFIG_HIPPI is not set |
@@ -665,8 +686,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
665 | # CONFIG_SERIAL_OF_PLATFORM is not set | 686 | # CONFIG_SERIAL_OF_PLATFORM is not set |
666 | # CONFIG_SERIAL_QE is not set | 687 | # CONFIG_SERIAL_QE is not set |
667 | CONFIG_UNIX98_PTYS=y | 688 | CONFIG_UNIX98_PTYS=y |
689 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
668 | CONFIG_LEGACY_PTYS=y | 690 | CONFIG_LEGACY_PTYS=y |
669 | CONFIG_LEGACY_PTY_COUNT=256 | 691 | CONFIG_LEGACY_PTY_COUNT=256 |
692 | # CONFIG_HVC_UDBG is not set | ||
670 | # CONFIG_IPMI_HANDLER is not set | 693 | # CONFIG_IPMI_HANDLER is not set |
671 | CONFIG_HW_RANDOM=y | 694 | CONFIG_HW_RANDOM=y |
672 | # CONFIG_NVRAM is not set | 695 | # CONFIG_NVRAM is not set |
@@ -738,7 +761,6 @@ CONFIG_I2C_MPC=y | |||
738 | # CONFIG_SENSORS_PCF8591 is not set | 761 | # CONFIG_SENSORS_PCF8591 is not set |
739 | # CONFIG_SENSORS_MAX6875 is not set | 762 | # CONFIG_SENSORS_MAX6875 is not set |
740 | # CONFIG_SENSORS_TSL2550 is not set | 763 | # CONFIG_SENSORS_TSL2550 is not set |
741 | # CONFIG_MCU_MPC8349EMITX is not set | ||
742 | # CONFIG_I2C_DEBUG_CORE is not set | 764 | # CONFIG_I2C_DEBUG_CORE is not set |
743 | # CONFIG_I2C_DEBUG_ALGO is not set | 765 | # CONFIG_I2C_DEBUG_ALGO is not set |
744 | # CONFIG_I2C_DEBUG_BUS is not set | 766 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -758,8 +780,10 @@ CONFIG_HWMON=y | |||
758 | # CONFIG_SENSORS_ADM1029 is not set | 780 | # CONFIG_SENSORS_ADM1029 is not set |
759 | # CONFIG_SENSORS_ADM1031 is not set | 781 | # CONFIG_SENSORS_ADM1031 is not set |
760 | # CONFIG_SENSORS_ADM9240 is not set | 782 | # CONFIG_SENSORS_ADM9240 is not set |
783 | # CONFIG_SENSORS_ADT7462 is not set | ||
761 | # CONFIG_SENSORS_ADT7470 is not set | 784 | # CONFIG_SENSORS_ADT7470 is not set |
762 | # CONFIG_SENSORS_ADT7473 is not set | 785 | # CONFIG_SENSORS_ADT7473 is not set |
786 | # CONFIG_SENSORS_ADT7475 is not set | ||
763 | # CONFIG_SENSORS_ATXP1 is not set | 787 | # CONFIG_SENSORS_ATXP1 is not set |
764 | # CONFIG_SENSORS_DS1621 is not set | 788 | # CONFIG_SENSORS_DS1621 is not set |
765 | # CONFIG_SENSORS_I5K_AMB is not set | 789 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -780,6 +804,7 @@ CONFIG_HWMON=y | |||
780 | # CONFIG_SENSORS_LM90 is not set | 804 | # CONFIG_SENSORS_LM90 is not set |
781 | # CONFIG_SENSORS_LM92 is not set | 805 | # CONFIG_SENSORS_LM92 is not set |
782 | # CONFIG_SENSORS_LM93 is not set | 806 | # CONFIG_SENSORS_LM93 is not set |
807 | # CONFIG_SENSORS_LTC4245 is not set | ||
783 | # CONFIG_SENSORS_MAX1619 is not set | 808 | # CONFIG_SENSORS_MAX1619 is not set |
784 | # CONFIG_SENSORS_MAX6650 is not set | 809 | # CONFIG_SENSORS_MAX6650 is not set |
785 | # CONFIG_SENSORS_PC87360 is not set | 810 | # CONFIG_SENSORS_PC87360 is not set |
@@ -820,11 +845,11 @@ CONFIG_WATCHDOG=y | |||
820 | # | 845 | # |
821 | # CONFIG_PCIPCWATCHDOG is not set | 846 | # CONFIG_PCIPCWATCHDOG is not set |
822 | # CONFIG_WDTPCI is not set | 847 | # CONFIG_WDTPCI is not set |
848 | CONFIG_SSB_POSSIBLE=y | ||
823 | 849 | ||
824 | # | 850 | # |
825 | # Sonics Silicon Backplane | 851 | # Sonics Silicon Backplane |
826 | # | 852 | # |
827 | CONFIG_SSB_POSSIBLE=y | ||
828 | # CONFIG_SSB is not set | 853 | # CONFIG_SSB is not set |
829 | 854 | ||
830 | # | 855 | # |
@@ -833,18 +858,13 @@ CONFIG_SSB_POSSIBLE=y | |||
833 | # CONFIG_MFD_CORE is not set | 858 | # CONFIG_MFD_CORE is not set |
834 | # CONFIG_MFD_SM501 is not set | 859 | # CONFIG_MFD_SM501 is not set |
835 | # CONFIG_HTC_PASIC3 is not set | 860 | # CONFIG_HTC_PASIC3 is not set |
861 | # CONFIG_TWL4030_CORE is not set | ||
836 | # CONFIG_MFD_TMIO is not set | 862 | # CONFIG_MFD_TMIO is not set |
837 | # CONFIG_PMIC_DA903X is not set | 863 | # CONFIG_PMIC_DA903X is not set |
838 | # CONFIG_MFD_WM8400 is not set | 864 | # CONFIG_MFD_WM8400 is not set |
839 | # CONFIG_MFD_WM8350_I2C is not set | 865 | # CONFIG_MFD_WM8350_I2C is not set |
840 | 866 | # CONFIG_MFD_PCF50633 is not set | |
841 | # | ||
842 | # Voltage and Current regulators | ||
843 | # | ||
844 | # CONFIG_REGULATOR is not set | 867 | # CONFIG_REGULATOR is not set |
845 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
846 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
847 | # CONFIG_REGULATOR_BQ24022 is not set | ||
848 | 868 | ||
849 | # | 869 | # |
850 | # Multimedia devices | 870 | # Multimedia devices |
@@ -900,9 +920,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
900 | # | 920 | # |
901 | 921 | ||
902 | # | 922 | # |
903 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 923 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
904 | # | 924 | # |
905 | # CONFIG_USB_GADGET is not set | 925 | # CONFIG_USB_GADGET is not set |
926 | |||
927 | # | ||
928 | # OTG and related infrastructure | ||
929 | # | ||
906 | # CONFIG_UWB is not set | 930 | # CONFIG_UWB is not set |
907 | # CONFIG_MMC is not set | 931 | # CONFIG_MMC is not set |
908 | # CONFIG_MEMSTICK is not set | 932 | # CONFIG_MEMSTICK is not set |
@@ -940,6 +964,7 @@ CONFIG_RTC_DRV_DS1374=y | |||
940 | # CONFIG_RTC_DRV_M41T80 is not set | 964 | # CONFIG_RTC_DRV_M41T80 is not set |
941 | # CONFIG_RTC_DRV_S35390A is not set | 965 | # CONFIG_RTC_DRV_S35390A is not set |
942 | # CONFIG_RTC_DRV_FM3130 is not set | 966 | # CONFIG_RTC_DRV_FM3130 is not set |
967 | # CONFIG_RTC_DRV_RX8581 is not set | ||
943 | 968 | ||
944 | # | 969 | # |
945 | # SPI RTC drivers | 970 | # SPI RTC drivers |
@@ -987,6 +1012,7 @@ CONFIG_FS_MBCACHE=y | |||
987 | CONFIG_FILE_LOCKING=y | 1012 | CONFIG_FILE_LOCKING=y |
988 | # CONFIG_XFS_FS is not set | 1013 | # CONFIG_XFS_FS is not set |
989 | # CONFIG_OCFS2_FS is not set | 1014 | # CONFIG_OCFS2_FS is not set |
1015 | # CONFIG_BTRFS_FS is not set | ||
990 | CONFIG_DNOTIFY=y | 1016 | CONFIG_DNOTIFY=y |
991 | CONFIG_INOTIFY=y | 1017 | CONFIG_INOTIFY=y |
992 | CONFIG_INOTIFY_USER=y | 1018 | CONFIG_INOTIFY_USER=y |
@@ -1020,10 +1046,7 @@ CONFIG_TMPFS=y | |||
1020 | # CONFIG_TMPFS_POSIX_ACL is not set | 1046 | # CONFIG_TMPFS_POSIX_ACL is not set |
1021 | # CONFIG_HUGETLB_PAGE is not set | 1047 | # CONFIG_HUGETLB_PAGE is not set |
1022 | # CONFIG_CONFIGFS_FS is not set | 1048 | # CONFIG_CONFIGFS_FS is not set |
1023 | 1049 | CONFIG_MISC_FILESYSTEMS=y | |
1024 | # | ||
1025 | # Miscellaneous filesystems | ||
1026 | # | ||
1027 | # CONFIG_ADFS_FS is not set | 1050 | # CONFIG_ADFS_FS is not set |
1028 | # CONFIG_AFFS_FS is not set | 1051 | # CONFIG_AFFS_FS is not set |
1029 | # CONFIG_HFS_FS is not set | 1052 | # CONFIG_HFS_FS is not set |
@@ -1032,6 +1055,7 @@ CONFIG_TMPFS=y | |||
1032 | # CONFIG_BFS_FS is not set | 1055 | # CONFIG_BFS_FS is not set |
1033 | # CONFIG_EFS_FS is not set | 1056 | # CONFIG_EFS_FS is not set |
1034 | # CONFIG_CRAMFS is not set | 1057 | # CONFIG_CRAMFS is not set |
1058 | # CONFIG_SQUASHFS is not set | ||
1035 | # CONFIG_VXFS_FS is not set | 1059 | # CONFIG_VXFS_FS is not set |
1036 | # CONFIG_MINIX_FS is not set | 1060 | # CONFIG_MINIX_FS is not set |
1037 | # CONFIG_OMFS_FS is not set | 1061 | # CONFIG_OMFS_FS is not set |
@@ -1087,6 +1111,7 @@ CONFIG_UCC=y | |||
1087 | # Library routines | 1111 | # Library routines |
1088 | # | 1112 | # |
1089 | CONFIG_BITREVERSE=y | 1113 | CONFIG_BITREVERSE=y |
1114 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1090 | # CONFIG_CRC_CCITT is not set | 1115 | # CONFIG_CRC_CCITT is not set |
1091 | # CONFIG_CRC16 is not set | 1116 | # CONFIG_CRC16 is not set |
1092 | # CONFIG_CRC_T10DIF is not set | 1117 | # CONFIG_CRC_T10DIF is not set |
@@ -1120,6 +1145,8 @@ CONFIG_FRAME_WARN=1024 | |||
1120 | # CONFIG_LATENCYTOP is not set | 1145 | # CONFIG_LATENCYTOP is not set |
1121 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1146 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1122 | CONFIG_HAVE_FUNCTION_TRACER=y | 1147 | CONFIG_HAVE_FUNCTION_TRACER=y |
1148 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1149 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1123 | 1150 | ||
1124 | # | 1151 | # |
1125 | # Tracers | 1152 | # Tracers |
@@ -1127,6 +1154,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1127 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1154 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1128 | # CONFIG_SAMPLES is not set | 1155 | # CONFIG_SAMPLES is not set |
1129 | CONFIG_HAVE_ARCH_KGDB=y | 1156 | CONFIG_HAVE_ARCH_KGDB=y |
1157 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1130 | # CONFIG_IRQSTACKS is not set | 1158 | # CONFIG_IRQSTACKS is not set |
1131 | # CONFIG_BOOTX_TEXT is not set | 1159 | # CONFIG_BOOTX_TEXT is not set |
1132 | # CONFIG_PPC_EARLY_DEBUG is not set | 1160 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1145,11 +1173,15 @@ CONFIG_CRYPTO=y | |||
1145 | # | 1173 | # |
1146 | # CONFIG_CRYPTO_FIPS is not set | 1174 | # CONFIG_CRYPTO_FIPS is not set |
1147 | CONFIG_CRYPTO_ALGAPI=y | 1175 | CONFIG_CRYPTO_ALGAPI=y |
1148 | CONFIG_CRYPTO_AEAD=y | 1176 | CONFIG_CRYPTO_ALGAPI2=y |
1177 | CONFIG_CRYPTO_AEAD2=y | ||
1149 | CONFIG_CRYPTO_BLKCIPHER=y | 1178 | CONFIG_CRYPTO_BLKCIPHER=y |
1179 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1150 | CONFIG_CRYPTO_HASH=y | 1180 | CONFIG_CRYPTO_HASH=y |
1151 | CONFIG_CRYPTO_RNG=y | 1181 | CONFIG_CRYPTO_HASH2=y |
1182 | CONFIG_CRYPTO_RNG2=y | ||
1152 | CONFIG_CRYPTO_MANAGER=y | 1183 | CONFIG_CRYPTO_MANAGER=y |
1184 | CONFIG_CRYPTO_MANAGER2=y | ||
1153 | # CONFIG_CRYPTO_GF128MUL is not set | 1185 | # CONFIG_CRYPTO_GF128MUL is not set |
1154 | # CONFIG_CRYPTO_NULL is not set | 1186 | # CONFIG_CRYPTO_NULL is not set |
1155 | # CONFIG_CRYPTO_CRYPTD is not set | 1187 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/83xx/mpc832x_rdb_defconfig b/arch/powerpc/configs/83xx/mpc832x_rdb_defconfig index 90c482606880..a012ce235203 100644 --- a/arch/powerpc/configs/83xx/mpc832x_rdb_defconfig +++ b/arch/powerpc/configs/83xx/mpc832x_rdb_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:54 2008 | 4 | # Mon Jan 26 15:35:52 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -75,12 +75,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 79 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -113,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
113 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
114 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
119 | CONFIG_HAVE_IOREMAP_PROT=y | 118 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -123,7 +122,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
124 | CONFIG_SLABINFO=y | 123 | CONFIG_SLABINFO=y |
125 | CONFIG_RT_MUTEXES=y | 124 | CONFIG_RT_MUTEXES=y |
126 | # CONFIG_TINY_SHMEM is not set | ||
127 | CONFIG_BASE_SMALL=0 | 125 | CONFIG_BASE_SMALL=0 |
128 | CONFIG_MODULES=y | 126 | CONFIG_MODULES=y |
129 | # CONFIG_MODULE_FORCE_LOAD is not set | 127 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -131,11 +129,9 @@ CONFIG_MODULE_UNLOAD=y | |||
131 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 129 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
132 | # CONFIG_MODVERSIONS is not set | 130 | # CONFIG_MODVERSIONS is not set |
133 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
134 | CONFIG_KMOD=y | ||
135 | CONFIG_BLOCK=y | 132 | CONFIG_BLOCK=y |
136 | # CONFIG_LBD is not set | 133 | # CONFIG_LBD is not set |
137 | # CONFIG_BLK_DEV_IO_TRACE is not set | 134 | # CONFIG_BLK_DEV_IO_TRACE is not set |
138 | # CONFIG_LSF is not set | ||
139 | # CONFIG_BLK_DEV_BSG is not set | 135 | # CONFIG_BLK_DEV_BSG is not set |
140 | # CONFIG_BLK_DEV_INTEGRITY is not set | 136 | # CONFIG_BLK_DEV_INTEGRITY is not set |
141 | 137 | ||
@@ -152,6 +148,10 @@ CONFIG_DEFAULT_AS=y | |||
152 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
153 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
154 | CONFIG_CLASSIC_RCU=y | 150 | CONFIG_CLASSIC_RCU=y |
151 | # CONFIG_TREE_RCU is not set | ||
152 | # CONFIG_PREEMPT_RCU is not set | ||
153 | # CONFIG_TREE_RCU_TRACE is not set | ||
154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
155 | # CONFIG_FREEZER is not set | 155 | # CONFIG_FREEZER is not set |
156 | 156 | ||
157 | # | 157 | # |
@@ -198,6 +198,8 @@ CONFIG_IPIC=y | |||
198 | CONFIG_QUICC_ENGINE=y | 198 | CONFIG_QUICC_ENGINE=y |
199 | # CONFIG_QE_GPIO is not set | 199 | # CONFIG_QE_GPIO is not set |
200 | # CONFIG_FSL_ULI1575 is not set | 200 | # CONFIG_FSL_ULI1575 is not set |
201 | # CONFIG_SIMPLE_GPIO is not set | ||
202 | # CONFIG_MCU_MPC8349EMITX is not set | ||
201 | 203 | ||
202 | # | 204 | # |
203 | # Kernel options | 205 | # Kernel options |
@@ -226,6 +228,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
226 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 228 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
227 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 229 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
228 | # CONFIG_KEXEC is not set | 230 | # CONFIG_KEXEC is not set |
231 | # CONFIG_CRASH_DUMP is not set | ||
229 | CONFIG_ARCH_FLATMEM_ENABLE=y | 232 | CONFIG_ARCH_FLATMEM_ENABLE=y |
230 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 233 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
231 | CONFIG_SELECT_MEMORY_MODEL=y | 234 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -237,12 +240,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
237 | CONFIG_PAGEFLAGS_EXTENDED=y | 240 | CONFIG_PAGEFLAGS_EXTENDED=y |
238 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 241 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
239 | CONFIG_MIGRATION=y | 242 | CONFIG_MIGRATION=y |
240 | # CONFIG_RESOURCES_64BIT is not set | ||
241 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 243 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
242 | CONFIG_ZONE_DMA_FLAG=1 | 244 | CONFIG_ZONE_DMA_FLAG=1 |
243 | CONFIG_BOUNCE=y | 245 | CONFIG_BOUNCE=y |
244 | CONFIG_VIRT_TO_BUS=y | 246 | CONFIG_VIRT_TO_BUS=y |
245 | CONFIG_UNEVICTABLE_LRU=y | 247 | CONFIG_UNEVICTABLE_LRU=y |
248 | CONFIG_PPC_4K_PAGES=y | ||
249 | # CONFIG_PPC_16K_PAGES is not set | ||
250 | # CONFIG_PPC_64K_PAGES is not set | ||
246 | CONFIG_FORCE_MAX_ZONEORDER=11 | 251 | CONFIG_FORCE_MAX_ZONEORDER=11 |
247 | CONFIG_PROC_DEVICETREE=y | 252 | CONFIG_PROC_DEVICETREE=y |
248 | # CONFIG_CMDLINE_BOOL is not set | 253 | # CONFIG_CMDLINE_BOOL is not set |
@@ -267,6 +272,7 @@ CONFIG_PCI_SYSCALL=y | |||
267 | CONFIG_ARCH_SUPPORTS_MSI=y | 272 | CONFIG_ARCH_SUPPORTS_MSI=y |
268 | # CONFIG_PCI_MSI is not set | 273 | # CONFIG_PCI_MSI is not set |
269 | # CONFIG_PCI_LEGACY is not set | 274 | # CONFIG_PCI_LEGACY is not set |
275 | # CONFIG_PCI_STUB is not set | ||
270 | # CONFIG_PCCARD is not set | 276 | # CONFIG_PCCARD is not set |
271 | # CONFIG_HOTPLUG_PCI is not set | 277 | # CONFIG_HOTPLUG_PCI is not set |
272 | # CONFIG_HAS_RAPIDIO is not set | 278 | # CONFIG_HAS_RAPIDIO is not set |
@@ -289,6 +295,7 @@ CONFIG_NET=y | |||
289 | # | 295 | # |
290 | # Networking options | 296 | # Networking options |
291 | # | 297 | # |
298 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
292 | CONFIG_PACKET=y | 299 | CONFIG_PACKET=y |
293 | # CONFIG_PACKET_MMAP is not set | 300 | # CONFIG_PACKET_MMAP is not set |
294 | CONFIG_UNIX=y | 301 | CONFIG_UNIX=y |
@@ -345,6 +352,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
345 | # CONFIG_ECONET is not set | 352 | # CONFIG_ECONET is not set |
346 | # CONFIG_WAN_ROUTER is not set | 353 | # CONFIG_WAN_ROUTER is not set |
347 | # CONFIG_NET_SCHED is not set | 354 | # CONFIG_NET_SCHED is not set |
355 | # CONFIG_DCB is not set | ||
348 | 356 | ||
349 | # | 357 | # |
350 | # Network testing | 358 | # Network testing |
@@ -360,8 +368,9 @@ CONFIG_WIRELESS=y | |||
360 | # CONFIG_CFG80211 is not set | 368 | # CONFIG_CFG80211 is not set |
361 | CONFIG_WIRELESS_OLD_REGULATORY=y | 369 | CONFIG_WIRELESS_OLD_REGULATORY=y |
362 | # CONFIG_WIRELESS_EXT is not set | 370 | # CONFIG_WIRELESS_EXT is not set |
371 | # CONFIG_LIB80211 is not set | ||
363 | # CONFIG_MAC80211 is not set | 372 | # CONFIG_MAC80211 is not set |
364 | # CONFIG_IEEE80211 is not set | 373 | # CONFIG_WIMAX is not set |
365 | # CONFIG_RFKILL is not set | 374 | # CONFIG_RFKILL is not set |
366 | # CONFIG_NET_9P is not set | 375 | # CONFIG_NET_9P is not set |
367 | 376 | ||
@@ -407,8 +416,10 @@ CONFIG_MISC_DEVICES=y | |||
407 | # CONFIG_EEPROM_93CX6 is not set | 416 | # CONFIG_EEPROM_93CX6 is not set |
408 | # CONFIG_SGI_IOC4 is not set | 417 | # CONFIG_SGI_IOC4 is not set |
409 | # CONFIG_TIFM_CORE is not set | 418 | # CONFIG_TIFM_CORE is not set |
419 | # CONFIG_ICS932S401 is not set | ||
410 | # CONFIG_ENCLOSURE_SERVICES is not set | 420 | # CONFIG_ENCLOSURE_SERVICES is not set |
411 | # CONFIG_HP_ILO is not set | 421 | # CONFIG_HP_ILO is not set |
422 | # CONFIG_C2PORT is not set | ||
412 | CONFIG_HAVE_IDE=y | 423 | CONFIG_HAVE_IDE=y |
413 | # CONFIG_IDE is not set | 424 | # CONFIG_IDE is not set |
414 | 425 | ||
@@ -451,6 +462,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
451 | # CONFIG_SCSI_SRP_ATTRS is not set | 462 | # CONFIG_SCSI_SRP_ATTRS is not set |
452 | CONFIG_SCSI_LOWLEVEL=y | 463 | CONFIG_SCSI_LOWLEVEL=y |
453 | # CONFIG_ISCSI_TCP is not set | 464 | # CONFIG_ISCSI_TCP is not set |
465 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
454 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 466 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
455 | # CONFIG_SCSI_3W_9XXX is not set | 467 | # CONFIG_SCSI_3W_9XXX is not set |
456 | # CONFIG_SCSI_ACARD is not set | 468 | # CONFIG_SCSI_ACARD is not set |
@@ -467,6 +479,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
467 | # CONFIG_MEGARAID_SAS is not set | 479 | # CONFIG_MEGARAID_SAS is not set |
468 | # CONFIG_SCSI_HPTIOP is not set | 480 | # CONFIG_SCSI_HPTIOP is not set |
469 | # CONFIG_SCSI_BUSLOGIC is not set | 481 | # CONFIG_SCSI_BUSLOGIC is not set |
482 | # CONFIG_LIBFC is not set | ||
483 | # CONFIG_FCOE is not set | ||
470 | # CONFIG_SCSI_DMX3191D is not set | 484 | # CONFIG_SCSI_DMX3191D is not set |
471 | # CONFIG_SCSI_EATA is not set | 485 | # CONFIG_SCSI_EATA is not set |
472 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 486 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -525,6 +539,9 @@ CONFIG_PHYLIB=y | |||
525 | # CONFIG_BROADCOM_PHY is not set | 539 | # CONFIG_BROADCOM_PHY is not set |
526 | CONFIG_ICPLUS_PHY=y | 540 | CONFIG_ICPLUS_PHY=y |
527 | # CONFIG_REALTEK_PHY is not set | 541 | # CONFIG_REALTEK_PHY is not set |
542 | # CONFIG_NATIONAL_PHY is not set | ||
543 | # CONFIG_STE10XP is not set | ||
544 | # CONFIG_LSI_ET1011C_PHY is not set | ||
528 | # CONFIG_FIXED_PHY is not set | 545 | # CONFIG_FIXED_PHY is not set |
529 | # CONFIG_MDIO_BITBANG is not set | 546 | # CONFIG_MDIO_BITBANG is not set |
530 | CONFIG_NET_ETHERNET=y | 547 | CONFIG_NET_ETHERNET=y |
@@ -566,7 +583,6 @@ CONFIG_E1000=y | |||
566 | # CONFIG_GIANFAR is not set | 583 | # CONFIG_GIANFAR is not set |
567 | CONFIG_UCC_GETH=y | 584 | CONFIG_UCC_GETH=y |
568 | # CONFIG_UGETH_MAGIC_PACKET is not set | 585 | # CONFIG_UGETH_MAGIC_PACKET is not set |
569 | # CONFIG_UGETH_FILTERING is not set | ||
570 | # CONFIG_UGETH_TX_ON_DEMAND is not set | 586 | # CONFIG_UGETH_TX_ON_DEMAND is not set |
571 | # CONFIG_MV643XX_ETH is not set | 587 | # CONFIG_MV643XX_ETH is not set |
572 | # CONFIG_QLA3XXX is not set | 588 | # CONFIG_QLA3XXX is not set |
@@ -575,6 +591,7 @@ CONFIG_UCC_GETH=y | |||
575 | # CONFIG_JME is not set | 591 | # CONFIG_JME is not set |
576 | CONFIG_NETDEV_10000=y | 592 | CONFIG_NETDEV_10000=y |
577 | # CONFIG_CHELSIO_T1 is not set | 593 | # CONFIG_CHELSIO_T1 is not set |
594 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
578 | # CONFIG_CHELSIO_T3 is not set | 595 | # CONFIG_CHELSIO_T3 is not set |
579 | # CONFIG_ENIC is not set | 596 | # CONFIG_ENIC is not set |
580 | # CONFIG_IXGBE is not set | 597 | # CONFIG_IXGBE is not set |
@@ -599,6 +616,10 @@ CONFIG_NETDEV_10000=y | |||
599 | # CONFIG_IWLWIFI_LEDS is not set | 616 | # CONFIG_IWLWIFI_LEDS is not set |
600 | 617 | ||
601 | # | 618 | # |
619 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
620 | # | ||
621 | |||
622 | # | ||
602 | # USB Network Adapters | 623 | # USB Network Adapters |
603 | # | 624 | # |
604 | # CONFIG_USB_CATC is not set | 625 | # CONFIG_USB_CATC is not set |
@@ -677,8 +698,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
677 | # CONFIG_SERIAL_OF_PLATFORM is not set | 698 | # CONFIG_SERIAL_OF_PLATFORM is not set |
678 | # CONFIG_SERIAL_QE is not set | 699 | # CONFIG_SERIAL_QE is not set |
679 | CONFIG_UNIX98_PTYS=y | 700 | CONFIG_UNIX98_PTYS=y |
701 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
680 | CONFIG_LEGACY_PTYS=y | 702 | CONFIG_LEGACY_PTYS=y |
681 | CONFIG_LEGACY_PTY_COUNT=256 | 703 | CONFIG_LEGACY_PTY_COUNT=256 |
704 | # CONFIG_HVC_UDBG is not set | ||
682 | # CONFIG_IPMI_HANDLER is not set | 705 | # CONFIG_IPMI_HANDLER is not set |
683 | CONFIG_HW_RANDOM=y | 706 | CONFIG_HW_RANDOM=y |
684 | # CONFIG_NVRAM is not set | 707 | # CONFIG_NVRAM is not set |
@@ -753,7 +776,6 @@ CONFIG_I2C_MPC=y | |||
753 | # CONFIG_SENSORS_PCF8591 is not set | 776 | # CONFIG_SENSORS_PCF8591 is not set |
754 | # CONFIG_SENSORS_MAX6875 is not set | 777 | # CONFIG_SENSORS_MAX6875 is not set |
755 | # CONFIG_SENSORS_TSL2550 is not set | 778 | # CONFIG_SENSORS_TSL2550 is not set |
756 | # CONFIG_MCU_MPC8349EMITX is not set | ||
757 | # CONFIG_I2C_DEBUG_CORE is not set | 779 | # CONFIG_I2C_DEBUG_CORE is not set |
758 | # CONFIG_I2C_DEBUG_ALGO is not set | 780 | # CONFIG_I2C_DEBUG_ALGO is not set |
759 | # CONFIG_I2C_DEBUG_BUS is not set | 781 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -788,8 +810,10 @@ CONFIG_HWMON=y | |||
788 | # CONFIG_SENSORS_ADM1029 is not set | 810 | # CONFIG_SENSORS_ADM1029 is not set |
789 | # CONFIG_SENSORS_ADM1031 is not set | 811 | # CONFIG_SENSORS_ADM1031 is not set |
790 | # CONFIG_SENSORS_ADM9240 is not set | 812 | # CONFIG_SENSORS_ADM9240 is not set |
813 | # CONFIG_SENSORS_ADT7462 is not set | ||
791 | # CONFIG_SENSORS_ADT7470 is not set | 814 | # CONFIG_SENSORS_ADT7470 is not set |
792 | # CONFIG_SENSORS_ADT7473 is not set | 815 | # CONFIG_SENSORS_ADT7473 is not set |
816 | # CONFIG_SENSORS_ADT7475 is not set | ||
793 | # CONFIG_SENSORS_ATXP1 is not set | 817 | # CONFIG_SENSORS_ATXP1 is not set |
794 | # CONFIG_SENSORS_DS1621 is not set | 818 | # CONFIG_SENSORS_DS1621 is not set |
795 | # CONFIG_SENSORS_I5K_AMB is not set | 819 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -811,6 +835,7 @@ CONFIG_HWMON=y | |||
811 | # CONFIG_SENSORS_LM90 is not set | 835 | # CONFIG_SENSORS_LM90 is not set |
812 | # CONFIG_SENSORS_LM92 is not set | 836 | # CONFIG_SENSORS_LM92 is not set |
813 | # CONFIG_SENSORS_LM93 is not set | 837 | # CONFIG_SENSORS_LM93 is not set |
838 | # CONFIG_SENSORS_LTC4245 is not set | ||
814 | # CONFIG_SENSORS_MAX1111 is not set | 839 | # CONFIG_SENSORS_MAX1111 is not set |
815 | # CONFIG_SENSORS_MAX1619 is not set | 840 | # CONFIG_SENSORS_MAX1619 is not set |
816 | # CONFIG_SENSORS_MAX6650 is not set | 841 | # CONFIG_SENSORS_MAX6650 is not set |
@@ -857,11 +882,11 @@ CONFIG_WATCHDOG=y | |||
857 | # USB-based Watchdog Cards | 882 | # USB-based Watchdog Cards |
858 | # | 883 | # |
859 | # CONFIG_USBPCWATCHDOG is not set | 884 | # CONFIG_USBPCWATCHDOG is not set |
885 | CONFIG_SSB_POSSIBLE=y | ||
860 | 886 | ||
861 | # | 887 | # |
862 | # Sonics Silicon Backplane | 888 | # Sonics Silicon Backplane |
863 | # | 889 | # |
864 | CONFIG_SSB_POSSIBLE=y | ||
865 | # CONFIG_SSB is not set | 890 | # CONFIG_SSB is not set |
866 | 891 | ||
867 | # | 892 | # |
@@ -870,18 +895,13 @@ CONFIG_SSB_POSSIBLE=y | |||
870 | # CONFIG_MFD_CORE is not set | 895 | # CONFIG_MFD_CORE is not set |
871 | # CONFIG_MFD_SM501 is not set | 896 | # CONFIG_MFD_SM501 is not set |
872 | # CONFIG_HTC_PASIC3 is not set | 897 | # CONFIG_HTC_PASIC3 is not set |
898 | # CONFIG_TWL4030_CORE is not set | ||
873 | # CONFIG_MFD_TMIO is not set | 899 | # CONFIG_MFD_TMIO is not set |
874 | # CONFIG_PMIC_DA903X is not set | 900 | # CONFIG_PMIC_DA903X is not set |
875 | # CONFIG_MFD_WM8400 is not set | 901 | # CONFIG_MFD_WM8400 is not set |
876 | # CONFIG_MFD_WM8350_I2C is not set | 902 | # CONFIG_MFD_WM8350_I2C is not set |
877 | 903 | # CONFIG_MFD_PCF50633 is not set | |
878 | # | ||
879 | # Voltage and Current regulators | ||
880 | # | ||
881 | # CONFIG_REGULATOR is not set | 904 | # CONFIG_REGULATOR is not set |
882 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
883 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
884 | # CONFIG_REGULATOR_BQ24022 is not set | ||
885 | 905 | ||
886 | # | 906 | # |
887 | # Multimedia devices | 907 | # Multimedia devices |
@@ -966,6 +986,7 @@ CONFIG_USB_EHCI_HCD=y | |||
966 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 986 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
967 | # CONFIG_USB_EHCI_FSL is not set | 987 | # CONFIG_USB_EHCI_FSL is not set |
968 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 988 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
989 | # CONFIG_USB_OXU210HP_HCD is not set | ||
969 | # CONFIG_USB_ISP116X_HCD is not set | 990 | # CONFIG_USB_ISP116X_HCD is not set |
970 | # CONFIG_USB_ISP1760_HCD is not set | 991 | # CONFIG_USB_ISP1760_HCD is not set |
971 | CONFIG_USB_OHCI_HCD=y | 992 | CONFIG_USB_OHCI_HCD=y |
@@ -991,18 +1012,17 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
991 | # CONFIG_USB_TMC is not set | 1012 | # CONFIG_USB_TMC is not set |
992 | 1013 | ||
993 | # | 1014 | # |
994 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1015 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
995 | # | 1016 | # |
996 | 1017 | ||
997 | # | 1018 | # |
998 | # may also be needed; see USB_STORAGE Help for more information | 1019 | # see USB_STORAGE Help for more information |
999 | # | 1020 | # |
1000 | CONFIG_USB_STORAGE=y | 1021 | CONFIG_USB_STORAGE=y |
1001 | # CONFIG_USB_STORAGE_DEBUG is not set | 1022 | # CONFIG_USB_STORAGE_DEBUG is not set |
1002 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1023 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1003 | # CONFIG_USB_STORAGE_FREECOM is not set | 1024 | # CONFIG_USB_STORAGE_FREECOM is not set |
1004 | # CONFIG_USB_STORAGE_ISD200 is not set | 1025 | # CONFIG_USB_STORAGE_ISD200 is not set |
1005 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1006 | # CONFIG_USB_STORAGE_USBAT is not set | 1026 | # CONFIG_USB_STORAGE_USBAT is not set |
1007 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1027 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1008 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1028 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1050,6 +1070,10 @@ CONFIG_USB_STORAGE=y | |||
1050 | # CONFIG_USB_ISIGHTFW is not set | 1070 | # CONFIG_USB_ISIGHTFW is not set |
1051 | # CONFIG_USB_VST is not set | 1071 | # CONFIG_USB_VST is not set |
1052 | # CONFIG_USB_GADGET is not set | 1072 | # CONFIG_USB_GADGET is not set |
1073 | |||
1074 | # | ||
1075 | # OTG and related infrastructure | ||
1076 | # | ||
1053 | # CONFIG_UWB is not set | 1077 | # CONFIG_UWB is not set |
1054 | CONFIG_MMC=y | 1078 | CONFIG_MMC=y |
1055 | # CONFIG_MMC_DEBUG is not set | 1079 | # CONFIG_MMC_DEBUG is not set |
@@ -1099,6 +1123,7 @@ CONFIG_FS_MBCACHE=y | |||
1099 | CONFIG_FILE_LOCKING=y | 1123 | CONFIG_FILE_LOCKING=y |
1100 | # CONFIG_XFS_FS is not set | 1124 | # CONFIG_XFS_FS is not set |
1101 | # CONFIG_OCFS2_FS is not set | 1125 | # CONFIG_OCFS2_FS is not set |
1126 | # CONFIG_BTRFS_FS is not set | ||
1102 | CONFIG_DNOTIFY=y | 1127 | CONFIG_DNOTIFY=y |
1103 | CONFIG_INOTIFY=y | 1128 | CONFIG_INOTIFY=y |
1104 | CONFIG_INOTIFY_USER=y | 1129 | CONFIG_INOTIFY_USER=y |
@@ -1135,10 +1160,7 @@ CONFIG_TMPFS=y | |||
1135 | # CONFIG_TMPFS_POSIX_ACL is not set | 1160 | # CONFIG_TMPFS_POSIX_ACL is not set |
1136 | # CONFIG_HUGETLB_PAGE is not set | 1161 | # CONFIG_HUGETLB_PAGE is not set |
1137 | # CONFIG_CONFIGFS_FS is not set | 1162 | # CONFIG_CONFIGFS_FS is not set |
1138 | 1163 | CONFIG_MISC_FILESYSTEMS=y | |
1139 | # | ||
1140 | # Miscellaneous filesystems | ||
1141 | # | ||
1142 | # CONFIG_ADFS_FS is not set | 1164 | # CONFIG_ADFS_FS is not set |
1143 | # CONFIG_AFFS_FS is not set | 1165 | # CONFIG_AFFS_FS is not set |
1144 | # CONFIG_HFS_FS is not set | 1166 | # CONFIG_HFS_FS is not set |
@@ -1147,6 +1169,7 @@ CONFIG_TMPFS=y | |||
1147 | # CONFIG_BFS_FS is not set | 1169 | # CONFIG_BFS_FS is not set |
1148 | # CONFIG_EFS_FS is not set | 1170 | # CONFIG_EFS_FS is not set |
1149 | # CONFIG_CRAMFS is not set | 1171 | # CONFIG_CRAMFS is not set |
1172 | # CONFIG_SQUASHFS is not set | ||
1150 | # CONFIG_VXFS_FS is not set | 1173 | # CONFIG_VXFS_FS is not set |
1151 | # CONFIG_MINIX_FS is not set | 1174 | # CONFIG_MINIX_FS is not set |
1152 | # CONFIG_OMFS_FS is not set | 1175 | # CONFIG_OMFS_FS is not set |
@@ -1246,6 +1269,7 @@ CONFIG_UCC=y | |||
1246 | # Library routines | 1269 | # Library routines |
1247 | # | 1270 | # |
1248 | CONFIG_BITREVERSE=y | 1271 | CONFIG_BITREVERSE=y |
1272 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1249 | # CONFIG_CRC_CCITT is not set | 1273 | # CONFIG_CRC_CCITT is not set |
1250 | # CONFIG_CRC16 is not set | 1274 | # CONFIG_CRC16 is not set |
1251 | CONFIG_CRC_T10DIF=y | 1275 | CONFIG_CRC_T10DIF=y |
@@ -1279,6 +1303,8 @@ CONFIG_FRAME_WARN=1024 | |||
1279 | # CONFIG_LATENCYTOP is not set | 1303 | # CONFIG_LATENCYTOP is not set |
1280 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1304 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1281 | CONFIG_HAVE_FUNCTION_TRACER=y | 1305 | CONFIG_HAVE_FUNCTION_TRACER=y |
1306 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1307 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1282 | 1308 | ||
1283 | # | 1309 | # |
1284 | # Tracers | 1310 | # Tracers |
@@ -1286,6 +1312,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1286 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1312 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1287 | # CONFIG_SAMPLES is not set | 1313 | # CONFIG_SAMPLES is not set |
1288 | CONFIG_HAVE_ARCH_KGDB=y | 1314 | CONFIG_HAVE_ARCH_KGDB=y |
1315 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1289 | # CONFIG_IRQSTACKS is not set | 1316 | # CONFIG_IRQSTACKS is not set |
1290 | # CONFIG_BOOTX_TEXT is not set | 1317 | # CONFIG_BOOTX_TEXT is not set |
1291 | # CONFIG_PPC_EARLY_DEBUG is not set | 1318 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1304,11 +1331,15 @@ CONFIG_CRYPTO=y | |||
1304 | # | 1331 | # |
1305 | # CONFIG_CRYPTO_FIPS is not set | 1332 | # CONFIG_CRYPTO_FIPS is not set |
1306 | CONFIG_CRYPTO_ALGAPI=y | 1333 | CONFIG_CRYPTO_ALGAPI=y |
1307 | CONFIG_CRYPTO_AEAD=y | 1334 | CONFIG_CRYPTO_ALGAPI2=y |
1335 | CONFIG_CRYPTO_AEAD2=y | ||
1308 | CONFIG_CRYPTO_BLKCIPHER=y | 1336 | CONFIG_CRYPTO_BLKCIPHER=y |
1337 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1309 | CONFIG_CRYPTO_HASH=y | 1338 | CONFIG_CRYPTO_HASH=y |
1310 | CONFIG_CRYPTO_RNG=y | 1339 | CONFIG_CRYPTO_HASH2=y |
1340 | CONFIG_CRYPTO_RNG2=y | ||
1311 | CONFIG_CRYPTO_MANAGER=y | 1341 | CONFIG_CRYPTO_MANAGER=y |
1342 | CONFIG_CRYPTO_MANAGER2=y | ||
1312 | # CONFIG_CRYPTO_GF128MUL is not set | 1343 | # CONFIG_CRYPTO_GF128MUL is not set |
1313 | # CONFIG_CRYPTO_NULL is not set | 1344 | # CONFIG_CRYPTO_NULL is not set |
1314 | # CONFIG_CRYPTO_CRYPTD is not set | 1345 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/83xx/mpc834x_itx_defconfig b/arch/powerpc/configs/83xx/mpc834x_itx_defconfig index 42b7f3403fb0..4bcc4a1ff308 100644 --- a/arch/powerpc/configs/83xx/mpc834x_itx_defconfig +++ b/arch/powerpc/configs/83xx/mpc834x_itx_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:56 2008 | 4 | # Mon Jan 26 15:35:53 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -75,12 +75,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 79 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -113,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
113 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
114 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
119 | CONFIG_HAVE_IOREMAP_PROT=y | 118 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -123,7 +122,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
124 | CONFIG_SLABINFO=y | 123 | CONFIG_SLABINFO=y |
125 | CONFIG_RT_MUTEXES=y | 124 | CONFIG_RT_MUTEXES=y |
126 | # CONFIG_TINY_SHMEM is not set | ||
127 | CONFIG_BASE_SMALL=0 | 125 | CONFIG_BASE_SMALL=0 |
128 | CONFIG_MODULES=y | 126 | CONFIG_MODULES=y |
129 | # CONFIG_MODULE_FORCE_LOAD is not set | 127 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -131,11 +129,9 @@ CONFIG_MODULE_UNLOAD=y | |||
131 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 129 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
132 | # CONFIG_MODVERSIONS is not set | 130 | # CONFIG_MODVERSIONS is not set |
133 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
134 | CONFIG_KMOD=y | ||
135 | CONFIG_BLOCK=y | 132 | CONFIG_BLOCK=y |
136 | # CONFIG_LBD is not set | 133 | # CONFIG_LBD is not set |
137 | # CONFIG_BLK_DEV_IO_TRACE is not set | 134 | # CONFIG_BLK_DEV_IO_TRACE is not set |
138 | # CONFIG_LSF is not set | ||
139 | # CONFIG_BLK_DEV_BSG is not set | 135 | # CONFIG_BLK_DEV_BSG is not set |
140 | # CONFIG_BLK_DEV_INTEGRITY is not set | 136 | # CONFIG_BLK_DEV_INTEGRITY is not set |
141 | 137 | ||
@@ -152,6 +148,10 @@ CONFIG_DEFAULT_AS=y | |||
152 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
153 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
154 | CONFIG_CLASSIC_RCU=y | 150 | CONFIG_CLASSIC_RCU=y |
151 | # CONFIG_TREE_RCU is not set | ||
152 | # CONFIG_PREEMPT_RCU is not set | ||
153 | # CONFIG_TREE_RCU_TRACE is not set | ||
154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
155 | # CONFIG_FREEZER is not set | 155 | # CONFIG_FREEZER is not set |
156 | 156 | ||
157 | # | 157 | # |
@@ -198,6 +198,8 @@ CONFIG_IPIC=y | |||
198 | # CONFIG_QUICC_ENGINE is not set | 198 | # CONFIG_QUICC_ENGINE is not set |
199 | # CONFIG_FSL_ULI1575 is not set | 199 | # CONFIG_FSL_ULI1575 is not set |
200 | # CONFIG_MPC8xxx_GPIO is not set | 200 | # CONFIG_MPC8xxx_GPIO is not set |
201 | # CONFIG_SIMPLE_GPIO is not set | ||
202 | # CONFIG_MCU_MPC8349EMITX is not set | ||
201 | 203 | ||
202 | # | 204 | # |
203 | # Kernel options | 205 | # Kernel options |
@@ -225,6 +227,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
225 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 227 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
226 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 228 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
227 | # CONFIG_KEXEC is not set | 229 | # CONFIG_KEXEC is not set |
230 | # CONFIG_CRASH_DUMP is not set | ||
228 | CONFIG_ARCH_FLATMEM_ENABLE=y | 231 | CONFIG_ARCH_FLATMEM_ENABLE=y |
229 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 232 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
230 | CONFIG_SELECT_MEMORY_MODEL=y | 233 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -236,12 +239,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
236 | CONFIG_PAGEFLAGS_EXTENDED=y | 239 | CONFIG_PAGEFLAGS_EXTENDED=y |
237 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 240 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
238 | CONFIG_MIGRATION=y | 241 | CONFIG_MIGRATION=y |
239 | # CONFIG_RESOURCES_64BIT is not set | ||
240 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 242 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
241 | CONFIG_ZONE_DMA_FLAG=1 | 243 | CONFIG_ZONE_DMA_FLAG=1 |
242 | CONFIG_BOUNCE=y | 244 | CONFIG_BOUNCE=y |
243 | CONFIG_VIRT_TO_BUS=y | 245 | CONFIG_VIRT_TO_BUS=y |
244 | CONFIG_UNEVICTABLE_LRU=y | 246 | CONFIG_UNEVICTABLE_LRU=y |
247 | CONFIG_PPC_4K_PAGES=y | ||
248 | # CONFIG_PPC_16K_PAGES is not set | ||
249 | # CONFIG_PPC_64K_PAGES is not set | ||
245 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
246 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
247 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
@@ -266,6 +271,7 @@ CONFIG_PCI_SYSCALL=y | |||
266 | CONFIG_ARCH_SUPPORTS_MSI=y | 271 | CONFIG_ARCH_SUPPORTS_MSI=y |
267 | # CONFIG_PCI_MSI is not set | 272 | # CONFIG_PCI_MSI is not set |
268 | # CONFIG_PCI_LEGACY is not set | 273 | # CONFIG_PCI_LEGACY is not set |
274 | # CONFIG_PCI_STUB is not set | ||
269 | # CONFIG_PCCARD is not set | 275 | # CONFIG_PCCARD is not set |
270 | # CONFIG_HOTPLUG_PCI is not set | 276 | # CONFIG_HOTPLUG_PCI is not set |
271 | # CONFIG_HAS_RAPIDIO is not set | 277 | # CONFIG_HAS_RAPIDIO is not set |
@@ -288,6 +294,7 @@ CONFIG_NET=y | |||
288 | # | 294 | # |
289 | # Networking options | 295 | # Networking options |
290 | # | 296 | # |
297 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
291 | CONFIG_PACKET=y | 298 | CONFIG_PACKET=y |
292 | # CONFIG_PACKET_MMAP is not set | 299 | # CONFIG_PACKET_MMAP is not set |
293 | CONFIG_UNIX=y | 300 | CONFIG_UNIX=y |
@@ -344,6 +351,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
344 | # CONFIG_ECONET is not set | 351 | # CONFIG_ECONET is not set |
345 | # CONFIG_WAN_ROUTER is not set | 352 | # CONFIG_WAN_ROUTER is not set |
346 | # CONFIG_NET_SCHED is not set | 353 | # CONFIG_NET_SCHED is not set |
354 | # CONFIG_DCB is not set | ||
347 | 355 | ||
348 | # | 356 | # |
349 | # Network testing | 357 | # Network testing |
@@ -359,8 +367,9 @@ CONFIG_WIRELESS=y | |||
359 | # CONFIG_CFG80211 is not set | 367 | # CONFIG_CFG80211 is not set |
360 | CONFIG_WIRELESS_OLD_REGULATORY=y | 368 | CONFIG_WIRELESS_OLD_REGULATORY=y |
361 | # CONFIG_WIRELESS_EXT is not set | 369 | # CONFIG_WIRELESS_EXT is not set |
370 | # CONFIG_LIB80211 is not set | ||
362 | # CONFIG_MAC80211 is not set | 371 | # CONFIG_MAC80211 is not set |
363 | # CONFIG_IEEE80211 is not set | 372 | # CONFIG_WIMAX is not set |
364 | # CONFIG_RFKILL is not set | 373 | # CONFIG_RFKILL is not set |
365 | # CONFIG_NET_9P is not set | 374 | # CONFIG_NET_9P is not set |
366 | 375 | ||
@@ -381,6 +390,7 @@ CONFIG_MTD=y | |||
381 | # CONFIG_MTD_DEBUG is not set | 390 | # CONFIG_MTD_DEBUG is not set |
382 | # CONFIG_MTD_CONCAT is not set | 391 | # CONFIG_MTD_CONCAT is not set |
383 | # CONFIG_MTD_PARTITIONS is not set | 392 | # CONFIG_MTD_PARTITIONS is not set |
393 | # CONFIG_MTD_TESTS is not set | ||
384 | 394 | ||
385 | # | 395 | # |
386 | # User Modules And Translation Layers | 396 | # User Modules And Translation Layers |
@@ -426,9 +436,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
426 | # | 436 | # |
427 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | 437 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
428 | CONFIG_MTD_PHYSMAP=y | 438 | CONFIG_MTD_PHYSMAP=y |
429 | CONFIG_MTD_PHYSMAP_START=0xfe000000 | 439 | # CONFIG_MTD_PHYSMAP_COMPAT is not set |
430 | CONFIG_MTD_PHYSMAP_LEN=0x1000000 | ||
431 | CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | ||
432 | # CONFIG_MTD_PHYSMAP_OF is not set | 440 | # CONFIG_MTD_PHYSMAP_OF is not set |
433 | # CONFIG_MTD_INTEL_VR_NOR is not set | 441 | # CONFIG_MTD_INTEL_VR_NOR is not set |
434 | # CONFIG_MTD_PLATRAM is not set | 442 | # CONFIG_MTD_PLATRAM is not set |
@@ -454,6 +462,12 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | |||
454 | # CONFIG_MTD_ONENAND is not set | 462 | # CONFIG_MTD_ONENAND is not set |
455 | 463 | ||
456 | # | 464 | # |
465 | # LPDDR flash memory drivers | ||
466 | # | ||
467 | # CONFIG_MTD_LPDDR is not set | ||
468 | # CONFIG_MTD_QINFO_PROBE is not set | ||
469 | |||
470 | # | ||
457 | # UBI - Unsorted block images | 471 | # UBI - Unsorted block images |
458 | # | 472 | # |
459 | # CONFIG_MTD_UBI is not set | 473 | # CONFIG_MTD_UBI is not set |
@@ -485,8 +499,10 @@ CONFIG_MISC_DEVICES=y | |||
485 | # CONFIG_EEPROM_93CX6 is not set | 499 | # CONFIG_EEPROM_93CX6 is not set |
486 | # CONFIG_SGI_IOC4 is not set | 500 | # CONFIG_SGI_IOC4 is not set |
487 | # CONFIG_TIFM_CORE is not set | 501 | # CONFIG_TIFM_CORE is not set |
502 | # CONFIG_ICS932S401 is not set | ||
488 | # CONFIG_ENCLOSURE_SERVICES is not set | 503 | # CONFIG_ENCLOSURE_SERVICES is not set |
489 | # CONFIG_HP_ILO is not set | 504 | # CONFIG_HP_ILO is not set |
505 | # CONFIG_C2PORT is not set | ||
490 | CONFIG_HAVE_IDE=y | 506 | CONFIG_HAVE_IDE=y |
491 | CONFIG_IDE=y | 507 | CONFIG_IDE=y |
492 | 508 | ||
@@ -499,7 +515,6 @@ CONFIG_IDE_GD_ATA=y | |||
499 | # CONFIG_IDE_GD_ATAPI is not set | 515 | # CONFIG_IDE_GD_ATAPI is not set |
500 | # CONFIG_BLK_DEV_IDECD is not set | 516 | # CONFIG_BLK_DEV_IDECD is not set |
501 | # CONFIG_BLK_DEV_IDETAPE is not set | 517 | # CONFIG_BLK_DEV_IDETAPE is not set |
502 | # CONFIG_BLK_DEV_IDESCSI is not set | ||
503 | # CONFIG_IDE_TASK_IOCTL is not set | 518 | # CONFIG_IDE_TASK_IOCTL is not set |
504 | CONFIG_IDE_PROC_FS=y | 519 | CONFIG_IDE_PROC_FS=y |
505 | 520 | ||
@@ -524,6 +539,7 @@ CONFIG_IDE_PROC_FS=y | |||
524 | # CONFIG_BLK_DEV_JMICRON is not set | 539 | # CONFIG_BLK_DEV_JMICRON is not set |
525 | # CONFIG_BLK_DEV_SC1200 is not set | 540 | # CONFIG_BLK_DEV_SC1200 is not set |
526 | # CONFIG_BLK_DEV_PIIX is not set | 541 | # CONFIG_BLK_DEV_PIIX is not set |
542 | # CONFIG_BLK_DEV_IT8172 is not set | ||
527 | # CONFIG_BLK_DEV_IT8213 is not set | 543 | # CONFIG_BLK_DEV_IT8213 is not set |
528 | # CONFIG_BLK_DEV_IT821X is not set | 544 | # CONFIG_BLK_DEV_IT821X is not set |
529 | # CONFIG_BLK_DEV_NS87415 is not set | 545 | # CONFIG_BLK_DEV_NS87415 is not set |
@@ -577,6 +593,7 @@ CONFIG_SCSI_SPI_ATTRS=y | |||
577 | # CONFIG_SCSI_SRP_ATTRS is not set | 593 | # CONFIG_SCSI_SRP_ATTRS is not set |
578 | CONFIG_SCSI_LOWLEVEL=y | 594 | CONFIG_SCSI_LOWLEVEL=y |
579 | # CONFIG_ISCSI_TCP is not set | 595 | # CONFIG_ISCSI_TCP is not set |
596 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
580 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 597 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
581 | # CONFIG_SCSI_3W_9XXX is not set | 598 | # CONFIG_SCSI_3W_9XXX is not set |
582 | # CONFIG_SCSI_ACARD is not set | 599 | # CONFIG_SCSI_ACARD is not set |
@@ -593,6 +610,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
593 | # CONFIG_MEGARAID_SAS is not set | 610 | # CONFIG_MEGARAID_SAS is not set |
594 | # CONFIG_SCSI_HPTIOP is not set | 611 | # CONFIG_SCSI_HPTIOP is not set |
595 | # CONFIG_SCSI_BUSLOGIC is not set | 612 | # CONFIG_SCSI_BUSLOGIC is not set |
613 | # CONFIG_LIBFC is not set | ||
614 | # CONFIG_FCOE is not set | ||
596 | # CONFIG_SCSI_DMX3191D is not set | 615 | # CONFIG_SCSI_DMX3191D is not set |
597 | # CONFIG_SCSI_EATA is not set | 616 | # CONFIG_SCSI_EATA is not set |
598 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 617 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -723,6 +742,9 @@ CONFIG_CICADA_PHY=y | |||
723 | # CONFIG_BROADCOM_PHY is not set | 742 | # CONFIG_BROADCOM_PHY is not set |
724 | # CONFIG_ICPLUS_PHY is not set | 743 | # CONFIG_ICPLUS_PHY is not set |
725 | # CONFIG_REALTEK_PHY is not set | 744 | # CONFIG_REALTEK_PHY is not set |
745 | # CONFIG_NATIONAL_PHY is not set | ||
746 | # CONFIG_STE10XP is not set | ||
747 | # CONFIG_LSI_ET1011C_PHY is not set | ||
726 | CONFIG_FIXED_PHY=y | 748 | CONFIG_FIXED_PHY=y |
727 | # CONFIG_MDIO_BITBANG is not set | 749 | # CONFIG_MDIO_BITBANG is not set |
728 | # CONFIG_NET_ETHERNET is not set | 750 | # CONFIG_NET_ETHERNET is not set |
@@ -751,6 +773,7 @@ CONFIG_GIANFAR=y | |||
751 | # CONFIG_JME is not set | 773 | # CONFIG_JME is not set |
752 | CONFIG_NETDEV_10000=y | 774 | CONFIG_NETDEV_10000=y |
753 | # CONFIG_CHELSIO_T1 is not set | 775 | # CONFIG_CHELSIO_T1 is not set |
776 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
754 | # CONFIG_CHELSIO_T3 is not set | 777 | # CONFIG_CHELSIO_T3 is not set |
755 | # CONFIG_ENIC is not set | 778 | # CONFIG_ENIC is not set |
756 | # CONFIG_IXGBE is not set | 779 | # CONFIG_IXGBE is not set |
@@ -775,6 +798,10 @@ CONFIG_NETDEV_10000=y | |||
775 | # CONFIG_IWLWIFI_LEDS is not set | 798 | # CONFIG_IWLWIFI_LEDS is not set |
776 | 799 | ||
777 | # | 800 | # |
801 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
802 | # | ||
803 | |||
804 | # | ||
778 | # USB Network Adapters | 805 | # USB Network Adapters |
779 | # | 806 | # |
780 | # CONFIG_USB_CATC is not set | 807 | # CONFIG_USB_CATC is not set |
@@ -832,8 +859,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
832 | # CONFIG_SERIAL_JSM is not set | 859 | # CONFIG_SERIAL_JSM is not set |
833 | # CONFIG_SERIAL_OF_PLATFORM is not set | 860 | # CONFIG_SERIAL_OF_PLATFORM is not set |
834 | CONFIG_UNIX98_PTYS=y | 861 | CONFIG_UNIX98_PTYS=y |
862 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
835 | CONFIG_LEGACY_PTYS=y | 863 | CONFIG_LEGACY_PTYS=y |
836 | CONFIG_LEGACY_PTY_COUNT=256 | 864 | CONFIG_LEGACY_PTY_COUNT=256 |
865 | # CONFIG_HVC_UDBG is not set | ||
837 | # CONFIG_IPMI_HANDLER is not set | 866 | # CONFIG_IPMI_HANDLER is not set |
838 | CONFIG_HW_RANDOM=y | 867 | CONFIG_HW_RANDOM=y |
839 | # CONFIG_NVRAM is not set | 868 | # CONFIG_NVRAM is not set |
@@ -906,7 +935,6 @@ CONFIG_SENSORS_PCF8574=y | |||
906 | # CONFIG_SENSORS_PCF8591 is not set | 935 | # CONFIG_SENSORS_PCF8591 is not set |
907 | # CONFIG_SENSORS_MAX6875 is not set | 936 | # CONFIG_SENSORS_MAX6875 is not set |
908 | # CONFIG_SENSORS_TSL2550 is not set | 937 | # CONFIG_SENSORS_TSL2550 is not set |
909 | # CONFIG_MCU_MPC8349EMITX is not set | ||
910 | # CONFIG_I2C_DEBUG_CORE is not set | 938 | # CONFIG_I2C_DEBUG_CORE is not set |
911 | # CONFIG_I2C_DEBUG_ALGO is not set | 939 | # CONFIG_I2C_DEBUG_ALGO is not set |
912 | # CONFIG_I2C_DEBUG_BUS is not set | 940 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -953,11 +981,11 @@ CONFIG_WATCHDOG=y | |||
953 | # USB-based Watchdog Cards | 981 | # USB-based Watchdog Cards |
954 | # | 982 | # |
955 | # CONFIG_USBPCWATCHDOG is not set | 983 | # CONFIG_USBPCWATCHDOG is not set |
984 | CONFIG_SSB_POSSIBLE=y | ||
956 | 985 | ||
957 | # | 986 | # |
958 | # Sonics Silicon Backplane | 987 | # Sonics Silicon Backplane |
959 | # | 988 | # |
960 | CONFIG_SSB_POSSIBLE=y | ||
961 | # CONFIG_SSB is not set | 989 | # CONFIG_SSB is not set |
962 | 990 | ||
963 | # | 991 | # |
@@ -966,18 +994,13 @@ CONFIG_SSB_POSSIBLE=y | |||
966 | # CONFIG_MFD_CORE is not set | 994 | # CONFIG_MFD_CORE is not set |
967 | # CONFIG_MFD_SM501 is not set | 995 | # CONFIG_MFD_SM501 is not set |
968 | # CONFIG_HTC_PASIC3 is not set | 996 | # CONFIG_HTC_PASIC3 is not set |
997 | # CONFIG_TWL4030_CORE is not set | ||
969 | # CONFIG_MFD_TMIO is not set | 998 | # CONFIG_MFD_TMIO is not set |
970 | # CONFIG_PMIC_DA903X is not set | 999 | # CONFIG_PMIC_DA903X is not set |
971 | # CONFIG_MFD_WM8400 is not set | 1000 | # CONFIG_MFD_WM8400 is not set |
972 | # CONFIG_MFD_WM8350_I2C is not set | 1001 | # CONFIG_MFD_WM8350_I2C is not set |
973 | 1002 | # CONFIG_MFD_PCF50633 is not set | |
974 | # | ||
975 | # Voltage and Current regulators | ||
976 | # | ||
977 | # CONFIG_REGULATOR is not set | 1003 | # CONFIG_REGULATOR is not set |
978 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
979 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
980 | # CONFIG_REGULATOR_BQ24022 is not set | ||
981 | 1004 | ||
982 | # | 1005 | # |
983 | # Multimedia devices | 1006 | # Multimedia devices |
@@ -1041,6 +1064,7 @@ CONFIG_USB_EHCI_ROOT_HUB_TT=y | |||
1041 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1064 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1042 | CONFIG_USB_EHCI_FSL=y | 1065 | CONFIG_USB_EHCI_FSL=y |
1043 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1066 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1067 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1044 | # CONFIG_USB_ISP116X_HCD is not set | 1068 | # CONFIG_USB_ISP116X_HCD is not set |
1045 | # CONFIG_USB_ISP1760_HCD is not set | 1069 | # CONFIG_USB_ISP1760_HCD is not set |
1046 | # CONFIG_USB_OHCI_HCD is not set | 1070 | # CONFIG_USB_OHCI_HCD is not set |
@@ -1059,18 +1083,17 @@ CONFIG_USB_UHCI_HCD=y | |||
1059 | # CONFIG_USB_TMC is not set | 1083 | # CONFIG_USB_TMC is not set |
1060 | 1084 | ||
1061 | # | 1085 | # |
1062 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1086 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1063 | # | 1087 | # |
1064 | 1088 | ||
1065 | # | 1089 | # |
1066 | # may also be needed; see USB_STORAGE Help for more information | 1090 | # see USB_STORAGE Help for more information |
1067 | # | 1091 | # |
1068 | CONFIG_USB_STORAGE=y | 1092 | CONFIG_USB_STORAGE=y |
1069 | # CONFIG_USB_STORAGE_DEBUG is not set | 1093 | # CONFIG_USB_STORAGE_DEBUG is not set |
1070 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1094 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1071 | # CONFIG_USB_STORAGE_FREECOM is not set | 1095 | # CONFIG_USB_STORAGE_FREECOM is not set |
1072 | # CONFIG_USB_STORAGE_ISD200 is not set | 1096 | # CONFIG_USB_STORAGE_ISD200 is not set |
1073 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1074 | # CONFIG_USB_STORAGE_USBAT is not set | 1097 | # CONFIG_USB_STORAGE_USBAT is not set |
1075 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1098 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1076 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1099 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1117,6 +1140,10 @@ CONFIG_USB_STORAGE=y | |||
1117 | # CONFIG_USB_ISIGHTFW is not set | 1140 | # CONFIG_USB_ISIGHTFW is not set |
1118 | # CONFIG_USB_VST is not set | 1141 | # CONFIG_USB_VST is not set |
1119 | # CONFIG_USB_GADGET is not set | 1142 | # CONFIG_USB_GADGET is not set |
1143 | |||
1144 | # | ||
1145 | # OTG and related infrastructure | ||
1146 | # | ||
1120 | # CONFIG_UWB is not set | 1147 | # CONFIG_UWB is not set |
1121 | # CONFIG_MMC is not set | 1148 | # CONFIG_MMC is not set |
1122 | # CONFIG_MEMSTICK is not set | 1149 | # CONFIG_MEMSTICK is not set |
@@ -1154,12 +1181,14 @@ CONFIG_RTC_DRV_DS1307=y | |||
1154 | # CONFIG_RTC_DRV_M41T80 is not set | 1181 | # CONFIG_RTC_DRV_M41T80 is not set |
1155 | # CONFIG_RTC_DRV_S35390A is not set | 1182 | # CONFIG_RTC_DRV_S35390A is not set |
1156 | # CONFIG_RTC_DRV_FM3130 is not set | 1183 | # CONFIG_RTC_DRV_FM3130 is not set |
1184 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1157 | 1185 | ||
1158 | # | 1186 | # |
1159 | # SPI RTC drivers | 1187 | # SPI RTC drivers |
1160 | # | 1188 | # |
1161 | # CONFIG_RTC_DRV_M41T94 is not set | 1189 | # CONFIG_RTC_DRV_M41T94 is not set |
1162 | # CONFIG_RTC_DRV_DS1305 is not set | 1190 | # CONFIG_RTC_DRV_DS1305 is not set |
1191 | # CONFIG_RTC_DRV_DS1390 is not set | ||
1163 | # CONFIG_RTC_DRV_MAX6902 is not set | 1192 | # CONFIG_RTC_DRV_MAX6902 is not set |
1164 | # CONFIG_RTC_DRV_R9701 is not set | 1193 | # CONFIG_RTC_DRV_R9701 is not set |
1165 | # CONFIG_RTC_DRV_RS5C348 is not set | 1194 | # CONFIG_RTC_DRV_RS5C348 is not set |
@@ -1207,6 +1236,7 @@ CONFIG_FS_MBCACHE=y | |||
1207 | CONFIG_FILE_LOCKING=y | 1236 | CONFIG_FILE_LOCKING=y |
1208 | # CONFIG_XFS_FS is not set | 1237 | # CONFIG_XFS_FS is not set |
1209 | # CONFIG_OCFS2_FS is not set | 1238 | # CONFIG_OCFS2_FS is not set |
1239 | # CONFIG_BTRFS_FS is not set | ||
1210 | CONFIG_DNOTIFY=y | 1240 | CONFIG_DNOTIFY=y |
1211 | CONFIG_INOTIFY=y | 1241 | CONFIG_INOTIFY=y |
1212 | CONFIG_INOTIFY_USER=y | 1242 | CONFIG_INOTIFY_USER=y |
@@ -1243,10 +1273,7 @@ CONFIG_TMPFS=y | |||
1243 | # CONFIG_TMPFS_POSIX_ACL is not set | 1273 | # CONFIG_TMPFS_POSIX_ACL is not set |
1244 | # CONFIG_HUGETLB_PAGE is not set | 1274 | # CONFIG_HUGETLB_PAGE is not set |
1245 | # CONFIG_CONFIGFS_FS is not set | 1275 | # CONFIG_CONFIGFS_FS is not set |
1246 | 1276 | CONFIG_MISC_FILESYSTEMS=y | |
1247 | # | ||
1248 | # Miscellaneous filesystems | ||
1249 | # | ||
1250 | # CONFIG_ADFS_FS is not set | 1277 | # CONFIG_ADFS_FS is not set |
1251 | # CONFIG_AFFS_FS is not set | 1278 | # CONFIG_AFFS_FS is not set |
1252 | # CONFIG_HFS_FS is not set | 1279 | # CONFIG_HFS_FS is not set |
@@ -1256,6 +1283,7 @@ CONFIG_TMPFS=y | |||
1256 | # CONFIG_EFS_FS is not set | 1283 | # CONFIG_EFS_FS is not set |
1257 | # CONFIG_JFFS2_FS is not set | 1284 | # CONFIG_JFFS2_FS is not set |
1258 | # CONFIG_CRAMFS is not set | 1285 | # CONFIG_CRAMFS is not set |
1286 | # CONFIG_SQUASHFS is not set | ||
1259 | # CONFIG_VXFS_FS is not set | 1287 | # CONFIG_VXFS_FS is not set |
1260 | # CONFIG_MINIX_FS is not set | 1288 | # CONFIG_MINIX_FS is not set |
1261 | # CONFIG_OMFS_FS is not set | 1289 | # CONFIG_OMFS_FS is not set |
@@ -1352,6 +1380,7 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
1352 | # Library routines | 1380 | # Library routines |
1353 | # | 1381 | # |
1354 | CONFIG_BITREVERSE=y | 1382 | CONFIG_BITREVERSE=y |
1383 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1355 | # CONFIG_CRC_CCITT is not set | 1384 | # CONFIG_CRC_CCITT is not set |
1356 | # CONFIG_CRC16 is not set | 1385 | # CONFIG_CRC16 is not set |
1357 | CONFIG_CRC_T10DIF=y | 1386 | CONFIG_CRC_T10DIF=y |
@@ -1385,6 +1414,8 @@ CONFIG_FRAME_WARN=1024 | |||
1385 | # CONFIG_LATENCYTOP is not set | 1414 | # CONFIG_LATENCYTOP is not set |
1386 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1415 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1387 | CONFIG_HAVE_FUNCTION_TRACER=y | 1416 | CONFIG_HAVE_FUNCTION_TRACER=y |
1417 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1418 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1388 | 1419 | ||
1389 | # | 1420 | # |
1390 | # Tracers | 1421 | # Tracers |
@@ -1392,6 +1423,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1392 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1423 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1393 | # CONFIG_SAMPLES is not set | 1424 | # CONFIG_SAMPLES is not set |
1394 | CONFIG_HAVE_ARCH_KGDB=y | 1425 | CONFIG_HAVE_ARCH_KGDB=y |
1426 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1395 | # CONFIG_IRQSTACKS is not set | 1427 | # CONFIG_IRQSTACKS is not set |
1396 | # CONFIG_BOOTX_TEXT is not set | 1428 | # CONFIG_BOOTX_TEXT is not set |
1397 | # CONFIG_PPC_EARLY_DEBUG is not set | 1429 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1410,11 +1442,15 @@ CONFIG_CRYPTO=y | |||
1410 | # | 1442 | # |
1411 | # CONFIG_CRYPTO_FIPS is not set | 1443 | # CONFIG_CRYPTO_FIPS is not set |
1412 | CONFIG_CRYPTO_ALGAPI=y | 1444 | CONFIG_CRYPTO_ALGAPI=y |
1413 | CONFIG_CRYPTO_AEAD=y | 1445 | CONFIG_CRYPTO_ALGAPI2=y |
1446 | CONFIG_CRYPTO_AEAD2=y | ||
1414 | CONFIG_CRYPTO_BLKCIPHER=y | 1447 | CONFIG_CRYPTO_BLKCIPHER=y |
1448 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1415 | CONFIG_CRYPTO_HASH=y | 1449 | CONFIG_CRYPTO_HASH=y |
1416 | CONFIG_CRYPTO_RNG=y | 1450 | CONFIG_CRYPTO_HASH2=y |
1451 | CONFIG_CRYPTO_RNG2=y | ||
1417 | CONFIG_CRYPTO_MANAGER=y | 1452 | CONFIG_CRYPTO_MANAGER=y |
1453 | CONFIG_CRYPTO_MANAGER2=y | ||
1418 | # CONFIG_CRYPTO_GF128MUL is not set | 1454 | # CONFIG_CRYPTO_GF128MUL is not set |
1419 | # CONFIG_CRYPTO_NULL is not set | 1455 | # CONFIG_CRYPTO_NULL is not set |
1420 | # CONFIG_CRYPTO_CRYPTD is not set | 1456 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/83xx/mpc834x_itxgp_defconfig b/arch/powerpc/configs/83xx/mpc834x_itxgp_defconfig index 17c903b36576..9ba5518ce8df 100644 --- a/arch/powerpc/configs/83xx/mpc834x_itxgp_defconfig +++ b/arch/powerpc/configs/83xx/mpc834x_itxgp_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:57 2008 | 4 | # Mon Jan 26 15:35:55 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -75,12 +75,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 79 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -113,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
113 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
114 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
119 | CONFIG_HAVE_IOREMAP_PROT=y | 118 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -123,7 +122,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
124 | CONFIG_SLABINFO=y | 123 | CONFIG_SLABINFO=y |
125 | CONFIG_RT_MUTEXES=y | 124 | CONFIG_RT_MUTEXES=y |
126 | # CONFIG_TINY_SHMEM is not set | ||
127 | CONFIG_BASE_SMALL=0 | 125 | CONFIG_BASE_SMALL=0 |
128 | CONFIG_MODULES=y | 126 | CONFIG_MODULES=y |
129 | # CONFIG_MODULE_FORCE_LOAD is not set | 127 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -131,11 +129,9 @@ CONFIG_MODULE_UNLOAD=y | |||
131 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 129 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
132 | # CONFIG_MODVERSIONS is not set | 130 | # CONFIG_MODVERSIONS is not set |
133 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
134 | CONFIG_KMOD=y | ||
135 | CONFIG_BLOCK=y | 132 | CONFIG_BLOCK=y |
136 | # CONFIG_LBD is not set | 133 | # CONFIG_LBD is not set |
137 | # CONFIG_BLK_DEV_IO_TRACE is not set | 134 | # CONFIG_BLK_DEV_IO_TRACE is not set |
138 | # CONFIG_LSF is not set | ||
139 | # CONFIG_BLK_DEV_BSG is not set | 135 | # CONFIG_BLK_DEV_BSG is not set |
140 | # CONFIG_BLK_DEV_INTEGRITY is not set | 136 | # CONFIG_BLK_DEV_INTEGRITY is not set |
141 | 137 | ||
@@ -152,6 +148,10 @@ CONFIG_DEFAULT_AS=y | |||
152 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
153 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
154 | CONFIG_CLASSIC_RCU=y | 150 | CONFIG_CLASSIC_RCU=y |
151 | # CONFIG_TREE_RCU is not set | ||
152 | # CONFIG_PREEMPT_RCU is not set | ||
153 | # CONFIG_TREE_RCU_TRACE is not set | ||
154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
155 | # CONFIG_FREEZER is not set | 155 | # CONFIG_FREEZER is not set |
156 | 156 | ||
157 | # | 157 | # |
@@ -198,6 +198,8 @@ CONFIG_IPIC=y | |||
198 | # CONFIG_QUICC_ENGINE is not set | 198 | # CONFIG_QUICC_ENGINE is not set |
199 | # CONFIG_FSL_ULI1575 is not set | 199 | # CONFIG_FSL_ULI1575 is not set |
200 | # CONFIG_MPC8xxx_GPIO is not set | 200 | # CONFIG_MPC8xxx_GPIO is not set |
201 | # CONFIG_SIMPLE_GPIO is not set | ||
202 | # CONFIG_MCU_MPC8349EMITX is not set | ||
201 | 203 | ||
202 | # | 204 | # |
203 | # Kernel options | 205 | # Kernel options |
@@ -225,6 +227,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
225 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 227 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
226 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 228 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
227 | # CONFIG_KEXEC is not set | 229 | # CONFIG_KEXEC is not set |
230 | # CONFIG_CRASH_DUMP is not set | ||
228 | CONFIG_ARCH_FLATMEM_ENABLE=y | 231 | CONFIG_ARCH_FLATMEM_ENABLE=y |
229 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 232 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
230 | CONFIG_SELECT_MEMORY_MODEL=y | 233 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -236,12 +239,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
236 | CONFIG_PAGEFLAGS_EXTENDED=y | 239 | CONFIG_PAGEFLAGS_EXTENDED=y |
237 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 240 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
238 | CONFIG_MIGRATION=y | 241 | CONFIG_MIGRATION=y |
239 | # CONFIG_RESOURCES_64BIT is not set | ||
240 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 242 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
241 | CONFIG_ZONE_DMA_FLAG=1 | 243 | CONFIG_ZONE_DMA_FLAG=1 |
242 | CONFIG_BOUNCE=y | 244 | CONFIG_BOUNCE=y |
243 | CONFIG_VIRT_TO_BUS=y | 245 | CONFIG_VIRT_TO_BUS=y |
244 | CONFIG_UNEVICTABLE_LRU=y | 246 | CONFIG_UNEVICTABLE_LRU=y |
247 | CONFIG_PPC_4K_PAGES=y | ||
248 | # CONFIG_PPC_16K_PAGES is not set | ||
249 | # CONFIG_PPC_64K_PAGES is not set | ||
245 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
246 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
247 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
@@ -266,6 +271,7 @@ CONFIG_PCI_SYSCALL=y | |||
266 | CONFIG_ARCH_SUPPORTS_MSI=y | 271 | CONFIG_ARCH_SUPPORTS_MSI=y |
267 | # CONFIG_PCI_MSI is not set | 272 | # CONFIG_PCI_MSI is not set |
268 | # CONFIG_PCI_LEGACY is not set | 273 | # CONFIG_PCI_LEGACY is not set |
274 | # CONFIG_PCI_STUB is not set | ||
269 | # CONFIG_PCCARD is not set | 275 | # CONFIG_PCCARD is not set |
270 | # CONFIG_HOTPLUG_PCI is not set | 276 | # CONFIG_HOTPLUG_PCI is not set |
271 | # CONFIG_HAS_RAPIDIO is not set | 277 | # CONFIG_HAS_RAPIDIO is not set |
@@ -288,6 +294,7 @@ CONFIG_NET=y | |||
288 | # | 294 | # |
289 | # Networking options | 295 | # Networking options |
290 | # | 296 | # |
297 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
291 | CONFIG_PACKET=y | 298 | CONFIG_PACKET=y |
292 | # CONFIG_PACKET_MMAP is not set | 299 | # CONFIG_PACKET_MMAP is not set |
293 | CONFIG_UNIX=y | 300 | CONFIG_UNIX=y |
@@ -344,6 +351,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
344 | # CONFIG_ECONET is not set | 351 | # CONFIG_ECONET is not set |
345 | # CONFIG_WAN_ROUTER is not set | 352 | # CONFIG_WAN_ROUTER is not set |
346 | # CONFIG_NET_SCHED is not set | 353 | # CONFIG_NET_SCHED is not set |
354 | # CONFIG_DCB is not set | ||
347 | 355 | ||
348 | # | 356 | # |
349 | # Network testing | 357 | # Network testing |
@@ -359,8 +367,9 @@ CONFIG_WIRELESS=y | |||
359 | # CONFIG_CFG80211 is not set | 367 | # CONFIG_CFG80211 is not set |
360 | CONFIG_WIRELESS_OLD_REGULATORY=y | 368 | CONFIG_WIRELESS_OLD_REGULATORY=y |
361 | # CONFIG_WIRELESS_EXT is not set | 369 | # CONFIG_WIRELESS_EXT is not set |
370 | # CONFIG_LIB80211 is not set | ||
362 | # CONFIG_MAC80211 is not set | 371 | # CONFIG_MAC80211 is not set |
363 | # CONFIG_IEEE80211 is not set | 372 | # CONFIG_WIMAX is not set |
364 | # CONFIG_RFKILL is not set | 373 | # CONFIG_RFKILL is not set |
365 | # CONFIG_NET_9P is not set | 374 | # CONFIG_NET_9P is not set |
366 | 375 | ||
@@ -381,6 +390,7 @@ CONFIG_MTD=y | |||
381 | # CONFIG_MTD_DEBUG is not set | 390 | # CONFIG_MTD_DEBUG is not set |
382 | # CONFIG_MTD_CONCAT is not set | 391 | # CONFIG_MTD_CONCAT is not set |
383 | # CONFIG_MTD_PARTITIONS is not set | 392 | # CONFIG_MTD_PARTITIONS is not set |
393 | # CONFIG_MTD_TESTS is not set | ||
384 | 394 | ||
385 | # | 395 | # |
386 | # User Modules And Translation Layers | 396 | # User Modules And Translation Layers |
@@ -426,9 +436,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
426 | # | 436 | # |
427 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | 437 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
428 | CONFIG_MTD_PHYSMAP=y | 438 | CONFIG_MTD_PHYSMAP=y |
429 | CONFIG_MTD_PHYSMAP_START=0xfe000000 | 439 | # CONFIG_MTD_PHYSMAP_COMPAT is not set |
430 | CONFIG_MTD_PHYSMAP_LEN=0x800000 | ||
431 | CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | ||
432 | # CONFIG_MTD_PHYSMAP_OF is not set | 440 | # CONFIG_MTD_PHYSMAP_OF is not set |
433 | # CONFIG_MTD_INTEL_VR_NOR is not set | 441 | # CONFIG_MTD_INTEL_VR_NOR is not set |
434 | # CONFIG_MTD_PLATRAM is not set | 442 | # CONFIG_MTD_PLATRAM is not set |
@@ -454,6 +462,12 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | |||
454 | # CONFIG_MTD_ONENAND is not set | 462 | # CONFIG_MTD_ONENAND is not set |
455 | 463 | ||
456 | # | 464 | # |
465 | # LPDDR flash memory drivers | ||
466 | # | ||
467 | # CONFIG_MTD_LPDDR is not set | ||
468 | # CONFIG_MTD_QINFO_PROBE is not set | ||
469 | |||
470 | # | ||
457 | # UBI - Unsorted block images | 471 | # UBI - Unsorted block images |
458 | # | 472 | # |
459 | # CONFIG_MTD_UBI is not set | 473 | # CONFIG_MTD_UBI is not set |
@@ -485,8 +499,10 @@ CONFIG_MISC_DEVICES=y | |||
485 | # CONFIG_EEPROM_93CX6 is not set | 499 | # CONFIG_EEPROM_93CX6 is not set |
486 | # CONFIG_SGI_IOC4 is not set | 500 | # CONFIG_SGI_IOC4 is not set |
487 | # CONFIG_TIFM_CORE is not set | 501 | # CONFIG_TIFM_CORE is not set |
502 | # CONFIG_ICS932S401 is not set | ||
488 | # CONFIG_ENCLOSURE_SERVICES is not set | 503 | # CONFIG_ENCLOSURE_SERVICES is not set |
489 | # CONFIG_HP_ILO is not set | 504 | # CONFIG_HP_ILO is not set |
505 | # CONFIG_C2PORT is not set | ||
490 | CONFIG_HAVE_IDE=y | 506 | CONFIG_HAVE_IDE=y |
491 | # CONFIG_IDE is not set | 507 | # CONFIG_IDE is not set |
492 | 508 | ||
@@ -529,6 +545,7 @@ CONFIG_SCSI_SPI_ATTRS=y | |||
529 | # CONFIG_SCSI_SRP_ATTRS is not set | 545 | # CONFIG_SCSI_SRP_ATTRS is not set |
530 | CONFIG_SCSI_LOWLEVEL=y | 546 | CONFIG_SCSI_LOWLEVEL=y |
531 | # CONFIG_ISCSI_TCP is not set | 547 | # CONFIG_ISCSI_TCP is not set |
548 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
532 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 549 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
533 | # CONFIG_SCSI_3W_9XXX is not set | 550 | # CONFIG_SCSI_3W_9XXX is not set |
534 | # CONFIG_SCSI_ACARD is not set | 551 | # CONFIG_SCSI_ACARD is not set |
@@ -545,6 +562,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
545 | # CONFIG_MEGARAID_SAS is not set | 562 | # CONFIG_MEGARAID_SAS is not set |
546 | # CONFIG_SCSI_HPTIOP is not set | 563 | # CONFIG_SCSI_HPTIOP is not set |
547 | # CONFIG_SCSI_BUSLOGIC is not set | 564 | # CONFIG_SCSI_BUSLOGIC is not set |
565 | # CONFIG_LIBFC is not set | ||
566 | # CONFIG_FCOE is not set | ||
548 | # CONFIG_SCSI_DMX3191D is not set | 567 | # CONFIG_SCSI_DMX3191D is not set |
549 | # CONFIG_SCSI_EATA is not set | 568 | # CONFIG_SCSI_EATA is not set |
550 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 569 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -603,6 +622,9 @@ CONFIG_CICADA_PHY=y | |||
603 | # CONFIG_BROADCOM_PHY is not set | 622 | # CONFIG_BROADCOM_PHY is not set |
604 | # CONFIG_ICPLUS_PHY is not set | 623 | # CONFIG_ICPLUS_PHY is not set |
605 | # CONFIG_REALTEK_PHY is not set | 624 | # CONFIG_REALTEK_PHY is not set |
625 | # CONFIG_NATIONAL_PHY is not set | ||
626 | # CONFIG_STE10XP is not set | ||
627 | # CONFIG_LSI_ET1011C_PHY is not set | ||
606 | # CONFIG_FIXED_PHY is not set | 628 | # CONFIG_FIXED_PHY is not set |
607 | # CONFIG_MDIO_BITBANG is not set | 629 | # CONFIG_MDIO_BITBANG is not set |
608 | # CONFIG_NET_ETHERNET is not set | 630 | # CONFIG_NET_ETHERNET is not set |
@@ -631,6 +653,7 @@ CONFIG_GIANFAR=y | |||
631 | # CONFIG_JME is not set | 653 | # CONFIG_JME is not set |
632 | CONFIG_NETDEV_10000=y | 654 | CONFIG_NETDEV_10000=y |
633 | # CONFIG_CHELSIO_T1 is not set | 655 | # CONFIG_CHELSIO_T1 is not set |
656 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
634 | # CONFIG_CHELSIO_T3 is not set | 657 | # CONFIG_CHELSIO_T3 is not set |
635 | # CONFIG_ENIC is not set | 658 | # CONFIG_ENIC is not set |
636 | # CONFIG_IXGBE is not set | 659 | # CONFIG_IXGBE is not set |
@@ -655,6 +678,10 @@ CONFIG_NETDEV_10000=y | |||
655 | # CONFIG_IWLWIFI_LEDS is not set | 678 | # CONFIG_IWLWIFI_LEDS is not set |
656 | 679 | ||
657 | # | 680 | # |
681 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
682 | # | ||
683 | |||
684 | # | ||
658 | # USB Network Adapters | 685 | # USB Network Adapters |
659 | # | 686 | # |
660 | # CONFIG_USB_CATC is not set | 687 | # CONFIG_USB_CATC is not set |
@@ -712,8 +739,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
712 | # CONFIG_SERIAL_JSM is not set | 739 | # CONFIG_SERIAL_JSM is not set |
713 | # CONFIG_SERIAL_OF_PLATFORM is not set | 740 | # CONFIG_SERIAL_OF_PLATFORM is not set |
714 | CONFIG_UNIX98_PTYS=y | 741 | CONFIG_UNIX98_PTYS=y |
742 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
715 | CONFIG_LEGACY_PTYS=y | 743 | CONFIG_LEGACY_PTYS=y |
716 | CONFIG_LEGACY_PTY_COUNT=256 | 744 | CONFIG_LEGACY_PTY_COUNT=256 |
745 | # CONFIG_HVC_UDBG is not set | ||
717 | # CONFIG_IPMI_HANDLER is not set | 746 | # CONFIG_IPMI_HANDLER is not set |
718 | CONFIG_HW_RANDOM=y | 747 | CONFIG_HW_RANDOM=y |
719 | # CONFIG_NVRAM is not set | 748 | # CONFIG_NVRAM is not set |
@@ -786,7 +815,6 @@ CONFIG_SENSORS_PCF8574=y | |||
786 | # CONFIG_SENSORS_PCF8591 is not set | 815 | # CONFIG_SENSORS_PCF8591 is not set |
787 | # CONFIG_SENSORS_MAX6875 is not set | 816 | # CONFIG_SENSORS_MAX6875 is not set |
788 | # CONFIG_SENSORS_TSL2550 is not set | 817 | # CONFIG_SENSORS_TSL2550 is not set |
789 | # CONFIG_MCU_MPC8349EMITX is not set | ||
790 | # CONFIG_I2C_DEBUG_CORE is not set | 818 | # CONFIG_I2C_DEBUG_CORE is not set |
791 | # CONFIG_I2C_DEBUG_ALGO is not set | 819 | # CONFIG_I2C_DEBUG_ALGO is not set |
792 | # CONFIG_I2C_DEBUG_BUS is not set | 820 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -833,11 +861,11 @@ CONFIG_WATCHDOG=y | |||
833 | # USB-based Watchdog Cards | 861 | # USB-based Watchdog Cards |
834 | # | 862 | # |
835 | # CONFIG_USBPCWATCHDOG is not set | 863 | # CONFIG_USBPCWATCHDOG is not set |
864 | CONFIG_SSB_POSSIBLE=y | ||
836 | 865 | ||
837 | # | 866 | # |
838 | # Sonics Silicon Backplane | 867 | # Sonics Silicon Backplane |
839 | # | 868 | # |
840 | CONFIG_SSB_POSSIBLE=y | ||
841 | # CONFIG_SSB is not set | 869 | # CONFIG_SSB is not set |
842 | 870 | ||
843 | # | 871 | # |
@@ -846,18 +874,13 @@ CONFIG_SSB_POSSIBLE=y | |||
846 | # CONFIG_MFD_CORE is not set | 874 | # CONFIG_MFD_CORE is not set |
847 | # CONFIG_MFD_SM501 is not set | 875 | # CONFIG_MFD_SM501 is not set |
848 | # CONFIG_HTC_PASIC3 is not set | 876 | # CONFIG_HTC_PASIC3 is not set |
877 | # CONFIG_TWL4030_CORE is not set | ||
849 | # CONFIG_MFD_TMIO is not set | 878 | # CONFIG_MFD_TMIO is not set |
850 | # CONFIG_PMIC_DA903X is not set | 879 | # CONFIG_PMIC_DA903X is not set |
851 | # CONFIG_MFD_WM8400 is not set | 880 | # CONFIG_MFD_WM8400 is not set |
852 | # CONFIG_MFD_WM8350_I2C is not set | 881 | # CONFIG_MFD_WM8350_I2C is not set |
853 | 882 | # CONFIG_MFD_PCF50633 is not set | |
854 | # | ||
855 | # Voltage and Current regulators | ||
856 | # | ||
857 | # CONFIG_REGULATOR is not set | 883 | # CONFIG_REGULATOR is not set |
858 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
859 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
860 | # CONFIG_REGULATOR_BQ24022 is not set | ||
861 | 884 | ||
862 | # | 885 | # |
863 | # Multimedia devices | 886 | # Multimedia devices |
@@ -921,6 +944,7 @@ CONFIG_USB_EHCI_ROOT_HUB_TT=y | |||
921 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 944 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
922 | CONFIG_USB_EHCI_FSL=y | 945 | CONFIG_USB_EHCI_FSL=y |
923 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 946 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
947 | # CONFIG_USB_OXU210HP_HCD is not set | ||
924 | # CONFIG_USB_ISP116X_HCD is not set | 948 | # CONFIG_USB_ISP116X_HCD is not set |
925 | # CONFIG_USB_ISP1760_HCD is not set | 949 | # CONFIG_USB_ISP1760_HCD is not set |
926 | # CONFIG_USB_OHCI_HCD is not set | 950 | # CONFIG_USB_OHCI_HCD is not set |
@@ -939,18 +963,17 @@ CONFIG_USB_UHCI_HCD=y | |||
939 | # CONFIG_USB_TMC is not set | 963 | # CONFIG_USB_TMC is not set |
940 | 964 | ||
941 | # | 965 | # |
942 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 966 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
943 | # | 967 | # |
944 | 968 | ||
945 | # | 969 | # |
946 | # may also be needed; see USB_STORAGE Help for more information | 970 | # see USB_STORAGE Help for more information |
947 | # | 971 | # |
948 | CONFIG_USB_STORAGE=y | 972 | CONFIG_USB_STORAGE=y |
949 | # CONFIG_USB_STORAGE_DEBUG is not set | 973 | # CONFIG_USB_STORAGE_DEBUG is not set |
950 | # CONFIG_USB_STORAGE_DATAFAB is not set | 974 | # CONFIG_USB_STORAGE_DATAFAB is not set |
951 | # CONFIG_USB_STORAGE_FREECOM is not set | 975 | # CONFIG_USB_STORAGE_FREECOM is not set |
952 | # CONFIG_USB_STORAGE_ISD200 is not set | 976 | # CONFIG_USB_STORAGE_ISD200 is not set |
953 | # CONFIG_USB_STORAGE_DPCM is not set | ||
954 | # CONFIG_USB_STORAGE_USBAT is not set | 977 | # CONFIG_USB_STORAGE_USBAT is not set |
955 | # CONFIG_USB_STORAGE_SDDR09 is not set | 978 | # CONFIG_USB_STORAGE_SDDR09 is not set |
956 | # CONFIG_USB_STORAGE_SDDR55 is not set | 979 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -996,6 +1019,10 @@ CONFIG_USB_STORAGE=y | |||
996 | # CONFIG_USB_ISIGHTFW is not set | 1019 | # CONFIG_USB_ISIGHTFW is not set |
997 | # CONFIG_USB_VST is not set | 1020 | # CONFIG_USB_VST is not set |
998 | # CONFIG_USB_GADGET is not set | 1021 | # CONFIG_USB_GADGET is not set |
1022 | |||
1023 | # | ||
1024 | # OTG and related infrastructure | ||
1025 | # | ||
999 | # CONFIG_UWB is not set | 1026 | # CONFIG_UWB is not set |
1000 | # CONFIG_MMC is not set | 1027 | # CONFIG_MMC is not set |
1001 | # CONFIG_MEMSTICK is not set | 1028 | # CONFIG_MEMSTICK is not set |
@@ -1033,12 +1060,14 @@ CONFIG_RTC_DRV_DS1307=y | |||
1033 | # CONFIG_RTC_DRV_M41T80 is not set | 1060 | # CONFIG_RTC_DRV_M41T80 is not set |
1034 | # CONFIG_RTC_DRV_S35390A is not set | 1061 | # CONFIG_RTC_DRV_S35390A is not set |
1035 | # CONFIG_RTC_DRV_FM3130 is not set | 1062 | # CONFIG_RTC_DRV_FM3130 is not set |
1063 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1036 | 1064 | ||
1037 | # | 1065 | # |
1038 | # SPI RTC drivers | 1066 | # SPI RTC drivers |
1039 | # | 1067 | # |
1040 | # CONFIG_RTC_DRV_M41T94 is not set | 1068 | # CONFIG_RTC_DRV_M41T94 is not set |
1041 | # CONFIG_RTC_DRV_DS1305 is not set | 1069 | # CONFIG_RTC_DRV_DS1305 is not set |
1070 | # CONFIG_RTC_DRV_DS1390 is not set | ||
1042 | # CONFIG_RTC_DRV_MAX6902 is not set | 1071 | # CONFIG_RTC_DRV_MAX6902 is not set |
1043 | # CONFIG_RTC_DRV_R9701 is not set | 1072 | # CONFIG_RTC_DRV_R9701 is not set |
1044 | # CONFIG_RTC_DRV_RS5C348 is not set | 1073 | # CONFIG_RTC_DRV_RS5C348 is not set |
@@ -1086,6 +1115,7 @@ CONFIG_FS_MBCACHE=y | |||
1086 | CONFIG_FILE_LOCKING=y | 1115 | CONFIG_FILE_LOCKING=y |
1087 | # CONFIG_XFS_FS is not set | 1116 | # CONFIG_XFS_FS is not set |
1088 | # CONFIG_OCFS2_FS is not set | 1117 | # CONFIG_OCFS2_FS is not set |
1118 | # CONFIG_BTRFS_FS is not set | ||
1089 | CONFIG_DNOTIFY=y | 1119 | CONFIG_DNOTIFY=y |
1090 | CONFIG_INOTIFY=y | 1120 | CONFIG_INOTIFY=y |
1091 | CONFIG_INOTIFY_USER=y | 1121 | CONFIG_INOTIFY_USER=y |
@@ -1122,10 +1152,7 @@ CONFIG_TMPFS=y | |||
1122 | # CONFIG_TMPFS_POSIX_ACL is not set | 1152 | # CONFIG_TMPFS_POSIX_ACL is not set |
1123 | # CONFIG_HUGETLB_PAGE is not set | 1153 | # CONFIG_HUGETLB_PAGE is not set |
1124 | # CONFIG_CONFIGFS_FS is not set | 1154 | # CONFIG_CONFIGFS_FS is not set |
1125 | 1155 | CONFIG_MISC_FILESYSTEMS=y | |
1126 | # | ||
1127 | # Miscellaneous filesystems | ||
1128 | # | ||
1129 | # CONFIG_ADFS_FS is not set | 1156 | # CONFIG_ADFS_FS is not set |
1130 | # CONFIG_AFFS_FS is not set | 1157 | # CONFIG_AFFS_FS is not set |
1131 | # CONFIG_HFS_FS is not set | 1158 | # CONFIG_HFS_FS is not set |
@@ -1135,6 +1162,7 @@ CONFIG_TMPFS=y | |||
1135 | # CONFIG_EFS_FS is not set | 1162 | # CONFIG_EFS_FS is not set |
1136 | # CONFIG_JFFS2_FS is not set | 1163 | # CONFIG_JFFS2_FS is not set |
1137 | # CONFIG_CRAMFS is not set | 1164 | # CONFIG_CRAMFS is not set |
1165 | # CONFIG_SQUASHFS is not set | ||
1138 | # CONFIG_VXFS_FS is not set | 1166 | # CONFIG_VXFS_FS is not set |
1139 | # CONFIG_MINIX_FS is not set | 1167 | # CONFIG_MINIX_FS is not set |
1140 | # CONFIG_OMFS_FS is not set | 1168 | # CONFIG_OMFS_FS is not set |
@@ -1231,6 +1259,7 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
1231 | # Library routines | 1259 | # Library routines |
1232 | # | 1260 | # |
1233 | CONFIG_BITREVERSE=y | 1261 | CONFIG_BITREVERSE=y |
1262 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1234 | # CONFIG_CRC_CCITT is not set | 1263 | # CONFIG_CRC_CCITT is not set |
1235 | # CONFIG_CRC16 is not set | 1264 | # CONFIG_CRC16 is not set |
1236 | CONFIG_CRC_T10DIF=y | 1265 | CONFIG_CRC_T10DIF=y |
@@ -1264,6 +1293,8 @@ CONFIG_FRAME_WARN=1024 | |||
1264 | # CONFIG_LATENCYTOP is not set | 1293 | # CONFIG_LATENCYTOP is not set |
1265 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1294 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1266 | CONFIG_HAVE_FUNCTION_TRACER=y | 1295 | CONFIG_HAVE_FUNCTION_TRACER=y |
1296 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1297 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1267 | 1298 | ||
1268 | # | 1299 | # |
1269 | # Tracers | 1300 | # Tracers |
@@ -1271,6 +1302,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1271 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1302 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1272 | # CONFIG_SAMPLES is not set | 1303 | # CONFIG_SAMPLES is not set |
1273 | CONFIG_HAVE_ARCH_KGDB=y | 1304 | CONFIG_HAVE_ARCH_KGDB=y |
1305 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1274 | # CONFIG_IRQSTACKS is not set | 1306 | # CONFIG_IRQSTACKS is not set |
1275 | # CONFIG_BOOTX_TEXT is not set | 1307 | # CONFIG_BOOTX_TEXT is not set |
1276 | # CONFIG_PPC_EARLY_DEBUG is not set | 1308 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1289,11 +1321,15 @@ CONFIG_CRYPTO=y | |||
1289 | # | 1321 | # |
1290 | # CONFIG_CRYPTO_FIPS is not set | 1322 | # CONFIG_CRYPTO_FIPS is not set |
1291 | CONFIG_CRYPTO_ALGAPI=y | 1323 | CONFIG_CRYPTO_ALGAPI=y |
1292 | CONFIG_CRYPTO_AEAD=y | 1324 | CONFIG_CRYPTO_ALGAPI2=y |
1325 | CONFIG_CRYPTO_AEAD2=y | ||
1293 | CONFIG_CRYPTO_BLKCIPHER=y | 1326 | CONFIG_CRYPTO_BLKCIPHER=y |
1327 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1294 | CONFIG_CRYPTO_HASH=y | 1328 | CONFIG_CRYPTO_HASH=y |
1295 | CONFIG_CRYPTO_RNG=y | 1329 | CONFIG_CRYPTO_HASH2=y |
1330 | CONFIG_CRYPTO_RNG2=y | ||
1296 | CONFIG_CRYPTO_MANAGER=y | 1331 | CONFIG_CRYPTO_MANAGER=y |
1332 | CONFIG_CRYPTO_MANAGER2=y | ||
1297 | # CONFIG_CRYPTO_GF128MUL is not set | 1333 | # CONFIG_CRYPTO_GF128MUL is not set |
1298 | # CONFIG_CRYPTO_NULL is not set | 1334 | # CONFIG_CRYPTO_NULL is not set |
1299 | # CONFIG_CRYPTO_CRYPTD is not set | 1335 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/83xx/mpc834x_mds_defconfig b/arch/powerpc/configs/83xx/mpc834x_mds_defconfig index 728fc95d5870..18e4bc0b3c11 100644 --- a/arch/powerpc/configs/83xx/mpc834x_mds_defconfig +++ b/arch/powerpc/configs/83xx/mpc834x_mds_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:58 2008 | 4 | # Mon Jan 26 15:35:56 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -75,12 +75,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 79 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -113,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
113 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
114 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
119 | CONFIG_HAVE_IOREMAP_PROT=y | 118 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -123,7 +122,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
124 | CONFIG_SLABINFO=y | 123 | CONFIG_SLABINFO=y |
125 | CONFIG_RT_MUTEXES=y | 124 | CONFIG_RT_MUTEXES=y |
126 | # CONFIG_TINY_SHMEM is not set | ||
127 | CONFIG_BASE_SMALL=0 | 125 | CONFIG_BASE_SMALL=0 |
128 | CONFIG_MODULES=y | 126 | CONFIG_MODULES=y |
129 | # CONFIG_MODULE_FORCE_LOAD is not set | 127 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -131,11 +129,9 @@ CONFIG_MODULE_UNLOAD=y | |||
131 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 129 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
132 | # CONFIG_MODVERSIONS is not set | 130 | # CONFIG_MODVERSIONS is not set |
133 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
134 | CONFIG_KMOD=y | ||
135 | CONFIG_BLOCK=y | 132 | CONFIG_BLOCK=y |
136 | # CONFIG_LBD is not set | 133 | # CONFIG_LBD is not set |
137 | # CONFIG_BLK_DEV_IO_TRACE is not set | 134 | # CONFIG_BLK_DEV_IO_TRACE is not set |
138 | # CONFIG_LSF is not set | ||
139 | # CONFIG_BLK_DEV_BSG is not set | 135 | # CONFIG_BLK_DEV_BSG is not set |
140 | # CONFIG_BLK_DEV_INTEGRITY is not set | 136 | # CONFIG_BLK_DEV_INTEGRITY is not set |
141 | 137 | ||
@@ -152,6 +148,10 @@ CONFIG_DEFAULT_AS=y | |||
152 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
153 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
154 | CONFIG_CLASSIC_RCU=y | 150 | CONFIG_CLASSIC_RCU=y |
151 | # CONFIG_TREE_RCU is not set | ||
152 | # CONFIG_PREEMPT_RCU is not set | ||
153 | # CONFIG_TREE_RCU_TRACE is not set | ||
154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
155 | # CONFIG_FREEZER is not set | 155 | # CONFIG_FREEZER is not set |
156 | 156 | ||
157 | # | 157 | # |
@@ -198,6 +198,8 @@ CONFIG_IPIC=y | |||
198 | # CONFIG_QUICC_ENGINE is not set | 198 | # CONFIG_QUICC_ENGINE is not set |
199 | # CONFIG_FSL_ULI1575 is not set | 199 | # CONFIG_FSL_ULI1575 is not set |
200 | # CONFIG_MPC8xxx_GPIO is not set | 200 | # CONFIG_MPC8xxx_GPIO is not set |
201 | # CONFIG_SIMPLE_GPIO is not set | ||
202 | # CONFIG_MCU_MPC8349EMITX is not set | ||
201 | 203 | ||
202 | # | 204 | # |
203 | # Kernel options | 205 | # Kernel options |
@@ -225,6 +227,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
225 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 227 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
226 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 228 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
227 | # CONFIG_KEXEC is not set | 229 | # CONFIG_KEXEC is not set |
230 | # CONFIG_CRASH_DUMP is not set | ||
228 | CONFIG_ARCH_FLATMEM_ENABLE=y | 231 | CONFIG_ARCH_FLATMEM_ENABLE=y |
229 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 232 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
230 | CONFIG_SELECT_MEMORY_MODEL=y | 233 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -236,12 +239,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
236 | CONFIG_PAGEFLAGS_EXTENDED=y | 239 | CONFIG_PAGEFLAGS_EXTENDED=y |
237 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 240 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
238 | CONFIG_MIGRATION=y | 241 | CONFIG_MIGRATION=y |
239 | # CONFIG_RESOURCES_64BIT is not set | ||
240 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 242 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
241 | CONFIG_ZONE_DMA_FLAG=1 | 243 | CONFIG_ZONE_DMA_FLAG=1 |
242 | CONFIG_BOUNCE=y | 244 | CONFIG_BOUNCE=y |
243 | CONFIG_VIRT_TO_BUS=y | 245 | CONFIG_VIRT_TO_BUS=y |
244 | CONFIG_UNEVICTABLE_LRU=y | 246 | CONFIG_UNEVICTABLE_LRU=y |
247 | CONFIG_PPC_4K_PAGES=y | ||
248 | # CONFIG_PPC_16K_PAGES is not set | ||
249 | # CONFIG_PPC_64K_PAGES is not set | ||
245 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
246 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
247 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
@@ -266,6 +271,7 @@ CONFIG_PCI_SYSCALL=y | |||
266 | CONFIG_ARCH_SUPPORTS_MSI=y | 271 | CONFIG_ARCH_SUPPORTS_MSI=y |
267 | # CONFIG_PCI_MSI is not set | 272 | # CONFIG_PCI_MSI is not set |
268 | # CONFIG_PCI_LEGACY is not set | 273 | # CONFIG_PCI_LEGACY is not set |
274 | # CONFIG_PCI_STUB is not set | ||
269 | # CONFIG_PCCARD is not set | 275 | # CONFIG_PCCARD is not set |
270 | # CONFIG_HOTPLUG_PCI is not set | 276 | # CONFIG_HOTPLUG_PCI is not set |
271 | # CONFIG_HAS_RAPIDIO is not set | 277 | # CONFIG_HAS_RAPIDIO is not set |
@@ -288,6 +294,7 @@ CONFIG_NET=y | |||
288 | # | 294 | # |
289 | # Networking options | 295 | # Networking options |
290 | # | 296 | # |
297 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
291 | CONFIG_PACKET=y | 298 | CONFIG_PACKET=y |
292 | # CONFIG_PACKET_MMAP is not set | 299 | # CONFIG_PACKET_MMAP is not set |
293 | CONFIG_UNIX=y | 300 | CONFIG_UNIX=y |
@@ -344,6 +351,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
344 | # CONFIG_ECONET is not set | 351 | # CONFIG_ECONET is not set |
345 | # CONFIG_WAN_ROUTER is not set | 352 | # CONFIG_WAN_ROUTER is not set |
346 | # CONFIG_NET_SCHED is not set | 353 | # CONFIG_NET_SCHED is not set |
354 | # CONFIG_DCB is not set | ||
347 | 355 | ||
348 | # | 356 | # |
349 | # Network testing | 357 | # Network testing |
@@ -359,8 +367,9 @@ CONFIG_WIRELESS=y | |||
359 | # CONFIG_CFG80211 is not set | 367 | # CONFIG_CFG80211 is not set |
360 | CONFIG_WIRELESS_OLD_REGULATORY=y | 368 | CONFIG_WIRELESS_OLD_REGULATORY=y |
361 | # CONFIG_WIRELESS_EXT is not set | 369 | # CONFIG_WIRELESS_EXT is not set |
370 | # CONFIG_LIB80211 is not set | ||
362 | # CONFIG_MAC80211 is not set | 371 | # CONFIG_MAC80211 is not set |
363 | # CONFIG_IEEE80211 is not set | 372 | # CONFIG_WIMAX is not set |
364 | # CONFIG_RFKILL is not set | 373 | # CONFIG_RFKILL is not set |
365 | # CONFIG_NET_9P is not set | 374 | # CONFIG_NET_9P is not set |
366 | 375 | ||
@@ -404,8 +413,10 @@ CONFIG_MISC_DEVICES=y | |||
404 | # CONFIG_EEPROM_93CX6 is not set | 413 | # CONFIG_EEPROM_93CX6 is not set |
405 | # CONFIG_SGI_IOC4 is not set | 414 | # CONFIG_SGI_IOC4 is not set |
406 | # CONFIG_TIFM_CORE is not set | 415 | # CONFIG_TIFM_CORE is not set |
416 | # CONFIG_ICS932S401 is not set | ||
407 | # CONFIG_ENCLOSURE_SERVICES is not set | 417 | # CONFIG_ENCLOSURE_SERVICES is not set |
408 | # CONFIG_HP_ILO is not set | 418 | # CONFIG_HP_ILO is not set |
419 | # CONFIG_C2PORT is not set | ||
409 | CONFIG_HAVE_IDE=y | 420 | CONFIG_HAVE_IDE=y |
410 | # CONFIG_IDE is not set | 421 | # CONFIG_IDE is not set |
411 | 422 | ||
@@ -454,6 +465,9 @@ CONFIG_MARVELL_PHY=y | |||
454 | # CONFIG_BROADCOM_PHY is not set | 465 | # CONFIG_BROADCOM_PHY is not set |
455 | # CONFIG_ICPLUS_PHY is not set | 466 | # CONFIG_ICPLUS_PHY is not set |
456 | # CONFIG_REALTEK_PHY is not set | 467 | # CONFIG_REALTEK_PHY is not set |
468 | # CONFIG_NATIONAL_PHY is not set | ||
469 | # CONFIG_STE10XP is not set | ||
470 | # CONFIG_LSI_ET1011C_PHY is not set | ||
457 | # CONFIG_FIXED_PHY is not set | 471 | # CONFIG_FIXED_PHY is not set |
458 | # CONFIG_MDIO_BITBANG is not set | 472 | # CONFIG_MDIO_BITBANG is not set |
459 | CONFIG_NET_ETHERNET=y | 473 | CONFIG_NET_ETHERNET=y |
@@ -477,7 +491,6 @@ CONFIG_NET_PCI=y | |||
477 | # CONFIG_ADAPTEC_STARFIRE is not set | 491 | # CONFIG_ADAPTEC_STARFIRE is not set |
478 | # CONFIG_B44 is not set | 492 | # CONFIG_B44 is not set |
479 | # CONFIG_FORCEDETH is not set | 493 | # CONFIG_FORCEDETH is not set |
480 | # CONFIG_EEPRO100 is not set | ||
481 | CONFIG_E100=y | 494 | CONFIG_E100=y |
482 | # CONFIG_FEALNX is not set | 495 | # CONFIG_FEALNX is not set |
483 | # CONFIG_NATSEMI is not set | 496 | # CONFIG_NATSEMI is not set |
@@ -487,6 +500,7 @@ CONFIG_E100=y | |||
487 | # CONFIG_R6040 is not set | 500 | # CONFIG_R6040 is not set |
488 | # CONFIG_SIS900 is not set | 501 | # CONFIG_SIS900 is not set |
489 | # CONFIG_EPIC100 is not set | 502 | # CONFIG_EPIC100 is not set |
503 | # CONFIG_SMSC9420 is not set | ||
490 | # CONFIG_SUNDANCE is not set | 504 | # CONFIG_SUNDANCE is not set |
491 | # CONFIG_TLAN is not set | 505 | # CONFIG_TLAN is not set |
492 | # CONFIG_VIA_RHINE is not set | 506 | # CONFIG_VIA_RHINE is not set |
@@ -517,6 +531,7 @@ CONFIG_GIANFAR=y | |||
517 | # CONFIG_JME is not set | 531 | # CONFIG_JME is not set |
518 | CONFIG_NETDEV_10000=y | 532 | CONFIG_NETDEV_10000=y |
519 | # CONFIG_CHELSIO_T1 is not set | 533 | # CONFIG_CHELSIO_T1 is not set |
534 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
520 | # CONFIG_CHELSIO_T3 is not set | 535 | # CONFIG_CHELSIO_T3 is not set |
521 | # CONFIG_ENIC is not set | 536 | # CONFIG_ENIC is not set |
522 | # CONFIG_IXGBE is not set | 537 | # CONFIG_IXGBE is not set |
@@ -539,6 +554,10 @@ CONFIG_NETDEV_10000=y | |||
539 | # CONFIG_WLAN_PRE80211 is not set | 554 | # CONFIG_WLAN_PRE80211 is not set |
540 | # CONFIG_WLAN_80211 is not set | 555 | # CONFIG_WLAN_80211 is not set |
541 | # CONFIG_IWLWIFI_LEDS is not set | 556 | # CONFIG_IWLWIFI_LEDS is not set |
557 | |||
558 | # | ||
559 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
560 | # | ||
542 | # CONFIG_WAN is not set | 561 | # CONFIG_WAN is not set |
543 | # CONFIG_FDDI is not set | 562 | # CONFIG_FDDI is not set |
544 | # CONFIG_HIPPI is not set | 563 | # CONFIG_HIPPI is not set |
@@ -608,8 +627,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
608 | # CONFIG_SERIAL_JSM is not set | 627 | # CONFIG_SERIAL_JSM is not set |
609 | # CONFIG_SERIAL_OF_PLATFORM is not set | 628 | # CONFIG_SERIAL_OF_PLATFORM is not set |
610 | CONFIG_UNIX98_PTYS=y | 629 | CONFIG_UNIX98_PTYS=y |
630 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
611 | CONFIG_LEGACY_PTYS=y | 631 | CONFIG_LEGACY_PTYS=y |
612 | CONFIG_LEGACY_PTY_COUNT=256 | 632 | CONFIG_LEGACY_PTY_COUNT=256 |
633 | # CONFIG_HVC_UDBG is not set | ||
613 | # CONFIG_IPMI_HANDLER is not set | 634 | # CONFIG_IPMI_HANDLER is not set |
614 | # CONFIG_HW_RANDOM is not set | 635 | # CONFIG_HW_RANDOM is not set |
615 | # CONFIG_NVRAM is not set | 636 | # CONFIG_NVRAM is not set |
@@ -681,7 +702,6 @@ CONFIG_I2C_MPC=y | |||
681 | # CONFIG_SENSORS_PCF8591 is not set | 702 | # CONFIG_SENSORS_PCF8591 is not set |
682 | # CONFIG_SENSORS_MAX6875 is not set | 703 | # CONFIG_SENSORS_MAX6875 is not set |
683 | # CONFIG_SENSORS_TSL2550 is not set | 704 | # CONFIG_SENSORS_TSL2550 is not set |
684 | # CONFIG_MCU_MPC8349EMITX is not set | ||
685 | # CONFIG_I2C_DEBUG_CORE is not set | 705 | # CONFIG_I2C_DEBUG_CORE is not set |
686 | # CONFIG_I2C_DEBUG_ALGO is not set | 706 | # CONFIG_I2C_DEBUG_ALGO is not set |
687 | # CONFIG_I2C_DEBUG_BUS is not set | 707 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -701,8 +721,10 @@ CONFIG_HWMON=y | |||
701 | # CONFIG_SENSORS_ADM1029 is not set | 721 | # CONFIG_SENSORS_ADM1029 is not set |
702 | # CONFIG_SENSORS_ADM1031 is not set | 722 | # CONFIG_SENSORS_ADM1031 is not set |
703 | # CONFIG_SENSORS_ADM9240 is not set | 723 | # CONFIG_SENSORS_ADM9240 is not set |
724 | # CONFIG_SENSORS_ADT7462 is not set | ||
704 | # CONFIG_SENSORS_ADT7470 is not set | 725 | # CONFIG_SENSORS_ADT7470 is not set |
705 | # CONFIG_SENSORS_ADT7473 is not set | 726 | # CONFIG_SENSORS_ADT7473 is not set |
727 | # CONFIG_SENSORS_ADT7475 is not set | ||
706 | # CONFIG_SENSORS_ATXP1 is not set | 728 | # CONFIG_SENSORS_ATXP1 is not set |
707 | # CONFIG_SENSORS_DS1621 is not set | 729 | # CONFIG_SENSORS_DS1621 is not set |
708 | # CONFIG_SENSORS_I5K_AMB is not set | 730 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -723,6 +745,7 @@ CONFIG_HWMON=y | |||
723 | # CONFIG_SENSORS_LM90 is not set | 745 | # CONFIG_SENSORS_LM90 is not set |
724 | # CONFIG_SENSORS_LM92 is not set | 746 | # CONFIG_SENSORS_LM92 is not set |
725 | # CONFIG_SENSORS_LM93 is not set | 747 | # CONFIG_SENSORS_LM93 is not set |
748 | # CONFIG_SENSORS_LTC4245 is not set | ||
726 | # CONFIG_SENSORS_MAX1619 is not set | 749 | # CONFIG_SENSORS_MAX1619 is not set |
727 | # CONFIG_SENSORS_MAX6650 is not set | 750 | # CONFIG_SENSORS_MAX6650 is not set |
728 | # CONFIG_SENSORS_PC87360 is not set | 751 | # CONFIG_SENSORS_PC87360 is not set |
@@ -763,11 +786,11 @@ CONFIG_WATCHDOG=y | |||
763 | # | 786 | # |
764 | # CONFIG_PCIPCWATCHDOG is not set | 787 | # CONFIG_PCIPCWATCHDOG is not set |
765 | # CONFIG_WDTPCI is not set | 788 | # CONFIG_WDTPCI is not set |
789 | CONFIG_SSB_POSSIBLE=y | ||
766 | 790 | ||
767 | # | 791 | # |
768 | # Sonics Silicon Backplane | 792 | # Sonics Silicon Backplane |
769 | # | 793 | # |
770 | CONFIG_SSB_POSSIBLE=y | ||
771 | # CONFIG_SSB is not set | 794 | # CONFIG_SSB is not set |
772 | 795 | ||
773 | # | 796 | # |
@@ -776,18 +799,13 @@ CONFIG_SSB_POSSIBLE=y | |||
776 | # CONFIG_MFD_CORE is not set | 799 | # CONFIG_MFD_CORE is not set |
777 | # CONFIG_MFD_SM501 is not set | 800 | # CONFIG_MFD_SM501 is not set |
778 | # CONFIG_HTC_PASIC3 is not set | 801 | # CONFIG_HTC_PASIC3 is not set |
802 | # CONFIG_TWL4030_CORE is not set | ||
779 | # CONFIG_MFD_TMIO is not set | 803 | # CONFIG_MFD_TMIO is not set |
780 | # CONFIG_PMIC_DA903X is not set | 804 | # CONFIG_PMIC_DA903X is not set |
781 | # CONFIG_MFD_WM8400 is not set | 805 | # CONFIG_MFD_WM8400 is not set |
782 | # CONFIG_MFD_WM8350_I2C is not set | 806 | # CONFIG_MFD_WM8350_I2C is not set |
783 | 807 | # CONFIG_MFD_PCF50633 is not set | |
784 | # | ||
785 | # Voltage and Current regulators | ||
786 | # | ||
787 | # CONFIG_REGULATOR is not set | 808 | # CONFIG_REGULATOR is not set |
788 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
789 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
790 | # CONFIG_REGULATOR_BQ24022 is not set | ||
791 | 809 | ||
792 | # | 810 | # |
793 | # Multimedia devices | 811 | # Multimedia devices |
@@ -843,9 +861,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
843 | # | 861 | # |
844 | 862 | ||
845 | # | 863 | # |
846 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 864 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
847 | # | 865 | # |
848 | # CONFIG_USB_GADGET is not set | 866 | # CONFIG_USB_GADGET is not set |
867 | |||
868 | # | ||
869 | # OTG and related infrastructure | ||
870 | # | ||
849 | # CONFIG_UWB is not set | 871 | # CONFIG_UWB is not set |
850 | # CONFIG_MMC is not set | 872 | # CONFIG_MMC is not set |
851 | # CONFIG_MEMSTICK is not set | 873 | # CONFIG_MEMSTICK is not set |
@@ -883,6 +905,7 @@ CONFIG_RTC_DRV_DS1374=y | |||
883 | # CONFIG_RTC_DRV_M41T80 is not set | 905 | # CONFIG_RTC_DRV_M41T80 is not set |
884 | # CONFIG_RTC_DRV_S35390A is not set | 906 | # CONFIG_RTC_DRV_S35390A is not set |
885 | # CONFIG_RTC_DRV_FM3130 is not set | 907 | # CONFIG_RTC_DRV_FM3130 is not set |
908 | # CONFIG_RTC_DRV_RX8581 is not set | ||
886 | 909 | ||
887 | # | 910 | # |
888 | # SPI RTC drivers | 911 | # SPI RTC drivers |
@@ -930,6 +953,7 @@ CONFIG_FS_MBCACHE=y | |||
930 | CONFIG_FILE_LOCKING=y | 953 | CONFIG_FILE_LOCKING=y |
931 | # CONFIG_XFS_FS is not set | 954 | # CONFIG_XFS_FS is not set |
932 | # CONFIG_OCFS2_FS is not set | 955 | # CONFIG_OCFS2_FS is not set |
956 | # CONFIG_BTRFS_FS is not set | ||
933 | CONFIG_DNOTIFY=y | 957 | CONFIG_DNOTIFY=y |
934 | CONFIG_INOTIFY=y | 958 | CONFIG_INOTIFY=y |
935 | CONFIG_INOTIFY_USER=y | 959 | CONFIG_INOTIFY_USER=y |
@@ -963,10 +987,7 @@ CONFIG_TMPFS=y | |||
963 | # CONFIG_TMPFS_POSIX_ACL is not set | 987 | # CONFIG_TMPFS_POSIX_ACL is not set |
964 | # CONFIG_HUGETLB_PAGE is not set | 988 | # CONFIG_HUGETLB_PAGE is not set |
965 | # CONFIG_CONFIGFS_FS is not set | 989 | # CONFIG_CONFIGFS_FS is not set |
966 | 990 | CONFIG_MISC_FILESYSTEMS=y | |
967 | # | ||
968 | # Miscellaneous filesystems | ||
969 | # | ||
970 | # CONFIG_ADFS_FS is not set | 991 | # CONFIG_ADFS_FS is not set |
971 | # CONFIG_AFFS_FS is not set | 992 | # CONFIG_AFFS_FS is not set |
972 | # CONFIG_HFS_FS is not set | 993 | # CONFIG_HFS_FS is not set |
@@ -975,6 +996,7 @@ CONFIG_TMPFS=y | |||
975 | # CONFIG_BFS_FS is not set | 996 | # CONFIG_BFS_FS is not set |
976 | # CONFIG_EFS_FS is not set | 997 | # CONFIG_EFS_FS is not set |
977 | # CONFIG_CRAMFS is not set | 998 | # CONFIG_CRAMFS is not set |
999 | # CONFIG_SQUASHFS is not set | ||
978 | # CONFIG_VXFS_FS is not set | 1000 | # CONFIG_VXFS_FS is not set |
979 | # CONFIG_MINIX_FS is not set | 1001 | # CONFIG_MINIX_FS is not set |
980 | # CONFIG_OMFS_FS is not set | 1002 | # CONFIG_OMFS_FS is not set |
@@ -1028,6 +1050,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
1028 | # Library routines | 1050 | # Library routines |
1029 | # | 1051 | # |
1030 | CONFIG_BITREVERSE=y | 1052 | CONFIG_BITREVERSE=y |
1053 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1031 | # CONFIG_CRC_CCITT is not set | 1054 | # CONFIG_CRC_CCITT is not set |
1032 | # CONFIG_CRC16 is not set | 1055 | # CONFIG_CRC16 is not set |
1033 | # CONFIG_CRC_T10DIF is not set | 1056 | # CONFIG_CRC_T10DIF is not set |
@@ -1061,6 +1084,8 @@ CONFIG_FRAME_WARN=1024 | |||
1061 | # CONFIG_LATENCYTOP is not set | 1084 | # CONFIG_LATENCYTOP is not set |
1062 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1085 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1063 | CONFIG_HAVE_FUNCTION_TRACER=y | 1086 | CONFIG_HAVE_FUNCTION_TRACER=y |
1087 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1088 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1064 | 1089 | ||
1065 | # | 1090 | # |
1066 | # Tracers | 1091 | # Tracers |
@@ -1068,6 +1093,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1068 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1093 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1069 | # CONFIG_SAMPLES is not set | 1094 | # CONFIG_SAMPLES is not set |
1070 | CONFIG_HAVE_ARCH_KGDB=y | 1095 | CONFIG_HAVE_ARCH_KGDB=y |
1096 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1071 | # CONFIG_IRQSTACKS is not set | 1097 | # CONFIG_IRQSTACKS is not set |
1072 | # CONFIG_BOOTX_TEXT is not set | 1098 | # CONFIG_BOOTX_TEXT is not set |
1073 | # CONFIG_PPC_EARLY_DEBUG is not set | 1099 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1086,11 +1112,15 @@ CONFIG_CRYPTO=y | |||
1086 | # | 1112 | # |
1087 | # CONFIG_CRYPTO_FIPS is not set | 1113 | # CONFIG_CRYPTO_FIPS is not set |
1088 | CONFIG_CRYPTO_ALGAPI=y | 1114 | CONFIG_CRYPTO_ALGAPI=y |
1089 | CONFIG_CRYPTO_AEAD=y | 1115 | CONFIG_CRYPTO_ALGAPI2=y |
1116 | CONFIG_CRYPTO_AEAD2=y | ||
1090 | CONFIG_CRYPTO_BLKCIPHER=y | 1117 | CONFIG_CRYPTO_BLKCIPHER=y |
1118 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1091 | CONFIG_CRYPTO_HASH=y | 1119 | CONFIG_CRYPTO_HASH=y |
1092 | CONFIG_CRYPTO_RNG=y | 1120 | CONFIG_CRYPTO_HASH2=y |
1121 | CONFIG_CRYPTO_RNG2=y | ||
1093 | CONFIG_CRYPTO_MANAGER=y | 1122 | CONFIG_CRYPTO_MANAGER=y |
1123 | CONFIG_CRYPTO_MANAGER2=y | ||
1094 | # CONFIG_CRYPTO_GF128MUL is not set | 1124 | # CONFIG_CRYPTO_GF128MUL is not set |
1095 | # CONFIG_CRYPTO_NULL is not set | 1125 | # CONFIG_CRYPTO_NULL is not set |
1096 | # CONFIG_CRYPTO_CRYPTD is not set | 1126 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/83xx/mpc836x_mds_defconfig b/arch/powerpc/configs/83xx/mpc836x_mds_defconfig index f7546e7cb762..76db8138eac7 100644 --- a/arch/powerpc/configs/83xx/mpc836x_mds_defconfig +++ b/arch/powerpc/configs/83xx/mpc836x_mds_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:59 2008 | 4 | # Mon Jan 26 15:35:58 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -75,12 +75,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 79 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -113,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
113 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
114 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
119 | CONFIG_HAVE_IOREMAP_PROT=y | 118 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -123,7 +122,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
124 | CONFIG_SLABINFO=y | 123 | CONFIG_SLABINFO=y |
125 | CONFIG_RT_MUTEXES=y | 124 | CONFIG_RT_MUTEXES=y |
126 | # CONFIG_TINY_SHMEM is not set | ||
127 | CONFIG_BASE_SMALL=0 | 125 | CONFIG_BASE_SMALL=0 |
128 | CONFIG_MODULES=y | 126 | CONFIG_MODULES=y |
129 | # CONFIG_MODULE_FORCE_LOAD is not set | 127 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -131,11 +129,9 @@ CONFIG_MODULE_UNLOAD=y | |||
131 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 129 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
132 | # CONFIG_MODVERSIONS is not set | 130 | # CONFIG_MODVERSIONS is not set |
133 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
134 | CONFIG_KMOD=y | ||
135 | CONFIG_BLOCK=y | 132 | CONFIG_BLOCK=y |
136 | # CONFIG_LBD is not set | 133 | # CONFIG_LBD is not set |
137 | # CONFIG_BLK_DEV_IO_TRACE is not set | 134 | # CONFIG_BLK_DEV_IO_TRACE is not set |
138 | # CONFIG_LSF is not set | ||
139 | # CONFIG_BLK_DEV_BSG is not set | 135 | # CONFIG_BLK_DEV_BSG is not set |
140 | # CONFIG_BLK_DEV_INTEGRITY is not set | 136 | # CONFIG_BLK_DEV_INTEGRITY is not set |
141 | 137 | ||
@@ -152,6 +148,10 @@ CONFIG_DEFAULT_AS=y | |||
152 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
153 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
154 | CONFIG_CLASSIC_RCU=y | 150 | CONFIG_CLASSIC_RCU=y |
151 | # CONFIG_TREE_RCU is not set | ||
152 | # CONFIG_PREEMPT_RCU is not set | ||
153 | # CONFIG_TREE_RCU_TRACE is not set | ||
154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
155 | # CONFIG_FREEZER is not set | 155 | # CONFIG_FREEZER is not set |
156 | 156 | ||
157 | # | 157 | # |
@@ -197,6 +197,8 @@ CONFIG_IPIC=y | |||
197 | CONFIG_QUICC_ENGINE=y | 197 | CONFIG_QUICC_ENGINE=y |
198 | # CONFIG_QE_GPIO is not set | 198 | # CONFIG_QE_GPIO is not set |
199 | # CONFIG_FSL_ULI1575 is not set | 199 | # CONFIG_FSL_ULI1575 is not set |
200 | # CONFIG_SIMPLE_GPIO is not set | ||
201 | # CONFIG_MCU_MPC8349EMITX is not set | ||
200 | 202 | ||
201 | # | 203 | # |
202 | # Kernel options | 204 | # Kernel options |
@@ -224,6 +226,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
224 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 226 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
225 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 227 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
226 | # CONFIG_KEXEC is not set | 228 | # CONFIG_KEXEC is not set |
229 | # CONFIG_CRASH_DUMP is not set | ||
227 | CONFIG_ARCH_FLATMEM_ENABLE=y | 230 | CONFIG_ARCH_FLATMEM_ENABLE=y |
228 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 231 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
229 | CONFIG_SELECT_MEMORY_MODEL=y | 232 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -235,12 +238,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
235 | CONFIG_PAGEFLAGS_EXTENDED=y | 238 | CONFIG_PAGEFLAGS_EXTENDED=y |
236 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 239 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
237 | CONFIG_MIGRATION=y | 240 | CONFIG_MIGRATION=y |
238 | # CONFIG_RESOURCES_64BIT is not set | ||
239 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 241 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
240 | CONFIG_ZONE_DMA_FLAG=1 | 242 | CONFIG_ZONE_DMA_FLAG=1 |
241 | CONFIG_BOUNCE=y | 243 | CONFIG_BOUNCE=y |
242 | CONFIG_VIRT_TO_BUS=y | 244 | CONFIG_VIRT_TO_BUS=y |
243 | CONFIG_UNEVICTABLE_LRU=y | 245 | CONFIG_UNEVICTABLE_LRU=y |
246 | CONFIG_PPC_4K_PAGES=y | ||
247 | # CONFIG_PPC_16K_PAGES is not set | ||
248 | # CONFIG_PPC_64K_PAGES is not set | ||
244 | CONFIG_FORCE_MAX_ZONEORDER=11 | 249 | CONFIG_FORCE_MAX_ZONEORDER=11 |
245 | CONFIG_PROC_DEVICETREE=y | 250 | CONFIG_PROC_DEVICETREE=y |
246 | # CONFIG_CMDLINE_BOOL is not set | 251 | # CONFIG_CMDLINE_BOOL is not set |
@@ -265,6 +270,7 @@ CONFIG_PCI_SYSCALL=y | |||
265 | CONFIG_ARCH_SUPPORTS_MSI=y | 270 | CONFIG_ARCH_SUPPORTS_MSI=y |
266 | # CONFIG_PCI_MSI is not set | 271 | # CONFIG_PCI_MSI is not set |
267 | # CONFIG_PCI_LEGACY is not set | 272 | # CONFIG_PCI_LEGACY is not set |
273 | # CONFIG_PCI_STUB is not set | ||
268 | # CONFIG_PCCARD is not set | 274 | # CONFIG_PCCARD is not set |
269 | # CONFIG_HOTPLUG_PCI is not set | 275 | # CONFIG_HOTPLUG_PCI is not set |
270 | # CONFIG_HAS_RAPIDIO is not set | 276 | # CONFIG_HAS_RAPIDIO is not set |
@@ -287,6 +293,7 @@ CONFIG_NET=y | |||
287 | # | 293 | # |
288 | # Networking options | 294 | # Networking options |
289 | # | 295 | # |
296 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
290 | CONFIG_PACKET=y | 297 | CONFIG_PACKET=y |
291 | # CONFIG_PACKET_MMAP is not set | 298 | # CONFIG_PACKET_MMAP is not set |
292 | CONFIG_UNIX=y | 299 | CONFIG_UNIX=y |
@@ -343,6 +350,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
343 | # CONFIG_ECONET is not set | 350 | # CONFIG_ECONET is not set |
344 | # CONFIG_WAN_ROUTER is not set | 351 | # CONFIG_WAN_ROUTER is not set |
345 | # CONFIG_NET_SCHED is not set | 352 | # CONFIG_NET_SCHED is not set |
353 | # CONFIG_DCB is not set | ||
346 | 354 | ||
347 | # | 355 | # |
348 | # Network testing | 356 | # Network testing |
@@ -358,8 +366,9 @@ CONFIG_WIRELESS=y | |||
358 | # CONFIG_CFG80211 is not set | 366 | # CONFIG_CFG80211 is not set |
359 | CONFIG_WIRELESS_OLD_REGULATORY=y | 367 | CONFIG_WIRELESS_OLD_REGULATORY=y |
360 | # CONFIG_WIRELESS_EXT is not set | 368 | # CONFIG_WIRELESS_EXT is not set |
369 | # CONFIG_LIB80211 is not set | ||
361 | # CONFIG_MAC80211 is not set | 370 | # CONFIG_MAC80211 is not set |
362 | # CONFIG_IEEE80211 is not set | 371 | # CONFIG_WIMAX is not set |
363 | # CONFIG_RFKILL is not set | 372 | # CONFIG_RFKILL is not set |
364 | # CONFIG_NET_9P is not set | 373 | # CONFIG_NET_9P is not set |
365 | 374 | ||
@@ -380,6 +389,7 @@ CONFIG_MTD=y | |||
380 | # CONFIG_MTD_DEBUG is not set | 389 | # CONFIG_MTD_DEBUG is not set |
381 | # CONFIG_MTD_CONCAT is not set | 390 | # CONFIG_MTD_CONCAT is not set |
382 | CONFIG_MTD_PARTITIONS=y | 391 | CONFIG_MTD_PARTITIONS=y |
392 | # CONFIG_MTD_TESTS is not set | ||
383 | # CONFIG_MTD_REDBOOT_PARTS is not set | 393 | # CONFIG_MTD_REDBOOT_PARTS is not set |
384 | CONFIG_MTD_CMDLINE_PARTS=y | 394 | CONFIG_MTD_CMDLINE_PARTS=y |
385 | # CONFIG_MTD_OF_PARTS is not set | 395 | # CONFIG_MTD_OF_PARTS is not set |
@@ -451,6 +461,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
451 | # CONFIG_MTD_ONENAND is not set | 461 | # CONFIG_MTD_ONENAND is not set |
452 | 462 | ||
453 | # | 463 | # |
464 | # LPDDR flash memory drivers | ||
465 | # | ||
466 | # CONFIG_MTD_LPDDR is not set | ||
467 | # CONFIG_MTD_QINFO_PROBE is not set | ||
468 | |||
469 | # | ||
454 | # UBI - Unsorted block images | 470 | # UBI - Unsorted block images |
455 | # | 471 | # |
456 | # CONFIG_MTD_UBI is not set | 472 | # CONFIG_MTD_UBI is not set |
@@ -480,8 +496,10 @@ CONFIG_MISC_DEVICES=y | |||
480 | # CONFIG_EEPROM_93CX6 is not set | 496 | # CONFIG_EEPROM_93CX6 is not set |
481 | # CONFIG_SGI_IOC4 is not set | 497 | # CONFIG_SGI_IOC4 is not set |
482 | # CONFIG_TIFM_CORE is not set | 498 | # CONFIG_TIFM_CORE is not set |
499 | # CONFIG_ICS932S401 is not set | ||
483 | # CONFIG_ENCLOSURE_SERVICES is not set | 500 | # CONFIG_ENCLOSURE_SERVICES is not set |
484 | # CONFIG_HP_ILO is not set | 501 | # CONFIG_HP_ILO is not set |
502 | # CONFIG_C2PORT is not set | ||
485 | CONFIG_HAVE_IDE=y | 503 | CONFIG_HAVE_IDE=y |
486 | # CONFIG_IDE is not set | 504 | # CONFIG_IDE is not set |
487 | 505 | ||
@@ -524,6 +542,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
524 | # CONFIG_SCSI_SRP_ATTRS is not set | 542 | # CONFIG_SCSI_SRP_ATTRS is not set |
525 | CONFIG_SCSI_LOWLEVEL=y | 543 | CONFIG_SCSI_LOWLEVEL=y |
526 | # CONFIG_ISCSI_TCP is not set | 544 | # CONFIG_ISCSI_TCP is not set |
545 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
527 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 546 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
528 | # CONFIG_SCSI_3W_9XXX is not set | 547 | # CONFIG_SCSI_3W_9XXX is not set |
529 | # CONFIG_SCSI_ACARD is not set | 548 | # CONFIG_SCSI_ACARD is not set |
@@ -540,6 +559,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
540 | # CONFIG_MEGARAID_SAS is not set | 559 | # CONFIG_MEGARAID_SAS is not set |
541 | # CONFIG_SCSI_HPTIOP is not set | 560 | # CONFIG_SCSI_HPTIOP is not set |
542 | # CONFIG_SCSI_BUSLOGIC is not set | 561 | # CONFIG_SCSI_BUSLOGIC is not set |
562 | # CONFIG_LIBFC is not set | ||
563 | # CONFIG_FCOE is not set | ||
543 | # CONFIG_SCSI_DMX3191D is not set | 564 | # CONFIG_SCSI_DMX3191D is not set |
544 | # CONFIG_SCSI_EATA is not set | 565 | # CONFIG_SCSI_EATA is not set |
545 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 566 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -598,6 +619,9 @@ CONFIG_MARVELL_PHY=y | |||
598 | # CONFIG_BROADCOM_PHY is not set | 619 | # CONFIG_BROADCOM_PHY is not set |
599 | # CONFIG_ICPLUS_PHY is not set | 620 | # CONFIG_ICPLUS_PHY is not set |
600 | # CONFIG_REALTEK_PHY is not set | 621 | # CONFIG_REALTEK_PHY is not set |
622 | # CONFIG_NATIONAL_PHY is not set | ||
623 | # CONFIG_STE10XP is not set | ||
624 | # CONFIG_LSI_ET1011C_PHY is not set | ||
601 | # CONFIG_FIXED_PHY is not set | 625 | # CONFIG_FIXED_PHY is not set |
602 | # CONFIG_MDIO_BITBANG is not set | 626 | # CONFIG_MDIO_BITBANG is not set |
603 | CONFIG_NET_ETHERNET=y | 627 | CONFIG_NET_ETHERNET=y |
@@ -638,7 +662,6 @@ CONFIG_NETDEV_1000=y | |||
638 | # CONFIG_GIANFAR is not set | 662 | # CONFIG_GIANFAR is not set |
639 | CONFIG_UCC_GETH=y | 663 | CONFIG_UCC_GETH=y |
640 | # CONFIG_UGETH_MAGIC_PACKET is not set | 664 | # CONFIG_UGETH_MAGIC_PACKET is not set |
641 | # CONFIG_UGETH_FILTERING is not set | ||
642 | # CONFIG_UGETH_TX_ON_DEMAND is not set | 665 | # CONFIG_UGETH_TX_ON_DEMAND is not set |
643 | # CONFIG_MV643XX_ETH is not set | 666 | # CONFIG_MV643XX_ETH is not set |
644 | # CONFIG_QLA3XXX is not set | 667 | # CONFIG_QLA3XXX is not set |
@@ -647,6 +670,7 @@ CONFIG_UCC_GETH=y | |||
647 | # CONFIG_JME is not set | 670 | # CONFIG_JME is not set |
648 | CONFIG_NETDEV_10000=y | 671 | CONFIG_NETDEV_10000=y |
649 | # CONFIG_CHELSIO_T1 is not set | 672 | # CONFIG_CHELSIO_T1 is not set |
673 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
650 | # CONFIG_CHELSIO_T3 is not set | 674 | # CONFIG_CHELSIO_T3 is not set |
651 | # CONFIG_ENIC is not set | 675 | # CONFIG_ENIC is not set |
652 | # CONFIG_IXGBE is not set | 676 | # CONFIG_IXGBE is not set |
@@ -669,6 +693,10 @@ CONFIG_NETDEV_10000=y | |||
669 | # CONFIG_WLAN_PRE80211 is not set | 693 | # CONFIG_WLAN_PRE80211 is not set |
670 | # CONFIG_WLAN_80211 is not set | 694 | # CONFIG_WLAN_80211 is not set |
671 | # CONFIG_IWLWIFI_LEDS is not set | 695 | # CONFIG_IWLWIFI_LEDS is not set |
696 | |||
697 | # | ||
698 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
699 | # | ||
672 | # CONFIG_WAN is not set | 700 | # CONFIG_WAN is not set |
673 | # CONFIG_FDDI is not set | 701 | # CONFIG_FDDI is not set |
674 | # CONFIG_HIPPI is not set | 702 | # CONFIG_HIPPI is not set |
@@ -740,8 +768,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
740 | # CONFIG_SERIAL_OF_PLATFORM is not set | 768 | # CONFIG_SERIAL_OF_PLATFORM is not set |
741 | # CONFIG_SERIAL_QE is not set | 769 | # CONFIG_SERIAL_QE is not set |
742 | CONFIG_UNIX98_PTYS=y | 770 | CONFIG_UNIX98_PTYS=y |
771 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
743 | CONFIG_LEGACY_PTYS=y | 772 | CONFIG_LEGACY_PTYS=y |
744 | CONFIG_LEGACY_PTY_COUNT=256 | 773 | CONFIG_LEGACY_PTY_COUNT=256 |
774 | # CONFIG_HVC_UDBG is not set | ||
745 | # CONFIG_IPMI_HANDLER is not set | 775 | # CONFIG_IPMI_HANDLER is not set |
746 | CONFIG_HW_RANDOM=y | 776 | CONFIG_HW_RANDOM=y |
747 | # CONFIG_NVRAM is not set | 777 | # CONFIG_NVRAM is not set |
@@ -813,7 +843,6 @@ CONFIG_I2C_MPC=y | |||
813 | # CONFIG_SENSORS_PCF8591 is not set | 843 | # CONFIG_SENSORS_PCF8591 is not set |
814 | # CONFIG_SENSORS_MAX6875 is not set | 844 | # CONFIG_SENSORS_MAX6875 is not set |
815 | # CONFIG_SENSORS_TSL2550 is not set | 845 | # CONFIG_SENSORS_TSL2550 is not set |
816 | # CONFIG_MCU_MPC8349EMITX is not set | ||
817 | # CONFIG_I2C_DEBUG_CORE is not set | 846 | # CONFIG_I2C_DEBUG_CORE is not set |
818 | # CONFIG_I2C_DEBUG_ALGO is not set | 847 | # CONFIG_I2C_DEBUG_ALGO is not set |
819 | # CONFIG_I2C_DEBUG_BUS is not set | 848 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -833,8 +862,10 @@ CONFIG_HWMON=y | |||
833 | # CONFIG_SENSORS_ADM1029 is not set | 862 | # CONFIG_SENSORS_ADM1029 is not set |
834 | # CONFIG_SENSORS_ADM1031 is not set | 863 | # CONFIG_SENSORS_ADM1031 is not set |
835 | # CONFIG_SENSORS_ADM9240 is not set | 864 | # CONFIG_SENSORS_ADM9240 is not set |
865 | # CONFIG_SENSORS_ADT7462 is not set | ||
836 | # CONFIG_SENSORS_ADT7470 is not set | 866 | # CONFIG_SENSORS_ADT7470 is not set |
837 | # CONFIG_SENSORS_ADT7473 is not set | 867 | # CONFIG_SENSORS_ADT7473 is not set |
868 | # CONFIG_SENSORS_ADT7475 is not set | ||
838 | # CONFIG_SENSORS_ATXP1 is not set | 869 | # CONFIG_SENSORS_ATXP1 is not set |
839 | # CONFIG_SENSORS_DS1621 is not set | 870 | # CONFIG_SENSORS_DS1621 is not set |
840 | # CONFIG_SENSORS_I5K_AMB is not set | 871 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -855,6 +886,7 @@ CONFIG_HWMON=y | |||
855 | # CONFIG_SENSORS_LM90 is not set | 886 | # CONFIG_SENSORS_LM90 is not set |
856 | # CONFIG_SENSORS_LM92 is not set | 887 | # CONFIG_SENSORS_LM92 is not set |
857 | # CONFIG_SENSORS_LM93 is not set | 888 | # CONFIG_SENSORS_LM93 is not set |
889 | # CONFIG_SENSORS_LTC4245 is not set | ||
858 | # CONFIG_SENSORS_MAX1619 is not set | 890 | # CONFIG_SENSORS_MAX1619 is not set |
859 | # CONFIG_SENSORS_MAX6650 is not set | 891 | # CONFIG_SENSORS_MAX6650 is not set |
860 | # CONFIG_SENSORS_PC87360 is not set | 892 | # CONFIG_SENSORS_PC87360 is not set |
@@ -895,11 +927,11 @@ CONFIG_WATCHDOG=y | |||
895 | # | 927 | # |
896 | # CONFIG_PCIPCWATCHDOG is not set | 928 | # CONFIG_PCIPCWATCHDOG is not set |
897 | # CONFIG_WDTPCI is not set | 929 | # CONFIG_WDTPCI is not set |
930 | CONFIG_SSB_POSSIBLE=y | ||
898 | 931 | ||
899 | # | 932 | # |
900 | # Sonics Silicon Backplane | 933 | # Sonics Silicon Backplane |
901 | # | 934 | # |
902 | CONFIG_SSB_POSSIBLE=y | ||
903 | # CONFIG_SSB is not set | 935 | # CONFIG_SSB is not set |
904 | 936 | ||
905 | # | 937 | # |
@@ -908,18 +940,13 @@ CONFIG_SSB_POSSIBLE=y | |||
908 | # CONFIG_MFD_CORE is not set | 940 | # CONFIG_MFD_CORE is not set |
909 | # CONFIG_MFD_SM501 is not set | 941 | # CONFIG_MFD_SM501 is not set |
910 | # CONFIG_HTC_PASIC3 is not set | 942 | # CONFIG_HTC_PASIC3 is not set |
943 | # CONFIG_TWL4030_CORE is not set | ||
911 | # CONFIG_MFD_TMIO is not set | 944 | # CONFIG_MFD_TMIO is not set |
912 | # CONFIG_PMIC_DA903X is not set | 945 | # CONFIG_PMIC_DA903X is not set |
913 | # CONFIG_MFD_WM8400 is not set | 946 | # CONFIG_MFD_WM8400 is not set |
914 | # CONFIG_MFD_WM8350_I2C is not set | 947 | # CONFIG_MFD_WM8350_I2C is not set |
915 | 948 | # CONFIG_MFD_PCF50633 is not set | |
916 | # | ||
917 | # Voltage and Current regulators | ||
918 | # | ||
919 | # CONFIG_REGULATOR is not set | 949 | # CONFIG_REGULATOR is not set |
920 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
921 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
922 | # CONFIG_REGULATOR_BQ24022 is not set | ||
923 | 950 | ||
924 | # | 951 | # |
925 | # Multimedia devices | 952 | # Multimedia devices |
@@ -975,9 +1002,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
975 | # | 1002 | # |
976 | 1003 | ||
977 | # | 1004 | # |
978 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1005 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
979 | # | 1006 | # |
980 | # CONFIG_USB_GADGET is not set | 1007 | # CONFIG_USB_GADGET is not set |
1008 | |||
1009 | # | ||
1010 | # OTG and related infrastructure | ||
1011 | # | ||
981 | # CONFIG_UWB is not set | 1012 | # CONFIG_UWB is not set |
982 | # CONFIG_MMC is not set | 1013 | # CONFIG_MMC is not set |
983 | # CONFIG_MEMSTICK is not set | 1014 | # CONFIG_MEMSTICK is not set |
@@ -1015,6 +1046,7 @@ CONFIG_RTC_DRV_DS1374=y | |||
1015 | # CONFIG_RTC_DRV_M41T80 is not set | 1046 | # CONFIG_RTC_DRV_M41T80 is not set |
1016 | # CONFIG_RTC_DRV_S35390A is not set | 1047 | # CONFIG_RTC_DRV_S35390A is not set |
1017 | # CONFIG_RTC_DRV_FM3130 is not set | 1048 | # CONFIG_RTC_DRV_FM3130 is not set |
1049 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1018 | 1050 | ||
1019 | # | 1051 | # |
1020 | # SPI RTC drivers | 1052 | # SPI RTC drivers |
@@ -1062,6 +1094,7 @@ CONFIG_FS_MBCACHE=y | |||
1062 | CONFIG_FILE_LOCKING=y | 1094 | CONFIG_FILE_LOCKING=y |
1063 | # CONFIG_XFS_FS is not set | 1095 | # CONFIG_XFS_FS is not set |
1064 | # CONFIG_OCFS2_FS is not set | 1096 | # CONFIG_OCFS2_FS is not set |
1097 | # CONFIG_BTRFS_FS is not set | ||
1065 | CONFIG_DNOTIFY=y | 1098 | CONFIG_DNOTIFY=y |
1066 | CONFIG_INOTIFY=y | 1099 | CONFIG_INOTIFY=y |
1067 | CONFIG_INOTIFY_USER=y | 1100 | CONFIG_INOTIFY_USER=y |
@@ -1095,10 +1128,7 @@ CONFIG_TMPFS=y | |||
1095 | # CONFIG_TMPFS_POSIX_ACL is not set | 1128 | # CONFIG_TMPFS_POSIX_ACL is not set |
1096 | # CONFIG_HUGETLB_PAGE is not set | 1129 | # CONFIG_HUGETLB_PAGE is not set |
1097 | # CONFIG_CONFIGFS_FS is not set | 1130 | # CONFIG_CONFIGFS_FS is not set |
1098 | 1131 | CONFIG_MISC_FILESYSTEMS=y | |
1099 | # | ||
1100 | # Miscellaneous filesystems | ||
1101 | # | ||
1102 | # CONFIG_ADFS_FS is not set | 1132 | # CONFIG_ADFS_FS is not set |
1103 | # CONFIG_AFFS_FS is not set | 1133 | # CONFIG_AFFS_FS is not set |
1104 | # CONFIG_HFS_FS is not set | 1134 | # CONFIG_HFS_FS is not set |
@@ -1108,6 +1138,7 @@ CONFIG_TMPFS=y | |||
1108 | # CONFIG_EFS_FS is not set | 1138 | # CONFIG_EFS_FS is not set |
1109 | # CONFIG_JFFS2_FS is not set | 1139 | # CONFIG_JFFS2_FS is not set |
1110 | # CONFIG_CRAMFS is not set | 1140 | # CONFIG_CRAMFS is not set |
1141 | # CONFIG_SQUASHFS is not set | ||
1111 | # CONFIG_VXFS_FS is not set | 1142 | # CONFIG_VXFS_FS is not set |
1112 | # CONFIG_MINIX_FS is not set | 1143 | # CONFIG_MINIX_FS is not set |
1113 | # CONFIG_OMFS_FS is not set | 1144 | # CONFIG_OMFS_FS is not set |
@@ -1163,6 +1194,7 @@ CONFIG_UCC=y | |||
1163 | # Library routines | 1194 | # Library routines |
1164 | # | 1195 | # |
1165 | CONFIG_BITREVERSE=y | 1196 | CONFIG_BITREVERSE=y |
1197 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1166 | # CONFIG_CRC_CCITT is not set | 1198 | # CONFIG_CRC_CCITT is not set |
1167 | # CONFIG_CRC16 is not set | 1199 | # CONFIG_CRC16 is not set |
1168 | # CONFIG_CRC_T10DIF is not set | 1200 | # CONFIG_CRC_T10DIF is not set |
@@ -1196,6 +1228,8 @@ CONFIG_FRAME_WARN=1024 | |||
1196 | # CONFIG_LATENCYTOP is not set | 1228 | # CONFIG_LATENCYTOP is not set |
1197 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1229 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1198 | CONFIG_HAVE_FUNCTION_TRACER=y | 1230 | CONFIG_HAVE_FUNCTION_TRACER=y |
1231 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1232 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1199 | 1233 | ||
1200 | # | 1234 | # |
1201 | # Tracers | 1235 | # Tracers |
@@ -1203,6 +1237,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1203 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1237 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1204 | # CONFIG_SAMPLES is not set | 1238 | # CONFIG_SAMPLES is not set |
1205 | CONFIG_HAVE_ARCH_KGDB=y | 1239 | CONFIG_HAVE_ARCH_KGDB=y |
1240 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1206 | # CONFIG_IRQSTACKS is not set | 1241 | # CONFIG_IRQSTACKS is not set |
1207 | # CONFIG_BOOTX_TEXT is not set | 1242 | # CONFIG_BOOTX_TEXT is not set |
1208 | # CONFIG_PPC_EARLY_DEBUG is not set | 1243 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1221,11 +1256,15 @@ CONFIG_CRYPTO=y | |||
1221 | # | 1256 | # |
1222 | # CONFIG_CRYPTO_FIPS is not set | 1257 | # CONFIG_CRYPTO_FIPS is not set |
1223 | CONFIG_CRYPTO_ALGAPI=y | 1258 | CONFIG_CRYPTO_ALGAPI=y |
1224 | CONFIG_CRYPTO_AEAD=y | 1259 | CONFIG_CRYPTO_ALGAPI2=y |
1260 | CONFIG_CRYPTO_AEAD2=y | ||
1225 | CONFIG_CRYPTO_BLKCIPHER=y | 1261 | CONFIG_CRYPTO_BLKCIPHER=y |
1262 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1226 | CONFIG_CRYPTO_HASH=y | 1263 | CONFIG_CRYPTO_HASH=y |
1227 | CONFIG_CRYPTO_RNG=y | 1264 | CONFIG_CRYPTO_HASH2=y |
1265 | CONFIG_CRYPTO_RNG2=y | ||
1228 | CONFIG_CRYPTO_MANAGER=y | 1266 | CONFIG_CRYPTO_MANAGER=y |
1267 | CONFIG_CRYPTO_MANAGER2=y | ||
1229 | # CONFIG_CRYPTO_GF128MUL is not set | 1268 | # CONFIG_CRYPTO_GF128MUL is not set |
1230 | # CONFIG_CRYPTO_NULL is not set | 1269 | # CONFIG_CRYPTO_NULL is not set |
1231 | # CONFIG_CRYPTO_CRYPTD is not set | 1270 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/83xx/mpc836x_rdk_defconfig b/arch/powerpc/configs/83xx/mpc836x_rdk_defconfig index b94972f52241..0dc11c44306b 100644 --- a/arch/powerpc/configs/83xx/mpc836x_rdk_defconfig +++ b/arch/powerpc/configs/83xx/mpc836x_rdk_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:00 2008 | 4 | # Mon Jan 26 15:36:01 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -45,7 +45,7 @@ CONFIG_GENERIC_GPIO=y | |||
45 | CONFIG_PPC=y | 45 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 46 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 47 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 48 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 50 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 51 | CONFIG_OF=y |
@@ -76,12 +76,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
76 | # CONFIG_AUDIT is not set | 76 | # CONFIG_AUDIT is not set |
77 | # CONFIG_IKCONFIG is not set | 77 | # CONFIG_IKCONFIG is not set |
78 | CONFIG_LOG_BUF_SHIFT=14 | 78 | CONFIG_LOG_BUF_SHIFT=14 |
79 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_GROUP_SCHED=y | 79 | CONFIG_GROUP_SCHED=y |
81 | CONFIG_FAIR_GROUP_SCHED=y | 80 | CONFIG_FAIR_GROUP_SCHED=y |
82 | # CONFIG_RT_GROUP_SCHED is not set | 81 | # CONFIG_RT_GROUP_SCHED is not set |
83 | CONFIG_USER_SCHED=y | 82 | CONFIG_USER_SCHED=y |
84 | # CONFIG_CGROUP_SCHED is not set | 83 | # CONFIG_CGROUP_SCHED is not set |
84 | # CONFIG_CGROUPS is not set | ||
85 | CONFIG_SYSFS_DEPRECATED=y | 85 | CONFIG_SYSFS_DEPRECATED=y |
86 | CONFIG_SYSFS_DEPRECATED_V2=y | 86 | CONFIG_SYSFS_DEPRECATED_V2=y |
87 | # CONFIG_RELAY is not set | 87 | # CONFIG_RELAY is not set |
@@ -114,7 +114,6 @@ CONFIG_SLUB_DEBUG=y | |||
114 | CONFIG_SLUB=y | 114 | CONFIG_SLUB=y |
115 | # CONFIG_SLOB is not set | 115 | # CONFIG_SLOB is not set |
116 | # CONFIG_PROFILING is not set | 116 | # CONFIG_PROFILING is not set |
117 | # CONFIG_MARKERS is not set | ||
118 | CONFIG_HAVE_OPROFILE=y | 117 | CONFIG_HAVE_OPROFILE=y |
119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
120 | CONFIG_HAVE_IOREMAP_PROT=y | 119 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -124,7 +123,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
125 | CONFIG_SLABINFO=y | 124 | CONFIG_SLABINFO=y |
126 | CONFIG_RT_MUTEXES=y | 125 | CONFIG_RT_MUTEXES=y |
127 | # CONFIG_TINY_SHMEM is not set | ||
128 | CONFIG_BASE_SMALL=0 | 126 | CONFIG_BASE_SMALL=0 |
129 | CONFIG_MODULES=y | 127 | CONFIG_MODULES=y |
130 | # CONFIG_MODULE_FORCE_LOAD is not set | 128 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -132,11 +130,9 @@ CONFIG_MODULE_UNLOAD=y | |||
132 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 130 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
133 | # CONFIG_MODVERSIONS is not set | 131 | # CONFIG_MODVERSIONS is not set |
134 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 132 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
135 | CONFIG_KMOD=y | ||
136 | CONFIG_BLOCK=y | 133 | CONFIG_BLOCK=y |
137 | # CONFIG_LBD is not set | 134 | # CONFIG_LBD is not set |
138 | # CONFIG_BLK_DEV_IO_TRACE is not set | 135 | # CONFIG_BLK_DEV_IO_TRACE is not set |
139 | # CONFIG_LSF is not set | ||
140 | # CONFIG_BLK_DEV_BSG is not set | 136 | # CONFIG_BLK_DEV_BSG is not set |
141 | # CONFIG_BLK_DEV_INTEGRITY is not set | 137 | # CONFIG_BLK_DEV_INTEGRITY is not set |
142 | 138 | ||
@@ -153,6 +149,10 @@ CONFIG_DEFAULT_AS=y | |||
153 | # CONFIG_DEFAULT_NOOP is not set | 149 | # CONFIG_DEFAULT_NOOP is not set |
154 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
155 | CONFIG_CLASSIC_RCU=y | 151 | CONFIG_CLASSIC_RCU=y |
152 | # CONFIG_TREE_RCU is not set | ||
153 | # CONFIG_PREEMPT_RCU is not set | ||
154 | # CONFIG_TREE_RCU_TRACE is not set | ||
155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
156 | # CONFIG_FREEZER is not set | 156 | # CONFIG_FREEZER is not set |
157 | 157 | ||
158 | # | 158 | # |
@@ -198,6 +198,8 @@ CONFIG_IPIC=y | |||
198 | CONFIG_QUICC_ENGINE=y | 198 | CONFIG_QUICC_ENGINE=y |
199 | CONFIG_QE_GPIO=y | 199 | CONFIG_QE_GPIO=y |
200 | # CONFIG_FSL_ULI1575 is not set | 200 | # CONFIG_FSL_ULI1575 is not set |
201 | # CONFIG_SIMPLE_GPIO is not set | ||
202 | # CONFIG_MCU_MPC8349EMITX is not set | ||
201 | 203 | ||
202 | # | 204 | # |
203 | # Kernel options | 205 | # Kernel options |
@@ -224,6 +226,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
224 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 226 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
225 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 227 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
226 | # CONFIG_KEXEC is not set | 228 | # CONFIG_KEXEC is not set |
229 | # CONFIG_CRASH_DUMP is not set | ||
227 | CONFIG_ARCH_FLATMEM_ENABLE=y | 230 | CONFIG_ARCH_FLATMEM_ENABLE=y |
228 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 231 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
229 | CONFIG_SELECT_MEMORY_MODEL=y | 232 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -235,12 +238,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
235 | CONFIG_PAGEFLAGS_EXTENDED=y | 238 | CONFIG_PAGEFLAGS_EXTENDED=y |
236 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 239 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
237 | CONFIG_MIGRATION=y | 240 | CONFIG_MIGRATION=y |
238 | # CONFIG_RESOURCES_64BIT is not set | ||
239 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 241 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
240 | CONFIG_ZONE_DMA_FLAG=1 | 242 | CONFIG_ZONE_DMA_FLAG=1 |
241 | CONFIG_BOUNCE=y | 243 | CONFIG_BOUNCE=y |
242 | CONFIG_VIRT_TO_BUS=y | 244 | CONFIG_VIRT_TO_BUS=y |
243 | CONFIG_UNEVICTABLE_LRU=y | 245 | CONFIG_UNEVICTABLE_LRU=y |
246 | CONFIG_PPC_4K_PAGES=y | ||
247 | # CONFIG_PPC_16K_PAGES is not set | ||
248 | # CONFIG_PPC_64K_PAGES is not set | ||
244 | CONFIG_FORCE_MAX_ZONEORDER=11 | 249 | CONFIG_FORCE_MAX_ZONEORDER=11 |
245 | CONFIG_PROC_DEVICETREE=y | 250 | CONFIG_PROC_DEVICETREE=y |
246 | # CONFIG_CMDLINE_BOOL is not set | 251 | # CONFIG_CMDLINE_BOOL is not set |
@@ -267,6 +272,7 @@ CONFIG_PCI_SYSCALL=y | |||
267 | CONFIG_ARCH_SUPPORTS_MSI=y | 272 | CONFIG_ARCH_SUPPORTS_MSI=y |
268 | # CONFIG_PCI_MSI is not set | 273 | # CONFIG_PCI_MSI is not set |
269 | # CONFIG_PCI_LEGACY is not set | 274 | # CONFIG_PCI_LEGACY is not set |
275 | # CONFIG_PCI_STUB is not set | ||
270 | # CONFIG_PCCARD is not set | 276 | # CONFIG_PCCARD is not set |
271 | # CONFIG_HOTPLUG_PCI is not set | 277 | # CONFIG_HOTPLUG_PCI is not set |
272 | # CONFIG_HAS_RAPIDIO is not set | 278 | # CONFIG_HAS_RAPIDIO is not set |
@@ -289,6 +295,7 @@ CONFIG_NET=y | |||
289 | # | 295 | # |
290 | # Networking options | 296 | # Networking options |
291 | # | 297 | # |
298 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
292 | CONFIG_PACKET=y | 299 | CONFIG_PACKET=y |
293 | # CONFIG_PACKET_MMAP is not set | 300 | # CONFIG_PACKET_MMAP is not set |
294 | CONFIG_UNIX=y | 301 | CONFIG_UNIX=y |
@@ -345,6 +352,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
345 | # CONFIG_ECONET is not set | 352 | # CONFIG_ECONET is not set |
346 | # CONFIG_WAN_ROUTER is not set | 353 | # CONFIG_WAN_ROUTER is not set |
347 | # CONFIG_NET_SCHED is not set | 354 | # CONFIG_NET_SCHED is not set |
355 | # CONFIG_DCB is not set | ||
348 | 356 | ||
349 | # | 357 | # |
350 | # Network testing | 358 | # Network testing |
@@ -360,8 +368,9 @@ CONFIG_WIRELESS=y | |||
360 | # CONFIG_CFG80211 is not set | 368 | # CONFIG_CFG80211 is not set |
361 | CONFIG_WIRELESS_OLD_REGULATORY=y | 369 | CONFIG_WIRELESS_OLD_REGULATORY=y |
362 | # CONFIG_WIRELESS_EXT is not set | 370 | # CONFIG_WIRELESS_EXT is not set |
371 | # CONFIG_LIB80211 is not set | ||
363 | # CONFIG_MAC80211 is not set | 372 | # CONFIG_MAC80211 is not set |
364 | # CONFIG_IEEE80211 is not set | 373 | # CONFIG_WIMAX is not set |
365 | # CONFIG_RFKILL is not set | 374 | # CONFIG_RFKILL is not set |
366 | # CONFIG_NET_9P is not set | 375 | # CONFIG_NET_9P is not set |
367 | 376 | ||
@@ -384,6 +393,7 @@ CONFIG_MTD=y | |||
384 | # CONFIG_MTD_DEBUG is not set | 393 | # CONFIG_MTD_DEBUG is not set |
385 | # CONFIG_MTD_CONCAT is not set | 394 | # CONFIG_MTD_CONCAT is not set |
386 | CONFIG_MTD_PARTITIONS=y | 395 | CONFIG_MTD_PARTITIONS=y |
396 | # CONFIG_MTD_TESTS is not set | ||
387 | # CONFIG_MTD_REDBOOT_PARTS is not set | 397 | # CONFIG_MTD_REDBOOT_PARTS is not set |
388 | CONFIG_MTD_CMDLINE_PARTS=y | 398 | CONFIG_MTD_CMDLINE_PARTS=y |
389 | # CONFIG_MTD_OF_PARTS is not set | 399 | # CONFIG_MTD_OF_PARTS is not set |
@@ -462,6 +472,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
462 | # CONFIG_MTD_ONENAND is not set | 472 | # CONFIG_MTD_ONENAND is not set |
463 | 473 | ||
464 | # | 474 | # |
475 | # LPDDR flash memory drivers | ||
476 | # | ||
477 | # CONFIG_MTD_LPDDR is not set | ||
478 | # CONFIG_MTD_QINFO_PROBE is not set | ||
479 | |||
480 | # | ||
465 | # UBI - Unsorted block images | 481 | # UBI - Unsorted block images |
466 | # | 482 | # |
467 | # CONFIG_MTD_UBI is not set | 483 | # CONFIG_MTD_UBI is not set |
@@ -493,8 +509,10 @@ CONFIG_MISC_DEVICES=y | |||
493 | # CONFIG_EEPROM_93CX6 is not set | 509 | # CONFIG_EEPROM_93CX6 is not set |
494 | # CONFIG_SGI_IOC4 is not set | 510 | # CONFIG_SGI_IOC4 is not set |
495 | # CONFIG_TIFM_CORE is not set | 511 | # CONFIG_TIFM_CORE is not set |
512 | # CONFIG_ICS932S401 is not set | ||
496 | # CONFIG_ENCLOSURE_SERVICES is not set | 513 | # CONFIG_ENCLOSURE_SERVICES is not set |
497 | # CONFIG_HP_ILO is not set | 514 | # CONFIG_HP_ILO is not set |
515 | # CONFIG_C2PORT is not set | ||
498 | CONFIG_HAVE_IDE=y | 516 | CONFIG_HAVE_IDE=y |
499 | # CONFIG_IDE is not set | 517 | # CONFIG_IDE is not set |
500 | 518 | ||
@@ -543,6 +561,9 @@ CONFIG_PHYLIB=y | |||
543 | CONFIG_BROADCOM_PHY=y | 561 | CONFIG_BROADCOM_PHY=y |
544 | # CONFIG_ICPLUS_PHY is not set | 562 | # CONFIG_ICPLUS_PHY is not set |
545 | # CONFIG_REALTEK_PHY is not set | 563 | # CONFIG_REALTEK_PHY is not set |
564 | # CONFIG_NATIONAL_PHY is not set | ||
565 | # CONFIG_STE10XP is not set | ||
566 | # CONFIG_LSI_ET1011C_PHY is not set | ||
546 | # CONFIG_FIXED_PHY is not set | 567 | # CONFIG_FIXED_PHY is not set |
547 | # CONFIG_MDIO_BITBANG is not set | 568 | # CONFIG_MDIO_BITBANG is not set |
548 | # CONFIG_NET_ETHERNET is not set | 569 | # CONFIG_NET_ETHERNET is not set |
@@ -566,7 +587,6 @@ CONFIG_NETDEV_1000=y | |||
566 | # CONFIG_GIANFAR is not set | 587 | # CONFIG_GIANFAR is not set |
567 | CONFIG_UCC_GETH=y | 588 | CONFIG_UCC_GETH=y |
568 | # CONFIG_UGETH_MAGIC_PACKET is not set | 589 | # CONFIG_UGETH_MAGIC_PACKET is not set |
569 | # CONFIG_UGETH_FILTERING is not set | ||
570 | # CONFIG_UGETH_TX_ON_DEMAND is not set | 590 | # CONFIG_UGETH_TX_ON_DEMAND is not set |
571 | # CONFIG_MV643XX_ETH is not set | 591 | # CONFIG_MV643XX_ETH is not set |
572 | # CONFIG_QLA3XXX is not set | 592 | # CONFIG_QLA3XXX is not set |
@@ -582,6 +602,10 @@ CONFIG_UCC_GETH=y | |||
582 | # CONFIG_WLAN_PRE80211 is not set | 602 | # CONFIG_WLAN_PRE80211 is not set |
583 | # CONFIG_WLAN_80211 is not set | 603 | # CONFIG_WLAN_80211 is not set |
584 | # CONFIG_IWLWIFI_LEDS is not set | 604 | # CONFIG_IWLWIFI_LEDS is not set |
605 | |||
606 | # | ||
607 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
608 | # | ||
585 | # CONFIG_WAN is not set | 609 | # CONFIG_WAN is not set |
586 | # CONFIG_FDDI is not set | 610 | # CONFIG_FDDI is not set |
587 | # CONFIG_HIPPI is not set | 611 | # CONFIG_HIPPI is not set |
@@ -656,8 +680,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
656 | # CONFIG_SERIAL_OF_PLATFORM is not set | 680 | # CONFIG_SERIAL_OF_PLATFORM is not set |
657 | CONFIG_SERIAL_QE=y | 681 | CONFIG_SERIAL_QE=y |
658 | CONFIG_UNIX98_PTYS=y | 682 | CONFIG_UNIX98_PTYS=y |
683 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
659 | CONFIG_LEGACY_PTYS=y | 684 | CONFIG_LEGACY_PTYS=y |
660 | CONFIG_LEGACY_PTY_COUNT=256 | 685 | CONFIG_LEGACY_PTY_COUNT=256 |
686 | # CONFIG_HVC_UDBG is not set | ||
661 | # CONFIG_IPMI_HANDLER is not set | 687 | # CONFIG_IPMI_HANDLER is not set |
662 | CONFIG_HW_RANDOM=y | 688 | CONFIG_HW_RANDOM=y |
663 | # CONFIG_NVRAM is not set | 689 | # CONFIG_NVRAM is not set |
@@ -729,10 +755,8 @@ CONFIG_I2C_MPC=y | |||
729 | # CONFIG_PCF8575 is not set | 755 | # CONFIG_PCF8575 is not set |
730 | # CONFIG_SENSORS_PCA9539 is not set | 756 | # CONFIG_SENSORS_PCA9539 is not set |
731 | # CONFIG_SENSORS_PCF8591 is not set | 757 | # CONFIG_SENSORS_PCF8591 is not set |
732 | # CONFIG_TPS65010 is not set | ||
733 | # CONFIG_SENSORS_MAX6875 is not set | 758 | # CONFIG_SENSORS_MAX6875 is not set |
734 | # CONFIG_SENSORS_TSL2550 is not set | 759 | # CONFIG_SENSORS_TSL2550 is not set |
735 | # CONFIG_MCU_MPC8349EMITX is not set | ||
736 | # CONFIG_I2C_DEBUG_CORE is not set | 760 | # CONFIG_I2C_DEBUG_CORE is not set |
737 | # CONFIG_I2C_DEBUG_ALGO is not set | 761 | # CONFIG_I2C_DEBUG_ALGO is not set |
738 | # CONFIG_I2C_DEBUG_BUS is not set | 762 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -744,6 +768,7 @@ CONFIG_SPI_MASTER=y | |||
744 | # SPI Master Controller Drivers | 768 | # SPI Master Controller Drivers |
745 | # | 769 | # |
746 | CONFIG_SPI_BITBANG=y | 770 | CONFIG_SPI_BITBANG=y |
771 | # CONFIG_SPI_GPIO is not set | ||
747 | CONFIG_SPI_MPC83xx=y | 772 | CONFIG_SPI_MPC83xx=y |
748 | 773 | ||
749 | # | 774 | # |
@@ -758,6 +783,11 @@ CONFIG_GPIOLIB=y | |||
758 | # CONFIG_GPIO_SYSFS is not set | 783 | # CONFIG_GPIO_SYSFS is not set |
759 | 784 | ||
760 | # | 785 | # |
786 | # Memory mapped GPIO expanders: | ||
787 | # | ||
788 | # CONFIG_GPIO_XILINX is not set | ||
789 | |||
790 | # | ||
761 | # I2C GPIO expanders: | 791 | # I2C GPIO expanders: |
762 | # | 792 | # |
763 | # CONFIG_GPIO_MAX732X is not set | 793 | # CONFIG_GPIO_MAX732X is not set |
@@ -794,11 +824,11 @@ CONFIG_WATCHDOG=y | |||
794 | # | 824 | # |
795 | # CONFIG_PCIPCWATCHDOG is not set | 825 | # CONFIG_PCIPCWATCHDOG is not set |
796 | # CONFIG_WDTPCI is not set | 826 | # CONFIG_WDTPCI is not set |
827 | CONFIG_SSB_POSSIBLE=y | ||
797 | 828 | ||
798 | # | 829 | # |
799 | # Sonics Silicon Backplane | 830 | # Sonics Silicon Backplane |
800 | # | 831 | # |
801 | CONFIG_SSB_POSSIBLE=y | ||
802 | # CONFIG_SSB is not set | 832 | # CONFIG_SSB is not set |
803 | 833 | ||
804 | # | 834 | # |
@@ -807,18 +837,14 @@ CONFIG_SSB_POSSIBLE=y | |||
807 | # CONFIG_MFD_CORE is not set | 837 | # CONFIG_MFD_CORE is not set |
808 | # CONFIG_MFD_SM501 is not set | 838 | # CONFIG_MFD_SM501 is not set |
809 | # CONFIG_HTC_PASIC3 is not set | 839 | # CONFIG_HTC_PASIC3 is not set |
840 | # CONFIG_TPS65010 is not set | ||
841 | # CONFIG_TWL4030_CORE is not set | ||
810 | # CONFIG_MFD_TMIO is not set | 842 | # CONFIG_MFD_TMIO is not set |
811 | # CONFIG_PMIC_DA903X is not set | 843 | # CONFIG_PMIC_DA903X is not set |
812 | # CONFIG_MFD_WM8400 is not set | 844 | # CONFIG_MFD_WM8400 is not set |
813 | # CONFIG_MFD_WM8350_I2C is not set | 845 | # CONFIG_MFD_WM8350_I2C is not set |
814 | 846 | # CONFIG_MFD_PCF50633 is not set | |
815 | # | ||
816 | # Voltage and Current regulators | ||
817 | # | ||
818 | # CONFIG_REGULATOR is not set | 847 | # CONFIG_REGULATOR is not set |
819 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
820 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
821 | # CONFIG_REGULATOR_BQ24022 is not set | ||
822 | 848 | ||
823 | # | 849 | # |
824 | # Multimedia devices | 850 | # Multimedia devices |
@@ -897,6 +923,7 @@ CONFIG_FB_OF=y | |||
897 | # CONFIG_FB_IBM_GXT4500 is not set | 923 | # CONFIG_FB_IBM_GXT4500 is not set |
898 | # CONFIG_FB_VIRTUAL is not set | 924 | # CONFIG_FB_VIRTUAL is not set |
899 | # CONFIG_FB_METRONOME is not set | 925 | # CONFIG_FB_METRONOME is not set |
926 | # CONFIG_FB_MB862XX is not set | ||
900 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 927 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
901 | 928 | ||
902 | # | 929 | # |
@@ -962,6 +989,7 @@ CONFIG_FS_MBCACHE=y | |||
962 | CONFIG_FILE_LOCKING=y | 989 | CONFIG_FILE_LOCKING=y |
963 | # CONFIG_XFS_FS is not set | 990 | # CONFIG_XFS_FS is not set |
964 | # CONFIG_OCFS2_FS is not set | 991 | # CONFIG_OCFS2_FS is not set |
992 | # CONFIG_BTRFS_FS is not set | ||
965 | CONFIG_DNOTIFY=y | 993 | CONFIG_DNOTIFY=y |
966 | CONFIG_INOTIFY=y | 994 | CONFIG_INOTIFY=y |
967 | CONFIG_INOTIFY_USER=y | 995 | CONFIG_INOTIFY_USER=y |
@@ -995,10 +1023,7 @@ CONFIG_TMPFS=y | |||
995 | # CONFIG_TMPFS_POSIX_ACL is not set | 1023 | # CONFIG_TMPFS_POSIX_ACL is not set |
996 | # CONFIG_HUGETLB_PAGE is not set | 1024 | # CONFIG_HUGETLB_PAGE is not set |
997 | # CONFIG_CONFIGFS_FS is not set | 1025 | # CONFIG_CONFIGFS_FS is not set |
998 | 1026 | CONFIG_MISC_FILESYSTEMS=y | |
999 | # | ||
1000 | # Miscellaneous filesystems | ||
1001 | # | ||
1002 | # CONFIG_ADFS_FS is not set | 1027 | # CONFIG_ADFS_FS is not set |
1003 | # CONFIG_AFFS_FS is not set | 1028 | # CONFIG_AFFS_FS is not set |
1004 | # CONFIG_HFS_FS is not set | 1029 | # CONFIG_HFS_FS is not set |
@@ -1018,6 +1043,7 @@ CONFIG_JFFS2_ZLIB=y | |||
1018 | CONFIG_JFFS2_RTIME=y | 1043 | CONFIG_JFFS2_RTIME=y |
1019 | # CONFIG_JFFS2_RUBIN is not set | 1044 | # CONFIG_JFFS2_RUBIN is not set |
1020 | # CONFIG_CRAMFS is not set | 1045 | # CONFIG_CRAMFS is not set |
1046 | # CONFIG_SQUASHFS is not set | ||
1021 | # CONFIG_VXFS_FS is not set | 1047 | # CONFIG_VXFS_FS is not set |
1022 | # CONFIG_MINIX_FS is not set | 1048 | # CONFIG_MINIX_FS is not set |
1023 | # CONFIG_OMFS_FS is not set | 1049 | # CONFIG_OMFS_FS is not set |
@@ -1074,6 +1100,7 @@ CONFIG_UCC=y | |||
1074 | # Library routines | 1100 | # Library routines |
1075 | # | 1101 | # |
1076 | CONFIG_BITREVERSE=y | 1102 | CONFIG_BITREVERSE=y |
1103 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1077 | # CONFIG_CRC_CCITT is not set | 1104 | # CONFIG_CRC_CCITT is not set |
1078 | # CONFIG_CRC16 is not set | 1105 | # CONFIG_CRC16 is not set |
1079 | # CONFIG_CRC_T10DIF is not set | 1106 | # CONFIG_CRC_T10DIF is not set |
@@ -1109,6 +1136,8 @@ CONFIG_FRAME_WARN=1024 | |||
1109 | # CONFIG_LATENCYTOP is not set | 1136 | # CONFIG_LATENCYTOP is not set |
1110 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1137 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1111 | CONFIG_HAVE_FUNCTION_TRACER=y | 1138 | CONFIG_HAVE_FUNCTION_TRACER=y |
1139 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1140 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1112 | 1141 | ||
1113 | # | 1142 | # |
1114 | # Tracers | 1143 | # Tracers |
@@ -1116,6 +1145,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1116 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1145 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1117 | # CONFIG_SAMPLES is not set | 1146 | # CONFIG_SAMPLES is not set |
1118 | CONFIG_HAVE_ARCH_KGDB=y | 1147 | CONFIG_HAVE_ARCH_KGDB=y |
1148 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1119 | # CONFIG_IRQSTACKS is not set | 1149 | # CONFIG_IRQSTACKS is not set |
1120 | # CONFIG_BOOTX_TEXT is not set | 1150 | # CONFIG_BOOTX_TEXT is not set |
1121 | CONFIG_PPC_EARLY_DEBUG=y | 1151 | CONFIG_PPC_EARLY_DEBUG=y |
@@ -1145,11 +1175,15 @@ CONFIG_CRYPTO=y | |||
1145 | # | 1175 | # |
1146 | # CONFIG_CRYPTO_FIPS is not set | 1176 | # CONFIG_CRYPTO_FIPS is not set |
1147 | CONFIG_CRYPTO_ALGAPI=y | 1177 | CONFIG_CRYPTO_ALGAPI=y |
1148 | CONFIG_CRYPTO_AEAD=y | 1178 | CONFIG_CRYPTO_ALGAPI2=y |
1179 | CONFIG_CRYPTO_AEAD2=y | ||
1149 | CONFIG_CRYPTO_BLKCIPHER=y | 1180 | CONFIG_CRYPTO_BLKCIPHER=y |
1181 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1150 | CONFIG_CRYPTO_HASH=y | 1182 | CONFIG_CRYPTO_HASH=y |
1151 | CONFIG_CRYPTO_RNG=y | 1183 | CONFIG_CRYPTO_HASH2=y |
1184 | CONFIG_CRYPTO_RNG2=y | ||
1152 | CONFIG_CRYPTO_MANAGER=y | 1185 | CONFIG_CRYPTO_MANAGER=y |
1186 | CONFIG_CRYPTO_MANAGER2=y | ||
1153 | # CONFIG_CRYPTO_GF128MUL is not set | 1187 | # CONFIG_CRYPTO_GF128MUL is not set |
1154 | # CONFIG_CRYPTO_NULL is not set | 1188 | # CONFIG_CRYPTO_NULL is not set |
1155 | # CONFIG_CRYPTO_CRYPTD is not set | 1189 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/83xx/mpc837x_mds_defconfig b/arch/powerpc/configs/83xx/mpc837x_mds_defconfig index ad97649bdc73..e42f6b3917d2 100644 --- a/arch/powerpc/configs/83xx/mpc837x_mds_defconfig +++ b/arch/powerpc/configs/83xx/mpc837x_mds_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:00 2008 | 4 | # Mon Jan 26 15:35:59 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -75,12 +75,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
80 | CONFIG_FAIR_GROUP_SCHED=y | 79 | CONFIG_FAIR_GROUP_SCHED=y |
81 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -113,7 +113,6 @@ CONFIG_SLAB=y | |||
113 | # CONFIG_SLUB is not set | 113 | # CONFIG_SLUB is not set |
114 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
118 | # CONFIG_KPROBES is not set | 117 | # CONFIG_KPROBES is not set |
119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -124,7 +123,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
125 | CONFIG_SLABINFO=y | 124 | CONFIG_SLABINFO=y |
126 | CONFIG_RT_MUTEXES=y | 125 | CONFIG_RT_MUTEXES=y |
127 | # CONFIG_TINY_SHMEM is not set | ||
128 | CONFIG_BASE_SMALL=0 | 126 | CONFIG_BASE_SMALL=0 |
129 | CONFIG_MODULES=y | 127 | CONFIG_MODULES=y |
130 | # CONFIG_MODULE_FORCE_LOAD is not set | 128 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -132,11 +130,9 @@ CONFIG_MODULE_UNLOAD=y | |||
132 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 130 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
133 | # CONFIG_MODVERSIONS is not set | 131 | # CONFIG_MODVERSIONS is not set |
134 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 132 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
135 | CONFIG_KMOD=y | ||
136 | CONFIG_BLOCK=y | 133 | CONFIG_BLOCK=y |
137 | # CONFIG_LBD is not set | 134 | # CONFIG_LBD is not set |
138 | # CONFIG_BLK_DEV_IO_TRACE is not set | 135 | # CONFIG_BLK_DEV_IO_TRACE is not set |
139 | # CONFIG_LSF is not set | ||
140 | # CONFIG_BLK_DEV_BSG is not set | 136 | # CONFIG_BLK_DEV_BSG is not set |
141 | # CONFIG_BLK_DEV_INTEGRITY is not set | 137 | # CONFIG_BLK_DEV_INTEGRITY is not set |
142 | 138 | ||
@@ -153,6 +149,10 @@ CONFIG_DEFAULT_AS=y | |||
153 | # CONFIG_DEFAULT_NOOP is not set | 149 | # CONFIG_DEFAULT_NOOP is not set |
154 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
155 | CONFIG_CLASSIC_RCU=y | 151 | CONFIG_CLASSIC_RCU=y |
152 | # CONFIG_TREE_RCU is not set | ||
153 | # CONFIG_PREEMPT_RCU is not set | ||
154 | # CONFIG_TREE_RCU_TRACE is not set | ||
155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
156 | # CONFIG_FREEZER is not set | 156 | # CONFIG_FREEZER is not set |
157 | 157 | ||
158 | # | 158 | # |
@@ -199,6 +199,8 @@ CONFIG_IPIC=y | |||
199 | # CONFIG_QUICC_ENGINE is not set | 199 | # CONFIG_QUICC_ENGINE is not set |
200 | # CONFIG_FSL_ULI1575 is not set | 200 | # CONFIG_FSL_ULI1575 is not set |
201 | # CONFIG_MPC8xxx_GPIO is not set | 201 | # CONFIG_MPC8xxx_GPIO is not set |
202 | # CONFIG_SIMPLE_GPIO is not set | ||
203 | # CONFIG_MCU_MPC8349EMITX is not set | ||
202 | 204 | ||
203 | # | 205 | # |
204 | # Kernel options | 206 | # Kernel options |
@@ -225,6 +227,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
225 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 227 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
226 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 228 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
227 | # CONFIG_KEXEC is not set | 229 | # CONFIG_KEXEC is not set |
230 | # CONFIG_CRASH_DUMP is not set | ||
228 | CONFIG_ARCH_FLATMEM_ENABLE=y | 231 | CONFIG_ARCH_FLATMEM_ENABLE=y |
229 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 232 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
230 | CONFIG_SELECT_MEMORY_MODEL=y | 233 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -236,12 +239,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
236 | CONFIG_PAGEFLAGS_EXTENDED=y | 239 | CONFIG_PAGEFLAGS_EXTENDED=y |
237 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 240 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
238 | CONFIG_MIGRATION=y | 241 | CONFIG_MIGRATION=y |
239 | # CONFIG_RESOURCES_64BIT is not set | ||
240 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 242 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
241 | CONFIG_ZONE_DMA_FLAG=1 | 243 | CONFIG_ZONE_DMA_FLAG=1 |
242 | CONFIG_BOUNCE=y | 244 | CONFIG_BOUNCE=y |
243 | CONFIG_VIRT_TO_BUS=y | 245 | CONFIG_VIRT_TO_BUS=y |
244 | CONFIG_UNEVICTABLE_LRU=y | 246 | CONFIG_UNEVICTABLE_LRU=y |
247 | CONFIG_PPC_4K_PAGES=y | ||
248 | # CONFIG_PPC_16K_PAGES is not set | ||
249 | # CONFIG_PPC_64K_PAGES is not set | ||
245 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
246 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
247 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
@@ -266,6 +271,7 @@ CONFIG_PCI_SYSCALL=y | |||
266 | CONFIG_ARCH_SUPPORTS_MSI=y | 271 | CONFIG_ARCH_SUPPORTS_MSI=y |
267 | # CONFIG_PCI_MSI is not set | 272 | # CONFIG_PCI_MSI is not set |
268 | # CONFIG_PCI_LEGACY is not set | 273 | # CONFIG_PCI_LEGACY is not set |
274 | # CONFIG_PCI_STUB is not set | ||
269 | # CONFIG_PCCARD is not set | 275 | # CONFIG_PCCARD is not set |
270 | # CONFIG_HOTPLUG_PCI is not set | 276 | # CONFIG_HOTPLUG_PCI is not set |
271 | # CONFIG_HAS_RAPIDIO is not set | 277 | # CONFIG_HAS_RAPIDIO is not set |
@@ -288,6 +294,7 @@ CONFIG_NET=y | |||
288 | # | 294 | # |
289 | # Networking options | 295 | # Networking options |
290 | # | 296 | # |
297 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
291 | CONFIG_PACKET=y | 298 | CONFIG_PACKET=y |
292 | # CONFIG_PACKET_MMAP is not set | 299 | # CONFIG_PACKET_MMAP is not set |
293 | CONFIG_UNIX=y | 300 | CONFIG_UNIX=y |
@@ -344,6 +351,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
344 | # CONFIG_ECONET is not set | 351 | # CONFIG_ECONET is not set |
345 | # CONFIG_WAN_ROUTER is not set | 352 | # CONFIG_WAN_ROUTER is not set |
346 | # CONFIG_NET_SCHED is not set | 353 | # CONFIG_NET_SCHED is not set |
354 | # CONFIG_DCB is not set | ||
347 | 355 | ||
348 | # | 356 | # |
349 | # Network testing | 357 | # Network testing |
@@ -359,8 +367,9 @@ CONFIG_WIRELESS=y | |||
359 | # CONFIG_CFG80211 is not set | 367 | # CONFIG_CFG80211 is not set |
360 | CONFIG_WIRELESS_OLD_REGULATORY=y | 368 | CONFIG_WIRELESS_OLD_REGULATORY=y |
361 | # CONFIG_WIRELESS_EXT is not set | 369 | # CONFIG_WIRELESS_EXT is not set |
370 | # CONFIG_LIB80211 is not set | ||
362 | # CONFIG_MAC80211 is not set | 371 | # CONFIG_MAC80211 is not set |
363 | # CONFIG_IEEE80211 is not set | 372 | # CONFIG_WIMAX is not set |
364 | # CONFIG_RFKILL is not set | 373 | # CONFIG_RFKILL is not set |
365 | # CONFIG_NET_9P is not set | 374 | # CONFIG_NET_9P is not set |
366 | 375 | ||
@@ -404,8 +413,10 @@ CONFIG_MISC_DEVICES=y | |||
404 | # CONFIG_EEPROM_93CX6 is not set | 413 | # CONFIG_EEPROM_93CX6 is not set |
405 | # CONFIG_SGI_IOC4 is not set | 414 | # CONFIG_SGI_IOC4 is not set |
406 | # CONFIG_TIFM_CORE is not set | 415 | # CONFIG_TIFM_CORE is not set |
416 | # CONFIG_ICS932S401 is not set | ||
407 | # CONFIG_ENCLOSURE_SERVICES is not set | 417 | # CONFIG_ENCLOSURE_SERVICES is not set |
408 | # CONFIG_HP_ILO is not set | 418 | # CONFIG_HP_ILO is not set |
419 | # CONFIG_C2PORT is not set | ||
409 | CONFIG_HAVE_IDE=y | 420 | CONFIG_HAVE_IDE=y |
410 | # CONFIG_IDE is not set | 421 | # CONFIG_IDE is not set |
411 | 422 | ||
@@ -448,6 +459,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
448 | # CONFIG_SCSI_SRP_ATTRS is not set | 459 | # CONFIG_SCSI_SRP_ATTRS is not set |
449 | CONFIG_SCSI_LOWLEVEL=y | 460 | CONFIG_SCSI_LOWLEVEL=y |
450 | # CONFIG_ISCSI_TCP is not set | 461 | # CONFIG_ISCSI_TCP is not set |
462 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
451 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 463 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
452 | # CONFIG_SCSI_3W_9XXX is not set | 464 | # CONFIG_SCSI_3W_9XXX is not set |
453 | # CONFIG_SCSI_ACARD is not set | 465 | # CONFIG_SCSI_ACARD is not set |
@@ -464,6 +476,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
464 | # CONFIG_MEGARAID_SAS is not set | 476 | # CONFIG_MEGARAID_SAS is not set |
465 | # CONFIG_SCSI_HPTIOP is not set | 477 | # CONFIG_SCSI_HPTIOP is not set |
466 | # CONFIG_SCSI_BUSLOGIC is not set | 478 | # CONFIG_SCSI_BUSLOGIC is not set |
479 | # CONFIG_LIBFC is not set | ||
480 | # CONFIG_FCOE is not set | ||
467 | # CONFIG_SCSI_DMX3191D is not set | 481 | # CONFIG_SCSI_DMX3191D is not set |
468 | # CONFIG_SCSI_EATA is not set | 482 | # CONFIG_SCSI_EATA is not set |
469 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 483 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -583,6 +597,9 @@ CONFIG_MARVELL_PHY=y | |||
583 | # CONFIG_BROADCOM_PHY is not set | 597 | # CONFIG_BROADCOM_PHY is not set |
584 | # CONFIG_ICPLUS_PHY is not set | 598 | # CONFIG_ICPLUS_PHY is not set |
585 | # CONFIG_REALTEK_PHY is not set | 599 | # CONFIG_REALTEK_PHY is not set |
600 | # CONFIG_NATIONAL_PHY is not set | ||
601 | # CONFIG_STE10XP is not set | ||
602 | # CONFIG_LSI_ET1011C_PHY is not set | ||
586 | # CONFIG_FIXED_PHY is not set | 603 | # CONFIG_FIXED_PHY is not set |
587 | # CONFIG_MDIO_BITBANG is not set | 604 | # CONFIG_MDIO_BITBANG is not set |
588 | CONFIG_NET_ETHERNET=y | 605 | CONFIG_NET_ETHERNET=y |
@@ -628,6 +645,7 @@ CONFIG_GIANFAR=y | |||
628 | # CONFIG_JME is not set | 645 | # CONFIG_JME is not set |
629 | CONFIG_NETDEV_10000=y | 646 | CONFIG_NETDEV_10000=y |
630 | # CONFIG_CHELSIO_T1 is not set | 647 | # CONFIG_CHELSIO_T1 is not set |
648 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
631 | # CONFIG_CHELSIO_T3 is not set | 649 | # CONFIG_CHELSIO_T3 is not set |
632 | # CONFIG_ENIC is not set | 650 | # CONFIG_ENIC is not set |
633 | # CONFIG_IXGBE is not set | 651 | # CONFIG_IXGBE is not set |
@@ -650,6 +668,10 @@ CONFIG_NETDEV_10000=y | |||
650 | # CONFIG_WLAN_PRE80211 is not set | 668 | # CONFIG_WLAN_PRE80211 is not set |
651 | # CONFIG_WLAN_80211 is not set | 669 | # CONFIG_WLAN_80211 is not set |
652 | # CONFIG_IWLWIFI_LEDS is not set | 670 | # CONFIG_IWLWIFI_LEDS is not set |
671 | |||
672 | # | ||
673 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
674 | # | ||
653 | # CONFIG_WAN is not set | 675 | # CONFIG_WAN is not set |
654 | # CONFIG_FDDI is not set | 676 | # CONFIG_FDDI is not set |
655 | # CONFIG_HIPPI is not set | 677 | # CONFIG_HIPPI is not set |
@@ -720,8 +742,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
720 | # CONFIG_SERIAL_JSM is not set | 742 | # CONFIG_SERIAL_JSM is not set |
721 | # CONFIG_SERIAL_OF_PLATFORM is not set | 743 | # CONFIG_SERIAL_OF_PLATFORM is not set |
722 | CONFIG_UNIX98_PTYS=y | 744 | CONFIG_UNIX98_PTYS=y |
745 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
723 | CONFIG_LEGACY_PTYS=y | 746 | CONFIG_LEGACY_PTYS=y |
724 | CONFIG_LEGACY_PTY_COUNT=256 | 747 | CONFIG_LEGACY_PTY_COUNT=256 |
748 | # CONFIG_HVC_UDBG is not set | ||
725 | # CONFIG_IPMI_HANDLER is not set | 749 | # CONFIG_IPMI_HANDLER is not set |
726 | # CONFIG_HW_RANDOM is not set | 750 | # CONFIG_HW_RANDOM is not set |
727 | # CONFIG_NVRAM is not set | 751 | # CONFIG_NVRAM is not set |
@@ -795,7 +819,6 @@ CONFIG_I2C_MPC=y | |||
795 | # CONFIG_SENSORS_PCF8591 is not set | 819 | # CONFIG_SENSORS_PCF8591 is not set |
796 | # CONFIG_SENSORS_MAX6875 is not set | 820 | # CONFIG_SENSORS_MAX6875 is not set |
797 | # CONFIG_SENSORS_TSL2550 is not set | 821 | # CONFIG_SENSORS_TSL2550 is not set |
798 | # CONFIG_MCU_MPC8349EMITX is not set | ||
799 | # CONFIG_I2C_DEBUG_CORE is not set | 822 | # CONFIG_I2C_DEBUG_CORE is not set |
800 | # CONFIG_I2C_DEBUG_ALGO is not set | 823 | # CONFIG_I2C_DEBUG_ALGO is not set |
801 | # CONFIG_I2C_DEBUG_BUS is not set | 824 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -815,8 +838,10 @@ CONFIG_HWMON=y | |||
815 | # CONFIG_SENSORS_ADM1029 is not set | 838 | # CONFIG_SENSORS_ADM1029 is not set |
816 | # CONFIG_SENSORS_ADM1031 is not set | 839 | # CONFIG_SENSORS_ADM1031 is not set |
817 | # CONFIG_SENSORS_ADM9240 is not set | 840 | # CONFIG_SENSORS_ADM9240 is not set |
841 | # CONFIG_SENSORS_ADT7462 is not set | ||
818 | # CONFIG_SENSORS_ADT7470 is not set | 842 | # CONFIG_SENSORS_ADT7470 is not set |
819 | # CONFIG_SENSORS_ADT7473 is not set | 843 | # CONFIG_SENSORS_ADT7473 is not set |
844 | # CONFIG_SENSORS_ADT7475 is not set | ||
820 | # CONFIG_SENSORS_ATXP1 is not set | 845 | # CONFIG_SENSORS_ATXP1 is not set |
821 | # CONFIG_SENSORS_DS1621 is not set | 846 | # CONFIG_SENSORS_DS1621 is not set |
822 | # CONFIG_SENSORS_I5K_AMB is not set | 847 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -837,6 +862,7 @@ CONFIG_HWMON=y | |||
837 | # CONFIG_SENSORS_LM90 is not set | 862 | # CONFIG_SENSORS_LM90 is not set |
838 | # CONFIG_SENSORS_LM92 is not set | 863 | # CONFIG_SENSORS_LM92 is not set |
839 | # CONFIG_SENSORS_LM93 is not set | 864 | # CONFIG_SENSORS_LM93 is not set |
865 | # CONFIG_SENSORS_LTC4245 is not set | ||
840 | # CONFIG_SENSORS_MAX1619 is not set | 866 | # CONFIG_SENSORS_MAX1619 is not set |
841 | # CONFIG_SENSORS_MAX6650 is not set | 867 | # CONFIG_SENSORS_MAX6650 is not set |
842 | # CONFIG_SENSORS_PC87360 is not set | 868 | # CONFIG_SENSORS_PC87360 is not set |
@@ -877,11 +903,11 @@ CONFIG_WATCHDOG=y | |||
877 | # | 903 | # |
878 | # CONFIG_PCIPCWATCHDOG is not set | 904 | # CONFIG_PCIPCWATCHDOG is not set |
879 | # CONFIG_WDTPCI is not set | 905 | # CONFIG_WDTPCI is not set |
906 | CONFIG_SSB_POSSIBLE=y | ||
880 | 907 | ||
881 | # | 908 | # |
882 | # Sonics Silicon Backplane | 909 | # Sonics Silicon Backplane |
883 | # | 910 | # |
884 | CONFIG_SSB_POSSIBLE=y | ||
885 | # CONFIG_SSB is not set | 911 | # CONFIG_SSB is not set |
886 | 912 | ||
887 | # | 913 | # |
@@ -890,18 +916,13 @@ CONFIG_SSB_POSSIBLE=y | |||
890 | # CONFIG_MFD_CORE is not set | 916 | # CONFIG_MFD_CORE is not set |
891 | # CONFIG_MFD_SM501 is not set | 917 | # CONFIG_MFD_SM501 is not set |
892 | # CONFIG_HTC_PASIC3 is not set | 918 | # CONFIG_HTC_PASIC3 is not set |
919 | # CONFIG_TWL4030_CORE is not set | ||
893 | # CONFIG_MFD_TMIO is not set | 920 | # CONFIG_MFD_TMIO is not set |
894 | # CONFIG_PMIC_DA903X is not set | 921 | # CONFIG_PMIC_DA903X is not set |
895 | # CONFIG_MFD_WM8400 is not set | 922 | # CONFIG_MFD_WM8400 is not set |
896 | # CONFIG_MFD_WM8350_I2C is not set | 923 | # CONFIG_MFD_WM8350_I2C is not set |
897 | 924 | # CONFIG_MFD_PCF50633 is not set | |
898 | # | ||
899 | # Voltage and Current regulators | ||
900 | # | ||
901 | # CONFIG_REGULATOR is not set | 925 | # CONFIG_REGULATOR is not set |
902 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
903 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
904 | # CONFIG_REGULATOR_BQ24022 is not set | ||
905 | 926 | ||
906 | # | 927 | # |
907 | # Multimedia devices | 928 | # Multimedia devices |
@@ -957,9 +978,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
957 | # | 978 | # |
958 | 979 | ||
959 | # | 980 | # |
960 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 981 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
961 | # | 982 | # |
962 | # CONFIG_USB_GADGET is not set | 983 | # CONFIG_USB_GADGET is not set |
984 | |||
985 | # | ||
986 | # OTG and related infrastructure | ||
987 | # | ||
963 | # CONFIG_UWB is not set | 988 | # CONFIG_UWB is not set |
964 | # CONFIG_MMC is not set | 989 | # CONFIG_MMC is not set |
965 | # CONFIG_MEMSTICK is not set | 990 | # CONFIG_MEMSTICK is not set |
@@ -991,6 +1016,7 @@ CONFIG_FS_MBCACHE=y | |||
991 | CONFIG_FILE_LOCKING=y | 1016 | CONFIG_FILE_LOCKING=y |
992 | # CONFIG_XFS_FS is not set | 1017 | # CONFIG_XFS_FS is not set |
993 | # CONFIG_OCFS2_FS is not set | 1018 | # CONFIG_OCFS2_FS is not set |
1019 | # CONFIG_BTRFS_FS is not set | ||
994 | CONFIG_DNOTIFY=y | 1020 | CONFIG_DNOTIFY=y |
995 | CONFIG_INOTIFY=y | 1021 | CONFIG_INOTIFY=y |
996 | CONFIG_INOTIFY_USER=y | 1022 | CONFIG_INOTIFY_USER=y |
@@ -1024,10 +1050,7 @@ CONFIG_TMPFS=y | |||
1024 | # CONFIG_TMPFS_POSIX_ACL is not set | 1050 | # CONFIG_TMPFS_POSIX_ACL is not set |
1025 | # CONFIG_HUGETLB_PAGE is not set | 1051 | # CONFIG_HUGETLB_PAGE is not set |
1026 | # CONFIG_CONFIGFS_FS is not set | 1052 | # CONFIG_CONFIGFS_FS is not set |
1027 | 1053 | CONFIG_MISC_FILESYSTEMS=y | |
1028 | # | ||
1029 | # Miscellaneous filesystems | ||
1030 | # | ||
1031 | # CONFIG_ADFS_FS is not set | 1054 | # CONFIG_ADFS_FS is not set |
1032 | # CONFIG_AFFS_FS is not set | 1055 | # CONFIG_AFFS_FS is not set |
1033 | # CONFIG_HFS_FS is not set | 1056 | # CONFIG_HFS_FS is not set |
@@ -1036,6 +1059,7 @@ CONFIG_TMPFS=y | |||
1036 | # CONFIG_BFS_FS is not set | 1059 | # CONFIG_BFS_FS is not set |
1037 | # CONFIG_EFS_FS is not set | 1060 | # CONFIG_EFS_FS is not set |
1038 | # CONFIG_CRAMFS is not set | 1061 | # CONFIG_CRAMFS is not set |
1062 | # CONFIG_SQUASHFS is not set | ||
1039 | # CONFIG_VXFS_FS is not set | 1063 | # CONFIG_VXFS_FS is not set |
1040 | # CONFIG_MINIX_FS is not set | 1064 | # CONFIG_MINIX_FS is not set |
1041 | # CONFIG_OMFS_FS is not set | 1065 | # CONFIG_OMFS_FS is not set |
@@ -1093,6 +1117,7 @@ CONFIG_MSDOS_PARTITION=y | |||
1093 | # Library routines | 1117 | # Library routines |
1094 | # | 1118 | # |
1095 | CONFIG_BITREVERSE=y | 1119 | CONFIG_BITREVERSE=y |
1120 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1096 | # CONFIG_CRC_CCITT is not set | 1121 | # CONFIG_CRC_CCITT is not set |
1097 | # CONFIG_CRC16 is not set | 1122 | # CONFIG_CRC16 is not set |
1098 | CONFIG_CRC_T10DIF=y | 1123 | CONFIG_CRC_T10DIF=y |
@@ -1124,6 +1149,8 @@ CONFIG_FRAME_WARN=1024 | |||
1124 | # CONFIG_LATENCYTOP is not set | 1149 | # CONFIG_LATENCYTOP is not set |
1125 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1150 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1126 | CONFIG_HAVE_FUNCTION_TRACER=y | 1151 | CONFIG_HAVE_FUNCTION_TRACER=y |
1152 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1153 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1127 | 1154 | ||
1128 | # | 1155 | # |
1129 | # Tracers | 1156 | # Tracers |
@@ -1131,6 +1158,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1131 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1158 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1132 | # CONFIG_SAMPLES is not set | 1159 | # CONFIG_SAMPLES is not set |
1133 | CONFIG_HAVE_ARCH_KGDB=y | 1160 | CONFIG_HAVE_ARCH_KGDB=y |
1161 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1134 | # CONFIG_IRQSTACKS is not set | 1162 | # CONFIG_IRQSTACKS is not set |
1135 | # CONFIG_BOOTX_TEXT is not set | 1163 | # CONFIG_BOOTX_TEXT is not set |
1136 | # CONFIG_PPC_EARLY_DEBUG is not set | 1164 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1149,11 +1177,15 @@ CONFIG_CRYPTO=y | |||
1149 | # | 1177 | # |
1150 | # CONFIG_CRYPTO_FIPS is not set | 1178 | # CONFIG_CRYPTO_FIPS is not set |
1151 | CONFIG_CRYPTO_ALGAPI=y | 1179 | CONFIG_CRYPTO_ALGAPI=y |
1152 | CONFIG_CRYPTO_AEAD=y | 1180 | CONFIG_CRYPTO_ALGAPI2=y |
1181 | CONFIG_CRYPTO_AEAD2=y | ||
1153 | CONFIG_CRYPTO_BLKCIPHER=y | 1182 | CONFIG_CRYPTO_BLKCIPHER=y |
1183 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1154 | CONFIG_CRYPTO_HASH=y | 1184 | CONFIG_CRYPTO_HASH=y |
1155 | CONFIG_CRYPTO_RNG=y | 1185 | CONFIG_CRYPTO_HASH2=y |
1186 | CONFIG_CRYPTO_RNG2=y | ||
1156 | CONFIG_CRYPTO_MANAGER=y | 1187 | CONFIG_CRYPTO_MANAGER=y |
1188 | CONFIG_CRYPTO_MANAGER2=y | ||
1157 | # CONFIG_CRYPTO_GF128MUL is not set | 1189 | # CONFIG_CRYPTO_GF128MUL is not set |
1158 | # CONFIG_CRYPTO_NULL is not set | 1190 | # CONFIG_CRYPTO_NULL is not set |
1159 | # CONFIG_CRYPTO_CRYPTD is not set | 1191 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/83xx/mpc837x_rdb_defconfig b/arch/powerpc/configs/83xx/mpc837x_rdb_defconfig index 2e526beeeb90..408022f79a50 100644 --- a/arch/powerpc/configs/83xx/mpc837x_rdb_defconfig +++ b/arch/powerpc/configs/83xx/mpc837x_rdb_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:01 2008 | 4 | # Mon Jan 26 15:36:01 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -75,12 +75,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
80 | CONFIG_FAIR_GROUP_SCHED=y | 79 | CONFIG_FAIR_GROUP_SCHED=y |
81 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -113,7 +113,6 @@ CONFIG_SLAB=y | |||
113 | # CONFIG_SLUB is not set | 113 | # CONFIG_SLUB is not set |
114 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
118 | # CONFIG_KPROBES is not set | 117 | # CONFIG_KPROBES is not set |
119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -124,7 +123,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
125 | CONFIG_SLABINFO=y | 124 | CONFIG_SLABINFO=y |
126 | CONFIG_RT_MUTEXES=y | 125 | CONFIG_RT_MUTEXES=y |
127 | # CONFIG_TINY_SHMEM is not set | ||
128 | CONFIG_BASE_SMALL=0 | 126 | CONFIG_BASE_SMALL=0 |
129 | CONFIG_MODULES=y | 127 | CONFIG_MODULES=y |
130 | # CONFIG_MODULE_FORCE_LOAD is not set | 128 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -132,11 +130,9 @@ CONFIG_MODULE_UNLOAD=y | |||
132 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 130 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
133 | # CONFIG_MODVERSIONS is not set | 131 | # CONFIG_MODVERSIONS is not set |
134 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 132 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
135 | CONFIG_KMOD=y | ||
136 | CONFIG_BLOCK=y | 133 | CONFIG_BLOCK=y |
137 | # CONFIG_LBD is not set | 134 | # CONFIG_LBD is not set |
138 | # CONFIG_BLK_DEV_IO_TRACE is not set | 135 | # CONFIG_BLK_DEV_IO_TRACE is not set |
139 | # CONFIG_LSF is not set | ||
140 | # CONFIG_BLK_DEV_BSG is not set | 136 | # CONFIG_BLK_DEV_BSG is not set |
141 | # CONFIG_BLK_DEV_INTEGRITY is not set | 137 | # CONFIG_BLK_DEV_INTEGRITY is not set |
142 | 138 | ||
@@ -153,6 +149,10 @@ CONFIG_DEFAULT_AS=y | |||
153 | # CONFIG_DEFAULT_NOOP is not set | 149 | # CONFIG_DEFAULT_NOOP is not set |
154 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
155 | CONFIG_CLASSIC_RCU=y | 151 | CONFIG_CLASSIC_RCU=y |
152 | # CONFIG_TREE_RCU is not set | ||
153 | # CONFIG_PREEMPT_RCU is not set | ||
154 | # CONFIG_TREE_RCU_TRACE is not set | ||
155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
156 | # CONFIG_FREEZER is not set | 156 | # CONFIG_FREEZER is not set |
157 | 157 | ||
158 | # | 158 | # |
@@ -199,6 +199,8 @@ CONFIG_IPIC=y | |||
199 | # CONFIG_QUICC_ENGINE is not set | 199 | # CONFIG_QUICC_ENGINE is not set |
200 | # CONFIG_FSL_ULI1575 is not set | 200 | # CONFIG_FSL_ULI1575 is not set |
201 | # CONFIG_MPC8xxx_GPIO is not set | 201 | # CONFIG_MPC8xxx_GPIO is not set |
202 | # CONFIG_SIMPLE_GPIO is not set | ||
203 | # CONFIG_MCU_MPC8349EMITX is not set | ||
202 | 204 | ||
203 | # | 205 | # |
204 | # Kernel options | 206 | # Kernel options |
@@ -225,6 +227,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
225 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 227 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
226 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 228 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
227 | # CONFIG_KEXEC is not set | 229 | # CONFIG_KEXEC is not set |
230 | # CONFIG_CRASH_DUMP is not set | ||
228 | CONFIG_ARCH_FLATMEM_ENABLE=y | 231 | CONFIG_ARCH_FLATMEM_ENABLE=y |
229 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 232 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
230 | CONFIG_SELECT_MEMORY_MODEL=y | 233 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -236,12 +239,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
236 | CONFIG_PAGEFLAGS_EXTENDED=y | 239 | CONFIG_PAGEFLAGS_EXTENDED=y |
237 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 240 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
238 | CONFIG_MIGRATION=y | 241 | CONFIG_MIGRATION=y |
239 | # CONFIG_RESOURCES_64BIT is not set | ||
240 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 242 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
241 | CONFIG_ZONE_DMA_FLAG=1 | 243 | CONFIG_ZONE_DMA_FLAG=1 |
242 | CONFIG_BOUNCE=y | 244 | CONFIG_BOUNCE=y |
243 | CONFIG_VIRT_TO_BUS=y | 245 | CONFIG_VIRT_TO_BUS=y |
244 | CONFIG_UNEVICTABLE_LRU=y | 246 | CONFIG_UNEVICTABLE_LRU=y |
247 | CONFIG_PPC_4K_PAGES=y | ||
248 | # CONFIG_PPC_16K_PAGES is not set | ||
249 | # CONFIG_PPC_64K_PAGES is not set | ||
245 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
246 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
247 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
@@ -266,6 +271,7 @@ CONFIG_PCI_SYSCALL=y | |||
266 | CONFIG_ARCH_SUPPORTS_MSI=y | 271 | CONFIG_ARCH_SUPPORTS_MSI=y |
267 | # CONFIG_PCI_MSI is not set | 272 | # CONFIG_PCI_MSI is not set |
268 | # CONFIG_PCI_LEGACY is not set | 273 | # CONFIG_PCI_LEGACY is not set |
274 | # CONFIG_PCI_STUB is not set | ||
269 | # CONFIG_PCCARD is not set | 275 | # CONFIG_PCCARD is not set |
270 | # CONFIG_HOTPLUG_PCI is not set | 276 | # CONFIG_HOTPLUG_PCI is not set |
271 | # CONFIG_HAS_RAPIDIO is not set | 277 | # CONFIG_HAS_RAPIDIO is not set |
@@ -288,6 +294,7 @@ CONFIG_NET=y | |||
288 | # | 294 | # |
289 | # Networking options | 295 | # Networking options |
290 | # | 296 | # |
297 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
291 | CONFIG_PACKET=y | 298 | CONFIG_PACKET=y |
292 | # CONFIG_PACKET_MMAP is not set | 299 | # CONFIG_PACKET_MMAP is not set |
293 | CONFIG_UNIX=y | 300 | CONFIG_UNIX=y |
@@ -339,6 +346,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
339 | # CONFIG_ECONET is not set | 346 | # CONFIG_ECONET is not set |
340 | # CONFIG_WAN_ROUTER is not set | 347 | # CONFIG_WAN_ROUTER is not set |
341 | # CONFIG_NET_SCHED is not set | 348 | # CONFIG_NET_SCHED is not set |
349 | # CONFIG_DCB is not set | ||
342 | 350 | ||
343 | # | 351 | # |
344 | # Network testing | 352 | # Network testing |
@@ -354,8 +362,9 @@ CONFIG_WIRELESS=y | |||
354 | # CONFIG_CFG80211 is not set | 362 | # CONFIG_CFG80211 is not set |
355 | CONFIG_WIRELESS_OLD_REGULATORY=y | 363 | CONFIG_WIRELESS_OLD_REGULATORY=y |
356 | # CONFIG_WIRELESS_EXT is not set | 364 | # CONFIG_WIRELESS_EXT is not set |
365 | # CONFIG_LIB80211 is not set | ||
357 | # CONFIG_MAC80211 is not set | 366 | # CONFIG_MAC80211 is not set |
358 | # CONFIG_IEEE80211 is not set | 367 | # CONFIG_WIMAX is not set |
359 | # CONFIG_RFKILL is not set | 368 | # CONFIG_RFKILL is not set |
360 | # CONFIG_NET_9P is not set | 369 | # CONFIG_NET_9P is not set |
361 | 370 | ||
@@ -400,8 +409,10 @@ CONFIG_MISC_DEVICES=y | |||
400 | # CONFIG_EEPROM_93CX6 is not set | 409 | # CONFIG_EEPROM_93CX6 is not set |
401 | # CONFIG_SGI_IOC4 is not set | 410 | # CONFIG_SGI_IOC4 is not set |
402 | # CONFIG_TIFM_CORE is not set | 411 | # CONFIG_TIFM_CORE is not set |
412 | # CONFIG_ICS932S401 is not set | ||
403 | # CONFIG_ENCLOSURE_SERVICES is not set | 413 | # CONFIG_ENCLOSURE_SERVICES is not set |
404 | # CONFIG_HP_ILO is not set | 414 | # CONFIG_HP_ILO is not set |
415 | # CONFIG_C2PORT is not set | ||
405 | CONFIG_HAVE_IDE=y | 416 | CONFIG_HAVE_IDE=y |
406 | # CONFIG_IDE is not set | 417 | # CONFIG_IDE is not set |
407 | 418 | ||
@@ -460,6 +471,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
460 | # CONFIG_MEGARAID_SAS is not set | 471 | # CONFIG_MEGARAID_SAS is not set |
461 | # CONFIG_SCSI_HPTIOP is not set | 472 | # CONFIG_SCSI_HPTIOP is not set |
462 | # CONFIG_SCSI_BUSLOGIC is not set | 473 | # CONFIG_SCSI_BUSLOGIC is not set |
474 | # CONFIG_LIBFC is not set | ||
475 | # CONFIG_FCOE is not set | ||
463 | # CONFIG_SCSI_DMX3191D is not set | 476 | # CONFIG_SCSI_DMX3191D is not set |
464 | # CONFIG_SCSI_EATA is not set | 477 | # CONFIG_SCSI_EATA is not set |
465 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 478 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -590,6 +603,9 @@ CONFIG_MARVELL_PHY=y | |||
590 | # CONFIG_BROADCOM_PHY is not set | 603 | # CONFIG_BROADCOM_PHY is not set |
591 | # CONFIG_ICPLUS_PHY is not set | 604 | # CONFIG_ICPLUS_PHY is not set |
592 | # CONFIG_REALTEK_PHY is not set | 605 | # CONFIG_REALTEK_PHY is not set |
606 | # CONFIG_NATIONAL_PHY is not set | ||
607 | # CONFIG_STE10XP is not set | ||
608 | # CONFIG_LSI_ET1011C_PHY is not set | ||
593 | CONFIG_FIXED_PHY=y | 609 | CONFIG_FIXED_PHY=y |
594 | # CONFIG_MDIO_BITBANG is not set | 610 | # CONFIG_MDIO_BITBANG is not set |
595 | CONFIG_NET_ETHERNET=y | 611 | CONFIG_NET_ETHERNET=y |
@@ -644,6 +660,10 @@ CONFIG_GIANFAR=y | |||
644 | # CONFIG_IWLWIFI_LEDS is not set | 660 | # CONFIG_IWLWIFI_LEDS is not set |
645 | 661 | ||
646 | # | 662 | # |
663 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
664 | # | ||
665 | |||
666 | # | ||
647 | # USB Network Adapters | 667 | # USB Network Adapters |
648 | # | 668 | # |
649 | # CONFIG_USB_CATC is not set | 669 | # CONFIG_USB_CATC is not set |
@@ -721,8 +741,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
721 | # CONFIG_SERIAL_JSM is not set | 741 | # CONFIG_SERIAL_JSM is not set |
722 | # CONFIG_SERIAL_OF_PLATFORM is not set | 742 | # CONFIG_SERIAL_OF_PLATFORM is not set |
723 | CONFIG_UNIX98_PTYS=y | 743 | CONFIG_UNIX98_PTYS=y |
744 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
724 | CONFIG_LEGACY_PTYS=y | 745 | CONFIG_LEGACY_PTYS=y |
725 | CONFIG_LEGACY_PTY_COUNT=256 | 746 | CONFIG_LEGACY_PTY_COUNT=256 |
747 | # CONFIG_HVC_UDBG is not set | ||
726 | # CONFIG_IPMI_HANDLER is not set | 748 | # CONFIG_IPMI_HANDLER is not set |
727 | # CONFIG_HW_RANDOM is not set | 749 | # CONFIG_HW_RANDOM is not set |
728 | # CONFIG_NVRAM is not set | 750 | # CONFIG_NVRAM is not set |
@@ -797,7 +819,6 @@ CONFIG_I2C_MPC=y | |||
797 | # CONFIG_SENSORS_PCF8591 is not set | 819 | # CONFIG_SENSORS_PCF8591 is not set |
798 | # CONFIG_SENSORS_MAX6875 is not set | 820 | # CONFIG_SENSORS_MAX6875 is not set |
799 | # CONFIG_SENSORS_TSL2550 is not set | 821 | # CONFIG_SENSORS_TSL2550 is not set |
800 | # CONFIG_MCU_MPC8349EMITX is not set | ||
801 | # CONFIG_I2C_DEBUG_CORE is not set | 822 | # CONFIG_I2C_DEBUG_CORE is not set |
802 | # CONFIG_I2C_DEBUG_ALGO is not set | 823 | # CONFIG_I2C_DEBUG_ALGO is not set |
803 | # CONFIG_I2C_DEBUG_BUS is not set | 824 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -817,8 +838,10 @@ CONFIG_HWMON=y | |||
817 | # CONFIG_SENSORS_ADM1029 is not set | 838 | # CONFIG_SENSORS_ADM1029 is not set |
818 | # CONFIG_SENSORS_ADM1031 is not set | 839 | # CONFIG_SENSORS_ADM1031 is not set |
819 | # CONFIG_SENSORS_ADM9240 is not set | 840 | # CONFIG_SENSORS_ADM9240 is not set |
841 | # CONFIG_SENSORS_ADT7462 is not set | ||
820 | # CONFIG_SENSORS_ADT7470 is not set | 842 | # CONFIG_SENSORS_ADT7470 is not set |
821 | # CONFIG_SENSORS_ADT7473 is not set | 843 | # CONFIG_SENSORS_ADT7473 is not set |
844 | # CONFIG_SENSORS_ADT7475 is not set | ||
822 | # CONFIG_SENSORS_ATXP1 is not set | 845 | # CONFIG_SENSORS_ATXP1 is not set |
823 | # CONFIG_SENSORS_DS1621 is not set | 846 | # CONFIG_SENSORS_DS1621 is not set |
824 | # CONFIG_SENSORS_I5K_AMB is not set | 847 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -839,6 +862,7 @@ CONFIG_HWMON=y | |||
839 | # CONFIG_SENSORS_LM90 is not set | 862 | # CONFIG_SENSORS_LM90 is not set |
840 | # CONFIG_SENSORS_LM92 is not set | 863 | # CONFIG_SENSORS_LM92 is not set |
841 | # CONFIG_SENSORS_LM93 is not set | 864 | # CONFIG_SENSORS_LM93 is not set |
865 | # CONFIG_SENSORS_LTC4245 is not set | ||
842 | # CONFIG_SENSORS_MAX1619 is not set | 866 | # CONFIG_SENSORS_MAX1619 is not set |
843 | # CONFIG_SENSORS_MAX6650 is not set | 867 | # CONFIG_SENSORS_MAX6650 is not set |
844 | # CONFIG_SENSORS_PC87360 is not set | 868 | # CONFIG_SENSORS_PC87360 is not set |
@@ -884,11 +908,11 @@ CONFIG_WATCHDOG=y | |||
884 | # USB-based Watchdog Cards | 908 | # USB-based Watchdog Cards |
885 | # | 909 | # |
886 | # CONFIG_USBPCWATCHDOG is not set | 910 | # CONFIG_USBPCWATCHDOG is not set |
911 | CONFIG_SSB_POSSIBLE=y | ||
887 | 912 | ||
888 | # | 913 | # |
889 | # Sonics Silicon Backplane | 914 | # Sonics Silicon Backplane |
890 | # | 915 | # |
891 | CONFIG_SSB_POSSIBLE=y | ||
892 | # CONFIG_SSB is not set | 916 | # CONFIG_SSB is not set |
893 | 917 | ||
894 | # | 918 | # |
@@ -897,18 +921,13 @@ CONFIG_SSB_POSSIBLE=y | |||
897 | # CONFIG_MFD_CORE is not set | 921 | # CONFIG_MFD_CORE is not set |
898 | # CONFIG_MFD_SM501 is not set | 922 | # CONFIG_MFD_SM501 is not set |
899 | # CONFIG_HTC_PASIC3 is not set | 923 | # CONFIG_HTC_PASIC3 is not set |
924 | # CONFIG_TWL4030_CORE is not set | ||
900 | # CONFIG_MFD_TMIO is not set | 925 | # CONFIG_MFD_TMIO is not set |
901 | # CONFIG_PMIC_DA903X is not set | 926 | # CONFIG_PMIC_DA903X is not set |
902 | # CONFIG_MFD_WM8400 is not set | 927 | # CONFIG_MFD_WM8400 is not set |
903 | # CONFIG_MFD_WM8350_I2C is not set | 928 | # CONFIG_MFD_WM8350_I2C is not set |
904 | 929 | # CONFIG_MFD_PCF50633 is not set | |
905 | # | ||
906 | # Voltage and Current regulators | ||
907 | # | ||
908 | # CONFIG_REGULATOR is not set | 930 | # CONFIG_REGULATOR is not set |
909 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
910 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
911 | # CONFIG_REGULATOR_BQ24022 is not set | ||
912 | 931 | ||
913 | # | 932 | # |
914 | # Multimedia devices | 933 | # Multimedia devices |
@@ -961,11 +980,9 @@ CONFIG_HID_COMPAT=y | |||
961 | CONFIG_HID_A4TECH=y | 980 | CONFIG_HID_A4TECH=y |
962 | CONFIG_HID_APPLE=y | 981 | CONFIG_HID_APPLE=y |
963 | CONFIG_HID_BELKIN=y | 982 | CONFIG_HID_BELKIN=y |
964 | CONFIG_HID_BRIGHT=y | ||
965 | CONFIG_HID_CHERRY=y | 983 | CONFIG_HID_CHERRY=y |
966 | CONFIG_HID_CHICONY=y | 984 | CONFIG_HID_CHICONY=y |
967 | CONFIG_HID_CYPRESS=y | 985 | CONFIG_HID_CYPRESS=y |
968 | CONFIG_HID_DELL=y | ||
969 | CONFIG_HID_EZKEY=y | 986 | CONFIG_HID_EZKEY=y |
970 | CONFIG_HID_GYRATION=y | 987 | CONFIG_HID_GYRATION=y |
971 | CONFIG_HID_LOGITECH=y | 988 | CONFIG_HID_LOGITECH=y |
@@ -973,12 +990,15 @@ CONFIG_HID_LOGITECH=y | |||
973 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 990 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
974 | CONFIG_HID_MICROSOFT=y | 991 | CONFIG_HID_MICROSOFT=y |
975 | CONFIG_HID_MONTEREY=y | 992 | CONFIG_HID_MONTEREY=y |
993 | # CONFIG_HID_NTRIG is not set | ||
976 | CONFIG_HID_PANTHERLORD=y | 994 | CONFIG_HID_PANTHERLORD=y |
977 | # CONFIG_PANTHERLORD_FF is not set | 995 | # CONFIG_PANTHERLORD_FF is not set |
978 | CONFIG_HID_PETALYNX=y | 996 | CONFIG_HID_PETALYNX=y |
979 | CONFIG_HID_SAMSUNG=y | 997 | CONFIG_HID_SAMSUNG=y |
980 | CONFIG_HID_SONY=y | 998 | CONFIG_HID_SONY=y |
981 | CONFIG_HID_SUNPLUS=y | 999 | CONFIG_HID_SUNPLUS=y |
1000 | # CONFIG_GREENASIA_FF is not set | ||
1001 | # CONFIG_HID_TOPSEED is not set | ||
982 | CONFIG_THRUSTMASTER_FF=m | 1002 | CONFIG_THRUSTMASTER_FF=m |
983 | CONFIG_ZEROPLUS_FF=m | 1003 | CONFIG_ZEROPLUS_FF=m |
984 | CONFIG_USB_SUPPORT=y | 1004 | CONFIG_USB_SUPPORT=y |
@@ -1011,6 +1031,7 @@ CONFIG_USB_EHCI_ROOT_HUB_TT=y | |||
1011 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1031 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1012 | CONFIG_USB_EHCI_FSL=y | 1032 | CONFIG_USB_EHCI_FSL=y |
1013 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1033 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1034 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1014 | # CONFIG_USB_ISP116X_HCD is not set | 1035 | # CONFIG_USB_ISP116X_HCD is not set |
1015 | # CONFIG_USB_ISP1760_HCD is not set | 1036 | # CONFIG_USB_ISP1760_HCD is not set |
1016 | # CONFIG_USB_OHCI_HCD is not set | 1037 | # CONFIG_USB_OHCI_HCD is not set |
@@ -1029,11 +1050,11 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
1029 | # CONFIG_USB_TMC is not set | 1050 | # CONFIG_USB_TMC is not set |
1030 | 1051 | ||
1031 | # | 1052 | # |
1032 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1053 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1033 | # | 1054 | # |
1034 | 1055 | ||
1035 | # | 1056 | # |
1036 | # may also be needed; see USB_STORAGE Help for more information | 1057 | # see USB_STORAGE Help for more information |
1037 | # | 1058 | # |
1038 | # CONFIG_USB_STORAGE is not set | 1059 | # CONFIG_USB_STORAGE is not set |
1039 | # CONFIG_USB_LIBUSUAL is not set | 1060 | # CONFIG_USB_LIBUSUAL is not set |
@@ -1074,6 +1095,10 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
1074 | # CONFIG_USB_ISIGHTFW is not set | 1095 | # CONFIG_USB_ISIGHTFW is not set |
1075 | # CONFIG_USB_VST is not set | 1096 | # CONFIG_USB_VST is not set |
1076 | # CONFIG_USB_GADGET is not set | 1097 | # CONFIG_USB_GADGET is not set |
1098 | |||
1099 | # | ||
1100 | # OTG and related infrastructure | ||
1101 | # | ||
1077 | # CONFIG_UWB is not set | 1102 | # CONFIG_UWB is not set |
1078 | # CONFIG_MMC is not set | 1103 | # CONFIG_MMC is not set |
1079 | # CONFIG_MEMSTICK is not set | 1104 | # CONFIG_MEMSTICK is not set |
@@ -1105,6 +1130,7 @@ CONFIG_FS_MBCACHE=y | |||
1105 | CONFIG_FILE_LOCKING=y | 1130 | CONFIG_FILE_LOCKING=y |
1106 | # CONFIG_XFS_FS is not set | 1131 | # CONFIG_XFS_FS is not set |
1107 | # CONFIG_OCFS2_FS is not set | 1132 | # CONFIG_OCFS2_FS is not set |
1133 | # CONFIG_BTRFS_FS is not set | ||
1108 | CONFIG_DNOTIFY=y | 1134 | CONFIG_DNOTIFY=y |
1109 | CONFIG_INOTIFY=y | 1135 | CONFIG_INOTIFY=y |
1110 | CONFIG_INOTIFY_USER=y | 1136 | CONFIG_INOTIFY_USER=y |
@@ -1138,10 +1164,7 @@ CONFIG_TMPFS=y | |||
1138 | # CONFIG_TMPFS_POSIX_ACL is not set | 1164 | # CONFIG_TMPFS_POSIX_ACL is not set |
1139 | # CONFIG_HUGETLB_PAGE is not set | 1165 | # CONFIG_HUGETLB_PAGE is not set |
1140 | # CONFIG_CONFIGFS_FS is not set | 1166 | # CONFIG_CONFIGFS_FS is not set |
1141 | 1167 | CONFIG_MISC_FILESYSTEMS=y | |
1142 | # | ||
1143 | # Miscellaneous filesystems | ||
1144 | # | ||
1145 | # CONFIG_ADFS_FS is not set | 1168 | # CONFIG_ADFS_FS is not set |
1146 | # CONFIG_AFFS_FS is not set | 1169 | # CONFIG_AFFS_FS is not set |
1147 | # CONFIG_HFS_FS is not set | 1170 | # CONFIG_HFS_FS is not set |
@@ -1150,6 +1173,7 @@ CONFIG_TMPFS=y | |||
1150 | # CONFIG_BFS_FS is not set | 1173 | # CONFIG_BFS_FS is not set |
1151 | # CONFIG_EFS_FS is not set | 1174 | # CONFIG_EFS_FS is not set |
1152 | # CONFIG_CRAMFS is not set | 1175 | # CONFIG_CRAMFS is not set |
1176 | # CONFIG_SQUASHFS is not set | ||
1153 | # CONFIG_VXFS_FS is not set | 1177 | # CONFIG_VXFS_FS is not set |
1154 | # CONFIG_MINIX_FS is not set | 1178 | # CONFIG_MINIX_FS is not set |
1155 | # CONFIG_OMFS_FS is not set | 1179 | # CONFIG_OMFS_FS is not set |
@@ -1207,6 +1231,7 @@ CONFIG_MSDOS_PARTITION=y | |||
1207 | # Library routines | 1231 | # Library routines |
1208 | # | 1232 | # |
1209 | CONFIG_BITREVERSE=y | 1233 | CONFIG_BITREVERSE=y |
1234 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1210 | # CONFIG_CRC_CCITT is not set | 1235 | # CONFIG_CRC_CCITT is not set |
1211 | # CONFIG_CRC16 is not set | 1236 | # CONFIG_CRC16 is not set |
1212 | CONFIG_CRC_T10DIF=y | 1237 | CONFIG_CRC_T10DIF=y |
@@ -1238,6 +1263,8 @@ CONFIG_FRAME_WARN=1024 | |||
1238 | # CONFIG_LATENCYTOP is not set | 1263 | # CONFIG_LATENCYTOP is not set |
1239 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1264 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1240 | CONFIG_HAVE_FUNCTION_TRACER=y | 1265 | CONFIG_HAVE_FUNCTION_TRACER=y |
1266 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1267 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1241 | 1268 | ||
1242 | # | 1269 | # |
1243 | # Tracers | 1270 | # Tracers |
@@ -1245,6 +1272,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1245 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1272 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1246 | # CONFIG_SAMPLES is not set | 1273 | # CONFIG_SAMPLES is not set |
1247 | CONFIG_HAVE_ARCH_KGDB=y | 1274 | CONFIG_HAVE_ARCH_KGDB=y |
1275 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1248 | # CONFIG_IRQSTACKS is not set | 1276 | # CONFIG_IRQSTACKS is not set |
1249 | # CONFIG_BOOTX_TEXT is not set | 1277 | # CONFIG_BOOTX_TEXT is not set |
1250 | # CONFIG_PPC_EARLY_DEBUG is not set | 1278 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1267,11 +1295,15 @@ CONFIG_CRYPTO=y | |||
1267 | # | 1295 | # |
1268 | # CONFIG_CRYPTO_FIPS is not set | 1296 | # CONFIG_CRYPTO_FIPS is not set |
1269 | CONFIG_CRYPTO_ALGAPI=y | 1297 | CONFIG_CRYPTO_ALGAPI=y |
1270 | CONFIG_CRYPTO_AEAD=y | 1298 | CONFIG_CRYPTO_ALGAPI2=y |
1299 | CONFIG_CRYPTO_AEAD2=y | ||
1271 | CONFIG_CRYPTO_BLKCIPHER=y | 1300 | CONFIG_CRYPTO_BLKCIPHER=y |
1301 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1272 | CONFIG_CRYPTO_HASH=y | 1302 | CONFIG_CRYPTO_HASH=y |
1273 | CONFIG_CRYPTO_RNG=y | 1303 | CONFIG_CRYPTO_HASH2=y |
1304 | CONFIG_CRYPTO_RNG2=y | ||
1274 | CONFIG_CRYPTO_MANAGER=y | 1305 | CONFIG_CRYPTO_MANAGER=y |
1306 | CONFIG_CRYPTO_MANAGER2=y | ||
1275 | # CONFIG_CRYPTO_GF128MUL is not set | 1307 | # CONFIG_CRYPTO_GF128MUL is not set |
1276 | # CONFIG_CRYPTO_NULL is not set | 1308 | # CONFIG_CRYPTO_NULL is not set |
1277 | # CONFIG_CRYPTO_CRYPTD is not set | 1309 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/83xx/sbc834x_defconfig b/arch/powerpc/configs/83xx/sbc834x_defconfig index 54bb24a5e02a..a0c42fb65cb9 100644 --- a/arch/powerpc/configs/83xx/sbc834x_defconfig +++ b/arch/powerpc/configs/83xx/sbc834x_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:02 2008 | 4 | # Mon Jan 26 15:36:02 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -75,12 +75,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
80 | CONFIG_FAIR_GROUP_SCHED=y | 79 | CONFIG_FAIR_GROUP_SCHED=y |
81 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -112,7 +112,6 @@ CONFIG_SLAB=y | |||
112 | # CONFIG_SLUB is not set | 112 | # CONFIG_SLUB is not set |
113 | # CONFIG_SLOB is not set | 113 | # CONFIG_SLOB is not set |
114 | # CONFIG_PROFILING is not set | 114 | # CONFIG_PROFILING is not set |
115 | # CONFIG_MARKERS is not set | ||
116 | CONFIG_HAVE_OPROFILE=y | 115 | CONFIG_HAVE_OPROFILE=y |
117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 116 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
118 | CONFIG_HAVE_IOREMAP_PROT=y | 117 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -122,7 +121,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 121 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
123 | CONFIG_SLABINFO=y | 122 | CONFIG_SLABINFO=y |
124 | CONFIG_RT_MUTEXES=y | 123 | CONFIG_RT_MUTEXES=y |
125 | # CONFIG_TINY_SHMEM is not set | ||
126 | CONFIG_BASE_SMALL=0 | 124 | CONFIG_BASE_SMALL=0 |
127 | CONFIG_MODULES=y | 125 | CONFIG_MODULES=y |
128 | # CONFIG_MODULE_FORCE_LOAD is not set | 126 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -130,11 +128,9 @@ CONFIG_MODULE_UNLOAD=y | |||
130 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 128 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
131 | # CONFIG_MODVERSIONS is not set | 129 | # CONFIG_MODVERSIONS is not set |
132 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 130 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
133 | CONFIG_KMOD=y | ||
134 | CONFIG_BLOCK=y | 131 | CONFIG_BLOCK=y |
135 | # CONFIG_LBD is not set | 132 | # CONFIG_LBD is not set |
136 | # CONFIG_BLK_DEV_IO_TRACE is not set | 133 | # CONFIG_BLK_DEV_IO_TRACE is not set |
137 | # CONFIG_LSF is not set | ||
138 | # CONFIG_BLK_DEV_BSG is not set | 134 | # CONFIG_BLK_DEV_BSG is not set |
139 | # CONFIG_BLK_DEV_INTEGRITY is not set | 135 | # CONFIG_BLK_DEV_INTEGRITY is not set |
140 | 136 | ||
@@ -151,6 +147,10 @@ CONFIG_DEFAULT_AS=y | |||
151 | # CONFIG_DEFAULT_NOOP is not set | 147 | # CONFIG_DEFAULT_NOOP is not set |
152 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 148 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
153 | CONFIG_CLASSIC_RCU=y | 149 | CONFIG_CLASSIC_RCU=y |
150 | # CONFIG_TREE_RCU is not set | ||
151 | # CONFIG_PREEMPT_RCU is not set | ||
152 | # CONFIG_TREE_RCU_TRACE is not set | ||
153 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
154 | # CONFIG_FREEZER is not set | 154 | # CONFIG_FREEZER is not set |
155 | 155 | ||
156 | # | 156 | # |
@@ -197,6 +197,8 @@ CONFIG_IPIC=y | |||
197 | # CONFIG_QUICC_ENGINE is not set | 197 | # CONFIG_QUICC_ENGINE is not set |
198 | # CONFIG_FSL_ULI1575 is not set | 198 | # CONFIG_FSL_ULI1575 is not set |
199 | # CONFIG_MPC8xxx_GPIO is not set | 199 | # CONFIG_MPC8xxx_GPIO is not set |
200 | # CONFIG_SIMPLE_GPIO is not set | ||
201 | # CONFIG_MCU_MPC8349EMITX is not set | ||
200 | 202 | ||
201 | # | 203 | # |
202 | # Kernel options | 204 | # Kernel options |
@@ -223,6 +225,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
223 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 225 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
224 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 226 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
225 | # CONFIG_KEXEC is not set | 227 | # CONFIG_KEXEC is not set |
228 | # CONFIG_CRASH_DUMP is not set | ||
226 | CONFIG_ARCH_FLATMEM_ENABLE=y | 229 | CONFIG_ARCH_FLATMEM_ENABLE=y |
227 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 230 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
228 | CONFIG_SELECT_MEMORY_MODEL=y | 231 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -234,12 +237,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
234 | CONFIG_PAGEFLAGS_EXTENDED=y | 237 | CONFIG_PAGEFLAGS_EXTENDED=y |
235 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 238 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
236 | CONFIG_MIGRATION=y | 239 | CONFIG_MIGRATION=y |
237 | # CONFIG_RESOURCES_64BIT is not set | ||
238 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 240 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
239 | CONFIG_ZONE_DMA_FLAG=1 | 241 | CONFIG_ZONE_DMA_FLAG=1 |
240 | CONFIG_BOUNCE=y | 242 | CONFIG_BOUNCE=y |
241 | CONFIG_VIRT_TO_BUS=y | 243 | CONFIG_VIRT_TO_BUS=y |
242 | CONFIG_UNEVICTABLE_LRU=y | 244 | CONFIG_UNEVICTABLE_LRU=y |
245 | CONFIG_PPC_4K_PAGES=y | ||
246 | # CONFIG_PPC_16K_PAGES is not set | ||
247 | # CONFIG_PPC_64K_PAGES is not set | ||
243 | CONFIG_FORCE_MAX_ZONEORDER=11 | 248 | CONFIG_FORCE_MAX_ZONEORDER=11 |
244 | CONFIG_PROC_DEVICETREE=y | 249 | CONFIG_PROC_DEVICETREE=y |
245 | # CONFIG_CMDLINE_BOOL is not set | 250 | # CONFIG_CMDLINE_BOOL is not set |
@@ -264,6 +269,7 @@ CONFIG_PCI_SYSCALL=y | |||
264 | CONFIG_ARCH_SUPPORTS_MSI=y | 269 | CONFIG_ARCH_SUPPORTS_MSI=y |
265 | # CONFIG_PCI_MSI is not set | 270 | # CONFIG_PCI_MSI is not set |
266 | # CONFIG_PCI_LEGACY is not set | 271 | # CONFIG_PCI_LEGACY is not set |
272 | # CONFIG_PCI_STUB is not set | ||
267 | # CONFIG_PCCARD is not set | 273 | # CONFIG_PCCARD is not set |
268 | # CONFIG_HOTPLUG_PCI is not set | 274 | # CONFIG_HOTPLUG_PCI is not set |
269 | # CONFIG_HAS_RAPIDIO is not set | 275 | # CONFIG_HAS_RAPIDIO is not set |
@@ -286,6 +292,7 @@ CONFIG_NET=y | |||
286 | # | 292 | # |
287 | # Networking options | 293 | # Networking options |
288 | # | 294 | # |
295 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
289 | CONFIG_PACKET=y | 296 | CONFIG_PACKET=y |
290 | # CONFIG_PACKET_MMAP is not set | 297 | # CONFIG_PACKET_MMAP is not set |
291 | CONFIG_UNIX=y | 298 | CONFIG_UNIX=y |
@@ -342,6 +349,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
342 | # CONFIG_ECONET is not set | 349 | # CONFIG_ECONET is not set |
343 | # CONFIG_WAN_ROUTER is not set | 350 | # CONFIG_WAN_ROUTER is not set |
344 | # CONFIG_NET_SCHED is not set | 351 | # CONFIG_NET_SCHED is not set |
352 | # CONFIG_DCB is not set | ||
345 | 353 | ||
346 | # | 354 | # |
347 | # Network testing | 355 | # Network testing |
@@ -357,8 +365,9 @@ CONFIG_WIRELESS=y | |||
357 | # CONFIG_CFG80211 is not set | 365 | # CONFIG_CFG80211 is not set |
358 | CONFIG_WIRELESS_OLD_REGULATORY=y | 366 | CONFIG_WIRELESS_OLD_REGULATORY=y |
359 | # CONFIG_WIRELESS_EXT is not set | 367 | # CONFIG_WIRELESS_EXT is not set |
368 | # CONFIG_LIB80211 is not set | ||
360 | # CONFIG_MAC80211 is not set | 369 | # CONFIG_MAC80211 is not set |
361 | # CONFIG_IEEE80211 is not set | 370 | # CONFIG_WIMAX is not set |
362 | # CONFIG_RFKILL is not set | 371 | # CONFIG_RFKILL is not set |
363 | # CONFIG_NET_9P is not set | 372 | # CONFIG_NET_9P is not set |
364 | 373 | ||
@@ -402,8 +411,10 @@ CONFIG_MISC_DEVICES=y | |||
402 | # CONFIG_EEPROM_93CX6 is not set | 411 | # CONFIG_EEPROM_93CX6 is not set |
403 | # CONFIG_SGI_IOC4 is not set | 412 | # CONFIG_SGI_IOC4 is not set |
404 | # CONFIG_TIFM_CORE is not set | 413 | # CONFIG_TIFM_CORE is not set |
414 | # CONFIG_ICS932S401 is not set | ||
405 | # CONFIG_ENCLOSURE_SERVICES is not set | 415 | # CONFIG_ENCLOSURE_SERVICES is not set |
406 | # CONFIG_HP_ILO is not set | 416 | # CONFIG_HP_ILO is not set |
417 | # CONFIG_C2PORT is not set | ||
407 | CONFIG_HAVE_IDE=y | 418 | CONFIG_HAVE_IDE=y |
408 | # CONFIG_IDE is not set | 419 | # CONFIG_IDE is not set |
409 | 420 | ||
@@ -452,6 +463,9 @@ CONFIG_PHYLIB=y | |||
452 | CONFIG_BROADCOM_PHY=y | 463 | CONFIG_BROADCOM_PHY=y |
453 | # CONFIG_ICPLUS_PHY is not set | 464 | # CONFIG_ICPLUS_PHY is not set |
454 | # CONFIG_REALTEK_PHY is not set | 465 | # CONFIG_REALTEK_PHY is not set |
466 | # CONFIG_NATIONAL_PHY is not set | ||
467 | # CONFIG_STE10XP is not set | ||
468 | # CONFIG_LSI_ET1011C_PHY is not set | ||
455 | # CONFIG_FIXED_PHY is not set | 469 | # CONFIG_FIXED_PHY is not set |
456 | # CONFIG_MDIO_BITBANG is not set | 470 | # CONFIG_MDIO_BITBANG is not set |
457 | CONFIG_NET_ETHERNET=y | 471 | CONFIG_NET_ETHERNET=y |
@@ -504,6 +518,10 @@ CONFIG_GIANFAR=y | |||
504 | # CONFIG_WLAN_PRE80211 is not set | 518 | # CONFIG_WLAN_PRE80211 is not set |
505 | # CONFIG_WLAN_80211 is not set | 519 | # CONFIG_WLAN_80211 is not set |
506 | # CONFIG_IWLWIFI_LEDS is not set | 520 | # CONFIG_IWLWIFI_LEDS is not set |
521 | |||
522 | # | ||
523 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
524 | # | ||
507 | # CONFIG_WAN is not set | 525 | # CONFIG_WAN is not set |
508 | # CONFIG_FDDI is not set | 526 | # CONFIG_FDDI is not set |
509 | # CONFIG_HIPPI is not set | 527 | # CONFIG_HIPPI is not set |
@@ -573,8 +591,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
573 | # CONFIG_SERIAL_JSM is not set | 591 | # CONFIG_SERIAL_JSM is not set |
574 | # CONFIG_SERIAL_OF_PLATFORM is not set | 592 | # CONFIG_SERIAL_OF_PLATFORM is not set |
575 | CONFIG_UNIX98_PTYS=y | 593 | CONFIG_UNIX98_PTYS=y |
594 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
576 | CONFIG_LEGACY_PTYS=y | 595 | CONFIG_LEGACY_PTYS=y |
577 | CONFIG_LEGACY_PTY_COUNT=256 | 596 | CONFIG_LEGACY_PTY_COUNT=256 |
597 | # CONFIG_HVC_UDBG is not set | ||
578 | # CONFIG_IPMI_HANDLER is not set | 598 | # CONFIG_IPMI_HANDLER is not set |
579 | # CONFIG_HW_RANDOM is not set | 599 | # CONFIG_HW_RANDOM is not set |
580 | # CONFIG_NVRAM is not set | 600 | # CONFIG_NVRAM is not set |
@@ -648,7 +668,6 @@ CONFIG_I2C_MPC=y | |||
648 | # CONFIG_SENSORS_PCF8591 is not set | 668 | # CONFIG_SENSORS_PCF8591 is not set |
649 | # CONFIG_SENSORS_MAX6875 is not set | 669 | # CONFIG_SENSORS_MAX6875 is not set |
650 | # CONFIG_SENSORS_TSL2550 is not set | 670 | # CONFIG_SENSORS_TSL2550 is not set |
651 | # CONFIG_MCU_MPC8349EMITX is not set | ||
652 | # CONFIG_I2C_DEBUG_CORE is not set | 671 | # CONFIG_I2C_DEBUG_CORE is not set |
653 | # CONFIG_I2C_DEBUG_ALGO is not set | 672 | # CONFIG_I2C_DEBUG_ALGO is not set |
654 | # CONFIG_I2C_DEBUG_BUS is not set | 673 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -668,8 +687,10 @@ CONFIG_HWMON=y | |||
668 | # CONFIG_SENSORS_ADM1029 is not set | 687 | # CONFIG_SENSORS_ADM1029 is not set |
669 | # CONFIG_SENSORS_ADM1031 is not set | 688 | # CONFIG_SENSORS_ADM1031 is not set |
670 | # CONFIG_SENSORS_ADM9240 is not set | 689 | # CONFIG_SENSORS_ADM9240 is not set |
690 | # CONFIG_SENSORS_ADT7462 is not set | ||
671 | # CONFIG_SENSORS_ADT7470 is not set | 691 | # CONFIG_SENSORS_ADT7470 is not set |
672 | # CONFIG_SENSORS_ADT7473 is not set | 692 | # CONFIG_SENSORS_ADT7473 is not set |
693 | # CONFIG_SENSORS_ADT7475 is not set | ||
673 | # CONFIG_SENSORS_ATXP1 is not set | 694 | # CONFIG_SENSORS_ATXP1 is not set |
674 | # CONFIG_SENSORS_DS1621 is not set | 695 | # CONFIG_SENSORS_DS1621 is not set |
675 | # CONFIG_SENSORS_I5K_AMB is not set | 696 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -690,6 +711,7 @@ CONFIG_HWMON=y | |||
690 | # CONFIG_SENSORS_LM90 is not set | 711 | # CONFIG_SENSORS_LM90 is not set |
691 | # CONFIG_SENSORS_LM92 is not set | 712 | # CONFIG_SENSORS_LM92 is not set |
692 | # CONFIG_SENSORS_LM93 is not set | 713 | # CONFIG_SENSORS_LM93 is not set |
714 | # CONFIG_SENSORS_LTC4245 is not set | ||
693 | # CONFIG_SENSORS_MAX1619 is not set | 715 | # CONFIG_SENSORS_MAX1619 is not set |
694 | # CONFIG_SENSORS_MAX6650 is not set | 716 | # CONFIG_SENSORS_MAX6650 is not set |
695 | # CONFIG_SENSORS_PC87360 is not set | 717 | # CONFIG_SENSORS_PC87360 is not set |
@@ -730,11 +752,11 @@ CONFIG_WATCHDOG=y | |||
730 | # | 752 | # |
731 | # CONFIG_PCIPCWATCHDOG is not set | 753 | # CONFIG_PCIPCWATCHDOG is not set |
732 | # CONFIG_WDTPCI is not set | 754 | # CONFIG_WDTPCI is not set |
755 | CONFIG_SSB_POSSIBLE=y | ||
733 | 756 | ||
734 | # | 757 | # |
735 | # Sonics Silicon Backplane | 758 | # Sonics Silicon Backplane |
736 | # | 759 | # |
737 | CONFIG_SSB_POSSIBLE=y | ||
738 | # CONFIG_SSB is not set | 760 | # CONFIG_SSB is not set |
739 | 761 | ||
740 | # | 762 | # |
@@ -743,18 +765,13 @@ CONFIG_SSB_POSSIBLE=y | |||
743 | # CONFIG_MFD_CORE is not set | 765 | # CONFIG_MFD_CORE is not set |
744 | # CONFIG_MFD_SM501 is not set | 766 | # CONFIG_MFD_SM501 is not set |
745 | # CONFIG_HTC_PASIC3 is not set | 767 | # CONFIG_HTC_PASIC3 is not set |
768 | # CONFIG_TWL4030_CORE is not set | ||
746 | # CONFIG_MFD_TMIO is not set | 769 | # CONFIG_MFD_TMIO is not set |
747 | # CONFIG_PMIC_DA903X is not set | 770 | # CONFIG_PMIC_DA903X is not set |
748 | # CONFIG_MFD_WM8400 is not set | 771 | # CONFIG_MFD_WM8400 is not set |
749 | # CONFIG_MFD_WM8350_I2C is not set | 772 | # CONFIG_MFD_WM8350_I2C is not set |
750 | 773 | # CONFIG_MFD_PCF50633 is not set | |
751 | # | ||
752 | # Voltage and Current regulators | ||
753 | # | ||
754 | # CONFIG_REGULATOR is not set | 774 | # CONFIG_REGULATOR is not set |
755 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
756 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
757 | # CONFIG_REGULATOR_BQ24022 is not set | ||
758 | 775 | ||
759 | # | 776 | # |
760 | # Multimedia devices | 777 | # Multimedia devices |
@@ -822,6 +839,7 @@ CONFIG_HID_COMPAT=y | |||
822 | CONFIG_FILE_LOCKING=y | 839 | CONFIG_FILE_LOCKING=y |
823 | # CONFIG_XFS_FS is not set | 840 | # CONFIG_XFS_FS is not set |
824 | # CONFIG_OCFS2_FS is not set | 841 | # CONFIG_OCFS2_FS is not set |
842 | # CONFIG_BTRFS_FS is not set | ||
825 | CONFIG_DNOTIFY=y | 843 | CONFIG_DNOTIFY=y |
826 | CONFIG_INOTIFY=y | 844 | CONFIG_INOTIFY=y |
827 | CONFIG_INOTIFY_USER=y | 845 | CONFIG_INOTIFY_USER=y |
@@ -855,10 +873,7 @@ CONFIG_TMPFS=y | |||
855 | # CONFIG_TMPFS_POSIX_ACL is not set | 873 | # CONFIG_TMPFS_POSIX_ACL is not set |
856 | # CONFIG_HUGETLB_PAGE is not set | 874 | # CONFIG_HUGETLB_PAGE is not set |
857 | # CONFIG_CONFIGFS_FS is not set | 875 | # CONFIG_CONFIGFS_FS is not set |
858 | 876 | CONFIG_MISC_FILESYSTEMS=y | |
859 | # | ||
860 | # Miscellaneous filesystems | ||
861 | # | ||
862 | # CONFIG_ADFS_FS is not set | 877 | # CONFIG_ADFS_FS is not set |
863 | # CONFIG_AFFS_FS is not set | 878 | # CONFIG_AFFS_FS is not set |
864 | # CONFIG_HFS_FS is not set | 879 | # CONFIG_HFS_FS is not set |
@@ -867,6 +882,7 @@ CONFIG_TMPFS=y | |||
867 | # CONFIG_BFS_FS is not set | 882 | # CONFIG_BFS_FS is not set |
868 | # CONFIG_EFS_FS is not set | 883 | # CONFIG_EFS_FS is not set |
869 | # CONFIG_CRAMFS is not set | 884 | # CONFIG_CRAMFS is not set |
885 | # CONFIG_SQUASHFS is not set | ||
870 | # CONFIG_VXFS_FS is not set | 886 | # CONFIG_VXFS_FS is not set |
871 | # CONFIG_MINIX_FS is not set | 887 | # CONFIG_MINIX_FS is not set |
872 | # CONFIG_OMFS_FS is not set | 888 | # CONFIG_OMFS_FS is not set |
@@ -908,6 +924,7 @@ CONFIG_MSDOS_PARTITION=y | |||
908 | # Library routines | 924 | # Library routines |
909 | # | 925 | # |
910 | CONFIG_BITREVERSE=y | 926 | CONFIG_BITREVERSE=y |
927 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
911 | # CONFIG_CRC_CCITT is not set | 928 | # CONFIG_CRC_CCITT is not set |
912 | # CONFIG_CRC16 is not set | 929 | # CONFIG_CRC16 is not set |
913 | # CONFIG_CRC_T10DIF is not set | 930 | # CONFIG_CRC_T10DIF is not set |
@@ -939,6 +956,8 @@ CONFIG_FRAME_WARN=1024 | |||
939 | # CONFIG_LATENCYTOP is not set | 956 | # CONFIG_LATENCYTOP is not set |
940 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 957 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
941 | CONFIG_HAVE_FUNCTION_TRACER=y | 958 | CONFIG_HAVE_FUNCTION_TRACER=y |
959 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
960 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
942 | 961 | ||
943 | # | 962 | # |
944 | # Tracers | 963 | # Tracers |
@@ -946,6 +965,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
946 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 965 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
947 | # CONFIG_SAMPLES is not set | 966 | # CONFIG_SAMPLES is not set |
948 | CONFIG_HAVE_ARCH_KGDB=y | 967 | CONFIG_HAVE_ARCH_KGDB=y |
968 | CONFIG_PRINT_STACK_DEPTH=64 | ||
949 | # CONFIG_IRQSTACKS is not set | 969 | # CONFIG_IRQSTACKS is not set |
950 | # CONFIG_BOOTX_TEXT is not set | 970 | # CONFIG_BOOTX_TEXT is not set |
951 | # CONFIG_PPC_EARLY_DEBUG is not set | 971 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -964,11 +984,15 @@ CONFIG_CRYPTO=y | |||
964 | # | 984 | # |
965 | # CONFIG_CRYPTO_FIPS is not set | 985 | # CONFIG_CRYPTO_FIPS is not set |
966 | CONFIG_CRYPTO_ALGAPI=y | 986 | CONFIG_CRYPTO_ALGAPI=y |
967 | CONFIG_CRYPTO_AEAD=y | 987 | CONFIG_CRYPTO_ALGAPI2=y |
988 | CONFIG_CRYPTO_AEAD2=y | ||
968 | CONFIG_CRYPTO_BLKCIPHER=y | 989 | CONFIG_CRYPTO_BLKCIPHER=y |
990 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
969 | CONFIG_CRYPTO_HASH=y | 991 | CONFIG_CRYPTO_HASH=y |
970 | CONFIG_CRYPTO_RNG=y | 992 | CONFIG_CRYPTO_HASH2=y |
993 | CONFIG_CRYPTO_RNG2=y | ||
971 | CONFIG_CRYPTO_MANAGER=y | 994 | CONFIG_CRYPTO_MANAGER=y |
995 | CONFIG_CRYPTO_MANAGER2=y | ||
972 | # CONFIG_CRYPTO_GF128MUL is not set | 996 | # CONFIG_CRYPTO_GF128MUL is not set |
973 | # CONFIG_CRYPTO_NULL is not set | 997 | # CONFIG_CRYPTO_NULL is not set |
974 | # CONFIG_CRYPTO_CRYPTD is not set | 998 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/85xx/ksi8560_defconfig b/arch/powerpc/configs/85xx/ksi8560_defconfig index 1af7b9e37b61..6479bb9f3f57 100644 --- a/arch/powerpc/configs/85xx/ksi8560_defconfig +++ b/arch/powerpc/configs/85xx/ksi8560_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:03 2008 | 4 | # Mon Jan 26 15:36:03 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -46,7 +48,7 @@ CONFIG_GENERIC_GPIO=y | |||
46 | CONFIG_PPC=y | 48 | CONFIG_PPC=y |
47 | CONFIG_EARLY_PRINTK=y | 49 | CONFIG_EARLY_PRINTK=y |
48 | CONFIG_GENERIC_NVRAM=y | 50 | CONFIG_GENERIC_NVRAM=y |
49 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 51 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
50 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 52 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
51 | CONFIG_PPC_OF=y | 53 | CONFIG_PPC_OF=y |
52 | CONFIG_OF=y | 54 | CONFIG_OF=y |
@@ -76,8 +78,8 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
76 | # CONFIG_AUDIT is not set | 78 | # CONFIG_AUDIT is not set |
77 | # CONFIG_IKCONFIG is not set | 79 | # CONFIG_IKCONFIG is not set |
78 | CONFIG_LOG_BUF_SHIFT=14 | 80 | CONFIG_LOG_BUF_SHIFT=14 |
79 | # CONFIG_CGROUPS is not set | ||
80 | # CONFIG_GROUP_SCHED is not set | 81 | # CONFIG_GROUP_SCHED is not set |
82 | # CONFIG_CGROUPS is not set | ||
81 | CONFIG_SYSFS_DEPRECATED=y | 83 | CONFIG_SYSFS_DEPRECATED=y |
82 | CONFIG_SYSFS_DEPRECATED_V2=y | 84 | CONFIG_SYSFS_DEPRECATED_V2=y |
83 | # CONFIG_RELAY is not set | 85 | # CONFIG_RELAY is not set |
@@ -111,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
111 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
112 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
113 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
114 | # CONFIG_MARKERS is not set | ||
115 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
116 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
117 | CONFIG_HAVE_IOREMAP_PROT=y | 118 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -122,13 +123,11 @@ CONFIG_HAVE_CLK=y | |||
122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
123 | CONFIG_SLABINFO=y | 124 | CONFIG_SLABINFO=y |
124 | CONFIG_RT_MUTEXES=y | 125 | CONFIG_RT_MUTEXES=y |
125 | # CONFIG_TINY_SHMEM is not set | ||
126 | CONFIG_BASE_SMALL=0 | 126 | CONFIG_BASE_SMALL=0 |
127 | # CONFIG_MODULES is not set | 127 | # CONFIG_MODULES is not set |
128 | CONFIG_BLOCK=y | 128 | CONFIG_BLOCK=y |
129 | # CONFIG_LBD is not set | 129 | # CONFIG_LBD is not set |
130 | # CONFIG_BLK_DEV_IO_TRACE is not set | 130 | # CONFIG_BLK_DEV_IO_TRACE is not set |
131 | # CONFIG_LSF is not set | ||
132 | # CONFIG_BLK_DEV_BSG is not set | 131 | # CONFIG_BLK_DEV_BSG is not set |
133 | # CONFIG_BLK_DEV_INTEGRITY is not set | 132 | # CONFIG_BLK_DEV_INTEGRITY is not set |
134 | 133 | ||
@@ -145,6 +144,10 @@ CONFIG_DEFAULT_AS=y | |||
145 | # CONFIG_DEFAULT_NOOP is not set | 144 | # CONFIG_DEFAULT_NOOP is not set |
146 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 145 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
147 | CONFIG_CLASSIC_RCU=y | 146 | CONFIG_CLASSIC_RCU=y |
147 | # CONFIG_TREE_RCU is not set | ||
148 | # CONFIG_PREEMPT_RCU is not set | ||
149 | # CONFIG_TREE_RCU_TRACE is not set | ||
150 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
148 | # CONFIG_FREEZER is not set | 151 | # CONFIG_FREEZER is not set |
149 | 152 | ||
150 | # | 153 | # |
@@ -185,6 +188,7 @@ CONFIG_CPM2=y | |||
185 | # CONFIG_FSL_ULI1575 is not set | 188 | # CONFIG_FSL_ULI1575 is not set |
186 | CONFIG_CPM=y | 189 | CONFIG_CPM=y |
187 | # CONFIG_MPC8xxx_GPIO is not set | 190 | # CONFIG_MPC8xxx_GPIO is not set |
191 | # CONFIG_SIMPLE_GPIO is not set | ||
188 | 192 | ||
189 | # | 193 | # |
190 | # Kernel options | 194 | # Kernel options |
@@ -222,12 +226,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
222 | CONFIG_PAGEFLAGS_EXTENDED=y | 226 | CONFIG_PAGEFLAGS_EXTENDED=y |
223 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 227 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
224 | CONFIG_MIGRATION=y | 228 | CONFIG_MIGRATION=y |
225 | # CONFIG_RESOURCES_64BIT is not set | ||
226 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 229 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
227 | CONFIG_ZONE_DMA_FLAG=1 | 230 | CONFIG_ZONE_DMA_FLAG=1 |
228 | CONFIG_BOUNCE=y | 231 | CONFIG_BOUNCE=y |
229 | CONFIG_VIRT_TO_BUS=y | 232 | CONFIG_VIRT_TO_BUS=y |
230 | CONFIG_UNEVICTABLE_LRU=y | 233 | CONFIG_UNEVICTABLE_LRU=y |
234 | CONFIG_PPC_4K_PAGES=y | ||
235 | # CONFIG_PPC_16K_PAGES is not set | ||
236 | # CONFIG_PPC_64K_PAGES is not set | ||
231 | CONFIG_FORCE_MAX_ZONEORDER=11 | 237 | CONFIG_FORCE_MAX_ZONEORDER=11 |
232 | # CONFIG_PROC_DEVICETREE is not set | 238 | # CONFIG_PROC_DEVICETREE is not set |
233 | # CONFIG_CMDLINE_BOOL is not set | 239 | # CONFIG_CMDLINE_BOOL is not set |
@@ -268,6 +274,7 @@ CONFIG_NET=y | |||
268 | # | 274 | # |
269 | # Networking options | 275 | # Networking options |
270 | # | 276 | # |
277 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
271 | CONFIG_PACKET=y | 278 | CONFIG_PACKET=y |
272 | # CONFIG_PACKET_MMAP is not set | 279 | # CONFIG_PACKET_MMAP is not set |
273 | CONFIG_UNIX=y | 280 | CONFIG_UNIX=y |
@@ -324,6 +331,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
324 | # CONFIG_ECONET is not set | 331 | # CONFIG_ECONET is not set |
325 | # CONFIG_WAN_ROUTER is not set | 332 | # CONFIG_WAN_ROUTER is not set |
326 | # CONFIG_NET_SCHED is not set | 333 | # CONFIG_NET_SCHED is not set |
334 | # CONFIG_DCB is not set | ||
327 | 335 | ||
328 | # | 336 | # |
329 | # Network testing | 337 | # Network testing |
@@ -339,8 +347,9 @@ CONFIG_WIRELESS=y | |||
339 | # CONFIG_CFG80211 is not set | 347 | # CONFIG_CFG80211 is not set |
340 | CONFIG_WIRELESS_OLD_REGULATORY=y | 348 | CONFIG_WIRELESS_OLD_REGULATORY=y |
341 | # CONFIG_WIRELESS_EXT is not set | 349 | # CONFIG_WIRELESS_EXT is not set |
350 | # CONFIG_LIB80211 is not set | ||
342 | # CONFIG_MAC80211 is not set | 351 | # CONFIG_MAC80211 is not set |
343 | # CONFIG_IEEE80211 is not set | 352 | # CONFIG_WIMAX is not set |
344 | # CONFIG_RFKILL is not set | 353 | # CONFIG_RFKILL is not set |
345 | # CONFIG_NET_9P is not set | 354 | # CONFIG_NET_9P is not set |
346 | 355 | ||
@@ -432,6 +441,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
432 | # CONFIG_MTD_ONENAND is not set | 441 | # CONFIG_MTD_ONENAND is not set |
433 | 442 | ||
434 | # | 443 | # |
444 | # LPDDR flash memory drivers | ||
445 | # | ||
446 | # CONFIG_MTD_LPDDR is not set | ||
447 | # CONFIG_MTD_QINFO_PROBE is not set | ||
448 | |||
449 | # | ||
435 | # UBI - Unsorted block images | 450 | # UBI - Unsorted block images |
436 | # | 451 | # |
437 | # CONFIG_MTD_UBI is not set | 452 | # CONFIG_MTD_UBI is not set |
@@ -454,6 +469,7 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
454 | CONFIG_MISC_DEVICES=y | 469 | CONFIG_MISC_DEVICES=y |
455 | # CONFIG_EEPROM_93CX6 is not set | 470 | # CONFIG_EEPROM_93CX6 is not set |
456 | # CONFIG_ENCLOSURE_SERVICES is not set | 471 | # CONFIG_ENCLOSURE_SERVICES is not set |
472 | # CONFIG_C2PORT is not set | ||
457 | CONFIG_HAVE_IDE=y | 473 | CONFIG_HAVE_IDE=y |
458 | CONFIG_IDE=y | 474 | CONFIG_IDE=y |
459 | 475 | ||
@@ -507,9 +523,12 @@ CONFIG_MARVELL_PHY=y | |||
507 | # CONFIG_BROADCOM_PHY is not set | 523 | # CONFIG_BROADCOM_PHY is not set |
508 | # CONFIG_ICPLUS_PHY is not set | 524 | # CONFIG_ICPLUS_PHY is not set |
509 | # CONFIG_REALTEK_PHY is not set | 525 | # CONFIG_REALTEK_PHY is not set |
526 | # CONFIG_NATIONAL_PHY is not set | ||
527 | # CONFIG_STE10XP is not set | ||
528 | # CONFIG_LSI_ET1011C_PHY is not set | ||
510 | # CONFIG_FIXED_PHY is not set | 529 | # CONFIG_FIXED_PHY is not set |
511 | CONFIG_MDIO_BITBANG=y | 530 | CONFIG_MDIO_BITBANG=y |
512 | # CONFIG_MDIO_OF_GPIO is not set | 531 | # CONFIG_MDIO_GPIO is not set |
513 | CONFIG_NET_ETHERNET=y | 532 | CONFIG_NET_ETHERNET=y |
514 | CONFIG_MII=y | 533 | CONFIG_MII=y |
515 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 534 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
@@ -534,6 +553,10 @@ CONFIG_NETDEV_10000=y | |||
534 | # CONFIG_WLAN_PRE80211 is not set | 553 | # CONFIG_WLAN_PRE80211 is not set |
535 | # CONFIG_WLAN_80211 is not set | 554 | # CONFIG_WLAN_80211 is not set |
536 | # CONFIG_IWLWIFI_LEDS is not set | 555 | # CONFIG_IWLWIFI_LEDS is not set |
556 | |||
557 | # | ||
558 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
559 | # | ||
537 | # CONFIG_WAN is not set | 560 | # CONFIG_WAN is not set |
538 | # CONFIG_PPP is not set | 561 | # CONFIG_PPP is not set |
539 | # CONFIG_SLIP is not set | 562 | # CONFIG_SLIP is not set |
@@ -595,8 +618,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
595 | CONFIG_SERIAL_CPM=y | 618 | CONFIG_SERIAL_CPM=y |
596 | CONFIG_SERIAL_CPM_CONSOLE=y | 619 | CONFIG_SERIAL_CPM_CONSOLE=y |
597 | CONFIG_UNIX98_PTYS=y | 620 | CONFIG_UNIX98_PTYS=y |
621 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
598 | CONFIG_LEGACY_PTYS=y | 622 | CONFIG_LEGACY_PTYS=y |
599 | CONFIG_LEGACY_PTY_COUNT=256 | 623 | CONFIG_LEGACY_PTY_COUNT=256 |
624 | # CONFIG_HVC_UDBG is not set | ||
600 | # CONFIG_IPMI_HANDLER is not set | 625 | # CONFIG_IPMI_HANDLER is not set |
601 | CONFIG_HW_RANDOM=y | 626 | CONFIG_HW_RANDOM=y |
602 | # CONFIG_NVRAM is not set | 627 | # CONFIG_NVRAM is not set |
@@ -614,6 +639,11 @@ CONFIG_GPIOLIB=y | |||
614 | # CONFIG_GPIO_SYSFS is not set | 639 | # CONFIG_GPIO_SYSFS is not set |
615 | 640 | ||
616 | # | 641 | # |
642 | # Memory mapped GPIO expanders: | ||
643 | # | ||
644 | # CONFIG_GPIO_XILINX is not set | ||
645 | |||
646 | # | ||
617 | # I2C GPIO expanders: | 647 | # I2C GPIO expanders: |
618 | # | 648 | # |
619 | 649 | ||
@@ -642,11 +672,11 @@ CONFIG_HWMON=y | |||
642 | # CONFIG_THERMAL is not set | 672 | # CONFIG_THERMAL is not set |
643 | # CONFIG_THERMAL_HWMON is not set | 673 | # CONFIG_THERMAL_HWMON is not set |
644 | # CONFIG_WATCHDOG is not set | 674 | # CONFIG_WATCHDOG is not set |
675 | CONFIG_SSB_POSSIBLE=y | ||
645 | 676 | ||
646 | # | 677 | # |
647 | # Sonics Silicon Backplane | 678 | # Sonics Silicon Backplane |
648 | # | 679 | # |
649 | CONFIG_SSB_POSSIBLE=y | ||
650 | # CONFIG_SSB is not set | 680 | # CONFIG_SSB is not set |
651 | 681 | ||
652 | # | 682 | # |
@@ -656,14 +686,7 @@ CONFIG_SSB_POSSIBLE=y | |||
656 | # CONFIG_MFD_SM501 is not set | 686 | # CONFIG_MFD_SM501 is not set |
657 | # CONFIG_HTC_PASIC3 is not set | 687 | # CONFIG_HTC_PASIC3 is not set |
658 | # CONFIG_MFD_TMIO is not set | 688 | # CONFIG_MFD_TMIO is not set |
659 | |||
660 | # | ||
661 | # Voltage and Current regulators | ||
662 | # | ||
663 | # CONFIG_REGULATOR is not set | 689 | # CONFIG_REGULATOR is not set |
664 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
665 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
666 | # CONFIG_REGULATOR_BQ24022 is not set | ||
667 | 690 | ||
668 | # | 691 | # |
669 | # Multimedia devices | 692 | # Multimedia devices |
@@ -716,9 +739,13 @@ CONFIG_USB_SUPPORT=y | |||
716 | # | 739 | # |
717 | 740 | ||
718 | # | 741 | # |
719 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 742 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
720 | # | 743 | # |
721 | # CONFIG_USB_GADGET is not set | 744 | # CONFIG_USB_GADGET is not set |
745 | |||
746 | # | ||
747 | # OTG and related infrastructure | ||
748 | # | ||
722 | # CONFIG_MMC is not set | 749 | # CONFIG_MMC is not set |
723 | # CONFIG_MEMSTICK is not set | 750 | # CONFIG_MEMSTICK is not set |
724 | # CONFIG_NEW_LEDS is not set | 751 | # CONFIG_NEW_LEDS is not set |
@@ -749,6 +776,7 @@ CONFIG_FS_MBCACHE=y | |||
749 | CONFIG_FILE_LOCKING=y | 776 | CONFIG_FILE_LOCKING=y |
750 | # CONFIG_XFS_FS is not set | 777 | # CONFIG_XFS_FS is not set |
751 | # CONFIG_OCFS2_FS is not set | 778 | # CONFIG_OCFS2_FS is not set |
779 | # CONFIG_BTRFS_FS is not set | ||
752 | CONFIG_DNOTIFY=y | 780 | CONFIG_DNOTIFY=y |
753 | CONFIG_INOTIFY=y | 781 | CONFIG_INOTIFY=y |
754 | CONFIG_INOTIFY_USER=y | 782 | CONFIG_INOTIFY_USER=y |
@@ -782,10 +810,7 @@ CONFIG_TMPFS=y | |||
782 | # CONFIG_TMPFS_POSIX_ACL is not set | 810 | # CONFIG_TMPFS_POSIX_ACL is not set |
783 | # CONFIG_HUGETLB_PAGE is not set | 811 | # CONFIG_HUGETLB_PAGE is not set |
784 | # CONFIG_CONFIGFS_FS is not set | 812 | # CONFIG_CONFIGFS_FS is not set |
785 | 813 | CONFIG_MISC_FILESYSTEMS=y | |
786 | # | ||
787 | # Miscellaneous filesystems | ||
788 | # | ||
789 | # CONFIG_ADFS_FS is not set | 814 | # CONFIG_ADFS_FS is not set |
790 | # CONFIG_AFFS_FS is not set | 815 | # CONFIG_AFFS_FS is not set |
791 | # CONFIG_HFS_FS is not set | 816 | # CONFIG_HFS_FS is not set |
@@ -795,6 +820,7 @@ CONFIG_TMPFS=y | |||
795 | # CONFIG_EFS_FS is not set | 820 | # CONFIG_EFS_FS is not set |
796 | # CONFIG_JFFS2_FS is not set | 821 | # CONFIG_JFFS2_FS is not set |
797 | # CONFIG_CRAMFS is not set | 822 | # CONFIG_CRAMFS is not set |
823 | # CONFIG_SQUASHFS is not set | ||
798 | # CONFIG_VXFS_FS is not set | 824 | # CONFIG_VXFS_FS is not set |
799 | # CONFIG_MINIX_FS is not set | 825 | # CONFIG_MINIX_FS is not set |
800 | # CONFIG_OMFS_FS is not set | 826 | # CONFIG_OMFS_FS is not set |
@@ -845,6 +871,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
845 | # Library routines | 871 | # Library routines |
846 | # | 872 | # |
847 | CONFIG_BITREVERSE=y | 873 | CONFIG_BITREVERSE=y |
874 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
848 | # CONFIG_CRC_CCITT is not set | 875 | # CONFIG_CRC_CCITT is not set |
849 | # CONFIG_CRC16 is not set | 876 | # CONFIG_CRC16 is not set |
850 | # CONFIG_CRC_T10DIF is not set | 877 | # CONFIG_CRC_T10DIF is not set |
@@ -895,6 +922,7 @@ CONFIG_DEBUG_MUTEXES=y | |||
895 | # CONFIG_DEBUG_MEMORY_INIT is not set | 922 | # CONFIG_DEBUG_MEMORY_INIT is not set |
896 | # CONFIG_DEBUG_LIST is not set | 923 | # CONFIG_DEBUG_LIST is not set |
897 | # CONFIG_DEBUG_SG is not set | 924 | # CONFIG_DEBUG_SG is not set |
925 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
898 | # CONFIG_BOOT_PRINTK_DELAY is not set | 926 | # CONFIG_BOOT_PRINTK_DELAY is not set |
899 | # CONFIG_RCU_TORTURE_TEST is not set | 927 | # CONFIG_RCU_TORTURE_TEST is not set |
900 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 928 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -904,6 +932,8 @@ CONFIG_DEBUG_MUTEXES=y | |||
904 | # CONFIG_LATENCYTOP is not set | 932 | # CONFIG_LATENCYTOP is not set |
905 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 933 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
906 | CONFIG_HAVE_FUNCTION_TRACER=y | 934 | CONFIG_HAVE_FUNCTION_TRACER=y |
935 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
936 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
907 | 937 | ||
908 | # | 938 | # |
909 | # Tracers | 939 | # Tracers |
@@ -912,11 +942,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
912 | # CONFIG_SCHED_TRACER is not set | 942 | # CONFIG_SCHED_TRACER is not set |
913 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 943 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
914 | # CONFIG_BOOT_TRACER is not set | 944 | # CONFIG_BOOT_TRACER is not set |
945 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
915 | # CONFIG_STACK_TRACER is not set | 946 | # CONFIG_STACK_TRACER is not set |
916 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 947 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
917 | # CONFIG_SAMPLES is not set | 948 | # CONFIG_SAMPLES is not set |
918 | CONFIG_HAVE_ARCH_KGDB=y | 949 | CONFIG_HAVE_ARCH_KGDB=y |
919 | # CONFIG_KGDB is not set | 950 | # CONFIG_KGDB is not set |
951 | CONFIG_PRINT_STACK_DEPTH=64 | ||
920 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 952 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
921 | # CONFIG_DEBUG_STACK_USAGE is not set | 953 | # CONFIG_DEBUG_STACK_USAGE is not set |
922 | # CONFIG_DEBUG_PAGEALLOC is not set | 954 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -943,6 +975,7 @@ CONFIG_CRYPTO=y | |||
943 | # | 975 | # |
944 | # CONFIG_CRYPTO_FIPS is not set | 976 | # CONFIG_CRYPTO_FIPS is not set |
945 | # CONFIG_CRYPTO_MANAGER is not set | 977 | # CONFIG_CRYPTO_MANAGER is not set |
978 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
946 | # CONFIG_CRYPTO_GF128MUL is not set | 979 | # CONFIG_CRYPTO_GF128MUL is not set |
947 | # CONFIG_CRYPTO_NULL is not set | 980 | # CONFIG_CRYPTO_NULL is not set |
948 | # CONFIG_CRYPTO_CRYPTD is not set | 981 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/85xx/mpc8536_ds_defconfig b/arch/powerpc/configs/85xx/mpc8536_ds_defconfig index 256055cb6d2f..e31b6a4732ed 100644 --- a/arch/powerpc/configs/85xx/mpc8536_ds_defconfig +++ b/arch/powerpc/configs/85xx/mpc8536_ds_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:05 2008 | 4 | # Mon Jan 26 15:36:04 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -45,7 +47,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
45 | CONFIG_PPC=y | 47 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 48 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 49 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 50 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 51 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 52 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 53 | CONFIG_OF=y |
@@ -78,12 +80,12 @@ CONFIG_AUDIT=y | |||
78 | CONFIG_IKCONFIG=y | 80 | CONFIG_IKCONFIG=y |
79 | CONFIG_IKCONFIG_PROC=y | 81 | CONFIG_IKCONFIG_PROC=y |
80 | CONFIG_LOG_BUF_SHIFT=14 | 82 | CONFIG_LOG_BUF_SHIFT=14 |
81 | # CONFIG_CGROUPS is not set | ||
82 | CONFIG_GROUP_SCHED=y | 83 | CONFIG_GROUP_SCHED=y |
83 | # CONFIG_FAIR_GROUP_SCHED is not set | 84 | # CONFIG_FAIR_GROUP_SCHED is not set |
84 | # CONFIG_RT_GROUP_SCHED is not set | 85 | # CONFIG_RT_GROUP_SCHED is not set |
85 | CONFIG_USER_SCHED=y | 86 | CONFIG_USER_SCHED=y |
86 | # CONFIG_CGROUP_SCHED is not set | 87 | # CONFIG_CGROUP_SCHED is not set |
88 | # CONFIG_CGROUPS is not set | ||
87 | CONFIG_SYSFS_DEPRECATED=y | 89 | CONFIG_SYSFS_DEPRECATED=y |
88 | CONFIG_SYSFS_DEPRECATED_V2=y | 90 | CONFIG_SYSFS_DEPRECATED_V2=y |
89 | # CONFIG_RELAY is not set | 91 | # CONFIG_RELAY is not set |
@@ -96,6 +98,7 @@ CONFIG_EMBEDDED=y | |||
96 | CONFIG_SYSCTL_SYSCALL=y | 98 | CONFIG_SYSCTL_SYSCALL=y |
97 | CONFIG_KALLSYMS=y | 99 | CONFIG_KALLSYMS=y |
98 | CONFIG_KALLSYMS_ALL=y | 100 | CONFIG_KALLSYMS_ALL=y |
101 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
99 | CONFIG_KALLSYMS_EXTRA_PASS=y | 102 | CONFIG_KALLSYMS_EXTRA_PASS=y |
100 | CONFIG_HOTPLUG=y | 103 | CONFIG_HOTPLUG=y |
101 | CONFIG_PRINTK=y | 104 | CONFIG_PRINTK=y |
@@ -118,7 +121,6 @@ CONFIG_SLUB_DEBUG=y | |||
118 | CONFIG_SLUB=y | 121 | CONFIG_SLUB=y |
119 | # CONFIG_SLOB is not set | 122 | # CONFIG_SLOB is not set |
120 | # CONFIG_PROFILING is not set | 123 | # CONFIG_PROFILING is not set |
121 | # CONFIG_MARKERS is not set | ||
122 | CONFIG_HAVE_OPROFILE=y | 124 | CONFIG_HAVE_OPROFILE=y |
123 | # CONFIG_KPROBES is not set | 125 | # CONFIG_KPROBES is not set |
124 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 126 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -129,7 +131,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
129 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 131 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
130 | CONFIG_SLABINFO=y | 132 | CONFIG_SLABINFO=y |
131 | CONFIG_RT_MUTEXES=y | 133 | CONFIG_RT_MUTEXES=y |
132 | # CONFIG_TINY_SHMEM is not set | ||
133 | CONFIG_BASE_SMALL=0 | 134 | CONFIG_BASE_SMALL=0 |
134 | CONFIG_MODULES=y | 135 | CONFIG_MODULES=y |
135 | # CONFIG_MODULE_FORCE_LOAD is not set | 136 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -137,11 +138,9 @@ CONFIG_MODULE_UNLOAD=y | |||
137 | CONFIG_MODULE_FORCE_UNLOAD=y | 138 | CONFIG_MODULE_FORCE_UNLOAD=y |
138 | CONFIG_MODVERSIONS=y | 139 | CONFIG_MODVERSIONS=y |
139 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 140 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
140 | CONFIG_KMOD=y | ||
141 | CONFIG_BLOCK=y | 141 | CONFIG_BLOCK=y |
142 | CONFIG_LBD=y | 142 | CONFIG_LBD=y |
143 | # CONFIG_BLK_DEV_IO_TRACE is not set | 143 | # CONFIG_BLK_DEV_IO_TRACE is not set |
144 | # CONFIG_LSF is not set | ||
145 | # CONFIG_BLK_DEV_BSG is not set | 144 | # CONFIG_BLK_DEV_BSG is not set |
146 | # CONFIG_BLK_DEV_INTEGRITY is not set | 145 | # CONFIG_BLK_DEV_INTEGRITY is not set |
147 | 146 | ||
@@ -158,6 +157,10 @@ CONFIG_DEFAULT_CFQ=y | |||
158 | # CONFIG_DEFAULT_NOOP is not set | 157 | # CONFIG_DEFAULT_NOOP is not set |
159 | CONFIG_DEFAULT_IOSCHED="cfq" | 158 | CONFIG_DEFAULT_IOSCHED="cfq" |
160 | CONFIG_CLASSIC_RCU=y | 159 | CONFIG_CLASSIC_RCU=y |
160 | # CONFIG_TREE_RCU is not set | ||
161 | # CONFIG_PREEMPT_RCU is not set | ||
162 | # CONFIG_TREE_RCU_TRACE is not set | ||
163 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
161 | # CONFIG_FREEZER is not set | 164 | # CONFIG_FREEZER is not set |
162 | 165 | ||
163 | # | 166 | # |
@@ -197,6 +200,7 @@ CONFIG_MPIC=y | |||
197 | # CONFIG_CPM2 is not set | 200 | # CONFIG_CPM2 is not set |
198 | # CONFIG_FSL_ULI1575 is not set | 201 | # CONFIG_FSL_ULI1575 is not set |
199 | # CONFIG_MPC8xxx_GPIO is not set | 202 | # CONFIG_MPC8xxx_GPIO is not set |
203 | # CONFIG_SIMPLE_GPIO is not set | ||
200 | 204 | ||
201 | # | 205 | # |
202 | # Kernel options | 206 | # Kernel options |
@@ -235,12 +239,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
235 | CONFIG_PAGEFLAGS_EXTENDED=y | 239 | CONFIG_PAGEFLAGS_EXTENDED=y |
236 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 240 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
237 | CONFIG_MIGRATION=y | 241 | CONFIG_MIGRATION=y |
238 | # CONFIG_RESOURCES_64BIT is not set | ||
239 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 242 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
240 | CONFIG_ZONE_DMA_FLAG=1 | 243 | CONFIG_ZONE_DMA_FLAG=1 |
241 | CONFIG_BOUNCE=y | 244 | CONFIG_BOUNCE=y |
242 | CONFIG_VIRT_TO_BUS=y | 245 | CONFIG_VIRT_TO_BUS=y |
243 | CONFIG_UNEVICTABLE_LRU=y | 246 | CONFIG_UNEVICTABLE_LRU=y |
247 | CONFIG_PPC_4K_PAGES=y | ||
248 | # CONFIG_PPC_16K_PAGES is not set | ||
249 | # CONFIG_PPC_64K_PAGES is not set | ||
244 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
245 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
246 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
@@ -265,6 +271,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
265 | # CONFIG_PCI_MSI is not set | 271 | # CONFIG_PCI_MSI is not set |
266 | # CONFIG_PCI_LEGACY is not set | 272 | # CONFIG_PCI_LEGACY is not set |
267 | # CONFIG_PCI_DEBUG is not set | 273 | # CONFIG_PCI_DEBUG is not set |
274 | # CONFIG_PCI_STUB is not set | ||
268 | # CONFIG_PCCARD is not set | 275 | # CONFIG_PCCARD is not set |
269 | # CONFIG_HOTPLUG_PCI is not set | 276 | # CONFIG_HOTPLUG_PCI is not set |
270 | # CONFIG_HAS_RAPIDIO is not set | 277 | # CONFIG_HAS_RAPIDIO is not set |
@@ -288,6 +295,7 @@ CONFIG_NET=y | |||
288 | # | 295 | # |
289 | # Networking options | 296 | # Networking options |
290 | # | 297 | # |
298 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
291 | CONFIG_PACKET=y | 299 | CONFIG_PACKET=y |
292 | # CONFIG_PACKET_MMAP is not set | 300 | # CONFIG_PACKET_MMAP is not set |
293 | CONFIG_UNIX=y | 301 | CONFIG_UNIX=y |
@@ -376,6 +384,7 @@ CONFIG_SCTP_HMAC_MD5=y | |||
376 | # CONFIG_ECONET is not set | 384 | # CONFIG_ECONET is not set |
377 | # CONFIG_WAN_ROUTER is not set | 385 | # CONFIG_WAN_ROUTER is not set |
378 | # CONFIG_NET_SCHED is not set | 386 | # CONFIG_NET_SCHED is not set |
387 | # CONFIG_DCB is not set | ||
379 | 388 | ||
380 | # | 389 | # |
381 | # Network testing | 390 | # Network testing |
@@ -392,8 +401,9 @@ CONFIG_WIRELESS=y | |||
392 | # CONFIG_CFG80211 is not set | 401 | # CONFIG_CFG80211 is not set |
393 | CONFIG_WIRELESS_OLD_REGULATORY=y | 402 | CONFIG_WIRELESS_OLD_REGULATORY=y |
394 | # CONFIG_WIRELESS_EXT is not set | 403 | # CONFIG_WIRELESS_EXT is not set |
404 | # CONFIG_LIB80211 is not set | ||
395 | # CONFIG_MAC80211 is not set | 405 | # CONFIG_MAC80211 is not set |
396 | # CONFIG_IEEE80211 is not set | 406 | # CONFIG_WIMAX is not set |
397 | # CONFIG_RFKILL is not set | 407 | # CONFIG_RFKILL is not set |
398 | # CONFIG_NET_9P is not set | 408 | # CONFIG_NET_9P is not set |
399 | 409 | ||
@@ -442,8 +452,10 @@ CONFIG_MISC_DEVICES=y | |||
442 | # CONFIG_EEPROM_93CX6 is not set | 452 | # CONFIG_EEPROM_93CX6 is not set |
443 | # CONFIG_SGI_IOC4 is not set | 453 | # CONFIG_SGI_IOC4 is not set |
444 | # CONFIG_TIFM_CORE is not set | 454 | # CONFIG_TIFM_CORE is not set |
455 | # CONFIG_ICS932S401 is not set | ||
445 | # CONFIG_ENCLOSURE_SERVICES is not set | 456 | # CONFIG_ENCLOSURE_SERVICES is not set |
446 | # CONFIG_HP_ILO is not set | 457 | # CONFIG_HP_ILO is not set |
458 | # CONFIG_C2PORT is not set | ||
447 | CONFIG_HAVE_IDE=y | 459 | CONFIG_HAVE_IDE=y |
448 | # CONFIG_IDE is not set | 460 | # CONFIG_IDE is not set |
449 | 461 | ||
@@ -487,6 +499,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
487 | # CONFIG_SCSI_SRP_ATTRS is not set | 499 | # CONFIG_SCSI_SRP_ATTRS is not set |
488 | CONFIG_SCSI_LOWLEVEL=y | 500 | CONFIG_SCSI_LOWLEVEL=y |
489 | # CONFIG_ISCSI_TCP is not set | 501 | # CONFIG_ISCSI_TCP is not set |
502 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
490 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 503 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
491 | # CONFIG_SCSI_3W_9XXX is not set | 504 | # CONFIG_SCSI_3W_9XXX is not set |
492 | # CONFIG_SCSI_ACARD is not set | 505 | # CONFIG_SCSI_ACARD is not set |
@@ -503,6 +516,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
503 | # CONFIG_MEGARAID_SAS is not set | 516 | # CONFIG_MEGARAID_SAS is not set |
504 | # CONFIG_SCSI_HPTIOP is not set | 517 | # CONFIG_SCSI_HPTIOP is not set |
505 | # CONFIG_SCSI_BUSLOGIC is not set | 518 | # CONFIG_SCSI_BUSLOGIC is not set |
519 | # CONFIG_LIBFC is not set | ||
520 | # CONFIG_FCOE is not set | ||
506 | # CONFIG_SCSI_DMX3191D is not set | 521 | # CONFIG_SCSI_DMX3191D is not set |
507 | # CONFIG_SCSI_EATA is not set | 522 | # CONFIG_SCSI_EATA is not set |
508 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 523 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -622,6 +637,9 @@ CONFIG_VITESSE_PHY=y | |||
622 | # CONFIG_BROADCOM_PHY is not set | 637 | # CONFIG_BROADCOM_PHY is not set |
623 | # CONFIG_ICPLUS_PHY is not set | 638 | # CONFIG_ICPLUS_PHY is not set |
624 | # CONFIG_REALTEK_PHY is not set | 639 | # CONFIG_REALTEK_PHY is not set |
640 | # CONFIG_NATIONAL_PHY is not set | ||
641 | # CONFIG_STE10XP is not set | ||
642 | # CONFIG_LSI_ET1011C_PHY is not set | ||
625 | # CONFIG_FIXED_PHY is not set | 643 | # CONFIG_FIXED_PHY is not set |
626 | # CONFIG_MDIO_BITBANG is not set | 644 | # CONFIG_MDIO_BITBANG is not set |
627 | CONFIG_NET_ETHERNET=y | 645 | CONFIG_NET_ETHERNET=y |
@@ -668,6 +686,7 @@ CONFIG_GIANFAR=y | |||
668 | # CONFIG_JME is not set | 686 | # CONFIG_JME is not set |
669 | CONFIG_NETDEV_10000=y | 687 | CONFIG_NETDEV_10000=y |
670 | # CONFIG_CHELSIO_T1 is not set | 688 | # CONFIG_CHELSIO_T1 is not set |
689 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
671 | # CONFIG_CHELSIO_T3 is not set | 690 | # CONFIG_CHELSIO_T3 is not set |
672 | # CONFIG_ENIC is not set | 691 | # CONFIG_ENIC is not set |
673 | # CONFIG_IXGBE is not set | 692 | # CONFIG_IXGBE is not set |
@@ -692,6 +711,10 @@ CONFIG_NETDEV_10000=y | |||
692 | # CONFIG_IWLWIFI_LEDS is not set | 711 | # CONFIG_IWLWIFI_LEDS is not set |
693 | 712 | ||
694 | # | 713 | # |
714 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
715 | # | ||
716 | |||
717 | # | ||
695 | # USB Network Adapters | 718 | # USB Network Adapters |
696 | # | 719 | # |
697 | # CONFIG_USB_CATC is not set | 720 | # CONFIG_USB_CATC is not set |
@@ -783,8 +806,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
783 | # CONFIG_SERIAL_JSM is not set | 806 | # CONFIG_SERIAL_JSM is not set |
784 | # CONFIG_SERIAL_OF_PLATFORM is not set | 807 | # CONFIG_SERIAL_OF_PLATFORM is not set |
785 | CONFIG_UNIX98_PTYS=y | 808 | CONFIG_UNIX98_PTYS=y |
809 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
786 | CONFIG_LEGACY_PTYS=y | 810 | CONFIG_LEGACY_PTYS=y |
787 | CONFIG_LEGACY_PTY_COUNT=256 | 811 | CONFIG_LEGACY_PTY_COUNT=256 |
812 | # CONFIG_HVC_UDBG is not set | ||
788 | # CONFIG_IPMI_HANDLER is not set | 813 | # CONFIG_IPMI_HANDLER is not set |
789 | CONFIG_HW_RANDOM=y | 814 | CONFIG_HW_RANDOM=y |
790 | # CONFIG_NVRAM is not set | 815 | # CONFIG_NVRAM is not set |
@@ -869,11 +894,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
869 | # CONFIG_HWMON is not set | 894 | # CONFIG_HWMON is not set |
870 | CONFIG_THERMAL=y | 895 | CONFIG_THERMAL=y |
871 | # CONFIG_WATCHDOG is not set | 896 | # CONFIG_WATCHDOG is not set |
897 | CONFIG_SSB_POSSIBLE=y | ||
872 | 898 | ||
873 | # | 899 | # |
874 | # Sonics Silicon Backplane | 900 | # Sonics Silicon Backplane |
875 | # | 901 | # |
876 | CONFIG_SSB_POSSIBLE=y | ||
877 | # CONFIG_SSB is not set | 902 | # CONFIG_SSB is not set |
878 | 903 | ||
879 | # | 904 | # |
@@ -882,18 +907,13 @@ CONFIG_SSB_POSSIBLE=y | |||
882 | # CONFIG_MFD_CORE is not set | 907 | # CONFIG_MFD_CORE is not set |
883 | # CONFIG_MFD_SM501 is not set | 908 | # CONFIG_MFD_SM501 is not set |
884 | # CONFIG_HTC_PASIC3 is not set | 909 | # CONFIG_HTC_PASIC3 is not set |
910 | # CONFIG_TWL4030_CORE is not set | ||
885 | # CONFIG_MFD_TMIO is not set | 911 | # CONFIG_MFD_TMIO is not set |
886 | # CONFIG_PMIC_DA903X is not set | 912 | # CONFIG_PMIC_DA903X is not set |
887 | # CONFIG_MFD_WM8400 is not set | 913 | # CONFIG_MFD_WM8400 is not set |
888 | # CONFIG_MFD_WM8350_I2C is not set | 914 | # CONFIG_MFD_WM8350_I2C is not set |
889 | 915 | # CONFIG_MFD_PCF50633 is not set | |
890 | # | ||
891 | # Voltage and Current regulators | ||
892 | # | ||
893 | # CONFIG_REGULATOR is not set | 916 | # CONFIG_REGULATOR is not set |
894 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
895 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
896 | # CONFIG_REGULATOR_BQ24022 is not set | ||
897 | 917 | ||
898 | # | 918 | # |
899 | # Multimedia devices | 919 | # Multimedia devices |
@@ -920,6 +940,7 @@ CONFIG_MEDIA_TUNER_TEA5767=m | |||
920 | CONFIG_MEDIA_TUNER_MT20XX=m | 940 | CONFIG_MEDIA_TUNER_MT20XX=m |
921 | CONFIG_MEDIA_TUNER_XC2028=m | 941 | CONFIG_MEDIA_TUNER_XC2028=m |
922 | CONFIG_MEDIA_TUNER_XC5000=m | 942 | CONFIG_MEDIA_TUNER_XC5000=m |
943 | # CONFIG_DVB_DYNAMIC_MINORS is not set | ||
923 | CONFIG_DVB_CAPTURE_DRIVERS=y | 944 | CONFIG_DVB_CAPTURE_DRIVERS=y |
924 | 945 | ||
925 | # | 946 | # |
@@ -965,6 +986,12 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
965 | # CONFIG_DVB_FE_CUSTOMISE is not set | 986 | # CONFIG_DVB_FE_CUSTOMISE is not set |
966 | 987 | ||
967 | # | 988 | # |
989 | # Multistandard (satellite) frontends | ||
990 | # | ||
991 | # CONFIG_DVB_STB0899 is not set | ||
992 | # CONFIG_DVB_STB6100 is not set | ||
993 | |||
994 | # | ||
968 | # DVB-S (satellite) frontends | 995 | # DVB-S (satellite) frontends |
969 | # | 996 | # |
970 | # CONFIG_DVB_CX24110 is not set | 997 | # CONFIG_DVB_CX24110 is not set |
@@ -976,8 +1003,10 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
976 | # CONFIG_DVB_STV0299 is not set | 1003 | # CONFIG_DVB_STV0299 is not set |
977 | # CONFIG_DVB_TDA8083 is not set | 1004 | # CONFIG_DVB_TDA8083 is not set |
978 | # CONFIG_DVB_TDA10086 is not set | 1005 | # CONFIG_DVB_TDA10086 is not set |
1006 | # CONFIG_DVB_TDA8261 is not set | ||
979 | # CONFIG_DVB_VES1X93 is not set | 1007 | # CONFIG_DVB_VES1X93 is not set |
980 | # CONFIG_DVB_TUNER_ITD1000 is not set | 1008 | # CONFIG_DVB_TUNER_ITD1000 is not set |
1009 | # CONFIG_DVB_TUNER_CX24113 is not set | ||
981 | # CONFIG_DVB_TDA826X is not set | 1010 | # CONFIG_DVB_TDA826X is not set |
982 | # CONFIG_DVB_TUA6100 is not set | 1011 | # CONFIG_DVB_TUA6100 is not set |
983 | # CONFIG_DVB_CX24116 is not set | 1012 | # CONFIG_DVB_CX24116 is not set |
@@ -1018,11 +1047,17 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
1018 | # CONFIG_DVB_OR51132 is not set | 1047 | # CONFIG_DVB_OR51132 is not set |
1019 | # CONFIG_DVB_BCM3510 is not set | 1048 | # CONFIG_DVB_BCM3510 is not set |
1020 | # CONFIG_DVB_LGDT330X is not set | 1049 | # CONFIG_DVB_LGDT330X is not set |
1050 | # CONFIG_DVB_LGDT3304 is not set | ||
1021 | # CONFIG_DVB_S5H1409 is not set | 1051 | # CONFIG_DVB_S5H1409 is not set |
1022 | # CONFIG_DVB_AU8522 is not set | 1052 | # CONFIG_DVB_AU8522 is not set |
1023 | # CONFIG_DVB_S5H1411 is not set | 1053 | # CONFIG_DVB_S5H1411 is not set |
1024 | 1054 | ||
1025 | # | 1055 | # |
1056 | # ISDB-T (terrestrial) frontends | ||
1057 | # | ||
1058 | # CONFIG_DVB_S921 is not set | ||
1059 | |||
1060 | # | ||
1026 | # Digital terrestrial only tuners/PLL | 1061 | # Digital terrestrial only tuners/PLL |
1027 | # | 1062 | # |
1028 | # CONFIG_DVB_PLL is not set | 1063 | # CONFIG_DVB_PLL is not set |
@@ -1073,6 +1108,7 @@ CONFIG_SND_PCM=y | |||
1073 | # CONFIG_SND_SEQUENCER is not set | 1108 | # CONFIG_SND_SEQUENCER is not set |
1074 | # CONFIG_SND_MIXER_OSS is not set | 1109 | # CONFIG_SND_MIXER_OSS is not set |
1075 | # CONFIG_SND_PCM_OSS is not set | 1110 | # CONFIG_SND_PCM_OSS is not set |
1111 | # CONFIG_SND_HRTIMER is not set | ||
1076 | # CONFIG_SND_DYNAMIC_MINORS is not set | 1112 | # CONFIG_SND_DYNAMIC_MINORS is not set |
1077 | CONFIG_SND_SUPPORT_OLD_API=y | 1113 | CONFIG_SND_SUPPORT_OLD_API=y |
1078 | CONFIG_SND_VERBOSE_PROCFS=y | 1114 | CONFIG_SND_VERBOSE_PROCFS=y |
@@ -1175,11 +1211,9 @@ CONFIG_HID_COMPAT=y | |||
1175 | CONFIG_HID_A4TECH=y | 1211 | CONFIG_HID_A4TECH=y |
1176 | CONFIG_HID_APPLE=y | 1212 | CONFIG_HID_APPLE=y |
1177 | CONFIG_HID_BELKIN=y | 1213 | CONFIG_HID_BELKIN=y |
1178 | CONFIG_HID_BRIGHT=y | ||
1179 | CONFIG_HID_CHERRY=y | 1214 | CONFIG_HID_CHERRY=y |
1180 | CONFIG_HID_CHICONY=y | 1215 | CONFIG_HID_CHICONY=y |
1181 | CONFIG_HID_CYPRESS=y | 1216 | CONFIG_HID_CYPRESS=y |
1182 | CONFIG_HID_DELL=y | ||
1183 | CONFIG_HID_EZKEY=y | 1217 | CONFIG_HID_EZKEY=y |
1184 | CONFIG_HID_GYRATION=y | 1218 | CONFIG_HID_GYRATION=y |
1185 | CONFIG_HID_LOGITECH=y | 1219 | CONFIG_HID_LOGITECH=y |
@@ -1187,12 +1221,15 @@ CONFIG_HID_LOGITECH=y | |||
1187 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1221 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
1188 | CONFIG_HID_MICROSOFT=y | 1222 | CONFIG_HID_MICROSOFT=y |
1189 | CONFIG_HID_MONTEREY=y | 1223 | CONFIG_HID_MONTEREY=y |
1224 | # CONFIG_HID_NTRIG is not set | ||
1190 | CONFIG_HID_PANTHERLORD=y | 1225 | CONFIG_HID_PANTHERLORD=y |
1191 | # CONFIG_PANTHERLORD_FF is not set | 1226 | # CONFIG_PANTHERLORD_FF is not set |
1192 | CONFIG_HID_PETALYNX=y | 1227 | CONFIG_HID_PETALYNX=y |
1193 | CONFIG_HID_SAMSUNG=y | 1228 | CONFIG_HID_SAMSUNG=y |
1194 | CONFIG_HID_SONY=y | 1229 | CONFIG_HID_SONY=y |
1195 | CONFIG_HID_SUNPLUS=y | 1230 | CONFIG_HID_SUNPLUS=y |
1231 | # CONFIG_GREENASIA_FF is not set | ||
1232 | # CONFIG_HID_TOPSEED is not set | ||
1196 | CONFIG_THRUSTMASTER_FF=m | 1233 | CONFIG_THRUSTMASTER_FF=m |
1197 | CONFIG_ZEROPLUS_FF=m | 1234 | CONFIG_ZEROPLUS_FF=m |
1198 | CONFIG_USB_SUPPORT=y | 1235 | CONFIG_USB_SUPPORT=y |
@@ -1225,6 +1262,7 @@ CONFIG_USB_EHCI_ROOT_HUB_TT=y | |||
1225 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1262 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1226 | CONFIG_USB_EHCI_FSL=y | 1263 | CONFIG_USB_EHCI_FSL=y |
1227 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1264 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1265 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1228 | # CONFIG_USB_ISP116X_HCD is not set | 1266 | # CONFIG_USB_ISP116X_HCD is not set |
1229 | # CONFIG_USB_ISP1760_HCD is not set | 1267 | # CONFIG_USB_ISP1760_HCD is not set |
1230 | CONFIG_USB_OHCI_HCD=y | 1268 | CONFIG_USB_OHCI_HCD=y |
@@ -1250,18 +1288,17 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
1250 | # CONFIG_USB_TMC is not set | 1288 | # CONFIG_USB_TMC is not set |
1251 | 1289 | ||
1252 | # | 1290 | # |
1253 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1291 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1254 | # | 1292 | # |
1255 | 1293 | ||
1256 | # | 1294 | # |
1257 | # may also be needed; see USB_STORAGE Help for more information | 1295 | # see USB_STORAGE Help for more information |
1258 | # | 1296 | # |
1259 | CONFIG_USB_STORAGE=y | 1297 | CONFIG_USB_STORAGE=y |
1260 | # CONFIG_USB_STORAGE_DEBUG is not set | 1298 | # CONFIG_USB_STORAGE_DEBUG is not set |
1261 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1299 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1262 | # CONFIG_USB_STORAGE_FREECOM is not set | 1300 | # CONFIG_USB_STORAGE_FREECOM is not set |
1263 | # CONFIG_USB_STORAGE_ISD200 is not set | 1301 | # CONFIG_USB_STORAGE_ISD200 is not set |
1264 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1265 | # CONFIG_USB_STORAGE_USBAT is not set | 1302 | # CONFIG_USB_STORAGE_USBAT is not set |
1266 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1303 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1267 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1304 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1309,6 +1346,10 @@ CONFIG_USB_STORAGE=y | |||
1309 | # CONFIG_USB_ISIGHTFW is not set | 1346 | # CONFIG_USB_ISIGHTFW is not set |
1310 | # CONFIG_USB_VST is not set | 1347 | # CONFIG_USB_VST is not set |
1311 | # CONFIG_USB_GADGET is not set | 1348 | # CONFIG_USB_GADGET is not set |
1349 | |||
1350 | # | ||
1351 | # OTG and related infrastructure | ||
1352 | # | ||
1312 | # CONFIG_UWB is not set | 1353 | # CONFIG_UWB is not set |
1313 | # CONFIG_MMC is not set | 1354 | # CONFIG_MMC is not set |
1314 | # CONFIG_MEMSTICK is not set | 1355 | # CONFIG_MEMSTICK is not set |
@@ -1346,6 +1387,7 @@ CONFIG_RTC_INTF_DEV=y | |||
1346 | # CONFIG_RTC_DRV_M41T80 is not set | 1387 | # CONFIG_RTC_DRV_M41T80 is not set |
1347 | # CONFIG_RTC_DRV_S35390A is not set | 1388 | # CONFIG_RTC_DRV_S35390A is not set |
1348 | # CONFIG_RTC_DRV_FM3130 is not set | 1389 | # CONFIG_RTC_DRV_FM3130 is not set |
1390 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1349 | 1391 | ||
1350 | # | 1392 | # |
1351 | # SPI RTC drivers | 1393 | # SPI RTC drivers |
@@ -1405,7 +1447,9 @@ CONFIG_FS_MBCACHE=y | |||
1405 | # CONFIG_FS_POSIX_ACL is not set | 1447 | # CONFIG_FS_POSIX_ACL is not set |
1406 | CONFIG_FILE_LOCKING=y | 1448 | CONFIG_FILE_LOCKING=y |
1407 | # CONFIG_XFS_FS is not set | 1449 | # CONFIG_XFS_FS is not set |
1450 | # CONFIG_GFS2_FS is not set | ||
1408 | # CONFIG_OCFS2_FS is not set | 1451 | # CONFIG_OCFS2_FS is not set |
1452 | # CONFIG_BTRFS_FS is not set | ||
1409 | CONFIG_DNOTIFY=y | 1453 | CONFIG_DNOTIFY=y |
1410 | CONFIG_INOTIFY=y | 1454 | CONFIG_INOTIFY=y |
1411 | CONFIG_INOTIFY_USER=y | 1455 | CONFIG_INOTIFY_USER=y |
@@ -1447,10 +1491,7 @@ CONFIG_TMPFS=y | |||
1447 | # CONFIG_TMPFS_POSIX_ACL is not set | 1491 | # CONFIG_TMPFS_POSIX_ACL is not set |
1448 | # CONFIG_HUGETLB_PAGE is not set | 1492 | # CONFIG_HUGETLB_PAGE is not set |
1449 | # CONFIG_CONFIGFS_FS is not set | 1493 | # CONFIG_CONFIGFS_FS is not set |
1450 | 1494 | CONFIG_MISC_FILESYSTEMS=y | |
1451 | # | ||
1452 | # Miscellaneous filesystems | ||
1453 | # | ||
1454 | CONFIG_ADFS_FS=m | 1495 | CONFIG_ADFS_FS=m |
1455 | # CONFIG_ADFS_FS_RW is not set | 1496 | # CONFIG_ADFS_FS_RW is not set |
1456 | CONFIG_AFFS_FS=m | 1497 | CONFIG_AFFS_FS=m |
@@ -1461,6 +1502,7 @@ CONFIG_BEFS_FS=m | |||
1461 | CONFIG_BFS_FS=m | 1502 | CONFIG_BFS_FS=m |
1462 | CONFIG_EFS_FS=m | 1503 | CONFIG_EFS_FS=m |
1463 | CONFIG_CRAMFS=y | 1504 | CONFIG_CRAMFS=y |
1505 | # CONFIG_SQUASHFS is not set | ||
1464 | CONFIG_VXFS_FS=m | 1506 | CONFIG_VXFS_FS=m |
1465 | # CONFIG_MINIX_FS is not set | 1507 | # CONFIG_MINIX_FS is not set |
1466 | # CONFIG_OMFS_FS is not set | 1508 | # CONFIG_OMFS_FS is not set |
@@ -1562,6 +1604,7 @@ CONFIG_NLS_UTF8=m | |||
1562 | # Library routines | 1604 | # Library routines |
1563 | # | 1605 | # |
1564 | CONFIG_BITREVERSE=y | 1606 | CONFIG_BITREVERSE=y |
1607 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1565 | # CONFIG_CRC_CCITT is not set | 1608 | # CONFIG_CRC_CCITT is not set |
1566 | # CONFIG_CRC16 is not set | 1609 | # CONFIG_CRC16 is not set |
1567 | CONFIG_CRC_T10DIF=y | 1610 | CONFIG_CRC_T10DIF=y |
@@ -1613,6 +1656,7 @@ CONFIG_DEBUG_INFO=y | |||
1613 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1656 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1614 | # CONFIG_DEBUG_LIST is not set | 1657 | # CONFIG_DEBUG_LIST is not set |
1615 | # CONFIG_DEBUG_SG is not set | 1658 | # CONFIG_DEBUG_SG is not set |
1659 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1616 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1660 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1617 | # CONFIG_RCU_TORTURE_TEST is not set | 1661 | # CONFIG_RCU_TORTURE_TEST is not set |
1618 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1662 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1622,6 +1666,8 @@ CONFIG_DEBUG_INFO=y | |||
1622 | # CONFIG_LATENCYTOP is not set | 1666 | # CONFIG_LATENCYTOP is not set |
1623 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1667 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1624 | CONFIG_HAVE_FUNCTION_TRACER=y | 1668 | CONFIG_HAVE_FUNCTION_TRACER=y |
1669 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1670 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1625 | 1671 | ||
1626 | # | 1672 | # |
1627 | # Tracers | 1673 | # Tracers |
@@ -1630,11 +1676,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1630 | # CONFIG_SCHED_TRACER is not set | 1676 | # CONFIG_SCHED_TRACER is not set |
1631 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1677 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1632 | # CONFIG_BOOT_TRACER is not set | 1678 | # CONFIG_BOOT_TRACER is not set |
1679 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1633 | # CONFIG_STACK_TRACER is not set | 1680 | # CONFIG_STACK_TRACER is not set |
1634 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1681 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1635 | # CONFIG_SAMPLES is not set | 1682 | # CONFIG_SAMPLES is not set |
1636 | CONFIG_HAVE_ARCH_KGDB=y | 1683 | CONFIG_HAVE_ARCH_KGDB=y |
1637 | # CONFIG_KGDB is not set | 1684 | # CONFIG_KGDB is not set |
1685 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1638 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1686 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1639 | # CONFIG_DEBUG_STACK_USAGE is not set | 1687 | # CONFIG_DEBUG_STACK_USAGE is not set |
1640 | # CONFIG_DEBUG_PAGEALLOC is not set | 1688 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1661,11 +1709,16 @@ CONFIG_CRYPTO=y | |||
1661 | # | 1709 | # |
1662 | # CONFIG_CRYPTO_FIPS is not set | 1710 | # CONFIG_CRYPTO_FIPS is not set |
1663 | CONFIG_CRYPTO_ALGAPI=y | 1711 | CONFIG_CRYPTO_ALGAPI=y |
1712 | CONFIG_CRYPTO_ALGAPI2=y | ||
1664 | CONFIG_CRYPTO_AEAD=y | 1713 | CONFIG_CRYPTO_AEAD=y |
1714 | CONFIG_CRYPTO_AEAD2=y | ||
1665 | CONFIG_CRYPTO_BLKCIPHER=y | 1715 | CONFIG_CRYPTO_BLKCIPHER=y |
1716 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1666 | CONFIG_CRYPTO_HASH=y | 1717 | CONFIG_CRYPTO_HASH=y |
1667 | CONFIG_CRYPTO_RNG=y | 1718 | CONFIG_CRYPTO_HASH2=y |
1719 | CONFIG_CRYPTO_RNG2=y | ||
1668 | CONFIG_CRYPTO_MANAGER=y | 1720 | CONFIG_CRYPTO_MANAGER=y |
1721 | CONFIG_CRYPTO_MANAGER2=y | ||
1669 | # CONFIG_CRYPTO_GF128MUL is not set | 1722 | # CONFIG_CRYPTO_GF128MUL is not set |
1670 | # CONFIG_CRYPTO_NULL is not set | 1723 | # CONFIG_CRYPTO_NULL is not set |
1671 | # CONFIG_CRYPTO_CRYPTD is not set | 1724 | # CONFIG_CRYPTO_CRYPTD is not set |
@@ -1699,7 +1752,7 @@ CONFIG_CRYPTO_HMAC=y | |||
1699 | # | 1752 | # |
1700 | # Digest | 1753 | # Digest |
1701 | # | 1754 | # |
1702 | # CONFIG_CRYPTO_CRC32C is not set | 1755 | CONFIG_CRYPTO_CRC32C=m |
1703 | # CONFIG_CRYPTO_MD4 is not set | 1756 | # CONFIG_CRYPTO_MD4 is not set |
1704 | CONFIG_CRYPTO_MD5=y | 1757 | CONFIG_CRYPTO_MD5=y |
1705 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1758 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
diff --git a/arch/powerpc/configs/85xx/mpc8540_ads_defconfig b/arch/powerpc/configs/85xx/mpc8540_ads_defconfig index d790cbab80b8..905e8a3388d6 100644 --- a/arch/powerpc/configs/85xx/mpc8540_ads_defconfig +++ b/arch/powerpc/configs/85xx/mpc8540_ads_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:06 2008 | 4 | # Mon Jan 26 15:36:05 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -45,7 +47,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
45 | CONFIG_PPC=y | 47 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 48 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 49 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 50 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 51 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 52 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 53 | CONFIG_OF=y |
@@ -75,12 +77,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 78 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 79 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 80 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 81 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 82 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 83 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 84 | # CONFIG_CGROUP_SCHED is not set |
85 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 86 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 87 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 88 | # CONFIG_RELAY is not set |
@@ -114,7 +116,6 @@ CONFIG_SLUB_DEBUG=y | |||
114 | CONFIG_SLUB=y | 116 | CONFIG_SLUB=y |
115 | # CONFIG_SLOB is not set | 117 | # CONFIG_SLOB is not set |
116 | # CONFIG_PROFILING is not set | 118 | # CONFIG_PROFILING is not set |
117 | # CONFIG_MARKERS is not set | ||
118 | CONFIG_HAVE_OPROFILE=y | 119 | CONFIG_HAVE_OPROFILE=y |
119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
120 | CONFIG_HAVE_IOREMAP_PROT=y | 121 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -124,13 +125,11 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
125 | CONFIG_SLABINFO=y | 126 | CONFIG_SLABINFO=y |
126 | CONFIG_RT_MUTEXES=y | 127 | CONFIG_RT_MUTEXES=y |
127 | # CONFIG_TINY_SHMEM is not set | ||
128 | CONFIG_BASE_SMALL=0 | 128 | CONFIG_BASE_SMALL=0 |
129 | # CONFIG_MODULES is not set | 129 | # CONFIG_MODULES is not set |
130 | CONFIG_BLOCK=y | 130 | CONFIG_BLOCK=y |
131 | # CONFIG_LBD is not set | 131 | # CONFIG_LBD is not set |
132 | # CONFIG_BLK_DEV_IO_TRACE is not set | 132 | # CONFIG_BLK_DEV_IO_TRACE is not set |
133 | # CONFIG_LSF is not set | ||
134 | # CONFIG_BLK_DEV_BSG is not set | 133 | # CONFIG_BLK_DEV_BSG is not set |
135 | # CONFIG_BLK_DEV_INTEGRITY is not set | 134 | # CONFIG_BLK_DEV_INTEGRITY is not set |
136 | 135 | ||
@@ -147,6 +146,10 @@ CONFIG_DEFAULT_AS=y | |||
147 | # CONFIG_DEFAULT_NOOP is not set | 146 | # CONFIG_DEFAULT_NOOP is not set |
148 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 147 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
149 | CONFIG_CLASSIC_RCU=y | 148 | CONFIG_CLASSIC_RCU=y |
149 | # CONFIG_TREE_RCU is not set | ||
150 | # CONFIG_PREEMPT_RCU is not set | ||
151 | # CONFIG_TREE_RCU_TRACE is not set | ||
152 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
150 | # CONFIG_FREEZER is not set | 153 | # CONFIG_FREEZER is not set |
151 | 154 | ||
152 | # | 155 | # |
@@ -186,6 +189,7 @@ CONFIG_MPIC=y | |||
186 | # CONFIG_CPM2 is not set | 189 | # CONFIG_CPM2 is not set |
187 | # CONFIG_FSL_ULI1575 is not set | 190 | # CONFIG_FSL_ULI1575 is not set |
188 | # CONFIG_MPC8xxx_GPIO is not set | 191 | # CONFIG_MPC8xxx_GPIO is not set |
192 | # CONFIG_SIMPLE_GPIO is not set | ||
189 | 193 | ||
190 | # | 194 | # |
191 | # Kernel options | 195 | # Kernel options |
@@ -224,12 +228,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
224 | CONFIG_PAGEFLAGS_EXTENDED=y | 228 | CONFIG_PAGEFLAGS_EXTENDED=y |
225 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 229 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
226 | CONFIG_MIGRATION=y | 230 | CONFIG_MIGRATION=y |
227 | # CONFIG_RESOURCES_64BIT is not set | ||
228 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 231 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
229 | CONFIG_ZONE_DMA_FLAG=1 | 232 | CONFIG_ZONE_DMA_FLAG=1 |
230 | CONFIG_BOUNCE=y | 233 | CONFIG_BOUNCE=y |
231 | CONFIG_VIRT_TO_BUS=y | 234 | CONFIG_VIRT_TO_BUS=y |
232 | CONFIG_UNEVICTABLE_LRU=y | 235 | CONFIG_UNEVICTABLE_LRU=y |
236 | CONFIG_PPC_4K_PAGES=y | ||
237 | # CONFIG_PPC_16K_PAGES is not set | ||
238 | # CONFIG_PPC_64K_PAGES is not set | ||
233 | CONFIG_FORCE_MAX_ZONEORDER=11 | 239 | CONFIG_FORCE_MAX_ZONEORDER=11 |
234 | CONFIG_PROC_DEVICETREE=y | 240 | CONFIG_PROC_DEVICETREE=y |
235 | # CONFIG_CMDLINE_BOOL is not set | 241 | # CONFIG_CMDLINE_BOOL is not set |
@@ -270,6 +276,7 @@ CONFIG_NET=y | |||
270 | # | 276 | # |
271 | # Networking options | 277 | # Networking options |
272 | # | 278 | # |
279 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
273 | CONFIG_PACKET=y | 280 | CONFIG_PACKET=y |
274 | # CONFIG_PACKET_MMAP is not set | 281 | # CONFIG_PACKET_MMAP is not set |
275 | CONFIG_UNIX=y | 282 | CONFIG_UNIX=y |
@@ -326,6 +333,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
326 | # CONFIG_ECONET is not set | 333 | # CONFIG_ECONET is not set |
327 | # CONFIG_WAN_ROUTER is not set | 334 | # CONFIG_WAN_ROUTER is not set |
328 | # CONFIG_NET_SCHED is not set | 335 | # CONFIG_NET_SCHED is not set |
336 | # CONFIG_DCB is not set | ||
329 | 337 | ||
330 | # | 338 | # |
331 | # Network testing | 339 | # Network testing |
@@ -341,8 +349,9 @@ CONFIG_WIRELESS=y | |||
341 | # CONFIG_CFG80211 is not set | 349 | # CONFIG_CFG80211 is not set |
342 | CONFIG_WIRELESS_OLD_REGULATORY=y | 350 | CONFIG_WIRELESS_OLD_REGULATORY=y |
343 | # CONFIG_WIRELESS_EXT is not set | 351 | # CONFIG_WIRELESS_EXT is not set |
352 | # CONFIG_LIB80211 is not set | ||
344 | # CONFIG_MAC80211 is not set | 353 | # CONFIG_MAC80211 is not set |
345 | # CONFIG_IEEE80211 is not set | 354 | # CONFIG_WIMAX is not set |
346 | # CONFIG_RFKILL is not set | 355 | # CONFIG_RFKILL is not set |
347 | # CONFIG_NET_9P is not set | 356 | # CONFIG_NET_9P is not set |
348 | 357 | ||
@@ -380,6 +389,7 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
380 | CONFIG_MISC_DEVICES=y | 389 | CONFIG_MISC_DEVICES=y |
381 | # CONFIG_EEPROM_93CX6 is not set | 390 | # CONFIG_EEPROM_93CX6 is not set |
382 | # CONFIG_ENCLOSURE_SERVICES is not set | 391 | # CONFIG_ENCLOSURE_SERVICES is not set |
392 | # CONFIG_C2PORT is not set | ||
383 | CONFIG_HAVE_IDE=y | 393 | CONFIG_HAVE_IDE=y |
384 | # CONFIG_IDE is not set | 394 | # CONFIG_IDE is not set |
385 | 395 | ||
@@ -415,6 +425,9 @@ CONFIG_PHYLIB=y | |||
415 | # CONFIG_BROADCOM_PHY is not set | 425 | # CONFIG_BROADCOM_PHY is not set |
416 | # CONFIG_ICPLUS_PHY is not set | 426 | # CONFIG_ICPLUS_PHY is not set |
417 | # CONFIG_REALTEK_PHY is not set | 427 | # CONFIG_REALTEK_PHY is not set |
428 | # CONFIG_NATIONAL_PHY is not set | ||
429 | # CONFIG_STE10XP is not set | ||
430 | # CONFIG_LSI_ET1011C_PHY is not set | ||
418 | # CONFIG_FIXED_PHY is not set | 431 | # CONFIG_FIXED_PHY is not set |
419 | # CONFIG_MDIO_BITBANG is not set | 432 | # CONFIG_MDIO_BITBANG is not set |
420 | CONFIG_NET_ETHERNET=y | 433 | CONFIG_NET_ETHERNET=y |
@@ -437,6 +450,10 @@ CONFIG_NETDEV_10000=y | |||
437 | # CONFIG_WLAN_PRE80211 is not set | 450 | # CONFIG_WLAN_PRE80211 is not set |
438 | # CONFIG_WLAN_80211 is not set | 451 | # CONFIG_WLAN_80211 is not set |
439 | # CONFIG_IWLWIFI_LEDS is not set | 452 | # CONFIG_IWLWIFI_LEDS is not set |
453 | |||
454 | # | ||
455 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
456 | # | ||
440 | # CONFIG_WAN is not set | 457 | # CONFIG_WAN is not set |
441 | # CONFIG_PPP is not set | 458 | # CONFIG_PPP is not set |
442 | # CONFIG_SLIP is not set | 459 | # CONFIG_SLIP is not set |
@@ -502,8 +519,10 @@ CONFIG_SERIAL_CORE=y | |||
502 | CONFIG_SERIAL_CORE_CONSOLE=y | 519 | CONFIG_SERIAL_CORE_CONSOLE=y |
503 | # CONFIG_SERIAL_OF_PLATFORM is not set | 520 | # CONFIG_SERIAL_OF_PLATFORM is not set |
504 | CONFIG_UNIX98_PTYS=y | 521 | CONFIG_UNIX98_PTYS=y |
522 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
505 | CONFIG_LEGACY_PTYS=y | 523 | CONFIG_LEGACY_PTYS=y |
506 | CONFIG_LEGACY_PTY_COUNT=256 | 524 | CONFIG_LEGACY_PTY_COUNT=256 |
525 | # CONFIG_HVC_UDBG is not set | ||
507 | # CONFIG_IPMI_HANDLER is not set | 526 | # CONFIG_IPMI_HANDLER is not set |
508 | # CONFIG_HW_RANDOM is not set | 527 | # CONFIG_HW_RANDOM is not set |
509 | # CONFIG_NVRAM is not set | 528 | # CONFIG_NVRAM is not set |
@@ -534,11 +553,11 @@ CONFIG_HWMON=y | |||
534 | # CONFIG_THERMAL is not set | 553 | # CONFIG_THERMAL is not set |
535 | # CONFIG_THERMAL_HWMON is not set | 554 | # CONFIG_THERMAL_HWMON is not set |
536 | # CONFIG_WATCHDOG is not set | 555 | # CONFIG_WATCHDOG is not set |
556 | CONFIG_SSB_POSSIBLE=y | ||
537 | 557 | ||
538 | # | 558 | # |
539 | # Sonics Silicon Backplane | 559 | # Sonics Silicon Backplane |
540 | # | 560 | # |
541 | CONFIG_SSB_POSSIBLE=y | ||
542 | # CONFIG_SSB is not set | 561 | # CONFIG_SSB is not set |
543 | 562 | ||
544 | # | 563 | # |
@@ -548,14 +567,7 @@ CONFIG_SSB_POSSIBLE=y | |||
548 | # CONFIG_MFD_SM501 is not set | 567 | # CONFIG_MFD_SM501 is not set |
549 | # CONFIG_HTC_PASIC3 is not set | 568 | # CONFIG_HTC_PASIC3 is not set |
550 | # CONFIG_MFD_TMIO is not set | 569 | # CONFIG_MFD_TMIO is not set |
551 | |||
552 | # | ||
553 | # Voltage and Current regulators | ||
554 | # | ||
555 | # CONFIG_REGULATOR is not set | 570 | # CONFIG_REGULATOR is not set |
556 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
557 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
558 | # CONFIG_REGULATOR_BQ24022 is not set | ||
559 | 571 | ||
560 | # | 572 | # |
561 | # Multimedia devices | 573 | # Multimedia devices |
@@ -608,9 +620,13 @@ CONFIG_USB_SUPPORT=y | |||
608 | # | 620 | # |
609 | 621 | ||
610 | # | 622 | # |
611 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 623 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
612 | # | 624 | # |
613 | # CONFIG_USB_GADGET is not set | 625 | # CONFIG_USB_GADGET is not set |
626 | |||
627 | # | ||
628 | # OTG and related infrastructure | ||
629 | # | ||
614 | # CONFIG_MMC is not set | 630 | # CONFIG_MMC is not set |
615 | # CONFIG_MEMSTICK is not set | 631 | # CONFIG_MEMSTICK is not set |
616 | # CONFIG_NEW_LEDS is not set | 632 | # CONFIG_NEW_LEDS is not set |
@@ -640,6 +656,7 @@ CONFIG_FS_MBCACHE=y | |||
640 | CONFIG_FILE_LOCKING=y | 656 | CONFIG_FILE_LOCKING=y |
641 | # CONFIG_XFS_FS is not set | 657 | # CONFIG_XFS_FS is not set |
642 | # CONFIG_OCFS2_FS is not set | 658 | # CONFIG_OCFS2_FS is not set |
659 | # CONFIG_BTRFS_FS is not set | ||
643 | CONFIG_DNOTIFY=y | 660 | CONFIG_DNOTIFY=y |
644 | CONFIG_INOTIFY=y | 661 | CONFIG_INOTIFY=y |
645 | CONFIG_INOTIFY_USER=y | 662 | CONFIG_INOTIFY_USER=y |
@@ -673,10 +690,7 @@ CONFIG_TMPFS=y | |||
673 | # CONFIG_TMPFS_POSIX_ACL is not set | 690 | # CONFIG_TMPFS_POSIX_ACL is not set |
674 | # CONFIG_HUGETLB_PAGE is not set | 691 | # CONFIG_HUGETLB_PAGE is not set |
675 | # CONFIG_CONFIGFS_FS is not set | 692 | # CONFIG_CONFIGFS_FS is not set |
676 | 693 | CONFIG_MISC_FILESYSTEMS=y | |
677 | # | ||
678 | # Miscellaneous filesystems | ||
679 | # | ||
680 | # CONFIG_ADFS_FS is not set | 694 | # CONFIG_ADFS_FS is not set |
681 | # CONFIG_AFFS_FS is not set | 695 | # CONFIG_AFFS_FS is not set |
682 | # CONFIG_HFS_FS is not set | 696 | # CONFIG_HFS_FS is not set |
@@ -685,6 +699,7 @@ CONFIG_TMPFS=y | |||
685 | # CONFIG_BFS_FS is not set | 699 | # CONFIG_BFS_FS is not set |
686 | # CONFIG_EFS_FS is not set | 700 | # CONFIG_EFS_FS is not set |
687 | # CONFIG_CRAMFS is not set | 701 | # CONFIG_CRAMFS is not set |
702 | # CONFIG_SQUASHFS is not set | ||
688 | # CONFIG_VXFS_FS is not set | 703 | # CONFIG_VXFS_FS is not set |
689 | # CONFIG_MINIX_FS is not set | 704 | # CONFIG_MINIX_FS is not set |
690 | # CONFIG_OMFS_FS is not set | 705 | # CONFIG_OMFS_FS is not set |
@@ -735,6 +750,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
735 | # Library routines | 750 | # Library routines |
736 | # | 751 | # |
737 | CONFIG_BITREVERSE=y | 752 | CONFIG_BITREVERSE=y |
753 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
738 | # CONFIG_CRC_CCITT is not set | 754 | # CONFIG_CRC_CCITT is not set |
739 | # CONFIG_CRC16 is not set | 755 | # CONFIG_CRC16 is not set |
740 | # CONFIG_CRC_T10DIF is not set | 756 | # CONFIG_CRC_T10DIF is not set |
@@ -784,6 +800,7 @@ CONFIG_DEBUG_MUTEXES=y | |||
784 | # CONFIG_DEBUG_MEMORY_INIT is not set | 800 | # CONFIG_DEBUG_MEMORY_INIT is not set |
785 | # CONFIG_DEBUG_LIST is not set | 801 | # CONFIG_DEBUG_LIST is not set |
786 | # CONFIG_DEBUG_SG is not set | 802 | # CONFIG_DEBUG_SG is not set |
803 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
787 | # CONFIG_BOOT_PRINTK_DELAY is not set | 804 | # CONFIG_BOOT_PRINTK_DELAY is not set |
788 | # CONFIG_RCU_TORTURE_TEST is not set | 805 | # CONFIG_RCU_TORTURE_TEST is not set |
789 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 806 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -793,6 +810,8 @@ CONFIG_DEBUG_MUTEXES=y | |||
793 | # CONFIG_LATENCYTOP is not set | 810 | # CONFIG_LATENCYTOP is not set |
794 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 811 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
795 | CONFIG_HAVE_FUNCTION_TRACER=y | 812 | CONFIG_HAVE_FUNCTION_TRACER=y |
813 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
814 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
796 | 815 | ||
797 | # | 816 | # |
798 | # Tracers | 817 | # Tracers |
@@ -801,11 +820,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
801 | # CONFIG_SCHED_TRACER is not set | 820 | # CONFIG_SCHED_TRACER is not set |
802 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 821 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
803 | # CONFIG_BOOT_TRACER is not set | 822 | # CONFIG_BOOT_TRACER is not set |
823 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
804 | # CONFIG_STACK_TRACER is not set | 824 | # CONFIG_STACK_TRACER is not set |
805 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 825 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
806 | # CONFIG_SAMPLES is not set | 826 | # CONFIG_SAMPLES is not set |
807 | CONFIG_HAVE_ARCH_KGDB=y | 827 | CONFIG_HAVE_ARCH_KGDB=y |
808 | # CONFIG_KGDB is not set | 828 | # CONFIG_KGDB is not set |
829 | CONFIG_PRINT_STACK_DEPTH=64 | ||
809 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 830 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
810 | # CONFIG_DEBUG_STACK_USAGE is not set | 831 | # CONFIG_DEBUG_STACK_USAGE is not set |
811 | # CONFIG_DEBUG_PAGEALLOC is not set | 832 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -831,6 +852,7 @@ CONFIG_CRYPTO=y | |||
831 | # | 852 | # |
832 | # CONFIG_CRYPTO_FIPS is not set | 853 | # CONFIG_CRYPTO_FIPS is not set |
833 | # CONFIG_CRYPTO_MANAGER is not set | 854 | # CONFIG_CRYPTO_MANAGER is not set |
855 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
834 | # CONFIG_CRYPTO_GF128MUL is not set | 856 | # CONFIG_CRYPTO_GF128MUL is not set |
835 | # CONFIG_CRYPTO_NULL is not set | 857 | # CONFIG_CRYPTO_NULL is not set |
836 | # CONFIG_CRYPTO_CRYPTD is not set | 858 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/85xx/mpc8544_ds_defconfig b/arch/powerpc/configs/85xx/mpc8544_ds_defconfig index 5ac7e51e9f14..f6fa0b761cb3 100644 --- a/arch/powerpc/configs/85xx/mpc8544_ds_defconfig +++ b/arch/powerpc/configs/85xx/mpc8544_ds_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:08 2008 | 4 | # Mon Jan 26 15:36:07 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -45,7 +47,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
45 | CONFIG_PPC=y | 47 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 48 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 49 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 50 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 51 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 52 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 53 | CONFIG_OF=y |
@@ -78,12 +80,12 @@ CONFIG_AUDIT=y | |||
78 | CONFIG_IKCONFIG=y | 80 | CONFIG_IKCONFIG=y |
79 | CONFIG_IKCONFIG_PROC=y | 81 | CONFIG_IKCONFIG_PROC=y |
80 | CONFIG_LOG_BUF_SHIFT=14 | 82 | CONFIG_LOG_BUF_SHIFT=14 |
81 | # CONFIG_CGROUPS is not set | ||
82 | CONFIG_GROUP_SCHED=y | 83 | CONFIG_GROUP_SCHED=y |
83 | # CONFIG_FAIR_GROUP_SCHED is not set | 84 | # CONFIG_FAIR_GROUP_SCHED is not set |
84 | # CONFIG_RT_GROUP_SCHED is not set | 85 | # CONFIG_RT_GROUP_SCHED is not set |
85 | CONFIG_USER_SCHED=y | 86 | CONFIG_USER_SCHED=y |
86 | # CONFIG_CGROUP_SCHED is not set | 87 | # CONFIG_CGROUP_SCHED is not set |
88 | # CONFIG_CGROUPS is not set | ||
87 | CONFIG_SYSFS_DEPRECATED=y | 89 | CONFIG_SYSFS_DEPRECATED=y |
88 | CONFIG_SYSFS_DEPRECATED_V2=y | 90 | CONFIG_SYSFS_DEPRECATED_V2=y |
89 | # CONFIG_RELAY is not set | 91 | # CONFIG_RELAY is not set |
@@ -96,6 +98,7 @@ CONFIG_EMBEDDED=y | |||
96 | CONFIG_SYSCTL_SYSCALL=y | 98 | CONFIG_SYSCTL_SYSCALL=y |
97 | CONFIG_KALLSYMS=y | 99 | CONFIG_KALLSYMS=y |
98 | CONFIG_KALLSYMS_ALL=y | 100 | CONFIG_KALLSYMS_ALL=y |
101 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
99 | CONFIG_KALLSYMS_EXTRA_PASS=y | 102 | CONFIG_KALLSYMS_EXTRA_PASS=y |
100 | CONFIG_HOTPLUG=y | 103 | CONFIG_HOTPLUG=y |
101 | CONFIG_PRINTK=y | 104 | CONFIG_PRINTK=y |
@@ -118,7 +121,6 @@ CONFIG_SLUB_DEBUG=y | |||
118 | CONFIG_SLUB=y | 121 | CONFIG_SLUB=y |
119 | # CONFIG_SLOB is not set | 122 | # CONFIG_SLOB is not set |
120 | # CONFIG_PROFILING is not set | 123 | # CONFIG_PROFILING is not set |
121 | # CONFIG_MARKERS is not set | ||
122 | CONFIG_HAVE_OPROFILE=y | 124 | CONFIG_HAVE_OPROFILE=y |
123 | # CONFIG_KPROBES is not set | 125 | # CONFIG_KPROBES is not set |
124 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 126 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -129,7 +131,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
129 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 131 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
130 | CONFIG_SLABINFO=y | 132 | CONFIG_SLABINFO=y |
131 | CONFIG_RT_MUTEXES=y | 133 | CONFIG_RT_MUTEXES=y |
132 | # CONFIG_TINY_SHMEM is not set | ||
133 | CONFIG_BASE_SMALL=0 | 134 | CONFIG_BASE_SMALL=0 |
134 | CONFIG_MODULES=y | 135 | CONFIG_MODULES=y |
135 | # CONFIG_MODULE_FORCE_LOAD is not set | 136 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -137,11 +138,9 @@ CONFIG_MODULE_UNLOAD=y | |||
137 | CONFIG_MODULE_FORCE_UNLOAD=y | 138 | CONFIG_MODULE_FORCE_UNLOAD=y |
138 | CONFIG_MODVERSIONS=y | 139 | CONFIG_MODVERSIONS=y |
139 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 140 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
140 | CONFIG_KMOD=y | ||
141 | CONFIG_BLOCK=y | 141 | CONFIG_BLOCK=y |
142 | CONFIG_LBD=y | 142 | CONFIG_LBD=y |
143 | # CONFIG_BLK_DEV_IO_TRACE is not set | 143 | # CONFIG_BLK_DEV_IO_TRACE is not set |
144 | # CONFIG_LSF is not set | ||
145 | # CONFIG_BLK_DEV_BSG is not set | 144 | # CONFIG_BLK_DEV_BSG is not set |
146 | # CONFIG_BLK_DEV_INTEGRITY is not set | 145 | # CONFIG_BLK_DEV_INTEGRITY is not set |
147 | 146 | ||
@@ -158,6 +157,10 @@ CONFIG_DEFAULT_CFQ=y | |||
158 | # CONFIG_DEFAULT_NOOP is not set | 157 | # CONFIG_DEFAULT_NOOP is not set |
159 | CONFIG_DEFAULT_IOSCHED="cfq" | 158 | CONFIG_DEFAULT_IOSCHED="cfq" |
160 | CONFIG_CLASSIC_RCU=y | 159 | CONFIG_CLASSIC_RCU=y |
160 | # CONFIG_TREE_RCU is not set | ||
161 | # CONFIG_PREEMPT_RCU is not set | ||
162 | # CONFIG_TREE_RCU_TRACE is not set | ||
163 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
161 | # CONFIG_FREEZER is not set | 164 | # CONFIG_FREEZER is not set |
162 | 165 | ||
163 | # | 166 | # |
@@ -197,6 +200,7 @@ CONFIG_PPC_I8259=y | |||
197 | # CONFIG_CPM2 is not set | 200 | # CONFIG_CPM2 is not set |
198 | CONFIG_FSL_ULI1575=y | 201 | CONFIG_FSL_ULI1575=y |
199 | # CONFIG_MPC8xxx_GPIO is not set | 202 | # CONFIG_MPC8xxx_GPIO is not set |
203 | # CONFIG_SIMPLE_GPIO is not set | ||
200 | 204 | ||
201 | # | 205 | # |
202 | # Kernel options | 206 | # Kernel options |
@@ -235,12 +239,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
235 | CONFIG_PAGEFLAGS_EXTENDED=y | 239 | CONFIG_PAGEFLAGS_EXTENDED=y |
236 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 240 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
237 | CONFIG_MIGRATION=y | 241 | CONFIG_MIGRATION=y |
238 | # CONFIG_RESOURCES_64BIT is not set | ||
239 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 242 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
240 | CONFIG_ZONE_DMA_FLAG=1 | 243 | CONFIG_ZONE_DMA_FLAG=1 |
241 | CONFIG_BOUNCE=y | 244 | CONFIG_BOUNCE=y |
242 | CONFIG_VIRT_TO_BUS=y | 245 | CONFIG_VIRT_TO_BUS=y |
243 | CONFIG_UNEVICTABLE_LRU=y | 246 | CONFIG_UNEVICTABLE_LRU=y |
247 | CONFIG_PPC_4K_PAGES=y | ||
248 | # CONFIG_PPC_16K_PAGES is not set | ||
249 | # CONFIG_PPC_64K_PAGES is not set | ||
244 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
245 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
246 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
@@ -266,6 +272,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
266 | # CONFIG_PCI_MSI is not set | 272 | # CONFIG_PCI_MSI is not set |
267 | # CONFIG_PCI_LEGACY is not set | 273 | # CONFIG_PCI_LEGACY is not set |
268 | # CONFIG_PCI_DEBUG is not set | 274 | # CONFIG_PCI_DEBUG is not set |
275 | # CONFIG_PCI_STUB is not set | ||
269 | # CONFIG_PCCARD is not set | 276 | # CONFIG_PCCARD is not set |
270 | # CONFIG_HOTPLUG_PCI is not set | 277 | # CONFIG_HOTPLUG_PCI is not set |
271 | # CONFIG_HAS_RAPIDIO is not set | 278 | # CONFIG_HAS_RAPIDIO is not set |
@@ -289,6 +296,7 @@ CONFIG_NET=y | |||
289 | # | 296 | # |
290 | # Networking options | 297 | # Networking options |
291 | # | 298 | # |
299 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
292 | CONFIG_PACKET=y | 300 | CONFIG_PACKET=y |
293 | # CONFIG_PACKET_MMAP is not set | 301 | # CONFIG_PACKET_MMAP is not set |
294 | CONFIG_UNIX=y | 302 | CONFIG_UNIX=y |
@@ -377,6 +385,7 @@ CONFIG_SCTP_HMAC_MD5=y | |||
377 | # CONFIG_ECONET is not set | 385 | # CONFIG_ECONET is not set |
378 | # CONFIG_WAN_ROUTER is not set | 386 | # CONFIG_WAN_ROUTER is not set |
379 | # CONFIG_NET_SCHED is not set | 387 | # CONFIG_NET_SCHED is not set |
388 | # CONFIG_DCB is not set | ||
380 | 389 | ||
381 | # | 390 | # |
382 | # Network testing | 391 | # Network testing |
@@ -393,8 +402,9 @@ CONFIG_WIRELESS=y | |||
393 | # CONFIG_CFG80211 is not set | 402 | # CONFIG_CFG80211 is not set |
394 | CONFIG_WIRELESS_OLD_REGULATORY=y | 403 | CONFIG_WIRELESS_OLD_REGULATORY=y |
395 | # CONFIG_WIRELESS_EXT is not set | 404 | # CONFIG_WIRELESS_EXT is not set |
405 | # CONFIG_LIB80211 is not set | ||
396 | # CONFIG_MAC80211 is not set | 406 | # CONFIG_MAC80211 is not set |
397 | # CONFIG_IEEE80211 is not set | 407 | # CONFIG_WIMAX is not set |
398 | # CONFIG_RFKILL is not set | 408 | # CONFIG_RFKILL is not set |
399 | # CONFIG_NET_9P is not set | 409 | # CONFIG_NET_9P is not set |
400 | 410 | ||
@@ -443,8 +453,10 @@ CONFIG_MISC_DEVICES=y | |||
443 | # CONFIG_EEPROM_93CX6 is not set | 453 | # CONFIG_EEPROM_93CX6 is not set |
444 | # CONFIG_SGI_IOC4 is not set | 454 | # CONFIG_SGI_IOC4 is not set |
445 | # CONFIG_TIFM_CORE is not set | 455 | # CONFIG_TIFM_CORE is not set |
456 | # CONFIG_ICS932S401 is not set | ||
446 | # CONFIG_ENCLOSURE_SERVICES is not set | 457 | # CONFIG_ENCLOSURE_SERVICES is not set |
447 | # CONFIG_HP_ILO is not set | 458 | # CONFIG_HP_ILO is not set |
459 | # CONFIG_C2PORT is not set | ||
448 | CONFIG_HAVE_IDE=y | 460 | CONFIG_HAVE_IDE=y |
449 | # CONFIG_IDE is not set | 461 | # CONFIG_IDE is not set |
450 | 462 | ||
@@ -488,6 +500,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
488 | # CONFIG_SCSI_SRP_ATTRS is not set | 500 | # CONFIG_SCSI_SRP_ATTRS is not set |
489 | CONFIG_SCSI_LOWLEVEL=y | 501 | CONFIG_SCSI_LOWLEVEL=y |
490 | # CONFIG_ISCSI_TCP is not set | 502 | # CONFIG_ISCSI_TCP is not set |
503 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
491 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 504 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
492 | # CONFIG_SCSI_3W_9XXX is not set | 505 | # CONFIG_SCSI_3W_9XXX is not set |
493 | # CONFIG_SCSI_ACARD is not set | 506 | # CONFIG_SCSI_ACARD is not set |
@@ -504,6 +517,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
504 | # CONFIG_MEGARAID_SAS is not set | 517 | # CONFIG_MEGARAID_SAS is not set |
505 | # CONFIG_SCSI_HPTIOP is not set | 518 | # CONFIG_SCSI_HPTIOP is not set |
506 | # CONFIG_SCSI_BUSLOGIC is not set | 519 | # CONFIG_SCSI_BUSLOGIC is not set |
520 | # CONFIG_LIBFC is not set | ||
521 | # CONFIG_FCOE is not set | ||
507 | # CONFIG_SCSI_DMX3191D is not set | 522 | # CONFIG_SCSI_DMX3191D is not set |
508 | # CONFIG_SCSI_EATA is not set | 523 | # CONFIG_SCSI_EATA is not set |
509 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 524 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -623,6 +638,9 @@ CONFIG_VITESSE_PHY=y | |||
623 | # CONFIG_BROADCOM_PHY is not set | 638 | # CONFIG_BROADCOM_PHY is not set |
624 | # CONFIG_ICPLUS_PHY is not set | 639 | # CONFIG_ICPLUS_PHY is not set |
625 | # CONFIG_REALTEK_PHY is not set | 640 | # CONFIG_REALTEK_PHY is not set |
641 | # CONFIG_NATIONAL_PHY is not set | ||
642 | # CONFIG_STE10XP is not set | ||
643 | # CONFIG_LSI_ET1011C_PHY is not set | ||
626 | # CONFIG_FIXED_PHY is not set | 644 | # CONFIG_FIXED_PHY is not set |
627 | # CONFIG_MDIO_BITBANG is not set | 645 | # CONFIG_MDIO_BITBANG is not set |
628 | CONFIG_NET_ETHERNET=y | 646 | CONFIG_NET_ETHERNET=y |
@@ -667,6 +685,7 @@ CONFIG_GIANFAR=y | |||
667 | # CONFIG_JME is not set | 685 | # CONFIG_JME is not set |
668 | CONFIG_NETDEV_10000=y | 686 | CONFIG_NETDEV_10000=y |
669 | # CONFIG_CHELSIO_T1 is not set | 687 | # CONFIG_CHELSIO_T1 is not set |
688 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
670 | # CONFIG_CHELSIO_T3 is not set | 689 | # CONFIG_CHELSIO_T3 is not set |
671 | # CONFIG_ENIC is not set | 690 | # CONFIG_ENIC is not set |
672 | # CONFIG_IXGBE is not set | 691 | # CONFIG_IXGBE is not set |
@@ -691,6 +710,10 @@ CONFIG_NETDEV_10000=y | |||
691 | # CONFIG_IWLWIFI_LEDS is not set | 710 | # CONFIG_IWLWIFI_LEDS is not set |
692 | 711 | ||
693 | # | 712 | # |
713 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
714 | # | ||
715 | |||
716 | # | ||
694 | # USB Network Adapters | 717 | # USB Network Adapters |
695 | # | 718 | # |
696 | # CONFIG_USB_CATC is not set | 719 | # CONFIG_USB_CATC is not set |
@@ -782,8 +805,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
782 | # CONFIG_SERIAL_JSM is not set | 805 | # CONFIG_SERIAL_JSM is not set |
783 | # CONFIG_SERIAL_OF_PLATFORM is not set | 806 | # CONFIG_SERIAL_OF_PLATFORM is not set |
784 | CONFIG_UNIX98_PTYS=y | 807 | CONFIG_UNIX98_PTYS=y |
808 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
785 | CONFIG_LEGACY_PTYS=y | 809 | CONFIG_LEGACY_PTYS=y |
786 | CONFIG_LEGACY_PTY_COUNT=256 | 810 | CONFIG_LEGACY_PTY_COUNT=256 |
811 | # CONFIG_HVC_UDBG is not set | ||
787 | # CONFIG_IPMI_HANDLER is not set | 812 | # CONFIG_IPMI_HANDLER is not set |
788 | CONFIG_HW_RANDOM=y | 813 | CONFIG_HW_RANDOM=y |
789 | CONFIG_NVRAM=y | 814 | CONFIG_NVRAM=y |
@@ -869,11 +894,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
869 | # CONFIG_THERMAL is not set | 894 | # CONFIG_THERMAL is not set |
870 | # CONFIG_THERMAL_HWMON is not set | 895 | # CONFIG_THERMAL_HWMON is not set |
871 | # CONFIG_WATCHDOG is not set | 896 | # CONFIG_WATCHDOG is not set |
897 | CONFIG_SSB_POSSIBLE=y | ||
872 | 898 | ||
873 | # | 899 | # |
874 | # Sonics Silicon Backplane | 900 | # Sonics Silicon Backplane |
875 | # | 901 | # |
876 | CONFIG_SSB_POSSIBLE=y | ||
877 | # CONFIG_SSB is not set | 902 | # CONFIG_SSB is not set |
878 | 903 | ||
879 | # | 904 | # |
@@ -882,18 +907,13 @@ CONFIG_SSB_POSSIBLE=y | |||
882 | # CONFIG_MFD_CORE is not set | 907 | # CONFIG_MFD_CORE is not set |
883 | # CONFIG_MFD_SM501 is not set | 908 | # CONFIG_MFD_SM501 is not set |
884 | # CONFIG_HTC_PASIC3 is not set | 909 | # CONFIG_HTC_PASIC3 is not set |
910 | # CONFIG_TWL4030_CORE is not set | ||
885 | # CONFIG_MFD_TMIO is not set | 911 | # CONFIG_MFD_TMIO is not set |
886 | # CONFIG_PMIC_DA903X is not set | 912 | # CONFIG_PMIC_DA903X is not set |
887 | # CONFIG_MFD_WM8400 is not set | 913 | # CONFIG_MFD_WM8400 is not set |
888 | # CONFIG_MFD_WM8350_I2C is not set | 914 | # CONFIG_MFD_WM8350_I2C is not set |
889 | 915 | # CONFIG_MFD_PCF50633 is not set | |
890 | # | ||
891 | # Voltage and Current regulators | ||
892 | # | ||
893 | # CONFIG_REGULATOR is not set | 916 | # CONFIG_REGULATOR is not set |
894 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
895 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
896 | # CONFIG_REGULATOR_BQ24022 is not set | ||
897 | 917 | ||
898 | # | 918 | # |
899 | # Multimedia devices | 919 | # Multimedia devices |
@@ -920,6 +940,7 @@ CONFIG_MEDIA_TUNER_TEA5767=m | |||
920 | CONFIG_MEDIA_TUNER_MT20XX=m | 940 | CONFIG_MEDIA_TUNER_MT20XX=m |
921 | CONFIG_MEDIA_TUNER_XC2028=m | 941 | CONFIG_MEDIA_TUNER_XC2028=m |
922 | CONFIG_MEDIA_TUNER_XC5000=m | 942 | CONFIG_MEDIA_TUNER_XC5000=m |
943 | # CONFIG_DVB_DYNAMIC_MINORS is not set | ||
923 | CONFIG_DVB_CAPTURE_DRIVERS=y | 944 | CONFIG_DVB_CAPTURE_DRIVERS=y |
924 | 945 | ||
925 | # | 946 | # |
@@ -965,6 +986,12 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
965 | # CONFIG_DVB_FE_CUSTOMISE is not set | 986 | # CONFIG_DVB_FE_CUSTOMISE is not set |
966 | 987 | ||
967 | # | 988 | # |
989 | # Multistandard (satellite) frontends | ||
990 | # | ||
991 | # CONFIG_DVB_STB0899 is not set | ||
992 | # CONFIG_DVB_STB6100 is not set | ||
993 | |||
994 | # | ||
968 | # DVB-S (satellite) frontends | 995 | # DVB-S (satellite) frontends |
969 | # | 996 | # |
970 | # CONFIG_DVB_CX24110 is not set | 997 | # CONFIG_DVB_CX24110 is not set |
@@ -976,8 +1003,10 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
976 | # CONFIG_DVB_STV0299 is not set | 1003 | # CONFIG_DVB_STV0299 is not set |
977 | # CONFIG_DVB_TDA8083 is not set | 1004 | # CONFIG_DVB_TDA8083 is not set |
978 | # CONFIG_DVB_TDA10086 is not set | 1005 | # CONFIG_DVB_TDA10086 is not set |
1006 | # CONFIG_DVB_TDA8261 is not set | ||
979 | # CONFIG_DVB_VES1X93 is not set | 1007 | # CONFIG_DVB_VES1X93 is not set |
980 | # CONFIG_DVB_TUNER_ITD1000 is not set | 1008 | # CONFIG_DVB_TUNER_ITD1000 is not set |
1009 | # CONFIG_DVB_TUNER_CX24113 is not set | ||
981 | # CONFIG_DVB_TDA826X is not set | 1010 | # CONFIG_DVB_TDA826X is not set |
982 | # CONFIG_DVB_TUA6100 is not set | 1011 | # CONFIG_DVB_TUA6100 is not set |
983 | # CONFIG_DVB_CX24116 is not set | 1012 | # CONFIG_DVB_CX24116 is not set |
@@ -1018,11 +1047,17 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
1018 | # CONFIG_DVB_OR51132 is not set | 1047 | # CONFIG_DVB_OR51132 is not set |
1019 | # CONFIG_DVB_BCM3510 is not set | 1048 | # CONFIG_DVB_BCM3510 is not set |
1020 | # CONFIG_DVB_LGDT330X is not set | 1049 | # CONFIG_DVB_LGDT330X is not set |
1050 | # CONFIG_DVB_LGDT3304 is not set | ||
1021 | # CONFIG_DVB_S5H1409 is not set | 1051 | # CONFIG_DVB_S5H1409 is not set |
1022 | # CONFIG_DVB_AU8522 is not set | 1052 | # CONFIG_DVB_AU8522 is not set |
1023 | # CONFIG_DVB_S5H1411 is not set | 1053 | # CONFIG_DVB_S5H1411 is not set |
1024 | 1054 | ||
1025 | # | 1055 | # |
1056 | # ISDB-T (terrestrial) frontends | ||
1057 | # | ||
1058 | # CONFIG_DVB_S921 is not set | ||
1059 | |||
1060 | # | ||
1026 | # Digital terrestrial only tuners/PLL | 1061 | # Digital terrestrial only tuners/PLL |
1027 | # | 1062 | # |
1028 | # CONFIG_DVB_PLL is not set | 1063 | # CONFIG_DVB_PLL is not set |
@@ -1075,6 +1110,7 @@ CONFIG_SND_OSSEMUL=y | |||
1075 | CONFIG_SND_MIXER_OSS=y | 1110 | CONFIG_SND_MIXER_OSS=y |
1076 | CONFIG_SND_PCM_OSS=y | 1111 | CONFIG_SND_PCM_OSS=y |
1077 | CONFIG_SND_PCM_OSS_PLUGINS=y | 1112 | CONFIG_SND_PCM_OSS_PLUGINS=y |
1113 | # CONFIG_SND_HRTIMER is not set | ||
1078 | # CONFIG_SND_DYNAMIC_MINORS is not set | 1114 | # CONFIG_SND_DYNAMIC_MINORS is not set |
1079 | # CONFIG_SND_SUPPORT_OLD_API is not set | 1115 | # CONFIG_SND_SUPPORT_OLD_API is not set |
1080 | CONFIG_SND_VERBOSE_PROCFS=y | 1116 | CONFIG_SND_VERBOSE_PROCFS=y |
@@ -1177,11 +1213,9 @@ CONFIG_HID_COMPAT=y | |||
1177 | CONFIG_HID_A4TECH=y | 1213 | CONFIG_HID_A4TECH=y |
1178 | CONFIG_HID_APPLE=y | 1214 | CONFIG_HID_APPLE=y |
1179 | CONFIG_HID_BELKIN=y | 1215 | CONFIG_HID_BELKIN=y |
1180 | CONFIG_HID_BRIGHT=y | ||
1181 | CONFIG_HID_CHERRY=y | 1216 | CONFIG_HID_CHERRY=y |
1182 | CONFIG_HID_CHICONY=y | 1217 | CONFIG_HID_CHICONY=y |
1183 | CONFIG_HID_CYPRESS=y | 1218 | CONFIG_HID_CYPRESS=y |
1184 | CONFIG_HID_DELL=y | ||
1185 | CONFIG_HID_EZKEY=y | 1219 | CONFIG_HID_EZKEY=y |
1186 | CONFIG_HID_GYRATION=y | 1220 | CONFIG_HID_GYRATION=y |
1187 | CONFIG_HID_LOGITECH=y | 1221 | CONFIG_HID_LOGITECH=y |
@@ -1189,12 +1223,15 @@ CONFIG_HID_LOGITECH=y | |||
1189 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1223 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
1190 | CONFIG_HID_MICROSOFT=y | 1224 | CONFIG_HID_MICROSOFT=y |
1191 | CONFIG_HID_MONTEREY=y | 1225 | CONFIG_HID_MONTEREY=y |
1226 | # CONFIG_HID_NTRIG is not set | ||
1192 | CONFIG_HID_PANTHERLORD=y | 1227 | CONFIG_HID_PANTHERLORD=y |
1193 | # CONFIG_PANTHERLORD_FF is not set | 1228 | # CONFIG_PANTHERLORD_FF is not set |
1194 | CONFIG_HID_PETALYNX=y | 1229 | CONFIG_HID_PETALYNX=y |
1195 | CONFIG_HID_SAMSUNG=y | 1230 | CONFIG_HID_SAMSUNG=y |
1196 | CONFIG_HID_SONY=y | 1231 | CONFIG_HID_SONY=y |
1197 | CONFIG_HID_SUNPLUS=y | 1232 | CONFIG_HID_SUNPLUS=y |
1233 | # CONFIG_GREENASIA_FF is not set | ||
1234 | # CONFIG_HID_TOPSEED is not set | ||
1198 | CONFIG_THRUSTMASTER_FF=m | 1235 | CONFIG_THRUSTMASTER_FF=m |
1199 | CONFIG_ZEROPLUS_FF=m | 1236 | CONFIG_ZEROPLUS_FF=m |
1200 | CONFIG_USB_SUPPORT=y | 1237 | CONFIG_USB_SUPPORT=y |
@@ -1227,6 +1264,7 @@ CONFIG_USB_EHCI_HCD=y | |||
1227 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1264 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1228 | # CONFIG_USB_EHCI_FSL is not set | 1265 | # CONFIG_USB_EHCI_FSL is not set |
1229 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1266 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1267 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1230 | # CONFIG_USB_ISP116X_HCD is not set | 1268 | # CONFIG_USB_ISP116X_HCD is not set |
1231 | # CONFIG_USB_ISP1760_HCD is not set | 1269 | # CONFIG_USB_ISP1760_HCD is not set |
1232 | CONFIG_USB_OHCI_HCD=y | 1270 | CONFIG_USB_OHCI_HCD=y |
@@ -1252,18 +1290,17 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
1252 | # CONFIG_USB_TMC is not set | 1290 | # CONFIG_USB_TMC is not set |
1253 | 1291 | ||
1254 | # | 1292 | # |
1255 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1293 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1256 | # | 1294 | # |
1257 | 1295 | ||
1258 | # | 1296 | # |
1259 | # may also be needed; see USB_STORAGE Help for more information | 1297 | # see USB_STORAGE Help for more information |
1260 | # | 1298 | # |
1261 | CONFIG_USB_STORAGE=y | 1299 | CONFIG_USB_STORAGE=y |
1262 | # CONFIG_USB_STORAGE_DEBUG is not set | 1300 | # CONFIG_USB_STORAGE_DEBUG is not set |
1263 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1301 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1264 | # CONFIG_USB_STORAGE_FREECOM is not set | 1302 | # CONFIG_USB_STORAGE_FREECOM is not set |
1265 | # CONFIG_USB_STORAGE_ISD200 is not set | 1303 | # CONFIG_USB_STORAGE_ISD200 is not set |
1266 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1267 | # CONFIG_USB_STORAGE_USBAT is not set | 1304 | # CONFIG_USB_STORAGE_USBAT is not set |
1268 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1305 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1269 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1306 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1311,6 +1348,10 @@ CONFIG_USB_STORAGE=y | |||
1311 | # CONFIG_USB_ISIGHTFW is not set | 1348 | # CONFIG_USB_ISIGHTFW is not set |
1312 | # CONFIG_USB_VST is not set | 1349 | # CONFIG_USB_VST is not set |
1313 | # CONFIG_USB_GADGET is not set | 1350 | # CONFIG_USB_GADGET is not set |
1351 | |||
1352 | # | ||
1353 | # OTG and related infrastructure | ||
1354 | # | ||
1314 | # CONFIG_UWB is not set | 1355 | # CONFIG_UWB is not set |
1315 | # CONFIG_MMC is not set | 1356 | # CONFIG_MMC is not set |
1316 | # CONFIG_MEMSTICK is not set | 1357 | # CONFIG_MEMSTICK is not set |
@@ -1348,6 +1389,7 @@ CONFIG_RTC_INTF_DEV=y | |||
1348 | # CONFIG_RTC_DRV_M41T80 is not set | 1389 | # CONFIG_RTC_DRV_M41T80 is not set |
1349 | # CONFIG_RTC_DRV_S35390A is not set | 1390 | # CONFIG_RTC_DRV_S35390A is not set |
1350 | # CONFIG_RTC_DRV_FM3130 is not set | 1391 | # CONFIG_RTC_DRV_FM3130 is not set |
1392 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1351 | 1393 | ||
1352 | # | 1394 | # |
1353 | # SPI RTC drivers | 1395 | # SPI RTC drivers |
@@ -1406,7 +1448,9 @@ CONFIG_FS_MBCACHE=y | |||
1406 | # CONFIG_FS_POSIX_ACL is not set | 1448 | # CONFIG_FS_POSIX_ACL is not set |
1407 | CONFIG_FILE_LOCKING=y | 1449 | CONFIG_FILE_LOCKING=y |
1408 | # CONFIG_XFS_FS is not set | 1450 | # CONFIG_XFS_FS is not set |
1451 | # CONFIG_GFS2_FS is not set | ||
1409 | # CONFIG_OCFS2_FS is not set | 1452 | # CONFIG_OCFS2_FS is not set |
1453 | # CONFIG_BTRFS_FS is not set | ||
1410 | CONFIG_DNOTIFY=y | 1454 | CONFIG_DNOTIFY=y |
1411 | CONFIG_INOTIFY=y | 1455 | CONFIG_INOTIFY=y |
1412 | CONFIG_INOTIFY_USER=y | 1456 | CONFIG_INOTIFY_USER=y |
@@ -1448,10 +1492,7 @@ CONFIG_TMPFS=y | |||
1448 | # CONFIG_TMPFS_POSIX_ACL is not set | 1492 | # CONFIG_TMPFS_POSIX_ACL is not set |
1449 | # CONFIG_HUGETLB_PAGE is not set | 1493 | # CONFIG_HUGETLB_PAGE is not set |
1450 | # CONFIG_CONFIGFS_FS is not set | 1494 | # CONFIG_CONFIGFS_FS is not set |
1451 | 1495 | CONFIG_MISC_FILESYSTEMS=y | |
1452 | # | ||
1453 | # Miscellaneous filesystems | ||
1454 | # | ||
1455 | CONFIG_ADFS_FS=m | 1496 | CONFIG_ADFS_FS=m |
1456 | # CONFIG_ADFS_FS_RW is not set | 1497 | # CONFIG_ADFS_FS_RW is not set |
1457 | CONFIG_AFFS_FS=m | 1498 | CONFIG_AFFS_FS=m |
@@ -1462,6 +1503,7 @@ CONFIG_BEFS_FS=m | |||
1462 | CONFIG_BFS_FS=m | 1503 | CONFIG_BFS_FS=m |
1463 | CONFIG_EFS_FS=m | 1504 | CONFIG_EFS_FS=m |
1464 | CONFIG_CRAMFS=y | 1505 | CONFIG_CRAMFS=y |
1506 | # CONFIG_SQUASHFS is not set | ||
1465 | CONFIG_VXFS_FS=m | 1507 | CONFIG_VXFS_FS=m |
1466 | # CONFIG_MINIX_FS is not set | 1508 | # CONFIG_MINIX_FS is not set |
1467 | # CONFIG_OMFS_FS is not set | 1509 | # CONFIG_OMFS_FS is not set |
@@ -1563,6 +1605,7 @@ CONFIG_NLS_UTF8=m | |||
1563 | # Library routines | 1605 | # Library routines |
1564 | # | 1606 | # |
1565 | CONFIG_BITREVERSE=y | 1607 | CONFIG_BITREVERSE=y |
1608 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1566 | # CONFIG_CRC_CCITT is not set | 1609 | # CONFIG_CRC_CCITT is not set |
1567 | # CONFIG_CRC16 is not set | 1610 | # CONFIG_CRC16 is not set |
1568 | CONFIG_CRC_T10DIF=y | 1611 | CONFIG_CRC_T10DIF=y |
@@ -1614,6 +1657,7 @@ CONFIG_DEBUG_INFO=y | |||
1614 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1657 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1615 | # CONFIG_DEBUG_LIST is not set | 1658 | # CONFIG_DEBUG_LIST is not set |
1616 | # CONFIG_DEBUG_SG is not set | 1659 | # CONFIG_DEBUG_SG is not set |
1660 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1617 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1661 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1618 | # CONFIG_RCU_TORTURE_TEST is not set | 1662 | # CONFIG_RCU_TORTURE_TEST is not set |
1619 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1663 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1623,6 +1667,8 @@ CONFIG_DEBUG_INFO=y | |||
1623 | # CONFIG_LATENCYTOP is not set | 1667 | # CONFIG_LATENCYTOP is not set |
1624 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1668 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1625 | CONFIG_HAVE_FUNCTION_TRACER=y | 1669 | CONFIG_HAVE_FUNCTION_TRACER=y |
1670 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1671 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1626 | 1672 | ||
1627 | # | 1673 | # |
1628 | # Tracers | 1674 | # Tracers |
@@ -1631,11 +1677,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1631 | # CONFIG_SCHED_TRACER is not set | 1677 | # CONFIG_SCHED_TRACER is not set |
1632 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1678 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1633 | # CONFIG_BOOT_TRACER is not set | 1679 | # CONFIG_BOOT_TRACER is not set |
1680 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1634 | # CONFIG_STACK_TRACER is not set | 1681 | # CONFIG_STACK_TRACER is not set |
1635 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1682 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1636 | # CONFIG_SAMPLES is not set | 1683 | # CONFIG_SAMPLES is not set |
1637 | CONFIG_HAVE_ARCH_KGDB=y | 1684 | CONFIG_HAVE_ARCH_KGDB=y |
1638 | # CONFIG_KGDB is not set | 1685 | # CONFIG_KGDB is not set |
1686 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1639 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1687 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1640 | # CONFIG_DEBUG_STACK_USAGE is not set | 1688 | # CONFIG_DEBUG_STACK_USAGE is not set |
1641 | # CONFIG_DEBUG_PAGEALLOC is not set | 1689 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1661,11 +1709,16 @@ CONFIG_CRYPTO=y | |||
1661 | # | 1709 | # |
1662 | # CONFIG_CRYPTO_FIPS is not set | 1710 | # CONFIG_CRYPTO_FIPS is not set |
1663 | CONFIG_CRYPTO_ALGAPI=y | 1711 | CONFIG_CRYPTO_ALGAPI=y |
1712 | CONFIG_CRYPTO_ALGAPI2=y | ||
1664 | CONFIG_CRYPTO_AEAD=y | 1713 | CONFIG_CRYPTO_AEAD=y |
1714 | CONFIG_CRYPTO_AEAD2=y | ||
1665 | CONFIG_CRYPTO_BLKCIPHER=y | 1715 | CONFIG_CRYPTO_BLKCIPHER=y |
1716 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1666 | CONFIG_CRYPTO_HASH=y | 1717 | CONFIG_CRYPTO_HASH=y |
1667 | CONFIG_CRYPTO_RNG=y | 1718 | CONFIG_CRYPTO_HASH2=y |
1719 | CONFIG_CRYPTO_RNG2=y | ||
1668 | CONFIG_CRYPTO_MANAGER=y | 1720 | CONFIG_CRYPTO_MANAGER=y |
1721 | CONFIG_CRYPTO_MANAGER2=y | ||
1669 | # CONFIG_CRYPTO_GF128MUL is not set | 1722 | # CONFIG_CRYPTO_GF128MUL is not set |
1670 | # CONFIG_CRYPTO_NULL is not set | 1723 | # CONFIG_CRYPTO_NULL is not set |
1671 | # CONFIG_CRYPTO_CRYPTD is not set | 1724 | # CONFIG_CRYPTO_CRYPTD is not set |
@@ -1699,7 +1752,7 @@ CONFIG_CRYPTO_HMAC=y | |||
1699 | # | 1752 | # |
1700 | # Digest | 1753 | # Digest |
1701 | # | 1754 | # |
1702 | # CONFIG_CRYPTO_CRC32C is not set | 1755 | CONFIG_CRYPTO_CRC32C=m |
1703 | # CONFIG_CRYPTO_MD4 is not set | 1756 | # CONFIG_CRYPTO_MD4 is not set |
1704 | CONFIG_CRYPTO_MD5=y | 1757 | CONFIG_CRYPTO_MD5=y |
1705 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1758 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
diff --git a/arch/powerpc/configs/85xx/mpc8560_ads_defconfig b/arch/powerpc/configs/85xx/mpc8560_ads_defconfig index 6cf929259ba7..095e2ded6e8b 100644 --- a/arch/powerpc/configs/85xx/mpc8560_ads_defconfig +++ b/arch/powerpc/configs/85xx/mpc8560_ads_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:09 2008 | 4 | # Mon Jan 26 15:36:09 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -46,7 +48,7 @@ CONFIG_GENERIC_GPIO=y | |||
46 | CONFIG_PPC=y | 48 | CONFIG_PPC=y |
47 | CONFIG_EARLY_PRINTK=y | 49 | CONFIG_EARLY_PRINTK=y |
48 | CONFIG_GENERIC_NVRAM=y | 50 | CONFIG_GENERIC_NVRAM=y |
49 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 51 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
50 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 52 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
51 | CONFIG_PPC_OF=y | 53 | CONFIG_PPC_OF=y |
52 | CONFIG_OF=y | 54 | CONFIG_OF=y |
@@ -76,12 +78,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
76 | # CONFIG_AUDIT is not set | 78 | # CONFIG_AUDIT is not set |
77 | # CONFIG_IKCONFIG is not set | 79 | # CONFIG_IKCONFIG is not set |
78 | CONFIG_LOG_BUF_SHIFT=14 | 80 | CONFIG_LOG_BUF_SHIFT=14 |
79 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_GROUP_SCHED=y | 81 | CONFIG_GROUP_SCHED=y |
81 | # CONFIG_FAIR_GROUP_SCHED is not set | 82 | # CONFIG_FAIR_GROUP_SCHED is not set |
82 | # CONFIG_RT_GROUP_SCHED is not set | 83 | # CONFIG_RT_GROUP_SCHED is not set |
83 | CONFIG_USER_SCHED=y | 84 | CONFIG_USER_SCHED=y |
84 | # CONFIG_CGROUP_SCHED is not set | 85 | # CONFIG_CGROUP_SCHED is not set |
86 | # CONFIG_CGROUPS is not set | ||
85 | CONFIG_SYSFS_DEPRECATED=y | 87 | CONFIG_SYSFS_DEPRECATED=y |
86 | CONFIG_SYSFS_DEPRECATED_V2=y | 88 | CONFIG_SYSFS_DEPRECATED_V2=y |
87 | # CONFIG_RELAY is not set | 89 | # CONFIG_RELAY is not set |
@@ -116,7 +118,6 @@ CONFIG_SLUB_DEBUG=y | |||
116 | CONFIG_SLUB=y | 118 | CONFIG_SLUB=y |
117 | # CONFIG_SLOB is not set | 119 | # CONFIG_SLOB is not set |
118 | # CONFIG_PROFILING is not set | 120 | # CONFIG_PROFILING is not set |
119 | # CONFIG_MARKERS is not set | ||
120 | CONFIG_HAVE_OPROFILE=y | 121 | CONFIG_HAVE_OPROFILE=y |
121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 122 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
122 | CONFIG_HAVE_IOREMAP_PROT=y | 123 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -127,13 +128,11 @@ CONFIG_HAVE_CLK=y | |||
127 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 128 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
128 | CONFIG_SLABINFO=y | 129 | CONFIG_SLABINFO=y |
129 | CONFIG_RT_MUTEXES=y | 130 | CONFIG_RT_MUTEXES=y |
130 | # CONFIG_TINY_SHMEM is not set | ||
131 | CONFIG_BASE_SMALL=0 | 131 | CONFIG_BASE_SMALL=0 |
132 | # CONFIG_MODULES is not set | 132 | # CONFIG_MODULES is not set |
133 | CONFIG_BLOCK=y | 133 | CONFIG_BLOCK=y |
134 | # CONFIG_LBD is not set | 134 | # CONFIG_LBD is not set |
135 | # CONFIG_BLK_DEV_IO_TRACE is not set | 135 | # CONFIG_BLK_DEV_IO_TRACE is not set |
136 | # CONFIG_LSF is not set | ||
137 | # CONFIG_BLK_DEV_BSG is not set | 136 | # CONFIG_BLK_DEV_BSG is not set |
138 | # CONFIG_BLK_DEV_INTEGRITY is not set | 137 | # CONFIG_BLK_DEV_INTEGRITY is not set |
139 | 138 | ||
@@ -150,6 +149,10 @@ CONFIG_DEFAULT_AS=y | |||
150 | # CONFIG_DEFAULT_NOOP is not set | 149 | # CONFIG_DEFAULT_NOOP is not set |
151 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
152 | CONFIG_CLASSIC_RCU=y | 151 | CONFIG_CLASSIC_RCU=y |
152 | # CONFIG_TREE_RCU is not set | ||
153 | # CONFIG_PREEMPT_RCU is not set | ||
154 | # CONFIG_TREE_RCU_TRACE is not set | ||
155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
153 | # CONFIG_FREEZER is not set | 156 | # CONFIG_FREEZER is not set |
154 | 157 | ||
155 | # | 158 | # |
@@ -190,6 +193,7 @@ CONFIG_CPM2=y | |||
190 | # CONFIG_FSL_ULI1575 is not set | 193 | # CONFIG_FSL_ULI1575 is not set |
191 | CONFIG_CPM=y | 194 | CONFIG_CPM=y |
192 | # CONFIG_MPC8xxx_GPIO is not set | 195 | # CONFIG_MPC8xxx_GPIO is not set |
196 | # CONFIG_SIMPLE_GPIO is not set | ||
193 | 197 | ||
194 | # | 198 | # |
195 | # Kernel options | 199 | # Kernel options |
@@ -227,12 +231,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
227 | CONFIG_PAGEFLAGS_EXTENDED=y | 231 | CONFIG_PAGEFLAGS_EXTENDED=y |
228 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 232 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
229 | CONFIG_MIGRATION=y | 233 | CONFIG_MIGRATION=y |
230 | # CONFIG_RESOURCES_64BIT is not set | ||
231 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 234 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
232 | CONFIG_ZONE_DMA_FLAG=1 | 235 | CONFIG_ZONE_DMA_FLAG=1 |
233 | CONFIG_BOUNCE=y | 236 | CONFIG_BOUNCE=y |
234 | CONFIG_VIRT_TO_BUS=y | 237 | CONFIG_VIRT_TO_BUS=y |
235 | CONFIG_UNEVICTABLE_LRU=y | 238 | CONFIG_UNEVICTABLE_LRU=y |
239 | CONFIG_PPC_4K_PAGES=y | ||
240 | # CONFIG_PPC_16K_PAGES is not set | ||
241 | # CONFIG_PPC_64K_PAGES is not set | ||
236 | CONFIG_FORCE_MAX_ZONEORDER=11 | 242 | CONFIG_FORCE_MAX_ZONEORDER=11 |
237 | # CONFIG_PROC_DEVICETREE is not set | 243 | # CONFIG_PROC_DEVICETREE is not set |
238 | # CONFIG_CMDLINE_BOOL is not set | 244 | # CONFIG_CMDLINE_BOOL is not set |
@@ -257,6 +263,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
257 | # CONFIG_PCI_MSI is not set | 263 | # CONFIG_PCI_MSI is not set |
258 | # CONFIG_PCI_LEGACY is not set | 264 | # CONFIG_PCI_LEGACY is not set |
259 | CONFIG_PCI_DEBUG=y | 265 | CONFIG_PCI_DEBUG=y |
266 | # CONFIG_PCI_STUB is not set | ||
260 | # CONFIG_PCCARD is not set | 267 | # CONFIG_PCCARD is not set |
261 | # CONFIG_HOTPLUG_PCI is not set | 268 | # CONFIG_HOTPLUG_PCI is not set |
262 | # CONFIG_HAS_RAPIDIO is not set | 269 | # CONFIG_HAS_RAPIDIO is not set |
@@ -280,6 +287,7 @@ CONFIG_NET=y | |||
280 | # | 287 | # |
281 | # Networking options | 288 | # Networking options |
282 | # | 289 | # |
290 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
283 | CONFIG_PACKET=y | 291 | CONFIG_PACKET=y |
284 | # CONFIG_PACKET_MMAP is not set | 292 | # CONFIG_PACKET_MMAP is not set |
285 | CONFIG_UNIX=y | 293 | CONFIG_UNIX=y |
@@ -336,6 +344,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
336 | # CONFIG_ECONET is not set | 344 | # CONFIG_ECONET is not set |
337 | # CONFIG_WAN_ROUTER is not set | 345 | # CONFIG_WAN_ROUTER is not set |
338 | # CONFIG_NET_SCHED is not set | 346 | # CONFIG_NET_SCHED is not set |
347 | # CONFIG_DCB is not set | ||
339 | 348 | ||
340 | # | 349 | # |
341 | # Network testing | 350 | # Network testing |
@@ -351,8 +360,9 @@ CONFIG_WIRELESS=y | |||
351 | # CONFIG_CFG80211 is not set | 360 | # CONFIG_CFG80211 is not set |
352 | CONFIG_WIRELESS_OLD_REGULATORY=y | 361 | CONFIG_WIRELESS_OLD_REGULATORY=y |
353 | # CONFIG_WIRELESS_EXT is not set | 362 | # CONFIG_WIRELESS_EXT is not set |
363 | # CONFIG_LIB80211 is not set | ||
354 | # CONFIG_MAC80211 is not set | 364 | # CONFIG_MAC80211 is not set |
355 | # CONFIG_IEEE80211 is not set | 365 | # CONFIG_WIMAX is not set |
356 | # CONFIG_RFKILL is not set | 366 | # CONFIG_RFKILL is not set |
357 | # CONFIG_NET_9P is not set | 367 | # CONFIG_NET_9P is not set |
358 | 368 | ||
@@ -400,6 +410,7 @@ CONFIG_MISC_DEVICES=y | |||
400 | # CONFIG_TIFM_CORE is not set | 410 | # CONFIG_TIFM_CORE is not set |
401 | # CONFIG_ENCLOSURE_SERVICES is not set | 411 | # CONFIG_ENCLOSURE_SERVICES is not set |
402 | # CONFIG_HP_ILO is not set | 412 | # CONFIG_HP_ILO is not set |
413 | # CONFIG_C2PORT is not set | ||
403 | CONFIG_HAVE_IDE=y | 414 | CONFIG_HAVE_IDE=y |
404 | # CONFIG_IDE is not set | 415 | # CONFIG_IDE is not set |
405 | 416 | ||
@@ -448,6 +459,9 @@ CONFIG_DAVICOM_PHY=y | |||
448 | # CONFIG_BROADCOM_PHY is not set | 459 | # CONFIG_BROADCOM_PHY is not set |
449 | # CONFIG_ICPLUS_PHY is not set | 460 | # CONFIG_ICPLUS_PHY is not set |
450 | # CONFIG_REALTEK_PHY is not set | 461 | # CONFIG_REALTEK_PHY is not set |
462 | # CONFIG_NATIONAL_PHY is not set | ||
463 | # CONFIG_STE10XP is not set | ||
464 | # CONFIG_LSI_ET1011C_PHY is not set | ||
451 | # CONFIG_FIXED_PHY is not set | 465 | # CONFIG_FIXED_PHY is not set |
452 | # CONFIG_MDIO_BITBANG is not set | 466 | # CONFIG_MDIO_BITBANG is not set |
453 | CONFIG_NET_ETHERNET=y | 467 | CONFIG_NET_ETHERNET=y |
@@ -496,6 +510,7 @@ CONFIG_GIANFAR=y | |||
496 | # CONFIG_JME is not set | 510 | # CONFIG_JME is not set |
497 | CONFIG_NETDEV_10000=y | 511 | CONFIG_NETDEV_10000=y |
498 | # CONFIG_CHELSIO_T1 is not set | 512 | # CONFIG_CHELSIO_T1 is not set |
513 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
499 | # CONFIG_CHELSIO_T3 is not set | 514 | # CONFIG_CHELSIO_T3 is not set |
500 | # CONFIG_ENIC is not set | 515 | # CONFIG_ENIC is not set |
501 | # CONFIG_IXGBE is not set | 516 | # CONFIG_IXGBE is not set |
@@ -518,6 +533,10 @@ CONFIG_NETDEV_10000=y | |||
518 | # CONFIG_WLAN_PRE80211 is not set | 533 | # CONFIG_WLAN_PRE80211 is not set |
519 | # CONFIG_WLAN_80211 is not set | 534 | # CONFIG_WLAN_80211 is not set |
520 | # CONFIG_IWLWIFI_LEDS is not set | 535 | # CONFIG_IWLWIFI_LEDS is not set |
536 | |||
537 | # | ||
538 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
539 | # | ||
521 | # CONFIG_WAN is not set | 540 | # CONFIG_WAN is not set |
522 | # CONFIG_FDDI is not set | 541 | # CONFIG_FDDI is not set |
523 | # CONFIG_HIPPI is not set | 542 | # CONFIG_HIPPI is not set |
@@ -583,8 +602,10 @@ CONFIG_SERIAL_CPM=y | |||
583 | CONFIG_SERIAL_CPM_CONSOLE=y | 602 | CONFIG_SERIAL_CPM_CONSOLE=y |
584 | # CONFIG_SERIAL_JSM is not set | 603 | # CONFIG_SERIAL_JSM is not set |
585 | CONFIG_UNIX98_PTYS=y | 604 | CONFIG_UNIX98_PTYS=y |
605 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
586 | CONFIG_LEGACY_PTYS=y | 606 | CONFIG_LEGACY_PTYS=y |
587 | CONFIG_LEGACY_PTY_COUNT=256 | 607 | CONFIG_LEGACY_PTY_COUNT=256 |
608 | # CONFIG_HVC_UDBG is not set | ||
588 | # CONFIG_IPMI_HANDLER is not set | 609 | # CONFIG_IPMI_HANDLER is not set |
589 | CONFIG_HW_RANDOM=y | 610 | CONFIG_HW_RANDOM=y |
590 | # CONFIG_NVRAM is not set | 611 | # CONFIG_NVRAM is not set |
@@ -604,6 +625,11 @@ CONFIG_GPIOLIB=y | |||
604 | # CONFIG_GPIO_SYSFS is not set | 625 | # CONFIG_GPIO_SYSFS is not set |
605 | 626 | ||
606 | # | 627 | # |
628 | # Memory mapped GPIO expanders: | ||
629 | # | ||
630 | # CONFIG_GPIO_XILINX is not set | ||
631 | |||
632 | # | ||
607 | # I2C GPIO expanders: | 633 | # I2C GPIO expanders: |
608 | # | 634 | # |
609 | 635 | ||
@@ -637,11 +663,11 @@ CONFIG_HWMON=y | |||
637 | # CONFIG_THERMAL is not set | 663 | # CONFIG_THERMAL is not set |
638 | # CONFIG_THERMAL_HWMON is not set | 664 | # CONFIG_THERMAL_HWMON is not set |
639 | # CONFIG_WATCHDOG is not set | 665 | # CONFIG_WATCHDOG is not set |
666 | CONFIG_SSB_POSSIBLE=y | ||
640 | 667 | ||
641 | # | 668 | # |
642 | # Sonics Silicon Backplane | 669 | # Sonics Silicon Backplane |
643 | # | 670 | # |
644 | CONFIG_SSB_POSSIBLE=y | ||
645 | # CONFIG_SSB is not set | 671 | # CONFIG_SSB is not set |
646 | 672 | ||
647 | # | 673 | # |
@@ -651,14 +677,7 @@ CONFIG_SSB_POSSIBLE=y | |||
651 | # CONFIG_MFD_SM501 is not set | 677 | # CONFIG_MFD_SM501 is not set |
652 | # CONFIG_HTC_PASIC3 is not set | 678 | # CONFIG_HTC_PASIC3 is not set |
653 | # CONFIG_MFD_TMIO is not set | 679 | # CONFIG_MFD_TMIO is not set |
654 | |||
655 | # | ||
656 | # Voltage and Current regulators | ||
657 | # | ||
658 | # CONFIG_REGULATOR is not set | 680 | # CONFIG_REGULATOR is not set |
659 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
660 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
661 | # CONFIG_REGULATOR_BQ24022 is not set | ||
662 | 681 | ||
663 | # | 682 | # |
664 | # Multimedia devices | 683 | # Multimedia devices |
@@ -714,9 +733,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
714 | # | 733 | # |
715 | 734 | ||
716 | # | 735 | # |
717 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 736 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
718 | # | 737 | # |
719 | # CONFIG_USB_GADGET is not set | 738 | # CONFIG_USB_GADGET is not set |
739 | |||
740 | # | ||
741 | # OTG and related infrastructure | ||
742 | # | ||
720 | # CONFIG_UWB is not set | 743 | # CONFIG_UWB is not set |
721 | # CONFIG_MMC is not set | 744 | # CONFIG_MMC is not set |
722 | # CONFIG_MEMSTICK is not set | 745 | # CONFIG_MEMSTICK is not set |
@@ -748,6 +771,7 @@ CONFIG_FS_MBCACHE=y | |||
748 | CONFIG_FILE_LOCKING=y | 771 | CONFIG_FILE_LOCKING=y |
749 | # CONFIG_XFS_FS is not set | 772 | # CONFIG_XFS_FS is not set |
750 | # CONFIG_OCFS2_FS is not set | 773 | # CONFIG_OCFS2_FS is not set |
774 | # CONFIG_BTRFS_FS is not set | ||
751 | CONFIG_DNOTIFY=y | 775 | CONFIG_DNOTIFY=y |
752 | CONFIG_INOTIFY=y | 776 | CONFIG_INOTIFY=y |
753 | CONFIG_INOTIFY_USER=y | 777 | CONFIG_INOTIFY_USER=y |
@@ -781,10 +805,7 @@ CONFIG_TMPFS=y | |||
781 | # CONFIG_TMPFS_POSIX_ACL is not set | 805 | # CONFIG_TMPFS_POSIX_ACL is not set |
782 | # CONFIG_HUGETLB_PAGE is not set | 806 | # CONFIG_HUGETLB_PAGE is not set |
783 | # CONFIG_CONFIGFS_FS is not set | 807 | # CONFIG_CONFIGFS_FS is not set |
784 | 808 | CONFIG_MISC_FILESYSTEMS=y | |
785 | # | ||
786 | # Miscellaneous filesystems | ||
787 | # | ||
788 | # CONFIG_ADFS_FS is not set | 809 | # CONFIG_ADFS_FS is not set |
789 | # CONFIG_AFFS_FS is not set | 810 | # CONFIG_AFFS_FS is not set |
790 | # CONFIG_HFS_FS is not set | 811 | # CONFIG_HFS_FS is not set |
@@ -793,6 +814,7 @@ CONFIG_TMPFS=y | |||
793 | # CONFIG_BFS_FS is not set | 814 | # CONFIG_BFS_FS is not set |
794 | # CONFIG_EFS_FS is not set | 815 | # CONFIG_EFS_FS is not set |
795 | # CONFIG_CRAMFS is not set | 816 | # CONFIG_CRAMFS is not set |
817 | # CONFIG_SQUASHFS is not set | ||
796 | # CONFIG_VXFS_FS is not set | 818 | # CONFIG_VXFS_FS is not set |
797 | # CONFIG_MINIX_FS is not set | 819 | # CONFIG_MINIX_FS is not set |
798 | # CONFIG_OMFS_FS is not set | 820 | # CONFIG_OMFS_FS is not set |
@@ -843,6 +865,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
843 | # Library routines | 865 | # Library routines |
844 | # | 866 | # |
845 | CONFIG_BITREVERSE=y | 867 | CONFIG_BITREVERSE=y |
868 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
846 | # CONFIG_CRC_CCITT is not set | 869 | # CONFIG_CRC_CCITT is not set |
847 | # CONFIG_CRC16 is not set | 870 | # CONFIG_CRC16 is not set |
848 | # CONFIG_CRC_T10DIF is not set | 871 | # CONFIG_CRC_T10DIF is not set |
@@ -892,6 +915,7 @@ CONFIG_DEBUG_MUTEXES=y | |||
892 | # CONFIG_DEBUG_MEMORY_INIT is not set | 915 | # CONFIG_DEBUG_MEMORY_INIT is not set |
893 | # CONFIG_DEBUG_LIST is not set | 916 | # CONFIG_DEBUG_LIST is not set |
894 | # CONFIG_DEBUG_SG is not set | 917 | # CONFIG_DEBUG_SG is not set |
918 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
895 | # CONFIG_BOOT_PRINTK_DELAY is not set | 919 | # CONFIG_BOOT_PRINTK_DELAY is not set |
896 | # CONFIG_RCU_TORTURE_TEST is not set | 920 | # CONFIG_RCU_TORTURE_TEST is not set |
897 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 921 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -901,6 +925,8 @@ CONFIG_DEBUG_MUTEXES=y | |||
901 | # CONFIG_LATENCYTOP is not set | 925 | # CONFIG_LATENCYTOP is not set |
902 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 926 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
903 | CONFIG_HAVE_FUNCTION_TRACER=y | 927 | CONFIG_HAVE_FUNCTION_TRACER=y |
928 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
929 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
904 | 930 | ||
905 | # | 931 | # |
906 | # Tracers | 932 | # Tracers |
@@ -909,11 +935,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
909 | # CONFIG_SCHED_TRACER is not set | 935 | # CONFIG_SCHED_TRACER is not set |
910 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 936 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
911 | # CONFIG_BOOT_TRACER is not set | 937 | # CONFIG_BOOT_TRACER is not set |
938 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
912 | # CONFIG_STACK_TRACER is not set | 939 | # CONFIG_STACK_TRACER is not set |
913 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 940 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
914 | # CONFIG_SAMPLES is not set | 941 | # CONFIG_SAMPLES is not set |
915 | CONFIG_HAVE_ARCH_KGDB=y | 942 | CONFIG_HAVE_ARCH_KGDB=y |
916 | # CONFIG_KGDB is not set | 943 | # CONFIG_KGDB is not set |
944 | CONFIG_PRINT_STACK_DEPTH=64 | ||
917 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 945 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
918 | # CONFIG_DEBUG_STACK_USAGE is not set | 946 | # CONFIG_DEBUG_STACK_USAGE is not set |
919 | # CONFIG_DEBUG_PAGEALLOC is not set | 947 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -939,6 +967,7 @@ CONFIG_CRYPTO=y | |||
939 | # | 967 | # |
940 | # CONFIG_CRYPTO_FIPS is not set | 968 | # CONFIG_CRYPTO_FIPS is not set |
941 | # CONFIG_CRYPTO_MANAGER is not set | 969 | # CONFIG_CRYPTO_MANAGER is not set |
970 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
942 | # CONFIG_CRYPTO_GF128MUL is not set | 971 | # CONFIG_CRYPTO_GF128MUL is not set |
943 | # CONFIG_CRYPTO_NULL is not set | 972 | # CONFIG_CRYPTO_NULL is not set |
944 | # CONFIG_CRYPTO_CRYPTD is not set | 973 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/85xx/mpc8568mds_defconfig b/arch/powerpc/configs/85xx/mpc8568mds_defconfig index ab5b0b58924c..186c1010a135 100644 --- a/arch/powerpc/configs/85xx/mpc8568mds_defconfig +++ b/arch/powerpc/configs/85xx/mpc8568mds_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:11 2008 | 4 | # Mon Jan 26 15:36:10 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -45,7 +47,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
45 | CONFIG_PPC=y | 47 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 48 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 49 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 50 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 51 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 52 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 53 | CONFIG_OF=y |
@@ -75,12 +77,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 78 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 79 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 80 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 81 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 82 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 83 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 84 | # CONFIG_CGROUP_SCHED is not set |
85 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 86 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 87 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 88 | # CONFIG_RELAY is not set |
@@ -113,7 +115,6 @@ CONFIG_SLUB_DEBUG=y | |||
113 | CONFIG_SLUB=y | 115 | CONFIG_SLUB=y |
114 | # CONFIG_SLOB is not set | 116 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 117 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
119 | CONFIG_HAVE_IOREMAP_PROT=y | 120 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -123,7 +124,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
124 | CONFIG_SLABINFO=y | 125 | CONFIG_SLABINFO=y |
125 | CONFIG_RT_MUTEXES=y | 126 | CONFIG_RT_MUTEXES=y |
126 | # CONFIG_TINY_SHMEM is not set | ||
127 | CONFIG_BASE_SMALL=0 | 127 | CONFIG_BASE_SMALL=0 |
128 | CONFIG_MODULES=y | 128 | CONFIG_MODULES=y |
129 | # CONFIG_MODULE_FORCE_LOAD is not set | 129 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -131,11 +131,9 @@ CONFIG_MODULE_UNLOAD=y | |||
131 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 131 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
132 | # CONFIG_MODVERSIONS is not set | 132 | # CONFIG_MODVERSIONS is not set |
133 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 133 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
134 | CONFIG_KMOD=y | ||
135 | CONFIG_BLOCK=y | 134 | CONFIG_BLOCK=y |
136 | # CONFIG_LBD is not set | 135 | # CONFIG_LBD is not set |
137 | # CONFIG_BLK_DEV_IO_TRACE is not set | 136 | # CONFIG_BLK_DEV_IO_TRACE is not set |
138 | # CONFIG_LSF is not set | ||
139 | # CONFIG_BLK_DEV_BSG is not set | 137 | # CONFIG_BLK_DEV_BSG is not set |
140 | # CONFIG_BLK_DEV_INTEGRITY is not set | 138 | # CONFIG_BLK_DEV_INTEGRITY is not set |
141 | 139 | ||
@@ -152,6 +150,10 @@ CONFIG_DEFAULT_AS=y | |||
152 | # CONFIG_DEFAULT_NOOP is not set | 150 | # CONFIG_DEFAULT_NOOP is not set |
153 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 151 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
154 | CONFIG_CLASSIC_RCU=y | 152 | CONFIG_CLASSIC_RCU=y |
153 | # CONFIG_TREE_RCU is not set | ||
154 | # CONFIG_PREEMPT_RCU is not set | ||
155 | # CONFIG_TREE_RCU_TRACE is not set | ||
156 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
155 | # CONFIG_FREEZER is not set | 157 | # CONFIG_FREEZER is not set |
156 | 158 | ||
157 | # | 159 | # |
@@ -192,6 +194,7 @@ CONFIG_QUICC_ENGINE=y | |||
192 | # CONFIG_CPM2 is not set | 194 | # CONFIG_CPM2 is not set |
193 | # CONFIG_FSL_ULI1575 is not set | 195 | # CONFIG_FSL_ULI1575 is not set |
194 | # CONFIG_MPC8xxx_GPIO is not set | 196 | # CONFIG_MPC8xxx_GPIO is not set |
197 | # CONFIG_SIMPLE_GPIO is not set | ||
195 | 198 | ||
196 | # | 199 | # |
197 | # Kernel options | 200 | # Kernel options |
@@ -230,12 +233,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
230 | CONFIG_PAGEFLAGS_EXTENDED=y | 233 | CONFIG_PAGEFLAGS_EXTENDED=y |
231 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 234 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
232 | CONFIG_MIGRATION=y | 235 | CONFIG_MIGRATION=y |
233 | # CONFIG_RESOURCES_64BIT is not set | ||
234 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 236 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
235 | CONFIG_ZONE_DMA_FLAG=1 | 237 | CONFIG_ZONE_DMA_FLAG=1 |
236 | CONFIG_BOUNCE=y | 238 | CONFIG_BOUNCE=y |
237 | CONFIG_VIRT_TO_BUS=y | 239 | CONFIG_VIRT_TO_BUS=y |
238 | CONFIG_UNEVICTABLE_LRU=y | 240 | CONFIG_UNEVICTABLE_LRU=y |
241 | CONFIG_PPC_4K_PAGES=y | ||
242 | # CONFIG_PPC_16K_PAGES is not set | ||
243 | # CONFIG_PPC_64K_PAGES is not set | ||
239 | CONFIG_FORCE_MAX_ZONEORDER=11 | 244 | CONFIG_FORCE_MAX_ZONEORDER=11 |
240 | CONFIG_PROC_DEVICETREE=y | 245 | CONFIG_PROC_DEVICETREE=y |
241 | # CONFIG_CMDLINE_BOOL is not set | 246 | # CONFIG_CMDLINE_BOOL is not set |
@@ -260,6 +265,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
260 | # CONFIG_PCI_MSI is not set | 265 | # CONFIG_PCI_MSI is not set |
261 | # CONFIG_PCI_LEGACY is not set | 266 | # CONFIG_PCI_LEGACY is not set |
262 | # CONFIG_PCI_DEBUG is not set | 267 | # CONFIG_PCI_DEBUG is not set |
268 | # CONFIG_PCI_STUB is not set | ||
263 | # CONFIG_PCCARD is not set | 269 | # CONFIG_PCCARD is not set |
264 | # CONFIG_HOTPLUG_PCI is not set | 270 | # CONFIG_HOTPLUG_PCI is not set |
265 | # CONFIG_HAS_RAPIDIO is not set | 271 | # CONFIG_HAS_RAPIDIO is not set |
@@ -283,6 +289,7 @@ CONFIG_NET=y | |||
283 | # | 289 | # |
284 | # Networking options | 290 | # Networking options |
285 | # | 291 | # |
292 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
286 | CONFIG_PACKET=y | 293 | CONFIG_PACKET=y |
287 | # CONFIG_PACKET_MMAP is not set | 294 | # CONFIG_PACKET_MMAP is not set |
288 | CONFIG_UNIX=y | 295 | CONFIG_UNIX=y |
@@ -339,6 +346,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
339 | # CONFIG_ECONET is not set | 346 | # CONFIG_ECONET is not set |
340 | # CONFIG_WAN_ROUTER is not set | 347 | # CONFIG_WAN_ROUTER is not set |
341 | # CONFIG_NET_SCHED is not set | 348 | # CONFIG_NET_SCHED is not set |
349 | # CONFIG_DCB is not set | ||
342 | 350 | ||
343 | # | 351 | # |
344 | # Network testing | 352 | # Network testing |
@@ -354,8 +362,9 @@ CONFIG_WIRELESS=y | |||
354 | # CONFIG_CFG80211 is not set | 362 | # CONFIG_CFG80211 is not set |
355 | CONFIG_WIRELESS_OLD_REGULATORY=y | 363 | CONFIG_WIRELESS_OLD_REGULATORY=y |
356 | # CONFIG_WIRELESS_EXT is not set | 364 | # CONFIG_WIRELESS_EXT is not set |
365 | # CONFIG_LIB80211 is not set | ||
357 | # CONFIG_MAC80211 is not set | 366 | # CONFIG_MAC80211 is not set |
358 | # CONFIG_IEEE80211 is not set | 367 | # CONFIG_WIMAX is not set |
359 | # CONFIG_RFKILL is not set | 368 | # CONFIG_RFKILL is not set |
360 | # CONFIG_NET_9P is not set | 369 | # CONFIG_NET_9P is not set |
361 | 370 | ||
@@ -401,8 +410,10 @@ CONFIG_MISC_DEVICES=y | |||
401 | # CONFIG_EEPROM_93CX6 is not set | 410 | # CONFIG_EEPROM_93CX6 is not set |
402 | # CONFIG_SGI_IOC4 is not set | 411 | # CONFIG_SGI_IOC4 is not set |
403 | # CONFIG_TIFM_CORE is not set | 412 | # CONFIG_TIFM_CORE is not set |
413 | # CONFIG_ICS932S401 is not set | ||
404 | # CONFIG_ENCLOSURE_SERVICES is not set | 414 | # CONFIG_ENCLOSURE_SERVICES is not set |
405 | # CONFIG_HP_ILO is not set | 415 | # CONFIG_HP_ILO is not set |
416 | # CONFIG_C2PORT is not set | ||
406 | CONFIG_HAVE_IDE=y | 417 | CONFIG_HAVE_IDE=y |
407 | # CONFIG_IDE is not set | 418 | # CONFIG_IDE is not set |
408 | 419 | ||
@@ -445,6 +456,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
445 | # CONFIG_SCSI_SRP_ATTRS is not set | 456 | # CONFIG_SCSI_SRP_ATTRS is not set |
446 | CONFIG_SCSI_LOWLEVEL=y | 457 | CONFIG_SCSI_LOWLEVEL=y |
447 | # CONFIG_ISCSI_TCP is not set | 458 | # CONFIG_ISCSI_TCP is not set |
459 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
448 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 460 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
449 | # CONFIG_SCSI_3W_9XXX is not set | 461 | # CONFIG_SCSI_3W_9XXX is not set |
450 | # CONFIG_SCSI_ACARD is not set | 462 | # CONFIG_SCSI_ACARD is not set |
@@ -461,6 +473,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
461 | # CONFIG_MEGARAID_SAS is not set | 473 | # CONFIG_MEGARAID_SAS is not set |
462 | # CONFIG_SCSI_HPTIOP is not set | 474 | # CONFIG_SCSI_HPTIOP is not set |
463 | # CONFIG_SCSI_BUSLOGIC is not set | 475 | # CONFIG_SCSI_BUSLOGIC is not set |
476 | # CONFIG_LIBFC is not set | ||
477 | # CONFIG_FCOE is not set | ||
464 | # CONFIG_SCSI_DMX3191D is not set | 478 | # CONFIG_SCSI_DMX3191D is not set |
465 | # CONFIG_SCSI_EATA is not set | 479 | # CONFIG_SCSI_EATA is not set |
466 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 480 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -519,6 +533,9 @@ CONFIG_MARVELL_PHY=y | |||
519 | # CONFIG_BROADCOM_PHY is not set | 533 | # CONFIG_BROADCOM_PHY is not set |
520 | # CONFIG_ICPLUS_PHY is not set | 534 | # CONFIG_ICPLUS_PHY is not set |
521 | # CONFIG_REALTEK_PHY is not set | 535 | # CONFIG_REALTEK_PHY is not set |
536 | # CONFIG_NATIONAL_PHY is not set | ||
537 | # CONFIG_STE10XP is not set | ||
538 | # CONFIG_LSI_ET1011C_PHY is not set | ||
522 | # CONFIG_FIXED_PHY is not set | 539 | # CONFIG_FIXED_PHY is not set |
523 | # CONFIG_MDIO_BITBANG is not set | 540 | # CONFIG_MDIO_BITBANG is not set |
524 | CONFIG_NET_ETHERNET=y | 541 | CONFIG_NET_ETHERNET=y |
@@ -564,6 +581,7 @@ CONFIG_GIANFAR=y | |||
564 | # CONFIG_JME is not set | 581 | # CONFIG_JME is not set |
565 | CONFIG_NETDEV_10000=y | 582 | CONFIG_NETDEV_10000=y |
566 | # CONFIG_CHELSIO_T1 is not set | 583 | # CONFIG_CHELSIO_T1 is not set |
584 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
567 | # CONFIG_CHELSIO_T3 is not set | 585 | # CONFIG_CHELSIO_T3 is not set |
568 | # CONFIG_ENIC is not set | 586 | # CONFIG_ENIC is not set |
569 | # CONFIG_IXGBE is not set | 587 | # CONFIG_IXGBE is not set |
@@ -586,6 +604,10 @@ CONFIG_NETDEV_10000=y | |||
586 | # CONFIG_WLAN_PRE80211 is not set | 604 | # CONFIG_WLAN_PRE80211 is not set |
587 | # CONFIG_WLAN_80211 is not set | 605 | # CONFIG_WLAN_80211 is not set |
588 | # CONFIG_IWLWIFI_LEDS is not set | 606 | # CONFIG_IWLWIFI_LEDS is not set |
607 | |||
608 | # | ||
609 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
610 | # | ||
589 | # CONFIG_WAN is not set | 611 | # CONFIG_WAN is not set |
590 | # CONFIG_FDDI is not set | 612 | # CONFIG_FDDI is not set |
591 | # CONFIG_HIPPI is not set | 613 | # CONFIG_HIPPI is not set |
@@ -658,8 +680,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
658 | # CONFIG_SERIAL_OF_PLATFORM is not set | 680 | # CONFIG_SERIAL_OF_PLATFORM is not set |
659 | # CONFIG_SERIAL_QE is not set | 681 | # CONFIG_SERIAL_QE is not set |
660 | CONFIG_UNIX98_PTYS=y | 682 | CONFIG_UNIX98_PTYS=y |
683 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
661 | CONFIG_LEGACY_PTYS=y | 684 | CONFIG_LEGACY_PTYS=y |
662 | CONFIG_LEGACY_PTY_COUNT=256 | 685 | CONFIG_LEGACY_PTY_COUNT=256 |
686 | # CONFIG_HVC_UDBG is not set | ||
663 | # CONFIG_IPMI_HANDLER is not set | 687 | # CONFIG_IPMI_HANDLER is not set |
664 | CONFIG_HW_RANDOM=y | 688 | CONFIG_HW_RANDOM=y |
665 | # CONFIG_NVRAM is not set | 689 | # CONFIG_NVRAM is not set |
@@ -750,8 +774,10 @@ CONFIG_HWMON=y | |||
750 | # CONFIG_SENSORS_ADM1029 is not set | 774 | # CONFIG_SENSORS_ADM1029 is not set |
751 | # CONFIG_SENSORS_ADM1031 is not set | 775 | # CONFIG_SENSORS_ADM1031 is not set |
752 | # CONFIG_SENSORS_ADM9240 is not set | 776 | # CONFIG_SENSORS_ADM9240 is not set |
777 | # CONFIG_SENSORS_ADT7462 is not set | ||
753 | # CONFIG_SENSORS_ADT7470 is not set | 778 | # CONFIG_SENSORS_ADT7470 is not set |
754 | # CONFIG_SENSORS_ADT7473 is not set | 779 | # CONFIG_SENSORS_ADT7473 is not set |
780 | # CONFIG_SENSORS_ADT7475 is not set | ||
755 | # CONFIG_SENSORS_ATXP1 is not set | 781 | # CONFIG_SENSORS_ATXP1 is not set |
756 | # CONFIG_SENSORS_DS1621 is not set | 782 | # CONFIG_SENSORS_DS1621 is not set |
757 | # CONFIG_SENSORS_I5K_AMB is not set | 783 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -772,6 +798,7 @@ CONFIG_HWMON=y | |||
772 | # CONFIG_SENSORS_LM90 is not set | 798 | # CONFIG_SENSORS_LM90 is not set |
773 | # CONFIG_SENSORS_LM92 is not set | 799 | # CONFIG_SENSORS_LM92 is not set |
774 | # CONFIG_SENSORS_LM93 is not set | 800 | # CONFIG_SENSORS_LM93 is not set |
801 | # CONFIG_SENSORS_LTC4245 is not set | ||
775 | # CONFIG_SENSORS_MAX1619 is not set | 802 | # CONFIG_SENSORS_MAX1619 is not set |
776 | # CONFIG_SENSORS_MAX6650 is not set | 803 | # CONFIG_SENSORS_MAX6650 is not set |
777 | # CONFIG_SENSORS_PC87360 is not set | 804 | # CONFIG_SENSORS_PC87360 is not set |
@@ -812,11 +839,11 @@ CONFIG_WATCHDOG=y | |||
812 | # | 839 | # |
813 | # CONFIG_PCIPCWATCHDOG is not set | 840 | # CONFIG_PCIPCWATCHDOG is not set |
814 | # CONFIG_WDTPCI is not set | 841 | # CONFIG_WDTPCI is not set |
842 | CONFIG_SSB_POSSIBLE=y | ||
815 | 843 | ||
816 | # | 844 | # |
817 | # Sonics Silicon Backplane | 845 | # Sonics Silicon Backplane |
818 | # | 846 | # |
819 | CONFIG_SSB_POSSIBLE=y | ||
820 | # CONFIG_SSB is not set | 847 | # CONFIG_SSB is not set |
821 | 848 | ||
822 | # | 849 | # |
@@ -825,18 +852,13 @@ CONFIG_SSB_POSSIBLE=y | |||
825 | # CONFIG_MFD_CORE is not set | 852 | # CONFIG_MFD_CORE is not set |
826 | # CONFIG_MFD_SM501 is not set | 853 | # CONFIG_MFD_SM501 is not set |
827 | # CONFIG_HTC_PASIC3 is not set | 854 | # CONFIG_HTC_PASIC3 is not set |
855 | # CONFIG_TWL4030_CORE is not set | ||
828 | # CONFIG_MFD_TMIO is not set | 856 | # CONFIG_MFD_TMIO is not set |
829 | # CONFIG_PMIC_DA903X is not set | 857 | # CONFIG_PMIC_DA903X is not set |
830 | # CONFIG_MFD_WM8400 is not set | 858 | # CONFIG_MFD_WM8400 is not set |
831 | # CONFIG_MFD_WM8350_I2C is not set | 859 | # CONFIG_MFD_WM8350_I2C is not set |
832 | 860 | # CONFIG_MFD_PCF50633 is not set | |
833 | # | ||
834 | # Voltage and Current regulators | ||
835 | # | ||
836 | # CONFIG_REGULATOR is not set | 861 | # CONFIG_REGULATOR is not set |
837 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
838 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
839 | # CONFIG_REGULATOR_BQ24022 is not set | ||
840 | 862 | ||
841 | # | 863 | # |
842 | # Multimedia devices | 864 | # Multimedia devices |
@@ -892,9 +914,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
892 | # | 914 | # |
893 | 915 | ||
894 | # | 916 | # |
895 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 917 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
896 | # | 918 | # |
897 | # CONFIG_USB_GADGET is not set | 919 | # CONFIG_USB_GADGET is not set |
920 | |||
921 | # | ||
922 | # OTG and related infrastructure | ||
923 | # | ||
898 | # CONFIG_UWB is not set | 924 | # CONFIG_UWB is not set |
899 | # CONFIG_MMC is not set | 925 | # CONFIG_MMC is not set |
900 | # CONFIG_MEMSTICK is not set | 926 | # CONFIG_MEMSTICK is not set |
@@ -932,6 +958,7 @@ CONFIG_RTC_DRV_DS1374=y | |||
932 | # CONFIG_RTC_DRV_M41T80 is not set | 958 | # CONFIG_RTC_DRV_M41T80 is not set |
933 | # CONFIG_RTC_DRV_S35390A is not set | 959 | # CONFIG_RTC_DRV_S35390A is not set |
934 | # CONFIG_RTC_DRV_FM3130 is not set | 960 | # CONFIG_RTC_DRV_FM3130 is not set |
961 | # CONFIG_RTC_DRV_RX8581 is not set | ||
935 | 962 | ||
936 | # | 963 | # |
937 | # SPI RTC drivers | 964 | # SPI RTC drivers |
@@ -979,6 +1006,7 @@ CONFIG_FS_MBCACHE=y | |||
979 | CONFIG_FILE_LOCKING=y | 1006 | CONFIG_FILE_LOCKING=y |
980 | # CONFIG_XFS_FS is not set | 1007 | # CONFIG_XFS_FS is not set |
981 | # CONFIG_OCFS2_FS is not set | 1008 | # CONFIG_OCFS2_FS is not set |
1009 | # CONFIG_BTRFS_FS is not set | ||
982 | CONFIG_DNOTIFY=y | 1010 | CONFIG_DNOTIFY=y |
983 | CONFIG_INOTIFY=y | 1011 | CONFIG_INOTIFY=y |
984 | CONFIG_INOTIFY_USER=y | 1012 | CONFIG_INOTIFY_USER=y |
@@ -1012,10 +1040,7 @@ CONFIG_TMPFS=y | |||
1012 | # CONFIG_TMPFS_POSIX_ACL is not set | 1040 | # CONFIG_TMPFS_POSIX_ACL is not set |
1013 | # CONFIG_HUGETLB_PAGE is not set | 1041 | # CONFIG_HUGETLB_PAGE is not set |
1014 | # CONFIG_CONFIGFS_FS is not set | 1042 | # CONFIG_CONFIGFS_FS is not set |
1015 | 1043 | CONFIG_MISC_FILESYSTEMS=y | |
1016 | # | ||
1017 | # Miscellaneous filesystems | ||
1018 | # | ||
1019 | # CONFIG_ADFS_FS is not set | 1044 | # CONFIG_ADFS_FS is not set |
1020 | # CONFIG_AFFS_FS is not set | 1045 | # CONFIG_AFFS_FS is not set |
1021 | # CONFIG_HFS_FS is not set | 1046 | # CONFIG_HFS_FS is not set |
@@ -1024,6 +1049,7 @@ CONFIG_TMPFS=y | |||
1024 | # CONFIG_BFS_FS is not set | 1049 | # CONFIG_BFS_FS is not set |
1025 | # CONFIG_EFS_FS is not set | 1050 | # CONFIG_EFS_FS is not set |
1026 | # CONFIG_CRAMFS is not set | 1051 | # CONFIG_CRAMFS is not set |
1052 | # CONFIG_SQUASHFS is not set | ||
1027 | # CONFIG_VXFS_FS is not set | 1053 | # CONFIG_VXFS_FS is not set |
1028 | # CONFIG_MINIX_FS is not set | 1054 | # CONFIG_MINIX_FS is not set |
1029 | # CONFIG_OMFS_FS is not set | 1055 | # CONFIG_OMFS_FS is not set |
@@ -1077,6 +1103,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
1077 | # Library routines | 1103 | # Library routines |
1078 | # | 1104 | # |
1079 | CONFIG_BITREVERSE=y | 1105 | CONFIG_BITREVERSE=y |
1106 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1080 | # CONFIG_CRC_CCITT is not set | 1107 | # CONFIG_CRC_CCITT is not set |
1081 | # CONFIG_CRC16 is not set | 1108 | # CONFIG_CRC16 is not set |
1082 | # CONFIG_CRC_T10DIF is not set | 1109 | # CONFIG_CRC_T10DIF is not set |
@@ -1126,6 +1153,7 @@ CONFIG_SCHED_DEBUG=y | |||
1126 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1153 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1127 | # CONFIG_DEBUG_LIST is not set | 1154 | # CONFIG_DEBUG_LIST is not set |
1128 | # CONFIG_DEBUG_SG is not set | 1155 | # CONFIG_DEBUG_SG is not set |
1156 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1129 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1157 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1130 | # CONFIG_RCU_TORTURE_TEST is not set | 1158 | # CONFIG_RCU_TORTURE_TEST is not set |
1131 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1159 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1135,6 +1163,8 @@ CONFIG_SCHED_DEBUG=y | |||
1135 | # CONFIG_LATENCYTOP is not set | 1163 | # CONFIG_LATENCYTOP is not set |
1136 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1164 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1137 | CONFIG_HAVE_FUNCTION_TRACER=y | 1165 | CONFIG_HAVE_FUNCTION_TRACER=y |
1166 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1167 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1138 | 1168 | ||
1139 | # | 1169 | # |
1140 | # Tracers | 1170 | # Tracers |
@@ -1143,11 +1173,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1143 | # CONFIG_SCHED_TRACER is not set | 1173 | # CONFIG_SCHED_TRACER is not set |
1144 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1174 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1145 | # CONFIG_BOOT_TRACER is not set | 1175 | # CONFIG_BOOT_TRACER is not set |
1176 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1146 | # CONFIG_STACK_TRACER is not set | 1177 | # CONFIG_STACK_TRACER is not set |
1147 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1178 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1148 | # CONFIG_SAMPLES is not set | 1179 | # CONFIG_SAMPLES is not set |
1149 | CONFIG_HAVE_ARCH_KGDB=y | 1180 | CONFIG_HAVE_ARCH_KGDB=y |
1150 | # CONFIG_KGDB is not set | 1181 | # CONFIG_KGDB is not set |
1182 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1151 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1183 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1152 | # CONFIG_DEBUG_STACK_USAGE is not set | 1184 | # CONFIG_DEBUG_STACK_USAGE is not set |
1153 | # CONFIG_DEBUG_PAGEALLOC is not set | 1185 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1184,11 +1216,15 @@ CONFIG_CRYPTO=y | |||
1184 | # | 1216 | # |
1185 | # CONFIG_CRYPTO_FIPS is not set | 1217 | # CONFIG_CRYPTO_FIPS is not set |
1186 | CONFIG_CRYPTO_ALGAPI=y | 1218 | CONFIG_CRYPTO_ALGAPI=y |
1187 | CONFIG_CRYPTO_AEAD=y | 1219 | CONFIG_CRYPTO_ALGAPI2=y |
1220 | CONFIG_CRYPTO_AEAD2=y | ||
1188 | CONFIG_CRYPTO_BLKCIPHER=y | 1221 | CONFIG_CRYPTO_BLKCIPHER=y |
1222 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1189 | CONFIG_CRYPTO_HASH=y | 1223 | CONFIG_CRYPTO_HASH=y |
1190 | CONFIG_CRYPTO_RNG=y | 1224 | CONFIG_CRYPTO_HASH2=y |
1225 | CONFIG_CRYPTO_RNG2=y | ||
1191 | CONFIG_CRYPTO_MANAGER=y | 1226 | CONFIG_CRYPTO_MANAGER=y |
1227 | CONFIG_CRYPTO_MANAGER2=y | ||
1192 | # CONFIG_CRYPTO_GF128MUL is not set | 1228 | # CONFIG_CRYPTO_GF128MUL is not set |
1193 | # CONFIG_CRYPTO_NULL is not set | 1229 | # CONFIG_CRYPTO_NULL is not set |
1194 | # CONFIG_CRYPTO_CRYPTD is not set | 1230 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/85xx/mpc8572_ds_defconfig b/arch/powerpc/configs/85xx/mpc8572_ds_defconfig index 65ef823e08c6..813223ae174d 100644 --- a/arch/powerpc/configs/85xx/mpc8572_ds_defconfig +++ b/arch/powerpc/configs/85xx/mpc8572_ds_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc8 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Dec 30 11:17:46 2008 | 4 | # Mon Jan 26 15:36:12 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -48,7 +48,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
48 | CONFIG_PPC=y | 48 | CONFIG_PPC=y |
49 | CONFIG_EARLY_PRINTK=y | 49 | CONFIG_EARLY_PRINTK=y |
50 | CONFIG_GENERIC_NVRAM=y | 50 | CONFIG_GENERIC_NVRAM=y |
51 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 51 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
52 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 52 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
53 | CONFIG_PPC_OF=y | 53 | CONFIG_PPC_OF=y |
54 | CONFIG_OF=y | 54 | CONFIG_OF=y |
@@ -81,12 +81,12 @@ CONFIG_AUDIT=y | |||
81 | CONFIG_IKCONFIG=y | 81 | CONFIG_IKCONFIG=y |
82 | CONFIG_IKCONFIG_PROC=y | 82 | CONFIG_IKCONFIG_PROC=y |
83 | CONFIG_LOG_BUF_SHIFT=14 | 83 | CONFIG_LOG_BUF_SHIFT=14 |
84 | # CONFIG_CGROUPS is not set | ||
85 | CONFIG_GROUP_SCHED=y | 84 | CONFIG_GROUP_SCHED=y |
86 | # CONFIG_FAIR_GROUP_SCHED is not set | 85 | # CONFIG_FAIR_GROUP_SCHED is not set |
87 | # CONFIG_RT_GROUP_SCHED is not set | 86 | # CONFIG_RT_GROUP_SCHED is not set |
88 | CONFIG_USER_SCHED=y | 87 | CONFIG_USER_SCHED=y |
89 | # CONFIG_CGROUP_SCHED is not set | 88 | # CONFIG_CGROUP_SCHED is not set |
89 | # CONFIG_CGROUPS is not set | ||
90 | CONFIG_SYSFS_DEPRECATED=y | 90 | CONFIG_SYSFS_DEPRECATED=y |
91 | CONFIG_SYSFS_DEPRECATED_V2=y | 91 | CONFIG_SYSFS_DEPRECATED_V2=y |
92 | # CONFIG_RELAY is not set | 92 | # CONFIG_RELAY is not set |
@@ -99,6 +99,7 @@ CONFIG_EMBEDDED=y | |||
99 | CONFIG_SYSCTL_SYSCALL=y | 99 | CONFIG_SYSCTL_SYSCALL=y |
100 | CONFIG_KALLSYMS=y | 100 | CONFIG_KALLSYMS=y |
101 | CONFIG_KALLSYMS_ALL=y | 101 | CONFIG_KALLSYMS_ALL=y |
102 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
102 | CONFIG_KALLSYMS_EXTRA_PASS=y | 103 | CONFIG_KALLSYMS_EXTRA_PASS=y |
103 | CONFIG_HOTPLUG=y | 104 | CONFIG_HOTPLUG=y |
104 | CONFIG_PRINTK=y | 105 | CONFIG_PRINTK=y |
@@ -121,7 +122,6 @@ CONFIG_SLUB_DEBUG=y | |||
121 | CONFIG_SLUB=y | 122 | CONFIG_SLUB=y |
122 | # CONFIG_SLOB is not set | 123 | # CONFIG_SLOB is not set |
123 | # CONFIG_PROFILING is not set | 124 | # CONFIG_PROFILING is not set |
124 | # CONFIG_MARKERS is not set | ||
125 | CONFIG_HAVE_OPROFILE=y | 125 | CONFIG_HAVE_OPROFILE=y |
126 | # CONFIG_KPROBES is not set | 126 | # CONFIG_KPROBES is not set |
127 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 127 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -133,7 +133,6 @@ CONFIG_USE_GENERIC_SMP_HELPERS=y | |||
133 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 133 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
134 | CONFIG_SLABINFO=y | 134 | CONFIG_SLABINFO=y |
135 | CONFIG_RT_MUTEXES=y | 135 | CONFIG_RT_MUTEXES=y |
136 | # CONFIG_TINY_SHMEM is not set | ||
137 | CONFIG_BASE_SMALL=0 | 136 | CONFIG_BASE_SMALL=0 |
138 | CONFIG_MODULES=y | 137 | CONFIG_MODULES=y |
139 | # CONFIG_MODULE_FORCE_LOAD is not set | 138 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -141,12 +140,10 @@ CONFIG_MODULE_UNLOAD=y | |||
141 | CONFIG_MODULE_FORCE_UNLOAD=y | 140 | CONFIG_MODULE_FORCE_UNLOAD=y |
142 | CONFIG_MODVERSIONS=y | 141 | CONFIG_MODVERSIONS=y |
143 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 142 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
144 | CONFIG_KMOD=y | ||
145 | CONFIG_STOP_MACHINE=y | 143 | CONFIG_STOP_MACHINE=y |
146 | CONFIG_BLOCK=y | 144 | CONFIG_BLOCK=y |
147 | CONFIG_LBD=y | 145 | CONFIG_LBD=y |
148 | # CONFIG_BLK_DEV_IO_TRACE is not set | 146 | # CONFIG_BLK_DEV_IO_TRACE is not set |
149 | # CONFIG_LSF is not set | ||
150 | # CONFIG_BLK_DEV_BSG is not set | 147 | # CONFIG_BLK_DEV_BSG is not set |
151 | # CONFIG_BLK_DEV_INTEGRITY is not set | 148 | # CONFIG_BLK_DEV_INTEGRITY is not set |
152 | 149 | ||
@@ -163,6 +160,10 @@ CONFIG_DEFAULT_CFQ=y | |||
163 | # CONFIG_DEFAULT_NOOP is not set | 160 | # CONFIG_DEFAULT_NOOP is not set |
164 | CONFIG_DEFAULT_IOSCHED="cfq" | 161 | CONFIG_DEFAULT_IOSCHED="cfq" |
165 | CONFIG_CLASSIC_RCU=y | 162 | CONFIG_CLASSIC_RCU=y |
163 | # CONFIG_TREE_RCU is not set | ||
164 | # CONFIG_PREEMPT_RCU is not set | ||
165 | # CONFIG_TREE_RCU_TRACE is not set | ||
166 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
166 | # CONFIG_FREEZER is not set | 167 | # CONFIG_FREEZER is not set |
167 | 168 | ||
168 | # | 169 | # |
@@ -242,7 +243,6 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
242 | CONFIG_PAGEFLAGS_EXTENDED=y | 243 | CONFIG_PAGEFLAGS_EXTENDED=y |
243 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 244 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
244 | CONFIG_MIGRATION=y | 245 | CONFIG_MIGRATION=y |
245 | # CONFIG_RESOURCES_64BIT is not set | ||
246 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 246 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
247 | CONFIG_ZONE_DMA_FLAG=1 | 247 | CONFIG_ZONE_DMA_FLAG=1 |
248 | CONFIG_BOUNCE=y | 248 | CONFIG_BOUNCE=y |
@@ -276,6 +276,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
276 | # CONFIG_PCI_MSI is not set | 276 | # CONFIG_PCI_MSI is not set |
277 | # CONFIG_PCI_LEGACY is not set | 277 | # CONFIG_PCI_LEGACY is not set |
278 | # CONFIG_PCI_DEBUG is not set | 278 | # CONFIG_PCI_DEBUG is not set |
279 | # CONFIG_PCI_STUB is not set | ||
279 | # CONFIG_PCCARD is not set | 280 | # CONFIG_PCCARD is not set |
280 | # CONFIG_HOTPLUG_PCI is not set | 281 | # CONFIG_HOTPLUG_PCI is not set |
281 | # CONFIG_HAS_RAPIDIO is not set | 282 | # CONFIG_HAS_RAPIDIO is not set |
@@ -299,6 +300,7 @@ CONFIG_NET=y | |||
299 | # | 300 | # |
300 | # Networking options | 301 | # Networking options |
301 | # | 302 | # |
303 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
302 | CONFIG_PACKET=y | 304 | CONFIG_PACKET=y |
303 | # CONFIG_PACKET_MMAP is not set | 305 | # CONFIG_PACKET_MMAP is not set |
304 | CONFIG_UNIX=y | 306 | CONFIG_UNIX=y |
@@ -387,6 +389,7 @@ CONFIG_SCTP_HMAC_MD5=y | |||
387 | # CONFIG_ECONET is not set | 389 | # CONFIG_ECONET is not set |
388 | # CONFIG_WAN_ROUTER is not set | 390 | # CONFIG_WAN_ROUTER is not set |
389 | # CONFIG_NET_SCHED is not set | 391 | # CONFIG_NET_SCHED is not set |
392 | # CONFIG_DCB is not set | ||
390 | 393 | ||
391 | # | 394 | # |
392 | # Network testing | 395 | # Network testing |
@@ -403,8 +406,9 @@ CONFIG_WIRELESS=y | |||
403 | # CONFIG_CFG80211 is not set | 406 | # CONFIG_CFG80211 is not set |
404 | CONFIG_WIRELESS_OLD_REGULATORY=y | 407 | CONFIG_WIRELESS_OLD_REGULATORY=y |
405 | # CONFIG_WIRELESS_EXT is not set | 408 | # CONFIG_WIRELESS_EXT is not set |
409 | # CONFIG_LIB80211 is not set | ||
406 | # CONFIG_MAC80211 is not set | 410 | # CONFIG_MAC80211 is not set |
407 | # CONFIG_IEEE80211 is not set | 411 | # CONFIG_WIMAX is not set |
408 | # CONFIG_RFKILL is not set | 412 | # CONFIG_RFKILL is not set |
409 | # CONFIG_NET_9P is not set | 413 | # CONFIG_NET_9P is not set |
410 | 414 | ||
@@ -500,6 +504,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
500 | # CONFIG_SCSI_SRP_ATTRS is not set | 504 | # CONFIG_SCSI_SRP_ATTRS is not set |
501 | CONFIG_SCSI_LOWLEVEL=y | 505 | CONFIG_SCSI_LOWLEVEL=y |
502 | # CONFIG_ISCSI_TCP is not set | 506 | # CONFIG_ISCSI_TCP is not set |
507 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
503 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 508 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
504 | # CONFIG_SCSI_3W_9XXX is not set | 509 | # CONFIG_SCSI_3W_9XXX is not set |
505 | # CONFIG_SCSI_ACARD is not set | 510 | # CONFIG_SCSI_ACARD is not set |
@@ -516,6 +521,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
516 | # CONFIG_MEGARAID_SAS is not set | 521 | # CONFIG_MEGARAID_SAS is not set |
517 | # CONFIG_SCSI_HPTIOP is not set | 522 | # CONFIG_SCSI_HPTIOP is not set |
518 | # CONFIG_SCSI_BUSLOGIC is not set | 523 | # CONFIG_SCSI_BUSLOGIC is not set |
524 | # CONFIG_LIBFC is not set | ||
525 | # CONFIG_FCOE is not set | ||
519 | # CONFIG_SCSI_DMX3191D is not set | 526 | # CONFIG_SCSI_DMX3191D is not set |
520 | # CONFIG_SCSI_EATA is not set | 527 | # CONFIG_SCSI_EATA is not set |
521 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 528 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -635,6 +642,9 @@ CONFIG_VITESSE_PHY=y | |||
635 | # CONFIG_BROADCOM_PHY is not set | 642 | # CONFIG_BROADCOM_PHY is not set |
636 | # CONFIG_ICPLUS_PHY is not set | 643 | # CONFIG_ICPLUS_PHY is not set |
637 | # CONFIG_REALTEK_PHY is not set | 644 | # CONFIG_REALTEK_PHY is not set |
645 | # CONFIG_NATIONAL_PHY is not set | ||
646 | # CONFIG_STE10XP is not set | ||
647 | # CONFIG_LSI_ET1011C_PHY is not set | ||
638 | # CONFIG_FIXED_PHY is not set | 648 | # CONFIG_FIXED_PHY is not set |
639 | # CONFIG_MDIO_BITBANG is not set | 649 | # CONFIG_MDIO_BITBANG is not set |
640 | CONFIG_NET_ETHERNET=y | 650 | CONFIG_NET_ETHERNET=y |
@@ -679,6 +689,7 @@ CONFIG_GIANFAR=y | |||
679 | # CONFIG_JME is not set | 689 | # CONFIG_JME is not set |
680 | CONFIG_NETDEV_10000=y | 690 | CONFIG_NETDEV_10000=y |
681 | # CONFIG_CHELSIO_T1 is not set | 691 | # CONFIG_CHELSIO_T1 is not set |
692 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
682 | # CONFIG_CHELSIO_T3 is not set | 693 | # CONFIG_CHELSIO_T3 is not set |
683 | # CONFIG_ENIC is not set | 694 | # CONFIG_ENIC is not set |
684 | # CONFIG_IXGBE is not set | 695 | # CONFIG_IXGBE is not set |
@@ -703,6 +714,10 @@ CONFIG_NETDEV_10000=y | |||
703 | # CONFIG_IWLWIFI_LEDS is not set | 714 | # CONFIG_IWLWIFI_LEDS is not set |
704 | 715 | ||
705 | # | 716 | # |
717 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
718 | # | ||
719 | |||
720 | # | ||
706 | # USB Network Adapters | 721 | # USB Network Adapters |
707 | # | 722 | # |
708 | # CONFIG_USB_CATC is not set | 723 | # CONFIG_USB_CATC is not set |
@@ -794,6 +809,7 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
794 | # CONFIG_SERIAL_JSM is not set | 809 | # CONFIG_SERIAL_JSM is not set |
795 | # CONFIG_SERIAL_OF_PLATFORM is not set | 810 | # CONFIG_SERIAL_OF_PLATFORM is not set |
796 | CONFIG_UNIX98_PTYS=y | 811 | CONFIG_UNIX98_PTYS=y |
812 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
797 | CONFIG_LEGACY_PTYS=y | 813 | CONFIG_LEGACY_PTYS=y |
798 | CONFIG_LEGACY_PTY_COUNT=256 | 814 | CONFIG_LEGACY_PTY_COUNT=256 |
799 | # CONFIG_HVC_UDBG is not set | 815 | # CONFIG_HVC_UDBG is not set |
@@ -895,10 +911,12 @@ CONFIG_SSB_POSSIBLE=y | |||
895 | # CONFIG_MFD_CORE is not set | 911 | # CONFIG_MFD_CORE is not set |
896 | # CONFIG_MFD_SM501 is not set | 912 | # CONFIG_MFD_SM501 is not set |
897 | # CONFIG_HTC_PASIC3 is not set | 913 | # CONFIG_HTC_PASIC3 is not set |
914 | # CONFIG_TWL4030_CORE is not set | ||
898 | # CONFIG_MFD_TMIO is not set | 915 | # CONFIG_MFD_TMIO is not set |
899 | # CONFIG_PMIC_DA903X is not set | 916 | # CONFIG_PMIC_DA903X is not set |
900 | # CONFIG_MFD_WM8400 is not set | 917 | # CONFIG_MFD_WM8400 is not set |
901 | # CONFIG_MFD_WM8350_I2C is not set | 918 | # CONFIG_MFD_WM8350_I2C is not set |
919 | # CONFIG_MFD_PCF50633 is not set | ||
902 | # CONFIG_REGULATOR is not set | 920 | # CONFIG_REGULATOR is not set |
903 | 921 | ||
904 | # | 922 | # |
@@ -926,6 +944,7 @@ CONFIG_MEDIA_TUNER_TEA5767=m | |||
926 | CONFIG_MEDIA_TUNER_MT20XX=m | 944 | CONFIG_MEDIA_TUNER_MT20XX=m |
927 | CONFIG_MEDIA_TUNER_XC2028=m | 945 | CONFIG_MEDIA_TUNER_XC2028=m |
928 | CONFIG_MEDIA_TUNER_XC5000=m | 946 | CONFIG_MEDIA_TUNER_XC5000=m |
947 | # CONFIG_DVB_DYNAMIC_MINORS is not set | ||
929 | CONFIG_DVB_CAPTURE_DRIVERS=y | 948 | CONFIG_DVB_CAPTURE_DRIVERS=y |
930 | 949 | ||
931 | # | 950 | # |
@@ -971,6 +990,12 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
971 | # CONFIG_DVB_FE_CUSTOMISE is not set | 990 | # CONFIG_DVB_FE_CUSTOMISE is not set |
972 | 991 | ||
973 | # | 992 | # |
993 | # Multistandard (satellite) frontends | ||
994 | # | ||
995 | # CONFIG_DVB_STB0899 is not set | ||
996 | # CONFIG_DVB_STB6100 is not set | ||
997 | |||
998 | # | ||
974 | # DVB-S (satellite) frontends | 999 | # DVB-S (satellite) frontends |
975 | # | 1000 | # |
976 | # CONFIG_DVB_CX24110 is not set | 1001 | # CONFIG_DVB_CX24110 is not set |
@@ -982,8 +1007,10 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
982 | # CONFIG_DVB_STV0299 is not set | 1007 | # CONFIG_DVB_STV0299 is not set |
983 | # CONFIG_DVB_TDA8083 is not set | 1008 | # CONFIG_DVB_TDA8083 is not set |
984 | # CONFIG_DVB_TDA10086 is not set | 1009 | # CONFIG_DVB_TDA10086 is not set |
1010 | # CONFIG_DVB_TDA8261 is not set | ||
985 | # CONFIG_DVB_VES1X93 is not set | 1011 | # CONFIG_DVB_VES1X93 is not set |
986 | # CONFIG_DVB_TUNER_ITD1000 is not set | 1012 | # CONFIG_DVB_TUNER_ITD1000 is not set |
1013 | # CONFIG_DVB_TUNER_CX24113 is not set | ||
987 | # CONFIG_DVB_TDA826X is not set | 1014 | # CONFIG_DVB_TDA826X is not set |
988 | # CONFIG_DVB_TUA6100 is not set | 1015 | # CONFIG_DVB_TUA6100 is not set |
989 | # CONFIG_DVB_CX24116 is not set | 1016 | # CONFIG_DVB_CX24116 is not set |
@@ -1024,11 +1051,17 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
1024 | # CONFIG_DVB_OR51132 is not set | 1051 | # CONFIG_DVB_OR51132 is not set |
1025 | # CONFIG_DVB_BCM3510 is not set | 1052 | # CONFIG_DVB_BCM3510 is not set |
1026 | # CONFIG_DVB_LGDT330X is not set | 1053 | # CONFIG_DVB_LGDT330X is not set |
1054 | # CONFIG_DVB_LGDT3304 is not set | ||
1027 | # CONFIG_DVB_S5H1409 is not set | 1055 | # CONFIG_DVB_S5H1409 is not set |
1028 | # CONFIG_DVB_AU8522 is not set | 1056 | # CONFIG_DVB_AU8522 is not set |
1029 | # CONFIG_DVB_S5H1411 is not set | 1057 | # CONFIG_DVB_S5H1411 is not set |
1030 | 1058 | ||
1031 | # | 1059 | # |
1060 | # ISDB-T (terrestrial) frontends | ||
1061 | # | ||
1062 | # CONFIG_DVB_S921 is not set | ||
1063 | |||
1064 | # | ||
1032 | # Digital terrestrial only tuners/PLL | 1065 | # Digital terrestrial only tuners/PLL |
1033 | # | 1066 | # |
1034 | # CONFIG_DVB_PLL is not set | 1067 | # CONFIG_DVB_PLL is not set |
@@ -1081,6 +1114,7 @@ CONFIG_SND_OSSEMUL=y | |||
1081 | CONFIG_SND_MIXER_OSS=y | 1114 | CONFIG_SND_MIXER_OSS=y |
1082 | CONFIG_SND_PCM_OSS=y | 1115 | CONFIG_SND_PCM_OSS=y |
1083 | CONFIG_SND_PCM_OSS_PLUGINS=y | 1116 | CONFIG_SND_PCM_OSS_PLUGINS=y |
1117 | # CONFIG_SND_HRTIMER is not set | ||
1084 | # CONFIG_SND_DYNAMIC_MINORS is not set | 1118 | # CONFIG_SND_DYNAMIC_MINORS is not set |
1085 | # CONFIG_SND_SUPPORT_OLD_API is not set | 1119 | # CONFIG_SND_SUPPORT_OLD_API is not set |
1086 | CONFIG_SND_VERBOSE_PROCFS=y | 1120 | CONFIG_SND_VERBOSE_PROCFS=y |
@@ -1183,11 +1217,9 @@ CONFIG_HID_COMPAT=y | |||
1183 | CONFIG_HID_A4TECH=y | 1217 | CONFIG_HID_A4TECH=y |
1184 | CONFIG_HID_APPLE=y | 1218 | CONFIG_HID_APPLE=y |
1185 | CONFIG_HID_BELKIN=y | 1219 | CONFIG_HID_BELKIN=y |
1186 | CONFIG_HID_BRIGHT=y | ||
1187 | CONFIG_HID_CHERRY=y | 1220 | CONFIG_HID_CHERRY=y |
1188 | CONFIG_HID_CHICONY=y | 1221 | CONFIG_HID_CHICONY=y |
1189 | CONFIG_HID_CYPRESS=y | 1222 | CONFIG_HID_CYPRESS=y |
1190 | CONFIG_HID_DELL=y | ||
1191 | CONFIG_HID_EZKEY=y | 1223 | CONFIG_HID_EZKEY=y |
1192 | CONFIG_HID_GYRATION=y | 1224 | CONFIG_HID_GYRATION=y |
1193 | CONFIG_HID_LOGITECH=y | 1225 | CONFIG_HID_LOGITECH=y |
@@ -1195,12 +1227,15 @@ CONFIG_HID_LOGITECH=y | |||
1195 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1227 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
1196 | CONFIG_HID_MICROSOFT=y | 1228 | CONFIG_HID_MICROSOFT=y |
1197 | CONFIG_HID_MONTEREY=y | 1229 | CONFIG_HID_MONTEREY=y |
1230 | # CONFIG_HID_NTRIG is not set | ||
1198 | CONFIG_HID_PANTHERLORD=y | 1231 | CONFIG_HID_PANTHERLORD=y |
1199 | # CONFIG_PANTHERLORD_FF is not set | 1232 | # CONFIG_PANTHERLORD_FF is not set |
1200 | CONFIG_HID_PETALYNX=y | 1233 | CONFIG_HID_PETALYNX=y |
1201 | CONFIG_HID_SAMSUNG=y | 1234 | CONFIG_HID_SAMSUNG=y |
1202 | CONFIG_HID_SONY=y | 1235 | CONFIG_HID_SONY=y |
1203 | CONFIG_HID_SUNPLUS=y | 1236 | CONFIG_HID_SUNPLUS=y |
1237 | # CONFIG_GREENASIA_FF is not set | ||
1238 | # CONFIG_HID_TOPSEED is not set | ||
1204 | CONFIG_THRUSTMASTER_FF=m | 1239 | CONFIG_THRUSTMASTER_FF=m |
1205 | CONFIG_ZEROPLUS_FF=m | 1240 | CONFIG_ZEROPLUS_FF=m |
1206 | CONFIG_USB_SUPPORT=y | 1241 | CONFIG_USB_SUPPORT=y |
@@ -1233,6 +1268,7 @@ CONFIG_USB_EHCI_HCD=y | |||
1233 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1268 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1234 | # CONFIG_USB_EHCI_FSL is not set | 1269 | # CONFIG_USB_EHCI_FSL is not set |
1235 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1270 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1271 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1236 | # CONFIG_USB_ISP116X_HCD is not set | 1272 | # CONFIG_USB_ISP116X_HCD is not set |
1237 | # CONFIG_USB_ISP1760_HCD is not set | 1273 | # CONFIG_USB_ISP1760_HCD is not set |
1238 | CONFIG_USB_OHCI_HCD=y | 1274 | CONFIG_USB_OHCI_HCD=y |
@@ -1269,7 +1305,6 @@ CONFIG_USB_STORAGE=y | |||
1269 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1305 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1270 | # CONFIG_USB_STORAGE_FREECOM is not set | 1306 | # CONFIG_USB_STORAGE_FREECOM is not set |
1271 | # CONFIG_USB_STORAGE_ISD200 is not set | 1307 | # CONFIG_USB_STORAGE_ISD200 is not set |
1272 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1273 | # CONFIG_USB_STORAGE_USBAT is not set | 1308 | # CONFIG_USB_STORAGE_USBAT is not set |
1274 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1309 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1275 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1310 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1317,6 +1352,10 @@ CONFIG_USB_STORAGE=y | |||
1317 | # CONFIG_USB_ISIGHTFW is not set | 1352 | # CONFIG_USB_ISIGHTFW is not set |
1318 | # CONFIG_USB_VST is not set | 1353 | # CONFIG_USB_VST is not set |
1319 | # CONFIG_USB_GADGET is not set | 1354 | # CONFIG_USB_GADGET is not set |
1355 | |||
1356 | # | ||
1357 | # OTG and related infrastructure | ||
1358 | # | ||
1320 | # CONFIG_UWB is not set | 1359 | # CONFIG_UWB is not set |
1321 | # CONFIG_MMC is not set | 1360 | # CONFIG_MMC is not set |
1322 | # CONFIG_MEMSTICK is not set | 1361 | # CONFIG_MEMSTICK is not set |
@@ -1401,7 +1440,9 @@ CONFIG_FS_MBCACHE=y | |||
1401 | # CONFIG_FS_POSIX_ACL is not set | 1440 | # CONFIG_FS_POSIX_ACL is not set |
1402 | CONFIG_FILE_LOCKING=y | 1441 | CONFIG_FILE_LOCKING=y |
1403 | # CONFIG_XFS_FS is not set | 1442 | # CONFIG_XFS_FS is not set |
1443 | # CONFIG_GFS2_FS is not set | ||
1404 | # CONFIG_OCFS2_FS is not set | 1444 | # CONFIG_OCFS2_FS is not set |
1445 | # CONFIG_BTRFS_FS is not set | ||
1405 | CONFIG_DNOTIFY=y | 1446 | CONFIG_DNOTIFY=y |
1406 | CONFIG_INOTIFY=y | 1447 | CONFIG_INOTIFY=y |
1407 | CONFIG_INOTIFY_USER=y | 1448 | CONFIG_INOTIFY_USER=y |
@@ -1443,10 +1484,7 @@ CONFIG_TMPFS=y | |||
1443 | # CONFIG_TMPFS_POSIX_ACL is not set | 1484 | # CONFIG_TMPFS_POSIX_ACL is not set |
1444 | # CONFIG_HUGETLB_PAGE is not set | 1485 | # CONFIG_HUGETLB_PAGE is not set |
1445 | # CONFIG_CONFIGFS_FS is not set | 1486 | # CONFIG_CONFIGFS_FS is not set |
1446 | 1487 | CONFIG_MISC_FILESYSTEMS=y | |
1447 | # | ||
1448 | # Miscellaneous filesystems | ||
1449 | # | ||
1450 | CONFIG_ADFS_FS=m | 1488 | CONFIG_ADFS_FS=m |
1451 | # CONFIG_ADFS_FS_RW is not set | 1489 | # CONFIG_ADFS_FS_RW is not set |
1452 | CONFIG_AFFS_FS=m | 1490 | CONFIG_AFFS_FS=m |
@@ -1457,6 +1495,7 @@ CONFIG_BEFS_FS=m | |||
1457 | CONFIG_BFS_FS=m | 1495 | CONFIG_BFS_FS=m |
1458 | CONFIG_EFS_FS=m | 1496 | CONFIG_EFS_FS=m |
1459 | CONFIG_CRAMFS=y | 1497 | CONFIG_CRAMFS=y |
1498 | # CONFIG_SQUASHFS is not set | ||
1460 | CONFIG_VXFS_FS=m | 1499 | CONFIG_VXFS_FS=m |
1461 | # CONFIG_MINIX_FS is not set | 1500 | # CONFIG_MINIX_FS is not set |
1462 | # CONFIG_OMFS_FS is not set | 1501 | # CONFIG_OMFS_FS is not set |
@@ -1558,6 +1597,7 @@ CONFIG_NLS_UTF8=m | |||
1558 | # Library routines | 1597 | # Library routines |
1559 | # | 1598 | # |
1560 | CONFIG_BITREVERSE=y | 1599 | CONFIG_BITREVERSE=y |
1600 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1561 | # CONFIG_CRC_CCITT is not set | 1601 | # CONFIG_CRC_CCITT is not set |
1562 | # CONFIG_CRC16 is not set | 1602 | # CONFIG_CRC16 is not set |
1563 | CONFIG_CRC_T10DIF=y | 1603 | CONFIG_CRC_T10DIF=y |
@@ -1609,6 +1649,7 @@ CONFIG_DEBUG_INFO=y | |||
1609 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1649 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1610 | # CONFIG_DEBUG_LIST is not set | 1650 | # CONFIG_DEBUG_LIST is not set |
1611 | # CONFIG_DEBUG_SG is not set | 1651 | # CONFIG_DEBUG_SG is not set |
1652 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1612 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1653 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1613 | # CONFIG_RCU_TORTURE_TEST is not set | 1654 | # CONFIG_RCU_TORTURE_TEST is not set |
1614 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1655 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1618,6 +1659,8 @@ CONFIG_DEBUG_INFO=y | |||
1618 | # CONFIG_LATENCYTOP is not set | 1659 | # CONFIG_LATENCYTOP is not set |
1619 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1660 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1620 | CONFIG_HAVE_FUNCTION_TRACER=y | 1661 | CONFIG_HAVE_FUNCTION_TRACER=y |
1662 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1663 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1621 | 1664 | ||
1622 | # | 1665 | # |
1623 | # Tracers | 1666 | # Tracers |
@@ -1626,6 +1669,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1626 | # CONFIG_SCHED_TRACER is not set | 1669 | # CONFIG_SCHED_TRACER is not set |
1627 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1670 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1628 | # CONFIG_BOOT_TRACER is not set | 1671 | # CONFIG_BOOT_TRACER is not set |
1672 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1629 | # CONFIG_STACK_TRACER is not set | 1673 | # CONFIG_STACK_TRACER is not set |
1630 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1674 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1631 | # CONFIG_SAMPLES is not set | 1675 | # CONFIG_SAMPLES is not set |
@@ -1700,7 +1744,7 @@ CONFIG_CRYPTO_HMAC=y | |||
1700 | # | 1744 | # |
1701 | # Digest | 1745 | # Digest |
1702 | # | 1746 | # |
1703 | # CONFIG_CRYPTO_CRC32C is not set | 1747 | CONFIG_CRYPTO_CRC32C=m |
1704 | # CONFIG_CRYPTO_MD4 is not set | 1748 | # CONFIG_CRYPTO_MD4 is not set |
1705 | CONFIG_CRYPTO_MD5=y | 1749 | CONFIG_CRYPTO_MD5=y |
1706 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1750 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
diff --git a/arch/powerpc/configs/85xx/mpc85xx_cds_defconfig b/arch/powerpc/configs/85xx/mpc85xx_cds_defconfig index 8769359dfe6a..f95961c04a20 100644 --- a/arch/powerpc/configs/85xx/mpc85xx_cds_defconfig +++ b/arch/powerpc/configs/85xx/mpc85xx_cds_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:14 2008 | 4 | # Mon Jan 26 15:36:13 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -45,7 +47,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
45 | CONFIG_PPC=y | 47 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 48 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 49 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 50 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 51 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 52 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 53 | CONFIG_OF=y |
@@ -75,12 +77,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 78 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 79 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 80 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 81 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 82 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 83 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 84 | # CONFIG_CGROUP_SCHED is not set |
85 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 86 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 87 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 88 | # CONFIG_RELAY is not set |
@@ -115,7 +117,6 @@ CONFIG_SLUB_DEBUG=y | |||
115 | CONFIG_SLUB=y | 117 | CONFIG_SLUB=y |
116 | # CONFIG_SLOB is not set | 118 | # CONFIG_SLOB is not set |
117 | # CONFIG_PROFILING is not set | 119 | # CONFIG_PROFILING is not set |
118 | # CONFIG_MARKERS is not set | ||
119 | CONFIG_HAVE_OPROFILE=y | 120 | CONFIG_HAVE_OPROFILE=y |
120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
121 | CONFIG_HAVE_IOREMAP_PROT=y | 122 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -125,13 +126,11 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
126 | CONFIG_SLABINFO=y | 127 | CONFIG_SLABINFO=y |
127 | CONFIG_RT_MUTEXES=y | 128 | CONFIG_RT_MUTEXES=y |
128 | # CONFIG_TINY_SHMEM is not set | ||
129 | CONFIG_BASE_SMALL=0 | 129 | CONFIG_BASE_SMALL=0 |
130 | # CONFIG_MODULES is not set | 130 | # CONFIG_MODULES is not set |
131 | CONFIG_BLOCK=y | 131 | CONFIG_BLOCK=y |
132 | # CONFIG_LBD is not set | 132 | # CONFIG_LBD is not set |
133 | # CONFIG_BLK_DEV_IO_TRACE is not set | 133 | # CONFIG_BLK_DEV_IO_TRACE is not set |
134 | # CONFIG_LSF is not set | ||
135 | # CONFIG_BLK_DEV_BSG is not set | 134 | # CONFIG_BLK_DEV_BSG is not set |
136 | # CONFIG_BLK_DEV_INTEGRITY is not set | 135 | # CONFIG_BLK_DEV_INTEGRITY is not set |
137 | 136 | ||
@@ -148,6 +147,10 @@ CONFIG_DEFAULT_AS=y | |||
148 | # CONFIG_DEFAULT_NOOP is not set | 147 | # CONFIG_DEFAULT_NOOP is not set |
149 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 148 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
150 | CONFIG_CLASSIC_RCU=y | 149 | CONFIG_CLASSIC_RCU=y |
150 | # CONFIG_TREE_RCU is not set | ||
151 | # CONFIG_PREEMPT_RCU is not set | ||
152 | # CONFIG_TREE_RCU_TRACE is not set | ||
153 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
151 | # CONFIG_FREEZER is not set | 154 | # CONFIG_FREEZER is not set |
152 | 155 | ||
153 | # | 156 | # |
@@ -187,6 +190,7 @@ CONFIG_PPC_I8259=y | |||
187 | # CONFIG_CPM2 is not set | 190 | # CONFIG_CPM2 is not set |
188 | # CONFIG_FSL_ULI1575 is not set | 191 | # CONFIG_FSL_ULI1575 is not set |
189 | # CONFIG_MPC8xxx_GPIO is not set | 192 | # CONFIG_MPC8xxx_GPIO is not set |
193 | # CONFIG_SIMPLE_GPIO is not set | ||
190 | 194 | ||
191 | # | 195 | # |
192 | # Kernel options | 196 | # Kernel options |
@@ -225,12 +229,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
225 | CONFIG_PAGEFLAGS_EXTENDED=y | 229 | CONFIG_PAGEFLAGS_EXTENDED=y |
226 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 230 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
227 | CONFIG_MIGRATION=y | 231 | CONFIG_MIGRATION=y |
228 | # CONFIG_RESOURCES_64BIT is not set | ||
229 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 232 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
230 | CONFIG_ZONE_DMA_FLAG=1 | 233 | CONFIG_ZONE_DMA_FLAG=1 |
231 | CONFIG_BOUNCE=y | 234 | CONFIG_BOUNCE=y |
232 | CONFIG_VIRT_TO_BUS=y | 235 | CONFIG_VIRT_TO_BUS=y |
233 | CONFIG_UNEVICTABLE_LRU=y | 236 | CONFIG_UNEVICTABLE_LRU=y |
237 | CONFIG_PPC_4K_PAGES=y | ||
238 | # CONFIG_PPC_16K_PAGES is not set | ||
239 | # CONFIG_PPC_64K_PAGES is not set | ||
234 | CONFIG_FORCE_MAX_ZONEORDER=11 | 240 | CONFIG_FORCE_MAX_ZONEORDER=11 |
235 | CONFIG_PROC_DEVICETREE=y | 241 | CONFIG_PROC_DEVICETREE=y |
236 | # CONFIG_CMDLINE_BOOL is not set | 242 | # CONFIG_CMDLINE_BOOL is not set |
@@ -255,6 +261,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
255 | # CONFIG_PCI_MSI is not set | 261 | # CONFIG_PCI_MSI is not set |
256 | # CONFIG_PCI_LEGACY is not set | 262 | # CONFIG_PCI_LEGACY is not set |
257 | # CONFIG_PCI_DEBUG is not set | 263 | # CONFIG_PCI_DEBUG is not set |
264 | # CONFIG_PCI_STUB is not set | ||
258 | # CONFIG_PCCARD is not set | 265 | # CONFIG_PCCARD is not set |
259 | # CONFIG_HOTPLUG_PCI is not set | 266 | # CONFIG_HOTPLUG_PCI is not set |
260 | # CONFIG_HAS_RAPIDIO is not set | 267 | # CONFIG_HAS_RAPIDIO is not set |
@@ -278,6 +285,7 @@ CONFIG_NET=y | |||
278 | # | 285 | # |
279 | # Networking options | 286 | # Networking options |
280 | # | 287 | # |
288 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
281 | CONFIG_PACKET=y | 289 | CONFIG_PACKET=y |
282 | # CONFIG_PACKET_MMAP is not set | 290 | # CONFIG_PACKET_MMAP is not set |
283 | CONFIG_UNIX=y | 291 | CONFIG_UNIX=y |
@@ -334,6 +342,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
334 | # CONFIG_ECONET is not set | 342 | # CONFIG_ECONET is not set |
335 | # CONFIG_WAN_ROUTER is not set | 343 | # CONFIG_WAN_ROUTER is not set |
336 | # CONFIG_NET_SCHED is not set | 344 | # CONFIG_NET_SCHED is not set |
345 | # CONFIG_DCB is not set | ||
337 | 346 | ||
338 | # | 347 | # |
339 | # Network testing | 348 | # Network testing |
@@ -349,8 +358,9 @@ CONFIG_WIRELESS=y | |||
349 | # CONFIG_CFG80211 is not set | 358 | # CONFIG_CFG80211 is not set |
350 | CONFIG_WIRELESS_OLD_REGULATORY=y | 359 | CONFIG_WIRELESS_OLD_REGULATORY=y |
351 | # CONFIG_WIRELESS_EXT is not set | 360 | # CONFIG_WIRELESS_EXT is not set |
361 | # CONFIG_LIB80211 is not set | ||
352 | # CONFIG_MAC80211 is not set | 362 | # CONFIG_MAC80211 is not set |
353 | # CONFIG_IEEE80211 is not set | 363 | # CONFIG_WIMAX is not set |
354 | # CONFIG_RFKILL is not set | 364 | # CONFIG_RFKILL is not set |
355 | # CONFIG_NET_9P is not set | 365 | # CONFIG_NET_9P is not set |
356 | 366 | ||
@@ -397,6 +407,7 @@ CONFIG_MISC_DEVICES=y | |||
397 | # CONFIG_TIFM_CORE is not set | 407 | # CONFIG_TIFM_CORE is not set |
398 | # CONFIG_ENCLOSURE_SERVICES is not set | 408 | # CONFIG_ENCLOSURE_SERVICES is not set |
399 | # CONFIG_HP_ILO is not set | 409 | # CONFIG_HP_ILO is not set |
410 | # CONFIG_C2PORT is not set | ||
400 | CONFIG_HAVE_IDE=y | 411 | CONFIG_HAVE_IDE=y |
401 | CONFIG_IDE=y | 412 | CONFIG_IDE=y |
402 | 413 | ||
@@ -439,6 +450,7 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
439 | # CONFIG_BLK_DEV_JMICRON is not set | 450 | # CONFIG_BLK_DEV_JMICRON is not set |
440 | # CONFIG_BLK_DEV_SC1200 is not set | 451 | # CONFIG_BLK_DEV_SC1200 is not set |
441 | # CONFIG_BLK_DEV_PIIX is not set | 452 | # CONFIG_BLK_DEV_PIIX is not set |
453 | # CONFIG_BLK_DEV_IT8172 is not set | ||
442 | # CONFIG_BLK_DEV_IT8213 is not set | 454 | # CONFIG_BLK_DEV_IT8213 is not set |
443 | # CONFIG_BLK_DEV_IT821X is not set | 455 | # CONFIG_BLK_DEV_IT821X is not set |
444 | # CONFIG_BLK_DEV_NS87415 is not set | 456 | # CONFIG_BLK_DEV_NS87415 is not set |
@@ -498,6 +510,9 @@ CONFIG_PHYLIB=y | |||
498 | # CONFIG_BROADCOM_PHY is not set | 510 | # CONFIG_BROADCOM_PHY is not set |
499 | # CONFIG_ICPLUS_PHY is not set | 511 | # CONFIG_ICPLUS_PHY is not set |
500 | # CONFIG_REALTEK_PHY is not set | 512 | # CONFIG_REALTEK_PHY is not set |
513 | # CONFIG_NATIONAL_PHY is not set | ||
514 | # CONFIG_STE10XP is not set | ||
515 | # CONFIG_LSI_ET1011C_PHY is not set | ||
501 | # CONFIG_FIXED_PHY is not set | 516 | # CONFIG_FIXED_PHY is not set |
502 | # CONFIG_MDIO_BITBANG is not set | 517 | # CONFIG_MDIO_BITBANG is not set |
503 | CONFIG_NET_ETHERNET=y | 518 | CONFIG_NET_ETHERNET=y |
@@ -542,6 +557,7 @@ CONFIG_GIANFAR=y | |||
542 | # CONFIG_JME is not set | 557 | # CONFIG_JME is not set |
543 | CONFIG_NETDEV_10000=y | 558 | CONFIG_NETDEV_10000=y |
544 | # CONFIG_CHELSIO_T1 is not set | 559 | # CONFIG_CHELSIO_T1 is not set |
560 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
545 | # CONFIG_CHELSIO_T3 is not set | 561 | # CONFIG_CHELSIO_T3 is not set |
546 | # CONFIG_ENIC is not set | 562 | # CONFIG_ENIC is not set |
547 | # CONFIG_IXGBE is not set | 563 | # CONFIG_IXGBE is not set |
@@ -564,6 +580,10 @@ CONFIG_NETDEV_10000=y | |||
564 | # CONFIG_WLAN_PRE80211 is not set | 580 | # CONFIG_WLAN_PRE80211 is not set |
565 | # CONFIG_WLAN_80211 is not set | 581 | # CONFIG_WLAN_80211 is not set |
566 | # CONFIG_IWLWIFI_LEDS is not set | 582 | # CONFIG_IWLWIFI_LEDS is not set |
583 | |||
584 | # | ||
585 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
586 | # | ||
567 | # CONFIG_WAN is not set | 587 | # CONFIG_WAN is not set |
568 | # CONFIG_FDDI is not set | 588 | # CONFIG_FDDI is not set |
569 | # CONFIG_HIPPI is not set | 589 | # CONFIG_HIPPI is not set |
@@ -634,8 +654,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
634 | # CONFIG_SERIAL_JSM is not set | 654 | # CONFIG_SERIAL_JSM is not set |
635 | # CONFIG_SERIAL_OF_PLATFORM is not set | 655 | # CONFIG_SERIAL_OF_PLATFORM is not set |
636 | CONFIG_UNIX98_PTYS=y | 656 | CONFIG_UNIX98_PTYS=y |
657 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
637 | CONFIG_LEGACY_PTYS=y | 658 | CONFIG_LEGACY_PTYS=y |
638 | CONFIG_LEGACY_PTY_COUNT=256 | 659 | CONFIG_LEGACY_PTY_COUNT=256 |
660 | # CONFIG_HVC_UDBG is not set | ||
639 | # CONFIG_IPMI_HANDLER is not set | 661 | # CONFIG_IPMI_HANDLER is not set |
640 | # CONFIG_HW_RANDOM is not set | 662 | # CONFIG_HW_RANDOM is not set |
641 | # CONFIG_NVRAM is not set | 663 | # CONFIG_NVRAM is not set |
@@ -672,11 +694,11 @@ CONFIG_HWMON=y | |||
672 | # CONFIG_THERMAL is not set | 694 | # CONFIG_THERMAL is not set |
673 | # CONFIG_THERMAL_HWMON is not set | 695 | # CONFIG_THERMAL_HWMON is not set |
674 | # CONFIG_WATCHDOG is not set | 696 | # CONFIG_WATCHDOG is not set |
697 | CONFIG_SSB_POSSIBLE=y | ||
675 | 698 | ||
676 | # | 699 | # |
677 | # Sonics Silicon Backplane | 700 | # Sonics Silicon Backplane |
678 | # | 701 | # |
679 | CONFIG_SSB_POSSIBLE=y | ||
680 | # CONFIG_SSB is not set | 702 | # CONFIG_SSB is not set |
681 | 703 | ||
682 | # | 704 | # |
@@ -686,14 +708,7 @@ CONFIG_SSB_POSSIBLE=y | |||
686 | # CONFIG_MFD_SM501 is not set | 708 | # CONFIG_MFD_SM501 is not set |
687 | # CONFIG_HTC_PASIC3 is not set | 709 | # CONFIG_HTC_PASIC3 is not set |
688 | # CONFIG_MFD_TMIO is not set | 710 | # CONFIG_MFD_TMIO is not set |
689 | |||
690 | # | ||
691 | # Voltage and Current regulators | ||
692 | # | ||
693 | # CONFIG_REGULATOR is not set | 711 | # CONFIG_REGULATOR is not set |
694 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
695 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
696 | # CONFIG_REGULATOR_BQ24022 is not set | ||
697 | 712 | ||
698 | # | 713 | # |
699 | # Multimedia devices | 714 | # Multimedia devices |
@@ -749,9 +764,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
749 | # | 764 | # |
750 | 765 | ||
751 | # | 766 | # |
752 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 767 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
753 | # | 768 | # |
754 | # CONFIG_USB_GADGET is not set | 769 | # CONFIG_USB_GADGET is not set |
770 | |||
771 | # | ||
772 | # OTG and related infrastructure | ||
773 | # | ||
755 | # CONFIG_UWB is not set | 774 | # CONFIG_UWB is not set |
756 | # CONFIG_MMC is not set | 775 | # CONFIG_MMC is not set |
757 | # CONFIG_MEMSTICK is not set | 776 | # CONFIG_MEMSTICK is not set |
@@ -783,6 +802,7 @@ CONFIG_FS_MBCACHE=y | |||
783 | CONFIG_FILE_LOCKING=y | 802 | CONFIG_FILE_LOCKING=y |
784 | # CONFIG_XFS_FS is not set | 803 | # CONFIG_XFS_FS is not set |
785 | # CONFIG_OCFS2_FS is not set | 804 | # CONFIG_OCFS2_FS is not set |
805 | # CONFIG_BTRFS_FS is not set | ||
786 | CONFIG_DNOTIFY=y | 806 | CONFIG_DNOTIFY=y |
787 | CONFIG_INOTIFY=y | 807 | CONFIG_INOTIFY=y |
788 | CONFIG_INOTIFY_USER=y | 808 | CONFIG_INOTIFY_USER=y |
@@ -816,10 +836,7 @@ CONFIG_TMPFS=y | |||
816 | # CONFIG_TMPFS_POSIX_ACL is not set | 836 | # CONFIG_TMPFS_POSIX_ACL is not set |
817 | # CONFIG_HUGETLB_PAGE is not set | 837 | # CONFIG_HUGETLB_PAGE is not set |
818 | # CONFIG_CONFIGFS_FS is not set | 838 | # CONFIG_CONFIGFS_FS is not set |
819 | 839 | CONFIG_MISC_FILESYSTEMS=y | |
820 | # | ||
821 | # Miscellaneous filesystems | ||
822 | # | ||
823 | # CONFIG_ADFS_FS is not set | 840 | # CONFIG_ADFS_FS is not set |
824 | # CONFIG_AFFS_FS is not set | 841 | # CONFIG_AFFS_FS is not set |
825 | # CONFIG_HFS_FS is not set | 842 | # CONFIG_HFS_FS is not set |
@@ -828,6 +845,7 @@ CONFIG_TMPFS=y | |||
828 | # CONFIG_BFS_FS is not set | 845 | # CONFIG_BFS_FS is not set |
829 | # CONFIG_EFS_FS is not set | 846 | # CONFIG_EFS_FS is not set |
830 | # CONFIG_CRAMFS is not set | 847 | # CONFIG_CRAMFS is not set |
848 | # CONFIG_SQUASHFS is not set | ||
831 | # CONFIG_VXFS_FS is not set | 849 | # CONFIG_VXFS_FS is not set |
832 | # CONFIG_MINIX_FS is not set | 850 | # CONFIG_MINIX_FS is not set |
833 | # CONFIG_OMFS_FS is not set | 851 | # CONFIG_OMFS_FS is not set |
@@ -878,6 +896,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
878 | # Library routines | 896 | # Library routines |
879 | # | 897 | # |
880 | CONFIG_BITREVERSE=y | 898 | CONFIG_BITREVERSE=y |
899 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
881 | # CONFIG_CRC_CCITT is not set | 900 | # CONFIG_CRC_CCITT is not set |
882 | # CONFIG_CRC16 is not set | 901 | # CONFIG_CRC16 is not set |
883 | # CONFIG_CRC_T10DIF is not set | 902 | # CONFIG_CRC_T10DIF is not set |
@@ -927,6 +946,7 @@ CONFIG_DEBUG_MUTEXES=y | |||
927 | # CONFIG_DEBUG_MEMORY_INIT is not set | 946 | # CONFIG_DEBUG_MEMORY_INIT is not set |
928 | # CONFIG_DEBUG_LIST is not set | 947 | # CONFIG_DEBUG_LIST is not set |
929 | # CONFIG_DEBUG_SG is not set | 948 | # CONFIG_DEBUG_SG is not set |
949 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
930 | # CONFIG_BOOT_PRINTK_DELAY is not set | 950 | # CONFIG_BOOT_PRINTK_DELAY is not set |
931 | # CONFIG_RCU_TORTURE_TEST is not set | 951 | # CONFIG_RCU_TORTURE_TEST is not set |
932 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 952 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -936,6 +956,8 @@ CONFIG_DEBUG_MUTEXES=y | |||
936 | # CONFIG_LATENCYTOP is not set | 956 | # CONFIG_LATENCYTOP is not set |
937 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 957 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
938 | CONFIG_HAVE_FUNCTION_TRACER=y | 958 | CONFIG_HAVE_FUNCTION_TRACER=y |
959 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
960 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
939 | 961 | ||
940 | # | 962 | # |
941 | # Tracers | 963 | # Tracers |
@@ -944,11 +966,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
944 | # CONFIG_SCHED_TRACER is not set | 966 | # CONFIG_SCHED_TRACER is not set |
945 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 967 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
946 | # CONFIG_BOOT_TRACER is not set | 968 | # CONFIG_BOOT_TRACER is not set |
969 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
947 | # CONFIG_STACK_TRACER is not set | 970 | # CONFIG_STACK_TRACER is not set |
948 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 971 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
949 | # CONFIG_SAMPLES is not set | 972 | # CONFIG_SAMPLES is not set |
950 | CONFIG_HAVE_ARCH_KGDB=y | 973 | CONFIG_HAVE_ARCH_KGDB=y |
951 | # CONFIG_KGDB is not set | 974 | # CONFIG_KGDB is not set |
975 | CONFIG_PRINT_STACK_DEPTH=64 | ||
952 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 976 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
953 | # CONFIG_DEBUG_STACK_USAGE is not set | 977 | # CONFIG_DEBUG_STACK_USAGE is not set |
954 | # CONFIG_DEBUG_PAGEALLOC is not set | 978 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -974,6 +998,7 @@ CONFIG_CRYPTO=y | |||
974 | # | 998 | # |
975 | # CONFIG_CRYPTO_FIPS is not set | 999 | # CONFIG_CRYPTO_FIPS is not set |
976 | # CONFIG_CRYPTO_MANAGER is not set | 1000 | # CONFIG_CRYPTO_MANAGER is not set |
1001 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
977 | # CONFIG_CRYPTO_GF128MUL is not set | 1002 | # CONFIG_CRYPTO_GF128MUL is not set |
978 | # CONFIG_CRYPTO_NULL is not set | 1003 | # CONFIG_CRYPTO_NULL is not set |
979 | # CONFIG_CRYPTO_CRYPTD is not set | 1004 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/85xx/sbc8548_defconfig b/arch/powerpc/configs/85xx/sbc8548_defconfig index bfe3c9731573..e68e80987aa9 100644 --- a/arch/powerpc/configs/85xx/sbc8548_defconfig +++ b/arch/powerpc/configs/85xx/sbc8548_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:16 2008 | 4 | # Mon Jan 26 15:36:15 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -45,7 +47,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
45 | CONFIG_PPC=y | 47 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 48 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 49 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 50 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 51 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 52 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 53 | CONFIG_OF=y |
@@ -75,12 +77,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 78 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 79 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 80 | CONFIG_GROUP_SCHED=y |
80 | CONFIG_FAIR_GROUP_SCHED=y | 81 | CONFIG_FAIR_GROUP_SCHED=y |
81 | # CONFIG_RT_GROUP_SCHED is not set | 82 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 83 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 84 | # CONFIG_CGROUP_SCHED is not set |
85 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 86 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 87 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 88 | # CONFIG_RELAY is not set |
@@ -113,7 +115,6 @@ CONFIG_SLAB=y | |||
113 | # CONFIG_SLUB is not set | 115 | # CONFIG_SLUB is not set |
114 | # CONFIG_SLOB is not set | 116 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 117 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
119 | CONFIG_HAVE_IOREMAP_PROT=y | 120 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -123,13 +124,11 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
124 | CONFIG_SLABINFO=y | 125 | CONFIG_SLABINFO=y |
125 | CONFIG_RT_MUTEXES=y | 126 | CONFIG_RT_MUTEXES=y |
126 | # CONFIG_TINY_SHMEM is not set | ||
127 | CONFIG_BASE_SMALL=0 | 127 | CONFIG_BASE_SMALL=0 |
128 | # CONFIG_MODULES is not set | 128 | # CONFIG_MODULES is not set |
129 | CONFIG_BLOCK=y | 129 | CONFIG_BLOCK=y |
130 | # CONFIG_LBD is not set | 130 | # CONFIG_LBD is not set |
131 | # CONFIG_BLK_DEV_IO_TRACE is not set | 131 | # CONFIG_BLK_DEV_IO_TRACE is not set |
132 | # CONFIG_LSF is not set | ||
133 | # CONFIG_BLK_DEV_BSG is not set | 132 | # CONFIG_BLK_DEV_BSG is not set |
134 | # CONFIG_BLK_DEV_INTEGRITY is not set | 133 | # CONFIG_BLK_DEV_INTEGRITY is not set |
135 | 134 | ||
@@ -146,6 +145,10 @@ CONFIG_DEFAULT_AS=y | |||
146 | # CONFIG_DEFAULT_NOOP is not set | 145 | # CONFIG_DEFAULT_NOOP is not set |
147 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 146 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
148 | CONFIG_CLASSIC_RCU=y | 147 | CONFIG_CLASSIC_RCU=y |
148 | # CONFIG_TREE_RCU is not set | ||
149 | # CONFIG_PREEMPT_RCU is not set | ||
150 | # CONFIG_TREE_RCU_TRACE is not set | ||
151 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
149 | # CONFIG_FREEZER is not set | 152 | # CONFIG_FREEZER is not set |
150 | 153 | ||
151 | # | 154 | # |
@@ -185,6 +188,7 @@ CONFIG_MPIC=y | |||
185 | # CONFIG_CPM2 is not set | 188 | # CONFIG_CPM2 is not set |
186 | # CONFIG_FSL_ULI1575 is not set | 189 | # CONFIG_FSL_ULI1575 is not set |
187 | # CONFIG_MPC8xxx_GPIO is not set | 190 | # CONFIG_MPC8xxx_GPIO is not set |
191 | # CONFIG_SIMPLE_GPIO is not set | ||
188 | 192 | ||
189 | # | 193 | # |
190 | # Kernel options | 194 | # Kernel options |
@@ -222,12 +226,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
222 | CONFIG_PAGEFLAGS_EXTENDED=y | 226 | CONFIG_PAGEFLAGS_EXTENDED=y |
223 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 227 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
224 | CONFIG_MIGRATION=y | 228 | CONFIG_MIGRATION=y |
225 | # CONFIG_RESOURCES_64BIT is not set | ||
226 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 229 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
227 | CONFIG_ZONE_DMA_FLAG=1 | 230 | CONFIG_ZONE_DMA_FLAG=1 |
228 | CONFIG_BOUNCE=y | 231 | CONFIG_BOUNCE=y |
229 | CONFIG_VIRT_TO_BUS=y | 232 | CONFIG_VIRT_TO_BUS=y |
230 | CONFIG_UNEVICTABLE_LRU=y | 233 | CONFIG_UNEVICTABLE_LRU=y |
234 | CONFIG_PPC_4K_PAGES=y | ||
235 | # CONFIG_PPC_16K_PAGES is not set | ||
236 | # CONFIG_PPC_64K_PAGES is not set | ||
231 | CONFIG_FORCE_MAX_ZONEORDER=11 | 237 | CONFIG_FORCE_MAX_ZONEORDER=11 |
232 | CONFIG_PROC_DEVICETREE=y | 238 | CONFIG_PROC_DEVICETREE=y |
233 | # CONFIG_CMDLINE_BOOL is not set | 239 | # CONFIG_CMDLINE_BOOL is not set |
@@ -251,6 +257,7 @@ CONFIG_PCI_SYSCALL=y | |||
251 | CONFIG_ARCH_SUPPORTS_MSI=y | 257 | CONFIG_ARCH_SUPPORTS_MSI=y |
252 | # CONFIG_PCI_MSI is not set | 258 | # CONFIG_PCI_MSI is not set |
253 | # CONFIG_PCI_LEGACY is not set | 259 | # CONFIG_PCI_LEGACY is not set |
260 | # CONFIG_PCI_STUB is not set | ||
254 | # CONFIG_PCCARD is not set | 261 | # CONFIG_PCCARD is not set |
255 | # CONFIG_HOTPLUG_PCI is not set | 262 | # CONFIG_HOTPLUG_PCI is not set |
256 | # CONFIG_HAS_RAPIDIO is not set | 263 | # CONFIG_HAS_RAPIDIO is not set |
@@ -274,6 +281,7 @@ CONFIG_NET=y | |||
274 | # | 281 | # |
275 | # Networking options | 282 | # Networking options |
276 | # | 283 | # |
284 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
277 | CONFIG_PACKET=y | 285 | CONFIG_PACKET=y |
278 | # CONFIG_PACKET_MMAP is not set | 286 | # CONFIG_PACKET_MMAP is not set |
279 | CONFIG_UNIX=y | 287 | CONFIG_UNIX=y |
@@ -330,6 +338,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
330 | # CONFIG_ECONET is not set | 338 | # CONFIG_ECONET is not set |
331 | # CONFIG_WAN_ROUTER is not set | 339 | # CONFIG_WAN_ROUTER is not set |
332 | # CONFIG_NET_SCHED is not set | 340 | # CONFIG_NET_SCHED is not set |
341 | # CONFIG_DCB is not set | ||
333 | 342 | ||
334 | # | 343 | # |
335 | # Network testing | 344 | # Network testing |
@@ -345,8 +354,9 @@ CONFIG_WIRELESS=y | |||
345 | # CONFIG_CFG80211 is not set | 354 | # CONFIG_CFG80211 is not set |
346 | CONFIG_WIRELESS_OLD_REGULATORY=y | 355 | CONFIG_WIRELESS_OLD_REGULATORY=y |
347 | # CONFIG_WIRELESS_EXT is not set | 356 | # CONFIG_WIRELESS_EXT is not set |
357 | # CONFIG_LIB80211 is not set | ||
348 | # CONFIG_MAC80211 is not set | 358 | # CONFIG_MAC80211 is not set |
349 | # CONFIG_IEEE80211 is not set | 359 | # CONFIG_WIMAX is not set |
350 | # CONFIG_RFKILL is not set | 360 | # CONFIG_RFKILL is not set |
351 | # CONFIG_NET_9P is not set | 361 | # CONFIG_NET_9P is not set |
352 | 362 | ||
@@ -391,6 +401,7 @@ CONFIG_MISC_DEVICES=y | |||
391 | # CONFIG_TIFM_CORE is not set | 401 | # CONFIG_TIFM_CORE is not set |
392 | # CONFIG_ENCLOSURE_SERVICES is not set | 402 | # CONFIG_ENCLOSURE_SERVICES is not set |
393 | # CONFIG_HP_ILO is not set | 403 | # CONFIG_HP_ILO is not set |
404 | # CONFIG_C2PORT is not set | ||
394 | CONFIG_HAVE_IDE=y | 405 | CONFIG_HAVE_IDE=y |
395 | # CONFIG_IDE is not set | 406 | # CONFIG_IDE is not set |
396 | 407 | ||
@@ -439,6 +450,9 @@ CONFIG_PHYLIB=y | |||
439 | CONFIG_BROADCOM_PHY=y | 450 | CONFIG_BROADCOM_PHY=y |
440 | # CONFIG_ICPLUS_PHY is not set | 451 | # CONFIG_ICPLUS_PHY is not set |
441 | # CONFIG_REALTEK_PHY is not set | 452 | # CONFIG_REALTEK_PHY is not set |
453 | # CONFIG_NATIONAL_PHY is not set | ||
454 | # CONFIG_STE10XP is not set | ||
455 | # CONFIG_LSI_ET1011C_PHY is not set | ||
442 | # CONFIG_FIXED_PHY is not set | 456 | # CONFIG_FIXED_PHY is not set |
443 | # CONFIG_MDIO_BITBANG is not set | 457 | # CONFIG_MDIO_BITBANG is not set |
444 | CONFIG_NET_ETHERNET=y | 458 | CONFIG_NET_ETHERNET=y |
@@ -483,6 +497,7 @@ CONFIG_GIANFAR=y | |||
483 | # CONFIG_JME is not set | 497 | # CONFIG_JME is not set |
484 | CONFIG_NETDEV_10000=y | 498 | CONFIG_NETDEV_10000=y |
485 | # CONFIG_CHELSIO_T1 is not set | 499 | # CONFIG_CHELSIO_T1 is not set |
500 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
486 | # CONFIG_CHELSIO_T3 is not set | 501 | # CONFIG_CHELSIO_T3 is not set |
487 | # CONFIG_ENIC is not set | 502 | # CONFIG_ENIC is not set |
488 | # CONFIG_IXGBE is not set | 503 | # CONFIG_IXGBE is not set |
@@ -505,6 +520,10 @@ CONFIG_NETDEV_10000=y | |||
505 | # CONFIG_WLAN_PRE80211 is not set | 520 | # CONFIG_WLAN_PRE80211 is not set |
506 | # CONFIG_WLAN_80211 is not set | 521 | # CONFIG_WLAN_80211 is not set |
507 | # CONFIG_IWLWIFI_LEDS is not set | 522 | # CONFIG_IWLWIFI_LEDS is not set |
523 | |||
524 | # | ||
525 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
526 | # | ||
508 | # CONFIG_WAN is not set | 527 | # CONFIG_WAN is not set |
509 | # CONFIG_FDDI is not set | 528 | # CONFIG_FDDI is not set |
510 | # CONFIG_HIPPI is not set | 529 | # CONFIG_HIPPI is not set |
@@ -575,8 +594,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
575 | # CONFIG_SERIAL_JSM is not set | 594 | # CONFIG_SERIAL_JSM is not set |
576 | # CONFIG_SERIAL_OF_PLATFORM is not set | 595 | # CONFIG_SERIAL_OF_PLATFORM is not set |
577 | CONFIG_UNIX98_PTYS=y | 596 | CONFIG_UNIX98_PTYS=y |
597 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
578 | CONFIG_LEGACY_PTYS=y | 598 | CONFIG_LEGACY_PTYS=y |
579 | CONFIG_LEGACY_PTY_COUNT=256 | 599 | CONFIG_LEGACY_PTY_COUNT=256 |
600 | # CONFIG_HVC_UDBG is not set | ||
580 | # CONFIG_IPMI_HANDLER is not set | 601 | # CONFIG_IPMI_HANDLER is not set |
581 | # CONFIG_HW_RANDOM is not set | 602 | # CONFIG_HW_RANDOM is not set |
582 | # CONFIG_NVRAM is not set | 603 | # CONFIG_NVRAM is not set |
@@ -613,11 +634,11 @@ CONFIG_HWMON=y | |||
613 | # CONFIG_THERMAL is not set | 634 | # CONFIG_THERMAL is not set |
614 | # CONFIG_THERMAL_HWMON is not set | 635 | # CONFIG_THERMAL_HWMON is not set |
615 | # CONFIG_WATCHDOG is not set | 636 | # CONFIG_WATCHDOG is not set |
637 | CONFIG_SSB_POSSIBLE=y | ||
616 | 638 | ||
617 | # | 639 | # |
618 | # Sonics Silicon Backplane | 640 | # Sonics Silicon Backplane |
619 | # | 641 | # |
620 | CONFIG_SSB_POSSIBLE=y | ||
621 | # CONFIG_SSB is not set | 642 | # CONFIG_SSB is not set |
622 | 643 | ||
623 | # | 644 | # |
@@ -627,14 +648,7 @@ CONFIG_SSB_POSSIBLE=y | |||
627 | # CONFIG_MFD_SM501 is not set | 648 | # CONFIG_MFD_SM501 is not set |
628 | # CONFIG_HTC_PASIC3 is not set | 649 | # CONFIG_HTC_PASIC3 is not set |
629 | # CONFIG_MFD_TMIO is not set | 650 | # CONFIG_MFD_TMIO is not set |
630 | |||
631 | # | ||
632 | # Voltage and Current regulators | ||
633 | # | ||
634 | # CONFIG_REGULATOR is not set | 651 | # CONFIG_REGULATOR is not set |
635 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
636 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
637 | # CONFIG_REGULATOR_BQ24022 is not set | ||
638 | 652 | ||
639 | # | 653 | # |
640 | # Multimedia devices | 654 | # Multimedia devices |
@@ -693,6 +707,7 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
693 | CONFIG_FILE_LOCKING=y | 707 | CONFIG_FILE_LOCKING=y |
694 | # CONFIG_XFS_FS is not set | 708 | # CONFIG_XFS_FS is not set |
695 | # CONFIG_OCFS2_FS is not set | 709 | # CONFIG_OCFS2_FS is not set |
710 | # CONFIG_BTRFS_FS is not set | ||
696 | CONFIG_DNOTIFY=y | 711 | CONFIG_DNOTIFY=y |
697 | CONFIG_INOTIFY=y | 712 | CONFIG_INOTIFY=y |
698 | CONFIG_INOTIFY_USER=y | 713 | CONFIG_INOTIFY_USER=y |
@@ -726,10 +741,7 @@ CONFIG_TMPFS=y | |||
726 | # CONFIG_TMPFS_POSIX_ACL is not set | 741 | # CONFIG_TMPFS_POSIX_ACL is not set |
727 | # CONFIG_HUGETLB_PAGE is not set | 742 | # CONFIG_HUGETLB_PAGE is not set |
728 | # CONFIG_CONFIGFS_FS is not set | 743 | # CONFIG_CONFIGFS_FS is not set |
729 | 744 | CONFIG_MISC_FILESYSTEMS=y | |
730 | # | ||
731 | # Miscellaneous filesystems | ||
732 | # | ||
733 | # CONFIG_ADFS_FS is not set | 745 | # CONFIG_ADFS_FS is not set |
734 | # CONFIG_AFFS_FS is not set | 746 | # CONFIG_AFFS_FS is not set |
735 | # CONFIG_HFS_FS is not set | 747 | # CONFIG_HFS_FS is not set |
@@ -738,6 +750,7 @@ CONFIG_TMPFS=y | |||
738 | # CONFIG_BFS_FS is not set | 750 | # CONFIG_BFS_FS is not set |
739 | # CONFIG_EFS_FS is not set | 751 | # CONFIG_EFS_FS is not set |
740 | # CONFIG_CRAMFS is not set | 752 | # CONFIG_CRAMFS is not set |
753 | # CONFIG_SQUASHFS is not set | ||
741 | # CONFIG_VXFS_FS is not set | 754 | # CONFIG_VXFS_FS is not set |
742 | # CONFIG_MINIX_FS is not set | 755 | # CONFIG_MINIX_FS is not set |
743 | # CONFIG_OMFS_FS is not set | 756 | # CONFIG_OMFS_FS is not set |
@@ -776,6 +789,7 @@ CONFIG_MSDOS_PARTITION=y | |||
776 | # Library routines | 789 | # Library routines |
777 | # | 790 | # |
778 | CONFIG_BITREVERSE=y | 791 | CONFIG_BITREVERSE=y |
792 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
779 | # CONFIG_CRC_CCITT is not set | 793 | # CONFIG_CRC_CCITT is not set |
780 | # CONFIG_CRC16 is not set | 794 | # CONFIG_CRC16 is not set |
781 | # CONFIG_CRC_T10DIF is not set | 795 | # CONFIG_CRC_T10DIF is not set |
@@ -807,6 +821,8 @@ CONFIG_FRAME_WARN=1024 | |||
807 | # CONFIG_LATENCYTOP is not set | 821 | # CONFIG_LATENCYTOP is not set |
808 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 822 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
809 | CONFIG_HAVE_FUNCTION_TRACER=y | 823 | CONFIG_HAVE_FUNCTION_TRACER=y |
824 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
825 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
810 | 826 | ||
811 | # | 827 | # |
812 | # Tracers | 828 | # Tracers |
@@ -814,6 +830,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
814 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 830 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
815 | # CONFIG_SAMPLES is not set | 831 | # CONFIG_SAMPLES is not set |
816 | CONFIG_HAVE_ARCH_KGDB=y | 832 | CONFIG_HAVE_ARCH_KGDB=y |
833 | CONFIG_PRINT_STACK_DEPTH=64 | ||
817 | # CONFIG_IRQSTACKS is not set | 834 | # CONFIG_IRQSTACKS is not set |
818 | # CONFIG_PPC_EARLY_DEBUG is not set | 835 | # CONFIG_PPC_EARLY_DEBUG is not set |
819 | 836 | ||
@@ -831,6 +848,7 @@ CONFIG_CRYPTO=y | |||
831 | # | 848 | # |
832 | # CONFIG_CRYPTO_FIPS is not set | 849 | # CONFIG_CRYPTO_FIPS is not set |
833 | # CONFIG_CRYPTO_MANAGER is not set | 850 | # CONFIG_CRYPTO_MANAGER is not set |
851 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
834 | # CONFIG_CRYPTO_GF128MUL is not set | 852 | # CONFIG_CRYPTO_GF128MUL is not set |
835 | # CONFIG_CRYPTO_NULL is not set | 853 | # CONFIG_CRYPTO_NULL is not set |
836 | # CONFIG_CRYPTO_CRYPTD is not set | 854 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/85xx/sbc8560_defconfig b/arch/powerpc/configs/85xx/sbc8560_defconfig index 8c507f8d15a8..b1c766ef7e2e 100644 --- a/arch/powerpc/configs/85xx/sbc8560_defconfig +++ b/arch/powerpc/configs/85xx/sbc8560_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:17 2008 | 4 | # Mon Jan 26 15:36:17 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -45,7 +47,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
45 | CONFIG_PPC=y | 47 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 48 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 49 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 50 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 51 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 52 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 53 | CONFIG_OF=y |
@@ -75,12 +77,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 78 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 79 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 80 | CONFIG_GROUP_SCHED=y |
80 | CONFIG_FAIR_GROUP_SCHED=y | 81 | CONFIG_FAIR_GROUP_SCHED=y |
81 | # CONFIG_RT_GROUP_SCHED is not set | 82 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 83 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 84 | # CONFIG_CGROUP_SCHED is not set |
85 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 86 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 87 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 88 | # CONFIG_RELAY is not set |
@@ -113,7 +115,6 @@ CONFIG_SLAB=y | |||
113 | # CONFIG_SLUB is not set | 115 | # CONFIG_SLUB is not set |
114 | # CONFIG_SLOB is not set | 116 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 117 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
119 | CONFIG_HAVE_IOREMAP_PROT=y | 120 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -123,13 +124,11 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
124 | CONFIG_SLABINFO=y | 125 | CONFIG_SLABINFO=y |
125 | CONFIG_RT_MUTEXES=y | 126 | CONFIG_RT_MUTEXES=y |
126 | # CONFIG_TINY_SHMEM is not set | ||
127 | CONFIG_BASE_SMALL=0 | 127 | CONFIG_BASE_SMALL=0 |
128 | # CONFIG_MODULES is not set | 128 | # CONFIG_MODULES is not set |
129 | CONFIG_BLOCK=y | 129 | CONFIG_BLOCK=y |
130 | # CONFIG_LBD is not set | 130 | # CONFIG_LBD is not set |
131 | # CONFIG_BLK_DEV_IO_TRACE is not set | 131 | # CONFIG_BLK_DEV_IO_TRACE is not set |
132 | # CONFIG_LSF is not set | ||
133 | # CONFIG_BLK_DEV_BSG is not set | 132 | # CONFIG_BLK_DEV_BSG is not set |
134 | # CONFIG_BLK_DEV_INTEGRITY is not set | 133 | # CONFIG_BLK_DEV_INTEGRITY is not set |
135 | 134 | ||
@@ -146,6 +145,10 @@ CONFIG_DEFAULT_AS=y | |||
146 | # CONFIG_DEFAULT_NOOP is not set | 145 | # CONFIG_DEFAULT_NOOP is not set |
147 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 146 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
148 | CONFIG_CLASSIC_RCU=y | 147 | CONFIG_CLASSIC_RCU=y |
148 | # CONFIG_TREE_RCU is not set | ||
149 | # CONFIG_PREEMPT_RCU is not set | ||
150 | # CONFIG_TREE_RCU_TRACE is not set | ||
151 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
149 | # CONFIG_FREEZER is not set | 152 | # CONFIG_FREEZER is not set |
150 | 153 | ||
151 | # | 154 | # |
@@ -185,6 +188,7 @@ CONFIG_MPIC=y | |||
185 | # CONFIG_CPM2 is not set | 188 | # CONFIG_CPM2 is not set |
186 | # CONFIG_FSL_ULI1575 is not set | 189 | # CONFIG_FSL_ULI1575 is not set |
187 | # CONFIG_MPC8xxx_GPIO is not set | 190 | # CONFIG_MPC8xxx_GPIO is not set |
191 | # CONFIG_SIMPLE_GPIO is not set | ||
188 | 192 | ||
189 | # | 193 | # |
190 | # Kernel options | 194 | # Kernel options |
@@ -222,12 +226,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
222 | CONFIG_PAGEFLAGS_EXTENDED=y | 226 | CONFIG_PAGEFLAGS_EXTENDED=y |
223 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 227 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
224 | CONFIG_MIGRATION=y | 228 | CONFIG_MIGRATION=y |
225 | # CONFIG_RESOURCES_64BIT is not set | ||
226 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 229 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
227 | CONFIG_ZONE_DMA_FLAG=1 | 230 | CONFIG_ZONE_DMA_FLAG=1 |
228 | CONFIG_BOUNCE=y | 231 | CONFIG_BOUNCE=y |
229 | CONFIG_VIRT_TO_BUS=y | 232 | CONFIG_VIRT_TO_BUS=y |
230 | CONFIG_UNEVICTABLE_LRU=y | 233 | CONFIG_UNEVICTABLE_LRU=y |
234 | CONFIG_PPC_4K_PAGES=y | ||
235 | # CONFIG_PPC_16K_PAGES is not set | ||
236 | # CONFIG_PPC_64K_PAGES is not set | ||
231 | CONFIG_FORCE_MAX_ZONEORDER=11 | 237 | CONFIG_FORCE_MAX_ZONEORDER=11 |
232 | CONFIG_PROC_DEVICETREE=y | 238 | CONFIG_PROC_DEVICETREE=y |
233 | # CONFIG_CMDLINE_BOOL is not set | 239 | # CONFIG_CMDLINE_BOOL is not set |
@@ -268,6 +274,7 @@ CONFIG_NET=y | |||
268 | # | 274 | # |
269 | # Networking options | 275 | # Networking options |
270 | # | 276 | # |
277 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
271 | CONFIG_PACKET=y | 278 | CONFIG_PACKET=y |
272 | # CONFIG_PACKET_MMAP is not set | 279 | # CONFIG_PACKET_MMAP is not set |
273 | CONFIG_UNIX=y | 280 | CONFIG_UNIX=y |
@@ -324,6 +331,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
324 | # CONFIG_ECONET is not set | 331 | # CONFIG_ECONET is not set |
325 | # CONFIG_WAN_ROUTER is not set | 332 | # CONFIG_WAN_ROUTER is not set |
326 | # CONFIG_NET_SCHED is not set | 333 | # CONFIG_NET_SCHED is not set |
334 | # CONFIG_DCB is not set | ||
327 | 335 | ||
328 | # | 336 | # |
329 | # Network testing | 337 | # Network testing |
@@ -339,8 +347,9 @@ CONFIG_WIRELESS=y | |||
339 | # CONFIG_CFG80211 is not set | 347 | # CONFIG_CFG80211 is not set |
340 | CONFIG_WIRELESS_OLD_REGULATORY=y | 348 | CONFIG_WIRELESS_OLD_REGULATORY=y |
341 | # CONFIG_WIRELESS_EXT is not set | 349 | # CONFIG_WIRELESS_EXT is not set |
350 | # CONFIG_LIB80211 is not set | ||
342 | # CONFIG_MAC80211 is not set | 351 | # CONFIG_MAC80211 is not set |
343 | # CONFIG_IEEE80211 is not set | 352 | # CONFIG_WIMAX is not set |
344 | # CONFIG_RFKILL is not set | 353 | # CONFIG_RFKILL is not set |
345 | # CONFIG_NET_9P is not set | 354 | # CONFIG_NET_9P is not set |
346 | 355 | ||
@@ -378,6 +387,7 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
378 | CONFIG_MISC_DEVICES=y | 387 | CONFIG_MISC_DEVICES=y |
379 | # CONFIG_EEPROM_93CX6 is not set | 388 | # CONFIG_EEPROM_93CX6 is not set |
380 | # CONFIG_ENCLOSURE_SERVICES is not set | 389 | # CONFIG_ENCLOSURE_SERVICES is not set |
390 | # CONFIG_C2PORT is not set | ||
381 | CONFIG_HAVE_IDE=y | 391 | CONFIG_HAVE_IDE=y |
382 | # CONFIG_IDE is not set | 392 | # CONFIG_IDE is not set |
383 | 393 | ||
@@ -413,6 +423,9 @@ CONFIG_PHYLIB=y | |||
413 | CONFIG_BROADCOM_PHY=y | 423 | CONFIG_BROADCOM_PHY=y |
414 | # CONFIG_ICPLUS_PHY is not set | 424 | # CONFIG_ICPLUS_PHY is not set |
415 | # CONFIG_REALTEK_PHY is not set | 425 | # CONFIG_REALTEK_PHY is not set |
426 | # CONFIG_NATIONAL_PHY is not set | ||
427 | # CONFIG_STE10XP is not set | ||
428 | # CONFIG_LSI_ET1011C_PHY is not set | ||
416 | # CONFIG_FIXED_PHY is not set | 429 | # CONFIG_FIXED_PHY is not set |
417 | # CONFIG_MDIO_BITBANG is not set | 430 | # CONFIG_MDIO_BITBANG is not set |
418 | CONFIG_NET_ETHERNET=y | 431 | CONFIG_NET_ETHERNET=y |
@@ -435,6 +448,10 @@ CONFIG_NETDEV_10000=y | |||
435 | # CONFIG_WLAN_PRE80211 is not set | 448 | # CONFIG_WLAN_PRE80211 is not set |
436 | # CONFIG_WLAN_80211 is not set | 449 | # CONFIG_WLAN_80211 is not set |
437 | # CONFIG_IWLWIFI_LEDS is not set | 450 | # CONFIG_IWLWIFI_LEDS is not set |
451 | |||
452 | # | ||
453 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
454 | # | ||
438 | # CONFIG_WAN is not set | 455 | # CONFIG_WAN is not set |
439 | # CONFIG_PPP is not set | 456 | # CONFIG_PPP is not set |
440 | # CONFIG_SLIP is not set | 457 | # CONFIG_SLIP is not set |
@@ -500,8 +517,10 @@ CONFIG_SERIAL_CORE=y | |||
500 | CONFIG_SERIAL_CORE_CONSOLE=y | 517 | CONFIG_SERIAL_CORE_CONSOLE=y |
501 | # CONFIG_SERIAL_OF_PLATFORM is not set | 518 | # CONFIG_SERIAL_OF_PLATFORM is not set |
502 | CONFIG_UNIX98_PTYS=y | 519 | CONFIG_UNIX98_PTYS=y |
520 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
503 | CONFIG_LEGACY_PTYS=y | 521 | CONFIG_LEGACY_PTYS=y |
504 | CONFIG_LEGACY_PTY_COUNT=256 | 522 | CONFIG_LEGACY_PTY_COUNT=256 |
523 | # CONFIG_HVC_UDBG is not set | ||
505 | # CONFIG_IPMI_HANDLER is not set | 524 | # CONFIG_IPMI_HANDLER is not set |
506 | # CONFIG_HW_RANDOM is not set | 525 | # CONFIG_HW_RANDOM is not set |
507 | # CONFIG_NVRAM is not set | 526 | # CONFIG_NVRAM is not set |
@@ -530,11 +549,11 @@ CONFIG_HWMON=y | |||
530 | # CONFIG_THERMAL is not set | 549 | # CONFIG_THERMAL is not set |
531 | # CONFIG_THERMAL_HWMON is not set | 550 | # CONFIG_THERMAL_HWMON is not set |
532 | # CONFIG_WATCHDOG is not set | 551 | # CONFIG_WATCHDOG is not set |
552 | CONFIG_SSB_POSSIBLE=y | ||
533 | 553 | ||
534 | # | 554 | # |
535 | # Sonics Silicon Backplane | 555 | # Sonics Silicon Backplane |
536 | # | 556 | # |
537 | CONFIG_SSB_POSSIBLE=y | ||
538 | # CONFIG_SSB is not set | 557 | # CONFIG_SSB is not set |
539 | 558 | ||
540 | # | 559 | # |
@@ -544,14 +563,7 @@ CONFIG_SSB_POSSIBLE=y | |||
544 | # CONFIG_MFD_SM501 is not set | 563 | # CONFIG_MFD_SM501 is not set |
545 | # CONFIG_HTC_PASIC3 is not set | 564 | # CONFIG_HTC_PASIC3 is not set |
546 | # CONFIG_MFD_TMIO is not set | 565 | # CONFIG_MFD_TMIO is not set |
547 | |||
548 | # | ||
549 | # Voltage and Current regulators | ||
550 | # | ||
551 | # CONFIG_REGULATOR is not set | 566 | # CONFIG_REGULATOR is not set |
552 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
553 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
554 | # CONFIG_REGULATOR_BQ24022 is not set | ||
555 | 567 | ||
556 | # | 568 | # |
557 | # Multimedia devices | 569 | # Multimedia devices |
@@ -604,9 +616,13 @@ CONFIG_USB_SUPPORT=y | |||
604 | # | 616 | # |
605 | 617 | ||
606 | # | 618 | # |
607 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 619 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
608 | # | 620 | # |
609 | # CONFIG_USB_GADGET is not set | 621 | # CONFIG_USB_GADGET is not set |
622 | |||
623 | # | ||
624 | # OTG and related infrastructure | ||
625 | # | ||
610 | # CONFIG_MMC is not set | 626 | # CONFIG_MMC is not set |
611 | # CONFIG_MEMSTICK is not set | 627 | # CONFIG_MEMSTICK is not set |
612 | # CONFIG_NEW_LEDS is not set | 628 | # CONFIG_NEW_LEDS is not set |
@@ -666,6 +682,7 @@ CONFIG_RTC_DRV_M48T59=y | |||
666 | CONFIG_FILE_LOCKING=y | 682 | CONFIG_FILE_LOCKING=y |
667 | # CONFIG_XFS_FS is not set | 683 | # CONFIG_XFS_FS is not set |
668 | # CONFIG_OCFS2_FS is not set | 684 | # CONFIG_OCFS2_FS is not set |
685 | # CONFIG_BTRFS_FS is not set | ||
669 | CONFIG_DNOTIFY=y | 686 | CONFIG_DNOTIFY=y |
670 | CONFIG_INOTIFY=y | 687 | CONFIG_INOTIFY=y |
671 | CONFIG_INOTIFY_USER=y | 688 | CONFIG_INOTIFY_USER=y |
@@ -699,10 +716,7 @@ CONFIG_TMPFS=y | |||
699 | # CONFIG_TMPFS_POSIX_ACL is not set | 716 | # CONFIG_TMPFS_POSIX_ACL is not set |
700 | # CONFIG_HUGETLB_PAGE is not set | 717 | # CONFIG_HUGETLB_PAGE is not set |
701 | # CONFIG_CONFIGFS_FS is not set | 718 | # CONFIG_CONFIGFS_FS is not set |
702 | 719 | CONFIG_MISC_FILESYSTEMS=y | |
703 | # | ||
704 | # Miscellaneous filesystems | ||
705 | # | ||
706 | # CONFIG_ADFS_FS is not set | 720 | # CONFIG_ADFS_FS is not set |
707 | # CONFIG_AFFS_FS is not set | 721 | # CONFIG_AFFS_FS is not set |
708 | # CONFIG_HFS_FS is not set | 722 | # CONFIG_HFS_FS is not set |
@@ -711,6 +725,7 @@ CONFIG_TMPFS=y | |||
711 | # CONFIG_BFS_FS is not set | 725 | # CONFIG_BFS_FS is not set |
712 | # CONFIG_EFS_FS is not set | 726 | # CONFIG_EFS_FS is not set |
713 | # CONFIG_CRAMFS is not set | 727 | # CONFIG_CRAMFS is not set |
728 | # CONFIG_SQUASHFS is not set | ||
714 | # CONFIG_VXFS_FS is not set | 729 | # CONFIG_VXFS_FS is not set |
715 | # CONFIG_MINIX_FS is not set | 730 | # CONFIG_MINIX_FS is not set |
716 | # CONFIG_OMFS_FS is not set | 731 | # CONFIG_OMFS_FS is not set |
@@ -761,6 +776,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
761 | # Library routines | 776 | # Library routines |
762 | # | 777 | # |
763 | CONFIG_BITREVERSE=y | 778 | CONFIG_BITREVERSE=y |
779 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
764 | # CONFIG_CRC_CCITT is not set | 780 | # CONFIG_CRC_CCITT is not set |
765 | # CONFIG_CRC16 is not set | 781 | # CONFIG_CRC16 is not set |
766 | # CONFIG_CRC_T10DIF is not set | 782 | # CONFIG_CRC_T10DIF is not set |
@@ -809,6 +825,7 @@ CONFIG_DEBUG_MUTEXES=y | |||
809 | # CONFIG_DEBUG_MEMORY_INIT is not set | 825 | # CONFIG_DEBUG_MEMORY_INIT is not set |
810 | # CONFIG_DEBUG_LIST is not set | 826 | # CONFIG_DEBUG_LIST is not set |
811 | # CONFIG_DEBUG_SG is not set | 827 | # CONFIG_DEBUG_SG is not set |
828 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
812 | # CONFIG_BOOT_PRINTK_DELAY is not set | 829 | # CONFIG_BOOT_PRINTK_DELAY is not set |
813 | # CONFIG_RCU_TORTURE_TEST is not set | 830 | # CONFIG_RCU_TORTURE_TEST is not set |
814 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 831 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -818,6 +835,8 @@ CONFIG_DEBUG_MUTEXES=y | |||
818 | # CONFIG_LATENCYTOP is not set | 835 | # CONFIG_LATENCYTOP is not set |
819 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 836 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
820 | CONFIG_HAVE_FUNCTION_TRACER=y | 837 | CONFIG_HAVE_FUNCTION_TRACER=y |
838 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
839 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
821 | 840 | ||
822 | # | 841 | # |
823 | # Tracers | 842 | # Tracers |
@@ -826,11 +845,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
826 | # CONFIG_SCHED_TRACER is not set | 845 | # CONFIG_SCHED_TRACER is not set |
827 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 846 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
828 | # CONFIG_BOOT_TRACER is not set | 847 | # CONFIG_BOOT_TRACER is not set |
848 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
829 | # CONFIG_STACK_TRACER is not set | 849 | # CONFIG_STACK_TRACER is not set |
830 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 850 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
831 | # CONFIG_SAMPLES is not set | 851 | # CONFIG_SAMPLES is not set |
832 | CONFIG_HAVE_ARCH_KGDB=y | 852 | CONFIG_HAVE_ARCH_KGDB=y |
833 | # CONFIG_KGDB is not set | 853 | # CONFIG_KGDB is not set |
854 | CONFIG_PRINT_STACK_DEPTH=64 | ||
834 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 855 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
835 | # CONFIG_DEBUG_STACK_USAGE is not set | 856 | # CONFIG_DEBUG_STACK_USAGE is not set |
836 | # CONFIG_DEBUG_PAGEALLOC is not set | 857 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -867,6 +888,7 @@ CONFIG_CRYPTO=y | |||
867 | # | 888 | # |
868 | # CONFIG_CRYPTO_FIPS is not set | 889 | # CONFIG_CRYPTO_FIPS is not set |
869 | # CONFIG_CRYPTO_MANAGER is not set | 890 | # CONFIG_CRYPTO_MANAGER is not set |
891 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
870 | # CONFIG_CRYPTO_GF128MUL is not set | 892 | # CONFIG_CRYPTO_GF128MUL is not set |
871 | # CONFIG_CRYPTO_NULL is not set | 893 | # CONFIG_CRYPTO_NULL is not set |
872 | # CONFIG_CRYPTO_CRYPTD is not set | 894 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/85xx/stx_gp3_defconfig b/arch/powerpc/configs/85xx/stx_gp3_defconfig index f1288a0c3040..eb4ba7a5f41f 100644 --- a/arch/powerpc/configs/85xx/stx_gp3_defconfig +++ b/arch/powerpc/configs/85xx/stx_gp3_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:19 2008 | 4 | # Mon Jan 26 15:36:18 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -46,7 +48,7 @@ CONFIG_GENERIC_GPIO=y | |||
46 | CONFIG_PPC=y | 48 | CONFIG_PPC=y |
47 | CONFIG_EARLY_PRINTK=y | 49 | CONFIG_EARLY_PRINTK=y |
48 | CONFIG_GENERIC_NVRAM=y | 50 | CONFIG_GENERIC_NVRAM=y |
49 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 51 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
50 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 52 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
51 | CONFIG_PPC_OF=y | 53 | CONFIG_PPC_OF=y |
52 | CONFIG_OF=y | 54 | CONFIG_OF=y |
@@ -76,12 +78,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
76 | # CONFIG_AUDIT is not set | 78 | # CONFIG_AUDIT is not set |
77 | # CONFIG_IKCONFIG is not set | 79 | # CONFIG_IKCONFIG is not set |
78 | CONFIG_LOG_BUF_SHIFT=14 | 80 | CONFIG_LOG_BUF_SHIFT=14 |
79 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_GROUP_SCHED=y | 81 | CONFIG_GROUP_SCHED=y |
81 | CONFIG_FAIR_GROUP_SCHED=y | 82 | CONFIG_FAIR_GROUP_SCHED=y |
82 | # CONFIG_RT_GROUP_SCHED is not set | 83 | # CONFIG_RT_GROUP_SCHED is not set |
83 | CONFIG_USER_SCHED=y | 84 | CONFIG_USER_SCHED=y |
84 | # CONFIG_CGROUP_SCHED is not set | 85 | # CONFIG_CGROUP_SCHED is not set |
86 | # CONFIG_CGROUPS is not set | ||
85 | CONFIG_SYSFS_DEPRECATED=y | 87 | CONFIG_SYSFS_DEPRECATED=y |
86 | CONFIG_SYSFS_DEPRECATED_V2=y | 88 | CONFIG_SYSFS_DEPRECATED_V2=y |
87 | # CONFIG_RELAY is not set | 89 | # CONFIG_RELAY is not set |
@@ -116,7 +118,6 @@ CONFIG_SLUB_DEBUG=y | |||
116 | CONFIG_SLUB=y | 118 | CONFIG_SLUB=y |
117 | # CONFIG_SLOB is not set | 119 | # CONFIG_SLOB is not set |
118 | # CONFIG_PROFILING is not set | 120 | # CONFIG_PROFILING is not set |
119 | # CONFIG_MARKERS is not set | ||
120 | CONFIG_HAVE_OPROFILE=y | 121 | CONFIG_HAVE_OPROFILE=y |
121 | # CONFIG_KPROBES is not set | 122 | # CONFIG_KPROBES is not set |
122 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 123 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -128,18 +129,15 @@ CONFIG_HAVE_CLK=y | |||
128 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 129 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
129 | CONFIG_SLABINFO=y | 130 | CONFIG_SLABINFO=y |
130 | CONFIG_RT_MUTEXES=y | 131 | CONFIG_RT_MUTEXES=y |
131 | # CONFIG_TINY_SHMEM is not set | ||
132 | CONFIG_BASE_SMALL=0 | 132 | CONFIG_BASE_SMALL=0 |
133 | CONFIG_MODULES=y | 133 | CONFIG_MODULES=y |
134 | # CONFIG_MODULE_FORCE_LOAD is not set | 134 | # CONFIG_MODULE_FORCE_LOAD is not set |
135 | # CONFIG_MODULE_UNLOAD is not set | 135 | # CONFIG_MODULE_UNLOAD is not set |
136 | CONFIG_MODVERSIONS=y | 136 | CONFIG_MODVERSIONS=y |
137 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 137 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
138 | CONFIG_KMOD=y | ||
139 | CONFIG_BLOCK=y | 138 | CONFIG_BLOCK=y |
140 | # CONFIG_LBD is not set | 139 | # CONFIG_LBD is not set |
141 | # CONFIG_BLK_DEV_IO_TRACE is not set | 140 | # CONFIG_BLK_DEV_IO_TRACE is not set |
142 | # CONFIG_LSF is not set | ||
143 | # CONFIG_BLK_DEV_BSG is not set | 141 | # CONFIG_BLK_DEV_BSG is not set |
144 | # CONFIG_BLK_DEV_INTEGRITY is not set | 142 | # CONFIG_BLK_DEV_INTEGRITY is not set |
145 | 143 | ||
@@ -156,6 +154,10 @@ CONFIG_DEFAULT_CFQ=y | |||
156 | # CONFIG_DEFAULT_NOOP is not set | 154 | # CONFIG_DEFAULT_NOOP is not set |
157 | CONFIG_DEFAULT_IOSCHED="cfq" | 155 | CONFIG_DEFAULT_IOSCHED="cfq" |
158 | CONFIG_CLASSIC_RCU=y | 156 | CONFIG_CLASSIC_RCU=y |
157 | # CONFIG_TREE_RCU is not set | ||
158 | # CONFIG_PREEMPT_RCU is not set | ||
159 | # CONFIG_TREE_RCU_TRACE is not set | ||
160 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
159 | # CONFIG_FREEZER is not set | 161 | # CONFIG_FREEZER is not set |
160 | 162 | ||
161 | # | 163 | # |
@@ -196,6 +198,7 @@ CONFIG_CPM2=y | |||
196 | # CONFIG_FSL_ULI1575 is not set | 198 | # CONFIG_FSL_ULI1575 is not set |
197 | CONFIG_CPM=y | 199 | CONFIG_CPM=y |
198 | # CONFIG_MPC8xxx_GPIO is not set | 200 | # CONFIG_MPC8xxx_GPIO is not set |
201 | # CONFIG_SIMPLE_GPIO is not set | ||
199 | 202 | ||
200 | # | 203 | # |
201 | # Kernel options | 204 | # Kernel options |
@@ -233,12 +236,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
233 | CONFIG_PAGEFLAGS_EXTENDED=y | 236 | CONFIG_PAGEFLAGS_EXTENDED=y |
234 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 237 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
235 | CONFIG_MIGRATION=y | 238 | CONFIG_MIGRATION=y |
236 | # CONFIG_RESOURCES_64BIT is not set | ||
237 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 239 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
238 | CONFIG_ZONE_DMA_FLAG=1 | 240 | CONFIG_ZONE_DMA_FLAG=1 |
239 | CONFIG_BOUNCE=y | 241 | CONFIG_BOUNCE=y |
240 | CONFIG_VIRT_TO_BUS=y | 242 | CONFIG_VIRT_TO_BUS=y |
241 | CONFIG_UNEVICTABLE_LRU=y | 243 | CONFIG_UNEVICTABLE_LRU=y |
244 | CONFIG_PPC_4K_PAGES=y | ||
245 | # CONFIG_PPC_16K_PAGES is not set | ||
246 | # CONFIG_PPC_64K_PAGES is not set | ||
242 | CONFIG_FORCE_MAX_ZONEORDER=11 | 247 | CONFIG_FORCE_MAX_ZONEORDER=11 |
243 | CONFIG_PROC_DEVICETREE=y | 248 | CONFIG_PROC_DEVICETREE=y |
244 | # CONFIG_CMDLINE_BOOL is not set | 249 | # CONFIG_CMDLINE_BOOL is not set |
@@ -263,6 +268,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
263 | # CONFIG_PCI_MSI is not set | 268 | # CONFIG_PCI_MSI is not set |
264 | # CONFIG_PCI_LEGACY is not set | 269 | # CONFIG_PCI_LEGACY is not set |
265 | # CONFIG_PCI_DEBUG is not set | 270 | # CONFIG_PCI_DEBUG is not set |
271 | # CONFIG_PCI_STUB is not set | ||
266 | # CONFIG_PCCARD is not set | 272 | # CONFIG_PCCARD is not set |
267 | # CONFIG_HOTPLUG_PCI is not set | 273 | # CONFIG_HOTPLUG_PCI is not set |
268 | # CONFIG_HAS_RAPIDIO is not set | 274 | # CONFIG_HAS_RAPIDIO is not set |
@@ -286,6 +292,7 @@ CONFIG_NET=y | |||
286 | # | 292 | # |
287 | # Networking options | 293 | # Networking options |
288 | # | 294 | # |
295 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
289 | CONFIG_PACKET=y | 296 | CONFIG_PACKET=y |
290 | # CONFIG_PACKET_MMAP is not set | 297 | # CONFIG_PACKET_MMAP is not set |
291 | CONFIG_UNIX=y | 298 | CONFIG_UNIX=y |
@@ -400,6 +407,7 @@ CONFIG_IP_NF_FILTER=m | |||
400 | # CONFIG_ECONET is not set | 407 | # CONFIG_ECONET is not set |
401 | # CONFIG_WAN_ROUTER is not set | 408 | # CONFIG_WAN_ROUTER is not set |
402 | # CONFIG_NET_SCHED is not set | 409 | # CONFIG_NET_SCHED is not set |
410 | # CONFIG_DCB is not set | ||
403 | 411 | ||
404 | # | 412 | # |
405 | # Network testing | 413 | # Network testing |
@@ -415,8 +423,9 @@ CONFIG_WIRELESS=y | |||
415 | # CONFIG_CFG80211 is not set | 423 | # CONFIG_CFG80211 is not set |
416 | CONFIG_WIRELESS_OLD_REGULATORY=y | 424 | CONFIG_WIRELESS_OLD_REGULATORY=y |
417 | # CONFIG_WIRELESS_EXT is not set | 425 | # CONFIG_WIRELESS_EXT is not set |
426 | # CONFIG_LIB80211 is not set | ||
418 | # CONFIG_MAC80211 is not set | 427 | # CONFIG_MAC80211 is not set |
419 | # CONFIG_IEEE80211 is not set | 428 | # CONFIG_WIMAX is not set |
420 | # CONFIG_RFKILL is not set | 429 | # CONFIG_RFKILL is not set |
421 | # CONFIG_NET_9P is not set | 430 | # CONFIG_NET_9P is not set |
422 | 431 | ||
@@ -470,14 +479,17 @@ CONFIG_MISC_DEVICES=y | |||
470 | # CONFIG_EEPROM_93CX6 is not set | 479 | # CONFIG_EEPROM_93CX6 is not set |
471 | # CONFIG_SGI_IOC4 is not set | 480 | # CONFIG_SGI_IOC4 is not set |
472 | # CONFIG_TIFM_CORE is not set | 481 | # CONFIG_TIFM_CORE is not set |
482 | # CONFIG_ICS932S401 is not set | ||
473 | # CONFIG_ENCLOSURE_SERVICES is not set | 483 | # CONFIG_ENCLOSURE_SERVICES is not set |
474 | # CONFIG_HP_ILO is not set | 484 | # CONFIG_HP_ILO is not set |
485 | # CONFIG_C2PORT is not set | ||
475 | CONFIG_HAVE_IDE=y | 486 | CONFIG_HAVE_IDE=y |
476 | CONFIG_IDE=y | 487 | CONFIG_IDE=y |
477 | 488 | ||
478 | # | 489 | # |
479 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 490 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
480 | # | 491 | # |
492 | CONFIG_IDE_ATAPI=y | ||
481 | # CONFIG_BLK_DEV_IDE_SATA is not set | 493 | # CONFIG_BLK_DEV_IDE_SATA is not set |
482 | CONFIG_IDE_GD=y | 494 | CONFIG_IDE_GD=y |
483 | CONFIG_IDE_GD_ATA=y | 495 | CONFIG_IDE_GD_ATA=y |
@@ -485,7 +497,6 @@ CONFIG_IDE_GD_ATA=y | |||
485 | CONFIG_BLK_DEV_IDECD=m | 497 | CONFIG_BLK_DEV_IDECD=m |
486 | CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y | 498 | CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y |
487 | # CONFIG_BLK_DEV_IDETAPE is not set | 499 | # CONFIG_BLK_DEV_IDETAPE is not set |
488 | # CONFIG_BLK_DEV_IDESCSI is not set | ||
489 | # CONFIG_IDE_TASK_IOCTL is not set | 500 | # CONFIG_IDE_TASK_IOCTL is not set |
490 | CONFIG_IDE_PROC_FS=y | 501 | CONFIG_IDE_PROC_FS=y |
491 | 502 | ||
@@ -510,6 +521,7 @@ CONFIG_IDE_PROC_FS=y | |||
510 | # CONFIG_BLK_DEV_JMICRON is not set | 521 | # CONFIG_BLK_DEV_JMICRON is not set |
511 | # CONFIG_BLK_DEV_SC1200 is not set | 522 | # CONFIG_BLK_DEV_SC1200 is not set |
512 | # CONFIG_BLK_DEV_PIIX is not set | 523 | # CONFIG_BLK_DEV_PIIX is not set |
524 | # CONFIG_BLK_DEV_IT8172 is not set | ||
513 | # CONFIG_BLK_DEV_IT8213 is not set | 525 | # CONFIG_BLK_DEV_IT8213 is not set |
514 | # CONFIG_BLK_DEV_IT821X is not set | 526 | # CONFIG_BLK_DEV_IT821X is not set |
515 | # CONFIG_BLK_DEV_NS87415 is not set | 527 | # CONFIG_BLK_DEV_NS87415 is not set |
@@ -564,6 +576,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
564 | # CONFIG_SCSI_SRP_ATTRS is not set | 576 | # CONFIG_SCSI_SRP_ATTRS is not set |
565 | CONFIG_SCSI_LOWLEVEL=y | 577 | CONFIG_SCSI_LOWLEVEL=y |
566 | # CONFIG_ISCSI_TCP is not set | 578 | # CONFIG_ISCSI_TCP is not set |
579 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
567 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 580 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
568 | # CONFIG_SCSI_3W_9XXX is not set | 581 | # CONFIG_SCSI_3W_9XXX is not set |
569 | # CONFIG_SCSI_ACARD is not set | 582 | # CONFIG_SCSI_ACARD is not set |
@@ -580,6 +593,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
580 | # CONFIG_MEGARAID_SAS is not set | 593 | # CONFIG_MEGARAID_SAS is not set |
581 | # CONFIG_SCSI_HPTIOP is not set | 594 | # CONFIG_SCSI_HPTIOP is not set |
582 | # CONFIG_SCSI_BUSLOGIC is not set | 595 | # CONFIG_SCSI_BUSLOGIC is not set |
596 | # CONFIG_LIBFC is not set | ||
597 | # CONFIG_FCOE is not set | ||
583 | # CONFIG_SCSI_DMX3191D is not set | 598 | # CONFIG_SCSI_DMX3191D is not set |
584 | # CONFIG_SCSI_EATA is not set | 599 | # CONFIG_SCSI_EATA is not set |
585 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 600 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -640,6 +655,9 @@ CONFIG_MARVELL_PHY=y | |||
640 | # CONFIG_BROADCOM_PHY is not set | 655 | # CONFIG_BROADCOM_PHY is not set |
641 | # CONFIG_ICPLUS_PHY is not set | 656 | # CONFIG_ICPLUS_PHY is not set |
642 | # CONFIG_REALTEK_PHY is not set | 657 | # CONFIG_REALTEK_PHY is not set |
658 | # CONFIG_NATIONAL_PHY is not set | ||
659 | # CONFIG_STE10XP is not set | ||
660 | # CONFIG_LSI_ET1011C_PHY is not set | ||
643 | # CONFIG_FIXED_PHY is not set | 661 | # CONFIG_FIXED_PHY is not set |
644 | # CONFIG_MDIO_BITBANG is not set | 662 | # CONFIG_MDIO_BITBANG is not set |
645 | CONFIG_NET_ETHERNET=y | 663 | CONFIG_NET_ETHERNET=y |
@@ -686,6 +704,7 @@ CONFIG_GIANFAR=y | |||
686 | # CONFIG_JME is not set | 704 | # CONFIG_JME is not set |
687 | CONFIG_NETDEV_10000=y | 705 | CONFIG_NETDEV_10000=y |
688 | # CONFIG_CHELSIO_T1 is not set | 706 | # CONFIG_CHELSIO_T1 is not set |
707 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
689 | # CONFIG_CHELSIO_T3 is not set | 708 | # CONFIG_CHELSIO_T3 is not set |
690 | # CONFIG_ENIC is not set | 709 | # CONFIG_ENIC is not set |
691 | # CONFIG_IXGBE is not set | 710 | # CONFIG_IXGBE is not set |
@@ -708,6 +727,10 @@ CONFIG_NETDEV_10000=y | |||
708 | # CONFIG_WLAN_PRE80211 is not set | 727 | # CONFIG_WLAN_PRE80211 is not set |
709 | # CONFIG_WLAN_80211 is not set | 728 | # CONFIG_WLAN_80211 is not set |
710 | # CONFIG_IWLWIFI_LEDS is not set | 729 | # CONFIG_IWLWIFI_LEDS is not set |
730 | |||
731 | # | ||
732 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
733 | # | ||
711 | # CONFIG_WAN is not set | 734 | # CONFIG_WAN is not set |
712 | # CONFIG_FDDI is not set | 735 | # CONFIG_FDDI is not set |
713 | # CONFIG_HIPPI is not set | 736 | # CONFIG_HIPPI is not set |
@@ -805,11 +828,13 @@ CONFIG_SERIAL_CPM=y | |||
805 | CONFIG_SERIAL_CPM_CONSOLE=y | 828 | CONFIG_SERIAL_CPM_CONSOLE=y |
806 | # CONFIG_SERIAL_JSM is not set | 829 | # CONFIG_SERIAL_JSM is not set |
807 | CONFIG_UNIX98_PTYS=y | 830 | CONFIG_UNIX98_PTYS=y |
831 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
808 | CONFIG_LEGACY_PTYS=y | 832 | CONFIG_LEGACY_PTYS=y |
809 | CONFIG_LEGACY_PTY_COUNT=256 | 833 | CONFIG_LEGACY_PTY_COUNT=256 |
810 | CONFIG_PRINTER=m | 834 | CONFIG_PRINTER=m |
811 | # CONFIG_LP_CONSOLE is not set | 835 | # CONFIG_LP_CONSOLE is not set |
812 | # CONFIG_PPDEV is not set | 836 | # CONFIG_PPDEV is not set |
837 | # CONFIG_HVC_UDBG is not set | ||
813 | # CONFIG_IPMI_HANDLER is not set | 838 | # CONFIG_IPMI_HANDLER is not set |
814 | CONFIG_HW_RANDOM=m | 839 | CONFIG_HW_RANDOM=m |
815 | # CONFIG_NVRAM is not set | 840 | # CONFIG_NVRAM is not set |
@@ -823,6 +848,7 @@ CONFIG_I2C=m | |||
823 | CONFIG_I2C_BOARDINFO=y | 848 | CONFIG_I2C_BOARDINFO=y |
824 | CONFIG_I2C_CHARDEV=m | 849 | CONFIG_I2C_CHARDEV=m |
825 | CONFIG_I2C_HELPER_AUTO=y | 850 | CONFIG_I2C_HELPER_AUTO=y |
851 | CONFIG_I2C_ALGOBIT=m | ||
826 | 852 | ||
827 | # | 853 | # |
828 | # I2C Hardware Bus support | 854 | # I2C Hardware Bus support |
@@ -883,7 +909,6 @@ CONFIG_I2C_HELPER_AUTO=y | |||
883 | # CONFIG_PCF8575 is not set | 909 | # CONFIG_PCF8575 is not set |
884 | # CONFIG_SENSORS_PCA9539 is not set | 910 | # CONFIG_SENSORS_PCA9539 is not set |
885 | # CONFIG_SENSORS_PCF8591 is not set | 911 | # CONFIG_SENSORS_PCF8591 is not set |
886 | # CONFIG_TPS65010 is not set | ||
887 | # CONFIG_SENSORS_MAX6875 is not set | 912 | # CONFIG_SENSORS_MAX6875 is not set |
888 | # CONFIG_SENSORS_TSL2550 is not set | 913 | # CONFIG_SENSORS_TSL2550 is not set |
889 | # CONFIG_I2C_DEBUG_CORE is not set | 914 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -898,6 +923,11 @@ CONFIG_GPIOLIB=y | |||
898 | # CONFIG_GPIO_SYSFS is not set | 923 | # CONFIG_GPIO_SYSFS is not set |
899 | 924 | ||
900 | # | 925 | # |
926 | # Memory mapped GPIO expanders: | ||
927 | # | ||
928 | # CONFIG_GPIO_XILINX is not set | ||
929 | |||
930 | # | ||
901 | # I2C GPIO expanders: | 931 | # I2C GPIO expanders: |
902 | # | 932 | # |
903 | # CONFIG_GPIO_MAX732X is not set | 933 | # CONFIG_GPIO_MAX732X is not set |
@@ -924,8 +954,10 @@ CONFIG_HWMON=y | |||
924 | # CONFIG_SENSORS_ADM1029 is not set | 954 | # CONFIG_SENSORS_ADM1029 is not set |
925 | # CONFIG_SENSORS_ADM1031 is not set | 955 | # CONFIG_SENSORS_ADM1031 is not set |
926 | # CONFIG_SENSORS_ADM9240 is not set | 956 | # CONFIG_SENSORS_ADM9240 is not set |
957 | # CONFIG_SENSORS_ADT7462 is not set | ||
927 | # CONFIG_SENSORS_ADT7470 is not set | 958 | # CONFIG_SENSORS_ADT7470 is not set |
928 | # CONFIG_SENSORS_ADT7473 is not set | 959 | # CONFIG_SENSORS_ADT7473 is not set |
960 | # CONFIG_SENSORS_ADT7475 is not set | ||
929 | # CONFIG_SENSORS_ATXP1 is not set | 961 | # CONFIG_SENSORS_ATXP1 is not set |
930 | # CONFIG_SENSORS_DS1621 is not set | 962 | # CONFIG_SENSORS_DS1621 is not set |
931 | # CONFIG_SENSORS_I5K_AMB is not set | 963 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -946,6 +978,7 @@ CONFIG_HWMON=y | |||
946 | # CONFIG_SENSORS_LM90 is not set | 978 | # CONFIG_SENSORS_LM90 is not set |
947 | # CONFIG_SENSORS_LM92 is not set | 979 | # CONFIG_SENSORS_LM92 is not set |
948 | # CONFIG_SENSORS_LM93 is not set | 980 | # CONFIG_SENSORS_LM93 is not set |
981 | # CONFIG_SENSORS_LTC4245 is not set | ||
949 | # CONFIG_SENSORS_MAX1619 is not set | 982 | # CONFIG_SENSORS_MAX1619 is not set |
950 | # CONFIG_SENSORS_MAX6650 is not set | 983 | # CONFIG_SENSORS_MAX6650 is not set |
951 | # CONFIG_SENSORS_PC87360 is not set | 984 | # CONFIG_SENSORS_PC87360 is not set |
@@ -972,11 +1005,11 @@ CONFIG_HWMON=y | |||
972 | # CONFIG_THERMAL is not set | 1005 | # CONFIG_THERMAL is not set |
973 | # CONFIG_THERMAL_HWMON is not set | 1006 | # CONFIG_THERMAL_HWMON is not set |
974 | # CONFIG_WATCHDOG is not set | 1007 | # CONFIG_WATCHDOG is not set |
1008 | CONFIG_SSB_POSSIBLE=y | ||
975 | 1009 | ||
976 | # | 1010 | # |
977 | # Sonics Silicon Backplane | 1011 | # Sonics Silicon Backplane |
978 | # | 1012 | # |
979 | CONFIG_SSB_POSSIBLE=y | ||
980 | # CONFIG_SSB is not set | 1013 | # CONFIG_SSB is not set |
981 | 1014 | ||
982 | # | 1015 | # |
@@ -985,17 +1018,12 @@ CONFIG_SSB_POSSIBLE=y | |||
985 | # CONFIG_MFD_CORE is not set | 1018 | # CONFIG_MFD_CORE is not set |
986 | # CONFIG_MFD_SM501 is not set | 1019 | # CONFIG_MFD_SM501 is not set |
987 | # CONFIG_HTC_PASIC3 is not set | 1020 | # CONFIG_HTC_PASIC3 is not set |
1021 | # CONFIG_TPS65010 is not set | ||
988 | # CONFIG_MFD_TMIO is not set | 1022 | # CONFIG_MFD_TMIO is not set |
989 | # CONFIG_MFD_WM8400 is not set | 1023 | # CONFIG_MFD_WM8400 is not set |
990 | # CONFIG_MFD_WM8350_I2C is not set | 1024 | # CONFIG_MFD_WM8350_I2C is not set |
991 | 1025 | # CONFIG_MFD_PCF50633 is not set | |
992 | # | ||
993 | # Voltage and Current regulators | ||
994 | # | ||
995 | # CONFIG_REGULATOR is not set | 1026 | # CONFIG_REGULATOR is not set |
996 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
997 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
998 | # CONFIG_REGULATOR_BQ24022 is not set | ||
999 | 1027 | ||
1000 | # | 1028 | # |
1001 | # Multimedia devices | 1029 | # Multimedia devices |
@@ -1061,9 +1089,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
1061 | # | 1089 | # |
1062 | 1090 | ||
1063 | # | 1091 | # |
1064 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1092 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1065 | # | 1093 | # |
1066 | # CONFIG_USB_GADGET is not set | 1094 | # CONFIG_USB_GADGET is not set |
1095 | |||
1096 | # | ||
1097 | # OTG and related infrastructure | ||
1098 | # | ||
1067 | # CONFIG_UWB is not set | 1099 | # CONFIG_UWB is not set |
1068 | # CONFIG_MMC is not set | 1100 | # CONFIG_MMC is not set |
1069 | # CONFIG_MEMSTICK is not set | 1101 | # CONFIG_MEMSTICK is not set |
@@ -1096,6 +1128,7 @@ CONFIG_FS_MBCACHE=y | |||
1096 | CONFIG_FILE_LOCKING=y | 1128 | CONFIG_FILE_LOCKING=y |
1097 | # CONFIG_XFS_FS is not set | 1129 | # CONFIG_XFS_FS is not set |
1098 | # CONFIG_OCFS2_FS is not set | 1130 | # CONFIG_OCFS2_FS is not set |
1131 | # CONFIG_BTRFS_FS is not set | ||
1099 | CONFIG_DNOTIFY=y | 1132 | CONFIG_DNOTIFY=y |
1100 | CONFIG_INOTIFY=y | 1133 | CONFIG_INOTIFY=y |
1101 | CONFIG_INOTIFY_USER=y | 1134 | CONFIG_INOTIFY_USER=y |
@@ -1135,10 +1168,7 @@ CONFIG_TMPFS=y | |||
1135 | # CONFIG_TMPFS_POSIX_ACL is not set | 1168 | # CONFIG_TMPFS_POSIX_ACL is not set |
1136 | # CONFIG_HUGETLB_PAGE is not set | 1169 | # CONFIG_HUGETLB_PAGE is not set |
1137 | # CONFIG_CONFIGFS_FS is not set | 1170 | # CONFIG_CONFIGFS_FS is not set |
1138 | 1171 | CONFIG_MISC_FILESYSTEMS=y | |
1139 | # | ||
1140 | # Miscellaneous filesystems | ||
1141 | # | ||
1142 | # CONFIG_ADFS_FS is not set | 1172 | # CONFIG_ADFS_FS is not set |
1143 | # CONFIG_AFFS_FS is not set | 1173 | # CONFIG_AFFS_FS is not set |
1144 | # CONFIG_HFS_FS is not set | 1174 | # CONFIG_HFS_FS is not set |
@@ -1147,6 +1177,7 @@ CONFIG_TMPFS=y | |||
1147 | # CONFIG_BFS_FS is not set | 1177 | # CONFIG_BFS_FS is not set |
1148 | # CONFIG_EFS_FS is not set | 1178 | # CONFIG_EFS_FS is not set |
1149 | CONFIG_CRAMFS=m | 1179 | CONFIG_CRAMFS=m |
1180 | # CONFIG_SQUASHFS is not set | ||
1150 | # CONFIG_VXFS_FS is not set | 1181 | # CONFIG_VXFS_FS is not set |
1151 | # CONFIG_MINIX_FS is not set | 1182 | # CONFIG_MINIX_FS is not set |
1152 | # CONFIG_OMFS_FS is not set | 1183 | # CONFIG_OMFS_FS is not set |
@@ -1227,6 +1258,7 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
1227 | # Library routines | 1258 | # Library routines |
1228 | # | 1259 | # |
1229 | CONFIG_BITREVERSE=y | 1260 | CONFIG_BITREVERSE=y |
1261 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1230 | CONFIG_CRC_CCITT=y | 1262 | CONFIG_CRC_CCITT=y |
1231 | # CONFIG_CRC16 is not set | 1263 | # CONFIG_CRC16 is not set |
1232 | CONFIG_CRC_T10DIF=m | 1264 | CONFIG_CRC_T10DIF=m |
@@ -1278,6 +1310,7 @@ CONFIG_SCHED_DEBUG=y | |||
1278 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1310 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1279 | # CONFIG_DEBUG_LIST is not set | 1311 | # CONFIG_DEBUG_LIST is not set |
1280 | # CONFIG_DEBUG_SG is not set | 1312 | # CONFIG_DEBUG_SG is not set |
1313 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1281 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1314 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1282 | # CONFIG_RCU_TORTURE_TEST is not set | 1315 | # CONFIG_RCU_TORTURE_TEST is not set |
1283 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1316 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1287,6 +1320,8 @@ CONFIG_SCHED_DEBUG=y | |||
1287 | # CONFIG_LATENCYTOP is not set | 1320 | # CONFIG_LATENCYTOP is not set |
1288 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1321 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1289 | CONFIG_HAVE_FUNCTION_TRACER=y | 1322 | CONFIG_HAVE_FUNCTION_TRACER=y |
1323 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1324 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1290 | 1325 | ||
1291 | # | 1326 | # |
1292 | # Tracers | 1327 | # Tracers |
@@ -1295,11 +1330,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1295 | # CONFIG_SCHED_TRACER is not set | 1330 | # CONFIG_SCHED_TRACER is not set |
1296 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1331 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1297 | # CONFIG_BOOT_TRACER is not set | 1332 | # CONFIG_BOOT_TRACER is not set |
1333 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1298 | # CONFIG_STACK_TRACER is not set | 1334 | # CONFIG_STACK_TRACER is not set |
1299 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1335 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1300 | # CONFIG_SAMPLES is not set | 1336 | # CONFIG_SAMPLES is not set |
1301 | CONFIG_HAVE_ARCH_KGDB=y | 1337 | CONFIG_HAVE_ARCH_KGDB=y |
1302 | # CONFIG_KGDB is not set | 1338 | # CONFIG_KGDB is not set |
1339 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1303 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1340 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1304 | # CONFIG_DEBUG_STACK_USAGE is not set | 1341 | # CONFIG_DEBUG_STACK_USAGE is not set |
1305 | # CONFIG_DEBUG_PAGEALLOC is not set | 1342 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1325,6 +1362,7 @@ CONFIG_CRYPTO=y | |||
1325 | # | 1362 | # |
1326 | # CONFIG_CRYPTO_FIPS is not set | 1363 | # CONFIG_CRYPTO_FIPS is not set |
1327 | # CONFIG_CRYPTO_MANAGER is not set | 1364 | # CONFIG_CRYPTO_MANAGER is not set |
1365 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
1328 | # CONFIG_CRYPTO_GF128MUL is not set | 1366 | # CONFIG_CRYPTO_GF128MUL is not set |
1329 | # CONFIG_CRYPTO_NULL is not set | 1367 | # CONFIG_CRYPTO_NULL is not set |
1330 | # CONFIG_CRYPTO_CRYPTD is not set | 1368 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/85xx/tqm8540_defconfig b/arch/powerpc/configs/85xx/tqm8540_defconfig index b3b1de6a6a85..f4379b1cf841 100644 --- a/arch/powerpc/configs/85xx/tqm8540_defconfig +++ b/arch/powerpc/configs/85xx/tqm8540_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:20 2008 | 4 | # Mon Jan 26 15:36:19 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -45,7 +47,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
45 | CONFIG_PPC=y | 47 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 48 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 49 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 50 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 51 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 52 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 53 | CONFIG_OF=y |
@@ -75,12 +77,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 78 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 79 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 80 | CONFIG_GROUP_SCHED=y |
80 | CONFIG_FAIR_GROUP_SCHED=y | 81 | CONFIG_FAIR_GROUP_SCHED=y |
81 | # CONFIG_RT_GROUP_SCHED is not set | 82 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 83 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 84 | # CONFIG_CGROUP_SCHED is not set |
85 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 86 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 87 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 88 | # CONFIG_RELAY is not set |
@@ -113,7 +115,6 @@ CONFIG_SLUB_DEBUG=y | |||
113 | CONFIG_SLUB=y | 115 | CONFIG_SLUB=y |
114 | # CONFIG_SLOB is not set | 116 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 117 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
119 | CONFIG_HAVE_IOREMAP_PROT=y | 120 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -123,13 +124,11 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
124 | CONFIG_SLABINFO=y | 125 | CONFIG_SLABINFO=y |
125 | CONFIG_RT_MUTEXES=y | 126 | CONFIG_RT_MUTEXES=y |
126 | # CONFIG_TINY_SHMEM is not set | ||
127 | CONFIG_BASE_SMALL=0 | 127 | CONFIG_BASE_SMALL=0 |
128 | # CONFIG_MODULES is not set | 128 | # CONFIG_MODULES is not set |
129 | CONFIG_BLOCK=y | 129 | CONFIG_BLOCK=y |
130 | # CONFIG_LBD is not set | 130 | # CONFIG_LBD is not set |
131 | # CONFIG_BLK_DEV_IO_TRACE is not set | 131 | # CONFIG_BLK_DEV_IO_TRACE is not set |
132 | # CONFIG_LSF is not set | ||
133 | # CONFIG_BLK_DEV_BSG is not set | 132 | # CONFIG_BLK_DEV_BSG is not set |
134 | # CONFIG_BLK_DEV_INTEGRITY is not set | 133 | # CONFIG_BLK_DEV_INTEGRITY is not set |
135 | 134 | ||
@@ -146,6 +145,10 @@ CONFIG_DEFAULT_AS=y | |||
146 | # CONFIG_DEFAULT_NOOP is not set | 145 | # CONFIG_DEFAULT_NOOP is not set |
147 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 146 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
148 | CONFIG_CLASSIC_RCU=y | 147 | CONFIG_CLASSIC_RCU=y |
148 | # CONFIG_TREE_RCU is not set | ||
149 | # CONFIG_PREEMPT_RCU is not set | ||
150 | # CONFIG_TREE_RCU_TRACE is not set | ||
151 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
149 | # CONFIG_FREEZER is not set | 152 | # CONFIG_FREEZER is not set |
150 | 153 | ||
151 | # | 154 | # |
@@ -186,6 +189,7 @@ CONFIG_MPIC=y | |||
186 | # CONFIG_CPM2 is not set | 189 | # CONFIG_CPM2 is not set |
187 | # CONFIG_FSL_ULI1575 is not set | 190 | # CONFIG_FSL_ULI1575 is not set |
188 | # CONFIG_MPC8xxx_GPIO is not set | 191 | # CONFIG_MPC8xxx_GPIO is not set |
192 | # CONFIG_SIMPLE_GPIO is not set | ||
189 | 193 | ||
190 | # | 194 | # |
191 | # Kernel options | 195 | # Kernel options |
@@ -223,12 +227,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
223 | CONFIG_PAGEFLAGS_EXTENDED=y | 227 | CONFIG_PAGEFLAGS_EXTENDED=y |
224 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 228 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
225 | CONFIG_MIGRATION=y | 229 | CONFIG_MIGRATION=y |
226 | # CONFIG_RESOURCES_64BIT is not set | ||
227 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 230 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
228 | CONFIG_ZONE_DMA_FLAG=1 | 231 | CONFIG_ZONE_DMA_FLAG=1 |
229 | CONFIG_BOUNCE=y | 232 | CONFIG_BOUNCE=y |
230 | CONFIG_VIRT_TO_BUS=y | 233 | CONFIG_VIRT_TO_BUS=y |
231 | CONFIG_UNEVICTABLE_LRU=y | 234 | CONFIG_UNEVICTABLE_LRU=y |
235 | CONFIG_PPC_4K_PAGES=y | ||
236 | # CONFIG_PPC_16K_PAGES is not set | ||
237 | # CONFIG_PPC_64K_PAGES is not set | ||
232 | CONFIG_FORCE_MAX_ZONEORDER=11 | 238 | CONFIG_FORCE_MAX_ZONEORDER=11 |
233 | # CONFIG_PROC_DEVICETREE is not set | 239 | # CONFIG_PROC_DEVICETREE is not set |
234 | # CONFIG_CMDLINE_BOOL is not set | 240 | # CONFIG_CMDLINE_BOOL is not set |
@@ -252,6 +258,7 @@ CONFIG_PCI_SYSCALL=y | |||
252 | CONFIG_ARCH_SUPPORTS_MSI=y | 258 | CONFIG_ARCH_SUPPORTS_MSI=y |
253 | # CONFIG_PCI_MSI is not set | 259 | # CONFIG_PCI_MSI is not set |
254 | # CONFIG_PCI_LEGACY is not set | 260 | # CONFIG_PCI_LEGACY is not set |
261 | # CONFIG_PCI_STUB is not set | ||
255 | # CONFIG_HAS_RAPIDIO is not set | 262 | # CONFIG_HAS_RAPIDIO is not set |
256 | 263 | ||
257 | # | 264 | # |
@@ -273,6 +280,7 @@ CONFIG_NET=y | |||
273 | # | 280 | # |
274 | # Networking options | 281 | # Networking options |
275 | # | 282 | # |
283 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
276 | CONFIG_PACKET=y | 284 | CONFIG_PACKET=y |
277 | # CONFIG_PACKET_MMAP is not set | 285 | # CONFIG_PACKET_MMAP is not set |
278 | CONFIG_UNIX=y | 286 | CONFIG_UNIX=y |
@@ -329,6 +337,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
329 | # CONFIG_ECONET is not set | 337 | # CONFIG_ECONET is not set |
330 | # CONFIG_WAN_ROUTER is not set | 338 | # CONFIG_WAN_ROUTER is not set |
331 | # CONFIG_NET_SCHED is not set | 339 | # CONFIG_NET_SCHED is not set |
340 | # CONFIG_DCB is not set | ||
332 | 341 | ||
333 | # | 342 | # |
334 | # Network testing | 343 | # Network testing |
@@ -344,8 +353,9 @@ CONFIG_WIRELESS=y | |||
344 | # CONFIG_CFG80211 is not set | 353 | # CONFIG_CFG80211 is not set |
345 | CONFIG_WIRELESS_OLD_REGULATORY=y | 354 | CONFIG_WIRELESS_OLD_REGULATORY=y |
346 | # CONFIG_WIRELESS_EXT is not set | 355 | # CONFIG_WIRELESS_EXT is not set |
356 | # CONFIG_LIB80211 is not set | ||
347 | # CONFIG_MAC80211 is not set | 357 | # CONFIG_MAC80211 is not set |
348 | # CONFIG_IEEE80211 is not set | 358 | # CONFIG_WIMAX is not set |
349 | # CONFIG_RFKILL is not set | 359 | # CONFIG_RFKILL is not set |
350 | # CONFIG_NET_9P is not set | 360 | # CONFIG_NET_9P is not set |
351 | 361 | ||
@@ -435,6 +445,12 @@ CONFIG_MTD_CFI_UTIL=y | |||
435 | # CONFIG_MTD_ONENAND is not set | 445 | # CONFIG_MTD_ONENAND is not set |
436 | 446 | ||
437 | # | 447 | # |
448 | # LPDDR flash memory drivers | ||
449 | # | ||
450 | # CONFIG_MTD_LPDDR is not set | ||
451 | # CONFIG_MTD_QINFO_PROBE is not set | ||
452 | |||
453 | # | ||
438 | # UBI - Unsorted block images | 454 | # UBI - Unsorted block images |
439 | # | 455 | # |
440 | # CONFIG_MTD_UBI is not set | 456 | # CONFIG_MTD_UBI is not set |
@@ -464,8 +480,10 @@ CONFIG_MISC_DEVICES=y | |||
464 | # CONFIG_EEPROM_93CX6 is not set | 480 | # CONFIG_EEPROM_93CX6 is not set |
465 | # CONFIG_SGI_IOC4 is not set | 481 | # CONFIG_SGI_IOC4 is not set |
466 | # CONFIG_TIFM_CORE is not set | 482 | # CONFIG_TIFM_CORE is not set |
483 | # CONFIG_ICS932S401 is not set | ||
467 | # CONFIG_ENCLOSURE_SERVICES is not set | 484 | # CONFIG_ENCLOSURE_SERVICES is not set |
468 | # CONFIG_HP_ILO is not set | 485 | # CONFIG_HP_ILO is not set |
486 | # CONFIG_C2PORT is not set | ||
469 | CONFIG_HAVE_IDE=y | 487 | CONFIG_HAVE_IDE=y |
470 | CONFIG_IDE=y | 488 | CONFIG_IDE=y |
471 | 489 | ||
@@ -508,6 +526,7 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
508 | # CONFIG_BLK_DEV_JMICRON is not set | 526 | # CONFIG_BLK_DEV_JMICRON is not set |
509 | # CONFIG_BLK_DEV_SC1200 is not set | 527 | # CONFIG_BLK_DEV_SC1200 is not set |
510 | # CONFIG_BLK_DEV_PIIX is not set | 528 | # CONFIG_BLK_DEV_PIIX is not set |
529 | # CONFIG_BLK_DEV_IT8172 is not set | ||
511 | # CONFIG_BLK_DEV_IT8213 is not set | 530 | # CONFIG_BLK_DEV_IT8213 is not set |
512 | # CONFIG_BLK_DEV_IT821X is not set | 531 | # CONFIG_BLK_DEV_IT821X is not set |
513 | # CONFIG_BLK_DEV_NS87415 is not set | 532 | # CONFIG_BLK_DEV_NS87415 is not set |
@@ -567,6 +586,9 @@ CONFIG_PHYLIB=y | |||
567 | # CONFIG_BROADCOM_PHY is not set | 586 | # CONFIG_BROADCOM_PHY is not set |
568 | # CONFIG_ICPLUS_PHY is not set | 587 | # CONFIG_ICPLUS_PHY is not set |
569 | # CONFIG_REALTEK_PHY is not set | 588 | # CONFIG_REALTEK_PHY is not set |
589 | # CONFIG_NATIONAL_PHY is not set | ||
590 | # CONFIG_STE10XP is not set | ||
591 | # CONFIG_LSI_ET1011C_PHY is not set | ||
570 | # CONFIG_FIXED_PHY is not set | 592 | # CONFIG_FIXED_PHY is not set |
571 | # CONFIG_MDIO_BITBANG is not set | 593 | # CONFIG_MDIO_BITBANG is not set |
572 | CONFIG_NET_ETHERNET=y | 594 | CONFIG_NET_ETHERNET=y |
@@ -590,7 +612,6 @@ CONFIG_NET_PCI=y | |||
590 | # CONFIG_ADAPTEC_STARFIRE is not set | 612 | # CONFIG_ADAPTEC_STARFIRE is not set |
591 | # CONFIG_B44 is not set | 613 | # CONFIG_B44 is not set |
592 | # CONFIG_FORCEDETH is not set | 614 | # CONFIG_FORCEDETH is not set |
593 | # CONFIG_EEPRO100 is not set | ||
594 | CONFIG_E100=y | 615 | CONFIG_E100=y |
595 | # CONFIG_FEALNX is not set | 616 | # CONFIG_FEALNX is not set |
596 | # CONFIG_NATSEMI is not set | 617 | # CONFIG_NATSEMI is not set |
@@ -600,6 +621,7 @@ CONFIG_E100=y | |||
600 | # CONFIG_R6040 is not set | 621 | # CONFIG_R6040 is not set |
601 | # CONFIG_SIS900 is not set | 622 | # CONFIG_SIS900 is not set |
602 | # CONFIG_EPIC100 is not set | 623 | # CONFIG_EPIC100 is not set |
624 | # CONFIG_SMSC9420 is not set | ||
603 | # CONFIG_SUNDANCE is not set | 625 | # CONFIG_SUNDANCE is not set |
604 | # CONFIG_TLAN is not set | 626 | # CONFIG_TLAN is not set |
605 | # CONFIG_VIA_RHINE is not set | 627 | # CONFIG_VIA_RHINE is not set |
@@ -629,6 +651,7 @@ CONFIG_GIANFAR=y | |||
629 | # CONFIG_JME is not set | 651 | # CONFIG_JME is not set |
630 | CONFIG_NETDEV_10000=y | 652 | CONFIG_NETDEV_10000=y |
631 | # CONFIG_CHELSIO_T1 is not set | 653 | # CONFIG_CHELSIO_T1 is not set |
654 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
632 | # CONFIG_CHELSIO_T3 is not set | 655 | # CONFIG_CHELSIO_T3 is not set |
633 | # CONFIG_ENIC is not set | 656 | # CONFIG_ENIC is not set |
634 | # CONFIG_IXGBE is not set | 657 | # CONFIG_IXGBE is not set |
@@ -651,6 +674,10 @@ CONFIG_NETDEV_10000=y | |||
651 | # CONFIG_WLAN_PRE80211 is not set | 674 | # CONFIG_WLAN_PRE80211 is not set |
652 | # CONFIG_WLAN_80211 is not set | 675 | # CONFIG_WLAN_80211 is not set |
653 | # CONFIG_IWLWIFI_LEDS is not set | 676 | # CONFIG_IWLWIFI_LEDS is not set |
677 | |||
678 | # | ||
679 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
680 | # | ||
654 | # CONFIG_WAN is not set | 681 | # CONFIG_WAN is not set |
655 | # CONFIG_FDDI is not set | 682 | # CONFIG_FDDI is not set |
656 | # CONFIG_HIPPI is not set | 683 | # CONFIG_HIPPI is not set |
@@ -721,8 +748,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
721 | # CONFIG_SERIAL_JSM is not set | 748 | # CONFIG_SERIAL_JSM is not set |
722 | # CONFIG_SERIAL_OF_PLATFORM is not set | 749 | # CONFIG_SERIAL_OF_PLATFORM is not set |
723 | CONFIG_UNIX98_PTYS=y | 750 | CONFIG_UNIX98_PTYS=y |
751 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
724 | CONFIG_LEGACY_PTYS=y | 752 | CONFIG_LEGACY_PTYS=y |
725 | CONFIG_LEGACY_PTY_COUNT=256 | 753 | CONFIG_LEGACY_PTY_COUNT=256 |
754 | # CONFIG_HVC_UDBG is not set | ||
726 | # CONFIG_IPMI_HANDLER is not set | 755 | # CONFIG_IPMI_HANDLER is not set |
727 | CONFIG_HW_RANDOM=y | 756 | CONFIG_HW_RANDOM=y |
728 | # CONFIG_NVRAM is not set | 757 | # CONFIG_NVRAM is not set |
@@ -814,8 +843,10 @@ CONFIG_HWMON=y | |||
814 | # CONFIG_SENSORS_ADM1029 is not set | 843 | # CONFIG_SENSORS_ADM1029 is not set |
815 | # CONFIG_SENSORS_ADM1031 is not set | 844 | # CONFIG_SENSORS_ADM1031 is not set |
816 | # CONFIG_SENSORS_ADM9240 is not set | 845 | # CONFIG_SENSORS_ADM9240 is not set |
846 | # CONFIG_SENSORS_ADT7462 is not set | ||
817 | # CONFIG_SENSORS_ADT7470 is not set | 847 | # CONFIG_SENSORS_ADT7470 is not set |
818 | # CONFIG_SENSORS_ADT7473 is not set | 848 | # CONFIG_SENSORS_ADT7473 is not set |
849 | # CONFIG_SENSORS_ADT7475 is not set | ||
819 | # CONFIG_SENSORS_ATXP1 is not set | 850 | # CONFIG_SENSORS_ATXP1 is not set |
820 | # CONFIG_SENSORS_DS1621 is not set | 851 | # CONFIG_SENSORS_DS1621 is not set |
821 | # CONFIG_SENSORS_I5K_AMB is not set | 852 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -836,6 +867,7 @@ CONFIG_SENSORS_LM75=y | |||
836 | # CONFIG_SENSORS_LM90 is not set | 867 | # CONFIG_SENSORS_LM90 is not set |
837 | # CONFIG_SENSORS_LM92 is not set | 868 | # CONFIG_SENSORS_LM92 is not set |
838 | # CONFIG_SENSORS_LM93 is not set | 869 | # CONFIG_SENSORS_LM93 is not set |
870 | # CONFIG_SENSORS_LTC4245 is not set | ||
839 | # CONFIG_SENSORS_MAX1619 is not set | 871 | # CONFIG_SENSORS_MAX1619 is not set |
840 | # CONFIG_SENSORS_MAX6650 is not set | 872 | # CONFIG_SENSORS_MAX6650 is not set |
841 | # CONFIG_SENSORS_PC87360 is not set | 873 | # CONFIG_SENSORS_PC87360 is not set |
@@ -862,11 +894,11 @@ CONFIG_HWMON_DEBUG_CHIP=y | |||
862 | # CONFIG_THERMAL is not set | 894 | # CONFIG_THERMAL is not set |
863 | # CONFIG_THERMAL_HWMON is not set | 895 | # CONFIG_THERMAL_HWMON is not set |
864 | # CONFIG_WATCHDOG is not set | 896 | # CONFIG_WATCHDOG is not set |
897 | CONFIG_SSB_POSSIBLE=y | ||
865 | 898 | ||
866 | # | 899 | # |
867 | # Sonics Silicon Backplane | 900 | # Sonics Silicon Backplane |
868 | # | 901 | # |
869 | CONFIG_SSB_POSSIBLE=y | ||
870 | # CONFIG_SSB is not set | 902 | # CONFIG_SSB is not set |
871 | 903 | ||
872 | # | 904 | # |
@@ -875,18 +907,13 @@ CONFIG_SSB_POSSIBLE=y | |||
875 | # CONFIG_MFD_CORE is not set | 907 | # CONFIG_MFD_CORE is not set |
876 | # CONFIG_MFD_SM501 is not set | 908 | # CONFIG_MFD_SM501 is not set |
877 | # CONFIG_HTC_PASIC3 is not set | 909 | # CONFIG_HTC_PASIC3 is not set |
910 | # CONFIG_TWL4030_CORE is not set | ||
878 | # CONFIG_MFD_TMIO is not set | 911 | # CONFIG_MFD_TMIO is not set |
879 | # CONFIG_PMIC_DA903X is not set | 912 | # CONFIG_PMIC_DA903X is not set |
880 | # CONFIG_MFD_WM8400 is not set | 913 | # CONFIG_MFD_WM8400 is not set |
881 | # CONFIG_MFD_WM8350_I2C is not set | 914 | # CONFIG_MFD_WM8350_I2C is not set |
882 | 915 | # CONFIG_MFD_PCF50633 is not set | |
883 | # | ||
884 | # Voltage and Current regulators | ||
885 | # | ||
886 | # CONFIG_REGULATOR is not set | 916 | # CONFIG_REGULATOR is not set |
887 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
888 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
889 | # CONFIG_REGULATOR_BQ24022 is not set | ||
890 | 917 | ||
891 | # | 918 | # |
892 | # Multimedia devices | 919 | # Multimedia devices |
@@ -942,9 +969,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
942 | # | 969 | # |
943 | 970 | ||
944 | # | 971 | # |
945 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 972 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
946 | # | 973 | # |
947 | # CONFIG_USB_GADGET is not set | 974 | # CONFIG_USB_GADGET is not set |
975 | |||
976 | # | ||
977 | # OTG and related infrastructure | ||
978 | # | ||
948 | # CONFIG_UWB is not set | 979 | # CONFIG_UWB is not set |
949 | # CONFIG_MMC is not set | 980 | # CONFIG_MMC is not set |
950 | # CONFIG_MEMSTICK is not set | 981 | # CONFIG_MEMSTICK is not set |
@@ -976,6 +1007,7 @@ CONFIG_FS_MBCACHE=y | |||
976 | CONFIG_FILE_LOCKING=y | 1007 | CONFIG_FILE_LOCKING=y |
977 | # CONFIG_XFS_FS is not set | 1008 | # CONFIG_XFS_FS is not set |
978 | # CONFIG_OCFS2_FS is not set | 1009 | # CONFIG_OCFS2_FS is not set |
1010 | # CONFIG_BTRFS_FS is not set | ||
979 | CONFIG_DNOTIFY=y | 1011 | CONFIG_DNOTIFY=y |
980 | CONFIG_INOTIFY=y | 1012 | CONFIG_INOTIFY=y |
981 | CONFIG_INOTIFY_USER=y | 1013 | CONFIG_INOTIFY_USER=y |
@@ -1009,10 +1041,7 @@ CONFIG_TMPFS=y | |||
1009 | # CONFIG_TMPFS_POSIX_ACL is not set | 1041 | # CONFIG_TMPFS_POSIX_ACL is not set |
1010 | # CONFIG_HUGETLB_PAGE is not set | 1042 | # CONFIG_HUGETLB_PAGE is not set |
1011 | # CONFIG_CONFIGFS_FS is not set | 1043 | # CONFIG_CONFIGFS_FS is not set |
1012 | 1044 | CONFIG_MISC_FILESYSTEMS=y | |
1013 | # | ||
1014 | # Miscellaneous filesystems | ||
1015 | # | ||
1016 | # CONFIG_ADFS_FS is not set | 1045 | # CONFIG_ADFS_FS is not set |
1017 | # CONFIG_AFFS_FS is not set | 1046 | # CONFIG_AFFS_FS is not set |
1018 | # CONFIG_HFS_FS is not set | 1047 | # CONFIG_HFS_FS is not set |
@@ -1032,6 +1061,7 @@ CONFIG_JFFS2_ZLIB=y | |||
1032 | CONFIG_JFFS2_RTIME=y | 1061 | CONFIG_JFFS2_RTIME=y |
1033 | # CONFIG_JFFS2_RUBIN is not set | 1062 | # CONFIG_JFFS2_RUBIN is not set |
1034 | CONFIG_CRAMFS=y | 1063 | CONFIG_CRAMFS=y |
1064 | # CONFIG_SQUASHFS is not set | ||
1035 | # CONFIG_VXFS_FS is not set | 1065 | # CONFIG_VXFS_FS is not set |
1036 | # CONFIG_MINIX_FS is not set | 1066 | # CONFIG_MINIX_FS is not set |
1037 | # CONFIG_OMFS_FS is not set | 1067 | # CONFIG_OMFS_FS is not set |
@@ -1082,6 +1112,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
1082 | # Library routines | 1112 | # Library routines |
1083 | # | 1113 | # |
1084 | CONFIG_BITREVERSE=y | 1114 | CONFIG_BITREVERSE=y |
1115 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1085 | # CONFIG_CRC_CCITT is not set | 1116 | # CONFIG_CRC_CCITT is not set |
1086 | # CONFIG_CRC16 is not set | 1117 | # CONFIG_CRC16 is not set |
1087 | # CONFIG_CRC_T10DIF is not set | 1118 | # CONFIG_CRC_T10DIF is not set |
@@ -1117,6 +1148,8 @@ CONFIG_FRAME_WARN=1024 | |||
1117 | # CONFIG_LATENCYTOP is not set | 1148 | # CONFIG_LATENCYTOP is not set |
1118 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1149 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1119 | CONFIG_HAVE_FUNCTION_TRACER=y | 1150 | CONFIG_HAVE_FUNCTION_TRACER=y |
1151 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1152 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1120 | 1153 | ||
1121 | # | 1154 | # |
1122 | # Tracers | 1155 | # Tracers |
@@ -1124,6 +1157,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1124 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1157 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1125 | # CONFIG_SAMPLES is not set | 1158 | # CONFIG_SAMPLES is not set |
1126 | CONFIG_HAVE_ARCH_KGDB=y | 1159 | CONFIG_HAVE_ARCH_KGDB=y |
1160 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1127 | # CONFIG_IRQSTACKS is not set | 1161 | # CONFIG_IRQSTACKS is not set |
1128 | # CONFIG_PPC_EARLY_DEBUG is not set | 1162 | # CONFIG_PPC_EARLY_DEBUG is not set |
1129 | 1163 | ||
@@ -1141,6 +1175,7 @@ CONFIG_CRYPTO=y | |||
1141 | # | 1175 | # |
1142 | # CONFIG_CRYPTO_FIPS is not set | 1176 | # CONFIG_CRYPTO_FIPS is not set |
1143 | # CONFIG_CRYPTO_MANAGER is not set | 1177 | # CONFIG_CRYPTO_MANAGER is not set |
1178 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
1144 | # CONFIG_CRYPTO_GF128MUL is not set | 1179 | # CONFIG_CRYPTO_GF128MUL is not set |
1145 | # CONFIG_CRYPTO_NULL is not set | 1180 | # CONFIG_CRYPTO_NULL is not set |
1146 | # CONFIG_CRYPTO_CRYPTD is not set | 1181 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/85xx/tqm8541_defconfig b/arch/powerpc/configs/85xx/tqm8541_defconfig index a92a639cdf8a..b8669231c1fe 100644 --- a/arch/powerpc/configs/85xx/tqm8541_defconfig +++ b/arch/powerpc/configs/85xx/tqm8541_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:21 2008 | 4 | # Mon Jan 26 15:36:20 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -46,7 +48,7 @@ CONFIG_GENERIC_GPIO=y | |||
46 | CONFIG_PPC=y | 48 | CONFIG_PPC=y |
47 | CONFIG_EARLY_PRINTK=y | 49 | CONFIG_EARLY_PRINTK=y |
48 | CONFIG_GENERIC_NVRAM=y | 50 | CONFIG_GENERIC_NVRAM=y |
49 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 51 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
50 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 52 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
51 | CONFIG_PPC_OF=y | 53 | CONFIG_PPC_OF=y |
52 | CONFIG_OF=y | 54 | CONFIG_OF=y |
@@ -76,12 +78,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
76 | # CONFIG_AUDIT is not set | 78 | # CONFIG_AUDIT is not set |
77 | # CONFIG_IKCONFIG is not set | 79 | # CONFIG_IKCONFIG is not set |
78 | CONFIG_LOG_BUF_SHIFT=14 | 80 | CONFIG_LOG_BUF_SHIFT=14 |
79 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_GROUP_SCHED=y | 81 | CONFIG_GROUP_SCHED=y |
81 | CONFIG_FAIR_GROUP_SCHED=y | 82 | CONFIG_FAIR_GROUP_SCHED=y |
82 | # CONFIG_RT_GROUP_SCHED is not set | 83 | # CONFIG_RT_GROUP_SCHED is not set |
83 | CONFIG_USER_SCHED=y | 84 | CONFIG_USER_SCHED=y |
84 | # CONFIG_CGROUP_SCHED is not set | 85 | # CONFIG_CGROUP_SCHED is not set |
86 | # CONFIG_CGROUPS is not set | ||
85 | CONFIG_SYSFS_DEPRECATED=y | 87 | CONFIG_SYSFS_DEPRECATED=y |
86 | CONFIG_SYSFS_DEPRECATED_V2=y | 88 | CONFIG_SYSFS_DEPRECATED_V2=y |
87 | # CONFIG_RELAY is not set | 89 | # CONFIG_RELAY is not set |
@@ -114,7 +116,6 @@ CONFIG_SLUB_DEBUG=y | |||
114 | CONFIG_SLUB=y | 116 | CONFIG_SLUB=y |
115 | # CONFIG_SLOB is not set | 117 | # CONFIG_SLOB is not set |
116 | # CONFIG_PROFILING is not set | 118 | # CONFIG_PROFILING is not set |
117 | # CONFIG_MARKERS is not set | ||
118 | CONFIG_HAVE_OPROFILE=y | 119 | CONFIG_HAVE_OPROFILE=y |
119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
120 | CONFIG_HAVE_IOREMAP_PROT=y | 121 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -125,13 +126,11 @@ CONFIG_HAVE_CLK=y | |||
125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
126 | CONFIG_SLABINFO=y | 127 | CONFIG_SLABINFO=y |
127 | CONFIG_RT_MUTEXES=y | 128 | CONFIG_RT_MUTEXES=y |
128 | # CONFIG_TINY_SHMEM is not set | ||
129 | CONFIG_BASE_SMALL=0 | 129 | CONFIG_BASE_SMALL=0 |
130 | # CONFIG_MODULES is not set | 130 | # CONFIG_MODULES is not set |
131 | CONFIG_BLOCK=y | 131 | CONFIG_BLOCK=y |
132 | # CONFIG_LBD is not set | 132 | # CONFIG_LBD is not set |
133 | # CONFIG_BLK_DEV_IO_TRACE is not set | 133 | # CONFIG_BLK_DEV_IO_TRACE is not set |
134 | # CONFIG_LSF is not set | ||
135 | # CONFIG_BLK_DEV_BSG is not set | 134 | # CONFIG_BLK_DEV_BSG is not set |
136 | # CONFIG_BLK_DEV_INTEGRITY is not set | 135 | # CONFIG_BLK_DEV_INTEGRITY is not set |
137 | 136 | ||
@@ -148,6 +147,10 @@ CONFIG_DEFAULT_AS=y | |||
148 | # CONFIG_DEFAULT_NOOP is not set | 147 | # CONFIG_DEFAULT_NOOP is not set |
149 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 148 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
150 | CONFIG_CLASSIC_RCU=y | 149 | CONFIG_CLASSIC_RCU=y |
150 | # CONFIG_TREE_RCU is not set | ||
151 | # CONFIG_PREEMPT_RCU is not set | ||
152 | # CONFIG_TREE_RCU_TRACE is not set | ||
153 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
151 | # CONFIG_FREEZER is not set | 154 | # CONFIG_FREEZER is not set |
152 | 155 | ||
153 | # | 156 | # |
@@ -189,6 +192,7 @@ CONFIG_CPM2=y | |||
189 | # CONFIG_FSL_ULI1575 is not set | 192 | # CONFIG_FSL_ULI1575 is not set |
190 | CONFIG_CPM=y | 193 | CONFIG_CPM=y |
191 | # CONFIG_MPC8xxx_GPIO is not set | 194 | # CONFIG_MPC8xxx_GPIO is not set |
195 | # CONFIG_SIMPLE_GPIO is not set | ||
192 | 196 | ||
193 | # | 197 | # |
194 | # Kernel options | 198 | # Kernel options |
@@ -226,12 +230,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
226 | CONFIG_PAGEFLAGS_EXTENDED=y | 230 | CONFIG_PAGEFLAGS_EXTENDED=y |
227 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 231 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
228 | CONFIG_MIGRATION=y | 232 | CONFIG_MIGRATION=y |
229 | # CONFIG_RESOURCES_64BIT is not set | ||
230 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 233 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
231 | CONFIG_ZONE_DMA_FLAG=1 | 234 | CONFIG_ZONE_DMA_FLAG=1 |
232 | CONFIG_BOUNCE=y | 235 | CONFIG_BOUNCE=y |
233 | CONFIG_VIRT_TO_BUS=y | 236 | CONFIG_VIRT_TO_BUS=y |
234 | CONFIG_UNEVICTABLE_LRU=y | 237 | CONFIG_UNEVICTABLE_LRU=y |
238 | CONFIG_PPC_4K_PAGES=y | ||
239 | # CONFIG_PPC_16K_PAGES is not set | ||
240 | # CONFIG_PPC_64K_PAGES is not set | ||
235 | CONFIG_FORCE_MAX_ZONEORDER=11 | 241 | CONFIG_FORCE_MAX_ZONEORDER=11 |
236 | # CONFIG_PROC_DEVICETREE is not set | 242 | # CONFIG_PROC_DEVICETREE is not set |
237 | # CONFIG_CMDLINE_BOOL is not set | 243 | # CONFIG_CMDLINE_BOOL is not set |
@@ -255,6 +261,7 @@ CONFIG_PCI_SYSCALL=y | |||
255 | CONFIG_ARCH_SUPPORTS_MSI=y | 261 | CONFIG_ARCH_SUPPORTS_MSI=y |
256 | # CONFIG_PCI_MSI is not set | 262 | # CONFIG_PCI_MSI is not set |
257 | # CONFIG_PCI_LEGACY is not set | 263 | # CONFIG_PCI_LEGACY is not set |
264 | # CONFIG_PCI_STUB is not set | ||
258 | # CONFIG_HAS_RAPIDIO is not set | 265 | # CONFIG_HAS_RAPIDIO is not set |
259 | 266 | ||
260 | # | 267 | # |
@@ -276,6 +283,7 @@ CONFIG_NET=y | |||
276 | # | 283 | # |
277 | # Networking options | 284 | # Networking options |
278 | # | 285 | # |
286 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
279 | CONFIG_PACKET=y | 287 | CONFIG_PACKET=y |
280 | # CONFIG_PACKET_MMAP is not set | 288 | # CONFIG_PACKET_MMAP is not set |
281 | CONFIG_UNIX=y | 289 | CONFIG_UNIX=y |
@@ -332,6 +340,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
332 | # CONFIG_ECONET is not set | 340 | # CONFIG_ECONET is not set |
333 | # CONFIG_WAN_ROUTER is not set | 341 | # CONFIG_WAN_ROUTER is not set |
334 | # CONFIG_NET_SCHED is not set | 342 | # CONFIG_NET_SCHED is not set |
343 | # CONFIG_DCB is not set | ||
335 | 344 | ||
336 | # | 345 | # |
337 | # Network testing | 346 | # Network testing |
@@ -347,8 +356,9 @@ CONFIG_WIRELESS=y | |||
347 | # CONFIG_CFG80211 is not set | 356 | # CONFIG_CFG80211 is not set |
348 | CONFIG_WIRELESS_OLD_REGULATORY=y | 357 | CONFIG_WIRELESS_OLD_REGULATORY=y |
349 | # CONFIG_WIRELESS_EXT is not set | 358 | # CONFIG_WIRELESS_EXT is not set |
359 | # CONFIG_LIB80211 is not set | ||
350 | # CONFIG_MAC80211 is not set | 360 | # CONFIG_MAC80211 is not set |
351 | # CONFIG_IEEE80211 is not set | 361 | # CONFIG_WIMAX is not set |
352 | # CONFIG_RFKILL is not set | 362 | # CONFIG_RFKILL is not set |
353 | # CONFIG_NET_9P is not set | 363 | # CONFIG_NET_9P is not set |
354 | 364 | ||
@@ -438,6 +448,12 @@ CONFIG_MTD_CFI_UTIL=y | |||
438 | # CONFIG_MTD_ONENAND is not set | 448 | # CONFIG_MTD_ONENAND is not set |
439 | 449 | ||
440 | # | 450 | # |
451 | # LPDDR flash memory drivers | ||
452 | # | ||
453 | # CONFIG_MTD_LPDDR is not set | ||
454 | # CONFIG_MTD_QINFO_PROBE is not set | ||
455 | |||
456 | # | ||
441 | # UBI - Unsorted block images | 457 | # UBI - Unsorted block images |
442 | # | 458 | # |
443 | # CONFIG_MTD_UBI is not set | 459 | # CONFIG_MTD_UBI is not set |
@@ -468,8 +484,10 @@ CONFIG_MISC_DEVICES=y | |||
468 | # CONFIG_EEPROM_93CX6 is not set | 484 | # CONFIG_EEPROM_93CX6 is not set |
469 | # CONFIG_SGI_IOC4 is not set | 485 | # CONFIG_SGI_IOC4 is not set |
470 | # CONFIG_TIFM_CORE is not set | 486 | # CONFIG_TIFM_CORE is not set |
487 | # CONFIG_ICS932S401 is not set | ||
471 | # CONFIG_ENCLOSURE_SERVICES is not set | 488 | # CONFIG_ENCLOSURE_SERVICES is not set |
472 | # CONFIG_HP_ILO is not set | 489 | # CONFIG_HP_ILO is not set |
490 | # CONFIG_C2PORT is not set | ||
473 | CONFIG_HAVE_IDE=y | 491 | CONFIG_HAVE_IDE=y |
474 | CONFIG_IDE=y | 492 | CONFIG_IDE=y |
475 | 493 | ||
@@ -512,6 +530,7 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
512 | # CONFIG_BLK_DEV_JMICRON is not set | 530 | # CONFIG_BLK_DEV_JMICRON is not set |
513 | # CONFIG_BLK_DEV_SC1200 is not set | 531 | # CONFIG_BLK_DEV_SC1200 is not set |
514 | # CONFIG_BLK_DEV_PIIX is not set | 532 | # CONFIG_BLK_DEV_PIIX is not set |
533 | # CONFIG_BLK_DEV_IT8172 is not set | ||
515 | # CONFIG_BLK_DEV_IT8213 is not set | 534 | # CONFIG_BLK_DEV_IT8213 is not set |
516 | # CONFIG_BLK_DEV_IT821X is not set | 535 | # CONFIG_BLK_DEV_IT821X is not set |
517 | # CONFIG_BLK_DEV_NS87415 is not set | 536 | # CONFIG_BLK_DEV_NS87415 is not set |
@@ -571,6 +590,9 @@ CONFIG_PHYLIB=y | |||
571 | # CONFIG_BROADCOM_PHY is not set | 590 | # CONFIG_BROADCOM_PHY is not set |
572 | # CONFIG_ICPLUS_PHY is not set | 591 | # CONFIG_ICPLUS_PHY is not set |
573 | # CONFIG_REALTEK_PHY is not set | 592 | # CONFIG_REALTEK_PHY is not set |
593 | # CONFIG_NATIONAL_PHY is not set | ||
594 | # CONFIG_STE10XP is not set | ||
595 | # CONFIG_LSI_ET1011C_PHY is not set | ||
574 | # CONFIG_FIXED_PHY is not set | 596 | # CONFIG_FIXED_PHY is not set |
575 | # CONFIG_MDIO_BITBANG is not set | 597 | # CONFIG_MDIO_BITBANG is not set |
576 | CONFIG_NET_ETHERNET=y | 598 | CONFIG_NET_ETHERNET=y |
@@ -594,7 +616,6 @@ CONFIG_NET_PCI=y | |||
594 | # CONFIG_ADAPTEC_STARFIRE is not set | 616 | # CONFIG_ADAPTEC_STARFIRE is not set |
595 | # CONFIG_B44 is not set | 617 | # CONFIG_B44 is not set |
596 | # CONFIG_FORCEDETH is not set | 618 | # CONFIG_FORCEDETH is not set |
597 | # CONFIG_EEPRO100 is not set | ||
598 | CONFIG_E100=y | 619 | CONFIG_E100=y |
599 | # CONFIG_FEALNX is not set | 620 | # CONFIG_FEALNX is not set |
600 | # CONFIG_NATSEMI is not set | 621 | # CONFIG_NATSEMI is not set |
@@ -604,6 +625,7 @@ CONFIG_E100=y | |||
604 | # CONFIG_R6040 is not set | 625 | # CONFIG_R6040 is not set |
605 | # CONFIG_SIS900 is not set | 626 | # CONFIG_SIS900 is not set |
606 | # CONFIG_EPIC100 is not set | 627 | # CONFIG_EPIC100 is not set |
628 | # CONFIG_SMSC9420 is not set | ||
607 | # CONFIG_SUNDANCE is not set | 629 | # CONFIG_SUNDANCE is not set |
608 | # CONFIG_TLAN is not set | 630 | # CONFIG_TLAN is not set |
609 | # CONFIG_VIA_RHINE is not set | 631 | # CONFIG_VIA_RHINE is not set |
@@ -634,6 +656,7 @@ CONFIG_GIANFAR=y | |||
634 | # CONFIG_JME is not set | 656 | # CONFIG_JME is not set |
635 | CONFIG_NETDEV_10000=y | 657 | CONFIG_NETDEV_10000=y |
636 | # CONFIG_CHELSIO_T1 is not set | 658 | # CONFIG_CHELSIO_T1 is not set |
659 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
637 | # CONFIG_CHELSIO_T3 is not set | 660 | # CONFIG_CHELSIO_T3 is not set |
638 | # CONFIG_ENIC is not set | 661 | # CONFIG_ENIC is not set |
639 | # CONFIG_IXGBE is not set | 662 | # CONFIG_IXGBE is not set |
@@ -656,6 +679,10 @@ CONFIG_NETDEV_10000=y | |||
656 | # CONFIG_WLAN_PRE80211 is not set | 679 | # CONFIG_WLAN_PRE80211 is not set |
657 | # CONFIG_WLAN_80211 is not set | 680 | # CONFIG_WLAN_80211 is not set |
658 | # CONFIG_IWLWIFI_LEDS is not set | 681 | # CONFIG_IWLWIFI_LEDS is not set |
682 | |||
683 | # | ||
684 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
685 | # | ||
659 | # CONFIG_WAN is not set | 686 | # CONFIG_WAN is not set |
660 | # CONFIG_FDDI is not set | 687 | # CONFIG_FDDI is not set |
661 | # CONFIG_HIPPI is not set | 688 | # CONFIG_HIPPI is not set |
@@ -728,8 +755,10 @@ CONFIG_SERIAL_CPM_CONSOLE=y | |||
728 | # CONFIG_SERIAL_JSM is not set | 755 | # CONFIG_SERIAL_JSM is not set |
729 | # CONFIG_SERIAL_OF_PLATFORM is not set | 756 | # CONFIG_SERIAL_OF_PLATFORM is not set |
730 | CONFIG_UNIX98_PTYS=y | 757 | CONFIG_UNIX98_PTYS=y |
758 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
731 | CONFIG_LEGACY_PTYS=y | 759 | CONFIG_LEGACY_PTYS=y |
732 | CONFIG_LEGACY_PTY_COUNT=256 | 760 | CONFIG_LEGACY_PTY_COUNT=256 |
761 | # CONFIG_HVC_UDBG is not set | ||
733 | # CONFIG_IPMI_HANDLER is not set | 762 | # CONFIG_IPMI_HANDLER is not set |
734 | CONFIG_HW_RANDOM=y | 763 | CONFIG_HW_RANDOM=y |
735 | # CONFIG_NVRAM is not set | 764 | # CONFIG_NVRAM is not set |
@@ -802,7 +831,6 @@ CONFIG_I2C_MPC=y | |||
802 | # CONFIG_PCF8575 is not set | 831 | # CONFIG_PCF8575 is not set |
803 | # CONFIG_SENSORS_PCA9539 is not set | 832 | # CONFIG_SENSORS_PCA9539 is not set |
804 | # CONFIG_SENSORS_PCF8591 is not set | 833 | # CONFIG_SENSORS_PCF8591 is not set |
805 | # CONFIG_TPS65010 is not set | ||
806 | # CONFIG_SENSORS_MAX6875 is not set | 834 | # CONFIG_SENSORS_MAX6875 is not set |
807 | # CONFIG_SENSORS_TSL2550 is not set | 835 | # CONFIG_SENSORS_TSL2550 is not set |
808 | # CONFIG_I2C_DEBUG_CORE is not set | 836 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -816,6 +844,11 @@ CONFIG_GPIOLIB=y | |||
816 | # CONFIG_GPIO_SYSFS is not set | 844 | # CONFIG_GPIO_SYSFS is not set |
817 | 845 | ||
818 | # | 846 | # |
847 | # Memory mapped GPIO expanders: | ||
848 | # | ||
849 | # CONFIG_GPIO_XILINX is not set | ||
850 | |||
851 | # | ||
819 | # I2C GPIO expanders: | 852 | # I2C GPIO expanders: |
820 | # | 853 | # |
821 | # CONFIG_GPIO_MAX732X is not set | 854 | # CONFIG_GPIO_MAX732X is not set |
@@ -842,8 +875,10 @@ CONFIG_HWMON=y | |||
842 | # CONFIG_SENSORS_ADM1029 is not set | 875 | # CONFIG_SENSORS_ADM1029 is not set |
843 | # CONFIG_SENSORS_ADM1031 is not set | 876 | # CONFIG_SENSORS_ADM1031 is not set |
844 | # CONFIG_SENSORS_ADM9240 is not set | 877 | # CONFIG_SENSORS_ADM9240 is not set |
878 | # CONFIG_SENSORS_ADT7462 is not set | ||
845 | # CONFIG_SENSORS_ADT7470 is not set | 879 | # CONFIG_SENSORS_ADT7470 is not set |
846 | # CONFIG_SENSORS_ADT7473 is not set | 880 | # CONFIG_SENSORS_ADT7473 is not set |
881 | # CONFIG_SENSORS_ADT7475 is not set | ||
847 | # CONFIG_SENSORS_ATXP1 is not set | 882 | # CONFIG_SENSORS_ATXP1 is not set |
848 | # CONFIG_SENSORS_DS1621 is not set | 883 | # CONFIG_SENSORS_DS1621 is not set |
849 | # CONFIG_SENSORS_I5K_AMB is not set | 884 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -864,6 +899,7 @@ CONFIG_SENSORS_LM75=y | |||
864 | # CONFIG_SENSORS_LM90 is not set | 899 | # CONFIG_SENSORS_LM90 is not set |
865 | # CONFIG_SENSORS_LM92 is not set | 900 | # CONFIG_SENSORS_LM92 is not set |
866 | # CONFIG_SENSORS_LM93 is not set | 901 | # CONFIG_SENSORS_LM93 is not set |
902 | # CONFIG_SENSORS_LTC4245 is not set | ||
867 | # CONFIG_SENSORS_MAX1619 is not set | 903 | # CONFIG_SENSORS_MAX1619 is not set |
868 | # CONFIG_SENSORS_MAX6650 is not set | 904 | # CONFIG_SENSORS_MAX6650 is not set |
869 | # CONFIG_SENSORS_PC87360 is not set | 905 | # CONFIG_SENSORS_PC87360 is not set |
@@ -890,11 +926,11 @@ CONFIG_HWMON_DEBUG_CHIP=y | |||
890 | # CONFIG_THERMAL is not set | 926 | # CONFIG_THERMAL is not set |
891 | # CONFIG_THERMAL_HWMON is not set | 927 | # CONFIG_THERMAL_HWMON is not set |
892 | # CONFIG_WATCHDOG is not set | 928 | # CONFIG_WATCHDOG is not set |
929 | CONFIG_SSB_POSSIBLE=y | ||
893 | 930 | ||
894 | # | 931 | # |
895 | # Sonics Silicon Backplane | 932 | # Sonics Silicon Backplane |
896 | # | 933 | # |
897 | CONFIG_SSB_POSSIBLE=y | ||
898 | # CONFIG_SSB is not set | 934 | # CONFIG_SSB is not set |
899 | 935 | ||
900 | # | 936 | # |
@@ -903,18 +939,14 @@ CONFIG_SSB_POSSIBLE=y | |||
903 | # CONFIG_MFD_CORE is not set | 939 | # CONFIG_MFD_CORE is not set |
904 | # CONFIG_MFD_SM501 is not set | 940 | # CONFIG_MFD_SM501 is not set |
905 | # CONFIG_HTC_PASIC3 is not set | 941 | # CONFIG_HTC_PASIC3 is not set |
942 | # CONFIG_TPS65010 is not set | ||
943 | # CONFIG_TWL4030_CORE is not set | ||
906 | # CONFIG_MFD_TMIO is not set | 944 | # CONFIG_MFD_TMIO is not set |
907 | # CONFIG_PMIC_DA903X is not set | 945 | # CONFIG_PMIC_DA903X is not set |
908 | # CONFIG_MFD_WM8400 is not set | 946 | # CONFIG_MFD_WM8400 is not set |
909 | # CONFIG_MFD_WM8350_I2C is not set | 947 | # CONFIG_MFD_WM8350_I2C is not set |
910 | 948 | # CONFIG_MFD_PCF50633 is not set | |
911 | # | ||
912 | # Voltage and Current regulators | ||
913 | # | ||
914 | # CONFIG_REGULATOR is not set | 949 | # CONFIG_REGULATOR is not set |
915 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
916 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
917 | # CONFIG_REGULATOR_BQ24022 is not set | ||
918 | 950 | ||
919 | # | 951 | # |
920 | # Multimedia devices | 952 | # Multimedia devices |
@@ -970,9 +1002,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
970 | # | 1002 | # |
971 | 1003 | ||
972 | # | 1004 | # |
973 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1005 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
974 | # | 1006 | # |
975 | # CONFIG_USB_GADGET is not set | 1007 | # CONFIG_USB_GADGET is not set |
1008 | |||
1009 | # | ||
1010 | # OTG and related infrastructure | ||
1011 | # | ||
976 | # CONFIG_UWB is not set | 1012 | # CONFIG_UWB is not set |
977 | # CONFIG_MMC is not set | 1013 | # CONFIG_MMC is not set |
978 | # CONFIG_MEMSTICK is not set | 1014 | # CONFIG_MEMSTICK is not set |
@@ -1004,6 +1040,7 @@ CONFIG_FS_MBCACHE=y | |||
1004 | CONFIG_FILE_LOCKING=y | 1040 | CONFIG_FILE_LOCKING=y |
1005 | # CONFIG_XFS_FS is not set | 1041 | # CONFIG_XFS_FS is not set |
1006 | # CONFIG_OCFS2_FS is not set | 1042 | # CONFIG_OCFS2_FS is not set |
1043 | # CONFIG_BTRFS_FS is not set | ||
1007 | CONFIG_DNOTIFY=y | 1044 | CONFIG_DNOTIFY=y |
1008 | CONFIG_INOTIFY=y | 1045 | CONFIG_INOTIFY=y |
1009 | CONFIG_INOTIFY_USER=y | 1046 | CONFIG_INOTIFY_USER=y |
@@ -1037,10 +1074,7 @@ CONFIG_TMPFS=y | |||
1037 | # CONFIG_TMPFS_POSIX_ACL is not set | 1074 | # CONFIG_TMPFS_POSIX_ACL is not set |
1038 | # CONFIG_HUGETLB_PAGE is not set | 1075 | # CONFIG_HUGETLB_PAGE is not set |
1039 | # CONFIG_CONFIGFS_FS is not set | 1076 | # CONFIG_CONFIGFS_FS is not set |
1040 | 1077 | CONFIG_MISC_FILESYSTEMS=y | |
1041 | # | ||
1042 | # Miscellaneous filesystems | ||
1043 | # | ||
1044 | # CONFIG_ADFS_FS is not set | 1078 | # CONFIG_ADFS_FS is not set |
1045 | # CONFIG_AFFS_FS is not set | 1079 | # CONFIG_AFFS_FS is not set |
1046 | # CONFIG_HFS_FS is not set | 1080 | # CONFIG_HFS_FS is not set |
@@ -1060,6 +1094,7 @@ CONFIG_JFFS2_ZLIB=y | |||
1060 | CONFIG_JFFS2_RTIME=y | 1094 | CONFIG_JFFS2_RTIME=y |
1061 | # CONFIG_JFFS2_RUBIN is not set | 1095 | # CONFIG_JFFS2_RUBIN is not set |
1062 | CONFIG_CRAMFS=y | 1096 | CONFIG_CRAMFS=y |
1097 | # CONFIG_SQUASHFS is not set | ||
1063 | # CONFIG_VXFS_FS is not set | 1098 | # CONFIG_VXFS_FS is not set |
1064 | # CONFIG_MINIX_FS is not set | 1099 | # CONFIG_MINIX_FS is not set |
1065 | # CONFIG_OMFS_FS is not set | 1100 | # CONFIG_OMFS_FS is not set |
@@ -1110,6 +1145,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
1110 | # Library routines | 1145 | # Library routines |
1111 | # | 1146 | # |
1112 | CONFIG_BITREVERSE=y | 1147 | CONFIG_BITREVERSE=y |
1148 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1113 | # CONFIG_CRC_CCITT is not set | 1149 | # CONFIG_CRC_CCITT is not set |
1114 | # CONFIG_CRC16 is not set | 1150 | # CONFIG_CRC16 is not set |
1115 | # CONFIG_CRC_T10DIF is not set | 1151 | # CONFIG_CRC_T10DIF is not set |
@@ -1145,6 +1181,8 @@ CONFIG_FRAME_WARN=1024 | |||
1145 | # CONFIG_LATENCYTOP is not set | 1181 | # CONFIG_LATENCYTOP is not set |
1146 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1182 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1147 | CONFIG_HAVE_FUNCTION_TRACER=y | 1183 | CONFIG_HAVE_FUNCTION_TRACER=y |
1184 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1185 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1148 | 1186 | ||
1149 | # | 1187 | # |
1150 | # Tracers | 1188 | # Tracers |
@@ -1152,6 +1190,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1152 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1190 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1153 | # CONFIG_SAMPLES is not set | 1191 | # CONFIG_SAMPLES is not set |
1154 | CONFIG_HAVE_ARCH_KGDB=y | 1192 | CONFIG_HAVE_ARCH_KGDB=y |
1193 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1155 | # CONFIG_IRQSTACKS is not set | 1194 | # CONFIG_IRQSTACKS is not set |
1156 | # CONFIG_PPC_EARLY_DEBUG is not set | 1195 | # CONFIG_PPC_EARLY_DEBUG is not set |
1157 | 1196 | ||
@@ -1169,6 +1208,7 @@ CONFIG_CRYPTO=y | |||
1169 | # | 1208 | # |
1170 | # CONFIG_CRYPTO_FIPS is not set | 1209 | # CONFIG_CRYPTO_FIPS is not set |
1171 | # CONFIG_CRYPTO_MANAGER is not set | 1210 | # CONFIG_CRYPTO_MANAGER is not set |
1211 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
1172 | # CONFIG_CRYPTO_GF128MUL is not set | 1212 | # CONFIG_CRYPTO_GF128MUL is not set |
1173 | # CONFIG_CRYPTO_NULL is not set | 1213 | # CONFIG_CRYPTO_NULL is not set |
1174 | # CONFIG_CRYPTO_CRYPTD is not set | 1214 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/85xx/tqm8548_defconfig b/arch/powerpc/configs/85xx/tqm8548_defconfig index 397d37fbe7e3..0bc45975911a 100644 --- a/arch/powerpc/configs/85xx/tqm8548_defconfig +++ b/arch/powerpc/configs/85xx/tqm8548_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:22 2008 | 4 | # Mon Jan 26 15:36:20 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -45,7 +47,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
45 | CONFIG_PPC=y | 47 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 48 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 49 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 50 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 51 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 52 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 53 | CONFIG_OF=y |
@@ -75,12 +77,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 78 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 79 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 80 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 81 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 82 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 83 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 84 | # CONFIG_CGROUP_SCHED is not set |
85 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 86 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 87 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 88 | # CONFIG_RELAY is not set |
@@ -115,7 +117,6 @@ CONFIG_SLUB_DEBUG=y | |||
115 | CONFIG_SLUB=y | 117 | CONFIG_SLUB=y |
116 | # CONFIG_SLOB is not set | 118 | # CONFIG_SLOB is not set |
117 | # CONFIG_PROFILING is not set | 119 | # CONFIG_PROFILING is not set |
118 | # CONFIG_MARKERS is not set | ||
119 | CONFIG_HAVE_OPROFILE=y | 120 | CONFIG_HAVE_OPROFILE=y |
120 | # CONFIG_KPROBES is not set | 121 | # CONFIG_KPROBES is not set |
121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 122 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -126,7 +127,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 127 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
127 | CONFIG_SLABINFO=y | 128 | CONFIG_SLABINFO=y |
128 | CONFIG_RT_MUTEXES=y | 129 | CONFIG_RT_MUTEXES=y |
129 | # CONFIG_TINY_SHMEM is not set | ||
130 | CONFIG_BASE_SMALL=0 | 130 | CONFIG_BASE_SMALL=0 |
131 | CONFIG_MODULES=y | 131 | CONFIG_MODULES=y |
132 | # CONFIG_MODULE_FORCE_LOAD is not set | 132 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -134,11 +134,9 @@ CONFIG_MODULE_UNLOAD=y | |||
134 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 134 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
135 | # CONFIG_MODVERSIONS is not set | 135 | # CONFIG_MODVERSIONS is not set |
136 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 136 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
137 | CONFIG_KMOD=y | ||
138 | CONFIG_BLOCK=y | 137 | CONFIG_BLOCK=y |
139 | # CONFIG_LBD is not set | 138 | # CONFIG_LBD is not set |
140 | # CONFIG_BLK_DEV_IO_TRACE is not set | 139 | # CONFIG_BLK_DEV_IO_TRACE is not set |
141 | # CONFIG_LSF is not set | ||
142 | # CONFIG_BLK_DEV_BSG is not set | 140 | # CONFIG_BLK_DEV_BSG is not set |
143 | # CONFIG_BLK_DEV_INTEGRITY is not set | 141 | # CONFIG_BLK_DEV_INTEGRITY is not set |
144 | 142 | ||
@@ -155,6 +153,10 @@ CONFIG_DEFAULT_AS=y | |||
155 | # CONFIG_DEFAULT_NOOP is not set | 153 | # CONFIG_DEFAULT_NOOP is not set |
156 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 154 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
157 | CONFIG_CLASSIC_RCU=y | 155 | CONFIG_CLASSIC_RCU=y |
156 | # CONFIG_TREE_RCU is not set | ||
157 | # CONFIG_PREEMPT_RCU is not set | ||
158 | # CONFIG_TREE_RCU_TRACE is not set | ||
159 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
158 | # CONFIG_FREEZER is not set | 160 | # CONFIG_FREEZER is not set |
159 | 161 | ||
160 | # | 162 | # |
@@ -195,6 +197,7 @@ CONFIG_MPIC=y | |||
195 | # CONFIG_CPM2 is not set | 197 | # CONFIG_CPM2 is not set |
196 | # CONFIG_FSL_ULI1575 is not set | 198 | # CONFIG_FSL_ULI1575 is not set |
197 | # CONFIG_MPC8xxx_GPIO is not set | 199 | # CONFIG_MPC8xxx_GPIO is not set |
200 | # CONFIG_SIMPLE_GPIO is not set | ||
198 | 201 | ||
199 | # | 202 | # |
200 | # Kernel options | 203 | # Kernel options |
@@ -233,12 +236,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
233 | CONFIG_PAGEFLAGS_EXTENDED=y | 236 | CONFIG_PAGEFLAGS_EXTENDED=y |
234 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 237 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
235 | CONFIG_MIGRATION=y | 238 | CONFIG_MIGRATION=y |
236 | # CONFIG_RESOURCES_64BIT is not set | ||
237 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 239 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
238 | CONFIG_ZONE_DMA_FLAG=1 | 240 | CONFIG_ZONE_DMA_FLAG=1 |
239 | CONFIG_BOUNCE=y | 241 | CONFIG_BOUNCE=y |
240 | CONFIG_VIRT_TO_BUS=y | 242 | CONFIG_VIRT_TO_BUS=y |
241 | CONFIG_UNEVICTABLE_LRU=y | 243 | CONFIG_UNEVICTABLE_LRU=y |
244 | CONFIG_PPC_4K_PAGES=y | ||
245 | # CONFIG_PPC_16K_PAGES is not set | ||
246 | # CONFIG_PPC_64K_PAGES is not set | ||
242 | CONFIG_FORCE_MAX_ZONEORDER=11 | 247 | CONFIG_FORCE_MAX_ZONEORDER=11 |
243 | CONFIG_PROC_DEVICETREE=y | 248 | CONFIG_PROC_DEVICETREE=y |
244 | # CONFIG_CMDLINE_BOOL is not set | 249 | # CONFIG_CMDLINE_BOOL is not set |
@@ -265,6 +270,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
265 | # CONFIG_PCI_MSI is not set | 270 | # CONFIG_PCI_MSI is not set |
266 | # CONFIG_PCI_LEGACY is not set | 271 | # CONFIG_PCI_LEGACY is not set |
267 | # CONFIG_PCI_DEBUG is not set | 272 | # CONFIG_PCI_DEBUG is not set |
273 | # CONFIG_PCI_STUB is not set | ||
268 | # CONFIG_PCCARD is not set | 274 | # CONFIG_PCCARD is not set |
269 | # CONFIG_HOTPLUG_PCI is not set | 275 | # CONFIG_HOTPLUG_PCI is not set |
270 | # CONFIG_HAS_RAPIDIO is not set | 276 | # CONFIG_HAS_RAPIDIO is not set |
@@ -288,6 +294,7 @@ CONFIG_NET=y | |||
288 | # | 294 | # |
289 | # Networking options | 295 | # Networking options |
290 | # | 296 | # |
297 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
291 | CONFIG_PACKET=y | 298 | CONFIG_PACKET=y |
292 | # CONFIG_PACKET_MMAP is not set | 299 | # CONFIG_PACKET_MMAP is not set |
293 | CONFIG_UNIX=y | 300 | CONFIG_UNIX=y |
@@ -344,6 +351,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
344 | # CONFIG_ECONET is not set | 351 | # CONFIG_ECONET is not set |
345 | # CONFIG_WAN_ROUTER is not set | 352 | # CONFIG_WAN_ROUTER is not set |
346 | # CONFIG_NET_SCHED is not set | 353 | # CONFIG_NET_SCHED is not set |
354 | # CONFIG_DCB is not set | ||
347 | 355 | ||
348 | # | 356 | # |
349 | # Network testing | 357 | # Network testing |
@@ -359,8 +367,9 @@ CONFIG_WIRELESS=y | |||
359 | # CONFIG_CFG80211 is not set | 367 | # CONFIG_CFG80211 is not set |
360 | CONFIG_WIRELESS_OLD_REGULATORY=y | 368 | CONFIG_WIRELESS_OLD_REGULATORY=y |
361 | # CONFIG_WIRELESS_EXT is not set | 369 | # CONFIG_WIRELESS_EXT is not set |
370 | # CONFIG_LIB80211 is not set | ||
362 | # CONFIG_MAC80211 is not set | 371 | # CONFIG_MAC80211 is not set |
363 | # CONFIG_IEEE80211 is not set | 372 | # CONFIG_WIMAX is not set |
364 | # CONFIG_RFKILL is not set | 373 | # CONFIG_RFKILL is not set |
365 | # CONFIG_NET_9P is not set | 374 | # CONFIG_NET_9P is not set |
366 | 375 | ||
@@ -383,6 +392,7 @@ CONFIG_MTD=y | |||
383 | # CONFIG_MTD_DEBUG is not set | 392 | # CONFIG_MTD_DEBUG is not set |
384 | # CONFIG_MTD_CONCAT is not set | 393 | # CONFIG_MTD_CONCAT is not set |
385 | CONFIG_MTD_PARTITIONS=y | 394 | CONFIG_MTD_PARTITIONS=y |
395 | # CONFIG_MTD_TESTS is not set | ||
386 | # CONFIG_MTD_REDBOOT_PARTS is not set | 396 | # CONFIG_MTD_REDBOOT_PARTS is not set |
387 | # CONFIG_MTD_CMDLINE_PARTS is not set | 397 | # CONFIG_MTD_CMDLINE_PARTS is not set |
388 | CONFIG_MTD_OF_PARTS=y | 398 | CONFIG_MTD_OF_PARTS=y |
@@ -465,6 +475,12 @@ CONFIG_MTD_NAND_IDS=y | |||
465 | # CONFIG_MTD_ONENAND is not set | 475 | # CONFIG_MTD_ONENAND is not set |
466 | 476 | ||
467 | # | 477 | # |
478 | # LPDDR flash memory drivers | ||
479 | # | ||
480 | # CONFIG_MTD_LPDDR is not set | ||
481 | # CONFIG_MTD_QINFO_PROBE is not set | ||
482 | |||
483 | # | ||
468 | # UBI - Unsorted block images | 484 | # UBI - Unsorted block images |
469 | # | 485 | # |
470 | CONFIG_MTD_UBI=m | 486 | CONFIG_MTD_UBI=m |
@@ -502,8 +518,10 @@ CONFIG_MISC_DEVICES=y | |||
502 | # CONFIG_EEPROM_93CX6 is not set | 518 | # CONFIG_EEPROM_93CX6 is not set |
503 | # CONFIG_SGI_IOC4 is not set | 519 | # CONFIG_SGI_IOC4 is not set |
504 | # CONFIG_TIFM_CORE is not set | 520 | # CONFIG_TIFM_CORE is not set |
521 | # CONFIG_ICS932S401 is not set | ||
505 | # CONFIG_ENCLOSURE_SERVICES is not set | 522 | # CONFIG_ENCLOSURE_SERVICES is not set |
506 | # CONFIG_HP_ILO is not set | 523 | # CONFIG_HP_ILO is not set |
524 | # CONFIG_C2PORT is not set | ||
507 | CONFIG_HAVE_IDE=y | 525 | CONFIG_HAVE_IDE=y |
508 | CONFIG_IDE=y | 526 | CONFIG_IDE=y |
509 | 527 | ||
@@ -546,6 +564,7 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
546 | # CONFIG_BLK_DEV_JMICRON is not set | 564 | # CONFIG_BLK_DEV_JMICRON is not set |
547 | # CONFIG_BLK_DEV_SC1200 is not set | 565 | # CONFIG_BLK_DEV_SC1200 is not set |
548 | # CONFIG_BLK_DEV_PIIX is not set | 566 | # CONFIG_BLK_DEV_PIIX is not set |
567 | # CONFIG_BLK_DEV_IT8172 is not set | ||
549 | # CONFIG_BLK_DEV_IT8213 is not set | 568 | # CONFIG_BLK_DEV_IT8213 is not set |
550 | # CONFIG_BLK_DEV_IT821X is not set | 569 | # CONFIG_BLK_DEV_IT821X is not set |
551 | # CONFIG_BLK_DEV_NS87415 is not set | 570 | # CONFIG_BLK_DEV_NS87415 is not set |
@@ -605,6 +624,9 @@ CONFIG_PHYLIB=y | |||
605 | # CONFIG_BROADCOM_PHY is not set | 624 | # CONFIG_BROADCOM_PHY is not set |
606 | # CONFIG_ICPLUS_PHY is not set | 625 | # CONFIG_ICPLUS_PHY is not set |
607 | # CONFIG_REALTEK_PHY is not set | 626 | # CONFIG_REALTEK_PHY is not set |
627 | # CONFIG_NATIONAL_PHY is not set | ||
628 | # CONFIG_STE10XP is not set | ||
629 | # CONFIG_LSI_ET1011C_PHY is not set | ||
608 | # CONFIG_FIXED_PHY is not set | 630 | # CONFIG_FIXED_PHY is not set |
609 | # CONFIG_MDIO_BITBANG is not set | 631 | # CONFIG_MDIO_BITBANG is not set |
610 | CONFIG_NET_ETHERNET=y | 632 | CONFIG_NET_ETHERNET=y |
@@ -649,6 +671,7 @@ CONFIG_GIANFAR=y | |||
649 | # CONFIG_JME is not set | 671 | # CONFIG_JME is not set |
650 | CONFIG_NETDEV_10000=y | 672 | CONFIG_NETDEV_10000=y |
651 | # CONFIG_CHELSIO_T1 is not set | 673 | # CONFIG_CHELSIO_T1 is not set |
674 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
652 | # CONFIG_CHELSIO_T3 is not set | 675 | # CONFIG_CHELSIO_T3 is not set |
653 | # CONFIG_ENIC is not set | 676 | # CONFIG_ENIC is not set |
654 | # CONFIG_IXGBE is not set | 677 | # CONFIG_IXGBE is not set |
@@ -671,6 +694,10 @@ CONFIG_NETDEV_10000=y | |||
671 | # CONFIG_WLAN_PRE80211 is not set | 694 | # CONFIG_WLAN_PRE80211 is not set |
672 | # CONFIG_WLAN_80211 is not set | 695 | # CONFIG_WLAN_80211 is not set |
673 | # CONFIG_IWLWIFI_LEDS is not set | 696 | # CONFIG_IWLWIFI_LEDS is not set |
697 | |||
698 | # | ||
699 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
700 | # | ||
674 | # CONFIG_WAN is not set | 701 | # CONFIG_WAN is not set |
675 | # CONFIG_FDDI is not set | 702 | # CONFIG_FDDI is not set |
676 | # CONFIG_HIPPI is not set | 703 | # CONFIG_HIPPI is not set |
@@ -741,8 +768,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
741 | # CONFIG_SERIAL_JSM is not set | 768 | # CONFIG_SERIAL_JSM is not set |
742 | # CONFIG_SERIAL_OF_PLATFORM is not set | 769 | # CONFIG_SERIAL_OF_PLATFORM is not set |
743 | CONFIG_UNIX98_PTYS=y | 770 | CONFIG_UNIX98_PTYS=y |
771 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
744 | CONFIG_LEGACY_PTYS=y | 772 | CONFIG_LEGACY_PTYS=y |
745 | CONFIG_LEGACY_PTY_COUNT=256 | 773 | CONFIG_LEGACY_PTY_COUNT=256 |
774 | # CONFIG_HVC_UDBG is not set | ||
746 | # CONFIG_IPMI_HANDLER is not set | 775 | # CONFIG_IPMI_HANDLER is not set |
747 | # CONFIG_HW_RANDOM is not set | 776 | # CONFIG_HW_RANDOM is not set |
748 | # CONFIG_NVRAM is not set | 777 | # CONFIG_NVRAM is not set |
@@ -833,8 +862,10 @@ CONFIG_HWMON=y | |||
833 | # CONFIG_SENSORS_ADM1029 is not set | 862 | # CONFIG_SENSORS_ADM1029 is not set |
834 | # CONFIG_SENSORS_ADM1031 is not set | 863 | # CONFIG_SENSORS_ADM1031 is not set |
835 | # CONFIG_SENSORS_ADM9240 is not set | 864 | # CONFIG_SENSORS_ADM9240 is not set |
865 | # CONFIG_SENSORS_ADT7462 is not set | ||
836 | # CONFIG_SENSORS_ADT7470 is not set | 866 | # CONFIG_SENSORS_ADT7470 is not set |
837 | # CONFIG_SENSORS_ADT7473 is not set | 867 | # CONFIG_SENSORS_ADT7473 is not set |
868 | # CONFIG_SENSORS_ADT7475 is not set | ||
838 | # CONFIG_SENSORS_ATXP1 is not set | 869 | # CONFIG_SENSORS_ATXP1 is not set |
839 | # CONFIG_SENSORS_DS1621 is not set | 870 | # CONFIG_SENSORS_DS1621 is not set |
840 | # CONFIG_SENSORS_I5K_AMB is not set | 871 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -855,6 +886,7 @@ CONFIG_SENSORS_LM75=y | |||
855 | # CONFIG_SENSORS_LM90 is not set | 886 | # CONFIG_SENSORS_LM90 is not set |
856 | # CONFIG_SENSORS_LM92 is not set | 887 | # CONFIG_SENSORS_LM92 is not set |
857 | # CONFIG_SENSORS_LM93 is not set | 888 | # CONFIG_SENSORS_LM93 is not set |
889 | # CONFIG_SENSORS_LTC4245 is not set | ||
858 | # CONFIG_SENSORS_MAX1619 is not set | 890 | # CONFIG_SENSORS_MAX1619 is not set |
859 | # CONFIG_SENSORS_MAX6650 is not set | 891 | # CONFIG_SENSORS_MAX6650 is not set |
860 | # CONFIG_SENSORS_PC87360 is not set | 892 | # CONFIG_SENSORS_PC87360 is not set |
@@ -881,11 +913,11 @@ CONFIG_SENSORS_LM75=y | |||
881 | # CONFIG_THERMAL is not set | 913 | # CONFIG_THERMAL is not set |
882 | # CONFIG_THERMAL_HWMON is not set | 914 | # CONFIG_THERMAL_HWMON is not set |
883 | # CONFIG_WATCHDOG is not set | 915 | # CONFIG_WATCHDOG is not set |
916 | CONFIG_SSB_POSSIBLE=y | ||
884 | 917 | ||
885 | # | 918 | # |
886 | # Sonics Silicon Backplane | 919 | # Sonics Silicon Backplane |
887 | # | 920 | # |
888 | CONFIG_SSB_POSSIBLE=y | ||
889 | # CONFIG_SSB is not set | 921 | # CONFIG_SSB is not set |
890 | 922 | ||
891 | # | 923 | # |
@@ -894,18 +926,13 @@ CONFIG_SSB_POSSIBLE=y | |||
894 | # CONFIG_MFD_CORE is not set | 926 | # CONFIG_MFD_CORE is not set |
895 | # CONFIG_MFD_SM501 is not set | 927 | # CONFIG_MFD_SM501 is not set |
896 | # CONFIG_HTC_PASIC3 is not set | 928 | # CONFIG_HTC_PASIC3 is not set |
929 | # CONFIG_TWL4030_CORE is not set | ||
897 | # CONFIG_MFD_TMIO is not set | 930 | # CONFIG_MFD_TMIO is not set |
898 | # CONFIG_PMIC_DA903X is not set | 931 | # CONFIG_PMIC_DA903X is not set |
899 | # CONFIG_MFD_WM8400 is not set | 932 | # CONFIG_MFD_WM8400 is not set |
900 | # CONFIG_MFD_WM8350_I2C is not set | 933 | # CONFIG_MFD_WM8350_I2C is not set |
901 | 934 | # CONFIG_MFD_PCF50633 is not set | |
902 | # | ||
903 | # Voltage and Current regulators | ||
904 | # | ||
905 | # CONFIG_REGULATOR is not set | 935 | # CONFIG_REGULATOR is not set |
906 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
907 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
908 | # CONFIG_REGULATOR_BQ24022 is not set | ||
909 | 936 | ||
910 | # | 937 | # |
911 | # Multimedia devices | 938 | # Multimedia devices |
@@ -961,9 +988,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
961 | # | 988 | # |
962 | 989 | ||
963 | # | 990 | # |
964 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 991 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
965 | # | 992 | # |
966 | # CONFIG_USB_GADGET is not set | 993 | # CONFIG_USB_GADGET is not set |
994 | |||
995 | # | ||
996 | # OTG and related infrastructure | ||
997 | # | ||
967 | # CONFIG_UWB is not set | 998 | # CONFIG_UWB is not set |
968 | # CONFIG_MMC is not set | 999 | # CONFIG_MMC is not set |
969 | # CONFIG_MEMSTICK is not set | 1000 | # CONFIG_MEMSTICK is not set |
@@ -1001,6 +1032,7 @@ CONFIG_RTC_DRV_DS1307=y | |||
1001 | # CONFIG_RTC_DRV_M41T80 is not set | 1032 | # CONFIG_RTC_DRV_M41T80 is not set |
1002 | # CONFIG_RTC_DRV_S35390A is not set | 1033 | # CONFIG_RTC_DRV_S35390A is not set |
1003 | # CONFIG_RTC_DRV_FM3130 is not set | 1034 | # CONFIG_RTC_DRV_FM3130 is not set |
1035 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1004 | 1036 | ||
1005 | # | 1037 | # |
1006 | # SPI RTC drivers | 1038 | # SPI RTC drivers |
@@ -1048,6 +1080,7 @@ CONFIG_FS_MBCACHE=y | |||
1048 | CONFIG_FILE_LOCKING=y | 1080 | CONFIG_FILE_LOCKING=y |
1049 | # CONFIG_XFS_FS is not set | 1081 | # CONFIG_XFS_FS is not set |
1050 | # CONFIG_OCFS2_FS is not set | 1082 | # CONFIG_OCFS2_FS is not set |
1083 | # CONFIG_BTRFS_FS is not set | ||
1051 | CONFIG_DNOTIFY=y | 1084 | CONFIG_DNOTIFY=y |
1052 | CONFIG_INOTIFY=y | 1085 | CONFIG_INOTIFY=y |
1053 | CONFIG_INOTIFY_USER=y | 1086 | CONFIG_INOTIFY_USER=y |
@@ -1081,10 +1114,7 @@ CONFIG_TMPFS=y | |||
1081 | # CONFIG_TMPFS_POSIX_ACL is not set | 1114 | # CONFIG_TMPFS_POSIX_ACL is not set |
1082 | # CONFIG_HUGETLB_PAGE is not set | 1115 | # CONFIG_HUGETLB_PAGE is not set |
1083 | # CONFIG_CONFIGFS_FS is not set | 1116 | # CONFIG_CONFIGFS_FS is not set |
1084 | 1117 | CONFIG_MISC_FILESYSTEMS=y | |
1085 | # | ||
1086 | # Miscellaneous filesystems | ||
1087 | # | ||
1088 | # CONFIG_ADFS_FS is not set | 1118 | # CONFIG_ADFS_FS is not set |
1089 | # CONFIG_AFFS_FS is not set | 1119 | # CONFIG_AFFS_FS is not set |
1090 | # CONFIG_HFS_FS is not set | 1120 | # CONFIG_HFS_FS is not set |
@@ -1095,6 +1125,7 @@ CONFIG_TMPFS=y | |||
1095 | # CONFIG_JFFS2_FS is not set | 1125 | # CONFIG_JFFS2_FS is not set |
1096 | # CONFIG_UBIFS_FS is not set | 1126 | # CONFIG_UBIFS_FS is not set |
1097 | # CONFIG_CRAMFS is not set | 1127 | # CONFIG_CRAMFS is not set |
1128 | # CONFIG_SQUASHFS is not set | ||
1098 | # CONFIG_VXFS_FS is not set | 1129 | # CONFIG_VXFS_FS is not set |
1099 | # CONFIG_MINIX_FS is not set | 1130 | # CONFIG_MINIX_FS is not set |
1100 | # CONFIG_OMFS_FS is not set | 1131 | # CONFIG_OMFS_FS is not set |
@@ -1145,6 +1176,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
1145 | # Library routines | 1176 | # Library routines |
1146 | # | 1177 | # |
1147 | CONFIG_BITREVERSE=y | 1178 | CONFIG_BITREVERSE=y |
1179 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1148 | # CONFIG_CRC_CCITT is not set | 1180 | # CONFIG_CRC_CCITT is not set |
1149 | # CONFIG_CRC16 is not set | 1181 | # CONFIG_CRC16 is not set |
1150 | # CONFIG_CRC_T10DIF is not set | 1182 | # CONFIG_CRC_T10DIF is not set |
@@ -1194,6 +1226,7 @@ CONFIG_DEBUG_MUTEXES=y | |||
1194 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1226 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1195 | # CONFIG_DEBUG_LIST is not set | 1227 | # CONFIG_DEBUG_LIST is not set |
1196 | # CONFIG_DEBUG_SG is not set | 1228 | # CONFIG_DEBUG_SG is not set |
1229 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1197 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1230 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1198 | # CONFIG_RCU_TORTURE_TEST is not set | 1231 | # CONFIG_RCU_TORTURE_TEST is not set |
1199 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1232 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1203,6 +1236,8 @@ CONFIG_DEBUG_MUTEXES=y | |||
1203 | # CONFIG_LATENCYTOP is not set | 1236 | # CONFIG_LATENCYTOP is not set |
1204 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1237 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1205 | CONFIG_HAVE_FUNCTION_TRACER=y | 1238 | CONFIG_HAVE_FUNCTION_TRACER=y |
1239 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1240 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1206 | 1241 | ||
1207 | # | 1242 | # |
1208 | # Tracers | 1243 | # Tracers |
@@ -1211,11 +1246,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1211 | # CONFIG_SCHED_TRACER is not set | 1246 | # CONFIG_SCHED_TRACER is not set |
1212 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1247 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1213 | # CONFIG_BOOT_TRACER is not set | 1248 | # CONFIG_BOOT_TRACER is not set |
1249 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1214 | # CONFIG_STACK_TRACER is not set | 1250 | # CONFIG_STACK_TRACER is not set |
1215 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1251 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1216 | # CONFIG_SAMPLES is not set | 1252 | # CONFIG_SAMPLES is not set |
1217 | CONFIG_HAVE_ARCH_KGDB=y | 1253 | CONFIG_HAVE_ARCH_KGDB=y |
1218 | # CONFIG_KGDB is not set | 1254 | # CONFIG_KGDB is not set |
1255 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1219 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1256 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1220 | # CONFIG_DEBUG_STACK_USAGE is not set | 1257 | # CONFIG_DEBUG_STACK_USAGE is not set |
1221 | # CONFIG_DEBUG_PAGEALLOC is not set | 1258 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1241,6 +1278,7 @@ CONFIG_CRYPTO=y | |||
1241 | # | 1278 | # |
1242 | # CONFIG_CRYPTO_FIPS is not set | 1279 | # CONFIG_CRYPTO_FIPS is not set |
1243 | # CONFIG_CRYPTO_MANAGER is not set | 1280 | # CONFIG_CRYPTO_MANAGER is not set |
1281 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
1244 | # CONFIG_CRYPTO_GF128MUL is not set | 1282 | # CONFIG_CRYPTO_GF128MUL is not set |
1245 | # CONFIG_CRYPTO_NULL is not set | 1283 | # CONFIG_CRYPTO_NULL is not set |
1246 | # CONFIG_CRYPTO_CRYPTD is not set | 1284 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/85xx/tqm8555_defconfig b/arch/powerpc/configs/85xx/tqm8555_defconfig index 856ca6ab37b7..d5a864d74461 100644 --- a/arch/powerpc/configs/85xx/tqm8555_defconfig +++ b/arch/powerpc/configs/85xx/tqm8555_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:23 2008 | 4 | # Mon Jan 26 15:36:21 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -46,7 +48,7 @@ CONFIG_GENERIC_GPIO=y | |||
46 | CONFIG_PPC=y | 48 | CONFIG_PPC=y |
47 | CONFIG_EARLY_PRINTK=y | 49 | CONFIG_EARLY_PRINTK=y |
48 | CONFIG_GENERIC_NVRAM=y | 50 | CONFIG_GENERIC_NVRAM=y |
49 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 51 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
50 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 52 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
51 | CONFIG_PPC_OF=y | 53 | CONFIG_PPC_OF=y |
52 | CONFIG_OF=y | 54 | CONFIG_OF=y |
@@ -76,12 +78,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
76 | # CONFIG_AUDIT is not set | 78 | # CONFIG_AUDIT is not set |
77 | # CONFIG_IKCONFIG is not set | 79 | # CONFIG_IKCONFIG is not set |
78 | CONFIG_LOG_BUF_SHIFT=14 | 80 | CONFIG_LOG_BUF_SHIFT=14 |
79 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_GROUP_SCHED=y | 81 | CONFIG_GROUP_SCHED=y |
81 | CONFIG_FAIR_GROUP_SCHED=y | 82 | CONFIG_FAIR_GROUP_SCHED=y |
82 | # CONFIG_RT_GROUP_SCHED is not set | 83 | # CONFIG_RT_GROUP_SCHED is not set |
83 | CONFIG_USER_SCHED=y | 84 | CONFIG_USER_SCHED=y |
84 | # CONFIG_CGROUP_SCHED is not set | 85 | # CONFIG_CGROUP_SCHED is not set |
86 | # CONFIG_CGROUPS is not set | ||
85 | CONFIG_SYSFS_DEPRECATED=y | 87 | CONFIG_SYSFS_DEPRECATED=y |
86 | CONFIG_SYSFS_DEPRECATED_V2=y | 88 | CONFIG_SYSFS_DEPRECATED_V2=y |
87 | # CONFIG_RELAY is not set | 89 | # CONFIG_RELAY is not set |
@@ -114,7 +116,6 @@ CONFIG_SLUB_DEBUG=y | |||
114 | CONFIG_SLUB=y | 116 | CONFIG_SLUB=y |
115 | # CONFIG_SLOB is not set | 117 | # CONFIG_SLOB is not set |
116 | # CONFIG_PROFILING is not set | 118 | # CONFIG_PROFILING is not set |
117 | # CONFIG_MARKERS is not set | ||
118 | CONFIG_HAVE_OPROFILE=y | 119 | CONFIG_HAVE_OPROFILE=y |
119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
120 | CONFIG_HAVE_IOREMAP_PROT=y | 121 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -125,13 +126,11 @@ CONFIG_HAVE_CLK=y | |||
125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
126 | CONFIG_SLABINFO=y | 127 | CONFIG_SLABINFO=y |
127 | CONFIG_RT_MUTEXES=y | 128 | CONFIG_RT_MUTEXES=y |
128 | # CONFIG_TINY_SHMEM is not set | ||
129 | CONFIG_BASE_SMALL=0 | 129 | CONFIG_BASE_SMALL=0 |
130 | # CONFIG_MODULES is not set | 130 | # CONFIG_MODULES is not set |
131 | CONFIG_BLOCK=y | 131 | CONFIG_BLOCK=y |
132 | # CONFIG_LBD is not set | 132 | # CONFIG_LBD is not set |
133 | # CONFIG_BLK_DEV_IO_TRACE is not set | 133 | # CONFIG_BLK_DEV_IO_TRACE is not set |
134 | # CONFIG_LSF is not set | ||
135 | # CONFIG_BLK_DEV_BSG is not set | 134 | # CONFIG_BLK_DEV_BSG is not set |
136 | # CONFIG_BLK_DEV_INTEGRITY is not set | 135 | # CONFIG_BLK_DEV_INTEGRITY is not set |
137 | 136 | ||
@@ -148,6 +147,10 @@ CONFIG_DEFAULT_AS=y | |||
148 | # CONFIG_DEFAULT_NOOP is not set | 147 | # CONFIG_DEFAULT_NOOP is not set |
149 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 148 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
150 | CONFIG_CLASSIC_RCU=y | 149 | CONFIG_CLASSIC_RCU=y |
150 | # CONFIG_TREE_RCU is not set | ||
151 | # CONFIG_PREEMPT_RCU is not set | ||
152 | # CONFIG_TREE_RCU_TRACE is not set | ||
153 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
151 | # CONFIG_FREEZER is not set | 154 | # CONFIG_FREEZER is not set |
152 | 155 | ||
153 | # | 156 | # |
@@ -189,6 +192,7 @@ CONFIG_CPM2=y | |||
189 | # CONFIG_FSL_ULI1575 is not set | 192 | # CONFIG_FSL_ULI1575 is not set |
190 | CONFIG_CPM=y | 193 | CONFIG_CPM=y |
191 | # CONFIG_MPC8xxx_GPIO is not set | 194 | # CONFIG_MPC8xxx_GPIO is not set |
195 | # CONFIG_SIMPLE_GPIO is not set | ||
192 | 196 | ||
193 | # | 197 | # |
194 | # Kernel options | 198 | # Kernel options |
@@ -226,12 +230,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
226 | CONFIG_PAGEFLAGS_EXTENDED=y | 230 | CONFIG_PAGEFLAGS_EXTENDED=y |
227 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 231 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
228 | CONFIG_MIGRATION=y | 232 | CONFIG_MIGRATION=y |
229 | # CONFIG_RESOURCES_64BIT is not set | ||
230 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 233 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
231 | CONFIG_ZONE_DMA_FLAG=1 | 234 | CONFIG_ZONE_DMA_FLAG=1 |
232 | CONFIG_BOUNCE=y | 235 | CONFIG_BOUNCE=y |
233 | CONFIG_VIRT_TO_BUS=y | 236 | CONFIG_VIRT_TO_BUS=y |
234 | CONFIG_UNEVICTABLE_LRU=y | 237 | CONFIG_UNEVICTABLE_LRU=y |
238 | CONFIG_PPC_4K_PAGES=y | ||
239 | # CONFIG_PPC_16K_PAGES is not set | ||
240 | # CONFIG_PPC_64K_PAGES is not set | ||
235 | CONFIG_FORCE_MAX_ZONEORDER=11 | 241 | CONFIG_FORCE_MAX_ZONEORDER=11 |
236 | # CONFIG_PROC_DEVICETREE is not set | 242 | # CONFIG_PROC_DEVICETREE is not set |
237 | # CONFIG_CMDLINE_BOOL is not set | 243 | # CONFIG_CMDLINE_BOOL is not set |
@@ -255,6 +261,7 @@ CONFIG_PCI_SYSCALL=y | |||
255 | CONFIG_ARCH_SUPPORTS_MSI=y | 261 | CONFIG_ARCH_SUPPORTS_MSI=y |
256 | # CONFIG_PCI_MSI is not set | 262 | # CONFIG_PCI_MSI is not set |
257 | # CONFIG_PCI_LEGACY is not set | 263 | # CONFIG_PCI_LEGACY is not set |
264 | # CONFIG_PCI_STUB is not set | ||
258 | # CONFIG_HAS_RAPIDIO is not set | 265 | # CONFIG_HAS_RAPIDIO is not set |
259 | 266 | ||
260 | # | 267 | # |
@@ -276,6 +283,7 @@ CONFIG_NET=y | |||
276 | # | 283 | # |
277 | # Networking options | 284 | # Networking options |
278 | # | 285 | # |
286 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
279 | CONFIG_PACKET=y | 287 | CONFIG_PACKET=y |
280 | # CONFIG_PACKET_MMAP is not set | 288 | # CONFIG_PACKET_MMAP is not set |
281 | CONFIG_UNIX=y | 289 | CONFIG_UNIX=y |
@@ -332,6 +340,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
332 | # CONFIG_ECONET is not set | 340 | # CONFIG_ECONET is not set |
333 | # CONFIG_WAN_ROUTER is not set | 341 | # CONFIG_WAN_ROUTER is not set |
334 | # CONFIG_NET_SCHED is not set | 342 | # CONFIG_NET_SCHED is not set |
343 | # CONFIG_DCB is not set | ||
335 | 344 | ||
336 | # | 345 | # |
337 | # Network testing | 346 | # Network testing |
@@ -347,8 +356,9 @@ CONFIG_WIRELESS=y | |||
347 | # CONFIG_CFG80211 is not set | 356 | # CONFIG_CFG80211 is not set |
348 | CONFIG_WIRELESS_OLD_REGULATORY=y | 357 | CONFIG_WIRELESS_OLD_REGULATORY=y |
349 | # CONFIG_WIRELESS_EXT is not set | 358 | # CONFIG_WIRELESS_EXT is not set |
359 | # CONFIG_LIB80211 is not set | ||
350 | # CONFIG_MAC80211 is not set | 360 | # CONFIG_MAC80211 is not set |
351 | # CONFIG_IEEE80211 is not set | 361 | # CONFIG_WIMAX is not set |
352 | # CONFIG_RFKILL is not set | 362 | # CONFIG_RFKILL is not set |
353 | # CONFIG_NET_9P is not set | 363 | # CONFIG_NET_9P is not set |
354 | 364 | ||
@@ -438,6 +448,12 @@ CONFIG_MTD_CFI_UTIL=y | |||
438 | # CONFIG_MTD_ONENAND is not set | 448 | # CONFIG_MTD_ONENAND is not set |
439 | 449 | ||
440 | # | 450 | # |
451 | # LPDDR flash memory drivers | ||
452 | # | ||
453 | # CONFIG_MTD_LPDDR is not set | ||
454 | # CONFIG_MTD_QINFO_PROBE is not set | ||
455 | |||
456 | # | ||
441 | # UBI - Unsorted block images | 457 | # UBI - Unsorted block images |
442 | # | 458 | # |
443 | # CONFIG_MTD_UBI is not set | 459 | # CONFIG_MTD_UBI is not set |
@@ -468,8 +484,10 @@ CONFIG_MISC_DEVICES=y | |||
468 | # CONFIG_EEPROM_93CX6 is not set | 484 | # CONFIG_EEPROM_93CX6 is not set |
469 | # CONFIG_SGI_IOC4 is not set | 485 | # CONFIG_SGI_IOC4 is not set |
470 | # CONFIG_TIFM_CORE is not set | 486 | # CONFIG_TIFM_CORE is not set |
487 | # CONFIG_ICS932S401 is not set | ||
471 | # CONFIG_ENCLOSURE_SERVICES is not set | 488 | # CONFIG_ENCLOSURE_SERVICES is not set |
472 | # CONFIG_HP_ILO is not set | 489 | # CONFIG_HP_ILO is not set |
490 | # CONFIG_C2PORT is not set | ||
473 | CONFIG_HAVE_IDE=y | 491 | CONFIG_HAVE_IDE=y |
474 | CONFIG_IDE=y | 492 | CONFIG_IDE=y |
475 | 493 | ||
@@ -512,6 +530,7 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
512 | # CONFIG_BLK_DEV_JMICRON is not set | 530 | # CONFIG_BLK_DEV_JMICRON is not set |
513 | # CONFIG_BLK_DEV_SC1200 is not set | 531 | # CONFIG_BLK_DEV_SC1200 is not set |
514 | # CONFIG_BLK_DEV_PIIX is not set | 532 | # CONFIG_BLK_DEV_PIIX is not set |
533 | # CONFIG_BLK_DEV_IT8172 is not set | ||
515 | # CONFIG_BLK_DEV_IT8213 is not set | 534 | # CONFIG_BLK_DEV_IT8213 is not set |
516 | # CONFIG_BLK_DEV_IT821X is not set | 535 | # CONFIG_BLK_DEV_IT821X is not set |
517 | # CONFIG_BLK_DEV_NS87415 is not set | 536 | # CONFIG_BLK_DEV_NS87415 is not set |
@@ -571,6 +590,9 @@ CONFIG_PHYLIB=y | |||
571 | # CONFIG_BROADCOM_PHY is not set | 590 | # CONFIG_BROADCOM_PHY is not set |
572 | # CONFIG_ICPLUS_PHY is not set | 591 | # CONFIG_ICPLUS_PHY is not set |
573 | # CONFIG_REALTEK_PHY is not set | 592 | # CONFIG_REALTEK_PHY is not set |
593 | # CONFIG_NATIONAL_PHY is not set | ||
594 | # CONFIG_STE10XP is not set | ||
595 | # CONFIG_LSI_ET1011C_PHY is not set | ||
574 | # CONFIG_FIXED_PHY is not set | 596 | # CONFIG_FIXED_PHY is not set |
575 | # CONFIG_MDIO_BITBANG is not set | 597 | # CONFIG_MDIO_BITBANG is not set |
576 | CONFIG_NET_ETHERNET=y | 598 | CONFIG_NET_ETHERNET=y |
@@ -594,7 +616,6 @@ CONFIG_NET_PCI=y | |||
594 | # CONFIG_ADAPTEC_STARFIRE is not set | 616 | # CONFIG_ADAPTEC_STARFIRE is not set |
595 | # CONFIG_B44 is not set | 617 | # CONFIG_B44 is not set |
596 | # CONFIG_FORCEDETH is not set | 618 | # CONFIG_FORCEDETH is not set |
597 | # CONFIG_EEPRO100 is not set | ||
598 | CONFIG_E100=y | 619 | CONFIG_E100=y |
599 | # CONFIG_FEALNX is not set | 620 | # CONFIG_FEALNX is not set |
600 | # CONFIG_NATSEMI is not set | 621 | # CONFIG_NATSEMI is not set |
@@ -604,6 +625,7 @@ CONFIG_E100=y | |||
604 | # CONFIG_R6040 is not set | 625 | # CONFIG_R6040 is not set |
605 | # CONFIG_SIS900 is not set | 626 | # CONFIG_SIS900 is not set |
606 | # CONFIG_EPIC100 is not set | 627 | # CONFIG_EPIC100 is not set |
628 | # CONFIG_SMSC9420 is not set | ||
607 | # CONFIG_SUNDANCE is not set | 629 | # CONFIG_SUNDANCE is not set |
608 | # CONFIG_TLAN is not set | 630 | # CONFIG_TLAN is not set |
609 | # CONFIG_VIA_RHINE is not set | 631 | # CONFIG_VIA_RHINE is not set |
@@ -634,6 +656,7 @@ CONFIG_GIANFAR=y | |||
634 | # CONFIG_JME is not set | 656 | # CONFIG_JME is not set |
635 | CONFIG_NETDEV_10000=y | 657 | CONFIG_NETDEV_10000=y |
636 | # CONFIG_CHELSIO_T1 is not set | 658 | # CONFIG_CHELSIO_T1 is not set |
659 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
637 | # CONFIG_CHELSIO_T3 is not set | 660 | # CONFIG_CHELSIO_T3 is not set |
638 | # CONFIG_ENIC is not set | 661 | # CONFIG_ENIC is not set |
639 | # CONFIG_IXGBE is not set | 662 | # CONFIG_IXGBE is not set |
@@ -656,6 +679,10 @@ CONFIG_NETDEV_10000=y | |||
656 | # CONFIG_WLAN_PRE80211 is not set | 679 | # CONFIG_WLAN_PRE80211 is not set |
657 | # CONFIG_WLAN_80211 is not set | 680 | # CONFIG_WLAN_80211 is not set |
658 | # CONFIG_IWLWIFI_LEDS is not set | 681 | # CONFIG_IWLWIFI_LEDS is not set |
682 | |||
683 | # | ||
684 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
685 | # | ||
659 | # CONFIG_WAN is not set | 686 | # CONFIG_WAN is not set |
660 | # CONFIG_FDDI is not set | 687 | # CONFIG_FDDI is not set |
661 | # CONFIG_HIPPI is not set | 688 | # CONFIG_HIPPI is not set |
@@ -728,8 +755,10 @@ CONFIG_SERIAL_CPM_CONSOLE=y | |||
728 | # CONFIG_SERIAL_JSM is not set | 755 | # CONFIG_SERIAL_JSM is not set |
729 | # CONFIG_SERIAL_OF_PLATFORM is not set | 756 | # CONFIG_SERIAL_OF_PLATFORM is not set |
730 | CONFIG_UNIX98_PTYS=y | 757 | CONFIG_UNIX98_PTYS=y |
758 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
731 | CONFIG_LEGACY_PTYS=y | 759 | CONFIG_LEGACY_PTYS=y |
732 | CONFIG_LEGACY_PTY_COUNT=256 | 760 | CONFIG_LEGACY_PTY_COUNT=256 |
761 | # CONFIG_HVC_UDBG is not set | ||
733 | # CONFIG_IPMI_HANDLER is not set | 762 | # CONFIG_IPMI_HANDLER is not set |
734 | CONFIG_HW_RANDOM=y | 763 | CONFIG_HW_RANDOM=y |
735 | # CONFIG_NVRAM is not set | 764 | # CONFIG_NVRAM is not set |
@@ -802,7 +831,6 @@ CONFIG_I2C_MPC=y | |||
802 | # CONFIG_PCF8575 is not set | 831 | # CONFIG_PCF8575 is not set |
803 | # CONFIG_SENSORS_PCA9539 is not set | 832 | # CONFIG_SENSORS_PCA9539 is not set |
804 | # CONFIG_SENSORS_PCF8591 is not set | 833 | # CONFIG_SENSORS_PCF8591 is not set |
805 | # CONFIG_TPS65010 is not set | ||
806 | # CONFIG_SENSORS_MAX6875 is not set | 834 | # CONFIG_SENSORS_MAX6875 is not set |
807 | # CONFIG_SENSORS_TSL2550 is not set | 835 | # CONFIG_SENSORS_TSL2550 is not set |
808 | # CONFIG_I2C_DEBUG_CORE is not set | 836 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -816,6 +844,11 @@ CONFIG_GPIOLIB=y | |||
816 | # CONFIG_GPIO_SYSFS is not set | 844 | # CONFIG_GPIO_SYSFS is not set |
817 | 845 | ||
818 | # | 846 | # |
847 | # Memory mapped GPIO expanders: | ||
848 | # | ||
849 | # CONFIG_GPIO_XILINX is not set | ||
850 | |||
851 | # | ||
819 | # I2C GPIO expanders: | 852 | # I2C GPIO expanders: |
820 | # | 853 | # |
821 | # CONFIG_GPIO_MAX732X is not set | 854 | # CONFIG_GPIO_MAX732X is not set |
@@ -842,8 +875,10 @@ CONFIG_HWMON=y | |||
842 | # CONFIG_SENSORS_ADM1029 is not set | 875 | # CONFIG_SENSORS_ADM1029 is not set |
843 | # CONFIG_SENSORS_ADM1031 is not set | 876 | # CONFIG_SENSORS_ADM1031 is not set |
844 | # CONFIG_SENSORS_ADM9240 is not set | 877 | # CONFIG_SENSORS_ADM9240 is not set |
878 | # CONFIG_SENSORS_ADT7462 is not set | ||
845 | # CONFIG_SENSORS_ADT7470 is not set | 879 | # CONFIG_SENSORS_ADT7470 is not set |
846 | # CONFIG_SENSORS_ADT7473 is not set | 880 | # CONFIG_SENSORS_ADT7473 is not set |
881 | # CONFIG_SENSORS_ADT7475 is not set | ||
847 | # CONFIG_SENSORS_ATXP1 is not set | 882 | # CONFIG_SENSORS_ATXP1 is not set |
848 | # CONFIG_SENSORS_DS1621 is not set | 883 | # CONFIG_SENSORS_DS1621 is not set |
849 | # CONFIG_SENSORS_I5K_AMB is not set | 884 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -864,6 +899,7 @@ CONFIG_SENSORS_LM75=y | |||
864 | # CONFIG_SENSORS_LM90 is not set | 899 | # CONFIG_SENSORS_LM90 is not set |
865 | # CONFIG_SENSORS_LM92 is not set | 900 | # CONFIG_SENSORS_LM92 is not set |
866 | # CONFIG_SENSORS_LM93 is not set | 901 | # CONFIG_SENSORS_LM93 is not set |
902 | # CONFIG_SENSORS_LTC4245 is not set | ||
867 | # CONFIG_SENSORS_MAX1619 is not set | 903 | # CONFIG_SENSORS_MAX1619 is not set |
868 | # CONFIG_SENSORS_MAX6650 is not set | 904 | # CONFIG_SENSORS_MAX6650 is not set |
869 | # CONFIG_SENSORS_PC87360 is not set | 905 | # CONFIG_SENSORS_PC87360 is not set |
@@ -890,11 +926,11 @@ CONFIG_HWMON_DEBUG_CHIP=y | |||
890 | # CONFIG_THERMAL is not set | 926 | # CONFIG_THERMAL is not set |
891 | # CONFIG_THERMAL_HWMON is not set | 927 | # CONFIG_THERMAL_HWMON is not set |
892 | # CONFIG_WATCHDOG is not set | 928 | # CONFIG_WATCHDOG is not set |
929 | CONFIG_SSB_POSSIBLE=y | ||
893 | 930 | ||
894 | # | 931 | # |
895 | # Sonics Silicon Backplane | 932 | # Sonics Silicon Backplane |
896 | # | 933 | # |
897 | CONFIG_SSB_POSSIBLE=y | ||
898 | # CONFIG_SSB is not set | 934 | # CONFIG_SSB is not set |
899 | 935 | ||
900 | # | 936 | # |
@@ -903,18 +939,14 @@ CONFIG_SSB_POSSIBLE=y | |||
903 | # CONFIG_MFD_CORE is not set | 939 | # CONFIG_MFD_CORE is not set |
904 | # CONFIG_MFD_SM501 is not set | 940 | # CONFIG_MFD_SM501 is not set |
905 | # CONFIG_HTC_PASIC3 is not set | 941 | # CONFIG_HTC_PASIC3 is not set |
942 | # CONFIG_TPS65010 is not set | ||
943 | # CONFIG_TWL4030_CORE is not set | ||
906 | # CONFIG_MFD_TMIO is not set | 944 | # CONFIG_MFD_TMIO is not set |
907 | # CONFIG_PMIC_DA903X is not set | 945 | # CONFIG_PMIC_DA903X is not set |
908 | # CONFIG_MFD_WM8400 is not set | 946 | # CONFIG_MFD_WM8400 is not set |
909 | # CONFIG_MFD_WM8350_I2C is not set | 947 | # CONFIG_MFD_WM8350_I2C is not set |
910 | 948 | # CONFIG_MFD_PCF50633 is not set | |
911 | # | ||
912 | # Voltage and Current regulators | ||
913 | # | ||
914 | # CONFIG_REGULATOR is not set | 949 | # CONFIG_REGULATOR is not set |
915 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
916 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
917 | # CONFIG_REGULATOR_BQ24022 is not set | ||
918 | 950 | ||
919 | # | 951 | # |
920 | # Multimedia devices | 952 | # Multimedia devices |
@@ -970,9 +1002,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
970 | # | 1002 | # |
971 | 1003 | ||
972 | # | 1004 | # |
973 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1005 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
974 | # | 1006 | # |
975 | # CONFIG_USB_GADGET is not set | 1007 | # CONFIG_USB_GADGET is not set |
1008 | |||
1009 | # | ||
1010 | # OTG and related infrastructure | ||
1011 | # | ||
976 | # CONFIG_UWB is not set | 1012 | # CONFIG_UWB is not set |
977 | # CONFIG_MMC is not set | 1013 | # CONFIG_MMC is not set |
978 | # CONFIG_MEMSTICK is not set | 1014 | # CONFIG_MEMSTICK is not set |
@@ -1004,6 +1040,7 @@ CONFIG_FS_MBCACHE=y | |||
1004 | CONFIG_FILE_LOCKING=y | 1040 | CONFIG_FILE_LOCKING=y |
1005 | # CONFIG_XFS_FS is not set | 1041 | # CONFIG_XFS_FS is not set |
1006 | # CONFIG_OCFS2_FS is not set | 1042 | # CONFIG_OCFS2_FS is not set |
1043 | # CONFIG_BTRFS_FS is not set | ||
1007 | CONFIG_DNOTIFY=y | 1044 | CONFIG_DNOTIFY=y |
1008 | CONFIG_INOTIFY=y | 1045 | CONFIG_INOTIFY=y |
1009 | CONFIG_INOTIFY_USER=y | 1046 | CONFIG_INOTIFY_USER=y |
@@ -1037,10 +1074,7 @@ CONFIG_TMPFS=y | |||
1037 | # CONFIG_TMPFS_POSIX_ACL is not set | 1074 | # CONFIG_TMPFS_POSIX_ACL is not set |
1038 | # CONFIG_HUGETLB_PAGE is not set | 1075 | # CONFIG_HUGETLB_PAGE is not set |
1039 | # CONFIG_CONFIGFS_FS is not set | 1076 | # CONFIG_CONFIGFS_FS is not set |
1040 | 1077 | CONFIG_MISC_FILESYSTEMS=y | |
1041 | # | ||
1042 | # Miscellaneous filesystems | ||
1043 | # | ||
1044 | # CONFIG_ADFS_FS is not set | 1078 | # CONFIG_ADFS_FS is not set |
1045 | # CONFIG_AFFS_FS is not set | 1079 | # CONFIG_AFFS_FS is not set |
1046 | # CONFIG_HFS_FS is not set | 1080 | # CONFIG_HFS_FS is not set |
@@ -1060,6 +1094,7 @@ CONFIG_JFFS2_ZLIB=y | |||
1060 | CONFIG_JFFS2_RTIME=y | 1094 | CONFIG_JFFS2_RTIME=y |
1061 | # CONFIG_JFFS2_RUBIN is not set | 1095 | # CONFIG_JFFS2_RUBIN is not set |
1062 | CONFIG_CRAMFS=y | 1096 | CONFIG_CRAMFS=y |
1097 | # CONFIG_SQUASHFS is not set | ||
1063 | # CONFIG_VXFS_FS is not set | 1098 | # CONFIG_VXFS_FS is not set |
1064 | # CONFIG_MINIX_FS is not set | 1099 | # CONFIG_MINIX_FS is not set |
1065 | # CONFIG_OMFS_FS is not set | 1100 | # CONFIG_OMFS_FS is not set |
@@ -1110,6 +1145,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
1110 | # Library routines | 1145 | # Library routines |
1111 | # | 1146 | # |
1112 | CONFIG_BITREVERSE=y | 1147 | CONFIG_BITREVERSE=y |
1148 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1113 | # CONFIG_CRC_CCITT is not set | 1149 | # CONFIG_CRC_CCITT is not set |
1114 | # CONFIG_CRC16 is not set | 1150 | # CONFIG_CRC16 is not set |
1115 | # CONFIG_CRC_T10DIF is not set | 1151 | # CONFIG_CRC_T10DIF is not set |
@@ -1145,6 +1181,8 @@ CONFIG_FRAME_WARN=1024 | |||
1145 | # CONFIG_LATENCYTOP is not set | 1181 | # CONFIG_LATENCYTOP is not set |
1146 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1182 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1147 | CONFIG_HAVE_FUNCTION_TRACER=y | 1183 | CONFIG_HAVE_FUNCTION_TRACER=y |
1184 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1185 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1148 | 1186 | ||
1149 | # | 1187 | # |
1150 | # Tracers | 1188 | # Tracers |
@@ -1152,6 +1190,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1152 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1190 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1153 | # CONFIG_SAMPLES is not set | 1191 | # CONFIG_SAMPLES is not set |
1154 | CONFIG_HAVE_ARCH_KGDB=y | 1192 | CONFIG_HAVE_ARCH_KGDB=y |
1193 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1155 | # CONFIG_IRQSTACKS is not set | 1194 | # CONFIG_IRQSTACKS is not set |
1156 | # CONFIG_PPC_EARLY_DEBUG is not set | 1195 | # CONFIG_PPC_EARLY_DEBUG is not set |
1157 | 1196 | ||
@@ -1169,6 +1208,7 @@ CONFIG_CRYPTO=y | |||
1169 | # | 1208 | # |
1170 | # CONFIG_CRYPTO_FIPS is not set | 1209 | # CONFIG_CRYPTO_FIPS is not set |
1171 | # CONFIG_CRYPTO_MANAGER is not set | 1210 | # CONFIG_CRYPTO_MANAGER is not set |
1211 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
1172 | # CONFIG_CRYPTO_GF128MUL is not set | 1212 | # CONFIG_CRYPTO_GF128MUL is not set |
1173 | # CONFIG_CRYPTO_NULL is not set | 1213 | # CONFIG_CRYPTO_NULL is not set |
1174 | # CONFIG_CRYPTO_CRYPTD is not set | 1214 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/85xx/tqm8560_defconfig b/arch/powerpc/configs/85xx/tqm8560_defconfig index 56ed4213609c..a25009174f37 100644 --- a/arch/powerpc/configs/85xx/tqm8560_defconfig +++ b/arch/powerpc/configs/85xx/tqm8560_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:25 2008 | 4 | # Mon Jan 26 15:36:22 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -46,7 +48,7 @@ CONFIG_GENERIC_GPIO=y | |||
46 | CONFIG_PPC=y | 48 | CONFIG_PPC=y |
47 | CONFIG_EARLY_PRINTK=y | 49 | CONFIG_EARLY_PRINTK=y |
48 | CONFIG_GENERIC_NVRAM=y | 50 | CONFIG_GENERIC_NVRAM=y |
49 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 51 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
50 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 52 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
51 | CONFIG_PPC_OF=y | 53 | CONFIG_PPC_OF=y |
52 | CONFIG_OF=y | 54 | CONFIG_OF=y |
@@ -76,12 +78,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
76 | # CONFIG_AUDIT is not set | 78 | # CONFIG_AUDIT is not set |
77 | # CONFIG_IKCONFIG is not set | 79 | # CONFIG_IKCONFIG is not set |
78 | CONFIG_LOG_BUF_SHIFT=14 | 80 | CONFIG_LOG_BUF_SHIFT=14 |
79 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_GROUP_SCHED=y | 81 | CONFIG_GROUP_SCHED=y |
81 | CONFIG_FAIR_GROUP_SCHED=y | 82 | CONFIG_FAIR_GROUP_SCHED=y |
82 | # CONFIG_RT_GROUP_SCHED is not set | 83 | # CONFIG_RT_GROUP_SCHED is not set |
83 | CONFIG_USER_SCHED=y | 84 | CONFIG_USER_SCHED=y |
84 | # CONFIG_CGROUP_SCHED is not set | 85 | # CONFIG_CGROUP_SCHED is not set |
86 | # CONFIG_CGROUPS is not set | ||
85 | CONFIG_SYSFS_DEPRECATED=y | 87 | CONFIG_SYSFS_DEPRECATED=y |
86 | CONFIG_SYSFS_DEPRECATED_V2=y | 88 | CONFIG_SYSFS_DEPRECATED_V2=y |
87 | # CONFIG_RELAY is not set | 89 | # CONFIG_RELAY is not set |
@@ -114,7 +116,6 @@ CONFIG_SLUB_DEBUG=y | |||
114 | CONFIG_SLUB=y | 116 | CONFIG_SLUB=y |
115 | # CONFIG_SLOB is not set | 117 | # CONFIG_SLOB is not set |
116 | # CONFIG_PROFILING is not set | 118 | # CONFIG_PROFILING is not set |
117 | # CONFIG_MARKERS is not set | ||
118 | CONFIG_HAVE_OPROFILE=y | 119 | CONFIG_HAVE_OPROFILE=y |
119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
120 | CONFIG_HAVE_IOREMAP_PROT=y | 121 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -125,13 +126,11 @@ CONFIG_HAVE_CLK=y | |||
125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
126 | CONFIG_SLABINFO=y | 127 | CONFIG_SLABINFO=y |
127 | CONFIG_RT_MUTEXES=y | 128 | CONFIG_RT_MUTEXES=y |
128 | # CONFIG_TINY_SHMEM is not set | ||
129 | CONFIG_BASE_SMALL=0 | 129 | CONFIG_BASE_SMALL=0 |
130 | # CONFIG_MODULES is not set | 130 | # CONFIG_MODULES is not set |
131 | CONFIG_BLOCK=y | 131 | CONFIG_BLOCK=y |
132 | # CONFIG_LBD is not set | 132 | # CONFIG_LBD is not set |
133 | # CONFIG_BLK_DEV_IO_TRACE is not set | 133 | # CONFIG_BLK_DEV_IO_TRACE is not set |
134 | # CONFIG_LSF is not set | ||
135 | # CONFIG_BLK_DEV_BSG is not set | 134 | # CONFIG_BLK_DEV_BSG is not set |
136 | # CONFIG_BLK_DEV_INTEGRITY is not set | 135 | # CONFIG_BLK_DEV_INTEGRITY is not set |
137 | 136 | ||
@@ -148,6 +147,10 @@ CONFIG_DEFAULT_AS=y | |||
148 | # CONFIG_DEFAULT_NOOP is not set | 147 | # CONFIG_DEFAULT_NOOP is not set |
149 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 148 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
150 | CONFIG_CLASSIC_RCU=y | 149 | CONFIG_CLASSIC_RCU=y |
150 | # CONFIG_TREE_RCU is not set | ||
151 | # CONFIG_PREEMPT_RCU is not set | ||
152 | # CONFIG_TREE_RCU_TRACE is not set | ||
153 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
151 | # CONFIG_FREEZER is not set | 154 | # CONFIG_FREEZER is not set |
152 | 155 | ||
153 | # | 156 | # |
@@ -189,6 +192,7 @@ CONFIG_CPM2=y | |||
189 | # CONFIG_FSL_ULI1575 is not set | 192 | # CONFIG_FSL_ULI1575 is not set |
190 | CONFIG_CPM=y | 193 | CONFIG_CPM=y |
191 | # CONFIG_MPC8xxx_GPIO is not set | 194 | # CONFIG_MPC8xxx_GPIO is not set |
195 | # CONFIG_SIMPLE_GPIO is not set | ||
192 | 196 | ||
193 | # | 197 | # |
194 | # Kernel options | 198 | # Kernel options |
@@ -226,12 +230,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
226 | CONFIG_PAGEFLAGS_EXTENDED=y | 230 | CONFIG_PAGEFLAGS_EXTENDED=y |
227 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 231 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
228 | CONFIG_MIGRATION=y | 232 | CONFIG_MIGRATION=y |
229 | # CONFIG_RESOURCES_64BIT is not set | ||
230 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 233 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
231 | CONFIG_ZONE_DMA_FLAG=1 | 234 | CONFIG_ZONE_DMA_FLAG=1 |
232 | CONFIG_BOUNCE=y | 235 | CONFIG_BOUNCE=y |
233 | CONFIG_VIRT_TO_BUS=y | 236 | CONFIG_VIRT_TO_BUS=y |
234 | CONFIG_UNEVICTABLE_LRU=y | 237 | CONFIG_UNEVICTABLE_LRU=y |
238 | CONFIG_PPC_4K_PAGES=y | ||
239 | # CONFIG_PPC_16K_PAGES is not set | ||
240 | # CONFIG_PPC_64K_PAGES is not set | ||
235 | CONFIG_FORCE_MAX_ZONEORDER=11 | 241 | CONFIG_FORCE_MAX_ZONEORDER=11 |
236 | # CONFIG_PROC_DEVICETREE is not set | 242 | # CONFIG_PROC_DEVICETREE is not set |
237 | # CONFIG_CMDLINE_BOOL is not set | 243 | # CONFIG_CMDLINE_BOOL is not set |
@@ -255,6 +261,7 @@ CONFIG_PCI_SYSCALL=y | |||
255 | CONFIG_ARCH_SUPPORTS_MSI=y | 261 | CONFIG_ARCH_SUPPORTS_MSI=y |
256 | # CONFIG_PCI_MSI is not set | 262 | # CONFIG_PCI_MSI is not set |
257 | # CONFIG_PCI_LEGACY is not set | 263 | # CONFIG_PCI_LEGACY is not set |
264 | # CONFIG_PCI_STUB is not set | ||
258 | # CONFIG_HAS_RAPIDIO is not set | 265 | # CONFIG_HAS_RAPIDIO is not set |
259 | 266 | ||
260 | # | 267 | # |
@@ -276,6 +283,7 @@ CONFIG_NET=y | |||
276 | # | 283 | # |
277 | # Networking options | 284 | # Networking options |
278 | # | 285 | # |
286 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
279 | CONFIG_PACKET=y | 287 | CONFIG_PACKET=y |
280 | # CONFIG_PACKET_MMAP is not set | 288 | # CONFIG_PACKET_MMAP is not set |
281 | CONFIG_UNIX=y | 289 | CONFIG_UNIX=y |
@@ -332,6 +340,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
332 | # CONFIG_ECONET is not set | 340 | # CONFIG_ECONET is not set |
333 | # CONFIG_WAN_ROUTER is not set | 341 | # CONFIG_WAN_ROUTER is not set |
334 | # CONFIG_NET_SCHED is not set | 342 | # CONFIG_NET_SCHED is not set |
343 | # CONFIG_DCB is not set | ||
335 | 344 | ||
336 | # | 345 | # |
337 | # Network testing | 346 | # Network testing |
@@ -347,8 +356,9 @@ CONFIG_WIRELESS=y | |||
347 | # CONFIG_CFG80211 is not set | 356 | # CONFIG_CFG80211 is not set |
348 | CONFIG_WIRELESS_OLD_REGULATORY=y | 357 | CONFIG_WIRELESS_OLD_REGULATORY=y |
349 | # CONFIG_WIRELESS_EXT is not set | 358 | # CONFIG_WIRELESS_EXT is not set |
359 | # CONFIG_LIB80211 is not set | ||
350 | # CONFIG_MAC80211 is not set | 360 | # CONFIG_MAC80211 is not set |
351 | # CONFIG_IEEE80211 is not set | 361 | # CONFIG_WIMAX is not set |
352 | # CONFIG_RFKILL is not set | 362 | # CONFIG_RFKILL is not set |
353 | # CONFIG_NET_9P is not set | 363 | # CONFIG_NET_9P is not set |
354 | 364 | ||
@@ -438,6 +448,12 @@ CONFIG_MTD_CFI_UTIL=y | |||
438 | # CONFIG_MTD_ONENAND is not set | 448 | # CONFIG_MTD_ONENAND is not set |
439 | 449 | ||
440 | # | 450 | # |
451 | # LPDDR flash memory drivers | ||
452 | # | ||
453 | # CONFIG_MTD_LPDDR is not set | ||
454 | # CONFIG_MTD_QINFO_PROBE is not set | ||
455 | |||
456 | # | ||
441 | # UBI - Unsorted block images | 457 | # UBI - Unsorted block images |
442 | # | 458 | # |
443 | # CONFIG_MTD_UBI is not set | 459 | # CONFIG_MTD_UBI is not set |
@@ -468,8 +484,10 @@ CONFIG_MISC_DEVICES=y | |||
468 | # CONFIG_EEPROM_93CX6 is not set | 484 | # CONFIG_EEPROM_93CX6 is not set |
469 | # CONFIG_SGI_IOC4 is not set | 485 | # CONFIG_SGI_IOC4 is not set |
470 | # CONFIG_TIFM_CORE is not set | 486 | # CONFIG_TIFM_CORE is not set |
487 | # CONFIG_ICS932S401 is not set | ||
471 | # CONFIG_ENCLOSURE_SERVICES is not set | 488 | # CONFIG_ENCLOSURE_SERVICES is not set |
472 | # CONFIG_HP_ILO is not set | 489 | # CONFIG_HP_ILO is not set |
490 | # CONFIG_C2PORT is not set | ||
473 | CONFIG_HAVE_IDE=y | 491 | CONFIG_HAVE_IDE=y |
474 | CONFIG_IDE=y | 492 | CONFIG_IDE=y |
475 | 493 | ||
@@ -512,6 +530,7 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
512 | # CONFIG_BLK_DEV_JMICRON is not set | 530 | # CONFIG_BLK_DEV_JMICRON is not set |
513 | # CONFIG_BLK_DEV_SC1200 is not set | 531 | # CONFIG_BLK_DEV_SC1200 is not set |
514 | # CONFIG_BLK_DEV_PIIX is not set | 532 | # CONFIG_BLK_DEV_PIIX is not set |
533 | # CONFIG_BLK_DEV_IT8172 is not set | ||
515 | # CONFIG_BLK_DEV_IT8213 is not set | 534 | # CONFIG_BLK_DEV_IT8213 is not set |
516 | # CONFIG_BLK_DEV_IT821X is not set | 535 | # CONFIG_BLK_DEV_IT821X is not set |
517 | # CONFIG_BLK_DEV_NS87415 is not set | 536 | # CONFIG_BLK_DEV_NS87415 is not set |
@@ -571,6 +590,9 @@ CONFIG_PHYLIB=y | |||
571 | # CONFIG_BROADCOM_PHY is not set | 590 | # CONFIG_BROADCOM_PHY is not set |
572 | # CONFIG_ICPLUS_PHY is not set | 591 | # CONFIG_ICPLUS_PHY is not set |
573 | # CONFIG_REALTEK_PHY is not set | 592 | # CONFIG_REALTEK_PHY is not set |
593 | # CONFIG_NATIONAL_PHY is not set | ||
594 | # CONFIG_STE10XP is not set | ||
595 | # CONFIG_LSI_ET1011C_PHY is not set | ||
574 | # CONFIG_FIXED_PHY is not set | 596 | # CONFIG_FIXED_PHY is not set |
575 | # CONFIG_MDIO_BITBANG is not set | 597 | # CONFIG_MDIO_BITBANG is not set |
576 | CONFIG_NET_ETHERNET=y | 598 | CONFIG_NET_ETHERNET=y |
@@ -594,7 +616,6 @@ CONFIG_NET_PCI=y | |||
594 | # CONFIG_ADAPTEC_STARFIRE is not set | 616 | # CONFIG_ADAPTEC_STARFIRE is not set |
595 | # CONFIG_B44 is not set | 617 | # CONFIG_B44 is not set |
596 | # CONFIG_FORCEDETH is not set | 618 | # CONFIG_FORCEDETH is not set |
597 | # CONFIG_EEPRO100 is not set | ||
598 | CONFIG_E100=y | 619 | CONFIG_E100=y |
599 | # CONFIG_FEALNX is not set | 620 | # CONFIG_FEALNX is not set |
600 | # CONFIG_NATSEMI is not set | 621 | # CONFIG_NATSEMI is not set |
@@ -604,6 +625,7 @@ CONFIG_E100=y | |||
604 | # CONFIG_R6040 is not set | 625 | # CONFIG_R6040 is not set |
605 | # CONFIG_SIS900 is not set | 626 | # CONFIG_SIS900 is not set |
606 | # CONFIG_EPIC100 is not set | 627 | # CONFIG_EPIC100 is not set |
628 | # CONFIG_SMSC9420 is not set | ||
607 | # CONFIG_SUNDANCE is not set | 629 | # CONFIG_SUNDANCE is not set |
608 | # CONFIG_TLAN is not set | 630 | # CONFIG_TLAN is not set |
609 | # CONFIG_VIA_RHINE is not set | 631 | # CONFIG_VIA_RHINE is not set |
@@ -634,6 +656,7 @@ CONFIG_GIANFAR=y | |||
634 | # CONFIG_JME is not set | 656 | # CONFIG_JME is not set |
635 | CONFIG_NETDEV_10000=y | 657 | CONFIG_NETDEV_10000=y |
636 | # CONFIG_CHELSIO_T1 is not set | 658 | # CONFIG_CHELSIO_T1 is not set |
659 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
637 | # CONFIG_CHELSIO_T3 is not set | 660 | # CONFIG_CHELSIO_T3 is not set |
638 | # CONFIG_ENIC is not set | 661 | # CONFIG_ENIC is not set |
639 | # CONFIG_IXGBE is not set | 662 | # CONFIG_IXGBE is not set |
@@ -656,6 +679,10 @@ CONFIG_NETDEV_10000=y | |||
656 | # CONFIG_WLAN_PRE80211 is not set | 679 | # CONFIG_WLAN_PRE80211 is not set |
657 | # CONFIG_WLAN_80211 is not set | 680 | # CONFIG_WLAN_80211 is not set |
658 | # CONFIG_IWLWIFI_LEDS is not set | 681 | # CONFIG_IWLWIFI_LEDS is not set |
682 | |||
683 | # | ||
684 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
685 | # | ||
659 | # CONFIG_WAN is not set | 686 | # CONFIG_WAN is not set |
660 | # CONFIG_FDDI is not set | 687 | # CONFIG_FDDI is not set |
661 | # CONFIG_HIPPI is not set | 688 | # CONFIG_HIPPI is not set |
@@ -728,8 +755,10 @@ CONFIG_SERIAL_CPM_CONSOLE=y | |||
728 | # CONFIG_SERIAL_JSM is not set | 755 | # CONFIG_SERIAL_JSM is not set |
729 | # CONFIG_SERIAL_OF_PLATFORM is not set | 756 | # CONFIG_SERIAL_OF_PLATFORM is not set |
730 | CONFIG_UNIX98_PTYS=y | 757 | CONFIG_UNIX98_PTYS=y |
758 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
731 | CONFIG_LEGACY_PTYS=y | 759 | CONFIG_LEGACY_PTYS=y |
732 | CONFIG_LEGACY_PTY_COUNT=256 | 760 | CONFIG_LEGACY_PTY_COUNT=256 |
761 | # CONFIG_HVC_UDBG is not set | ||
733 | # CONFIG_IPMI_HANDLER is not set | 762 | # CONFIG_IPMI_HANDLER is not set |
734 | CONFIG_HW_RANDOM=y | 763 | CONFIG_HW_RANDOM=y |
735 | # CONFIG_NVRAM is not set | 764 | # CONFIG_NVRAM is not set |
@@ -802,7 +831,6 @@ CONFIG_I2C_MPC=y | |||
802 | # CONFIG_PCF8575 is not set | 831 | # CONFIG_PCF8575 is not set |
803 | # CONFIG_SENSORS_PCA9539 is not set | 832 | # CONFIG_SENSORS_PCA9539 is not set |
804 | # CONFIG_SENSORS_PCF8591 is not set | 833 | # CONFIG_SENSORS_PCF8591 is not set |
805 | # CONFIG_TPS65010 is not set | ||
806 | # CONFIG_SENSORS_MAX6875 is not set | 834 | # CONFIG_SENSORS_MAX6875 is not set |
807 | # CONFIG_SENSORS_TSL2550 is not set | 835 | # CONFIG_SENSORS_TSL2550 is not set |
808 | # CONFIG_I2C_DEBUG_CORE is not set | 836 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -816,6 +844,11 @@ CONFIG_GPIOLIB=y | |||
816 | # CONFIG_GPIO_SYSFS is not set | 844 | # CONFIG_GPIO_SYSFS is not set |
817 | 845 | ||
818 | # | 846 | # |
847 | # Memory mapped GPIO expanders: | ||
848 | # | ||
849 | # CONFIG_GPIO_XILINX is not set | ||
850 | |||
851 | # | ||
819 | # I2C GPIO expanders: | 852 | # I2C GPIO expanders: |
820 | # | 853 | # |
821 | # CONFIG_GPIO_MAX732X is not set | 854 | # CONFIG_GPIO_MAX732X is not set |
@@ -842,8 +875,10 @@ CONFIG_HWMON=y | |||
842 | # CONFIG_SENSORS_ADM1029 is not set | 875 | # CONFIG_SENSORS_ADM1029 is not set |
843 | # CONFIG_SENSORS_ADM1031 is not set | 876 | # CONFIG_SENSORS_ADM1031 is not set |
844 | # CONFIG_SENSORS_ADM9240 is not set | 877 | # CONFIG_SENSORS_ADM9240 is not set |
878 | # CONFIG_SENSORS_ADT7462 is not set | ||
845 | # CONFIG_SENSORS_ADT7470 is not set | 879 | # CONFIG_SENSORS_ADT7470 is not set |
846 | # CONFIG_SENSORS_ADT7473 is not set | 880 | # CONFIG_SENSORS_ADT7473 is not set |
881 | # CONFIG_SENSORS_ADT7475 is not set | ||
847 | # CONFIG_SENSORS_ATXP1 is not set | 882 | # CONFIG_SENSORS_ATXP1 is not set |
848 | # CONFIG_SENSORS_DS1621 is not set | 883 | # CONFIG_SENSORS_DS1621 is not set |
849 | # CONFIG_SENSORS_I5K_AMB is not set | 884 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -864,6 +899,7 @@ CONFIG_SENSORS_LM75=y | |||
864 | # CONFIG_SENSORS_LM90 is not set | 899 | # CONFIG_SENSORS_LM90 is not set |
865 | # CONFIG_SENSORS_LM92 is not set | 900 | # CONFIG_SENSORS_LM92 is not set |
866 | # CONFIG_SENSORS_LM93 is not set | 901 | # CONFIG_SENSORS_LM93 is not set |
902 | # CONFIG_SENSORS_LTC4245 is not set | ||
867 | # CONFIG_SENSORS_MAX1619 is not set | 903 | # CONFIG_SENSORS_MAX1619 is not set |
868 | # CONFIG_SENSORS_MAX6650 is not set | 904 | # CONFIG_SENSORS_MAX6650 is not set |
869 | # CONFIG_SENSORS_PC87360 is not set | 905 | # CONFIG_SENSORS_PC87360 is not set |
@@ -890,11 +926,11 @@ CONFIG_HWMON_DEBUG_CHIP=y | |||
890 | # CONFIG_THERMAL is not set | 926 | # CONFIG_THERMAL is not set |
891 | # CONFIG_THERMAL_HWMON is not set | 927 | # CONFIG_THERMAL_HWMON is not set |
892 | # CONFIG_WATCHDOG is not set | 928 | # CONFIG_WATCHDOG is not set |
929 | CONFIG_SSB_POSSIBLE=y | ||
893 | 930 | ||
894 | # | 931 | # |
895 | # Sonics Silicon Backplane | 932 | # Sonics Silicon Backplane |
896 | # | 933 | # |
897 | CONFIG_SSB_POSSIBLE=y | ||
898 | # CONFIG_SSB is not set | 934 | # CONFIG_SSB is not set |
899 | 935 | ||
900 | # | 936 | # |
@@ -903,18 +939,14 @@ CONFIG_SSB_POSSIBLE=y | |||
903 | # CONFIG_MFD_CORE is not set | 939 | # CONFIG_MFD_CORE is not set |
904 | # CONFIG_MFD_SM501 is not set | 940 | # CONFIG_MFD_SM501 is not set |
905 | # CONFIG_HTC_PASIC3 is not set | 941 | # CONFIG_HTC_PASIC3 is not set |
942 | # CONFIG_TPS65010 is not set | ||
943 | # CONFIG_TWL4030_CORE is not set | ||
906 | # CONFIG_MFD_TMIO is not set | 944 | # CONFIG_MFD_TMIO is not set |
907 | # CONFIG_PMIC_DA903X is not set | 945 | # CONFIG_PMIC_DA903X is not set |
908 | # CONFIG_MFD_WM8400 is not set | 946 | # CONFIG_MFD_WM8400 is not set |
909 | # CONFIG_MFD_WM8350_I2C is not set | 947 | # CONFIG_MFD_WM8350_I2C is not set |
910 | 948 | # CONFIG_MFD_PCF50633 is not set | |
911 | # | ||
912 | # Voltage and Current regulators | ||
913 | # | ||
914 | # CONFIG_REGULATOR is not set | 949 | # CONFIG_REGULATOR is not set |
915 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
916 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
917 | # CONFIG_REGULATOR_BQ24022 is not set | ||
918 | 950 | ||
919 | # | 951 | # |
920 | # Multimedia devices | 952 | # Multimedia devices |
@@ -970,9 +1002,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
970 | # | 1002 | # |
971 | 1003 | ||
972 | # | 1004 | # |
973 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1005 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
974 | # | 1006 | # |
975 | # CONFIG_USB_GADGET is not set | 1007 | # CONFIG_USB_GADGET is not set |
1008 | |||
1009 | # | ||
1010 | # OTG and related infrastructure | ||
1011 | # | ||
976 | # CONFIG_UWB is not set | 1012 | # CONFIG_UWB is not set |
977 | # CONFIG_MMC is not set | 1013 | # CONFIG_MMC is not set |
978 | # CONFIG_MEMSTICK is not set | 1014 | # CONFIG_MEMSTICK is not set |
@@ -1004,6 +1040,7 @@ CONFIG_FS_MBCACHE=y | |||
1004 | CONFIG_FILE_LOCKING=y | 1040 | CONFIG_FILE_LOCKING=y |
1005 | # CONFIG_XFS_FS is not set | 1041 | # CONFIG_XFS_FS is not set |
1006 | # CONFIG_OCFS2_FS is not set | 1042 | # CONFIG_OCFS2_FS is not set |
1043 | # CONFIG_BTRFS_FS is not set | ||
1007 | CONFIG_DNOTIFY=y | 1044 | CONFIG_DNOTIFY=y |
1008 | CONFIG_INOTIFY=y | 1045 | CONFIG_INOTIFY=y |
1009 | CONFIG_INOTIFY_USER=y | 1046 | CONFIG_INOTIFY_USER=y |
@@ -1037,10 +1074,7 @@ CONFIG_TMPFS=y | |||
1037 | # CONFIG_TMPFS_POSIX_ACL is not set | 1074 | # CONFIG_TMPFS_POSIX_ACL is not set |
1038 | # CONFIG_HUGETLB_PAGE is not set | 1075 | # CONFIG_HUGETLB_PAGE is not set |
1039 | # CONFIG_CONFIGFS_FS is not set | 1076 | # CONFIG_CONFIGFS_FS is not set |
1040 | 1077 | CONFIG_MISC_FILESYSTEMS=y | |
1041 | # | ||
1042 | # Miscellaneous filesystems | ||
1043 | # | ||
1044 | # CONFIG_ADFS_FS is not set | 1078 | # CONFIG_ADFS_FS is not set |
1045 | # CONFIG_AFFS_FS is not set | 1079 | # CONFIG_AFFS_FS is not set |
1046 | # CONFIG_HFS_FS is not set | 1080 | # CONFIG_HFS_FS is not set |
@@ -1060,6 +1094,7 @@ CONFIG_JFFS2_ZLIB=y | |||
1060 | CONFIG_JFFS2_RTIME=y | 1094 | CONFIG_JFFS2_RTIME=y |
1061 | # CONFIG_JFFS2_RUBIN is not set | 1095 | # CONFIG_JFFS2_RUBIN is not set |
1062 | CONFIG_CRAMFS=y | 1096 | CONFIG_CRAMFS=y |
1097 | # CONFIG_SQUASHFS is not set | ||
1063 | # CONFIG_VXFS_FS is not set | 1098 | # CONFIG_VXFS_FS is not set |
1064 | # CONFIG_MINIX_FS is not set | 1099 | # CONFIG_MINIX_FS is not set |
1065 | # CONFIG_OMFS_FS is not set | 1100 | # CONFIG_OMFS_FS is not set |
@@ -1110,6 +1145,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
1110 | # Library routines | 1145 | # Library routines |
1111 | # | 1146 | # |
1112 | CONFIG_BITREVERSE=y | 1147 | CONFIG_BITREVERSE=y |
1148 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1113 | # CONFIG_CRC_CCITT is not set | 1149 | # CONFIG_CRC_CCITT is not set |
1114 | # CONFIG_CRC16 is not set | 1150 | # CONFIG_CRC16 is not set |
1115 | # CONFIG_CRC_T10DIF is not set | 1151 | # CONFIG_CRC_T10DIF is not set |
@@ -1145,6 +1181,8 @@ CONFIG_FRAME_WARN=1024 | |||
1145 | # CONFIG_LATENCYTOP is not set | 1181 | # CONFIG_LATENCYTOP is not set |
1146 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1182 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1147 | CONFIG_HAVE_FUNCTION_TRACER=y | 1183 | CONFIG_HAVE_FUNCTION_TRACER=y |
1184 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1185 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1148 | 1186 | ||
1149 | # | 1187 | # |
1150 | # Tracers | 1188 | # Tracers |
@@ -1152,6 +1190,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1152 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1190 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1153 | # CONFIG_SAMPLES is not set | 1191 | # CONFIG_SAMPLES is not set |
1154 | CONFIG_HAVE_ARCH_KGDB=y | 1192 | CONFIG_HAVE_ARCH_KGDB=y |
1193 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1155 | # CONFIG_IRQSTACKS is not set | 1194 | # CONFIG_IRQSTACKS is not set |
1156 | # CONFIG_PPC_EARLY_DEBUG is not set | 1195 | # CONFIG_PPC_EARLY_DEBUG is not set |
1157 | 1196 | ||
@@ -1169,6 +1208,7 @@ CONFIG_CRYPTO=y | |||
1169 | # | 1208 | # |
1170 | # CONFIG_CRYPTO_FIPS is not set | 1209 | # CONFIG_CRYPTO_FIPS is not set |
1171 | # CONFIG_CRYPTO_MANAGER is not set | 1210 | # CONFIG_CRYPTO_MANAGER is not set |
1211 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
1172 | # CONFIG_CRYPTO_GF128MUL is not set | 1212 | # CONFIG_CRYPTO_GF128MUL is not set |
1173 | # CONFIG_CRYPTO_NULL is not set | 1213 | # CONFIG_CRYPTO_NULL is not set |
1174 | # CONFIG_CRYPTO_CRYPTD is not set | 1214 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/86xx/gef_sbc610_defconfig b/arch/powerpc/configs/86xx/gef_sbc610_defconfig index 840b09a07282..1ab5abae00a2 100644 --- a/arch/powerpc/configs/86xx/gef_sbc610_defconfig +++ b/arch/powerpc/configs/86xx/gef_sbc610_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:30 2008 | 4 | # Mon Jan 26 15:36:26 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -42,11 +42,12 @@ CONFIG_ARCH_HAS_ILOG2_U32=y | |||
42 | CONFIG_GENERIC_HWEIGHT=y | 42 | CONFIG_GENERIC_HWEIGHT=y |
43 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 43 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
44 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 44 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
45 | CONFIG_GENERIC_GPIO=y | ||
45 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set | 46 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set |
46 | CONFIG_PPC=y | 47 | CONFIG_PPC=y |
47 | CONFIG_EARLY_PRINTK=y | 48 | CONFIG_EARLY_PRINTK=y |
48 | CONFIG_GENERIC_NVRAM=y | 49 | CONFIG_GENERIC_NVRAM=y |
49 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 50 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
50 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 51 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
51 | CONFIG_PPC_OF=y | 52 | CONFIG_PPC_OF=y |
52 | CONFIG_OF=y | 53 | CONFIG_OF=y |
@@ -78,12 +79,12 @@ CONFIG_BSD_PROCESS_ACCT_V3=y | |||
78 | CONFIG_IKCONFIG=y | 79 | CONFIG_IKCONFIG=y |
79 | CONFIG_IKCONFIG_PROC=y | 80 | CONFIG_IKCONFIG_PROC=y |
80 | CONFIG_LOG_BUF_SHIFT=14 | 81 | CONFIG_LOG_BUF_SHIFT=14 |
81 | # CONFIG_CGROUPS is not set | ||
82 | CONFIG_GROUP_SCHED=y | 82 | CONFIG_GROUP_SCHED=y |
83 | CONFIG_FAIR_GROUP_SCHED=y | 83 | CONFIG_FAIR_GROUP_SCHED=y |
84 | # CONFIG_RT_GROUP_SCHED is not set | 84 | # CONFIG_RT_GROUP_SCHED is not set |
85 | CONFIG_USER_SCHED=y | 85 | CONFIG_USER_SCHED=y |
86 | # CONFIG_CGROUP_SCHED is not set | 86 | # CONFIG_CGROUP_SCHED is not set |
87 | # CONFIG_CGROUPS is not set | ||
87 | CONFIG_SYSFS_DEPRECATED=y | 88 | CONFIG_SYSFS_DEPRECATED=y |
88 | CONFIG_SYSFS_DEPRECATED_V2=y | 89 | CONFIG_SYSFS_DEPRECATED_V2=y |
89 | CONFIG_RELAY=y | 90 | CONFIG_RELAY=y |
@@ -117,7 +118,6 @@ CONFIG_SLAB=y | |||
117 | # CONFIG_SLUB is not set | 118 | # CONFIG_SLUB is not set |
118 | # CONFIG_SLOB is not set | 119 | # CONFIG_SLOB is not set |
119 | # CONFIG_PROFILING is not set | 120 | # CONFIG_PROFILING is not set |
120 | # CONFIG_MARKERS is not set | ||
121 | CONFIG_HAVE_OPROFILE=y | 121 | CONFIG_HAVE_OPROFILE=y |
122 | # CONFIG_KPROBES is not set | 122 | # CONFIG_KPROBES is not set |
123 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 123 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -129,7 +129,6 @@ CONFIG_USE_GENERIC_SMP_HELPERS=y | |||
129 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 129 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
130 | CONFIG_SLABINFO=y | 130 | CONFIG_SLABINFO=y |
131 | CONFIG_RT_MUTEXES=y | 131 | CONFIG_RT_MUTEXES=y |
132 | # CONFIG_TINY_SHMEM is not set | ||
133 | CONFIG_BASE_SMALL=0 | 132 | CONFIG_BASE_SMALL=0 |
134 | CONFIG_MODULES=y | 133 | CONFIG_MODULES=y |
135 | # CONFIG_MODULE_FORCE_LOAD is not set | 134 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -137,12 +136,10 @@ CONFIG_MODULE_UNLOAD=y | |||
137 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 136 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
138 | # CONFIG_MODVERSIONS is not set | 137 | # CONFIG_MODVERSIONS is not set |
139 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 138 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
140 | CONFIG_KMOD=y | ||
141 | CONFIG_STOP_MACHINE=y | 139 | CONFIG_STOP_MACHINE=y |
142 | CONFIG_BLOCK=y | 140 | CONFIG_BLOCK=y |
143 | # CONFIG_LBD is not set | 141 | # CONFIG_LBD is not set |
144 | # CONFIG_BLK_DEV_IO_TRACE is not set | 142 | # CONFIG_BLK_DEV_IO_TRACE is not set |
145 | # CONFIG_LSF is not set | ||
146 | # CONFIG_BLK_DEV_BSG is not set | 143 | # CONFIG_BLK_DEV_BSG is not set |
147 | # CONFIG_BLK_DEV_INTEGRITY is not set | 144 | # CONFIG_BLK_DEV_INTEGRITY is not set |
148 | 145 | ||
@@ -159,6 +156,10 @@ CONFIG_DEFAULT_CFQ=y | |||
159 | # CONFIG_DEFAULT_NOOP is not set | 156 | # CONFIG_DEFAULT_NOOP is not set |
160 | CONFIG_DEFAULT_IOSCHED="cfq" | 157 | CONFIG_DEFAULT_IOSCHED="cfq" |
161 | CONFIG_CLASSIC_RCU=y | 158 | CONFIG_CLASSIC_RCU=y |
159 | # CONFIG_TREE_RCU is not set | ||
160 | # CONFIG_PREEMPT_RCU is not set | ||
161 | # CONFIG_TREE_RCU_TRACE is not set | ||
162 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
162 | # CONFIG_FREEZER is not set | 163 | # CONFIG_FREEZER is not set |
163 | 164 | ||
164 | # | 165 | # |
@@ -197,6 +198,7 @@ CONFIG_MPIC=y | |||
197 | # CONFIG_QUICC_ENGINE is not set | 198 | # CONFIG_QUICC_ENGINE is not set |
198 | # CONFIG_FSL_ULI1575 is not set | 199 | # CONFIG_FSL_ULI1575 is not set |
199 | # CONFIG_MPC8xxx_GPIO is not set | 200 | # CONFIG_MPC8xxx_GPIO is not set |
201 | # CONFIG_SIMPLE_GPIO is not set | ||
200 | 202 | ||
201 | # | 203 | # |
202 | # Kernel options | 204 | # Kernel options |
@@ -215,7 +217,6 @@ CONFIG_SCHED_HRTICK=y | |||
215 | # CONFIG_PREEMPT_NONE is not set | 217 | # CONFIG_PREEMPT_NONE is not set |
216 | # CONFIG_PREEMPT_VOLUNTARY is not set | 218 | # CONFIG_PREEMPT_VOLUNTARY is not set |
217 | CONFIG_PREEMPT=y | 219 | CONFIG_PREEMPT=y |
218 | # CONFIG_PREEMPT_RCU is not set | ||
219 | CONFIG_BINFMT_ELF=y | 220 | CONFIG_BINFMT_ELF=y |
220 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | 221 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set |
221 | # CONFIG_HAVE_AOUT is not set | 222 | # CONFIG_HAVE_AOUT is not set |
@@ -225,6 +226,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
225 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 226 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
226 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 227 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
227 | # CONFIG_KEXEC is not set | 228 | # CONFIG_KEXEC is not set |
229 | # CONFIG_CRASH_DUMP is not set | ||
228 | CONFIG_IRQ_ALL_CPUS=y | 230 | CONFIG_IRQ_ALL_CPUS=y |
229 | CONFIG_ARCH_FLATMEM_ENABLE=y | 231 | CONFIG_ARCH_FLATMEM_ENABLE=y |
230 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 232 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
@@ -237,12 +239,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
237 | CONFIG_PAGEFLAGS_EXTENDED=y | 239 | CONFIG_PAGEFLAGS_EXTENDED=y |
238 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 240 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
239 | CONFIG_MIGRATION=y | 241 | CONFIG_MIGRATION=y |
240 | # CONFIG_RESOURCES_64BIT is not set | ||
241 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 242 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
242 | CONFIG_ZONE_DMA_FLAG=1 | 243 | CONFIG_ZONE_DMA_FLAG=1 |
243 | CONFIG_BOUNCE=y | 244 | CONFIG_BOUNCE=y |
244 | CONFIG_VIRT_TO_BUS=y | 245 | CONFIG_VIRT_TO_BUS=y |
245 | CONFIG_UNEVICTABLE_LRU=y | 246 | CONFIG_UNEVICTABLE_LRU=y |
247 | CONFIG_PPC_4K_PAGES=y | ||
248 | # CONFIG_PPC_16K_PAGES is not set | ||
249 | # CONFIG_PPC_64K_PAGES is not set | ||
246 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
247 | # CONFIG_PROC_DEVICETREE is not set | 251 | # CONFIG_PROC_DEVICETREE is not set |
248 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
@@ -270,6 +274,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
270 | # CONFIG_PCI_MSI is not set | 274 | # CONFIG_PCI_MSI is not set |
271 | # CONFIG_PCI_LEGACY is not set | 275 | # CONFIG_PCI_LEGACY is not set |
272 | CONFIG_PCI_DEBUG=y | 276 | CONFIG_PCI_DEBUG=y |
277 | # CONFIG_PCI_STUB is not set | ||
273 | # CONFIG_PCCARD is not set | 278 | # CONFIG_PCCARD is not set |
274 | # CONFIG_HOTPLUG_PCI is not set | 279 | # CONFIG_HOTPLUG_PCI is not set |
275 | CONFIG_HAS_RAPIDIO=y | 280 | CONFIG_HAS_RAPIDIO=y |
@@ -293,6 +298,7 @@ CONFIG_NET=y | |||
293 | # | 298 | # |
294 | # Networking options | 299 | # Networking options |
295 | # | 300 | # |
301 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
296 | CONFIG_PACKET=y | 302 | CONFIG_PACKET=y |
297 | CONFIG_PACKET_MMAP=y | 303 | CONFIG_PACKET_MMAP=y |
298 | CONFIG_UNIX=y | 304 | CONFIG_UNIX=y |
@@ -502,6 +508,7 @@ CONFIG_NET_SCH_TBF=m | |||
502 | CONFIG_NET_SCH_GRED=m | 508 | CONFIG_NET_SCH_GRED=m |
503 | CONFIG_NET_SCH_DSMARK=m | 509 | CONFIG_NET_SCH_DSMARK=m |
504 | CONFIG_NET_SCH_NETEM=m | 510 | CONFIG_NET_SCH_NETEM=m |
511 | # CONFIG_NET_SCH_DRR is not set | ||
505 | 512 | ||
506 | # | 513 | # |
507 | # Classification | 514 | # Classification |
@@ -522,6 +529,7 @@ CONFIG_NET_CLS_RSVP6=m | |||
522 | # CONFIG_NET_CLS_ACT is not set | 529 | # CONFIG_NET_CLS_ACT is not set |
523 | # CONFIG_NET_CLS_IND is not set | 530 | # CONFIG_NET_CLS_IND is not set |
524 | CONFIG_NET_SCH_FIFO=y | 531 | CONFIG_NET_SCH_FIFO=y |
532 | # CONFIG_DCB is not set | ||
525 | 533 | ||
526 | # | 534 | # |
527 | # Network testing | 535 | # Network testing |
@@ -538,8 +546,9 @@ CONFIG_WIRELESS=y | |||
538 | # CONFIG_CFG80211 is not set | 546 | # CONFIG_CFG80211 is not set |
539 | CONFIG_WIRELESS_OLD_REGULATORY=y | 547 | CONFIG_WIRELESS_OLD_REGULATORY=y |
540 | # CONFIG_WIRELESS_EXT is not set | 548 | # CONFIG_WIRELESS_EXT is not set |
549 | # CONFIG_LIB80211 is not set | ||
541 | # CONFIG_MAC80211 is not set | 550 | # CONFIG_MAC80211 is not set |
542 | # CONFIG_IEEE80211 is not set | 551 | # CONFIG_WIMAX is not set |
543 | # CONFIG_RFKILL is not set | 552 | # CONFIG_RFKILL is not set |
544 | # CONFIG_NET_9P is not set | 553 | # CONFIG_NET_9P is not set |
545 | 554 | ||
@@ -562,6 +571,7 @@ CONFIG_MTD=y | |||
562 | # CONFIG_MTD_DEBUG is not set | 571 | # CONFIG_MTD_DEBUG is not set |
563 | CONFIG_MTD_CONCAT=y | 572 | CONFIG_MTD_CONCAT=y |
564 | CONFIG_MTD_PARTITIONS=y | 573 | CONFIG_MTD_PARTITIONS=y |
574 | # CONFIG_MTD_TESTS is not set | ||
565 | # CONFIG_MTD_REDBOOT_PARTS is not set | 575 | # CONFIG_MTD_REDBOOT_PARTS is not set |
566 | # CONFIG_MTD_CMDLINE_PARTS is not set | 576 | # CONFIG_MTD_CMDLINE_PARTS is not set |
567 | # CONFIG_MTD_OF_PARTS is not set | 577 | # CONFIG_MTD_OF_PARTS is not set |
@@ -638,10 +648,17 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
638 | # CONFIG_MTD_ONENAND is not set | 648 | # CONFIG_MTD_ONENAND is not set |
639 | 649 | ||
640 | # | 650 | # |
651 | # LPDDR flash memory drivers | ||
652 | # | ||
653 | # CONFIG_MTD_LPDDR is not set | ||
654 | # CONFIG_MTD_QINFO_PROBE is not set | ||
655 | |||
656 | # | ||
641 | # UBI - Unsorted block images | 657 | # UBI - Unsorted block images |
642 | # | 658 | # |
643 | # CONFIG_MTD_UBI is not set | 659 | # CONFIG_MTD_UBI is not set |
644 | CONFIG_OF_DEVICE=y | 660 | CONFIG_OF_DEVICE=y |
661 | CONFIG_OF_GPIO=y | ||
645 | CONFIG_OF_I2C=y | 662 | CONFIG_OF_I2C=y |
646 | # CONFIG_PARPORT is not set | 663 | # CONFIG_PARPORT is not set |
647 | CONFIG_BLK_DEV=y | 664 | CONFIG_BLK_DEV=y |
@@ -668,8 +685,10 @@ CONFIG_MISC_DEVICES=y | |||
668 | # CONFIG_EEPROM_93CX6 is not set | 685 | # CONFIG_EEPROM_93CX6 is not set |
669 | # CONFIG_SGI_IOC4 is not set | 686 | # CONFIG_SGI_IOC4 is not set |
670 | # CONFIG_TIFM_CORE is not set | 687 | # CONFIG_TIFM_CORE is not set |
688 | # CONFIG_ICS932S401 is not set | ||
671 | # CONFIG_ENCLOSURE_SERVICES is not set | 689 | # CONFIG_ENCLOSURE_SERVICES is not set |
672 | # CONFIG_HP_ILO is not set | 690 | # CONFIG_HP_ILO is not set |
691 | # CONFIG_C2PORT is not set | ||
673 | CONFIG_HAVE_IDE=y | 692 | CONFIG_HAVE_IDE=y |
674 | # CONFIG_IDE is not set | 693 | # CONFIG_IDE is not set |
675 | 694 | ||
@@ -729,6 +748,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
729 | # CONFIG_MEGARAID_SAS is not set | 748 | # CONFIG_MEGARAID_SAS is not set |
730 | # CONFIG_SCSI_HPTIOP is not set | 749 | # CONFIG_SCSI_HPTIOP is not set |
731 | # CONFIG_SCSI_BUSLOGIC is not set | 750 | # CONFIG_SCSI_BUSLOGIC is not set |
751 | # CONFIG_LIBFC is not set | ||
752 | # CONFIG_FCOE is not set | ||
732 | # CONFIG_SCSI_DMX3191D is not set | 753 | # CONFIG_SCSI_DMX3191D is not set |
733 | # CONFIG_SCSI_EATA is not set | 754 | # CONFIG_SCSI_EATA is not set |
734 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 755 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -848,6 +869,9 @@ CONFIG_PHYLIB=y | |||
848 | # CONFIG_BROADCOM_PHY is not set | 869 | # CONFIG_BROADCOM_PHY is not set |
849 | # CONFIG_ICPLUS_PHY is not set | 870 | # CONFIG_ICPLUS_PHY is not set |
850 | # CONFIG_REALTEK_PHY is not set | 871 | # CONFIG_REALTEK_PHY is not set |
872 | # CONFIG_NATIONAL_PHY is not set | ||
873 | # CONFIG_STE10XP is not set | ||
874 | # CONFIG_LSI_ET1011C_PHY is not set | ||
851 | # CONFIG_FIXED_PHY is not set | 875 | # CONFIG_FIXED_PHY is not set |
852 | # CONFIG_MDIO_BITBANG is not set | 876 | # CONFIG_MDIO_BITBANG is not set |
853 | CONFIG_NET_ETHERNET=y | 877 | CONFIG_NET_ETHERNET=y |
@@ -902,6 +926,10 @@ CONFIG_GIANFAR=y | |||
902 | # CONFIG_IWLWIFI_LEDS is not set | 926 | # CONFIG_IWLWIFI_LEDS is not set |
903 | 927 | ||
904 | # | 928 | # |
929 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
930 | # | ||
931 | |||
932 | # | ||
905 | # USB Network Adapters | 933 | # USB Network Adapters |
906 | # | 934 | # |
907 | # CONFIG_USB_CATC is not set | 935 | # CONFIG_USB_CATC is not set |
@@ -924,6 +952,7 @@ CONFIG_ATM_DRIVERS=y | |||
924 | # CONFIG_ATM_IA is not set | 952 | # CONFIG_ATM_IA is not set |
925 | # CONFIG_ATM_FORE200E is not set | 953 | # CONFIG_ATM_FORE200E is not set |
926 | # CONFIG_ATM_HE is not set | 954 | # CONFIG_ATM_HE is not set |
955 | # CONFIG_ATM_SOLOS is not set | ||
927 | # CONFIG_FDDI is not set | 956 | # CONFIG_FDDI is not set |
928 | # CONFIG_HIPPI is not set | 957 | # CONFIG_HIPPI is not set |
929 | CONFIG_PPP=m | 958 | CONFIG_PPP=m |
@@ -1016,7 +1045,9 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
1016 | # CONFIG_SERIAL_JSM is not set | 1045 | # CONFIG_SERIAL_JSM is not set |
1017 | # CONFIG_SERIAL_OF_PLATFORM is not set | 1046 | # CONFIG_SERIAL_OF_PLATFORM is not set |
1018 | CONFIG_UNIX98_PTYS=y | 1047 | CONFIG_UNIX98_PTYS=y |
1048 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
1019 | # CONFIG_LEGACY_PTYS is not set | 1049 | # CONFIG_LEGACY_PTYS is not set |
1050 | # CONFIG_HVC_UDBG is not set | ||
1020 | # CONFIG_IPMI_HANDLER is not set | 1051 | # CONFIG_IPMI_HANDLER is not set |
1021 | CONFIG_HW_RANDOM=y | 1052 | CONFIG_HW_RANDOM=y |
1022 | # CONFIG_NVRAM is not set | 1053 | # CONFIG_NVRAM is not set |
@@ -1055,6 +1086,7 @@ CONFIG_I2C_HELPER_AUTO=y | |||
1055 | # | 1086 | # |
1056 | # I2C system bus drivers (mostly embedded / system-on-chip) | 1087 | # I2C system bus drivers (mostly embedded / system-on-chip) |
1057 | # | 1088 | # |
1089 | # CONFIG_I2C_GPIO is not set | ||
1058 | CONFIG_I2C_MPC=y | 1090 | CONFIG_I2C_MPC=y |
1059 | # CONFIG_I2C_OCORES is not set | 1091 | # CONFIG_I2C_OCORES is not set |
1060 | # CONFIG_I2C_SIMTEC is not set | 1092 | # CONFIG_I2C_SIMTEC is not set |
@@ -1095,7 +1127,31 @@ CONFIG_DS1682=y | |||
1095 | # CONFIG_I2C_DEBUG_CHIP is not set | 1127 | # CONFIG_I2C_DEBUG_CHIP is not set |
1096 | # CONFIG_SPI is not set | 1128 | # CONFIG_SPI is not set |
1097 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | 1129 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y |
1098 | # CONFIG_GPIOLIB is not set | 1130 | CONFIG_ARCH_REQUIRE_GPIOLIB=y |
1131 | CONFIG_GPIOLIB=y | ||
1132 | # CONFIG_DEBUG_GPIO is not set | ||
1133 | # CONFIG_GPIO_SYSFS is not set | ||
1134 | |||
1135 | # | ||
1136 | # Memory mapped GPIO expanders: | ||
1137 | # | ||
1138 | # CONFIG_GPIO_XILINX is not set | ||
1139 | |||
1140 | # | ||
1141 | # I2C GPIO expanders: | ||
1142 | # | ||
1143 | # CONFIG_GPIO_MAX732X is not set | ||
1144 | # CONFIG_GPIO_PCA953X is not set | ||
1145 | # CONFIG_GPIO_PCF857X is not set | ||
1146 | |||
1147 | # | ||
1148 | # PCI GPIO expanders: | ||
1149 | # | ||
1150 | # CONFIG_GPIO_BT8XX is not set | ||
1151 | |||
1152 | # | ||
1153 | # SPI GPIO expanders: | ||
1154 | # | ||
1099 | # CONFIG_W1 is not set | 1155 | # CONFIG_W1 is not set |
1100 | # CONFIG_POWER_SUPPLY is not set | 1156 | # CONFIG_POWER_SUPPLY is not set |
1101 | CONFIG_HWMON=y | 1157 | CONFIG_HWMON=y |
@@ -1108,8 +1164,10 @@ CONFIG_HWMON=y | |||
1108 | # CONFIG_SENSORS_ADM1029 is not set | 1164 | # CONFIG_SENSORS_ADM1029 is not set |
1109 | # CONFIG_SENSORS_ADM1031 is not set | 1165 | # CONFIG_SENSORS_ADM1031 is not set |
1110 | # CONFIG_SENSORS_ADM9240 is not set | 1166 | # CONFIG_SENSORS_ADM9240 is not set |
1167 | # CONFIG_SENSORS_ADT7462 is not set | ||
1111 | # CONFIG_SENSORS_ADT7470 is not set | 1168 | # CONFIG_SENSORS_ADT7470 is not set |
1112 | # CONFIG_SENSORS_ADT7473 is not set | 1169 | # CONFIG_SENSORS_ADT7473 is not set |
1170 | # CONFIG_SENSORS_ADT7475 is not set | ||
1113 | # CONFIG_SENSORS_ATXP1 is not set | 1171 | # CONFIG_SENSORS_ATXP1 is not set |
1114 | # CONFIG_SENSORS_DS1621 is not set | 1172 | # CONFIG_SENSORS_DS1621 is not set |
1115 | # CONFIG_SENSORS_I5K_AMB is not set | 1173 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -1130,6 +1188,7 @@ CONFIG_HWMON=y | |||
1130 | CONFIG_SENSORS_LM90=y | 1188 | CONFIG_SENSORS_LM90=y |
1131 | CONFIG_SENSORS_LM92=y | 1189 | CONFIG_SENSORS_LM92=y |
1132 | # CONFIG_SENSORS_LM93 is not set | 1190 | # CONFIG_SENSORS_LM93 is not set |
1191 | # CONFIG_SENSORS_LTC4245 is not set | ||
1133 | # CONFIG_SENSORS_MAX1619 is not set | 1192 | # CONFIG_SENSORS_MAX1619 is not set |
1134 | # CONFIG_SENSORS_MAX6650 is not set | 1193 | # CONFIG_SENSORS_MAX6650 is not set |
1135 | # CONFIG_SENSORS_PC87360 is not set | 1194 | # CONFIG_SENSORS_PC87360 is not set |
@@ -1163,8 +1222,8 @@ CONFIG_WATCHDOG=y | |||
1163 | # | 1222 | # |
1164 | # CONFIG_SOFT_WATCHDOG is not set | 1223 | # CONFIG_SOFT_WATCHDOG is not set |
1165 | # CONFIG_ALIM7101_WDT is not set | 1224 | # CONFIG_ALIM7101_WDT is not set |
1166 | # CONFIG_8xxx_WDT is not set | ||
1167 | CONFIG_GEF_WDT=y | 1225 | CONFIG_GEF_WDT=y |
1226 | # CONFIG_8xxx_WDT is not set | ||
1168 | 1227 | ||
1169 | # | 1228 | # |
1170 | # PCI-based Watchdog Cards | 1229 | # PCI-based Watchdog Cards |
@@ -1176,11 +1235,11 @@ CONFIG_GEF_WDT=y | |||
1176 | # USB-based Watchdog Cards | 1235 | # USB-based Watchdog Cards |
1177 | # | 1236 | # |
1178 | # CONFIG_USBPCWATCHDOG is not set | 1237 | # CONFIG_USBPCWATCHDOG is not set |
1238 | CONFIG_SSB_POSSIBLE=y | ||
1179 | 1239 | ||
1180 | # | 1240 | # |
1181 | # Sonics Silicon Backplane | 1241 | # Sonics Silicon Backplane |
1182 | # | 1242 | # |
1183 | CONFIG_SSB_POSSIBLE=y | ||
1184 | # CONFIG_SSB is not set | 1243 | # CONFIG_SSB is not set |
1185 | 1244 | ||
1186 | # | 1245 | # |
@@ -1189,18 +1248,14 @@ CONFIG_SSB_POSSIBLE=y | |||
1189 | # CONFIG_MFD_CORE is not set | 1248 | # CONFIG_MFD_CORE is not set |
1190 | # CONFIG_MFD_SM501 is not set | 1249 | # CONFIG_MFD_SM501 is not set |
1191 | # CONFIG_HTC_PASIC3 is not set | 1250 | # CONFIG_HTC_PASIC3 is not set |
1251 | # CONFIG_TPS65010 is not set | ||
1252 | # CONFIG_TWL4030_CORE is not set | ||
1192 | # CONFIG_MFD_TMIO is not set | 1253 | # CONFIG_MFD_TMIO is not set |
1193 | # CONFIG_PMIC_DA903X is not set | 1254 | # CONFIG_PMIC_DA903X is not set |
1194 | # CONFIG_MFD_WM8400 is not set | 1255 | # CONFIG_MFD_WM8400 is not set |
1195 | # CONFIG_MFD_WM8350_I2C is not set | 1256 | # CONFIG_MFD_WM8350_I2C is not set |
1196 | 1257 | # CONFIG_MFD_PCF50633 is not set | |
1197 | # | ||
1198 | # Voltage and Current regulators | ||
1199 | # | ||
1200 | # CONFIG_REGULATOR is not set | 1258 | # CONFIG_REGULATOR is not set |
1201 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
1202 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
1203 | # CONFIG_REGULATOR_BQ24022 is not set | ||
1204 | 1259 | ||
1205 | # | 1260 | # |
1206 | # Multimedia devices | 1261 | # Multimedia devices |
@@ -1260,11 +1315,9 @@ CONFIG_HID_COMPAT=y | |||
1260 | CONFIG_HID_A4TECH=y | 1315 | CONFIG_HID_A4TECH=y |
1261 | CONFIG_HID_APPLE=y | 1316 | CONFIG_HID_APPLE=y |
1262 | CONFIG_HID_BELKIN=y | 1317 | CONFIG_HID_BELKIN=y |
1263 | CONFIG_HID_BRIGHT=y | ||
1264 | CONFIG_HID_CHERRY=y | 1318 | CONFIG_HID_CHERRY=y |
1265 | CONFIG_HID_CHICONY=y | 1319 | CONFIG_HID_CHICONY=y |
1266 | CONFIG_HID_CYPRESS=y | 1320 | CONFIG_HID_CYPRESS=y |
1267 | CONFIG_HID_DELL=y | ||
1268 | CONFIG_HID_EZKEY=y | 1321 | CONFIG_HID_EZKEY=y |
1269 | CONFIG_HID_GYRATION=y | 1322 | CONFIG_HID_GYRATION=y |
1270 | CONFIG_HID_LOGITECH=y | 1323 | CONFIG_HID_LOGITECH=y |
@@ -1272,12 +1325,15 @@ CONFIG_HID_LOGITECH=y | |||
1272 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1325 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
1273 | CONFIG_HID_MICROSOFT=y | 1326 | CONFIG_HID_MICROSOFT=y |
1274 | CONFIG_HID_MONTEREY=y | 1327 | CONFIG_HID_MONTEREY=y |
1328 | # CONFIG_HID_NTRIG is not set | ||
1275 | CONFIG_HID_PANTHERLORD=y | 1329 | CONFIG_HID_PANTHERLORD=y |
1276 | # CONFIG_PANTHERLORD_FF is not set | 1330 | # CONFIG_PANTHERLORD_FF is not set |
1277 | CONFIG_HID_PETALYNX=y | 1331 | CONFIG_HID_PETALYNX=y |
1278 | CONFIG_HID_SAMSUNG=y | 1332 | CONFIG_HID_SAMSUNG=y |
1279 | CONFIG_HID_SONY=y | 1333 | CONFIG_HID_SONY=y |
1280 | CONFIG_HID_SUNPLUS=y | 1334 | CONFIG_HID_SUNPLUS=y |
1335 | # CONFIG_GREENASIA_FF is not set | ||
1336 | # CONFIG_HID_TOPSEED is not set | ||
1281 | CONFIG_THRUSTMASTER_FF=m | 1337 | CONFIG_THRUSTMASTER_FF=m |
1282 | CONFIG_ZEROPLUS_FF=m | 1338 | CONFIG_ZEROPLUS_FF=m |
1283 | CONFIG_USB_SUPPORT=y | 1339 | CONFIG_USB_SUPPORT=y |
@@ -1310,6 +1366,7 @@ CONFIG_USB_EHCI_HCD=y | |||
1310 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1366 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1311 | # CONFIG_USB_EHCI_FSL is not set | 1367 | # CONFIG_USB_EHCI_FSL is not set |
1312 | # CONFIG_USB_EHCI_HCD_PPC_OF is not set | 1368 | # CONFIG_USB_EHCI_HCD_PPC_OF is not set |
1369 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1313 | # CONFIG_USB_ISP116X_HCD is not set | 1370 | # CONFIG_USB_ISP116X_HCD is not set |
1314 | # CONFIG_USB_ISP1760_HCD is not set | 1371 | # CONFIG_USB_ISP1760_HCD is not set |
1315 | CONFIG_USB_OHCI_HCD=y | 1372 | CONFIG_USB_OHCI_HCD=y |
@@ -1332,18 +1389,17 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
1332 | # CONFIG_USB_TMC is not set | 1389 | # CONFIG_USB_TMC is not set |
1333 | 1390 | ||
1334 | # | 1391 | # |
1335 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1392 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1336 | # | 1393 | # |
1337 | 1394 | ||
1338 | # | 1395 | # |
1339 | # may also be needed; see USB_STORAGE Help for more information | 1396 | # see USB_STORAGE Help for more information |
1340 | # | 1397 | # |
1341 | CONFIG_USB_STORAGE=y | 1398 | CONFIG_USB_STORAGE=y |
1342 | # CONFIG_USB_STORAGE_DEBUG is not set | 1399 | # CONFIG_USB_STORAGE_DEBUG is not set |
1343 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1400 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1344 | # CONFIG_USB_STORAGE_FREECOM is not set | 1401 | # CONFIG_USB_STORAGE_FREECOM is not set |
1345 | # CONFIG_USB_STORAGE_ISD200 is not set | 1402 | # CONFIG_USB_STORAGE_ISD200 is not set |
1346 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1347 | # CONFIG_USB_STORAGE_USBAT is not set | 1403 | # CONFIG_USB_STORAGE_USBAT is not set |
1348 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1404 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1349 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1405 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1391,6 +1447,11 @@ CONFIG_USB_STORAGE=y | |||
1391 | # CONFIG_USB_VST is not set | 1447 | # CONFIG_USB_VST is not set |
1392 | # CONFIG_USB_ATM is not set | 1448 | # CONFIG_USB_ATM is not set |
1393 | # CONFIG_USB_GADGET is not set | 1449 | # CONFIG_USB_GADGET is not set |
1450 | |||
1451 | # | ||
1452 | # OTG and related infrastructure | ||
1453 | # | ||
1454 | # CONFIG_USB_GPIO_VBUS is not set | ||
1394 | # CONFIG_UWB is not set | 1455 | # CONFIG_UWB is not set |
1395 | # CONFIG_MMC is not set | 1456 | # CONFIG_MMC is not set |
1396 | # CONFIG_MEMSTICK is not set | 1457 | # CONFIG_MEMSTICK is not set |
@@ -1478,6 +1539,7 @@ CONFIG_FS_POSIX_ACL=y | |||
1478 | CONFIG_FILE_LOCKING=y | 1539 | CONFIG_FILE_LOCKING=y |
1479 | # CONFIG_XFS_FS is not set | 1540 | # CONFIG_XFS_FS is not set |
1480 | # CONFIG_OCFS2_FS is not set | 1541 | # CONFIG_OCFS2_FS is not set |
1542 | # CONFIG_BTRFS_FS is not set | ||
1481 | CONFIG_DNOTIFY=y | 1543 | CONFIG_DNOTIFY=y |
1482 | CONFIG_INOTIFY=y | 1544 | CONFIG_INOTIFY=y |
1483 | CONFIG_INOTIFY_USER=y | 1545 | CONFIG_INOTIFY_USER=y |
@@ -1514,10 +1576,7 @@ CONFIG_TMPFS=y | |||
1514 | # CONFIG_TMPFS_POSIX_ACL is not set | 1576 | # CONFIG_TMPFS_POSIX_ACL is not set |
1515 | # CONFIG_HUGETLB_PAGE is not set | 1577 | # CONFIG_HUGETLB_PAGE is not set |
1516 | # CONFIG_CONFIGFS_FS is not set | 1578 | # CONFIG_CONFIGFS_FS is not set |
1517 | 1579 | CONFIG_MISC_FILESYSTEMS=y | |
1518 | # | ||
1519 | # Miscellaneous filesystems | ||
1520 | # | ||
1521 | # CONFIG_ADFS_FS is not set | 1580 | # CONFIG_ADFS_FS is not set |
1522 | # CONFIG_AFFS_FS is not set | 1581 | # CONFIG_AFFS_FS is not set |
1523 | # CONFIG_HFS_FS is not set | 1582 | # CONFIG_HFS_FS is not set |
@@ -1527,6 +1586,7 @@ CONFIG_TMPFS=y | |||
1527 | # CONFIG_EFS_FS is not set | 1586 | # CONFIG_EFS_FS is not set |
1528 | # CONFIG_JFFS2_FS is not set | 1587 | # CONFIG_JFFS2_FS is not set |
1529 | # CONFIG_CRAMFS is not set | 1588 | # CONFIG_CRAMFS is not set |
1589 | # CONFIG_SQUASHFS is not set | ||
1530 | # CONFIG_VXFS_FS is not set | 1590 | # CONFIG_VXFS_FS is not set |
1531 | # CONFIG_MINIX_FS is not set | 1591 | # CONFIG_MINIX_FS is not set |
1532 | # CONFIG_OMFS_FS is not set | 1592 | # CONFIG_OMFS_FS is not set |
@@ -1613,6 +1673,7 @@ CONFIG_NLS_UTF8=m | |||
1613 | # Library routines | 1673 | # Library routines |
1614 | # | 1674 | # |
1615 | CONFIG_BITREVERSE=y | 1675 | CONFIG_BITREVERSE=y |
1676 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1616 | CONFIG_CRC_CCITT=m | 1677 | CONFIG_CRC_CCITT=m |
1617 | # CONFIG_CRC16 is not set | 1678 | # CONFIG_CRC16 is not set |
1618 | # CONFIG_CRC_T10DIF is not set | 1679 | # CONFIG_CRC_T10DIF is not set |
@@ -1663,6 +1724,7 @@ CONFIG_DEBUG_INFO=y | |||
1663 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1724 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1664 | # CONFIG_DEBUG_LIST is not set | 1725 | # CONFIG_DEBUG_LIST is not set |
1665 | # CONFIG_DEBUG_SG is not set | 1726 | # CONFIG_DEBUG_SG is not set |
1727 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1666 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1728 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1667 | # CONFIG_RCU_TORTURE_TEST is not set | 1729 | # CONFIG_RCU_TORTURE_TEST is not set |
1668 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1730 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1672,6 +1734,8 @@ CONFIG_DEBUG_INFO=y | |||
1672 | # CONFIG_LATENCYTOP is not set | 1734 | # CONFIG_LATENCYTOP is not set |
1673 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1735 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1674 | CONFIG_HAVE_FUNCTION_TRACER=y | 1736 | CONFIG_HAVE_FUNCTION_TRACER=y |
1737 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1738 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1675 | 1739 | ||
1676 | # | 1740 | # |
1677 | # Tracers | 1741 | # Tracers |
@@ -1681,11 +1745,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1681 | # CONFIG_SCHED_TRACER is not set | 1745 | # CONFIG_SCHED_TRACER is not set |
1682 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1746 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1683 | # CONFIG_BOOT_TRACER is not set | 1747 | # CONFIG_BOOT_TRACER is not set |
1748 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1684 | # CONFIG_STACK_TRACER is not set | 1749 | # CONFIG_STACK_TRACER is not set |
1685 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1750 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1686 | # CONFIG_SAMPLES is not set | 1751 | # CONFIG_SAMPLES is not set |
1687 | CONFIG_HAVE_ARCH_KGDB=y | 1752 | CONFIG_HAVE_ARCH_KGDB=y |
1688 | # CONFIG_KGDB is not set | 1753 | # CONFIG_KGDB is not set |
1754 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1689 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1755 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1690 | # CONFIG_DEBUG_STACK_USAGE is not set | 1756 | # CONFIG_DEBUG_STACK_USAGE is not set |
1691 | # CONFIG_DEBUG_PAGEALLOC is not set | 1757 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1706,6 +1772,7 @@ CONFIG_SECURITY=y | |||
1706 | # CONFIG_SECURITYFS is not set | 1772 | # CONFIG_SECURITYFS is not set |
1707 | CONFIG_SECURITY_NETWORK=y | 1773 | CONFIG_SECURITY_NETWORK=y |
1708 | # CONFIG_SECURITY_NETWORK_XFRM is not set | 1774 | # CONFIG_SECURITY_NETWORK_XFRM is not set |
1775 | # CONFIG_SECURITY_PATH is not set | ||
1709 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1776 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
1710 | # CONFIG_SECURITY_ROOTPLUG is not set | 1777 | # CONFIG_SECURITY_ROOTPLUG is not set |
1711 | CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0 | 1778 | CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0 |
@@ -1716,11 +1783,16 @@ CONFIG_CRYPTO=y | |||
1716 | # | 1783 | # |
1717 | # CONFIG_CRYPTO_FIPS is not set | 1784 | # CONFIG_CRYPTO_FIPS is not set |
1718 | CONFIG_CRYPTO_ALGAPI=y | 1785 | CONFIG_CRYPTO_ALGAPI=y |
1719 | CONFIG_CRYPTO_AEAD=y | 1786 | CONFIG_CRYPTO_ALGAPI2=y |
1787 | CONFIG_CRYPTO_AEAD=m | ||
1788 | CONFIG_CRYPTO_AEAD2=y | ||
1720 | CONFIG_CRYPTO_BLKCIPHER=y | 1789 | CONFIG_CRYPTO_BLKCIPHER=y |
1790 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1721 | CONFIG_CRYPTO_HASH=y | 1791 | CONFIG_CRYPTO_HASH=y |
1722 | CONFIG_CRYPTO_RNG=y | 1792 | CONFIG_CRYPTO_HASH2=y |
1793 | CONFIG_CRYPTO_RNG2=y | ||
1723 | CONFIG_CRYPTO_MANAGER=y | 1794 | CONFIG_CRYPTO_MANAGER=y |
1795 | CONFIG_CRYPTO_MANAGER2=y | ||
1724 | # CONFIG_CRYPTO_GF128MUL is not set | 1796 | # CONFIG_CRYPTO_GF128MUL is not set |
1725 | CONFIG_CRYPTO_NULL=m | 1797 | CONFIG_CRYPTO_NULL=m |
1726 | # CONFIG_CRYPTO_CRYPTD is not set | 1798 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/86xx/mpc8610_hpcd_defconfig b/arch/powerpc/configs/86xx/mpc8610_hpcd_defconfig index 25bf4e95acb8..bbdf4bfc4327 100644 --- a/arch/powerpc/configs/86xx/mpc8610_hpcd_defconfig +++ b/arch/powerpc/configs/86xx/mpc8610_hpcd_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:28 2008 | 4 | # Mon Jan 26 15:36:24 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -75,12 +75,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | CONFIG_IKCONFIG=y | 75 | CONFIG_IKCONFIG=y |
76 | CONFIG_IKCONFIG_PROC=y | 76 | CONFIG_IKCONFIG_PROC=y |
77 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 79 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -115,7 +115,6 @@ CONFIG_SLUB_DEBUG=y | |||
115 | CONFIG_SLUB=y | 115 | CONFIG_SLUB=y |
116 | # CONFIG_SLOB is not set | 116 | # CONFIG_SLOB is not set |
117 | # CONFIG_PROFILING is not set | 117 | # CONFIG_PROFILING is not set |
118 | # CONFIG_MARKERS is not set | ||
119 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
120 | # CONFIG_KPROBES is not set | 119 | # CONFIG_KPROBES is not set |
121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -126,7 +125,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
127 | CONFIG_SLABINFO=y | 126 | CONFIG_SLABINFO=y |
128 | CONFIG_RT_MUTEXES=y | 127 | CONFIG_RT_MUTEXES=y |
129 | # CONFIG_TINY_SHMEM is not set | ||
130 | CONFIG_BASE_SMALL=0 | 128 | CONFIG_BASE_SMALL=0 |
131 | CONFIG_MODULES=y | 129 | CONFIG_MODULES=y |
132 | # CONFIG_MODULE_FORCE_LOAD is not set | 130 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -134,11 +132,9 @@ CONFIG_MODULE_UNLOAD=y | |||
134 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 132 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
135 | # CONFIG_MODVERSIONS is not set | 133 | # CONFIG_MODVERSIONS is not set |
136 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 134 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
137 | CONFIG_KMOD=y | ||
138 | CONFIG_BLOCK=y | 135 | CONFIG_BLOCK=y |
139 | # CONFIG_LBD is not set | 136 | # CONFIG_LBD is not set |
140 | # CONFIG_BLK_DEV_IO_TRACE is not set | 137 | # CONFIG_BLK_DEV_IO_TRACE is not set |
141 | # CONFIG_LSF is not set | ||
142 | # CONFIG_BLK_DEV_BSG is not set | 138 | # CONFIG_BLK_DEV_BSG is not set |
143 | # CONFIG_BLK_DEV_INTEGRITY is not set | 139 | # CONFIG_BLK_DEV_INTEGRITY is not set |
144 | 140 | ||
@@ -155,6 +151,10 @@ CONFIG_DEFAULT_DEADLINE=y | |||
155 | # CONFIG_DEFAULT_NOOP is not set | 151 | # CONFIG_DEFAULT_NOOP is not set |
156 | CONFIG_DEFAULT_IOSCHED="deadline" | 152 | CONFIG_DEFAULT_IOSCHED="deadline" |
157 | CONFIG_CLASSIC_RCU=y | 153 | CONFIG_CLASSIC_RCU=y |
154 | # CONFIG_TREE_RCU is not set | ||
155 | # CONFIG_PREEMPT_RCU is not set | ||
156 | # CONFIG_TREE_RCU_TRACE is not set | ||
157 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
158 | # CONFIG_FREEZER is not set | 158 | # CONFIG_FREEZER is not set |
159 | 159 | ||
160 | # | 160 | # |
@@ -194,6 +194,7 @@ CONFIG_MPIC=y | |||
194 | # CONFIG_QUICC_ENGINE is not set | 194 | # CONFIG_QUICC_ENGINE is not set |
195 | CONFIG_FSL_ULI1575=y | 195 | CONFIG_FSL_ULI1575=y |
196 | # CONFIG_MPC8xxx_GPIO is not set | 196 | # CONFIG_MPC8xxx_GPIO is not set |
197 | # CONFIG_SIMPLE_GPIO is not set | ||
197 | 198 | ||
198 | # | 199 | # |
199 | # Kernel options | 200 | # Kernel options |
@@ -213,7 +214,6 @@ CONFIG_PREEMPT_NONE=y | |||
213 | # CONFIG_PREEMPT_VOLUNTARY is not set | 214 | # CONFIG_PREEMPT_VOLUNTARY is not set |
214 | # CONFIG_PREEMPT is not set | 215 | # CONFIG_PREEMPT is not set |
215 | CONFIG_BINFMT_ELF=y | 216 | CONFIG_BINFMT_ELF=y |
216 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | ||
217 | # CONFIG_HAVE_AOUT is not set | 217 | # CONFIG_HAVE_AOUT is not set |
218 | # CONFIG_BINFMT_MISC is not set | 218 | # CONFIG_BINFMT_MISC is not set |
219 | # CONFIG_IOMMU_HELPER is not set | 219 | # CONFIG_IOMMU_HELPER is not set |
@@ -221,6 +221,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
221 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 221 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
222 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 222 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
223 | # CONFIG_KEXEC is not set | 223 | # CONFIG_KEXEC is not set |
224 | # CONFIG_CRASH_DUMP is not set | ||
224 | CONFIG_ARCH_FLATMEM_ENABLE=y | 225 | CONFIG_ARCH_FLATMEM_ENABLE=y |
225 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 226 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
226 | CONFIG_SELECT_MEMORY_MODEL=y | 227 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -232,12 +233,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
232 | CONFIG_PAGEFLAGS_EXTENDED=y | 233 | CONFIG_PAGEFLAGS_EXTENDED=y |
233 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 234 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
234 | CONFIG_MIGRATION=y | 235 | CONFIG_MIGRATION=y |
235 | # CONFIG_RESOURCES_64BIT is not set | ||
236 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 236 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
237 | CONFIG_ZONE_DMA_FLAG=1 | 237 | CONFIG_ZONE_DMA_FLAG=1 |
238 | CONFIG_BOUNCE=y | 238 | CONFIG_BOUNCE=y |
239 | CONFIG_VIRT_TO_BUS=y | 239 | CONFIG_VIRT_TO_BUS=y |
240 | CONFIG_UNEVICTABLE_LRU=y | 240 | CONFIG_UNEVICTABLE_LRU=y |
241 | CONFIG_PPC_4K_PAGES=y | ||
242 | # CONFIG_PPC_16K_PAGES is not set | ||
243 | # CONFIG_PPC_64K_PAGES is not set | ||
241 | CONFIG_FORCE_MAX_ZONEORDER=12 | 244 | CONFIG_FORCE_MAX_ZONEORDER=12 |
242 | CONFIG_PROC_DEVICETREE=y | 245 | CONFIG_PROC_DEVICETREE=y |
243 | # CONFIG_CMDLINE_BOOL is not set | 246 | # CONFIG_CMDLINE_BOOL is not set |
@@ -265,6 +268,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
265 | # CONFIG_PCI_MSI is not set | 268 | # CONFIG_PCI_MSI is not set |
266 | # CONFIG_PCI_LEGACY is not set | 269 | # CONFIG_PCI_LEGACY is not set |
267 | CONFIG_PCI_DEBUG=y | 270 | CONFIG_PCI_DEBUG=y |
271 | # CONFIG_PCI_STUB is not set | ||
268 | # CONFIG_PCCARD is not set | 272 | # CONFIG_PCCARD is not set |
269 | # CONFIG_HOTPLUG_PCI is not set | 273 | # CONFIG_HOTPLUG_PCI is not set |
270 | # CONFIG_HAS_RAPIDIO is not set | 274 | # CONFIG_HAS_RAPIDIO is not set |
@@ -287,6 +291,7 @@ CONFIG_NET=y | |||
287 | # | 291 | # |
288 | # Networking options | 292 | # Networking options |
289 | # | 293 | # |
294 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
290 | CONFIG_PACKET=y | 295 | CONFIG_PACKET=y |
291 | # CONFIG_PACKET_MMAP is not set | 296 | # CONFIG_PACKET_MMAP is not set |
292 | CONFIG_UNIX=y | 297 | CONFIG_UNIX=y |
@@ -360,6 +365,7 @@ CONFIG_IPV6_NDISC_NODETYPE=y | |||
360 | # CONFIG_ECONET is not set | 365 | # CONFIG_ECONET is not set |
361 | # CONFIG_WAN_ROUTER is not set | 366 | # CONFIG_WAN_ROUTER is not set |
362 | # CONFIG_NET_SCHED is not set | 367 | # CONFIG_NET_SCHED is not set |
368 | # CONFIG_DCB is not set | ||
363 | 369 | ||
364 | # | 370 | # |
365 | # Network testing | 371 | # Network testing |
@@ -375,8 +381,9 @@ CONFIG_WIRELESS=y | |||
375 | # CONFIG_CFG80211 is not set | 381 | # CONFIG_CFG80211 is not set |
376 | CONFIG_WIRELESS_OLD_REGULATORY=y | 382 | CONFIG_WIRELESS_OLD_REGULATORY=y |
377 | # CONFIG_WIRELESS_EXT is not set | 383 | # CONFIG_WIRELESS_EXT is not set |
384 | # CONFIG_LIB80211 is not set | ||
378 | # CONFIG_MAC80211 is not set | 385 | # CONFIG_MAC80211 is not set |
379 | # CONFIG_IEEE80211 is not set | 386 | # CONFIG_WIMAX is not set |
380 | # CONFIG_RFKILL is not set | 387 | # CONFIG_RFKILL is not set |
381 | # CONFIG_NET_9P is not set | 388 | # CONFIG_NET_9P is not set |
382 | 389 | ||
@@ -401,6 +408,7 @@ CONFIG_MTD=y | |||
401 | # CONFIG_MTD_DEBUG is not set | 408 | # CONFIG_MTD_DEBUG is not set |
402 | # CONFIG_MTD_CONCAT is not set | 409 | # CONFIG_MTD_CONCAT is not set |
403 | CONFIG_MTD_PARTITIONS=y | 410 | CONFIG_MTD_PARTITIONS=y |
411 | # CONFIG_MTD_TESTS is not set | ||
404 | # CONFIG_MTD_REDBOOT_PARTS is not set | 412 | # CONFIG_MTD_REDBOOT_PARTS is not set |
405 | CONFIG_MTD_CMDLINE_PARTS=y | 413 | CONFIG_MTD_CMDLINE_PARTS=y |
406 | # CONFIG_MTD_OF_PARTS is not set | 414 | # CONFIG_MTD_OF_PARTS is not set |
@@ -481,6 +489,12 @@ CONFIG_MTD_NAND_FSL_ELBC=y | |||
481 | # CONFIG_MTD_ONENAND is not set | 489 | # CONFIG_MTD_ONENAND is not set |
482 | 490 | ||
483 | # | 491 | # |
492 | # LPDDR flash memory drivers | ||
493 | # | ||
494 | # CONFIG_MTD_LPDDR is not set | ||
495 | # CONFIG_MTD_QINFO_PROBE is not set | ||
496 | |||
497 | # | ||
484 | # UBI - Unsorted block images | 498 | # UBI - Unsorted block images |
485 | # | 499 | # |
486 | # CONFIG_MTD_UBI is not set | 500 | # CONFIG_MTD_UBI is not set |
@@ -510,8 +524,10 @@ CONFIG_MISC_DEVICES=y | |||
510 | # CONFIG_EEPROM_93CX6 is not set | 524 | # CONFIG_EEPROM_93CX6 is not set |
511 | # CONFIG_SGI_IOC4 is not set | 525 | # CONFIG_SGI_IOC4 is not set |
512 | # CONFIG_TIFM_CORE is not set | 526 | # CONFIG_TIFM_CORE is not set |
527 | # CONFIG_ICS932S401 is not set | ||
513 | # CONFIG_ENCLOSURE_SERVICES is not set | 528 | # CONFIG_ENCLOSURE_SERVICES is not set |
514 | # CONFIG_HP_ILO is not set | 529 | # CONFIG_HP_ILO is not set |
530 | # CONFIG_C2PORT is not set | ||
515 | CONFIG_HAVE_IDE=y | 531 | CONFIG_HAVE_IDE=y |
516 | CONFIG_IDE=y | 532 | CONFIG_IDE=y |
517 | 533 | ||
@@ -524,7 +540,6 @@ CONFIG_IDE_GD_ATA=y | |||
524 | # CONFIG_IDE_GD_ATAPI is not set | 540 | # CONFIG_IDE_GD_ATAPI is not set |
525 | # CONFIG_BLK_DEV_IDECD is not set | 541 | # CONFIG_BLK_DEV_IDECD is not set |
526 | # CONFIG_BLK_DEV_IDETAPE is not set | 542 | # CONFIG_BLK_DEV_IDETAPE is not set |
527 | # CONFIG_BLK_DEV_IDESCSI is not set | ||
528 | # CONFIG_IDE_TASK_IOCTL is not set | 543 | # CONFIG_IDE_TASK_IOCTL is not set |
529 | CONFIG_IDE_PROC_FS=y | 544 | CONFIG_IDE_PROC_FS=y |
530 | 545 | ||
@@ -549,6 +564,7 @@ CONFIG_IDE_PROC_FS=y | |||
549 | # CONFIG_BLK_DEV_JMICRON is not set | 564 | # CONFIG_BLK_DEV_JMICRON is not set |
550 | # CONFIG_BLK_DEV_SC1200 is not set | 565 | # CONFIG_BLK_DEV_SC1200 is not set |
551 | # CONFIG_BLK_DEV_PIIX is not set | 566 | # CONFIG_BLK_DEV_PIIX is not set |
567 | # CONFIG_BLK_DEV_IT8172 is not set | ||
552 | # CONFIG_BLK_DEV_IT8213 is not set | 568 | # CONFIG_BLK_DEV_IT8213 is not set |
553 | # CONFIG_BLK_DEV_IT821X is not set | 569 | # CONFIG_BLK_DEV_IT821X is not set |
554 | # CONFIG_BLK_DEV_NS87415 is not set | 570 | # CONFIG_BLK_DEV_NS87415 is not set |
@@ -618,6 +634,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
618 | # CONFIG_MEGARAID_SAS is not set | 634 | # CONFIG_MEGARAID_SAS is not set |
619 | # CONFIG_SCSI_HPTIOP is not set | 635 | # CONFIG_SCSI_HPTIOP is not set |
620 | # CONFIG_SCSI_BUSLOGIC is not set | 636 | # CONFIG_SCSI_BUSLOGIC is not set |
637 | # CONFIG_LIBFC is not set | ||
638 | # CONFIG_FCOE is not set | ||
621 | # CONFIG_SCSI_DMX3191D is not set | 639 | # CONFIG_SCSI_DMX3191D is not set |
622 | # CONFIG_SCSI_EATA is not set | 640 | # CONFIG_SCSI_EATA is not set |
623 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 641 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -757,6 +775,10 @@ CONFIG_ULI526X=y | |||
757 | # CONFIG_WLAN_PRE80211 is not set | 775 | # CONFIG_WLAN_PRE80211 is not set |
758 | # CONFIG_WLAN_80211 is not set | 776 | # CONFIG_WLAN_80211 is not set |
759 | # CONFIG_IWLWIFI_LEDS is not set | 777 | # CONFIG_IWLWIFI_LEDS is not set |
778 | |||
779 | # | ||
780 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
781 | # | ||
760 | # CONFIG_WAN is not set | 782 | # CONFIG_WAN is not set |
761 | # CONFIG_FDDI is not set | 783 | # CONFIG_FDDI is not set |
762 | # CONFIG_HIPPI is not set | 784 | # CONFIG_HIPPI is not set |
@@ -841,7 +863,9 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
841 | # CONFIG_SERIAL_JSM is not set | 863 | # CONFIG_SERIAL_JSM is not set |
842 | # CONFIG_SERIAL_OF_PLATFORM is not set | 864 | # CONFIG_SERIAL_OF_PLATFORM is not set |
843 | CONFIG_UNIX98_PTYS=y | 865 | CONFIG_UNIX98_PTYS=y |
866 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
844 | # CONFIG_LEGACY_PTYS is not set | 867 | # CONFIG_LEGACY_PTYS is not set |
868 | # CONFIG_HVC_UDBG is not set | ||
845 | # CONFIG_IPMI_HANDLER is not set | 869 | # CONFIG_IPMI_HANDLER is not set |
846 | # CONFIG_HW_RANDOM is not set | 870 | # CONFIG_HW_RANDOM is not set |
847 | # CONFIG_NVRAM is not set | 871 | # CONFIG_NVRAM is not set |
@@ -926,11 +950,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
926 | # CONFIG_THERMAL is not set | 950 | # CONFIG_THERMAL is not set |
927 | # CONFIG_THERMAL_HWMON is not set | 951 | # CONFIG_THERMAL_HWMON is not set |
928 | # CONFIG_WATCHDOG is not set | 952 | # CONFIG_WATCHDOG is not set |
953 | CONFIG_SSB_POSSIBLE=y | ||
929 | 954 | ||
930 | # | 955 | # |
931 | # Sonics Silicon Backplane | 956 | # Sonics Silicon Backplane |
932 | # | 957 | # |
933 | CONFIG_SSB_POSSIBLE=y | ||
934 | # CONFIG_SSB is not set | 958 | # CONFIG_SSB is not set |
935 | 959 | ||
936 | # | 960 | # |
@@ -939,18 +963,13 @@ CONFIG_SSB_POSSIBLE=y | |||
939 | # CONFIG_MFD_CORE is not set | 963 | # CONFIG_MFD_CORE is not set |
940 | # CONFIG_MFD_SM501 is not set | 964 | # CONFIG_MFD_SM501 is not set |
941 | # CONFIG_HTC_PASIC3 is not set | 965 | # CONFIG_HTC_PASIC3 is not set |
966 | # CONFIG_TWL4030_CORE is not set | ||
942 | # CONFIG_MFD_TMIO is not set | 967 | # CONFIG_MFD_TMIO is not set |
943 | # CONFIG_PMIC_DA903X is not set | 968 | # CONFIG_PMIC_DA903X is not set |
944 | # CONFIG_MFD_WM8400 is not set | 969 | # CONFIG_MFD_WM8400 is not set |
945 | # CONFIG_MFD_WM8350_I2C is not set | 970 | # CONFIG_MFD_WM8350_I2C is not set |
946 | 971 | # CONFIG_MFD_PCF50633 is not set | |
947 | # | ||
948 | # Voltage and Current regulators | ||
949 | # | ||
950 | # CONFIG_REGULATOR is not set | 972 | # CONFIG_REGULATOR is not set |
951 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
952 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
953 | # CONFIG_REGULATOR_BQ24022 is not set | ||
954 | 973 | ||
955 | # | 974 | # |
956 | # Multimedia devices | 975 | # Multimedia devices |
@@ -1029,6 +1048,7 @@ CONFIG_FB_FSL_DIU=y | |||
1029 | # CONFIG_FB_IBM_GXT4500 is not set | 1048 | # CONFIG_FB_IBM_GXT4500 is not set |
1030 | # CONFIG_FB_VIRTUAL is not set | 1049 | # CONFIG_FB_VIRTUAL is not set |
1031 | # CONFIG_FB_METRONOME is not set | 1050 | # CONFIG_FB_METRONOME is not set |
1051 | # CONFIG_FB_MB862XX is not set | ||
1032 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 1052 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
1033 | 1053 | ||
1034 | # | 1054 | # |
@@ -1054,6 +1074,7 @@ CONFIG_SND_OSSEMUL=y | |||
1054 | CONFIG_SND_MIXER_OSS=y | 1074 | CONFIG_SND_MIXER_OSS=y |
1055 | CONFIG_SND_PCM_OSS=y | 1075 | CONFIG_SND_PCM_OSS=y |
1056 | CONFIG_SND_PCM_OSS_PLUGINS=y | 1076 | CONFIG_SND_PCM_OSS_PLUGINS=y |
1077 | # CONFIG_SND_HRTIMER is not set | ||
1057 | # CONFIG_SND_DYNAMIC_MINORS is not set | 1078 | # CONFIG_SND_DYNAMIC_MINORS is not set |
1058 | # CONFIG_SND_SUPPORT_OLD_API is not set | 1079 | # CONFIG_SND_SUPPORT_OLD_API is not set |
1059 | CONFIG_SND_VERBOSE_PROCFS=y | 1080 | CONFIG_SND_VERBOSE_PROCFS=y |
@@ -1130,6 +1151,7 @@ CONFIG_SND_PPC=y | |||
1130 | CONFIG_SND_SOC=y | 1151 | CONFIG_SND_SOC=y |
1131 | CONFIG_SND_SOC_MPC8610=y | 1152 | CONFIG_SND_SOC_MPC8610=y |
1132 | CONFIG_SND_SOC_MPC8610_HPCD=y | 1153 | CONFIG_SND_SOC_MPC8610_HPCD=y |
1154 | CONFIG_SND_SOC_I2C_AND_SPI=y | ||
1133 | # CONFIG_SND_SOC_ALL_CODECS is not set | 1155 | # CONFIG_SND_SOC_ALL_CODECS is not set |
1134 | CONFIG_SND_SOC_CS4270=y | 1156 | CONFIG_SND_SOC_CS4270=y |
1135 | CONFIG_SND_SOC_CS4270_VD33_ERRATA=y | 1157 | CONFIG_SND_SOC_CS4270_VD33_ERRATA=y |
@@ -1157,9 +1179,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
1157 | # | 1179 | # |
1158 | 1180 | ||
1159 | # | 1181 | # |
1160 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1182 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1161 | # | 1183 | # |
1162 | # CONFIG_USB_GADGET is not set | 1184 | # CONFIG_USB_GADGET is not set |
1185 | |||
1186 | # | ||
1187 | # OTG and related infrastructure | ||
1188 | # | ||
1163 | # CONFIG_UWB is not set | 1189 | # CONFIG_UWB is not set |
1164 | # CONFIG_MMC is not set | 1190 | # CONFIG_MMC is not set |
1165 | # CONFIG_MEMSTICK is not set | 1191 | # CONFIG_MEMSTICK is not set |
@@ -1197,6 +1223,7 @@ CONFIG_RTC_INTF_DEV=y | |||
1197 | # CONFIG_RTC_DRV_M41T80 is not set | 1223 | # CONFIG_RTC_DRV_M41T80 is not set |
1198 | # CONFIG_RTC_DRV_S35390A is not set | 1224 | # CONFIG_RTC_DRV_S35390A is not set |
1199 | # CONFIG_RTC_DRV_FM3130 is not set | 1225 | # CONFIG_RTC_DRV_FM3130 is not set |
1226 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1200 | 1227 | ||
1201 | # | 1228 | # |
1202 | # SPI RTC drivers | 1229 | # SPI RTC drivers |
@@ -1244,6 +1271,7 @@ CONFIG_FS_MBCACHE=y | |||
1244 | CONFIG_FILE_LOCKING=y | 1271 | CONFIG_FILE_LOCKING=y |
1245 | # CONFIG_XFS_FS is not set | 1272 | # CONFIG_XFS_FS is not set |
1246 | # CONFIG_OCFS2_FS is not set | 1273 | # CONFIG_OCFS2_FS is not set |
1274 | # CONFIG_BTRFS_FS is not set | ||
1247 | # CONFIG_DNOTIFY is not set | 1275 | # CONFIG_DNOTIFY is not set |
1248 | # CONFIG_INOTIFY is not set | 1276 | # CONFIG_INOTIFY is not set |
1249 | # CONFIG_QUOTA is not set | 1277 | # CONFIG_QUOTA is not set |
@@ -1276,10 +1304,7 @@ CONFIG_TMPFS=y | |||
1276 | # CONFIG_TMPFS_POSIX_ACL is not set | 1304 | # CONFIG_TMPFS_POSIX_ACL is not set |
1277 | # CONFIG_HUGETLB_PAGE is not set | 1305 | # CONFIG_HUGETLB_PAGE is not set |
1278 | # CONFIG_CONFIGFS_FS is not set | 1306 | # CONFIG_CONFIGFS_FS is not set |
1279 | 1307 | CONFIG_MISC_FILESYSTEMS=y | |
1280 | # | ||
1281 | # Miscellaneous filesystems | ||
1282 | # | ||
1283 | # CONFIG_ADFS_FS is not set | 1308 | # CONFIG_ADFS_FS is not set |
1284 | # CONFIG_AFFS_FS is not set | 1309 | # CONFIG_AFFS_FS is not set |
1285 | # CONFIG_HFS_FS is not set | 1310 | # CONFIG_HFS_FS is not set |
@@ -1289,6 +1314,7 @@ CONFIG_TMPFS=y | |||
1289 | # CONFIG_EFS_FS is not set | 1314 | # CONFIG_EFS_FS is not set |
1290 | # CONFIG_JFFS2_FS is not set | 1315 | # CONFIG_JFFS2_FS is not set |
1291 | # CONFIG_CRAMFS is not set | 1316 | # CONFIG_CRAMFS is not set |
1317 | # CONFIG_SQUASHFS is not set | ||
1292 | # CONFIG_VXFS_FS is not set | 1318 | # CONFIG_VXFS_FS is not set |
1293 | # CONFIG_MINIX_FS is not set | 1319 | # CONFIG_MINIX_FS is not set |
1294 | # CONFIG_OMFS_FS is not set | 1320 | # CONFIG_OMFS_FS is not set |
@@ -1388,6 +1414,7 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
1388 | # Library routines | 1414 | # Library routines |
1389 | # | 1415 | # |
1390 | CONFIG_BITREVERSE=y | 1416 | CONFIG_BITREVERSE=y |
1417 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1391 | # CONFIG_CRC_CCITT is not set | 1418 | # CONFIG_CRC_CCITT is not set |
1392 | # CONFIG_CRC16 is not set | 1419 | # CONFIG_CRC16 is not set |
1393 | CONFIG_CRC_T10DIF=y | 1420 | CONFIG_CRC_T10DIF=y |
@@ -1438,6 +1465,7 @@ CONFIG_DEBUG_INFO=y | |||
1438 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1465 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1439 | # CONFIG_DEBUG_LIST is not set | 1466 | # CONFIG_DEBUG_LIST is not set |
1440 | # CONFIG_DEBUG_SG is not set | 1467 | # CONFIG_DEBUG_SG is not set |
1468 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1441 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1469 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1442 | # CONFIG_RCU_TORTURE_TEST is not set | 1470 | # CONFIG_RCU_TORTURE_TEST is not set |
1443 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1471 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1447,6 +1475,8 @@ CONFIG_DEBUG_INFO=y | |||
1447 | # CONFIG_LATENCYTOP is not set | 1475 | # CONFIG_LATENCYTOP is not set |
1448 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1476 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1449 | CONFIG_HAVE_FUNCTION_TRACER=y | 1477 | CONFIG_HAVE_FUNCTION_TRACER=y |
1478 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1479 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1450 | 1480 | ||
1451 | # | 1481 | # |
1452 | # Tracers | 1482 | # Tracers |
@@ -1455,11 +1485,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1455 | # CONFIG_SCHED_TRACER is not set | 1485 | # CONFIG_SCHED_TRACER is not set |
1456 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1486 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1457 | # CONFIG_BOOT_TRACER is not set | 1487 | # CONFIG_BOOT_TRACER is not set |
1488 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1458 | # CONFIG_STACK_TRACER is not set | 1489 | # CONFIG_STACK_TRACER is not set |
1459 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1490 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1460 | # CONFIG_SAMPLES is not set | 1491 | # CONFIG_SAMPLES is not set |
1461 | CONFIG_HAVE_ARCH_KGDB=y | 1492 | CONFIG_HAVE_ARCH_KGDB=y |
1462 | # CONFIG_KGDB is not set | 1493 | # CONFIG_KGDB is not set |
1494 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1463 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1495 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1464 | # CONFIG_DEBUG_STACK_USAGE is not set | 1496 | # CONFIG_DEBUG_STACK_USAGE is not set |
1465 | # CONFIG_DEBUG_PAGEALLOC is not set | 1497 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1486,6 +1518,7 @@ CONFIG_CRYPTO=y | |||
1486 | # | 1518 | # |
1487 | # CONFIG_CRYPTO_FIPS is not set | 1519 | # CONFIG_CRYPTO_FIPS is not set |
1488 | # CONFIG_CRYPTO_MANAGER is not set | 1520 | # CONFIG_CRYPTO_MANAGER is not set |
1521 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
1489 | # CONFIG_CRYPTO_GF128MUL is not set | 1522 | # CONFIG_CRYPTO_GF128MUL is not set |
1490 | # CONFIG_CRYPTO_NULL is not set | 1523 | # CONFIG_CRYPTO_NULL is not set |
1491 | # CONFIG_CRYPTO_CRYPTD is not set | 1524 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/86xx/mpc8641_hpcn_defconfig b/arch/powerpc/configs/86xx/mpc8641_hpcn_defconfig index 8e0f0e5180a4..92acfdf3540a 100644 --- a/arch/powerpc/configs/86xx/mpc8641_hpcn_defconfig +++ b/arch/powerpc/configs/86xx/mpc8641_hpcn_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:29 2008 | 4 | # Mon Jan 26 15:36:25 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -45,7 +45,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
45 | CONFIG_PPC=y | 45 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 46 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 47 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 48 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 50 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 51 | CONFIG_OF=y |
@@ -78,12 +78,12 @@ CONFIG_AUDIT=y | |||
78 | CONFIG_IKCONFIG=y | 78 | CONFIG_IKCONFIG=y |
79 | CONFIG_IKCONFIG_PROC=y | 79 | CONFIG_IKCONFIG_PROC=y |
80 | CONFIG_LOG_BUF_SHIFT=14 | 80 | CONFIG_LOG_BUF_SHIFT=14 |
81 | # CONFIG_CGROUPS is not set | ||
82 | CONFIG_GROUP_SCHED=y | 81 | CONFIG_GROUP_SCHED=y |
83 | # CONFIG_FAIR_GROUP_SCHED is not set | 82 | # CONFIG_FAIR_GROUP_SCHED is not set |
84 | # CONFIG_RT_GROUP_SCHED is not set | 83 | # CONFIG_RT_GROUP_SCHED is not set |
85 | CONFIG_USER_SCHED=y | 84 | CONFIG_USER_SCHED=y |
86 | # CONFIG_CGROUP_SCHED is not set | 85 | # CONFIG_CGROUP_SCHED is not set |
86 | # CONFIG_CGROUPS is not set | ||
87 | CONFIG_SYSFS_DEPRECATED=y | 87 | CONFIG_SYSFS_DEPRECATED=y |
88 | CONFIG_SYSFS_DEPRECATED_V2=y | 88 | CONFIG_SYSFS_DEPRECATED_V2=y |
89 | # CONFIG_RELAY is not set | 89 | # CONFIG_RELAY is not set |
@@ -96,6 +96,7 @@ CONFIG_EMBEDDED=y | |||
96 | CONFIG_SYSCTL_SYSCALL=y | 96 | CONFIG_SYSCTL_SYSCALL=y |
97 | CONFIG_KALLSYMS=y | 97 | CONFIG_KALLSYMS=y |
98 | CONFIG_KALLSYMS_ALL=y | 98 | CONFIG_KALLSYMS_ALL=y |
99 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
99 | CONFIG_KALLSYMS_EXTRA_PASS=y | 100 | CONFIG_KALLSYMS_EXTRA_PASS=y |
100 | CONFIG_HOTPLUG=y | 101 | CONFIG_HOTPLUG=y |
101 | CONFIG_PRINTK=y | 102 | CONFIG_PRINTK=y |
@@ -118,7 +119,6 @@ CONFIG_SLUB_DEBUG=y | |||
118 | CONFIG_SLUB=y | 119 | CONFIG_SLUB=y |
119 | # CONFIG_SLOB is not set | 120 | # CONFIG_SLOB is not set |
120 | # CONFIG_PROFILING is not set | 121 | # CONFIG_PROFILING is not set |
121 | # CONFIG_MARKERS is not set | ||
122 | CONFIG_HAVE_OPROFILE=y | 122 | CONFIG_HAVE_OPROFILE=y |
123 | # CONFIG_KPROBES is not set | 123 | # CONFIG_KPROBES is not set |
124 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 124 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -130,7 +130,6 @@ CONFIG_USE_GENERIC_SMP_HELPERS=y | |||
130 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 130 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
131 | CONFIG_SLABINFO=y | 131 | CONFIG_SLABINFO=y |
132 | CONFIG_RT_MUTEXES=y | 132 | CONFIG_RT_MUTEXES=y |
133 | # CONFIG_TINY_SHMEM is not set | ||
134 | CONFIG_BASE_SMALL=0 | 133 | CONFIG_BASE_SMALL=0 |
135 | CONFIG_MODULES=y | 134 | CONFIG_MODULES=y |
136 | # CONFIG_MODULE_FORCE_LOAD is not set | 135 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -138,12 +137,10 @@ CONFIG_MODULE_UNLOAD=y | |||
138 | CONFIG_MODULE_FORCE_UNLOAD=y | 137 | CONFIG_MODULE_FORCE_UNLOAD=y |
139 | CONFIG_MODVERSIONS=y | 138 | CONFIG_MODVERSIONS=y |
140 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 139 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
141 | CONFIG_KMOD=y | ||
142 | CONFIG_STOP_MACHINE=y | 140 | CONFIG_STOP_MACHINE=y |
143 | CONFIG_BLOCK=y | 141 | CONFIG_BLOCK=y |
144 | CONFIG_LBD=y | 142 | CONFIG_LBD=y |
145 | # CONFIG_BLK_DEV_IO_TRACE is not set | 143 | # CONFIG_BLK_DEV_IO_TRACE is not set |
146 | # CONFIG_LSF is not set | ||
147 | # CONFIG_BLK_DEV_BSG is not set | 144 | # CONFIG_BLK_DEV_BSG is not set |
148 | # CONFIG_BLK_DEV_INTEGRITY is not set | 145 | # CONFIG_BLK_DEV_INTEGRITY is not set |
149 | 146 | ||
@@ -160,6 +157,10 @@ CONFIG_DEFAULT_CFQ=y | |||
160 | # CONFIG_DEFAULT_NOOP is not set | 157 | # CONFIG_DEFAULT_NOOP is not set |
161 | CONFIG_DEFAULT_IOSCHED="cfq" | 158 | CONFIG_DEFAULT_IOSCHED="cfq" |
162 | CONFIG_CLASSIC_RCU=y | 159 | CONFIG_CLASSIC_RCU=y |
160 | # CONFIG_TREE_RCU is not set | ||
161 | # CONFIG_PREEMPT_RCU is not set | ||
162 | # CONFIG_TREE_RCU_TRACE is not set | ||
163 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
163 | # CONFIG_FREEZER is not set | 164 | # CONFIG_FREEZER is not set |
164 | 165 | ||
165 | # | 166 | # |
@@ -198,6 +199,7 @@ CONFIG_PPC_I8259=y | |||
198 | # CONFIG_QUICC_ENGINE is not set | 199 | # CONFIG_QUICC_ENGINE is not set |
199 | CONFIG_FSL_ULI1575=y | 200 | CONFIG_FSL_ULI1575=y |
200 | # CONFIG_MPC8xxx_GPIO is not set | 201 | # CONFIG_MPC8xxx_GPIO is not set |
202 | # CONFIG_SIMPLE_GPIO is not set | ||
201 | 203 | ||
202 | # | 204 | # |
203 | # Kernel options | 205 | # Kernel options |
@@ -225,6 +227,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
225 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 227 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
226 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 228 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
227 | # CONFIG_KEXEC is not set | 229 | # CONFIG_KEXEC is not set |
230 | # CONFIG_CRASH_DUMP is not set | ||
228 | # CONFIG_IRQ_ALL_CPUS is not set | 231 | # CONFIG_IRQ_ALL_CPUS is not set |
229 | CONFIG_ARCH_FLATMEM_ENABLE=y | 232 | CONFIG_ARCH_FLATMEM_ENABLE=y |
230 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 233 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
@@ -237,12 +240,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
237 | CONFIG_PAGEFLAGS_EXTENDED=y | 240 | CONFIG_PAGEFLAGS_EXTENDED=y |
238 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 241 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
239 | CONFIG_MIGRATION=y | 242 | CONFIG_MIGRATION=y |
240 | # CONFIG_RESOURCES_64BIT is not set | ||
241 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 243 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
242 | CONFIG_ZONE_DMA_FLAG=1 | 244 | CONFIG_ZONE_DMA_FLAG=1 |
243 | CONFIG_BOUNCE=y | 245 | CONFIG_BOUNCE=y |
244 | CONFIG_VIRT_TO_BUS=y | 246 | CONFIG_VIRT_TO_BUS=y |
245 | CONFIG_UNEVICTABLE_LRU=y | 247 | CONFIG_UNEVICTABLE_LRU=y |
248 | CONFIG_PPC_4K_PAGES=y | ||
249 | # CONFIG_PPC_16K_PAGES is not set | ||
250 | # CONFIG_PPC_64K_PAGES is not set | ||
246 | CONFIG_FORCE_MAX_ZONEORDER=11 | 251 | CONFIG_FORCE_MAX_ZONEORDER=11 |
247 | CONFIG_PROC_DEVICETREE=y | 252 | CONFIG_PROC_DEVICETREE=y |
248 | # CONFIG_CMDLINE_BOOL is not set | 253 | # CONFIG_CMDLINE_BOOL is not set |
@@ -268,6 +273,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
268 | # CONFIG_PCI_MSI is not set | 273 | # CONFIG_PCI_MSI is not set |
269 | # CONFIG_PCI_LEGACY is not set | 274 | # CONFIG_PCI_LEGACY is not set |
270 | # CONFIG_PCI_DEBUG is not set | 275 | # CONFIG_PCI_DEBUG is not set |
276 | # CONFIG_PCI_STUB is not set | ||
271 | # CONFIG_PCCARD is not set | 277 | # CONFIG_PCCARD is not set |
272 | # CONFIG_HOTPLUG_PCI is not set | 278 | # CONFIG_HOTPLUG_PCI is not set |
273 | CONFIG_HAS_RAPIDIO=y | 279 | CONFIG_HAS_RAPIDIO=y |
@@ -291,6 +297,7 @@ CONFIG_NET=y | |||
291 | # | 297 | # |
292 | # Networking options | 298 | # Networking options |
293 | # | 299 | # |
300 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
294 | CONFIG_PACKET=y | 301 | CONFIG_PACKET=y |
295 | # CONFIG_PACKET_MMAP is not set | 302 | # CONFIG_PACKET_MMAP is not set |
296 | CONFIG_UNIX=y | 303 | CONFIG_UNIX=y |
@@ -379,6 +386,7 @@ CONFIG_SCTP_HMAC_MD5=y | |||
379 | # CONFIG_ECONET is not set | 386 | # CONFIG_ECONET is not set |
380 | # CONFIG_WAN_ROUTER is not set | 387 | # CONFIG_WAN_ROUTER is not set |
381 | # CONFIG_NET_SCHED is not set | 388 | # CONFIG_NET_SCHED is not set |
389 | # CONFIG_DCB is not set | ||
382 | 390 | ||
383 | # | 391 | # |
384 | # Network testing | 392 | # Network testing |
@@ -395,8 +403,9 @@ CONFIG_WIRELESS=y | |||
395 | # CONFIG_CFG80211 is not set | 403 | # CONFIG_CFG80211 is not set |
396 | CONFIG_WIRELESS_OLD_REGULATORY=y | 404 | CONFIG_WIRELESS_OLD_REGULATORY=y |
397 | # CONFIG_WIRELESS_EXT is not set | 405 | # CONFIG_WIRELESS_EXT is not set |
406 | # CONFIG_LIB80211 is not set | ||
398 | # CONFIG_MAC80211 is not set | 407 | # CONFIG_MAC80211 is not set |
399 | # CONFIG_IEEE80211 is not set | 408 | # CONFIG_WIMAX is not set |
400 | # CONFIG_RFKILL is not set | 409 | # CONFIG_RFKILL is not set |
401 | # CONFIG_NET_9P is not set | 410 | # CONFIG_NET_9P is not set |
402 | 411 | ||
@@ -445,8 +454,10 @@ CONFIG_MISC_DEVICES=y | |||
445 | # CONFIG_EEPROM_93CX6 is not set | 454 | # CONFIG_EEPROM_93CX6 is not set |
446 | # CONFIG_SGI_IOC4 is not set | 455 | # CONFIG_SGI_IOC4 is not set |
447 | # CONFIG_TIFM_CORE is not set | 456 | # CONFIG_TIFM_CORE is not set |
457 | # CONFIG_ICS932S401 is not set | ||
448 | # CONFIG_ENCLOSURE_SERVICES is not set | 458 | # CONFIG_ENCLOSURE_SERVICES is not set |
449 | # CONFIG_HP_ILO is not set | 459 | # CONFIG_HP_ILO is not set |
460 | # CONFIG_C2PORT is not set | ||
450 | CONFIG_HAVE_IDE=y | 461 | CONFIG_HAVE_IDE=y |
451 | # CONFIG_IDE is not set | 462 | # CONFIG_IDE is not set |
452 | 463 | ||
@@ -490,6 +501,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
490 | # CONFIG_SCSI_SRP_ATTRS is not set | 501 | # CONFIG_SCSI_SRP_ATTRS is not set |
491 | CONFIG_SCSI_LOWLEVEL=y | 502 | CONFIG_SCSI_LOWLEVEL=y |
492 | # CONFIG_ISCSI_TCP is not set | 503 | # CONFIG_ISCSI_TCP is not set |
504 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
493 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 505 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
494 | # CONFIG_SCSI_3W_9XXX is not set | 506 | # CONFIG_SCSI_3W_9XXX is not set |
495 | # CONFIG_SCSI_ACARD is not set | 507 | # CONFIG_SCSI_ACARD is not set |
@@ -506,6 +518,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
506 | # CONFIG_MEGARAID_SAS is not set | 518 | # CONFIG_MEGARAID_SAS is not set |
507 | # CONFIG_SCSI_HPTIOP is not set | 519 | # CONFIG_SCSI_HPTIOP is not set |
508 | # CONFIG_SCSI_BUSLOGIC is not set | 520 | # CONFIG_SCSI_BUSLOGIC is not set |
521 | # CONFIG_LIBFC is not set | ||
522 | # CONFIG_FCOE is not set | ||
509 | # CONFIG_SCSI_DMX3191D is not set | 523 | # CONFIG_SCSI_DMX3191D is not set |
510 | # CONFIG_SCSI_EATA is not set | 524 | # CONFIG_SCSI_EATA is not set |
511 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 525 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -625,6 +639,9 @@ CONFIG_VITESSE_PHY=y | |||
625 | # CONFIG_BROADCOM_PHY is not set | 639 | # CONFIG_BROADCOM_PHY is not set |
626 | # CONFIG_ICPLUS_PHY is not set | 640 | # CONFIG_ICPLUS_PHY is not set |
627 | # CONFIG_REALTEK_PHY is not set | 641 | # CONFIG_REALTEK_PHY is not set |
642 | # CONFIG_NATIONAL_PHY is not set | ||
643 | # CONFIG_STE10XP is not set | ||
644 | # CONFIG_LSI_ET1011C_PHY is not set | ||
628 | # CONFIG_FIXED_PHY is not set | 645 | # CONFIG_FIXED_PHY is not set |
629 | # CONFIG_MDIO_BITBANG is not set | 646 | # CONFIG_MDIO_BITBANG is not set |
630 | CONFIG_NET_ETHERNET=y | 647 | CONFIG_NET_ETHERNET=y |
@@ -670,6 +687,7 @@ CONFIG_GIANFAR=y | |||
670 | # CONFIG_JME is not set | 687 | # CONFIG_JME is not set |
671 | CONFIG_NETDEV_10000=y | 688 | CONFIG_NETDEV_10000=y |
672 | # CONFIG_CHELSIO_T1 is not set | 689 | # CONFIG_CHELSIO_T1 is not set |
690 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
673 | # CONFIG_CHELSIO_T3 is not set | 691 | # CONFIG_CHELSIO_T3 is not set |
674 | # CONFIG_ENIC is not set | 692 | # CONFIG_ENIC is not set |
675 | # CONFIG_IXGBE is not set | 693 | # CONFIG_IXGBE is not set |
@@ -694,6 +712,10 @@ CONFIG_NETDEV_10000=y | |||
694 | # CONFIG_IWLWIFI_LEDS is not set | 712 | # CONFIG_IWLWIFI_LEDS is not set |
695 | 713 | ||
696 | # | 714 | # |
715 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
716 | # | ||
717 | |||
718 | # | ||
697 | # USB Network Adapters | 719 | # USB Network Adapters |
698 | # | 720 | # |
699 | # CONFIG_USB_CATC is not set | 721 | # CONFIG_USB_CATC is not set |
@@ -785,8 +807,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
785 | # CONFIG_SERIAL_JSM is not set | 807 | # CONFIG_SERIAL_JSM is not set |
786 | # CONFIG_SERIAL_OF_PLATFORM is not set | 808 | # CONFIG_SERIAL_OF_PLATFORM is not set |
787 | CONFIG_UNIX98_PTYS=y | 809 | CONFIG_UNIX98_PTYS=y |
810 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
788 | CONFIG_LEGACY_PTYS=y | 811 | CONFIG_LEGACY_PTYS=y |
789 | CONFIG_LEGACY_PTY_COUNT=256 | 812 | CONFIG_LEGACY_PTY_COUNT=256 |
813 | # CONFIG_HVC_UDBG is not set | ||
790 | # CONFIG_IPMI_HANDLER is not set | 814 | # CONFIG_IPMI_HANDLER is not set |
791 | # CONFIG_HW_RANDOM is not set | 815 | # CONFIG_HW_RANDOM is not set |
792 | CONFIG_NVRAM=y | 816 | CONFIG_NVRAM=y |
@@ -872,11 +896,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
872 | # CONFIG_THERMAL is not set | 896 | # CONFIG_THERMAL is not set |
873 | # CONFIG_THERMAL_HWMON is not set | 897 | # CONFIG_THERMAL_HWMON is not set |
874 | # CONFIG_WATCHDOG is not set | 898 | # CONFIG_WATCHDOG is not set |
899 | CONFIG_SSB_POSSIBLE=y | ||
875 | 900 | ||
876 | # | 901 | # |
877 | # Sonics Silicon Backplane | 902 | # Sonics Silicon Backplane |
878 | # | 903 | # |
879 | CONFIG_SSB_POSSIBLE=y | ||
880 | # CONFIG_SSB is not set | 904 | # CONFIG_SSB is not set |
881 | 905 | ||
882 | # | 906 | # |
@@ -885,18 +909,13 @@ CONFIG_SSB_POSSIBLE=y | |||
885 | # CONFIG_MFD_CORE is not set | 909 | # CONFIG_MFD_CORE is not set |
886 | # CONFIG_MFD_SM501 is not set | 910 | # CONFIG_MFD_SM501 is not set |
887 | # CONFIG_HTC_PASIC3 is not set | 911 | # CONFIG_HTC_PASIC3 is not set |
912 | # CONFIG_TWL4030_CORE is not set | ||
888 | # CONFIG_MFD_TMIO is not set | 913 | # CONFIG_MFD_TMIO is not set |
889 | # CONFIG_PMIC_DA903X is not set | 914 | # CONFIG_PMIC_DA903X is not set |
890 | # CONFIG_MFD_WM8400 is not set | 915 | # CONFIG_MFD_WM8400 is not set |
891 | # CONFIG_MFD_WM8350_I2C is not set | 916 | # CONFIG_MFD_WM8350_I2C is not set |
892 | 917 | # CONFIG_MFD_PCF50633 is not set | |
893 | # | ||
894 | # Voltage and Current regulators | ||
895 | # | ||
896 | # CONFIG_REGULATOR is not set | 918 | # CONFIG_REGULATOR is not set |
897 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
898 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
899 | # CONFIG_REGULATOR_BQ24022 is not set | ||
900 | 919 | ||
901 | # | 920 | # |
902 | # Multimedia devices | 921 | # Multimedia devices |
@@ -923,6 +942,7 @@ CONFIG_MEDIA_TUNER_TEA5767=m | |||
923 | CONFIG_MEDIA_TUNER_MT20XX=m | 942 | CONFIG_MEDIA_TUNER_MT20XX=m |
924 | CONFIG_MEDIA_TUNER_XC2028=m | 943 | CONFIG_MEDIA_TUNER_XC2028=m |
925 | CONFIG_MEDIA_TUNER_XC5000=m | 944 | CONFIG_MEDIA_TUNER_XC5000=m |
945 | # CONFIG_DVB_DYNAMIC_MINORS is not set | ||
926 | CONFIG_DVB_CAPTURE_DRIVERS=y | 946 | CONFIG_DVB_CAPTURE_DRIVERS=y |
927 | 947 | ||
928 | # | 948 | # |
@@ -968,6 +988,12 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
968 | # CONFIG_DVB_FE_CUSTOMISE is not set | 988 | # CONFIG_DVB_FE_CUSTOMISE is not set |
969 | 989 | ||
970 | # | 990 | # |
991 | # Multistandard (satellite) frontends | ||
992 | # | ||
993 | # CONFIG_DVB_STB0899 is not set | ||
994 | # CONFIG_DVB_STB6100 is not set | ||
995 | |||
996 | # | ||
971 | # DVB-S (satellite) frontends | 997 | # DVB-S (satellite) frontends |
972 | # | 998 | # |
973 | # CONFIG_DVB_CX24110 is not set | 999 | # CONFIG_DVB_CX24110 is not set |
@@ -979,8 +1005,10 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
979 | # CONFIG_DVB_STV0299 is not set | 1005 | # CONFIG_DVB_STV0299 is not set |
980 | # CONFIG_DVB_TDA8083 is not set | 1006 | # CONFIG_DVB_TDA8083 is not set |
981 | # CONFIG_DVB_TDA10086 is not set | 1007 | # CONFIG_DVB_TDA10086 is not set |
1008 | # CONFIG_DVB_TDA8261 is not set | ||
982 | # CONFIG_DVB_VES1X93 is not set | 1009 | # CONFIG_DVB_VES1X93 is not set |
983 | # CONFIG_DVB_TUNER_ITD1000 is not set | 1010 | # CONFIG_DVB_TUNER_ITD1000 is not set |
1011 | # CONFIG_DVB_TUNER_CX24113 is not set | ||
984 | # CONFIG_DVB_TDA826X is not set | 1012 | # CONFIG_DVB_TDA826X is not set |
985 | # CONFIG_DVB_TUA6100 is not set | 1013 | # CONFIG_DVB_TUA6100 is not set |
986 | # CONFIG_DVB_CX24116 is not set | 1014 | # CONFIG_DVB_CX24116 is not set |
@@ -1021,11 +1049,17 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
1021 | # CONFIG_DVB_OR51132 is not set | 1049 | # CONFIG_DVB_OR51132 is not set |
1022 | # CONFIG_DVB_BCM3510 is not set | 1050 | # CONFIG_DVB_BCM3510 is not set |
1023 | # CONFIG_DVB_LGDT330X is not set | 1051 | # CONFIG_DVB_LGDT330X is not set |
1052 | # CONFIG_DVB_LGDT3304 is not set | ||
1024 | # CONFIG_DVB_S5H1409 is not set | 1053 | # CONFIG_DVB_S5H1409 is not set |
1025 | # CONFIG_DVB_AU8522 is not set | 1054 | # CONFIG_DVB_AU8522 is not set |
1026 | # CONFIG_DVB_S5H1411 is not set | 1055 | # CONFIG_DVB_S5H1411 is not set |
1027 | 1056 | ||
1028 | # | 1057 | # |
1058 | # ISDB-T (terrestrial) frontends | ||
1059 | # | ||
1060 | # CONFIG_DVB_S921 is not set | ||
1061 | |||
1062 | # | ||
1029 | # Digital terrestrial only tuners/PLL | 1063 | # Digital terrestrial only tuners/PLL |
1030 | # | 1064 | # |
1031 | # CONFIG_DVB_PLL is not set | 1065 | # CONFIG_DVB_PLL is not set |
@@ -1078,6 +1112,7 @@ CONFIG_SND_OSSEMUL=y | |||
1078 | CONFIG_SND_MIXER_OSS=y | 1112 | CONFIG_SND_MIXER_OSS=y |
1079 | CONFIG_SND_PCM_OSS=y | 1113 | CONFIG_SND_PCM_OSS=y |
1080 | CONFIG_SND_PCM_OSS_PLUGINS=y | 1114 | CONFIG_SND_PCM_OSS_PLUGINS=y |
1115 | # CONFIG_SND_HRTIMER is not set | ||
1081 | # CONFIG_SND_DYNAMIC_MINORS is not set | 1116 | # CONFIG_SND_DYNAMIC_MINORS is not set |
1082 | # CONFIG_SND_SUPPORT_OLD_API is not set | 1117 | # CONFIG_SND_SUPPORT_OLD_API is not set |
1083 | CONFIG_SND_VERBOSE_PROCFS=y | 1118 | CONFIG_SND_VERBOSE_PROCFS=y |
@@ -1180,11 +1215,9 @@ CONFIG_HID_COMPAT=y | |||
1180 | CONFIG_HID_A4TECH=y | 1215 | CONFIG_HID_A4TECH=y |
1181 | CONFIG_HID_APPLE=y | 1216 | CONFIG_HID_APPLE=y |
1182 | CONFIG_HID_BELKIN=y | 1217 | CONFIG_HID_BELKIN=y |
1183 | CONFIG_HID_BRIGHT=y | ||
1184 | CONFIG_HID_CHERRY=y | 1218 | CONFIG_HID_CHERRY=y |
1185 | CONFIG_HID_CHICONY=y | 1219 | CONFIG_HID_CHICONY=y |
1186 | CONFIG_HID_CYPRESS=y | 1220 | CONFIG_HID_CYPRESS=y |
1187 | CONFIG_HID_DELL=y | ||
1188 | CONFIG_HID_EZKEY=y | 1221 | CONFIG_HID_EZKEY=y |
1189 | CONFIG_HID_GYRATION=y | 1222 | CONFIG_HID_GYRATION=y |
1190 | CONFIG_HID_LOGITECH=y | 1223 | CONFIG_HID_LOGITECH=y |
@@ -1192,12 +1225,15 @@ CONFIG_HID_LOGITECH=y | |||
1192 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1225 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
1193 | CONFIG_HID_MICROSOFT=y | 1226 | CONFIG_HID_MICROSOFT=y |
1194 | CONFIG_HID_MONTEREY=y | 1227 | CONFIG_HID_MONTEREY=y |
1228 | # CONFIG_HID_NTRIG is not set | ||
1195 | CONFIG_HID_PANTHERLORD=y | 1229 | CONFIG_HID_PANTHERLORD=y |
1196 | # CONFIG_PANTHERLORD_FF is not set | 1230 | # CONFIG_PANTHERLORD_FF is not set |
1197 | CONFIG_HID_PETALYNX=y | 1231 | CONFIG_HID_PETALYNX=y |
1198 | CONFIG_HID_SAMSUNG=y | 1232 | CONFIG_HID_SAMSUNG=y |
1199 | CONFIG_HID_SONY=y | 1233 | CONFIG_HID_SONY=y |
1200 | CONFIG_HID_SUNPLUS=y | 1234 | CONFIG_HID_SUNPLUS=y |
1235 | # CONFIG_GREENASIA_FF is not set | ||
1236 | # CONFIG_HID_TOPSEED is not set | ||
1201 | CONFIG_THRUSTMASTER_FF=m | 1237 | CONFIG_THRUSTMASTER_FF=m |
1202 | CONFIG_ZEROPLUS_FF=m | 1238 | CONFIG_ZEROPLUS_FF=m |
1203 | CONFIG_USB_SUPPORT=y | 1239 | CONFIG_USB_SUPPORT=y |
@@ -1230,6 +1266,7 @@ CONFIG_USB_EHCI_HCD=y | |||
1230 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1266 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1231 | # CONFIG_USB_EHCI_FSL is not set | 1267 | # CONFIG_USB_EHCI_FSL is not set |
1232 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1268 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1269 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1233 | # CONFIG_USB_ISP116X_HCD is not set | 1270 | # CONFIG_USB_ISP116X_HCD is not set |
1234 | # CONFIG_USB_ISP1760_HCD is not set | 1271 | # CONFIG_USB_ISP1760_HCD is not set |
1235 | CONFIG_USB_OHCI_HCD=y | 1272 | CONFIG_USB_OHCI_HCD=y |
@@ -1255,18 +1292,17 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
1255 | # CONFIG_USB_TMC is not set | 1292 | # CONFIG_USB_TMC is not set |
1256 | 1293 | ||
1257 | # | 1294 | # |
1258 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1295 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1259 | # | 1296 | # |
1260 | 1297 | ||
1261 | # | 1298 | # |
1262 | # may also be needed; see USB_STORAGE Help for more information | 1299 | # see USB_STORAGE Help for more information |
1263 | # | 1300 | # |
1264 | CONFIG_USB_STORAGE=y | 1301 | CONFIG_USB_STORAGE=y |
1265 | # CONFIG_USB_STORAGE_DEBUG is not set | 1302 | # CONFIG_USB_STORAGE_DEBUG is not set |
1266 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1303 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1267 | # CONFIG_USB_STORAGE_FREECOM is not set | 1304 | # CONFIG_USB_STORAGE_FREECOM is not set |
1268 | # CONFIG_USB_STORAGE_ISD200 is not set | 1305 | # CONFIG_USB_STORAGE_ISD200 is not set |
1269 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1270 | # CONFIG_USB_STORAGE_USBAT is not set | 1306 | # CONFIG_USB_STORAGE_USBAT is not set |
1271 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1307 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1272 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1308 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1314,6 +1350,10 @@ CONFIG_USB_STORAGE=y | |||
1314 | # CONFIG_USB_ISIGHTFW is not set | 1350 | # CONFIG_USB_ISIGHTFW is not set |
1315 | # CONFIG_USB_VST is not set | 1351 | # CONFIG_USB_VST is not set |
1316 | # CONFIG_USB_GADGET is not set | 1352 | # CONFIG_USB_GADGET is not set |
1353 | |||
1354 | # | ||
1355 | # OTG and related infrastructure | ||
1356 | # | ||
1317 | # CONFIG_UWB is not set | 1357 | # CONFIG_UWB is not set |
1318 | # CONFIG_MMC is not set | 1358 | # CONFIG_MMC is not set |
1319 | # CONFIG_MEMSTICK is not set | 1359 | # CONFIG_MEMSTICK is not set |
@@ -1351,6 +1391,7 @@ CONFIG_RTC_INTF_DEV=y | |||
1351 | # CONFIG_RTC_DRV_M41T80 is not set | 1391 | # CONFIG_RTC_DRV_M41T80 is not set |
1352 | # CONFIG_RTC_DRV_S35390A is not set | 1392 | # CONFIG_RTC_DRV_S35390A is not set |
1353 | # CONFIG_RTC_DRV_FM3130 is not set | 1393 | # CONFIG_RTC_DRV_FM3130 is not set |
1394 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1354 | 1395 | ||
1355 | # | 1396 | # |
1356 | # SPI RTC drivers | 1397 | # SPI RTC drivers |
@@ -1397,7 +1438,9 @@ CONFIG_FS_MBCACHE=y | |||
1397 | # CONFIG_FS_POSIX_ACL is not set | 1438 | # CONFIG_FS_POSIX_ACL is not set |
1398 | CONFIG_FILE_LOCKING=y | 1439 | CONFIG_FILE_LOCKING=y |
1399 | # CONFIG_XFS_FS is not set | 1440 | # CONFIG_XFS_FS is not set |
1441 | # CONFIG_GFS2_FS is not set | ||
1400 | # CONFIG_OCFS2_FS is not set | 1442 | # CONFIG_OCFS2_FS is not set |
1443 | # CONFIG_BTRFS_FS is not set | ||
1401 | CONFIG_DNOTIFY=y | 1444 | CONFIG_DNOTIFY=y |
1402 | CONFIG_INOTIFY=y | 1445 | CONFIG_INOTIFY=y |
1403 | CONFIG_INOTIFY_USER=y | 1446 | CONFIG_INOTIFY_USER=y |
@@ -1439,10 +1482,7 @@ CONFIG_TMPFS=y | |||
1439 | # CONFIG_TMPFS_POSIX_ACL is not set | 1482 | # CONFIG_TMPFS_POSIX_ACL is not set |
1440 | # CONFIG_HUGETLB_PAGE is not set | 1483 | # CONFIG_HUGETLB_PAGE is not set |
1441 | # CONFIG_CONFIGFS_FS is not set | 1484 | # CONFIG_CONFIGFS_FS is not set |
1442 | 1485 | CONFIG_MISC_FILESYSTEMS=y | |
1443 | # | ||
1444 | # Miscellaneous filesystems | ||
1445 | # | ||
1446 | CONFIG_ADFS_FS=m | 1486 | CONFIG_ADFS_FS=m |
1447 | # CONFIG_ADFS_FS_RW is not set | 1487 | # CONFIG_ADFS_FS_RW is not set |
1448 | CONFIG_AFFS_FS=m | 1488 | CONFIG_AFFS_FS=m |
@@ -1453,6 +1493,7 @@ CONFIG_BEFS_FS=m | |||
1453 | CONFIG_BFS_FS=m | 1493 | CONFIG_BFS_FS=m |
1454 | CONFIG_EFS_FS=m | 1494 | CONFIG_EFS_FS=m |
1455 | CONFIG_CRAMFS=y | 1495 | CONFIG_CRAMFS=y |
1496 | # CONFIG_SQUASHFS is not set | ||
1456 | CONFIG_VXFS_FS=m | 1497 | CONFIG_VXFS_FS=m |
1457 | # CONFIG_MINIX_FS is not set | 1498 | # CONFIG_MINIX_FS is not set |
1458 | # CONFIG_OMFS_FS is not set | 1499 | # CONFIG_OMFS_FS is not set |
@@ -1554,6 +1595,7 @@ CONFIG_NLS_UTF8=m | |||
1554 | # Library routines | 1595 | # Library routines |
1555 | # | 1596 | # |
1556 | CONFIG_BITREVERSE=y | 1597 | CONFIG_BITREVERSE=y |
1598 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1557 | # CONFIG_CRC_CCITT is not set | 1599 | # CONFIG_CRC_CCITT is not set |
1558 | # CONFIG_CRC16 is not set | 1600 | # CONFIG_CRC16 is not set |
1559 | CONFIG_CRC_T10DIF=y | 1601 | CONFIG_CRC_T10DIF=y |
@@ -1605,6 +1647,7 @@ CONFIG_DEBUG_INFO=y | |||
1605 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1647 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1606 | # CONFIG_DEBUG_LIST is not set | 1648 | # CONFIG_DEBUG_LIST is not set |
1607 | # CONFIG_DEBUG_SG is not set | 1649 | # CONFIG_DEBUG_SG is not set |
1650 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1608 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1651 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1609 | # CONFIG_RCU_TORTURE_TEST is not set | 1652 | # CONFIG_RCU_TORTURE_TEST is not set |
1610 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1653 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1614,6 +1657,8 @@ CONFIG_DEBUG_INFO=y | |||
1614 | # CONFIG_LATENCYTOP is not set | 1657 | # CONFIG_LATENCYTOP is not set |
1615 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1658 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1616 | CONFIG_HAVE_FUNCTION_TRACER=y | 1659 | CONFIG_HAVE_FUNCTION_TRACER=y |
1660 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1661 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1617 | 1662 | ||
1618 | # | 1663 | # |
1619 | # Tracers | 1664 | # Tracers |
@@ -1622,11 +1667,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1622 | # CONFIG_SCHED_TRACER is not set | 1667 | # CONFIG_SCHED_TRACER is not set |
1623 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1668 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1624 | # CONFIG_BOOT_TRACER is not set | 1669 | # CONFIG_BOOT_TRACER is not set |
1670 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1625 | # CONFIG_STACK_TRACER is not set | 1671 | # CONFIG_STACK_TRACER is not set |
1626 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1672 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1627 | # CONFIG_SAMPLES is not set | 1673 | # CONFIG_SAMPLES is not set |
1628 | CONFIG_HAVE_ARCH_KGDB=y | 1674 | CONFIG_HAVE_ARCH_KGDB=y |
1629 | # CONFIG_KGDB is not set | 1675 | # CONFIG_KGDB is not set |
1676 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1630 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1677 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1631 | # CONFIG_DEBUG_STACK_USAGE is not set | 1678 | # CONFIG_DEBUG_STACK_USAGE is not set |
1632 | # CONFIG_DEBUG_PAGEALLOC is not set | 1679 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1653,11 +1700,15 @@ CONFIG_CRYPTO=y | |||
1653 | # | 1700 | # |
1654 | # CONFIG_CRYPTO_FIPS is not set | 1701 | # CONFIG_CRYPTO_FIPS is not set |
1655 | CONFIG_CRYPTO_ALGAPI=y | 1702 | CONFIG_CRYPTO_ALGAPI=y |
1656 | CONFIG_CRYPTO_AEAD=y | 1703 | CONFIG_CRYPTO_ALGAPI2=y |
1704 | CONFIG_CRYPTO_AEAD2=y | ||
1657 | CONFIG_CRYPTO_BLKCIPHER=y | 1705 | CONFIG_CRYPTO_BLKCIPHER=y |
1706 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1658 | CONFIG_CRYPTO_HASH=y | 1707 | CONFIG_CRYPTO_HASH=y |
1659 | CONFIG_CRYPTO_RNG=y | 1708 | CONFIG_CRYPTO_HASH2=y |
1709 | CONFIG_CRYPTO_RNG2=y | ||
1660 | CONFIG_CRYPTO_MANAGER=y | 1710 | CONFIG_CRYPTO_MANAGER=y |
1711 | CONFIG_CRYPTO_MANAGER2=y | ||
1661 | # CONFIG_CRYPTO_GF128MUL is not set | 1712 | # CONFIG_CRYPTO_GF128MUL is not set |
1662 | # CONFIG_CRYPTO_NULL is not set | 1713 | # CONFIG_CRYPTO_NULL is not set |
1663 | # CONFIG_CRYPTO_CRYPTD is not set | 1714 | # CONFIG_CRYPTO_CRYPTD is not set |
@@ -1691,7 +1742,7 @@ CONFIG_CRYPTO_HMAC=y | |||
1691 | # | 1742 | # |
1692 | # Digest | 1743 | # Digest |
1693 | # | 1744 | # |
1694 | # CONFIG_CRYPTO_CRC32C is not set | 1745 | CONFIG_CRYPTO_CRC32C=m |
1695 | # CONFIG_CRYPTO_MD4 is not set | 1746 | # CONFIG_CRYPTO_MD4 is not set |
1696 | CONFIG_CRYPTO_MD5=y | 1747 | CONFIG_CRYPTO_MD5=y |
1697 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1748 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
diff --git a/arch/powerpc/configs/86xx/sbc8641d_defconfig b/arch/powerpc/configs/86xx/sbc8641d_defconfig index 37d9f4ed80f5..04797e730c5a 100644 --- a/arch/powerpc/configs/86xx/sbc8641d_defconfig +++ b/arch/powerpc/configs/86xx/sbc8641d_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:26 2008 | 4 | # Mon Jan 26 15:36:23 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -46,7 +46,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
46 | CONFIG_PPC=y | 46 | CONFIG_PPC=y |
47 | CONFIG_EARLY_PRINTK=y | 47 | CONFIG_EARLY_PRINTK=y |
48 | CONFIG_GENERIC_NVRAM=y | 48 | CONFIG_GENERIC_NVRAM=y |
49 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 49 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
50 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 50 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
51 | CONFIG_PPC_OF=y | 51 | CONFIG_PPC_OF=y |
52 | CONFIG_OF=y | 52 | CONFIG_OF=y |
@@ -78,12 +78,12 @@ CONFIG_BSD_PROCESS_ACCT_V3=y | |||
78 | CONFIG_IKCONFIG=y | 78 | CONFIG_IKCONFIG=y |
79 | CONFIG_IKCONFIG_PROC=y | 79 | CONFIG_IKCONFIG_PROC=y |
80 | CONFIG_LOG_BUF_SHIFT=14 | 80 | CONFIG_LOG_BUF_SHIFT=14 |
81 | # CONFIG_CGROUPS is not set | ||
82 | CONFIG_GROUP_SCHED=y | 81 | CONFIG_GROUP_SCHED=y |
83 | CONFIG_FAIR_GROUP_SCHED=y | 82 | CONFIG_FAIR_GROUP_SCHED=y |
84 | # CONFIG_RT_GROUP_SCHED is not set | 83 | # CONFIG_RT_GROUP_SCHED is not set |
85 | CONFIG_USER_SCHED=y | 84 | CONFIG_USER_SCHED=y |
86 | # CONFIG_CGROUP_SCHED is not set | 85 | # CONFIG_CGROUP_SCHED is not set |
86 | # CONFIG_CGROUPS is not set | ||
87 | CONFIG_SYSFS_DEPRECATED=y | 87 | CONFIG_SYSFS_DEPRECATED=y |
88 | CONFIG_SYSFS_DEPRECATED_V2=y | 88 | CONFIG_SYSFS_DEPRECATED_V2=y |
89 | CONFIG_RELAY=y | 89 | CONFIG_RELAY=y |
@@ -117,7 +117,6 @@ CONFIG_SLAB=y | |||
117 | # CONFIG_SLUB is not set | 117 | # CONFIG_SLUB is not set |
118 | # CONFIG_SLOB is not set | 118 | # CONFIG_SLOB is not set |
119 | # CONFIG_PROFILING is not set | 119 | # CONFIG_PROFILING is not set |
120 | # CONFIG_MARKERS is not set | ||
121 | CONFIG_HAVE_OPROFILE=y | 120 | CONFIG_HAVE_OPROFILE=y |
122 | # CONFIG_KPROBES is not set | 121 | # CONFIG_KPROBES is not set |
123 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 122 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -129,7 +128,6 @@ CONFIG_USE_GENERIC_SMP_HELPERS=y | |||
129 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 128 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
130 | CONFIG_SLABINFO=y | 129 | CONFIG_SLABINFO=y |
131 | CONFIG_RT_MUTEXES=y | 130 | CONFIG_RT_MUTEXES=y |
132 | # CONFIG_TINY_SHMEM is not set | ||
133 | CONFIG_BASE_SMALL=0 | 131 | CONFIG_BASE_SMALL=0 |
134 | CONFIG_MODULES=y | 132 | CONFIG_MODULES=y |
135 | # CONFIG_MODULE_FORCE_LOAD is not set | 133 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -137,12 +135,10 @@ CONFIG_MODULE_UNLOAD=y | |||
137 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 135 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
138 | # CONFIG_MODVERSIONS is not set | 136 | # CONFIG_MODVERSIONS is not set |
139 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 137 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
140 | CONFIG_KMOD=y | ||
141 | CONFIG_STOP_MACHINE=y | 138 | CONFIG_STOP_MACHINE=y |
142 | CONFIG_BLOCK=y | 139 | CONFIG_BLOCK=y |
143 | # CONFIG_LBD is not set | 140 | # CONFIG_LBD is not set |
144 | # CONFIG_BLK_DEV_IO_TRACE is not set | 141 | # CONFIG_BLK_DEV_IO_TRACE is not set |
145 | # CONFIG_LSF is not set | ||
146 | # CONFIG_BLK_DEV_BSG is not set | 142 | # CONFIG_BLK_DEV_BSG is not set |
147 | # CONFIG_BLK_DEV_INTEGRITY is not set | 143 | # CONFIG_BLK_DEV_INTEGRITY is not set |
148 | 144 | ||
@@ -159,6 +155,10 @@ CONFIG_DEFAULT_CFQ=y | |||
159 | # CONFIG_DEFAULT_NOOP is not set | 155 | # CONFIG_DEFAULT_NOOP is not set |
160 | CONFIG_DEFAULT_IOSCHED="cfq" | 156 | CONFIG_DEFAULT_IOSCHED="cfq" |
161 | CONFIG_CLASSIC_RCU=y | 157 | CONFIG_CLASSIC_RCU=y |
158 | # CONFIG_TREE_RCU is not set | ||
159 | # CONFIG_PREEMPT_RCU is not set | ||
160 | # CONFIG_TREE_RCU_TRACE is not set | ||
161 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
162 | # CONFIG_FREEZER is not set | 162 | # CONFIG_FREEZER is not set |
163 | 163 | ||
164 | # | 164 | # |
@@ -197,6 +197,7 @@ CONFIG_MPIC=y | |||
197 | # CONFIG_QUICC_ENGINE is not set | 197 | # CONFIG_QUICC_ENGINE is not set |
198 | # CONFIG_FSL_ULI1575 is not set | 198 | # CONFIG_FSL_ULI1575 is not set |
199 | # CONFIG_MPC8xxx_GPIO is not set | 199 | # CONFIG_MPC8xxx_GPIO is not set |
200 | # CONFIG_SIMPLE_GPIO is not set | ||
200 | 201 | ||
201 | # | 202 | # |
202 | # Kernel options | 203 | # Kernel options |
@@ -215,7 +216,6 @@ CONFIG_SCHED_HRTICK=y | |||
215 | # CONFIG_PREEMPT_NONE is not set | 216 | # CONFIG_PREEMPT_NONE is not set |
216 | # CONFIG_PREEMPT_VOLUNTARY is not set | 217 | # CONFIG_PREEMPT_VOLUNTARY is not set |
217 | CONFIG_PREEMPT=y | 218 | CONFIG_PREEMPT=y |
218 | # CONFIG_PREEMPT_RCU is not set | ||
219 | CONFIG_BINFMT_ELF=y | 219 | CONFIG_BINFMT_ELF=y |
220 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | 220 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set |
221 | # CONFIG_HAVE_AOUT is not set | 221 | # CONFIG_HAVE_AOUT is not set |
@@ -225,6 +225,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
225 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 225 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
226 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 226 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
227 | # CONFIG_KEXEC is not set | 227 | # CONFIG_KEXEC is not set |
228 | # CONFIG_CRASH_DUMP is not set | ||
228 | CONFIG_IRQ_ALL_CPUS=y | 229 | CONFIG_IRQ_ALL_CPUS=y |
229 | CONFIG_ARCH_FLATMEM_ENABLE=y | 230 | CONFIG_ARCH_FLATMEM_ENABLE=y |
230 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 231 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
@@ -237,12 +238,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
237 | CONFIG_PAGEFLAGS_EXTENDED=y | 238 | CONFIG_PAGEFLAGS_EXTENDED=y |
238 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 239 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
239 | CONFIG_MIGRATION=y | 240 | CONFIG_MIGRATION=y |
240 | # CONFIG_RESOURCES_64BIT is not set | ||
241 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 241 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
242 | CONFIG_ZONE_DMA_FLAG=1 | 242 | CONFIG_ZONE_DMA_FLAG=1 |
243 | CONFIG_BOUNCE=y | 243 | CONFIG_BOUNCE=y |
244 | CONFIG_VIRT_TO_BUS=y | 244 | CONFIG_VIRT_TO_BUS=y |
245 | CONFIG_UNEVICTABLE_LRU=y | 245 | CONFIG_UNEVICTABLE_LRU=y |
246 | CONFIG_PPC_4K_PAGES=y | ||
247 | # CONFIG_PPC_16K_PAGES is not set | ||
248 | # CONFIG_PPC_64K_PAGES is not set | ||
246 | CONFIG_FORCE_MAX_ZONEORDER=11 | 249 | CONFIG_FORCE_MAX_ZONEORDER=11 |
247 | # CONFIG_PROC_DEVICETREE is not set | 250 | # CONFIG_PROC_DEVICETREE is not set |
248 | # CONFIG_CMDLINE_BOOL is not set | 251 | # CONFIG_CMDLINE_BOOL is not set |
@@ -270,6 +273,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
270 | # CONFIG_PCI_MSI is not set | 273 | # CONFIG_PCI_MSI is not set |
271 | # CONFIG_PCI_LEGACY is not set | 274 | # CONFIG_PCI_LEGACY is not set |
272 | # CONFIG_PCI_DEBUG is not set | 275 | # CONFIG_PCI_DEBUG is not set |
276 | # CONFIG_PCI_STUB is not set | ||
273 | # CONFIG_PCCARD is not set | 277 | # CONFIG_PCCARD is not set |
274 | # CONFIG_HOTPLUG_PCI is not set | 278 | # CONFIG_HOTPLUG_PCI is not set |
275 | # CONFIG_HAS_RAPIDIO is not set | 279 | # CONFIG_HAS_RAPIDIO is not set |
@@ -292,6 +296,7 @@ CONFIG_NET=y | |||
292 | # | 296 | # |
293 | # Networking options | 297 | # Networking options |
294 | # | 298 | # |
299 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
295 | CONFIG_PACKET=y | 300 | CONFIG_PACKET=y |
296 | CONFIG_PACKET_MMAP=y | 301 | CONFIG_PACKET_MMAP=y |
297 | CONFIG_UNIX=y | 302 | CONFIG_UNIX=y |
@@ -501,6 +506,7 @@ CONFIG_NET_SCH_TBF=m | |||
501 | CONFIG_NET_SCH_GRED=m | 506 | CONFIG_NET_SCH_GRED=m |
502 | CONFIG_NET_SCH_DSMARK=m | 507 | CONFIG_NET_SCH_DSMARK=m |
503 | CONFIG_NET_SCH_NETEM=m | 508 | CONFIG_NET_SCH_NETEM=m |
509 | # CONFIG_NET_SCH_DRR is not set | ||
504 | 510 | ||
505 | # | 511 | # |
506 | # Classification | 512 | # Classification |
@@ -521,6 +527,7 @@ CONFIG_NET_CLS_RSVP6=m | |||
521 | # CONFIG_NET_CLS_ACT is not set | 527 | # CONFIG_NET_CLS_ACT is not set |
522 | # CONFIG_NET_CLS_IND is not set | 528 | # CONFIG_NET_CLS_IND is not set |
523 | CONFIG_NET_SCH_FIFO=y | 529 | CONFIG_NET_SCH_FIFO=y |
530 | # CONFIG_DCB is not set | ||
524 | 531 | ||
525 | # | 532 | # |
526 | # Network testing | 533 | # Network testing |
@@ -537,8 +544,9 @@ CONFIG_WIRELESS=y | |||
537 | # CONFIG_CFG80211 is not set | 544 | # CONFIG_CFG80211 is not set |
538 | CONFIG_WIRELESS_OLD_REGULATORY=y | 545 | CONFIG_WIRELESS_OLD_REGULATORY=y |
539 | # CONFIG_WIRELESS_EXT is not set | 546 | # CONFIG_WIRELESS_EXT is not set |
547 | # CONFIG_LIB80211 is not set | ||
540 | # CONFIG_MAC80211 is not set | 548 | # CONFIG_MAC80211 is not set |
541 | # CONFIG_IEEE80211 is not set | 549 | # CONFIG_WIMAX is not set |
542 | # CONFIG_RFKILL is not set | 550 | # CONFIG_RFKILL is not set |
543 | # CONFIG_NET_9P is not set | 551 | # CONFIG_NET_9P is not set |
544 | 552 | ||
@@ -561,6 +569,7 @@ CONFIG_MTD=y | |||
561 | # CONFIG_MTD_DEBUG is not set | 569 | # CONFIG_MTD_DEBUG is not set |
562 | CONFIG_MTD_CONCAT=y | 570 | CONFIG_MTD_CONCAT=y |
563 | CONFIG_MTD_PARTITIONS=y | 571 | CONFIG_MTD_PARTITIONS=y |
572 | # CONFIG_MTD_TESTS is not set | ||
564 | # CONFIG_MTD_REDBOOT_PARTS is not set | 573 | # CONFIG_MTD_REDBOOT_PARTS is not set |
565 | # CONFIG_MTD_CMDLINE_PARTS is not set | 574 | # CONFIG_MTD_CMDLINE_PARTS is not set |
566 | # CONFIG_MTD_OF_PARTS is not set | 575 | # CONFIG_MTD_OF_PARTS is not set |
@@ -637,6 +646,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
637 | # CONFIG_MTD_ONENAND is not set | 646 | # CONFIG_MTD_ONENAND is not set |
638 | 647 | ||
639 | # | 648 | # |
649 | # LPDDR flash memory drivers | ||
650 | # | ||
651 | # CONFIG_MTD_LPDDR is not set | ||
652 | # CONFIG_MTD_QINFO_PROBE is not set | ||
653 | |||
654 | # | ||
640 | # UBI - Unsorted block images | 655 | # UBI - Unsorted block images |
641 | # | 656 | # |
642 | # CONFIG_MTD_UBI is not set | 657 | # CONFIG_MTD_UBI is not set |
@@ -666,8 +681,10 @@ CONFIG_MISC_DEVICES=y | |||
666 | # CONFIG_EEPROM_93CX6 is not set | 681 | # CONFIG_EEPROM_93CX6 is not set |
667 | # CONFIG_SGI_IOC4 is not set | 682 | # CONFIG_SGI_IOC4 is not set |
668 | # CONFIG_TIFM_CORE is not set | 683 | # CONFIG_TIFM_CORE is not set |
684 | # CONFIG_ICS932S401 is not set | ||
669 | # CONFIG_ENCLOSURE_SERVICES is not set | 685 | # CONFIG_ENCLOSURE_SERVICES is not set |
670 | # CONFIG_HP_ILO is not set | 686 | # CONFIG_HP_ILO is not set |
687 | # CONFIG_C2PORT is not set | ||
671 | CONFIG_HAVE_IDE=y | 688 | CONFIG_HAVE_IDE=y |
672 | # CONFIG_IDE is not set | 689 | # CONFIG_IDE is not set |
673 | 690 | ||
@@ -734,6 +751,9 @@ CONFIG_PHYLIB=y | |||
734 | CONFIG_BROADCOM_PHY=y | 751 | CONFIG_BROADCOM_PHY=y |
735 | # CONFIG_ICPLUS_PHY is not set | 752 | # CONFIG_ICPLUS_PHY is not set |
736 | # CONFIG_REALTEK_PHY is not set | 753 | # CONFIG_REALTEK_PHY is not set |
754 | # CONFIG_NATIONAL_PHY is not set | ||
755 | # CONFIG_STE10XP is not set | ||
756 | # CONFIG_LSI_ET1011C_PHY is not set | ||
737 | # CONFIG_FIXED_PHY is not set | 757 | # CONFIG_FIXED_PHY is not set |
738 | # CONFIG_MDIO_BITBANG is not set | 758 | # CONFIG_MDIO_BITBANG is not set |
739 | CONFIG_NET_ETHERNET=y | 759 | CONFIG_NET_ETHERNET=y |
@@ -786,6 +806,10 @@ CONFIG_GIANFAR=y | |||
786 | # CONFIG_WLAN_PRE80211 is not set | 806 | # CONFIG_WLAN_PRE80211 is not set |
787 | # CONFIG_WLAN_80211 is not set | 807 | # CONFIG_WLAN_80211 is not set |
788 | # CONFIG_IWLWIFI_LEDS is not set | 808 | # CONFIG_IWLWIFI_LEDS is not set |
809 | |||
810 | # | ||
811 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
812 | # | ||
789 | # CONFIG_WAN is not set | 813 | # CONFIG_WAN is not set |
790 | CONFIG_ATM_DRIVERS=y | 814 | CONFIG_ATM_DRIVERS=y |
791 | # CONFIG_ATM_DUMMY is not set | 815 | # CONFIG_ATM_DUMMY is not set |
@@ -801,6 +825,7 @@ CONFIG_ATM_DRIVERS=y | |||
801 | # CONFIG_ATM_IA is not set | 825 | # CONFIG_ATM_IA is not set |
802 | # CONFIG_ATM_FORE200E is not set | 826 | # CONFIG_ATM_FORE200E is not set |
803 | # CONFIG_ATM_HE is not set | 827 | # CONFIG_ATM_HE is not set |
828 | # CONFIG_ATM_SOLOS is not set | ||
804 | # CONFIG_FDDI is not set | 829 | # CONFIG_FDDI is not set |
805 | # CONFIG_HIPPI is not set | 830 | # CONFIG_HIPPI is not set |
806 | CONFIG_PPP=m | 831 | CONFIG_PPP=m |
@@ -892,8 +917,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
892 | # CONFIG_SERIAL_JSM is not set | 917 | # CONFIG_SERIAL_JSM is not set |
893 | # CONFIG_SERIAL_OF_PLATFORM is not set | 918 | # CONFIG_SERIAL_OF_PLATFORM is not set |
894 | CONFIG_UNIX98_PTYS=y | 919 | CONFIG_UNIX98_PTYS=y |
920 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
895 | CONFIG_LEGACY_PTYS=y | 921 | CONFIG_LEGACY_PTYS=y |
896 | CONFIG_LEGACY_PTY_COUNT=256 | 922 | CONFIG_LEGACY_PTY_COUNT=256 |
923 | # CONFIG_HVC_UDBG is not set | ||
897 | # CONFIG_IPMI_HANDLER is not set | 924 | # CONFIG_IPMI_HANDLER is not set |
898 | CONFIG_HW_RANDOM=m | 925 | CONFIG_HW_RANDOM=m |
899 | # CONFIG_NVRAM is not set | 926 | # CONFIG_NVRAM is not set |
@@ -985,8 +1012,10 @@ CONFIG_HWMON=y | |||
985 | # CONFIG_SENSORS_ADM1029 is not set | 1012 | # CONFIG_SENSORS_ADM1029 is not set |
986 | # CONFIG_SENSORS_ADM1031 is not set | 1013 | # CONFIG_SENSORS_ADM1031 is not set |
987 | # CONFIG_SENSORS_ADM9240 is not set | 1014 | # CONFIG_SENSORS_ADM9240 is not set |
1015 | # CONFIG_SENSORS_ADT7462 is not set | ||
988 | # CONFIG_SENSORS_ADT7470 is not set | 1016 | # CONFIG_SENSORS_ADT7470 is not set |
989 | # CONFIG_SENSORS_ADT7473 is not set | 1017 | # CONFIG_SENSORS_ADT7473 is not set |
1018 | # CONFIG_SENSORS_ADT7475 is not set | ||
990 | # CONFIG_SENSORS_ATXP1 is not set | 1019 | # CONFIG_SENSORS_ATXP1 is not set |
991 | # CONFIG_SENSORS_DS1621 is not set | 1020 | # CONFIG_SENSORS_DS1621 is not set |
992 | # CONFIG_SENSORS_I5K_AMB is not set | 1021 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -1007,6 +1036,7 @@ CONFIG_HWMON=y | |||
1007 | # CONFIG_SENSORS_LM90 is not set | 1036 | # CONFIG_SENSORS_LM90 is not set |
1008 | # CONFIG_SENSORS_LM92 is not set | 1037 | # CONFIG_SENSORS_LM92 is not set |
1009 | # CONFIG_SENSORS_LM93 is not set | 1038 | # CONFIG_SENSORS_LM93 is not set |
1039 | # CONFIG_SENSORS_LTC4245 is not set | ||
1010 | # CONFIG_SENSORS_MAX1619 is not set | 1040 | # CONFIG_SENSORS_MAX1619 is not set |
1011 | # CONFIG_SENSORS_MAX6650 is not set | 1041 | # CONFIG_SENSORS_MAX6650 is not set |
1012 | # CONFIG_SENSORS_PC87360 is not set | 1042 | # CONFIG_SENSORS_PC87360 is not set |
@@ -1047,11 +1077,11 @@ CONFIG_SOFT_WATCHDOG=m | |||
1047 | # | 1077 | # |
1048 | # CONFIG_PCIPCWATCHDOG is not set | 1078 | # CONFIG_PCIPCWATCHDOG is not set |
1049 | # CONFIG_WDTPCI is not set | 1079 | # CONFIG_WDTPCI is not set |
1080 | CONFIG_SSB_POSSIBLE=y | ||
1050 | 1081 | ||
1051 | # | 1082 | # |
1052 | # Sonics Silicon Backplane | 1083 | # Sonics Silicon Backplane |
1053 | # | 1084 | # |
1054 | CONFIG_SSB_POSSIBLE=y | ||
1055 | # CONFIG_SSB is not set | 1085 | # CONFIG_SSB is not set |
1056 | 1086 | ||
1057 | # | 1087 | # |
@@ -1060,18 +1090,13 @@ CONFIG_SSB_POSSIBLE=y | |||
1060 | # CONFIG_MFD_CORE is not set | 1090 | # CONFIG_MFD_CORE is not set |
1061 | # CONFIG_MFD_SM501 is not set | 1091 | # CONFIG_MFD_SM501 is not set |
1062 | # CONFIG_HTC_PASIC3 is not set | 1092 | # CONFIG_HTC_PASIC3 is not set |
1093 | # CONFIG_TWL4030_CORE is not set | ||
1063 | # CONFIG_MFD_TMIO is not set | 1094 | # CONFIG_MFD_TMIO is not set |
1064 | # CONFIG_PMIC_DA903X is not set | 1095 | # CONFIG_PMIC_DA903X is not set |
1065 | # CONFIG_MFD_WM8400 is not set | 1096 | # CONFIG_MFD_WM8400 is not set |
1066 | # CONFIG_MFD_WM8350_I2C is not set | 1097 | # CONFIG_MFD_WM8350_I2C is not set |
1067 | 1098 | # CONFIG_MFD_PCF50633 is not set | |
1068 | # | ||
1069 | # Voltage and Current regulators | ||
1070 | # | ||
1071 | # CONFIG_REGULATOR is not set | 1099 | # CONFIG_REGULATOR is not set |
1072 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
1073 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
1074 | # CONFIG_REGULATOR_BQ24022 is not set | ||
1075 | 1100 | ||
1076 | # | 1101 | # |
1077 | # Multimedia devices | 1102 | # Multimedia devices |
@@ -1134,9 +1159,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
1134 | # | 1159 | # |
1135 | 1160 | ||
1136 | # | 1161 | # |
1137 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1162 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1138 | # | 1163 | # |
1139 | # CONFIG_USB_GADGET is not set | 1164 | # CONFIG_USB_GADGET is not set |
1165 | |||
1166 | # | ||
1167 | # OTG and related infrastructure | ||
1168 | # | ||
1140 | # CONFIG_UWB is not set | 1169 | # CONFIG_UWB is not set |
1141 | # CONFIG_MMC is not set | 1170 | # CONFIG_MMC is not set |
1142 | # CONFIG_MEMSTICK is not set | 1171 | # CONFIG_MEMSTICK is not set |
@@ -1182,11 +1211,18 @@ CONFIG_OCFS2_FS_O2CB=m | |||
1182 | CONFIG_OCFS2_FS_STATS=y | 1211 | CONFIG_OCFS2_FS_STATS=y |
1183 | CONFIG_OCFS2_DEBUG_MASKLOG=y | 1212 | CONFIG_OCFS2_DEBUG_MASKLOG=y |
1184 | # CONFIG_OCFS2_DEBUG_FS is not set | 1213 | # CONFIG_OCFS2_DEBUG_FS is not set |
1185 | # CONFIG_OCFS2_COMPAT_JBD is not set | 1214 | # CONFIG_OCFS2_FS_POSIX_ACL is not set |
1215 | # CONFIG_BTRFS_FS is not set | ||
1186 | CONFIG_DNOTIFY=y | 1216 | CONFIG_DNOTIFY=y |
1187 | CONFIG_INOTIFY=y | 1217 | CONFIG_INOTIFY=y |
1188 | CONFIG_INOTIFY_USER=y | 1218 | CONFIG_INOTIFY_USER=y |
1189 | # CONFIG_QUOTA is not set | 1219 | CONFIG_QUOTA=y |
1220 | # CONFIG_QUOTA_NETLINK_INTERFACE is not set | ||
1221 | CONFIG_PRINT_QUOTA_WARNING=y | ||
1222 | CONFIG_QUOTA_TREE=m | ||
1223 | # CONFIG_QFMT_V1 is not set | ||
1224 | # CONFIG_QFMT_V2 is not set | ||
1225 | CONFIG_QUOTACTL=y | ||
1190 | CONFIG_AUTOFS_FS=m | 1226 | CONFIG_AUTOFS_FS=m |
1191 | CONFIG_AUTOFS4_FS=m | 1227 | CONFIG_AUTOFS4_FS=m |
1192 | # CONFIG_FUSE_FS is not set | 1228 | # CONFIG_FUSE_FS is not set |
@@ -1216,10 +1252,7 @@ CONFIG_TMPFS=y | |||
1216 | # CONFIG_TMPFS_POSIX_ACL is not set | 1252 | # CONFIG_TMPFS_POSIX_ACL is not set |
1217 | # CONFIG_HUGETLB_PAGE is not set | 1253 | # CONFIG_HUGETLB_PAGE is not set |
1218 | CONFIG_CONFIGFS_FS=m | 1254 | CONFIG_CONFIGFS_FS=m |
1219 | 1255 | CONFIG_MISC_FILESYSTEMS=y | |
1220 | # | ||
1221 | # Miscellaneous filesystems | ||
1222 | # | ||
1223 | # CONFIG_ADFS_FS is not set | 1256 | # CONFIG_ADFS_FS is not set |
1224 | # CONFIG_AFFS_FS is not set | 1257 | # CONFIG_AFFS_FS is not set |
1225 | # CONFIG_HFS_FS is not set | 1258 | # CONFIG_HFS_FS is not set |
@@ -1229,6 +1262,7 @@ CONFIG_CONFIGFS_FS=m | |||
1229 | # CONFIG_EFS_FS is not set | 1262 | # CONFIG_EFS_FS is not set |
1230 | # CONFIG_JFFS2_FS is not set | 1263 | # CONFIG_JFFS2_FS is not set |
1231 | # CONFIG_CRAMFS is not set | 1264 | # CONFIG_CRAMFS is not set |
1265 | # CONFIG_SQUASHFS is not set | ||
1232 | # CONFIG_VXFS_FS is not set | 1266 | # CONFIG_VXFS_FS is not set |
1233 | CONFIG_MINIX_FS=m | 1267 | CONFIG_MINIX_FS=m |
1234 | # CONFIG_OMFS_FS is not set | 1268 | # CONFIG_OMFS_FS is not set |
@@ -1317,6 +1351,7 @@ CONFIG_NLS_UTF8=m | |||
1317 | # Library routines | 1351 | # Library routines |
1318 | # | 1352 | # |
1319 | CONFIG_BITREVERSE=y | 1353 | CONFIG_BITREVERSE=y |
1354 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1320 | CONFIG_CRC_CCITT=m | 1355 | CONFIG_CRC_CCITT=m |
1321 | # CONFIG_CRC16 is not set | 1356 | # CONFIG_CRC16 is not set |
1322 | # CONFIG_CRC_T10DIF is not set | 1357 | # CONFIG_CRC_T10DIF is not set |
@@ -1367,6 +1402,7 @@ CONFIG_DEBUG_INFO=y | |||
1367 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1402 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1368 | # CONFIG_DEBUG_LIST is not set | 1403 | # CONFIG_DEBUG_LIST is not set |
1369 | # CONFIG_DEBUG_SG is not set | 1404 | # CONFIG_DEBUG_SG is not set |
1405 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1370 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1406 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1371 | # CONFIG_RCU_TORTURE_TEST is not set | 1407 | # CONFIG_RCU_TORTURE_TEST is not set |
1372 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1408 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1376,6 +1412,8 @@ CONFIG_DEBUG_INFO=y | |||
1376 | # CONFIG_LATENCYTOP is not set | 1412 | # CONFIG_LATENCYTOP is not set |
1377 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1413 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1378 | CONFIG_HAVE_FUNCTION_TRACER=y | 1414 | CONFIG_HAVE_FUNCTION_TRACER=y |
1415 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1416 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1379 | 1417 | ||
1380 | # | 1418 | # |
1381 | # Tracers | 1419 | # Tracers |
@@ -1385,11 +1423,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1385 | # CONFIG_SCHED_TRACER is not set | 1423 | # CONFIG_SCHED_TRACER is not set |
1386 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1424 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1387 | # CONFIG_BOOT_TRACER is not set | 1425 | # CONFIG_BOOT_TRACER is not set |
1426 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1388 | # CONFIG_STACK_TRACER is not set | 1427 | # CONFIG_STACK_TRACER is not set |
1389 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1428 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1390 | # CONFIG_SAMPLES is not set | 1429 | # CONFIG_SAMPLES is not set |
1391 | CONFIG_HAVE_ARCH_KGDB=y | 1430 | CONFIG_HAVE_ARCH_KGDB=y |
1392 | # CONFIG_KGDB is not set | 1431 | # CONFIG_KGDB is not set |
1432 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1393 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1433 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1394 | # CONFIG_DEBUG_STACK_USAGE is not set | 1434 | # CONFIG_DEBUG_STACK_USAGE is not set |
1395 | # CONFIG_DEBUG_PAGEALLOC is not set | 1435 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1411,6 +1451,7 @@ CONFIG_SECURITY=y | |||
1411 | # CONFIG_SECURITYFS is not set | 1451 | # CONFIG_SECURITYFS is not set |
1412 | CONFIG_SECURITY_NETWORK=y | 1452 | CONFIG_SECURITY_NETWORK=y |
1413 | # CONFIG_SECURITY_NETWORK_XFRM is not set | 1453 | # CONFIG_SECURITY_NETWORK_XFRM is not set |
1454 | # CONFIG_SECURITY_PATH is not set | ||
1414 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1455 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
1415 | CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0 | 1456 | CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0 |
1416 | CONFIG_CRYPTO=y | 1457 | CONFIG_CRYPTO=y |
@@ -1420,11 +1461,16 @@ CONFIG_CRYPTO=y | |||
1420 | # | 1461 | # |
1421 | # CONFIG_CRYPTO_FIPS is not set | 1462 | # CONFIG_CRYPTO_FIPS is not set |
1422 | CONFIG_CRYPTO_ALGAPI=y | 1463 | CONFIG_CRYPTO_ALGAPI=y |
1423 | CONFIG_CRYPTO_AEAD=y | 1464 | CONFIG_CRYPTO_ALGAPI2=y |
1465 | CONFIG_CRYPTO_AEAD=m | ||
1466 | CONFIG_CRYPTO_AEAD2=y | ||
1424 | CONFIG_CRYPTO_BLKCIPHER=y | 1467 | CONFIG_CRYPTO_BLKCIPHER=y |
1468 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1425 | CONFIG_CRYPTO_HASH=y | 1469 | CONFIG_CRYPTO_HASH=y |
1426 | CONFIG_CRYPTO_RNG=y | 1470 | CONFIG_CRYPTO_HASH2=y |
1471 | CONFIG_CRYPTO_RNG2=y | ||
1427 | CONFIG_CRYPTO_MANAGER=y | 1472 | CONFIG_CRYPTO_MANAGER=y |
1473 | CONFIG_CRYPTO_MANAGER2=y | ||
1428 | # CONFIG_CRYPTO_GF128MUL is not set | 1474 | # CONFIG_CRYPTO_GF128MUL is not set |
1429 | CONFIG_CRYPTO_NULL=m | 1475 | CONFIG_CRYPTO_NULL=m |
1430 | # CONFIG_CRYPTO_CRYPTD is not set | 1476 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/adder875_defconfig b/arch/powerpc/configs/adder875_defconfig index 024f279af90a..aaab5cc3751c 100644 --- a/arch/powerpc/configs/adder875_defconfig +++ b/arch/powerpc/configs/adder875_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:32 2008 | 4 | # Mon Jan 26 15:35:24 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_PPC_8xx=y | |||
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_8xx=y | 17 | CONFIG_8xx=y |
18 | CONFIG_PPC_MMU_NOHASH=y | ||
18 | # CONFIG_PPC_MM_SLICES is not set | 19 | # CONFIG_PPC_MM_SLICES is not set |
19 | CONFIG_NOT_COHERENT_CACHE=y | 20 | CONFIG_NOT_COHERENT_CACHE=y |
20 | CONFIG_PPC32=y | 21 | CONFIG_PPC32=y |
@@ -40,7 +41,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
40 | CONFIG_PPC=y | 41 | CONFIG_PPC=y |
41 | CONFIG_EARLY_PRINTK=y | 42 | CONFIG_EARLY_PRINTK=y |
42 | CONFIG_GENERIC_NVRAM=y | 43 | CONFIG_GENERIC_NVRAM=y |
43 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 44 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
44 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
45 | CONFIG_PPC_OF=y | 46 | CONFIG_PPC_OF=y |
46 | CONFIG_OF=y | 47 | CONFIG_OF=y |
@@ -71,12 +72,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
71 | # CONFIG_AUDIT is not set | 72 | # CONFIG_AUDIT is not set |
72 | # CONFIG_IKCONFIG is not set | 73 | # CONFIG_IKCONFIG is not set |
73 | CONFIG_LOG_BUF_SHIFT=14 | 74 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | ||
75 | CONFIG_GROUP_SCHED=y | 75 | CONFIG_GROUP_SCHED=y |
76 | CONFIG_FAIR_GROUP_SCHED=y | 76 | CONFIG_FAIR_GROUP_SCHED=y |
77 | # CONFIG_RT_GROUP_SCHED is not set | 77 | # CONFIG_RT_GROUP_SCHED is not set |
78 | CONFIG_USER_SCHED=y | 78 | CONFIG_USER_SCHED=y |
79 | # CONFIG_CGROUP_SCHED is not set | 79 | # CONFIG_CGROUP_SCHED is not set |
80 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_SYSFS_DEPRECATED=y | 81 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | 82 | CONFIG_SYSFS_DEPRECATED_V2=y |
82 | # CONFIG_RELAY is not set | 83 | # CONFIG_RELAY is not set |
@@ -109,7 +110,6 @@ CONFIG_SLUB_DEBUG=y | |||
109 | CONFIG_SLUB=y | 110 | CONFIG_SLUB=y |
110 | # CONFIG_SLOB is not set | 111 | # CONFIG_SLOB is not set |
111 | # CONFIG_PROFILING is not set | 112 | # CONFIG_PROFILING is not set |
112 | # CONFIG_MARKERS is not set | ||
113 | CONFIG_HAVE_OPROFILE=y | 113 | CONFIG_HAVE_OPROFILE=y |
114 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 114 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
115 | CONFIG_HAVE_IOREMAP_PROT=y | 115 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -119,13 +119,11 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
119 | CONFIG_HAVE_CLK=y | 119 | CONFIG_HAVE_CLK=y |
120 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 120 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
121 | CONFIG_SLABINFO=y | 121 | CONFIG_SLABINFO=y |
122 | # CONFIG_TINY_SHMEM is not set | ||
123 | CONFIG_BASE_SMALL=1 | 122 | CONFIG_BASE_SMALL=1 |
124 | # CONFIG_MODULES is not set | 123 | # CONFIG_MODULES is not set |
125 | CONFIG_BLOCK=y | 124 | CONFIG_BLOCK=y |
126 | # CONFIG_LBD is not set | 125 | # CONFIG_LBD is not set |
127 | # CONFIG_BLK_DEV_IO_TRACE is not set | 126 | # CONFIG_BLK_DEV_IO_TRACE is not set |
128 | # CONFIG_LSF is not set | ||
129 | # CONFIG_BLK_DEV_BSG is not set | 127 | # CONFIG_BLK_DEV_BSG is not set |
130 | # CONFIG_BLK_DEV_INTEGRITY is not set | 128 | # CONFIG_BLK_DEV_INTEGRITY is not set |
131 | 129 | ||
@@ -142,6 +140,10 @@ CONFIG_DEFAULT_DEADLINE=y | |||
142 | # CONFIG_DEFAULT_NOOP is not set | 140 | # CONFIG_DEFAULT_NOOP is not set |
143 | CONFIG_DEFAULT_IOSCHED="deadline" | 141 | CONFIG_DEFAULT_IOSCHED="deadline" |
144 | CONFIG_CLASSIC_RCU=y | 142 | CONFIG_CLASSIC_RCU=y |
143 | # CONFIG_TREE_RCU is not set | ||
144 | # CONFIG_PREEMPT_RCU is not set | ||
145 | # CONFIG_TREE_RCU_TRACE is not set | ||
146 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
145 | # CONFIG_FREEZER is not set | 147 | # CONFIG_FREEZER is not set |
146 | 148 | ||
147 | # | 149 | # |
@@ -187,6 +189,7 @@ CONFIG_NO_UCODE_PATCH=y | |||
187 | # CONFIG_QUICC_ENGINE is not set | 189 | # CONFIG_QUICC_ENGINE is not set |
188 | # CONFIG_FSL_ULI1575 is not set | 190 | # CONFIG_FSL_ULI1575 is not set |
189 | CONFIG_CPM=y | 191 | CONFIG_CPM=y |
192 | # CONFIG_SIMPLE_GPIO is not set | ||
190 | 193 | ||
191 | # | 194 | # |
192 | # Kernel options | 195 | # Kernel options |
@@ -205,12 +208,12 @@ CONFIG_PREEMPT_NONE=y | |||
205 | # CONFIG_PREEMPT_VOLUNTARY is not set | 208 | # CONFIG_PREEMPT_VOLUNTARY is not set |
206 | # CONFIG_PREEMPT is not set | 209 | # CONFIG_PREEMPT is not set |
207 | CONFIG_BINFMT_ELF=y | 210 | CONFIG_BINFMT_ELF=y |
208 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | ||
209 | # CONFIG_HAVE_AOUT is not set | 211 | # CONFIG_HAVE_AOUT is not set |
210 | # CONFIG_BINFMT_MISC is not set | 212 | # CONFIG_BINFMT_MISC is not set |
211 | # CONFIG_MATH_EMULATION is not set | 213 | # CONFIG_MATH_EMULATION is not set |
212 | # CONFIG_8XX_MINIMAL_FPEMU is not set | 214 | # CONFIG_8XX_MINIMAL_FPEMU is not set |
213 | # CONFIG_IOMMU_HELPER is not set | 215 | # CONFIG_IOMMU_HELPER is not set |
216 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
214 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 217 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
215 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 218 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
216 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 219 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -225,12 +228,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
225 | CONFIG_PAGEFLAGS_EXTENDED=y | 228 | CONFIG_PAGEFLAGS_EXTENDED=y |
226 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 229 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
227 | CONFIG_MIGRATION=y | 230 | CONFIG_MIGRATION=y |
228 | # CONFIG_RESOURCES_64BIT is not set | ||
229 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 231 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
230 | CONFIG_ZONE_DMA_FLAG=1 | 232 | CONFIG_ZONE_DMA_FLAG=1 |
231 | CONFIG_BOUNCE=y | 233 | CONFIG_BOUNCE=y |
232 | CONFIG_VIRT_TO_BUS=y | 234 | CONFIG_VIRT_TO_BUS=y |
233 | CONFIG_UNEVICTABLE_LRU=y | 235 | CONFIG_UNEVICTABLE_LRU=y |
236 | CONFIG_PPC_4K_PAGES=y | ||
237 | # CONFIG_PPC_16K_PAGES is not set | ||
238 | # CONFIG_PPC_64K_PAGES is not set | ||
234 | CONFIG_FORCE_MAX_ZONEORDER=11 | 239 | CONFIG_FORCE_MAX_ZONEORDER=11 |
235 | # CONFIG_PROC_DEVICETREE is not set | 240 | # CONFIG_PROC_DEVICETREE is not set |
236 | # CONFIG_CMDLINE_BOOL is not set | 241 | # CONFIG_CMDLINE_BOOL is not set |
@@ -272,6 +277,7 @@ CONFIG_NET=y | |||
272 | # | 277 | # |
273 | # Networking options | 278 | # Networking options |
274 | # | 279 | # |
280 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
275 | CONFIG_PACKET=y | 281 | CONFIG_PACKET=y |
276 | # CONFIG_PACKET_MMAP is not set | 282 | # CONFIG_PACKET_MMAP is not set |
277 | CONFIG_UNIX=y | 283 | CONFIG_UNIX=y |
@@ -323,6 +329,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
323 | # CONFIG_ECONET is not set | 329 | # CONFIG_ECONET is not set |
324 | # CONFIG_WAN_ROUTER is not set | 330 | # CONFIG_WAN_ROUTER is not set |
325 | # CONFIG_NET_SCHED is not set | 331 | # CONFIG_NET_SCHED is not set |
332 | # CONFIG_DCB is not set | ||
326 | 333 | ||
327 | # | 334 | # |
328 | # Network testing | 335 | # Network testing |
@@ -338,8 +345,9 @@ CONFIG_WIRELESS=y | |||
338 | # CONFIG_CFG80211 is not set | 345 | # CONFIG_CFG80211 is not set |
339 | CONFIG_WIRELESS_OLD_REGULATORY=y | 346 | CONFIG_WIRELESS_OLD_REGULATORY=y |
340 | # CONFIG_WIRELESS_EXT is not set | 347 | # CONFIG_WIRELESS_EXT is not set |
348 | # CONFIG_LIB80211 is not set | ||
341 | # CONFIG_MAC80211 is not set | 349 | # CONFIG_MAC80211 is not set |
342 | # CONFIG_IEEE80211 is not set | 350 | # CONFIG_WIMAX is not set |
343 | # CONFIG_RFKILL is not set | 351 | # CONFIG_RFKILL is not set |
344 | # CONFIG_NET_9P is not set | 352 | # CONFIG_NET_9P is not set |
345 | 353 | ||
@@ -428,6 +436,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
428 | # CONFIG_MTD_ONENAND is not set | 436 | # CONFIG_MTD_ONENAND is not set |
429 | 437 | ||
430 | # | 438 | # |
439 | # LPDDR flash memory drivers | ||
440 | # | ||
441 | # CONFIG_MTD_LPDDR is not set | ||
442 | # CONFIG_MTD_QINFO_PROBE is not set | ||
443 | |||
444 | # | ||
431 | # UBI - Unsorted block images | 445 | # UBI - Unsorted block images |
432 | # | 446 | # |
433 | # CONFIG_MTD_UBI is not set | 447 | # CONFIG_MTD_UBI is not set |
@@ -470,6 +484,9 @@ CONFIG_DAVICOM_PHY=y | |||
470 | # CONFIG_BROADCOM_PHY is not set | 484 | # CONFIG_BROADCOM_PHY is not set |
471 | # CONFIG_ICPLUS_PHY is not set | 485 | # CONFIG_ICPLUS_PHY is not set |
472 | # CONFIG_REALTEK_PHY is not set | 486 | # CONFIG_REALTEK_PHY is not set |
487 | # CONFIG_NATIONAL_PHY is not set | ||
488 | # CONFIG_STE10XP is not set | ||
489 | # CONFIG_LSI_ET1011C_PHY is not set | ||
473 | # CONFIG_FIXED_PHY is not set | 490 | # CONFIG_FIXED_PHY is not set |
474 | # CONFIG_MDIO_BITBANG is not set | 491 | # CONFIG_MDIO_BITBANG is not set |
475 | CONFIG_NET_ETHERNET=y | 492 | CONFIG_NET_ETHERNET=y |
@@ -495,6 +512,10 @@ CONFIG_FS_ENET_MDIO_FEC=y | |||
495 | # CONFIG_WLAN_PRE80211 is not set | 512 | # CONFIG_WLAN_PRE80211 is not set |
496 | # CONFIG_WLAN_80211 is not set | 513 | # CONFIG_WLAN_80211 is not set |
497 | # CONFIG_IWLWIFI_LEDS is not set | 514 | # CONFIG_IWLWIFI_LEDS is not set |
515 | |||
516 | # | ||
517 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
518 | # | ||
498 | # CONFIG_WAN is not set | 519 | # CONFIG_WAN is not set |
499 | # CONFIG_PPP is not set | 520 | # CONFIG_PPP is not set |
500 | # CONFIG_SLIP is not set | 521 | # CONFIG_SLIP is not set |
@@ -580,7 +601,9 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
580 | CONFIG_SERIAL_CPM=y | 601 | CONFIG_SERIAL_CPM=y |
581 | CONFIG_SERIAL_CPM_CONSOLE=y | 602 | CONFIG_SERIAL_CPM_CONSOLE=y |
582 | CONFIG_UNIX98_PTYS=y | 603 | CONFIG_UNIX98_PTYS=y |
604 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
583 | # CONFIG_LEGACY_PTYS is not set | 605 | # CONFIG_LEGACY_PTYS is not set |
606 | # CONFIG_HVC_UDBG is not set | ||
584 | # CONFIG_IPMI_HANDLER is not set | 607 | # CONFIG_IPMI_HANDLER is not set |
585 | CONFIG_HW_RANDOM=y | 608 | CONFIG_HW_RANDOM=y |
586 | # CONFIG_NVRAM is not set | 609 | # CONFIG_NVRAM is not set |
@@ -598,11 +621,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
598 | # CONFIG_HWMON is not set | 621 | # CONFIG_HWMON is not set |
599 | CONFIG_THERMAL=y | 622 | CONFIG_THERMAL=y |
600 | # CONFIG_WATCHDOG is not set | 623 | # CONFIG_WATCHDOG is not set |
624 | CONFIG_SSB_POSSIBLE=y | ||
601 | 625 | ||
602 | # | 626 | # |
603 | # Sonics Silicon Backplane | 627 | # Sonics Silicon Backplane |
604 | # | 628 | # |
605 | CONFIG_SSB_POSSIBLE=y | ||
606 | # CONFIG_SSB is not set | 629 | # CONFIG_SSB is not set |
607 | 630 | ||
608 | # | 631 | # |
@@ -612,14 +635,7 @@ CONFIG_SSB_POSSIBLE=y | |||
612 | # CONFIG_MFD_SM501 is not set | 635 | # CONFIG_MFD_SM501 is not set |
613 | # CONFIG_HTC_PASIC3 is not set | 636 | # CONFIG_HTC_PASIC3 is not set |
614 | # CONFIG_MFD_TMIO is not set | 637 | # CONFIG_MFD_TMIO is not set |
615 | |||
616 | # | ||
617 | # Voltage and Current regulators | ||
618 | # | ||
619 | # CONFIG_REGULATOR is not set | 638 | # CONFIG_REGULATOR is not set |
620 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
621 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
622 | # CONFIG_REGULATOR_BQ24022 is not set | ||
623 | 639 | ||
624 | # | 640 | # |
625 | # Multimedia devices | 641 | # Multimedia devices |
@@ -674,6 +690,7 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
674 | CONFIG_FILE_LOCKING=y | 690 | CONFIG_FILE_LOCKING=y |
675 | # CONFIG_XFS_FS is not set | 691 | # CONFIG_XFS_FS is not set |
676 | # CONFIG_OCFS2_FS is not set | 692 | # CONFIG_OCFS2_FS is not set |
693 | # CONFIG_BTRFS_FS is not set | ||
677 | # CONFIG_DNOTIFY is not set | 694 | # CONFIG_DNOTIFY is not set |
678 | # CONFIG_INOTIFY is not set | 695 | # CONFIG_INOTIFY is not set |
679 | # CONFIG_QUOTA is not set | 696 | # CONFIG_QUOTA is not set |
@@ -706,10 +723,7 @@ CONFIG_TMPFS=y | |||
706 | # CONFIG_TMPFS_POSIX_ACL is not set | 723 | # CONFIG_TMPFS_POSIX_ACL is not set |
707 | # CONFIG_HUGETLB_PAGE is not set | 724 | # CONFIG_HUGETLB_PAGE is not set |
708 | # CONFIG_CONFIGFS_FS is not set | 725 | # CONFIG_CONFIGFS_FS is not set |
709 | 726 | CONFIG_MISC_FILESYSTEMS=y | |
710 | # | ||
711 | # Miscellaneous filesystems | ||
712 | # | ||
713 | # CONFIG_ADFS_FS is not set | 727 | # CONFIG_ADFS_FS is not set |
714 | # CONFIG_AFFS_FS is not set | 728 | # CONFIG_AFFS_FS is not set |
715 | # CONFIG_HFS_FS is not set | 729 | # CONFIG_HFS_FS is not set |
@@ -719,6 +733,7 @@ CONFIG_TMPFS=y | |||
719 | # CONFIG_EFS_FS is not set | 733 | # CONFIG_EFS_FS is not set |
720 | # CONFIG_JFFS2_FS is not set | 734 | # CONFIG_JFFS2_FS is not set |
721 | CONFIG_CRAMFS=y | 735 | CONFIG_CRAMFS=y |
736 | # CONFIG_SQUASHFS is not set | ||
722 | # CONFIG_VXFS_FS is not set | 737 | # CONFIG_VXFS_FS is not set |
723 | # CONFIG_MINIX_FS is not set | 738 | # CONFIG_MINIX_FS is not set |
724 | # CONFIG_OMFS_FS is not set | 739 | # CONFIG_OMFS_FS is not set |
@@ -774,6 +789,7 @@ CONFIG_MSDOS_PARTITION=y | |||
774 | # | 789 | # |
775 | # Library routines | 790 | # Library routines |
776 | # | 791 | # |
792 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
777 | # CONFIG_CRC_CCITT is not set | 793 | # CONFIG_CRC_CCITT is not set |
778 | # CONFIG_CRC16 is not set | 794 | # CONFIG_CRC16 is not set |
779 | # CONFIG_CRC_T10DIF is not set | 795 | # CONFIG_CRC_T10DIF is not set |
@@ -821,6 +837,7 @@ CONFIG_DEBUG_INFO=y | |||
821 | # CONFIG_DEBUG_MEMORY_INIT is not set | 837 | # CONFIG_DEBUG_MEMORY_INIT is not set |
822 | # CONFIG_DEBUG_LIST is not set | 838 | # CONFIG_DEBUG_LIST is not set |
823 | # CONFIG_DEBUG_SG is not set | 839 | # CONFIG_DEBUG_SG is not set |
840 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
824 | # CONFIG_BOOT_PRINTK_DELAY is not set | 841 | # CONFIG_BOOT_PRINTK_DELAY is not set |
825 | # CONFIG_RCU_TORTURE_TEST is not set | 842 | # CONFIG_RCU_TORTURE_TEST is not set |
826 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 843 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -829,6 +846,8 @@ CONFIG_DEBUG_INFO=y | |||
829 | # CONFIG_FAULT_INJECTION is not set | 846 | # CONFIG_FAULT_INJECTION is not set |
830 | # CONFIG_LATENCYTOP is not set | 847 | # CONFIG_LATENCYTOP is not set |
831 | CONFIG_HAVE_FUNCTION_TRACER=y | 848 | CONFIG_HAVE_FUNCTION_TRACER=y |
849 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
850 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
832 | 851 | ||
833 | # | 852 | # |
834 | # Tracers | 853 | # Tracers |
@@ -837,11 +856,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
837 | # CONFIG_SCHED_TRACER is not set | 856 | # CONFIG_SCHED_TRACER is not set |
838 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 857 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
839 | # CONFIG_BOOT_TRACER is not set | 858 | # CONFIG_BOOT_TRACER is not set |
859 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
840 | # CONFIG_STACK_TRACER is not set | 860 | # CONFIG_STACK_TRACER is not set |
841 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 861 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
842 | # CONFIG_SAMPLES is not set | 862 | # CONFIG_SAMPLES is not set |
843 | CONFIG_HAVE_ARCH_KGDB=y | 863 | CONFIG_HAVE_ARCH_KGDB=y |
844 | # CONFIG_KGDB is not set | 864 | # CONFIG_KGDB is not set |
865 | CONFIG_PRINT_STACK_DEPTH=64 | ||
845 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 866 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
846 | # CONFIG_DEBUG_STACK_USAGE is not set | 867 | # CONFIG_DEBUG_STACK_USAGE is not set |
847 | # CONFIG_DEBUG_PAGEALLOC is not set | 868 | # CONFIG_DEBUG_PAGEALLOC is not set |
diff --git a/arch/powerpc/configs/c2k_defconfig b/arch/powerpc/configs/c2k_defconfig index 74c6feabdd77..5103319a7f56 100644 --- a/arch/powerpc/configs/c2k_defconfig +++ b/arch/powerpc/configs/c2k_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:34 2008 | 4 | # Mon Jan 26 15:35:26 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -45,7 +45,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
45 | CONFIG_PPC=y | 45 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 46 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 47 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 48 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 50 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 51 | CONFIG_OF=y |
@@ -78,12 +78,12 @@ CONFIG_AUDITSYSCALL=y | |||
78 | CONFIG_AUDIT_TREE=y | 78 | CONFIG_AUDIT_TREE=y |
79 | # CONFIG_IKCONFIG is not set | 79 | # CONFIG_IKCONFIG is not set |
80 | CONFIG_LOG_BUF_SHIFT=17 | 80 | CONFIG_LOG_BUF_SHIFT=17 |
81 | # CONFIG_CGROUPS is not set | ||
82 | CONFIG_GROUP_SCHED=y | 81 | CONFIG_GROUP_SCHED=y |
83 | CONFIG_FAIR_GROUP_SCHED=y | 82 | CONFIG_FAIR_GROUP_SCHED=y |
84 | # CONFIG_RT_GROUP_SCHED is not set | 83 | # CONFIG_RT_GROUP_SCHED is not set |
85 | CONFIG_USER_SCHED=y | 84 | CONFIG_USER_SCHED=y |
86 | # CONFIG_CGROUP_SCHED is not set | 85 | # CONFIG_CGROUP_SCHED is not set |
86 | # CONFIG_CGROUPS is not set | ||
87 | CONFIG_SYSFS_DEPRECATED=y | 87 | CONFIG_SYSFS_DEPRECATED=y |
88 | CONFIG_SYSFS_DEPRECATED_V2=y | 88 | CONFIG_SYSFS_DEPRECATED_V2=y |
89 | # CONFIG_RELAY is not set | 89 | # CONFIG_RELAY is not set |
@@ -122,6 +122,7 @@ CONFIG_SLUB_DEBUG=y | |||
122 | CONFIG_SLUB=y | 122 | CONFIG_SLUB=y |
123 | # CONFIG_SLOB is not set | 123 | # CONFIG_SLOB is not set |
124 | CONFIG_PROFILING=y | 124 | CONFIG_PROFILING=y |
125 | CONFIG_TRACEPOINTS=y | ||
125 | # CONFIG_MARKERS is not set | 126 | # CONFIG_MARKERS is not set |
126 | CONFIG_OPROFILE=m | 127 | CONFIG_OPROFILE=m |
127 | CONFIG_HAVE_OPROFILE=y | 128 | CONFIG_HAVE_OPROFILE=y |
@@ -135,7 +136,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
135 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 136 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
136 | CONFIG_SLABINFO=y | 137 | CONFIG_SLABINFO=y |
137 | CONFIG_RT_MUTEXES=y | 138 | CONFIG_RT_MUTEXES=y |
138 | # CONFIG_TINY_SHMEM is not set | ||
139 | CONFIG_BASE_SMALL=0 | 139 | CONFIG_BASE_SMALL=0 |
140 | CONFIG_MODULES=y | 140 | CONFIG_MODULES=y |
141 | # CONFIG_MODULE_FORCE_LOAD is not set | 141 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -143,11 +143,9 @@ CONFIG_MODULE_UNLOAD=y | |||
143 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 143 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
144 | CONFIG_MODVERSIONS=y | 144 | CONFIG_MODVERSIONS=y |
145 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 145 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
146 | CONFIG_KMOD=y | ||
147 | CONFIG_BLOCK=y | 146 | CONFIG_BLOCK=y |
148 | CONFIG_LBD=y | 147 | CONFIG_LBD=y |
149 | # CONFIG_BLK_DEV_IO_TRACE is not set | 148 | # CONFIG_BLK_DEV_IO_TRACE is not set |
150 | # CONFIG_LSF is not set | ||
151 | # CONFIG_BLK_DEV_BSG is not set | 149 | # CONFIG_BLK_DEV_BSG is not set |
152 | # CONFIG_BLK_DEV_INTEGRITY is not set | 150 | # CONFIG_BLK_DEV_INTEGRITY is not set |
153 | 151 | ||
@@ -164,6 +162,10 @@ CONFIG_DEFAULT_CFQ=y | |||
164 | # CONFIG_DEFAULT_NOOP is not set | 162 | # CONFIG_DEFAULT_NOOP is not set |
165 | CONFIG_DEFAULT_IOSCHED="cfq" | 163 | CONFIG_DEFAULT_IOSCHED="cfq" |
166 | CONFIG_CLASSIC_RCU=y | 164 | CONFIG_CLASSIC_RCU=y |
165 | # CONFIG_TREE_RCU is not set | ||
166 | # CONFIG_PREEMPT_RCU is not set | ||
167 | # CONFIG_TREE_RCU_TRACE is not set | ||
168 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
167 | # CONFIG_FREEZER is not set | 169 | # CONFIG_FREEZER is not set |
168 | 170 | ||
169 | # | 171 | # |
@@ -221,6 +223,7 @@ CONFIG_CPU_FREQ_GOV_ONDEMAND=m | |||
221 | # | 223 | # |
222 | # CONFIG_TAU is not set | 224 | # CONFIG_TAU is not set |
223 | # CONFIG_FSL_ULI1575 is not set | 225 | # CONFIG_FSL_ULI1575 is not set |
226 | # CONFIG_SIMPLE_GPIO is not set | ||
224 | 227 | ||
225 | # | 228 | # |
226 | # Kernel options | 229 | # Kernel options |
@@ -243,10 +246,12 @@ CONFIG_BINFMT_ELF=y | |||
243 | # CONFIG_HAVE_AOUT is not set | 246 | # CONFIG_HAVE_AOUT is not set |
244 | CONFIG_BINFMT_MISC=y | 247 | CONFIG_BINFMT_MISC=y |
245 | # CONFIG_IOMMU_HELPER is not set | 248 | # CONFIG_IOMMU_HELPER is not set |
249 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
246 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 250 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
247 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 251 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
248 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 252 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
249 | # CONFIG_KEXEC is not set | 253 | # CONFIG_KEXEC is not set |
254 | # CONFIG_CRASH_DUMP is not set | ||
250 | CONFIG_ARCH_FLATMEM_ENABLE=y | 255 | CONFIG_ARCH_FLATMEM_ENABLE=y |
251 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 256 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
252 | CONFIG_SELECT_MEMORY_MODEL=y | 257 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -258,12 +263,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
258 | CONFIG_PAGEFLAGS_EXTENDED=y | 263 | CONFIG_PAGEFLAGS_EXTENDED=y |
259 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 264 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
260 | CONFIG_MIGRATION=y | 265 | CONFIG_MIGRATION=y |
261 | # CONFIG_RESOURCES_64BIT is not set | ||
262 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 266 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
263 | CONFIG_ZONE_DMA_FLAG=1 | 267 | CONFIG_ZONE_DMA_FLAG=1 |
264 | CONFIG_BOUNCE=y | 268 | CONFIG_BOUNCE=y |
265 | CONFIG_VIRT_TO_BUS=y | 269 | CONFIG_VIRT_TO_BUS=y |
266 | CONFIG_UNEVICTABLE_LRU=y | 270 | CONFIG_UNEVICTABLE_LRU=y |
271 | CONFIG_PPC_4K_PAGES=y | ||
272 | # CONFIG_PPC_16K_PAGES is not set | ||
273 | # CONFIG_PPC_64K_PAGES is not set | ||
267 | CONFIG_FORCE_MAX_ZONEORDER=11 | 274 | CONFIG_FORCE_MAX_ZONEORDER=11 |
268 | # CONFIG_PROC_DEVICETREE is not set | 275 | # CONFIG_PROC_DEVICETREE is not set |
269 | # CONFIG_CMDLINE_BOOL is not set | 276 | # CONFIG_CMDLINE_BOOL is not set |
@@ -287,6 +294,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
287 | CONFIG_PCI_MSI=y | 294 | CONFIG_PCI_MSI=y |
288 | # CONFIG_PCI_LEGACY is not set | 295 | # CONFIG_PCI_LEGACY is not set |
289 | # CONFIG_PCI_DEBUG is not set | 296 | # CONFIG_PCI_DEBUG is not set |
297 | # CONFIG_PCI_STUB is not set | ||
290 | # CONFIG_PCCARD is not set | 298 | # CONFIG_PCCARD is not set |
291 | CONFIG_HOTPLUG_PCI=y | 299 | CONFIG_HOTPLUG_PCI=y |
292 | # CONFIG_HOTPLUG_PCI_FAKE is not set | 300 | # CONFIG_HOTPLUG_PCI_FAKE is not set |
@@ -314,6 +322,8 @@ CONFIG_NET=y | |||
314 | # | 322 | # |
315 | # Networking options | 323 | # Networking options |
316 | # | 324 | # |
325 | # CONFIG_NET_NS is not set | ||
326 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
317 | CONFIG_PACKET=y | 327 | CONFIG_PACKET=y |
318 | CONFIG_PACKET_MMAP=y | 328 | CONFIG_PACKET_MMAP=y |
319 | CONFIG_UNIX=y | 329 | CONFIG_UNIX=y |
@@ -574,6 +584,7 @@ CONFIG_NET_SCH_TBF=m | |||
574 | CONFIG_NET_SCH_GRED=m | 584 | CONFIG_NET_SCH_GRED=m |
575 | CONFIG_NET_SCH_DSMARK=m | 585 | CONFIG_NET_SCH_DSMARK=m |
576 | CONFIG_NET_SCH_NETEM=m | 586 | CONFIG_NET_SCH_NETEM=m |
587 | # CONFIG_NET_SCH_DRR is not set | ||
577 | 588 | ||
578 | # | 589 | # |
579 | # Classification | 590 | # Classification |
@@ -594,6 +605,7 @@ CONFIG_NET_CLS_RSVP6=m | |||
594 | # CONFIG_NET_CLS_ACT is not set | 605 | # CONFIG_NET_CLS_ACT is not set |
595 | CONFIG_NET_CLS_IND=y | 606 | CONFIG_NET_CLS_IND=y |
596 | CONFIG_NET_SCH_FIFO=y | 607 | CONFIG_NET_SCH_FIFO=y |
608 | # CONFIG_DCB is not set | ||
597 | 609 | ||
598 | # | 610 | # |
599 | # Network testing | 611 | # Network testing |
@@ -616,8 +628,6 @@ CONFIG_BT_HIDP=m | |||
616 | # | 628 | # |
617 | # Bluetooth device drivers | 629 | # Bluetooth device drivers |
618 | # | 630 | # |
619 | CONFIG_BT_HCIUSB=m | ||
620 | CONFIG_BT_HCIUSB_SCO=y | ||
621 | # CONFIG_BT_HCIBTUSB is not set | 631 | # CONFIG_BT_HCIBTUSB is not set |
622 | CONFIG_BT_HCIUART=m | 632 | CONFIG_BT_HCIUART=m |
623 | CONFIG_BT_HCIUART_H4=y | 633 | CONFIG_BT_HCIUART_H4=y |
@@ -635,12 +645,9 @@ CONFIG_WIRELESS=y | |||
635 | CONFIG_WIRELESS_OLD_REGULATORY=y | 645 | CONFIG_WIRELESS_OLD_REGULATORY=y |
636 | CONFIG_WIRELESS_EXT=y | 646 | CONFIG_WIRELESS_EXT=y |
637 | CONFIG_WIRELESS_EXT_SYSFS=y | 647 | CONFIG_WIRELESS_EXT_SYSFS=y |
648 | # CONFIG_LIB80211 is not set | ||
638 | # CONFIG_MAC80211 is not set | 649 | # CONFIG_MAC80211 is not set |
639 | CONFIG_IEEE80211=m | 650 | # CONFIG_WIMAX is not set |
640 | # CONFIG_IEEE80211_DEBUG is not set | ||
641 | CONFIG_IEEE80211_CRYPT_WEP=m | ||
642 | CONFIG_IEEE80211_CRYPT_CCMP=m | ||
643 | CONFIG_IEEE80211_CRYPT_TKIP=m | ||
644 | # CONFIG_RFKILL is not set | 651 | # CONFIG_RFKILL is not set |
645 | # CONFIG_NET_9P is not set | 652 | # CONFIG_NET_9P is not set |
646 | 653 | ||
@@ -665,6 +672,7 @@ CONFIG_MTD=y | |||
665 | # CONFIG_MTD_DEBUG is not set | 672 | # CONFIG_MTD_DEBUG is not set |
666 | CONFIG_MTD_CONCAT=m | 673 | CONFIG_MTD_CONCAT=m |
667 | CONFIG_MTD_PARTITIONS=y | 674 | CONFIG_MTD_PARTITIONS=y |
675 | # CONFIG_MTD_TESTS is not set | ||
668 | # CONFIG_MTD_REDBOOT_PARTS is not set | 676 | # CONFIG_MTD_REDBOOT_PARTS is not set |
669 | # CONFIG_MTD_CMDLINE_PARTS is not set | 677 | # CONFIG_MTD_CMDLINE_PARTS is not set |
670 | CONFIG_MTD_OF_PARTS=y | 678 | CONFIG_MTD_OF_PARTS=y |
@@ -737,6 +745,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
737 | # CONFIG_MTD_ONENAND is not set | 745 | # CONFIG_MTD_ONENAND is not set |
738 | 746 | ||
739 | # | 747 | # |
748 | # LPDDR flash memory drivers | ||
749 | # | ||
750 | # CONFIG_MTD_LPDDR is not set | ||
751 | # CONFIG_MTD_QINFO_PROBE is not set | ||
752 | |||
753 | # | ||
740 | # UBI - Unsorted block images | 754 | # UBI - Unsorted block images |
741 | # | 755 | # |
742 | # CONFIG_MTD_UBI is not set | 756 | # CONFIG_MTD_UBI is not set |
@@ -834,6 +848,8 @@ CONFIG_MEGARAID_MAILBOX=m | |||
834 | CONFIG_MEGARAID_SAS=m | 848 | CONFIG_MEGARAID_SAS=m |
835 | # CONFIG_SCSI_HPTIOP is not set | 849 | # CONFIG_SCSI_HPTIOP is not set |
836 | # CONFIG_SCSI_BUSLOGIC is not set | 850 | # CONFIG_SCSI_BUSLOGIC is not set |
851 | # CONFIG_LIBFC is not set | ||
852 | # CONFIG_FCOE is not set | ||
837 | # CONFIG_SCSI_DMX3191D is not set | 853 | # CONFIG_SCSI_DMX3191D is not set |
838 | # CONFIG_SCSI_EATA is not set | 854 | # CONFIG_SCSI_EATA is not set |
839 | CONFIG_SCSI_FUTURE_DOMAIN=m | 855 | CONFIG_SCSI_FUTURE_DOMAIN=m |
@@ -852,6 +868,7 @@ CONFIG_SCSI_QLOGIC_1280=m | |||
852 | # CONFIG_SCSI_QLA_FC is not set | 868 | # CONFIG_SCSI_QLA_FC is not set |
853 | # CONFIG_SCSI_QLA_ISCSI is not set | 869 | # CONFIG_SCSI_QLA_ISCSI is not set |
854 | CONFIG_SCSI_LPFC=m | 870 | CONFIG_SCSI_LPFC=m |
871 | # CONFIG_SCSI_LPFC_DEBUG_FS is not set | ||
855 | # CONFIG_SCSI_DC395x is not set | 872 | # CONFIG_SCSI_DC395x is not set |
856 | # CONFIG_SCSI_DC390T is not set | 873 | # CONFIG_SCSI_DC390T is not set |
857 | # CONFIG_SCSI_NSP32 is not set | 874 | # CONFIG_SCSI_NSP32 is not set |
@@ -896,6 +913,9 @@ CONFIG_VITESSE_PHY=y | |||
896 | # CONFIG_BROADCOM_PHY is not set | 913 | # CONFIG_BROADCOM_PHY is not set |
897 | # CONFIG_ICPLUS_PHY is not set | 914 | # CONFIG_ICPLUS_PHY is not set |
898 | # CONFIG_REALTEK_PHY is not set | 915 | # CONFIG_REALTEK_PHY is not set |
916 | # CONFIG_NATIONAL_PHY is not set | ||
917 | # CONFIG_STE10XP is not set | ||
918 | # CONFIG_LSI_ET1011C_PHY is not set | ||
899 | # CONFIG_FIXED_PHY is not set | 919 | # CONFIG_FIXED_PHY is not set |
900 | # CONFIG_MDIO_BITBANG is not set | 920 | # CONFIG_MDIO_BITBANG is not set |
901 | CONFIG_NET_ETHERNET=y | 921 | CONFIG_NET_ETHERNET=y |
@@ -949,6 +969,10 @@ CONFIG_MV643XX_ETH=y | |||
949 | # CONFIG_IWLWIFI_LEDS is not set | 969 | # CONFIG_IWLWIFI_LEDS is not set |
950 | 970 | ||
951 | # | 971 | # |
972 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
973 | # | ||
974 | |||
975 | # | ||
952 | # USB Network Adapters | 976 | # USB Network Adapters |
953 | # | 977 | # |
954 | # CONFIG_USB_CATC is not set | 978 | # CONFIG_USB_CATC is not set |
@@ -1055,7 +1079,9 @@ CONFIG_SERIAL_CORE=y | |||
1055 | CONFIG_SERIAL_CORE_CONSOLE=y | 1079 | CONFIG_SERIAL_CORE_CONSOLE=y |
1056 | # CONFIG_SERIAL_JSM is not set | 1080 | # CONFIG_SERIAL_JSM is not set |
1057 | CONFIG_UNIX98_PTYS=y | 1081 | CONFIG_UNIX98_PTYS=y |
1082 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
1058 | # CONFIG_LEGACY_PTYS is not set | 1083 | # CONFIG_LEGACY_PTYS is not set |
1084 | # CONFIG_HVC_UDBG is not set | ||
1059 | # CONFIG_IPMI_HANDLER is not set | 1085 | # CONFIG_IPMI_HANDLER is not set |
1060 | CONFIG_HW_RANDOM=m | 1086 | CONFIG_HW_RANDOM=m |
1061 | CONFIG_NVRAM=m | 1087 | CONFIG_NVRAM=m |
@@ -1151,8 +1177,10 @@ CONFIG_SENSORS_ADM1026=m | |||
1151 | # CONFIG_SENSORS_ADM1029 is not set | 1177 | # CONFIG_SENSORS_ADM1029 is not set |
1152 | CONFIG_SENSORS_ADM1031=m | 1178 | CONFIG_SENSORS_ADM1031=m |
1153 | # CONFIG_SENSORS_ADM9240 is not set | 1179 | # CONFIG_SENSORS_ADM9240 is not set |
1180 | # CONFIG_SENSORS_ADT7462 is not set | ||
1154 | # CONFIG_SENSORS_ADT7470 is not set | 1181 | # CONFIG_SENSORS_ADT7470 is not set |
1155 | # CONFIG_SENSORS_ADT7473 is not set | 1182 | # CONFIG_SENSORS_ADT7473 is not set |
1183 | # CONFIG_SENSORS_ADT7475 is not set | ||
1156 | # CONFIG_SENSORS_ATXP1 is not set | 1184 | # CONFIG_SENSORS_ATXP1 is not set |
1157 | CONFIG_SENSORS_DS1621=m | 1185 | CONFIG_SENSORS_DS1621=m |
1158 | # CONFIG_SENSORS_I5K_AMB is not set | 1186 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -1173,6 +1201,7 @@ CONFIG_SENSORS_LM87=m | |||
1173 | CONFIG_SENSORS_LM90=m | 1201 | CONFIG_SENSORS_LM90=m |
1174 | # CONFIG_SENSORS_LM92 is not set | 1202 | # CONFIG_SENSORS_LM92 is not set |
1175 | # CONFIG_SENSORS_LM93 is not set | 1203 | # CONFIG_SENSORS_LM93 is not set |
1204 | # CONFIG_SENSORS_LTC4245 is not set | ||
1176 | CONFIG_SENSORS_MAX1619=m | 1205 | CONFIG_SENSORS_MAX1619=m |
1177 | # CONFIG_SENSORS_MAX6650 is not set | 1206 | # CONFIG_SENSORS_MAX6650 is not set |
1178 | # CONFIG_SENSORS_PC87360 is not set | 1207 | # CONFIG_SENSORS_PC87360 is not set |
@@ -1218,11 +1247,11 @@ CONFIG_WDT_501_PCI=y | |||
1218 | # USB-based Watchdog Cards | 1247 | # USB-based Watchdog Cards |
1219 | # | 1248 | # |
1220 | CONFIG_USBPCWATCHDOG=m | 1249 | CONFIG_USBPCWATCHDOG=m |
1250 | CONFIG_SSB_POSSIBLE=y | ||
1221 | 1251 | ||
1222 | # | 1252 | # |
1223 | # Sonics Silicon Backplane | 1253 | # Sonics Silicon Backplane |
1224 | # | 1254 | # |
1225 | CONFIG_SSB_POSSIBLE=y | ||
1226 | # CONFIG_SSB is not set | 1255 | # CONFIG_SSB is not set |
1227 | 1256 | ||
1228 | # | 1257 | # |
@@ -1234,14 +1263,8 @@ CONFIG_SSB_POSSIBLE=y | |||
1234 | # CONFIG_MFD_TMIO is not set | 1263 | # CONFIG_MFD_TMIO is not set |
1235 | # CONFIG_MFD_WM8400 is not set | 1264 | # CONFIG_MFD_WM8400 is not set |
1236 | # CONFIG_MFD_WM8350_I2C is not set | 1265 | # CONFIG_MFD_WM8350_I2C is not set |
1237 | 1266 | # CONFIG_MFD_PCF50633 is not set | |
1238 | # | ||
1239 | # Voltage and Current regulators | ||
1240 | # | ||
1241 | # CONFIG_REGULATOR is not set | 1267 | # CONFIG_REGULATOR is not set |
1242 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
1243 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
1244 | # CONFIG_REGULATOR_BQ24022 is not set | ||
1245 | 1268 | ||
1246 | # | 1269 | # |
1247 | # Multimedia devices | 1270 | # Multimedia devices |
@@ -1298,7 +1321,7 @@ CONFIG_USB_DEVICEFS=y | |||
1298 | # CONFIG_USB_DYNAMIC_MINORS is not set | 1321 | # CONFIG_USB_DYNAMIC_MINORS is not set |
1299 | CONFIG_USB_SUSPEND=y | 1322 | CONFIG_USB_SUSPEND=y |
1300 | # CONFIG_USB_OTG is not set | 1323 | # CONFIG_USB_OTG is not set |
1301 | CONFIG_USB_MON=y | 1324 | CONFIG_USB_MON=m |
1302 | # CONFIG_USB_WUSB is not set | 1325 | # CONFIG_USB_WUSB is not set |
1303 | # CONFIG_USB_WUSB_CBAF is not set | 1326 | # CONFIG_USB_WUSB_CBAF is not set |
1304 | 1327 | ||
@@ -1310,6 +1333,7 @@ CONFIG_USB_EHCI_HCD=m | |||
1310 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | 1333 | CONFIG_USB_EHCI_ROOT_HUB_TT=y |
1311 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1334 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1312 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1335 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1336 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1313 | # CONFIG_USB_ISP116X_HCD is not set | 1337 | # CONFIG_USB_ISP116X_HCD is not set |
1314 | # CONFIG_USB_ISP1760_HCD is not set | 1338 | # CONFIG_USB_ISP1760_HCD is not set |
1315 | CONFIG_USB_OHCI_HCD=m | 1339 | CONFIG_USB_OHCI_HCD=m |
@@ -1339,18 +1363,17 @@ CONFIG_USB_PRINTER=m | |||
1339 | # CONFIG_USB_TMC is not set | 1363 | # CONFIG_USB_TMC is not set |
1340 | 1364 | ||
1341 | # | 1365 | # |
1342 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1366 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1343 | # | 1367 | # |
1344 | 1368 | ||
1345 | # | 1369 | # |
1346 | # may also be needed; see USB_STORAGE Help for more information | 1370 | # see USB_STORAGE Help for more information |
1347 | # | 1371 | # |
1348 | CONFIG_USB_STORAGE=m | 1372 | CONFIG_USB_STORAGE=m |
1349 | # CONFIG_USB_STORAGE_DEBUG is not set | 1373 | # CONFIG_USB_STORAGE_DEBUG is not set |
1350 | CONFIG_USB_STORAGE_DATAFAB=y | 1374 | CONFIG_USB_STORAGE_DATAFAB=y |
1351 | CONFIG_USB_STORAGE_FREECOM=y | 1375 | CONFIG_USB_STORAGE_FREECOM=y |
1352 | CONFIG_USB_STORAGE_ISD200=y | 1376 | CONFIG_USB_STORAGE_ISD200=y |
1353 | CONFIG_USB_STORAGE_DPCM=y | ||
1354 | # CONFIG_USB_STORAGE_USBAT is not set | 1377 | # CONFIG_USB_STORAGE_USBAT is not set |
1355 | CONFIG_USB_STORAGE_SDDR09=y | 1378 | CONFIG_USB_STORAGE_SDDR09=y |
1356 | CONFIG_USB_STORAGE_SDDR55=y | 1379 | CONFIG_USB_STORAGE_SDDR55=y |
@@ -1419,12 +1442,14 @@ CONFIG_USB_SERIAL_PL2303=m | |||
1419 | # CONFIG_USB_SERIAL_HP4X is not set | 1442 | # CONFIG_USB_SERIAL_HP4X is not set |
1420 | CONFIG_USB_SERIAL_SAFE=m | 1443 | CONFIG_USB_SERIAL_SAFE=m |
1421 | CONFIG_USB_SERIAL_SAFE_PADDED=y | 1444 | CONFIG_USB_SERIAL_SAFE_PADDED=y |
1445 | # CONFIG_USB_SERIAL_SIEMENS_MPI is not set | ||
1422 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set | 1446 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set |
1423 | # CONFIG_USB_SERIAL_TI is not set | 1447 | # CONFIG_USB_SERIAL_TI is not set |
1424 | CONFIG_USB_SERIAL_CYBERJACK=m | 1448 | CONFIG_USB_SERIAL_CYBERJACK=m |
1425 | CONFIG_USB_SERIAL_XIRCOM=m | 1449 | CONFIG_USB_SERIAL_XIRCOM=m |
1426 | # CONFIG_USB_SERIAL_OPTION is not set | 1450 | # CONFIG_USB_SERIAL_OPTION is not set |
1427 | CONFIG_USB_SERIAL_OMNINET=m | 1451 | CONFIG_USB_SERIAL_OMNINET=m |
1452 | # CONFIG_USB_SERIAL_OPTICON is not set | ||
1428 | # CONFIG_USB_SERIAL_DEBUG is not set | 1453 | # CONFIG_USB_SERIAL_DEBUG is not set |
1429 | 1454 | ||
1430 | # | 1455 | # |
@@ -1458,6 +1483,10 @@ CONFIG_USB_SPEEDTOUCH=m | |||
1458 | # CONFIG_USB_UEAGLEATM is not set | 1483 | # CONFIG_USB_UEAGLEATM is not set |
1459 | # CONFIG_USB_XUSBATM is not set | 1484 | # CONFIG_USB_XUSBATM is not set |
1460 | # CONFIG_USB_GADGET is not set | 1485 | # CONFIG_USB_GADGET is not set |
1486 | |||
1487 | # | ||
1488 | # OTG and related infrastructure | ||
1489 | # | ||
1461 | # CONFIG_UWB is not set | 1490 | # CONFIG_UWB is not set |
1462 | # CONFIG_MMC is not set | 1491 | # CONFIG_MMC is not set |
1463 | # CONFIG_MEMSTICK is not set | 1492 | # CONFIG_MEMSTICK is not set |
@@ -1500,19 +1529,23 @@ CONFIG_EXT3_FS_POSIX_ACL=y | |||
1500 | CONFIG_EXT3_FS_SECURITY=y | 1529 | CONFIG_EXT3_FS_SECURITY=y |
1501 | # CONFIG_EXT4_FS is not set | 1530 | # CONFIG_EXT4_FS is not set |
1502 | CONFIG_JBD=m | 1531 | CONFIG_JBD=m |
1532 | # CONFIG_JBD_DEBUG is not set | ||
1503 | CONFIG_FS_MBCACHE=m | 1533 | CONFIG_FS_MBCACHE=m |
1504 | # CONFIG_REISERFS_FS is not set | 1534 | # CONFIG_REISERFS_FS is not set |
1505 | # CONFIG_JFS_FS is not set | 1535 | # CONFIG_JFS_FS is not set |
1506 | CONFIG_FS_POSIX_ACL=y | 1536 | CONFIG_FS_POSIX_ACL=y |
1507 | CONFIG_FILE_LOCKING=y | 1537 | CONFIG_FILE_LOCKING=y |
1508 | # CONFIG_XFS_FS is not set | 1538 | # CONFIG_XFS_FS is not set |
1539 | # CONFIG_GFS2_FS is not set | ||
1509 | # CONFIG_OCFS2_FS is not set | 1540 | # CONFIG_OCFS2_FS is not set |
1541 | # CONFIG_BTRFS_FS is not set | ||
1510 | CONFIG_DNOTIFY=y | 1542 | CONFIG_DNOTIFY=y |
1511 | CONFIG_INOTIFY=y | 1543 | CONFIG_INOTIFY=y |
1512 | CONFIG_INOTIFY_USER=y | 1544 | CONFIG_INOTIFY_USER=y |
1513 | CONFIG_QUOTA=y | 1545 | CONFIG_QUOTA=y |
1514 | # CONFIG_QUOTA_NETLINK_INTERFACE is not set | 1546 | # CONFIG_QUOTA_NETLINK_INTERFACE is not set |
1515 | CONFIG_PRINT_QUOTA_WARNING=y | 1547 | CONFIG_PRINT_QUOTA_WARNING=y |
1548 | CONFIG_QUOTA_TREE=y | ||
1516 | # CONFIG_QFMT_V1 is not set | 1549 | # CONFIG_QFMT_V1 is not set |
1517 | CONFIG_QFMT_V2=y | 1550 | CONFIG_QFMT_V2=y |
1518 | CONFIG_QUOTACTL=y | 1551 | CONFIG_QUOTACTL=y |
@@ -1549,10 +1582,7 @@ CONFIG_TMPFS=y | |||
1549 | # CONFIG_TMPFS_POSIX_ACL is not set | 1582 | # CONFIG_TMPFS_POSIX_ACL is not set |
1550 | # CONFIG_HUGETLB_PAGE is not set | 1583 | # CONFIG_HUGETLB_PAGE is not set |
1551 | # CONFIG_CONFIGFS_FS is not set | 1584 | # CONFIG_CONFIGFS_FS is not set |
1552 | 1585 | CONFIG_MISC_FILESYSTEMS=y | |
1553 | # | ||
1554 | # Miscellaneous filesystems | ||
1555 | # | ||
1556 | # CONFIG_ADFS_FS is not set | 1586 | # CONFIG_ADFS_FS is not set |
1557 | # CONFIG_AFFS_FS is not set | 1587 | # CONFIG_AFFS_FS is not set |
1558 | # CONFIG_ECRYPT_FS is not set | 1588 | # CONFIG_ECRYPT_FS is not set |
@@ -1573,6 +1603,7 @@ CONFIG_JFFS2_ZLIB=y | |||
1573 | CONFIG_JFFS2_RTIME=y | 1603 | CONFIG_JFFS2_RTIME=y |
1574 | # CONFIG_JFFS2_RUBIN is not set | 1604 | # CONFIG_JFFS2_RUBIN is not set |
1575 | CONFIG_CRAMFS=m | 1605 | CONFIG_CRAMFS=m |
1606 | # CONFIG_SQUASHFS is not set | ||
1576 | CONFIG_VXFS_FS=m | 1607 | CONFIG_VXFS_FS=m |
1577 | # CONFIG_MINIX_FS is not set | 1608 | # CONFIG_MINIX_FS is not set |
1578 | # CONFIG_OMFS_FS is not set | 1609 | # CONFIG_OMFS_FS is not set |
@@ -1678,6 +1709,7 @@ CONFIG_NLS_UTF8=m | |||
1678 | # Library routines | 1709 | # Library routines |
1679 | # | 1710 | # |
1680 | CONFIG_BITREVERSE=y | 1711 | CONFIG_BITREVERSE=y |
1712 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1681 | CONFIG_CRC_CCITT=m | 1713 | CONFIG_CRC_CCITT=m |
1682 | # CONFIG_CRC16 is not set | 1714 | # CONFIG_CRC16 is not set |
1683 | CONFIG_CRC_T10DIF=m | 1715 | CONFIG_CRC_T10DIF=m |
@@ -1703,7 +1735,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
1703 | CONFIG_FRAME_WARN=1024 | 1735 | CONFIG_FRAME_WARN=1024 |
1704 | CONFIG_MAGIC_SYSRQ=y | 1736 | CONFIG_MAGIC_SYSRQ=y |
1705 | # CONFIG_UNUSED_SYMBOLS is not set | 1737 | # CONFIG_UNUSED_SYMBOLS is not set |
1706 | # CONFIG_DEBUG_FS is not set | 1738 | CONFIG_DEBUG_FS=y |
1707 | # CONFIG_HEADERS_CHECK is not set | 1739 | # CONFIG_HEADERS_CHECK is not set |
1708 | CONFIG_DEBUG_KERNEL=y | 1740 | CONFIG_DEBUG_KERNEL=y |
1709 | # CONFIG_DEBUG_SHIRQ is not set | 1741 | # CONFIG_DEBUG_SHIRQ is not set |
@@ -1722,6 +1754,7 @@ CONFIG_DEBUG_SPINLOCK=y | |||
1722 | # CONFIG_DEBUG_MUTEXES is not set | 1754 | # CONFIG_DEBUG_MUTEXES is not set |
1723 | CONFIG_DEBUG_SPINLOCK_SLEEP=y | 1755 | CONFIG_DEBUG_SPINLOCK_SLEEP=y |
1724 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | 1756 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set |
1757 | CONFIG_STACKTRACE=y | ||
1725 | # CONFIG_DEBUG_KOBJECT is not set | 1758 | # CONFIG_DEBUG_KOBJECT is not set |
1726 | CONFIG_DEBUG_HIGHMEM=y | 1759 | CONFIG_DEBUG_HIGHMEM=y |
1727 | CONFIG_DEBUG_BUGVERBOSE=y | 1760 | CONFIG_DEBUG_BUGVERBOSE=y |
@@ -1731,6 +1764,7 @@ CONFIG_DEBUG_INFO=y | |||
1731 | CONFIG_DEBUG_MEMORY_INIT=y | 1764 | CONFIG_DEBUG_MEMORY_INIT=y |
1732 | # CONFIG_DEBUG_LIST is not set | 1765 | # CONFIG_DEBUG_LIST is not set |
1733 | # CONFIG_DEBUG_SG is not set | 1766 | # CONFIG_DEBUG_SG is not set |
1767 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1734 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1768 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1735 | # CONFIG_RCU_TORTURE_TEST is not set | 1769 | # CONFIG_RCU_TORTURE_TEST is not set |
1736 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1770 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1741,7 +1775,12 @@ CONFIG_DEBUG_MEMORY_INIT=y | |||
1741 | # CONFIG_FAULT_INJECTION is not set | 1775 | # CONFIG_FAULT_INJECTION is not set |
1742 | # CONFIG_LATENCYTOP is not set | 1776 | # CONFIG_LATENCYTOP is not set |
1743 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1777 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1778 | CONFIG_NOP_TRACER=y | ||
1744 | CONFIG_HAVE_FUNCTION_TRACER=y | 1779 | CONFIG_HAVE_FUNCTION_TRACER=y |
1780 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1781 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1782 | CONFIG_RING_BUFFER=y | ||
1783 | CONFIG_TRACING=y | ||
1745 | 1784 | ||
1746 | # | 1785 | # |
1747 | # Tracers | 1786 | # Tracers |
@@ -1750,11 +1789,14 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1750 | # CONFIG_SCHED_TRACER is not set | 1789 | # CONFIG_SCHED_TRACER is not set |
1751 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1790 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1752 | # CONFIG_BOOT_TRACER is not set | 1791 | # CONFIG_BOOT_TRACER is not set |
1792 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1753 | # CONFIG_STACK_TRACER is not set | 1793 | # CONFIG_STACK_TRACER is not set |
1794 | # CONFIG_FTRACE_STARTUP_TEST is not set | ||
1754 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1795 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1755 | # CONFIG_SAMPLES is not set | 1796 | # CONFIG_SAMPLES is not set |
1756 | CONFIG_HAVE_ARCH_KGDB=y | 1797 | CONFIG_HAVE_ARCH_KGDB=y |
1757 | # CONFIG_KGDB is not set | 1798 | # CONFIG_KGDB is not set |
1799 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1758 | CONFIG_DEBUG_STACKOVERFLOW=y | 1800 | CONFIG_DEBUG_STACKOVERFLOW=y |
1759 | CONFIG_DEBUG_STACK_USAGE=y | 1801 | CONFIG_DEBUG_STACK_USAGE=y |
1760 | # CONFIG_DEBUG_PAGEALLOC is not set | 1802 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1763,6 +1805,7 @@ CONFIG_DEBUG_STACK_USAGE=y | |||
1763 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1805 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
1764 | # CONFIG_XMON is not set | 1806 | # CONFIG_XMON is not set |
1765 | # CONFIG_IRQSTACKS is not set | 1807 | # CONFIG_IRQSTACKS is not set |
1808 | # CONFIG_VIRQ_DEBUG is not set | ||
1766 | # CONFIG_BDI_SWITCH is not set | 1809 | # CONFIG_BDI_SWITCH is not set |
1767 | CONFIG_BOOTX_TEXT=y | 1810 | CONFIG_BOOTX_TEXT=y |
1768 | # CONFIG_PPC_EARLY_DEBUG is not set | 1811 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1776,6 +1819,7 @@ CONFIG_SECURITY=y | |||
1776 | # CONFIG_SECURITYFS is not set | 1819 | # CONFIG_SECURITYFS is not set |
1777 | CONFIG_SECURITY_NETWORK=y | 1820 | CONFIG_SECURITY_NETWORK=y |
1778 | # CONFIG_SECURITY_NETWORK_XFRM is not set | 1821 | # CONFIG_SECURITY_NETWORK_XFRM is not set |
1822 | # CONFIG_SECURITY_PATH is not set | ||
1779 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1823 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
1780 | CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0 | 1824 | CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0 |
1781 | CONFIG_SECURITY_SELINUX=y | 1825 | CONFIG_SECURITY_SELINUX=y |
@@ -1785,7 +1829,6 @@ CONFIG_SECURITY_SELINUX_DISABLE=y | |||
1785 | CONFIG_SECURITY_SELINUX_DEVELOP=y | 1829 | CONFIG_SECURITY_SELINUX_DEVELOP=y |
1786 | CONFIG_SECURITY_SELINUX_AVC_STATS=y | 1830 | CONFIG_SECURITY_SELINUX_AVC_STATS=y |
1787 | CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 | 1831 | CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 |
1788 | # CONFIG_SECURITY_SELINUX_ENABLE_SECMARK_DEFAULT is not set | ||
1789 | # CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set | 1832 | # CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set |
1790 | CONFIG_CRYPTO=y | 1833 | CONFIG_CRYPTO=y |
1791 | 1834 | ||
@@ -1794,11 +1837,16 @@ CONFIG_CRYPTO=y | |||
1794 | # | 1837 | # |
1795 | # CONFIG_CRYPTO_FIPS is not set | 1838 | # CONFIG_CRYPTO_FIPS is not set |
1796 | CONFIG_CRYPTO_ALGAPI=y | 1839 | CONFIG_CRYPTO_ALGAPI=y |
1797 | CONFIG_CRYPTO_AEAD=y | 1840 | CONFIG_CRYPTO_ALGAPI2=y |
1841 | CONFIG_CRYPTO_AEAD=m | ||
1842 | CONFIG_CRYPTO_AEAD2=y | ||
1798 | CONFIG_CRYPTO_BLKCIPHER=y | 1843 | CONFIG_CRYPTO_BLKCIPHER=y |
1844 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1799 | CONFIG_CRYPTO_HASH=y | 1845 | CONFIG_CRYPTO_HASH=y |
1800 | CONFIG_CRYPTO_RNG=y | 1846 | CONFIG_CRYPTO_HASH2=y |
1847 | CONFIG_CRYPTO_RNG2=y | ||
1801 | CONFIG_CRYPTO_MANAGER=y | 1848 | CONFIG_CRYPTO_MANAGER=y |
1849 | CONFIG_CRYPTO_MANAGER2=y | ||
1802 | # CONFIG_CRYPTO_GF128MUL is not set | 1850 | # CONFIG_CRYPTO_GF128MUL is not set |
1803 | CONFIG_CRYPTO_NULL=m | 1851 | CONFIG_CRYPTO_NULL=m |
1804 | # CONFIG_CRYPTO_CRYPTD is not set | 1852 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/ep8248e_defconfig b/arch/powerpc/configs/ep8248e_defconfig index a6f1cff564e6..add6419c15d9 100644 --- a/arch/powerpc/configs/ep8248e_defconfig +++ b/arch/powerpc/configs/ep8248e_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:36 2008 | 4 | # Mon Jan 26 15:35:27 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_GPIO=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -86,6 +86,7 @@ CONFIG_EMBEDDED=y | |||
86 | CONFIG_SYSCTL_SYSCALL=y | 86 | CONFIG_SYSCTL_SYSCALL=y |
87 | CONFIG_KALLSYMS=y | 87 | CONFIG_KALLSYMS=y |
88 | CONFIG_KALLSYMS_ALL=y | 88 | CONFIG_KALLSYMS_ALL=y |
89 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
89 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 90 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
90 | CONFIG_HOTPLUG=y | 91 | CONFIG_HOTPLUG=y |
91 | CONFIG_PRINTK=y | 92 | CONFIG_PRINTK=y |
@@ -107,7 +108,6 @@ CONFIG_SLAB=y | |||
107 | # CONFIG_SLUB is not set | 108 | # CONFIG_SLUB is not set |
108 | # CONFIG_SLOB is not set | 109 | # CONFIG_SLOB is not set |
109 | # CONFIG_PROFILING is not set | 110 | # CONFIG_PROFILING is not set |
110 | # CONFIG_MARKERS is not set | ||
111 | CONFIG_HAVE_OPROFILE=y | 111 | CONFIG_HAVE_OPROFILE=y |
112 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 112 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
113 | CONFIG_HAVE_IOREMAP_PROT=y | 113 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -118,13 +118,11 @@ CONFIG_HAVE_CLK=y | |||
118 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 118 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
119 | CONFIG_SLABINFO=y | 119 | CONFIG_SLABINFO=y |
120 | CONFIG_RT_MUTEXES=y | 120 | CONFIG_RT_MUTEXES=y |
121 | # CONFIG_TINY_SHMEM is not set | ||
122 | CONFIG_BASE_SMALL=0 | 121 | CONFIG_BASE_SMALL=0 |
123 | # CONFIG_MODULES is not set | 122 | # CONFIG_MODULES is not set |
124 | CONFIG_BLOCK=y | 123 | CONFIG_BLOCK=y |
125 | # CONFIG_LBD is not set | 124 | # CONFIG_LBD is not set |
126 | # CONFIG_BLK_DEV_IO_TRACE is not set | 125 | # CONFIG_BLK_DEV_IO_TRACE is not set |
127 | # CONFIG_LSF is not set | ||
128 | # CONFIG_BLK_DEV_INTEGRITY is not set | 126 | # CONFIG_BLK_DEV_INTEGRITY is not set |
129 | 127 | ||
130 | # | 128 | # |
@@ -140,6 +138,10 @@ CONFIG_DEFAULT_DEADLINE=y | |||
140 | # CONFIG_DEFAULT_NOOP is not set | 138 | # CONFIG_DEFAULT_NOOP is not set |
141 | CONFIG_DEFAULT_IOSCHED="deadline" | 139 | CONFIG_DEFAULT_IOSCHED="deadline" |
142 | CONFIG_CLASSIC_RCU=y | 140 | CONFIG_CLASSIC_RCU=y |
141 | # CONFIG_TREE_RCU is not set | ||
142 | # CONFIG_PREEMPT_RCU is not set | ||
143 | # CONFIG_TREE_RCU_TRACE is not set | ||
144 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
143 | # CONFIG_FREEZER is not set | 145 | # CONFIG_FREEZER is not set |
144 | 146 | ||
145 | # | 147 | # |
@@ -181,6 +183,7 @@ CONFIG_8272=y | |||
181 | CONFIG_CPM2=y | 183 | CONFIG_CPM2=y |
182 | # CONFIG_FSL_ULI1575 is not set | 184 | # CONFIG_FSL_ULI1575 is not set |
183 | CONFIG_CPM=y | 185 | CONFIG_CPM=y |
186 | # CONFIG_SIMPLE_GPIO is not set | ||
184 | 187 | ||
185 | # | 188 | # |
186 | # Kernel options | 189 | # Kernel options |
@@ -206,6 +209,7 @@ CONFIG_BINFMT_MISC=y | |||
206 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 209 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
207 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 210 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
208 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 211 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
212 | # CONFIG_CRASH_DUMP is not set | ||
209 | CONFIG_ARCH_FLATMEM_ENABLE=y | 213 | CONFIG_ARCH_FLATMEM_ENABLE=y |
210 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 214 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
211 | CONFIG_FLATMEM=y | 215 | CONFIG_FLATMEM=y |
@@ -213,12 +217,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
213 | CONFIG_PAGEFLAGS_EXTENDED=y | 217 | CONFIG_PAGEFLAGS_EXTENDED=y |
214 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 218 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
215 | CONFIG_MIGRATION=y | 219 | CONFIG_MIGRATION=y |
216 | # CONFIG_RESOURCES_64BIT is not set | ||
217 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 220 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
218 | CONFIG_ZONE_DMA_FLAG=1 | 221 | CONFIG_ZONE_DMA_FLAG=1 |
219 | CONFIG_BOUNCE=y | 222 | CONFIG_BOUNCE=y |
220 | CONFIG_VIRT_TO_BUS=y | 223 | CONFIG_VIRT_TO_BUS=y |
221 | CONFIG_UNEVICTABLE_LRU=y | 224 | CONFIG_UNEVICTABLE_LRU=y |
225 | CONFIG_PPC_4K_PAGES=y | ||
226 | # CONFIG_PPC_16K_PAGES is not set | ||
227 | # CONFIG_PPC_64K_PAGES is not set | ||
222 | CONFIG_FORCE_MAX_ZONEORDER=11 | 228 | CONFIG_FORCE_MAX_ZONEORDER=11 |
223 | CONFIG_PROC_DEVICETREE=y | 229 | CONFIG_PROC_DEVICETREE=y |
224 | # CONFIG_CMDLINE_BOOL is not set | 230 | # CONFIG_CMDLINE_BOOL is not set |
@@ -243,6 +249,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
243 | # CONFIG_PCI_MSI is not set | 249 | # CONFIG_PCI_MSI is not set |
244 | # CONFIG_PCI_LEGACY is not set | 250 | # CONFIG_PCI_LEGACY is not set |
245 | # CONFIG_PCI_DEBUG is not set | 251 | # CONFIG_PCI_DEBUG is not set |
252 | # CONFIG_PCI_STUB is not set | ||
246 | # CONFIG_PCCARD is not set | 253 | # CONFIG_PCCARD is not set |
247 | # CONFIG_HOTPLUG_PCI is not set | 254 | # CONFIG_HOTPLUG_PCI is not set |
248 | # CONFIG_HAS_RAPIDIO is not set | 255 | # CONFIG_HAS_RAPIDIO is not set |
@@ -265,6 +272,7 @@ CONFIG_NET=y | |||
265 | # | 272 | # |
266 | # Networking options | 273 | # Networking options |
267 | # | 274 | # |
275 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
268 | CONFIG_PACKET=y | 276 | CONFIG_PACKET=y |
269 | # CONFIG_PACKET_MMAP is not set | 277 | # CONFIG_PACKET_MMAP is not set |
270 | CONFIG_UNIX=y | 278 | CONFIG_UNIX=y |
@@ -346,6 +354,7 @@ CONFIG_NETFILTER_ADVANCED=y | |||
346 | # CONFIG_IPX is not set | 354 | # CONFIG_IPX is not set |
347 | # CONFIG_ATALK is not set | 355 | # CONFIG_ATALK is not set |
348 | # CONFIG_NET_SCHED is not set | 356 | # CONFIG_NET_SCHED is not set |
357 | # CONFIG_DCB is not set | ||
349 | 358 | ||
350 | # | 359 | # |
351 | # Network testing | 360 | # Network testing |
@@ -360,8 +369,9 @@ CONFIG_WIRELESS=y | |||
360 | # CONFIG_CFG80211 is not set | 369 | # CONFIG_CFG80211 is not set |
361 | CONFIG_WIRELESS_OLD_REGULATORY=y | 370 | CONFIG_WIRELESS_OLD_REGULATORY=y |
362 | # CONFIG_WIRELESS_EXT is not set | 371 | # CONFIG_WIRELESS_EXT is not set |
372 | # CONFIG_LIB80211 is not set | ||
363 | # CONFIG_MAC80211 is not set | 373 | # CONFIG_MAC80211 is not set |
364 | # CONFIG_IEEE80211 is not set | 374 | # CONFIG_WIMAX is not set |
365 | # CONFIG_RFKILL is not set | 375 | # CONFIG_RFKILL is not set |
366 | 376 | ||
367 | # | 377 | # |
@@ -455,6 +465,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
455 | # CONFIG_MTD_ONENAND is not set | 465 | # CONFIG_MTD_ONENAND is not set |
456 | 466 | ||
457 | # | 467 | # |
468 | # LPDDR flash memory drivers | ||
469 | # | ||
470 | # CONFIG_MTD_LPDDR is not set | ||
471 | # CONFIG_MTD_QINFO_PROBE is not set | ||
472 | |||
473 | # | ||
458 | # UBI - Unsorted block images | 474 | # UBI - Unsorted block images |
459 | # | 475 | # |
460 | # CONFIG_MTD_UBI is not set | 476 | # CONFIG_MTD_UBI is not set |
@@ -522,9 +538,12 @@ CONFIG_DAVICOM_PHY=y | |||
522 | # CONFIG_BROADCOM_PHY is not set | 538 | # CONFIG_BROADCOM_PHY is not set |
523 | # CONFIG_ICPLUS_PHY is not set | 539 | # CONFIG_ICPLUS_PHY is not set |
524 | # CONFIG_REALTEK_PHY is not set | 540 | # CONFIG_REALTEK_PHY is not set |
541 | # CONFIG_NATIONAL_PHY is not set | ||
542 | # CONFIG_STE10XP is not set | ||
543 | # CONFIG_LSI_ET1011C_PHY is not set | ||
525 | # CONFIG_FIXED_PHY is not set | 544 | # CONFIG_FIXED_PHY is not set |
526 | CONFIG_MDIO_BITBANG=y | 545 | CONFIG_MDIO_BITBANG=y |
527 | # CONFIG_MDIO_OF_GPIO is not set | 546 | # CONFIG_MDIO_GPIO is not set |
528 | CONFIG_NET_ETHERNET=y | 547 | CONFIG_NET_ETHERNET=y |
529 | CONFIG_MII=y | 548 | CONFIG_MII=y |
530 | # CONFIG_HAPPYMEAL is not set | 549 | # CONFIG_HAPPYMEAL is not set |
@@ -569,6 +588,7 @@ CONFIG_NETDEV_1000=y | |||
569 | # CONFIG_JME is not set | 588 | # CONFIG_JME is not set |
570 | CONFIG_NETDEV_10000=y | 589 | CONFIG_NETDEV_10000=y |
571 | # CONFIG_CHELSIO_T1 is not set | 590 | # CONFIG_CHELSIO_T1 is not set |
591 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
572 | # CONFIG_CHELSIO_T3 is not set | 592 | # CONFIG_CHELSIO_T3 is not set |
573 | # CONFIG_ENIC is not set | 593 | # CONFIG_ENIC is not set |
574 | # CONFIG_IXGBE is not set | 594 | # CONFIG_IXGBE is not set |
@@ -591,6 +611,10 @@ CONFIG_NETDEV_10000=y | |||
591 | # CONFIG_WLAN_PRE80211 is not set | 611 | # CONFIG_WLAN_PRE80211 is not set |
592 | # CONFIG_WLAN_80211 is not set | 612 | # CONFIG_WLAN_80211 is not set |
593 | # CONFIG_IWLWIFI_LEDS is not set | 613 | # CONFIG_IWLWIFI_LEDS is not set |
614 | |||
615 | # | ||
616 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
617 | # | ||
594 | # CONFIG_WAN is not set | 618 | # CONFIG_WAN is not set |
595 | # CONFIG_FDDI is not set | 619 | # CONFIG_FDDI is not set |
596 | # CONFIG_PPP is not set | 620 | # CONFIG_PPP is not set |
@@ -633,6 +657,7 @@ CONFIG_SERIAL_CPM=y | |||
633 | CONFIG_SERIAL_CPM_CONSOLE=y | 657 | CONFIG_SERIAL_CPM_CONSOLE=y |
634 | # CONFIG_SERIAL_JSM is not set | 658 | # CONFIG_SERIAL_JSM is not set |
635 | CONFIG_UNIX98_PTYS=y | 659 | CONFIG_UNIX98_PTYS=y |
660 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
636 | CONFIG_LEGACY_PTYS=y | 661 | CONFIG_LEGACY_PTYS=y |
637 | CONFIG_LEGACY_PTY_COUNT=256 | 662 | CONFIG_LEGACY_PTY_COUNT=256 |
638 | # CONFIG_IPMI_HANDLER is not set | 663 | # CONFIG_IPMI_HANDLER is not set |
@@ -651,6 +676,11 @@ CONFIG_GPIOLIB=y | |||
651 | # CONFIG_DEBUG_GPIO is not set | 676 | # CONFIG_DEBUG_GPIO is not set |
652 | 677 | ||
653 | # | 678 | # |
679 | # Memory mapped GPIO expanders: | ||
680 | # | ||
681 | # CONFIG_GPIO_XILINX is not set | ||
682 | |||
683 | # | ||
654 | # I2C GPIO expanders: | 684 | # I2C GPIO expanders: |
655 | # | 685 | # |
656 | 686 | ||
@@ -668,11 +698,11 @@ CONFIG_GPIOLIB=y | |||
668 | # CONFIG_THERMAL is not set | 698 | # CONFIG_THERMAL is not set |
669 | # CONFIG_THERMAL_HWMON is not set | 699 | # CONFIG_THERMAL_HWMON is not set |
670 | # CONFIG_WATCHDOG is not set | 700 | # CONFIG_WATCHDOG is not set |
701 | CONFIG_SSB_POSSIBLE=y | ||
671 | 702 | ||
672 | # | 703 | # |
673 | # Sonics Silicon Backplane | 704 | # Sonics Silicon Backplane |
674 | # | 705 | # |
675 | CONFIG_SSB_POSSIBLE=y | ||
676 | # CONFIG_SSB is not set | 706 | # CONFIG_SSB is not set |
677 | 707 | ||
678 | # | 708 | # |
@@ -682,14 +712,7 @@ CONFIG_SSB_POSSIBLE=y | |||
682 | # CONFIG_MFD_SM501 is not set | 712 | # CONFIG_MFD_SM501 is not set |
683 | # CONFIG_HTC_PASIC3 is not set | 713 | # CONFIG_HTC_PASIC3 is not set |
684 | # CONFIG_MFD_TMIO is not set | 714 | # CONFIG_MFD_TMIO is not set |
685 | |||
686 | # | ||
687 | # Voltage and Current regulators | ||
688 | # | ||
689 | # CONFIG_REGULATOR is not set | 715 | # CONFIG_REGULATOR is not set |
690 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
691 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
692 | # CONFIG_REGULATOR_BQ24022 is not set | ||
693 | 716 | ||
694 | # | 717 | # |
695 | # Multimedia devices | 718 | # Multimedia devices |
@@ -782,13 +805,11 @@ CONFIG_TMPFS=y | |||
782 | # CONFIG_TMPFS_POSIX_ACL is not set | 805 | # CONFIG_TMPFS_POSIX_ACL is not set |
783 | # CONFIG_HUGETLB_PAGE is not set | 806 | # CONFIG_HUGETLB_PAGE is not set |
784 | # CONFIG_CONFIGFS_FS is not set | 807 | # CONFIG_CONFIGFS_FS is not set |
785 | 808 | CONFIG_MISC_FILESYSTEMS=y | |
786 | # | ||
787 | # Miscellaneous filesystems | ||
788 | # | ||
789 | # CONFIG_HFSPLUS_FS is not set | 809 | # CONFIG_HFSPLUS_FS is not set |
790 | # CONFIG_JFFS2_FS is not set | 810 | # CONFIG_JFFS2_FS is not set |
791 | CONFIG_CRAMFS=y | 811 | CONFIG_CRAMFS=y |
812 | # CONFIG_SQUASHFS is not set | ||
792 | # CONFIG_VXFS_FS is not set | 813 | # CONFIG_VXFS_FS is not set |
793 | # CONFIG_MINIX_FS is not set | 814 | # CONFIG_MINIX_FS is not set |
794 | # CONFIG_OMFS_FS is not set | 815 | # CONFIG_OMFS_FS is not set |
@@ -877,6 +898,7 @@ CONFIG_NLS_UTF8=y | |||
877 | # | 898 | # |
878 | # Library routines | 899 | # Library routines |
879 | # | 900 | # |
901 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
880 | # CONFIG_CRC_CCITT is not set | 902 | # CONFIG_CRC_CCITT is not set |
881 | # CONFIG_CRC16 is not set | 903 | # CONFIG_CRC16 is not set |
882 | # CONFIG_CRC_T10DIF is not set | 904 | # CONFIG_CRC_T10DIF is not set |
@@ -924,6 +946,7 @@ CONFIG_DEBUG_INFO=y | |||
924 | # CONFIG_DEBUG_MEMORY_INIT is not set | 946 | # CONFIG_DEBUG_MEMORY_INIT is not set |
925 | # CONFIG_DEBUG_LIST is not set | 947 | # CONFIG_DEBUG_LIST is not set |
926 | # CONFIG_DEBUG_SG is not set | 948 | # CONFIG_DEBUG_SG is not set |
949 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
927 | # CONFIG_BOOT_PRINTK_DELAY is not set | 950 | # CONFIG_BOOT_PRINTK_DELAY is not set |
928 | # CONFIG_RCU_TORTURE_TEST is not set | 951 | # CONFIG_RCU_TORTURE_TEST is not set |
929 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 952 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -933,6 +956,8 @@ CONFIG_DEBUG_INFO=y | |||
933 | # CONFIG_LATENCYTOP is not set | 956 | # CONFIG_LATENCYTOP is not set |
934 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 957 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
935 | CONFIG_HAVE_FUNCTION_TRACER=y | 958 | CONFIG_HAVE_FUNCTION_TRACER=y |
959 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
960 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
936 | 961 | ||
937 | # | 962 | # |
938 | # Tracers | 963 | # Tracers |
@@ -941,10 +966,12 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
941 | # CONFIG_SCHED_TRACER is not set | 966 | # CONFIG_SCHED_TRACER is not set |
942 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 967 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
943 | # CONFIG_BOOT_TRACER is not set | 968 | # CONFIG_BOOT_TRACER is not set |
969 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
944 | # CONFIG_STACK_TRACER is not set | 970 | # CONFIG_STACK_TRACER is not set |
945 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 971 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
946 | # CONFIG_SAMPLES is not set | 972 | # CONFIG_SAMPLES is not set |
947 | CONFIG_HAVE_ARCH_KGDB=y | 973 | CONFIG_HAVE_ARCH_KGDB=y |
974 | CONFIG_PRINT_STACK_DEPTH=64 | ||
948 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 975 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
949 | # CONFIG_DEBUG_STACK_USAGE is not set | 976 | # CONFIG_DEBUG_STACK_USAGE is not set |
950 | # CONFIG_DEBUG_PAGEALLOC is not set | 977 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -971,11 +998,15 @@ CONFIG_CRYPTO=y | |||
971 | # | 998 | # |
972 | # CONFIG_CRYPTO_FIPS is not set | 999 | # CONFIG_CRYPTO_FIPS is not set |
973 | CONFIG_CRYPTO_ALGAPI=y | 1000 | CONFIG_CRYPTO_ALGAPI=y |
974 | CONFIG_CRYPTO_AEAD=y | 1001 | CONFIG_CRYPTO_ALGAPI2=y |
1002 | CONFIG_CRYPTO_AEAD2=y | ||
975 | CONFIG_CRYPTO_BLKCIPHER=y | 1003 | CONFIG_CRYPTO_BLKCIPHER=y |
1004 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
976 | CONFIG_CRYPTO_HASH=y | 1005 | CONFIG_CRYPTO_HASH=y |
977 | CONFIG_CRYPTO_RNG=y | 1006 | CONFIG_CRYPTO_HASH2=y |
1007 | CONFIG_CRYPTO_RNG2=y | ||
978 | CONFIG_CRYPTO_MANAGER=y | 1008 | CONFIG_CRYPTO_MANAGER=y |
1009 | CONFIG_CRYPTO_MANAGER2=y | ||
979 | # CONFIG_CRYPTO_NULL is not set | 1010 | # CONFIG_CRYPTO_NULL is not set |
980 | # CONFIG_CRYPTO_CRYPTD is not set | 1011 | # CONFIG_CRYPTO_CRYPTD is not set |
981 | # CONFIG_CRYPTO_AUTHENC is not set | 1012 | # CONFIG_CRYPTO_AUTHENC is not set |
diff --git a/arch/powerpc/configs/ep88xc_defconfig b/arch/powerpc/configs/ep88xc_defconfig index 870d28976a44..b2fdfd9e183c 100644 --- a/arch/powerpc/configs/ep88xc_defconfig +++ b/arch/powerpc/configs/ep88xc_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:37 2008 | 4 | # Mon Jan 26 15:35:28 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_PPC_8xx=y | |||
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_8xx=y | 17 | CONFIG_8xx=y |
18 | CONFIG_PPC_MMU_NOHASH=y | ||
18 | # CONFIG_PPC_MM_SLICES is not set | 19 | # CONFIG_PPC_MM_SLICES is not set |
19 | CONFIG_NOT_COHERENT_CACHE=y | 20 | CONFIG_NOT_COHERENT_CACHE=y |
20 | CONFIG_PPC32=y | 21 | CONFIG_PPC32=y |
@@ -40,7 +41,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
40 | CONFIG_PPC=y | 41 | CONFIG_PPC=y |
41 | CONFIG_EARLY_PRINTK=y | 42 | CONFIG_EARLY_PRINTK=y |
42 | CONFIG_GENERIC_NVRAM=y | 43 | CONFIG_GENERIC_NVRAM=y |
43 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 44 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
44 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
45 | CONFIG_PPC_OF=y | 46 | CONFIG_PPC_OF=y |
46 | CONFIG_OF=y | 47 | CONFIG_OF=y |
@@ -70,12 +71,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
70 | # CONFIG_AUDIT is not set | 71 | # CONFIG_AUDIT is not set |
71 | # CONFIG_IKCONFIG is not set | 72 | # CONFIG_IKCONFIG is not set |
72 | CONFIG_LOG_BUF_SHIFT=14 | 73 | CONFIG_LOG_BUF_SHIFT=14 |
73 | # CONFIG_CGROUPS is not set | ||
74 | CONFIG_GROUP_SCHED=y | 74 | CONFIG_GROUP_SCHED=y |
75 | # CONFIG_FAIR_GROUP_SCHED is not set | 75 | # CONFIG_FAIR_GROUP_SCHED is not set |
76 | # CONFIG_RT_GROUP_SCHED is not set | 76 | # CONFIG_RT_GROUP_SCHED is not set |
77 | CONFIG_USER_SCHED=y | 77 | CONFIG_USER_SCHED=y |
78 | # CONFIG_CGROUP_SCHED is not set | 78 | # CONFIG_CGROUP_SCHED is not set |
79 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_SYSFS_DEPRECATED=y | 80 | CONFIG_SYSFS_DEPRECATED=y |
80 | CONFIG_SYSFS_DEPRECATED_V2=y | 81 | CONFIG_SYSFS_DEPRECATED_V2=y |
81 | # CONFIG_RELAY is not set | 82 | # CONFIG_RELAY is not set |
@@ -108,7 +109,6 @@ CONFIG_SLUB_DEBUG=y | |||
108 | CONFIG_SLUB=y | 109 | CONFIG_SLUB=y |
109 | # CONFIG_SLOB is not set | 110 | # CONFIG_SLOB is not set |
110 | # CONFIG_PROFILING is not set | 111 | # CONFIG_PROFILING is not set |
111 | # CONFIG_MARKERS is not set | ||
112 | CONFIG_HAVE_OPROFILE=y | 112 | CONFIG_HAVE_OPROFILE=y |
113 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 113 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
114 | CONFIG_HAVE_IOREMAP_PROT=y | 114 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -118,13 +118,11 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
118 | CONFIG_HAVE_CLK=y | 118 | CONFIG_HAVE_CLK=y |
119 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 119 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
120 | CONFIG_SLABINFO=y | 120 | CONFIG_SLABINFO=y |
121 | # CONFIG_TINY_SHMEM is not set | ||
122 | CONFIG_BASE_SMALL=1 | 121 | CONFIG_BASE_SMALL=1 |
123 | # CONFIG_MODULES is not set | 122 | # CONFIG_MODULES is not set |
124 | CONFIG_BLOCK=y | 123 | CONFIG_BLOCK=y |
125 | # CONFIG_LBD is not set | 124 | # CONFIG_LBD is not set |
126 | # CONFIG_BLK_DEV_IO_TRACE is not set | 125 | # CONFIG_BLK_DEV_IO_TRACE is not set |
127 | # CONFIG_LSF is not set | ||
128 | # CONFIG_BLK_DEV_BSG is not set | 126 | # CONFIG_BLK_DEV_BSG is not set |
129 | # CONFIG_BLK_DEV_INTEGRITY is not set | 127 | # CONFIG_BLK_DEV_INTEGRITY is not set |
130 | 128 | ||
@@ -141,6 +139,10 @@ CONFIG_DEFAULT_DEADLINE=y | |||
141 | # CONFIG_DEFAULT_NOOP is not set | 139 | # CONFIG_DEFAULT_NOOP is not set |
142 | CONFIG_DEFAULT_IOSCHED="deadline" | 140 | CONFIG_DEFAULT_IOSCHED="deadline" |
143 | CONFIG_CLASSIC_RCU=y | 141 | CONFIG_CLASSIC_RCU=y |
142 | # CONFIG_TREE_RCU is not set | ||
143 | # CONFIG_PREEMPT_RCU is not set | ||
144 | # CONFIG_TREE_RCU_TRACE is not set | ||
145 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
144 | # CONFIG_FREEZER is not set | 146 | # CONFIG_FREEZER is not set |
145 | 147 | ||
146 | # | 148 | # |
@@ -186,6 +188,7 @@ CONFIG_NO_UCODE_PATCH=y | |||
186 | # CONFIG_QUICC_ENGINE is not set | 188 | # CONFIG_QUICC_ENGINE is not set |
187 | # CONFIG_FSL_ULI1575 is not set | 189 | # CONFIG_FSL_ULI1575 is not set |
188 | CONFIG_CPM=y | 190 | CONFIG_CPM=y |
191 | # CONFIG_SIMPLE_GPIO is not set | ||
189 | 192 | ||
190 | # | 193 | # |
191 | # Kernel options | 194 | # Kernel options |
@@ -205,12 +208,12 @@ CONFIG_PREEMPT_NONE=y | |||
205 | # CONFIG_PREEMPT_VOLUNTARY is not set | 208 | # CONFIG_PREEMPT_VOLUNTARY is not set |
206 | # CONFIG_PREEMPT is not set | 209 | # CONFIG_PREEMPT is not set |
207 | CONFIG_BINFMT_ELF=y | 210 | CONFIG_BINFMT_ELF=y |
208 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | ||
209 | # CONFIG_HAVE_AOUT is not set | 211 | # CONFIG_HAVE_AOUT is not set |
210 | # CONFIG_BINFMT_MISC is not set | 212 | # CONFIG_BINFMT_MISC is not set |
211 | # CONFIG_MATH_EMULATION is not set | 213 | # CONFIG_MATH_EMULATION is not set |
212 | CONFIG_8XX_MINIMAL_FPEMU=y | 214 | CONFIG_8XX_MINIMAL_FPEMU=y |
213 | # CONFIG_IOMMU_HELPER is not set | 215 | # CONFIG_IOMMU_HELPER is not set |
216 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
214 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 217 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
215 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 218 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
216 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 219 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -225,12 +228,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
225 | CONFIG_PAGEFLAGS_EXTENDED=y | 228 | CONFIG_PAGEFLAGS_EXTENDED=y |
226 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 229 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
227 | CONFIG_MIGRATION=y | 230 | CONFIG_MIGRATION=y |
228 | # CONFIG_RESOURCES_64BIT is not set | ||
229 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 231 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
230 | CONFIG_ZONE_DMA_FLAG=1 | 232 | CONFIG_ZONE_DMA_FLAG=1 |
231 | CONFIG_BOUNCE=y | 233 | CONFIG_BOUNCE=y |
232 | CONFIG_VIRT_TO_BUS=y | 234 | CONFIG_VIRT_TO_BUS=y |
233 | CONFIG_UNEVICTABLE_LRU=y | 235 | CONFIG_UNEVICTABLE_LRU=y |
236 | CONFIG_PPC_4K_PAGES=y | ||
237 | # CONFIG_PPC_16K_PAGES is not set | ||
238 | # CONFIG_PPC_64K_PAGES is not set | ||
234 | CONFIG_FORCE_MAX_ZONEORDER=11 | 239 | CONFIG_FORCE_MAX_ZONEORDER=11 |
235 | CONFIG_PROC_DEVICETREE=y | 240 | CONFIG_PROC_DEVICETREE=y |
236 | # CONFIG_CMDLINE_BOOL is not set | 241 | # CONFIG_CMDLINE_BOOL is not set |
@@ -272,6 +277,7 @@ CONFIG_NET=y | |||
272 | # | 277 | # |
273 | # Networking options | 278 | # Networking options |
274 | # | 279 | # |
280 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
275 | CONFIG_PACKET=y | 281 | CONFIG_PACKET=y |
276 | # CONFIG_PACKET_MMAP is not set | 282 | # CONFIG_PACKET_MMAP is not set |
277 | CONFIG_UNIX=y | 283 | CONFIG_UNIX=y |
@@ -323,6 +329,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
323 | # CONFIG_ECONET is not set | 329 | # CONFIG_ECONET is not set |
324 | # CONFIG_WAN_ROUTER is not set | 330 | # CONFIG_WAN_ROUTER is not set |
325 | # CONFIG_NET_SCHED is not set | 331 | # CONFIG_NET_SCHED is not set |
332 | # CONFIG_DCB is not set | ||
326 | 333 | ||
327 | # | 334 | # |
328 | # Network testing | 335 | # Network testing |
@@ -338,8 +345,9 @@ CONFIG_WIRELESS=y | |||
338 | # CONFIG_CFG80211 is not set | 345 | # CONFIG_CFG80211 is not set |
339 | CONFIG_WIRELESS_OLD_REGULATORY=y | 346 | CONFIG_WIRELESS_OLD_REGULATORY=y |
340 | # CONFIG_WIRELESS_EXT is not set | 347 | # CONFIG_WIRELESS_EXT is not set |
348 | # CONFIG_LIB80211 is not set | ||
341 | # CONFIG_MAC80211 is not set | 349 | # CONFIG_MAC80211 is not set |
342 | # CONFIG_IEEE80211 is not set | 350 | # CONFIG_WIMAX is not set |
343 | # CONFIG_RFKILL is not set | 351 | # CONFIG_RFKILL is not set |
344 | # CONFIG_NET_9P is not set | 352 | # CONFIG_NET_9P is not set |
345 | 353 | ||
@@ -428,6 +436,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
428 | # CONFIG_MTD_ONENAND is not set | 436 | # CONFIG_MTD_ONENAND is not set |
429 | 437 | ||
430 | # | 438 | # |
439 | # LPDDR flash memory drivers | ||
440 | # | ||
441 | # CONFIG_MTD_LPDDR is not set | ||
442 | # CONFIG_MTD_QINFO_PROBE is not set | ||
443 | |||
444 | # | ||
431 | # UBI - Unsorted block images | 445 | # UBI - Unsorted block images |
432 | # | 446 | # |
433 | # CONFIG_MTD_UBI is not set | 447 | # CONFIG_MTD_UBI is not set |
@@ -470,6 +484,9 @@ CONFIG_LXT_PHY=y | |||
470 | # CONFIG_BROADCOM_PHY is not set | 484 | # CONFIG_BROADCOM_PHY is not set |
471 | # CONFIG_ICPLUS_PHY is not set | 485 | # CONFIG_ICPLUS_PHY is not set |
472 | # CONFIG_REALTEK_PHY is not set | 486 | # CONFIG_REALTEK_PHY is not set |
487 | # CONFIG_NATIONAL_PHY is not set | ||
488 | # CONFIG_STE10XP is not set | ||
489 | # CONFIG_LSI_ET1011C_PHY is not set | ||
473 | # CONFIG_FIXED_PHY is not set | 490 | # CONFIG_FIXED_PHY is not set |
474 | # CONFIG_MDIO_BITBANG is not set | 491 | # CONFIG_MDIO_BITBANG is not set |
475 | CONFIG_NET_ETHERNET=y | 492 | CONFIG_NET_ETHERNET=y |
@@ -495,6 +512,10 @@ CONFIG_FS_ENET_MDIO_FEC=y | |||
495 | # CONFIG_WLAN_PRE80211 is not set | 512 | # CONFIG_WLAN_PRE80211 is not set |
496 | # CONFIG_WLAN_80211 is not set | 513 | # CONFIG_WLAN_80211 is not set |
497 | # CONFIG_IWLWIFI_LEDS is not set | 514 | # CONFIG_IWLWIFI_LEDS is not set |
515 | |||
516 | # | ||
517 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
518 | # | ||
498 | # CONFIG_WAN is not set | 519 | # CONFIG_WAN is not set |
499 | # CONFIG_PPP is not set | 520 | # CONFIG_PPP is not set |
500 | # CONFIG_SLIP is not set | 521 | # CONFIG_SLIP is not set |
@@ -536,7 +557,9 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
536 | CONFIG_SERIAL_CPM=y | 557 | CONFIG_SERIAL_CPM=y |
537 | CONFIG_SERIAL_CPM_CONSOLE=y | 558 | CONFIG_SERIAL_CPM_CONSOLE=y |
538 | CONFIG_UNIX98_PTYS=y | 559 | CONFIG_UNIX98_PTYS=y |
560 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
539 | # CONFIG_LEGACY_PTYS is not set | 561 | # CONFIG_LEGACY_PTYS is not set |
562 | # CONFIG_HVC_UDBG is not set | ||
540 | # CONFIG_IPMI_HANDLER is not set | 563 | # CONFIG_IPMI_HANDLER is not set |
541 | CONFIG_HW_RANDOM=y | 564 | CONFIG_HW_RANDOM=y |
542 | # CONFIG_NVRAM is not set | 565 | # CONFIG_NVRAM is not set |
@@ -555,11 +578,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
555 | # CONFIG_THERMAL is not set | 578 | # CONFIG_THERMAL is not set |
556 | # CONFIG_THERMAL_HWMON is not set | 579 | # CONFIG_THERMAL_HWMON is not set |
557 | # CONFIG_WATCHDOG is not set | 580 | # CONFIG_WATCHDOG is not set |
581 | CONFIG_SSB_POSSIBLE=y | ||
558 | 582 | ||
559 | # | 583 | # |
560 | # Sonics Silicon Backplane | 584 | # Sonics Silicon Backplane |
561 | # | 585 | # |
562 | CONFIG_SSB_POSSIBLE=y | ||
563 | # CONFIG_SSB is not set | 586 | # CONFIG_SSB is not set |
564 | 587 | ||
565 | # | 588 | # |
@@ -569,14 +592,7 @@ CONFIG_SSB_POSSIBLE=y | |||
569 | # CONFIG_MFD_SM501 is not set | 592 | # CONFIG_MFD_SM501 is not set |
570 | # CONFIG_HTC_PASIC3 is not set | 593 | # CONFIG_HTC_PASIC3 is not set |
571 | # CONFIG_MFD_TMIO is not set | 594 | # CONFIG_MFD_TMIO is not set |
572 | |||
573 | # | ||
574 | # Voltage and Current regulators | ||
575 | # | ||
576 | # CONFIG_REGULATOR is not set | 595 | # CONFIG_REGULATOR is not set |
577 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
578 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
579 | # CONFIG_REGULATOR_BQ24022 is not set | ||
580 | 596 | ||
581 | # | 597 | # |
582 | # Multimedia devices | 598 | # Multimedia devices |
@@ -630,6 +646,7 @@ CONFIG_DAB=y | |||
630 | CONFIG_FILE_LOCKING=y | 646 | CONFIG_FILE_LOCKING=y |
631 | # CONFIG_XFS_FS is not set | 647 | # CONFIG_XFS_FS is not set |
632 | # CONFIG_OCFS2_FS is not set | 648 | # CONFIG_OCFS2_FS is not set |
649 | # CONFIG_BTRFS_FS is not set | ||
633 | # CONFIG_DNOTIFY is not set | 650 | # CONFIG_DNOTIFY is not set |
634 | # CONFIG_INOTIFY is not set | 651 | # CONFIG_INOTIFY is not set |
635 | # CONFIG_QUOTA is not set | 652 | # CONFIG_QUOTA is not set |
@@ -662,10 +679,7 @@ CONFIG_TMPFS=y | |||
662 | # CONFIG_TMPFS_POSIX_ACL is not set | 679 | # CONFIG_TMPFS_POSIX_ACL is not set |
663 | # CONFIG_HUGETLB_PAGE is not set | 680 | # CONFIG_HUGETLB_PAGE is not set |
664 | # CONFIG_CONFIGFS_FS is not set | 681 | # CONFIG_CONFIGFS_FS is not set |
665 | 682 | CONFIG_MISC_FILESYSTEMS=y | |
666 | # | ||
667 | # Miscellaneous filesystems | ||
668 | # | ||
669 | # CONFIG_ADFS_FS is not set | 683 | # CONFIG_ADFS_FS is not set |
670 | # CONFIG_AFFS_FS is not set | 684 | # CONFIG_AFFS_FS is not set |
671 | # CONFIG_HFS_FS is not set | 685 | # CONFIG_HFS_FS is not set |
@@ -675,6 +689,7 @@ CONFIG_TMPFS=y | |||
675 | # CONFIG_EFS_FS is not set | 689 | # CONFIG_EFS_FS is not set |
676 | # CONFIG_JFFS2_FS is not set | 690 | # CONFIG_JFFS2_FS is not set |
677 | CONFIG_CRAMFS=y | 691 | CONFIG_CRAMFS=y |
692 | # CONFIG_SQUASHFS is not set | ||
678 | # CONFIG_VXFS_FS is not set | 693 | # CONFIG_VXFS_FS is not set |
679 | # CONFIG_MINIX_FS is not set | 694 | # CONFIG_MINIX_FS is not set |
680 | # CONFIG_OMFS_FS is not set | 695 | # CONFIG_OMFS_FS is not set |
@@ -730,6 +745,7 @@ CONFIG_MSDOS_PARTITION=y | |||
730 | # | 745 | # |
731 | # Library routines | 746 | # Library routines |
732 | # | 747 | # |
748 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
733 | # CONFIG_CRC_CCITT is not set | 749 | # CONFIG_CRC_CCITT is not set |
734 | # CONFIG_CRC16 is not set | 750 | # CONFIG_CRC16 is not set |
735 | # CONFIG_CRC_T10DIF is not set | 751 | # CONFIG_CRC_T10DIF is not set |
@@ -777,6 +793,7 @@ CONFIG_DEBUG_INFO=y | |||
777 | # CONFIG_DEBUG_MEMORY_INIT is not set | 793 | # CONFIG_DEBUG_MEMORY_INIT is not set |
778 | # CONFIG_DEBUG_LIST is not set | 794 | # CONFIG_DEBUG_LIST is not set |
779 | # CONFIG_DEBUG_SG is not set | 795 | # CONFIG_DEBUG_SG is not set |
796 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
780 | # CONFIG_BOOT_PRINTK_DELAY is not set | 797 | # CONFIG_BOOT_PRINTK_DELAY is not set |
781 | # CONFIG_RCU_TORTURE_TEST is not set | 798 | # CONFIG_RCU_TORTURE_TEST is not set |
782 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 799 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -785,6 +802,8 @@ CONFIG_DEBUG_INFO=y | |||
785 | # CONFIG_FAULT_INJECTION is not set | 802 | # CONFIG_FAULT_INJECTION is not set |
786 | # CONFIG_LATENCYTOP is not set | 803 | # CONFIG_LATENCYTOP is not set |
787 | CONFIG_HAVE_FUNCTION_TRACER=y | 804 | CONFIG_HAVE_FUNCTION_TRACER=y |
805 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
806 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
788 | 807 | ||
789 | # | 808 | # |
790 | # Tracers | 809 | # Tracers |
@@ -793,11 +812,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
793 | # CONFIG_SCHED_TRACER is not set | 812 | # CONFIG_SCHED_TRACER is not set |
794 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 813 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
795 | # CONFIG_BOOT_TRACER is not set | 814 | # CONFIG_BOOT_TRACER is not set |
815 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
796 | # CONFIG_STACK_TRACER is not set | 816 | # CONFIG_STACK_TRACER is not set |
797 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 817 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
798 | # CONFIG_SAMPLES is not set | 818 | # CONFIG_SAMPLES is not set |
799 | CONFIG_HAVE_ARCH_KGDB=y | 819 | CONFIG_HAVE_ARCH_KGDB=y |
800 | # CONFIG_KGDB is not set | 820 | # CONFIG_KGDB is not set |
821 | CONFIG_PRINT_STACK_DEPTH=64 | ||
801 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 822 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
802 | # CONFIG_DEBUG_STACK_USAGE is not set | 823 | # CONFIG_DEBUG_STACK_USAGE is not set |
803 | # CONFIG_DEBUG_PAGEALLOC is not set | 824 | # CONFIG_DEBUG_PAGEALLOC is not set |
diff --git a/arch/powerpc/configs/linkstation_defconfig b/arch/powerpc/configs/linkstation_defconfig index 3a0ffd73b65c..aa5855a156de 100644 --- a/arch/powerpc/configs/linkstation_defconfig +++ b/arch/powerpc/configs/linkstation_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:38 2008 | 4 | # Mon Jan 26 15:35:29 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -43,7 +43,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
43 | CONFIG_PPC=y | 43 | CONFIG_PPC=y |
44 | CONFIG_EARLY_PRINTK=y | 44 | CONFIG_EARLY_PRINTK=y |
45 | CONFIG_GENERIC_NVRAM=y | 45 | CONFIG_GENERIC_NVRAM=y |
46 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 46 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
47 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 47 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
48 | CONFIG_PPC_OF=y | 48 | CONFIG_PPC_OF=y |
49 | CONFIG_OF=y | 49 | CONFIG_OF=y |
@@ -74,12 +74,12 @@ CONFIG_POSIX_MQUEUE=y | |||
74 | CONFIG_IKCONFIG=y | 74 | CONFIG_IKCONFIG=y |
75 | CONFIG_IKCONFIG_PROC=y | 75 | CONFIG_IKCONFIG_PROC=y |
76 | CONFIG_LOG_BUF_SHIFT=14 | 76 | CONFIG_LOG_BUF_SHIFT=14 |
77 | # CONFIG_CGROUPS is not set | ||
78 | CONFIG_GROUP_SCHED=y | 77 | CONFIG_GROUP_SCHED=y |
79 | # CONFIG_FAIR_GROUP_SCHED is not set | 78 | # CONFIG_FAIR_GROUP_SCHED is not set |
80 | # CONFIG_RT_GROUP_SCHED is not set | 79 | # CONFIG_RT_GROUP_SCHED is not set |
81 | CONFIG_USER_SCHED=y | 80 | CONFIG_USER_SCHED=y |
82 | # CONFIG_CGROUP_SCHED is not set | 81 | # CONFIG_CGROUP_SCHED is not set |
82 | # CONFIG_CGROUPS is not set | ||
83 | CONFIG_SYSFS_DEPRECATED=y | 83 | CONFIG_SYSFS_DEPRECATED=y |
84 | CONFIG_SYSFS_DEPRECATED_V2=y | 84 | CONFIG_SYSFS_DEPRECATED_V2=y |
85 | # CONFIG_RELAY is not set | 85 | # CONFIG_RELAY is not set |
@@ -118,7 +118,6 @@ CONFIG_SLUB_DEBUG=y | |||
118 | CONFIG_SLUB=y | 118 | CONFIG_SLUB=y |
119 | # CONFIG_SLOB is not set | 119 | # CONFIG_SLOB is not set |
120 | # CONFIG_PROFILING is not set | 120 | # CONFIG_PROFILING is not set |
121 | # CONFIG_MARKERS is not set | ||
122 | CONFIG_HAVE_OPROFILE=y | 121 | CONFIG_HAVE_OPROFILE=y |
123 | # CONFIG_KPROBES is not set | 122 | # CONFIG_KPROBES is not set |
124 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 123 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -129,7 +128,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
129 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 128 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
130 | CONFIG_SLABINFO=y | 129 | CONFIG_SLABINFO=y |
131 | CONFIG_RT_MUTEXES=y | 130 | CONFIG_RT_MUTEXES=y |
132 | # CONFIG_TINY_SHMEM is not set | ||
133 | CONFIG_BASE_SMALL=0 | 131 | CONFIG_BASE_SMALL=0 |
134 | CONFIG_MODULES=y | 132 | CONFIG_MODULES=y |
135 | # CONFIG_MODULE_FORCE_LOAD is not set | 133 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -137,11 +135,9 @@ CONFIG_MODULE_UNLOAD=y | |||
137 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 135 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
138 | # CONFIG_MODVERSIONS is not set | 136 | # CONFIG_MODVERSIONS is not set |
139 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 137 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
140 | CONFIG_KMOD=y | ||
141 | CONFIG_BLOCK=y | 138 | CONFIG_BLOCK=y |
142 | # CONFIG_LBD is not set | 139 | # CONFIG_LBD is not set |
143 | # CONFIG_BLK_DEV_IO_TRACE is not set | 140 | # CONFIG_BLK_DEV_IO_TRACE is not set |
144 | # CONFIG_LSF is not set | ||
145 | # CONFIG_BLK_DEV_BSG is not set | 141 | # CONFIG_BLK_DEV_BSG is not set |
146 | # CONFIG_BLK_DEV_INTEGRITY is not set | 142 | # CONFIG_BLK_DEV_INTEGRITY is not set |
147 | 143 | ||
@@ -158,6 +154,10 @@ CONFIG_DEFAULT_AS=y | |||
158 | # CONFIG_DEFAULT_NOOP is not set | 154 | # CONFIG_DEFAULT_NOOP is not set |
159 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 155 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
160 | CONFIG_CLASSIC_RCU=y | 156 | CONFIG_CLASSIC_RCU=y |
157 | # CONFIG_TREE_RCU is not set | ||
158 | # CONFIG_PREEMPT_RCU is not set | ||
159 | # CONFIG_TREE_RCU_TRACE is not set | ||
160 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
161 | # CONFIG_FREEZER is not set | 161 | # CONFIG_FREEZER is not set |
162 | 162 | ||
163 | # | 163 | # |
@@ -200,6 +200,7 @@ CONFIG_MPIC=y | |||
200 | # CONFIG_TAU is not set | 200 | # CONFIG_TAU is not set |
201 | # CONFIG_QUICC_ENGINE is not set | 201 | # CONFIG_QUICC_ENGINE is not set |
202 | # CONFIG_FSL_ULI1575 is not set | 202 | # CONFIG_FSL_ULI1575 is not set |
203 | # CONFIG_SIMPLE_GPIO is not set | ||
203 | 204 | ||
204 | # | 205 | # |
205 | # Kernel options | 206 | # Kernel options |
@@ -227,6 +228,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
227 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 228 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
228 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 229 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
229 | # CONFIG_KEXEC is not set | 230 | # CONFIG_KEXEC is not set |
231 | # CONFIG_CRASH_DUMP is not set | ||
230 | CONFIG_ARCH_FLATMEM_ENABLE=y | 232 | CONFIG_ARCH_FLATMEM_ENABLE=y |
231 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 233 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
232 | CONFIG_SELECT_MEMORY_MODEL=y | 234 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -238,12 +240,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
238 | CONFIG_PAGEFLAGS_EXTENDED=y | 240 | CONFIG_PAGEFLAGS_EXTENDED=y |
239 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 241 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
240 | CONFIG_MIGRATION=y | 242 | CONFIG_MIGRATION=y |
241 | # CONFIG_RESOURCES_64BIT is not set | ||
242 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 243 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
243 | CONFIG_ZONE_DMA_FLAG=1 | 244 | CONFIG_ZONE_DMA_FLAG=1 |
244 | CONFIG_BOUNCE=y | 245 | CONFIG_BOUNCE=y |
245 | CONFIG_VIRT_TO_BUS=y | 246 | CONFIG_VIRT_TO_BUS=y |
246 | CONFIG_UNEVICTABLE_LRU=y | 247 | CONFIG_UNEVICTABLE_LRU=y |
248 | CONFIG_PPC_4K_PAGES=y | ||
249 | # CONFIG_PPC_16K_PAGES is not set | ||
250 | # CONFIG_PPC_64K_PAGES is not set | ||
247 | CONFIG_FORCE_MAX_ZONEORDER=11 | 251 | CONFIG_FORCE_MAX_ZONEORDER=11 |
248 | CONFIG_PROC_DEVICETREE=y | 252 | CONFIG_PROC_DEVICETREE=y |
249 | # CONFIG_CMDLINE_BOOL is not set | 253 | # CONFIG_CMDLINE_BOOL is not set |
@@ -267,6 +271,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
267 | # CONFIG_PCI_MSI is not set | 271 | # CONFIG_PCI_MSI is not set |
268 | # CONFIG_PCI_LEGACY is not set | 272 | # CONFIG_PCI_LEGACY is not set |
269 | # CONFIG_PCI_DEBUG is not set | 273 | # CONFIG_PCI_DEBUG is not set |
274 | # CONFIG_PCI_STUB is not set | ||
270 | # CONFIG_PCCARD is not set | 275 | # CONFIG_PCCARD is not set |
271 | # CONFIG_HOTPLUG_PCI is not set | 276 | # CONFIG_HOTPLUG_PCI is not set |
272 | # CONFIG_HAS_RAPIDIO is not set | 277 | # CONFIG_HAS_RAPIDIO is not set |
@@ -289,6 +294,8 @@ CONFIG_NET=y | |||
289 | # | 294 | # |
290 | # Networking options | 295 | # Networking options |
291 | # | 296 | # |
297 | # CONFIG_NET_NS is not set | ||
298 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
292 | CONFIG_PACKET=y | 299 | CONFIG_PACKET=y |
293 | CONFIG_PACKET_MMAP=y | 300 | CONFIG_PACKET_MMAP=y |
294 | CONFIG_UNIX=y | 301 | CONFIG_UNIX=y |
@@ -455,6 +462,7 @@ CONFIG_IP_NF_ARP_MANGLE=m | |||
455 | # CONFIG_ECONET is not set | 462 | # CONFIG_ECONET is not set |
456 | # CONFIG_WAN_ROUTER is not set | 463 | # CONFIG_WAN_ROUTER is not set |
457 | # CONFIG_NET_SCHED is not set | 464 | # CONFIG_NET_SCHED is not set |
465 | # CONFIG_DCB is not set | ||
458 | 466 | ||
459 | # | 467 | # |
460 | # Network testing | 468 | # Network testing |
@@ -471,12 +479,9 @@ CONFIG_WIRELESS=y | |||
471 | CONFIG_WIRELESS_OLD_REGULATORY=y | 479 | CONFIG_WIRELESS_OLD_REGULATORY=y |
472 | CONFIG_WIRELESS_EXT=y | 480 | CONFIG_WIRELESS_EXT=y |
473 | CONFIG_WIRELESS_EXT_SYSFS=y | 481 | CONFIG_WIRELESS_EXT_SYSFS=y |
482 | # CONFIG_LIB80211 is not set | ||
474 | # CONFIG_MAC80211 is not set | 483 | # CONFIG_MAC80211 is not set |
475 | CONFIG_IEEE80211=m | 484 | # CONFIG_WIMAX is not set |
476 | CONFIG_IEEE80211_DEBUG=y | ||
477 | CONFIG_IEEE80211_CRYPT_WEP=m | ||
478 | CONFIG_IEEE80211_CRYPT_CCMP=m | ||
479 | CONFIG_IEEE80211_CRYPT_TKIP=m | ||
480 | # CONFIG_RFKILL is not set | 485 | # CONFIG_RFKILL is not set |
481 | # CONFIG_NET_9P is not set | 486 | # CONFIG_NET_9P is not set |
482 | 487 | ||
@@ -501,6 +506,7 @@ CONFIG_MTD=y | |||
501 | # CONFIG_MTD_DEBUG is not set | 506 | # CONFIG_MTD_DEBUG is not set |
502 | CONFIG_MTD_CONCAT=y | 507 | CONFIG_MTD_CONCAT=y |
503 | CONFIG_MTD_PARTITIONS=y | 508 | CONFIG_MTD_PARTITIONS=y |
509 | # CONFIG_MTD_TESTS is not set | ||
504 | # CONFIG_MTD_REDBOOT_PARTS is not set | 510 | # CONFIG_MTD_REDBOOT_PARTS is not set |
505 | # CONFIG_MTD_CMDLINE_PARTS is not set | 511 | # CONFIG_MTD_CMDLINE_PARTS is not set |
506 | # CONFIG_MTD_OF_PARTS is not set | 512 | # CONFIG_MTD_OF_PARTS is not set |
@@ -554,9 +560,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
554 | # | 560 | # |
555 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | 561 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
556 | CONFIG_MTD_PHYSMAP=y | 562 | CONFIG_MTD_PHYSMAP=y |
557 | CONFIG_MTD_PHYSMAP_START=0xffc00000 | 563 | # CONFIG_MTD_PHYSMAP_COMPAT is not set |
558 | CONFIG_MTD_PHYSMAP_LEN=0x400000 | ||
559 | CONFIG_MTD_PHYSMAP_BANKWIDTH=1 | ||
560 | # CONFIG_MTD_PHYSMAP_OF is not set | 564 | # CONFIG_MTD_PHYSMAP_OF is not set |
561 | # CONFIG_MTD_INTEL_VR_NOR is not set | 565 | # CONFIG_MTD_INTEL_VR_NOR is not set |
562 | # CONFIG_MTD_PLATRAM is not set | 566 | # CONFIG_MTD_PLATRAM is not set |
@@ -580,6 +584,12 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=1 | |||
580 | # CONFIG_MTD_ONENAND is not set | 584 | # CONFIG_MTD_ONENAND is not set |
581 | 585 | ||
582 | # | 586 | # |
587 | # LPDDR flash memory drivers | ||
588 | # | ||
589 | # CONFIG_MTD_LPDDR is not set | ||
590 | # CONFIG_MTD_QINFO_PROBE is not set | ||
591 | |||
592 | # | ||
583 | # UBI - Unsorted block images | 593 | # UBI - Unsorted block images |
584 | # | 594 | # |
585 | # CONFIG_MTD_UBI is not set | 595 | # CONFIG_MTD_UBI is not set |
@@ -610,8 +620,10 @@ CONFIG_MISC_DEVICES=y | |||
610 | # CONFIG_EEPROM_93CX6 is not set | 620 | # CONFIG_EEPROM_93CX6 is not set |
611 | # CONFIG_SGI_IOC4 is not set | 621 | # CONFIG_SGI_IOC4 is not set |
612 | # CONFIG_TIFM_CORE is not set | 622 | # CONFIG_TIFM_CORE is not set |
623 | # CONFIG_ICS932S401 is not set | ||
613 | # CONFIG_ENCLOSURE_SERVICES is not set | 624 | # CONFIG_ENCLOSURE_SERVICES is not set |
614 | # CONFIG_HP_ILO is not set | 625 | # CONFIG_HP_ILO is not set |
626 | # CONFIG_C2PORT is not set | ||
615 | CONFIG_HAVE_IDE=y | 627 | CONFIG_HAVE_IDE=y |
616 | # CONFIG_IDE is not set | 628 | # CONFIG_IDE is not set |
617 | 629 | ||
@@ -654,6 +666,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
654 | # CONFIG_SCSI_SRP_ATTRS is not set | 666 | # CONFIG_SCSI_SRP_ATTRS is not set |
655 | CONFIG_SCSI_LOWLEVEL=y | 667 | CONFIG_SCSI_LOWLEVEL=y |
656 | # CONFIG_ISCSI_TCP is not set | 668 | # CONFIG_ISCSI_TCP is not set |
669 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
657 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 670 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
658 | # CONFIG_SCSI_3W_9XXX is not set | 671 | # CONFIG_SCSI_3W_9XXX is not set |
659 | # CONFIG_SCSI_ACARD is not set | 672 | # CONFIG_SCSI_ACARD is not set |
@@ -670,6 +683,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
670 | # CONFIG_MEGARAID_SAS is not set | 683 | # CONFIG_MEGARAID_SAS is not set |
671 | # CONFIG_SCSI_HPTIOP is not set | 684 | # CONFIG_SCSI_HPTIOP is not set |
672 | # CONFIG_SCSI_BUSLOGIC is not set | 685 | # CONFIG_SCSI_BUSLOGIC is not set |
686 | # CONFIG_LIBFC is not set | ||
687 | # CONFIG_FCOE is not set | ||
673 | # CONFIG_SCSI_DMX3191D is not set | 688 | # CONFIG_SCSI_DMX3191D is not set |
674 | # CONFIG_SCSI_EATA is not set | 689 | # CONFIG_SCSI_EATA is not set |
675 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 690 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -827,6 +842,7 @@ CONFIG_R8169=y | |||
827 | # CONFIG_JME is not set | 842 | # CONFIG_JME is not set |
828 | CONFIG_NETDEV_10000=y | 843 | CONFIG_NETDEV_10000=y |
829 | # CONFIG_CHELSIO_T1 is not set | 844 | # CONFIG_CHELSIO_T1 is not set |
845 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
830 | # CONFIG_CHELSIO_T3 is not set | 846 | # CONFIG_CHELSIO_T3 is not set |
831 | # CONFIG_ENIC is not set | 847 | # CONFIG_ENIC is not set |
832 | # CONFIG_IXGBE is not set | 848 | # CONFIG_IXGBE is not set |
@@ -851,6 +867,10 @@ CONFIG_NETDEV_10000=y | |||
851 | # CONFIG_IWLWIFI_LEDS is not set | 867 | # CONFIG_IWLWIFI_LEDS is not set |
852 | 868 | ||
853 | # | 869 | # |
870 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
871 | # | ||
872 | |||
873 | # | ||
854 | # USB Network Adapters | 874 | # USB Network Adapters |
855 | # | 875 | # |
856 | # CONFIG_USB_CATC is not set | 876 | # CONFIG_USB_CATC is not set |
@@ -949,8 +969,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
949 | # CONFIG_SERIAL_JSM is not set | 969 | # CONFIG_SERIAL_JSM is not set |
950 | # CONFIG_SERIAL_OF_PLATFORM is not set | 970 | # CONFIG_SERIAL_OF_PLATFORM is not set |
951 | CONFIG_UNIX98_PTYS=y | 971 | CONFIG_UNIX98_PTYS=y |
972 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
952 | CONFIG_LEGACY_PTYS=y | 973 | CONFIG_LEGACY_PTYS=y |
953 | CONFIG_LEGACY_PTY_COUNT=256 | 974 | CONFIG_LEGACY_PTY_COUNT=256 |
975 | # CONFIG_HVC_UDBG is not set | ||
954 | # CONFIG_IPMI_HANDLER is not set | 976 | # CONFIG_IPMI_HANDLER is not set |
955 | CONFIG_HW_RANDOM=y | 977 | CONFIG_HW_RANDOM=y |
956 | # CONFIG_NVRAM is not set | 978 | # CONFIG_NVRAM is not set |
@@ -1042,8 +1064,10 @@ CONFIG_HWMON=y | |||
1042 | # CONFIG_SENSORS_ADM1029 is not set | 1064 | # CONFIG_SENSORS_ADM1029 is not set |
1043 | # CONFIG_SENSORS_ADM1031 is not set | 1065 | # CONFIG_SENSORS_ADM1031 is not set |
1044 | # CONFIG_SENSORS_ADM9240 is not set | 1066 | # CONFIG_SENSORS_ADM9240 is not set |
1067 | # CONFIG_SENSORS_ADT7462 is not set | ||
1045 | # CONFIG_SENSORS_ADT7470 is not set | 1068 | # CONFIG_SENSORS_ADT7470 is not set |
1046 | # CONFIG_SENSORS_ADT7473 is not set | 1069 | # CONFIG_SENSORS_ADT7473 is not set |
1070 | # CONFIG_SENSORS_ADT7475 is not set | ||
1047 | # CONFIG_SENSORS_ATXP1 is not set | 1071 | # CONFIG_SENSORS_ATXP1 is not set |
1048 | # CONFIG_SENSORS_DS1621 is not set | 1072 | # CONFIG_SENSORS_DS1621 is not set |
1049 | # CONFIG_SENSORS_I5K_AMB is not set | 1073 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -1064,6 +1088,7 @@ CONFIG_HWMON=y | |||
1064 | # CONFIG_SENSORS_LM90 is not set | 1088 | # CONFIG_SENSORS_LM90 is not set |
1065 | # CONFIG_SENSORS_LM92 is not set | 1089 | # CONFIG_SENSORS_LM92 is not set |
1066 | # CONFIG_SENSORS_LM93 is not set | 1090 | # CONFIG_SENSORS_LM93 is not set |
1091 | # CONFIG_SENSORS_LTC4245 is not set | ||
1067 | # CONFIG_SENSORS_MAX1619 is not set | 1092 | # CONFIG_SENSORS_MAX1619 is not set |
1068 | # CONFIG_SENSORS_MAX6650 is not set | 1093 | # CONFIG_SENSORS_MAX6650 is not set |
1069 | # CONFIG_SENSORS_PC87360 is not set | 1094 | # CONFIG_SENSORS_PC87360 is not set |
@@ -1090,11 +1115,11 @@ CONFIG_HWMON=y | |||
1090 | # CONFIG_THERMAL is not set | 1115 | # CONFIG_THERMAL is not set |
1091 | # CONFIG_THERMAL_HWMON is not set | 1116 | # CONFIG_THERMAL_HWMON is not set |
1092 | # CONFIG_WATCHDOG is not set | 1117 | # CONFIG_WATCHDOG is not set |
1118 | CONFIG_SSB_POSSIBLE=y | ||
1093 | 1119 | ||
1094 | # | 1120 | # |
1095 | # Sonics Silicon Backplane | 1121 | # Sonics Silicon Backplane |
1096 | # | 1122 | # |
1097 | CONFIG_SSB_POSSIBLE=y | ||
1098 | # CONFIG_SSB is not set | 1123 | # CONFIG_SSB is not set |
1099 | 1124 | ||
1100 | # | 1125 | # |
@@ -1103,18 +1128,13 @@ CONFIG_SSB_POSSIBLE=y | |||
1103 | # CONFIG_MFD_CORE is not set | 1128 | # CONFIG_MFD_CORE is not set |
1104 | # CONFIG_MFD_SM501 is not set | 1129 | # CONFIG_MFD_SM501 is not set |
1105 | # CONFIG_HTC_PASIC3 is not set | 1130 | # CONFIG_HTC_PASIC3 is not set |
1131 | # CONFIG_TWL4030_CORE is not set | ||
1106 | # CONFIG_MFD_TMIO is not set | 1132 | # CONFIG_MFD_TMIO is not set |
1107 | # CONFIG_PMIC_DA903X is not set | 1133 | # CONFIG_PMIC_DA903X is not set |
1108 | # CONFIG_MFD_WM8400 is not set | 1134 | # CONFIG_MFD_WM8400 is not set |
1109 | # CONFIG_MFD_WM8350_I2C is not set | 1135 | # CONFIG_MFD_WM8350_I2C is not set |
1110 | 1136 | # CONFIG_MFD_PCF50633 is not set | |
1111 | # | ||
1112 | # Voltage and Current regulators | ||
1113 | # | ||
1114 | # CONFIG_REGULATOR is not set | 1137 | # CONFIG_REGULATOR is not set |
1115 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
1116 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
1117 | # CONFIG_REGULATOR_BQ24022 is not set | ||
1118 | 1138 | ||
1119 | # | 1139 | # |
1120 | # Multimedia devices | 1140 | # Multimedia devices |
@@ -1165,12 +1185,6 @@ CONFIG_HID=m | |||
1165 | # CONFIG_HID_PID is not set | 1185 | # CONFIG_HID_PID is not set |
1166 | 1186 | ||
1167 | # | 1187 | # |
1168 | # USB HID Boot Protocol drivers | ||
1169 | # | ||
1170 | # CONFIG_USB_KBD is not set | ||
1171 | # CONFIG_USB_MOUSE is not set | ||
1172 | |||
1173 | # | ||
1174 | # Special HID drivers | 1188 | # Special HID drivers |
1175 | # | 1189 | # |
1176 | CONFIG_HID_COMPAT=y | 1190 | CONFIG_HID_COMPAT=y |
@@ -1202,6 +1216,7 @@ CONFIG_USB_EHCI_HCD=y | |||
1202 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1216 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1203 | # CONFIG_USB_EHCI_FSL is not set | 1217 | # CONFIG_USB_EHCI_FSL is not set |
1204 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1218 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1219 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1205 | # CONFIG_USB_ISP116X_HCD is not set | 1220 | # CONFIG_USB_ISP116X_HCD is not set |
1206 | # CONFIG_USB_ISP1760_HCD is not set | 1221 | # CONFIG_USB_ISP1760_HCD is not set |
1207 | CONFIG_USB_OHCI_HCD=y | 1222 | CONFIG_USB_OHCI_HCD=y |
@@ -1227,18 +1242,17 @@ CONFIG_USB_PRINTER=m | |||
1227 | # CONFIG_USB_TMC is not set | 1242 | # CONFIG_USB_TMC is not set |
1228 | 1243 | ||
1229 | # | 1244 | # |
1230 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1245 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1231 | # | 1246 | # |
1232 | 1247 | ||
1233 | # | 1248 | # |
1234 | # may also be needed; see USB_STORAGE Help for more information | 1249 | # see USB_STORAGE Help for more information |
1235 | # | 1250 | # |
1236 | CONFIG_USB_STORAGE=m | 1251 | CONFIG_USB_STORAGE=m |
1237 | # CONFIG_USB_STORAGE_DEBUG is not set | 1252 | # CONFIG_USB_STORAGE_DEBUG is not set |
1238 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1253 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1239 | # CONFIG_USB_STORAGE_FREECOM is not set | 1254 | # CONFIG_USB_STORAGE_FREECOM is not set |
1240 | # CONFIG_USB_STORAGE_ISD200 is not set | 1255 | # CONFIG_USB_STORAGE_ISD200 is not set |
1241 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1242 | # CONFIG_USB_STORAGE_USBAT is not set | 1256 | # CONFIG_USB_STORAGE_USBAT is not set |
1243 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1257 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1244 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1258 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1295,12 +1309,14 @@ CONFIG_USB_SERIAL_FTDI_SIO=y | |||
1295 | # CONFIG_USB_SERIAL_SPCP8X5 is not set | 1309 | # CONFIG_USB_SERIAL_SPCP8X5 is not set |
1296 | # CONFIG_USB_SERIAL_HP4X is not set | 1310 | # CONFIG_USB_SERIAL_HP4X is not set |
1297 | # CONFIG_USB_SERIAL_SAFE is not set | 1311 | # CONFIG_USB_SERIAL_SAFE is not set |
1312 | # CONFIG_USB_SERIAL_SIEMENS_MPI is not set | ||
1298 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set | 1313 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set |
1299 | # CONFIG_USB_SERIAL_TI is not set | 1314 | # CONFIG_USB_SERIAL_TI is not set |
1300 | # CONFIG_USB_SERIAL_CYBERJACK is not set | 1315 | # CONFIG_USB_SERIAL_CYBERJACK is not set |
1301 | # CONFIG_USB_SERIAL_XIRCOM is not set | 1316 | # CONFIG_USB_SERIAL_XIRCOM is not set |
1302 | # CONFIG_USB_SERIAL_OPTION is not set | 1317 | # CONFIG_USB_SERIAL_OPTION is not set |
1303 | # CONFIG_USB_SERIAL_OMNINET is not set | 1318 | # CONFIG_USB_SERIAL_OMNINET is not set |
1319 | # CONFIG_USB_SERIAL_OPTICON is not set | ||
1304 | # CONFIG_USB_SERIAL_DEBUG is not set | 1320 | # CONFIG_USB_SERIAL_DEBUG is not set |
1305 | 1321 | ||
1306 | # | 1322 | # |
@@ -1329,6 +1345,10 @@ CONFIG_USB_SERIAL_FTDI_SIO=y | |||
1329 | # CONFIG_USB_ISIGHTFW is not set | 1345 | # CONFIG_USB_ISIGHTFW is not set |
1330 | # CONFIG_USB_VST is not set | 1346 | # CONFIG_USB_VST is not set |
1331 | # CONFIG_USB_GADGET is not set | 1347 | # CONFIG_USB_GADGET is not set |
1348 | |||
1349 | # | ||
1350 | # OTG and related infrastructure | ||
1351 | # | ||
1332 | # CONFIG_UWB is not set | 1352 | # CONFIG_UWB is not set |
1333 | # CONFIG_MMC is not set | 1353 | # CONFIG_MMC is not set |
1334 | # CONFIG_MEMSTICK is not set | 1354 | # CONFIG_MEMSTICK is not set |
@@ -1366,6 +1386,7 @@ CONFIG_RTC_DRV_RS5C372=y | |||
1366 | # CONFIG_RTC_DRV_M41T80 is not set | 1386 | # CONFIG_RTC_DRV_M41T80 is not set |
1367 | # CONFIG_RTC_DRV_S35390A is not set | 1387 | # CONFIG_RTC_DRV_S35390A is not set |
1368 | # CONFIG_RTC_DRV_FM3130 is not set | 1388 | # CONFIG_RTC_DRV_FM3130 is not set |
1389 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1369 | 1390 | ||
1370 | # | 1391 | # |
1371 | # SPI RTC drivers | 1392 | # SPI RTC drivers |
@@ -1417,6 +1438,7 @@ CONFIG_XFS_FS=m | |||
1417 | # CONFIG_XFS_RT is not set | 1438 | # CONFIG_XFS_RT is not set |
1418 | # CONFIG_XFS_DEBUG is not set | 1439 | # CONFIG_XFS_DEBUG is not set |
1419 | # CONFIG_OCFS2_FS is not set | 1440 | # CONFIG_OCFS2_FS is not set |
1441 | # CONFIG_BTRFS_FS is not set | ||
1420 | CONFIG_DNOTIFY=y | 1442 | CONFIG_DNOTIFY=y |
1421 | CONFIG_INOTIFY=y | 1443 | CONFIG_INOTIFY=y |
1422 | CONFIG_INOTIFY_USER=y | 1444 | CONFIG_INOTIFY_USER=y |
@@ -1458,10 +1480,7 @@ CONFIG_TMPFS=y | |||
1458 | # CONFIG_TMPFS_POSIX_ACL is not set | 1480 | # CONFIG_TMPFS_POSIX_ACL is not set |
1459 | # CONFIG_HUGETLB_PAGE is not set | 1481 | # CONFIG_HUGETLB_PAGE is not set |
1460 | # CONFIG_CONFIGFS_FS is not set | 1482 | # CONFIG_CONFIGFS_FS is not set |
1461 | 1483 | CONFIG_MISC_FILESYSTEMS=y | |
1462 | # | ||
1463 | # Miscellaneous filesystems | ||
1464 | # | ||
1465 | # CONFIG_ADFS_FS is not set | 1484 | # CONFIG_ADFS_FS is not set |
1466 | # CONFIG_AFFS_FS is not set | 1485 | # CONFIG_AFFS_FS is not set |
1467 | # CONFIG_HFS_FS is not set | 1486 | # CONFIG_HFS_FS is not set |
@@ -1471,6 +1490,7 @@ CONFIG_TMPFS=y | |||
1471 | # CONFIG_EFS_FS is not set | 1490 | # CONFIG_EFS_FS is not set |
1472 | # CONFIG_JFFS2_FS is not set | 1491 | # CONFIG_JFFS2_FS is not set |
1473 | # CONFIG_CRAMFS is not set | 1492 | # CONFIG_CRAMFS is not set |
1493 | # CONFIG_SQUASHFS is not set | ||
1474 | # CONFIG_VXFS_FS is not set | 1494 | # CONFIG_VXFS_FS is not set |
1475 | # CONFIG_MINIX_FS is not set | 1495 | # CONFIG_MINIX_FS is not set |
1476 | # CONFIG_OMFS_FS is not set | 1496 | # CONFIG_OMFS_FS is not set |
@@ -1561,6 +1581,7 @@ CONFIG_NLS_UTF8=m | |||
1561 | # Library routines | 1581 | # Library routines |
1562 | # | 1582 | # |
1563 | CONFIG_BITREVERSE=y | 1583 | CONFIG_BITREVERSE=y |
1584 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1564 | CONFIG_CRC_CCITT=m | 1585 | CONFIG_CRC_CCITT=m |
1565 | # CONFIG_CRC16 is not set | 1586 | # CONFIG_CRC16 is not set |
1566 | CONFIG_CRC_T10DIF=y | 1587 | CONFIG_CRC_T10DIF=y |
@@ -1614,6 +1635,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
1614 | CONFIG_DEBUG_MEMORY_INIT=y | 1635 | CONFIG_DEBUG_MEMORY_INIT=y |
1615 | # CONFIG_DEBUG_LIST is not set | 1636 | # CONFIG_DEBUG_LIST is not set |
1616 | # CONFIG_DEBUG_SG is not set | 1637 | # CONFIG_DEBUG_SG is not set |
1638 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1617 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1639 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1618 | # CONFIG_RCU_TORTURE_TEST is not set | 1640 | # CONFIG_RCU_TORTURE_TEST is not set |
1619 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1641 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1623,6 +1645,8 @@ CONFIG_DEBUG_MEMORY_INIT=y | |||
1623 | # CONFIG_LATENCYTOP is not set | 1645 | # CONFIG_LATENCYTOP is not set |
1624 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1646 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1625 | CONFIG_HAVE_FUNCTION_TRACER=y | 1647 | CONFIG_HAVE_FUNCTION_TRACER=y |
1648 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1649 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1626 | 1650 | ||
1627 | # | 1651 | # |
1628 | # Tracers | 1652 | # Tracers |
@@ -1631,11 +1655,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1631 | # CONFIG_SCHED_TRACER is not set | 1655 | # CONFIG_SCHED_TRACER is not set |
1632 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1656 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1633 | # CONFIG_BOOT_TRACER is not set | 1657 | # CONFIG_BOOT_TRACER is not set |
1658 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1634 | # CONFIG_STACK_TRACER is not set | 1659 | # CONFIG_STACK_TRACER is not set |
1635 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1660 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1636 | # CONFIG_SAMPLES is not set | 1661 | # CONFIG_SAMPLES is not set |
1637 | CONFIG_HAVE_ARCH_KGDB=y | 1662 | CONFIG_HAVE_ARCH_KGDB=y |
1638 | # CONFIG_KGDB is not set | 1663 | # CONFIG_KGDB is not set |
1664 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1639 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1665 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1640 | # CONFIG_DEBUG_STACK_USAGE is not set | 1666 | # CONFIG_DEBUG_STACK_USAGE is not set |
1641 | # CONFIG_DEBUG_PAGEALLOC is not set | 1667 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1662,11 +1688,15 @@ CONFIG_CRYPTO=y | |||
1662 | # | 1688 | # |
1663 | # CONFIG_CRYPTO_FIPS is not set | 1689 | # CONFIG_CRYPTO_FIPS is not set |
1664 | CONFIG_CRYPTO_ALGAPI=y | 1690 | CONFIG_CRYPTO_ALGAPI=y |
1665 | CONFIG_CRYPTO_AEAD=y | 1691 | CONFIG_CRYPTO_ALGAPI2=y |
1692 | CONFIG_CRYPTO_AEAD2=y | ||
1666 | CONFIG_CRYPTO_BLKCIPHER=y | 1693 | CONFIG_CRYPTO_BLKCIPHER=y |
1694 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1667 | CONFIG_CRYPTO_HASH=y | 1695 | CONFIG_CRYPTO_HASH=y |
1668 | CONFIG_CRYPTO_RNG=y | 1696 | CONFIG_CRYPTO_HASH2=y |
1697 | CONFIG_CRYPTO_RNG2=y | ||
1669 | CONFIG_CRYPTO_MANAGER=y | 1698 | CONFIG_CRYPTO_MANAGER=y |
1699 | CONFIG_CRYPTO_MANAGER2=y | ||
1670 | # CONFIG_CRYPTO_GF128MUL is not set | 1700 | # CONFIG_CRYPTO_GF128MUL is not set |
1671 | # CONFIG_CRYPTO_NULL is not set | 1701 | # CONFIG_CRYPTO_NULL is not set |
1672 | # CONFIG_CRYPTO_CRYPTD is not set | 1702 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/mgcoge_defconfig b/arch/powerpc/configs/mgcoge_defconfig index 8d3c62324009..c58c38d5b7a6 100644 --- a/arch/powerpc/configs/mgcoge_defconfig +++ b/arch/powerpc/configs/mgcoge_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:38 2008 | 4 | # Mon Jan 26 15:35:30 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_GPIO=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -89,6 +89,7 @@ CONFIG_EMBEDDED=y | |||
89 | CONFIG_SYSCTL_SYSCALL=y | 89 | CONFIG_SYSCTL_SYSCALL=y |
90 | CONFIG_KALLSYMS=y | 90 | CONFIG_KALLSYMS=y |
91 | CONFIG_KALLSYMS_ALL=y | 91 | CONFIG_KALLSYMS_ALL=y |
92 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
92 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 93 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
93 | CONFIG_HOTPLUG=y | 94 | CONFIG_HOTPLUG=y |
94 | CONFIG_PRINTK=y | 95 | CONFIG_PRINTK=y |
@@ -111,7 +112,6 @@ CONFIG_SLAB=y | |||
111 | # CONFIG_SLUB is not set | 112 | # CONFIG_SLUB is not set |
112 | # CONFIG_SLOB is not set | 113 | # CONFIG_SLOB is not set |
113 | # CONFIG_PROFILING is not set | 114 | # CONFIG_PROFILING is not set |
114 | # CONFIG_MARKERS is not set | ||
115 | CONFIG_HAVE_OPROFILE=y | 115 | CONFIG_HAVE_OPROFILE=y |
116 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 116 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
117 | CONFIG_HAVE_IOREMAP_PROT=y | 117 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -122,13 +122,11 @@ CONFIG_HAVE_CLK=y | |||
122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
123 | CONFIG_SLABINFO=y | 123 | CONFIG_SLABINFO=y |
124 | CONFIG_RT_MUTEXES=y | 124 | CONFIG_RT_MUTEXES=y |
125 | # CONFIG_TINY_SHMEM is not set | ||
126 | CONFIG_BASE_SMALL=0 | 125 | CONFIG_BASE_SMALL=0 |
127 | # CONFIG_MODULES is not set | 126 | # CONFIG_MODULES is not set |
128 | CONFIG_BLOCK=y | 127 | CONFIG_BLOCK=y |
129 | # CONFIG_LBD is not set | 128 | # CONFIG_LBD is not set |
130 | # CONFIG_BLK_DEV_IO_TRACE is not set | 129 | # CONFIG_BLK_DEV_IO_TRACE is not set |
131 | # CONFIG_LSF is not set | ||
132 | # CONFIG_BLK_DEV_INTEGRITY is not set | 130 | # CONFIG_BLK_DEV_INTEGRITY is not set |
133 | 131 | ||
134 | # | 132 | # |
@@ -144,6 +142,10 @@ CONFIG_DEFAULT_DEADLINE=y | |||
144 | # CONFIG_DEFAULT_NOOP is not set | 142 | # CONFIG_DEFAULT_NOOP is not set |
145 | CONFIG_DEFAULT_IOSCHED="deadline" | 143 | CONFIG_DEFAULT_IOSCHED="deadline" |
146 | CONFIG_CLASSIC_RCU=y | 144 | CONFIG_CLASSIC_RCU=y |
145 | # CONFIG_TREE_RCU is not set | ||
146 | # CONFIG_PREEMPT_RCU is not set | ||
147 | # CONFIG_TREE_RCU_TRACE is not set | ||
148 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
147 | # CONFIG_FREEZER is not set | 149 | # CONFIG_FREEZER is not set |
148 | 150 | ||
149 | # | 151 | # |
@@ -190,6 +192,7 @@ CONFIG_PPC_MPC106=y | |||
190 | CONFIG_CPM2=y | 192 | CONFIG_CPM2=y |
191 | # CONFIG_FSL_ULI1575 is not set | 193 | # CONFIG_FSL_ULI1575 is not set |
192 | CONFIG_CPM=y | 194 | CONFIG_CPM=y |
195 | # CONFIG_SIMPLE_GPIO is not set | ||
193 | 196 | ||
194 | # | 197 | # |
195 | # Kernel options | 198 | # Kernel options |
@@ -215,6 +218,7 @@ CONFIG_BINFMT_MISC=y | |||
215 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 218 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
216 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 219 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
217 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 220 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
221 | # CONFIG_CRASH_DUMP is not set | ||
218 | CONFIG_ARCH_FLATMEM_ENABLE=y | 222 | CONFIG_ARCH_FLATMEM_ENABLE=y |
219 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 223 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
220 | CONFIG_FLATMEM=y | 224 | CONFIG_FLATMEM=y |
@@ -222,12 +226,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
222 | CONFIG_PAGEFLAGS_EXTENDED=y | 226 | CONFIG_PAGEFLAGS_EXTENDED=y |
223 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 227 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
224 | CONFIG_MIGRATION=y | 228 | CONFIG_MIGRATION=y |
225 | # CONFIG_RESOURCES_64BIT is not set | ||
226 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 229 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
227 | CONFIG_ZONE_DMA_FLAG=1 | 230 | CONFIG_ZONE_DMA_FLAG=1 |
228 | CONFIG_BOUNCE=y | 231 | CONFIG_BOUNCE=y |
229 | CONFIG_VIRT_TO_BUS=y | 232 | CONFIG_VIRT_TO_BUS=y |
230 | CONFIG_UNEVICTABLE_LRU=y | 233 | CONFIG_UNEVICTABLE_LRU=y |
234 | CONFIG_PPC_4K_PAGES=y | ||
235 | # CONFIG_PPC_16K_PAGES is not set | ||
236 | # CONFIG_PPC_64K_PAGES is not set | ||
231 | CONFIG_FORCE_MAX_ZONEORDER=11 | 237 | CONFIG_FORCE_MAX_ZONEORDER=11 |
232 | CONFIG_PROC_DEVICETREE=y | 238 | CONFIG_PROC_DEVICETREE=y |
233 | # CONFIG_CMDLINE_BOOL is not set | 239 | # CONFIG_CMDLINE_BOOL is not set |
@@ -253,6 +259,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
253 | # CONFIG_PCI_MSI is not set | 259 | # CONFIG_PCI_MSI is not set |
254 | # CONFIG_PCI_LEGACY is not set | 260 | # CONFIG_PCI_LEGACY is not set |
255 | # CONFIG_PCI_DEBUG is not set | 261 | # CONFIG_PCI_DEBUG is not set |
262 | # CONFIG_PCI_STUB is not set | ||
256 | # CONFIG_PCCARD is not set | 263 | # CONFIG_PCCARD is not set |
257 | # CONFIG_HOTPLUG_PCI is not set | 264 | # CONFIG_HOTPLUG_PCI is not set |
258 | # CONFIG_HAS_RAPIDIO is not set | 265 | # CONFIG_HAS_RAPIDIO is not set |
@@ -275,6 +282,7 @@ CONFIG_NET=y | |||
275 | # | 282 | # |
276 | # Networking options | 283 | # Networking options |
277 | # | 284 | # |
285 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
278 | CONFIG_PACKET=y | 286 | CONFIG_PACKET=y |
279 | # CONFIG_PACKET_MMAP is not set | 287 | # CONFIG_PACKET_MMAP is not set |
280 | CONFIG_UNIX=y | 288 | CONFIG_UNIX=y |
@@ -337,6 +345,7 @@ CONFIG_NETFILTER_ADVANCED=y | |||
337 | # CONFIG_IPX is not set | 345 | # CONFIG_IPX is not set |
338 | # CONFIG_ATALK is not set | 346 | # CONFIG_ATALK is not set |
339 | # CONFIG_NET_SCHED is not set | 347 | # CONFIG_NET_SCHED is not set |
348 | # CONFIG_DCB is not set | ||
340 | 349 | ||
341 | # | 350 | # |
342 | # Network testing | 351 | # Network testing |
@@ -351,8 +360,9 @@ CONFIG_WIRELESS=y | |||
351 | # CONFIG_CFG80211 is not set | 360 | # CONFIG_CFG80211 is not set |
352 | CONFIG_WIRELESS_OLD_REGULATORY=y | 361 | CONFIG_WIRELESS_OLD_REGULATORY=y |
353 | # CONFIG_WIRELESS_EXT is not set | 362 | # CONFIG_WIRELESS_EXT is not set |
363 | # CONFIG_LIB80211 is not set | ||
354 | # CONFIG_MAC80211 is not set | 364 | # CONFIG_MAC80211 is not set |
355 | # CONFIG_IEEE80211 is not set | 365 | # CONFIG_WIMAX is not set |
356 | # CONFIG_RFKILL is not set | 366 | # CONFIG_RFKILL is not set |
357 | 367 | ||
358 | # | 368 | # |
@@ -451,6 +461,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
451 | # CONFIG_MTD_ONENAND is not set | 461 | # CONFIG_MTD_ONENAND is not set |
452 | 462 | ||
453 | # | 463 | # |
464 | # LPDDR flash memory drivers | ||
465 | # | ||
466 | # CONFIG_MTD_LPDDR is not set | ||
467 | # CONFIG_MTD_QINFO_PROBE is not set | ||
468 | |||
469 | # | ||
454 | # UBI - Unsorted block images | 470 | # UBI - Unsorted block images |
455 | # | 471 | # |
456 | # CONFIG_MTD_UBI is not set | 472 | # CONFIG_MTD_UBI is not set |
@@ -522,6 +538,9 @@ CONFIG_PHYLIB=y | |||
522 | # CONFIG_BROADCOM_PHY is not set | 538 | # CONFIG_BROADCOM_PHY is not set |
523 | # CONFIG_ICPLUS_PHY is not set | 539 | # CONFIG_ICPLUS_PHY is not set |
524 | # CONFIG_REALTEK_PHY is not set | 540 | # CONFIG_REALTEK_PHY is not set |
541 | # CONFIG_NATIONAL_PHY is not set | ||
542 | # CONFIG_STE10XP is not set | ||
543 | # CONFIG_LSI_ET1011C_PHY is not set | ||
525 | CONFIG_FIXED_PHY=y | 544 | CONFIG_FIXED_PHY=y |
526 | # CONFIG_MDIO_BITBANG is not set | 545 | # CONFIG_MDIO_BITBANG is not set |
527 | CONFIG_NET_ETHERNET=y | 546 | CONFIG_NET_ETHERNET=y |
@@ -558,6 +577,10 @@ CONFIG_FS_ENET_HAS_SCC=y | |||
558 | # CONFIG_WLAN_PRE80211 is not set | 577 | # CONFIG_WLAN_PRE80211 is not set |
559 | # CONFIG_WLAN_80211 is not set | 578 | # CONFIG_WLAN_80211 is not set |
560 | # CONFIG_IWLWIFI_LEDS is not set | 579 | # CONFIG_IWLWIFI_LEDS is not set |
580 | |||
581 | # | ||
582 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
583 | # | ||
561 | # CONFIG_WAN is not set | 584 | # CONFIG_WAN is not set |
562 | # CONFIG_FDDI is not set | 585 | # CONFIG_FDDI is not set |
563 | # CONFIG_PPP is not set | 586 | # CONFIG_PPP is not set |
@@ -601,6 +624,7 @@ CONFIG_SERIAL_CPM=y | |||
601 | CONFIG_SERIAL_CPM_CONSOLE=y | 624 | CONFIG_SERIAL_CPM_CONSOLE=y |
602 | # CONFIG_SERIAL_JSM is not set | 625 | # CONFIG_SERIAL_JSM is not set |
603 | CONFIG_UNIX98_PTYS=y | 626 | CONFIG_UNIX98_PTYS=y |
627 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
604 | CONFIG_LEGACY_PTYS=y | 628 | CONFIG_LEGACY_PTYS=y |
605 | CONFIG_LEGACY_PTY_COUNT=256 | 629 | CONFIG_LEGACY_PTY_COUNT=256 |
606 | # CONFIG_BRIQ_PANEL is not set | 630 | # CONFIG_BRIQ_PANEL is not set |
@@ -621,6 +645,11 @@ CONFIG_GPIOLIB=y | |||
621 | # CONFIG_DEBUG_GPIO is not set | 645 | # CONFIG_DEBUG_GPIO is not set |
622 | 646 | ||
623 | # | 647 | # |
648 | # Memory mapped GPIO expanders: | ||
649 | # | ||
650 | # CONFIG_GPIO_XILINX is not set | ||
651 | |||
652 | # | ||
624 | # I2C GPIO expanders: | 653 | # I2C GPIO expanders: |
625 | # | 654 | # |
626 | 655 | ||
@@ -638,11 +667,11 @@ CONFIG_GPIOLIB=y | |||
638 | # CONFIG_THERMAL is not set | 667 | # CONFIG_THERMAL is not set |
639 | # CONFIG_THERMAL_HWMON is not set | 668 | # CONFIG_THERMAL_HWMON is not set |
640 | # CONFIG_WATCHDOG is not set | 669 | # CONFIG_WATCHDOG is not set |
670 | CONFIG_SSB_POSSIBLE=y | ||
641 | 671 | ||
642 | # | 672 | # |
643 | # Sonics Silicon Backplane | 673 | # Sonics Silicon Backplane |
644 | # | 674 | # |
645 | CONFIG_SSB_POSSIBLE=y | ||
646 | # CONFIG_SSB is not set | 675 | # CONFIG_SSB is not set |
647 | 676 | ||
648 | # | 677 | # |
@@ -652,14 +681,7 @@ CONFIG_SSB_POSSIBLE=y | |||
652 | # CONFIG_MFD_SM501 is not set | 681 | # CONFIG_MFD_SM501 is not set |
653 | # CONFIG_HTC_PASIC3 is not set | 682 | # CONFIG_HTC_PASIC3 is not set |
654 | # CONFIG_MFD_TMIO is not set | 683 | # CONFIG_MFD_TMIO is not set |
655 | |||
656 | # | ||
657 | # Voltage and Current regulators | ||
658 | # | ||
659 | # CONFIG_REGULATOR is not set | 684 | # CONFIG_REGULATOR is not set |
660 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
661 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
662 | # CONFIG_REGULATOR_BQ24022 is not set | ||
663 | 685 | ||
664 | # | 686 | # |
665 | # Multimedia devices | 687 | # Multimedia devices |
@@ -753,10 +775,7 @@ CONFIG_TMPFS=y | |||
753 | # CONFIG_TMPFS_POSIX_ACL is not set | 775 | # CONFIG_TMPFS_POSIX_ACL is not set |
754 | # CONFIG_HUGETLB_PAGE is not set | 776 | # CONFIG_HUGETLB_PAGE is not set |
755 | # CONFIG_CONFIGFS_FS is not set | 777 | # CONFIG_CONFIGFS_FS is not set |
756 | 778 | CONFIG_MISC_FILESYSTEMS=y | |
757 | # | ||
758 | # Miscellaneous filesystems | ||
759 | # | ||
760 | # CONFIG_HFSPLUS_FS is not set | 779 | # CONFIG_HFSPLUS_FS is not set |
761 | CONFIG_JFFS2_FS=y | 780 | CONFIG_JFFS2_FS=y |
762 | CONFIG_JFFS2_FS_DEBUG=0 | 781 | CONFIG_JFFS2_FS_DEBUG=0 |
@@ -768,6 +787,7 @@ CONFIG_JFFS2_ZLIB=y | |||
768 | CONFIG_JFFS2_RTIME=y | 787 | CONFIG_JFFS2_RTIME=y |
769 | # CONFIG_JFFS2_RUBIN is not set | 788 | # CONFIG_JFFS2_RUBIN is not set |
770 | CONFIG_CRAMFS=y | 789 | CONFIG_CRAMFS=y |
790 | # CONFIG_SQUASHFS is not set | ||
771 | # CONFIG_VXFS_FS is not set | 791 | # CONFIG_VXFS_FS is not set |
772 | # CONFIG_MINIX_FS is not set | 792 | # CONFIG_MINIX_FS is not set |
773 | # CONFIG_OMFS_FS is not set | 793 | # CONFIG_OMFS_FS is not set |
@@ -857,6 +877,7 @@ CONFIG_NLS_UTF8=y | |||
857 | # Library routines | 877 | # Library routines |
858 | # | 878 | # |
859 | CONFIG_BITREVERSE=y | 879 | CONFIG_BITREVERSE=y |
880 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
860 | # CONFIG_CRC_CCITT is not set | 881 | # CONFIG_CRC_CCITT is not set |
861 | # CONFIG_CRC16 is not set | 882 | # CONFIG_CRC16 is not set |
862 | # CONFIG_CRC_T10DIF is not set | 883 | # CONFIG_CRC_T10DIF is not set |
@@ -905,6 +926,7 @@ CONFIG_DEBUG_INFO=y | |||
905 | # CONFIG_DEBUG_MEMORY_INIT is not set | 926 | # CONFIG_DEBUG_MEMORY_INIT is not set |
906 | # CONFIG_DEBUG_LIST is not set | 927 | # CONFIG_DEBUG_LIST is not set |
907 | # CONFIG_DEBUG_SG is not set | 928 | # CONFIG_DEBUG_SG is not set |
929 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
908 | # CONFIG_BOOT_PRINTK_DELAY is not set | 930 | # CONFIG_BOOT_PRINTK_DELAY is not set |
909 | # CONFIG_RCU_TORTURE_TEST is not set | 931 | # CONFIG_RCU_TORTURE_TEST is not set |
910 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 932 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -914,6 +936,8 @@ CONFIG_DEBUG_INFO=y | |||
914 | # CONFIG_LATENCYTOP is not set | 936 | # CONFIG_LATENCYTOP is not set |
915 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 937 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
916 | CONFIG_HAVE_FUNCTION_TRACER=y | 938 | CONFIG_HAVE_FUNCTION_TRACER=y |
939 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
940 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
917 | 941 | ||
918 | # | 942 | # |
919 | # Tracers | 943 | # Tracers |
@@ -922,10 +946,12 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
922 | # CONFIG_SCHED_TRACER is not set | 946 | # CONFIG_SCHED_TRACER is not set |
923 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 947 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
924 | # CONFIG_BOOT_TRACER is not set | 948 | # CONFIG_BOOT_TRACER is not set |
949 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
925 | # CONFIG_STACK_TRACER is not set | 950 | # CONFIG_STACK_TRACER is not set |
926 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 951 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
927 | # CONFIG_SAMPLES is not set | 952 | # CONFIG_SAMPLES is not set |
928 | CONFIG_HAVE_ARCH_KGDB=y | 953 | CONFIG_HAVE_ARCH_KGDB=y |
954 | CONFIG_PRINT_STACK_DEPTH=64 | ||
929 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 955 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
930 | # CONFIG_DEBUG_STACK_USAGE is not set | 956 | # CONFIG_DEBUG_STACK_USAGE is not set |
931 | # CONFIG_DEBUG_PAGEALLOC is not set | 957 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -953,11 +979,15 @@ CONFIG_CRYPTO=y | |||
953 | # | 979 | # |
954 | # CONFIG_CRYPTO_FIPS is not set | 980 | # CONFIG_CRYPTO_FIPS is not set |
955 | CONFIG_CRYPTO_ALGAPI=y | 981 | CONFIG_CRYPTO_ALGAPI=y |
956 | CONFIG_CRYPTO_AEAD=y | 982 | CONFIG_CRYPTO_ALGAPI2=y |
983 | CONFIG_CRYPTO_AEAD2=y | ||
957 | CONFIG_CRYPTO_BLKCIPHER=y | 984 | CONFIG_CRYPTO_BLKCIPHER=y |
985 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
958 | CONFIG_CRYPTO_HASH=y | 986 | CONFIG_CRYPTO_HASH=y |
959 | CONFIG_CRYPTO_RNG=y | 987 | CONFIG_CRYPTO_HASH2=y |
988 | CONFIG_CRYPTO_RNG2=y | ||
960 | CONFIG_CRYPTO_MANAGER=y | 989 | CONFIG_CRYPTO_MANAGER=y |
990 | CONFIG_CRYPTO_MANAGER2=y | ||
961 | # CONFIG_CRYPTO_NULL is not set | 991 | # CONFIG_CRYPTO_NULL is not set |
962 | # CONFIG_CRYPTO_CRYPTD is not set | 992 | # CONFIG_CRYPTO_CRYPTD is not set |
963 | # CONFIG_CRYPTO_AUTHENC is not set | 993 | # CONFIG_CRYPTO_AUTHENC is not set |
diff --git a/arch/powerpc/configs/mgsuvd_defconfig b/arch/powerpc/configs/mgsuvd_defconfig index fbaa67f7b0ef..297b5d5042be 100644 --- a/arch/powerpc/configs/mgsuvd_defconfig +++ b/arch/powerpc/configs/mgsuvd_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:39 2008 | 4 | # Mon Jan 26 15:35:32 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_PPC_8xx=y | |||
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_8xx=y | 17 | CONFIG_8xx=y |
18 | CONFIG_PPC_MMU_NOHASH=y | ||
18 | # CONFIG_PPC_MM_SLICES is not set | 19 | # CONFIG_PPC_MM_SLICES is not set |
19 | CONFIG_NOT_COHERENT_CACHE=y | 20 | CONFIG_NOT_COHERENT_CACHE=y |
20 | CONFIG_PPC32=y | 21 | CONFIG_PPC32=y |
@@ -40,7 +41,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
40 | CONFIG_PPC=y | 41 | CONFIG_PPC=y |
41 | CONFIG_EARLY_PRINTK=y | 42 | CONFIG_EARLY_PRINTK=y |
42 | CONFIG_GENERIC_NVRAM=y | 43 | CONFIG_GENERIC_NVRAM=y |
43 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 44 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
44 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
45 | CONFIG_PPC_OF=y | 46 | CONFIG_PPC_OF=y |
46 | CONFIG_OF=y | 47 | CONFIG_OF=y |
@@ -69,12 +70,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
69 | # CONFIG_AUDIT is not set | 70 | # CONFIG_AUDIT is not set |
70 | # CONFIG_IKCONFIG is not set | 71 | # CONFIG_IKCONFIG is not set |
71 | CONFIG_LOG_BUF_SHIFT=17 | 72 | CONFIG_LOG_BUF_SHIFT=17 |
72 | # CONFIG_CGROUPS is not set | ||
73 | CONFIG_GROUP_SCHED=y | 73 | CONFIG_GROUP_SCHED=y |
74 | CONFIG_FAIR_GROUP_SCHED=y | 74 | CONFIG_FAIR_GROUP_SCHED=y |
75 | # CONFIG_RT_GROUP_SCHED is not set | 75 | # CONFIG_RT_GROUP_SCHED is not set |
76 | CONFIG_USER_SCHED=y | 76 | CONFIG_USER_SCHED=y |
77 | # CONFIG_CGROUP_SCHED is not set | 77 | # CONFIG_CGROUP_SCHED is not set |
78 | # CONFIG_CGROUPS is not set | ||
78 | CONFIG_SYSFS_DEPRECATED=y | 79 | CONFIG_SYSFS_DEPRECATED=y |
79 | CONFIG_SYSFS_DEPRECATED_V2=y | 80 | CONFIG_SYSFS_DEPRECATED_V2=y |
80 | # CONFIG_RELAY is not set | 81 | # CONFIG_RELAY is not set |
@@ -106,7 +107,6 @@ CONFIG_SLAB=y | |||
106 | # CONFIG_SLUB is not set | 107 | # CONFIG_SLUB is not set |
107 | # CONFIG_SLOB is not set | 108 | # CONFIG_SLOB is not set |
108 | # CONFIG_PROFILING is not set | 109 | # CONFIG_PROFILING is not set |
109 | # CONFIG_MARKERS is not set | ||
110 | CONFIG_HAVE_OPROFILE=y | 110 | CONFIG_HAVE_OPROFILE=y |
111 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 111 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
112 | CONFIG_HAVE_IOREMAP_PROT=y | 112 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -117,13 +117,11 @@ CONFIG_HAVE_CLK=y | |||
117 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 117 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
118 | CONFIG_SLABINFO=y | 118 | CONFIG_SLABINFO=y |
119 | CONFIG_RT_MUTEXES=y | 119 | CONFIG_RT_MUTEXES=y |
120 | # CONFIG_TINY_SHMEM is not set | ||
121 | CONFIG_BASE_SMALL=1 | 120 | CONFIG_BASE_SMALL=1 |
122 | # CONFIG_MODULES is not set | 121 | # CONFIG_MODULES is not set |
123 | CONFIG_BLOCK=y | 122 | CONFIG_BLOCK=y |
124 | # CONFIG_LBD is not set | 123 | # CONFIG_LBD is not set |
125 | # CONFIG_BLK_DEV_IO_TRACE is not set | 124 | # CONFIG_BLK_DEV_IO_TRACE is not set |
126 | # CONFIG_LSF is not set | ||
127 | # CONFIG_BLK_DEV_BSG is not set | 125 | # CONFIG_BLK_DEV_BSG is not set |
128 | # CONFIG_BLK_DEV_INTEGRITY is not set | 126 | # CONFIG_BLK_DEV_INTEGRITY is not set |
129 | 127 | ||
@@ -140,6 +138,10 @@ CONFIG_DEFAULT_AS=y | |||
140 | # CONFIG_DEFAULT_NOOP is not set | 138 | # CONFIG_DEFAULT_NOOP is not set |
141 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 139 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
142 | CONFIG_CLASSIC_RCU=y | 140 | CONFIG_CLASSIC_RCU=y |
141 | # CONFIG_TREE_RCU is not set | ||
142 | # CONFIG_PREEMPT_RCU is not set | ||
143 | # CONFIG_TREE_RCU_TRACE is not set | ||
144 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
143 | # CONFIG_FREEZER is not set | 145 | # CONFIG_FREEZER is not set |
144 | 146 | ||
145 | # | 147 | # |
@@ -186,6 +188,7 @@ CONFIG_UCODE_PATCH=y | |||
186 | # CONFIG_QUICC_ENGINE is not set | 188 | # CONFIG_QUICC_ENGINE is not set |
187 | # CONFIG_FSL_ULI1575 is not set | 189 | # CONFIG_FSL_ULI1575 is not set |
188 | CONFIG_CPM=y | 190 | CONFIG_CPM=y |
191 | # CONFIG_SIMPLE_GPIO is not set | ||
189 | 192 | ||
190 | # | 193 | # |
191 | # Kernel options | 194 | # Kernel options |
@@ -209,6 +212,7 @@ CONFIG_BINFMT_ELF=y | |||
209 | # CONFIG_BINFMT_MISC is not set | 212 | # CONFIG_BINFMT_MISC is not set |
210 | CONFIG_MATH_EMULATION=y | 213 | CONFIG_MATH_EMULATION=y |
211 | # CONFIG_IOMMU_HELPER is not set | 214 | # CONFIG_IOMMU_HELPER is not set |
215 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
212 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 216 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
213 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 217 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
214 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 218 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -223,12 +227,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
223 | CONFIG_PAGEFLAGS_EXTENDED=y | 227 | CONFIG_PAGEFLAGS_EXTENDED=y |
224 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 228 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
225 | CONFIG_MIGRATION=y | 229 | CONFIG_MIGRATION=y |
226 | # CONFIG_RESOURCES_64BIT is not set | ||
227 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 230 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
228 | CONFIG_ZONE_DMA_FLAG=1 | 231 | CONFIG_ZONE_DMA_FLAG=1 |
229 | CONFIG_BOUNCE=y | 232 | CONFIG_BOUNCE=y |
230 | CONFIG_VIRT_TO_BUS=y | 233 | CONFIG_VIRT_TO_BUS=y |
231 | CONFIG_UNEVICTABLE_LRU=y | 234 | CONFIG_UNEVICTABLE_LRU=y |
235 | CONFIG_PPC_4K_PAGES=y | ||
236 | # CONFIG_PPC_16K_PAGES is not set | ||
237 | # CONFIG_PPC_64K_PAGES is not set | ||
232 | CONFIG_FORCE_MAX_ZONEORDER=11 | 238 | CONFIG_FORCE_MAX_ZONEORDER=11 |
233 | # CONFIG_PROC_DEVICETREE is not set | 239 | # CONFIG_PROC_DEVICETREE is not set |
234 | # CONFIG_CMDLINE_BOOL is not set | 240 | # CONFIG_CMDLINE_BOOL is not set |
@@ -269,6 +275,7 @@ CONFIG_NET=y | |||
269 | # | 275 | # |
270 | # Networking options | 276 | # Networking options |
271 | # | 277 | # |
278 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
272 | CONFIG_PACKET=y | 279 | CONFIG_PACKET=y |
273 | # CONFIG_PACKET_MMAP is not set | 280 | # CONFIG_PACKET_MMAP is not set |
274 | CONFIG_UNIX=y | 281 | CONFIG_UNIX=y |
@@ -325,6 +332,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
325 | # CONFIG_ECONET is not set | 332 | # CONFIG_ECONET is not set |
326 | # CONFIG_WAN_ROUTER is not set | 333 | # CONFIG_WAN_ROUTER is not set |
327 | # CONFIG_NET_SCHED is not set | 334 | # CONFIG_NET_SCHED is not set |
335 | # CONFIG_DCB is not set | ||
328 | 336 | ||
329 | # | 337 | # |
330 | # Network testing | 338 | # Network testing |
@@ -340,8 +348,9 @@ CONFIG_WIRELESS=y | |||
340 | # CONFIG_CFG80211 is not set | 348 | # CONFIG_CFG80211 is not set |
341 | CONFIG_WIRELESS_OLD_REGULATORY=y | 349 | CONFIG_WIRELESS_OLD_REGULATORY=y |
342 | # CONFIG_WIRELESS_EXT is not set | 350 | # CONFIG_WIRELESS_EXT is not set |
351 | # CONFIG_LIB80211 is not set | ||
343 | # CONFIG_MAC80211 is not set | 352 | # CONFIG_MAC80211 is not set |
344 | # CONFIG_IEEE80211 is not set | 353 | # CONFIG_WIMAX is not set |
345 | # CONFIG_RFKILL is not set | 354 | # CONFIG_RFKILL is not set |
346 | # CONFIG_NET_9P is not set | 355 | # CONFIG_NET_9P is not set |
347 | 356 | ||
@@ -435,6 +444,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
435 | # CONFIG_MTD_ONENAND is not set | 444 | # CONFIG_MTD_ONENAND is not set |
436 | 445 | ||
437 | # | 446 | # |
447 | # LPDDR flash memory drivers | ||
448 | # | ||
449 | # CONFIG_MTD_LPDDR is not set | ||
450 | # CONFIG_MTD_QINFO_PROBE is not set | ||
451 | |||
452 | # | ||
438 | # UBI - Unsorted block images | 453 | # UBI - Unsorted block images |
439 | # | 454 | # |
440 | # CONFIG_MTD_UBI is not set | 455 | # CONFIG_MTD_UBI is not set |
@@ -489,6 +504,9 @@ CONFIG_PHYLIB=y | |||
489 | # CONFIG_BROADCOM_PHY is not set | 504 | # CONFIG_BROADCOM_PHY is not set |
490 | # CONFIG_ICPLUS_PHY is not set | 505 | # CONFIG_ICPLUS_PHY is not set |
491 | # CONFIG_REALTEK_PHY is not set | 506 | # CONFIG_REALTEK_PHY is not set |
507 | # CONFIG_NATIONAL_PHY is not set | ||
508 | # CONFIG_STE10XP is not set | ||
509 | # CONFIG_LSI_ET1011C_PHY is not set | ||
492 | CONFIG_FIXED_PHY=y | 510 | CONFIG_FIXED_PHY=y |
493 | # CONFIG_MDIO_BITBANG is not set | 511 | # CONFIG_MDIO_BITBANG is not set |
494 | CONFIG_NET_ETHERNET=y | 512 | CONFIG_NET_ETHERNET=y |
@@ -514,6 +532,10 @@ CONFIG_FS_ENET_HAS_SCC=y | |||
514 | # CONFIG_WLAN_PRE80211 is not set | 532 | # CONFIG_WLAN_PRE80211 is not set |
515 | # CONFIG_WLAN_80211 is not set | 533 | # CONFIG_WLAN_80211 is not set |
516 | # CONFIG_IWLWIFI_LEDS is not set | 534 | # CONFIG_IWLWIFI_LEDS is not set |
535 | |||
536 | # | ||
537 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
538 | # | ||
517 | # CONFIG_WAN is not set | 539 | # CONFIG_WAN is not set |
518 | # CONFIG_PPP is not set | 540 | # CONFIG_PPP is not set |
519 | # CONFIG_SLIP is not set | 541 | # CONFIG_SLIP is not set |
@@ -555,7 +577,9 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
555 | CONFIG_SERIAL_CPM=y | 577 | CONFIG_SERIAL_CPM=y |
556 | CONFIG_SERIAL_CPM_CONSOLE=y | 578 | CONFIG_SERIAL_CPM_CONSOLE=y |
557 | CONFIG_UNIX98_PTYS=y | 579 | CONFIG_UNIX98_PTYS=y |
580 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
558 | # CONFIG_LEGACY_PTYS is not set | 581 | # CONFIG_LEGACY_PTYS is not set |
582 | # CONFIG_HVC_UDBG is not set | ||
559 | # CONFIG_IPMI_HANDLER is not set | 583 | # CONFIG_IPMI_HANDLER is not set |
560 | CONFIG_HW_RANDOM=y | 584 | CONFIG_HW_RANDOM=y |
561 | # CONFIG_NVRAM is not set | 585 | # CONFIG_NVRAM is not set |
@@ -574,11 +598,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
574 | # CONFIG_THERMAL is not set | 598 | # CONFIG_THERMAL is not set |
575 | # CONFIG_THERMAL_HWMON is not set | 599 | # CONFIG_THERMAL_HWMON is not set |
576 | # CONFIG_WATCHDOG is not set | 600 | # CONFIG_WATCHDOG is not set |
601 | CONFIG_SSB_POSSIBLE=y | ||
577 | 602 | ||
578 | # | 603 | # |
579 | # Sonics Silicon Backplane | 604 | # Sonics Silicon Backplane |
580 | # | 605 | # |
581 | CONFIG_SSB_POSSIBLE=y | ||
582 | # CONFIG_SSB is not set | 606 | # CONFIG_SSB is not set |
583 | 607 | ||
584 | # | 608 | # |
@@ -588,14 +612,7 @@ CONFIG_SSB_POSSIBLE=y | |||
588 | # CONFIG_MFD_SM501 is not set | 612 | # CONFIG_MFD_SM501 is not set |
589 | # CONFIG_HTC_PASIC3 is not set | 613 | # CONFIG_HTC_PASIC3 is not set |
590 | # CONFIG_MFD_TMIO is not set | 614 | # CONFIG_MFD_TMIO is not set |
591 | |||
592 | # | ||
593 | # Voltage and Current regulators | ||
594 | # | ||
595 | # CONFIG_REGULATOR is not set | 615 | # CONFIG_REGULATOR is not set |
596 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
597 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
598 | # CONFIG_REGULATOR_BQ24022 is not set | ||
599 | 616 | ||
600 | # | 617 | # |
601 | # Multimedia devices | 618 | # Multimedia devices |
@@ -659,6 +676,7 @@ CONFIG_FS_MBCACHE=y | |||
659 | CONFIG_FILE_LOCKING=y | 676 | CONFIG_FILE_LOCKING=y |
660 | # CONFIG_XFS_FS is not set | 677 | # CONFIG_XFS_FS is not set |
661 | # CONFIG_OCFS2_FS is not set | 678 | # CONFIG_OCFS2_FS is not set |
679 | # CONFIG_BTRFS_FS is not set | ||
662 | CONFIG_DNOTIFY=y | 680 | CONFIG_DNOTIFY=y |
663 | CONFIG_INOTIFY=y | 681 | CONFIG_INOTIFY=y |
664 | CONFIG_INOTIFY_USER=y | 682 | CONFIG_INOTIFY_USER=y |
@@ -692,10 +710,7 @@ CONFIG_TMPFS=y | |||
692 | # CONFIG_TMPFS_POSIX_ACL is not set | 710 | # CONFIG_TMPFS_POSIX_ACL is not set |
693 | # CONFIG_HUGETLB_PAGE is not set | 711 | # CONFIG_HUGETLB_PAGE is not set |
694 | # CONFIG_CONFIGFS_FS is not set | 712 | # CONFIG_CONFIGFS_FS is not set |
695 | 713 | CONFIG_MISC_FILESYSTEMS=y | |
696 | # | ||
697 | # Miscellaneous filesystems | ||
698 | # | ||
699 | # CONFIG_ADFS_FS is not set | 714 | # CONFIG_ADFS_FS is not set |
700 | # CONFIG_AFFS_FS is not set | 715 | # CONFIG_AFFS_FS is not set |
701 | # CONFIG_HFS_FS is not set | 716 | # CONFIG_HFS_FS is not set |
@@ -715,6 +730,7 @@ CONFIG_JFFS2_ZLIB=y | |||
715 | CONFIG_JFFS2_RTIME=y | 730 | CONFIG_JFFS2_RTIME=y |
716 | # CONFIG_JFFS2_RUBIN is not set | 731 | # CONFIG_JFFS2_RUBIN is not set |
717 | CONFIG_CRAMFS=y | 732 | CONFIG_CRAMFS=y |
733 | # CONFIG_SQUASHFS is not set | ||
718 | # CONFIG_VXFS_FS is not set | 734 | # CONFIG_VXFS_FS is not set |
719 | # CONFIG_MINIX_FS is not set | 735 | # CONFIG_MINIX_FS is not set |
720 | # CONFIG_OMFS_FS is not set | 736 | # CONFIG_OMFS_FS is not set |
@@ -771,6 +787,7 @@ CONFIG_MSDOS_PARTITION=y | |||
771 | # Library routines | 787 | # Library routines |
772 | # | 788 | # |
773 | CONFIG_BITREVERSE=y | 789 | CONFIG_BITREVERSE=y |
790 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
774 | CONFIG_CRC_CCITT=y | 791 | CONFIG_CRC_CCITT=y |
775 | # CONFIG_CRC16 is not set | 792 | # CONFIG_CRC16 is not set |
776 | # CONFIG_CRC_T10DIF is not set | 793 | # CONFIG_CRC_T10DIF is not set |
@@ -802,6 +819,8 @@ CONFIG_DEBUG_FS=y | |||
802 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 819 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
803 | # CONFIG_LATENCYTOP is not set | 820 | # CONFIG_LATENCYTOP is not set |
804 | CONFIG_HAVE_FUNCTION_TRACER=y | 821 | CONFIG_HAVE_FUNCTION_TRACER=y |
822 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
823 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
805 | 824 | ||
806 | # | 825 | # |
807 | # Tracers | 826 | # Tracers |
@@ -809,6 +828,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
809 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 828 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
810 | # CONFIG_SAMPLES is not set | 829 | # CONFIG_SAMPLES is not set |
811 | CONFIG_HAVE_ARCH_KGDB=y | 830 | CONFIG_HAVE_ARCH_KGDB=y |
831 | CONFIG_PRINT_STACK_DEPTH=64 | ||
812 | # CONFIG_IRQSTACKS is not set | 832 | # CONFIG_IRQSTACKS is not set |
813 | # CONFIG_VIRQ_DEBUG is not set | 833 | # CONFIG_VIRQ_DEBUG is not set |
814 | # CONFIG_PPC_EARLY_DEBUG is not set | 834 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -827,6 +847,7 @@ CONFIG_CRYPTO=y | |||
827 | # | 847 | # |
828 | # CONFIG_CRYPTO_FIPS is not set | 848 | # CONFIG_CRYPTO_FIPS is not set |
829 | # CONFIG_CRYPTO_MANAGER is not set | 849 | # CONFIG_CRYPTO_MANAGER is not set |
850 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
830 | # CONFIG_CRYPTO_GF128MUL is not set | 851 | # CONFIG_CRYPTO_GF128MUL is not set |
831 | # CONFIG_CRYPTO_NULL is not set | 852 | # CONFIG_CRYPTO_NULL is not set |
832 | # CONFIG_CRYPTO_CRYPTD is not set | 853 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/mpc7448_hpc2_defconfig b/arch/powerpc/configs/mpc7448_hpc2_defconfig index f80b1ca43afb..38712e861c46 100644 --- a/arch/powerpc/configs/mpc7448_hpc2_defconfig +++ b/arch/powerpc/configs/mpc7448_hpc2_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:40 2008 | 4 | # Mon Jan 26 15:35:33 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -43,7 +43,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
43 | CONFIG_PPC=y | 43 | CONFIG_PPC=y |
44 | CONFIG_EARLY_PRINTK=y | 44 | CONFIG_EARLY_PRINTK=y |
45 | CONFIG_GENERIC_NVRAM=y | 45 | CONFIG_GENERIC_NVRAM=y |
46 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 46 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
47 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 47 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
48 | CONFIG_PPC_OF=y | 48 | CONFIG_PPC_OF=y |
49 | CONFIG_OF=y | 49 | CONFIG_OF=y |
@@ -73,12 +73,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
73 | # CONFIG_AUDIT is not set | 73 | # CONFIG_AUDIT is not set |
74 | # CONFIG_IKCONFIG is not set | 74 | # CONFIG_IKCONFIG is not set |
75 | CONFIG_LOG_BUF_SHIFT=14 | 75 | CONFIG_LOG_BUF_SHIFT=14 |
76 | # CONFIG_CGROUPS is not set | ||
77 | CONFIG_GROUP_SCHED=y | 76 | CONFIG_GROUP_SCHED=y |
78 | # CONFIG_FAIR_GROUP_SCHED is not set | 77 | # CONFIG_FAIR_GROUP_SCHED is not set |
79 | # CONFIG_RT_GROUP_SCHED is not set | 78 | # CONFIG_RT_GROUP_SCHED is not set |
80 | CONFIG_USER_SCHED=y | 79 | CONFIG_USER_SCHED=y |
81 | # CONFIG_CGROUP_SCHED is not set | 80 | # CONFIG_CGROUP_SCHED is not set |
81 | # CONFIG_CGROUPS is not set | ||
82 | CONFIG_SYSFS_DEPRECATED=y | 82 | CONFIG_SYSFS_DEPRECATED=y |
83 | CONFIG_SYSFS_DEPRECATED_V2=y | 83 | CONFIG_SYSFS_DEPRECATED_V2=y |
84 | # CONFIG_RELAY is not set | 84 | # CONFIG_RELAY is not set |
@@ -112,7 +112,6 @@ CONFIG_SLUB_DEBUG=y | |||
112 | CONFIG_SLUB=y | 112 | CONFIG_SLUB=y |
113 | # CONFIG_SLOB is not set | 113 | # CONFIG_SLOB is not set |
114 | # CONFIG_PROFILING is not set | 114 | # CONFIG_PROFILING is not set |
115 | # CONFIG_MARKERS is not set | ||
116 | CONFIG_HAVE_OPROFILE=y | 115 | CONFIG_HAVE_OPROFILE=y |
117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 116 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
118 | CONFIG_HAVE_IOREMAP_PROT=y | 117 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -122,13 +121,11 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 121 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
123 | CONFIG_SLABINFO=y | 122 | CONFIG_SLABINFO=y |
124 | CONFIG_RT_MUTEXES=y | 123 | CONFIG_RT_MUTEXES=y |
125 | # CONFIG_TINY_SHMEM is not set | ||
126 | CONFIG_BASE_SMALL=0 | 124 | CONFIG_BASE_SMALL=0 |
127 | # CONFIG_MODULES is not set | 125 | # CONFIG_MODULES is not set |
128 | CONFIG_BLOCK=y | 126 | CONFIG_BLOCK=y |
129 | CONFIG_LBD=y | 127 | CONFIG_LBD=y |
130 | # CONFIG_BLK_DEV_IO_TRACE is not set | 128 | # CONFIG_BLK_DEV_IO_TRACE is not set |
131 | # CONFIG_LSF is not set | ||
132 | # CONFIG_BLK_DEV_BSG is not set | 129 | # CONFIG_BLK_DEV_BSG is not set |
133 | # CONFIG_BLK_DEV_INTEGRITY is not set | 130 | # CONFIG_BLK_DEV_INTEGRITY is not set |
134 | 131 | ||
@@ -145,6 +142,10 @@ CONFIG_DEFAULT_AS=y | |||
145 | # CONFIG_DEFAULT_NOOP is not set | 142 | # CONFIG_DEFAULT_NOOP is not set |
146 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 143 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
147 | CONFIG_CLASSIC_RCU=y | 144 | CONFIG_CLASSIC_RCU=y |
145 | # CONFIG_TREE_RCU is not set | ||
146 | # CONFIG_PREEMPT_RCU is not set | ||
147 | # CONFIG_TREE_RCU_TRACE is not set | ||
148 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
148 | # CONFIG_FREEZER is not set | 149 | # CONFIG_FREEZER is not set |
149 | 150 | ||
150 | # | 151 | # |
@@ -184,6 +185,7 @@ CONFIG_MPIC_WEIRD=y | |||
184 | # CONFIG_CPU_FREQ is not set | 185 | # CONFIG_CPU_FREQ is not set |
185 | # CONFIG_TAU is not set | 186 | # CONFIG_TAU is not set |
186 | # CONFIG_FSL_ULI1575 is not set | 187 | # CONFIG_FSL_ULI1575 is not set |
188 | # CONFIG_SIMPLE_GPIO is not set | ||
187 | 189 | ||
188 | # | 190 | # |
189 | # Kernel options | 191 | # Kernel options |
@@ -211,6 +213,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
211 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 213 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
212 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 214 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
213 | # CONFIG_KEXEC is not set | 215 | # CONFIG_KEXEC is not set |
216 | # CONFIG_CRASH_DUMP is not set | ||
214 | CONFIG_ARCH_FLATMEM_ENABLE=y | 217 | CONFIG_ARCH_FLATMEM_ENABLE=y |
215 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 218 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
216 | CONFIG_SELECT_MEMORY_MODEL=y | 219 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -222,12 +225,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
222 | CONFIG_PAGEFLAGS_EXTENDED=y | 225 | CONFIG_PAGEFLAGS_EXTENDED=y |
223 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 226 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
224 | CONFIG_MIGRATION=y | 227 | CONFIG_MIGRATION=y |
225 | # CONFIG_RESOURCES_64BIT is not set | ||
226 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 228 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
227 | CONFIG_ZONE_DMA_FLAG=1 | 229 | CONFIG_ZONE_DMA_FLAG=1 |
228 | CONFIG_BOUNCE=y | 230 | CONFIG_BOUNCE=y |
229 | CONFIG_VIRT_TO_BUS=y | 231 | CONFIG_VIRT_TO_BUS=y |
230 | CONFIG_UNEVICTABLE_LRU=y | 232 | CONFIG_UNEVICTABLE_LRU=y |
233 | CONFIG_PPC_4K_PAGES=y | ||
234 | # CONFIG_PPC_16K_PAGES is not set | ||
235 | # CONFIG_PPC_64K_PAGES is not set | ||
231 | CONFIG_FORCE_MAX_ZONEORDER=11 | 236 | CONFIG_FORCE_MAX_ZONEORDER=11 |
232 | CONFIG_PROC_DEVICETREE=y | 237 | CONFIG_PROC_DEVICETREE=y |
233 | # CONFIG_CMDLINE_BOOL is not set | 238 | # CONFIG_CMDLINE_BOOL is not set |
@@ -249,6 +254,7 @@ CONFIG_PCI_SYSCALL=y | |||
249 | CONFIG_ARCH_SUPPORTS_MSI=y | 254 | CONFIG_ARCH_SUPPORTS_MSI=y |
250 | # CONFIG_PCI_MSI is not set | 255 | # CONFIG_PCI_MSI is not set |
251 | # CONFIG_PCI_LEGACY is not set | 256 | # CONFIG_PCI_LEGACY is not set |
257 | # CONFIG_PCI_STUB is not set | ||
252 | # CONFIG_PCCARD is not set | 258 | # CONFIG_PCCARD is not set |
253 | # CONFIG_HOTPLUG_PCI is not set | 259 | # CONFIG_HOTPLUG_PCI is not set |
254 | # CONFIG_HAS_RAPIDIO is not set | 260 | # CONFIG_HAS_RAPIDIO is not set |
@@ -271,6 +277,7 @@ CONFIG_NET=y | |||
271 | # | 277 | # |
272 | # Networking options | 278 | # Networking options |
273 | # | 279 | # |
280 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
274 | CONFIG_PACKET=y | 281 | CONFIG_PACKET=y |
275 | # CONFIG_PACKET_MMAP is not set | 282 | # CONFIG_PACKET_MMAP is not set |
276 | CONFIG_UNIX=y | 283 | CONFIG_UNIX=y |
@@ -327,6 +334,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
327 | # CONFIG_ECONET is not set | 334 | # CONFIG_ECONET is not set |
328 | # CONFIG_WAN_ROUTER is not set | 335 | # CONFIG_WAN_ROUTER is not set |
329 | # CONFIG_NET_SCHED is not set | 336 | # CONFIG_NET_SCHED is not set |
337 | # CONFIG_DCB is not set | ||
330 | 338 | ||
331 | # | 339 | # |
332 | # Network testing | 340 | # Network testing |
@@ -342,8 +350,9 @@ CONFIG_WIRELESS=y | |||
342 | # CONFIG_CFG80211 is not set | 350 | # CONFIG_CFG80211 is not set |
343 | CONFIG_WIRELESS_OLD_REGULATORY=y | 351 | CONFIG_WIRELESS_OLD_REGULATORY=y |
344 | # CONFIG_WIRELESS_EXT is not set | 352 | # CONFIG_WIRELESS_EXT is not set |
353 | # CONFIG_LIB80211 is not set | ||
345 | # CONFIG_MAC80211 is not set | 354 | # CONFIG_MAC80211 is not set |
346 | # CONFIG_IEEE80211 is not set | 355 | # CONFIG_WIMAX is not set |
347 | # CONFIG_RFKILL is not set | 356 | # CONFIG_RFKILL is not set |
348 | # CONFIG_NET_9P is not set | 357 | # CONFIG_NET_9P is not set |
349 | 358 | ||
@@ -388,6 +397,7 @@ CONFIG_MISC_DEVICES=y | |||
388 | # CONFIG_TIFM_CORE is not set | 397 | # CONFIG_TIFM_CORE is not set |
389 | # CONFIG_ENCLOSURE_SERVICES is not set | 398 | # CONFIG_ENCLOSURE_SERVICES is not set |
390 | # CONFIG_HP_ILO is not set | 399 | # CONFIG_HP_ILO is not set |
400 | # CONFIG_C2PORT is not set | ||
391 | CONFIG_HAVE_IDE=y | 401 | CONFIG_HAVE_IDE=y |
392 | # CONFIG_IDE is not set | 402 | # CONFIG_IDE is not set |
393 | 403 | ||
@@ -429,6 +439,7 @@ CONFIG_BLK_DEV_SD=y | |||
429 | # CONFIG_SCSI_SRP_ATTRS is not set | 439 | # CONFIG_SCSI_SRP_ATTRS is not set |
430 | CONFIG_SCSI_LOWLEVEL=y | 440 | CONFIG_SCSI_LOWLEVEL=y |
431 | # CONFIG_ISCSI_TCP is not set | 441 | # CONFIG_ISCSI_TCP is not set |
442 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
432 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 443 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
433 | # CONFIG_SCSI_3W_9XXX is not set | 444 | # CONFIG_SCSI_3W_9XXX is not set |
434 | # CONFIG_SCSI_ACARD is not set | 445 | # CONFIG_SCSI_ACARD is not set |
@@ -445,6 +456,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
445 | # CONFIG_MEGARAID_SAS is not set | 456 | # CONFIG_MEGARAID_SAS is not set |
446 | # CONFIG_SCSI_HPTIOP is not set | 457 | # CONFIG_SCSI_HPTIOP is not set |
447 | # CONFIG_SCSI_BUSLOGIC is not set | 458 | # CONFIG_SCSI_BUSLOGIC is not set |
459 | # CONFIG_LIBFC is not set | ||
460 | # CONFIG_FCOE is not set | ||
448 | # CONFIG_SCSI_DMX3191D is not set | 461 | # CONFIG_SCSI_DMX3191D is not set |
449 | # CONFIG_SCSI_EATA is not set | 462 | # CONFIG_SCSI_EATA is not set |
450 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 463 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -563,6 +576,9 @@ CONFIG_PHYLIB=y | |||
563 | # CONFIG_BROADCOM_PHY is not set | 576 | # CONFIG_BROADCOM_PHY is not set |
564 | # CONFIG_ICPLUS_PHY is not set | 577 | # CONFIG_ICPLUS_PHY is not set |
565 | # CONFIG_REALTEK_PHY is not set | 578 | # CONFIG_REALTEK_PHY is not set |
579 | # CONFIG_NATIONAL_PHY is not set | ||
580 | # CONFIG_STE10XP is not set | ||
581 | # CONFIG_LSI_ET1011C_PHY is not set | ||
566 | # CONFIG_FIXED_PHY is not set | 582 | # CONFIG_FIXED_PHY is not set |
567 | # CONFIG_MDIO_BITBANG is not set | 583 | # CONFIG_MDIO_BITBANG is not set |
568 | CONFIG_NET_ETHERNET=y | 584 | CONFIG_NET_ETHERNET=y |
@@ -586,7 +602,6 @@ CONFIG_NET_PCI=y | |||
586 | # CONFIG_ADAPTEC_STARFIRE is not set | 602 | # CONFIG_ADAPTEC_STARFIRE is not set |
587 | # CONFIG_B44 is not set | 603 | # CONFIG_B44 is not set |
588 | # CONFIG_FORCEDETH is not set | 604 | # CONFIG_FORCEDETH is not set |
589 | # CONFIG_EEPRO100 is not set | ||
590 | CONFIG_E100=y | 605 | CONFIG_E100=y |
591 | # CONFIG_FEALNX is not set | 606 | # CONFIG_FEALNX is not set |
592 | # CONFIG_NATSEMI is not set | 607 | # CONFIG_NATSEMI is not set |
@@ -600,6 +615,7 @@ CONFIG_8139TOO=y | |||
600 | # CONFIG_R6040 is not set | 615 | # CONFIG_R6040 is not set |
601 | # CONFIG_SIS900 is not set | 616 | # CONFIG_SIS900 is not set |
602 | # CONFIG_EPIC100 is not set | 617 | # CONFIG_EPIC100 is not set |
618 | # CONFIG_SMSC9420 is not set | ||
603 | # CONFIG_SUNDANCE is not set | 619 | # CONFIG_SUNDANCE is not set |
604 | # CONFIG_TLAN is not set | 620 | # CONFIG_TLAN is not set |
605 | # CONFIG_VIA_RHINE is not set | 621 | # CONFIG_VIA_RHINE is not set |
@@ -630,6 +646,7 @@ CONFIG_TSI108_ETH=y | |||
630 | # CONFIG_JME is not set | 646 | # CONFIG_JME is not set |
631 | CONFIG_NETDEV_10000=y | 647 | CONFIG_NETDEV_10000=y |
632 | # CONFIG_CHELSIO_T1 is not set | 648 | # CONFIG_CHELSIO_T1 is not set |
649 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
633 | # CONFIG_CHELSIO_T3 is not set | 650 | # CONFIG_CHELSIO_T3 is not set |
634 | # CONFIG_ENIC is not set | 651 | # CONFIG_ENIC is not set |
635 | # CONFIG_IXGBE is not set | 652 | # CONFIG_IXGBE is not set |
@@ -652,6 +669,10 @@ CONFIG_NETDEV_10000=y | |||
652 | # CONFIG_WLAN_PRE80211 is not set | 669 | # CONFIG_WLAN_PRE80211 is not set |
653 | # CONFIG_WLAN_80211 is not set | 670 | # CONFIG_WLAN_80211 is not set |
654 | # CONFIG_IWLWIFI_LEDS is not set | 671 | # CONFIG_IWLWIFI_LEDS is not set |
672 | |||
673 | # | ||
674 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
675 | # | ||
655 | # CONFIG_WAN is not set | 676 | # CONFIG_WAN is not set |
656 | # CONFIG_FDDI is not set | 677 | # CONFIG_FDDI is not set |
657 | # CONFIG_HIPPI is not set | 678 | # CONFIG_HIPPI is not set |
@@ -722,8 +743,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
722 | # CONFIG_SERIAL_JSM is not set | 743 | # CONFIG_SERIAL_JSM is not set |
723 | # CONFIG_SERIAL_OF_PLATFORM is not set | 744 | # CONFIG_SERIAL_OF_PLATFORM is not set |
724 | CONFIG_UNIX98_PTYS=y | 745 | CONFIG_UNIX98_PTYS=y |
746 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
725 | CONFIG_LEGACY_PTYS=y | 747 | CONFIG_LEGACY_PTYS=y |
726 | CONFIG_LEGACY_PTY_COUNT=256 | 748 | CONFIG_LEGACY_PTY_COUNT=256 |
749 | # CONFIG_HVC_UDBG is not set | ||
727 | # CONFIG_IPMI_HANDLER is not set | 750 | # CONFIG_IPMI_HANDLER is not set |
728 | # CONFIG_HW_RANDOM is not set | 751 | # CONFIG_HW_RANDOM is not set |
729 | # CONFIG_NVRAM is not set | 752 | # CONFIG_NVRAM is not set |
@@ -760,11 +783,11 @@ CONFIG_HWMON=y | |||
760 | # CONFIG_THERMAL is not set | 783 | # CONFIG_THERMAL is not set |
761 | # CONFIG_THERMAL_HWMON is not set | 784 | # CONFIG_THERMAL_HWMON is not set |
762 | # CONFIG_WATCHDOG is not set | 785 | # CONFIG_WATCHDOG is not set |
786 | CONFIG_SSB_POSSIBLE=y | ||
763 | 787 | ||
764 | # | 788 | # |
765 | # Sonics Silicon Backplane | 789 | # Sonics Silicon Backplane |
766 | # | 790 | # |
767 | CONFIG_SSB_POSSIBLE=y | ||
768 | # CONFIG_SSB is not set | 791 | # CONFIG_SSB is not set |
769 | 792 | ||
770 | # | 793 | # |
@@ -774,14 +797,7 @@ CONFIG_SSB_POSSIBLE=y | |||
774 | # CONFIG_MFD_SM501 is not set | 797 | # CONFIG_MFD_SM501 is not set |
775 | # CONFIG_HTC_PASIC3 is not set | 798 | # CONFIG_HTC_PASIC3 is not set |
776 | # CONFIG_MFD_TMIO is not set | 799 | # CONFIG_MFD_TMIO is not set |
777 | |||
778 | # | ||
779 | # Voltage and Current regulators | ||
780 | # | ||
781 | # CONFIG_REGULATOR is not set | 800 | # CONFIG_REGULATOR is not set |
782 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
783 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
784 | # CONFIG_REGULATOR_BQ24022 is not set | ||
785 | 801 | ||
786 | # | 802 | # |
787 | # Multimedia devices | 803 | # Multimedia devices |
@@ -837,9 +853,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
837 | # | 853 | # |
838 | 854 | ||
839 | # | 855 | # |
840 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 856 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
841 | # | 857 | # |
842 | # CONFIG_USB_GADGET is not set | 858 | # CONFIG_USB_GADGET is not set |
859 | |||
860 | # | ||
861 | # OTG and related infrastructure | ||
862 | # | ||
843 | # CONFIG_UWB is not set | 863 | # CONFIG_UWB is not set |
844 | # CONFIG_MMC is not set | 864 | # CONFIG_MMC is not set |
845 | # CONFIG_MEMSTICK is not set | 865 | # CONFIG_MEMSTICK is not set |
@@ -870,7 +890,9 @@ CONFIG_FS_MBCACHE=y | |||
870 | # CONFIG_FS_POSIX_ACL is not set | 890 | # CONFIG_FS_POSIX_ACL is not set |
871 | CONFIG_FILE_LOCKING=y | 891 | CONFIG_FILE_LOCKING=y |
872 | # CONFIG_XFS_FS is not set | 892 | # CONFIG_XFS_FS is not set |
893 | # CONFIG_GFS2_FS is not set | ||
873 | # CONFIG_OCFS2_FS is not set | 894 | # CONFIG_OCFS2_FS is not set |
895 | # CONFIG_BTRFS_FS is not set | ||
874 | CONFIG_DNOTIFY=y | 896 | CONFIG_DNOTIFY=y |
875 | CONFIG_INOTIFY=y | 897 | CONFIG_INOTIFY=y |
876 | CONFIG_INOTIFY_USER=y | 898 | CONFIG_INOTIFY_USER=y |
@@ -904,10 +926,7 @@ CONFIG_TMPFS=y | |||
904 | # CONFIG_TMPFS_POSIX_ACL is not set | 926 | # CONFIG_TMPFS_POSIX_ACL is not set |
905 | # CONFIG_HUGETLB_PAGE is not set | 927 | # CONFIG_HUGETLB_PAGE is not set |
906 | # CONFIG_CONFIGFS_FS is not set | 928 | # CONFIG_CONFIGFS_FS is not set |
907 | 929 | CONFIG_MISC_FILESYSTEMS=y | |
908 | # | ||
909 | # Miscellaneous filesystems | ||
910 | # | ||
911 | # CONFIG_ADFS_FS is not set | 930 | # CONFIG_ADFS_FS is not set |
912 | # CONFIG_AFFS_FS is not set | 931 | # CONFIG_AFFS_FS is not set |
913 | # CONFIG_HFS_FS is not set | 932 | # CONFIG_HFS_FS is not set |
@@ -916,6 +935,7 @@ CONFIG_TMPFS=y | |||
916 | # CONFIG_BFS_FS is not set | 935 | # CONFIG_BFS_FS is not set |
917 | # CONFIG_EFS_FS is not set | 936 | # CONFIG_EFS_FS is not set |
918 | # CONFIG_CRAMFS is not set | 937 | # CONFIG_CRAMFS is not set |
938 | # CONFIG_SQUASHFS is not set | ||
919 | # CONFIG_VXFS_FS is not set | 939 | # CONFIG_VXFS_FS is not set |
920 | # CONFIG_MINIX_FS is not set | 940 | # CONFIG_MINIX_FS is not set |
921 | # CONFIG_OMFS_FS is not set | 941 | # CONFIG_OMFS_FS is not set |
@@ -970,6 +990,7 @@ CONFIG_MSDOS_PARTITION=y | |||
970 | # Library routines | 990 | # Library routines |
971 | # | 991 | # |
972 | CONFIG_BITREVERSE=y | 992 | CONFIG_BITREVERSE=y |
993 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
973 | # CONFIG_CRC_CCITT is not set | 994 | # CONFIG_CRC_CCITT is not set |
974 | # CONFIG_CRC16 is not set | 995 | # CONFIG_CRC16 is not set |
975 | CONFIG_CRC_T10DIF=y | 996 | CONFIG_CRC_T10DIF=y |
@@ -1003,6 +1024,8 @@ CONFIG_FRAME_WARN=1024 | |||
1003 | # CONFIG_LATENCYTOP is not set | 1024 | # CONFIG_LATENCYTOP is not set |
1004 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1025 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1005 | CONFIG_HAVE_FUNCTION_TRACER=y | 1026 | CONFIG_HAVE_FUNCTION_TRACER=y |
1027 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1028 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1006 | 1029 | ||
1007 | # | 1030 | # |
1008 | # Tracers | 1031 | # Tracers |
@@ -1010,6 +1033,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1010 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1033 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1011 | # CONFIG_SAMPLES is not set | 1034 | # CONFIG_SAMPLES is not set |
1012 | CONFIG_HAVE_ARCH_KGDB=y | 1035 | CONFIG_HAVE_ARCH_KGDB=y |
1036 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1013 | # CONFIG_IRQSTACKS is not set | 1037 | # CONFIG_IRQSTACKS is not set |
1014 | # CONFIG_BOOTX_TEXT is not set | 1038 | # CONFIG_BOOTX_TEXT is not set |
1015 | # CONFIG_PPC_EARLY_DEBUG is not set | 1039 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1028,6 +1052,7 @@ CONFIG_CRYPTO=y | |||
1028 | # | 1052 | # |
1029 | # CONFIG_CRYPTO_FIPS is not set | 1053 | # CONFIG_CRYPTO_FIPS is not set |
1030 | # CONFIG_CRYPTO_MANAGER is not set | 1054 | # CONFIG_CRYPTO_MANAGER is not set |
1055 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
1031 | # CONFIG_CRYPTO_GF128MUL is not set | 1056 | # CONFIG_CRYPTO_GF128MUL is not set |
1032 | # CONFIG_CRYPTO_NULL is not set | 1057 | # CONFIG_CRYPTO_NULL is not set |
1033 | # CONFIG_CRYPTO_CRYPTD is not set | 1058 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/mpc8272_ads_defconfig b/arch/powerpc/configs/mpc8272_ads_defconfig index c8f5dec1b696..d85a43cb821f 100644 --- a/arch/powerpc/configs/mpc8272_ads_defconfig +++ b/arch/powerpc/configs/mpc8272_ads_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:41 2008 | 4 | # Mon Jan 26 15:35:35 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_GPIO=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -86,6 +86,7 @@ CONFIG_EMBEDDED=y | |||
86 | CONFIG_SYSCTL_SYSCALL=y | 86 | CONFIG_SYSCTL_SYSCALL=y |
87 | CONFIG_KALLSYMS=y | 87 | CONFIG_KALLSYMS=y |
88 | CONFIG_KALLSYMS_ALL=y | 88 | CONFIG_KALLSYMS_ALL=y |
89 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
89 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 90 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
90 | CONFIG_HOTPLUG=y | 91 | CONFIG_HOTPLUG=y |
91 | CONFIG_PRINTK=y | 92 | CONFIG_PRINTK=y |
@@ -108,7 +109,6 @@ CONFIG_SLUB_DEBUG=y | |||
108 | CONFIG_SLUB=y | 109 | CONFIG_SLUB=y |
109 | # CONFIG_SLOB is not set | 110 | # CONFIG_SLOB is not set |
110 | # CONFIG_PROFILING is not set | 111 | # CONFIG_PROFILING is not set |
111 | # CONFIG_MARKERS is not set | ||
112 | CONFIG_HAVE_OPROFILE=y | 112 | CONFIG_HAVE_OPROFILE=y |
113 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 113 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
114 | CONFIG_HAVE_IOREMAP_PROT=y | 114 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -119,13 +119,11 @@ CONFIG_HAVE_CLK=y | |||
119 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 119 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
120 | CONFIG_SLABINFO=y | 120 | CONFIG_SLABINFO=y |
121 | CONFIG_RT_MUTEXES=y | 121 | CONFIG_RT_MUTEXES=y |
122 | # CONFIG_TINY_SHMEM is not set | ||
123 | CONFIG_BASE_SMALL=0 | 122 | CONFIG_BASE_SMALL=0 |
124 | # CONFIG_MODULES is not set | 123 | # CONFIG_MODULES is not set |
125 | CONFIG_BLOCK=y | 124 | CONFIG_BLOCK=y |
126 | # CONFIG_LBD is not set | 125 | # CONFIG_LBD is not set |
127 | # CONFIG_BLK_DEV_IO_TRACE is not set | 126 | # CONFIG_BLK_DEV_IO_TRACE is not set |
128 | # CONFIG_LSF is not set | ||
129 | # CONFIG_BLK_DEV_INTEGRITY is not set | 127 | # CONFIG_BLK_DEV_INTEGRITY is not set |
130 | 128 | ||
131 | # | 129 | # |
@@ -141,6 +139,10 @@ CONFIG_DEFAULT_AS=y | |||
141 | # CONFIG_DEFAULT_NOOP is not set | 139 | # CONFIG_DEFAULT_NOOP is not set |
142 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 140 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
143 | CONFIG_CLASSIC_RCU=y | 141 | CONFIG_CLASSIC_RCU=y |
142 | # CONFIG_TREE_RCU is not set | ||
143 | # CONFIG_PREEMPT_RCU is not set | ||
144 | # CONFIG_TREE_RCU_TRACE is not set | ||
145 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
144 | # CONFIG_FREEZER is not set | 146 | # CONFIG_FREEZER is not set |
145 | 147 | ||
146 | # | 148 | # |
@@ -183,6 +185,7 @@ CONFIG_PQ2_ADS_PCI_PIC=y | |||
183 | CONFIG_CPM2=y | 185 | CONFIG_CPM2=y |
184 | # CONFIG_FSL_ULI1575 is not set | 186 | # CONFIG_FSL_ULI1575 is not set |
185 | CONFIG_CPM=y | 187 | CONFIG_CPM=y |
188 | # CONFIG_SIMPLE_GPIO is not set | ||
186 | 189 | ||
187 | # | 190 | # |
188 | # Kernel options | 191 | # Kernel options |
@@ -209,6 +212,7 @@ CONFIG_BINFMT_MISC=y | |||
209 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 212 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
210 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 213 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
211 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 214 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
215 | # CONFIG_CRASH_DUMP is not set | ||
212 | CONFIG_ARCH_FLATMEM_ENABLE=y | 216 | CONFIG_ARCH_FLATMEM_ENABLE=y |
213 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 217 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
214 | CONFIG_FLATMEM=y | 218 | CONFIG_FLATMEM=y |
@@ -216,12 +220,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
216 | CONFIG_PAGEFLAGS_EXTENDED=y | 220 | CONFIG_PAGEFLAGS_EXTENDED=y |
217 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 221 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
218 | CONFIG_MIGRATION=y | 222 | CONFIG_MIGRATION=y |
219 | # CONFIG_RESOURCES_64BIT is not set | ||
220 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 223 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
221 | CONFIG_ZONE_DMA_FLAG=1 | 224 | CONFIG_ZONE_DMA_FLAG=1 |
222 | CONFIG_BOUNCE=y | 225 | CONFIG_BOUNCE=y |
223 | CONFIG_VIRT_TO_BUS=y | 226 | CONFIG_VIRT_TO_BUS=y |
224 | CONFIG_UNEVICTABLE_LRU=y | 227 | CONFIG_UNEVICTABLE_LRU=y |
228 | CONFIG_PPC_4K_PAGES=y | ||
229 | # CONFIG_PPC_16K_PAGES is not set | ||
230 | # CONFIG_PPC_64K_PAGES is not set | ||
225 | CONFIG_FORCE_MAX_ZONEORDER=11 | 231 | CONFIG_FORCE_MAX_ZONEORDER=11 |
226 | CONFIG_PROC_DEVICETREE=y | 232 | CONFIG_PROC_DEVICETREE=y |
227 | # CONFIG_CMDLINE_BOOL is not set | 233 | # CONFIG_CMDLINE_BOOL is not set |
@@ -246,6 +252,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
246 | # CONFIG_PCI_MSI is not set | 252 | # CONFIG_PCI_MSI is not set |
247 | # CONFIG_PCI_LEGACY is not set | 253 | # CONFIG_PCI_LEGACY is not set |
248 | # CONFIG_PCI_DEBUG is not set | 254 | # CONFIG_PCI_DEBUG is not set |
255 | # CONFIG_PCI_STUB is not set | ||
249 | # CONFIG_PCCARD is not set | 256 | # CONFIG_PCCARD is not set |
250 | # CONFIG_HOTPLUG_PCI is not set | 257 | # CONFIG_HOTPLUG_PCI is not set |
251 | # CONFIG_HAS_RAPIDIO is not set | 258 | # CONFIG_HAS_RAPIDIO is not set |
@@ -268,6 +275,7 @@ CONFIG_NET=y | |||
268 | # | 275 | # |
269 | # Networking options | 276 | # Networking options |
270 | # | 277 | # |
278 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
271 | CONFIG_PACKET=y | 279 | CONFIG_PACKET=y |
272 | # CONFIG_PACKET_MMAP is not set | 280 | # CONFIG_PACKET_MMAP is not set |
273 | CONFIG_UNIX=y | 281 | CONFIG_UNIX=y |
@@ -349,6 +357,7 @@ CONFIG_NETFILTER_ADVANCED=y | |||
349 | # CONFIG_IPX is not set | 357 | # CONFIG_IPX is not set |
350 | # CONFIG_ATALK is not set | 358 | # CONFIG_ATALK is not set |
351 | # CONFIG_NET_SCHED is not set | 359 | # CONFIG_NET_SCHED is not set |
360 | # CONFIG_DCB is not set | ||
352 | 361 | ||
353 | # | 362 | # |
354 | # Network testing | 363 | # Network testing |
@@ -363,8 +372,9 @@ CONFIG_WIRELESS=y | |||
363 | # CONFIG_CFG80211 is not set | 372 | # CONFIG_CFG80211 is not set |
364 | CONFIG_WIRELESS_OLD_REGULATORY=y | 373 | CONFIG_WIRELESS_OLD_REGULATORY=y |
365 | # CONFIG_WIRELESS_EXT is not set | 374 | # CONFIG_WIRELESS_EXT is not set |
375 | # CONFIG_LIB80211 is not set | ||
366 | # CONFIG_MAC80211 is not set | 376 | # CONFIG_MAC80211 is not set |
367 | # CONFIG_IEEE80211 is not set | 377 | # CONFIG_WIMAX is not set |
368 | # CONFIG_RFKILL is not set | 378 | # CONFIG_RFKILL is not set |
369 | 379 | ||
370 | # | 380 | # |
@@ -459,6 +469,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
459 | # CONFIG_MTD_ONENAND is not set | 469 | # CONFIG_MTD_ONENAND is not set |
460 | 470 | ||
461 | # | 471 | # |
472 | # LPDDR flash memory drivers | ||
473 | # | ||
474 | # CONFIG_MTD_LPDDR is not set | ||
475 | # CONFIG_MTD_QINFO_PROBE is not set | ||
476 | |||
477 | # | ||
462 | # UBI - Unsorted block images | 478 | # UBI - Unsorted block images |
463 | # | 479 | # |
464 | # CONFIG_MTD_UBI is not set | 480 | # CONFIG_MTD_UBI is not set |
@@ -526,9 +542,12 @@ CONFIG_DAVICOM_PHY=y | |||
526 | # CONFIG_BROADCOM_PHY is not set | 542 | # CONFIG_BROADCOM_PHY is not set |
527 | # CONFIG_ICPLUS_PHY is not set | 543 | # CONFIG_ICPLUS_PHY is not set |
528 | # CONFIG_REALTEK_PHY is not set | 544 | # CONFIG_REALTEK_PHY is not set |
545 | # CONFIG_NATIONAL_PHY is not set | ||
546 | # CONFIG_STE10XP is not set | ||
547 | # CONFIG_LSI_ET1011C_PHY is not set | ||
529 | # CONFIG_FIXED_PHY is not set | 548 | # CONFIG_FIXED_PHY is not set |
530 | CONFIG_MDIO_BITBANG=y | 549 | CONFIG_MDIO_BITBANG=y |
531 | # CONFIG_MDIO_OF_GPIO is not set | 550 | # CONFIG_MDIO_GPIO is not set |
532 | CONFIG_NET_ETHERNET=y | 551 | CONFIG_NET_ETHERNET=y |
533 | CONFIG_MII=y | 552 | CONFIG_MII=y |
534 | # CONFIG_HAPPYMEAL is not set | 553 | # CONFIG_HAPPYMEAL is not set |
@@ -573,6 +592,7 @@ CONFIG_NETDEV_1000=y | |||
573 | # CONFIG_JME is not set | 592 | # CONFIG_JME is not set |
574 | CONFIG_NETDEV_10000=y | 593 | CONFIG_NETDEV_10000=y |
575 | # CONFIG_CHELSIO_T1 is not set | 594 | # CONFIG_CHELSIO_T1 is not set |
595 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
576 | # CONFIG_CHELSIO_T3 is not set | 596 | # CONFIG_CHELSIO_T3 is not set |
577 | # CONFIG_ENIC is not set | 597 | # CONFIG_ENIC is not set |
578 | # CONFIG_IXGBE is not set | 598 | # CONFIG_IXGBE is not set |
@@ -595,6 +615,10 @@ CONFIG_NETDEV_10000=y | |||
595 | # CONFIG_WLAN_PRE80211 is not set | 615 | # CONFIG_WLAN_PRE80211 is not set |
596 | # CONFIG_WLAN_80211 is not set | 616 | # CONFIG_WLAN_80211 is not set |
597 | # CONFIG_IWLWIFI_LEDS is not set | 617 | # CONFIG_IWLWIFI_LEDS is not set |
618 | |||
619 | # | ||
620 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
621 | # | ||
598 | # CONFIG_WAN is not set | 622 | # CONFIG_WAN is not set |
599 | # CONFIG_FDDI is not set | 623 | # CONFIG_FDDI is not set |
600 | CONFIG_PPP=y | 624 | CONFIG_PPP=y |
@@ -690,6 +714,7 @@ CONFIG_SERIAL_CPM=y | |||
690 | CONFIG_SERIAL_CPM_CONSOLE=y | 714 | CONFIG_SERIAL_CPM_CONSOLE=y |
691 | # CONFIG_SERIAL_JSM is not set | 715 | # CONFIG_SERIAL_JSM is not set |
692 | CONFIG_UNIX98_PTYS=y | 716 | CONFIG_UNIX98_PTYS=y |
717 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
693 | CONFIG_LEGACY_PTYS=y | 718 | CONFIG_LEGACY_PTYS=y |
694 | CONFIG_LEGACY_PTY_COUNT=256 | 719 | CONFIG_LEGACY_PTY_COUNT=256 |
695 | # CONFIG_IPMI_HANDLER is not set | 720 | # CONFIG_IPMI_HANDLER is not set |
@@ -708,6 +733,11 @@ CONFIG_GPIOLIB=y | |||
708 | # CONFIG_DEBUG_GPIO is not set | 733 | # CONFIG_DEBUG_GPIO is not set |
709 | 734 | ||
710 | # | 735 | # |
736 | # Memory mapped GPIO expanders: | ||
737 | # | ||
738 | # CONFIG_GPIO_XILINX is not set | ||
739 | |||
740 | # | ||
711 | # I2C GPIO expanders: | 741 | # I2C GPIO expanders: |
712 | # | 742 | # |
713 | 743 | ||
@@ -725,11 +755,11 @@ CONFIG_GPIOLIB=y | |||
725 | # CONFIG_THERMAL is not set | 755 | # CONFIG_THERMAL is not set |
726 | # CONFIG_THERMAL_HWMON is not set | 756 | # CONFIG_THERMAL_HWMON is not set |
727 | # CONFIG_WATCHDOG is not set | 757 | # CONFIG_WATCHDOG is not set |
758 | CONFIG_SSB_POSSIBLE=y | ||
728 | 759 | ||
729 | # | 760 | # |
730 | # Sonics Silicon Backplane | 761 | # Sonics Silicon Backplane |
731 | # | 762 | # |
732 | CONFIG_SSB_POSSIBLE=y | ||
733 | # CONFIG_SSB is not set | 763 | # CONFIG_SSB is not set |
734 | 764 | ||
735 | # | 765 | # |
@@ -739,14 +769,7 @@ CONFIG_SSB_POSSIBLE=y | |||
739 | # CONFIG_MFD_SM501 is not set | 769 | # CONFIG_MFD_SM501 is not set |
740 | # CONFIG_HTC_PASIC3 is not set | 770 | # CONFIG_HTC_PASIC3 is not set |
741 | # CONFIG_MFD_TMIO is not set | 771 | # CONFIG_MFD_TMIO is not set |
742 | |||
743 | # | ||
744 | # Voltage and Current regulators | ||
745 | # | ||
746 | # CONFIG_REGULATOR is not set | 772 | # CONFIG_REGULATOR is not set |
747 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
748 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
749 | # CONFIG_REGULATOR_BQ24022 is not set | ||
750 | 773 | ||
751 | # | 774 | # |
752 | # Multimedia devices | 775 | # Multimedia devices |
@@ -843,13 +866,11 @@ CONFIG_TMPFS=y | |||
843 | # CONFIG_TMPFS_POSIX_ACL is not set | 866 | # CONFIG_TMPFS_POSIX_ACL is not set |
844 | # CONFIG_HUGETLB_PAGE is not set | 867 | # CONFIG_HUGETLB_PAGE is not set |
845 | # CONFIG_CONFIGFS_FS is not set | 868 | # CONFIG_CONFIGFS_FS is not set |
846 | 869 | CONFIG_MISC_FILESYSTEMS=y | |
847 | # | ||
848 | # Miscellaneous filesystems | ||
849 | # | ||
850 | # CONFIG_HFSPLUS_FS is not set | 870 | # CONFIG_HFSPLUS_FS is not set |
851 | # CONFIG_JFFS2_FS is not set | 871 | # CONFIG_JFFS2_FS is not set |
852 | CONFIG_CRAMFS=y | 872 | CONFIG_CRAMFS=y |
873 | # CONFIG_SQUASHFS is not set | ||
853 | # CONFIG_VXFS_FS is not set | 874 | # CONFIG_VXFS_FS is not set |
854 | # CONFIG_MINIX_FS is not set | 875 | # CONFIG_MINIX_FS is not set |
855 | # CONFIG_OMFS_FS is not set | 876 | # CONFIG_OMFS_FS is not set |
@@ -940,6 +961,7 @@ CONFIG_NLS_UTF8=y | |||
940 | # Library routines | 961 | # Library routines |
941 | # | 962 | # |
942 | CONFIG_BITREVERSE=y | 963 | CONFIG_BITREVERSE=y |
964 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
943 | CONFIG_CRC_CCITT=y | 965 | CONFIG_CRC_CCITT=y |
944 | # CONFIG_CRC16 is not set | 966 | # CONFIG_CRC16 is not set |
945 | # CONFIG_CRC_T10DIF is not set | 967 | # CONFIG_CRC_T10DIF is not set |
@@ -991,6 +1013,7 @@ CONFIG_DEBUG_INFO=y | |||
991 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1013 | # CONFIG_DEBUG_MEMORY_INIT is not set |
992 | # CONFIG_DEBUG_LIST is not set | 1014 | # CONFIG_DEBUG_LIST is not set |
993 | # CONFIG_DEBUG_SG is not set | 1015 | # CONFIG_DEBUG_SG is not set |
1016 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
994 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1017 | # CONFIG_BOOT_PRINTK_DELAY is not set |
995 | # CONFIG_RCU_TORTURE_TEST is not set | 1018 | # CONFIG_RCU_TORTURE_TEST is not set |
996 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1019 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1000,6 +1023,8 @@ CONFIG_DEBUG_INFO=y | |||
1000 | # CONFIG_LATENCYTOP is not set | 1023 | # CONFIG_LATENCYTOP is not set |
1001 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1024 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1002 | CONFIG_HAVE_FUNCTION_TRACER=y | 1025 | CONFIG_HAVE_FUNCTION_TRACER=y |
1026 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1027 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1003 | 1028 | ||
1004 | # | 1029 | # |
1005 | # Tracers | 1030 | # Tracers |
@@ -1008,10 +1033,12 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1008 | # CONFIG_SCHED_TRACER is not set | 1033 | # CONFIG_SCHED_TRACER is not set |
1009 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1034 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1010 | # CONFIG_BOOT_TRACER is not set | 1035 | # CONFIG_BOOT_TRACER is not set |
1036 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1011 | # CONFIG_STACK_TRACER is not set | 1037 | # CONFIG_STACK_TRACER is not set |
1012 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1038 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1013 | # CONFIG_SAMPLES is not set | 1039 | # CONFIG_SAMPLES is not set |
1014 | CONFIG_HAVE_ARCH_KGDB=y | 1040 | CONFIG_HAVE_ARCH_KGDB=y |
1041 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1015 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1042 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1016 | # CONFIG_DEBUG_STACK_USAGE is not set | 1043 | # CONFIG_DEBUG_STACK_USAGE is not set |
1017 | # CONFIG_DEBUG_PAGEALLOC is not set | 1044 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1038,11 +1065,15 @@ CONFIG_CRYPTO=y | |||
1038 | # | 1065 | # |
1039 | # CONFIG_CRYPTO_FIPS is not set | 1066 | # CONFIG_CRYPTO_FIPS is not set |
1040 | CONFIG_CRYPTO_ALGAPI=y | 1067 | CONFIG_CRYPTO_ALGAPI=y |
1041 | CONFIG_CRYPTO_AEAD=y | 1068 | CONFIG_CRYPTO_ALGAPI2=y |
1069 | CONFIG_CRYPTO_AEAD2=y | ||
1042 | CONFIG_CRYPTO_BLKCIPHER=y | 1070 | CONFIG_CRYPTO_BLKCIPHER=y |
1071 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1043 | CONFIG_CRYPTO_HASH=y | 1072 | CONFIG_CRYPTO_HASH=y |
1044 | CONFIG_CRYPTO_RNG=y | 1073 | CONFIG_CRYPTO_HASH2=y |
1074 | CONFIG_CRYPTO_RNG2=y | ||
1045 | CONFIG_CRYPTO_MANAGER=y | 1075 | CONFIG_CRYPTO_MANAGER=y |
1076 | CONFIG_CRYPTO_MANAGER2=y | ||
1046 | # CONFIG_CRYPTO_NULL is not set | 1077 | # CONFIG_CRYPTO_NULL is not set |
1047 | # CONFIG_CRYPTO_CRYPTD is not set | 1078 | # CONFIG_CRYPTO_CRYPTD is not set |
1048 | # CONFIG_CRYPTO_AUTHENC is not set | 1079 | # CONFIG_CRYPTO_AUTHENC is not set |
diff --git a/arch/powerpc/configs/mpc83xx_defconfig b/arch/powerpc/configs/mpc83xx_defconfig index 3e1272cfdd91..45f03cad8db6 100644 --- a/arch/powerpc/configs/mpc83xx_defconfig +++ b/arch/powerpc/configs/mpc83xx_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:42 2008 | 4 | # Mon Jan 26 15:35:36 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -45,7 +45,7 @@ CONFIG_GENERIC_GPIO=y | |||
45 | CONFIG_PPC=y | 45 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 46 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 47 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 48 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 50 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 51 | CONFIG_OF=y |
@@ -77,12 +77,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
77 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
78 | # CONFIG_IKCONFIG is not set | 78 | # CONFIG_IKCONFIG is not set |
79 | CONFIG_LOG_BUF_SHIFT=14 | 79 | CONFIG_LOG_BUF_SHIFT=14 |
80 | # CONFIG_CGROUPS is not set | ||
81 | CONFIG_GROUP_SCHED=y | 80 | CONFIG_GROUP_SCHED=y |
82 | CONFIG_FAIR_GROUP_SCHED=y | 81 | CONFIG_FAIR_GROUP_SCHED=y |
83 | # CONFIG_RT_GROUP_SCHED is not set | 82 | # CONFIG_RT_GROUP_SCHED is not set |
84 | CONFIG_USER_SCHED=y | 83 | CONFIG_USER_SCHED=y |
85 | # CONFIG_CGROUP_SCHED is not set | 84 | # CONFIG_CGROUP_SCHED is not set |
85 | # CONFIG_CGROUPS is not set | ||
86 | CONFIG_SYSFS_DEPRECATED=y | 86 | CONFIG_SYSFS_DEPRECATED=y |
87 | CONFIG_SYSFS_DEPRECATED_V2=y | 87 | CONFIG_SYSFS_DEPRECATED_V2=y |
88 | # CONFIG_RELAY is not set | 88 | # CONFIG_RELAY is not set |
@@ -115,7 +115,6 @@ CONFIG_SLAB=y | |||
115 | # CONFIG_SLUB is not set | 115 | # CONFIG_SLUB is not set |
116 | # CONFIG_SLOB is not set | 116 | # CONFIG_SLOB is not set |
117 | # CONFIG_PROFILING is not set | 117 | # CONFIG_PROFILING is not set |
118 | # CONFIG_MARKERS is not set | ||
119 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
120 | # CONFIG_KPROBES is not set | 119 | # CONFIG_KPROBES is not set |
121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -126,7 +125,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
127 | CONFIG_SLABINFO=y | 126 | CONFIG_SLABINFO=y |
128 | CONFIG_RT_MUTEXES=y | 127 | CONFIG_RT_MUTEXES=y |
129 | # CONFIG_TINY_SHMEM is not set | ||
130 | CONFIG_BASE_SMALL=0 | 128 | CONFIG_BASE_SMALL=0 |
131 | CONFIG_MODULES=y | 129 | CONFIG_MODULES=y |
132 | # CONFIG_MODULE_FORCE_LOAD is not set | 130 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -134,11 +132,9 @@ CONFIG_MODULE_UNLOAD=y | |||
134 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 132 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
135 | # CONFIG_MODVERSIONS is not set | 133 | # CONFIG_MODVERSIONS is not set |
136 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 134 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
137 | CONFIG_KMOD=y | ||
138 | CONFIG_BLOCK=y | 135 | CONFIG_BLOCK=y |
139 | # CONFIG_LBD is not set | 136 | # CONFIG_LBD is not set |
140 | # CONFIG_BLK_DEV_IO_TRACE is not set | 137 | # CONFIG_BLK_DEV_IO_TRACE is not set |
141 | # CONFIG_LSF is not set | ||
142 | # CONFIG_BLK_DEV_BSG is not set | 138 | # CONFIG_BLK_DEV_BSG is not set |
143 | # CONFIG_BLK_DEV_INTEGRITY is not set | 139 | # CONFIG_BLK_DEV_INTEGRITY is not set |
144 | 140 | ||
@@ -155,6 +151,10 @@ CONFIG_DEFAULT_AS=y | |||
155 | # CONFIG_DEFAULT_NOOP is not set | 151 | # CONFIG_DEFAULT_NOOP is not set |
156 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 152 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
157 | CONFIG_CLASSIC_RCU=y | 153 | CONFIG_CLASSIC_RCU=y |
154 | # CONFIG_TREE_RCU is not set | ||
155 | # CONFIG_PREEMPT_RCU is not set | ||
156 | # CONFIG_TREE_RCU_TRACE is not set | ||
157 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
158 | # CONFIG_FREEZER is not set | 158 | # CONFIG_FREEZER is not set |
159 | 159 | ||
160 | # | 160 | # |
@@ -205,6 +205,8 @@ CONFIG_QUICC_ENGINE=y | |||
205 | CONFIG_QE_GPIO=y | 205 | CONFIG_QE_GPIO=y |
206 | # CONFIG_FSL_ULI1575 is not set | 206 | # CONFIG_FSL_ULI1575 is not set |
207 | # CONFIG_MPC8xxx_GPIO is not set | 207 | # CONFIG_MPC8xxx_GPIO is not set |
208 | # CONFIG_SIMPLE_GPIO is not set | ||
209 | # CONFIG_MCU_MPC8349EMITX is not set | ||
208 | 210 | ||
209 | # | 211 | # |
210 | # Kernel options | 212 | # Kernel options |
@@ -232,6 +234,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
232 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 234 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
233 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 235 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
234 | # CONFIG_KEXEC is not set | 236 | # CONFIG_KEXEC is not set |
237 | # CONFIG_CRASH_DUMP is not set | ||
235 | CONFIG_ARCH_FLATMEM_ENABLE=y | 238 | CONFIG_ARCH_FLATMEM_ENABLE=y |
236 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 239 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
237 | CONFIG_SELECT_MEMORY_MODEL=y | 240 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -243,12 +246,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
243 | CONFIG_PAGEFLAGS_EXTENDED=y | 246 | CONFIG_PAGEFLAGS_EXTENDED=y |
244 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 247 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
245 | CONFIG_MIGRATION=y | 248 | CONFIG_MIGRATION=y |
246 | # CONFIG_RESOURCES_64BIT is not set | ||
247 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 249 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
248 | CONFIG_ZONE_DMA_FLAG=1 | 250 | CONFIG_ZONE_DMA_FLAG=1 |
249 | CONFIG_BOUNCE=y | 251 | CONFIG_BOUNCE=y |
250 | CONFIG_VIRT_TO_BUS=y | 252 | CONFIG_VIRT_TO_BUS=y |
251 | CONFIG_UNEVICTABLE_LRU=y | 253 | CONFIG_UNEVICTABLE_LRU=y |
254 | CONFIG_PPC_4K_PAGES=y | ||
255 | # CONFIG_PPC_16K_PAGES is not set | ||
256 | # CONFIG_PPC_64K_PAGES is not set | ||
252 | CONFIG_FORCE_MAX_ZONEORDER=11 | 257 | CONFIG_FORCE_MAX_ZONEORDER=11 |
253 | CONFIG_PROC_DEVICETREE=y | 258 | CONFIG_PROC_DEVICETREE=y |
254 | # CONFIG_CMDLINE_BOOL is not set | 259 | # CONFIG_CMDLINE_BOOL is not set |
@@ -275,6 +280,7 @@ CONFIG_PCI_SYSCALL=y | |||
275 | CONFIG_ARCH_SUPPORTS_MSI=y | 280 | CONFIG_ARCH_SUPPORTS_MSI=y |
276 | # CONFIG_PCI_MSI is not set | 281 | # CONFIG_PCI_MSI is not set |
277 | # CONFIG_PCI_LEGACY is not set | 282 | # CONFIG_PCI_LEGACY is not set |
283 | # CONFIG_PCI_STUB is not set | ||
278 | # CONFIG_PCCARD is not set | 284 | # CONFIG_PCCARD is not set |
279 | # CONFIG_HOTPLUG_PCI is not set | 285 | # CONFIG_HOTPLUG_PCI is not set |
280 | # CONFIG_HAS_RAPIDIO is not set | 286 | # CONFIG_HAS_RAPIDIO is not set |
@@ -297,6 +303,7 @@ CONFIG_NET=y | |||
297 | # | 303 | # |
298 | # Networking options | 304 | # Networking options |
299 | # | 305 | # |
306 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
300 | CONFIG_PACKET=y | 307 | CONFIG_PACKET=y |
301 | # CONFIG_PACKET_MMAP is not set | 308 | # CONFIG_PACKET_MMAP is not set |
302 | CONFIG_UNIX=y | 309 | CONFIG_UNIX=y |
@@ -353,6 +360,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
353 | # CONFIG_ECONET is not set | 360 | # CONFIG_ECONET is not set |
354 | # CONFIG_WAN_ROUTER is not set | 361 | # CONFIG_WAN_ROUTER is not set |
355 | # CONFIG_NET_SCHED is not set | 362 | # CONFIG_NET_SCHED is not set |
363 | # CONFIG_DCB is not set | ||
356 | 364 | ||
357 | # | 365 | # |
358 | # Network testing | 366 | # Network testing |
@@ -368,8 +376,9 @@ CONFIG_WIRELESS=y | |||
368 | # CONFIG_CFG80211 is not set | 376 | # CONFIG_CFG80211 is not set |
369 | CONFIG_WIRELESS_OLD_REGULATORY=y | 377 | CONFIG_WIRELESS_OLD_REGULATORY=y |
370 | # CONFIG_WIRELESS_EXT is not set | 378 | # CONFIG_WIRELESS_EXT is not set |
379 | # CONFIG_LIB80211 is not set | ||
371 | # CONFIG_MAC80211 is not set | 380 | # CONFIG_MAC80211 is not set |
372 | # CONFIG_IEEE80211 is not set | 381 | # CONFIG_WIMAX is not set |
373 | # CONFIG_RFKILL is not set | 382 | # CONFIG_RFKILL is not set |
374 | # CONFIG_NET_9P is not set | 383 | # CONFIG_NET_9P is not set |
375 | 384 | ||
@@ -390,6 +399,7 @@ CONFIG_MTD=y | |||
390 | # CONFIG_MTD_DEBUG is not set | 399 | # CONFIG_MTD_DEBUG is not set |
391 | # CONFIG_MTD_CONCAT is not set | 400 | # CONFIG_MTD_CONCAT is not set |
392 | CONFIG_MTD_PARTITIONS=y | 401 | CONFIG_MTD_PARTITIONS=y |
402 | # CONFIG_MTD_TESTS is not set | ||
393 | # CONFIG_MTD_REDBOOT_PARTS is not set | 403 | # CONFIG_MTD_REDBOOT_PARTS is not set |
394 | # CONFIG_MTD_CMDLINE_PARTS is not set | 404 | # CONFIG_MTD_CMDLINE_PARTS is not set |
395 | CONFIG_MTD_OF_PARTS=y | 405 | CONFIG_MTD_OF_PARTS=y |
@@ -472,6 +482,12 @@ CONFIG_MTD_NAND_FSL_ELBC=y | |||
472 | # CONFIG_MTD_ONENAND is not set | 482 | # CONFIG_MTD_ONENAND is not set |
473 | 483 | ||
474 | # | 484 | # |
485 | # LPDDR flash memory drivers | ||
486 | # | ||
487 | # CONFIG_MTD_LPDDR is not set | ||
488 | # CONFIG_MTD_QINFO_PROBE is not set | ||
489 | |||
490 | # | ||
475 | # UBI - Unsorted block images | 491 | # UBI - Unsorted block images |
476 | # | 492 | # |
477 | # CONFIG_MTD_UBI is not set | 493 | # CONFIG_MTD_UBI is not set |
@@ -503,8 +519,10 @@ CONFIG_MISC_DEVICES=y | |||
503 | # CONFIG_EEPROM_93CX6 is not set | 519 | # CONFIG_EEPROM_93CX6 is not set |
504 | # CONFIG_SGI_IOC4 is not set | 520 | # CONFIG_SGI_IOC4 is not set |
505 | # CONFIG_TIFM_CORE is not set | 521 | # CONFIG_TIFM_CORE is not set |
522 | # CONFIG_ICS932S401 is not set | ||
506 | # CONFIG_ENCLOSURE_SERVICES is not set | 523 | # CONFIG_ENCLOSURE_SERVICES is not set |
507 | # CONFIG_HP_ILO is not set | 524 | # CONFIG_HP_ILO is not set |
525 | # CONFIG_C2PORT is not set | ||
508 | CONFIG_HAVE_IDE=y | 526 | CONFIG_HAVE_IDE=y |
509 | # CONFIG_IDE is not set | 527 | # CONFIG_IDE is not set |
510 | 528 | ||
@@ -547,6 +565,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
547 | # CONFIG_SCSI_SRP_ATTRS is not set | 565 | # CONFIG_SCSI_SRP_ATTRS is not set |
548 | CONFIG_SCSI_LOWLEVEL=y | 566 | CONFIG_SCSI_LOWLEVEL=y |
549 | # CONFIG_ISCSI_TCP is not set | 567 | # CONFIG_ISCSI_TCP is not set |
568 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
550 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 569 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
551 | # CONFIG_SCSI_3W_9XXX is not set | 570 | # CONFIG_SCSI_3W_9XXX is not set |
552 | # CONFIG_SCSI_ACARD is not set | 571 | # CONFIG_SCSI_ACARD is not set |
@@ -563,6 +582,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
563 | # CONFIG_MEGARAID_SAS is not set | 582 | # CONFIG_MEGARAID_SAS is not set |
564 | # CONFIG_SCSI_HPTIOP is not set | 583 | # CONFIG_SCSI_HPTIOP is not set |
565 | # CONFIG_SCSI_BUSLOGIC is not set | 584 | # CONFIG_SCSI_BUSLOGIC is not set |
585 | # CONFIG_LIBFC is not set | ||
586 | # CONFIG_FCOE is not set | ||
566 | # CONFIG_SCSI_DMX3191D is not set | 587 | # CONFIG_SCSI_DMX3191D is not set |
567 | # CONFIG_SCSI_EATA is not set | 588 | # CONFIG_SCSI_EATA is not set |
568 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 589 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -682,6 +703,9 @@ CONFIG_VITESSE_PHY=y | |||
682 | # CONFIG_BROADCOM_PHY is not set | 703 | # CONFIG_BROADCOM_PHY is not set |
683 | CONFIG_ICPLUS_PHY=y | 704 | CONFIG_ICPLUS_PHY=y |
684 | # CONFIG_REALTEK_PHY is not set | 705 | # CONFIG_REALTEK_PHY is not set |
706 | # CONFIG_NATIONAL_PHY is not set | ||
707 | # CONFIG_STE10XP is not set | ||
708 | # CONFIG_LSI_ET1011C_PHY is not set | ||
685 | CONFIG_FIXED_PHY=y | 709 | CONFIG_FIXED_PHY=y |
686 | # CONFIG_MDIO_BITBANG is not set | 710 | # CONFIG_MDIO_BITBANG is not set |
687 | CONFIG_NET_ETHERNET=y | 711 | CONFIG_NET_ETHERNET=y |
@@ -722,7 +746,6 @@ CONFIG_NETDEV_1000=y | |||
722 | CONFIG_GIANFAR=y | 746 | CONFIG_GIANFAR=y |
723 | CONFIG_UCC_GETH=y | 747 | CONFIG_UCC_GETH=y |
724 | # CONFIG_UGETH_MAGIC_PACKET is not set | 748 | # CONFIG_UGETH_MAGIC_PACKET is not set |
725 | # CONFIG_UGETH_FILTERING is not set | ||
726 | # CONFIG_UGETH_TX_ON_DEMAND is not set | 749 | # CONFIG_UGETH_TX_ON_DEMAND is not set |
727 | # CONFIG_MV643XX_ETH is not set | 750 | # CONFIG_MV643XX_ETH is not set |
728 | # CONFIG_QLA3XXX is not set | 751 | # CONFIG_QLA3XXX is not set |
@@ -731,6 +754,7 @@ CONFIG_UCC_GETH=y | |||
731 | # CONFIG_JME is not set | 754 | # CONFIG_JME is not set |
732 | CONFIG_NETDEV_10000=y | 755 | CONFIG_NETDEV_10000=y |
733 | # CONFIG_CHELSIO_T1 is not set | 756 | # CONFIG_CHELSIO_T1 is not set |
757 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
734 | # CONFIG_CHELSIO_T3 is not set | 758 | # CONFIG_CHELSIO_T3 is not set |
735 | # CONFIG_ENIC is not set | 759 | # CONFIG_ENIC is not set |
736 | # CONFIG_IXGBE is not set | 760 | # CONFIG_IXGBE is not set |
@@ -755,6 +779,10 @@ CONFIG_NETDEV_10000=y | |||
755 | # CONFIG_IWLWIFI_LEDS is not set | 779 | # CONFIG_IWLWIFI_LEDS is not set |
756 | 780 | ||
757 | # | 781 | # |
782 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
783 | # | ||
784 | |||
785 | # | ||
758 | # USB Network Adapters | 786 | # USB Network Adapters |
759 | # | 787 | # |
760 | # CONFIG_USB_CATC is not set | 788 | # CONFIG_USB_CATC is not set |
@@ -833,8 +861,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
833 | # CONFIG_SERIAL_OF_PLATFORM is not set | 861 | # CONFIG_SERIAL_OF_PLATFORM is not set |
834 | # CONFIG_SERIAL_QE is not set | 862 | # CONFIG_SERIAL_QE is not set |
835 | CONFIG_UNIX98_PTYS=y | 863 | CONFIG_UNIX98_PTYS=y |
864 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
836 | CONFIG_LEGACY_PTYS=y | 865 | CONFIG_LEGACY_PTYS=y |
837 | CONFIG_LEGACY_PTY_COUNT=256 | 866 | CONFIG_LEGACY_PTY_COUNT=256 |
867 | # CONFIG_HVC_UDBG is not set | ||
838 | # CONFIG_IPMI_HANDLER is not set | 868 | # CONFIG_IPMI_HANDLER is not set |
839 | CONFIG_HW_RANDOM=y | 869 | CONFIG_HW_RANDOM=y |
840 | # CONFIG_NVRAM is not set | 870 | # CONFIG_NVRAM is not set |
@@ -908,10 +938,8 @@ CONFIG_I2C_MPC=y | |||
908 | # CONFIG_PCF8575 is not set | 938 | # CONFIG_PCF8575 is not set |
909 | # CONFIG_SENSORS_PCA9539 is not set | 939 | # CONFIG_SENSORS_PCA9539 is not set |
910 | # CONFIG_SENSORS_PCF8591 is not set | 940 | # CONFIG_SENSORS_PCF8591 is not set |
911 | # CONFIG_TPS65010 is not set | ||
912 | # CONFIG_SENSORS_MAX6875 is not set | 941 | # CONFIG_SENSORS_MAX6875 is not set |
913 | # CONFIG_SENSORS_TSL2550 is not set | 942 | # CONFIG_SENSORS_TSL2550 is not set |
914 | # CONFIG_MCU_MPC8349EMITX is not set | ||
915 | # CONFIG_I2C_DEBUG_CORE is not set | 943 | # CONFIG_I2C_DEBUG_CORE is not set |
916 | # CONFIG_I2C_DEBUG_ALGO is not set | 944 | # CONFIG_I2C_DEBUG_ALGO is not set |
917 | # CONFIG_I2C_DEBUG_BUS is not set | 945 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -923,6 +951,11 @@ CONFIG_GPIOLIB=y | |||
923 | # CONFIG_GPIO_SYSFS is not set | 951 | # CONFIG_GPIO_SYSFS is not set |
924 | 952 | ||
925 | # | 953 | # |
954 | # Memory mapped GPIO expanders: | ||
955 | # | ||
956 | # CONFIG_GPIO_XILINX is not set | ||
957 | |||
958 | # | ||
926 | # I2C GPIO expanders: | 959 | # I2C GPIO expanders: |
927 | # | 960 | # |
928 | # CONFIG_GPIO_MAX732X is not set | 961 | # CONFIG_GPIO_MAX732X is not set |
@@ -949,8 +982,10 @@ CONFIG_HWMON=y | |||
949 | # CONFIG_SENSORS_ADM1029 is not set | 982 | # CONFIG_SENSORS_ADM1029 is not set |
950 | # CONFIG_SENSORS_ADM1031 is not set | 983 | # CONFIG_SENSORS_ADM1031 is not set |
951 | # CONFIG_SENSORS_ADM9240 is not set | 984 | # CONFIG_SENSORS_ADM9240 is not set |
985 | # CONFIG_SENSORS_ADT7462 is not set | ||
952 | # CONFIG_SENSORS_ADT7470 is not set | 986 | # CONFIG_SENSORS_ADT7470 is not set |
953 | # CONFIG_SENSORS_ADT7473 is not set | 987 | # CONFIG_SENSORS_ADT7473 is not set |
988 | # CONFIG_SENSORS_ADT7475 is not set | ||
954 | # CONFIG_SENSORS_ATXP1 is not set | 989 | # CONFIG_SENSORS_ATXP1 is not set |
955 | # CONFIG_SENSORS_DS1621 is not set | 990 | # CONFIG_SENSORS_DS1621 is not set |
956 | # CONFIG_SENSORS_I5K_AMB is not set | 991 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -971,6 +1006,7 @@ CONFIG_HWMON=y | |||
971 | # CONFIG_SENSORS_LM90 is not set | 1006 | # CONFIG_SENSORS_LM90 is not set |
972 | # CONFIG_SENSORS_LM92 is not set | 1007 | # CONFIG_SENSORS_LM92 is not set |
973 | # CONFIG_SENSORS_LM93 is not set | 1008 | # CONFIG_SENSORS_LM93 is not set |
1009 | # CONFIG_SENSORS_LTC4245 is not set | ||
974 | # CONFIG_SENSORS_MAX1619 is not set | 1010 | # CONFIG_SENSORS_MAX1619 is not set |
975 | # CONFIG_SENSORS_MAX6650 is not set | 1011 | # CONFIG_SENSORS_MAX6650 is not set |
976 | # CONFIG_SENSORS_PC87360 is not set | 1012 | # CONFIG_SENSORS_PC87360 is not set |
@@ -1016,11 +1052,11 @@ CONFIG_WATCHDOG=y | |||
1016 | # USB-based Watchdog Cards | 1052 | # USB-based Watchdog Cards |
1017 | # | 1053 | # |
1018 | # CONFIG_USBPCWATCHDOG is not set | 1054 | # CONFIG_USBPCWATCHDOG is not set |
1055 | CONFIG_SSB_POSSIBLE=y | ||
1019 | 1056 | ||
1020 | # | 1057 | # |
1021 | # Sonics Silicon Backplane | 1058 | # Sonics Silicon Backplane |
1022 | # | 1059 | # |
1023 | CONFIG_SSB_POSSIBLE=y | ||
1024 | # CONFIG_SSB is not set | 1060 | # CONFIG_SSB is not set |
1025 | 1061 | ||
1026 | # | 1062 | # |
@@ -1029,18 +1065,14 @@ CONFIG_SSB_POSSIBLE=y | |||
1029 | # CONFIG_MFD_CORE is not set | 1065 | # CONFIG_MFD_CORE is not set |
1030 | # CONFIG_MFD_SM501 is not set | 1066 | # CONFIG_MFD_SM501 is not set |
1031 | # CONFIG_HTC_PASIC3 is not set | 1067 | # CONFIG_HTC_PASIC3 is not set |
1068 | # CONFIG_TPS65010 is not set | ||
1069 | # CONFIG_TWL4030_CORE is not set | ||
1032 | # CONFIG_MFD_TMIO is not set | 1070 | # CONFIG_MFD_TMIO is not set |
1033 | # CONFIG_PMIC_DA903X is not set | 1071 | # CONFIG_PMIC_DA903X is not set |
1034 | # CONFIG_MFD_WM8400 is not set | 1072 | # CONFIG_MFD_WM8400 is not set |
1035 | # CONFIG_MFD_WM8350_I2C is not set | 1073 | # CONFIG_MFD_WM8350_I2C is not set |
1036 | 1074 | # CONFIG_MFD_PCF50633 is not set | |
1037 | # | ||
1038 | # Voltage and Current regulators | ||
1039 | # | ||
1040 | # CONFIG_REGULATOR is not set | 1075 | # CONFIG_REGULATOR is not set |
1041 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
1042 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
1043 | # CONFIG_REGULATOR_BQ24022 is not set | ||
1044 | 1076 | ||
1045 | # | 1077 | # |
1046 | # Multimedia devices | 1078 | # Multimedia devices |
@@ -1093,11 +1125,9 @@ CONFIG_HID_COMPAT=y | |||
1093 | CONFIG_HID_A4TECH=y | 1125 | CONFIG_HID_A4TECH=y |
1094 | CONFIG_HID_APPLE=y | 1126 | CONFIG_HID_APPLE=y |
1095 | CONFIG_HID_BELKIN=y | 1127 | CONFIG_HID_BELKIN=y |
1096 | CONFIG_HID_BRIGHT=y | ||
1097 | CONFIG_HID_CHERRY=y | 1128 | CONFIG_HID_CHERRY=y |
1098 | CONFIG_HID_CHICONY=y | 1129 | CONFIG_HID_CHICONY=y |
1099 | CONFIG_HID_CYPRESS=y | 1130 | CONFIG_HID_CYPRESS=y |
1100 | CONFIG_HID_DELL=y | ||
1101 | CONFIG_HID_EZKEY=y | 1131 | CONFIG_HID_EZKEY=y |
1102 | CONFIG_HID_GYRATION=y | 1132 | CONFIG_HID_GYRATION=y |
1103 | CONFIG_HID_LOGITECH=y | 1133 | CONFIG_HID_LOGITECH=y |
@@ -1105,12 +1135,15 @@ CONFIG_HID_LOGITECH=y | |||
1105 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1135 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
1106 | CONFIG_HID_MICROSOFT=y | 1136 | CONFIG_HID_MICROSOFT=y |
1107 | CONFIG_HID_MONTEREY=y | 1137 | CONFIG_HID_MONTEREY=y |
1138 | # CONFIG_HID_NTRIG is not set | ||
1108 | CONFIG_HID_PANTHERLORD=y | 1139 | CONFIG_HID_PANTHERLORD=y |
1109 | # CONFIG_PANTHERLORD_FF is not set | 1140 | # CONFIG_PANTHERLORD_FF is not set |
1110 | CONFIG_HID_PETALYNX=y | 1141 | CONFIG_HID_PETALYNX=y |
1111 | CONFIG_HID_SAMSUNG=y | 1142 | CONFIG_HID_SAMSUNG=y |
1112 | CONFIG_HID_SONY=y | 1143 | CONFIG_HID_SONY=y |
1113 | CONFIG_HID_SUNPLUS=y | 1144 | CONFIG_HID_SUNPLUS=y |
1145 | # CONFIG_GREENASIA_FF is not set | ||
1146 | # CONFIG_HID_TOPSEED is not set | ||
1114 | CONFIG_THRUSTMASTER_FF=m | 1147 | CONFIG_THRUSTMASTER_FF=m |
1115 | CONFIG_ZEROPLUS_FF=m | 1148 | CONFIG_ZEROPLUS_FF=m |
1116 | CONFIG_USB_SUPPORT=y | 1149 | CONFIG_USB_SUPPORT=y |
@@ -1143,6 +1176,7 @@ CONFIG_USB_EHCI_ROOT_HUB_TT=y | |||
1143 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1176 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1144 | CONFIG_USB_EHCI_FSL=y | 1177 | CONFIG_USB_EHCI_FSL=y |
1145 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1178 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1179 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1146 | # CONFIG_USB_ISP116X_HCD is not set | 1180 | # CONFIG_USB_ISP116X_HCD is not set |
1147 | # CONFIG_USB_ISP1760_HCD is not set | 1181 | # CONFIG_USB_ISP1760_HCD is not set |
1148 | # CONFIG_USB_OHCI_HCD is not set | 1182 | # CONFIG_USB_OHCI_HCD is not set |
@@ -1161,11 +1195,11 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
1161 | # CONFIG_USB_TMC is not set | 1195 | # CONFIG_USB_TMC is not set |
1162 | 1196 | ||
1163 | # | 1197 | # |
1164 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1198 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1165 | # | 1199 | # |
1166 | 1200 | ||
1167 | # | 1201 | # |
1168 | # may also be needed; see USB_STORAGE Help for more information | 1202 | # see USB_STORAGE Help for more information |
1169 | # | 1203 | # |
1170 | # CONFIG_USB_STORAGE is not set | 1204 | # CONFIG_USB_STORAGE is not set |
1171 | # CONFIG_USB_LIBUSUAL is not set | 1205 | # CONFIG_USB_LIBUSUAL is not set |
@@ -1206,6 +1240,11 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
1206 | # CONFIG_USB_ISIGHTFW is not set | 1240 | # CONFIG_USB_ISIGHTFW is not set |
1207 | # CONFIG_USB_VST is not set | 1241 | # CONFIG_USB_VST is not set |
1208 | # CONFIG_USB_GADGET is not set | 1242 | # CONFIG_USB_GADGET is not set |
1243 | |||
1244 | # | ||
1245 | # OTG and related infrastructure | ||
1246 | # | ||
1247 | # CONFIG_USB_GPIO_VBUS is not set | ||
1209 | # CONFIG_UWB is not set | 1248 | # CONFIG_UWB is not set |
1210 | # CONFIG_MMC is not set | 1249 | # CONFIG_MMC is not set |
1211 | # CONFIG_MEMSTICK is not set | 1250 | # CONFIG_MEMSTICK is not set |
@@ -1237,6 +1276,7 @@ CONFIG_FS_MBCACHE=y | |||
1237 | CONFIG_FILE_LOCKING=y | 1276 | CONFIG_FILE_LOCKING=y |
1238 | # CONFIG_XFS_FS is not set | 1277 | # CONFIG_XFS_FS is not set |
1239 | # CONFIG_OCFS2_FS is not set | 1278 | # CONFIG_OCFS2_FS is not set |
1279 | # CONFIG_BTRFS_FS is not set | ||
1240 | CONFIG_DNOTIFY=y | 1280 | CONFIG_DNOTIFY=y |
1241 | CONFIG_INOTIFY=y | 1281 | CONFIG_INOTIFY=y |
1242 | CONFIG_INOTIFY_USER=y | 1282 | CONFIG_INOTIFY_USER=y |
@@ -1270,10 +1310,7 @@ CONFIG_TMPFS=y | |||
1270 | # CONFIG_TMPFS_POSIX_ACL is not set | 1310 | # CONFIG_TMPFS_POSIX_ACL is not set |
1271 | # CONFIG_HUGETLB_PAGE is not set | 1311 | # CONFIG_HUGETLB_PAGE is not set |
1272 | # CONFIG_CONFIGFS_FS is not set | 1312 | # CONFIG_CONFIGFS_FS is not set |
1273 | 1313 | CONFIG_MISC_FILESYSTEMS=y | |
1274 | # | ||
1275 | # Miscellaneous filesystems | ||
1276 | # | ||
1277 | # CONFIG_ADFS_FS is not set | 1314 | # CONFIG_ADFS_FS is not set |
1278 | # CONFIG_AFFS_FS is not set | 1315 | # CONFIG_AFFS_FS is not set |
1279 | # CONFIG_HFS_FS is not set | 1316 | # CONFIG_HFS_FS is not set |
@@ -1283,6 +1320,7 @@ CONFIG_TMPFS=y | |||
1283 | # CONFIG_EFS_FS is not set | 1320 | # CONFIG_EFS_FS is not set |
1284 | # CONFIG_JFFS2_FS is not set | 1321 | # CONFIG_JFFS2_FS is not set |
1285 | # CONFIG_CRAMFS is not set | 1322 | # CONFIG_CRAMFS is not set |
1323 | # CONFIG_SQUASHFS is not set | ||
1286 | # CONFIG_VXFS_FS is not set | 1324 | # CONFIG_VXFS_FS is not set |
1287 | # CONFIG_MINIX_FS is not set | 1325 | # CONFIG_MINIX_FS is not set |
1288 | # CONFIG_OMFS_FS is not set | 1326 | # CONFIG_OMFS_FS is not set |
@@ -1342,6 +1380,7 @@ CONFIG_UCC=y | |||
1342 | # Library routines | 1380 | # Library routines |
1343 | # | 1381 | # |
1344 | CONFIG_BITREVERSE=y | 1382 | CONFIG_BITREVERSE=y |
1383 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1345 | # CONFIG_CRC_CCITT is not set | 1384 | # CONFIG_CRC_CCITT is not set |
1346 | # CONFIG_CRC16 is not set | 1385 | # CONFIG_CRC16 is not set |
1347 | CONFIG_CRC_T10DIF=y | 1386 | CONFIG_CRC_T10DIF=y |
@@ -1373,6 +1412,8 @@ CONFIG_FRAME_WARN=1024 | |||
1373 | # CONFIG_LATENCYTOP is not set | 1412 | # CONFIG_LATENCYTOP is not set |
1374 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1413 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1375 | CONFIG_HAVE_FUNCTION_TRACER=y | 1414 | CONFIG_HAVE_FUNCTION_TRACER=y |
1415 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1416 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1376 | 1417 | ||
1377 | # | 1418 | # |
1378 | # Tracers | 1419 | # Tracers |
@@ -1380,6 +1421,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1380 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1421 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1381 | # CONFIG_SAMPLES is not set | 1422 | # CONFIG_SAMPLES is not set |
1382 | CONFIG_HAVE_ARCH_KGDB=y | 1423 | CONFIG_HAVE_ARCH_KGDB=y |
1424 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1383 | # CONFIG_IRQSTACKS is not set | 1425 | # CONFIG_IRQSTACKS is not set |
1384 | # CONFIG_BOOTX_TEXT is not set | 1426 | # CONFIG_BOOTX_TEXT is not set |
1385 | # CONFIG_PPC_EARLY_DEBUG is not set | 1427 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1398,11 +1440,16 @@ CONFIG_CRYPTO=y | |||
1398 | # | 1440 | # |
1399 | # CONFIG_CRYPTO_FIPS is not set | 1441 | # CONFIG_CRYPTO_FIPS is not set |
1400 | CONFIG_CRYPTO_ALGAPI=y | 1442 | CONFIG_CRYPTO_ALGAPI=y |
1443 | CONFIG_CRYPTO_ALGAPI2=y | ||
1401 | CONFIG_CRYPTO_AEAD=y | 1444 | CONFIG_CRYPTO_AEAD=y |
1445 | CONFIG_CRYPTO_AEAD2=y | ||
1402 | CONFIG_CRYPTO_BLKCIPHER=y | 1446 | CONFIG_CRYPTO_BLKCIPHER=y |
1447 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1403 | CONFIG_CRYPTO_HASH=y | 1448 | CONFIG_CRYPTO_HASH=y |
1404 | CONFIG_CRYPTO_RNG=y | 1449 | CONFIG_CRYPTO_HASH2=y |
1450 | CONFIG_CRYPTO_RNG2=y | ||
1405 | CONFIG_CRYPTO_MANAGER=y | 1451 | CONFIG_CRYPTO_MANAGER=y |
1452 | CONFIG_CRYPTO_MANAGER2=y | ||
1406 | # CONFIG_CRYPTO_GF128MUL is not set | 1453 | # CONFIG_CRYPTO_GF128MUL is not set |
1407 | # CONFIG_CRYPTO_NULL is not set | 1454 | # CONFIG_CRYPTO_NULL is not set |
1408 | # CONFIG_CRYPTO_CRYPTD is not set | 1455 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/mpc85xx_defconfig b/arch/powerpc/configs/mpc85xx_defconfig index 55e5ebd91cd0..fb08819d7cc4 100644 --- a/arch/powerpc/configs/mpc85xx_defconfig +++ b/arch/powerpc/configs/mpc85xx_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:43 2008 | 4 | # Mon Jan 26 15:35:37 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -46,7 +48,7 @@ CONFIG_GENERIC_GPIO=y | |||
46 | CONFIG_PPC=y | 48 | CONFIG_PPC=y |
47 | CONFIG_EARLY_PRINTK=y | 49 | CONFIG_EARLY_PRINTK=y |
48 | CONFIG_GENERIC_NVRAM=y | 50 | CONFIG_GENERIC_NVRAM=y |
49 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 51 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
50 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 52 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
51 | CONFIG_PPC_OF=y | 53 | CONFIG_PPC_OF=y |
52 | CONFIG_OF=y | 54 | CONFIG_OF=y |
@@ -79,12 +81,12 @@ CONFIG_AUDIT=y | |||
79 | CONFIG_IKCONFIG=y | 81 | CONFIG_IKCONFIG=y |
80 | CONFIG_IKCONFIG_PROC=y | 82 | CONFIG_IKCONFIG_PROC=y |
81 | CONFIG_LOG_BUF_SHIFT=14 | 83 | CONFIG_LOG_BUF_SHIFT=14 |
82 | # CONFIG_CGROUPS is not set | ||
83 | CONFIG_GROUP_SCHED=y | 84 | CONFIG_GROUP_SCHED=y |
84 | # CONFIG_FAIR_GROUP_SCHED is not set | 85 | # CONFIG_FAIR_GROUP_SCHED is not set |
85 | # CONFIG_RT_GROUP_SCHED is not set | 86 | # CONFIG_RT_GROUP_SCHED is not set |
86 | CONFIG_USER_SCHED=y | 87 | CONFIG_USER_SCHED=y |
87 | # CONFIG_CGROUP_SCHED is not set | 88 | # CONFIG_CGROUP_SCHED is not set |
89 | # CONFIG_CGROUPS is not set | ||
88 | CONFIG_SYSFS_DEPRECATED=y | 90 | CONFIG_SYSFS_DEPRECATED=y |
89 | CONFIG_SYSFS_DEPRECATED_V2=y | 91 | CONFIG_SYSFS_DEPRECATED_V2=y |
90 | # CONFIG_RELAY is not set | 92 | # CONFIG_RELAY is not set |
@@ -97,6 +99,7 @@ CONFIG_EMBEDDED=y | |||
97 | CONFIG_SYSCTL_SYSCALL=y | 99 | CONFIG_SYSCTL_SYSCALL=y |
98 | CONFIG_KALLSYMS=y | 100 | CONFIG_KALLSYMS=y |
99 | CONFIG_KALLSYMS_ALL=y | 101 | CONFIG_KALLSYMS_ALL=y |
102 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
100 | CONFIG_KALLSYMS_EXTRA_PASS=y | 103 | CONFIG_KALLSYMS_EXTRA_PASS=y |
101 | CONFIG_HOTPLUG=y | 104 | CONFIG_HOTPLUG=y |
102 | CONFIG_PRINTK=y | 105 | CONFIG_PRINTK=y |
@@ -119,7 +122,6 @@ CONFIG_SLUB_DEBUG=y | |||
119 | CONFIG_SLUB=y | 122 | CONFIG_SLUB=y |
120 | # CONFIG_SLOB is not set | 123 | # CONFIG_SLOB is not set |
121 | # CONFIG_PROFILING is not set | 124 | # CONFIG_PROFILING is not set |
122 | # CONFIG_MARKERS is not set | ||
123 | CONFIG_HAVE_OPROFILE=y | 125 | CONFIG_HAVE_OPROFILE=y |
124 | # CONFIG_KPROBES is not set | 126 | # CONFIG_KPROBES is not set |
125 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 127 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -131,7 +133,6 @@ CONFIG_HAVE_CLK=y | |||
131 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 133 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
132 | CONFIG_SLABINFO=y | 134 | CONFIG_SLABINFO=y |
133 | CONFIG_RT_MUTEXES=y | 135 | CONFIG_RT_MUTEXES=y |
134 | # CONFIG_TINY_SHMEM is not set | ||
135 | CONFIG_BASE_SMALL=0 | 136 | CONFIG_BASE_SMALL=0 |
136 | CONFIG_MODULES=y | 137 | CONFIG_MODULES=y |
137 | # CONFIG_MODULE_FORCE_LOAD is not set | 138 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -139,11 +140,9 @@ CONFIG_MODULE_UNLOAD=y | |||
139 | CONFIG_MODULE_FORCE_UNLOAD=y | 140 | CONFIG_MODULE_FORCE_UNLOAD=y |
140 | CONFIG_MODVERSIONS=y | 141 | CONFIG_MODVERSIONS=y |
141 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 142 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
142 | CONFIG_KMOD=y | ||
143 | CONFIG_BLOCK=y | 143 | CONFIG_BLOCK=y |
144 | CONFIG_LBD=y | 144 | CONFIG_LBD=y |
145 | # CONFIG_BLK_DEV_IO_TRACE is not set | 145 | # CONFIG_BLK_DEV_IO_TRACE is not set |
146 | # CONFIG_LSF is not set | ||
147 | # CONFIG_BLK_DEV_BSG is not set | 146 | # CONFIG_BLK_DEV_BSG is not set |
148 | # CONFIG_BLK_DEV_INTEGRITY is not set | 147 | # CONFIG_BLK_DEV_INTEGRITY is not set |
149 | 148 | ||
@@ -160,6 +159,10 @@ CONFIG_DEFAULT_CFQ=y | |||
160 | # CONFIG_DEFAULT_NOOP is not set | 159 | # CONFIG_DEFAULT_NOOP is not set |
161 | CONFIG_DEFAULT_IOSCHED="cfq" | 160 | CONFIG_DEFAULT_IOSCHED="cfq" |
162 | CONFIG_CLASSIC_RCU=y | 161 | CONFIG_CLASSIC_RCU=y |
162 | # CONFIG_TREE_RCU is not set | ||
163 | # CONFIG_PREEMPT_RCU is not set | ||
164 | # CONFIG_TREE_RCU_TRACE is not set | ||
165 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
163 | # CONFIG_FREEZER is not set | 166 | # CONFIG_FREEZER is not set |
164 | 167 | ||
165 | # | 168 | # |
@@ -202,6 +205,7 @@ CONFIG_CPM2=y | |||
202 | CONFIG_FSL_ULI1575=y | 205 | CONFIG_FSL_ULI1575=y |
203 | CONFIG_CPM=y | 206 | CONFIG_CPM=y |
204 | # CONFIG_MPC8xxx_GPIO is not set | 207 | # CONFIG_MPC8xxx_GPIO is not set |
208 | # CONFIG_SIMPLE_GPIO is not set | ||
205 | 209 | ||
206 | # | 210 | # |
207 | # Kernel options | 211 | # Kernel options |
@@ -240,12 +244,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
240 | CONFIG_PAGEFLAGS_EXTENDED=y | 244 | CONFIG_PAGEFLAGS_EXTENDED=y |
241 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 245 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
242 | CONFIG_MIGRATION=y | 246 | CONFIG_MIGRATION=y |
243 | # CONFIG_RESOURCES_64BIT is not set | ||
244 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 247 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
245 | CONFIG_ZONE_DMA_FLAG=1 | 248 | CONFIG_ZONE_DMA_FLAG=1 |
246 | CONFIG_BOUNCE=y | 249 | CONFIG_BOUNCE=y |
247 | CONFIG_VIRT_TO_BUS=y | 250 | CONFIG_VIRT_TO_BUS=y |
248 | CONFIG_UNEVICTABLE_LRU=y | 251 | CONFIG_UNEVICTABLE_LRU=y |
252 | CONFIG_PPC_4K_PAGES=y | ||
253 | # CONFIG_PPC_16K_PAGES is not set | ||
254 | # CONFIG_PPC_64K_PAGES is not set | ||
249 | CONFIG_FORCE_MAX_ZONEORDER=11 | 255 | CONFIG_FORCE_MAX_ZONEORDER=11 |
250 | CONFIG_PROC_DEVICETREE=y | 256 | CONFIG_PROC_DEVICETREE=y |
251 | # CONFIG_CMDLINE_BOOL is not set | 257 | # CONFIG_CMDLINE_BOOL is not set |
@@ -271,6 +277,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
271 | # CONFIG_PCI_MSI is not set | 277 | # CONFIG_PCI_MSI is not set |
272 | # CONFIG_PCI_LEGACY is not set | 278 | # CONFIG_PCI_LEGACY is not set |
273 | # CONFIG_PCI_DEBUG is not set | 279 | # CONFIG_PCI_DEBUG is not set |
280 | # CONFIG_PCI_STUB is not set | ||
274 | # CONFIG_PCCARD is not set | 281 | # CONFIG_PCCARD is not set |
275 | # CONFIG_HOTPLUG_PCI is not set | 282 | # CONFIG_HOTPLUG_PCI is not set |
276 | # CONFIG_HAS_RAPIDIO is not set | 283 | # CONFIG_HAS_RAPIDIO is not set |
@@ -294,6 +301,7 @@ CONFIG_NET=y | |||
294 | # | 301 | # |
295 | # Networking options | 302 | # Networking options |
296 | # | 303 | # |
304 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
297 | CONFIG_PACKET=y | 305 | CONFIG_PACKET=y |
298 | # CONFIG_PACKET_MMAP is not set | 306 | # CONFIG_PACKET_MMAP is not set |
299 | CONFIG_UNIX=y | 307 | CONFIG_UNIX=y |
@@ -382,6 +390,7 @@ CONFIG_SCTP_HMAC_MD5=y | |||
382 | # CONFIG_ECONET is not set | 390 | # CONFIG_ECONET is not set |
383 | # CONFIG_WAN_ROUTER is not set | 391 | # CONFIG_WAN_ROUTER is not set |
384 | # CONFIG_NET_SCHED is not set | 392 | # CONFIG_NET_SCHED is not set |
393 | # CONFIG_DCB is not set | ||
385 | 394 | ||
386 | # | 395 | # |
387 | # Network testing | 396 | # Network testing |
@@ -398,8 +407,9 @@ CONFIG_WIRELESS=y | |||
398 | # CONFIG_CFG80211 is not set | 407 | # CONFIG_CFG80211 is not set |
399 | CONFIG_WIRELESS_OLD_REGULATORY=y | 408 | CONFIG_WIRELESS_OLD_REGULATORY=y |
400 | # CONFIG_WIRELESS_EXT is not set | 409 | # CONFIG_WIRELESS_EXT is not set |
410 | # CONFIG_LIB80211 is not set | ||
401 | # CONFIG_MAC80211 is not set | 411 | # CONFIG_MAC80211 is not set |
402 | # CONFIG_IEEE80211 is not set | 412 | # CONFIG_WIMAX is not set |
403 | # CONFIG_RFKILL is not set | 413 | # CONFIG_RFKILL is not set |
404 | # CONFIG_NET_9P is not set | 414 | # CONFIG_NET_9P is not set |
405 | 415 | ||
@@ -449,8 +459,10 @@ CONFIG_MISC_DEVICES=y | |||
449 | # CONFIG_EEPROM_93CX6 is not set | 459 | # CONFIG_EEPROM_93CX6 is not set |
450 | # CONFIG_SGI_IOC4 is not set | 460 | # CONFIG_SGI_IOC4 is not set |
451 | # CONFIG_TIFM_CORE is not set | 461 | # CONFIG_TIFM_CORE is not set |
462 | # CONFIG_ICS932S401 is not set | ||
452 | # CONFIG_ENCLOSURE_SERVICES is not set | 463 | # CONFIG_ENCLOSURE_SERVICES is not set |
453 | # CONFIG_HP_ILO is not set | 464 | # CONFIG_HP_ILO is not set |
465 | # CONFIG_C2PORT is not set | ||
454 | CONFIG_HAVE_IDE=y | 466 | CONFIG_HAVE_IDE=y |
455 | # CONFIG_IDE is not set | 467 | # CONFIG_IDE is not set |
456 | 468 | ||
@@ -494,6 +506,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
494 | # CONFIG_SCSI_SRP_ATTRS is not set | 506 | # CONFIG_SCSI_SRP_ATTRS is not set |
495 | CONFIG_SCSI_LOWLEVEL=y | 507 | CONFIG_SCSI_LOWLEVEL=y |
496 | # CONFIG_ISCSI_TCP is not set | 508 | # CONFIG_ISCSI_TCP is not set |
509 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
497 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 510 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
498 | # CONFIG_SCSI_3W_9XXX is not set | 511 | # CONFIG_SCSI_3W_9XXX is not set |
499 | # CONFIG_SCSI_ACARD is not set | 512 | # CONFIG_SCSI_ACARD is not set |
@@ -510,6 +523,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
510 | # CONFIG_MEGARAID_SAS is not set | 523 | # CONFIG_MEGARAID_SAS is not set |
511 | # CONFIG_SCSI_HPTIOP is not set | 524 | # CONFIG_SCSI_HPTIOP is not set |
512 | # CONFIG_SCSI_BUSLOGIC is not set | 525 | # CONFIG_SCSI_BUSLOGIC is not set |
526 | # CONFIG_LIBFC is not set | ||
527 | # CONFIG_FCOE is not set | ||
513 | # CONFIG_SCSI_DMX3191D is not set | 528 | # CONFIG_SCSI_DMX3191D is not set |
514 | # CONFIG_SCSI_EATA is not set | 529 | # CONFIG_SCSI_EATA is not set |
515 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 530 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -629,6 +644,9 @@ CONFIG_VITESSE_PHY=y | |||
629 | # CONFIG_BROADCOM_PHY is not set | 644 | # CONFIG_BROADCOM_PHY is not set |
630 | # CONFIG_ICPLUS_PHY is not set | 645 | # CONFIG_ICPLUS_PHY is not set |
631 | # CONFIG_REALTEK_PHY is not set | 646 | # CONFIG_REALTEK_PHY is not set |
647 | # CONFIG_NATIONAL_PHY is not set | ||
648 | # CONFIG_STE10XP is not set | ||
649 | # CONFIG_LSI_ET1011C_PHY is not set | ||
632 | # CONFIG_FIXED_PHY is not set | 650 | # CONFIG_FIXED_PHY is not set |
633 | # CONFIG_MDIO_BITBANG is not set | 651 | # CONFIG_MDIO_BITBANG is not set |
634 | CONFIG_NET_ETHERNET=y | 652 | CONFIG_NET_ETHERNET=y |
@@ -675,6 +693,7 @@ CONFIG_GIANFAR=y | |||
675 | # CONFIG_JME is not set | 693 | # CONFIG_JME is not set |
676 | CONFIG_NETDEV_10000=y | 694 | CONFIG_NETDEV_10000=y |
677 | # CONFIG_CHELSIO_T1 is not set | 695 | # CONFIG_CHELSIO_T1 is not set |
696 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
678 | # CONFIG_CHELSIO_T3 is not set | 697 | # CONFIG_CHELSIO_T3 is not set |
679 | # CONFIG_ENIC is not set | 698 | # CONFIG_ENIC is not set |
680 | # CONFIG_IXGBE is not set | 699 | # CONFIG_IXGBE is not set |
@@ -699,6 +718,10 @@ CONFIG_NETDEV_10000=y | |||
699 | # CONFIG_IWLWIFI_LEDS is not set | 718 | # CONFIG_IWLWIFI_LEDS is not set |
700 | 719 | ||
701 | # | 720 | # |
721 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
722 | # | ||
723 | |||
724 | # | ||
702 | # USB Network Adapters | 725 | # USB Network Adapters |
703 | # | 726 | # |
704 | # CONFIG_USB_CATC is not set | 727 | # CONFIG_USB_CATC is not set |
@@ -792,8 +815,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
792 | # CONFIG_SERIAL_OF_PLATFORM is not set | 815 | # CONFIG_SERIAL_OF_PLATFORM is not set |
793 | # CONFIG_SERIAL_QE is not set | 816 | # CONFIG_SERIAL_QE is not set |
794 | CONFIG_UNIX98_PTYS=y | 817 | CONFIG_UNIX98_PTYS=y |
818 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
795 | CONFIG_LEGACY_PTYS=y | 819 | CONFIG_LEGACY_PTYS=y |
796 | CONFIG_LEGACY_PTY_COUNT=256 | 820 | CONFIG_LEGACY_PTY_COUNT=256 |
821 | # CONFIG_HVC_UDBG is not set | ||
797 | # CONFIG_IPMI_HANDLER is not set | 822 | # CONFIG_IPMI_HANDLER is not set |
798 | # CONFIG_HW_RANDOM is not set | 823 | # CONFIG_HW_RANDOM is not set |
799 | CONFIG_NVRAM=y | 824 | CONFIG_NVRAM=y |
@@ -866,7 +891,6 @@ CONFIG_EEPROM_LEGACY=y | |||
866 | # CONFIG_PCF8575 is not set | 891 | # CONFIG_PCF8575 is not set |
867 | # CONFIG_SENSORS_PCA9539 is not set | 892 | # CONFIG_SENSORS_PCA9539 is not set |
868 | # CONFIG_SENSORS_PCF8591 is not set | 893 | # CONFIG_SENSORS_PCF8591 is not set |
869 | # CONFIG_TPS65010 is not set | ||
870 | # CONFIG_SENSORS_MAX6875 is not set | 894 | # CONFIG_SENSORS_MAX6875 is not set |
871 | # CONFIG_SENSORS_TSL2550 is not set | 895 | # CONFIG_SENSORS_TSL2550 is not set |
872 | # CONFIG_I2C_DEBUG_CORE is not set | 896 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -881,6 +905,11 @@ CONFIG_GPIOLIB=y | |||
881 | # CONFIG_GPIO_SYSFS is not set | 905 | # CONFIG_GPIO_SYSFS is not set |
882 | 906 | ||
883 | # | 907 | # |
908 | # Memory mapped GPIO expanders: | ||
909 | # | ||
910 | # CONFIG_GPIO_XILINX is not set | ||
911 | |||
912 | # | ||
884 | # I2C GPIO expanders: | 913 | # I2C GPIO expanders: |
885 | # | 914 | # |
886 | # CONFIG_GPIO_MAX732X is not set | 915 | # CONFIG_GPIO_MAX732X is not set |
@@ -901,11 +930,11 @@ CONFIG_GPIOLIB=y | |||
901 | # CONFIG_THERMAL is not set | 930 | # CONFIG_THERMAL is not set |
902 | # CONFIG_THERMAL_HWMON is not set | 931 | # CONFIG_THERMAL_HWMON is not set |
903 | # CONFIG_WATCHDOG is not set | 932 | # CONFIG_WATCHDOG is not set |
933 | CONFIG_SSB_POSSIBLE=y | ||
904 | 934 | ||
905 | # | 935 | # |
906 | # Sonics Silicon Backplane | 936 | # Sonics Silicon Backplane |
907 | # | 937 | # |
908 | CONFIG_SSB_POSSIBLE=y | ||
909 | # CONFIG_SSB is not set | 938 | # CONFIG_SSB is not set |
910 | 939 | ||
911 | # | 940 | # |
@@ -915,18 +944,14 @@ CONFIG_SSB_POSSIBLE=y | |||
915 | # CONFIG_MFD_SM501 is not set | 944 | # CONFIG_MFD_SM501 is not set |
916 | # CONFIG_HTC_PASIC3 is not set | 945 | # CONFIG_HTC_PASIC3 is not set |
917 | # CONFIG_UCB1400_CORE is not set | 946 | # CONFIG_UCB1400_CORE is not set |
947 | # CONFIG_TPS65010 is not set | ||
948 | # CONFIG_TWL4030_CORE is not set | ||
918 | # CONFIG_MFD_TMIO is not set | 949 | # CONFIG_MFD_TMIO is not set |
919 | # CONFIG_PMIC_DA903X is not set | 950 | # CONFIG_PMIC_DA903X is not set |
920 | # CONFIG_MFD_WM8400 is not set | 951 | # CONFIG_MFD_WM8400 is not set |
921 | # CONFIG_MFD_WM8350_I2C is not set | 952 | # CONFIG_MFD_WM8350_I2C is not set |
922 | 953 | # CONFIG_MFD_PCF50633 is not set | |
923 | # | ||
924 | # Voltage and Current regulators | ||
925 | # | ||
926 | # CONFIG_REGULATOR is not set | 954 | # CONFIG_REGULATOR is not set |
927 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
928 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
929 | # CONFIG_REGULATOR_BQ24022 is not set | ||
930 | 955 | ||
931 | # | 956 | # |
932 | # Multimedia devices | 957 | # Multimedia devices |
@@ -953,6 +978,7 @@ CONFIG_MEDIA_TUNER_TEA5767=m | |||
953 | CONFIG_MEDIA_TUNER_MT20XX=m | 978 | CONFIG_MEDIA_TUNER_MT20XX=m |
954 | CONFIG_MEDIA_TUNER_XC2028=m | 979 | CONFIG_MEDIA_TUNER_XC2028=m |
955 | CONFIG_MEDIA_TUNER_XC5000=m | 980 | CONFIG_MEDIA_TUNER_XC5000=m |
981 | # CONFIG_DVB_DYNAMIC_MINORS is not set | ||
956 | CONFIG_DVB_CAPTURE_DRIVERS=y | 982 | CONFIG_DVB_CAPTURE_DRIVERS=y |
957 | 983 | ||
958 | # | 984 | # |
@@ -998,6 +1024,12 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
998 | # CONFIG_DVB_FE_CUSTOMISE is not set | 1024 | # CONFIG_DVB_FE_CUSTOMISE is not set |
999 | 1025 | ||
1000 | # | 1026 | # |
1027 | # Multistandard (satellite) frontends | ||
1028 | # | ||
1029 | # CONFIG_DVB_STB0899 is not set | ||
1030 | # CONFIG_DVB_STB6100 is not set | ||
1031 | |||
1032 | # | ||
1001 | # DVB-S (satellite) frontends | 1033 | # DVB-S (satellite) frontends |
1002 | # | 1034 | # |
1003 | # CONFIG_DVB_CX24110 is not set | 1035 | # CONFIG_DVB_CX24110 is not set |
@@ -1009,8 +1041,10 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
1009 | # CONFIG_DVB_STV0299 is not set | 1041 | # CONFIG_DVB_STV0299 is not set |
1010 | # CONFIG_DVB_TDA8083 is not set | 1042 | # CONFIG_DVB_TDA8083 is not set |
1011 | # CONFIG_DVB_TDA10086 is not set | 1043 | # CONFIG_DVB_TDA10086 is not set |
1044 | # CONFIG_DVB_TDA8261 is not set | ||
1012 | # CONFIG_DVB_VES1X93 is not set | 1045 | # CONFIG_DVB_VES1X93 is not set |
1013 | # CONFIG_DVB_TUNER_ITD1000 is not set | 1046 | # CONFIG_DVB_TUNER_ITD1000 is not set |
1047 | # CONFIG_DVB_TUNER_CX24113 is not set | ||
1014 | # CONFIG_DVB_TDA826X is not set | 1048 | # CONFIG_DVB_TDA826X is not set |
1015 | # CONFIG_DVB_TUA6100 is not set | 1049 | # CONFIG_DVB_TUA6100 is not set |
1016 | # CONFIG_DVB_CX24116 is not set | 1050 | # CONFIG_DVB_CX24116 is not set |
@@ -1051,11 +1085,17 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
1051 | # CONFIG_DVB_OR51132 is not set | 1085 | # CONFIG_DVB_OR51132 is not set |
1052 | # CONFIG_DVB_BCM3510 is not set | 1086 | # CONFIG_DVB_BCM3510 is not set |
1053 | # CONFIG_DVB_LGDT330X is not set | 1087 | # CONFIG_DVB_LGDT330X is not set |
1088 | # CONFIG_DVB_LGDT3304 is not set | ||
1054 | # CONFIG_DVB_S5H1409 is not set | 1089 | # CONFIG_DVB_S5H1409 is not set |
1055 | # CONFIG_DVB_AU8522 is not set | 1090 | # CONFIG_DVB_AU8522 is not set |
1056 | # CONFIG_DVB_S5H1411 is not set | 1091 | # CONFIG_DVB_S5H1411 is not set |
1057 | 1092 | ||
1058 | # | 1093 | # |
1094 | # ISDB-T (terrestrial) frontends | ||
1095 | # | ||
1096 | # CONFIG_DVB_S921 is not set | ||
1097 | |||
1098 | # | ||
1059 | # Digital terrestrial only tuners/PLL | 1099 | # Digital terrestrial only tuners/PLL |
1060 | # | 1100 | # |
1061 | # CONFIG_DVB_PLL is not set | 1101 | # CONFIG_DVB_PLL is not set |
@@ -1108,6 +1148,7 @@ CONFIG_SND_OSSEMUL=y | |||
1108 | CONFIG_SND_MIXER_OSS=y | 1148 | CONFIG_SND_MIXER_OSS=y |
1109 | CONFIG_SND_PCM_OSS=y | 1149 | CONFIG_SND_PCM_OSS=y |
1110 | CONFIG_SND_PCM_OSS_PLUGINS=y | 1150 | CONFIG_SND_PCM_OSS_PLUGINS=y |
1151 | # CONFIG_SND_HRTIMER is not set | ||
1111 | # CONFIG_SND_DYNAMIC_MINORS is not set | 1152 | # CONFIG_SND_DYNAMIC_MINORS is not set |
1112 | # CONFIG_SND_SUPPORT_OLD_API is not set | 1153 | # CONFIG_SND_SUPPORT_OLD_API is not set |
1113 | CONFIG_SND_VERBOSE_PROCFS=y | 1154 | CONFIG_SND_VERBOSE_PROCFS=y |
@@ -1210,11 +1251,9 @@ CONFIG_HID_COMPAT=y | |||
1210 | CONFIG_HID_A4TECH=y | 1251 | CONFIG_HID_A4TECH=y |
1211 | CONFIG_HID_APPLE=y | 1252 | CONFIG_HID_APPLE=y |
1212 | CONFIG_HID_BELKIN=y | 1253 | CONFIG_HID_BELKIN=y |
1213 | CONFIG_HID_BRIGHT=y | ||
1214 | CONFIG_HID_CHERRY=y | 1254 | CONFIG_HID_CHERRY=y |
1215 | CONFIG_HID_CHICONY=y | 1255 | CONFIG_HID_CHICONY=y |
1216 | CONFIG_HID_CYPRESS=y | 1256 | CONFIG_HID_CYPRESS=y |
1217 | CONFIG_HID_DELL=y | ||
1218 | CONFIG_HID_EZKEY=y | 1257 | CONFIG_HID_EZKEY=y |
1219 | CONFIG_HID_GYRATION=y | 1258 | CONFIG_HID_GYRATION=y |
1220 | CONFIG_HID_LOGITECH=y | 1259 | CONFIG_HID_LOGITECH=y |
@@ -1222,12 +1261,15 @@ CONFIG_HID_LOGITECH=y | |||
1222 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1261 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
1223 | CONFIG_HID_MICROSOFT=y | 1262 | CONFIG_HID_MICROSOFT=y |
1224 | CONFIG_HID_MONTEREY=y | 1263 | CONFIG_HID_MONTEREY=y |
1264 | # CONFIG_HID_NTRIG is not set | ||
1225 | CONFIG_HID_PANTHERLORD=y | 1265 | CONFIG_HID_PANTHERLORD=y |
1226 | # CONFIG_PANTHERLORD_FF is not set | 1266 | # CONFIG_PANTHERLORD_FF is not set |
1227 | CONFIG_HID_PETALYNX=y | 1267 | CONFIG_HID_PETALYNX=y |
1228 | CONFIG_HID_SAMSUNG=y | 1268 | CONFIG_HID_SAMSUNG=y |
1229 | CONFIG_HID_SONY=y | 1269 | CONFIG_HID_SONY=y |
1230 | CONFIG_HID_SUNPLUS=y | 1270 | CONFIG_HID_SUNPLUS=y |
1271 | # CONFIG_GREENASIA_FF is not set | ||
1272 | # CONFIG_HID_TOPSEED is not set | ||
1231 | CONFIG_THRUSTMASTER_FF=m | 1273 | CONFIG_THRUSTMASTER_FF=m |
1232 | CONFIG_ZEROPLUS_FF=m | 1274 | CONFIG_ZEROPLUS_FF=m |
1233 | CONFIG_USB_SUPPORT=y | 1275 | CONFIG_USB_SUPPORT=y |
@@ -1260,6 +1302,7 @@ CONFIG_USB_EHCI_ROOT_HUB_TT=y | |||
1260 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1302 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1261 | CONFIG_USB_EHCI_FSL=y | 1303 | CONFIG_USB_EHCI_FSL=y |
1262 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1304 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1305 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1263 | # CONFIG_USB_ISP116X_HCD is not set | 1306 | # CONFIG_USB_ISP116X_HCD is not set |
1264 | # CONFIG_USB_ISP1760_HCD is not set | 1307 | # CONFIG_USB_ISP1760_HCD is not set |
1265 | CONFIG_USB_OHCI_HCD=y | 1308 | CONFIG_USB_OHCI_HCD=y |
@@ -1286,18 +1329,17 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
1286 | # CONFIG_USB_TMC is not set | 1329 | # CONFIG_USB_TMC is not set |
1287 | 1330 | ||
1288 | # | 1331 | # |
1289 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1332 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1290 | # | 1333 | # |
1291 | 1334 | ||
1292 | # | 1335 | # |
1293 | # may also be needed; see USB_STORAGE Help for more information | 1336 | # see USB_STORAGE Help for more information |
1294 | # | 1337 | # |
1295 | CONFIG_USB_STORAGE=y | 1338 | CONFIG_USB_STORAGE=y |
1296 | # CONFIG_USB_STORAGE_DEBUG is not set | 1339 | # CONFIG_USB_STORAGE_DEBUG is not set |
1297 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1340 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1298 | # CONFIG_USB_STORAGE_FREECOM is not set | 1341 | # CONFIG_USB_STORAGE_FREECOM is not set |
1299 | # CONFIG_USB_STORAGE_ISD200 is not set | 1342 | # CONFIG_USB_STORAGE_ISD200 is not set |
1300 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1301 | # CONFIG_USB_STORAGE_USBAT is not set | 1343 | # CONFIG_USB_STORAGE_USBAT is not set |
1302 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1344 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1303 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1345 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1345,6 +1387,11 @@ CONFIG_USB_STORAGE=y | |||
1345 | # CONFIG_USB_ISIGHTFW is not set | 1387 | # CONFIG_USB_ISIGHTFW is not set |
1346 | # CONFIG_USB_VST is not set | 1388 | # CONFIG_USB_VST is not set |
1347 | # CONFIG_USB_GADGET is not set | 1389 | # CONFIG_USB_GADGET is not set |
1390 | |||
1391 | # | ||
1392 | # OTG and related infrastructure | ||
1393 | # | ||
1394 | # CONFIG_USB_GPIO_VBUS is not set | ||
1348 | # CONFIG_UWB is not set | 1395 | # CONFIG_UWB is not set |
1349 | # CONFIG_MMC is not set | 1396 | # CONFIG_MMC is not set |
1350 | # CONFIG_MEMSTICK is not set | 1397 | # CONFIG_MEMSTICK is not set |
@@ -1389,6 +1436,7 @@ CONFIG_RTC_INTF_DEV=y | |||
1389 | # CONFIG_RTC_DRV_M41T80 is not set | 1436 | # CONFIG_RTC_DRV_M41T80 is not set |
1390 | # CONFIG_RTC_DRV_S35390A is not set | 1437 | # CONFIG_RTC_DRV_S35390A is not set |
1391 | # CONFIG_RTC_DRV_FM3130 is not set | 1438 | # CONFIG_RTC_DRV_FM3130 is not set |
1439 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1392 | 1440 | ||
1393 | # | 1441 | # |
1394 | # SPI RTC drivers | 1442 | # SPI RTC drivers |
@@ -1448,7 +1496,9 @@ CONFIG_FS_MBCACHE=y | |||
1448 | # CONFIG_FS_POSIX_ACL is not set | 1496 | # CONFIG_FS_POSIX_ACL is not set |
1449 | CONFIG_FILE_LOCKING=y | 1497 | CONFIG_FILE_LOCKING=y |
1450 | # CONFIG_XFS_FS is not set | 1498 | # CONFIG_XFS_FS is not set |
1499 | # CONFIG_GFS2_FS is not set | ||
1451 | # CONFIG_OCFS2_FS is not set | 1500 | # CONFIG_OCFS2_FS is not set |
1501 | # CONFIG_BTRFS_FS is not set | ||
1452 | CONFIG_DNOTIFY=y | 1502 | CONFIG_DNOTIFY=y |
1453 | CONFIG_INOTIFY=y | 1503 | CONFIG_INOTIFY=y |
1454 | CONFIG_INOTIFY_USER=y | 1504 | CONFIG_INOTIFY_USER=y |
@@ -1490,10 +1540,7 @@ CONFIG_TMPFS=y | |||
1490 | # CONFIG_TMPFS_POSIX_ACL is not set | 1540 | # CONFIG_TMPFS_POSIX_ACL is not set |
1491 | # CONFIG_HUGETLB_PAGE is not set | 1541 | # CONFIG_HUGETLB_PAGE is not set |
1492 | # CONFIG_CONFIGFS_FS is not set | 1542 | # CONFIG_CONFIGFS_FS is not set |
1493 | 1543 | CONFIG_MISC_FILESYSTEMS=y | |
1494 | # | ||
1495 | # Miscellaneous filesystems | ||
1496 | # | ||
1497 | CONFIG_ADFS_FS=m | 1544 | CONFIG_ADFS_FS=m |
1498 | # CONFIG_ADFS_FS_RW is not set | 1545 | # CONFIG_ADFS_FS_RW is not set |
1499 | CONFIG_AFFS_FS=m | 1546 | CONFIG_AFFS_FS=m |
@@ -1504,6 +1551,7 @@ CONFIG_BEFS_FS=m | |||
1504 | CONFIG_BFS_FS=m | 1551 | CONFIG_BFS_FS=m |
1505 | CONFIG_EFS_FS=m | 1552 | CONFIG_EFS_FS=m |
1506 | CONFIG_CRAMFS=y | 1553 | CONFIG_CRAMFS=y |
1554 | # CONFIG_SQUASHFS is not set | ||
1507 | CONFIG_VXFS_FS=m | 1555 | CONFIG_VXFS_FS=m |
1508 | # CONFIG_MINIX_FS is not set | 1556 | # CONFIG_MINIX_FS is not set |
1509 | # CONFIG_OMFS_FS is not set | 1557 | # CONFIG_OMFS_FS is not set |
@@ -1605,6 +1653,7 @@ CONFIG_NLS_UTF8=m | |||
1605 | # Library routines | 1653 | # Library routines |
1606 | # | 1654 | # |
1607 | CONFIG_BITREVERSE=y | 1655 | CONFIG_BITREVERSE=y |
1656 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1608 | # CONFIG_CRC_CCITT is not set | 1657 | # CONFIG_CRC_CCITT is not set |
1609 | # CONFIG_CRC16 is not set | 1658 | # CONFIG_CRC16 is not set |
1610 | CONFIG_CRC_T10DIF=y | 1659 | CONFIG_CRC_T10DIF=y |
@@ -1656,6 +1705,7 @@ CONFIG_DEBUG_INFO=y | |||
1656 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1705 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1657 | # CONFIG_DEBUG_LIST is not set | 1706 | # CONFIG_DEBUG_LIST is not set |
1658 | # CONFIG_DEBUG_SG is not set | 1707 | # CONFIG_DEBUG_SG is not set |
1708 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1659 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1709 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1660 | # CONFIG_RCU_TORTURE_TEST is not set | 1710 | # CONFIG_RCU_TORTURE_TEST is not set |
1661 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1711 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1665,6 +1715,8 @@ CONFIG_DEBUG_INFO=y | |||
1665 | # CONFIG_LATENCYTOP is not set | 1715 | # CONFIG_LATENCYTOP is not set |
1666 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1716 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1667 | CONFIG_HAVE_FUNCTION_TRACER=y | 1717 | CONFIG_HAVE_FUNCTION_TRACER=y |
1718 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1719 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1668 | 1720 | ||
1669 | # | 1721 | # |
1670 | # Tracers | 1722 | # Tracers |
@@ -1673,11 +1725,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1673 | # CONFIG_SCHED_TRACER is not set | 1725 | # CONFIG_SCHED_TRACER is not set |
1674 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1726 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1675 | # CONFIG_BOOT_TRACER is not set | 1727 | # CONFIG_BOOT_TRACER is not set |
1728 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1676 | # CONFIG_STACK_TRACER is not set | 1729 | # CONFIG_STACK_TRACER is not set |
1677 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1730 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1678 | # CONFIG_SAMPLES is not set | 1731 | # CONFIG_SAMPLES is not set |
1679 | CONFIG_HAVE_ARCH_KGDB=y | 1732 | CONFIG_HAVE_ARCH_KGDB=y |
1680 | # CONFIG_KGDB is not set | 1733 | # CONFIG_KGDB is not set |
1734 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1681 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1735 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1682 | # CONFIG_DEBUG_STACK_USAGE is not set | 1736 | # CONFIG_DEBUG_STACK_USAGE is not set |
1683 | # CONFIG_DEBUG_PAGEALLOC is not set | 1737 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1704,11 +1758,15 @@ CONFIG_CRYPTO=y | |||
1704 | # | 1758 | # |
1705 | # CONFIG_CRYPTO_FIPS is not set | 1759 | # CONFIG_CRYPTO_FIPS is not set |
1706 | CONFIG_CRYPTO_ALGAPI=y | 1760 | CONFIG_CRYPTO_ALGAPI=y |
1707 | CONFIG_CRYPTO_AEAD=y | 1761 | CONFIG_CRYPTO_ALGAPI2=y |
1762 | CONFIG_CRYPTO_AEAD2=y | ||
1708 | CONFIG_CRYPTO_BLKCIPHER=y | 1763 | CONFIG_CRYPTO_BLKCIPHER=y |
1764 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1709 | CONFIG_CRYPTO_HASH=y | 1765 | CONFIG_CRYPTO_HASH=y |
1710 | CONFIG_CRYPTO_RNG=y | 1766 | CONFIG_CRYPTO_HASH2=y |
1767 | CONFIG_CRYPTO_RNG2=y | ||
1711 | CONFIG_CRYPTO_MANAGER=y | 1768 | CONFIG_CRYPTO_MANAGER=y |
1769 | CONFIG_CRYPTO_MANAGER2=y | ||
1712 | # CONFIG_CRYPTO_GF128MUL is not set | 1770 | # CONFIG_CRYPTO_GF128MUL is not set |
1713 | # CONFIG_CRYPTO_NULL is not set | 1771 | # CONFIG_CRYPTO_NULL is not set |
1714 | # CONFIG_CRYPTO_CRYPTD is not set | 1772 | # CONFIG_CRYPTO_CRYPTD is not set |
@@ -1742,7 +1800,7 @@ CONFIG_CRYPTO_HMAC=y | |||
1742 | # | 1800 | # |
1743 | # Digest | 1801 | # Digest |
1744 | # | 1802 | # |
1745 | # CONFIG_CRYPTO_CRC32C is not set | 1803 | CONFIG_CRYPTO_CRC32C=m |
1746 | # CONFIG_CRYPTO_MD4 is not set | 1804 | # CONFIG_CRYPTO_MD4 is not set |
1747 | CONFIG_CRYPTO_MD5=y | 1805 | CONFIG_CRYPTO_MD5=y |
1748 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1806 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
diff --git a/arch/powerpc/configs/mpc866_ads_defconfig b/arch/powerpc/configs/mpc866_ads_defconfig index 8272b1ac71f9..1793d08e9c01 100644 --- a/arch/powerpc/configs/mpc866_ads_defconfig +++ b/arch/powerpc/configs/mpc866_ads_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:43 2008 | 4 | # Mon Jan 26 15:35:38 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_PPC_8xx=y | |||
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_8xx=y | 17 | CONFIG_8xx=y |
18 | CONFIG_PPC_MMU_NOHASH=y | ||
18 | # CONFIG_PPC_MM_SLICES is not set | 19 | # CONFIG_PPC_MM_SLICES is not set |
19 | CONFIG_NOT_COHERENT_CACHE=y | 20 | CONFIG_NOT_COHERENT_CACHE=y |
20 | CONFIG_PPC32=y | 21 | CONFIG_PPC32=y |
@@ -40,7 +41,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
40 | CONFIG_PPC=y | 41 | CONFIG_PPC=y |
41 | CONFIG_EARLY_PRINTK=y | 42 | CONFIG_EARLY_PRINTK=y |
42 | CONFIG_GENERIC_NVRAM=y | 43 | CONFIG_GENERIC_NVRAM=y |
43 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 44 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
44 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
45 | CONFIG_PPC_OF=y | 46 | CONFIG_PPC_OF=y |
46 | CONFIG_OF=y | 47 | CONFIG_OF=y |
@@ -69,12 +70,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
69 | # CONFIG_AUDIT is not set | 70 | # CONFIG_AUDIT is not set |
70 | # CONFIG_IKCONFIG is not set | 71 | # CONFIG_IKCONFIG is not set |
71 | CONFIG_LOG_BUF_SHIFT=14 | 72 | CONFIG_LOG_BUF_SHIFT=14 |
72 | # CONFIG_CGROUPS is not set | ||
73 | CONFIG_GROUP_SCHED=y | 73 | CONFIG_GROUP_SCHED=y |
74 | # CONFIG_FAIR_GROUP_SCHED is not set | 74 | # CONFIG_FAIR_GROUP_SCHED is not set |
75 | # CONFIG_RT_GROUP_SCHED is not set | 75 | # CONFIG_RT_GROUP_SCHED is not set |
76 | CONFIG_USER_SCHED=y | 76 | CONFIG_USER_SCHED=y |
77 | # CONFIG_CGROUP_SCHED is not set | 77 | # CONFIG_CGROUP_SCHED is not set |
78 | # CONFIG_CGROUPS is not set | ||
78 | CONFIG_SYSFS_DEPRECATED=y | 79 | CONFIG_SYSFS_DEPRECATED=y |
79 | CONFIG_SYSFS_DEPRECATED_V2=y | 80 | CONFIG_SYSFS_DEPRECATED_V2=y |
80 | # CONFIG_RELAY is not set | 81 | # CONFIG_RELAY is not set |
@@ -106,7 +107,6 @@ CONFIG_SLUB_DEBUG=y | |||
106 | CONFIG_SLUB=y | 107 | CONFIG_SLUB=y |
107 | # CONFIG_SLOB is not set | 108 | # CONFIG_SLOB is not set |
108 | # CONFIG_PROFILING is not set | 109 | # CONFIG_PROFILING is not set |
109 | # CONFIG_MARKERS is not set | ||
110 | CONFIG_HAVE_OPROFILE=y | 110 | CONFIG_HAVE_OPROFILE=y |
111 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 111 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
112 | CONFIG_HAVE_IOREMAP_PROT=y | 112 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -117,13 +117,11 @@ CONFIG_HAVE_CLK=y | |||
117 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 117 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
118 | CONFIG_SLABINFO=y | 118 | CONFIG_SLABINFO=y |
119 | CONFIG_RT_MUTEXES=y | 119 | CONFIG_RT_MUTEXES=y |
120 | # CONFIG_TINY_SHMEM is not set | ||
121 | CONFIG_BASE_SMALL=1 | 120 | CONFIG_BASE_SMALL=1 |
122 | # CONFIG_MODULES is not set | 121 | # CONFIG_MODULES is not set |
123 | CONFIG_BLOCK=y | 122 | CONFIG_BLOCK=y |
124 | # CONFIG_LBD is not set | 123 | # CONFIG_LBD is not set |
125 | # CONFIG_BLK_DEV_IO_TRACE is not set | 124 | # CONFIG_BLK_DEV_IO_TRACE is not set |
126 | # CONFIG_LSF is not set | ||
127 | # CONFIG_BLK_DEV_BSG is not set | 125 | # CONFIG_BLK_DEV_BSG is not set |
128 | # CONFIG_BLK_DEV_INTEGRITY is not set | 126 | # CONFIG_BLK_DEV_INTEGRITY is not set |
129 | 127 | ||
@@ -140,6 +138,10 @@ CONFIG_DEFAULT_AS=y | |||
140 | # CONFIG_DEFAULT_NOOP is not set | 138 | # CONFIG_DEFAULT_NOOP is not set |
141 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 139 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
142 | CONFIG_CLASSIC_RCU=y | 140 | CONFIG_CLASSIC_RCU=y |
141 | # CONFIG_TREE_RCU is not set | ||
142 | # CONFIG_PREEMPT_RCU is not set | ||
143 | # CONFIG_TREE_RCU_TRACE is not set | ||
144 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
143 | # CONFIG_FREEZER is not set | 145 | # CONFIG_FREEZER is not set |
144 | 146 | ||
145 | # | 147 | # |
@@ -185,6 +187,7 @@ CONFIG_NO_UCODE_PATCH=y | |||
185 | # CONFIG_QUICC_ENGINE is not set | 187 | # CONFIG_QUICC_ENGINE is not set |
186 | # CONFIG_FSL_ULI1575 is not set | 188 | # CONFIG_FSL_ULI1575 is not set |
187 | CONFIG_CPM=y | 189 | CONFIG_CPM=y |
190 | # CONFIG_SIMPLE_GPIO is not set | ||
188 | 191 | ||
189 | # | 192 | # |
190 | # Kernel options | 193 | # Kernel options |
@@ -209,6 +212,7 @@ CONFIG_BINFMT_ELF=y | |||
209 | # CONFIG_BINFMT_MISC is not set | 212 | # CONFIG_BINFMT_MISC is not set |
210 | CONFIG_MATH_EMULATION=y | 213 | CONFIG_MATH_EMULATION=y |
211 | # CONFIG_IOMMU_HELPER is not set | 214 | # CONFIG_IOMMU_HELPER is not set |
215 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
212 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 216 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
213 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 217 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
214 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 218 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -223,12 +227,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
223 | CONFIG_PAGEFLAGS_EXTENDED=y | 227 | CONFIG_PAGEFLAGS_EXTENDED=y |
224 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 228 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
225 | CONFIG_MIGRATION=y | 229 | CONFIG_MIGRATION=y |
226 | # CONFIG_RESOURCES_64BIT is not set | ||
227 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 230 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
228 | CONFIG_ZONE_DMA_FLAG=1 | 231 | CONFIG_ZONE_DMA_FLAG=1 |
229 | CONFIG_BOUNCE=y | 232 | CONFIG_BOUNCE=y |
230 | CONFIG_VIRT_TO_BUS=y | 233 | CONFIG_VIRT_TO_BUS=y |
231 | CONFIG_UNEVICTABLE_LRU=y | 234 | CONFIG_UNEVICTABLE_LRU=y |
235 | CONFIG_PPC_4K_PAGES=y | ||
236 | # CONFIG_PPC_16K_PAGES is not set | ||
237 | # CONFIG_PPC_64K_PAGES is not set | ||
232 | CONFIG_FORCE_MAX_ZONEORDER=11 | 238 | CONFIG_FORCE_MAX_ZONEORDER=11 |
233 | # CONFIG_PROC_DEVICETREE is not set | 239 | # CONFIG_PROC_DEVICETREE is not set |
234 | # CONFIG_CMDLINE_BOOL is not set | 240 | # CONFIG_CMDLINE_BOOL is not set |
@@ -269,6 +275,7 @@ CONFIG_NET=y | |||
269 | # | 275 | # |
270 | # Networking options | 276 | # Networking options |
271 | # | 277 | # |
278 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
272 | CONFIG_PACKET=y | 279 | CONFIG_PACKET=y |
273 | # CONFIG_PACKET_MMAP is not set | 280 | # CONFIG_PACKET_MMAP is not set |
274 | CONFIG_UNIX=y | 281 | CONFIG_UNIX=y |
@@ -325,6 +332,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
325 | # CONFIG_ECONET is not set | 332 | # CONFIG_ECONET is not set |
326 | # CONFIG_WAN_ROUTER is not set | 333 | # CONFIG_WAN_ROUTER is not set |
327 | # CONFIG_NET_SCHED is not set | 334 | # CONFIG_NET_SCHED is not set |
335 | # CONFIG_DCB is not set | ||
328 | 336 | ||
329 | # | 337 | # |
330 | # Network testing | 338 | # Network testing |
@@ -340,8 +348,9 @@ CONFIG_WIRELESS=y | |||
340 | # CONFIG_CFG80211 is not set | 348 | # CONFIG_CFG80211 is not set |
341 | CONFIG_WIRELESS_OLD_REGULATORY=y | 349 | CONFIG_WIRELESS_OLD_REGULATORY=y |
342 | # CONFIG_WIRELESS_EXT is not set | 350 | # CONFIG_WIRELESS_EXT is not set |
351 | # CONFIG_LIB80211 is not set | ||
343 | # CONFIG_MAC80211 is not set | 352 | # CONFIG_MAC80211 is not set |
344 | # CONFIG_IEEE80211 is not set | 353 | # CONFIG_WIMAX is not set |
345 | # CONFIG_RFKILL is not set | 354 | # CONFIG_RFKILL is not set |
346 | # CONFIG_NET_9P is not set | 355 | # CONFIG_NET_9P is not set |
347 | 356 | ||
@@ -372,6 +381,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
372 | CONFIG_MISC_DEVICES=y | 381 | CONFIG_MISC_DEVICES=y |
373 | # CONFIG_EEPROM_93CX6 is not set | 382 | # CONFIG_EEPROM_93CX6 is not set |
374 | # CONFIG_ENCLOSURE_SERVICES is not set | 383 | # CONFIG_ENCLOSURE_SERVICES is not set |
384 | # CONFIG_C2PORT is not set | ||
375 | CONFIG_HAVE_IDE=y | 385 | CONFIG_HAVE_IDE=y |
376 | # CONFIG_IDE is not set | 386 | # CONFIG_IDE is not set |
377 | 387 | ||
@@ -407,6 +417,9 @@ CONFIG_PHYLIB=y | |||
407 | # CONFIG_BROADCOM_PHY is not set | 417 | # CONFIG_BROADCOM_PHY is not set |
408 | # CONFIG_ICPLUS_PHY is not set | 418 | # CONFIG_ICPLUS_PHY is not set |
409 | # CONFIG_REALTEK_PHY is not set | 419 | # CONFIG_REALTEK_PHY is not set |
420 | # CONFIG_NATIONAL_PHY is not set | ||
421 | # CONFIG_STE10XP is not set | ||
422 | # CONFIG_LSI_ET1011C_PHY is not set | ||
410 | CONFIG_FIXED_PHY=y | 423 | CONFIG_FIXED_PHY=y |
411 | # CONFIG_MDIO_BITBANG is not set | 424 | # CONFIG_MDIO_BITBANG is not set |
412 | CONFIG_NET_ETHERNET=y | 425 | CONFIG_NET_ETHERNET=y |
@@ -433,6 +446,10 @@ CONFIG_NETDEV_10000=y | |||
433 | # CONFIG_WLAN_PRE80211 is not set | 446 | # CONFIG_WLAN_PRE80211 is not set |
434 | # CONFIG_WLAN_80211 is not set | 447 | # CONFIG_WLAN_80211 is not set |
435 | # CONFIG_IWLWIFI_LEDS is not set | 448 | # CONFIG_IWLWIFI_LEDS is not set |
449 | |||
450 | # | ||
451 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
452 | # | ||
436 | # CONFIG_WAN is not set | 453 | # CONFIG_WAN is not set |
437 | # CONFIG_PPP is not set | 454 | # CONFIG_PPP is not set |
438 | # CONFIG_SLIP is not set | 455 | # CONFIG_SLIP is not set |
@@ -518,7 +535,9 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
518 | CONFIG_SERIAL_CPM=y | 535 | CONFIG_SERIAL_CPM=y |
519 | CONFIG_SERIAL_CPM_CONSOLE=y | 536 | CONFIG_SERIAL_CPM_CONSOLE=y |
520 | CONFIG_UNIX98_PTYS=y | 537 | CONFIG_UNIX98_PTYS=y |
538 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
521 | # CONFIG_LEGACY_PTYS is not set | 539 | # CONFIG_LEGACY_PTYS is not set |
540 | # CONFIG_HVC_UDBG is not set | ||
522 | # CONFIG_IPMI_HANDLER is not set | 541 | # CONFIG_IPMI_HANDLER is not set |
523 | CONFIG_HW_RANDOM=y | 542 | CONFIG_HW_RANDOM=y |
524 | # CONFIG_NVRAM is not set | 543 | # CONFIG_NVRAM is not set |
@@ -549,11 +568,11 @@ CONFIG_HWMON=y | |||
549 | # CONFIG_THERMAL is not set | 568 | # CONFIG_THERMAL is not set |
550 | # CONFIG_THERMAL_HWMON is not set | 569 | # CONFIG_THERMAL_HWMON is not set |
551 | # CONFIG_WATCHDOG is not set | 570 | # CONFIG_WATCHDOG is not set |
571 | CONFIG_SSB_POSSIBLE=y | ||
552 | 572 | ||
553 | # | 573 | # |
554 | # Sonics Silicon Backplane | 574 | # Sonics Silicon Backplane |
555 | # | 575 | # |
556 | CONFIG_SSB_POSSIBLE=y | ||
557 | # CONFIG_SSB is not set | 576 | # CONFIG_SSB is not set |
558 | 577 | ||
559 | # | 578 | # |
@@ -563,14 +582,7 @@ CONFIG_SSB_POSSIBLE=y | |||
563 | # CONFIG_MFD_SM501 is not set | 582 | # CONFIG_MFD_SM501 is not set |
564 | # CONFIG_HTC_PASIC3 is not set | 583 | # CONFIG_HTC_PASIC3 is not set |
565 | # CONFIG_MFD_TMIO is not set | 584 | # CONFIG_MFD_TMIO is not set |
566 | |||
567 | # | ||
568 | # Voltage and Current regulators | ||
569 | # | ||
570 | # CONFIG_REGULATOR is not set | 585 | # CONFIG_REGULATOR is not set |
571 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
572 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
573 | # CONFIG_REGULATOR_BQ24022 is not set | ||
574 | 586 | ||
575 | # | 587 | # |
576 | # Multimedia devices | 588 | # Multimedia devices |
@@ -623,9 +635,13 @@ CONFIG_USB_SUPPORT=y | |||
623 | # | 635 | # |
624 | 636 | ||
625 | # | 637 | # |
626 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 638 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
627 | # | 639 | # |
628 | # CONFIG_USB_GADGET is not set | 640 | # CONFIG_USB_GADGET is not set |
641 | |||
642 | # | ||
643 | # OTG and related infrastructure | ||
644 | # | ||
629 | # CONFIG_MMC is not set | 645 | # CONFIG_MMC is not set |
630 | # CONFIG_MEMSTICK is not set | 646 | # CONFIG_MEMSTICK is not set |
631 | # CONFIG_NEW_LEDS is not set | 647 | # CONFIG_NEW_LEDS is not set |
@@ -657,6 +673,7 @@ CONFIG_FS_MBCACHE=y | |||
657 | CONFIG_FILE_LOCKING=y | 673 | CONFIG_FILE_LOCKING=y |
658 | # CONFIG_XFS_FS is not set | 674 | # CONFIG_XFS_FS is not set |
659 | # CONFIG_OCFS2_FS is not set | 675 | # CONFIG_OCFS2_FS is not set |
676 | # CONFIG_BTRFS_FS is not set | ||
660 | CONFIG_DNOTIFY=y | 677 | CONFIG_DNOTIFY=y |
661 | CONFIG_INOTIFY=y | 678 | CONFIG_INOTIFY=y |
662 | CONFIG_INOTIFY_USER=y | 679 | CONFIG_INOTIFY_USER=y |
@@ -690,10 +707,7 @@ CONFIG_TMPFS=y | |||
690 | # CONFIG_TMPFS_POSIX_ACL is not set | 707 | # CONFIG_TMPFS_POSIX_ACL is not set |
691 | # CONFIG_HUGETLB_PAGE is not set | 708 | # CONFIG_HUGETLB_PAGE is not set |
692 | # CONFIG_CONFIGFS_FS is not set | 709 | # CONFIG_CONFIGFS_FS is not set |
693 | 710 | CONFIG_MISC_FILESYSTEMS=y | |
694 | # | ||
695 | # Miscellaneous filesystems | ||
696 | # | ||
697 | # CONFIG_ADFS_FS is not set | 711 | # CONFIG_ADFS_FS is not set |
698 | # CONFIG_AFFS_FS is not set | 712 | # CONFIG_AFFS_FS is not set |
699 | # CONFIG_HFS_FS is not set | 713 | # CONFIG_HFS_FS is not set |
@@ -702,6 +716,7 @@ CONFIG_TMPFS=y | |||
702 | # CONFIG_BFS_FS is not set | 716 | # CONFIG_BFS_FS is not set |
703 | # CONFIG_EFS_FS is not set | 717 | # CONFIG_EFS_FS is not set |
704 | CONFIG_CRAMFS=y | 718 | CONFIG_CRAMFS=y |
719 | # CONFIG_SQUASHFS is not set | ||
705 | # CONFIG_VXFS_FS is not set | 720 | # CONFIG_VXFS_FS is not set |
706 | # CONFIG_MINIX_FS is not set | 721 | # CONFIG_MINIX_FS is not set |
707 | # CONFIG_OMFS_FS is not set | 722 | # CONFIG_OMFS_FS is not set |
@@ -758,6 +773,7 @@ CONFIG_MSDOS_PARTITION=y | |||
758 | # Library routines | 773 | # Library routines |
759 | # | 774 | # |
760 | CONFIG_BITREVERSE=y | 775 | CONFIG_BITREVERSE=y |
776 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
761 | CONFIG_CRC_CCITT=y | 777 | CONFIG_CRC_CCITT=y |
762 | # CONFIG_CRC16 is not set | 778 | # CONFIG_CRC16 is not set |
763 | # CONFIG_CRC_T10DIF is not set | 779 | # CONFIG_CRC_T10DIF is not set |
@@ -790,6 +806,8 @@ CONFIG_FRAME_WARN=1024 | |||
790 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 806 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
791 | # CONFIG_LATENCYTOP is not set | 807 | # CONFIG_LATENCYTOP is not set |
792 | CONFIG_HAVE_FUNCTION_TRACER=y | 808 | CONFIG_HAVE_FUNCTION_TRACER=y |
809 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
810 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
793 | 811 | ||
794 | # | 812 | # |
795 | # Tracers | 813 | # Tracers |
@@ -797,6 +815,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
797 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 815 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
798 | # CONFIG_SAMPLES is not set | 816 | # CONFIG_SAMPLES is not set |
799 | CONFIG_HAVE_ARCH_KGDB=y | 817 | CONFIG_HAVE_ARCH_KGDB=y |
818 | CONFIG_PRINT_STACK_DEPTH=64 | ||
800 | # CONFIG_IRQSTACKS is not set | 819 | # CONFIG_IRQSTACKS is not set |
801 | # CONFIG_PPC_EARLY_DEBUG is not set | 820 | # CONFIG_PPC_EARLY_DEBUG is not set |
802 | 821 | ||
@@ -814,6 +833,7 @@ CONFIG_CRYPTO=y | |||
814 | # | 833 | # |
815 | # CONFIG_CRYPTO_FIPS is not set | 834 | # CONFIG_CRYPTO_FIPS is not set |
816 | # CONFIG_CRYPTO_MANAGER is not set | 835 | # CONFIG_CRYPTO_MANAGER is not set |
836 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
817 | # CONFIG_CRYPTO_GF128MUL is not set | 837 | # CONFIG_CRYPTO_GF128MUL is not set |
818 | # CONFIG_CRYPTO_NULL is not set | 838 | # CONFIG_CRYPTO_NULL is not set |
819 | # CONFIG_CRYPTO_CRYPTD is not set | 839 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/mpc86xx_defconfig b/arch/powerpc/configs/mpc86xx_defconfig index 21e0ccbd3f5c..adc756e1f252 100644 --- a/arch/powerpc/configs/mpc86xx_defconfig +++ b/arch/powerpc/configs/mpc86xx_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:44 2008 | 4 | # Mon Jan 26 15:35:39 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -41,11 +41,12 @@ CONFIG_ARCH_HAS_ILOG2_U32=y | |||
41 | CONFIG_GENERIC_HWEIGHT=y | 41 | CONFIG_GENERIC_HWEIGHT=y |
42 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 42 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
43 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 43 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
44 | CONFIG_GENERIC_GPIO=y | ||
44 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set | 45 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set |
45 | CONFIG_PPC=y | 46 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 47 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 48 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 49 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 50 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 51 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 52 | CONFIG_OF=y |
@@ -78,12 +79,12 @@ CONFIG_AUDIT=y | |||
78 | CONFIG_IKCONFIG=y | 79 | CONFIG_IKCONFIG=y |
79 | CONFIG_IKCONFIG_PROC=y | 80 | CONFIG_IKCONFIG_PROC=y |
80 | CONFIG_LOG_BUF_SHIFT=14 | 81 | CONFIG_LOG_BUF_SHIFT=14 |
81 | # CONFIG_CGROUPS is not set | ||
82 | CONFIG_GROUP_SCHED=y | 82 | CONFIG_GROUP_SCHED=y |
83 | # CONFIG_FAIR_GROUP_SCHED is not set | 83 | # CONFIG_FAIR_GROUP_SCHED is not set |
84 | # CONFIG_RT_GROUP_SCHED is not set | 84 | # CONFIG_RT_GROUP_SCHED is not set |
85 | CONFIG_USER_SCHED=y | 85 | CONFIG_USER_SCHED=y |
86 | # CONFIG_CGROUP_SCHED is not set | 86 | # CONFIG_CGROUP_SCHED is not set |
87 | # CONFIG_CGROUPS is not set | ||
87 | CONFIG_SYSFS_DEPRECATED=y | 88 | CONFIG_SYSFS_DEPRECATED=y |
88 | CONFIG_SYSFS_DEPRECATED_V2=y | 89 | CONFIG_SYSFS_DEPRECATED_V2=y |
89 | # CONFIG_RELAY is not set | 90 | # CONFIG_RELAY is not set |
@@ -96,6 +97,7 @@ CONFIG_EMBEDDED=y | |||
96 | CONFIG_SYSCTL_SYSCALL=y | 97 | CONFIG_SYSCTL_SYSCALL=y |
97 | CONFIG_KALLSYMS=y | 98 | CONFIG_KALLSYMS=y |
98 | CONFIG_KALLSYMS_ALL=y | 99 | CONFIG_KALLSYMS_ALL=y |
100 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
99 | CONFIG_KALLSYMS_EXTRA_PASS=y | 101 | CONFIG_KALLSYMS_EXTRA_PASS=y |
100 | CONFIG_HOTPLUG=y | 102 | CONFIG_HOTPLUG=y |
101 | CONFIG_PRINTK=y | 103 | CONFIG_PRINTK=y |
@@ -118,7 +120,6 @@ CONFIG_SLUB_DEBUG=y | |||
118 | CONFIG_SLUB=y | 120 | CONFIG_SLUB=y |
119 | # CONFIG_SLOB is not set | 121 | # CONFIG_SLOB is not set |
120 | # CONFIG_PROFILING is not set | 122 | # CONFIG_PROFILING is not set |
121 | # CONFIG_MARKERS is not set | ||
122 | CONFIG_HAVE_OPROFILE=y | 123 | CONFIG_HAVE_OPROFILE=y |
123 | # CONFIG_KPROBES is not set | 124 | # CONFIG_KPROBES is not set |
124 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 125 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -130,7 +131,6 @@ CONFIG_USE_GENERIC_SMP_HELPERS=y | |||
130 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 131 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
131 | CONFIG_SLABINFO=y | 132 | CONFIG_SLABINFO=y |
132 | CONFIG_RT_MUTEXES=y | 133 | CONFIG_RT_MUTEXES=y |
133 | # CONFIG_TINY_SHMEM is not set | ||
134 | CONFIG_BASE_SMALL=0 | 134 | CONFIG_BASE_SMALL=0 |
135 | CONFIG_MODULES=y | 135 | CONFIG_MODULES=y |
136 | # CONFIG_MODULE_FORCE_LOAD is not set | 136 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -138,12 +138,10 @@ CONFIG_MODULE_UNLOAD=y | |||
138 | CONFIG_MODULE_FORCE_UNLOAD=y | 138 | CONFIG_MODULE_FORCE_UNLOAD=y |
139 | CONFIG_MODVERSIONS=y | 139 | CONFIG_MODVERSIONS=y |
140 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 140 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
141 | CONFIG_KMOD=y | ||
142 | CONFIG_STOP_MACHINE=y | 141 | CONFIG_STOP_MACHINE=y |
143 | CONFIG_BLOCK=y | 142 | CONFIG_BLOCK=y |
144 | CONFIG_LBD=y | 143 | CONFIG_LBD=y |
145 | # CONFIG_BLK_DEV_IO_TRACE is not set | 144 | # CONFIG_BLK_DEV_IO_TRACE is not set |
146 | # CONFIG_LSF is not set | ||
147 | # CONFIG_BLK_DEV_BSG is not set | 145 | # CONFIG_BLK_DEV_BSG is not set |
148 | # CONFIG_BLK_DEV_INTEGRITY is not set | 146 | # CONFIG_BLK_DEV_INTEGRITY is not set |
149 | 147 | ||
@@ -160,6 +158,10 @@ CONFIG_DEFAULT_CFQ=y | |||
160 | # CONFIG_DEFAULT_NOOP is not set | 158 | # CONFIG_DEFAULT_NOOP is not set |
161 | CONFIG_DEFAULT_IOSCHED="cfq" | 159 | CONFIG_DEFAULT_IOSCHED="cfq" |
162 | CONFIG_CLASSIC_RCU=y | 160 | CONFIG_CLASSIC_RCU=y |
161 | # CONFIG_TREE_RCU is not set | ||
162 | # CONFIG_PREEMPT_RCU is not set | ||
163 | # CONFIG_TREE_RCU_TRACE is not set | ||
164 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
163 | # CONFIG_FREEZER is not set | 165 | # CONFIG_FREEZER is not set |
164 | 166 | ||
165 | # | 167 | # |
@@ -199,6 +201,7 @@ CONFIG_PPC_I8259=y | |||
199 | # CONFIG_QUICC_ENGINE is not set | 201 | # CONFIG_QUICC_ENGINE is not set |
200 | CONFIG_FSL_ULI1575=y | 202 | CONFIG_FSL_ULI1575=y |
201 | # CONFIG_MPC8xxx_GPIO is not set | 203 | # CONFIG_MPC8xxx_GPIO is not set |
204 | # CONFIG_SIMPLE_GPIO is not set | ||
202 | 205 | ||
203 | # | 206 | # |
204 | # Kernel options | 207 | # Kernel options |
@@ -226,6 +229,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
226 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 229 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
227 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 230 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
228 | # CONFIG_KEXEC is not set | 231 | # CONFIG_KEXEC is not set |
232 | # CONFIG_CRASH_DUMP is not set | ||
229 | # CONFIG_IRQ_ALL_CPUS is not set | 233 | # CONFIG_IRQ_ALL_CPUS is not set |
230 | CONFIG_ARCH_FLATMEM_ENABLE=y | 234 | CONFIG_ARCH_FLATMEM_ENABLE=y |
231 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 235 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
@@ -238,12 +242,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
238 | CONFIG_PAGEFLAGS_EXTENDED=y | 242 | CONFIG_PAGEFLAGS_EXTENDED=y |
239 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 243 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
240 | CONFIG_MIGRATION=y | 244 | CONFIG_MIGRATION=y |
241 | # CONFIG_RESOURCES_64BIT is not set | ||
242 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 245 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
243 | CONFIG_ZONE_DMA_FLAG=1 | 246 | CONFIG_ZONE_DMA_FLAG=1 |
244 | CONFIG_BOUNCE=y | 247 | CONFIG_BOUNCE=y |
245 | CONFIG_VIRT_TO_BUS=y | 248 | CONFIG_VIRT_TO_BUS=y |
246 | CONFIG_UNEVICTABLE_LRU=y | 249 | CONFIG_UNEVICTABLE_LRU=y |
250 | CONFIG_PPC_4K_PAGES=y | ||
251 | # CONFIG_PPC_16K_PAGES is not set | ||
252 | # CONFIG_PPC_64K_PAGES is not set | ||
247 | CONFIG_FORCE_MAX_ZONEORDER=11 | 253 | CONFIG_FORCE_MAX_ZONEORDER=11 |
248 | CONFIG_PROC_DEVICETREE=y | 254 | CONFIG_PROC_DEVICETREE=y |
249 | # CONFIG_CMDLINE_BOOL is not set | 255 | # CONFIG_CMDLINE_BOOL is not set |
@@ -269,6 +275,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
269 | # CONFIG_PCI_MSI is not set | 275 | # CONFIG_PCI_MSI is not set |
270 | # CONFIG_PCI_LEGACY is not set | 276 | # CONFIG_PCI_LEGACY is not set |
271 | # CONFIG_PCI_DEBUG is not set | 277 | # CONFIG_PCI_DEBUG is not set |
278 | # CONFIG_PCI_STUB is not set | ||
272 | # CONFIG_PCCARD is not set | 279 | # CONFIG_PCCARD is not set |
273 | # CONFIG_HOTPLUG_PCI is not set | 280 | # CONFIG_HOTPLUG_PCI is not set |
274 | CONFIG_HAS_RAPIDIO=y | 281 | CONFIG_HAS_RAPIDIO=y |
@@ -292,6 +299,7 @@ CONFIG_NET=y | |||
292 | # | 299 | # |
293 | # Networking options | 300 | # Networking options |
294 | # | 301 | # |
302 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
295 | CONFIG_PACKET=y | 303 | CONFIG_PACKET=y |
296 | # CONFIG_PACKET_MMAP is not set | 304 | # CONFIG_PACKET_MMAP is not set |
297 | CONFIG_UNIX=y | 305 | CONFIG_UNIX=y |
@@ -380,6 +388,7 @@ CONFIG_SCTP_HMAC_MD5=y | |||
380 | # CONFIG_ECONET is not set | 388 | # CONFIG_ECONET is not set |
381 | # CONFIG_WAN_ROUTER is not set | 389 | # CONFIG_WAN_ROUTER is not set |
382 | # CONFIG_NET_SCHED is not set | 390 | # CONFIG_NET_SCHED is not set |
391 | # CONFIG_DCB is not set | ||
383 | 392 | ||
384 | # | 393 | # |
385 | # Network testing | 394 | # Network testing |
@@ -396,8 +405,9 @@ CONFIG_WIRELESS=y | |||
396 | # CONFIG_CFG80211 is not set | 405 | # CONFIG_CFG80211 is not set |
397 | CONFIG_WIRELESS_OLD_REGULATORY=y | 406 | CONFIG_WIRELESS_OLD_REGULATORY=y |
398 | # CONFIG_WIRELESS_EXT is not set | 407 | # CONFIG_WIRELESS_EXT is not set |
408 | # CONFIG_LIB80211 is not set | ||
399 | # CONFIG_MAC80211 is not set | 409 | # CONFIG_MAC80211 is not set |
400 | # CONFIG_IEEE80211 is not set | 410 | # CONFIG_WIMAX is not set |
401 | # CONFIG_RFKILL is not set | 411 | # CONFIG_RFKILL is not set |
402 | # CONFIG_NET_9P is not set | 412 | # CONFIG_NET_9P is not set |
403 | 413 | ||
@@ -420,6 +430,7 @@ CONFIG_EXTRA_FIRMWARE="" | |||
420 | # CONFIG_CONNECTOR is not set | 430 | # CONFIG_CONNECTOR is not set |
421 | # CONFIG_MTD is not set | 431 | # CONFIG_MTD is not set |
422 | CONFIG_OF_DEVICE=y | 432 | CONFIG_OF_DEVICE=y |
433 | CONFIG_OF_GPIO=y | ||
423 | CONFIG_OF_I2C=y | 434 | CONFIG_OF_I2C=y |
424 | # CONFIG_PARPORT is not set | 435 | # CONFIG_PARPORT is not set |
425 | CONFIG_BLK_DEV=y | 436 | CONFIG_BLK_DEV=y |
@@ -446,8 +457,10 @@ CONFIG_MISC_DEVICES=y | |||
446 | # CONFIG_EEPROM_93CX6 is not set | 457 | # CONFIG_EEPROM_93CX6 is not set |
447 | # CONFIG_SGI_IOC4 is not set | 458 | # CONFIG_SGI_IOC4 is not set |
448 | # CONFIG_TIFM_CORE is not set | 459 | # CONFIG_TIFM_CORE is not set |
460 | # CONFIG_ICS932S401 is not set | ||
449 | # CONFIG_ENCLOSURE_SERVICES is not set | 461 | # CONFIG_ENCLOSURE_SERVICES is not set |
450 | # CONFIG_HP_ILO is not set | 462 | # CONFIG_HP_ILO is not set |
463 | # CONFIG_C2PORT is not set | ||
451 | CONFIG_HAVE_IDE=y | 464 | CONFIG_HAVE_IDE=y |
452 | # CONFIG_IDE is not set | 465 | # CONFIG_IDE is not set |
453 | 466 | ||
@@ -491,6 +504,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
491 | # CONFIG_SCSI_SRP_ATTRS is not set | 504 | # CONFIG_SCSI_SRP_ATTRS is not set |
492 | CONFIG_SCSI_LOWLEVEL=y | 505 | CONFIG_SCSI_LOWLEVEL=y |
493 | # CONFIG_ISCSI_TCP is not set | 506 | # CONFIG_ISCSI_TCP is not set |
507 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
494 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 508 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
495 | # CONFIG_SCSI_3W_9XXX is not set | 509 | # CONFIG_SCSI_3W_9XXX is not set |
496 | # CONFIG_SCSI_ACARD is not set | 510 | # CONFIG_SCSI_ACARD is not set |
@@ -507,6 +521,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
507 | # CONFIG_MEGARAID_SAS is not set | 521 | # CONFIG_MEGARAID_SAS is not set |
508 | # CONFIG_SCSI_HPTIOP is not set | 522 | # CONFIG_SCSI_HPTIOP is not set |
509 | # CONFIG_SCSI_BUSLOGIC is not set | 523 | # CONFIG_SCSI_BUSLOGIC is not set |
524 | # CONFIG_LIBFC is not set | ||
525 | # CONFIG_FCOE is not set | ||
510 | # CONFIG_SCSI_DMX3191D is not set | 526 | # CONFIG_SCSI_DMX3191D is not set |
511 | # CONFIG_SCSI_EATA is not set | 527 | # CONFIG_SCSI_EATA is not set |
512 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 528 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -626,6 +642,9 @@ CONFIG_VITESSE_PHY=y | |||
626 | # CONFIG_BROADCOM_PHY is not set | 642 | # CONFIG_BROADCOM_PHY is not set |
627 | # CONFIG_ICPLUS_PHY is not set | 643 | # CONFIG_ICPLUS_PHY is not set |
628 | # CONFIG_REALTEK_PHY is not set | 644 | # CONFIG_REALTEK_PHY is not set |
645 | # CONFIG_NATIONAL_PHY is not set | ||
646 | # CONFIG_STE10XP is not set | ||
647 | # CONFIG_LSI_ET1011C_PHY is not set | ||
629 | # CONFIG_FIXED_PHY is not set | 648 | # CONFIG_FIXED_PHY is not set |
630 | # CONFIG_MDIO_BITBANG is not set | 649 | # CONFIG_MDIO_BITBANG is not set |
631 | CONFIG_NET_ETHERNET=y | 650 | CONFIG_NET_ETHERNET=y |
@@ -671,6 +690,7 @@ CONFIG_GIANFAR=y | |||
671 | # CONFIG_JME is not set | 690 | # CONFIG_JME is not set |
672 | CONFIG_NETDEV_10000=y | 691 | CONFIG_NETDEV_10000=y |
673 | # CONFIG_CHELSIO_T1 is not set | 692 | # CONFIG_CHELSIO_T1 is not set |
693 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
674 | # CONFIG_CHELSIO_T3 is not set | 694 | # CONFIG_CHELSIO_T3 is not set |
675 | # CONFIG_ENIC is not set | 695 | # CONFIG_ENIC is not set |
676 | # CONFIG_IXGBE is not set | 696 | # CONFIG_IXGBE is not set |
@@ -695,6 +715,10 @@ CONFIG_NETDEV_10000=y | |||
695 | # CONFIG_IWLWIFI_LEDS is not set | 715 | # CONFIG_IWLWIFI_LEDS is not set |
696 | 716 | ||
697 | # | 717 | # |
718 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
719 | # | ||
720 | |||
721 | # | ||
698 | # USB Network Adapters | 722 | # USB Network Adapters |
699 | # | 723 | # |
700 | # CONFIG_USB_CATC is not set | 724 | # CONFIG_USB_CATC is not set |
@@ -786,8 +810,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
786 | # CONFIG_SERIAL_JSM is not set | 810 | # CONFIG_SERIAL_JSM is not set |
787 | # CONFIG_SERIAL_OF_PLATFORM is not set | 811 | # CONFIG_SERIAL_OF_PLATFORM is not set |
788 | CONFIG_UNIX98_PTYS=y | 812 | CONFIG_UNIX98_PTYS=y |
813 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
789 | CONFIG_LEGACY_PTYS=y | 814 | CONFIG_LEGACY_PTYS=y |
790 | CONFIG_LEGACY_PTY_COUNT=256 | 815 | CONFIG_LEGACY_PTY_COUNT=256 |
816 | # CONFIG_HVC_UDBG is not set | ||
791 | # CONFIG_IPMI_HANDLER is not set | 817 | # CONFIG_IPMI_HANDLER is not set |
792 | # CONFIG_HW_RANDOM is not set | 818 | # CONFIG_HW_RANDOM is not set |
793 | CONFIG_NVRAM=y | 819 | CONFIG_NVRAM=y |
@@ -826,6 +852,7 @@ CONFIG_I2C_HELPER_AUTO=y | |||
826 | # | 852 | # |
827 | # I2C system bus drivers (mostly embedded / system-on-chip) | 853 | # I2C system bus drivers (mostly embedded / system-on-chip) |
828 | # | 854 | # |
855 | # CONFIG_I2C_GPIO is not set | ||
829 | CONFIG_I2C_MPC=y | 856 | CONFIG_I2C_MPC=y |
830 | # CONFIG_I2C_OCORES is not set | 857 | # CONFIG_I2C_OCORES is not set |
831 | # CONFIG_I2C_SIMTEC is not set | 858 | # CONFIG_I2C_SIMTEC is not set |
@@ -866,18 +893,42 @@ CONFIG_EEPROM_LEGACY=y | |||
866 | # CONFIG_I2C_DEBUG_CHIP is not set | 893 | # CONFIG_I2C_DEBUG_CHIP is not set |
867 | # CONFIG_SPI is not set | 894 | # CONFIG_SPI is not set |
868 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | 895 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y |
869 | # CONFIG_GPIOLIB is not set | 896 | CONFIG_ARCH_REQUIRE_GPIOLIB=y |
897 | CONFIG_GPIOLIB=y | ||
898 | # CONFIG_DEBUG_GPIO is not set | ||
899 | # CONFIG_GPIO_SYSFS is not set | ||
900 | |||
901 | # | ||
902 | # Memory mapped GPIO expanders: | ||
903 | # | ||
904 | # CONFIG_GPIO_XILINX is not set | ||
905 | |||
906 | # | ||
907 | # I2C GPIO expanders: | ||
908 | # | ||
909 | # CONFIG_GPIO_MAX732X is not set | ||
910 | # CONFIG_GPIO_PCA953X is not set | ||
911 | # CONFIG_GPIO_PCF857X is not set | ||
912 | |||
913 | # | ||
914 | # PCI GPIO expanders: | ||
915 | # | ||
916 | # CONFIG_GPIO_BT8XX is not set | ||
917 | |||
918 | # | ||
919 | # SPI GPIO expanders: | ||
920 | # | ||
870 | # CONFIG_W1 is not set | 921 | # CONFIG_W1 is not set |
871 | # CONFIG_POWER_SUPPLY is not set | 922 | # CONFIG_POWER_SUPPLY is not set |
872 | # CONFIG_HWMON is not set | 923 | # CONFIG_HWMON is not set |
873 | # CONFIG_THERMAL is not set | 924 | # CONFIG_THERMAL is not set |
874 | # CONFIG_THERMAL_HWMON is not set | 925 | # CONFIG_THERMAL_HWMON is not set |
875 | # CONFIG_WATCHDOG is not set | 926 | # CONFIG_WATCHDOG is not set |
927 | CONFIG_SSB_POSSIBLE=y | ||
876 | 928 | ||
877 | # | 929 | # |
878 | # Sonics Silicon Backplane | 930 | # Sonics Silicon Backplane |
879 | # | 931 | # |
880 | CONFIG_SSB_POSSIBLE=y | ||
881 | # CONFIG_SSB is not set | 932 | # CONFIG_SSB is not set |
882 | 933 | ||
883 | # | 934 | # |
@@ -886,18 +937,15 @@ CONFIG_SSB_POSSIBLE=y | |||
886 | # CONFIG_MFD_CORE is not set | 937 | # CONFIG_MFD_CORE is not set |
887 | # CONFIG_MFD_SM501 is not set | 938 | # CONFIG_MFD_SM501 is not set |
888 | # CONFIG_HTC_PASIC3 is not set | 939 | # CONFIG_HTC_PASIC3 is not set |
940 | # CONFIG_UCB1400_CORE is not set | ||
941 | # CONFIG_TPS65010 is not set | ||
942 | # CONFIG_TWL4030_CORE is not set | ||
889 | # CONFIG_MFD_TMIO is not set | 943 | # CONFIG_MFD_TMIO is not set |
890 | # CONFIG_PMIC_DA903X is not set | 944 | # CONFIG_PMIC_DA903X is not set |
891 | # CONFIG_MFD_WM8400 is not set | 945 | # CONFIG_MFD_WM8400 is not set |
892 | # CONFIG_MFD_WM8350_I2C is not set | 946 | # CONFIG_MFD_WM8350_I2C is not set |
893 | 947 | # CONFIG_MFD_PCF50633 is not set | |
894 | # | ||
895 | # Voltage and Current regulators | ||
896 | # | ||
897 | # CONFIG_REGULATOR is not set | 948 | # CONFIG_REGULATOR is not set |
898 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
899 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
900 | # CONFIG_REGULATOR_BQ24022 is not set | ||
901 | 949 | ||
902 | # | 950 | # |
903 | # Multimedia devices | 951 | # Multimedia devices |
@@ -924,6 +972,7 @@ CONFIG_MEDIA_TUNER_TEA5767=m | |||
924 | CONFIG_MEDIA_TUNER_MT20XX=m | 972 | CONFIG_MEDIA_TUNER_MT20XX=m |
925 | CONFIG_MEDIA_TUNER_XC2028=m | 973 | CONFIG_MEDIA_TUNER_XC2028=m |
926 | CONFIG_MEDIA_TUNER_XC5000=m | 974 | CONFIG_MEDIA_TUNER_XC5000=m |
975 | # CONFIG_DVB_DYNAMIC_MINORS is not set | ||
927 | CONFIG_DVB_CAPTURE_DRIVERS=y | 976 | CONFIG_DVB_CAPTURE_DRIVERS=y |
928 | 977 | ||
929 | # | 978 | # |
@@ -969,6 +1018,12 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
969 | # CONFIG_DVB_FE_CUSTOMISE is not set | 1018 | # CONFIG_DVB_FE_CUSTOMISE is not set |
970 | 1019 | ||
971 | # | 1020 | # |
1021 | # Multistandard (satellite) frontends | ||
1022 | # | ||
1023 | # CONFIG_DVB_STB0899 is not set | ||
1024 | # CONFIG_DVB_STB6100 is not set | ||
1025 | |||
1026 | # | ||
972 | # DVB-S (satellite) frontends | 1027 | # DVB-S (satellite) frontends |
973 | # | 1028 | # |
974 | # CONFIG_DVB_CX24110 is not set | 1029 | # CONFIG_DVB_CX24110 is not set |
@@ -980,8 +1035,10 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
980 | # CONFIG_DVB_STV0299 is not set | 1035 | # CONFIG_DVB_STV0299 is not set |
981 | # CONFIG_DVB_TDA8083 is not set | 1036 | # CONFIG_DVB_TDA8083 is not set |
982 | # CONFIG_DVB_TDA10086 is not set | 1037 | # CONFIG_DVB_TDA10086 is not set |
1038 | # CONFIG_DVB_TDA8261 is not set | ||
983 | # CONFIG_DVB_VES1X93 is not set | 1039 | # CONFIG_DVB_VES1X93 is not set |
984 | # CONFIG_DVB_TUNER_ITD1000 is not set | 1040 | # CONFIG_DVB_TUNER_ITD1000 is not set |
1041 | # CONFIG_DVB_TUNER_CX24113 is not set | ||
985 | # CONFIG_DVB_TDA826X is not set | 1042 | # CONFIG_DVB_TDA826X is not set |
986 | # CONFIG_DVB_TUA6100 is not set | 1043 | # CONFIG_DVB_TUA6100 is not set |
987 | # CONFIG_DVB_CX24116 is not set | 1044 | # CONFIG_DVB_CX24116 is not set |
@@ -1022,11 +1079,17 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
1022 | # CONFIG_DVB_OR51132 is not set | 1079 | # CONFIG_DVB_OR51132 is not set |
1023 | # CONFIG_DVB_BCM3510 is not set | 1080 | # CONFIG_DVB_BCM3510 is not set |
1024 | # CONFIG_DVB_LGDT330X is not set | 1081 | # CONFIG_DVB_LGDT330X is not set |
1082 | # CONFIG_DVB_LGDT3304 is not set | ||
1025 | # CONFIG_DVB_S5H1409 is not set | 1083 | # CONFIG_DVB_S5H1409 is not set |
1026 | # CONFIG_DVB_AU8522 is not set | 1084 | # CONFIG_DVB_AU8522 is not set |
1027 | # CONFIG_DVB_S5H1411 is not set | 1085 | # CONFIG_DVB_S5H1411 is not set |
1028 | 1086 | ||
1029 | # | 1087 | # |
1088 | # ISDB-T (terrestrial) frontends | ||
1089 | # | ||
1090 | # CONFIG_DVB_S921 is not set | ||
1091 | |||
1092 | # | ||
1030 | # Digital terrestrial only tuners/PLL | 1093 | # Digital terrestrial only tuners/PLL |
1031 | # | 1094 | # |
1032 | # CONFIG_DVB_PLL is not set | 1095 | # CONFIG_DVB_PLL is not set |
@@ -1079,6 +1142,7 @@ CONFIG_SND_OSSEMUL=y | |||
1079 | CONFIG_SND_MIXER_OSS=y | 1142 | CONFIG_SND_MIXER_OSS=y |
1080 | CONFIG_SND_PCM_OSS=y | 1143 | CONFIG_SND_PCM_OSS=y |
1081 | CONFIG_SND_PCM_OSS_PLUGINS=y | 1144 | CONFIG_SND_PCM_OSS_PLUGINS=y |
1145 | # CONFIG_SND_HRTIMER is not set | ||
1082 | # CONFIG_SND_DYNAMIC_MINORS is not set | 1146 | # CONFIG_SND_DYNAMIC_MINORS is not set |
1083 | # CONFIG_SND_SUPPORT_OLD_API is not set | 1147 | # CONFIG_SND_SUPPORT_OLD_API is not set |
1084 | CONFIG_SND_VERBOSE_PROCFS=y | 1148 | CONFIG_SND_VERBOSE_PROCFS=y |
@@ -1181,11 +1245,9 @@ CONFIG_HID_COMPAT=y | |||
1181 | CONFIG_HID_A4TECH=y | 1245 | CONFIG_HID_A4TECH=y |
1182 | CONFIG_HID_APPLE=y | 1246 | CONFIG_HID_APPLE=y |
1183 | CONFIG_HID_BELKIN=y | 1247 | CONFIG_HID_BELKIN=y |
1184 | CONFIG_HID_BRIGHT=y | ||
1185 | CONFIG_HID_CHERRY=y | 1248 | CONFIG_HID_CHERRY=y |
1186 | CONFIG_HID_CHICONY=y | 1249 | CONFIG_HID_CHICONY=y |
1187 | CONFIG_HID_CYPRESS=y | 1250 | CONFIG_HID_CYPRESS=y |
1188 | CONFIG_HID_DELL=y | ||
1189 | CONFIG_HID_EZKEY=y | 1251 | CONFIG_HID_EZKEY=y |
1190 | CONFIG_HID_GYRATION=y | 1252 | CONFIG_HID_GYRATION=y |
1191 | CONFIG_HID_LOGITECH=y | 1253 | CONFIG_HID_LOGITECH=y |
@@ -1193,12 +1255,15 @@ CONFIG_HID_LOGITECH=y | |||
1193 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1255 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
1194 | CONFIG_HID_MICROSOFT=y | 1256 | CONFIG_HID_MICROSOFT=y |
1195 | CONFIG_HID_MONTEREY=y | 1257 | CONFIG_HID_MONTEREY=y |
1258 | # CONFIG_HID_NTRIG is not set | ||
1196 | CONFIG_HID_PANTHERLORD=y | 1259 | CONFIG_HID_PANTHERLORD=y |
1197 | # CONFIG_PANTHERLORD_FF is not set | 1260 | # CONFIG_PANTHERLORD_FF is not set |
1198 | CONFIG_HID_PETALYNX=y | 1261 | CONFIG_HID_PETALYNX=y |
1199 | CONFIG_HID_SAMSUNG=y | 1262 | CONFIG_HID_SAMSUNG=y |
1200 | CONFIG_HID_SONY=y | 1263 | CONFIG_HID_SONY=y |
1201 | CONFIG_HID_SUNPLUS=y | 1264 | CONFIG_HID_SUNPLUS=y |
1265 | # CONFIG_GREENASIA_FF is not set | ||
1266 | # CONFIG_HID_TOPSEED is not set | ||
1202 | CONFIG_THRUSTMASTER_FF=m | 1267 | CONFIG_THRUSTMASTER_FF=m |
1203 | CONFIG_ZEROPLUS_FF=m | 1268 | CONFIG_ZEROPLUS_FF=m |
1204 | CONFIG_USB_SUPPORT=y | 1269 | CONFIG_USB_SUPPORT=y |
@@ -1231,6 +1296,7 @@ CONFIG_USB_EHCI_HCD=y | |||
1231 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1296 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1232 | # CONFIG_USB_EHCI_FSL is not set | 1297 | # CONFIG_USB_EHCI_FSL is not set |
1233 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1298 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1299 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1234 | # CONFIG_USB_ISP116X_HCD is not set | 1300 | # CONFIG_USB_ISP116X_HCD is not set |
1235 | # CONFIG_USB_ISP1760_HCD is not set | 1301 | # CONFIG_USB_ISP1760_HCD is not set |
1236 | CONFIG_USB_OHCI_HCD=y | 1302 | CONFIG_USB_OHCI_HCD=y |
@@ -1256,18 +1322,17 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
1256 | # CONFIG_USB_TMC is not set | 1322 | # CONFIG_USB_TMC is not set |
1257 | 1323 | ||
1258 | # | 1324 | # |
1259 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1325 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1260 | # | 1326 | # |
1261 | 1327 | ||
1262 | # | 1328 | # |
1263 | # may also be needed; see USB_STORAGE Help for more information | 1329 | # see USB_STORAGE Help for more information |
1264 | # | 1330 | # |
1265 | CONFIG_USB_STORAGE=y | 1331 | CONFIG_USB_STORAGE=y |
1266 | # CONFIG_USB_STORAGE_DEBUG is not set | 1332 | # CONFIG_USB_STORAGE_DEBUG is not set |
1267 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1333 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1268 | # CONFIG_USB_STORAGE_FREECOM is not set | 1334 | # CONFIG_USB_STORAGE_FREECOM is not set |
1269 | # CONFIG_USB_STORAGE_ISD200 is not set | 1335 | # CONFIG_USB_STORAGE_ISD200 is not set |
1270 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1271 | # CONFIG_USB_STORAGE_USBAT is not set | 1336 | # CONFIG_USB_STORAGE_USBAT is not set |
1272 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1337 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1273 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1338 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1315,6 +1380,11 @@ CONFIG_USB_STORAGE=y | |||
1315 | # CONFIG_USB_ISIGHTFW is not set | 1380 | # CONFIG_USB_ISIGHTFW is not set |
1316 | # CONFIG_USB_VST is not set | 1381 | # CONFIG_USB_VST is not set |
1317 | # CONFIG_USB_GADGET is not set | 1382 | # CONFIG_USB_GADGET is not set |
1383 | |||
1384 | # | ||
1385 | # OTG and related infrastructure | ||
1386 | # | ||
1387 | # CONFIG_USB_GPIO_VBUS is not set | ||
1318 | # CONFIG_UWB is not set | 1388 | # CONFIG_UWB is not set |
1319 | # CONFIG_MMC is not set | 1389 | # CONFIG_MMC is not set |
1320 | # CONFIG_MEMSTICK is not set | 1390 | # CONFIG_MEMSTICK is not set |
@@ -1352,6 +1422,7 @@ CONFIG_RTC_INTF_DEV=y | |||
1352 | # CONFIG_RTC_DRV_M41T80 is not set | 1422 | # CONFIG_RTC_DRV_M41T80 is not set |
1353 | # CONFIG_RTC_DRV_S35390A is not set | 1423 | # CONFIG_RTC_DRV_S35390A is not set |
1354 | # CONFIG_RTC_DRV_FM3130 is not set | 1424 | # CONFIG_RTC_DRV_FM3130 is not set |
1425 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1355 | 1426 | ||
1356 | # | 1427 | # |
1357 | # SPI RTC drivers | 1428 | # SPI RTC drivers |
@@ -1398,7 +1469,9 @@ CONFIG_FS_MBCACHE=y | |||
1398 | # CONFIG_FS_POSIX_ACL is not set | 1469 | # CONFIG_FS_POSIX_ACL is not set |
1399 | CONFIG_FILE_LOCKING=y | 1470 | CONFIG_FILE_LOCKING=y |
1400 | # CONFIG_XFS_FS is not set | 1471 | # CONFIG_XFS_FS is not set |
1472 | # CONFIG_GFS2_FS is not set | ||
1401 | # CONFIG_OCFS2_FS is not set | 1473 | # CONFIG_OCFS2_FS is not set |
1474 | # CONFIG_BTRFS_FS is not set | ||
1402 | CONFIG_DNOTIFY=y | 1475 | CONFIG_DNOTIFY=y |
1403 | CONFIG_INOTIFY=y | 1476 | CONFIG_INOTIFY=y |
1404 | CONFIG_INOTIFY_USER=y | 1477 | CONFIG_INOTIFY_USER=y |
@@ -1440,10 +1513,7 @@ CONFIG_TMPFS=y | |||
1440 | # CONFIG_TMPFS_POSIX_ACL is not set | 1513 | # CONFIG_TMPFS_POSIX_ACL is not set |
1441 | # CONFIG_HUGETLB_PAGE is not set | 1514 | # CONFIG_HUGETLB_PAGE is not set |
1442 | # CONFIG_CONFIGFS_FS is not set | 1515 | # CONFIG_CONFIGFS_FS is not set |
1443 | 1516 | CONFIG_MISC_FILESYSTEMS=y | |
1444 | # | ||
1445 | # Miscellaneous filesystems | ||
1446 | # | ||
1447 | CONFIG_ADFS_FS=m | 1517 | CONFIG_ADFS_FS=m |
1448 | # CONFIG_ADFS_FS_RW is not set | 1518 | # CONFIG_ADFS_FS_RW is not set |
1449 | CONFIG_AFFS_FS=m | 1519 | CONFIG_AFFS_FS=m |
@@ -1454,6 +1524,7 @@ CONFIG_BEFS_FS=m | |||
1454 | CONFIG_BFS_FS=m | 1524 | CONFIG_BFS_FS=m |
1455 | CONFIG_EFS_FS=m | 1525 | CONFIG_EFS_FS=m |
1456 | CONFIG_CRAMFS=y | 1526 | CONFIG_CRAMFS=y |
1527 | # CONFIG_SQUASHFS is not set | ||
1457 | CONFIG_VXFS_FS=m | 1528 | CONFIG_VXFS_FS=m |
1458 | # CONFIG_MINIX_FS is not set | 1529 | # CONFIG_MINIX_FS is not set |
1459 | # CONFIG_OMFS_FS is not set | 1530 | # CONFIG_OMFS_FS is not set |
@@ -1555,6 +1626,7 @@ CONFIG_NLS_UTF8=m | |||
1555 | # Library routines | 1626 | # Library routines |
1556 | # | 1627 | # |
1557 | CONFIG_BITREVERSE=y | 1628 | CONFIG_BITREVERSE=y |
1629 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1558 | # CONFIG_CRC_CCITT is not set | 1630 | # CONFIG_CRC_CCITT is not set |
1559 | # CONFIG_CRC16 is not set | 1631 | # CONFIG_CRC16 is not set |
1560 | CONFIG_CRC_T10DIF=y | 1632 | CONFIG_CRC_T10DIF=y |
@@ -1606,6 +1678,7 @@ CONFIG_DEBUG_INFO=y | |||
1606 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1678 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1607 | # CONFIG_DEBUG_LIST is not set | 1679 | # CONFIG_DEBUG_LIST is not set |
1608 | # CONFIG_DEBUG_SG is not set | 1680 | # CONFIG_DEBUG_SG is not set |
1681 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1609 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1682 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1610 | # CONFIG_RCU_TORTURE_TEST is not set | 1683 | # CONFIG_RCU_TORTURE_TEST is not set |
1611 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1684 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1615,6 +1688,8 @@ CONFIG_DEBUG_INFO=y | |||
1615 | # CONFIG_LATENCYTOP is not set | 1688 | # CONFIG_LATENCYTOP is not set |
1616 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1689 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1617 | CONFIG_HAVE_FUNCTION_TRACER=y | 1690 | CONFIG_HAVE_FUNCTION_TRACER=y |
1691 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1692 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1618 | 1693 | ||
1619 | # | 1694 | # |
1620 | # Tracers | 1695 | # Tracers |
@@ -1623,11 +1698,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1623 | # CONFIG_SCHED_TRACER is not set | 1698 | # CONFIG_SCHED_TRACER is not set |
1624 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1699 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1625 | # CONFIG_BOOT_TRACER is not set | 1700 | # CONFIG_BOOT_TRACER is not set |
1701 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1626 | # CONFIG_STACK_TRACER is not set | 1702 | # CONFIG_STACK_TRACER is not set |
1627 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1703 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1628 | # CONFIG_SAMPLES is not set | 1704 | # CONFIG_SAMPLES is not set |
1629 | CONFIG_HAVE_ARCH_KGDB=y | 1705 | CONFIG_HAVE_ARCH_KGDB=y |
1630 | # CONFIG_KGDB is not set | 1706 | # CONFIG_KGDB is not set |
1707 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1631 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1708 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1632 | # CONFIG_DEBUG_STACK_USAGE is not set | 1709 | # CONFIG_DEBUG_STACK_USAGE is not set |
1633 | # CONFIG_DEBUG_PAGEALLOC is not set | 1710 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1654,11 +1731,15 @@ CONFIG_CRYPTO=y | |||
1654 | # | 1731 | # |
1655 | # CONFIG_CRYPTO_FIPS is not set | 1732 | # CONFIG_CRYPTO_FIPS is not set |
1656 | CONFIG_CRYPTO_ALGAPI=y | 1733 | CONFIG_CRYPTO_ALGAPI=y |
1657 | CONFIG_CRYPTO_AEAD=y | 1734 | CONFIG_CRYPTO_ALGAPI2=y |
1735 | CONFIG_CRYPTO_AEAD2=y | ||
1658 | CONFIG_CRYPTO_BLKCIPHER=y | 1736 | CONFIG_CRYPTO_BLKCIPHER=y |
1737 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1659 | CONFIG_CRYPTO_HASH=y | 1738 | CONFIG_CRYPTO_HASH=y |
1660 | CONFIG_CRYPTO_RNG=y | 1739 | CONFIG_CRYPTO_HASH2=y |
1740 | CONFIG_CRYPTO_RNG2=y | ||
1661 | CONFIG_CRYPTO_MANAGER=y | 1741 | CONFIG_CRYPTO_MANAGER=y |
1742 | CONFIG_CRYPTO_MANAGER2=y | ||
1662 | # CONFIG_CRYPTO_GF128MUL is not set | 1743 | # CONFIG_CRYPTO_GF128MUL is not set |
1663 | # CONFIG_CRYPTO_NULL is not set | 1744 | # CONFIG_CRYPTO_NULL is not set |
1664 | # CONFIG_CRYPTO_CRYPTD is not set | 1745 | # CONFIG_CRYPTO_CRYPTD is not set |
@@ -1692,7 +1773,7 @@ CONFIG_CRYPTO_HMAC=y | |||
1692 | # | 1773 | # |
1693 | # Digest | 1774 | # Digest |
1694 | # | 1775 | # |
1695 | # CONFIG_CRYPTO_CRC32C is not set | 1776 | CONFIG_CRYPTO_CRC32C=m |
1696 | # CONFIG_CRYPTO_MD4 is not set | 1777 | # CONFIG_CRYPTO_MD4 is not set |
1697 | CONFIG_CRYPTO_MD5=y | 1778 | CONFIG_CRYPTO_MD5=y |
1698 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1779 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
diff --git a/arch/powerpc/configs/mpc885_ads_defconfig b/arch/powerpc/configs/mpc885_ads_defconfig index a4283b6a43d2..4b76321c0ec4 100644 --- a/arch/powerpc/configs/mpc885_ads_defconfig +++ b/arch/powerpc/configs/mpc885_ads_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:46 2008 | 4 | # Mon Jan 26 15:35:41 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_PPC_8xx=y | |||
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_8xx=y | 17 | CONFIG_8xx=y |
18 | CONFIG_PPC_MMU_NOHASH=y | ||
18 | # CONFIG_PPC_MM_SLICES is not set | 19 | # CONFIG_PPC_MM_SLICES is not set |
19 | CONFIG_NOT_COHERENT_CACHE=y | 20 | CONFIG_NOT_COHERENT_CACHE=y |
20 | CONFIG_PPC32=y | 21 | CONFIG_PPC32=y |
@@ -40,7 +41,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
40 | CONFIG_PPC=y | 41 | CONFIG_PPC=y |
41 | CONFIG_EARLY_PRINTK=y | 42 | CONFIG_EARLY_PRINTK=y |
42 | CONFIG_GENERIC_NVRAM=y | 43 | CONFIG_GENERIC_NVRAM=y |
43 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 44 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
44 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
45 | CONFIG_PPC_OF=y | 46 | CONFIG_PPC_OF=y |
46 | CONFIG_OF=y | 47 | CONFIG_OF=y |
@@ -70,12 +71,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
70 | # CONFIG_AUDIT is not set | 71 | # CONFIG_AUDIT is not set |
71 | # CONFIG_IKCONFIG is not set | 72 | # CONFIG_IKCONFIG is not set |
72 | CONFIG_LOG_BUF_SHIFT=14 | 73 | CONFIG_LOG_BUF_SHIFT=14 |
73 | # CONFIG_CGROUPS is not set | ||
74 | CONFIG_GROUP_SCHED=y | 74 | CONFIG_GROUP_SCHED=y |
75 | # CONFIG_FAIR_GROUP_SCHED is not set | 75 | # CONFIG_FAIR_GROUP_SCHED is not set |
76 | # CONFIG_RT_GROUP_SCHED is not set | 76 | # CONFIG_RT_GROUP_SCHED is not set |
77 | CONFIG_USER_SCHED=y | 77 | CONFIG_USER_SCHED=y |
78 | # CONFIG_CGROUP_SCHED is not set | 78 | # CONFIG_CGROUP_SCHED is not set |
79 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_SYSFS_DEPRECATED=y | 80 | CONFIG_SYSFS_DEPRECATED=y |
80 | CONFIG_SYSFS_DEPRECATED_V2=y | 81 | CONFIG_SYSFS_DEPRECATED_V2=y |
81 | # CONFIG_RELAY is not set | 82 | # CONFIG_RELAY is not set |
@@ -108,7 +109,6 @@ CONFIG_SLUB_DEBUG=y | |||
108 | CONFIG_SLUB=y | 109 | CONFIG_SLUB=y |
109 | # CONFIG_SLOB is not set | 110 | # CONFIG_SLOB is not set |
110 | # CONFIG_PROFILING is not set | 111 | # CONFIG_PROFILING is not set |
111 | # CONFIG_MARKERS is not set | ||
112 | CONFIG_HAVE_OPROFILE=y | 112 | CONFIG_HAVE_OPROFILE=y |
113 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 113 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
114 | CONFIG_HAVE_IOREMAP_PROT=y | 114 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -118,13 +118,11 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
118 | CONFIG_HAVE_CLK=y | 118 | CONFIG_HAVE_CLK=y |
119 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 119 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
120 | CONFIG_SLABINFO=y | 120 | CONFIG_SLABINFO=y |
121 | # CONFIG_TINY_SHMEM is not set | ||
122 | CONFIG_BASE_SMALL=1 | 121 | CONFIG_BASE_SMALL=1 |
123 | # CONFIG_MODULES is not set | 122 | # CONFIG_MODULES is not set |
124 | CONFIG_BLOCK=y | 123 | CONFIG_BLOCK=y |
125 | # CONFIG_LBD is not set | 124 | # CONFIG_LBD is not set |
126 | # CONFIG_BLK_DEV_IO_TRACE is not set | 125 | # CONFIG_BLK_DEV_IO_TRACE is not set |
127 | # CONFIG_LSF is not set | ||
128 | # CONFIG_BLK_DEV_BSG is not set | 126 | # CONFIG_BLK_DEV_BSG is not set |
129 | # CONFIG_BLK_DEV_INTEGRITY is not set | 127 | # CONFIG_BLK_DEV_INTEGRITY is not set |
130 | 128 | ||
@@ -141,6 +139,10 @@ CONFIG_DEFAULT_DEADLINE=y | |||
141 | # CONFIG_DEFAULT_NOOP is not set | 139 | # CONFIG_DEFAULT_NOOP is not set |
142 | CONFIG_DEFAULT_IOSCHED="deadline" | 140 | CONFIG_DEFAULT_IOSCHED="deadline" |
143 | CONFIG_CLASSIC_RCU=y | 141 | CONFIG_CLASSIC_RCU=y |
142 | # CONFIG_TREE_RCU is not set | ||
143 | # CONFIG_PREEMPT_RCU is not set | ||
144 | # CONFIG_TREE_RCU_TRACE is not set | ||
145 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
144 | # CONFIG_FREEZER is not set | 146 | # CONFIG_FREEZER is not set |
145 | 147 | ||
146 | # | 148 | # |
@@ -193,6 +195,7 @@ CONFIG_NO_UCODE_PATCH=y | |||
193 | # CONFIG_QUICC_ENGINE is not set | 195 | # CONFIG_QUICC_ENGINE is not set |
194 | # CONFIG_FSL_ULI1575 is not set | 196 | # CONFIG_FSL_ULI1575 is not set |
195 | CONFIG_CPM=y | 197 | CONFIG_CPM=y |
198 | # CONFIG_SIMPLE_GPIO is not set | ||
196 | 199 | ||
197 | # | 200 | # |
198 | # Kernel options | 201 | # Kernel options |
@@ -212,12 +215,12 @@ CONFIG_PREEMPT_NONE=y | |||
212 | # CONFIG_PREEMPT_VOLUNTARY is not set | 215 | # CONFIG_PREEMPT_VOLUNTARY is not set |
213 | # CONFIG_PREEMPT is not set | 216 | # CONFIG_PREEMPT is not set |
214 | CONFIG_BINFMT_ELF=y | 217 | CONFIG_BINFMT_ELF=y |
215 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | ||
216 | # CONFIG_HAVE_AOUT is not set | 218 | # CONFIG_HAVE_AOUT is not set |
217 | # CONFIG_BINFMT_MISC is not set | 219 | # CONFIG_BINFMT_MISC is not set |
218 | # CONFIG_MATH_EMULATION is not set | 220 | # CONFIG_MATH_EMULATION is not set |
219 | CONFIG_8XX_MINIMAL_FPEMU=y | 221 | CONFIG_8XX_MINIMAL_FPEMU=y |
220 | # CONFIG_IOMMU_HELPER is not set | 222 | # CONFIG_IOMMU_HELPER is not set |
223 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
221 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 224 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
222 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 225 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
223 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 226 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -232,12 +235,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
232 | CONFIG_PAGEFLAGS_EXTENDED=y | 235 | CONFIG_PAGEFLAGS_EXTENDED=y |
233 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 236 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
234 | CONFIG_MIGRATION=y | 237 | CONFIG_MIGRATION=y |
235 | # CONFIG_RESOURCES_64BIT is not set | ||
236 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 238 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
237 | CONFIG_ZONE_DMA_FLAG=1 | 239 | CONFIG_ZONE_DMA_FLAG=1 |
238 | CONFIG_BOUNCE=y | 240 | CONFIG_BOUNCE=y |
239 | CONFIG_VIRT_TO_BUS=y | 241 | CONFIG_VIRT_TO_BUS=y |
240 | CONFIG_UNEVICTABLE_LRU=y | 242 | CONFIG_UNEVICTABLE_LRU=y |
243 | CONFIG_PPC_4K_PAGES=y | ||
244 | # CONFIG_PPC_16K_PAGES is not set | ||
245 | # CONFIG_PPC_64K_PAGES is not set | ||
241 | CONFIG_FORCE_MAX_ZONEORDER=11 | 246 | CONFIG_FORCE_MAX_ZONEORDER=11 |
242 | CONFIG_PROC_DEVICETREE=y | 247 | CONFIG_PROC_DEVICETREE=y |
243 | # CONFIG_CMDLINE_BOOL is not set | 248 | # CONFIG_CMDLINE_BOOL is not set |
@@ -279,6 +284,7 @@ CONFIG_NET=y | |||
279 | # | 284 | # |
280 | # Networking options | 285 | # Networking options |
281 | # | 286 | # |
287 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
282 | CONFIG_PACKET=y | 288 | CONFIG_PACKET=y |
283 | # CONFIG_PACKET_MMAP is not set | 289 | # CONFIG_PACKET_MMAP is not set |
284 | CONFIG_UNIX=y | 290 | CONFIG_UNIX=y |
@@ -330,6 +336,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
330 | # CONFIG_ECONET is not set | 336 | # CONFIG_ECONET is not set |
331 | # CONFIG_WAN_ROUTER is not set | 337 | # CONFIG_WAN_ROUTER is not set |
332 | # CONFIG_NET_SCHED is not set | 338 | # CONFIG_NET_SCHED is not set |
339 | # CONFIG_DCB is not set | ||
333 | 340 | ||
334 | # | 341 | # |
335 | # Network testing | 342 | # Network testing |
@@ -345,8 +352,9 @@ CONFIG_WIRELESS=y | |||
345 | # CONFIG_CFG80211 is not set | 352 | # CONFIG_CFG80211 is not set |
346 | CONFIG_WIRELESS_OLD_REGULATORY=y | 353 | CONFIG_WIRELESS_OLD_REGULATORY=y |
347 | # CONFIG_WIRELESS_EXT is not set | 354 | # CONFIG_WIRELESS_EXT is not set |
355 | # CONFIG_LIB80211 is not set | ||
348 | # CONFIG_MAC80211 is not set | 356 | # CONFIG_MAC80211 is not set |
349 | # CONFIG_IEEE80211 is not set | 357 | # CONFIG_WIMAX is not set |
350 | # CONFIG_RFKILL is not set | 358 | # CONFIG_RFKILL is not set |
351 | # CONFIG_NET_9P is not set | 359 | # CONFIG_NET_9P is not set |
352 | 360 | ||
@@ -439,6 +447,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
439 | # CONFIG_MTD_ONENAND is not set | 447 | # CONFIG_MTD_ONENAND is not set |
440 | 448 | ||
441 | # | 449 | # |
450 | # LPDDR flash memory drivers | ||
451 | # | ||
452 | # CONFIG_MTD_LPDDR is not set | ||
453 | # CONFIG_MTD_QINFO_PROBE is not set | ||
454 | |||
455 | # | ||
442 | # UBI - Unsorted block images | 456 | # UBI - Unsorted block images |
443 | # | 457 | # |
444 | # CONFIG_MTD_UBI is not set | 458 | # CONFIG_MTD_UBI is not set |
@@ -481,6 +495,9 @@ CONFIG_DAVICOM_PHY=y | |||
481 | # CONFIG_BROADCOM_PHY is not set | 495 | # CONFIG_BROADCOM_PHY is not set |
482 | # CONFIG_ICPLUS_PHY is not set | 496 | # CONFIG_ICPLUS_PHY is not set |
483 | # CONFIG_REALTEK_PHY is not set | 497 | # CONFIG_REALTEK_PHY is not set |
498 | # CONFIG_NATIONAL_PHY is not set | ||
499 | # CONFIG_STE10XP is not set | ||
500 | # CONFIG_LSI_ET1011C_PHY is not set | ||
484 | # CONFIG_FIXED_PHY is not set | 501 | # CONFIG_FIXED_PHY is not set |
485 | # CONFIG_MDIO_BITBANG is not set | 502 | # CONFIG_MDIO_BITBANG is not set |
486 | CONFIG_NET_ETHERNET=y | 503 | CONFIG_NET_ETHERNET=y |
@@ -506,6 +523,10 @@ CONFIG_FS_ENET_MDIO_FEC=y | |||
506 | # CONFIG_WLAN_PRE80211 is not set | 523 | # CONFIG_WLAN_PRE80211 is not set |
507 | # CONFIG_WLAN_80211 is not set | 524 | # CONFIG_WLAN_80211 is not set |
508 | # CONFIG_IWLWIFI_LEDS is not set | 525 | # CONFIG_IWLWIFI_LEDS is not set |
526 | |||
527 | # | ||
528 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
529 | # | ||
509 | # CONFIG_WAN is not set | 530 | # CONFIG_WAN is not set |
510 | # CONFIG_PPP is not set | 531 | # CONFIG_PPP is not set |
511 | # CONFIG_SLIP is not set | 532 | # CONFIG_SLIP is not set |
@@ -547,7 +568,9 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
547 | CONFIG_SERIAL_CPM=y | 568 | CONFIG_SERIAL_CPM=y |
548 | CONFIG_SERIAL_CPM_CONSOLE=y | 569 | CONFIG_SERIAL_CPM_CONSOLE=y |
549 | CONFIG_UNIX98_PTYS=y | 570 | CONFIG_UNIX98_PTYS=y |
571 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
550 | # CONFIG_LEGACY_PTYS is not set | 572 | # CONFIG_LEGACY_PTYS is not set |
573 | # CONFIG_HVC_UDBG is not set | ||
551 | # CONFIG_IPMI_HANDLER is not set | 574 | # CONFIG_IPMI_HANDLER is not set |
552 | CONFIG_HW_RANDOM=y | 575 | CONFIG_HW_RANDOM=y |
553 | # CONFIG_NVRAM is not set | 576 | # CONFIG_NVRAM is not set |
@@ -566,11 +589,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
566 | # CONFIG_THERMAL is not set | 589 | # CONFIG_THERMAL is not set |
567 | # CONFIG_THERMAL_HWMON is not set | 590 | # CONFIG_THERMAL_HWMON is not set |
568 | # CONFIG_WATCHDOG is not set | 591 | # CONFIG_WATCHDOG is not set |
592 | CONFIG_SSB_POSSIBLE=y | ||
569 | 593 | ||
570 | # | 594 | # |
571 | # Sonics Silicon Backplane | 595 | # Sonics Silicon Backplane |
572 | # | 596 | # |
573 | CONFIG_SSB_POSSIBLE=y | ||
574 | # CONFIG_SSB is not set | 597 | # CONFIG_SSB is not set |
575 | 598 | ||
576 | # | 599 | # |
@@ -580,14 +603,7 @@ CONFIG_SSB_POSSIBLE=y | |||
580 | # CONFIG_MFD_SM501 is not set | 603 | # CONFIG_MFD_SM501 is not set |
581 | # CONFIG_HTC_PASIC3 is not set | 604 | # CONFIG_HTC_PASIC3 is not set |
582 | # CONFIG_MFD_TMIO is not set | 605 | # CONFIG_MFD_TMIO is not set |
583 | |||
584 | # | ||
585 | # Voltage and Current regulators | ||
586 | # | ||
587 | # CONFIG_REGULATOR is not set | 606 | # CONFIG_REGULATOR is not set |
588 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
589 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
590 | # CONFIG_REGULATOR_BQ24022 is not set | ||
591 | 607 | ||
592 | # | 608 | # |
593 | # Multimedia devices | 609 | # Multimedia devices |
@@ -641,6 +657,7 @@ CONFIG_DAB=y | |||
641 | CONFIG_FILE_LOCKING=y | 657 | CONFIG_FILE_LOCKING=y |
642 | # CONFIG_XFS_FS is not set | 658 | # CONFIG_XFS_FS is not set |
643 | # CONFIG_OCFS2_FS is not set | 659 | # CONFIG_OCFS2_FS is not set |
660 | # CONFIG_BTRFS_FS is not set | ||
644 | # CONFIG_DNOTIFY is not set | 661 | # CONFIG_DNOTIFY is not set |
645 | # CONFIG_INOTIFY is not set | 662 | # CONFIG_INOTIFY is not set |
646 | # CONFIG_QUOTA is not set | 663 | # CONFIG_QUOTA is not set |
@@ -673,10 +690,7 @@ CONFIG_TMPFS=y | |||
673 | # CONFIG_TMPFS_POSIX_ACL is not set | 690 | # CONFIG_TMPFS_POSIX_ACL is not set |
674 | # CONFIG_HUGETLB_PAGE is not set | 691 | # CONFIG_HUGETLB_PAGE is not set |
675 | # CONFIG_CONFIGFS_FS is not set | 692 | # CONFIG_CONFIGFS_FS is not set |
676 | 693 | CONFIG_MISC_FILESYSTEMS=y | |
677 | # | ||
678 | # Miscellaneous filesystems | ||
679 | # | ||
680 | # CONFIG_ADFS_FS is not set | 694 | # CONFIG_ADFS_FS is not set |
681 | # CONFIG_AFFS_FS is not set | 695 | # CONFIG_AFFS_FS is not set |
682 | # CONFIG_HFS_FS is not set | 696 | # CONFIG_HFS_FS is not set |
@@ -686,6 +700,7 @@ CONFIG_TMPFS=y | |||
686 | # CONFIG_EFS_FS is not set | 700 | # CONFIG_EFS_FS is not set |
687 | # CONFIG_JFFS2_FS is not set | 701 | # CONFIG_JFFS2_FS is not set |
688 | CONFIG_CRAMFS=y | 702 | CONFIG_CRAMFS=y |
703 | # CONFIG_SQUASHFS is not set | ||
689 | # CONFIG_VXFS_FS is not set | 704 | # CONFIG_VXFS_FS is not set |
690 | # CONFIG_MINIX_FS is not set | 705 | # CONFIG_MINIX_FS is not set |
691 | # CONFIG_OMFS_FS is not set | 706 | # CONFIG_OMFS_FS is not set |
@@ -741,6 +756,7 @@ CONFIG_MSDOS_PARTITION=y | |||
741 | # | 756 | # |
742 | # Library routines | 757 | # Library routines |
743 | # | 758 | # |
759 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
744 | # CONFIG_CRC_CCITT is not set | 760 | # CONFIG_CRC_CCITT is not set |
745 | # CONFIG_CRC16 is not set | 761 | # CONFIG_CRC16 is not set |
746 | # CONFIG_CRC_T10DIF is not set | 762 | # CONFIG_CRC_T10DIF is not set |
@@ -788,6 +804,7 @@ CONFIG_DEBUG_INFO=y | |||
788 | # CONFIG_DEBUG_MEMORY_INIT is not set | 804 | # CONFIG_DEBUG_MEMORY_INIT is not set |
789 | # CONFIG_DEBUG_LIST is not set | 805 | # CONFIG_DEBUG_LIST is not set |
790 | # CONFIG_DEBUG_SG is not set | 806 | # CONFIG_DEBUG_SG is not set |
807 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
791 | # CONFIG_BOOT_PRINTK_DELAY is not set | 808 | # CONFIG_BOOT_PRINTK_DELAY is not set |
792 | # CONFIG_RCU_TORTURE_TEST is not set | 809 | # CONFIG_RCU_TORTURE_TEST is not set |
793 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 810 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -796,6 +813,8 @@ CONFIG_DEBUG_INFO=y | |||
796 | # CONFIG_FAULT_INJECTION is not set | 813 | # CONFIG_FAULT_INJECTION is not set |
797 | # CONFIG_LATENCYTOP is not set | 814 | # CONFIG_LATENCYTOP is not set |
798 | CONFIG_HAVE_FUNCTION_TRACER=y | 815 | CONFIG_HAVE_FUNCTION_TRACER=y |
816 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
817 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
799 | 818 | ||
800 | # | 819 | # |
801 | # Tracers | 820 | # Tracers |
@@ -804,11 +823,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
804 | # CONFIG_SCHED_TRACER is not set | 823 | # CONFIG_SCHED_TRACER is not set |
805 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 824 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
806 | # CONFIG_BOOT_TRACER is not set | 825 | # CONFIG_BOOT_TRACER is not set |
826 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
807 | # CONFIG_STACK_TRACER is not set | 827 | # CONFIG_STACK_TRACER is not set |
808 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 828 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
809 | # CONFIG_SAMPLES is not set | 829 | # CONFIG_SAMPLES is not set |
810 | CONFIG_HAVE_ARCH_KGDB=y | 830 | CONFIG_HAVE_ARCH_KGDB=y |
811 | # CONFIG_KGDB is not set | 831 | # CONFIG_KGDB is not set |
832 | CONFIG_PRINT_STACK_DEPTH=64 | ||
812 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 833 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
813 | # CONFIG_DEBUG_STACK_USAGE is not set | 834 | # CONFIG_DEBUG_STACK_USAGE is not set |
814 | # CONFIG_DEBUG_PAGEALLOC is not set | 835 | # CONFIG_DEBUG_PAGEALLOC is not set |
diff --git a/arch/powerpc/configs/ppc40x_defconfig b/arch/powerpc/configs/ppc40x_defconfig index 2d72ee7a8d60..326205cabf77 100644 --- a/arch/powerpc/configs/ppc40x_defconfig +++ b/arch/powerpc/configs/ppc40x_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc4 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Fri Nov 14 09:54:44 2008 | 4 | # Fri Jan 23 08:44:03 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_40x=y | |||
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_4xx=y | 17 | CONFIG_4xx=y |
18 | CONFIG_PPC_MMU_NOHASH=y | ||
18 | # CONFIG_PPC_MM_SLICES is not set | 19 | # CONFIG_PPC_MM_SLICES is not set |
19 | CONFIG_NOT_COHERENT_CACHE=y | 20 | CONFIG_NOT_COHERENT_CACHE=y |
20 | CONFIG_PPC32=y | 21 | CONFIG_PPC32=y |
@@ -41,7 +42,7 @@ CONFIG_GENERIC_GPIO=y | |||
41 | CONFIG_PPC=y | 42 | CONFIG_PPC=y |
42 | CONFIG_EARLY_PRINTK=y | 43 | CONFIG_EARLY_PRINTK=y |
43 | CONFIG_GENERIC_NVRAM=y | 44 | CONFIG_GENERIC_NVRAM=y |
44 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 45 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 46 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
46 | CONFIG_PPC_OF=y | 47 | CONFIG_PPC_OF=y |
47 | CONFIG_OF=y | 48 | CONFIG_OF=y |
@@ -72,12 +73,12 @@ CONFIG_POSIX_MQUEUE=y | |||
72 | # CONFIG_AUDIT is not set | 73 | # CONFIG_AUDIT is not set |
73 | # CONFIG_IKCONFIG is not set | 74 | # CONFIG_IKCONFIG is not set |
74 | CONFIG_LOG_BUF_SHIFT=14 | 75 | CONFIG_LOG_BUF_SHIFT=14 |
75 | # CONFIG_CGROUPS is not set | ||
76 | CONFIG_GROUP_SCHED=y | 76 | CONFIG_GROUP_SCHED=y |
77 | CONFIG_FAIR_GROUP_SCHED=y | 77 | CONFIG_FAIR_GROUP_SCHED=y |
78 | # CONFIG_RT_GROUP_SCHED is not set | 78 | # CONFIG_RT_GROUP_SCHED is not set |
79 | CONFIG_USER_SCHED=y | 79 | CONFIG_USER_SCHED=y |
80 | # CONFIG_CGROUP_SCHED is not set | 80 | # CONFIG_CGROUP_SCHED is not set |
81 | # CONFIG_CGROUPS is not set | ||
81 | CONFIG_SYSFS_DEPRECATED=y | 82 | CONFIG_SYSFS_DEPRECATED=y |
82 | CONFIG_SYSFS_DEPRECATED_V2=y | 83 | CONFIG_SYSFS_DEPRECATED_V2=y |
83 | # CONFIG_RELAY is not set | 84 | # CONFIG_RELAY is not set |
@@ -90,6 +91,7 @@ CONFIG_EMBEDDED=y | |||
90 | CONFIG_SYSCTL_SYSCALL=y | 91 | CONFIG_SYSCTL_SYSCALL=y |
91 | CONFIG_KALLSYMS=y | 92 | CONFIG_KALLSYMS=y |
92 | CONFIG_KALLSYMS_ALL=y | 93 | CONFIG_KALLSYMS_ALL=y |
94 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
93 | CONFIG_KALLSYMS_EXTRA_PASS=y | 95 | CONFIG_KALLSYMS_EXTRA_PASS=y |
94 | CONFIG_HOTPLUG=y | 96 | CONFIG_HOTPLUG=y |
95 | CONFIG_PRINTK=y | 97 | CONFIG_PRINTK=y |
@@ -112,7 +114,6 @@ CONFIG_SLUB_DEBUG=y | |||
112 | CONFIG_SLUB=y | 114 | CONFIG_SLUB=y |
113 | # CONFIG_SLOB is not set | 115 | # CONFIG_SLOB is not set |
114 | # CONFIG_PROFILING is not set | 116 | # CONFIG_PROFILING is not set |
115 | # CONFIG_MARKERS is not set | ||
116 | CONFIG_HAVE_OPROFILE=y | 117 | CONFIG_HAVE_OPROFILE=y |
117 | # CONFIG_KPROBES is not set | 118 | # CONFIG_KPROBES is not set |
118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -123,7 +124,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
124 | CONFIG_SLABINFO=y | 125 | CONFIG_SLABINFO=y |
125 | CONFIG_RT_MUTEXES=y | 126 | CONFIG_RT_MUTEXES=y |
126 | # CONFIG_TINY_SHMEM is not set | ||
127 | CONFIG_BASE_SMALL=0 | 127 | CONFIG_BASE_SMALL=0 |
128 | CONFIG_MODULES=y | 128 | CONFIG_MODULES=y |
129 | # CONFIG_MODULE_FORCE_LOAD is not set | 129 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -131,11 +131,9 @@ CONFIG_MODULE_UNLOAD=y | |||
131 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 131 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
132 | # CONFIG_MODVERSIONS is not set | 132 | # CONFIG_MODVERSIONS is not set |
133 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 133 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
134 | CONFIG_KMOD=y | ||
135 | CONFIG_BLOCK=y | 134 | CONFIG_BLOCK=y |
136 | CONFIG_LBD=y | 135 | CONFIG_LBD=y |
137 | # CONFIG_BLK_DEV_IO_TRACE is not set | 136 | # CONFIG_BLK_DEV_IO_TRACE is not set |
138 | # CONFIG_LSF is not set | ||
139 | # CONFIG_BLK_DEV_BSG is not set | 137 | # CONFIG_BLK_DEV_BSG is not set |
140 | # CONFIG_BLK_DEV_INTEGRITY is not set | 138 | # CONFIG_BLK_DEV_INTEGRITY is not set |
141 | 139 | ||
@@ -152,6 +150,10 @@ CONFIG_DEFAULT_AS=y | |||
152 | # CONFIG_DEFAULT_NOOP is not set | 150 | # CONFIG_DEFAULT_NOOP is not set |
153 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 151 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
154 | CONFIG_CLASSIC_RCU=y | 152 | CONFIG_CLASSIC_RCU=y |
153 | # CONFIG_TREE_RCU is not set | ||
154 | # CONFIG_PREEMPT_RCU is not set | ||
155 | # CONFIG_TREE_RCU_TRACE is not set | ||
156 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
155 | # CONFIG_FREEZER is not set | 157 | # CONFIG_FREEZER is not set |
156 | CONFIG_PPC4xx_PCI_EXPRESS=y | 158 | CONFIG_PPC4xx_PCI_EXPRESS=y |
157 | 159 | ||
@@ -192,6 +194,7 @@ CONFIG_IBM405_ERR51=y | |||
192 | # CONFIG_CPU_FREQ is not set | 194 | # CONFIG_CPU_FREQ is not set |
193 | # CONFIG_FSL_ULI1575 is not set | 195 | # CONFIG_FSL_ULI1575 is not set |
194 | CONFIG_OF_RTC=y | 196 | CONFIG_OF_RTC=y |
197 | # CONFIG_SIMPLE_GPIO is not set | ||
195 | 198 | ||
196 | # | 199 | # |
197 | # Kernel options | 200 | # Kernel options |
@@ -215,6 +218,7 @@ CONFIG_BINFMT_ELF=y | |||
215 | # CONFIG_BINFMT_MISC is not set | 218 | # CONFIG_BINFMT_MISC is not set |
216 | # CONFIG_MATH_EMULATION is not set | 219 | # CONFIG_MATH_EMULATION is not set |
217 | # CONFIG_IOMMU_HELPER is not set | 220 | # CONFIG_IOMMU_HELPER is not set |
221 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
218 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 222 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
219 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 223 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
220 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 224 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -229,12 +233,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
229 | CONFIG_PAGEFLAGS_EXTENDED=y | 233 | CONFIG_PAGEFLAGS_EXTENDED=y |
230 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 234 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
231 | CONFIG_MIGRATION=y | 235 | CONFIG_MIGRATION=y |
232 | CONFIG_RESOURCES_64BIT=y | ||
233 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 236 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
234 | CONFIG_ZONE_DMA_FLAG=1 | 237 | CONFIG_ZONE_DMA_FLAG=1 |
235 | CONFIG_BOUNCE=y | 238 | CONFIG_BOUNCE=y |
236 | CONFIG_VIRT_TO_BUS=y | 239 | CONFIG_VIRT_TO_BUS=y |
237 | CONFIG_UNEVICTABLE_LRU=y | 240 | CONFIG_UNEVICTABLE_LRU=y |
241 | CONFIG_PPC_4K_PAGES=y | ||
242 | # CONFIG_PPC_16K_PAGES is not set | ||
243 | # CONFIG_PPC_64K_PAGES is not set | ||
238 | CONFIG_FORCE_MAX_ZONEORDER=11 | 244 | CONFIG_FORCE_MAX_ZONEORDER=11 |
239 | CONFIG_PROC_DEVICETREE=y | 245 | CONFIG_PROC_DEVICETREE=y |
240 | # CONFIG_CMDLINE_BOOL is not set | 246 | # CONFIG_CMDLINE_BOOL is not set |
@@ -258,6 +264,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
258 | # CONFIG_PCI_MSI is not set | 264 | # CONFIG_PCI_MSI is not set |
259 | # CONFIG_PCI_LEGACY is not set | 265 | # CONFIG_PCI_LEGACY is not set |
260 | # CONFIG_PCI_DEBUG is not set | 266 | # CONFIG_PCI_DEBUG is not set |
267 | # CONFIG_PCI_STUB is not set | ||
261 | # CONFIG_PCCARD is not set | 268 | # CONFIG_PCCARD is not set |
262 | # CONFIG_HOTPLUG_PCI is not set | 269 | # CONFIG_HOTPLUG_PCI is not set |
263 | # CONFIG_HAS_RAPIDIO is not set | 270 | # CONFIG_HAS_RAPIDIO is not set |
@@ -282,6 +289,7 @@ CONFIG_NET=y | |||
282 | # | 289 | # |
283 | # Networking options | 290 | # Networking options |
284 | # | 291 | # |
292 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
285 | CONFIG_PACKET=y | 293 | CONFIG_PACKET=y |
286 | # CONFIG_PACKET_MMAP is not set | 294 | # CONFIG_PACKET_MMAP is not set |
287 | CONFIG_UNIX=y | 295 | CONFIG_UNIX=y |
@@ -355,6 +363,7 @@ CONFIG_IPV6_NDISC_NODETYPE=y | |||
355 | # CONFIG_ECONET is not set | 363 | # CONFIG_ECONET is not set |
356 | # CONFIG_WAN_ROUTER is not set | 364 | # CONFIG_WAN_ROUTER is not set |
357 | # CONFIG_NET_SCHED is not set | 365 | # CONFIG_NET_SCHED is not set |
366 | # CONFIG_DCB is not set | ||
358 | 367 | ||
359 | # | 368 | # |
360 | # Network testing | 369 | # Network testing |
@@ -370,8 +379,9 @@ CONFIG_WIRELESS=y | |||
370 | # CONFIG_CFG80211 is not set | 379 | # CONFIG_CFG80211 is not set |
371 | CONFIG_WIRELESS_OLD_REGULATORY=y | 380 | CONFIG_WIRELESS_OLD_REGULATORY=y |
372 | # CONFIG_WIRELESS_EXT is not set | 381 | # CONFIG_WIRELESS_EXT is not set |
382 | # CONFIG_LIB80211 is not set | ||
373 | # CONFIG_MAC80211 is not set | 383 | # CONFIG_MAC80211 is not set |
374 | # CONFIG_IEEE80211 is not set | 384 | # CONFIG_WIMAX is not set |
375 | # CONFIG_RFKILL is not set | 385 | # CONFIG_RFKILL is not set |
376 | # CONFIG_NET_9P is not set | 386 | # CONFIG_NET_9P is not set |
377 | 387 | ||
@@ -397,6 +407,7 @@ CONFIG_MTD=y | |||
397 | # CONFIG_MTD_DEBUG is not set | 407 | # CONFIG_MTD_DEBUG is not set |
398 | # CONFIG_MTD_CONCAT is not set | 408 | # CONFIG_MTD_CONCAT is not set |
399 | CONFIG_MTD_PARTITIONS=y | 409 | CONFIG_MTD_PARTITIONS=y |
410 | # CONFIG_MTD_TESTS is not set | ||
400 | # CONFIG_MTD_REDBOOT_PARTS is not set | 411 | # CONFIG_MTD_REDBOOT_PARTS is not set |
401 | CONFIG_MTD_CMDLINE_PARTS=y | 412 | CONFIG_MTD_CMDLINE_PARTS=y |
402 | CONFIG_MTD_OF_PARTS=y | 413 | CONFIG_MTD_OF_PARTS=y |
@@ -469,6 +480,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
469 | # CONFIG_MTD_ONENAND is not set | 480 | # CONFIG_MTD_ONENAND is not set |
470 | 481 | ||
471 | # | 482 | # |
483 | # LPDDR flash memory drivers | ||
484 | # | ||
485 | # CONFIG_MTD_LPDDR is not set | ||
486 | # CONFIG_MTD_QINFO_PROBE is not set | ||
487 | |||
488 | # | ||
472 | # UBI - Unsorted block images | 489 | # UBI - Unsorted block images |
473 | # | 490 | # |
474 | CONFIG_MTD_UBI=m | 491 | CONFIG_MTD_UBI=m |
@@ -593,6 +610,7 @@ CONFIG_NETDEV_1000=y | |||
593 | # CONFIG_JME is not set | 610 | # CONFIG_JME is not set |
594 | CONFIG_NETDEV_10000=y | 611 | CONFIG_NETDEV_10000=y |
595 | # CONFIG_CHELSIO_T1 is not set | 612 | # CONFIG_CHELSIO_T1 is not set |
613 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
596 | # CONFIG_CHELSIO_T3 is not set | 614 | # CONFIG_CHELSIO_T3 is not set |
597 | # CONFIG_ENIC is not set | 615 | # CONFIG_ENIC is not set |
598 | # CONFIG_IXGBE is not set | 616 | # CONFIG_IXGBE is not set |
@@ -615,6 +633,10 @@ CONFIG_NETDEV_10000=y | |||
615 | # CONFIG_WLAN_PRE80211 is not set | 633 | # CONFIG_WLAN_PRE80211 is not set |
616 | # CONFIG_WLAN_80211 is not set | 634 | # CONFIG_WLAN_80211 is not set |
617 | # CONFIG_IWLWIFI_LEDS is not set | 635 | # CONFIG_IWLWIFI_LEDS is not set |
636 | |||
637 | # | ||
638 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
639 | # | ||
618 | # CONFIG_WAN is not set | 640 | # CONFIG_WAN is not set |
619 | # CONFIG_FDDI is not set | 641 | # CONFIG_FDDI is not set |
620 | # CONFIG_HIPPI is not set | 642 | # CONFIG_HIPPI is not set |
@@ -674,9 +696,12 @@ CONFIG_SERIAL_CORE=y | |||
674 | CONFIG_SERIAL_CORE_CONSOLE=y | 696 | CONFIG_SERIAL_CORE_CONSOLE=y |
675 | # CONFIG_SERIAL_JSM is not set | 697 | # CONFIG_SERIAL_JSM is not set |
676 | CONFIG_SERIAL_OF_PLATFORM=y | 698 | CONFIG_SERIAL_OF_PLATFORM=y |
699 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
677 | CONFIG_UNIX98_PTYS=y | 700 | CONFIG_UNIX98_PTYS=y |
701 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
678 | CONFIG_LEGACY_PTYS=y | 702 | CONFIG_LEGACY_PTYS=y |
679 | CONFIG_LEGACY_PTY_COUNT=256 | 703 | CONFIG_LEGACY_PTY_COUNT=256 |
704 | # CONFIG_HVC_UDBG is not set | ||
680 | # CONFIG_IPMI_HANDLER is not set | 705 | # CONFIG_IPMI_HANDLER is not set |
681 | # CONFIG_HW_RANDOM is not set | 706 | # CONFIG_HW_RANDOM is not set |
682 | # CONFIG_NVRAM is not set | 707 | # CONFIG_NVRAM is not set |
@@ -751,7 +776,6 @@ CONFIG_I2C_IBM_IIC=m | |||
751 | # CONFIG_PCF8575 is not set | 776 | # CONFIG_PCF8575 is not set |
752 | # CONFIG_SENSORS_PCA9539 is not set | 777 | # CONFIG_SENSORS_PCA9539 is not set |
753 | # CONFIG_SENSORS_PCF8591 is not set | 778 | # CONFIG_SENSORS_PCF8591 is not set |
754 | # CONFIG_TPS65010 is not set | ||
755 | # CONFIG_SENSORS_MAX6875 is not set | 779 | # CONFIG_SENSORS_MAX6875 is not set |
756 | # CONFIG_SENSORS_TSL2550 is not set | 780 | # CONFIG_SENSORS_TSL2550 is not set |
757 | # CONFIG_I2C_DEBUG_CORE is not set | 781 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -803,9 +827,11 @@ CONFIG_SSB_POSSIBLE=y | |||
803 | # CONFIG_MFD_CORE is not set | 827 | # CONFIG_MFD_CORE is not set |
804 | # CONFIG_MFD_SM501 is not set | 828 | # CONFIG_MFD_SM501 is not set |
805 | # CONFIG_HTC_PASIC3 is not set | 829 | # CONFIG_HTC_PASIC3 is not set |
830 | # CONFIG_TPS65010 is not set | ||
806 | # CONFIG_MFD_TMIO is not set | 831 | # CONFIG_MFD_TMIO is not set |
807 | # CONFIG_MFD_WM8400 is not set | 832 | # CONFIG_MFD_WM8400 is not set |
808 | # CONFIG_MFD_WM8350_I2C is not set | 833 | # CONFIG_MFD_WM8350_I2C is not set |
834 | # CONFIG_MFD_PCF50633 is not set | ||
809 | # CONFIG_REGULATOR is not set | 835 | # CONFIG_REGULATOR is not set |
810 | 836 | ||
811 | # | 837 | # |
@@ -904,9 +930,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
904 | # | 930 | # |
905 | 931 | ||
906 | # | 932 | # |
907 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 933 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
908 | # | 934 | # |
909 | # CONFIG_USB_GADGET is not set | 935 | # CONFIG_USB_GADGET is not set |
936 | |||
937 | # | ||
938 | # OTG and related infrastructure | ||
939 | # | ||
910 | # CONFIG_UWB is not set | 940 | # CONFIG_UWB is not set |
911 | # CONFIG_MMC is not set | 941 | # CONFIG_MMC is not set |
912 | # CONFIG_MEMSTICK is not set | 942 | # CONFIG_MEMSTICK is not set |
@@ -918,7 +948,6 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
918 | # CONFIG_DMADEVICES is not set | 948 | # CONFIG_DMADEVICES is not set |
919 | # CONFIG_UIO is not set | 949 | # CONFIG_UIO is not set |
920 | # CONFIG_STAGING is not set | 950 | # CONFIG_STAGING is not set |
921 | CONFIG_STAGING_EXCLUDE_BUILD=y | ||
922 | 951 | ||
923 | # | 952 | # |
924 | # File systems | 953 | # File systems |
@@ -939,7 +968,9 @@ CONFIG_FS_MBCACHE=m | |||
939 | # CONFIG_FS_POSIX_ACL is not set | 968 | # CONFIG_FS_POSIX_ACL is not set |
940 | CONFIG_FILE_LOCKING=y | 969 | CONFIG_FILE_LOCKING=y |
941 | # CONFIG_XFS_FS is not set | 970 | # CONFIG_XFS_FS is not set |
971 | # CONFIG_GFS2_FS is not set | ||
942 | # CONFIG_OCFS2_FS is not set | 972 | # CONFIG_OCFS2_FS is not set |
973 | # CONFIG_BTRFS_FS is not set | ||
943 | CONFIG_DNOTIFY=y | 974 | CONFIG_DNOTIFY=y |
944 | CONFIG_INOTIFY=y | 975 | CONFIG_INOTIFY=y |
945 | CONFIG_INOTIFY_USER=y | 976 | CONFIG_INOTIFY_USER=y |
@@ -976,10 +1007,7 @@ CONFIG_TMPFS=y | |||
976 | # CONFIG_TMPFS_POSIX_ACL is not set | 1007 | # CONFIG_TMPFS_POSIX_ACL is not set |
977 | # CONFIG_HUGETLB_PAGE is not set | 1008 | # CONFIG_HUGETLB_PAGE is not set |
978 | # CONFIG_CONFIGFS_FS is not set | 1009 | # CONFIG_CONFIGFS_FS is not set |
979 | 1010 | CONFIG_MISC_FILESYSTEMS=y | |
980 | # | ||
981 | # Miscellaneous filesystems | ||
982 | # | ||
983 | # CONFIG_ADFS_FS is not set | 1011 | # CONFIG_ADFS_FS is not set |
984 | # CONFIG_AFFS_FS is not set | 1012 | # CONFIG_AFFS_FS is not set |
985 | # CONFIG_HFS_FS is not set | 1013 | # CONFIG_HFS_FS is not set |
@@ -1005,6 +1033,7 @@ CONFIG_UBIFS_FS_LZO=y | |||
1005 | CONFIG_UBIFS_FS_ZLIB=y | 1033 | CONFIG_UBIFS_FS_ZLIB=y |
1006 | # CONFIG_UBIFS_FS_DEBUG is not set | 1034 | # CONFIG_UBIFS_FS_DEBUG is not set |
1007 | CONFIG_CRAMFS=y | 1035 | CONFIG_CRAMFS=y |
1036 | # CONFIG_SQUASHFS is not set | ||
1008 | # CONFIG_VXFS_FS is not set | 1037 | # CONFIG_VXFS_FS is not set |
1009 | # CONFIG_MINIX_FS is not set | 1038 | # CONFIG_MINIX_FS is not set |
1010 | # CONFIG_OMFS_FS is not set | 1039 | # CONFIG_OMFS_FS is not set |
@@ -1084,6 +1113,7 @@ CONFIG_NLS_ISO8859_1=m | |||
1084 | # Library routines | 1113 | # Library routines |
1085 | # | 1114 | # |
1086 | CONFIG_BITREVERSE=y | 1115 | CONFIG_BITREVERSE=y |
1116 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1087 | # CONFIG_CRC_CCITT is not set | 1117 | # CONFIG_CRC_CCITT is not set |
1088 | CONFIG_CRC16=m | 1118 | CONFIG_CRC16=m |
1089 | # CONFIG_CRC_T10DIF is not set | 1119 | # CONFIG_CRC_T10DIF is not set |
@@ -1137,6 +1167,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
1137 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1167 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1138 | # CONFIG_DEBUG_LIST is not set | 1168 | # CONFIG_DEBUG_LIST is not set |
1139 | # CONFIG_DEBUG_SG is not set | 1169 | # CONFIG_DEBUG_SG is not set |
1170 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1140 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1171 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1141 | # CONFIG_RCU_TORTURE_TEST is not set | 1172 | # CONFIG_RCU_TORTURE_TEST is not set |
1142 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1173 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1146,6 +1177,8 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
1146 | # CONFIG_LATENCYTOP is not set | 1177 | # CONFIG_LATENCYTOP is not set |
1147 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1178 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1148 | CONFIG_HAVE_FUNCTION_TRACER=y | 1179 | CONFIG_HAVE_FUNCTION_TRACER=y |
1180 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1181 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1149 | 1182 | ||
1150 | # | 1183 | # |
1151 | # Tracers | 1184 | # Tracers |
@@ -1154,11 +1187,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1154 | # CONFIG_SCHED_TRACER is not set | 1187 | # CONFIG_SCHED_TRACER is not set |
1155 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1188 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1156 | # CONFIG_BOOT_TRACER is not set | 1189 | # CONFIG_BOOT_TRACER is not set |
1190 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1157 | # CONFIG_STACK_TRACER is not set | 1191 | # CONFIG_STACK_TRACER is not set |
1158 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1192 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1159 | # CONFIG_SAMPLES is not set | 1193 | # CONFIG_SAMPLES is not set |
1160 | CONFIG_HAVE_ARCH_KGDB=y | 1194 | CONFIG_HAVE_ARCH_KGDB=y |
1161 | # CONFIG_KGDB is not set | 1195 | # CONFIG_KGDB is not set |
1196 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1162 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1197 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1163 | # CONFIG_DEBUG_STACK_USAGE is not set | 1198 | # CONFIG_DEBUG_STACK_USAGE is not set |
1164 | # CONFIG_DEBUG_PAGEALLOC is not set | 1199 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1185,11 +1220,15 @@ CONFIG_CRYPTO=y | |||
1185 | # | 1220 | # |
1186 | # CONFIG_CRYPTO_FIPS is not set | 1221 | # CONFIG_CRYPTO_FIPS is not set |
1187 | CONFIG_CRYPTO_ALGAPI=y | 1222 | CONFIG_CRYPTO_ALGAPI=y |
1188 | CONFIG_CRYPTO_AEAD=y | 1223 | CONFIG_CRYPTO_ALGAPI2=y |
1224 | CONFIG_CRYPTO_AEAD2=y | ||
1189 | CONFIG_CRYPTO_BLKCIPHER=y | 1225 | CONFIG_CRYPTO_BLKCIPHER=y |
1226 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1190 | CONFIG_CRYPTO_HASH=y | 1227 | CONFIG_CRYPTO_HASH=y |
1191 | CONFIG_CRYPTO_RNG=y | 1228 | CONFIG_CRYPTO_HASH2=y |
1229 | CONFIG_CRYPTO_RNG2=y | ||
1192 | CONFIG_CRYPTO_MANAGER=y | 1230 | CONFIG_CRYPTO_MANAGER=y |
1231 | CONFIG_CRYPTO_MANAGER2=y | ||
1193 | # CONFIG_CRYPTO_GF128MUL is not set | 1232 | # CONFIG_CRYPTO_GF128MUL is not set |
1194 | # CONFIG_CRYPTO_NULL is not set | 1233 | # CONFIG_CRYPTO_NULL is not set |
1195 | # CONFIG_CRYPTO_CRYPTD is not set | 1234 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/ppc44x_defconfig b/arch/powerpc/configs/ppc44x_defconfig index 358b85f9270e..5e6d55f006bb 100644 --- a/arch/powerpc/configs/ppc44x_defconfig +++ b/arch/powerpc/configs/ppc44x_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc4 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Fri Nov 14 10:06:19 2008 | 4 | # Fri Jan 23 08:43:46 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -19,6 +19,7 @@ CONFIG_4xx=y | |||
19 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
20 | CONFIG_PTE_64BIT=y | 20 | CONFIG_PTE_64BIT=y |
21 | CONFIG_PHYS_64BIT=y | 21 | CONFIG_PHYS_64BIT=y |
22 | CONFIG_PPC_MMU_NOHASH=y | ||
22 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
23 | CONFIG_NOT_COHERENT_CACHE=y | 24 | CONFIG_NOT_COHERENT_CACHE=y |
24 | CONFIG_PPC32=y | 25 | CONFIG_PPC32=y |
@@ -45,7 +46,7 @@ CONFIG_GENERIC_GPIO=y | |||
45 | CONFIG_PPC=y | 46 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 47 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 48 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 49 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 50 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 51 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 52 | CONFIG_OF=y |
@@ -76,12 +77,12 @@ CONFIG_POSIX_MQUEUE=y | |||
76 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
77 | # CONFIG_IKCONFIG is not set | 78 | # CONFIG_IKCONFIG is not set |
78 | CONFIG_LOG_BUF_SHIFT=14 | 79 | CONFIG_LOG_BUF_SHIFT=14 |
79 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_GROUP_SCHED=y | 80 | CONFIG_GROUP_SCHED=y |
81 | CONFIG_FAIR_GROUP_SCHED=y | 81 | CONFIG_FAIR_GROUP_SCHED=y |
82 | # CONFIG_RT_GROUP_SCHED is not set | 82 | # CONFIG_RT_GROUP_SCHED is not set |
83 | CONFIG_USER_SCHED=y | 83 | CONFIG_USER_SCHED=y |
84 | # CONFIG_CGROUP_SCHED is not set | 84 | # CONFIG_CGROUP_SCHED is not set |
85 | # CONFIG_CGROUPS is not set | ||
85 | CONFIG_SYSFS_DEPRECATED=y | 86 | CONFIG_SYSFS_DEPRECATED=y |
86 | CONFIG_SYSFS_DEPRECATED_V2=y | 87 | CONFIG_SYSFS_DEPRECATED_V2=y |
87 | # CONFIG_RELAY is not set | 88 | # CONFIG_RELAY is not set |
@@ -94,6 +95,7 @@ CONFIG_EMBEDDED=y | |||
94 | CONFIG_SYSCTL_SYSCALL=y | 95 | CONFIG_SYSCTL_SYSCALL=y |
95 | CONFIG_KALLSYMS=y | 96 | CONFIG_KALLSYMS=y |
96 | CONFIG_KALLSYMS_ALL=y | 97 | CONFIG_KALLSYMS_ALL=y |
98 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
97 | CONFIG_KALLSYMS_EXTRA_PASS=y | 99 | CONFIG_KALLSYMS_EXTRA_PASS=y |
98 | CONFIG_HOTPLUG=y | 100 | CONFIG_HOTPLUG=y |
99 | CONFIG_PRINTK=y | 101 | CONFIG_PRINTK=y |
@@ -116,7 +118,6 @@ CONFIG_SLUB_DEBUG=y | |||
116 | CONFIG_SLUB=y | 118 | CONFIG_SLUB=y |
117 | # CONFIG_SLOB is not set | 119 | # CONFIG_SLOB is not set |
118 | # CONFIG_PROFILING is not set | 120 | # CONFIG_PROFILING is not set |
119 | # CONFIG_MARKERS is not set | ||
120 | CONFIG_HAVE_OPROFILE=y | 121 | CONFIG_HAVE_OPROFILE=y |
121 | # CONFIG_KPROBES is not set | 122 | # CONFIG_KPROBES is not set |
122 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 123 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -127,7 +128,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
127 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 128 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
128 | CONFIG_SLABINFO=y | 129 | CONFIG_SLABINFO=y |
129 | CONFIG_RT_MUTEXES=y | 130 | CONFIG_RT_MUTEXES=y |
130 | # CONFIG_TINY_SHMEM is not set | ||
131 | CONFIG_BASE_SMALL=0 | 131 | CONFIG_BASE_SMALL=0 |
132 | CONFIG_MODULES=y | 132 | CONFIG_MODULES=y |
133 | # CONFIG_MODULE_FORCE_LOAD is not set | 133 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -135,11 +135,9 @@ CONFIG_MODULE_UNLOAD=y | |||
135 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 135 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
136 | # CONFIG_MODVERSIONS is not set | 136 | # CONFIG_MODVERSIONS is not set |
137 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 137 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
138 | CONFIG_KMOD=y | ||
139 | CONFIG_BLOCK=y | 138 | CONFIG_BLOCK=y |
140 | CONFIG_LBD=y | 139 | CONFIG_LBD=y |
141 | # CONFIG_BLK_DEV_IO_TRACE is not set | 140 | # CONFIG_BLK_DEV_IO_TRACE is not set |
142 | # CONFIG_LSF is not set | ||
143 | # CONFIG_BLK_DEV_BSG is not set | 141 | # CONFIG_BLK_DEV_BSG is not set |
144 | # CONFIG_BLK_DEV_INTEGRITY is not set | 142 | # CONFIG_BLK_DEV_INTEGRITY is not set |
145 | 143 | ||
@@ -157,6 +155,10 @@ CONFIG_DEFAULT_AS=y | |||
157 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 155 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
158 | CONFIG_PREEMPT_NOTIFIERS=y | 156 | CONFIG_PREEMPT_NOTIFIERS=y |
159 | CONFIG_CLASSIC_RCU=y | 157 | CONFIG_CLASSIC_RCU=y |
158 | # CONFIG_TREE_RCU is not set | ||
159 | # CONFIG_PREEMPT_RCU is not set | ||
160 | # CONFIG_TREE_RCU_TRACE is not set | ||
161 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
160 | # CONFIG_FREEZER is not set | 162 | # CONFIG_FREEZER is not set |
161 | CONFIG_PPC4xx_PCI_EXPRESS=y | 163 | CONFIG_PPC4xx_PCI_EXPRESS=y |
162 | 164 | ||
@@ -204,6 +206,7 @@ CONFIG_XILINX_VIRTEX_5_FXT=y | |||
204 | # CONFIG_CPU_FREQ is not set | 206 | # CONFIG_CPU_FREQ is not set |
205 | # CONFIG_FSL_ULI1575 is not set | 207 | # CONFIG_FSL_ULI1575 is not set |
206 | CONFIG_OF_RTC=y | 208 | CONFIG_OF_RTC=y |
209 | # CONFIG_SIMPLE_GPIO is not set | ||
207 | 210 | ||
208 | # | 211 | # |
209 | # Kernel options | 212 | # Kernel options |
@@ -227,6 +230,7 @@ CONFIG_BINFMT_ELF=y | |||
227 | # CONFIG_BINFMT_MISC is not set | 230 | # CONFIG_BINFMT_MISC is not set |
228 | CONFIG_MATH_EMULATION=y | 231 | CONFIG_MATH_EMULATION=y |
229 | # CONFIG_IOMMU_HELPER is not set | 232 | # CONFIG_IOMMU_HELPER is not set |
233 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
230 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 234 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
231 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 235 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
232 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 236 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -241,12 +245,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
241 | CONFIG_PAGEFLAGS_EXTENDED=y | 245 | CONFIG_PAGEFLAGS_EXTENDED=y |
242 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 246 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
243 | CONFIG_MIGRATION=y | 247 | CONFIG_MIGRATION=y |
244 | CONFIG_RESOURCES_64BIT=y | ||
245 | CONFIG_PHYS_ADDR_T_64BIT=y | 248 | CONFIG_PHYS_ADDR_T_64BIT=y |
246 | CONFIG_ZONE_DMA_FLAG=1 | 249 | CONFIG_ZONE_DMA_FLAG=1 |
247 | CONFIG_BOUNCE=y | 250 | CONFIG_BOUNCE=y |
248 | CONFIG_VIRT_TO_BUS=y | 251 | CONFIG_VIRT_TO_BUS=y |
249 | CONFIG_UNEVICTABLE_LRU=y | 252 | CONFIG_UNEVICTABLE_LRU=y |
253 | CONFIG_PPC_4K_PAGES=y | ||
254 | # CONFIG_PPC_16K_PAGES is not set | ||
255 | # CONFIG_PPC_64K_PAGES is not set | ||
250 | CONFIG_FORCE_MAX_ZONEORDER=11 | 256 | CONFIG_FORCE_MAX_ZONEORDER=11 |
251 | CONFIG_PROC_DEVICETREE=y | 257 | CONFIG_PROC_DEVICETREE=y |
252 | # CONFIG_CMDLINE_BOOL is not set | 258 | # CONFIG_CMDLINE_BOOL is not set |
@@ -269,6 +275,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
269 | # CONFIG_PCI_MSI is not set | 275 | # CONFIG_PCI_MSI is not set |
270 | # CONFIG_PCI_LEGACY is not set | 276 | # CONFIG_PCI_LEGACY is not set |
271 | # CONFIG_PCI_DEBUG is not set | 277 | # CONFIG_PCI_DEBUG is not set |
278 | # CONFIG_PCI_STUB is not set | ||
272 | # CONFIG_PCCARD is not set | 279 | # CONFIG_PCCARD is not set |
273 | # CONFIG_HOTPLUG_PCI is not set | 280 | # CONFIG_HOTPLUG_PCI is not set |
274 | # CONFIG_HAS_RAPIDIO is not set | 281 | # CONFIG_HAS_RAPIDIO is not set |
@@ -293,6 +300,7 @@ CONFIG_NET=y | |||
293 | # | 300 | # |
294 | # Networking options | 301 | # Networking options |
295 | # | 302 | # |
303 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
296 | CONFIG_PACKET=y | 304 | CONFIG_PACKET=y |
297 | # CONFIG_PACKET_MMAP is not set | 305 | # CONFIG_PACKET_MMAP is not set |
298 | CONFIG_UNIX=y | 306 | CONFIG_UNIX=y |
@@ -354,10 +362,12 @@ CONFIG_IPV6_NDISC_NODETYPE=y | |||
354 | # CONFIG_IP_SCTP is not set | 362 | # CONFIG_IP_SCTP is not set |
355 | # CONFIG_TIPC is not set | 363 | # CONFIG_TIPC is not set |
356 | # CONFIG_ATM is not set | 364 | # CONFIG_ATM is not set |
365 | CONFIG_STP=m | ||
357 | CONFIG_BRIDGE=m | 366 | CONFIG_BRIDGE=m |
358 | # CONFIG_NET_DSA is not set | 367 | # CONFIG_NET_DSA is not set |
359 | # CONFIG_VLAN_8021Q is not set | 368 | # CONFIG_VLAN_8021Q is not set |
360 | # CONFIG_DECNET is not set | 369 | # CONFIG_DECNET is not set |
370 | CONFIG_LLC=m | ||
361 | # CONFIG_LLC2 is not set | 371 | # CONFIG_LLC2 is not set |
362 | # CONFIG_IPX is not set | 372 | # CONFIG_IPX is not set |
363 | # CONFIG_ATALK is not set | 373 | # CONFIG_ATALK is not set |
@@ -366,6 +376,7 @@ CONFIG_BRIDGE=m | |||
366 | # CONFIG_ECONET is not set | 376 | # CONFIG_ECONET is not set |
367 | # CONFIG_WAN_ROUTER is not set | 377 | # CONFIG_WAN_ROUTER is not set |
368 | # CONFIG_NET_SCHED is not set | 378 | # CONFIG_NET_SCHED is not set |
379 | # CONFIG_DCB is not set | ||
369 | 380 | ||
370 | # | 381 | # |
371 | # Network testing | 382 | # Network testing |
@@ -378,6 +389,7 @@ CONFIG_BRIDGE=m | |||
378 | # CONFIG_AF_RXRPC is not set | 389 | # CONFIG_AF_RXRPC is not set |
379 | # CONFIG_PHONET is not set | 390 | # CONFIG_PHONET is not set |
380 | # CONFIG_WIRELESS is not set | 391 | # CONFIG_WIRELESS is not set |
392 | # CONFIG_WIMAX is not set | ||
381 | # CONFIG_RFKILL is not set | 393 | # CONFIG_RFKILL is not set |
382 | # CONFIG_NET_9P is not set | 394 | # CONFIG_NET_9P is not set |
383 | 395 | ||
@@ -403,6 +415,7 @@ CONFIG_MTD=y | |||
403 | # CONFIG_MTD_DEBUG is not set | 415 | # CONFIG_MTD_DEBUG is not set |
404 | # CONFIG_MTD_CONCAT is not set | 416 | # CONFIG_MTD_CONCAT is not set |
405 | CONFIG_MTD_PARTITIONS=y | 417 | CONFIG_MTD_PARTITIONS=y |
418 | # CONFIG_MTD_TESTS is not set | ||
406 | # CONFIG_MTD_REDBOOT_PARTS is not set | 419 | # CONFIG_MTD_REDBOOT_PARTS is not set |
407 | # CONFIG_MTD_CMDLINE_PARTS is not set | 420 | # CONFIG_MTD_CMDLINE_PARTS is not set |
408 | CONFIG_MTD_OF_PARTS=y | 421 | CONFIG_MTD_OF_PARTS=y |
@@ -474,6 +487,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
474 | # CONFIG_MTD_ONENAND is not set | 487 | # CONFIG_MTD_ONENAND is not set |
475 | 488 | ||
476 | # | 489 | # |
490 | # LPDDR flash memory drivers | ||
491 | # | ||
492 | # CONFIG_MTD_LPDDR is not set | ||
493 | # CONFIG_MTD_QINFO_PROBE is not set | ||
494 | |||
495 | # | ||
477 | # UBI - Unsorted block images | 496 | # UBI - Unsorted block images |
478 | # | 497 | # |
479 | CONFIG_MTD_UBI=m | 498 | CONFIG_MTD_UBI=m |
@@ -631,6 +650,7 @@ CONFIG_NETDEV_1000=y | |||
631 | # CONFIG_JME is not set | 650 | # CONFIG_JME is not set |
632 | CONFIG_NETDEV_10000=y | 651 | CONFIG_NETDEV_10000=y |
633 | # CONFIG_CHELSIO_T1 is not set | 652 | # CONFIG_CHELSIO_T1 is not set |
653 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
634 | # CONFIG_CHELSIO_T3 is not set | 654 | # CONFIG_CHELSIO_T3 is not set |
635 | # CONFIG_ENIC is not set | 655 | # CONFIG_ENIC is not set |
636 | # CONFIG_IXGBE is not set | 656 | # CONFIG_IXGBE is not set |
@@ -655,6 +675,10 @@ CONFIG_NETDEV_10000=y | |||
655 | # CONFIG_IWLWIFI_LEDS is not set | 675 | # CONFIG_IWLWIFI_LEDS is not set |
656 | 676 | ||
657 | # | 677 | # |
678 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
679 | # | ||
680 | |||
681 | # | ||
658 | # USB Network Adapters | 682 | # USB Network Adapters |
659 | # | 683 | # |
660 | # CONFIG_USB_CATC is not set | 684 | # CONFIG_USB_CATC is not set |
@@ -722,9 +746,12 @@ CONFIG_SERIAL_CORE=y | |||
722 | CONFIG_SERIAL_CORE_CONSOLE=y | 746 | CONFIG_SERIAL_CORE_CONSOLE=y |
723 | # CONFIG_SERIAL_JSM is not set | 747 | # CONFIG_SERIAL_JSM is not set |
724 | CONFIG_SERIAL_OF_PLATFORM=y | 748 | CONFIG_SERIAL_OF_PLATFORM=y |
749 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
725 | CONFIG_UNIX98_PTYS=y | 750 | CONFIG_UNIX98_PTYS=y |
751 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
726 | CONFIG_LEGACY_PTYS=y | 752 | CONFIG_LEGACY_PTYS=y |
727 | CONFIG_LEGACY_PTY_COUNT=256 | 753 | CONFIG_LEGACY_PTY_COUNT=256 |
754 | # CONFIG_HVC_UDBG is not set | ||
728 | # CONFIG_IPMI_HANDLER is not set | 755 | # CONFIG_IPMI_HANDLER is not set |
729 | # CONFIG_HW_RANDOM is not set | 756 | # CONFIG_HW_RANDOM is not set |
730 | # CONFIG_NVRAM is not set | 757 | # CONFIG_NVRAM is not set |
@@ -800,7 +827,6 @@ CONFIG_I2C_IBM_IIC=m | |||
800 | # CONFIG_PCF8575 is not set | 827 | # CONFIG_PCF8575 is not set |
801 | # CONFIG_SENSORS_PCA9539 is not set | 828 | # CONFIG_SENSORS_PCA9539 is not set |
802 | # CONFIG_SENSORS_PCF8591 is not set | 829 | # CONFIG_SENSORS_PCF8591 is not set |
803 | # CONFIG_TPS65010 is not set | ||
804 | # CONFIG_SENSORS_MAX6875 is not set | 830 | # CONFIG_SENSORS_MAX6875 is not set |
805 | # CONFIG_SENSORS_TSL2550 is not set | 831 | # CONFIG_SENSORS_TSL2550 is not set |
806 | # CONFIG_I2C_DEBUG_CORE is not set | 832 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -853,9 +879,11 @@ CONFIG_SSB_POSSIBLE=y | |||
853 | # CONFIG_MFD_CORE is not set | 879 | # CONFIG_MFD_CORE is not set |
854 | # CONFIG_MFD_SM501 is not set | 880 | # CONFIG_MFD_SM501 is not set |
855 | # CONFIG_HTC_PASIC3 is not set | 881 | # CONFIG_HTC_PASIC3 is not set |
882 | # CONFIG_TPS65010 is not set | ||
856 | # CONFIG_MFD_TMIO is not set | 883 | # CONFIG_MFD_TMIO is not set |
857 | # CONFIG_MFD_WM8400 is not set | 884 | # CONFIG_MFD_WM8400 is not set |
858 | # CONFIG_MFD_WM8350_I2C is not set | 885 | # CONFIG_MFD_WM8350_I2C is not set |
886 | # CONFIG_MFD_PCF50633 is not set | ||
859 | # CONFIG_REGULATOR is not set | 887 | # CONFIG_REGULATOR is not set |
860 | 888 | ||
861 | # | 889 | # |
@@ -972,6 +1000,7 @@ CONFIG_USB_EHCI_HCD=m | |||
972 | CONFIG_USB_EHCI_BIG_ENDIAN_MMIO=y | 1000 | CONFIG_USB_EHCI_BIG_ENDIAN_MMIO=y |
973 | CONFIG_USB_EHCI_BIG_ENDIAN_DESC=y | 1001 | CONFIG_USB_EHCI_BIG_ENDIAN_DESC=y |
974 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1002 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1003 | # CONFIG_USB_OXU210HP_HCD is not set | ||
975 | # CONFIG_USB_ISP116X_HCD is not set | 1004 | # CONFIG_USB_ISP116X_HCD is not set |
976 | # CONFIG_USB_ISP1760_HCD is not set | 1005 | # CONFIG_USB_ISP1760_HCD is not set |
977 | CONFIG_USB_OHCI_HCD=m | 1006 | CONFIG_USB_OHCI_HCD=m |
@@ -1012,7 +1041,6 @@ CONFIG_USB_STORAGE=m | |||
1012 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1041 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1013 | # CONFIG_USB_STORAGE_FREECOM is not set | 1042 | # CONFIG_USB_STORAGE_FREECOM is not set |
1014 | # CONFIG_USB_STORAGE_ISD200 is not set | 1043 | # CONFIG_USB_STORAGE_ISD200 is not set |
1015 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1016 | # CONFIG_USB_STORAGE_USBAT is not set | 1044 | # CONFIG_USB_STORAGE_USBAT is not set |
1017 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1045 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1018 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1046 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1058,6 +1086,11 @@ CONFIG_USB_STORAGE=m | |||
1058 | # CONFIG_USB_ISIGHTFW is not set | 1086 | # CONFIG_USB_ISIGHTFW is not set |
1059 | # CONFIG_USB_VST is not set | 1087 | # CONFIG_USB_VST is not set |
1060 | # CONFIG_USB_GADGET is not set | 1088 | # CONFIG_USB_GADGET is not set |
1089 | |||
1090 | # | ||
1091 | # OTG and related infrastructure | ||
1092 | # | ||
1093 | # CONFIG_USB_GPIO_VBUS is not set | ||
1061 | # CONFIG_UWB is not set | 1094 | # CONFIG_UWB is not set |
1062 | # CONFIG_MMC is not set | 1095 | # CONFIG_MMC is not set |
1063 | # CONFIG_MEMSTICK is not set | 1096 | # CONFIG_MEMSTICK is not set |
@@ -1069,7 +1102,6 @@ CONFIG_USB_STORAGE=m | |||
1069 | # CONFIG_DMADEVICES is not set | 1102 | # CONFIG_DMADEVICES is not set |
1070 | # CONFIG_UIO is not set | 1103 | # CONFIG_UIO is not set |
1071 | # CONFIG_STAGING is not set | 1104 | # CONFIG_STAGING is not set |
1072 | CONFIG_STAGING_EXCLUDE_BUILD=y | ||
1073 | 1105 | ||
1074 | # | 1106 | # |
1075 | # File systems | 1107 | # File systems |
@@ -1089,7 +1121,9 @@ CONFIG_FS_MBCACHE=m | |||
1089 | # CONFIG_FS_POSIX_ACL is not set | 1121 | # CONFIG_FS_POSIX_ACL is not set |
1090 | CONFIG_FILE_LOCKING=y | 1122 | CONFIG_FILE_LOCKING=y |
1091 | # CONFIG_XFS_FS is not set | 1123 | # CONFIG_XFS_FS is not set |
1124 | # CONFIG_GFS2_FS is not set | ||
1092 | # CONFIG_OCFS2_FS is not set | 1125 | # CONFIG_OCFS2_FS is not set |
1126 | # CONFIG_BTRFS_FS is not set | ||
1093 | CONFIG_DNOTIFY=y | 1127 | CONFIG_DNOTIFY=y |
1094 | CONFIG_INOTIFY=y | 1128 | CONFIG_INOTIFY=y |
1095 | CONFIG_INOTIFY_USER=y | 1129 | CONFIG_INOTIFY_USER=y |
@@ -1126,10 +1160,7 @@ CONFIG_TMPFS=y | |||
1126 | # CONFIG_TMPFS_POSIX_ACL is not set | 1160 | # CONFIG_TMPFS_POSIX_ACL is not set |
1127 | # CONFIG_HUGETLB_PAGE is not set | 1161 | # CONFIG_HUGETLB_PAGE is not set |
1128 | # CONFIG_CONFIGFS_FS is not set | 1162 | # CONFIG_CONFIGFS_FS is not set |
1129 | 1163 | CONFIG_MISC_FILESYSTEMS=y | |
1130 | # | ||
1131 | # Miscellaneous filesystems | ||
1132 | # | ||
1133 | # CONFIG_ADFS_FS is not set | 1164 | # CONFIG_ADFS_FS is not set |
1134 | # CONFIG_AFFS_FS is not set | 1165 | # CONFIG_AFFS_FS is not set |
1135 | # CONFIG_HFS_FS is not set | 1166 | # CONFIG_HFS_FS is not set |
@@ -1155,6 +1186,7 @@ CONFIG_UBIFS_FS_LZO=y | |||
1155 | CONFIG_UBIFS_FS_ZLIB=y | 1186 | CONFIG_UBIFS_FS_ZLIB=y |
1156 | # CONFIG_UBIFS_FS_DEBUG is not set | 1187 | # CONFIG_UBIFS_FS_DEBUG is not set |
1157 | CONFIG_CRAMFS=y | 1188 | CONFIG_CRAMFS=y |
1189 | # CONFIG_SQUASHFS is not set | ||
1158 | # CONFIG_VXFS_FS is not set | 1190 | # CONFIG_VXFS_FS is not set |
1159 | # CONFIG_MINIX_FS is not set | 1191 | # CONFIG_MINIX_FS is not set |
1160 | # CONFIG_OMFS_FS is not set | 1192 | # CONFIG_OMFS_FS is not set |
@@ -1234,6 +1266,7 @@ CONFIG_NLS_ISO8859_1=m | |||
1234 | # Library routines | 1266 | # Library routines |
1235 | # | 1267 | # |
1236 | CONFIG_BITREVERSE=y | 1268 | CONFIG_BITREVERSE=y |
1269 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1237 | # CONFIG_CRC_CCITT is not set | 1270 | # CONFIG_CRC_CCITT is not set |
1238 | CONFIG_CRC16=m | 1271 | CONFIG_CRC16=m |
1239 | CONFIG_CRC_T10DIF=m | 1272 | CONFIG_CRC_T10DIF=m |
@@ -1287,6 +1320,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
1287 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1320 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1288 | # CONFIG_DEBUG_LIST is not set | 1321 | # CONFIG_DEBUG_LIST is not set |
1289 | # CONFIG_DEBUG_SG is not set | 1322 | # CONFIG_DEBUG_SG is not set |
1323 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1290 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1324 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1291 | # CONFIG_RCU_TORTURE_TEST is not set | 1325 | # CONFIG_RCU_TORTURE_TEST is not set |
1292 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1326 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1296,6 +1330,8 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
1296 | # CONFIG_LATENCYTOP is not set | 1330 | # CONFIG_LATENCYTOP is not set |
1297 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1331 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1298 | CONFIG_HAVE_FUNCTION_TRACER=y | 1332 | CONFIG_HAVE_FUNCTION_TRACER=y |
1333 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1334 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1299 | 1335 | ||
1300 | # | 1336 | # |
1301 | # Tracers | 1337 | # Tracers |
@@ -1304,11 +1340,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1304 | # CONFIG_SCHED_TRACER is not set | 1340 | # CONFIG_SCHED_TRACER is not set |
1305 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1341 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1306 | # CONFIG_BOOT_TRACER is not set | 1342 | # CONFIG_BOOT_TRACER is not set |
1343 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1307 | # CONFIG_STACK_TRACER is not set | 1344 | # CONFIG_STACK_TRACER is not set |
1308 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1345 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1309 | # CONFIG_SAMPLES is not set | 1346 | # CONFIG_SAMPLES is not set |
1310 | CONFIG_HAVE_ARCH_KGDB=y | 1347 | CONFIG_HAVE_ARCH_KGDB=y |
1311 | # CONFIG_KGDB is not set | 1348 | # CONFIG_KGDB is not set |
1349 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1312 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1350 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1313 | # CONFIG_DEBUG_STACK_USAGE is not set | 1351 | # CONFIG_DEBUG_STACK_USAGE is not set |
1314 | # CONFIG_DEBUG_PAGEALLOC is not set | 1352 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1333,11 +1371,15 @@ CONFIG_CRYPTO=y | |||
1333 | # | 1371 | # |
1334 | # CONFIG_CRYPTO_FIPS is not set | 1372 | # CONFIG_CRYPTO_FIPS is not set |
1335 | CONFIG_CRYPTO_ALGAPI=y | 1373 | CONFIG_CRYPTO_ALGAPI=y |
1336 | CONFIG_CRYPTO_AEAD=y | 1374 | CONFIG_CRYPTO_ALGAPI2=y |
1375 | CONFIG_CRYPTO_AEAD2=y | ||
1337 | CONFIG_CRYPTO_BLKCIPHER=y | 1376 | CONFIG_CRYPTO_BLKCIPHER=y |
1377 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1338 | CONFIG_CRYPTO_HASH=y | 1378 | CONFIG_CRYPTO_HASH=y |
1339 | CONFIG_CRYPTO_RNG=y | 1379 | CONFIG_CRYPTO_HASH2=y |
1380 | CONFIG_CRYPTO_RNG2=y | ||
1340 | CONFIG_CRYPTO_MANAGER=y | 1381 | CONFIG_CRYPTO_MANAGER=y |
1382 | CONFIG_CRYPTO_MANAGER2=y | ||
1341 | # CONFIG_CRYPTO_GF128MUL is not set | 1383 | # CONFIG_CRYPTO_GF128MUL is not set |
1342 | # CONFIG_CRYPTO_NULL is not set | 1384 | # CONFIG_CRYPTO_NULL is not set |
1343 | # CONFIG_CRYPTO_CRYPTD is not set | 1385 | # CONFIG_CRYPTO_CRYPTD is not set |
@@ -1419,5 +1461,6 @@ CONFIG_CRYPTO_LZO=m | |||
1419 | CONFIG_VIRTUALIZATION=y | 1461 | CONFIG_VIRTUALIZATION=y |
1420 | CONFIG_KVM=y | 1462 | CONFIG_KVM=y |
1421 | CONFIG_KVM_440=y | 1463 | CONFIG_KVM_440=y |
1464 | # CONFIG_KVM_EXIT_TIMING is not set | ||
1422 | # CONFIG_VIRTIO_PCI is not set | 1465 | # CONFIG_VIRTIO_PCI is not set |
1423 | # CONFIG_VIRTIO_BALLOON is not set | 1466 | # CONFIG_VIRTIO_BALLOON is not set |
diff --git a/arch/powerpc/configs/pq2fads_defconfig b/arch/powerpc/configs/pq2fads_defconfig index 228099d77c3b..fdded96633a1 100644 --- a/arch/powerpc/configs/pq2fads_defconfig +++ b/arch/powerpc/configs/pq2fads_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:47 2008 | 4 | # Mon Jan 26 15:35:42 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_GPIO=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -87,6 +87,7 @@ CONFIG_EMBEDDED=y | |||
87 | CONFIG_SYSCTL_SYSCALL=y | 87 | CONFIG_SYSCTL_SYSCALL=y |
88 | CONFIG_KALLSYMS=y | 88 | CONFIG_KALLSYMS=y |
89 | CONFIG_KALLSYMS_ALL=y | 89 | CONFIG_KALLSYMS_ALL=y |
90 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
90 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 91 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
91 | CONFIG_HOTPLUG=y | 92 | CONFIG_HOTPLUG=y |
92 | CONFIG_PRINTK=y | 93 | CONFIG_PRINTK=y |
@@ -109,7 +110,6 @@ CONFIG_SLUB_DEBUG=y | |||
109 | CONFIG_SLUB=y | 110 | CONFIG_SLUB=y |
110 | # CONFIG_SLOB is not set | 111 | # CONFIG_SLOB is not set |
111 | # CONFIG_PROFILING is not set | 112 | # CONFIG_PROFILING is not set |
112 | # CONFIG_MARKERS is not set | ||
113 | CONFIG_HAVE_OPROFILE=y | 113 | CONFIG_HAVE_OPROFILE=y |
114 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 114 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
115 | CONFIG_HAVE_IOREMAP_PROT=y | 115 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -120,13 +120,11 @@ CONFIG_HAVE_CLK=y | |||
120 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 120 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
121 | CONFIG_SLABINFO=y | 121 | CONFIG_SLABINFO=y |
122 | CONFIG_RT_MUTEXES=y | 122 | CONFIG_RT_MUTEXES=y |
123 | # CONFIG_TINY_SHMEM is not set | ||
124 | CONFIG_BASE_SMALL=0 | 123 | CONFIG_BASE_SMALL=0 |
125 | # CONFIG_MODULES is not set | 124 | # CONFIG_MODULES is not set |
126 | CONFIG_BLOCK=y | 125 | CONFIG_BLOCK=y |
127 | # CONFIG_LBD is not set | 126 | # CONFIG_LBD is not set |
128 | # CONFIG_BLK_DEV_IO_TRACE is not set | 127 | # CONFIG_BLK_DEV_IO_TRACE is not set |
129 | # CONFIG_LSF is not set | ||
130 | # CONFIG_BLK_DEV_INTEGRITY is not set | 128 | # CONFIG_BLK_DEV_INTEGRITY is not set |
131 | 129 | ||
132 | # | 130 | # |
@@ -142,6 +140,10 @@ CONFIG_DEFAULT_AS=y | |||
142 | # CONFIG_DEFAULT_NOOP is not set | 140 | # CONFIG_DEFAULT_NOOP is not set |
143 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 141 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
144 | CONFIG_CLASSIC_RCU=y | 142 | CONFIG_CLASSIC_RCU=y |
143 | # CONFIG_TREE_RCU is not set | ||
144 | # CONFIG_PREEMPT_RCU is not set | ||
145 | # CONFIG_TREE_RCU_TRACE is not set | ||
146 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
145 | # CONFIG_FREEZER is not set | 147 | # CONFIG_FREEZER is not set |
146 | 148 | ||
147 | # | 149 | # |
@@ -183,6 +185,7 @@ CONFIG_PQ2_ADS_PCI_PIC=y | |||
183 | CONFIG_CPM2=y | 185 | CONFIG_CPM2=y |
184 | # CONFIG_FSL_ULI1575 is not set | 186 | # CONFIG_FSL_ULI1575 is not set |
185 | CONFIG_CPM=y | 187 | CONFIG_CPM=y |
188 | # CONFIG_SIMPLE_GPIO is not set | ||
186 | 189 | ||
187 | # | 190 | # |
188 | # Kernel options | 191 | # Kernel options |
@@ -209,6 +212,7 @@ CONFIG_BINFMT_MISC=y | |||
209 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 212 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
210 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 213 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
211 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 214 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
215 | # CONFIG_CRASH_DUMP is not set | ||
212 | CONFIG_ARCH_FLATMEM_ENABLE=y | 216 | CONFIG_ARCH_FLATMEM_ENABLE=y |
213 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 217 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
214 | CONFIG_FLATMEM=y | 218 | CONFIG_FLATMEM=y |
@@ -216,12 +220,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
216 | CONFIG_PAGEFLAGS_EXTENDED=y | 220 | CONFIG_PAGEFLAGS_EXTENDED=y |
217 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 221 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
218 | CONFIG_MIGRATION=y | 222 | CONFIG_MIGRATION=y |
219 | # CONFIG_RESOURCES_64BIT is not set | ||
220 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 223 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
221 | CONFIG_ZONE_DMA_FLAG=1 | 224 | CONFIG_ZONE_DMA_FLAG=1 |
222 | CONFIG_BOUNCE=y | 225 | CONFIG_BOUNCE=y |
223 | CONFIG_VIRT_TO_BUS=y | 226 | CONFIG_VIRT_TO_BUS=y |
224 | CONFIG_UNEVICTABLE_LRU=y | 227 | CONFIG_UNEVICTABLE_LRU=y |
228 | CONFIG_PPC_4K_PAGES=y | ||
229 | # CONFIG_PPC_16K_PAGES is not set | ||
230 | # CONFIG_PPC_64K_PAGES is not set | ||
225 | CONFIG_FORCE_MAX_ZONEORDER=11 | 231 | CONFIG_FORCE_MAX_ZONEORDER=11 |
226 | CONFIG_PROC_DEVICETREE=y | 232 | CONFIG_PROC_DEVICETREE=y |
227 | # CONFIG_CMDLINE_BOOL is not set | 233 | # CONFIG_CMDLINE_BOOL is not set |
@@ -247,6 +253,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
247 | # CONFIG_PCI_MSI is not set | 253 | # CONFIG_PCI_MSI is not set |
248 | # CONFIG_PCI_LEGACY is not set | 254 | # CONFIG_PCI_LEGACY is not set |
249 | # CONFIG_PCI_DEBUG is not set | 255 | # CONFIG_PCI_DEBUG is not set |
256 | # CONFIG_PCI_STUB is not set | ||
250 | # CONFIG_PCCARD is not set | 257 | # CONFIG_PCCARD is not set |
251 | # CONFIG_HOTPLUG_PCI is not set | 258 | # CONFIG_HOTPLUG_PCI is not set |
252 | # CONFIG_HAS_RAPIDIO is not set | 259 | # CONFIG_HAS_RAPIDIO is not set |
@@ -269,6 +276,7 @@ CONFIG_NET=y | |||
269 | # | 276 | # |
270 | # Networking options | 277 | # Networking options |
271 | # | 278 | # |
279 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
272 | CONFIG_PACKET=y | 280 | CONFIG_PACKET=y |
273 | # CONFIG_PACKET_MMAP is not set | 281 | # CONFIG_PACKET_MMAP is not set |
274 | CONFIG_UNIX=y | 282 | CONFIG_UNIX=y |
@@ -350,6 +358,7 @@ CONFIG_NETFILTER_ADVANCED=y | |||
350 | # CONFIG_IPX is not set | 358 | # CONFIG_IPX is not set |
351 | # CONFIG_ATALK is not set | 359 | # CONFIG_ATALK is not set |
352 | # CONFIG_NET_SCHED is not set | 360 | # CONFIG_NET_SCHED is not set |
361 | # CONFIG_DCB is not set | ||
353 | 362 | ||
354 | # | 363 | # |
355 | # Network testing | 364 | # Network testing |
@@ -364,8 +373,9 @@ CONFIG_WIRELESS=y | |||
364 | # CONFIG_CFG80211 is not set | 373 | # CONFIG_CFG80211 is not set |
365 | CONFIG_WIRELESS_OLD_REGULATORY=y | 374 | CONFIG_WIRELESS_OLD_REGULATORY=y |
366 | # CONFIG_WIRELESS_EXT is not set | 375 | # CONFIG_WIRELESS_EXT is not set |
376 | # CONFIG_LIB80211 is not set | ||
367 | # CONFIG_MAC80211 is not set | 377 | # CONFIG_MAC80211 is not set |
368 | # CONFIG_IEEE80211 is not set | 378 | # CONFIG_WIMAX is not set |
369 | # CONFIG_RFKILL is not set | 379 | # CONFIG_RFKILL is not set |
370 | 380 | ||
371 | # | 381 | # |
@@ -460,6 +470,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
460 | # CONFIG_MTD_ONENAND is not set | 470 | # CONFIG_MTD_ONENAND is not set |
461 | 471 | ||
462 | # | 472 | # |
473 | # LPDDR flash memory drivers | ||
474 | # | ||
475 | # CONFIG_MTD_LPDDR is not set | ||
476 | # CONFIG_MTD_QINFO_PROBE is not set | ||
477 | |||
478 | # | ||
463 | # UBI - Unsorted block images | 479 | # UBI - Unsorted block images |
464 | # | 480 | # |
465 | # CONFIG_MTD_UBI is not set | 481 | # CONFIG_MTD_UBI is not set |
@@ -520,6 +536,7 @@ CONFIG_IDE_PROC_FS=y | |||
520 | # CONFIG_BLK_DEV_JMICRON is not set | 536 | # CONFIG_BLK_DEV_JMICRON is not set |
521 | # CONFIG_BLK_DEV_SC1200 is not set | 537 | # CONFIG_BLK_DEV_SC1200 is not set |
522 | # CONFIG_BLK_DEV_PIIX is not set | 538 | # CONFIG_BLK_DEV_PIIX is not set |
539 | # CONFIG_BLK_DEV_IT8172 is not set | ||
523 | # CONFIG_BLK_DEV_IT8213 is not set | 540 | # CONFIG_BLK_DEV_IT8213 is not set |
524 | # CONFIG_BLK_DEV_IT821X is not set | 541 | # CONFIG_BLK_DEV_IT821X is not set |
525 | # CONFIG_BLK_DEV_NS87415 is not set | 542 | # CONFIG_BLK_DEV_NS87415 is not set |
@@ -577,9 +594,12 @@ CONFIG_DAVICOM_PHY=y | |||
577 | # CONFIG_BROADCOM_PHY is not set | 594 | # CONFIG_BROADCOM_PHY is not set |
578 | # CONFIG_ICPLUS_PHY is not set | 595 | # CONFIG_ICPLUS_PHY is not set |
579 | # CONFIG_REALTEK_PHY is not set | 596 | # CONFIG_REALTEK_PHY is not set |
597 | # CONFIG_NATIONAL_PHY is not set | ||
598 | # CONFIG_STE10XP is not set | ||
599 | # CONFIG_LSI_ET1011C_PHY is not set | ||
580 | # CONFIG_FIXED_PHY is not set | 600 | # CONFIG_FIXED_PHY is not set |
581 | CONFIG_MDIO_BITBANG=y | 601 | CONFIG_MDIO_BITBANG=y |
582 | # CONFIG_MDIO_OF_GPIO is not set | 602 | # CONFIG_MDIO_GPIO is not set |
583 | CONFIG_NET_ETHERNET=y | 603 | CONFIG_NET_ETHERNET=y |
584 | CONFIG_MII=y | 604 | CONFIG_MII=y |
585 | # CONFIG_HAPPYMEAL is not set | 605 | # CONFIG_HAPPYMEAL is not set |
@@ -624,6 +644,7 @@ CONFIG_NETDEV_1000=y | |||
624 | # CONFIG_JME is not set | 644 | # CONFIG_JME is not set |
625 | CONFIG_NETDEV_10000=y | 645 | CONFIG_NETDEV_10000=y |
626 | # CONFIG_CHELSIO_T1 is not set | 646 | # CONFIG_CHELSIO_T1 is not set |
647 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
627 | # CONFIG_CHELSIO_T3 is not set | 648 | # CONFIG_CHELSIO_T3 is not set |
628 | # CONFIG_ENIC is not set | 649 | # CONFIG_ENIC is not set |
629 | # CONFIG_IXGBE is not set | 650 | # CONFIG_IXGBE is not set |
@@ -646,6 +667,10 @@ CONFIG_NETDEV_10000=y | |||
646 | # CONFIG_WLAN_PRE80211 is not set | 667 | # CONFIG_WLAN_PRE80211 is not set |
647 | # CONFIG_WLAN_80211 is not set | 668 | # CONFIG_WLAN_80211 is not set |
648 | # CONFIG_IWLWIFI_LEDS is not set | 669 | # CONFIG_IWLWIFI_LEDS is not set |
670 | |||
671 | # | ||
672 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
673 | # | ||
649 | # CONFIG_WAN is not set | 674 | # CONFIG_WAN is not set |
650 | # CONFIG_FDDI is not set | 675 | # CONFIG_FDDI is not set |
651 | CONFIG_PPP=y | 676 | CONFIG_PPP=y |
@@ -743,6 +768,7 @@ CONFIG_SERIAL_CPM=y | |||
743 | CONFIG_SERIAL_CPM_CONSOLE=y | 768 | CONFIG_SERIAL_CPM_CONSOLE=y |
744 | # CONFIG_SERIAL_JSM is not set | 769 | # CONFIG_SERIAL_JSM is not set |
745 | CONFIG_UNIX98_PTYS=y | 770 | CONFIG_UNIX98_PTYS=y |
771 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
746 | CONFIG_LEGACY_PTYS=y | 772 | CONFIG_LEGACY_PTYS=y |
747 | CONFIG_LEGACY_PTY_COUNT=256 | 773 | CONFIG_LEGACY_PTY_COUNT=256 |
748 | # CONFIG_IPMI_HANDLER is not set | 774 | # CONFIG_IPMI_HANDLER is not set |
@@ -761,6 +787,11 @@ CONFIG_GPIOLIB=y | |||
761 | # CONFIG_DEBUG_GPIO is not set | 787 | # CONFIG_DEBUG_GPIO is not set |
762 | 788 | ||
763 | # | 789 | # |
790 | # Memory mapped GPIO expanders: | ||
791 | # | ||
792 | # CONFIG_GPIO_XILINX is not set | ||
793 | |||
794 | # | ||
764 | # I2C GPIO expanders: | 795 | # I2C GPIO expanders: |
765 | # | 796 | # |
766 | 797 | ||
@@ -778,11 +809,11 @@ CONFIG_GPIOLIB=y | |||
778 | # CONFIG_THERMAL is not set | 809 | # CONFIG_THERMAL is not set |
779 | # CONFIG_THERMAL_HWMON is not set | 810 | # CONFIG_THERMAL_HWMON is not set |
780 | # CONFIG_WATCHDOG is not set | 811 | # CONFIG_WATCHDOG is not set |
812 | CONFIG_SSB_POSSIBLE=y | ||
781 | 813 | ||
782 | # | 814 | # |
783 | # Sonics Silicon Backplane | 815 | # Sonics Silicon Backplane |
784 | # | 816 | # |
785 | CONFIG_SSB_POSSIBLE=y | ||
786 | # CONFIG_SSB is not set | 817 | # CONFIG_SSB is not set |
787 | 818 | ||
788 | # | 819 | # |
@@ -792,14 +823,7 @@ CONFIG_SSB_POSSIBLE=y | |||
792 | # CONFIG_MFD_SM501 is not set | 823 | # CONFIG_MFD_SM501 is not set |
793 | # CONFIG_HTC_PASIC3 is not set | 824 | # CONFIG_HTC_PASIC3 is not set |
794 | # CONFIG_MFD_TMIO is not set | 825 | # CONFIG_MFD_TMIO is not set |
795 | |||
796 | # | ||
797 | # Voltage and Current regulators | ||
798 | # | ||
799 | # CONFIG_REGULATOR is not set | 826 | # CONFIG_REGULATOR is not set |
800 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
801 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
802 | # CONFIG_REGULATOR_BQ24022 is not set | ||
803 | 827 | ||
804 | # | 828 | # |
805 | # Multimedia devices | 829 | # Multimedia devices |
@@ -844,7 +868,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
844 | # CONFIG_USB_GADGET_MUSB_HDRC is not set | 868 | # CONFIG_USB_GADGET_MUSB_HDRC is not set |
845 | 869 | ||
846 | # | 870 | # |
847 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 871 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
848 | # | 872 | # |
849 | CONFIG_USB_GADGET=y | 873 | CONFIG_USB_GADGET=y |
850 | # CONFIG_USB_GADGET_DEBUG is not set | 874 | # CONFIG_USB_GADGET_DEBUG is not set |
@@ -859,10 +883,12 @@ CONFIG_USB_GADGET_SELECTED=y | |||
859 | # CONFIG_USB_GADGET_PXA25X is not set | 883 | # CONFIG_USB_GADGET_PXA25X is not set |
860 | # CONFIG_USB_GADGET_PXA27X is not set | 884 | # CONFIG_USB_GADGET_PXA27X is not set |
861 | # CONFIG_USB_GADGET_S3C2410 is not set | 885 | # CONFIG_USB_GADGET_S3C2410 is not set |
886 | # CONFIG_USB_GADGET_IMX is not set | ||
862 | CONFIG_USB_GADGET_M66592=y | 887 | CONFIG_USB_GADGET_M66592=y |
863 | CONFIG_USB_M66592=y | 888 | CONFIG_USB_M66592=y |
864 | # CONFIG_USB_GADGET_AMD5536UDC is not set | 889 | # CONFIG_USB_GADGET_AMD5536UDC is not set |
865 | # CONFIG_USB_GADGET_FSL_QE is not set | 890 | # CONFIG_USB_GADGET_FSL_QE is not set |
891 | # CONFIG_USB_GADGET_CI13XXX is not set | ||
866 | # CONFIG_USB_GADGET_NET2280 is not set | 892 | # CONFIG_USB_GADGET_NET2280 is not set |
867 | # CONFIG_USB_GADGET_GOKU is not set | 893 | # CONFIG_USB_GADGET_GOKU is not set |
868 | # CONFIG_USB_GADGET_DUMMY_HCD is not set | 894 | # CONFIG_USB_GADGET_DUMMY_HCD is not set |
@@ -876,6 +902,11 @@ CONFIG_USB_ETH_RNDIS=y | |||
876 | # CONFIG_USB_MIDI_GADGET is not set | 902 | # CONFIG_USB_MIDI_GADGET is not set |
877 | # CONFIG_USB_G_PRINTER is not set | 903 | # CONFIG_USB_G_PRINTER is not set |
878 | # CONFIG_USB_CDC_COMPOSITE is not set | 904 | # CONFIG_USB_CDC_COMPOSITE is not set |
905 | |||
906 | # | ||
907 | # OTG and related infrastructure | ||
908 | # | ||
909 | # CONFIG_USB_GPIO_VBUS is not set | ||
879 | # CONFIG_MMC is not set | 910 | # CONFIG_MMC is not set |
880 | # CONFIG_MEMSTICK is not set | 911 | # CONFIG_MEMSTICK is not set |
881 | # CONFIG_NEW_LEDS is not set | 912 | # CONFIG_NEW_LEDS is not set |
@@ -938,13 +969,11 @@ CONFIG_TMPFS=y | |||
938 | # CONFIG_TMPFS_POSIX_ACL is not set | 969 | # CONFIG_TMPFS_POSIX_ACL is not set |
939 | # CONFIG_HUGETLB_PAGE is not set | 970 | # CONFIG_HUGETLB_PAGE is not set |
940 | # CONFIG_CONFIGFS_FS is not set | 971 | # CONFIG_CONFIGFS_FS is not set |
941 | 972 | CONFIG_MISC_FILESYSTEMS=y | |
942 | # | ||
943 | # Miscellaneous filesystems | ||
944 | # | ||
945 | # CONFIG_HFSPLUS_FS is not set | 973 | # CONFIG_HFSPLUS_FS is not set |
946 | # CONFIG_JFFS2_FS is not set | 974 | # CONFIG_JFFS2_FS is not set |
947 | CONFIG_CRAMFS=y | 975 | CONFIG_CRAMFS=y |
976 | # CONFIG_SQUASHFS is not set | ||
948 | # CONFIG_VXFS_FS is not set | 977 | # CONFIG_VXFS_FS is not set |
949 | # CONFIG_MINIX_FS is not set | 978 | # CONFIG_MINIX_FS is not set |
950 | # CONFIG_OMFS_FS is not set | 979 | # CONFIG_OMFS_FS is not set |
@@ -1035,6 +1064,7 @@ CONFIG_NLS_UTF8=y | |||
1035 | # Library routines | 1064 | # Library routines |
1036 | # | 1065 | # |
1037 | CONFIG_BITREVERSE=y | 1066 | CONFIG_BITREVERSE=y |
1067 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1038 | CONFIG_CRC_CCITT=y | 1068 | CONFIG_CRC_CCITT=y |
1039 | # CONFIG_CRC16 is not set | 1069 | # CONFIG_CRC16 is not set |
1040 | # CONFIG_CRC_T10DIF is not set | 1070 | # CONFIG_CRC_T10DIF is not set |
@@ -1086,6 +1116,7 @@ CONFIG_DEBUG_INFO=y | |||
1086 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1116 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1087 | # CONFIG_DEBUG_LIST is not set | 1117 | # CONFIG_DEBUG_LIST is not set |
1088 | # CONFIG_DEBUG_SG is not set | 1118 | # CONFIG_DEBUG_SG is not set |
1119 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1089 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1120 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1090 | # CONFIG_RCU_TORTURE_TEST is not set | 1121 | # CONFIG_RCU_TORTURE_TEST is not set |
1091 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1122 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1095,6 +1126,8 @@ CONFIG_DEBUG_INFO=y | |||
1095 | # CONFIG_LATENCYTOP is not set | 1126 | # CONFIG_LATENCYTOP is not set |
1096 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1127 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1097 | CONFIG_HAVE_FUNCTION_TRACER=y | 1128 | CONFIG_HAVE_FUNCTION_TRACER=y |
1129 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1130 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1098 | 1131 | ||
1099 | # | 1132 | # |
1100 | # Tracers | 1133 | # Tracers |
@@ -1103,10 +1136,12 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1103 | # CONFIG_SCHED_TRACER is not set | 1136 | # CONFIG_SCHED_TRACER is not set |
1104 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1137 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1105 | # CONFIG_BOOT_TRACER is not set | 1138 | # CONFIG_BOOT_TRACER is not set |
1139 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1106 | # CONFIG_STACK_TRACER is not set | 1140 | # CONFIG_STACK_TRACER is not set |
1107 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1141 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1108 | # CONFIG_SAMPLES is not set | 1142 | # CONFIG_SAMPLES is not set |
1109 | CONFIG_HAVE_ARCH_KGDB=y | 1143 | CONFIG_HAVE_ARCH_KGDB=y |
1144 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1110 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1145 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1111 | # CONFIG_DEBUG_STACK_USAGE is not set | 1146 | # CONFIG_DEBUG_STACK_USAGE is not set |
1112 | # CONFIG_DEBUG_PAGEALLOC is not set | 1147 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1133,11 +1168,15 @@ CONFIG_CRYPTO=y | |||
1133 | # | 1168 | # |
1134 | # CONFIG_CRYPTO_FIPS is not set | 1169 | # CONFIG_CRYPTO_FIPS is not set |
1135 | CONFIG_CRYPTO_ALGAPI=y | 1170 | CONFIG_CRYPTO_ALGAPI=y |
1136 | CONFIG_CRYPTO_AEAD=y | 1171 | CONFIG_CRYPTO_ALGAPI2=y |
1172 | CONFIG_CRYPTO_AEAD2=y | ||
1137 | CONFIG_CRYPTO_BLKCIPHER=y | 1173 | CONFIG_CRYPTO_BLKCIPHER=y |
1174 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1138 | CONFIG_CRYPTO_HASH=y | 1175 | CONFIG_CRYPTO_HASH=y |
1139 | CONFIG_CRYPTO_RNG=y | 1176 | CONFIG_CRYPTO_HASH2=y |
1177 | CONFIG_CRYPTO_RNG2=y | ||
1140 | CONFIG_CRYPTO_MANAGER=y | 1178 | CONFIG_CRYPTO_MANAGER=y |
1179 | CONFIG_CRYPTO_MANAGER2=y | ||
1141 | # CONFIG_CRYPTO_NULL is not set | 1180 | # CONFIG_CRYPTO_NULL is not set |
1142 | # CONFIG_CRYPTO_CRYPTD is not set | 1181 | # CONFIG_CRYPTO_CRYPTD is not set |
1143 | # CONFIG_CRYPTO_AUTHENC is not set | 1182 | # CONFIG_CRYPTO_AUTHENC is not set |
diff --git a/arch/powerpc/configs/prpmc2800_defconfig b/arch/powerpc/configs/prpmc2800_defconfig index a257da608081..e971db171138 100644 --- a/arch/powerpc/configs/prpmc2800_defconfig +++ b/arch/powerpc/configs/prpmc2800_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:48 2008 | 4 | # Mon Jan 26 15:35:44 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -45,7 +45,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
45 | CONFIG_PPC=y | 45 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 46 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 47 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 48 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 50 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 51 | CONFIG_OF=y |
@@ -75,12 +75,12 @@ CONFIG_POSIX_MQUEUE=y | |||
75 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 79 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -118,7 +118,6 @@ CONFIG_SLUB_DEBUG=y | |||
118 | CONFIG_SLUB=y | 118 | CONFIG_SLUB=y |
119 | # CONFIG_SLOB is not set | 119 | # CONFIG_SLOB is not set |
120 | # CONFIG_PROFILING is not set | 120 | # CONFIG_PROFILING is not set |
121 | # CONFIG_MARKERS is not set | ||
122 | CONFIG_HAVE_OPROFILE=y | 121 | CONFIG_HAVE_OPROFILE=y |
123 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 122 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
124 | CONFIG_HAVE_IOREMAP_PROT=y | 123 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -128,13 +127,11 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
128 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 127 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
129 | CONFIG_SLABINFO=y | 128 | CONFIG_SLABINFO=y |
130 | CONFIG_RT_MUTEXES=y | 129 | CONFIG_RT_MUTEXES=y |
131 | # CONFIG_TINY_SHMEM is not set | ||
132 | CONFIG_BASE_SMALL=0 | 130 | CONFIG_BASE_SMALL=0 |
133 | # CONFIG_MODULES is not set | 131 | # CONFIG_MODULES is not set |
134 | CONFIG_BLOCK=y | 132 | CONFIG_BLOCK=y |
135 | CONFIG_LBD=y | 133 | CONFIG_LBD=y |
136 | # CONFIG_BLK_DEV_IO_TRACE is not set | 134 | # CONFIG_BLK_DEV_IO_TRACE is not set |
137 | # CONFIG_LSF is not set | ||
138 | # CONFIG_BLK_DEV_BSG is not set | 135 | # CONFIG_BLK_DEV_BSG is not set |
139 | # CONFIG_BLK_DEV_INTEGRITY is not set | 136 | # CONFIG_BLK_DEV_INTEGRITY is not set |
140 | 137 | ||
@@ -151,6 +148,10 @@ CONFIG_DEFAULT_AS=y | |||
151 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
152 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
153 | CONFIG_CLASSIC_RCU=y | 150 | CONFIG_CLASSIC_RCU=y |
151 | # CONFIG_TREE_RCU is not set | ||
152 | # CONFIG_PREEMPT_RCU is not set | ||
153 | # CONFIG_TREE_RCU_TRACE is not set | ||
154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
154 | # CONFIG_FREEZER is not set | 155 | # CONFIG_FREEZER is not set |
155 | 156 | ||
156 | # | 157 | # |
@@ -190,6 +191,7 @@ CONFIG_MV64X60=y | |||
190 | # CONFIG_CPU_FREQ is not set | 191 | # CONFIG_CPU_FREQ is not set |
191 | # CONFIG_TAU is not set | 192 | # CONFIG_TAU is not set |
192 | # CONFIG_FSL_ULI1575 is not set | 193 | # CONFIG_FSL_ULI1575 is not set |
194 | # CONFIG_SIMPLE_GPIO is not set | ||
193 | 195 | ||
194 | # | 196 | # |
195 | # Kernel options | 197 | # Kernel options |
@@ -213,10 +215,12 @@ CONFIG_BINFMT_ELF=y | |||
213 | # CONFIG_HAVE_AOUT is not set | 215 | # CONFIG_HAVE_AOUT is not set |
214 | CONFIG_BINFMT_MISC=y | 216 | CONFIG_BINFMT_MISC=y |
215 | # CONFIG_IOMMU_HELPER is not set | 217 | # CONFIG_IOMMU_HELPER is not set |
218 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
216 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 219 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
217 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 220 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
218 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 221 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
219 | # CONFIG_KEXEC is not set | 222 | # CONFIG_KEXEC is not set |
223 | # CONFIG_CRASH_DUMP is not set | ||
220 | CONFIG_ARCH_FLATMEM_ENABLE=y | 224 | CONFIG_ARCH_FLATMEM_ENABLE=y |
221 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 225 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
222 | CONFIG_SELECT_MEMORY_MODEL=y | 226 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -228,12 +232,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
228 | CONFIG_PAGEFLAGS_EXTENDED=y | 232 | CONFIG_PAGEFLAGS_EXTENDED=y |
229 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 233 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
230 | CONFIG_MIGRATION=y | 234 | CONFIG_MIGRATION=y |
231 | # CONFIG_RESOURCES_64BIT is not set | ||
232 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 235 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
233 | CONFIG_ZONE_DMA_FLAG=1 | 236 | CONFIG_ZONE_DMA_FLAG=1 |
234 | CONFIG_BOUNCE=y | 237 | CONFIG_BOUNCE=y |
235 | CONFIG_VIRT_TO_BUS=y | 238 | CONFIG_VIRT_TO_BUS=y |
236 | CONFIG_UNEVICTABLE_LRU=y | 239 | CONFIG_UNEVICTABLE_LRU=y |
240 | CONFIG_PPC_4K_PAGES=y | ||
241 | # CONFIG_PPC_16K_PAGES is not set | ||
242 | # CONFIG_PPC_64K_PAGES is not set | ||
237 | CONFIG_FORCE_MAX_ZONEORDER=11 | 243 | CONFIG_FORCE_MAX_ZONEORDER=11 |
238 | CONFIG_PROC_DEVICETREE=y | 244 | CONFIG_PROC_DEVICETREE=y |
239 | # CONFIG_CMDLINE_BOOL is not set | 245 | # CONFIG_CMDLINE_BOOL is not set |
@@ -255,6 +261,7 @@ CONFIG_PCI_SYSCALL=y | |||
255 | CONFIG_ARCH_SUPPORTS_MSI=y | 261 | CONFIG_ARCH_SUPPORTS_MSI=y |
256 | # CONFIG_PCI_MSI is not set | 262 | # CONFIG_PCI_MSI is not set |
257 | # CONFIG_PCI_LEGACY is not set | 263 | # CONFIG_PCI_LEGACY is not set |
264 | # CONFIG_PCI_STUB is not set | ||
258 | # CONFIG_PCCARD is not set | 265 | # CONFIG_PCCARD is not set |
259 | # CONFIG_HOTPLUG_PCI is not set | 266 | # CONFIG_HOTPLUG_PCI is not set |
260 | # CONFIG_HAS_RAPIDIO is not set | 267 | # CONFIG_HAS_RAPIDIO is not set |
@@ -279,6 +286,8 @@ CONFIG_NET=y | |||
279 | # | 286 | # |
280 | # Networking options | 287 | # Networking options |
281 | # | 288 | # |
289 | # CONFIG_NET_NS is not set | ||
290 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
282 | CONFIG_PACKET=y | 291 | CONFIG_PACKET=y |
283 | # CONFIG_PACKET_MMAP is not set | 292 | # CONFIG_PACKET_MMAP is not set |
284 | CONFIG_UNIX=y | 293 | CONFIG_UNIX=y |
@@ -335,6 +344,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
335 | # CONFIG_ECONET is not set | 344 | # CONFIG_ECONET is not set |
336 | # CONFIG_WAN_ROUTER is not set | 345 | # CONFIG_WAN_ROUTER is not set |
337 | # CONFIG_NET_SCHED is not set | 346 | # CONFIG_NET_SCHED is not set |
347 | # CONFIG_DCB is not set | ||
338 | 348 | ||
339 | # | 349 | # |
340 | # Network testing | 350 | # Network testing |
@@ -350,8 +360,9 @@ CONFIG_WIRELESS=y | |||
350 | # CONFIG_CFG80211 is not set | 360 | # CONFIG_CFG80211 is not set |
351 | CONFIG_WIRELESS_OLD_REGULATORY=y | 361 | CONFIG_WIRELESS_OLD_REGULATORY=y |
352 | # CONFIG_WIRELESS_EXT is not set | 362 | # CONFIG_WIRELESS_EXT is not set |
363 | # CONFIG_LIB80211 is not set | ||
353 | # CONFIG_MAC80211 is not set | 364 | # CONFIG_MAC80211 is not set |
354 | # CONFIG_IEEE80211 is not set | 365 | # CONFIG_WIMAX is not set |
355 | # CONFIG_RFKILL is not set | 366 | # CONFIG_RFKILL is not set |
356 | # CONFIG_NET_9P is not set | 367 | # CONFIG_NET_9P is not set |
357 | 368 | ||
@@ -445,6 +456,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
445 | # CONFIG_MTD_ONENAND is not set | 456 | # CONFIG_MTD_ONENAND is not set |
446 | 457 | ||
447 | # | 458 | # |
459 | # LPDDR flash memory drivers | ||
460 | # | ||
461 | # CONFIG_MTD_LPDDR is not set | ||
462 | # CONFIG_MTD_QINFO_PROBE is not set | ||
463 | |||
464 | # | ||
448 | # UBI - Unsorted block images | 465 | # UBI - Unsorted block images |
449 | # | 466 | # |
450 | # CONFIG_MTD_UBI is not set | 467 | # CONFIG_MTD_UBI is not set |
@@ -475,8 +492,10 @@ CONFIG_MISC_DEVICES=y | |||
475 | # CONFIG_EEPROM_93CX6 is not set | 492 | # CONFIG_EEPROM_93CX6 is not set |
476 | # CONFIG_SGI_IOC4 is not set | 493 | # CONFIG_SGI_IOC4 is not set |
477 | # CONFIG_TIFM_CORE is not set | 494 | # CONFIG_TIFM_CORE is not set |
495 | # CONFIG_ICS932S401 is not set | ||
478 | # CONFIG_ENCLOSURE_SERVICES is not set | 496 | # CONFIG_ENCLOSURE_SERVICES is not set |
479 | # CONFIG_HP_ILO is not set | 497 | # CONFIG_HP_ILO is not set |
498 | # CONFIG_C2PORT is not set | ||
480 | CONFIG_HAVE_IDE=y | 499 | CONFIG_HAVE_IDE=y |
481 | CONFIG_IDE=y | 500 | CONFIG_IDE=y |
482 | 501 | ||
@@ -489,7 +508,6 @@ CONFIG_IDE_GD_ATA=y | |||
489 | # CONFIG_IDE_GD_ATAPI is not set | 508 | # CONFIG_IDE_GD_ATAPI is not set |
490 | # CONFIG_BLK_DEV_IDECD is not set | 509 | # CONFIG_BLK_DEV_IDECD is not set |
491 | # CONFIG_BLK_DEV_IDETAPE is not set | 510 | # CONFIG_BLK_DEV_IDETAPE is not set |
492 | # CONFIG_BLK_DEV_IDESCSI is not set | ||
493 | # CONFIG_IDE_TASK_IOCTL is not set | 511 | # CONFIG_IDE_TASK_IOCTL is not set |
494 | CONFIG_IDE_PROC_FS=y | 512 | CONFIG_IDE_PROC_FS=y |
495 | 513 | ||
@@ -519,6 +537,7 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
519 | # CONFIG_BLK_DEV_JMICRON is not set | 537 | # CONFIG_BLK_DEV_JMICRON is not set |
520 | # CONFIG_BLK_DEV_SC1200 is not set | 538 | # CONFIG_BLK_DEV_SC1200 is not set |
521 | # CONFIG_BLK_DEV_PIIX is not set | 539 | # CONFIG_BLK_DEV_PIIX is not set |
540 | # CONFIG_BLK_DEV_IT8172 is not set | ||
522 | # CONFIG_BLK_DEV_IT8213 is not set | 541 | # CONFIG_BLK_DEV_IT8213 is not set |
523 | # CONFIG_BLK_DEV_IT821X is not set | 542 | # CONFIG_BLK_DEV_IT821X is not set |
524 | # CONFIG_BLK_DEV_NS87415 is not set | 543 | # CONFIG_BLK_DEV_NS87415 is not set |
@@ -571,6 +590,7 @@ CONFIG_BLK_DEV_SD=y | |||
571 | # CONFIG_SCSI_SRP_ATTRS is not set | 590 | # CONFIG_SCSI_SRP_ATTRS is not set |
572 | CONFIG_SCSI_LOWLEVEL=y | 591 | CONFIG_SCSI_LOWLEVEL=y |
573 | # CONFIG_ISCSI_TCP is not set | 592 | # CONFIG_ISCSI_TCP is not set |
593 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
574 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 594 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
575 | # CONFIG_SCSI_3W_9XXX is not set | 595 | # CONFIG_SCSI_3W_9XXX is not set |
576 | # CONFIG_SCSI_ACARD is not set | 596 | # CONFIG_SCSI_ACARD is not set |
@@ -587,6 +607,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
587 | # CONFIG_MEGARAID_SAS is not set | 607 | # CONFIG_MEGARAID_SAS is not set |
588 | # CONFIG_SCSI_HPTIOP is not set | 608 | # CONFIG_SCSI_HPTIOP is not set |
589 | # CONFIG_SCSI_BUSLOGIC is not set | 609 | # CONFIG_SCSI_BUSLOGIC is not set |
610 | # CONFIG_LIBFC is not set | ||
611 | # CONFIG_FCOE is not set | ||
590 | # CONFIG_SCSI_DMX3191D is not set | 612 | # CONFIG_SCSI_DMX3191D is not set |
591 | # CONFIG_SCSI_EATA is not set | 613 | # CONFIG_SCSI_EATA is not set |
592 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 614 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -707,6 +729,9 @@ CONFIG_PHYLIB=y | |||
707 | # CONFIG_BROADCOM_PHY is not set | 729 | # CONFIG_BROADCOM_PHY is not set |
708 | # CONFIG_ICPLUS_PHY is not set | 730 | # CONFIG_ICPLUS_PHY is not set |
709 | # CONFIG_REALTEK_PHY is not set | 731 | # CONFIG_REALTEK_PHY is not set |
732 | # CONFIG_NATIONAL_PHY is not set | ||
733 | # CONFIG_STE10XP is not set | ||
734 | # CONFIG_LSI_ET1011C_PHY is not set | ||
710 | # CONFIG_FIXED_PHY is not set | 735 | # CONFIG_FIXED_PHY is not set |
711 | # CONFIG_MDIO_BITBANG is not set | 736 | # CONFIG_MDIO_BITBANG is not set |
712 | CONFIG_NET_ETHERNET=y | 737 | CONFIG_NET_ETHERNET=y |
@@ -730,7 +755,6 @@ CONFIG_NET_PCI=y | |||
730 | # CONFIG_ADAPTEC_STARFIRE is not set | 755 | # CONFIG_ADAPTEC_STARFIRE is not set |
731 | # CONFIG_B44 is not set | 756 | # CONFIG_B44 is not set |
732 | # CONFIG_FORCEDETH is not set | 757 | # CONFIG_FORCEDETH is not set |
733 | # CONFIG_EEPRO100 is not set | ||
734 | CONFIG_E100=y | 758 | CONFIG_E100=y |
735 | # CONFIG_FEALNX is not set | 759 | # CONFIG_FEALNX is not set |
736 | # CONFIG_NATSEMI is not set | 760 | # CONFIG_NATSEMI is not set |
@@ -744,6 +768,7 @@ CONFIG_8139TOO=y | |||
744 | # CONFIG_R6040 is not set | 768 | # CONFIG_R6040 is not set |
745 | # CONFIG_SIS900 is not set | 769 | # CONFIG_SIS900 is not set |
746 | # CONFIG_EPIC100 is not set | 770 | # CONFIG_EPIC100 is not set |
771 | # CONFIG_SMSC9420 is not set | ||
747 | # CONFIG_SUNDANCE is not set | 772 | # CONFIG_SUNDANCE is not set |
748 | # CONFIG_TLAN is not set | 773 | # CONFIG_TLAN is not set |
749 | # CONFIG_VIA_RHINE is not set | 774 | # CONFIG_VIA_RHINE is not set |
@@ -773,6 +798,7 @@ CONFIG_MV643XX_ETH=y | |||
773 | # CONFIG_JME is not set | 798 | # CONFIG_JME is not set |
774 | CONFIG_NETDEV_10000=y | 799 | CONFIG_NETDEV_10000=y |
775 | # CONFIG_CHELSIO_T1 is not set | 800 | # CONFIG_CHELSIO_T1 is not set |
801 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
776 | # CONFIG_CHELSIO_T3 is not set | 802 | # CONFIG_CHELSIO_T3 is not set |
777 | # CONFIG_ENIC is not set | 803 | # CONFIG_ENIC is not set |
778 | # CONFIG_IXGBE is not set | 804 | # CONFIG_IXGBE is not set |
@@ -797,6 +823,10 @@ CONFIG_NETDEV_10000=y | |||
797 | # CONFIG_IWLWIFI_LEDS is not set | 823 | # CONFIG_IWLWIFI_LEDS is not set |
798 | 824 | ||
799 | # | 825 | # |
826 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
827 | # | ||
828 | |||
829 | # | ||
800 | # USB Network Adapters | 830 | # USB Network Adapters |
801 | # | 831 | # |
802 | # CONFIG_USB_CATC is not set | 832 | # CONFIG_USB_CATC is not set |
@@ -877,8 +907,10 @@ CONFIG_SERIAL_CORE=y | |||
877 | CONFIG_SERIAL_CORE_CONSOLE=y | 907 | CONFIG_SERIAL_CORE_CONSOLE=y |
878 | # CONFIG_SERIAL_JSM is not set | 908 | # CONFIG_SERIAL_JSM is not set |
879 | CONFIG_UNIX98_PTYS=y | 909 | CONFIG_UNIX98_PTYS=y |
910 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
880 | CONFIG_LEGACY_PTYS=y | 911 | CONFIG_LEGACY_PTYS=y |
881 | CONFIG_LEGACY_PTY_COUNT=256 | 912 | CONFIG_LEGACY_PTY_COUNT=256 |
913 | # CONFIG_HVC_UDBG is not set | ||
882 | # CONFIG_IPMI_HANDLER is not set | 914 | # CONFIG_IPMI_HANDLER is not set |
883 | # CONFIG_HW_RANDOM is not set | 915 | # CONFIG_HW_RANDOM is not set |
884 | # CONFIG_NVRAM is not set | 916 | # CONFIG_NVRAM is not set |
@@ -970,8 +1002,10 @@ CONFIG_HWMON=y | |||
970 | # CONFIG_SENSORS_ADM1029 is not set | 1002 | # CONFIG_SENSORS_ADM1029 is not set |
971 | # CONFIG_SENSORS_ADM1031 is not set | 1003 | # CONFIG_SENSORS_ADM1031 is not set |
972 | # CONFIG_SENSORS_ADM9240 is not set | 1004 | # CONFIG_SENSORS_ADM9240 is not set |
1005 | # CONFIG_SENSORS_ADT7462 is not set | ||
973 | # CONFIG_SENSORS_ADT7470 is not set | 1006 | # CONFIG_SENSORS_ADT7470 is not set |
974 | # CONFIG_SENSORS_ADT7473 is not set | 1007 | # CONFIG_SENSORS_ADT7473 is not set |
1008 | # CONFIG_SENSORS_ADT7475 is not set | ||
975 | # CONFIG_SENSORS_ATXP1 is not set | 1009 | # CONFIG_SENSORS_ATXP1 is not set |
976 | # CONFIG_SENSORS_DS1621 is not set | 1010 | # CONFIG_SENSORS_DS1621 is not set |
977 | # CONFIG_SENSORS_I5K_AMB is not set | 1011 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -992,6 +1026,7 @@ CONFIG_HWMON=y | |||
992 | # CONFIG_SENSORS_LM90 is not set | 1026 | # CONFIG_SENSORS_LM90 is not set |
993 | # CONFIG_SENSORS_LM92 is not set | 1027 | # CONFIG_SENSORS_LM92 is not set |
994 | # CONFIG_SENSORS_LM93 is not set | 1028 | # CONFIG_SENSORS_LM93 is not set |
1029 | # CONFIG_SENSORS_LTC4245 is not set | ||
995 | # CONFIG_SENSORS_MAX1619 is not set | 1030 | # CONFIG_SENSORS_MAX1619 is not set |
996 | # CONFIG_SENSORS_MAX6650 is not set | 1031 | # CONFIG_SENSORS_MAX6650 is not set |
997 | # CONFIG_SENSORS_PC87360 is not set | 1032 | # CONFIG_SENSORS_PC87360 is not set |
@@ -1018,11 +1053,11 @@ CONFIG_HWMON=y | |||
1018 | # CONFIG_THERMAL is not set | 1053 | # CONFIG_THERMAL is not set |
1019 | # CONFIG_THERMAL_HWMON is not set | 1054 | # CONFIG_THERMAL_HWMON is not set |
1020 | # CONFIG_WATCHDOG is not set | 1055 | # CONFIG_WATCHDOG is not set |
1056 | CONFIG_SSB_POSSIBLE=y | ||
1021 | 1057 | ||
1022 | # | 1058 | # |
1023 | # Sonics Silicon Backplane | 1059 | # Sonics Silicon Backplane |
1024 | # | 1060 | # |
1025 | CONFIG_SSB_POSSIBLE=y | ||
1026 | # CONFIG_SSB is not set | 1061 | # CONFIG_SSB is not set |
1027 | 1062 | ||
1028 | # | 1063 | # |
@@ -1031,18 +1066,13 @@ CONFIG_SSB_POSSIBLE=y | |||
1031 | # CONFIG_MFD_CORE is not set | 1066 | # CONFIG_MFD_CORE is not set |
1032 | # CONFIG_MFD_SM501 is not set | 1067 | # CONFIG_MFD_SM501 is not set |
1033 | # CONFIG_HTC_PASIC3 is not set | 1068 | # CONFIG_HTC_PASIC3 is not set |
1069 | # CONFIG_TWL4030_CORE is not set | ||
1034 | # CONFIG_MFD_TMIO is not set | 1070 | # CONFIG_MFD_TMIO is not set |
1035 | # CONFIG_PMIC_DA903X is not set | 1071 | # CONFIG_PMIC_DA903X is not set |
1036 | # CONFIG_MFD_WM8400 is not set | 1072 | # CONFIG_MFD_WM8400 is not set |
1037 | # CONFIG_MFD_WM8350_I2C is not set | 1073 | # CONFIG_MFD_WM8350_I2C is not set |
1038 | 1074 | # CONFIG_MFD_PCF50633 is not set | |
1039 | # | ||
1040 | # Voltage and Current regulators | ||
1041 | # | ||
1042 | # CONFIG_REGULATOR is not set | 1075 | # CONFIG_REGULATOR is not set |
1043 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
1044 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
1045 | # CONFIG_REGULATOR_BQ24022 is not set | ||
1046 | 1076 | ||
1047 | # | 1077 | # |
1048 | # Multimedia devices | 1078 | # Multimedia devices |
@@ -1101,11 +1131,9 @@ CONFIG_HID_COMPAT=y | |||
1101 | CONFIG_HID_A4TECH=y | 1131 | CONFIG_HID_A4TECH=y |
1102 | CONFIG_HID_APPLE=y | 1132 | CONFIG_HID_APPLE=y |
1103 | CONFIG_HID_BELKIN=y | 1133 | CONFIG_HID_BELKIN=y |
1104 | CONFIG_HID_BRIGHT=y | ||
1105 | CONFIG_HID_CHERRY=y | 1134 | CONFIG_HID_CHERRY=y |
1106 | CONFIG_HID_CHICONY=y | 1135 | CONFIG_HID_CHICONY=y |
1107 | CONFIG_HID_CYPRESS=y | 1136 | CONFIG_HID_CYPRESS=y |
1108 | CONFIG_HID_DELL=y | ||
1109 | CONFIG_HID_EZKEY=y | 1137 | CONFIG_HID_EZKEY=y |
1110 | CONFIG_HID_GYRATION=y | 1138 | CONFIG_HID_GYRATION=y |
1111 | CONFIG_HID_LOGITECH=y | 1139 | CONFIG_HID_LOGITECH=y |
@@ -1113,12 +1141,15 @@ CONFIG_HID_LOGITECH=y | |||
1113 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1141 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
1114 | CONFIG_HID_MICROSOFT=y | 1142 | CONFIG_HID_MICROSOFT=y |
1115 | CONFIG_HID_MONTEREY=y | 1143 | CONFIG_HID_MONTEREY=y |
1144 | CONFIG_HID_NTRIG=y | ||
1116 | CONFIG_HID_PANTHERLORD=y | 1145 | CONFIG_HID_PANTHERLORD=y |
1117 | # CONFIG_PANTHERLORD_FF is not set | 1146 | # CONFIG_PANTHERLORD_FF is not set |
1118 | CONFIG_HID_PETALYNX=y | 1147 | CONFIG_HID_PETALYNX=y |
1119 | CONFIG_HID_SAMSUNG=y | 1148 | CONFIG_HID_SAMSUNG=y |
1120 | CONFIG_HID_SONY=y | 1149 | CONFIG_HID_SONY=y |
1121 | CONFIG_HID_SUNPLUS=y | 1150 | CONFIG_HID_SUNPLUS=y |
1151 | # CONFIG_GREENASIA_FF is not set | ||
1152 | CONFIG_HID_TOPSEED=y | ||
1122 | CONFIG_THRUSTMASTER_FF=y | 1153 | CONFIG_THRUSTMASTER_FF=y |
1123 | CONFIG_ZEROPLUS_FF=y | 1154 | CONFIG_ZEROPLUS_FF=y |
1124 | CONFIG_USB_SUPPORT=y | 1155 | CONFIG_USB_SUPPORT=y |
@@ -1148,6 +1179,7 @@ CONFIG_USB_EHCI_HCD=y | |||
1148 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 1179 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
1149 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1180 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1150 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1181 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1182 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1151 | # CONFIG_USB_ISP116X_HCD is not set | 1183 | # CONFIG_USB_ISP116X_HCD is not set |
1152 | # CONFIG_USB_ISP1760_HCD is not set | 1184 | # CONFIG_USB_ISP1760_HCD is not set |
1153 | CONFIG_USB_OHCI_HCD=y | 1185 | CONFIG_USB_OHCI_HCD=y |
@@ -1170,11 +1202,11 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
1170 | # CONFIG_USB_TMC is not set | 1202 | # CONFIG_USB_TMC is not set |
1171 | 1203 | ||
1172 | # | 1204 | # |
1173 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1205 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1174 | # | 1206 | # |
1175 | 1207 | ||
1176 | # | 1208 | # |
1177 | # may also be needed; see USB_STORAGE Help for more information | 1209 | # see USB_STORAGE Help for more information |
1178 | # | 1210 | # |
1179 | # CONFIG_USB_STORAGE is not set | 1211 | # CONFIG_USB_STORAGE is not set |
1180 | # CONFIG_USB_LIBUSUAL is not set | 1212 | # CONFIG_USB_LIBUSUAL is not set |
@@ -1216,6 +1248,10 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
1216 | # CONFIG_USB_ISIGHTFW is not set | 1248 | # CONFIG_USB_ISIGHTFW is not set |
1217 | # CONFIG_USB_VST is not set | 1249 | # CONFIG_USB_VST is not set |
1218 | # CONFIG_USB_GADGET is not set | 1250 | # CONFIG_USB_GADGET is not set |
1251 | |||
1252 | # | ||
1253 | # OTG and related infrastructure | ||
1254 | # | ||
1219 | # CONFIG_UWB is not set | 1255 | # CONFIG_UWB is not set |
1220 | # CONFIG_MMC is not set | 1256 | # CONFIG_MMC is not set |
1221 | # CONFIG_MEMSTICK is not set | 1257 | # CONFIG_MEMSTICK is not set |
@@ -1253,6 +1289,7 @@ CONFIG_RTC_DRV_MAX6900=y | |||
1253 | # CONFIG_RTC_DRV_M41T80 is not set | 1289 | # CONFIG_RTC_DRV_M41T80 is not set |
1254 | # CONFIG_RTC_DRV_S35390A is not set | 1290 | # CONFIG_RTC_DRV_S35390A is not set |
1255 | # CONFIG_RTC_DRV_FM3130 is not set | 1291 | # CONFIG_RTC_DRV_FM3130 is not set |
1292 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1256 | 1293 | ||
1257 | # | 1294 | # |
1258 | # SPI RTC drivers | 1295 | # SPI RTC drivers |
@@ -1299,7 +1336,9 @@ CONFIG_FS_MBCACHE=y | |||
1299 | # CONFIG_FS_POSIX_ACL is not set | 1336 | # CONFIG_FS_POSIX_ACL is not set |
1300 | CONFIG_FILE_LOCKING=y | 1337 | CONFIG_FILE_LOCKING=y |
1301 | # CONFIG_XFS_FS is not set | 1338 | # CONFIG_XFS_FS is not set |
1339 | # CONFIG_GFS2_FS is not set | ||
1302 | # CONFIG_OCFS2_FS is not set | 1340 | # CONFIG_OCFS2_FS is not set |
1341 | # CONFIG_BTRFS_FS is not set | ||
1303 | CONFIG_DNOTIFY=y | 1342 | CONFIG_DNOTIFY=y |
1304 | CONFIG_INOTIFY=y | 1343 | CONFIG_INOTIFY=y |
1305 | CONFIG_INOTIFY_USER=y | 1344 | CONFIG_INOTIFY_USER=y |
@@ -1333,10 +1372,7 @@ CONFIG_TMPFS=y | |||
1333 | # CONFIG_TMPFS_POSIX_ACL is not set | 1372 | # CONFIG_TMPFS_POSIX_ACL is not set |
1334 | # CONFIG_HUGETLB_PAGE is not set | 1373 | # CONFIG_HUGETLB_PAGE is not set |
1335 | # CONFIG_CONFIGFS_FS is not set | 1374 | # CONFIG_CONFIGFS_FS is not set |
1336 | 1375 | CONFIG_MISC_FILESYSTEMS=y | |
1337 | # | ||
1338 | # Miscellaneous filesystems | ||
1339 | # | ||
1340 | # CONFIG_ADFS_FS is not set | 1376 | # CONFIG_ADFS_FS is not set |
1341 | # CONFIG_AFFS_FS is not set | 1377 | # CONFIG_AFFS_FS is not set |
1342 | # CONFIG_HFS_FS is not set | 1378 | # CONFIG_HFS_FS is not set |
@@ -1346,6 +1382,7 @@ CONFIG_TMPFS=y | |||
1346 | # CONFIG_EFS_FS is not set | 1382 | # CONFIG_EFS_FS is not set |
1347 | # CONFIG_JFFS2_FS is not set | 1383 | # CONFIG_JFFS2_FS is not set |
1348 | # CONFIG_CRAMFS is not set | 1384 | # CONFIG_CRAMFS is not set |
1385 | # CONFIG_SQUASHFS is not set | ||
1349 | # CONFIG_VXFS_FS is not set | 1386 | # CONFIG_VXFS_FS is not set |
1350 | # CONFIG_MINIX_FS is not set | 1387 | # CONFIG_MINIX_FS is not set |
1351 | # CONFIG_OMFS_FS is not set | 1388 | # CONFIG_OMFS_FS is not set |
@@ -1400,6 +1437,7 @@ CONFIG_MSDOS_PARTITION=y | |||
1400 | # Library routines | 1437 | # Library routines |
1401 | # | 1438 | # |
1402 | CONFIG_BITREVERSE=y | 1439 | CONFIG_BITREVERSE=y |
1440 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1403 | # CONFIG_CRC_CCITT is not set | 1441 | # CONFIG_CRC_CCITT is not set |
1404 | # CONFIG_CRC16 is not set | 1442 | # CONFIG_CRC16 is not set |
1405 | CONFIG_CRC_T10DIF=y | 1443 | CONFIG_CRC_T10DIF=y |
@@ -1433,6 +1471,8 @@ CONFIG_DEBUG_MEMORY_INIT=y | |||
1433 | # CONFIG_LATENCYTOP is not set | 1471 | # CONFIG_LATENCYTOP is not set |
1434 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1472 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1435 | CONFIG_HAVE_FUNCTION_TRACER=y | 1473 | CONFIG_HAVE_FUNCTION_TRACER=y |
1474 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1475 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1436 | 1476 | ||
1437 | # | 1477 | # |
1438 | # Tracers | 1478 | # Tracers |
@@ -1440,6 +1480,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1440 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1480 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1441 | # CONFIG_SAMPLES is not set | 1481 | # CONFIG_SAMPLES is not set |
1442 | CONFIG_HAVE_ARCH_KGDB=y | 1482 | CONFIG_HAVE_ARCH_KGDB=y |
1483 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1443 | # CONFIG_IRQSTACKS is not set | 1484 | # CONFIG_IRQSTACKS is not set |
1444 | # CONFIG_BOOTX_TEXT is not set | 1485 | # CONFIG_BOOTX_TEXT is not set |
1445 | # CONFIG_PPC_EARLY_DEBUG is not set | 1486 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1458,6 +1499,7 @@ CONFIG_CRYPTO=y | |||
1458 | # | 1499 | # |
1459 | # CONFIG_CRYPTO_FIPS is not set | 1500 | # CONFIG_CRYPTO_FIPS is not set |
1460 | # CONFIG_CRYPTO_MANAGER is not set | 1501 | # CONFIG_CRYPTO_MANAGER is not set |
1502 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
1461 | # CONFIG_CRYPTO_GF128MUL is not set | 1503 | # CONFIG_CRYPTO_GF128MUL is not set |
1462 | # CONFIG_CRYPTO_NULL is not set | 1504 | # CONFIG_CRYPTO_NULL is not set |
1463 | # CONFIG_CRYPTO_CRYPTD is not set | 1505 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/storcenter_defconfig b/arch/powerpc/configs/storcenter_defconfig index 7eb16ab7b71b..86512c8790d1 100644 --- a/arch/powerpc/configs/storcenter_defconfig +++ b/arch/powerpc/configs/storcenter_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:48 2008 | 4 | # Mon Jan 26 15:35:46 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -43,7 +43,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
43 | CONFIG_PPC=y | 43 | CONFIG_PPC=y |
44 | CONFIG_EARLY_PRINTK=y | 44 | CONFIG_EARLY_PRINTK=y |
45 | CONFIG_GENERIC_NVRAM=y | 45 | CONFIG_GENERIC_NVRAM=y |
46 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 46 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
47 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 47 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
48 | CONFIG_PPC_OF=y | 48 | CONFIG_PPC_OF=y |
49 | CONFIG_OF=y | 49 | CONFIG_OF=y |
@@ -73,12 +73,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
73 | # CONFIG_AUDIT is not set | 73 | # CONFIG_AUDIT is not set |
74 | # CONFIG_IKCONFIG is not set | 74 | # CONFIG_IKCONFIG is not set |
75 | CONFIG_LOG_BUF_SHIFT=14 | 75 | CONFIG_LOG_BUF_SHIFT=14 |
76 | # CONFIG_CGROUPS is not set | ||
77 | CONFIG_GROUP_SCHED=y | 76 | CONFIG_GROUP_SCHED=y |
78 | CONFIG_FAIR_GROUP_SCHED=y | 77 | CONFIG_FAIR_GROUP_SCHED=y |
79 | # CONFIG_RT_GROUP_SCHED is not set | 78 | # CONFIG_RT_GROUP_SCHED is not set |
80 | CONFIG_USER_SCHED=y | 79 | CONFIG_USER_SCHED=y |
81 | # CONFIG_CGROUP_SCHED is not set | 80 | # CONFIG_CGROUP_SCHED is not set |
81 | # CONFIG_CGROUPS is not set | ||
82 | CONFIG_SYSFS_DEPRECATED=y | 82 | CONFIG_SYSFS_DEPRECATED=y |
83 | CONFIG_SYSFS_DEPRECATED_V2=y | 83 | CONFIG_SYSFS_DEPRECATED_V2=y |
84 | # CONFIG_RELAY is not set | 84 | # CONFIG_RELAY is not set |
@@ -110,7 +110,6 @@ CONFIG_SLUB_DEBUG=y | |||
110 | CONFIG_SLUB=y | 110 | CONFIG_SLUB=y |
111 | # CONFIG_SLOB is not set | 111 | # CONFIG_SLOB is not set |
112 | # CONFIG_PROFILING is not set | 112 | # CONFIG_PROFILING is not set |
113 | # CONFIG_MARKERS is not set | ||
114 | CONFIG_HAVE_OPROFILE=y | 113 | CONFIG_HAVE_OPROFILE=y |
115 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 114 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
116 | CONFIG_HAVE_IOREMAP_PROT=y | 115 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -120,7 +119,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
120 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 119 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
121 | CONFIG_SLABINFO=y | 120 | CONFIG_SLABINFO=y |
122 | CONFIG_RT_MUTEXES=y | 121 | CONFIG_RT_MUTEXES=y |
123 | # CONFIG_TINY_SHMEM is not set | ||
124 | CONFIG_BASE_SMALL=0 | 122 | CONFIG_BASE_SMALL=0 |
125 | CONFIG_MODULES=y | 123 | CONFIG_MODULES=y |
126 | # CONFIG_MODULE_FORCE_LOAD is not set | 124 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -128,11 +126,9 @@ CONFIG_MODULE_UNLOAD=y | |||
128 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 126 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
129 | # CONFIG_MODVERSIONS is not set | 127 | # CONFIG_MODVERSIONS is not set |
130 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 128 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
131 | CONFIG_KMOD=y | ||
132 | CONFIG_BLOCK=y | 129 | CONFIG_BLOCK=y |
133 | CONFIG_LBD=y | 130 | CONFIG_LBD=y |
134 | # CONFIG_BLK_DEV_IO_TRACE is not set | 131 | # CONFIG_BLK_DEV_IO_TRACE is not set |
135 | # CONFIG_LSF is not set | ||
136 | # CONFIG_BLK_DEV_BSG is not set | 132 | # CONFIG_BLK_DEV_BSG is not set |
137 | # CONFIG_BLK_DEV_INTEGRITY is not set | 133 | # CONFIG_BLK_DEV_INTEGRITY is not set |
138 | 134 | ||
@@ -149,6 +145,10 @@ CONFIG_DEFAULT_CFQ=y | |||
149 | # CONFIG_DEFAULT_NOOP is not set | 145 | # CONFIG_DEFAULT_NOOP is not set |
150 | CONFIG_DEFAULT_IOSCHED="cfq" | 146 | CONFIG_DEFAULT_IOSCHED="cfq" |
151 | CONFIG_CLASSIC_RCU=y | 147 | CONFIG_CLASSIC_RCU=y |
148 | # CONFIG_TREE_RCU is not set | ||
149 | # CONFIG_PREEMPT_RCU is not set | ||
150 | # CONFIG_TREE_RCU_TRACE is not set | ||
151 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
152 | # CONFIG_FREEZER is not set | 152 | # CONFIG_FREEZER is not set |
153 | 153 | ||
154 | # | 154 | # |
@@ -191,6 +191,7 @@ CONFIG_MPIC=y | |||
191 | # CONFIG_TAU is not set | 191 | # CONFIG_TAU is not set |
192 | # CONFIG_QUICC_ENGINE is not set | 192 | # CONFIG_QUICC_ENGINE is not set |
193 | # CONFIG_FSL_ULI1575 is not set | 193 | # CONFIG_FSL_ULI1575 is not set |
194 | # CONFIG_SIMPLE_GPIO is not set | ||
194 | 195 | ||
195 | # | 196 | # |
196 | # Kernel options | 197 | # Kernel options |
@@ -217,6 +218,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
217 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 218 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
218 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 219 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
219 | # CONFIG_KEXEC is not set | 220 | # CONFIG_KEXEC is not set |
221 | # CONFIG_CRASH_DUMP is not set | ||
220 | CONFIG_ARCH_FLATMEM_ENABLE=y | 222 | CONFIG_ARCH_FLATMEM_ENABLE=y |
221 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 223 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
222 | CONFIG_SELECT_MEMORY_MODEL=y | 224 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -228,12 +230,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
228 | CONFIG_PAGEFLAGS_EXTENDED=y | 230 | CONFIG_PAGEFLAGS_EXTENDED=y |
229 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 231 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
230 | CONFIG_MIGRATION=y | 232 | CONFIG_MIGRATION=y |
231 | # CONFIG_RESOURCES_64BIT is not set | ||
232 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 233 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
233 | CONFIG_ZONE_DMA_FLAG=1 | 234 | CONFIG_ZONE_DMA_FLAG=1 |
234 | CONFIG_BOUNCE=y | 235 | CONFIG_BOUNCE=y |
235 | CONFIG_VIRT_TO_BUS=y | 236 | CONFIG_VIRT_TO_BUS=y |
236 | CONFIG_UNEVICTABLE_LRU=y | 237 | CONFIG_UNEVICTABLE_LRU=y |
238 | CONFIG_PPC_4K_PAGES=y | ||
239 | # CONFIG_PPC_16K_PAGES is not set | ||
240 | # CONFIG_PPC_64K_PAGES is not set | ||
237 | CONFIG_FORCE_MAX_ZONEORDER=11 | 241 | CONFIG_FORCE_MAX_ZONEORDER=11 |
238 | CONFIG_PROC_DEVICETREE=y | 242 | CONFIG_PROC_DEVICETREE=y |
239 | CONFIG_CMDLINE_BOOL=y | 243 | CONFIG_CMDLINE_BOOL=y |
@@ -257,6 +261,7 @@ CONFIG_PCI_SYSCALL=y | |||
257 | CONFIG_ARCH_SUPPORTS_MSI=y | 261 | CONFIG_ARCH_SUPPORTS_MSI=y |
258 | # CONFIG_PCI_MSI is not set | 262 | # CONFIG_PCI_MSI is not set |
259 | # CONFIG_PCI_LEGACY is not set | 263 | # CONFIG_PCI_LEGACY is not set |
264 | # CONFIG_PCI_STUB is not set | ||
260 | # CONFIG_PCCARD is not set | 265 | # CONFIG_PCCARD is not set |
261 | # CONFIG_HOTPLUG_PCI is not set | 266 | # CONFIG_HOTPLUG_PCI is not set |
262 | # CONFIG_HAS_RAPIDIO is not set | 267 | # CONFIG_HAS_RAPIDIO is not set |
@@ -279,6 +284,7 @@ CONFIG_NET=y | |||
279 | # | 284 | # |
280 | # Networking options | 285 | # Networking options |
281 | # | 286 | # |
287 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
282 | CONFIG_PACKET=m | 288 | CONFIG_PACKET=m |
283 | # CONFIG_PACKET_MMAP is not set | 289 | # CONFIG_PACKET_MMAP is not set |
284 | CONFIG_UNIX=y | 290 | CONFIG_UNIX=y |
@@ -330,6 +336,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
330 | # CONFIG_ECONET is not set | 336 | # CONFIG_ECONET is not set |
331 | # CONFIG_WAN_ROUTER is not set | 337 | # CONFIG_WAN_ROUTER is not set |
332 | # CONFIG_NET_SCHED is not set | 338 | # CONFIG_NET_SCHED is not set |
339 | # CONFIG_DCB is not set | ||
333 | 340 | ||
334 | # | 341 | # |
335 | # Network testing | 342 | # Network testing |
@@ -345,8 +352,9 @@ CONFIG_WIRELESS=y | |||
345 | # CONFIG_CFG80211 is not set | 352 | # CONFIG_CFG80211 is not set |
346 | CONFIG_WIRELESS_OLD_REGULATORY=y | 353 | CONFIG_WIRELESS_OLD_REGULATORY=y |
347 | # CONFIG_WIRELESS_EXT is not set | 354 | # CONFIG_WIRELESS_EXT is not set |
355 | # CONFIG_LIB80211 is not set | ||
348 | # CONFIG_MAC80211 is not set | 356 | # CONFIG_MAC80211 is not set |
349 | # CONFIG_IEEE80211 is not set | 357 | # CONFIG_WIMAX is not set |
350 | # CONFIG_RFKILL is not set | 358 | # CONFIG_RFKILL is not set |
351 | # CONFIG_NET_9P is not set | 359 | # CONFIG_NET_9P is not set |
352 | 360 | ||
@@ -367,6 +375,7 @@ CONFIG_MTD=y | |||
367 | # CONFIG_MTD_DEBUG is not set | 375 | # CONFIG_MTD_DEBUG is not set |
368 | # CONFIG_MTD_CONCAT is not set | 376 | # CONFIG_MTD_CONCAT is not set |
369 | CONFIG_MTD_PARTITIONS=y | 377 | CONFIG_MTD_PARTITIONS=y |
378 | # CONFIG_MTD_TESTS is not set | ||
370 | # CONFIG_MTD_REDBOOT_PARTS is not set | 379 | # CONFIG_MTD_REDBOOT_PARTS is not set |
371 | # CONFIG_MTD_CMDLINE_PARTS is not set | 380 | # CONFIG_MTD_CMDLINE_PARTS is not set |
372 | # CONFIG_MTD_OF_PARTS is not set | 381 | # CONFIG_MTD_OF_PARTS is not set |
@@ -416,9 +425,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
416 | # | 425 | # |
417 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | 426 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
418 | CONFIG_MTD_PHYSMAP=y | 427 | CONFIG_MTD_PHYSMAP=y |
419 | CONFIG_MTD_PHYSMAP_START=0xFF800000 | 428 | # CONFIG_MTD_PHYSMAP_COMPAT is not set |
420 | CONFIG_MTD_PHYSMAP_LEN=0x00800000 | ||
421 | CONFIG_MTD_PHYSMAP_BANKWIDTH=1 | ||
422 | # CONFIG_MTD_PHYSMAP_OF is not set | 429 | # CONFIG_MTD_PHYSMAP_OF is not set |
423 | # CONFIG_MTD_INTEL_VR_NOR is not set | 430 | # CONFIG_MTD_INTEL_VR_NOR is not set |
424 | # CONFIG_MTD_PLATRAM is not set | 431 | # CONFIG_MTD_PLATRAM is not set |
@@ -442,6 +449,12 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=1 | |||
442 | # CONFIG_MTD_ONENAND is not set | 449 | # CONFIG_MTD_ONENAND is not set |
443 | 450 | ||
444 | # | 451 | # |
452 | # LPDDR flash memory drivers | ||
453 | # | ||
454 | # CONFIG_MTD_LPDDR is not set | ||
455 | # CONFIG_MTD_QINFO_PROBE is not set | ||
456 | |||
457 | # | ||
445 | # UBI - Unsorted block images | 458 | # UBI - Unsorted block images |
446 | # | 459 | # |
447 | # CONFIG_MTD_UBI is not set | 460 | # CONFIG_MTD_UBI is not set |
@@ -468,8 +481,10 @@ CONFIG_MISC_DEVICES=y | |||
468 | # CONFIG_EEPROM_93CX6 is not set | 481 | # CONFIG_EEPROM_93CX6 is not set |
469 | # CONFIG_SGI_IOC4 is not set | 482 | # CONFIG_SGI_IOC4 is not set |
470 | # CONFIG_TIFM_CORE is not set | 483 | # CONFIG_TIFM_CORE is not set |
484 | # CONFIG_ICS932S401 is not set | ||
471 | # CONFIG_ENCLOSURE_SERVICES is not set | 485 | # CONFIG_ENCLOSURE_SERVICES is not set |
472 | # CONFIG_HP_ILO is not set | 486 | # CONFIG_HP_ILO is not set |
487 | # CONFIG_C2PORT is not set | ||
473 | CONFIG_HAVE_IDE=y | 488 | CONFIG_HAVE_IDE=y |
474 | CONFIG_IDE=y | 489 | CONFIG_IDE=y |
475 | 490 | ||
@@ -483,7 +498,6 @@ CONFIG_IDE_GD_ATA=y | |||
483 | # CONFIG_IDE_GD_ATAPI is not set | 498 | # CONFIG_IDE_GD_ATAPI is not set |
484 | # CONFIG_BLK_DEV_IDECD is not set | 499 | # CONFIG_BLK_DEV_IDECD is not set |
485 | # CONFIG_BLK_DEV_IDETAPE is not set | 500 | # CONFIG_BLK_DEV_IDETAPE is not set |
486 | # CONFIG_BLK_DEV_IDESCSI is not set | ||
487 | # CONFIG_IDE_TASK_IOCTL is not set | 501 | # CONFIG_IDE_TASK_IOCTL is not set |
488 | CONFIG_IDE_PROC_FS=y | 502 | CONFIG_IDE_PROC_FS=y |
489 | 503 | ||
@@ -512,6 +526,7 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
512 | # CONFIG_BLK_DEV_JMICRON is not set | 526 | # CONFIG_BLK_DEV_JMICRON is not set |
513 | # CONFIG_BLK_DEV_SC1200 is not set | 527 | # CONFIG_BLK_DEV_SC1200 is not set |
514 | # CONFIG_BLK_DEV_PIIX is not set | 528 | # CONFIG_BLK_DEV_PIIX is not set |
529 | # CONFIG_BLK_DEV_IT8172 is not set | ||
515 | # CONFIG_BLK_DEV_IT8213 is not set | 530 | # CONFIG_BLK_DEV_IT8213 is not set |
516 | # CONFIG_BLK_DEV_IT821X is not set | 531 | # CONFIG_BLK_DEV_IT821X is not set |
517 | # CONFIG_BLK_DEV_NS87415 is not set | 532 | # CONFIG_BLK_DEV_NS87415 is not set |
@@ -582,6 +597,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
582 | # CONFIG_MEGARAID_SAS is not set | 597 | # CONFIG_MEGARAID_SAS is not set |
583 | # CONFIG_SCSI_HPTIOP is not set | 598 | # CONFIG_SCSI_HPTIOP is not set |
584 | # CONFIG_SCSI_BUSLOGIC is not set | 599 | # CONFIG_SCSI_BUSLOGIC is not set |
600 | # CONFIG_LIBFC is not set | ||
601 | # CONFIG_FCOE is not set | ||
585 | # CONFIG_SCSI_DMX3191D is not set | 602 | # CONFIG_SCSI_DMX3191D is not set |
586 | # CONFIG_SCSI_EATA is not set | 603 | # CONFIG_SCSI_EATA is not set |
587 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 604 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -672,6 +689,10 @@ CONFIG_R8169=y | |||
672 | # CONFIG_IWLWIFI_LEDS is not set | 689 | # CONFIG_IWLWIFI_LEDS is not set |
673 | 690 | ||
674 | # | 691 | # |
692 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
693 | # | ||
694 | |||
695 | # | ||
675 | # USB Network Adapters | 696 | # USB Network Adapters |
676 | # | 697 | # |
677 | # CONFIG_USB_CATC is not set | 698 | # CONFIG_USB_CATC is not set |
@@ -729,8 +750,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
729 | # CONFIG_SERIAL_JSM is not set | 750 | # CONFIG_SERIAL_JSM is not set |
730 | # CONFIG_SERIAL_OF_PLATFORM is not set | 751 | # CONFIG_SERIAL_OF_PLATFORM is not set |
731 | CONFIG_UNIX98_PTYS=y | 752 | CONFIG_UNIX98_PTYS=y |
753 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
732 | CONFIG_LEGACY_PTYS=y | 754 | CONFIG_LEGACY_PTYS=y |
733 | CONFIG_LEGACY_PTY_COUNT=256 | 755 | CONFIG_LEGACY_PTY_COUNT=256 |
756 | # CONFIG_HVC_UDBG is not set | ||
734 | # CONFIG_IPMI_HANDLER is not set | 757 | # CONFIG_IPMI_HANDLER is not set |
735 | CONFIG_HW_RANDOM=m | 758 | CONFIG_HW_RANDOM=m |
736 | CONFIG_NVRAM=y | 759 | CONFIG_NVRAM=y |
@@ -816,11 +839,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
816 | # CONFIG_THERMAL is not set | 839 | # CONFIG_THERMAL is not set |
817 | # CONFIG_THERMAL_HWMON is not set | 840 | # CONFIG_THERMAL_HWMON is not set |
818 | # CONFIG_WATCHDOG is not set | 841 | # CONFIG_WATCHDOG is not set |
842 | CONFIG_SSB_POSSIBLE=y | ||
819 | 843 | ||
820 | # | 844 | # |
821 | # Sonics Silicon Backplane | 845 | # Sonics Silicon Backplane |
822 | # | 846 | # |
823 | CONFIG_SSB_POSSIBLE=y | ||
824 | # CONFIG_SSB is not set | 847 | # CONFIG_SSB is not set |
825 | 848 | ||
826 | # | 849 | # |
@@ -829,18 +852,13 @@ CONFIG_SSB_POSSIBLE=y | |||
829 | # CONFIG_MFD_CORE is not set | 852 | # CONFIG_MFD_CORE is not set |
830 | # CONFIG_MFD_SM501 is not set | 853 | # CONFIG_MFD_SM501 is not set |
831 | # CONFIG_HTC_PASIC3 is not set | 854 | # CONFIG_HTC_PASIC3 is not set |
855 | # CONFIG_TWL4030_CORE is not set | ||
832 | # CONFIG_MFD_TMIO is not set | 856 | # CONFIG_MFD_TMIO is not set |
833 | # CONFIG_PMIC_DA903X is not set | 857 | # CONFIG_PMIC_DA903X is not set |
834 | # CONFIG_MFD_WM8400 is not set | 858 | # CONFIG_MFD_WM8400 is not set |
835 | # CONFIG_MFD_WM8350_I2C is not set | 859 | # CONFIG_MFD_WM8350_I2C is not set |
836 | 860 | # CONFIG_MFD_PCF50633 is not set | |
837 | # | ||
838 | # Voltage and Current regulators | ||
839 | # | ||
840 | # CONFIG_REGULATOR is not set | 861 | # CONFIG_REGULATOR is not set |
841 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
842 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
843 | # CONFIG_REGULATOR_BQ24022 is not set | ||
844 | 862 | ||
845 | # | 863 | # |
846 | # Multimedia devices | 864 | # Multimedia devices |
@@ -903,6 +921,7 @@ CONFIG_USB_EHCI_HCD=y | |||
903 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 921 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
904 | # CONFIG_USB_EHCI_FSL is not set | 922 | # CONFIG_USB_EHCI_FSL is not set |
905 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 923 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
924 | # CONFIG_USB_OXU210HP_HCD is not set | ||
906 | # CONFIG_USB_ISP116X_HCD is not set | 925 | # CONFIG_USB_ISP116X_HCD is not set |
907 | # CONFIG_USB_ISP1760_HCD is not set | 926 | # CONFIG_USB_ISP1760_HCD is not set |
908 | CONFIG_USB_OHCI_HCD=y | 927 | CONFIG_USB_OHCI_HCD=y |
@@ -925,18 +944,17 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
925 | # CONFIG_USB_TMC is not set | 944 | # CONFIG_USB_TMC is not set |
926 | 945 | ||
927 | # | 946 | # |
928 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 947 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
929 | # | 948 | # |
930 | 949 | ||
931 | # | 950 | # |
932 | # may also be needed; see USB_STORAGE Help for more information | 951 | # see USB_STORAGE Help for more information |
933 | # | 952 | # |
934 | CONFIG_USB_STORAGE=y | 953 | CONFIG_USB_STORAGE=y |
935 | # CONFIG_USB_STORAGE_DEBUG is not set | 954 | # CONFIG_USB_STORAGE_DEBUG is not set |
936 | # CONFIG_USB_STORAGE_DATAFAB is not set | 955 | # CONFIG_USB_STORAGE_DATAFAB is not set |
937 | # CONFIG_USB_STORAGE_FREECOM is not set | 956 | # CONFIG_USB_STORAGE_FREECOM is not set |
938 | # CONFIG_USB_STORAGE_ISD200 is not set | 957 | # CONFIG_USB_STORAGE_ISD200 is not set |
939 | # CONFIG_USB_STORAGE_DPCM is not set | ||
940 | # CONFIG_USB_STORAGE_USBAT is not set | 958 | # CONFIG_USB_STORAGE_USBAT is not set |
941 | # CONFIG_USB_STORAGE_SDDR09 is not set | 959 | # CONFIG_USB_STORAGE_SDDR09 is not set |
942 | # CONFIG_USB_STORAGE_SDDR55 is not set | 960 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -983,6 +1001,10 @@ CONFIG_USB_STORAGE=y | |||
983 | # CONFIG_USB_ISIGHTFW is not set | 1001 | # CONFIG_USB_ISIGHTFW is not set |
984 | # CONFIG_USB_VST is not set | 1002 | # CONFIG_USB_VST is not set |
985 | # CONFIG_USB_GADGET is not set | 1003 | # CONFIG_USB_GADGET is not set |
1004 | |||
1005 | # | ||
1006 | # OTG and related infrastructure | ||
1007 | # | ||
986 | # CONFIG_UWB is not set | 1008 | # CONFIG_UWB is not set |
987 | # CONFIG_MMC is not set | 1009 | # CONFIG_MMC is not set |
988 | # CONFIG_MEMSTICK is not set | 1010 | # CONFIG_MEMSTICK is not set |
@@ -1020,6 +1042,7 @@ CONFIG_RTC_DRV_DS1307=y | |||
1020 | # CONFIG_RTC_DRV_M41T80 is not set | 1042 | # CONFIG_RTC_DRV_M41T80 is not set |
1021 | # CONFIG_RTC_DRV_S35390A is not set | 1043 | # CONFIG_RTC_DRV_S35390A is not set |
1022 | # CONFIG_RTC_DRV_FM3130 is not set | 1044 | # CONFIG_RTC_DRV_FM3130 is not set |
1045 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1023 | 1046 | ||
1024 | # | 1047 | # |
1025 | # SPI RTC drivers | 1048 | # SPI RTC drivers |
@@ -1070,7 +1093,9 @@ CONFIG_XFS_FS=m | |||
1070 | # CONFIG_XFS_POSIX_ACL is not set | 1093 | # CONFIG_XFS_POSIX_ACL is not set |
1071 | # CONFIG_XFS_RT is not set | 1094 | # CONFIG_XFS_RT is not set |
1072 | # CONFIG_XFS_DEBUG is not set | 1095 | # CONFIG_XFS_DEBUG is not set |
1096 | # CONFIG_GFS2_FS is not set | ||
1073 | # CONFIG_OCFS2_FS is not set | 1097 | # CONFIG_OCFS2_FS is not set |
1098 | # CONFIG_BTRFS_FS is not set | ||
1074 | CONFIG_DNOTIFY=y | 1099 | CONFIG_DNOTIFY=y |
1075 | CONFIG_INOTIFY=y | 1100 | CONFIG_INOTIFY=y |
1076 | CONFIG_INOTIFY_USER=y | 1101 | CONFIG_INOTIFY_USER=y |
@@ -1104,10 +1129,7 @@ CONFIG_TMPFS=y | |||
1104 | # CONFIG_TMPFS_POSIX_ACL is not set | 1129 | # CONFIG_TMPFS_POSIX_ACL is not set |
1105 | # CONFIG_HUGETLB_PAGE is not set | 1130 | # CONFIG_HUGETLB_PAGE is not set |
1106 | # CONFIG_CONFIGFS_FS is not set | 1131 | # CONFIG_CONFIGFS_FS is not set |
1107 | 1132 | CONFIG_MISC_FILESYSTEMS=y | |
1108 | # | ||
1109 | # Miscellaneous filesystems | ||
1110 | # | ||
1111 | # CONFIG_ADFS_FS is not set | 1133 | # CONFIG_ADFS_FS is not set |
1112 | # CONFIG_AFFS_FS is not set | 1134 | # CONFIG_AFFS_FS is not set |
1113 | # CONFIG_HFS_FS is not set | 1135 | # CONFIG_HFS_FS is not set |
@@ -1127,6 +1149,7 @@ CONFIG_JFFS2_ZLIB=y | |||
1127 | CONFIG_JFFS2_RTIME=y | 1149 | CONFIG_JFFS2_RTIME=y |
1128 | # CONFIG_JFFS2_RUBIN is not set | 1150 | # CONFIG_JFFS2_RUBIN is not set |
1129 | # CONFIG_CRAMFS is not set | 1151 | # CONFIG_CRAMFS is not set |
1152 | # CONFIG_SQUASHFS is not set | ||
1130 | # CONFIG_VXFS_FS is not set | 1153 | # CONFIG_VXFS_FS is not set |
1131 | # CONFIG_MINIX_FS is not set | 1154 | # CONFIG_MINIX_FS is not set |
1132 | # CONFIG_OMFS_FS is not set | 1155 | # CONFIG_OMFS_FS is not set |
@@ -1204,6 +1227,7 @@ CONFIG_NLS_UTF8=y | |||
1204 | # Library routines | 1227 | # Library routines |
1205 | # | 1228 | # |
1206 | CONFIG_BITREVERSE=y | 1229 | CONFIG_BITREVERSE=y |
1230 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1207 | # CONFIG_CRC_CCITT is not set | 1231 | # CONFIG_CRC_CCITT is not set |
1208 | # CONFIG_CRC16 is not set | 1232 | # CONFIG_CRC16 is not set |
1209 | CONFIG_CRC_T10DIF=y | 1233 | CONFIG_CRC_T10DIF=y |
@@ -1239,6 +1263,8 @@ CONFIG_FRAME_WARN=1024 | |||
1239 | # CONFIG_LATENCYTOP is not set | 1263 | # CONFIG_LATENCYTOP is not set |
1240 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1264 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1241 | CONFIG_HAVE_FUNCTION_TRACER=y | 1265 | CONFIG_HAVE_FUNCTION_TRACER=y |
1266 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1267 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1242 | 1268 | ||
1243 | # | 1269 | # |
1244 | # Tracers | 1270 | # Tracers |
@@ -1246,6 +1272,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1246 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1272 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1247 | # CONFIG_SAMPLES is not set | 1273 | # CONFIG_SAMPLES is not set |
1248 | CONFIG_HAVE_ARCH_KGDB=y | 1274 | CONFIG_HAVE_ARCH_KGDB=y |
1275 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1249 | # CONFIG_IRQSTACKS is not set | 1276 | # CONFIG_IRQSTACKS is not set |
1250 | # CONFIG_BOOTX_TEXT is not set | 1277 | # CONFIG_BOOTX_TEXT is not set |
1251 | # CONFIG_PPC_EARLY_DEBUG is not set | 1278 | # CONFIG_PPC_EARLY_DEBUG is not set |
diff --git a/arch/powerpc/kernel/vio.c b/arch/powerpc/kernel/vio.c index 94aa7b011b27..d3694498f3af 100644 --- a/arch/powerpc/kernel/vio.c +++ b/arch/powerpc/kernel/vio.c | |||
@@ -492,14 +492,14 @@ static void *vio_dma_iommu_alloc_coherent(struct device *dev, size_t size, | |||
492 | struct vio_dev *viodev = to_vio_dev(dev); | 492 | struct vio_dev *viodev = to_vio_dev(dev); |
493 | void *ret; | 493 | void *ret; |
494 | 494 | ||
495 | if (vio_cmo_alloc(viodev, roundup(size, IOMMU_PAGE_SIZE))) { | 495 | if (vio_cmo_alloc(viodev, roundup(size, PAGE_SIZE))) { |
496 | atomic_inc(&viodev->cmo.allocs_failed); | 496 | atomic_inc(&viodev->cmo.allocs_failed); |
497 | return NULL; | 497 | return NULL; |
498 | } | 498 | } |
499 | 499 | ||
500 | ret = dma_iommu_ops.alloc_coherent(dev, size, dma_handle, flag); | 500 | ret = dma_iommu_ops.alloc_coherent(dev, size, dma_handle, flag); |
501 | if (unlikely(ret == NULL)) { | 501 | if (unlikely(ret == NULL)) { |
502 | vio_cmo_dealloc(viodev, roundup(size, IOMMU_PAGE_SIZE)); | 502 | vio_cmo_dealloc(viodev, roundup(size, PAGE_SIZE)); |
503 | atomic_inc(&viodev->cmo.allocs_failed); | 503 | atomic_inc(&viodev->cmo.allocs_failed); |
504 | } | 504 | } |
505 | 505 | ||
@@ -513,7 +513,7 @@ static void vio_dma_iommu_free_coherent(struct device *dev, size_t size, | |||
513 | 513 | ||
514 | dma_iommu_ops.free_coherent(dev, size, vaddr, dma_handle); | 514 | dma_iommu_ops.free_coherent(dev, size, vaddr, dma_handle); |
515 | 515 | ||
516 | vio_cmo_dealloc(viodev, roundup(size, IOMMU_PAGE_SIZE)); | 516 | vio_cmo_dealloc(viodev, roundup(size, PAGE_SIZE)); |
517 | } | 517 | } |
518 | 518 | ||
519 | static dma_addr_t vio_dma_iommu_map_page(struct device *dev, struct page *page, | 519 | static dma_addr_t vio_dma_iommu_map_page(struct device *dev, struct page *page, |
@@ -572,6 +572,7 @@ static int vio_dma_iommu_map_sg(struct device *dev, struct scatterlist *sglist, | |||
572 | if (unlikely(!ret)) { | 572 | if (unlikely(!ret)) { |
573 | vio_cmo_dealloc(viodev, alloc_size); | 573 | vio_cmo_dealloc(viodev, alloc_size); |
574 | atomic_inc(&viodev->cmo.allocs_failed); | 574 | atomic_inc(&viodev->cmo.allocs_failed); |
575 | return ret; | ||
575 | } | 576 | } |
576 | 577 | ||
577 | for (sgl = sglist, count = 0; count < ret; count++, sgl++) | 578 | for (sgl = sglist, count = 0; count < ret; count++, sgl++) |
diff --git a/arch/powerpc/mm/ppc_mmu_32.c b/arch/powerpc/mm/ppc_mmu_32.c index 45d925360b89..fe65c405412c 100644 --- a/arch/powerpc/mm/ppc_mmu_32.c +++ b/arch/powerpc/mm/ppc_mmu_32.c | |||
@@ -123,9 +123,9 @@ void __init setbat(int index, unsigned long virt, phys_addr_t phys, | |||
123 | int wimgxpp; | 123 | int wimgxpp; |
124 | struct ppc_bat *bat = BATS[index]; | 124 | struct ppc_bat *bat = BATS[index]; |
125 | 125 | ||
126 | if (((flags & _PAGE_NO_CACHE) == 0) && | 126 | if ((flags & _PAGE_NO_CACHE) || |
127 | cpu_has_feature(CPU_FTR_NEED_COHERENT)) | 127 | (cpu_has_feature(CPU_FTR_NEED_COHERENT) == 0)) |
128 | flags |= _PAGE_COHERENT; | 128 | flags &= ~_PAGE_COHERENT; |
129 | 129 | ||
130 | bl = (size >> 17) - 1; | 130 | bl = (size >> 17) - 1; |
131 | if (PVR_VER(mfspr(SPRN_PVR)) != 1) { | 131 | if (PVR_VER(mfspr(SPRN_PVR)) != 1) { |
diff --git a/arch/powerpc/platforms/44x/Makefile b/arch/powerpc/platforms/44x/Makefile index 698133180aee..01f51daace13 100644 --- a/arch/powerpc/platforms/44x/Makefile +++ b/arch/powerpc/platforms/44x/Makefile | |||
@@ -3,5 +3,4 @@ obj-$(CONFIG_PPC44x_SIMPLE) += ppc44x_simple.o | |||
3 | obj-$(CONFIG_EBONY) += ebony.o | 3 | obj-$(CONFIG_EBONY) += ebony.o |
4 | obj-$(CONFIG_SAM440EP) += sam440ep.o | 4 | obj-$(CONFIG_SAM440EP) += sam440ep.o |
5 | obj-$(CONFIG_WARP) += warp.o | 5 | obj-$(CONFIG_WARP) += warp.o |
6 | obj-$(CONFIG_WARP) += warp-nand.o | ||
7 | obj-$(CONFIG_XILINX_VIRTEX_5_FXT) += virtex.o | 6 | obj-$(CONFIG_XILINX_VIRTEX_5_FXT) += virtex.o |
diff --git a/arch/powerpc/platforms/44x/warp-nand.c b/arch/powerpc/platforms/44x/warp-nand.c deleted file mode 100644 index 89ecd76127d8..000000000000 --- a/arch/powerpc/platforms/44x/warp-nand.c +++ /dev/null | |||
@@ -1,135 +0,0 @@ | |||
1 | /* | ||
2 | * PIKA Warp(tm) NAND flash specific routines | ||
3 | * | ||
4 | * Copyright (c) 2008 PIKA Technologies | ||
5 | * Sean MacLennan <smaclennan@pikatech.com> | ||
6 | */ | ||
7 | |||
8 | #include <linux/platform_device.h> | ||
9 | #include <linux/mtd/mtd.h> | ||
10 | #include <linux/mtd/map.h> | ||
11 | #include <linux/mtd/partitions.h> | ||
12 | #include <linux/mtd/nand.h> | ||
13 | #include <linux/mtd/ndfc.h> | ||
14 | #include <linux/of.h> | ||
15 | #include <asm/machdep.h> | ||
16 | |||
17 | |||
18 | #ifdef CONFIG_MTD_NAND_NDFC | ||
19 | |||
20 | #define CS_NAND_0 1 /* use chip select 1 for NAND device 0 */ | ||
21 | |||
22 | #define WARP_NAND_FLASH_REG_ADDR 0xD0000000UL | ||
23 | #define WARP_NAND_FLASH_REG_SIZE 0x2000 | ||
24 | |||
25 | static struct resource warp_ndfc = { | ||
26 | .start = WARP_NAND_FLASH_REG_ADDR, | ||
27 | .end = WARP_NAND_FLASH_REG_ADDR + WARP_NAND_FLASH_REG_SIZE - 1, | ||
28 | .flags = IORESOURCE_MEM, | ||
29 | }; | ||
30 | |||
31 | static struct mtd_partition nand_parts[] = { | ||
32 | { | ||
33 | .name = "kernel", | ||
34 | .offset = 0, | ||
35 | .size = 0x0200000 | ||
36 | }, | ||
37 | { | ||
38 | .name = "root", | ||
39 | .offset = 0x0200000, | ||
40 | .size = 0x3E00000 | ||
41 | }, | ||
42 | { | ||
43 | .name = "persistent", | ||
44 | .offset = 0x4000000, | ||
45 | .size = 0x4000000 | ||
46 | }, | ||
47 | { | ||
48 | .name = "persistent1", | ||
49 | .offset = 0x8000000, | ||
50 | .size = 0x4000000 | ||
51 | }, | ||
52 | { | ||
53 | .name = "persistent2", | ||
54 | .offset = 0xC000000, | ||
55 | .size = 0x4000000 | ||
56 | } | ||
57 | }; | ||
58 | |||
59 | struct ndfc_controller_settings warp_ndfc_settings = { | ||
60 | .ccr_settings = (NDFC_CCR_BS(CS_NAND_0) | NDFC_CCR_ARAC1), | ||
61 | .ndfc_erpn = 0, | ||
62 | }; | ||
63 | |||
64 | static struct ndfc_chip_settings warp_chip0_settings = { | ||
65 | .bank_settings = 0x80002222, | ||
66 | }; | ||
67 | |||
68 | struct platform_nand_ctrl warp_nand_ctrl = { | ||
69 | .priv = &warp_ndfc_settings, | ||
70 | }; | ||
71 | |||
72 | static struct platform_device warp_ndfc_device = { | ||
73 | .name = "ndfc-nand", | ||
74 | .id = 0, | ||
75 | .dev = { | ||
76 | .platform_data = &warp_nand_ctrl, | ||
77 | }, | ||
78 | .num_resources = 1, | ||
79 | .resource = &warp_ndfc, | ||
80 | }; | ||
81 | |||
82 | /* Do NOT set the ecclayout: let it default so it is correct for both | ||
83 | * 64M and 256M flash chips. | ||
84 | */ | ||
85 | static struct platform_nand_chip warp_nand_chip0 = { | ||
86 | .nr_chips = 1, | ||
87 | .chip_offset = CS_NAND_0, | ||
88 | .nr_partitions = ARRAY_SIZE(nand_parts), | ||
89 | .partitions = nand_parts, | ||
90 | .chip_delay = 20, | ||
91 | .priv = &warp_chip0_settings, | ||
92 | }; | ||
93 | |||
94 | static struct platform_device warp_nand_device = { | ||
95 | .name = "ndfc-chip", | ||
96 | .id = 0, | ||
97 | .num_resources = 0, | ||
98 | .dev = { | ||
99 | .platform_data = &warp_nand_chip0, | ||
100 | .parent = &warp_ndfc_device.dev, | ||
101 | } | ||
102 | }; | ||
103 | |||
104 | static int warp_setup_nand_flash(void) | ||
105 | { | ||
106 | struct device_node *np; | ||
107 | |||
108 | /* Try to detect a rev A based on NOR size. */ | ||
109 | np = of_find_compatible_node(NULL, NULL, "cfi-flash"); | ||
110 | if (np) { | ||
111 | struct property *pp; | ||
112 | |||
113 | pp = of_find_property(np, "reg", NULL); | ||
114 | if (pp && (pp->length == 12)) { | ||
115 | u32 *v = pp->value; | ||
116 | if (v[2] == 0x4000000) { | ||
117 | /* Rev A = 64M NAND */ | ||
118 | warp_nand_chip0.nr_partitions = 3; | ||
119 | |||
120 | nand_parts[1].size = 0x3000000; | ||
121 | nand_parts[2].offset = 0x3200000; | ||
122 | nand_parts[2].size = 0x0e00000; | ||
123 | } | ||
124 | } | ||
125 | of_node_put(np); | ||
126 | } | ||
127 | |||
128 | platform_device_register(&warp_ndfc_device); | ||
129 | platform_device_register(&warp_nand_device); | ||
130 | |||
131 | return 0; | ||
132 | } | ||
133 | machine_device_initcall(warp, warp_setup_nand_flash); | ||
134 | |||
135 | #endif | ||
diff --git a/arch/powerpc/platforms/83xx/mpc831x_rdb.c b/arch/powerpc/platforms/83xx/mpc831x_rdb.c index 5177bdd2c62a..91a2c80b9d72 100644 --- a/arch/powerpc/platforms/83xx/mpc831x_rdb.c +++ b/arch/powerpc/platforms/83xx/mpc831x_rdb.c | |||
@@ -71,6 +71,7 @@ static int __init mpc831x_rdb_probe(void) | |||
71 | 71 | ||
72 | static struct of_device_id __initdata of_bus_ids[] = { | 72 | static struct of_device_id __initdata of_bus_ids[] = { |
73 | { .compatible = "simple-bus" }, | 73 | { .compatible = "simple-bus" }, |
74 | { .compatible = "gianfar" }, | ||
74 | {}, | 75 | {}, |
75 | }; | 76 | }; |
76 | 77 | ||
diff --git a/arch/powerpc/platforms/pseries/phyp_dump.c b/arch/powerpc/platforms/pseries/phyp_dump.c index 6cf35cd8d0b5..15eb6107bcd2 100644 --- a/arch/powerpc/platforms/pseries/phyp_dump.c +++ b/arch/powerpc/platforms/pseries/phyp_dump.c | |||
@@ -144,8 +144,8 @@ static void print_dump_header(const struct phyp_dump_header *ph) | |||
144 | ph->first_offset_section); | 144 | ph->first_offset_section); |
145 | printk(KERN_INFO "dump disk sections should be zero\n"); | 145 | printk(KERN_INFO "dump disk sections should be zero\n"); |
146 | printk(KERN_INFO "dump disk section = %d\n", ph->dump_disk_section); | 146 | printk(KERN_INFO "dump disk section = %d\n", ph->dump_disk_section); |
147 | printk(KERN_INFO "block num = %ld\n", ph->block_num_dd); | 147 | printk(KERN_INFO "block num = %lld\n", ph->block_num_dd); |
148 | printk(KERN_INFO "number of blocks = %ld\n", ph->num_of_blocks_dd); | 148 | printk(KERN_INFO "number of blocks = %lld\n", ph->num_of_blocks_dd); |
149 | printk(KERN_INFO "dump disk offset = %d\n", ph->offset_dd); | 149 | printk(KERN_INFO "dump disk offset = %d\n", ph->offset_dd); |
150 | printk(KERN_INFO "Max auto time= %d\n", ph->maxtime_to_auto); | 150 | printk(KERN_INFO "Max auto time= %d\n", ph->maxtime_to_auto); |
151 | 151 | ||
@@ -154,33 +154,33 @@ static void print_dump_header(const struct phyp_dump_header *ph) | |||
154 | printk(KERN_INFO "cpu dump_flags =%d\n", ph->cpu_data.dump_flags); | 154 | printk(KERN_INFO "cpu dump_flags =%d\n", ph->cpu_data.dump_flags); |
155 | printk(KERN_INFO "cpu source_type =%d\n", ph->cpu_data.source_type); | 155 | printk(KERN_INFO "cpu source_type =%d\n", ph->cpu_data.source_type); |
156 | printk(KERN_INFO "cpu error_flags =%d\n", ph->cpu_data.error_flags); | 156 | printk(KERN_INFO "cpu error_flags =%d\n", ph->cpu_data.error_flags); |
157 | printk(KERN_INFO "cpu source_address =%lx\n", | 157 | printk(KERN_INFO "cpu source_address =%llx\n", |
158 | ph->cpu_data.source_address); | 158 | ph->cpu_data.source_address); |
159 | printk(KERN_INFO "cpu source_length =%lx\n", | 159 | printk(KERN_INFO "cpu source_length =%llx\n", |
160 | ph->cpu_data.source_length); | 160 | ph->cpu_data.source_length); |
161 | printk(KERN_INFO "cpu length_copied =%lx\n", | 161 | printk(KERN_INFO "cpu length_copied =%llx\n", |
162 | ph->cpu_data.length_copied); | 162 | ph->cpu_data.length_copied); |
163 | 163 | ||
164 | printk(KERN_INFO " HPTE AREA \n"); | 164 | printk(KERN_INFO " HPTE AREA \n"); |
165 | printk(KERN_INFO "HPTE dump_flags =%d\n", ph->hpte_data.dump_flags); | 165 | printk(KERN_INFO "HPTE dump_flags =%d\n", ph->hpte_data.dump_flags); |
166 | printk(KERN_INFO "HPTE source_type =%d\n", ph->hpte_data.source_type); | 166 | printk(KERN_INFO "HPTE source_type =%d\n", ph->hpte_data.source_type); |
167 | printk(KERN_INFO "HPTE error_flags =%d\n", ph->hpte_data.error_flags); | 167 | printk(KERN_INFO "HPTE error_flags =%d\n", ph->hpte_data.error_flags); |
168 | printk(KERN_INFO "HPTE source_address =%lx\n", | 168 | printk(KERN_INFO "HPTE source_address =%llx\n", |
169 | ph->hpte_data.source_address); | 169 | ph->hpte_data.source_address); |
170 | printk(KERN_INFO "HPTE source_length =%lx\n", | 170 | printk(KERN_INFO "HPTE source_length =%llx\n", |
171 | ph->hpte_data.source_length); | 171 | ph->hpte_data.source_length); |
172 | printk(KERN_INFO "HPTE length_copied =%lx\n", | 172 | printk(KERN_INFO "HPTE length_copied =%llx\n", |
173 | ph->hpte_data.length_copied); | 173 | ph->hpte_data.length_copied); |
174 | 174 | ||
175 | printk(KERN_INFO " SRSD AREA \n"); | 175 | printk(KERN_INFO " SRSD AREA \n"); |
176 | printk(KERN_INFO "SRSD dump_flags =%d\n", ph->kernel_data.dump_flags); | 176 | printk(KERN_INFO "SRSD dump_flags =%d\n", ph->kernel_data.dump_flags); |
177 | printk(KERN_INFO "SRSD source_type =%d\n", ph->kernel_data.source_type); | 177 | printk(KERN_INFO "SRSD source_type =%d\n", ph->kernel_data.source_type); |
178 | printk(KERN_INFO "SRSD error_flags =%d\n", ph->kernel_data.error_flags); | 178 | printk(KERN_INFO "SRSD error_flags =%d\n", ph->kernel_data.error_flags); |
179 | printk(KERN_INFO "SRSD source_address =%lx\n", | 179 | printk(KERN_INFO "SRSD source_address =%llx\n", |
180 | ph->kernel_data.source_address); | 180 | ph->kernel_data.source_address); |
181 | printk(KERN_INFO "SRSD source_length =%lx\n", | 181 | printk(KERN_INFO "SRSD source_length =%llx\n", |
182 | ph->kernel_data.source_length); | 182 | ph->kernel_data.source_length); |
183 | printk(KERN_INFO "SRSD length_copied =%lx\n", | 183 | printk(KERN_INFO "SRSD length_copied =%llx\n", |
184 | ph->kernel_data.length_copied); | 184 | ph->kernel_data.length_copied); |
185 | #endif | 185 | #endif |
186 | } | 186 | } |
@@ -367,8 +367,8 @@ static ssize_t show_release_region(struct kobject *kobj, | |||
367 | /* total reserved size - start of scratch area */ | 367 | /* total reserved size - start of scratch area */ |
368 | second_addr_range = phyp_dump_info->init_reserve_size - | 368 | second_addr_range = phyp_dump_info->init_reserve_size - |
369 | phyp_dump_info->reserved_scratch_size; | 369 | phyp_dump_info->reserved_scratch_size; |
370 | return sprintf(buf, "CPU:0x%lx-0x%lx: HPTE:0x%lx-0x%lx:" | 370 | return sprintf(buf, "CPU:0x%llx-0x%llx: HPTE:0x%llx-0x%llx:" |
371 | " DUMP:0x%lx-0x%lx, 0x%lx-0x%lx:\n", | 371 | " DUMP:0x%llx-0x%llx, 0x%lx-0x%llx:\n", |
372 | phdr.cpu_data.destination_address, | 372 | phdr.cpu_data.destination_address, |
373 | phdr.cpu_data.length_copied, | 373 | phdr.cpu_data.length_copied, |
374 | phdr.hpte_data.destination_address, | 374 | phdr.hpte_data.destination_address, |
diff --git a/crypto/authenc.c b/crypto/authenc.c index 40b6e9ec9e3a..5793b64c81a8 100644 --- a/crypto/authenc.c +++ b/crypto/authenc.c | |||
@@ -158,16 +158,19 @@ static int crypto_authenc_genicv(struct aead_request *req, u8 *iv, | |||
158 | dstp = sg_page(dst); | 158 | dstp = sg_page(dst); |
159 | vdst = PageHighMem(dstp) ? NULL : page_address(dstp) + dst->offset; | 159 | vdst = PageHighMem(dstp) ? NULL : page_address(dstp) + dst->offset; |
160 | 160 | ||
161 | sg_init_table(cipher, 2); | 161 | if (ivsize) { |
162 | sg_set_buf(cipher, iv, ivsize); | 162 | sg_init_table(cipher, 2); |
163 | authenc_chain(cipher, dst, vdst == iv + ivsize); | 163 | sg_set_buf(cipher, iv, ivsize); |
164 | authenc_chain(cipher, dst, vdst == iv + ivsize); | ||
165 | dst = cipher; | ||
166 | } | ||
164 | 167 | ||
165 | cryptlen = req->cryptlen + ivsize; | 168 | cryptlen = req->cryptlen + ivsize; |
166 | hash = crypto_authenc_hash(req, flags, cipher, cryptlen); | 169 | hash = crypto_authenc_hash(req, flags, dst, cryptlen); |
167 | if (IS_ERR(hash)) | 170 | if (IS_ERR(hash)) |
168 | return PTR_ERR(hash); | 171 | return PTR_ERR(hash); |
169 | 172 | ||
170 | scatterwalk_map_and_copy(hash, cipher, cryptlen, | 173 | scatterwalk_map_and_copy(hash, dst, cryptlen, |
171 | crypto_aead_authsize(authenc), 1); | 174 | crypto_aead_authsize(authenc), 1); |
172 | return 0; | 175 | return 0; |
173 | } | 176 | } |
@@ -285,11 +288,14 @@ static int crypto_authenc_iverify(struct aead_request *req, u8 *iv, | |||
285 | srcp = sg_page(src); | 288 | srcp = sg_page(src); |
286 | vsrc = PageHighMem(srcp) ? NULL : page_address(srcp) + src->offset; | 289 | vsrc = PageHighMem(srcp) ? NULL : page_address(srcp) + src->offset; |
287 | 290 | ||
288 | sg_init_table(cipher, 2); | 291 | if (ivsize) { |
289 | sg_set_buf(cipher, iv, ivsize); | 292 | sg_init_table(cipher, 2); |
290 | authenc_chain(cipher, src, vsrc == iv + ivsize); | 293 | sg_set_buf(cipher, iv, ivsize); |
294 | authenc_chain(cipher, src, vsrc == iv + ivsize); | ||
295 | src = cipher; | ||
296 | } | ||
291 | 297 | ||
292 | return crypto_authenc_verify(req, cipher, cryptlen + ivsize); | 298 | return crypto_authenc_verify(req, src, cryptlen + ivsize); |
293 | } | 299 | } |
294 | 300 | ||
295 | static int crypto_authenc_decrypt(struct aead_request *req) | 301 | static int crypto_authenc_decrypt(struct aead_request *req) |
diff --git a/crypto/blkcipher.c b/crypto/blkcipher.c index 4a7e65c4df4d..d70a41c002df 100644 --- a/crypto/blkcipher.c +++ b/crypto/blkcipher.c | |||
@@ -124,6 +124,7 @@ int blkcipher_walk_done(struct blkcipher_desc *desc, | |||
124 | scatterwalk_done(&walk->in, 0, nbytes); | 124 | scatterwalk_done(&walk->in, 0, nbytes); |
125 | scatterwalk_done(&walk->out, 1, nbytes); | 125 | scatterwalk_done(&walk->out, 1, nbytes); |
126 | 126 | ||
127 | err: | ||
127 | walk->total = nbytes; | 128 | walk->total = nbytes; |
128 | walk->nbytes = nbytes; | 129 | walk->nbytes = nbytes; |
129 | 130 | ||
@@ -132,7 +133,6 @@ int blkcipher_walk_done(struct blkcipher_desc *desc, | |||
132 | return blkcipher_walk_next(desc, walk); | 133 | return blkcipher_walk_next(desc, walk); |
133 | } | 134 | } |
134 | 135 | ||
135 | err: | ||
136 | if (walk->iv != desc->info) | 136 | if (walk->iv != desc->info) |
137 | memcpy(desc->info, walk->iv, crypto_blkcipher_ivsize(tfm)); | 137 | memcpy(desc->info, walk->iv, crypto_blkcipher_ivsize(tfm)); |
138 | if (walk->buffer != walk->page) | 138 | if (walk->buffer != walk->page) |
diff --git a/crypto/ccm.c b/crypto/ccm.c index 7cf7e5a6b781..c36d654cf56a 100644 --- a/crypto/ccm.c +++ b/crypto/ccm.c | |||
@@ -266,6 +266,8 @@ static int crypto_ccm_auth(struct aead_request *req, struct scatterlist *plain, | |||
266 | if (assoclen) { | 266 | if (assoclen) { |
267 | pctx->ilen = format_adata(idata, assoclen); | 267 | pctx->ilen = format_adata(idata, assoclen); |
268 | get_data_to_compute(cipher, pctx, req->assoc, req->assoclen); | 268 | get_data_to_compute(cipher, pctx, req->assoc, req->assoclen); |
269 | } else { | ||
270 | pctx->ilen = 0; | ||
269 | } | 271 | } |
270 | 272 | ||
271 | /* compute plaintext into mac */ | 273 | /* compute plaintext into mac */ |
diff --git a/drivers/ata/Kconfig b/drivers/ata/Kconfig index 503a908afc80..0bcf26464670 100644 --- a/drivers/ata/Kconfig +++ b/drivers/ata/Kconfig | |||
@@ -112,11 +112,11 @@ config ATA_PIIX | |||
112 | If unsure, say N. | 112 | If unsure, say N. |
113 | 113 | ||
114 | config SATA_MV | 114 | config SATA_MV |
115 | tristate "Marvell SATA support (HIGHLY EXPERIMENTAL)" | 115 | tristate "Marvell SATA support" |
116 | depends on EXPERIMENTAL | ||
117 | help | 116 | help |
118 | This option enables support for the Marvell Serial ATA family. | 117 | This option enables support for the Marvell Serial ATA family. |
119 | Currently supports 88SX[56]0[48][01] chips. | 118 | Currently supports 88SX[56]0[48][01] PCI(-X) chips, |
119 | as well as the newer [67]042 PCI-X/PCIe and SOC devices. | ||
120 | 120 | ||
121 | If unsure, say N. | 121 | If unsure, say N. |
122 | 122 | ||
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index 96039671e3b9..77bba4c083cb 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c | |||
@@ -2548,6 +2548,32 @@ static void ahci_p5wdh_workaround(struct ata_host *host) | |||
2548 | } | 2548 | } |
2549 | } | 2549 | } |
2550 | 2550 | ||
2551 | static bool ahci_broken_system_poweroff(struct pci_dev *pdev) | ||
2552 | { | ||
2553 | static const struct dmi_system_id broken_systems[] = { | ||
2554 | { | ||
2555 | .ident = "HP Compaq nx6310", | ||
2556 | .matches = { | ||
2557 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), | ||
2558 | DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6310"), | ||
2559 | }, | ||
2560 | /* PCI slot number of the controller */ | ||
2561 | .driver_data = (void *)0x1FUL, | ||
2562 | }, | ||
2563 | |||
2564 | { } /* terminate list */ | ||
2565 | }; | ||
2566 | const struct dmi_system_id *dmi = dmi_first_match(broken_systems); | ||
2567 | |||
2568 | if (dmi) { | ||
2569 | unsigned long slot = (unsigned long)dmi->driver_data; | ||
2570 | /* apply the quirk only to on-board controllers */ | ||
2571 | return slot == PCI_SLOT(pdev->devfn); | ||
2572 | } | ||
2573 | |||
2574 | return false; | ||
2575 | } | ||
2576 | |||
2551 | static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) | 2577 | static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) |
2552 | { | 2578 | { |
2553 | static int printed_version; | 2579 | static int printed_version; |
@@ -2647,6 +2673,12 @@ static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
2647 | } | 2673 | } |
2648 | } | 2674 | } |
2649 | 2675 | ||
2676 | if (ahci_broken_system_poweroff(pdev)) { | ||
2677 | pi.flags |= ATA_FLAG_NO_POWEROFF_SPINDOWN; | ||
2678 | dev_info(&pdev->dev, | ||
2679 | "quirky BIOS, skipping spindown on poweroff\n"); | ||
2680 | } | ||
2681 | |||
2650 | /* CAP.NP sometimes indicate the index of the last enabled | 2682 | /* CAP.NP sometimes indicate the index of the last enabled |
2651 | * port, at other times, that of the last possible port, so | 2683 | * port, at other times, that of the last possible port, so |
2652 | * determining the maximum port number requires looking at | 2684 | * determining the maximum port number requires looking at |
diff --git a/drivers/ata/ata_piix.c b/drivers/ata/ata_piix.c index 887d8f46a287..54961c0b2c73 100644 --- a/drivers/ata/ata_piix.c +++ b/drivers/ata/ata_piix.c | |||
@@ -1387,6 +1387,32 @@ static void piix_iocfg_bit18_quirk(struct ata_host *host) | |||
1387 | } | 1387 | } |
1388 | } | 1388 | } |
1389 | 1389 | ||
1390 | static bool piix_broken_system_poweroff(struct pci_dev *pdev) | ||
1391 | { | ||
1392 | static const struct dmi_system_id broken_systems[] = { | ||
1393 | { | ||
1394 | .ident = "HP Compaq 2510p", | ||
1395 | .matches = { | ||
1396 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), | ||
1397 | DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq 2510p"), | ||
1398 | }, | ||
1399 | /* PCI slot number of the controller */ | ||
1400 | .driver_data = (void *)0x1FUL, | ||
1401 | }, | ||
1402 | |||
1403 | { } /* terminate list */ | ||
1404 | }; | ||
1405 | const struct dmi_system_id *dmi = dmi_first_match(broken_systems); | ||
1406 | |||
1407 | if (dmi) { | ||
1408 | unsigned long slot = (unsigned long)dmi->driver_data; | ||
1409 | /* apply the quirk only to on-board controllers */ | ||
1410 | return slot == PCI_SLOT(pdev->devfn); | ||
1411 | } | ||
1412 | |||
1413 | return false; | ||
1414 | } | ||
1415 | |||
1390 | /** | 1416 | /** |
1391 | * piix_init_one - Register PIIX ATA PCI device with kernel services | 1417 | * piix_init_one - Register PIIX ATA PCI device with kernel services |
1392 | * @pdev: PCI device to register | 1418 | * @pdev: PCI device to register |
@@ -1422,6 +1448,14 @@ static int __devinit piix_init_one(struct pci_dev *pdev, | |||
1422 | if (!in_module_init) | 1448 | if (!in_module_init) |
1423 | return -ENODEV; | 1449 | return -ENODEV; |
1424 | 1450 | ||
1451 | if (piix_broken_system_poweroff(pdev)) { | ||
1452 | piix_port_info[ent->driver_data].flags |= | ||
1453 | ATA_FLAG_NO_POWEROFF_SPINDOWN | | ||
1454 | ATA_FLAG_NO_HIBERNATE_SPINDOWN; | ||
1455 | dev_info(&pdev->dev, "quirky BIOS, skipping spindown " | ||
1456 | "on poweroff and hibernation\n"); | ||
1457 | } | ||
1458 | |||
1425 | port_info[0] = piix_port_info[ent->driver_data]; | 1459 | port_info[0] = piix_port_info[ent->driver_data]; |
1426 | port_info[1] = piix_port_info[ent->driver_data]; | 1460 | port_info[1] = piix_port_info[ent->driver_data]; |
1427 | 1461 | ||
diff --git a/drivers/ata/libata-scsi.c b/drivers/ata/libata-scsi.c index a1a6e6298c33..3c4c5ae277ba 100644 --- a/drivers/ata/libata-scsi.c +++ b/drivers/ata/libata-scsi.c | |||
@@ -46,6 +46,7 @@ | |||
46 | #include <linux/libata.h> | 46 | #include <linux/libata.h> |
47 | #include <linux/hdreg.h> | 47 | #include <linux/hdreg.h> |
48 | #include <linux/uaccess.h> | 48 | #include <linux/uaccess.h> |
49 | #include <linux/suspend.h> | ||
49 | 50 | ||
50 | #include "libata.h" | 51 | #include "libata.h" |
51 | 52 | ||
@@ -1303,6 +1304,17 @@ static unsigned int ata_scsi_start_stop_xlat(struct ata_queued_cmd *qc) | |||
1303 | 1304 | ||
1304 | tf->command = ATA_CMD_VERIFY; /* READ VERIFY */ | 1305 | tf->command = ATA_CMD_VERIFY; /* READ VERIFY */ |
1305 | } else { | 1306 | } else { |
1307 | /* Some odd clown BIOSen issue spindown on power off (ACPI S4 | ||
1308 | * or S5) causing some drives to spin up and down again. | ||
1309 | */ | ||
1310 | if ((qc->ap->flags & ATA_FLAG_NO_POWEROFF_SPINDOWN) && | ||
1311 | system_state == SYSTEM_POWER_OFF) | ||
1312 | goto skip; | ||
1313 | |||
1314 | if ((qc->ap->flags & ATA_FLAG_NO_HIBERNATE_SPINDOWN) && | ||
1315 | system_entering_hibernation()) | ||
1316 | goto skip; | ||
1317 | |||
1306 | /* XXX: This is for backward compatibility, will be | 1318 | /* XXX: This is for backward compatibility, will be |
1307 | * removed. Read Documentation/feature-removal-schedule.txt | 1319 | * removed. Read Documentation/feature-removal-schedule.txt |
1308 | * for more info. | 1320 | * for more info. |
@@ -1326,8 +1338,7 @@ static unsigned int ata_scsi_start_stop_xlat(struct ata_queued_cmd *qc) | |||
1326 | scmd->scsi_done = qc->scsidone; | 1338 | scmd->scsi_done = qc->scsidone; |
1327 | qc->scsidone = ata_delayed_done; | 1339 | qc->scsidone = ata_delayed_done; |
1328 | } | 1340 | } |
1329 | scmd->result = SAM_STAT_GOOD; | 1341 | goto skip; |
1330 | return 1; | ||
1331 | } | 1342 | } |
1332 | 1343 | ||
1333 | /* Issue ATA STANDBY IMMEDIATE command */ | 1344 | /* Issue ATA STANDBY IMMEDIATE command */ |
@@ -1343,10 +1354,13 @@ static unsigned int ata_scsi_start_stop_xlat(struct ata_queued_cmd *qc) | |||
1343 | 1354 | ||
1344 | return 0; | 1355 | return 0; |
1345 | 1356 | ||
1346 | invalid_fld: | 1357 | invalid_fld: |
1347 | ata_scsi_set_sense(scmd, ILLEGAL_REQUEST, 0x24, 0x0); | 1358 | ata_scsi_set_sense(scmd, ILLEGAL_REQUEST, 0x24, 0x0); |
1348 | /* "Invalid field in cbd" */ | 1359 | /* "Invalid field in cbd" */ |
1349 | return 1; | 1360 | return 1; |
1361 | skip: | ||
1362 | scmd->result = SAM_STAT_GOOD; | ||
1363 | return 1; | ||
1350 | } | 1364 | } |
1351 | 1365 | ||
1352 | 1366 | ||
diff --git a/drivers/ata/libata-sff.c b/drivers/ata/libata-sff.c index 5a4aad123c42..0b299b0f8172 100644 --- a/drivers/ata/libata-sff.c +++ b/drivers/ata/libata-sff.c | |||
@@ -1322,7 +1322,7 @@ fsm_start: | |||
1322 | * condition. Mark hint. | 1322 | * condition. Mark hint. |
1323 | */ | 1323 | */ |
1324 | ata_ehi_push_desc(ehi, "ST-ATA: " | 1324 | ata_ehi_push_desc(ehi, "ST-ATA: " |
1325 | "DRQ=1 with device error, " | 1325 | "DRQ=0 without device error, " |
1326 | "dev_stat 0x%X", status); | 1326 | "dev_stat 0x%X", status); |
1327 | qc->err_mask |= AC_ERR_HSM | | 1327 | qc->err_mask |= AC_ERR_HSM | |
1328 | AC_ERR_NODEV_HINT; | 1328 | AC_ERR_NODEV_HINT; |
@@ -1358,6 +1358,16 @@ fsm_start: | |||
1358 | qc->err_mask |= AC_ERR_HSM; | 1358 | qc->err_mask |= AC_ERR_HSM; |
1359 | } | 1359 | } |
1360 | 1360 | ||
1361 | /* There are oddball controllers with | ||
1362 | * status register stuck at 0x7f and | ||
1363 | * lbal/m/h at zero which makes it | ||
1364 | * pass all other presence detection | ||
1365 | * mechanisms we have. Set NODEV_HINT | ||
1366 | * for it. Kernel bz#7241. | ||
1367 | */ | ||
1368 | if (status == 0x7f) | ||
1369 | qc->err_mask |= AC_ERR_NODEV_HINT; | ||
1370 | |||
1361 | /* ata_pio_sectors() might change the | 1371 | /* ata_pio_sectors() might change the |
1362 | * state to HSM_ST_LAST. so, the state | 1372 | * state to HSM_ST_LAST. so, the state |
1363 | * is changed after ata_pio_sectors(). | 1373 | * is changed after ata_pio_sectors(). |
diff --git a/drivers/ata/pata_rb532_cf.c b/drivers/ata/pata_rb532_cf.c index c2e6fb9f2ef9..ebfcda26d639 100644 --- a/drivers/ata/pata_rb532_cf.c +++ b/drivers/ata/pata_rb532_cf.c | |||
@@ -63,8 +63,6 @@ static inline void rb532_pata_finish_io(struct ata_port *ap) | |||
63 | ata_sff_sync might be sufficient. */ | 63 | ata_sff_sync might be sufficient. */ |
64 | ata_sff_dma_pause(ap); | 64 | ata_sff_dma_pause(ap); |
65 | ndelay(RB500_CF_IO_DELAY); | 65 | ndelay(RB500_CF_IO_DELAY); |
66 | |||
67 | set_irq_type(info->irq, IRQ_TYPE_LEVEL_HIGH); | ||
68 | } | 66 | } |
69 | 67 | ||
70 | static void rb532_pata_exec_command(struct ata_port *ap, | 68 | static void rb532_pata_exec_command(struct ata_port *ap, |
diff --git a/drivers/ata/pata_via.c b/drivers/ata/pata_via.c index 681169c9c640..79a6c9a0b721 100644 --- a/drivers/ata/pata_via.c +++ b/drivers/ata/pata_via.c | |||
@@ -86,6 +86,10 @@ enum { | |||
86 | VIA_SATA_PATA = 0x800, /* SATA/PATA combined configuration */ | 86 | VIA_SATA_PATA = 0x800, /* SATA/PATA combined configuration */ |
87 | }; | 87 | }; |
88 | 88 | ||
89 | enum { | ||
90 | VIA_IDFLAG_SINGLE = (1 << 0), /* single channel controller) */ | ||
91 | }; | ||
92 | |||
89 | /* | 93 | /* |
90 | * VIA SouthBridge chips. | 94 | * VIA SouthBridge chips. |
91 | */ | 95 | */ |
@@ -97,8 +101,12 @@ static const struct via_isa_bridge { | |||
97 | u8 rev_max; | 101 | u8 rev_max; |
98 | u16 flags; | 102 | u16 flags; |
99 | } via_isa_bridges[] = { | 103 | } via_isa_bridges[] = { |
104 | { "vx855", PCI_DEVICE_ID_VIA_VX855, 0x00, 0x2f, | ||
105 | VIA_UDMA_133 | VIA_BAD_AST | VIA_SATA_PATA }, | ||
100 | { "vx800", PCI_DEVICE_ID_VIA_VX800, 0x00, 0x2f, VIA_UDMA_133 | | 106 | { "vx800", PCI_DEVICE_ID_VIA_VX800, 0x00, 0x2f, VIA_UDMA_133 | |
101 | VIA_BAD_AST | VIA_SATA_PATA }, | 107 | VIA_BAD_AST | VIA_SATA_PATA }, |
108 | { "vt8261", PCI_DEVICE_ID_VIA_8261, 0x00, 0x2f, | ||
109 | VIA_UDMA_133 | VIA_BAD_AST }, | ||
102 | { "vt8237s", PCI_DEVICE_ID_VIA_8237S, 0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST }, | 110 | { "vt8237s", PCI_DEVICE_ID_VIA_8237S, 0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST }, |
103 | { "vt8251", PCI_DEVICE_ID_VIA_8251, 0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST }, | 111 | { "vt8251", PCI_DEVICE_ID_VIA_8251, 0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST }, |
104 | { "cx700", PCI_DEVICE_ID_VIA_CX700, 0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST | VIA_SATA_PATA }, | 112 | { "cx700", PCI_DEVICE_ID_VIA_CX700, 0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST | VIA_SATA_PATA }, |
@@ -122,6 +130,8 @@ static const struct via_isa_bridge { | |||
122 | { "vt82c586", PCI_DEVICE_ID_VIA_82C586_0, 0x00, 0x0f, VIA_UDMA_NONE | VIA_SET_FIFO }, | 130 | { "vt82c586", PCI_DEVICE_ID_VIA_82C586_0, 0x00, 0x0f, VIA_UDMA_NONE | VIA_SET_FIFO }, |
123 | { "vt82c576", PCI_DEVICE_ID_VIA_82C576, 0x00, 0x2f, VIA_UDMA_NONE | VIA_SET_FIFO | VIA_NO_UNMASK }, | 131 | { "vt82c576", PCI_DEVICE_ID_VIA_82C576, 0x00, 0x2f, VIA_UDMA_NONE | VIA_SET_FIFO | VIA_NO_UNMASK }, |
124 | { "vt82c576", PCI_DEVICE_ID_VIA_82C576, 0x00, 0x2f, VIA_UDMA_NONE | VIA_SET_FIFO | VIA_NO_UNMASK | VIA_BAD_ID }, | 132 | { "vt82c576", PCI_DEVICE_ID_VIA_82C576, 0x00, 0x2f, VIA_UDMA_NONE | VIA_SET_FIFO | VIA_NO_UNMASK | VIA_BAD_ID }, |
133 | { "vtxxxx", PCI_DEVICE_ID_VIA_ANON, 0x00, 0x2f, | ||
134 | VIA_UDMA_133 | VIA_BAD_AST }, | ||
125 | { NULL } | 135 | { NULL } |
126 | }; | 136 | }; |
127 | 137 | ||
@@ -460,6 +470,7 @@ static int via_init_one(struct pci_dev *pdev, const struct pci_device_id *id) | |||
460 | static int printed_version; | 470 | static int printed_version; |
461 | u8 enable; | 471 | u8 enable; |
462 | u32 timing; | 472 | u32 timing; |
473 | unsigned long flags = id->driver_data; | ||
463 | int rc; | 474 | int rc; |
464 | 475 | ||
465 | if (!printed_version++) | 476 | if (!printed_version++) |
@@ -469,9 +480,13 @@ static int via_init_one(struct pci_dev *pdev, const struct pci_device_id *id) | |||
469 | if (rc) | 480 | if (rc) |
470 | return rc; | 481 | return rc; |
471 | 482 | ||
483 | if (flags & VIA_IDFLAG_SINGLE) | ||
484 | ppi[1] = &ata_dummy_port_info; | ||
485 | |||
472 | /* To find out how the IDE will behave and what features we | 486 | /* To find out how the IDE will behave and what features we |
473 | actually have to look at the bridge not the IDE controller */ | 487 | actually have to look at the bridge not the IDE controller */ |
474 | for (config = via_isa_bridges; config->id; config++) | 488 | for (config = via_isa_bridges; config->id != PCI_DEVICE_ID_VIA_ANON; |
489 | config++) | ||
475 | if ((isa = pci_get_device(PCI_VENDOR_ID_VIA + | 490 | if ((isa = pci_get_device(PCI_VENDOR_ID_VIA + |
476 | !!(config->flags & VIA_BAD_ID), | 491 | !!(config->flags & VIA_BAD_ID), |
477 | config->id, NULL))) { | 492 | config->id, NULL))) { |
@@ -482,10 +497,6 @@ static int via_init_one(struct pci_dev *pdev, const struct pci_device_id *id) | |||
482 | pci_dev_put(isa); | 497 | pci_dev_put(isa); |
483 | } | 498 | } |
484 | 499 | ||
485 | if (!config->id) { | ||
486 | printk(KERN_WARNING "via: Unknown VIA SouthBridge, disabling.\n"); | ||
487 | return -ENODEV; | ||
488 | } | ||
489 | pci_dev_put(isa); | 500 | pci_dev_put(isa); |
490 | 501 | ||
491 | if (!(config->flags & VIA_NO_ENABLES)) { | 502 | if (!(config->flags & VIA_NO_ENABLES)) { |
@@ -587,6 +598,7 @@ static const struct pci_device_id via[] = { | |||
587 | { PCI_VDEVICE(VIA, 0x1571), }, | 598 | { PCI_VDEVICE(VIA, 0x1571), }, |
588 | { PCI_VDEVICE(VIA, 0x3164), }, | 599 | { PCI_VDEVICE(VIA, 0x3164), }, |
589 | { PCI_VDEVICE(VIA, 0x5324), }, | 600 | { PCI_VDEVICE(VIA, 0x5324), }, |
601 | { PCI_VDEVICE(VIA, 0xC409), VIA_IDFLAG_SINGLE }, | ||
590 | 602 | ||
591 | { }, | 603 | { }, |
592 | }; | 604 | }; |
diff --git a/drivers/ata/sata_mv.c b/drivers/ata/sata_mv.c index 86918634a4c5..f2d8a020ea53 100644 --- a/drivers/ata/sata_mv.c +++ b/drivers/ata/sata_mv.c | |||
@@ -33,10 +33,6 @@ | |||
33 | * | 33 | * |
34 | * --> ATAPI support (Marvell claims the 60xx/70xx chips can do it). | 34 | * --> ATAPI support (Marvell claims the 60xx/70xx chips can do it). |
35 | * | 35 | * |
36 | * --> Investigate problems with PCI Message Signalled Interrupts (MSI). | ||
37 | * | ||
38 | * --> Cache frequently-accessed registers in mv_port_priv to reduce overhead. | ||
39 | * | ||
40 | * --> Develop a low-power-consumption strategy, and implement it. | 36 | * --> Develop a low-power-consumption strategy, and implement it. |
41 | * | 37 | * |
42 | * --> [Experiment, low priority] Investigate interrupt coalescing. | 38 | * --> [Experiment, low priority] Investigate interrupt coalescing. |
@@ -72,7 +68,7 @@ | |||
72 | #include <linux/libata.h> | 68 | #include <linux/libata.h> |
73 | 69 | ||
74 | #define DRV_NAME "sata_mv" | 70 | #define DRV_NAME "sata_mv" |
75 | #define DRV_VERSION "1.24" | 71 | #define DRV_VERSION "1.25" |
76 | 72 | ||
77 | enum { | 73 | enum { |
78 | /* BAR's are enumerated in terms of pci_resource_start() terms */ | 74 | /* BAR's are enumerated in terms of pci_resource_start() terms */ |
@@ -351,8 +347,6 @@ enum { | |||
351 | 347 | ||
352 | EDMA_HALTCOND_OFS = 0x60, /* GenIIe halt conditions */ | 348 | EDMA_HALTCOND_OFS = 0x60, /* GenIIe halt conditions */ |
353 | 349 | ||
354 | GEN_II_NCQ_MAX_SECTORS = 256, /* max sects/io on Gen2 w/NCQ */ | ||
355 | |||
356 | /* Host private flags (hp_flags) */ | 350 | /* Host private flags (hp_flags) */ |
357 | MV_HP_FLAG_MSI = (1 << 0), | 351 | MV_HP_FLAG_MSI = (1 << 0), |
358 | MV_HP_ERRATA_50XXB0 = (1 << 1), | 352 | MV_HP_ERRATA_50XXB0 = (1 << 1), |
@@ -883,19 +877,15 @@ static void mv_start_dma(struct ata_port *ap, void __iomem *port_mmio, | |||
883 | struct mv_host_priv *hpriv = ap->host->private_data; | 877 | struct mv_host_priv *hpriv = ap->host->private_data; |
884 | int hardport = mv_hardport_from_port(ap->port_no); | 878 | int hardport = mv_hardport_from_port(ap->port_no); |
885 | void __iomem *hc_mmio = mv_hc_base_from_port( | 879 | void __iomem *hc_mmio = mv_hc_base_from_port( |
886 | mv_host_base(ap->host), hardport); | 880 | mv_host_base(ap->host), ap->port_no); |
887 | u32 hc_irq_cause, ipending; | 881 | u32 hc_irq_cause; |
888 | 882 | ||
889 | /* clear EDMA event indicators, if any */ | 883 | /* clear EDMA event indicators, if any */ |
890 | writelfl(0, port_mmio + EDMA_ERR_IRQ_CAUSE_OFS); | 884 | writelfl(0, port_mmio + EDMA_ERR_IRQ_CAUSE_OFS); |
891 | 885 | ||
892 | /* clear EDMA interrupt indicator, if any */ | 886 | /* clear pending irq events */ |
893 | hc_irq_cause = readl(hc_mmio + HC_IRQ_CAUSE_OFS); | 887 | hc_irq_cause = ~((DEV_IRQ | DMA_IRQ) << hardport); |
894 | ipending = (DEV_IRQ | DMA_IRQ) << hardport; | 888 | writelfl(hc_irq_cause, hc_mmio + HC_IRQ_CAUSE_OFS); |
895 | if (hc_irq_cause & ipending) { | ||
896 | writelfl(hc_irq_cause & ~ipending, | ||
897 | hc_mmio + HC_IRQ_CAUSE_OFS); | ||
898 | } | ||
899 | 889 | ||
900 | mv_edma_cfg(ap, want_ncq); | 890 | mv_edma_cfg(ap, want_ncq); |
901 | 891 | ||
@@ -1099,20 +1089,12 @@ static void mv6_dev_config(struct ata_device *adev) | |||
1099 | * | 1089 | * |
1100 | * Gen-II does not support NCQ over a port multiplier | 1090 | * Gen-II does not support NCQ over a port multiplier |
1101 | * (no FIS-based switching). | 1091 | * (no FIS-based switching). |
1102 | * | ||
1103 | * We don't have hob_nsect when doing NCQ commands on Gen-II. | ||
1104 | * See mv_qc_prep() for more info. | ||
1105 | */ | 1092 | */ |
1106 | if (adev->flags & ATA_DFLAG_NCQ) { | 1093 | if (adev->flags & ATA_DFLAG_NCQ) { |
1107 | if (sata_pmp_attached(adev->link->ap)) { | 1094 | if (sata_pmp_attached(adev->link->ap)) { |
1108 | adev->flags &= ~ATA_DFLAG_NCQ; | 1095 | adev->flags &= ~ATA_DFLAG_NCQ; |
1109 | ata_dev_printk(adev, KERN_INFO, | 1096 | ata_dev_printk(adev, KERN_INFO, |
1110 | "NCQ disabled for command-based switching\n"); | 1097 | "NCQ disabled for command-based switching\n"); |
1111 | } else if (adev->max_sectors > GEN_II_NCQ_MAX_SECTORS) { | ||
1112 | adev->max_sectors = GEN_II_NCQ_MAX_SECTORS; | ||
1113 | ata_dev_printk(adev, KERN_INFO, | ||
1114 | "max_sectors limited to %u for NCQ\n", | ||
1115 | adev->max_sectors); | ||
1116 | } | 1098 | } |
1117 | } | 1099 | } |
1118 | } | 1100 | } |
@@ -1450,7 +1432,8 @@ static void mv_qc_prep(struct ata_queued_cmd *qc) | |||
1450 | * only 11 bytes...so we must pick and choose required | 1432 | * only 11 bytes...so we must pick and choose required |
1451 | * registers based on the command. So, we drop feature and | 1433 | * registers based on the command. So, we drop feature and |
1452 | * hob_feature for [RW] DMA commands, but they are needed for | 1434 | * hob_feature for [RW] DMA commands, but they are needed for |
1453 | * NCQ. NCQ will drop hob_nsect. | 1435 | * NCQ. NCQ will drop hob_nsect, which is not needed there |
1436 | * (nsect is used only for the tag; feat/hob_feat hold true nsect). | ||
1454 | */ | 1437 | */ |
1455 | switch (tf->command) { | 1438 | switch (tf->command) { |
1456 | case ATA_CMD_READ: | 1439 | case ATA_CMD_READ: |
@@ -2214,9 +2197,15 @@ static irqreturn_t mv_interrupt(int irq, void *dev_instance) | |||
2214 | struct ata_host *host = dev_instance; | 2197 | struct ata_host *host = dev_instance; |
2215 | struct mv_host_priv *hpriv = host->private_data; | 2198 | struct mv_host_priv *hpriv = host->private_data; |
2216 | unsigned int handled = 0; | 2199 | unsigned int handled = 0; |
2200 | int using_msi = hpriv->hp_flags & MV_HP_FLAG_MSI; | ||
2217 | u32 main_irq_cause, pending_irqs; | 2201 | u32 main_irq_cause, pending_irqs; |
2218 | 2202 | ||
2219 | spin_lock(&host->lock); | 2203 | spin_lock(&host->lock); |
2204 | |||
2205 | /* for MSI: block new interrupts while in here */ | ||
2206 | if (using_msi) | ||
2207 | writel(0, hpriv->main_irq_mask_addr); | ||
2208 | |||
2220 | main_irq_cause = readl(hpriv->main_irq_cause_addr); | 2209 | main_irq_cause = readl(hpriv->main_irq_cause_addr); |
2221 | pending_irqs = main_irq_cause & hpriv->main_irq_mask; | 2210 | pending_irqs = main_irq_cause & hpriv->main_irq_mask; |
2222 | /* | 2211 | /* |
@@ -2230,6 +2219,11 @@ static irqreturn_t mv_interrupt(int irq, void *dev_instance) | |||
2230 | handled = mv_host_intr(host, pending_irqs); | 2219 | handled = mv_host_intr(host, pending_irqs); |
2231 | } | 2220 | } |
2232 | spin_unlock(&host->lock); | 2221 | spin_unlock(&host->lock); |
2222 | |||
2223 | /* for MSI: unmask; interrupt cause bits will retrigger now */ | ||
2224 | if (using_msi) | ||
2225 | writel(hpriv->main_irq_mask, hpriv->main_irq_mask_addr); | ||
2226 | |||
2233 | return IRQ_RETVAL(handled); | 2227 | return IRQ_RETVAL(handled); |
2234 | } | 2228 | } |
2235 | 2229 | ||
@@ -2821,8 +2815,7 @@ static void mv_eh_thaw(struct ata_port *ap) | |||
2821 | writel(0, port_mmio + EDMA_ERR_IRQ_CAUSE_OFS); | 2815 | writel(0, port_mmio + EDMA_ERR_IRQ_CAUSE_OFS); |
2822 | 2816 | ||
2823 | /* clear pending irq events */ | 2817 | /* clear pending irq events */ |
2824 | hc_irq_cause = readl(hc_mmio + HC_IRQ_CAUSE_OFS); | 2818 | hc_irq_cause = ~((DEV_IRQ | DMA_IRQ) << hardport); |
2825 | hc_irq_cause &= ~((DEV_IRQ | DMA_IRQ) << hardport); | ||
2826 | writelfl(hc_irq_cause, hc_mmio + HC_IRQ_CAUSE_OFS); | 2819 | writelfl(hc_irq_cause, hc_mmio + HC_IRQ_CAUSE_OFS); |
2827 | 2820 | ||
2828 | mv_enable_port_irqs(ap, ERR_IRQ); | 2821 | mv_enable_port_irqs(ap, ERR_IRQ); |
@@ -3075,6 +3068,9 @@ static int mv_init_host(struct ata_host *host, unsigned int board_idx) | |||
3075 | hpriv->main_irq_mask_addr = mmio + PCI_HC_MAIN_IRQ_MASK_OFS; | 3068 | hpriv->main_irq_mask_addr = mmio + PCI_HC_MAIN_IRQ_MASK_OFS; |
3076 | } | 3069 | } |
3077 | 3070 | ||
3071 | /* initialize shadow irq mask with register's value */ | ||
3072 | hpriv->main_irq_mask = readl(hpriv->main_irq_mask_addr); | ||
3073 | |||
3078 | /* global interrupt mask: 0 == mask everything */ | 3074 | /* global interrupt mask: 0 == mask everything */ |
3079 | mv_set_main_irq_mask(host, ~0, 0); | 3075 | mv_set_main_irq_mask(host, ~0, 0); |
3080 | 3076 | ||
@@ -3430,9 +3426,9 @@ static int mv_pci_init_one(struct pci_dev *pdev, | |||
3430 | if (rc) | 3426 | if (rc) |
3431 | return rc; | 3427 | return rc; |
3432 | 3428 | ||
3433 | /* Enable interrupts */ | 3429 | /* Enable message-switched interrupts, if requested */ |
3434 | if (msi && pci_enable_msi(pdev)) | 3430 | if (msi && pci_enable_msi(pdev) == 0) |
3435 | pci_intx(pdev, 1); | 3431 | hpriv->hp_flags |= MV_HP_FLAG_MSI; |
3436 | 3432 | ||
3437 | mv_dump_pci_cfg(pdev, 0x68); | 3433 | mv_dump_pci_cfg(pdev, 0x68); |
3438 | mv_print_info(host); | 3434 | mv_print_info(host); |
diff --git a/drivers/ata/sata_nv.c b/drivers/ata/sata_nv.c index 6f1460614325..c49ad0e61b6f 100644 --- a/drivers/ata/sata_nv.c +++ b/drivers/ata/sata_nv.c | |||
@@ -305,10 +305,10 @@ static irqreturn_t nv_ck804_interrupt(int irq, void *dev_instance); | |||
305 | static int nv_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val); | 305 | static int nv_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val); |
306 | static int nv_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val); | 306 | static int nv_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val); |
307 | 307 | ||
308 | static int nv_noclassify_hardreset(struct ata_link *link, unsigned int *class, | ||
309 | unsigned long deadline); | ||
308 | static void nv_nf2_freeze(struct ata_port *ap); | 310 | static void nv_nf2_freeze(struct ata_port *ap); |
309 | static void nv_nf2_thaw(struct ata_port *ap); | 311 | static void nv_nf2_thaw(struct ata_port *ap); |
310 | static int nv_nf2_hardreset(struct ata_link *link, unsigned int *class, | ||
311 | unsigned long deadline); | ||
312 | static void nv_ck804_freeze(struct ata_port *ap); | 312 | static void nv_ck804_freeze(struct ata_port *ap); |
313 | static void nv_ck804_thaw(struct ata_port *ap); | 313 | static void nv_ck804_thaw(struct ata_port *ap); |
314 | static int nv_adma_slave_config(struct scsi_device *sdev); | 314 | static int nv_adma_slave_config(struct scsi_device *sdev); |
@@ -352,6 +352,7 @@ enum nv_host_type | |||
352 | NFORCE3 = NFORCE2, /* NF2 == NF3 as far as sata_nv is concerned */ | 352 | NFORCE3 = NFORCE2, /* NF2 == NF3 as far as sata_nv is concerned */ |
353 | CK804, | 353 | CK804, |
354 | ADMA, | 354 | ADMA, |
355 | MCP5x, | ||
355 | SWNCQ, | 356 | SWNCQ, |
356 | }; | 357 | }; |
357 | 358 | ||
@@ -363,10 +364,10 @@ static const struct pci_device_id nv_pci_tbl[] = { | |||
363 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_CK804_SATA2), CK804 }, | 364 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_CK804_SATA2), CK804 }, |
364 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP04_SATA), CK804 }, | 365 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP04_SATA), CK804 }, |
365 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP04_SATA2), CK804 }, | 366 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP04_SATA2), CK804 }, |
366 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP51_SATA), SWNCQ }, | 367 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP51_SATA), MCP5x }, |
367 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP51_SATA2), SWNCQ }, | 368 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP51_SATA2), MCP5x }, |
368 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP55_SATA), SWNCQ }, | 369 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP55_SATA), MCP5x }, |
369 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP55_SATA2), SWNCQ }, | 370 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP55_SATA2), MCP5x }, |
370 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_SATA), GENERIC }, | 371 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_SATA), GENERIC }, |
371 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_SATA2), GENERIC }, | 372 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_SATA2), GENERIC }, |
372 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_SATA3), GENERIC }, | 373 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_SATA3), GENERIC }, |
@@ -432,7 +433,7 @@ static struct ata_port_operations nv_nf2_ops = { | |||
432 | .inherits = &nv_common_ops, | 433 | .inherits = &nv_common_ops, |
433 | .freeze = nv_nf2_freeze, | 434 | .freeze = nv_nf2_freeze, |
434 | .thaw = nv_nf2_thaw, | 435 | .thaw = nv_nf2_thaw, |
435 | .hardreset = nv_nf2_hardreset, | 436 | .hardreset = nv_noclassify_hardreset, |
436 | }; | 437 | }; |
437 | 438 | ||
438 | /* CK804 finally gets hardreset right */ | 439 | /* CK804 finally gets hardreset right */ |
@@ -467,8 +468,19 @@ static struct ata_port_operations nv_adma_ops = { | |||
467 | .host_stop = nv_adma_host_stop, | 468 | .host_stop = nv_adma_host_stop, |
468 | }; | 469 | }; |
469 | 470 | ||
471 | /* Kernel bz#12351 reports that when SWNCQ is enabled, for hotplug to | ||
472 | * work, hardreset should be used and hardreset can't report proper | ||
473 | * signature, which suggests that mcp5x is closer to nf2 as long as | ||
474 | * reset quirkiness is concerned. Define separate ops for mcp5x with | ||
475 | * nv_noclassify_hardreset(). | ||
476 | */ | ||
477 | static struct ata_port_operations nv_mcp5x_ops = { | ||
478 | .inherits = &nv_common_ops, | ||
479 | .hardreset = nv_noclassify_hardreset, | ||
480 | }; | ||
481 | |||
470 | static struct ata_port_operations nv_swncq_ops = { | 482 | static struct ata_port_operations nv_swncq_ops = { |
471 | .inherits = &nv_generic_ops, | 483 | .inherits = &nv_mcp5x_ops, |
472 | 484 | ||
473 | .qc_defer = ata_std_qc_defer, | 485 | .qc_defer = ata_std_qc_defer, |
474 | .qc_prep = nv_swncq_qc_prep, | 486 | .qc_prep = nv_swncq_qc_prep, |
@@ -531,6 +543,15 @@ static const struct ata_port_info nv_port_info[] = { | |||
531 | .port_ops = &nv_adma_ops, | 543 | .port_ops = &nv_adma_ops, |
532 | .private_data = NV_PI_PRIV(nv_adma_interrupt, &nv_adma_sht), | 544 | .private_data = NV_PI_PRIV(nv_adma_interrupt, &nv_adma_sht), |
533 | }, | 545 | }, |
546 | /* MCP5x */ | ||
547 | { | ||
548 | .flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY, | ||
549 | .pio_mask = NV_PIO_MASK, | ||
550 | .mwdma_mask = NV_MWDMA_MASK, | ||
551 | .udma_mask = NV_UDMA_MASK, | ||
552 | .port_ops = &nv_mcp5x_ops, | ||
553 | .private_data = NV_PI_PRIV(nv_generic_interrupt, &nv_sht), | ||
554 | }, | ||
534 | /* SWNCQ */ | 555 | /* SWNCQ */ |
535 | { | 556 | { |
536 | .flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY | | 557 | .flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY | |
@@ -1530,6 +1551,17 @@ static int nv_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val) | |||
1530 | return 0; | 1551 | return 0; |
1531 | } | 1552 | } |
1532 | 1553 | ||
1554 | static int nv_noclassify_hardreset(struct ata_link *link, unsigned int *class, | ||
1555 | unsigned long deadline) | ||
1556 | { | ||
1557 | bool online; | ||
1558 | int rc; | ||
1559 | |||
1560 | rc = sata_link_hardreset(link, sata_deb_timing_hotplug, deadline, | ||
1561 | &online, NULL); | ||
1562 | return online ? -EAGAIN : rc; | ||
1563 | } | ||
1564 | |||
1533 | static void nv_nf2_freeze(struct ata_port *ap) | 1565 | static void nv_nf2_freeze(struct ata_port *ap) |
1534 | { | 1566 | { |
1535 | void __iomem *scr_addr = ap->host->ports[0]->ioaddr.scr_addr; | 1567 | void __iomem *scr_addr = ap->host->ports[0]->ioaddr.scr_addr; |
@@ -1554,17 +1586,6 @@ static void nv_nf2_thaw(struct ata_port *ap) | |||
1554 | iowrite8(mask, scr_addr + NV_INT_ENABLE); | 1586 | iowrite8(mask, scr_addr + NV_INT_ENABLE); |
1555 | } | 1587 | } |
1556 | 1588 | ||
1557 | static int nv_nf2_hardreset(struct ata_link *link, unsigned int *class, | ||
1558 | unsigned long deadline) | ||
1559 | { | ||
1560 | bool online; | ||
1561 | int rc; | ||
1562 | |||
1563 | rc = sata_link_hardreset(link, sata_deb_timing_hotplug, deadline, | ||
1564 | &online, NULL); | ||
1565 | return online ? -EAGAIN : rc; | ||
1566 | } | ||
1567 | |||
1568 | static void nv_ck804_freeze(struct ata_port *ap) | 1589 | static void nv_ck804_freeze(struct ata_port *ap) |
1569 | { | 1590 | { |
1570 | void __iomem *mmio_base = ap->host->iomap[NV_MMIO_BAR]; | 1591 | void __iomem *mmio_base = ap->host->iomap[NV_MMIO_BAR]; |
@@ -2355,14 +2376,9 @@ static int nv_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
2355 | if (type == CK804 && adma_enabled) { | 2376 | if (type == CK804 && adma_enabled) { |
2356 | dev_printk(KERN_NOTICE, &pdev->dev, "Using ADMA mode\n"); | 2377 | dev_printk(KERN_NOTICE, &pdev->dev, "Using ADMA mode\n"); |
2357 | type = ADMA; | 2378 | type = ADMA; |
2358 | } | 2379 | } else if (type == MCP5x && swncq_enabled) { |
2359 | 2380 | dev_printk(KERN_NOTICE, &pdev->dev, "Using SWNCQ mode\n"); | |
2360 | if (type == SWNCQ) { | 2381 | type = SWNCQ; |
2361 | if (swncq_enabled) | ||
2362 | dev_printk(KERN_NOTICE, &pdev->dev, | ||
2363 | "Using SWNCQ mode\n"); | ||
2364 | else | ||
2365 | type = GENERIC; | ||
2366 | } | 2382 | } |
2367 | 2383 | ||
2368 | ppi[0] = &nv_port_info[type]; | 2384 | ppi[0] = &nv_port_info[type]; |
diff --git a/drivers/ata/sata_sil.c b/drivers/ata/sata_sil.c index 564c142b03b0..bfd55b085ae6 100644 --- a/drivers/ata/sata_sil.c +++ b/drivers/ata/sata_sil.c | |||
@@ -695,11 +695,38 @@ static void sil_init_controller(struct ata_host *host) | |||
695 | } | 695 | } |
696 | } | 696 | } |
697 | 697 | ||
698 | static bool sil_broken_system_poweroff(struct pci_dev *pdev) | ||
699 | { | ||
700 | static const struct dmi_system_id broken_systems[] = { | ||
701 | { | ||
702 | .ident = "HP Compaq nx6325", | ||
703 | .matches = { | ||
704 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), | ||
705 | DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6325"), | ||
706 | }, | ||
707 | /* PCI slot number of the controller */ | ||
708 | .driver_data = (void *)0x12UL, | ||
709 | }, | ||
710 | |||
711 | { } /* terminate list */ | ||
712 | }; | ||
713 | const struct dmi_system_id *dmi = dmi_first_match(broken_systems); | ||
714 | |||
715 | if (dmi) { | ||
716 | unsigned long slot = (unsigned long)dmi->driver_data; | ||
717 | /* apply the quirk only to on-board controllers */ | ||
718 | return slot == PCI_SLOT(pdev->devfn); | ||
719 | } | ||
720 | |||
721 | return false; | ||
722 | } | ||
723 | |||
698 | static int sil_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) | 724 | static int sil_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) |
699 | { | 725 | { |
700 | static int printed_version; | 726 | static int printed_version; |
701 | int board_id = ent->driver_data; | 727 | int board_id = ent->driver_data; |
702 | const struct ata_port_info *ppi[] = { &sil_port_info[board_id], NULL }; | 728 | struct ata_port_info pi = sil_port_info[board_id]; |
729 | const struct ata_port_info *ppi[] = { &pi, NULL }; | ||
703 | struct ata_host *host; | 730 | struct ata_host *host; |
704 | void __iomem *mmio_base; | 731 | void __iomem *mmio_base; |
705 | int n_ports, rc; | 732 | int n_ports, rc; |
@@ -713,6 +740,13 @@ static int sil_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
713 | if (board_id == sil_3114) | 740 | if (board_id == sil_3114) |
714 | n_ports = 4; | 741 | n_ports = 4; |
715 | 742 | ||
743 | if (sil_broken_system_poweroff(pdev)) { | ||
744 | pi.flags |= ATA_FLAG_NO_POWEROFF_SPINDOWN | | ||
745 | ATA_FLAG_NO_HIBERNATE_SPINDOWN; | ||
746 | dev_info(&pdev->dev, "quirky BIOS, skipping spindown " | ||
747 | "on poweroff and hibernation\n"); | ||
748 | } | ||
749 | |||
716 | host = ata_host_alloc_pinfo(&pdev->dev, ppi, n_ports); | 750 | host = ata_host_alloc_pinfo(&pdev->dev, ppi, n_ports); |
717 | if (!host) | 751 | if (!host) |
718 | return -ENOMEM; | 752 | return -ENOMEM; |
diff --git a/drivers/char/tty_io.c b/drivers/char/tty_io.c index d33e5ab06177..bc84e125c6bc 100644 --- a/drivers/char/tty_io.c +++ b/drivers/char/tty_io.c | |||
@@ -1817,8 +1817,10 @@ got_driver: | |||
1817 | /* check whether we're reopening an existing tty */ | 1817 | /* check whether we're reopening an existing tty */ |
1818 | tty = tty_driver_lookup_tty(driver, inode, index); | 1818 | tty = tty_driver_lookup_tty(driver, inode, index); |
1819 | 1819 | ||
1820 | if (IS_ERR(tty)) | 1820 | if (IS_ERR(tty)) { |
1821 | mutex_unlock(&tty_mutex); | ||
1821 | return PTR_ERR(tty); | 1822 | return PTR_ERR(tty); |
1823 | } | ||
1822 | } | 1824 | } |
1823 | 1825 | ||
1824 | if (tty) { | 1826 | if (tty) { |
diff --git a/drivers/edac/cell_edac.c b/drivers/edac/cell_edac.c index cd2e3b8087e7..24f3ca851523 100644 --- a/drivers/edac/cell_edac.c +++ b/drivers/edac/cell_edac.c | |||
@@ -36,7 +36,7 @@ static void cell_edac_count_ce(struct mem_ctl_info *mci, int chan, u64 ar) | |||
36 | struct csrow_info *csrow = &mci->csrows[0]; | 36 | struct csrow_info *csrow = &mci->csrows[0]; |
37 | unsigned long address, pfn, offset, syndrome; | 37 | unsigned long address, pfn, offset, syndrome; |
38 | 38 | ||
39 | dev_dbg(mci->dev, "ECC CE err on node %d, channel %d, ar = 0x%016lx\n", | 39 | dev_dbg(mci->dev, "ECC CE err on node %d, channel %d, ar = 0x%016llx\n", |
40 | priv->node, chan, ar); | 40 | priv->node, chan, ar); |
41 | 41 | ||
42 | /* Address decoding is likely a bit bogus, to dbl check */ | 42 | /* Address decoding is likely a bit bogus, to dbl check */ |
@@ -58,7 +58,7 @@ static void cell_edac_count_ue(struct mem_ctl_info *mci, int chan, u64 ar) | |||
58 | struct csrow_info *csrow = &mci->csrows[0]; | 58 | struct csrow_info *csrow = &mci->csrows[0]; |
59 | unsigned long address, pfn, offset; | 59 | unsigned long address, pfn, offset; |
60 | 60 | ||
61 | dev_dbg(mci->dev, "ECC UE err on node %d, channel %d, ar = 0x%016lx\n", | 61 | dev_dbg(mci->dev, "ECC UE err on node %d, channel %d, ar = 0x%016llx\n", |
62 | priv->node, chan, ar); | 62 | priv->node, chan, ar); |
63 | 63 | ||
64 | /* Address decoding is likely a bit bogus, to dbl check */ | 64 | /* Address decoding is likely a bit bogus, to dbl check */ |
@@ -169,7 +169,7 @@ static int __devinit cell_edac_probe(struct platform_device *pdev) | |||
169 | 169 | ||
170 | /* Get channel population */ | 170 | /* Get channel population */ |
171 | reg = in_be64(®s->mic_mnt_cfg); | 171 | reg = in_be64(®s->mic_mnt_cfg); |
172 | dev_dbg(&pdev->dev, "MIC_MNT_CFG = 0x%016lx\n", reg); | 172 | dev_dbg(&pdev->dev, "MIC_MNT_CFG = 0x%016llx\n", reg); |
173 | chanmask = 0; | 173 | chanmask = 0; |
174 | if (reg & CBE_MIC_MNT_CFG_CHAN_0_POP) | 174 | if (reg & CBE_MIC_MNT_CFG_CHAN_0_POP) |
175 | chanmask |= 0x1; | 175 | chanmask |= 0x1; |
@@ -180,7 +180,7 @@ static int __devinit cell_edac_probe(struct platform_device *pdev) | |||
180 | "Yuck ! No channel populated ? Aborting !\n"); | 180 | "Yuck ! No channel populated ? Aborting !\n"); |
181 | return -ENODEV; | 181 | return -ENODEV; |
182 | } | 182 | } |
183 | dev_dbg(&pdev->dev, "Initial FIR = 0x%016lx\n", | 183 | dev_dbg(&pdev->dev, "Initial FIR = 0x%016llx\n", |
184 | in_be64(®s->mic_fir)); | 184 | in_be64(®s->mic_fir)); |
185 | 185 | ||
186 | /* Allocate & init EDAC MC data structure */ | 186 | /* Allocate & init EDAC MC data structure */ |
diff --git a/drivers/firmware/dmi_scan.c b/drivers/firmware/dmi_scan.c index d76adfea5df7..8f0f7c449305 100644 --- a/drivers/firmware/dmi_scan.c +++ b/drivers/firmware/dmi_scan.c | |||
@@ -415,6 +415,29 @@ void __init dmi_scan_machine(void) | |||
415 | } | 415 | } |
416 | 416 | ||
417 | /** | 417 | /** |
418 | * dmi_matches - check if dmi_system_id structure matches system DMI data | ||
419 | * @dmi: pointer to the dmi_system_id structure to check | ||
420 | */ | ||
421 | static bool dmi_matches(const struct dmi_system_id *dmi) | ||
422 | { | ||
423 | int i; | ||
424 | |||
425 | WARN(!dmi_initialized, KERN_ERR "dmi check: not initialized yet.\n"); | ||
426 | |||
427 | for (i = 0; i < ARRAY_SIZE(dmi->matches); i++) { | ||
428 | int s = dmi->matches[i].slot; | ||
429 | if (s == DMI_NONE) | ||
430 | continue; | ||
431 | if (dmi_ident[s] | ||
432 | && strstr(dmi_ident[s], dmi->matches[i].substr)) | ||
433 | continue; | ||
434 | /* No match */ | ||
435 | return false; | ||
436 | } | ||
437 | return true; | ||
438 | } | ||
439 | |||
440 | /** | ||
418 | * dmi_check_system - check system DMI data | 441 | * dmi_check_system - check system DMI data |
419 | * @list: array of dmi_system_id structures to match against | 442 | * @list: array of dmi_system_id structures to match against |
420 | * All non-null elements of the list must match | 443 | * All non-null elements of the list must match |
@@ -429,32 +452,45 @@ void __init dmi_scan_machine(void) | |||
429 | */ | 452 | */ |
430 | int dmi_check_system(const struct dmi_system_id *list) | 453 | int dmi_check_system(const struct dmi_system_id *list) |
431 | { | 454 | { |
432 | int i, count = 0; | 455 | int count = 0; |
433 | const struct dmi_system_id *d = list; | 456 | const struct dmi_system_id *d; |
434 | 457 | ||
435 | WARN(!dmi_initialized, KERN_ERR "dmi check: not initialized yet.\n"); | 458 | for (d = list; d->ident; d++) |
436 | 459 | if (dmi_matches(d)) { | |
437 | while (d->ident) { | 460 | count++; |
438 | for (i = 0; i < ARRAY_SIZE(d->matches); i++) { | 461 | if (d->callback && d->callback(d)) |
439 | int s = d->matches[i].slot; | 462 | break; |
440 | if (s == DMI_NONE) | ||
441 | continue; | ||
442 | if (dmi_ident[s] && strstr(dmi_ident[s], d->matches[i].substr)) | ||
443 | continue; | ||
444 | /* No match */ | ||
445 | goto fail; | ||
446 | } | 463 | } |
447 | count++; | ||
448 | if (d->callback && d->callback(d)) | ||
449 | break; | ||
450 | fail: d++; | ||
451 | } | ||
452 | 464 | ||
453 | return count; | 465 | return count; |
454 | } | 466 | } |
455 | EXPORT_SYMBOL(dmi_check_system); | 467 | EXPORT_SYMBOL(dmi_check_system); |
456 | 468 | ||
457 | /** | 469 | /** |
470 | * dmi_first_match - find dmi_system_id structure matching system DMI data | ||
471 | * @list: array of dmi_system_id structures to match against | ||
472 | * All non-null elements of the list must match | ||
473 | * their slot's (field index's) data (i.e., each | ||
474 | * list string must be a substring of the specified | ||
475 | * DMI slot's string data) to be considered a | ||
476 | * successful match. | ||
477 | * | ||
478 | * Walk the blacklist table until the first match is found. Return the | ||
479 | * pointer to the matching entry or NULL if there's no match. | ||
480 | */ | ||
481 | const struct dmi_system_id *dmi_first_match(const struct dmi_system_id *list) | ||
482 | { | ||
483 | const struct dmi_system_id *d; | ||
484 | |||
485 | for (d = list; d->ident; d++) | ||
486 | if (dmi_matches(d)) | ||
487 | return d; | ||
488 | |||
489 | return NULL; | ||
490 | } | ||
491 | EXPORT_SYMBOL(dmi_first_match); | ||
492 | |||
493 | /** | ||
458 | * dmi_get_system_info - return DMI data value | 494 | * dmi_get_system_info - return DMI data value |
459 | * @field: data index (see enum dmi_field) | 495 | * @field: data index (see enum dmi_field) |
460 | * | 496 | * |
diff --git a/drivers/gpu/drm/drm_irq.c b/drivers/gpu/drm/drm_irq.c index 477caa1b1e4b..69aa0ab28403 100644 --- a/drivers/gpu/drm/drm_irq.c +++ b/drivers/gpu/drm/drm_irq.c | |||
@@ -106,8 +106,6 @@ void drm_vblank_cleanup(struct drm_device *dev) | |||
106 | 106 | ||
107 | drm_free(dev->vbl_queue, sizeof(*dev->vbl_queue) * dev->num_crtcs, | 107 | drm_free(dev->vbl_queue, sizeof(*dev->vbl_queue) * dev->num_crtcs, |
108 | DRM_MEM_DRIVER); | 108 | DRM_MEM_DRIVER); |
109 | drm_free(dev->vbl_sigs, sizeof(*dev->vbl_sigs) * dev->num_crtcs, | ||
110 | DRM_MEM_DRIVER); | ||
111 | drm_free(dev->_vblank_count, sizeof(*dev->_vblank_count) * | 109 | drm_free(dev->_vblank_count, sizeof(*dev->_vblank_count) * |
112 | dev->num_crtcs, DRM_MEM_DRIVER); | 110 | dev->num_crtcs, DRM_MEM_DRIVER); |
113 | drm_free(dev->vblank_refcount, sizeof(*dev->vblank_refcount) * | 111 | drm_free(dev->vblank_refcount, sizeof(*dev->vblank_refcount) * |
@@ -132,7 +130,6 @@ int drm_vblank_init(struct drm_device *dev, int num_crtcs) | |||
132 | setup_timer(&dev->vblank_disable_timer, vblank_disable_fn, | 130 | setup_timer(&dev->vblank_disable_timer, vblank_disable_fn, |
133 | (unsigned long)dev); | 131 | (unsigned long)dev); |
134 | spin_lock_init(&dev->vbl_lock); | 132 | spin_lock_init(&dev->vbl_lock); |
135 | atomic_set(&dev->vbl_signal_pending, 0); | ||
136 | dev->num_crtcs = num_crtcs; | 133 | dev->num_crtcs = num_crtcs; |
137 | 134 | ||
138 | dev->vbl_queue = drm_alloc(sizeof(wait_queue_head_t) * num_crtcs, | 135 | dev->vbl_queue = drm_alloc(sizeof(wait_queue_head_t) * num_crtcs, |
@@ -140,11 +137,6 @@ int drm_vblank_init(struct drm_device *dev, int num_crtcs) | |||
140 | if (!dev->vbl_queue) | 137 | if (!dev->vbl_queue) |
141 | goto err; | 138 | goto err; |
142 | 139 | ||
143 | dev->vbl_sigs = drm_alloc(sizeof(struct list_head) * num_crtcs, | ||
144 | DRM_MEM_DRIVER); | ||
145 | if (!dev->vbl_sigs) | ||
146 | goto err; | ||
147 | |||
148 | dev->_vblank_count = drm_alloc(sizeof(atomic_t) * num_crtcs, | 140 | dev->_vblank_count = drm_alloc(sizeof(atomic_t) * num_crtcs, |
149 | DRM_MEM_DRIVER); | 141 | DRM_MEM_DRIVER); |
150 | if (!dev->_vblank_count) | 142 | if (!dev->_vblank_count) |
@@ -177,7 +169,6 @@ int drm_vblank_init(struct drm_device *dev, int num_crtcs) | |||
177 | /* Zero per-crtc vblank stuff */ | 169 | /* Zero per-crtc vblank stuff */ |
178 | for (i = 0; i < num_crtcs; i++) { | 170 | for (i = 0; i < num_crtcs; i++) { |
179 | init_waitqueue_head(&dev->vbl_queue[i]); | 171 | init_waitqueue_head(&dev->vbl_queue[i]); |
180 | INIT_LIST_HEAD(&dev->vbl_sigs[i]); | ||
181 | atomic_set(&dev->_vblank_count[i], 0); | 172 | atomic_set(&dev->_vblank_count[i], 0); |
182 | atomic_set(&dev->vblank_refcount[i], 0); | 173 | atomic_set(&dev->vblank_refcount[i], 0); |
183 | } | 174 | } |
@@ -540,15 +531,10 @@ out: | |||
540 | * \param data user argument, pointing to a drm_wait_vblank structure. | 531 | * \param data user argument, pointing to a drm_wait_vblank structure. |
541 | * \return zero on success or a negative number on failure. | 532 | * \return zero on success or a negative number on failure. |
542 | * | 533 | * |
543 | * Verifies the IRQ is installed. | 534 | * This function enables the vblank interrupt on the pipe requested, then |
544 | * | 535 | * sleeps waiting for the requested sequence number to occur, and drops |
545 | * If a signal is requested checks if this task has already scheduled the same signal | 536 | * the vblank interrupt refcount afterwards. (vblank irq disable follows that |
546 | * for the same vblank sequence number - nothing to be done in | 537 | * after a timeout with no further vblank waits scheduled). |
547 | * that case. If the number of tasks waiting for the interrupt exceeds 100 the | ||
548 | * function fails. Otherwise adds a new entry to drm_device::vbl_sigs for this | ||
549 | * task. | ||
550 | * | ||
551 | * If a signal is not requested, then calls vblank_wait(). | ||
552 | */ | 538 | */ |
553 | int drm_wait_vblank(struct drm_device *dev, void *data, | 539 | int drm_wait_vblank(struct drm_device *dev, void *data, |
554 | struct drm_file *file_priv) | 540 | struct drm_file *file_priv) |
@@ -560,6 +546,9 @@ int drm_wait_vblank(struct drm_device *dev, void *data, | |||
560 | if ((!dev->pdev->irq) || (!dev->irq_enabled)) | 546 | if ((!dev->pdev->irq) || (!dev->irq_enabled)) |
561 | return -EINVAL; | 547 | return -EINVAL; |
562 | 548 | ||
549 | if (vblwait->request.type & _DRM_VBLANK_SIGNAL) | ||
550 | return -EINVAL; | ||
551 | |||
563 | if (vblwait->request.type & | 552 | if (vblwait->request.type & |
564 | ~(_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK)) { | 553 | ~(_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK)) { |
565 | DRM_ERROR("Unsupported type value 0x%x, supported mask 0x%x\n", | 554 | DRM_ERROR("Unsupported type value 0x%x, supported mask 0x%x\n", |
@@ -597,89 +586,26 @@ int drm_wait_vblank(struct drm_device *dev, void *data, | |||
597 | vblwait->request.sequence = seq + 1; | 586 | vblwait->request.sequence = seq + 1; |
598 | } | 587 | } |
599 | 588 | ||
600 | if (flags & _DRM_VBLANK_SIGNAL) { | 589 | DRM_DEBUG("waiting on vblank count %d, crtc %d\n", |
601 | unsigned long irqflags; | 590 | vblwait->request.sequence, crtc); |
602 | struct list_head *vbl_sigs = &dev->vbl_sigs[crtc]; | 591 | dev->last_vblank_wait[crtc] = vblwait->request.sequence; |
603 | struct drm_vbl_sig *vbl_sig; | 592 | DRM_WAIT_ON(ret, dev->vbl_queue[crtc], 3 * DRM_HZ, |
604 | 593 | (((drm_vblank_count(dev, crtc) - | |
605 | spin_lock_irqsave(&dev->vbl_lock, irqflags); | 594 | vblwait->request.sequence) <= (1 << 23)) || |
606 | 595 | !dev->irq_enabled)); | |
607 | /* Check if this task has already scheduled the same signal | ||
608 | * for the same vblank sequence number; nothing to be done in | ||
609 | * that case | ||
610 | */ | ||
611 | list_for_each_entry(vbl_sig, vbl_sigs, head) { | ||
612 | if (vbl_sig->sequence == vblwait->request.sequence | ||
613 | && vbl_sig->info.si_signo == | ||
614 | vblwait->request.signal | ||
615 | && vbl_sig->task == current) { | ||
616 | spin_unlock_irqrestore(&dev->vbl_lock, | ||
617 | irqflags); | ||
618 | vblwait->reply.sequence = seq; | ||
619 | goto done; | ||
620 | } | ||
621 | } | ||
622 | |||
623 | if (atomic_read(&dev->vbl_signal_pending) >= 100) { | ||
624 | spin_unlock_irqrestore(&dev->vbl_lock, irqflags); | ||
625 | ret = -EBUSY; | ||
626 | goto done; | ||
627 | } | ||
628 | |||
629 | spin_unlock_irqrestore(&dev->vbl_lock, irqflags); | ||
630 | |||
631 | vbl_sig = drm_calloc(1, sizeof(struct drm_vbl_sig), | ||
632 | DRM_MEM_DRIVER); | ||
633 | if (!vbl_sig) { | ||
634 | ret = -ENOMEM; | ||
635 | goto done; | ||
636 | } | ||
637 | |||
638 | /* Get a refcount on the vblank, which will be released by | ||
639 | * drm_vbl_send_signals(). | ||
640 | */ | ||
641 | ret = drm_vblank_get(dev, crtc); | ||
642 | if (ret) { | ||
643 | drm_free(vbl_sig, sizeof(struct drm_vbl_sig), | ||
644 | DRM_MEM_DRIVER); | ||
645 | goto done; | ||
646 | } | ||
647 | |||
648 | atomic_inc(&dev->vbl_signal_pending); | ||
649 | |||
650 | vbl_sig->sequence = vblwait->request.sequence; | ||
651 | vbl_sig->info.si_signo = vblwait->request.signal; | ||
652 | vbl_sig->task = current; | ||
653 | 596 | ||
654 | spin_lock_irqsave(&dev->vbl_lock, irqflags); | 597 | if (ret != -EINTR) { |
655 | 598 | struct timeval now; | |
656 | list_add_tail(&vbl_sig->head, vbl_sigs); | ||
657 | 599 | ||
658 | spin_unlock_irqrestore(&dev->vbl_lock, irqflags); | 600 | do_gettimeofday(&now); |
659 | 601 | ||
660 | vblwait->reply.sequence = seq; | 602 | vblwait->reply.tval_sec = now.tv_sec; |
603 | vblwait->reply.tval_usec = now.tv_usec; | ||
604 | vblwait->reply.sequence = drm_vblank_count(dev, crtc); | ||
605 | DRM_DEBUG("returning %d to client\n", | ||
606 | vblwait->reply.sequence); | ||
661 | } else { | 607 | } else { |
662 | DRM_DEBUG("waiting on vblank count %d, crtc %d\n", | 608 | DRM_DEBUG("vblank wait interrupted by signal\n"); |
663 | vblwait->request.sequence, crtc); | ||
664 | dev->last_vblank_wait[crtc] = vblwait->request.sequence; | ||
665 | DRM_WAIT_ON(ret, dev->vbl_queue[crtc], 3 * DRM_HZ, | ||
666 | (((drm_vblank_count(dev, crtc) - | ||
667 | vblwait->request.sequence) <= (1 << 23)) || | ||
668 | !dev->irq_enabled)); | ||
669 | |||
670 | if (ret != -EINTR) { | ||
671 | struct timeval now; | ||
672 | |||
673 | do_gettimeofday(&now); | ||
674 | |||
675 | vblwait->reply.tval_sec = now.tv_sec; | ||
676 | vblwait->reply.tval_usec = now.tv_usec; | ||
677 | vblwait->reply.sequence = drm_vblank_count(dev, crtc); | ||
678 | DRM_DEBUG("returning %d to client\n", | ||
679 | vblwait->reply.sequence); | ||
680 | } else { | ||
681 | DRM_DEBUG("vblank wait interrupted by signal\n"); | ||
682 | } | ||
683 | } | 609 | } |
684 | 610 | ||
685 | done: | 611 | done: |
@@ -688,46 +614,6 @@ done: | |||
688 | } | 614 | } |
689 | 615 | ||
690 | /** | 616 | /** |
691 | * Send the VBLANK signals. | ||
692 | * | ||
693 | * \param dev DRM device. | ||
694 | * \param crtc CRTC where the vblank event occurred | ||
695 | * | ||
696 | * Sends a signal for each task in drm_device::vbl_sigs and empties the list. | ||
697 | * | ||
698 | * If a signal is not requested, then calls vblank_wait(). | ||
699 | */ | ||
700 | static void drm_vbl_send_signals(struct drm_device *dev, int crtc) | ||
701 | { | ||
702 | struct drm_vbl_sig *vbl_sig, *tmp; | ||
703 | struct list_head *vbl_sigs; | ||
704 | unsigned int vbl_seq; | ||
705 | unsigned long flags; | ||
706 | |||
707 | spin_lock_irqsave(&dev->vbl_lock, flags); | ||
708 | |||
709 | vbl_sigs = &dev->vbl_sigs[crtc]; | ||
710 | vbl_seq = drm_vblank_count(dev, crtc); | ||
711 | |||
712 | list_for_each_entry_safe(vbl_sig, tmp, vbl_sigs, head) { | ||
713 | if ((vbl_seq - vbl_sig->sequence) <= (1 << 23)) { | ||
714 | vbl_sig->info.si_code = vbl_seq; | ||
715 | send_sig_info(vbl_sig->info.si_signo, | ||
716 | &vbl_sig->info, vbl_sig->task); | ||
717 | |||
718 | list_del(&vbl_sig->head); | ||
719 | |||
720 | drm_free(vbl_sig, sizeof(*vbl_sig), | ||
721 | DRM_MEM_DRIVER); | ||
722 | atomic_dec(&dev->vbl_signal_pending); | ||
723 | drm_vblank_put(dev, crtc); | ||
724 | } | ||
725 | } | ||
726 | |||
727 | spin_unlock_irqrestore(&dev->vbl_lock, flags); | ||
728 | } | ||
729 | |||
730 | /** | ||
731 | * drm_handle_vblank - handle a vblank event | 617 | * drm_handle_vblank - handle a vblank event |
732 | * @dev: DRM device | 618 | * @dev: DRM device |
733 | * @crtc: where this event occurred | 619 | * @crtc: where this event occurred |
@@ -739,6 +625,5 @@ void drm_handle_vblank(struct drm_device *dev, int crtc) | |||
739 | { | 625 | { |
740 | atomic_inc(&dev->_vblank_count[crtc]); | 626 | atomic_inc(&dev->_vblank_count[crtc]); |
741 | DRM_WAKEUP(&dev->vbl_queue[crtc]); | 627 | DRM_WAKEUP(&dev->vbl_queue[crtc]); |
742 | drm_vbl_send_signals(dev, crtc); | ||
743 | } | 628 | } |
744 | EXPORT_SYMBOL(drm_handle_vblank); | 629 | EXPORT_SYMBOL(drm_handle_vblank); |
diff --git a/drivers/mtd/nand/fsl_elbc_nand.c b/drivers/mtd/nand/fsl_elbc_nand.c index 65929db29446..1f6eb2578717 100644 --- a/drivers/mtd/nand/fsl_elbc_nand.c +++ b/drivers/mtd/nand/fsl_elbc_nand.c | |||
@@ -676,7 +676,7 @@ static int fsl_elbc_chip_init_tail(struct mtd_info *mtd) | |||
676 | 676 | ||
677 | dev_dbg(ctrl->dev, "fsl_elbc_init: nand->numchips = %d\n", | 677 | dev_dbg(ctrl->dev, "fsl_elbc_init: nand->numchips = %d\n", |
678 | chip->numchips); | 678 | chip->numchips); |
679 | dev_dbg(ctrl->dev, "fsl_elbc_init: nand->chipsize = %ld\n", | 679 | dev_dbg(ctrl->dev, "fsl_elbc_init: nand->chipsize = %lld\n", |
680 | chip->chipsize); | 680 | chip->chipsize); |
681 | dev_dbg(ctrl->dev, "fsl_elbc_init: nand->pagemask = %8x\n", | 681 | dev_dbg(ctrl->dev, "fsl_elbc_init: nand->pagemask = %8x\n", |
682 | chip->pagemask); | 682 | chip->pagemask); |
@@ -703,7 +703,7 @@ static int fsl_elbc_chip_init_tail(struct mtd_info *mtd) | |||
703 | dev_dbg(ctrl->dev, "fsl_elbc_init: nand->ecc.layout = %p\n", | 703 | dev_dbg(ctrl->dev, "fsl_elbc_init: nand->ecc.layout = %p\n", |
704 | chip->ecc.layout); | 704 | chip->ecc.layout); |
705 | dev_dbg(ctrl->dev, "fsl_elbc_init: mtd->flags = %08x\n", mtd->flags); | 705 | dev_dbg(ctrl->dev, "fsl_elbc_init: mtd->flags = %08x\n", mtd->flags); |
706 | dev_dbg(ctrl->dev, "fsl_elbc_init: mtd->size = %d\n", mtd->size); | 706 | dev_dbg(ctrl->dev, "fsl_elbc_init: mtd->size = %lld\n", mtd->size); |
707 | dev_dbg(ctrl->dev, "fsl_elbc_init: mtd->erasesize = %d\n", | 707 | dev_dbg(ctrl->dev, "fsl_elbc_init: mtd->erasesize = %d\n", |
708 | mtd->erasesize); | 708 | mtd->erasesize); |
709 | dev_dbg(ctrl->dev, "fsl_elbc_init: mtd->writesize = %d\n", | 709 | dev_dbg(ctrl->dev, "fsl_elbc_init: mtd->writesize = %d\n", |
@@ -932,8 +932,8 @@ static int __devinit fsl_elbc_chip_probe(struct fsl_elbc_ctrl *ctrl, | |||
932 | #endif | 932 | #endif |
933 | add_mtd_device(&priv->mtd); | 933 | add_mtd_device(&priv->mtd); |
934 | 934 | ||
935 | printk(KERN_INFO "eLBC NAND device at 0x%zx, bank %d\n", | 935 | printk(KERN_INFO "eLBC NAND device at 0x%llx, bank %d\n", |
936 | res.start, priv->bank); | 936 | (unsigned long long)res.start, priv->bank); |
937 | return 0; | 937 | return 0; |
938 | 938 | ||
939 | err: | 939 | err: |
diff --git a/drivers/mtd/nand/pasemi_nand.c b/drivers/mtd/nand/pasemi_nand.c index 9bd6c9ac8443..a8b9376cf324 100644 --- a/drivers/mtd/nand/pasemi_nand.c +++ b/drivers/mtd/nand/pasemi_nand.c | |||
@@ -107,7 +107,7 @@ static int __devinit pasemi_nand_probe(struct of_device *ofdev, | |||
107 | if (pasemi_nand_mtd) | 107 | if (pasemi_nand_mtd) |
108 | return -ENODEV; | 108 | return -ENODEV; |
109 | 109 | ||
110 | pr_debug("pasemi_nand at %lx-%lx\n", res.start, res.end); | 110 | pr_debug("pasemi_nand at %llx-%llx\n", res.start, res.end); |
111 | 111 | ||
112 | /* Allocate memory for MTD device structure and private data */ | 112 | /* Allocate memory for MTD device structure and private data */ |
113 | pasemi_nand_mtd = kzalloc(sizeof(struct mtd_info) + | 113 | pasemi_nand_mtd = kzalloc(sizeof(struct mtd_info) + |
@@ -170,7 +170,7 @@ static int __devinit pasemi_nand_probe(struct of_device *ofdev, | |||
170 | goto out_lpc; | 170 | goto out_lpc; |
171 | } | 171 | } |
172 | 172 | ||
173 | printk(KERN_INFO "PA Semi NAND flash at %08lx, control at I/O %x\n", | 173 | printk(KERN_INFO "PA Semi NAND flash at %08llx, control at I/O %x\n", |
174 | res.start, lpcctl); | 174 | res.start, lpcctl); |
175 | 175 | ||
176 | return 0; | 176 | return 0; |
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index 9fe8cb7d43ac..6bdfd47d679d 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig | |||
@@ -1829,7 +1829,7 @@ config 68360_ENET | |||
1829 | 1829 | ||
1830 | config FEC | 1830 | config FEC |
1831 | bool "FEC ethernet controller (of ColdFire CPUs)" | 1831 | bool "FEC ethernet controller (of ColdFire CPUs)" |
1832 | depends on M523x || M527x || M5272 || M528x || M520x | 1832 | depends on M523x || M527x || M5272 || M528x || M520x || M532x |
1833 | help | 1833 | help |
1834 | Say Y here if you want to use the built-in 10/100 Fast ethernet | 1834 | Say Y here if you want to use the built-in 10/100 Fast ethernet |
1835 | controller on some Motorola ColdFire processors. | 1835 | controller on some Motorola ColdFire processors. |
diff --git a/drivers/net/fec.c b/drivers/net/fec.c index 7e33c129d51c..2769083bfe83 100644 --- a/drivers/net/fec.c +++ b/drivers/net/fec.c | |||
@@ -1698,7 +1698,7 @@ static void __inline__ fec_set_mii(struct net_device *dev, struct fec_enet_priva | |||
1698 | /* | 1698 | /* |
1699 | * Set MII speed to 2.5 MHz | 1699 | * Set MII speed to 2.5 MHz |
1700 | */ | 1700 | */ |
1701 | fep->phy_speed = ((((MCF_CLK / 2) / (2500000 / 10)) + 5) / 10) * 2; | 1701 | fep->phy_speed = (MCF_CLK / 3) / (2500000 * 2 ) * 2; |
1702 | fecp->fec_mii_speed = fep->phy_speed; | 1702 | fecp->fec_mii_speed = fep->phy_speed; |
1703 | 1703 | ||
1704 | fec_restart(dev, 0); | 1704 | fec_restart(dev, 0); |
diff --git a/drivers/scsi/ibmvscsi/ibmvfc.c b/drivers/scsi/ibmvscsi/ibmvfc.c index 91ef669d98f6..a1a511bdec8c 100644 --- a/drivers/scsi/ibmvscsi/ibmvfc.c +++ b/drivers/scsi/ibmvscsi/ibmvfc.c | |||
@@ -1322,7 +1322,9 @@ static int ibmvfc_map_sg_data(struct scsi_cmnd *scmd, | |||
1322 | &evt->ext_list_token); | 1322 | &evt->ext_list_token); |
1323 | 1323 | ||
1324 | if (!evt->ext_list) { | 1324 | if (!evt->ext_list) { |
1325 | scmd_printk(KERN_ERR, scmd, "Can't allocate memory for scatterlist\n"); | 1325 | scsi_dma_unmap(scmd); |
1326 | if (vhost->log_level > IBMVFC_DEFAULT_LOG_LEVEL) | ||
1327 | scmd_printk(KERN_ERR, scmd, "Can't allocate memory for scatterlist\n"); | ||
1326 | return -ENOMEM; | 1328 | return -ENOMEM; |
1327 | } | 1329 | } |
1328 | } | 1330 | } |
diff --git a/drivers/scsi/libiscsi.c b/drivers/scsi/libiscsi.c index 7225b6e2029e..257c24115de9 100644 --- a/drivers/scsi/libiscsi.c +++ b/drivers/scsi/libiscsi.c | |||
@@ -1981,6 +1981,7 @@ void iscsi_pool_free(struct iscsi_pool *q) | |||
1981 | kfree(q->pool[i]); | 1981 | kfree(q->pool[i]); |
1982 | if (q->pool) | 1982 | if (q->pool) |
1983 | kfree(q->pool); | 1983 | kfree(q->pool); |
1984 | kfree(q->queue); | ||
1984 | } | 1985 | } |
1985 | EXPORT_SYMBOL_GPL(iscsi_pool_free); | 1986 | EXPORT_SYMBOL_GPL(iscsi_pool_free); |
1986 | 1987 | ||
diff --git a/drivers/scsi/qla2xxx/qla_attr.c b/drivers/scsi/qla2xxx/qla_attr.c index c7acef50d5da..33a3c13fd893 100644 --- a/drivers/scsi/qla2xxx/qla_attr.c +++ b/drivers/scsi/qla2xxx/qla_attr.c | |||
@@ -1016,6 +1016,9 @@ qla2x00_dev_loss_tmo_callbk(struct fc_rport *rport) | |||
1016 | struct Scsi_Host *host = rport_to_shost(rport); | 1016 | struct Scsi_Host *host = rport_to_shost(rport); |
1017 | fc_port_t *fcport = *(fc_port_t **)rport->dd_data; | 1017 | fc_port_t *fcport = *(fc_port_t **)rport->dd_data; |
1018 | 1018 | ||
1019 | if (!fcport) | ||
1020 | return; | ||
1021 | |||
1019 | qla2x00_abort_fcport_cmds(fcport); | 1022 | qla2x00_abort_fcport_cmds(fcport); |
1020 | 1023 | ||
1021 | /* | 1024 | /* |
@@ -1033,6 +1036,9 @@ qla2x00_terminate_rport_io(struct fc_rport *rport) | |||
1033 | { | 1036 | { |
1034 | fc_port_t *fcport = *(fc_port_t **)rport->dd_data; | 1037 | fc_port_t *fcport = *(fc_port_t **)rport->dd_data; |
1035 | 1038 | ||
1039 | if (!fcport) | ||
1040 | return; | ||
1041 | |||
1036 | /* | 1042 | /* |
1037 | * At this point all fcport's software-states are cleared. Perform any | 1043 | * At this point all fcport's software-states are cleared. Perform any |
1038 | * final cleanup of firmware resources (PCBs and XCBs). | 1044 | * final cleanup of firmware resources (PCBs and XCBs). |
diff --git a/drivers/scsi/qla2xxx/qla_gbl.h b/drivers/scsi/qla2xxx/qla_gbl.h index ba4913353752..a336b4bc81a7 100644 --- a/drivers/scsi/qla2xxx/qla_gbl.h +++ b/drivers/scsi/qla2xxx/qla_gbl.h | |||
@@ -34,6 +34,7 @@ extern void qla24xx_update_fw_options(scsi_qla_host_t *); | |||
34 | extern void qla81xx_update_fw_options(scsi_qla_host_t *); | 34 | extern void qla81xx_update_fw_options(scsi_qla_host_t *); |
35 | extern int qla2x00_load_risc(struct scsi_qla_host *, uint32_t *); | 35 | extern int qla2x00_load_risc(struct scsi_qla_host *, uint32_t *); |
36 | extern int qla24xx_load_risc(scsi_qla_host_t *, uint32_t *); | 36 | extern int qla24xx_load_risc(scsi_qla_host_t *, uint32_t *); |
37 | extern int qla81xx_load_risc(scsi_qla_host_t *, uint32_t *); | ||
37 | 38 | ||
38 | extern int qla2x00_loop_resync(scsi_qla_host_t *); | 39 | extern int qla2x00_loop_resync(scsi_qla_host_t *); |
39 | 40 | ||
diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c index 9ad4d0968e5c..f6368a1d3021 100644 --- a/drivers/scsi/qla2xxx/qla_init.c +++ b/drivers/scsi/qla2xxx/qla_init.c | |||
@@ -3562,6 +3562,9 @@ qla24xx_reset_adapter(scsi_qla_host_t *vha) | |||
3562 | WRT_REG_DWORD(®->hccr, HCCRX_REL_RISC_PAUSE); | 3562 | WRT_REG_DWORD(®->hccr, HCCRX_REL_RISC_PAUSE); |
3563 | RD_REG_DWORD(®->hccr); | 3563 | RD_REG_DWORD(®->hccr); |
3564 | spin_unlock_irqrestore(&ha->hardware_lock, flags); | 3564 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
3565 | |||
3566 | if (IS_NOPOLLING_TYPE(ha)) | ||
3567 | ha->isp_ops->enable_intrs(ha); | ||
3565 | } | 3568 | } |
3566 | 3569 | ||
3567 | /* On sparc systems, obtain port and node WWN from firmware | 3570 | /* On sparc systems, obtain port and node WWN from firmware |
@@ -3847,6 +3850,10 @@ qla24xx_load_risc_flash(scsi_qla_host_t *vha, uint32_t *srisc_addr) | |||
3847 | uint32_t i; | 3850 | uint32_t i; |
3848 | struct qla_hw_data *ha = vha->hw; | 3851 | struct qla_hw_data *ha = vha->hw; |
3849 | struct req_que *req = ha->req_q_map[0]; | 3852 | struct req_que *req = ha->req_q_map[0]; |
3853 | |||
3854 | qla_printk(KERN_INFO, ha, | ||
3855 | "FW: Loading from flash (%x)...\n", ha->flt_region_fw); | ||
3856 | |||
3850 | rval = QLA_SUCCESS; | 3857 | rval = QLA_SUCCESS; |
3851 | 3858 | ||
3852 | segments = FA_RISC_CODE_SEGMENTS; | 3859 | segments = FA_RISC_CODE_SEGMENTS; |
@@ -4022,8 +4029,8 @@ fail_fw_integrity: | |||
4022 | return QLA_FUNCTION_FAILED; | 4029 | return QLA_FUNCTION_FAILED; |
4023 | } | 4030 | } |
4024 | 4031 | ||
4025 | int | 4032 | static int |
4026 | qla24xx_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr) | 4033 | qla24xx_load_risc_blob(scsi_qla_host_t *vha, uint32_t *srisc_addr) |
4027 | { | 4034 | { |
4028 | int rval; | 4035 | int rval; |
4029 | int segments, fragment; | 4036 | int segments, fragment; |
@@ -4043,12 +4050,12 @@ qla24xx_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr) | |||
4043 | qla_printk(KERN_ERR, ha, "Firmware images can be retrieved " | 4050 | qla_printk(KERN_ERR, ha, "Firmware images can be retrieved " |
4044 | "from: " QLA_FW_URL ".\n"); | 4051 | "from: " QLA_FW_URL ".\n"); |
4045 | 4052 | ||
4046 | /* Try to load RISC code from flash. */ | 4053 | return QLA_FUNCTION_FAILED; |
4047 | qla_printk(KERN_ERR, ha, "Attempting to load (potentially " | ||
4048 | "outdated) firmware from flash.\n"); | ||
4049 | return qla24xx_load_risc_flash(vha, srisc_addr); | ||
4050 | } | 4054 | } |
4051 | 4055 | ||
4056 | qla_printk(KERN_INFO, ha, | ||
4057 | "FW: Loading via request-firmware...\n"); | ||
4058 | |||
4052 | rval = QLA_SUCCESS; | 4059 | rval = QLA_SUCCESS; |
4053 | 4060 | ||
4054 | segments = FA_RISC_CODE_SEGMENTS; | 4061 | segments = FA_RISC_CODE_SEGMENTS; |
@@ -4133,6 +4140,40 @@ fail_fw_integrity: | |||
4133 | return QLA_FUNCTION_FAILED; | 4140 | return QLA_FUNCTION_FAILED; |
4134 | } | 4141 | } |
4135 | 4142 | ||
4143 | int | ||
4144 | qla24xx_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr) | ||
4145 | { | ||
4146 | int rval; | ||
4147 | |||
4148 | /* | ||
4149 | * FW Load priority: | ||
4150 | * 1) Firmware via request-firmware interface (.bin file). | ||
4151 | * 2) Firmware residing in flash. | ||
4152 | */ | ||
4153 | rval = qla24xx_load_risc_blob(vha, srisc_addr); | ||
4154 | if (rval == QLA_SUCCESS) | ||
4155 | return rval; | ||
4156 | |||
4157 | return qla24xx_load_risc_flash(vha, srisc_addr); | ||
4158 | } | ||
4159 | |||
4160 | int | ||
4161 | qla81xx_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr) | ||
4162 | { | ||
4163 | int rval; | ||
4164 | |||
4165 | /* | ||
4166 | * FW Load priority: | ||
4167 | * 1) Firmware residing in flash. | ||
4168 | * 2) Firmware via request-firmware interface (.bin file). | ||
4169 | */ | ||
4170 | rval = qla24xx_load_risc_flash(vha, srisc_addr); | ||
4171 | if (rval == QLA_SUCCESS) | ||
4172 | return rval; | ||
4173 | |||
4174 | return qla24xx_load_risc_blob(vha, srisc_addr); | ||
4175 | } | ||
4176 | |||
4136 | void | 4177 | void |
4137 | qla2x00_try_to_stop_firmware(scsi_qla_host_t *vha) | 4178 | qla2x00_try_to_stop_firmware(scsi_qla_host_t *vha) |
4138 | { | 4179 | { |
diff --git a/drivers/scsi/qla2xxx/qla_isr.c b/drivers/scsi/qla2xxx/qla_isr.c index 789fc576f222..e28ad81baf1e 100644 --- a/drivers/scsi/qla2xxx/qla_isr.c +++ b/drivers/scsi/qla2xxx/qla_isr.c | |||
@@ -1868,6 +1868,7 @@ qla24xx_disable_msix(struct qla_hw_data *ha) | |||
1868 | static int | 1868 | static int |
1869 | qla24xx_enable_msix(struct qla_hw_data *ha, struct rsp_que *rsp) | 1869 | qla24xx_enable_msix(struct qla_hw_data *ha, struct rsp_que *rsp) |
1870 | { | 1870 | { |
1871 | #define MIN_MSIX_COUNT 2 | ||
1871 | int i, ret; | 1872 | int i, ret; |
1872 | struct msix_entry *entries; | 1873 | struct msix_entry *entries; |
1873 | struct qla_msix_entry *qentry; | 1874 | struct qla_msix_entry *qentry; |
@@ -1883,12 +1884,16 @@ qla24xx_enable_msix(struct qla_hw_data *ha, struct rsp_que *rsp) | |||
1883 | 1884 | ||
1884 | ret = pci_enable_msix(ha->pdev, entries, ha->msix_count); | 1885 | ret = pci_enable_msix(ha->pdev, entries, ha->msix_count); |
1885 | if (ret) { | 1886 | if (ret) { |
1887 | if (ret < MIN_MSIX_COUNT) | ||
1888 | goto msix_failed; | ||
1889 | |||
1886 | qla_printk(KERN_WARNING, ha, | 1890 | qla_printk(KERN_WARNING, ha, |
1887 | "MSI-X: Failed to enable support -- %d/%d\n" | 1891 | "MSI-X: Failed to enable support -- %d/%d\n" |
1888 | " Retry with %d vectors\n", ha->msix_count, ret, ret); | 1892 | " Retry with %d vectors\n", ha->msix_count, ret, ret); |
1889 | ha->msix_count = ret; | 1893 | ha->msix_count = ret; |
1890 | ret = pci_enable_msix(ha->pdev, entries, ha->msix_count); | 1894 | ret = pci_enable_msix(ha->pdev, entries, ha->msix_count); |
1891 | if (ret) { | 1895 | if (ret) { |
1896 | msix_failed: | ||
1892 | qla_printk(KERN_WARNING, ha, "MSI-X: Failed to enable" | 1897 | qla_printk(KERN_WARNING, ha, "MSI-X: Failed to enable" |
1893 | " support, giving up -- %d/%d\n", | 1898 | " support, giving up -- %d/%d\n", |
1894 | ha->msix_count, ret); | 1899 | ha->msix_count, ret); |
diff --git a/drivers/scsi/qla2xxx/qla_mbx.c b/drivers/scsi/qla2xxx/qla_mbx.c index db4df45234a5..f94ffbb98e95 100644 --- a/drivers/scsi/qla2xxx/qla_mbx.c +++ b/drivers/scsi/qla2xxx/qla_mbx.c | |||
@@ -58,14 +58,11 @@ qla2x00_mailbox_command(scsi_qla_host_t *vha, mbx_cmd_t *mcp) | |||
58 | * seconds. This is to serialize actual issuing of mailbox cmds during | 58 | * seconds. This is to serialize actual issuing of mailbox cmds during |
59 | * non ISP abort time. | 59 | * non ISP abort time. |
60 | */ | 60 | */ |
61 | if (!abort_active) { | 61 | if (!wait_for_completion_timeout(&ha->mbx_cmd_comp, mcp->tov * HZ)) { |
62 | if (!wait_for_completion_timeout(&ha->mbx_cmd_comp, | 62 | /* Timeout occurred. Return error. */ |
63 | mcp->tov * HZ)) { | 63 | DEBUG2_3_11(printk("%s(%ld): cmd access timeout. " |
64 | /* Timeout occurred. Return error. */ | 64 | "Exiting.\n", __func__, base_vha->host_no)); |
65 | DEBUG2_3_11(printk("%s(%ld): cmd access timeout. " | 65 | return QLA_FUNCTION_TIMEOUT; |
66 | "Exiting.\n", __func__, base_vha->host_no)); | ||
67 | return QLA_FUNCTION_TIMEOUT; | ||
68 | } | ||
69 | } | 66 | } |
70 | 67 | ||
71 | ha->flags.mbox_busy = 1; | 68 | ha->flags.mbox_busy = 1; |
@@ -265,8 +262,7 @@ qla2x00_mailbox_command(scsi_qla_host_t *vha, mbx_cmd_t *mcp) | |||
265 | } | 262 | } |
266 | 263 | ||
267 | /* Allow next mbx cmd to come in. */ | 264 | /* Allow next mbx cmd to come in. */ |
268 | if (!abort_active) | 265 | complete(&ha->mbx_cmd_comp); |
269 | complete(&ha->mbx_cmd_comp); | ||
270 | 266 | ||
271 | if (rval) { | 267 | if (rval) { |
272 | DEBUG2_3_11(printk("%s(%ld): **** FAILED. mbx0=%x, mbx1=%x, " | 268 | DEBUG2_3_11(printk("%s(%ld): **** FAILED. mbx0=%x, mbx1=%x, " |
diff --git a/drivers/scsi/qla2xxx/qla_os.c b/drivers/scsi/qla2xxx/qla_os.c index cf32653fe01a..c11f872d3e10 100644 --- a/drivers/scsi/qla2xxx/qla_os.c +++ b/drivers/scsi/qla2xxx/qla_os.c | |||
@@ -65,8 +65,6 @@ MODULE_PARM_DESC(ql2xextended_error_logging, | |||
65 | 65 | ||
66 | static void qla2x00_free_device(scsi_qla_host_t *); | 66 | static void qla2x00_free_device(scsi_qla_host_t *); |
67 | 67 | ||
68 | static void qla2x00_config_dma_addressing(scsi_qla_host_t *ha); | ||
69 | |||
70 | int ql2xfdmienable=1; | 68 | int ql2xfdmienable=1; |
71 | module_param(ql2xfdmienable, int, S_IRUGO|S_IRUSR); | 69 | module_param(ql2xfdmienable, int, S_IRUGO|S_IRUSR); |
72 | MODULE_PARM_DESC(ql2xfdmienable, | 70 | MODULE_PARM_DESC(ql2xfdmienable, |
@@ -800,6 +798,7 @@ qla2xxx_eh_abort(struct scsi_cmnd *cmd) | |||
800 | if (ha->isp_ops->abort_command(vha, sp, req)) { | 798 | if (ha->isp_ops->abort_command(vha, sp, req)) { |
801 | DEBUG2(printk("%s(%ld): abort_command " | 799 | DEBUG2(printk("%s(%ld): abort_command " |
802 | "mbx failed.\n", __func__, vha->host_no)); | 800 | "mbx failed.\n", __func__, vha->host_no)); |
801 | ret = FAILED; | ||
803 | } else { | 802 | } else { |
804 | DEBUG3(printk("%s(%ld): abort_command " | 803 | DEBUG3(printk("%s(%ld): abort_command " |
805 | "mbx success.\n", __func__, vha->host_no)); | 804 | "mbx success.\n", __func__, vha->host_no)); |
@@ -1241,9 +1240,8 @@ qla2x00_change_queue_type(struct scsi_device *sdev, int tag_type) | |||
1241 | * supported addressing method. | 1240 | * supported addressing method. |
1242 | */ | 1241 | */ |
1243 | static void | 1242 | static void |
1244 | qla2x00_config_dma_addressing(scsi_qla_host_t *vha) | 1243 | qla2x00_config_dma_addressing(struct qla_hw_data *ha) |
1245 | { | 1244 | { |
1246 | struct qla_hw_data *ha = vha->hw; | ||
1247 | /* Assume a 32bit DMA mask. */ | 1245 | /* Assume a 32bit DMA mask. */ |
1248 | ha->flags.enable_64bit_addressing = 0; | 1246 | ha->flags.enable_64bit_addressing = 0; |
1249 | 1247 | ||
@@ -1480,7 +1478,7 @@ static struct isp_operations qla81xx_isp_ops = { | |||
1480 | .reset_adapter = qla24xx_reset_adapter, | 1478 | .reset_adapter = qla24xx_reset_adapter, |
1481 | .nvram_config = qla81xx_nvram_config, | 1479 | .nvram_config = qla81xx_nvram_config, |
1482 | .update_fw_options = qla81xx_update_fw_options, | 1480 | .update_fw_options = qla81xx_update_fw_options, |
1483 | .load_risc = qla24xx_load_risc, | 1481 | .load_risc = qla81xx_load_risc, |
1484 | .pci_info_str = qla24xx_pci_info_str, | 1482 | .pci_info_str = qla24xx_pci_info_str, |
1485 | .fw_version_str = qla24xx_fw_version_str, | 1483 | .fw_version_str = qla24xx_fw_version_str, |
1486 | .intr_handler = qla24xx_intr_handler, | 1484 | .intr_handler = qla24xx_intr_handler, |
@@ -1869,6 +1867,7 @@ qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id) | |||
1869 | 1867 | ||
1870 | set_bit(0, (unsigned long *) ha->vp_idx_map); | 1868 | set_bit(0, (unsigned long *) ha->vp_idx_map); |
1871 | 1869 | ||
1870 | qla2x00_config_dma_addressing(ha); | ||
1872 | ret = qla2x00_mem_alloc(ha, req_length, rsp_length, &req, &rsp); | 1871 | ret = qla2x00_mem_alloc(ha, req_length, rsp_length, &req, &rsp); |
1873 | if (!ret) { | 1872 | if (!ret) { |
1874 | qla_printk(KERN_WARNING, ha, | 1873 | qla_printk(KERN_WARNING, ha, |
@@ -1888,13 +1887,13 @@ qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id) | |||
1888 | "[ERROR] Failed to allocate memory for scsi_host\n"); | 1887 | "[ERROR] Failed to allocate memory for scsi_host\n"); |
1889 | 1888 | ||
1890 | ret = -ENOMEM; | 1889 | ret = -ENOMEM; |
1890 | qla2x00_mem_free(ha); | ||
1891 | qla2x00_free_que(ha, req, rsp); | ||
1891 | goto probe_hw_failed; | 1892 | goto probe_hw_failed; |
1892 | } | 1893 | } |
1893 | 1894 | ||
1894 | pci_set_drvdata(pdev, base_vha); | 1895 | pci_set_drvdata(pdev, base_vha); |
1895 | 1896 | ||
1896 | qla2x00_config_dma_addressing(base_vha); | ||
1897 | |||
1898 | host = base_vha->host; | 1897 | host = base_vha->host; |
1899 | base_vha->req_ques[0] = req->id; | 1898 | base_vha->req_ques[0] = req->id; |
1900 | host->can_queue = req->length + 128; | 1899 | host->can_queue = req->length + 128; |
@@ -1917,14 +1916,13 @@ qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id) | |||
1917 | /* Set up the irqs */ | 1916 | /* Set up the irqs */ |
1918 | ret = qla2x00_request_irqs(ha, rsp); | 1917 | ret = qla2x00_request_irqs(ha, rsp); |
1919 | if (ret) | 1918 | if (ret) |
1920 | goto probe_failed; | 1919 | goto probe_init_failed; |
1921 | |||
1922 | /* Alloc arrays of request and response ring ptrs */ | 1920 | /* Alloc arrays of request and response ring ptrs */ |
1923 | if (!qla2x00_alloc_queues(ha)) { | 1921 | if (!qla2x00_alloc_queues(ha)) { |
1924 | qla_printk(KERN_WARNING, ha, | 1922 | qla_printk(KERN_WARNING, ha, |
1925 | "[ERROR] Failed to allocate memory for queue" | 1923 | "[ERROR] Failed to allocate memory for queue" |
1926 | " pointers\n"); | 1924 | " pointers\n"); |
1927 | goto probe_failed; | 1925 | goto probe_init_failed; |
1928 | } | 1926 | } |
1929 | ha->rsp_q_map[0] = rsp; | 1927 | ha->rsp_q_map[0] = rsp; |
1930 | ha->req_q_map[0] = req; | 1928 | ha->req_q_map[0] = req; |
@@ -1997,6 +1995,10 @@ qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id) | |||
1997 | 1995 | ||
1998 | return 0; | 1996 | return 0; |
1999 | 1997 | ||
1998 | probe_init_failed: | ||
1999 | qla2x00_free_que(ha, req, rsp); | ||
2000 | ha->max_queues = 0; | ||
2001 | |||
2000 | probe_failed: | 2002 | probe_failed: |
2001 | qla2x00_free_device(base_vha); | 2003 | qla2x00_free_device(base_vha); |
2002 | 2004 | ||
diff --git a/drivers/scsi/qla2xxx/qla_sup.c b/drivers/scsi/qla2xxx/qla_sup.c index 303f8ee11f25..9c3b694c049d 100644 --- a/drivers/scsi/qla2xxx/qla_sup.c +++ b/drivers/scsi/qla2xxx/qla_sup.c | |||
@@ -944,9 +944,9 @@ qla24xx_unprotect_flash(struct qla_hw_data *ha) | |||
944 | if (!ha->fdt_wrt_disable) | 944 | if (!ha->fdt_wrt_disable) |
945 | return; | 945 | return; |
946 | 946 | ||
947 | /* Disable flash write-protection. */ | 947 | /* Disable flash write-protection, first clear SR protection bit */ |
948 | qla24xx_write_flash_dword(ha, flash_conf_addr(ha, 0x101), 0); | 948 | qla24xx_write_flash_dword(ha, flash_conf_addr(ha, 0x101), 0); |
949 | /* Some flash parts need an additional zero-write to clear bits.*/ | 949 | /* Then write zero again to clear remaining SR bits.*/ |
950 | qla24xx_write_flash_dword(ha, flash_conf_addr(ha, 0x101), 0); | 950 | qla24xx_write_flash_dword(ha, flash_conf_addr(ha, 0x101), 0); |
951 | } | 951 | } |
952 | 952 | ||
@@ -980,12 +980,11 @@ qla24xx_write_flash_data(scsi_qla_host_t *vha, uint32_t *dwptr, uint32_t faddr, | |||
980 | uint32_t dwords) | 980 | uint32_t dwords) |
981 | { | 981 | { |
982 | int ret; | 982 | int ret; |
983 | uint32_t liter, miter; | 983 | uint32_t liter; |
984 | uint32_t sec_mask, rest_addr; | 984 | uint32_t sec_mask, rest_addr; |
985 | uint32_t fdata, findex; | 985 | uint32_t fdata; |
986 | dma_addr_t optrom_dma; | 986 | dma_addr_t optrom_dma; |
987 | void *optrom = NULL; | 987 | void *optrom = NULL; |
988 | uint32_t *s, *d; | ||
989 | struct qla_hw_data *ha = vha->hw; | 988 | struct qla_hw_data *ha = vha->hw; |
990 | 989 | ||
991 | ret = QLA_SUCCESS; | 990 | ret = QLA_SUCCESS; |
@@ -1003,17 +1002,15 @@ qla24xx_write_flash_data(scsi_qla_host_t *vha, uint32_t *dwptr, uint32_t faddr, | |||
1003 | } | 1002 | } |
1004 | 1003 | ||
1005 | rest_addr = (ha->fdt_block_size >> 2) - 1; | 1004 | rest_addr = (ha->fdt_block_size >> 2) - 1; |
1006 | sec_mask = (ha->optrom_size >> 2) - (ha->fdt_block_size >> 2); | 1005 | sec_mask = ~rest_addr; |
1007 | 1006 | ||
1008 | qla24xx_unprotect_flash(ha); | 1007 | qla24xx_unprotect_flash(ha); |
1009 | 1008 | ||
1010 | for (liter = 0; liter < dwords; liter++, faddr++, dwptr++) { | 1009 | for (liter = 0; liter < dwords; liter++, faddr++, dwptr++) { |
1011 | 1010 | fdata = (faddr & sec_mask) << 2; | |
1012 | findex = faddr; | ||
1013 | fdata = (findex & sec_mask) << 2; | ||
1014 | 1011 | ||
1015 | /* Are we at the beginning of a sector? */ | 1012 | /* Are we at the beginning of a sector? */ |
1016 | if ((findex & rest_addr) == 0) { | 1013 | if ((faddr & rest_addr) == 0) { |
1017 | /* Do sector unprotect. */ | 1014 | /* Do sector unprotect. */ |
1018 | if (ha->fdt_unprotect_sec_cmd) | 1015 | if (ha->fdt_unprotect_sec_cmd) |
1019 | qla24xx_write_flash_dword(ha, | 1016 | qla24xx_write_flash_dword(ha, |
@@ -1024,7 +1021,7 @@ qla24xx_write_flash_data(scsi_qla_host_t *vha, uint32_t *dwptr, uint32_t faddr, | |||
1024 | (fdata & 0xff00) |((fdata << 16) & | 1021 | (fdata & 0xff00) |((fdata << 16) & |
1025 | 0xff0000) | ((fdata >> 16) & 0xff)); | 1022 | 0xff0000) | ((fdata >> 16) & 0xff)); |
1026 | if (ret != QLA_SUCCESS) { | 1023 | if (ret != QLA_SUCCESS) { |
1027 | DEBUG9(qla_printk("Unable to flash sector: " | 1024 | DEBUG9(qla_printk("Unable to erase sector: " |
1028 | "address=%x.\n", faddr)); | 1025 | "address=%x.\n", faddr)); |
1029 | break; | 1026 | break; |
1030 | } | 1027 | } |
@@ -1033,9 +1030,7 @@ qla24xx_write_flash_data(scsi_qla_host_t *vha, uint32_t *dwptr, uint32_t faddr, | |||
1033 | /* Go with burst-write. */ | 1030 | /* Go with burst-write. */ |
1034 | if (optrom && (liter + OPTROM_BURST_DWORDS) <= dwords) { | 1031 | if (optrom && (liter + OPTROM_BURST_DWORDS) <= dwords) { |
1035 | /* Copy data to DMA'ble buffer. */ | 1032 | /* Copy data to DMA'ble buffer. */ |
1036 | for (miter = 0, s = optrom, d = dwptr; | 1033 | memcpy(optrom, dwptr, OPTROM_BURST_SIZE); |
1037 | miter < OPTROM_BURST_DWORDS; miter++, s++, d++) | ||
1038 | *s = cpu_to_le32(*d); | ||
1039 | 1034 | ||
1040 | ret = qla2x00_load_ram(vha, optrom_dma, | 1035 | ret = qla2x00_load_ram(vha, optrom_dma, |
1041 | flash_data_addr(ha, faddr), | 1036 | flash_data_addr(ha, faddr), |
diff --git a/drivers/scsi/qla2xxx/qla_version.h b/drivers/scsi/qla2xxx/qla_version.h index 808bab6ef06b..cfa4c11a4797 100644 --- a/drivers/scsi/qla2xxx/qla_version.h +++ b/drivers/scsi/qla2xxx/qla_version.h | |||
@@ -7,7 +7,7 @@ | |||
7 | /* | 7 | /* |
8 | * Driver version | 8 | * Driver version |
9 | */ | 9 | */ |
10 | #define QLA2XXX_VERSION "8.03.00-k1" | 10 | #define QLA2XXX_VERSION "8.03.00-k2" |
11 | 11 | ||
12 | #define QLA_DRIVER_MAJOR_VER 8 | 12 | #define QLA_DRIVER_MAJOR_VER 8 |
13 | #define QLA_DRIVER_MINOR_VER 3 | 13 | #define QLA_DRIVER_MINOR_VER 3 |
diff --git a/drivers/scsi/qla4xxx/ql4_def.h b/drivers/scsi/qla4xxx/ql4_def.h index d6be0762eb91..b586f27c3bd4 100644 --- a/drivers/scsi/qla4xxx/ql4_def.h +++ b/drivers/scsi/qla4xxx/ql4_def.h | |||
@@ -244,6 +244,7 @@ struct ddb_entry { | |||
244 | uint8_t ip_addr[ISCSI_IPADDR_SIZE]; | 244 | uint8_t ip_addr[ISCSI_IPADDR_SIZE]; |
245 | uint8_t iscsi_name[ISCSI_NAME_SIZE]; /* 72 x48 */ | 245 | uint8_t iscsi_name[ISCSI_NAME_SIZE]; /* 72 x48 */ |
246 | uint8_t iscsi_alias[0x20]; | 246 | uint8_t iscsi_alias[0x20]; |
247 | uint8_t isid[6]; | ||
247 | }; | 248 | }; |
248 | 249 | ||
249 | /* | 250 | /* |
diff --git a/drivers/scsi/qla4xxx/ql4_init.c b/drivers/scsi/qla4xxx/ql4_init.c index 109c5f5985ec..af8c3233e8ae 100644 --- a/drivers/scsi/qla4xxx/ql4_init.c +++ b/drivers/scsi/qla4xxx/ql4_init.c | |||
@@ -342,8 +342,12 @@ static struct ddb_entry* qla4xxx_get_ddb_entry(struct scsi_qla_host *ha, | |||
342 | DEBUG2(printk("scsi%ld: %s: Looking for ddb[%d]\n", ha->host_no, | 342 | DEBUG2(printk("scsi%ld: %s: Looking for ddb[%d]\n", ha->host_no, |
343 | __func__, fw_ddb_index)); | 343 | __func__, fw_ddb_index)); |
344 | list_for_each_entry(ddb_entry, &ha->ddb_list, list) { | 344 | list_for_each_entry(ddb_entry, &ha->ddb_list, list) { |
345 | if (memcmp(ddb_entry->iscsi_name, fw_ddb_entry->iscsi_name, | 345 | if ((memcmp(ddb_entry->iscsi_name, fw_ddb_entry->iscsi_name, |
346 | ISCSI_NAME_SIZE) == 0) { | 346 | ISCSI_NAME_SIZE) == 0) && |
347 | (ddb_entry->tpgt == | ||
348 | le32_to_cpu(fw_ddb_entry->tgt_portal_grp)) && | ||
349 | (memcmp(ddb_entry->isid, fw_ddb_entry->isid, | ||
350 | sizeof(ddb_entry->isid)) == 0)) { | ||
347 | found++; | 351 | found++; |
348 | break; | 352 | break; |
349 | } | 353 | } |
@@ -430,6 +434,8 @@ static int qla4xxx_update_ddb_entry(struct scsi_qla_host *ha, | |||
430 | 434 | ||
431 | ddb_entry->port = le16_to_cpu(fw_ddb_entry->port); | 435 | ddb_entry->port = le16_to_cpu(fw_ddb_entry->port); |
432 | ddb_entry->tpgt = le32_to_cpu(fw_ddb_entry->tgt_portal_grp); | 436 | ddb_entry->tpgt = le32_to_cpu(fw_ddb_entry->tgt_portal_grp); |
437 | memcpy(ddb_entry->isid, fw_ddb_entry->isid, sizeof(ddb_entry->isid)); | ||
438 | |||
433 | memcpy(&ddb_entry->iscsi_name[0], &fw_ddb_entry->iscsi_name[0], | 439 | memcpy(&ddb_entry->iscsi_name[0], &fw_ddb_entry->iscsi_name[0], |
434 | min(sizeof(ddb_entry->iscsi_name), | 440 | min(sizeof(ddb_entry->iscsi_name), |
435 | sizeof(fw_ddb_entry->iscsi_name))); | 441 | sizeof(fw_ddb_entry->iscsi_name))); |
diff --git a/drivers/serial/8250_pci.c b/drivers/serial/8250_pci.c index 2a3671233b15..536d8e510f66 100644 --- a/drivers/serial/8250_pci.c +++ b/drivers/serial/8250_pci.c | |||
@@ -806,6 +806,8 @@ pci_default_setup(struct serial_private *priv, | |||
806 | #define PCI_SUBDEVICE_ID_OCTPRO422 0x0208 | 806 | #define PCI_SUBDEVICE_ID_OCTPRO422 0x0208 |
807 | #define PCI_SUBDEVICE_ID_POCTAL232 0x0308 | 807 | #define PCI_SUBDEVICE_ID_POCTAL232 0x0308 |
808 | #define PCI_SUBDEVICE_ID_POCTAL422 0x0408 | 808 | #define PCI_SUBDEVICE_ID_POCTAL422 0x0408 |
809 | #define PCI_VENDOR_ID_ADVANTECH 0x13fe | ||
810 | #define PCI_DEVICE_ID_ADVANTECH_PCI3620 0x3620 | ||
809 | 811 | ||
810 | /* Unknown vendors/cards - this should not be in linux/pci_ids.h */ | 812 | /* Unknown vendors/cards - this should not be in linux/pci_ids.h */ |
811 | #define PCI_SUBDEVICE_ID_UNKNOWN_0x1584 0x1584 | 813 | #define PCI_SUBDEVICE_ID_UNKNOWN_0x1584 0x1584 |
@@ -2152,6 +2154,10 @@ static int pciserial_resume_one(struct pci_dev *dev) | |||
2152 | #endif | 2154 | #endif |
2153 | 2155 | ||
2154 | static struct pci_device_id serial_pci_tbl[] = { | 2156 | static struct pci_device_id serial_pci_tbl[] = { |
2157 | /* Advantech use PCI_DEVICE_ID_ADVANTECH_PCI3620 (0x3620) as 'PCI_SUBVENDOR_ID' */ | ||
2158 | { PCI_VENDOR_ID_ADVANTECH, PCI_DEVICE_ID_ADVANTECH_PCI3620, | ||
2159 | PCI_DEVICE_ID_ADVANTECH_PCI3620, 0x0001, 0, 0, | ||
2160 | pbn_b2_8_921600 }, | ||
2155 | { PCI_VENDOR_ID_V3, PCI_DEVICE_ID_V3_V960, | 2161 | { PCI_VENDOR_ID_V3, PCI_DEVICE_ID_V3_V960, |
2156 | PCI_SUBVENDOR_ID_CONNECT_TECH, | 2162 | PCI_SUBVENDOR_ID_CONNECT_TECH, |
2157 | PCI_SUBDEVICE_ID_CONNECT_TECH_BH8_232, 0, 0, | 2163 | PCI_SUBDEVICE_ID_CONNECT_TECH_BH8_232, 0, 0, |
diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig index 3e525e38a5d9..7d7f576da202 100644 --- a/drivers/serial/Kconfig +++ b/drivers/serial/Kconfig | |||
@@ -982,7 +982,7 @@ config SERIAL_SH_SCI_CONSOLE | |||
982 | 982 | ||
983 | config SERIAL_PNX8XXX | 983 | config SERIAL_PNX8XXX |
984 | bool "Enable PNX8XXX SoCs' UART Support" | 984 | bool "Enable PNX8XXX SoCs' UART Support" |
985 | depends on MIPS && SOC_PNX8550 | 985 | depends on MIPS && (SOC_PNX8550 || SOC_PNX833X) |
986 | select SERIAL_CORE | 986 | select SERIAL_CORE |
987 | help | 987 | help |
988 | If you have a MIPS-based Philips SoC such as PNX8550 or PNX8330 | 988 | If you have a MIPS-based Philips SoC such as PNX8550 or PNX8330 |
diff --git a/drivers/serial/jsm/jsm_driver.c b/drivers/serial/jsm/jsm_driver.c index 338cf8a08b43..92187e28608a 100644 --- a/drivers/serial/jsm/jsm_driver.c +++ b/drivers/serial/jsm/jsm_driver.c | |||
@@ -180,7 +180,7 @@ static int jsm_probe_one(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
180 | return rc; | 180 | return rc; |
181 | } | 181 | } |
182 | 182 | ||
183 | static void jsm_remove_one(struct pci_dev *pdev) | 183 | static void __devexit jsm_remove_one(struct pci_dev *pdev) |
184 | { | 184 | { |
185 | struct jsm_board *brd = pci_get_drvdata(pdev); | 185 | struct jsm_board *brd = pci_get_drvdata(pdev); |
186 | int i = 0; | 186 | int i = 0; |
diff --git a/drivers/serial/mcf.c b/drivers/serial/mcf.c index b2001c5b145c..56841fe5f483 100644 --- a/drivers/serial/mcf.c +++ b/drivers/serial/mcf.c | |||
@@ -212,10 +212,18 @@ static void mcf_set_termios(struct uart_port *port, struct ktermios *termios, | |||
212 | { | 212 | { |
213 | unsigned long flags; | 213 | unsigned long flags; |
214 | unsigned int baud, baudclk; | 214 | unsigned int baud, baudclk; |
215 | #if defined(CONFIG_M5272) | ||
216 | unsigned int baudfr; | ||
217 | #endif | ||
215 | unsigned char mr1, mr2; | 218 | unsigned char mr1, mr2; |
216 | 219 | ||
217 | baud = uart_get_baud_rate(port, termios, old, 0, 230400); | 220 | baud = uart_get_baud_rate(port, termios, old, 0, 230400); |
221 | #if defined(CONFIG_M5272) | ||
222 | baudclk = (MCF_BUSCLK / baud) / 32; | ||
223 | baudfr = (((MCF_BUSCLK / baud) + 1) / 2) % 16; | ||
224 | #else | ||
218 | baudclk = ((MCF_BUSCLK / baud) + 16) / 32; | 225 | baudclk = ((MCF_BUSCLK / baud) + 16) / 32; |
226 | #endif | ||
219 | 227 | ||
220 | mr1 = MCFUART_MR1_RXIRQRDY | MCFUART_MR1_RXERRCHAR; | 228 | mr1 = MCFUART_MR1_RXIRQRDY | MCFUART_MR1_RXERRCHAR; |
221 | mr2 = 0; | 229 | mr2 = 0; |
@@ -262,6 +270,9 @@ static void mcf_set_termios(struct uart_port *port, struct ktermios *termios, | |||
262 | writeb(mr2, port->membase + MCFUART_UMR); | 270 | writeb(mr2, port->membase + MCFUART_UMR); |
263 | writeb((baudclk & 0xff00) >> 8, port->membase + MCFUART_UBG1); | 271 | writeb((baudclk & 0xff00) >> 8, port->membase + MCFUART_UBG1); |
264 | writeb((baudclk & 0xff), port->membase + MCFUART_UBG2); | 272 | writeb((baudclk & 0xff), port->membase + MCFUART_UBG2); |
273 | #if defined(CONFIG_M5272) | ||
274 | writeb((baudfr & 0x0f), port->membase + MCFUART_UFPD); | ||
275 | #endif | ||
265 | writeb(MCFUART_UCSR_RXCLKTIMER | MCFUART_UCSR_TXCLKTIMER, | 276 | writeb(MCFUART_UCSR_RXCLKTIMER | MCFUART_UCSR_TXCLKTIMER, |
266 | port->membase + MCFUART_UCSR); | 277 | port->membase + MCFUART_UCSR); |
267 | writeb(MCFUART_UCR_RXENABLE | MCFUART_UCR_TXENABLE, | 278 | writeb(MCFUART_UCR_RXENABLE | MCFUART_UCR_TXENABLE, |
diff --git a/drivers/usb/Makefile b/drivers/usb/Makefile index 8b7c419b876e..8bcde8cde554 100644 --- a/drivers/usb/Makefile +++ b/drivers/usb/Makefile | |||
@@ -13,6 +13,7 @@ obj-$(CONFIG_USB_EHCI_HCD) += host/ | |||
13 | obj-$(CONFIG_USB_ISP116X_HCD) += host/ | 13 | obj-$(CONFIG_USB_ISP116X_HCD) += host/ |
14 | obj-$(CONFIG_USB_OHCI_HCD) += host/ | 14 | obj-$(CONFIG_USB_OHCI_HCD) += host/ |
15 | obj-$(CONFIG_USB_UHCI_HCD) += host/ | 15 | obj-$(CONFIG_USB_UHCI_HCD) += host/ |
16 | obj-$(CONFIG_USB_FHCI_HCD) += host/ | ||
16 | obj-$(CONFIG_USB_SL811_HCD) += host/ | 17 | obj-$(CONFIG_USB_SL811_HCD) += host/ |
17 | obj-$(CONFIG_USB_U132_HCD) += host/ | 18 | obj-$(CONFIG_USB_U132_HCD) += host/ |
18 | obj-$(CONFIG_USB_R8A66597_HCD) += host/ | 19 | obj-$(CONFIG_USB_R8A66597_HCD) += host/ |
diff --git a/drivers/usb/class/cdc-acm.c b/drivers/usb/class/cdc-acm.c index 00b47ea24f86..97ba4a985edc 100644 --- a/drivers/usb/class/cdc-acm.c +++ b/drivers/usb/class/cdc-acm.c | |||
@@ -1349,6 +1349,12 @@ static struct usb_device_id acm_ids[] = { | |||
1349 | { USB_DEVICE(0x0e8d, 0x0003), /* FIREFLY, MediaTek Inc; andrey.arapov@gmail.com */ | 1349 | { USB_DEVICE(0x0e8d, 0x0003), /* FIREFLY, MediaTek Inc; andrey.arapov@gmail.com */ |
1350 | .driver_info = NO_UNION_NORMAL, /* has no union descriptor */ | 1350 | .driver_info = NO_UNION_NORMAL, /* has no union descriptor */ |
1351 | }, | 1351 | }, |
1352 | { USB_DEVICE(0x0e8d, 0x3329), /* i-blue 747, Qstarz BT-Q1000, Holux M-241 */ | ||
1353 | .driver_info = NO_UNION_NORMAL, /* has no union descriptor */ | ||
1354 | }, | ||
1355 | { USB_DEVICE(0x0e8d, 0x3329), /* MediaTek Inc GPS */ | ||
1356 | .driver_info = NO_UNION_NORMAL, /* has no union descriptor */ | ||
1357 | }, | ||
1352 | { USB_DEVICE(0x0482, 0x0203), /* KYOCERA AH-K3001V */ | 1358 | { USB_DEVICE(0x0482, 0x0203), /* KYOCERA AH-K3001V */ |
1353 | .driver_info = NO_UNION_NORMAL, /* has no union descriptor */ | 1359 | .driver_info = NO_UNION_NORMAL, /* has no union descriptor */ |
1354 | }, | 1360 | }, |
@@ -1370,6 +1376,9 @@ static struct usb_device_id acm_ids[] = { | |||
1370 | { USB_DEVICE(0x0572, 0x1321), /* Conexant USB MODEM CX93010 */ | 1376 | { USB_DEVICE(0x0572, 0x1321), /* Conexant USB MODEM CX93010 */ |
1371 | .driver_info = NO_UNION_NORMAL, /* has no union descriptor */ | 1377 | .driver_info = NO_UNION_NORMAL, /* has no union descriptor */ |
1372 | }, | 1378 | }, |
1379 | { USB_DEVICE(0x0572, 0x1324), /* Conexant USB MODEM RD02-D400 */ | ||
1380 | .driver_info = NO_UNION_NORMAL, /* has no union descriptor */ | ||
1381 | }, | ||
1373 | 1382 | ||
1374 | /* control interfaces with various AT-command sets */ | 1383 | /* control interfaces with various AT-command sets */ |
1375 | { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM, | 1384 | { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM, |
diff --git a/drivers/usb/class/usblp.c b/drivers/usb/class/usblp.c index b5775af3ba26..3f3ee1351930 100644 --- a/drivers/usb/class/usblp.c +++ b/drivers/usb/class/usblp.c | |||
@@ -226,6 +226,7 @@ static const struct quirk_printer_struct quirk_printers[] = { | |||
226 | { 0x0409, 0xf0be, USBLP_QUIRK_BIDIR }, /* NEC Picty920 (HP OEM) */ | 226 | { 0x0409, 0xf0be, USBLP_QUIRK_BIDIR }, /* NEC Picty920 (HP OEM) */ |
227 | { 0x0409, 0xf1be, USBLP_QUIRK_BIDIR }, /* NEC Picty800 (HP OEM) */ | 227 | { 0x0409, 0xf1be, USBLP_QUIRK_BIDIR }, /* NEC Picty800 (HP OEM) */ |
228 | { 0x0482, 0x0010, USBLP_QUIRK_BIDIR }, /* Kyocera Mita FS 820, by zut <kernel@zut.de> */ | 228 | { 0x0482, 0x0010, USBLP_QUIRK_BIDIR }, /* Kyocera Mita FS 820, by zut <kernel@zut.de> */ |
229 | { 0x04f9, 0x000d, USBLP_QUIRK_BIDIR }, /* Brother Industries, Ltd HL-1440 Laser Printer */ | ||
229 | { 0x04b8, 0x0202, USBLP_QUIRK_BAD_CLASS }, /* Seiko Epson Receipt Printer M129C */ | 230 | { 0x04b8, 0x0202, USBLP_QUIRK_BAD_CLASS }, /* Seiko Epson Receipt Printer M129C */ |
230 | { 0, 0 } | 231 | { 0, 0 } |
231 | }; | 232 | }; |
diff --git a/drivers/usb/core/devio.c b/drivers/usb/core/devio.c index 26fece124e0e..7513bb083c15 100644 --- a/drivers/usb/core/devio.c +++ b/drivers/usb/core/devio.c | |||
@@ -1700,7 +1700,7 @@ const struct file_operations usbdev_file_operations = { | |||
1700 | .release = usbdev_release, | 1700 | .release = usbdev_release, |
1701 | }; | 1701 | }; |
1702 | 1702 | ||
1703 | void usb_fs_classdev_common_remove(struct usb_device *udev) | 1703 | static void usbdev_remove(struct usb_device *udev) |
1704 | { | 1704 | { |
1705 | struct dev_state *ps; | 1705 | struct dev_state *ps; |
1706 | struct siginfo sinfo; | 1706 | struct siginfo sinfo; |
@@ -1742,10 +1742,15 @@ static void usb_classdev_remove(struct usb_device *dev) | |||
1742 | { | 1742 | { |
1743 | if (dev->usb_classdev) | 1743 | if (dev->usb_classdev) |
1744 | device_unregister(dev->usb_classdev); | 1744 | device_unregister(dev->usb_classdev); |
1745 | usb_fs_classdev_common_remove(dev); | ||
1746 | } | 1745 | } |
1747 | 1746 | ||
1748 | static int usb_classdev_notify(struct notifier_block *self, | 1747 | #else |
1748 | #define usb_classdev_add(dev) 0 | ||
1749 | #define usb_classdev_remove(dev) do {} while (0) | ||
1750 | |||
1751 | #endif | ||
1752 | |||
1753 | static int usbdev_notify(struct notifier_block *self, | ||
1749 | unsigned long action, void *dev) | 1754 | unsigned long action, void *dev) |
1750 | { | 1755 | { |
1751 | switch (action) { | 1756 | switch (action) { |
@@ -1755,15 +1760,15 @@ static int usb_classdev_notify(struct notifier_block *self, | |||
1755 | break; | 1760 | break; |
1756 | case USB_DEVICE_REMOVE: | 1761 | case USB_DEVICE_REMOVE: |
1757 | usb_classdev_remove(dev); | 1762 | usb_classdev_remove(dev); |
1763 | usbdev_remove(dev); | ||
1758 | break; | 1764 | break; |
1759 | } | 1765 | } |
1760 | return NOTIFY_OK; | 1766 | return NOTIFY_OK; |
1761 | } | 1767 | } |
1762 | 1768 | ||
1763 | static struct notifier_block usbdev_nb = { | 1769 | static struct notifier_block usbdev_nb = { |
1764 | .notifier_call = usb_classdev_notify, | 1770 | .notifier_call = usbdev_notify, |
1765 | }; | 1771 | }; |
1766 | #endif | ||
1767 | 1772 | ||
1768 | static struct cdev usb_device_cdev; | 1773 | static struct cdev usb_device_cdev; |
1769 | 1774 | ||
@@ -1798,9 +1803,8 @@ int __init usb_devio_init(void) | |||
1798 | * to /sys/dev | 1803 | * to /sys/dev |
1799 | */ | 1804 | */ |
1800 | usb_classdev_class->dev_kobj = NULL; | 1805 | usb_classdev_class->dev_kobj = NULL; |
1801 | |||
1802 | usb_register_notify(&usbdev_nb); | ||
1803 | #endif | 1806 | #endif |
1807 | usb_register_notify(&usbdev_nb); | ||
1804 | out: | 1808 | out: |
1805 | return retval; | 1809 | return retval; |
1806 | 1810 | ||
@@ -1811,8 +1815,8 @@ error_cdev: | |||
1811 | 1815 | ||
1812 | void usb_devio_cleanup(void) | 1816 | void usb_devio_cleanup(void) |
1813 | { | 1817 | { |
1814 | #ifdef CONFIG_USB_DEVICE_CLASS | ||
1815 | usb_unregister_notify(&usbdev_nb); | 1818 | usb_unregister_notify(&usbdev_nb); |
1819 | #ifdef CONFIG_USB_DEVICE_CLASS | ||
1816 | class_destroy(usb_classdev_class); | 1820 | class_destroy(usb_classdev_class); |
1817 | #endif | 1821 | #endif |
1818 | cdev_del(&usb_device_cdev); | 1822 | cdev_del(&usb_device_cdev); |
diff --git a/drivers/usb/core/driver.c b/drivers/usb/core/driver.c index 98760553bc95..d0a21a5f8201 100644 --- a/drivers/usb/core/driver.c +++ b/drivers/usb/core/driver.c | |||
@@ -284,7 +284,7 @@ static int usb_unbind_interface(struct device *dev) | |||
284 | * supports "soft" unbinding. | 284 | * supports "soft" unbinding. |
285 | */ | 285 | */ |
286 | if (!driver->soft_unbind) | 286 | if (!driver->soft_unbind) |
287 | usb_disable_interface(udev, intf); | 287 | usb_disable_interface(udev, intf, false); |
288 | 288 | ||
289 | driver->disconnect(intf); | 289 | driver->disconnect(intf); |
290 | usb_cancel_queued_reset(intf); | 290 | usb_cancel_queued_reset(intf); |
diff --git a/drivers/usb/core/hcd-pci.c b/drivers/usb/core/hcd-pci.c index 507741ed4482..c54fc40458b1 100644 --- a/drivers/usb/core/hcd-pci.c +++ b/drivers/usb/core/hcd-pci.c | |||
@@ -128,7 +128,6 @@ int usb_hcd_pci_probe(struct pci_dev *dev, const struct pci_device_id *id) | |||
128 | } | 128 | } |
129 | 129 | ||
130 | pci_set_master(dev); | 130 | pci_set_master(dev); |
131 | device_set_wakeup_enable(&dev->dev, 1); | ||
132 | 131 | ||
133 | retval = usb_add_hcd(hcd, dev->irq, IRQF_DISABLED | IRQF_SHARED); | 132 | retval = usb_add_hcd(hcd, dev->irq, IRQF_DISABLED | IRQF_SHARED); |
134 | if (retval != 0) | 133 | if (retval != 0) |
@@ -201,6 +200,7 @@ int usb_hcd_pci_suspend(struct pci_dev *dev, pm_message_t message) | |||
201 | struct usb_hcd *hcd = pci_get_drvdata(dev); | 200 | struct usb_hcd *hcd = pci_get_drvdata(dev); |
202 | int retval = 0; | 201 | int retval = 0; |
203 | int wake, w; | 202 | int wake, w; |
203 | int has_pci_pm; | ||
204 | 204 | ||
205 | /* Root hub suspend should have stopped all downstream traffic, | 205 | /* Root hub suspend should have stopped all downstream traffic, |
206 | * and all bus master traffic. And done so for both the interface | 206 | * and all bus master traffic. And done so for both the interface |
@@ -230,6 +230,15 @@ int usb_hcd_pci_suspend(struct pci_dev *dev, pm_message_t message) | |||
230 | 230 | ||
231 | synchronize_irq(dev->irq); | 231 | synchronize_irq(dev->irq); |
232 | 232 | ||
233 | /* Downstream ports from this root hub should already be quiesced, so | ||
234 | * there will be no DMA activity. Now we can shut down the upstream | ||
235 | * link (except maybe for PME# resume signaling) and enter some PCI | ||
236 | * low power state, if the hardware allows. | ||
237 | */ | ||
238 | pci_disable_device(dev); | ||
239 | |||
240 | pci_save_state(dev); | ||
241 | |||
233 | /* Don't fail on error to enable wakeup. We rely on pci code | 242 | /* Don't fail on error to enable wakeup. We rely on pci code |
234 | * to reject requests the hardware can't implement, rather | 243 | * to reject requests the hardware can't implement, rather |
235 | * than coding the same thing. | 244 | * than coding the same thing. |
@@ -241,35 +250,6 @@ int usb_hcd_pci_suspend(struct pci_dev *dev, pm_message_t message) | |||
241 | wake = w; | 250 | wake = w; |
242 | dev_dbg(&dev->dev, "wakeup: %d\n", wake); | 251 | dev_dbg(&dev->dev, "wakeup: %d\n", wake); |
243 | 252 | ||
244 | /* Downstream ports from this root hub should already be quiesced, so | ||
245 | * there will be no DMA activity. Now we can shut down the upstream | ||
246 | * link (except maybe for PME# resume signaling) and enter some PCI | ||
247 | * low power state, if the hardware allows. | ||
248 | */ | ||
249 | pci_disable_device(dev); | ||
250 | done: | ||
251 | return retval; | ||
252 | } | ||
253 | EXPORT_SYMBOL_GPL(usb_hcd_pci_suspend); | ||
254 | |||
255 | /** | ||
256 | * usb_hcd_pci_suspend_late - suspend a PCI-based HCD after IRQs are disabled | ||
257 | * @dev: USB Host Controller being suspended | ||
258 | * @message: Power Management message describing this state transition | ||
259 | * | ||
260 | * Store this function in the HCD's struct pci_driver as .suspend_late. | ||
261 | */ | ||
262 | int usb_hcd_pci_suspend_late(struct pci_dev *dev, pm_message_t message) | ||
263 | { | ||
264 | int retval = 0; | ||
265 | int has_pci_pm; | ||
266 | |||
267 | /* We might already be suspended (runtime PM -- not yet written) */ | ||
268 | if (dev->current_state != PCI_D0) | ||
269 | goto done; | ||
270 | |||
271 | pci_save_state(dev); | ||
272 | |||
273 | /* Don't change state if we don't need to */ | 253 | /* Don't change state if we don't need to */ |
274 | if (message.event == PM_EVENT_FREEZE || | 254 | if (message.event == PM_EVENT_FREEZE || |
275 | message.event == PM_EVENT_PRETHAW) { | 255 | message.event == PM_EVENT_PRETHAW) { |
@@ -315,7 +295,7 @@ int usb_hcd_pci_suspend_late(struct pci_dev *dev, pm_message_t message) | |||
315 | done: | 295 | done: |
316 | return retval; | 296 | return retval; |
317 | } | 297 | } |
318 | EXPORT_SYMBOL_GPL(usb_hcd_pci_suspend_late); | 298 | EXPORT_SYMBOL_GPL(usb_hcd_pci_suspend); |
319 | 299 | ||
320 | /** | 300 | /** |
321 | * usb_hcd_pci_resume_early - resume a PCI-based HCD before IRQs are enabled | 301 | * usb_hcd_pci_resume_early - resume a PCI-based HCD before IRQs are enabled |
@@ -325,65 +305,8 @@ EXPORT_SYMBOL_GPL(usb_hcd_pci_suspend_late); | |||
325 | */ | 305 | */ |
326 | int usb_hcd_pci_resume_early(struct pci_dev *dev) | 306 | int usb_hcd_pci_resume_early(struct pci_dev *dev) |
327 | { | 307 | { |
328 | int retval = 0; | 308 | pci_restore_state(dev); |
329 | pci_power_t state = dev->current_state; | 309 | return 0; |
330 | |||
331 | #ifdef CONFIG_PPC_PMAC | ||
332 | /* Reenable ASIC clocks for USB */ | ||
333 | if (machine_is(powermac)) { | ||
334 | struct device_node *of_node; | ||
335 | |||
336 | of_node = pci_device_to_OF_node(dev); | ||
337 | if (of_node) | ||
338 | pmac_call_feature(PMAC_FTR_USB_ENABLE, | ||
339 | of_node, 0, 1); | ||
340 | } | ||
341 | #endif | ||
342 | |||
343 | /* NOTE: chip docs cover clean "real suspend" cases (what Linux | ||
344 | * calls "standby", "suspend to RAM", and so on). There are also | ||
345 | * dirty cases when swsusp fakes a suspend in "shutdown" mode. | ||
346 | */ | ||
347 | if (state != PCI_D0) { | ||
348 | #ifdef DEBUG | ||
349 | int pci_pm; | ||
350 | u16 pmcr; | ||
351 | |||
352 | pci_pm = pci_find_capability(dev, PCI_CAP_ID_PM); | ||
353 | pci_read_config_word(dev, pci_pm + PCI_PM_CTRL, &pmcr); | ||
354 | pmcr &= PCI_PM_CTRL_STATE_MASK; | ||
355 | if (pmcr) { | ||
356 | /* Clean case: power to USB and to HC registers was | ||
357 | * maintained; remote wakeup is easy. | ||
358 | */ | ||
359 | dev_dbg(&dev->dev, "resume from PCI D%d\n", pmcr); | ||
360 | } else { | ||
361 | /* Clean: HC lost Vcc power, D0 uninitialized | ||
362 | * + Vaux may have preserved port and transceiver | ||
363 | * state ... for remote wakeup from D3cold | ||
364 | * + or not; HCD must reinit + re-enumerate | ||
365 | * | ||
366 | * Dirty: D0 semi-initialized cases with swsusp | ||
367 | * + after BIOS init | ||
368 | * + after Linux init (HCD statically linked) | ||
369 | */ | ||
370 | dev_dbg(&dev->dev, "resume from previous PCI D%d\n", | ||
371 | state); | ||
372 | } | ||
373 | #endif | ||
374 | |||
375 | retval = pci_set_power_state(dev, PCI_D0); | ||
376 | } else { | ||
377 | /* Same basic cases: clean (powered/not), dirty */ | ||
378 | dev_dbg(&dev->dev, "PCI legacy resume\n"); | ||
379 | } | ||
380 | |||
381 | if (retval < 0) | ||
382 | dev_err(&dev->dev, "can't resume: %d\n", retval); | ||
383 | else | ||
384 | pci_restore_state(dev); | ||
385 | |||
386 | return retval; | ||
387 | } | 310 | } |
388 | EXPORT_SYMBOL_GPL(usb_hcd_pci_resume_early); | 311 | EXPORT_SYMBOL_GPL(usb_hcd_pci_resume_early); |
389 | 312 | ||
@@ -398,6 +321,18 @@ int usb_hcd_pci_resume(struct pci_dev *dev) | |||
398 | struct usb_hcd *hcd; | 321 | struct usb_hcd *hcd; |
399 | int retval; | 322 | int retval; |
400 | 323 | ||
324 | #ifdef CONFIG_PPC_PMAC | ||
325 | /* Reenable ASIC clocks for USB */ | ||
326 | if (machine_is(powermac)) { | ||
327 | struct device_node *of_node; | ||
328 | |||
329 | of_node = pci_device_to_OF_node(dev); | ||
330 | if (of_node) | ||
331 | pmac_call_feature(PMAC_FTR_USB_ENABLE, | ||
332 | of_node, 0, 1); | ||
333 | } | ||
334 | #endif | ||
335 | |||
401 | hcd = pci_get_drvdata(dev); | 336 | hcd = pci_get_drvdata(dev); |
402 | if (hcd->state != HC_STATE_SUSPENDED) { | 337 | if (hcd->state != HC_STATE_SUSPENDED) { |
403 | dev_dbg(hcd->self.controller, | 338 | dev_dbg(hcd->self.controller, |
@@ -405,6 +340,8 @@ int usb_hcd_pci_resume(struct pci_dev *dev) | |||
405 | return 0; | 340 | return 0; |
406 | } | 341 | } |
407 | 342 | ||
343 | pci_enable_wake(dev, PCI_D0, false); | ||
344 | |||
408 | retval = pci_enable_device(dev); | 345 | retval = pci_enable_device(dev); |
409 | if (retval < 0) { | 346 | if (retval < 0) { |
410 | dev_err(&dev->dev, "can't re-enable after resume, %d!\n", | 347 | dev_err(&dev->dev, "can't re-enable after resume, %d!\n", |
diff --git a/drivers/usb/core/hcd.h b/drivers/usb/core/hcd.h index 572d2cf46e8d..5b94a56bec23 100644 --- a/drivers/usb/core/hcd.h +++ b/drivers/usb/core/hcd.h | |||
@@ -257,7 +257,6 @@ extern void usb_hcd_pci_remove(struct pci_dev *dev); | |||
257 | 257 | ||
258 | #ifdef CONFIG_PM | 258 | #ifdef CONFIG_PM |
259 | extern int usb_hcd_pci_suspend(struct pci_dev *dev, pm_message_t msg); | 259 | extern int usb_hcd_pci_suspend(struct pci_dev *dev, pm_message_t msg); |
260 | extern int usb_hcd_pci_suspend_late(struct pci_dev *dev, pm_message_t msg); | ||
261 | extern int usb_hcd_pci_resume_early(struct pci_dev *dev); | 260 | extern int usb_hcd_pci_resume_early(struct pci_dev *dev); |
262 | extern int usb_hcd_pci_resume(struct pci_dev *dev); | 261 | extern int usb_hcd_pci_resume(struct pci_dev *dev); |
263 | #endif /* CONFIG_PM */ | 262 | #endif /* CONFIG_PM */ |
diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c index 94d5ee263c20..cd50d86029e7 100644 --- a/drivers/usb/core/hub.c +++ b/drivers/usb/core/hub.c | |||
@@ -2382,8 +2382,8 @@ static int hub_port_debounce(struct usb_hub *hub, int port1) | |||
2382 | 2382 | ||
2383 | void usb_ep0_reinit(struct usb_device *udev) | 2383 | void usb_ep0_reinit(struct usb_device *udev) |
2384 | { | 2384 | { |
2385 | usb_disable_endpoint(udev, 0 + USB_DIR_IN); | 2385 | usb_disable_endpoint(udev, 0 + USB_DIR_IN, true); |
2386 | usb_disable_endpoint(udev, 0 + USB_DIR_OUT); | 2386 | usb_disable_endpoint(udev, 0 + USB_DIR_OUT, true); |
2387 | usb_enable_endpoint(udev, &udev->ep0, true); | 2387 | usb_enable_endpoint(udev, &udev->ep0, true); |
2388 | } | 2388 | } |
2389 | EXPORT_SYMBOL_GPL(usb_ep0_reinit); | 2389 | EXPORT_SYMBOL_GPL(usb_ep0_reinit); |
diff --git a/drivers/usb/core/inode.c b/drivers/usb/core/inode.c index 2a129cb7bb56..dff5760a37f6 100644 --- a/drivers/usb/core/inode.c +++ b/drivers/usb/core/inode.c | |||
@@ -717,7 +717,6 @@ static void usbfs_remove_device(struct usb_device *dev) | |||
717 | fs_remove_file (dev->usbfs_dentry); | 717 | fs_remove_file (dev->usbfs_dentry); |
718 | dev->usbfs_dentry = NULL; | 718 | dev->usbfs_dentry = NULL; |
719 | } | 719 | } |
720 | usb_fs_classdev_common_remove(dev); | ||
721 | } | 720 | } |
722 | 721 | ||
723 | static int usbfs_notify(struct notifier_block *self, unsigned long action, void *dev) | 722 | static int usbfs_notify(struct notifier_block *self, unsigned long action, void *dev) |
diff --git a/drivers/usb/core/message.c b/drivers/usb/core/message.c index de51667dd64d..31fb204f44c6 100644 --- a/drivers/usb/core/message.c +++ b/drivers/usb/core/message.c | |||
@@ -1039,14 +1039,15 @@ static void remove_intf_ep_devs(struct usb_interface *intf) | |||
1039 | * @dev: the device whose endpoint is being disabled | 1039 | * @dev: the device whose endpoint is being disabled |
1040 | * @epaddr: the endpoint's address. Endpoint number for output, | 1040 | * @epaddr: the endpoint's address. Endpoint number for output, |
1041 | * endpoint number + USB_DIR_IN for input | 1041 | * endpoint number + USB_DIR_IN for input |
1042 | * @reset_hardware: flag to erase any endpoint state stored in the | ||
1043 | * controller hardware | ||
1042 | * | 1044 | * |
1043 | * Deallocates hcd/hardware state for this endpoint ... and nukes all | 1045 | * Disables the endpoint for URB submission and nukes all pending URBs. |
1044 | * pending urbs. | 1046 | * If @reset_hardware is set then also deallocates hcd/hardware state |
1045 | * | 1047 | * for the endpoint. |
1046 | * If the HCD hasn't registered a disable() function, this sets the | ||
1047 | * endpoint's maxpacket size to 0 to prevent further submissions. | ||
1048 | */ | 1048 | */ |
1049 | void usb_disable_endpoint(struct usb_device *dev, unsigned int epaddr) | 1049 | void usb_disable_endpoint(struct usb_device *dev, unsigned int epaddr, |
1050 | bool reset_hardware) | ||
1050 | { | 1051 | { |
1051 | unsigned int epnum = epaddr & USB_ENDPOINT_NUMBER_MASK; | 1052 | unsigned int epnum = epaddr & USB_ENDPOINT_NUMBER_MASK; |
1052 | struct usb_host_endpoint *ep; | 1053 | struct usb_host_endpoint *ep; |
@@ -1056,15 +1057,18 @@ void usb_disable_endpoint(struct usb_device *dev, unsigned int epaddr) | |||
1056 | 1057 | ||
1057 | if (usb_endpoint_out(epaddr)) { | 1058 | if (usb_endpoint_out(epaddr)) { |
1058 | ep = dev->ep_out[epnum]; | 1059 | ep = dev->ep_out[epnum]; |
1059 | dev->ep_out[epnum] = NULL; | 1060 | if (reset_hardware) |
1061 | dev->ep_out[epnum] = NULL; | ||
1060 | } else { | 1062 | } else { |
1061 | ep = dev->ep_in[epnum]; | 1063 | ep = dev->ep_in[epnum]; |
1062 | dev->ep_in[epnum] = NULL; | 1064 | if (reset_hardware) |
1065 | dev->ep_in[epnum] = NULL; | ||
1063 | } | 1066 | } |
1064 | if (ep) { | 1067 | if (ep) { |
1065 | ep->enabled = 0; | 1068 | ep->enabled = 0; |
1066 | usb_hcd_flush_endpoint(dev, ep); | 1069 | usb_hcd_flush_endpoint(dev, ep); |
1067 | usb_hcd_disable_endpoint(dev, ep); | 1070 | if (reset_hardware) |
1071 | usb_hcd_disable_endpoint(dev, ep); | ||
1068 | } | 1072 | } |
1069 | } | 1073 | } |
1070 | 1074 | ||
@@ -1072,17 +1076,21 @@ void usb_disable_endpoint(struct usb_device *dev, unsigned int epaddr) | |||
1072 | * usb_disable_interface -- Disable all endpoints for an interface | 1076 | * usb_disable_interface -- Disable all endpoints for an interface |
1073 | * @dev: the device whose interface is being disabled | 1077 | * @dev: the device whose interface is being disabled |
1074 | * @intf: pointer to the interface descriptor | 1078 | * @intf: pointer to the interface descriptor |
1079 | * @reset_hardware: flag to erase any endpoint state stored in the | ||
1080 | * controller hardware | ||
1075 | * | 1081 | * |
1076 | * Disables all the endpoints for the interface's current altsetting. | 1082 | * Disables all the endpoints for the interface's current altsetting. |
1077 | */ | 1083 | */ |
1078 | void usb_disable_interface(struct usb_device *dev, struct usb_interface *intf) | 1084 | void usb_disable_interface(struct usb_device *dev, struct usb_interface *intf, |
1085 | bool reset_hardware) | ||
1079 | { | 1086 | { |
1080 | struct usb_host_interface *alt = intf->cur_altsetting; | 1087 | struct usb_host_interface *alt = intf->cur_altsetting; |
1081 | int i; | 1088 | int i; |
1082 | 1089 | ||
1083 | for (i = 0; i < alt->desc.bNumEndpoints; ++i) { | 1090 | for (i = 0; i < alt->desc.bNumEndpoints; ++i) { |
1084 | usb_disable_endpoint(dev, | 1091 | usb_disable_endpoint(dev, |
1085 | alt->endpoint[i].desc.bEndpointAddress); | 1092 | alt->endpoint[i].desc.bEndpointAddress, |
1093 | reset_hardware); | ||
1086 | } | 1094 | } |
1087 | } | 1095 | } |
1088 | 1096 | ||
@@ -1103,8 +1111,8 @@ void usb_disable_device(struct usb_device *dev, int skip_ep0) | |||
1103 | dev_dbg(&dev->dev, "%s nuking %s URBs\n", __func__, | 1111 | dev_dbg(&dev->dev, "%s nuking %s URBs\n", __func__, |
1104 | skip_ep0 ? "non-ep0" : "all"); | 1112 | skip_ep0 ? "non-ep0" : "all"); |
1105 | for (i = skip_ep0; i < 16; ++i) { | 1113 | for (i = skip_ep0; i < 16; ++i) { |
1106 | usb_disable_endpoint(dev, i); | 1114 | usb_disable_endpoint(dev, i, true); |
1107 | usb_disable_endpoint(dev, i + USB_DIR_IN); | 1115 | usb_disable_endpoint(dev, i + USB_DIR_IN, true); |
1108 | } | 1116 | } |
1109 | dev->toggle[0] = dev->toggle[1] = 0; | 1117 | dev->toggle[0] = dev->toggle[1] = 0; |
1110 | 1118 | ||
@@ -1274,7 +1282,7 @@ int usb_set_interface(struct usb_device *dev, int interface, int alternate) | |||
1274 | remove_intf_ep_devs(iface); | 1282 | remove_intf_ep_devs(iface); |
1275 | usb_remove_sysfs_intf_files(iface); | 1283 | usb_remove_sysfs_intf_files(iface); |
1276 | } | 1284 | } |
1277 | usb_disable_interface(dev, iface); | 1285 | usb_disable_interface(dev, iface, true); |
1278 | 1286 | ||
1279 | iface->cur_altsetting = alt; | 1287 | iface->cur_altsetting = alt; |
1280 | 1288 | ||
@@ -1353,8 +1361,8 @@ int usb_reset_configuration(struct usb_device *dev) | |||
1353 | */ | 1361 | */ |
1354 | 1362 | ||
1355 | for (i = 1; i < 16; ++i) { | 1363 | for (i = 1; i < 16; ++i) { |
1356 | usb_disable_endpoint(dev, i); | 1364 | usb_disable_endpoint(dev, i, true); |
1357 | usb_disable_endpoint(dev, i + USB_DIR_IN); | 1365 | usb_disable_endpoint(dev, i + USB_DIR_IN, true); |
1358 | } | 1366 | } |
1359 | 1367 | ||
1360 | config = dev->actconfig; | 1368 | config = dev->actconfig; |
diff --git a/drivers/usb/core/usb.h b/drivers/usb/core/usb.h index 386177867a8a..79d8a9ea559b 100644 --- a/drivers/usb/core/usb.h +++ b/drivers/usb/core/usb.h | |||
@@ -15,9 +15,10 @@ extern void usb_enable_endpoint(struct usb_device *dev, | |||
15 | struct usb_host_endpoint *ep, bool reset_toggle); | 15 | struct usb_host_endpoint *ep, bool reset_toggle); |
16 | extern void usb_enable_interface(struct usb_device *dev, | 16 | extern void usb_enable_interface(struct usb_device *dev, |
17 | struct usb_interface *intf, bool reset_toggles); | 17 | struct usb_interface *intf, bool reset_toggles); |
18 | extern void usb_disable_endpoint(struct usb_device *dev, unsigned int epaddr); | 18 | extern void usb_disable_endpoint(struct usb_device *dev, unsigned int epaddr, |
19 | bool reset_hardware); | ||
19 | extern void usb_disable_interface(struct usb_device *dev, | 20 | extern void usb_disable_interface(struct usb_device *dev, |
20 | struct usb_interface *intf); | 21 | struct usb_interface *intf, bool reset_hardware); |
21 | extern void usb_release_interface_cache(struct kref *ref); | 22 | extern void usb_release_interface_cache(struct kref *ref); |
22 | extern void usb_disable_device(struct usb_device *dev, int skip_ep0); | 23 | extern void usb_disable_device(struct usb_device *dev, int skip_ep0); |
23 | extern int usb_deauthorize_device(struct usb_device *); | 24 | extern int usb_deauthorize_device(struct usb_device *); |
@@ -151,7 +152,6 @@ extern struct usb_driver usbfs_driver; | |||
151 | extern const struct file_operations usbfs_devices_fops; | 152 | extern const struct file_operations usbfs_devices_fops; |
152 | extern const struct file_operations usbdev_file_operations; | 153 | extern const struct file_operations usbdev_file_operations; |
153 | extern void usbfs_conn_disc_event(void); | 154 | extern void usbfs_conn_disc_event(void); |
154 | extern void usb_fs_classdev_common_remove(struct usb_device *udev); | ||
155 | 155 | ||
156 | extern int usb_devio_init(void); | 156 | extern int usb_devio_init(void); |
157 | extern void usb_devio_cleanup(void); | 157 | extern void usb_devio_cleanup(void); |
diff --git a/drivers/usb/gadget/composite.c b/drivers/usb/gadget/composite.c index f2da0269e1b1..5d11c291f1ad 100644 --- a/drivers/usb/gadget/composite.c +++ b/drivers/usb/gadget/composite.c | |||
@@ -683,6 +683,7 @@ composite_setup(struct usb_gadget *gadget, const struct usb_ctrlrequest *ctrl) | |||
683 | struct usb_request *req = cdev->req; | 683 | struct usb_request *req = cdev->req; |
684 | int value = -EOPNOTSUPP; | 684 | int value = -EOPNOTSUPP; |
685 | u16 w_index = le16_to_cpu(ctrl->wIndex); | 685 | u16 w_index = le16_to_cpu(ctrl->wIndex); |
686 | u8 intf = w_index & 0xFF; | ||
686 | u16 w_value = le16_to_cpu(ctrl->wValue); | 687 | u16 w_value = le16_to_cpu(ctrl->wValue); |
687 | u16 w_length = le16_to_cpu(ctrl->wLength); | 688 | u16 w_length = le16_to_cpu(ctrl->wLength); |
688 | struct usb_function *f = NULL; | 689 | struct usb_function *f = NULL; |
@@ -769,10 +770,10 @@ composite_setup(struct usb_gadget *gadget, const struct usb_ctrlrequest *ctrl) | |||
769 | goto unknown; | 770 | goto unknown; |
770 | if (!cdev->config || w_index >= MAX_CONFIG_INTERFACES) | 771 | if (!cdev->config || w_index >= MAX_CONFIG_INTERFACES) |
771 | break; | 772 | break; |
772 | f = cdev->config->interface[w_index]; | 773 | f = cdev->config->interface[intf]; |
773 | if (!f) | 774 | if (!f) |
774 | break; | 775 | break; |
775 | if (w_value && !f->get_alt) | 776 | if (w_value && !f->set_alt) |
776 | break; | 777 | break; |
777 | value = f->set_alt(f, w_index, w_value); | 778 | value = f->set_alt(f, w_index, w_value); |
778 | break; | 779 | break; |
@@ -781,7 +782,7 @@ composite_setup(struct usb_gadget *gadget, const struct usb_ctrlrequest *ctrl) | |||
781 | goto unknown; | 782 | goto unknown; |
782 | if (!cdev->config || w_index >= MAX_CONFIG_INTERFACES) | 783 | if (!cdev->config || w_index >= MAX_CONFIG_INTERFACES) |
783 | break; | 784 | break; |
784 | f = cdev->config->interface[w_index]; | 785 | f = cdev->config->interface[intf]; |
785 | if (!f) | 786 | if (!f) |
786 | break; | 787 | break; |
787 | /* lots of interfaces only need altsetting zero... */ | 788 | /* lots of interfaces only need altsetting zero... */ |
@@ -808,7 +809,7 @@ unknown: | |||
808 | */ | 809 | */ |
809 | if ((ctrl->bRequestType & USB_RECIP_MASK) | 810 | if ((ctrl->bRequestType & USB_RECIP_MASK) |
810 | == USB_RECIP_INTERFACE) { | 811 | == USB_RECIP_INTERFACE) { |
811 | f = cdev->config->interface[w_index]; | 812 | f = cdev->config->interface[intf]; |
812 | if (f && f->setup) | 813 | if (f && f->setup) |
813 | value = f->setup(f, ctrl); | 814 | value = f->setup(f, ctrl); |
814 | else | 815 | else |
diff --git a/drivers/usb/gadget/imx_udc.c b/drivers/usb/gadget/imx_udc.c index cde8fdf15d5b..77c5d0a8a06e 100644 --- a/drivers/usb/gadget/imx_udc.c +++ b/drivers/usb/gadget/imx_udc.c | |||
@@ -297,7 +297,7 @@ void imx_ep_stall(struct imx_ep_struct *imx_ep) | |||
297 | 297 | ||
298 | for (i = 0; i < 100; i ++) { | 298 | for (i = 0; i < 100; i ++) { |
299 | temp = __raw_readl(imx_usb->base + USB_EP_STAT(EP_NO(imx_ep))); | 299 | temp = __raw_readl(imx_usb->base + USB_EP_STAT(EP_NO(imx_ep))); |
300 | if (!temp & EPSTAT_STALL) | 300 | if (!(temp & EPSTAT_STALL)) |
301 | break; | 301 | break; |
302 | udelay(20); | 302 | udelay(20); |
303 | } | 303 | } |
diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig index 2b476b6b3d4d..2c63bfb1f8d9 100644 --- a/drivers/usb/host/Kconfig +++ b/drivers/usb/host/Kconfig | |||
@@ -140,6 +140,7 @@ config USB_OHCI_HCD | |||
140 | tristate "OHCI HCD support" | 140 | tristate "OHCI HCD support" |
141 | depends on USB && USB_ARCH_HAS_OHCI | 141 | depends on USB && USB_ARCH_HAS_OHCI |
142 | select ISP1301_OMAP if MACH_OMAP_H2 || MACH_OMAP_H3 | 142 | select ISP1301_OMAP if MACH_OMAP_H2 || MACH_OMAP_H3 |
143 | select USB_OTG_UTILS if ARCH_OMAP | ||
143 | ---help--- | 144 | ---help--- |
144 | The Open Host Controller Interface (OHCI) is a standard for accessing | 145 | The Open Host Controller Interface (OHCI) is a standard for accessing |
145 | USB 1.1 host controller hardware. It does more in hardware than Intel's | 146 | USB 1.1 host controller hardware. It does more in hardware than Intel's |
@@ -238,6 +239,23 @@ config USB_UHCI_HCD | |||
238 | To compile this driver as a module, choose M here: the | 239 | To compile this driver as a module, choose M here: the |
239 | module will be called uhci-hcd. | 240 | module will be called uhci-hcd. |
240 | 241 | ||
242 | config USB_FHCI_HCD | ||
243 | tristate "Freescale QE USB Host Controller support" | ||
244 | depends on USB && OF_GPIO && QE_GPIO && QUICC_ENGINE | ||
245 | select FSL_GTM | ||
246 | select QE_USB | ||
247 | help | ||
248 | This driver enables support for Freescale QE USB Host Controller | ||
249 | (as found on MPC8360 and MPC8323 processors), the driver supports | ||
250 | Full and Low Speed USB. | ||
251 | |||
252 | config FHCI_DEBUG | ||
253 | bool "Freescale QE USB Host Controller debug support" | ||
254 | depends on USB_FHCI_HCD && DEBUG_FS | ||
255 | help | ||
256 | Say "y" to see some FHCI debug information and statistics | ||
257 | throught debugfs. | ||
258 | |||
241 | config USB_U132_HCD | 259 | config USB_U132_HCD |
242 | tristate "Elan U132 Adapter Host Controller" | 260 | tristate "Elan U132 Adapter Host Controller" |
243 | depends on USB && USB_FTDI_ELAN | 261 | depends on USB && USB_FTDI_ELAN |
diff --git a/drivers/usb/host/Makefile b/drivers/usb/host/Makefile index e5f3f20787e4..f163571e33d8 100644 --- a/drivers/usb/host/Makefile +++ b/drivers/usb/host/Makefile | |||
@@ -7,6 +7,11 @@ ifeq ($(CONFIG_USB_DEBUG),y) | |||
7 | endif | 7 | endif |
8 | 8 | ||
9 | isp1760-objs := isp1760-hcd.o isp1760-if.o | 9 | isp1760-objs := isp1760-hcd.o isp1760-if.o |
10 | fhci-objs := fhci-hcd.o fhci-hub.o fhci-q.o fhci-mem.o \ | ||
11 | fhci-tds.o fhci-sched.o | ||
12 | ifeq ($(CONFIG_FHCI_DEBUG),y) | ||
13 | fhci-objs += fhci-dbg.o | ||
14 | endif | ||
10 | 15 | ||
11 | obj-$(CONFIG_USB_WHCI_HCD) += whci/ | 16 | obj-$(CONFIG_USB_WHCI_HCD) += whci/ |
12 | 17 | ||
@@ -17,6 +22,7 @@ obj-$(CONFIG_USB_OXU210HP_HCD) += oxu210hp-hcd.o | |||
17 | obj-$(CONFIG_USB_ISP116X_HCD) += isp116x-hcd.o | 22 | obj-$(CONFIG_USB_ISP116X_HCD) += isp116x-hcd.o |
18 | obj-$(CONFIG_USB_OHCI_HCD) += ohci-hcd.o | 23 | obj-$(CONFIG_USB_OHCI_HCD) += ohci-hcd.o |
19 | obj-$(CONFIG_USB_UHCI_HCD) += uhci-hcd.o | 24 | obj-$(CONFIG_USB_UHCI_HCD) += uhci-hcd.o |
25 | obj-$(CONFIG_USB_FHCI_HCD) += fhci.o | ||
20 | obj-$(CONFIG_USB_SL811_HCD) += sl811-hcd.o | 26 | obj-$(CONFIG_USB_SL811_HCD) += sl811-hcd.o |
21 | obj-$(CONFIG_USB_SL811_CS) += sl811_cs.o | 27 | obj-$(CONFIG_USB_SL811_CS) += sl811_cs.o |
22 | obj-$(CONFIG_USB_U132_HCD) += u132-hcd.o | 28 | obj-$(CONFIG_USB_U132_HCD) += u132-hcd.o |
diff --git a/drivers/usb/host/ehci-pci.c b/drivers/usb/host/ehci-pci.c index bdc6e86e1f8b..bb21fb0a4969 100644 --- a/drivers/usb/host/ehci-pci.c +++ b/drivers/usb/host/ehci-pci.c | |||
@@ -230,7 +230,7 @@ static int ehci_pci_setup(struct usb_hcd *hcd) | |||
230 | pci_read_config_word(pdev, 0x62, &port_wake); | 230 | pci_read_config_word(pdev, 0x62, &port_wake); |
231 | if (port_wake & 0x0001) { | 231 | if (port_wake & 0x0001) { |
232 | dev_warn(&pdev->dev, "Enabling legacy PCI PM\n"); | 232 | dev_warn(&pdev->dev, "Enabling legacy PCI PM\n"); |
233 | device_init_wakeup(&pdev->dev, 1); | 233 | device_set_wakeup_capable(&pdev->dev, 1); |
234 | } | 234 | } |
235 | } | 235 | } |
236 | 236 | ||
@@ -432,7 +432,6 @@ static struct pci_driver ehci_pci_driver = { | |||
432 | 432 | ||
433 | #ifdef CONFIG_PM | 433 | #ifdef CONFIG_PM |
434 | .suspend = usb_hcd_pci_suspend, | 434 | .suspend = usb_hcd_pci_suspend, |
435 | .suspend_late = usb_hcd_pci_suspend_late, | ||
436 | .resume_early = usb_hcd_pci_resume_early, | 435 | .resume_early = usb_hcd_pci_resume_early, |
437 | .resume = usb_hcd_pci_resume, | 436 | .resume = usb_hcd_pci_resume, |
438 | #endif | 437 | #endif |
diff --git a/drivers/usb/host/fhci-dbg.c b/drivers/usb/host/fhci-dbg.c new file mode 100644 index 000000000000..34e14edf390b --- /dev/null +++ b/drivers/usb/host/fhci-dbg.c | |||
@@ -0,0 +1,139 @@ | |||
1 | /* | ||
2 | * Freescale QUICC Engine USB Host Controller Driver | ||
3 | * | ||
4 | * Copyright (c) Freescale Semicondutor, Inc. 2006. | ||
5 | * Shlomi Gridish <gridish@freescale.com> | ||
6 | * Jerry Huang <Chang-Ming.Huang@freescale.com> | ||
7 | * Copyright (c) Logic Product Development, Inc. 2007 | ||
8 | * Peter Barada <peterb@logicpd.com> | ||
9 | * Copyright (c) MontaVista Software, Inc. 2008. | ||
10 | * Anton Vorontsov <avorontsov@ru.mvista.com> | ||
11 | * | ||
12 | * This program is free software; you can redistribute it and/or modify it | ||
13 | * under the terms of the GNU General Public License as published by the | ||
14 | * Free Software Foundation; either version 2 of the License, or (at your | ||
15 | * option) any later version. | ||
16 | */ | ||
17 | |||
18 | #include <linux/kernel.h> | ||
19 | #include <linux/errno.h> | ||
20 | #include <linux/debugfs.h> | ||
21 | #include <linux/seq_file.h> | ||
22 | #include <linux/usb.h> | ||
23 | #include "../core/hcd.h" | ||
24 | #include "fhci.h" | ||
25 | |||
26 | void fhci_dbg_isr(struct fhci_hcd *fhci, int usb_er) | ||
27 | { | ||
28 | int i; | ||
29 | |||
30 | if (usb_er == -1) { | ||
31 | fhci->usb_irq_stat[12]++; | ||
32 | return; | ||
33 | } | ||
34 | |||
35 | for (i = 0; i < 12; ++i) { | ||
36 | if (usb_er & (1 << i)) | ||
37 | fhci->usb_irq_stat[i]++; | ||
38 | } | ||
39 | } | ||
40 | |||
41 | static int fhci_dfs_regs_show(struct seq_file *s, void *v) | ||
42 | { | ||
43 | struct fhci_hcd *fhci = s->private; | ||
44 | struct fhci_regs __iomem *regs = fhci->regs; | ||
45 | |||
46 | seq_printf(s, | ||
47 | "mode: 0x%x\n" "addr: 0x%x\n" | ||
48 | "command: 0x%x\n" "ep0: 0x%x\n" | ||
49 | "event: 0x%x\n" "mask: 0x%x\n" | ||
50 | "status: 0x%x\n" "SOF timer: %d\n" | ||
51 | "frame number: %d\n" | ||
52 | "lines status: 0x%x\n", | ||
53 | in_8(®s->usb_mod), in_8(®s->usb_addr), | ||
54 | in_8(®s->usb_comm), in_be16(®s->usb_ep[0]), | ||
55 | in_be16(®s->usb_event), in_be16(®s->usb_mask), | ||
56 | in_8(®s->usb_status), in_be16(®s->usb_sof_tmr), | ||
57 | in_be16(®s->usb_frame_num), | ||
58 | fhci_ioports_check_bus_state(fhci)); | ||
59 | |||
60 | return 0; | ||
61 | } | ||
62 | |||
63 | static int fhci_dfs_irq_stat_show(struct seq_file *s, void *v) | ||
64 | { | ||
65 | struct fhci_hcd *fhci = s->private; | ||
66 | int *usb_irq_stat = fhci->usb_irq_stat; | ||
67 | |||
68 | seq_printf(s, | ||
69 | "RXB: %d\n" "TXB: %d\n" "BSY: %d\n" | ||
70 | "SOF: %d\n" "TXE0: %d\n" "TXE1: %d\n" | ||
71 | "TXE2: %d\n" "TXE3: %d\n" "IDLE: %d\n" | ||
72 | "RESET: %d\n" "SFT: %d\n" "MSF: %d\n" | ||
73 | "IDLE_ONLY: %d\n", | ||
74 | usb_irq_stat[0], usb_irq_stat[1], usb_irq_stat[2], | ||
75 | usb_irq_stat[3], usb_irq_stat[4], usb_irq_stat[5], | ||
76 | usb_irq_stat[6], usb_irq_stat[7], usb_irq_stat[8], | ||
77 | usb_irq_stat[9], usb_irq_stat[10], usb_irq_stat[11], | ||
78 | usb_irq_stat[12]); | ||
79 | |||
80 | return 0; | ||
81 | } | ||
82 | |||
83 | static int fhci_dfs_regs_open(struct inode *inode, struct file *file) | ||
84 | { | ||
85 | return single_open(file, fhci_dfs_regs_show, inode->i_private); | ||
86 | } | ||
87 | |||
88 | static int fhci_dfs_irq_stat_open(struct inode *inode, struct file *file) | ||
89 | { | ||
90 | return single_open(file, fhci_dfs_irq_stat_show, inode->i_private); | ||
91 | } | ||
92 | |||
93 | static const struct file_operations fhci_dfs_regs_fops = { | ||
94 | .open = fhci_dfs_regs_open, | ||
95 | .read = seq_read, | ||
96 | .llseek = seq_lseek, | ||
97 | .release = single_release, | ||
98 | }; | ||
99 | |||
100 | static const struct file_operations fhci_dfs_irq_stat_fops = { | ||
101 | .open = fhci_dfs_irq_stat_open, | ||
102 | .read = seq_read, | ||
103 | .llseek = seq_lseek, | ||
104 | .release = single_release, | ||
105 | }; | ||
106 | |||
107 | void fhci_dfs_create(struct fhci_hcd *fhci) | ||
108 | { | ||
109 | struct device *dev = fhci_to_hcd(fhci)->self.controller; | ||
110 | |||
111 | fhci->dfs_root = debugfs_create_dir(dev->bus_id, NULL); | ||
112 | if (!fhci->dfs_root) { | ||
113 | WARN_ON(1); | ||
114 | return; | ||
115 | } | ||
116 | |||
117 | fhci->dfs_regs = debugfs_create_file("regs", S_IFREG | S_IRUGO, | ||
118 | fhci->dfs_root, fhci, &fhci_dfs_regs_fops); | ||
119 | |||
120 | fhci->dfs_irq_stat = debugfs_create_file("irq_stat", | ||
121 | S_IFREG | S_IRUGO, fhci->dfs_root, fhci, | ||
122 | &fhci_dfs_irq_stat_fops); | ||
123 | |||
124 | WARN_ON(!fhci->dfs_regs || !fhci->dfs_irq_stat); | ||
125 | } | ||
126 | |||
127 | void fhci_dfs_destroy(struct fhci_hcd *fhci) | ||
128 | { | ||
129 | if (!fhci->dfs_root) | ||
130 | return; | ||
131 | |||
132 | if (fhci->dfs_irq_stat) | ||
133 | debugfs_remove(fhci->dfs_irq_stat); | ||
134 | |||
135 | if (fhci->dfs_regs) | ||
136 | debugfs_remove(fhci->dfs_regs); | ||
137 | |||
138 | debugfs_remove(fhci->dfs_root); | ||
139 | } | ||
diff --git a/drivers/usb/host/fhci-hcd.c b/drivers/usb/host/fhci-hcd.c new file mode 100644 index 000000000000..ba622cc8a9ba --- /dev/null +++ b/drivers/usb/host/fhci-hcd.c | |||
@@ -0,0 +1,836 @@ | |||
1 | /* | ||
2 | * Freescale QUICC Engine USB Host Controller Driver | ||
3 | * | ||
4 | * Copyright (c) Freescale Semicondutor, Inc. 2006. | ||
5 | * Shlomi Gridish <gridish@freescale.com> | ||
6 | * Jerry Huang <Chang-Ming.Huang@freescale.com> | ||
7 | * Copyright (c) Logic Product Development, Inc. 2007 | ||
8 | * Peter Barada <peterb@logicpd.com> | ||
9 | * Copyright (c) MontaVista Software, Inc. 2008. | ||
10 | * Anton Vorontsov <avorontsov@ru.mvista.com> | ||
11 | * | ||
12 | * This program is free software; you can redistribute it and/or modify it | ||
13 | * under the terms of the GNU General Public License as published by the | ||
14 | * Free Software Foundation; either version 2 of the License, or (at your | ||
15 | * option) any later version. | ||
16 | */ | ||
17 | |||
18 | #include <linux/module.h> | ||
19 | #include <linux/types.h> | ||
20 | #include <linux/spinlock.h> | ||
21 | #include <linux/kernel.h> | ||
22 | #include <linux/delay.h> | ||
23 | #include <linux/errno.h> | ||
24 | #include <linux/list.h> | ||
25 | #include <linux/interrupt.h> | ||
26 | #include <linux/io.h> | ||
27 | #include <linux/usb.h> | ||
28 | #include <linux/of_platform.h> | ||
29 | #include <linux/of_gpio.h> | ||
30 | #include <asm/qe.h> | ||
31 | #include <asm/fsl_gtm.h> | ||
32 | #include "../core/hcd.h" | ||
33 | #include "fhci.h" | ||
34 | |||
35 | void fhci_start_sof_timer(struct fhci_hcd *fhci) | ||
36 | { | ||
37 | fhci_dbg(fhci, "-> %s\n", __func__); | ||
38 | |||
39 | /* clear frame_n */ | ||
40 | out_be16(&fhci->pram->frame_num, 0); | ||
41 | |||
42 | out_be16(&fhci->regs->usb_sof_tmr, 0); | ||
43 | setbits8(&fhci->regs->usb_mod, USB_MODE_SFTE); | ||
44 | |||
45 | fhci_dbg(fhci, "<- %s\n", __func__); | ||
46 | } | ||
47 | |||
48 | void fhci_stop_sof_timer(struct fhci_hcd *fhci) | ||
49 | { | ||
50 | fhci_dbg(fhci, "-> %s\n", __func__); | ||
51 | |||
52 | clrbits8(&fhci->regs->usb_mod, USB_MODE_SFTE); | ||
53 | gtm_stop_timer16(fhci->timer); | ||
54 | |||
55 | fhci_dbg(fhci, "<- %s\n", __func__); | ||
56 | } | ||
57 | |||
58 | u16 fhci_get_sof_timer_count(struct fhci_usb *usb) | ||
59 | { | ||
60 | return be16_to_cpu(in_be16(&usb->fhci->regs->usb_sof_tmr) / 12); | ||
61 | } | ||
62 | |||
63 | /* initialize the endpoint zero */ | ||
64 | static u32 endpoint_zero_init(struct fhci_usb *usb, | ||
65 | enum fhci_mem_alloc data_mem, | ||
66 | u32 ring_len) | ||
67 | { | ||
68 | u32 rc; | ||
69 | |||
70 | rc = fhci_create_ep(usb, data_mem, ring_len); | ||
71 | if (rc) | ||
72 | return rc; | ||
73 | |||
74 | /* inilialize endpoint registers */ | ||
75 | fhci_init_ep_registers(usb, usb->ep0, data_mem); | ||
76 | |||
77 | return 0; | ||
78 | } | ||
79 | |||
80 | /* enable the USB interrupts */ | ||
81 | void fhci_usb_enable_interrupt(struct fhci_usb *usb) | ||
82 | { | ||
83 | struct fhci_hcd *fhci = usb->fhci; | ||
84 | |||
85 | if (usb->intr_nesting_cnt == 1) { | ||
86 | /* initialize the USB interrupt */ | ||
87 | enable_irq(fhci_to_hcd(fhci)->irq); | ||
88 | |||
89 | /* initialize the event register and mask register */ | ||
90 | out_be16(&usb->fhci->regs->usb_event, 0xffff); | ||
91 | out_be16(&usb->fhci->regs->usb_mask, usb->saved_msk); | ||
92 | |||
93 | /* enable the timer interrupts */ | ||
94 | enable_irq(fhci->timer->irq); | ||
95 | } else if (usb->intr_nesting_cnt > 1) | ||
96 | fhci_info(fhci, "unbalanced USB interrupts nesting\n"); | ||
97 | usb->intr_nesting_cnt--; | ||
98 | } | ||
99 | |||
100 | /* diable the usb interrupt */ | ||
101 | void fhci_usb_disable_interrupt(struct fhci_usb *usb) | ||
102 | { | ||
103 | struct fhci_hcd *fhci = usb->fhci; | ||
104 | |||
105 | if (usb->intr_nesting_cnt == 0) { | ||
106 | /* diable the timer interrupt */ | ||
107 | disable_irq_nosync(fhci->timer->irq); | ||
108 | |||
109 | /* disable the usb interrupt */ | ||
110 | disable_irq_nosync(fhci_to_hcd(fhci)->irq); | ||
111 | out_be16(&usb->fhci->regs->usb_mask, 0); | ||
112 | } | ||
113 | usb->intr_nesting_cnt++; | ||
114 | } | ||
115 | |||
116 | /* enable the USB controller */ | ||
117 | static u32 fhci_usb_enable(struct fhci_hcd *fhci) | ||
118 | { | ||
119 | struct fhci_usb *usb = fhci->usb_lld; | ||
120 | |||
121 | out_be16(&usb->fhci->regs->usb_event, 0xffff); | ||
122 | out_be16(&usb->fhci->regs->usb_mask, usb->saved_msk); | ||
123 | setbits8(&usb->fhci->regs->usb_mod, USB_MODE_EN); | ||
124 | |||
125 | mdelay(100); | ||
126 | |||
127 | return 0; | ||
128 | } | ||
129 | |||
130 | /* disable the USB controller */ | ||
131 | static u32 fhci_usb_disable(struct fhci_hcd *fhci) | ||
132 | { | ||
133 | struct fhci_usb *usb = fhci->usb_lld; | ||
134 | |||
135 | fhci_usb_disable_interrupt(usb); | ||
136 | fhci_port_disable(fhci); | ||
137 | |||
138 | /* disable the usb controller */ | ||
139 | if (usb->port_status == FHCI_PORT_FULL || | ||
140 | usb->port_status == FHCI_PORT_LOW) | ||
141 | fhci_device_disconnected_interrupt(fhci); | ||
142 | |||
143 | clrbits8(&usb->fhci->regs->usb_mod, USB_MODE_EN); | ||
144 | |||
145 | return 0; | ||
146 | } | ||
147 | |||
148 | /* check the bus state by polling the QE bit on the IO ports */ | ||
149 | int fhci_ioports_check_bus_state(struct fhci_hcd *fhci) | ||
150 | { | ||
151 | u8 bits = 0; | ||
152 | |||
153 | /* check USBOE,if transmitting,exit */ | ||
154 | if (!gpio_get_value(fhci->gpios[GPIO_USBOE])) | ||
155 | return -1; | ||
156 | |||
157 | /* check USBRP */ | ||
158 | if (gpio_get_value(fhci->gpios[GPIO_USBRP])) | ||
159 | bits |= 0x2; | ||
160 | |||
161 | /* check USBRN */ | ||
162 | if (gpio_get_value(fhci->gpios[GPIO_USBRN])) | ||
163 | bits |= 0x1; | ||
164 | |||
165 | return bits; | ||
166 | } | ||
167 | |||
168 | static void fhci_mem_free(struct fhci_hcd *fhci) | ||
169 | { | ||
170 | struct ed *ed; | ||
171 | struct ed *next_ed; | ||
172 | struct td *td; | ||
173 | struct td *next_td; | ||
174 | |||
175 | list_for_each_entry_safe(ed, next_ed, &fhci->empty_eds, node) { | ||
176 | list_del(&ed->node); | ||
177 | kfree(ed); | ||
178 | } | ||
179 | |||
180 | list_for_each_entry_safe(td, next_td, &fhci->empty_tds, node) { | ||
181 | list_del(&td->node); | ||
182 | kfree(td); | ||
183 | } | ||
184 | |||
185 | kfree(fhci->vroot_hub); | ||
186 | fhci->vroot_hub = NULL; | ||
187 | |||
188 | kfree(fhci->hc_list); | ||
189 | fhci->hc_list = NULL; | ||
190 | } | ||
191 | |||
192 | static int fhci_mem_init(struct fhci_hcd *fhci) | ||
193 | { | ||
194 | int i; | ||
195 | |||
196 | fhci->hc_list = kzalloc(sizeof(*fhci->hc_list), GFP_KERNEL); | ||
197 | if (!fhci->hc_list) | ||
198 | goto err; | ||
199 | |||
200 | INIT_LIST_HEAD(&fhci->hc_list->ctrl_list); | ||
201 | INIT_LIST_HEAD(&fhci->hc_list->bulk_list); | ||
202 | INIT_LIST_HEAD(&fhci->hc_list->iso_list); | ||
203 | INIT_LIST_HEAD(&fhci->hc_list->intr_list); | ||
204 | INIT_LIST_HEAD(&fhci->hc_list->done_list); | ||
205 | |||
206 | fhci->vroot_hub = kzalloc(sizeof(*fhci->vroot_hub), GFP_KERNEL); | ||
207 | if (!fhci->vroot_hub) | ||
208 | goto err; | ||
209 | |||
210 | INIT_LIST_HEAD(&fhci->empty_eds); | ||
211 | INIT_LIST_HEAD(&fhci->empty_tds); | ||
212 | |||
213 | /* initialize work queue to handle done list */ | ||
214 | fhci_tasklet.data = (unsigned long)fhci; | ||
215 | fhci->process_done_task = &fhci_tasklet; | ||
216 | |||
217 | for (i = 0; i < MAX_TDS; i++) { | ||
218 | struct td *td; | ||
219 | |||
220 | td = kmalloc(sizeof(*td), GFP_KERNEL); | ||
221 | if (!td) | ||
222 | goto err; | ||
223 | fhci_recycle_empty_td(fhci, td); | ||
224 | } | ||
225 | for (i = 0; i < MAX_EDS; i++) { | ||
226 | struct ed *ed; | ||
227 | |||
228 | ed = kmalloc(sizeof(*ed), GFP_KERNEL); | ||
229 | if (!ed) | ||
230 | goto err; | ||
231 | fhci_recycle_empty_ed(fhci, ed); | ||
232 | } | ||
233 | |||
234 | fhci->active_urbs = 0; | ||
235 | return 0; | ||
236 | err: | ||
237 | fhci_mem_free(fhci); | ||
238 | return -ENOMEM; | ||
239 | } | ||
240 | |||
241 | /* destroy the fhci_usb structure */ | ||
242 | static void fhci_usb_free(void *lld) | ||
243 | { | ||
244 | struct fhci_usb *usb = lld; | ||
245 | struct fhci_hcd *fhci = usb->fhci; | ||
246 | |||
247 | if (usb) { | ||
248 | fhci_config_transceiver(fhci, FHCI_PORT_POWER_OFF); | ||
249 | fhci_ep0_free(usb); | ||
250 | kfree(usb->actual_frame); | ||
251 | kfree(usb); | ||
252 | } | ||
253 | } | ||
254 | |||
255 | /* initialize the USB */ | ||
256 | static int fhci_usb_init(struct fhci_hcd *fhci) | ||
257 | { | ||
258 | struct fhci_usb *usb = fhci->usb_lld; | ||
259 | |||
260 | memset_io(usb->fhci->pram, 0, FHCI_PRAM_SIZE); | ||
261 | |||
262 | usb->port_status = FHCI_PORT_DISABLED; | ||
263 | usb->max_frame_usage = FRAME_TIME_USAGE; | ||
264 | usb->sw_transaction_time = SW_FIX_TIME_BETWEEN_TRANSACTION; | ||
265 | |||
266 | usb->actual_frame = kzalloc(sizeof(*usb->actual_frame), GFP_KERNEL); | ||
267 | if (!usb->actual_frame) { | ||
268 | fhci_usb_free(usb); | ||
269 | return -ENOMEM; | ||
270 | } | ||
271 | |||
272 | INIT_LIST_HEAD(&usb->actual_frame->tds_list); | ||
273 | |||
274 | /* initializing registers on chip, clear frame number */ | ||
275 | out_be16(&fhci->pram->frame_num, 0); | ||
276 | |||
277 | /* clear rx state */ | ||
278 | out_be32(&fhci->pram->rx_state, 0); | ||
279 | |||
280 | /* set mask register */ | ||
281 | usb->saved_msk = (USB_E_TXB_MASK | | ||
282 | USB_E_TXE1_MASK | | ||
283 | USB_E_IDLE_MASK | | ||
284 | USB_E_RESET_MASK | USB_E_SFT_MASK | USB_E_MSF_MASK); | ||
285 | |||
286 | out_8(&usb->fhci->regs->usb_mod, USB_MODE_HOST | USB_MODE_EN); | ||
287 | |||
288 | /* clearing the mask register */ | ||
289 | out_be16(&usb->fhci->regs->usb_mask, 0); | ||
290 | |||
291 | /* initialing the event register */ | ||
292 | out_be16(&usb->fhci->regs->usb_event, 0xffff); | ||
293 | |||
294 | if (endpoint_zero_init(usb, DEFAULT_DATA_MEM, DEFAULT_RING_LEN) != 0) { | ||
295 | fhci_usb_free(usb); | ||
296 | return -EINVAL; | ||
297 | } | ||
298 | |||
299 | return 0; | ||
300 | } | ||
301 | |||
302 | /* initialize the fhci_usb struct and the corresponding data staruct */ | ||
303 | static struct fhci_usb *fhci_create_lld(struct fhci_hcd *fhci) | ||
304 | { | ||
305 | struct fhci_usb *usb; | ||
306 | |||
307 | /* allocate memory for SCC data structure */ | ||
308 | usb = kzalloc(sizeof(*usb), GFP_KERNEL); | ||
309 | if (!usb) { | ||
310 | fhci_err(fhci, "no memory for SCC data struct\n"); | ||
311 | return NULL; | ||
312 | } | ||
313 | |||
314 | usb->fhci = fhci; | ||
315 | usb->hc_list = fhci->hc_list; | ||
316 | usb->vroot_hub = fhci->vroot_hub; | ||
317 | |||
318 | usb->transfer_confirm = fhci_transfer_confirm_callback; | ||
319 | |||
320 | return usb; | ||
321 | } | ||
322 | |||
323 | static int fhci_start(struct usb_hcd *hcd) | ||
324 | { | ||
325 | int ret; | ||
326 | struct fhci_hcd *fhci = hcd_to_fhci(hcd); | ||
327 | |||
328 | ret = fhci_mem_init(fhci); | ||
329 | if (ret) { | ||
330 | fhci_err(fhci, "failed to allocate memory\n"); | ||
331 | goto err; | ||
332 | } | ||
333 | |||
334 | fhci->usb_lld = fhci_create_lld(fhci); | ||
335 | if (!fhci->usb_lld) { | ||
336 | fhci_err(fhci, "low level driver config failed\n"); | ||
337 | ret = -ENOMEM; | ||
338 | goto err; | ||
339 | } | ||
340 | |||
341 | ret = fhci_usb_init(fhci); | ||
342 | if (ret) { | ||
343 | fhci_err(fhci, "low level driver initialize failed\n"); | ||
344 | goto err; | ||
345 | } | ||
346 | |||
347 | spin_lock_init(&fhci->lock); | ||
348 | |||
349 | /* connect the virtual root hub */ | ||
350 | fhci->vroot_hub->dev_num = 1; /* this field may be needed to fix */ | ||
351 | fhci->vroot_hub->hub.wHubStatus = 0; | ||
352 | fhci->vroot_hub->hub.wHubChange = 0; | ||
353 | fhci->vroot_hub->port.wPortStatus = 0; | ||
354 | fhci->vroot_hub->port.wPortChange = 0; | ||
355 | |||
356 | hcd->state = HC_STATE_RUNNING; | ||
357 | |||
358 | /* | ||
359 | * From here on, khubd concurrently accesses the root | ||
360 | * hub; drivers will be talking to enumerated devices. | ||
361 | * (On restart paths, khubd already knows about the root | ||
362 | * hub and could find work as soon as we wrote FLAG_CF.) | ||
363 | * | ||
364 | * Before this point the HC was idle/ready. After, khubd | ||
365 | * and device drivers may start it running. | ||
366 | */ | ||
367 | fhci_usb_enable(fhci); | ||
368 | return 0; | ||
369 | err: | ||
370 | fhci_mem_free(fhci); | ||
371 | return ret; | ||
372 | } | ||
373 | |||
374 | static void fhci_stop(struct usb_hcd *hcd) | ||
375 | { | ||
376 | struct fhci_hcd *fhci = hcd_to_fhci(hcd); | ||
377 | |||
378 | fhci_usb_disable_interrupt(fhci->usb_lld); | ||
379 | fhci_usb_disable(fhci); | ||
380 | |||
381 | fhci_usb_free(fhci->usb_lld); | ||
382 | fhci->usb_lld = NULL; | ||
383 | fhci_mem_free(fhci); | ||
384 | } | ||
385 | |||
386 | static int fhci_urb_enqueue(struct usb_hcd *hcd, struct urb *urb, | ||
387 | gfp_t mem_flags) | ||
388 | { | ||
389 | struct fhci_hcd *fhci = hcd_to_fhci(hcd); | ||
390 | u32 pipe = urb->pipe; | ||
391 | int ret; | ||
392 | int i; | ||
393 | int size = 0; | ||
394 | struct urb_priv *urb_priv; | ||
395 | unsigned long flags; | ||
396 | |||
397 | switch (usb_pipetype(pipe)) { | ||
398 | case PIPE_CONTROL: | ||
399 | /* 1 td fro setup,1 for ack */ | ||
400 | size = 2; | ||
401 | case PIPE_BULK: | ||
402 | /* one td for every 4096 bytes(can be upto 8k) */ | ||
403 | size += urb->transfer_buffer_length / 4096; | ||
404 | /* ...add for any remaining bytes... */ | ||
405 | if ((urb->transfer_buffer_length % 4096) != 0) | ||
406 | size++; | ||
407 | /* ..and maybe a zero length packet to wrap it up */ | ||
408 | if (size == 0) | ||
409 | size++; | ||
410 | else if ((urb->transfer_flags & URB_ZERO_PACKET) != 0 | ||
411 | && (urb->transfer_buffer_length | ||
412 | % usb_maxpacket(urb->dev, pipe, | ||
413 | usb_pipeout(pipe))) != 0) | ||
414 | size++; | ||
415 | break; | ||
416 | case PIPE_ISOCHRONOUS: | ||
417 | size = urb->number_of_packets; | ||
418 | if (size <= 0) | ||
419 | return -EINVAL; | ||
420 | for (i = 0; i < urb->number_of_packets; i++) { | ||
421 | urb->iso_frame_desc[i].actual_length = 0; | ||
422 | urb->iso_frame_desc[i].status = (u32) (-EXDEV); | ||
423 | } | ||
424 | break; | ||
425 | case PIPE_INTERRUPT: | ||
426 | size = 1; | ||
427 | } | ||
428 | |||
429 | /* allocate the private part of the URB */ | ||
430 | urb_priv = kzalloc(sizeof(*urb_priv), mem_flags); | ||
431 | if (!urb_priv) | ||
432 | return -ENOMEM; | ||
433 | |||
434 | /* allocate the private part of the URB */ | ||
435 | urb_priv->tds = kzalloc(size * sizeof(struct td), mem_flags); | ||
436 | if (!urb_priv->tds) { | ||
437 | kfree(urb_priv); | ||
438 | return -ENOMEM; | ||
439 | } | ||
440 | |||
441 | spin_lock_irqsave(&fhci->lock, flags); | ||
442 | |||
443 | ret = usb_hcd_link_urb_to_ep(hcd, urb); | ||
444 | if (ret) | ||
445 | goto err; | ||
446 | |||
447 | /* fill the private part of the URB */ | ||
448 | urb_priv->num_of_tds = size; | ||
449 | |||
450 | urb->status = -EINPROGRESS; | ||
451 | urb->actual_length = 0; | ||
452 | urb->error_count = 0; | ||
453 | urb->hcpriv = urb_priv; | ||
454 | |||
455 | fhci_queue_urb(fhci, urb); | ||
456 | err: | ||
457 | if (ret) { | ||
458 | kfree(urb_priv->tds); | ||
459 | kfree(urb_priv); | ||
460 | } | ||
461 | spin_unlock_irqrestore(&fhci->lock, flags); | ||
462 | return ret; | ||
463 | } | ||
464 | |||
465 | /* dequeue FHCI URB */ | ||
466 | static int fhci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status) | ||
467 | { | ||
468 | struct fhci_hcd *fhci = hcd_to_fhci(hcd); | ||
469 | struct fhci_usb *usb = fhci->usb_lld; | ||
470 | int ret = -EINVAL; | ||
471 | unsigned long flags; | ||
472 | |||
473 | if (!urb || !urb->dev || !urb->dev->bus) | ||
474 | goto out; | ||
475 | |||
476 | spin_lock_irqsave(&fhci->lock, flags); | ||
477 | |||
478 | ret = usb_hcd_check_unlink_urb(hcd, urb, status); | ||
479 | if (ret) | ||
480 | goto out2; | ||
481 | |||
482 | if (usb->port_status != FHCI_PORT_DISABLED) { | ||
483 | struct urb_priv *urb_priv; | ||
484 | |||
485 | /* | ||
486 | * flag the urb's data for deletion in some upcoming | ||
487 | * SF interrupt's delete list processing | ||
488 | */ | ||
489 | urb_priv = urb->hcpriv; | ||
490 | |||
491 | if (!urb_priv || (urb_priv->state == URB_DEL)) | ||
492 | goto out2; | ||
493 | |||
494 | urb_priv->state = URB_DEL; | ||
495 | |||
496 | /* already pending? */ | ||
497 | urb_priv->ed->state = FHCI_ED_URB_DEL; | ||
498 | } else { | ||
499 | fhci_urb_complete_free(fhci, urb); | ||
500 | } | ||
501 | |||
502 | out2: | ||
503 | spin_unlock_irqrestore(&fhci->lock, flags); | ||
504 | out: | ||
505 | return ret; | ||
506 | } | ||
507 | |||
508 | static void fhci_endpoint_disable(struct usb_hcd *hcd, | ||
509 | struct usb_host_endpoint *ep) | ||
510 | { | ||
511 | struct fhci_hcd *fhci; | ||
512 | struct ed *ed; | ||
513 | unsigned long flags; | ||
514 | |||
515 | fhci = hcd_to_fhci(hcd); | ||
516 | spin_lock_irqsave(&fhci->lock, flags); | ||
517 | ed = ep->hcpriv; | ||
518 | if (ed) { | ||
519 | while (ed->td_head != NULL) { | ||
520 | struct td *td = fhci_remove_td_from_ed(ed); | ||
521 | fhci_urb_complete_free(fhci, td->urb); | ||
522 | } | ||
523 | fhci_recycle_empty_ed(fhci, ed); | ||
524 | ep->hcpriv = NULL; | ||
525 | } | ||
526 | spin_unlock_irqrestore(&fhci->lock, flags); | ||
527 | } | ||
528 | |||
529 | static int fhci_get_frame_number(struct usb_hcd *hcd) | ||
530 | { | ||
531 | struct fhci_hcd *fhci = hcd_to_fhci(hcd); | ||
532 | |||
533 | return get_frame_num(fhci); | ||
534 | } | ||
535 | |||
536 | static const struct hc_driver fhci_driver = { | ||
537 | .description = "fsl,usb-fhci", | ||
538 | .product_desc = "FHCI HOST Controller", | ||
539 | .hcd_priv_size = sizeof(struct fhci_hcd), | ||
540 | |||
541 | /* generic hardware linkage */ | ||
542 | .irq = fhci_irq, | ||
543 | .flags = HCD_USB11 | HCD_MEMORY, | ||
544 | |||
545 | /* basic lifecycle operation */ | ||
546 | .start = fhci_start, | ||
547 | .stop = fhci_stop, | ||
548 | |||
549 | /* managing i/o requests and associated device resources */ | ||
550 | .urb_enqueue = fhci_urb_enqueue, | ||
551 | .urb_dequeue = fhci_urb_dequeue, | ||
552 | .endpoint_disable = fhci_endpoint_disable, | ||
553 | |||
554 | /* scheduling support */ | ||
555 | .get_frame_number = fhci_get_frame_number, | ||
556 | |||
557 | /* root hub support */ | ||
558 | .hub_status_data = fhci_hub_status_data, | ||
559 | .hub_control = fhci_hub_control, | ||
560 | }; | ||
561 | |||
562 | static int __devinit of_fhci_probe(struct of_device *ofdev, | ||
563 | const struct of_device_id *ofid) | ||
564 | { | ||
565 | struct device *dev = &ofdev->dev; | ||
566 | struct device_node *node = ofdev->node; | ||
567 | struct usb_hcd *hcd; | ||
568 | struct fhci_hcd *fhci; | ||
569 | struct resource usb_regs; | ||
570 | unsigned long pram_addr; | ||
571 | unsigned int usb_irq; | ||
572 | const char *sprop; | ||
573 | const u32 *iprop; | ||
574 | int size; | ||
575 | int ret; | ||
576 | int i; | ||
577 | int j; | ||
578 | |||
579 | if (usb_disabled()) | ||
580 | return -ENODEV; | ||
581 | |||
582 | sprop = of_get_property(node, "mode", NULL); | ||
583 | if (sprop && strcmp(sprop, "host")) | ||
584 | return -ENODEV; | ||
585 | |||
586 | hcd = usb_create_hcd(&fhci_driver, dev, dev->bus_id); | ||
587 | if (!hcd) { | ||
588 | dev_err(dev, "could not create hcd\n"); | ||
589 | return -ENOMEM; | ||
590 | } | ||
591 | |||
592 | fhci = hcd_to_fhci(hcd); | ||
593 | hcd->self.controller = dev; | ||
594 | dev_set_drvdata(dev, hcd); | ||
595 | |||
596 | iprop = of_get_property(node, "hub-power-budget", &size); | ||
597 | if (iprop && size == sizeof(*iprop)) | ||
598 | hcd->power_budget = *iprop; | ||
599 | |||
600 | /* FHCI registers. */ | ||
601 | ret = of_address_to_resource(node, 0, &usb_regs); | ||
602 | if (ret) { | ||
603 | dev_err(dev, "could not get regs\n"); | ||
604 | goto err_regs; | ||
605 | } | ||
606 | |||
607 | hcd->regs = ioremap(usb_regs.start, usb_regs.end - usb_regs.start + 1); | ||
608 | if (!hcd->regs) { | ||
609 | dev_err(dev, "could not ioremap regs\n"); | ||
610 | ret = -ENOMEM; | ||
611 | goto err_regs; | ||
612 | } | ||
613 | fhci->regs = hcd->regs; | ||
614 | |||
615 | /* Parameter RAM. */ | ||
616 | iprop = of_get_property(node, "reg", &size); | ||
617 | if (!iprop || size < sizeof(*iprop) * 4) { | ||
618 | dev_err(dev, "can't get pram offset\n"); | ||
619 | ret = -EINVAL; | ||
620 | goto err_pram; | ||
621 | } | ||
622 | |||
623 | pram_addr = cpm_muram_alloc_fixed(iprop[2], FHCI_PRAM_SIZE); | ||
624 | if (IS_ERR_VALUE(pram_addr)) { | ||
625 | dev_err(dev, "failed to allocate usb pram\n"); | ||
626 | ret = -ENOMEM; | ||
627 | goto err_pram; | ||
628 | } | ||
629 | fhci->pram = cpm_muram_addr(pram_addr); | ||
630 | |||
631 | /* GPIOs and pins */ | ||
632 | for (i = 0; i < NUM_GPIOS; i++) { | ||
633 | int gpio; | ||
634 | enum of_gpio_flags flags; | ||
635 | |||
636 | gpio = of_get_gpio_flags(node, i, &flags); | ||
637 | fhci->gpios[i] = gpio; | ||
638 | fhci->alow_gpios[i] = flags & OF_GPIO_ACTIVE_LOW; | ||
639 | |||
640 | if (!gpio_is_valid(gpio)) { | ||
641 | if (i < GPIO_SPEED) { | ||
642 | dev_err(dev, "incorrect GPIO%d: %d\n", | ||
643 | i, gpio); | ||
644 | goto err_gpios; | ||
645 | } else { | ||
646 | dev_info(dev, "assuming board doesn't have " | ||
647 | "%s gpio\n", i == GPIO_SPEED ? | ||
648 | "speed" : "power"); | ||
649 | continue; | ||
650 | } | ||
651 | } | ||
652 | |||
653 | ret = gpio_request(gpio, dev->bus_id); | ||
654 | if (ret) { | ||
655 | dev_err(dev, "failed to request gpio %d", i); | ||
656 | goto err_gpios; | ||
657 | } | ||
658 | |||
659 | if (i >= GPIO_SPEED) { | ||
660 | ret = gpio_direction_output(gpio, 0); | ||
661 | if (ret) { | ||
662 | dev_err(dev, "failed to set gpio %d as " | ||
663 | "an output\n", i); | ||
664 | i++; | ||
665 | goto err_gpios; | ||
666 | } | ||
667 | } | ||
668 | } | ||
669 | |||
670 | for (j = 0; j < NUM_PINS; j++) { | ||
671 | fhci->pins[j] = qe_pin_request(ofdev->node, j); | ||
672 | if (IS_ERR(fhci->pins[j])) { | ||
673 | ret = PTR_ERR(fhci->pins[j]); | ||
674 | dev_err(dev, "can't get pin %d: %d\n", j, ret); | ||
675 | goto err_pins; | ||
676 | } | ||
677 | } | ||
678 | |||
679 | /* Frame limit timer and its interrupt. */ | ||
680 | fhci->timer = gtm_get_timer16(); | ||
681 | if (IS_ERR(fhci->timer)) { | ||
682 | ret = PTR_ERR(fhci->timer); | ||
683 | dev_err(dev, "failed to request qe timer: %i", ret); | ||
684 | goto err_get_timer; | ||
685 | } | ||
686 | |||
687 | ret = request_irq(fhci->timer->irq, fhci_frame_limit_timer_irq, | ||
688 | IRQF_DISABLED, "qe timer (usb)", hcd); | ||
689 | if (ret) { | ||
690 | dev_err(dev, "failed to request timer irq"); | ||
691 | goto err_timer_irq; | ||
692 | } | ||
693 | |||
694 | /* USB Host interrupt. */ | ||
695 | usb_irq = irq_of_parse_and_map(node, 0); | ||
696 | if (usb_irq == NO_IRQ) { | ||
697 | dev_err(dev, "could not get usb irq\n"); | ||
698 | ret = -EINVAL; | ||
699 | goto err_usb_irq; | ||
700 | } | ||
701 | |||
702 | /* Clocks. */ | ||
703 | sprop = of_get_property(node, "fsl,fullspeed-clock", NULL); | ||
704 | if (sprop) { | ||
705 | fhci->fullspeed_clk = qe_clock_source(sprop); | ||
706 | if (fhci->fullspeed_clk == QE_CLK_DUMMY) { | ||
707 | dev_err(dev, "wrong fullspeed-clock\n"); | ||
708 | ret = -EINVAL; | ||
709 | goto err_clocks; | ||
710 | } | ||
711 | } | ||
712 | |||
713 | sprop = of_get_property(node, "fsl,lowspeed-clock", NULL); | ||
714 | if (sprop) { | ||
715 | fhci->lowspeed_clk = qe_clock_source(sprop); | ||
716 | if (fhci->lowspeed_clk == QE_CLK_DUMMY) { | ||
717 | dev_err(dev, "wrong lowspeed-clock\n"); | ||
718 | ret = -EINVAL; | ||
719 | goto err_clocks; | ||
720 | } | ||
721 | } | ||
722 | |||
723 | if (fhci->fullspeed_clk == QE_CLK_NONE && | ||
724 | fhci->lowspeed_clk == QE_CLK_NONE) { | ||
725 | dev_err(dev, "no clocks specified\n"); | ||
726 | ret = -EINVAL; | ||
727 | goto err_clocks; | ||
728 | } | ||
729 | |||
730 | dev_info(dev, "at 0x%p, irq %d\n", hcd->regs, usb_irq); | ||
731 | |||
732 | fhci_config_transceiver(fhci, FHCI_PORT_POWER_OFF); | ||
733 | |||
734 | /* Start with full-speed, if possible. */ | ||
735 | if (fhci->fullspeed_clk != QE_CLK_NONE) { | ||
736 | fhci_config_transceiver(fhci, FHCI_PORT_FULL); | ||
737 | qe_usb_clock_set(fhci->fullspeed_clk, USB_CLOCK); | ||
738 | } else { | ||
739 | fhci_config_transceiver(fhci, FHCI_PORT_LOW); | ||
740 | qe_usb_clock_set(fhci->lowspeed_clk, USB_CLOCK >> 3); | ||
741 | } | ||
742 | |||
743 | /* Clear and disable any pending interrupts. */ | ||
744 | out_be16(&fhci->regs->usb_event, 0xffff); | ||
745 | out_be16(&fhci->regs->usb_mask, 0); | ||
746 | |||
747 | ret = usb_add_hcd(hcd, usb_irq, IRQF_DISABLED); | ||
748 | if (ret < 0) | ||
749 | goto err_add_hcd; | ||
750 | |||
751 | fhci_dfs_create(fhci); | ||
752 | |||
753 | return 0; | ||
754 | |||
755 | err_add_hcd: | ||
756 | err_clocks: | ||
757 | irq_dispose_mapping(usb_irq); | ||
758 | err_usb_irq: | ||
759 | free_irq(fhci->timer->irq, hcd); | ||
760 | err_timer_irq: | ||
761 | gtm_put_timer16(fhci->timer); | ||
762 | err_get_timer: | ||
763 | err_pins: | ||
764 | while (--j >= 0) | ||
765 | qe_pin_free(fhci->pins[j]); | ||
766 | err_gpios: | ||
767 | while (--i >= 0) { | ||
768 | if (gpio_is_valid(fhci->gpios[i])) | ||
769 | gpio_free(fhci->gpios[i]); | ||
770 | } | ||
771 | cpm_muram_free(pram_addr); | ||
772 | err_pram: | ||
773 | iounmap(hcd->regs); | ||
774 | err_regs: | ||
775 | usb_put_hcd(hcd); | ||
776 | return ret; | ||
777 | } | ||
778 | |||
779 | static int __devexit fhci_remove(struct device *dev) | ||
780 | { | ||
781 | struct usb_hcd *hcd = dev_get_drvdata(dev); | ||
782 | struct fhci_hcd *fhci = hcd_to_fhci(hcd); | ||
783 | int i; | ||
784 | int j; | ||
785 | |||
786 | usb_remove_hcd(hcd); | ||
787 | free_irq(fhci->timer->irq, hcd); | ||
788 | gtm_put_timer16(fhci->timer); | ||
789 | cpm_muram_free(cpm_muram_offset(fhci->pram)); | ||
790 | for (i = 0; i < NUM_GPIOS; i++) { | ||
791 | if (!gpio_is_valid(fhci->gpios[i])) | ||
792 | continue; | ||
793 | gpio_free(fhci->gpios[i]); | ||
794 | } | ||
795 | for (j = 0; j < NUM_PINS; j++) | ||
796 | qe_pin_free(fhci->pins[j]); | ||
797 | fhci_dfs_destroy(fhci); | ||
798 | usb_put_hcd(hcd); | ||
799 | return 0; | ||
800 | } | ||
801 | |||
802 | static int __devexit of_fhci_remove(struct of_device *ofdev) | ||
803 | { | ||
804 | return fhci_remove(&ofdev->dev); | ||
805 | } | ||
806 | |||
807 | static struct of_device_id of_fhci_match[] = { | ||
808 | { .compatible = "fsl,mpc8323-qe-usb", }, | ||
809 | {}, | ||
810 | }; | ||
811 | MODULE_DEVICE_TABLE(of, of_fhci_match); | ||
812 | |||
813 | static struct of_platform_driver of_fhci_driver = { | ||
814 | .name = "fsl,usb-fhci", | ||
815 | .match_table = of_fhci_match, | ||
816 | .probe = of_fhci_probe, | ||
817 | .remove = __devexit_p(of_fhci_remove), | ||
818 | }; | ||
819 | |||
820 | static int __init fhci_module_init(void) | ||
821 | { | ||
822 | return of_register_platform_driver(&of_fhci_driver); | ||
823 | } | ||
824 | module_init(fhci_module_init); | ||
825 | |||
826 | static void __exit fhci_module_exit(void) | ||
827 | { | ||
828 | of_unregister_platform_driver(&of_fhci_driver); | ||
829 | } | ||
830 | module_exit(fhci_module_exit); | ||
831 | |||
832 | MODULE_DESCRIPTION("USB Freescale Host Controller Interface Driver"); | ||
833 | MODULE_AUTHOR("Shlomi Gridish <gridish@freescale.com>, " | ||
834 | "Jerry Huang <Chang-Ming.Huang@freescale.com>, " | ||
835 | "Anton Vorontsov <avorontsov@ru.mvista.com>"); | ||
836 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/usb/host/fhci-hub.c b/drivers/usb/host/fhci-hub.c new file mode 100644 index 000000000000..0cfaedc3e124 --- /dev/null +++ b/drivers/usb/host/fhci-hub.c | |||
@@ -0,0 +1,345 @@ | |||
1 | /* | ||
2 | * Freescale QUICC Engine USB Host Controller Driver | ||
3 | * | ||
4 | * Copyright (c) Freescale Semicondutor, Inc. 2006. | ||
5 | * Shlomi Gridish <gridish@freescale.com> | ||
6 | * Jerry Huang <Chang-Ming.Huang@freescale.com> | ||
7 | * Copyright (c) Logic Product Development, Inc. 2007 | ||
8 | * Peter Barada <peterb@logicpd.com> | ||
9 | * Copyright (c) MontaVista Software, Inc. 2008. | ||
10 | * Anton Vorontsov <avorontsov@ru.mvista.com> | ||
11 | * | ||
12 | * This program is free software; you can redistribute it and/or modify it | ||
13 | * under the terms of the GNU General Public License as published by the | ||
14 | * Free Software Foundation; either version 2 of the License, or (at your | ||
15 | * option) any later version. | ||
16 | */ | ||
17 | |||
18 | #include <linux/kernel.h> | ||
19 | #include <linux/types.h> | ||
20 | #include <linux/spinlock.h> | ||
21 | #include <linux/delay.h> | ||
22 | #include <linux/errno.h> | ||
23 | #include <linux/io.h> | ||
24 | #include <linux/usb.h> | ||
25 | #include <linux/gpio.h> | ||
26 | #include <asm/qe.h> | ||
27 | #include "../core/hcd.h" | ||
28 | #include "fhci.h" | ||
29 | |||
30 | /* virtual root hub specific descriptor */ | ||
31 | static u8 root_hub_des[] = { | ||
32 | 0x09, /* blength */ | ||
33 | 0x29, /* bDescriptorType;hub-descriptor */ | ||
34 | 0x01, /* bNbrPorts */ | ||
35 | 0x00, /* wHubCharacteristics */ | ||
36 | 0x00, | ||
37 | 0x01, /* bPwrOn2pwrGood;2ms */ | ||
38 | 0x00, /* bHubContrCurrent;0mA */ | ||
39 | 0x00, /* DeviceRemoveable */ | ||
40 | 0xff, /* PortPwrCtrlMask */ | ||
41 | }; | ||
42 | |||
43 | static void fhci_gpio_set_value(struct fhci_hcd *fhci, int gpio_nr, bool on) | ||
44 | { | ||
45 | int gpio = fhci->gpios[gpio_nr]; | ||
46 | bool alow = fhci->alow_gpios[gpio_nr]; | ||
47 | |||
48 | if (!gpio_is_valid(gpio)) | ||
49 | return; | ||
50 | |||
51 | gpio_set_value(gpio, on ^ alow); | ||
52 | mdelay(5); | ||
53 | } | ||
54 | |||
55 | void fhci_config_transceiver(struct fhci_hcd *fhci, | ||
56 | enum fhci_port_status status) | ||
57 | { | ||
58 | fhci_dbg(fhci, "-> %s: %d\n", __func__, status); | ||
59 | |||
60 | switch (status) { | ||
61 | case FHCI_PORT_POWER_OFF: | ||
62 | fhci_gpio_set_value(fhci, GPIO_POWER, false); | ||
63 | break; | ||
64 | case FHCI_PORT_DISABLED: | ||
65 | case FHCI_PORT_WAITING: | ||
66 | fhci_gpio_set_value(fhci, GPIO_POWER, true); | ||
67 | break; | ||
68 | case FHCI_PORT_LOW: | ||
69 | fhci_gpio_set_value(fhci, GPIO_SPEED, false); | ||
70 | break; | ||
71 | case FHCI_PORT_FULL: | ||
72 | fhci_gpio_set_value(fhci, GPIO_SPEED, true); | ||
73 | break; | ||
74 | default: | ||
75 | WARN_ON(1); | ||
76 | break; | ||
77 | } | ||
78 | |||
79 | fhci_dbg(fhci, "<- %s: %d\n", __func__, status); | ||
80 | } | ||
81 | |||
82 | /* disable the USB port by clearing the EN bit in the USBMOD register */ | ||
83 | void fhci_port_disable(struct fhci_hcd *fhci) | ||
84 | { | ||
85 | struct fhci_usb *usb = (struct fhci_usb *)fhci->usb_lld; | ||
86 | enum fhci_port_status port_status; | ||
87 | |||
88 | fhci_dbg(fhci, "-> %s\n", __func__); | ||
89 | |||
90 | fhci_stop_sof_timer(fhci); | ||
91 | |||
92 | fhci_flush_all_transmissions(usb); | ||
93 | |||
94 | fhci_usb_disable_interrupt((struct fhci_usb *)fhci->usb_lld); | ||
95 | port_status = usb->port_status; | ||
96 | usb->port_status = FHCI_PORT_DISABLED; | ||
97 | |||
98 | /* Enable IDLE since we want to know if something comes along */ | ||
99 | usb->saved_msk |= USB_E_IDLE_MASK; | ||
100 | out_be16(&usb->fhci->regs->usb_mask, usb->saved_msk); | ||
101 | |||
102 | /* check if during the disconnection process attached new device */ | ||
103 | if (port_status == FHCI_PORT_WAITING) | ||
104 | fhci_device_connected_interrupt(fhci); | ||
105 | usb->vroot_hub->port.wPortStatus &= ~USB_PORT_STAT_ENABLE; | ||
106 | usb->vroot_hub->port.wPortChange |= USB_PORT_STAT_C_ENABLE; | ||
107 | fhci_usb_enable_interrupt((struct fhci_usb *)fhci->usb_lld); | ||
108 | |||
109 | fhci_dbg(fhci, "<- %s\n", __func__); | ||
110 | } | ||
111 | |||
112 | /* enable the USB port by setting the EN bit in the USBMOD register */ | ||
113 | void fhci_port_enable(void *lld) | ||
114 | { | ||
115 | struct fhci_usb *usb = (struct fhci_usb *)lld; | ||
116 | struct fhci_hcd *fhci = usb->fhci; | ||
117 | |||
118 | fhci_dbg(fhci, "-> %s\n", __func__); | ||
119 | |||
120 | fhci_config_transceiver(fhci, usb->port_status); | ||
121 | |||
122 | if ((usb->port_status != FHCI_PORT_FULL) && | ||
123 | (usb->port_status != FHCI_PORT_LOW)) | ||
124 | fhci_start_sof_timer(fhci); | ||
125 | |||
126 | usb->vroot_hub->port.wPortStatus |= USB_PORT_STAT_ENABLE; | ||
127 | usb->vroot_hub->port.wPortChange |= USB_PORT_STAT_C_ENABLE; | ||
128 | |||
129 | fhci_dbg(fhci, "<- %s\n", __func__); | ||
130 | } | ||
131 | |||
132 | void fhci_io_port_generate_reset(struct fhci_hcd *fhci) | ||
133 | { | ||
134 | fhci_dbg(fhci, "-> %s\n", __func__); | ||
135 | |||
136 | gpio_direction_output(fhci->gpios[GPIO_USBOE], 0); | ||
137 | gpio_direction_output(fhci->gpios[GPIO_USBTP], 0); | ||
138 | gpio_direction_output(fhci->gpios[GPIO_USBTN], 0); | ||
139 | |||
140 | mdelay(5); | ||
141 | |||
142 | qe_pin_set_dedicated(fhci->pins[PIN_USBOE]); | ||
143 | qe_pin_set_dedicated(fhci->pins[PIN_USBTP]); | ||
144 | qe_pin_set_dedicated(fhci->pins[PIN_USBTN]); | ||
145 | |||
146 | fhci_dbg(fhci, "<- %s\n", __func__); | ||
147 | } | ||
148 | |||
149 | /* generate the RESET condition on the bus */ | ||
150 | void fhci_port_reset(void *lld) | ||
151 | { | ||
152 | struct fhci_usb *usb = (struct fhci_usb *)lld; | ||
153 | struct fhci_hcd *fhci = usb->fhci; | ||
154 | u8 mode; | ||
155 | u16 mask; | ||
156 | |||
157 | fhci_dbg(fhci, "-> %s\n", __func__); | ||
158 | |||
159 | fhci_stop_sof_timer(fhci); | ||
160 | /* disable the USB controller */ | ||
161 | mode = in_8(&fhci->regs->usb_mod); | ||
162 | out_8(&fhci->regs->usb_mod, mode & (~USB_MODE_EN)); | ||
163 | |||
164 | /* disable idle interrupts */ | ||
165 | mask = in_be16(&fhci->regs->usb_mask); | ||
166 | out_be16(&fhci->regs->usb_mask, mask & (~USB_E_IDLE_MASK)); | ||
167 | |||
168 | fhci_io_port_generate_reset(fhci); | ||
169 | |||
170 | /* enable interrupt on this endpoint */ | ||
171 | out_be16(&fhci->regs->usb_mask, mask); | ||
172 | |||
173 | /* enable the USB controller */ | ||
174 | mode = in_8(&fhci->regs->usb_mod); | ||
175 | out_8(&fhci->regs->usb_mod, mode | USB_MODE_EN); | ||
176 | fhci_start_sof_timer(fhci); | ||
177 | |||
178 | fhci_dbg(fhci, "<- %s\n", __func__); | ||
179 | } | ||
180 | |||
181 | int fhci_hub_status_data(struct usb_hcd *hcd, char *buf) | ||
182 | { | ||
183 | struct fhci_hcd *fhci = hcd_to_fhci(hcd); | ||
184 | int ret = 0; | ||
185 | unsigned long flags; | ||
186 | |||
187 | fhci_dbg(fhci, "-> %s\n", __func__); | ||
188 | |||
189 | spin_lock_irqsave(&fhci->lock, flags); | ||
190 | |||
191 | if (fhci->vroot_hub->port.wPortChange & (USB_PORT_STAT_C_CONNECTION | | ||
192 | USB_PORT_STAT_C_ENABLE | USB_PORT_STAT_C_SUSPEND | | ||
193 | USB_PORT_STAT_C_RESET | USB_PORT_STAT_C_OVERCURRENT)) { | ||
194 | *buf = 1 << 1; | ||
195 | ret = 1; | ||
196 | fhci_dbg(fhci, "-- %s\n", __func__); | ||
197 | } | ||
198 | |||
199 | spin_unlock_irqrestore(&fhci->lock, flags); | ||
200 | |||
201 | fhci_dbg(fhci, "<- %s\n", __func__); | ||
202 | |||
203 | return ret; | ||
204 | } | ||
205 | |||
206 | int fhci_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue, | ||
207 | u16 wIndex, char *buf, u16 wLength) | ||
208 | { | ||
209 | struct fhci_hcd *fhci = hcd_to_fhci(hcd); | ||
210 | int retval = 0; | ||
211 | int len = 0; | ||
212 | struct usb_hub_status *hub_status; | ||
213 | struct usb_port_status *port_status; | ||
214 | unsigned long flags; | ||
215 | |||
216 | spin_lock_irqsave(&fhci->lock, flags); | ||
217 | |||
218 | fhci_dbg(fhci, "-> %s\n", __func__); | ||
219 | |||
220 | switch (typeReq) { | ||
221 | case ClearHubFeature: | ||
222 | switch (wValue) { | ||
223 | case C_HUB_LOCAL_POWER: | ||
224 | case C_HUB_OVER_CURRENT: | ||
225 | break; | ||
226 | default: | ||
227 | goto error; | ||
228 | } | ||
229 | break; | ||
230 | case ClearPortFeature: | ||
231 | fhci->vroot_hub->feature &= (1 << wValue); | ||
232 | |||
233 | switch (wValue) { | ||
234 | case USB_PORT_FEAT_ENABLE: | ||
235 | fhci->vroot_hub->port.wPortStatus &= | ||
236 | ~USB_PORT_STAT_ENABLE; | ||
237 | fhci_port_disable(fhci); | ||
238 | break; | ||
239 | case USB_PORT_FEAT_C_ENABLE: | ||
240 | fhci->vroot_hub->port.wPortChange &= | ||
241 | ~USB_PORT_STAT_C_ENABLE; | ||
242 | break; | ||
243 | case USB_PORT_FEAT_SUSPEND: | ||
244 | fhci->vroot_hub->port.wPortStatus &= | ||
245 | ~USB_PORT_STAT_SUSPEND; | ||
246 | fhci_stop_sof_timer(fhci); | ||
247 | break; | ||
248 | case USB_PORT_FEAT_C_SUSPEND: | ||
249 | fhci->vroot_hub->port.wPortChange &= | ||
250 | ~USB_PORT_STAT_C_SUSPEND; | ||
251 | break; | ||
252 | case USB_PORT_FEAT_POWER: | ||
253 | fhci->vroot_hub->port.wPortStatus &= | ||
254 | ~USB_PORT_STAT_POWER; | ||
255 | fhci_config_transceiver(fhci, FHCI_PORT_POWER_OFF); | ||
256 | break; | ||
257 | case USB_PORT_FEAT_C_CONNECTION: | ||
258 | fhci->vroot_hub->port.wPortChange &= | ||
259 | ~USB_PORT_STAT_C_CONNECTION; | ||
260 | break; | ||
261 | case USB_PORT_FEAT_C_OVER_CURRENT: | ||
262 | fhci->vroot_hub->port.wPortChange &= | ||
263 | ~USB_PORT_STAT_C_OVERCURRENT; | ||
264 | break; | ||
265 | case USB_PORT_FEAT_C_RESET: | ||
266 | fhci->vroot_hub->port.wPortChange &= | ||
267 | ~USB_PORT_STAT_C_RESET; | ||
268 | break; | ||
269 | default: | ||
270 | goto error; | ||
271 | } | ||
272 | break; | ||
273 | case GetHubDescriptor: | ||
274 | memcpy(buf, root_hub_des, sizeof(root_hub_des)); | ||
275 | buf[3] = 0x11; /* per-port power, no ovrcrnt */ | ||
276 | len = (buf[0] < wLength) ? buf[0] : wLength; | ||
277 | break; | ||
278 | case GetHubStatus: | ||
279 | hub_status = (struct usb_hub_status *)buf; | ||
280 | hub_status->wHubStatus = | ||
281 | cpu_to_le16(fhci->vroot_hub->hub.wHubStatus); | ||
282 | hub_status->wHubChange = | ||
283 | cpu_to_le16(fhci->vroot_hub->hub.wHubChange); | ||
284 | len = 4; | ||
285 | break; | ||
286 | case GetPortStatus: | ||
287 | port_status = (struct usb_port_status *)buf; | ||
288 | port_status->wPortStatus = | ||
289 | cpu_to_le16(fhci->vroot_hub->port.wPortStatus); | ||
290 | port_status->wPortChange = | ||
291 | cpu_to_le16(fhci->vroot_hub->port.wPortChange); | ||
292 | len = 4; | ||
293 | break; | ||
294 | case SetHubFeature: | ||
295 | switch (wValue) { | ||
296 | case C_HUB_OVER_CURRENT: | ||
297 | case C_HUB_LOCAL_POWER: | ||
298 | break; | ||
299 | default: | ||
300 | goto error; | ||
301 | } | ||
302 | break; | ||
303 | case SetPortFeature: | ||
304 | fhci->vroot_hub->feature |= (1 << wValue); | ||
305 | |||
306 | switch (wValue) { | ||
307 | case USB_PORT_FEAT_ENABLE: | ||
308 | fhci->vroot_hub->port.wPortStatus |= | ||
309 | USB_PORT_STAT_ENABLE; | ||
310 | fhci_port_enable(fhci->usb_lld); | ||
311 | break; | ||
312 | case USB_PORT_FEAT_SUSPEND: | ||
313 | fhci->vroot_hub->port.wPortStatus |= | ||
314 | USB_PORT_STAT_SUSPEND; | ||
315 | fhci_stop_sof_timer(fhci); | ||
316 | break; | ||
317 | case USB_PORT_FEAT_RESET: | ||
318 | fhci->vroot_hub->port.wPortStatus |= | ||
319 | USB_PORT_STAT_RESET; | ||
320 | fhci_port_reset(fhci->usb_lld); | ||
321 | fhci->vroot_hub->port.wPortStatus |= | ||
322 | USB_PORT_STAT_ENABLE; | ||
323 | fhci->vroot_hub->port.wPortStatus &= | ||
324 | ~USB_PORT_STAT_RESET; | ||
325 | break; | ||
326 | case USB_PORT_FEAT_POWER: | ||
327 | fhci->vroot_hub->port.wPortStatus |= | ||
328 | USB_PORT_STAT_POWER; | ||
329 | fhci_config_transceiver(fhci, FHCI_PORT_WAITING); | ||
330 | break; | ||
331 | default: | ||
332 | goto error; | ||
333 | } | ||
334 | break; | ||
335 | default: | ||
336 | error: | ||
337 | retval = -EPIPE; | ||
338 | } | ||
339 | |||
340 | fhci_dbg(fhci, "<- %s\n", __func__); | ||
341 | |||
342 | spin_unlock_irqrestore(&fhci->lock, flags); | ||
343 | |||
344 | return retval; | ||
345 | } | ||
diff --git a/drivers/usb/host/fhci-mem.c b/drivers/usb/host/fhci-mem.c new file mode 100644 index 000000000000..2c0736c99712 --- /dev/null +++ b/drivers/usb/host/fhci-mem.c | |||
@@ -0,0 +1,113 @@ | |||
1 | /* | ||
2 | * Freescale QUICC Engine USB Host Controller Driver | ||
3 | * | ||
4 | * Copyright (c) Freescale Semicondutor, Inc. 2006. | ||
5 | * Shlomi Gridish <gridish@freescale.com> | ||
6 | * Jerry Huang <Chang-Ming.Huang@freescale.com> | ||
7 | * Copyright (c) Logic Product Development, Inc. 2007 | ||
8 | * Peter Barada <peterb@logicpd.com> | ||
9 | * Copyright (c) MontaVista Software, Inc. 2008. | ||
10 | * Anton Vorontsov <avorontsov@ru.mvista.com> | ||
11 | * | ||
12 | * This program is free software; you can redistribute it and/or modify it | ||
13 | * under the terms of the GNU General Public License as published by the | ||
14 | * Free Software Foundation; either version 2 of the License, or (at your | ||
15 | * option) any later version. | ||
16 | */ | ||
17 | |||
18 | #include <linux/kernel.h> | ||
19 | #include <linux/types.h> | ||
20 | #include <linux/delay.h> | ||
21 | #include <linux/list.h> | ||
22 | #include <linux/usb.h> | ||
23 | #include "../core/hcd.h" | ||
24 | #include "fhci.h" | ||
25 | |||
26 | static void init_td(struct td *td) | ||
27 | { | ||
28 | memset(td, 0, sizeof(*td)); | ||
29 | INIT_LIST_HEAD(&td->node); | ||
30 | INIT_LIST_HEAD(&td->frame_lh); | ||
31 | } | ||
32 | |||
33 | static void init_ed(struct ed *ed) | ||
34 | { | ||
35 | memset(ed, 0, sizeof(*ed)); | ||
36 | INIT_LIST_HEAD(&ed->td_list); | ||
37 | INIT_LIST_HEAD(&ed->node); | ||
38 | } | ||
39 | |||
40 | static struct td *get_empty_td(struct fhci_hcd *fhci) | ||
41 | { | ||
42 | struct td *td; | ||
43 | |||
44 | if (!list_empty(&fhci->empty_tds)) { | ||
45 | td = list_entry(fhci->empty_tds.next, struct td, node); | ||
46 | list_del(fhci->empty_tds.next); | ||
47 | } else { | ||
48 | td = kmalloc(sizeof(*td), GFP_ATOMIC); | ||
49 | if (!td) | ||
50 | fhci_err(fhci, "No memory to allocate to TD\n"); | ||
51 | else | ||
52 | init_td(td); | ||
53 | } | ||
54 | |||
55 | return td; | ||
56 | } | ||
57 | |||
58 | void fhci_recycle_empty_td(struct fhci_hcd *fhci, struct td *td) | ||
59 | { | ||
60 | init_td(td); | ||
61 | list_add(&td->node, &fhci->empty_tds); | ||
62 | } | ||
63 | |||
64 | struct ed *fhci_get_empty_ed(struct fhci_hcd *fhci) | ||
65 | { | ||
66 | struct ed *ed; | ||
67 | |||
68 | if (!list_empty(&fhci->empty_eds)) { | ||
69 | ed = list_entry(fhci->empty_eds.next, struct ed, node); | ||
70 | list_del(fhci->empty_eds.next); | ||
71 | } else { | ||
72 | ed = kmalloc(sizeof(*ed), GFP_ATOMIC); | ||
73 | if (!ed) | ||
74 | fhci_err(fhci, "No memory to allocate to ED\n"); | ||
75 | else | ||
76 | init_ed(ed); | ||
77 | } | ||
78 | |||
79 | return ed; | ||
80 | } | ||
81 | |||
82 | void fhci_recycle_empty_ed(struct fhci_hcd *fhci, struct ed *ed) | ||
83 | { | ||
84 | init_ed(ed); | ||
85 | list_add(&ed->node, &fhci->empty_eds); | ||
86 | } | ||
87 | |||
88 | struct td *fhci_td_fill(struct fhci_hcd *fhci, struct urb *urb, | ||
89 | struct urb_priv *urb_priv, struct ed *ed, u16 index, | ||
90 | enum fhci_ta_type type, int toggle, u8 *data, u32 len, | ||
91 | u16 interval, u16 start_frame, bool ioc) | ||
92 | { | ||
93 | struct td *td = get_empty_td(fhci); | ||
94 | |||
95 | if (!td) | ||
96 | return NULL; | ||
97 | |||
98 | td->urb = urb; | ||
99 | td->ed = ed; | ||
100 | td->type = type; | ||
101 | td->toggle = toggle; | ||
102 | td->data = data; | ||
103 | td->len = len; | ||
104 | td->iso_index = index; | ||
105 | td->interval = interval; | ||
106 | td->start_frame = start_frame; | ||
107 | td->ioc = ioc; | ||
108 | td->status = USB_TD_OK; | ||
109 | |||
110 | urb_priv->tds[index] = td; | ||
111 | |||
112 | return td; | ||
113 | } | ||
diff --git a/drivers/usb/host/fhci-q.c b/drivers/usb/host/fhci-q.c new file mode 100644 index 000000000000..b0a1446ba292 --- /dev/null +++ b/drivers/usb/host/fhci-q.c | |||
@@ -0,0 +1,284 @@ | |||
1 | /* | ||
2 | * Freescale QUICC Engine USB Host Controller Driver | ||
3 | * | ||
4 | * Copyright (c) Freescale Semicondutor, Inc. 2006. | ||
5 | * Shlomi Gridish <gridish@freescale.com> | ||
6 | * Jerry Huang <Chang-Ming.Huang@freescale.com> | ||
7 | * Copyright (c) Logic Product Development, Inc. 2007 | ||
8 | * Peter Barada <peterb@logicpd.com> | ||
9 | * Copyright (c) MontaVista Software, Inc. 2008. | ||
10 | * Anton Vorontsov <avorontsov@ru.mvista.com> | ||
11 | * | ||
12 | * This program is free software; you can redistribute it and/or modify it | ||
13 | * under the terms of the GNU General Public License as published by the | ||
14 | * Free Software Foundation; either version 2 of the License, or (at your | ||
15 | * option) any later version. | ||
16 | */ | ||
17 | |||
18 | #include <linux/kernel.h> | ||
19 | #include <linux/types.h> | ||
20 | #include <linux/spinlock.h> | ||
21 | #include <linux/errno.h> | ||
22 | #include <linux/list.h> | ||
23 | #include <linux/usb.h> | ||
24 | #include "../core/hcd.h" | ||
25 | #include "fhci.h" | ||
26 | |||
27 | /* maps the hardware error code to the USB error code */ | ||
28 | static int status_to_error(u32 status) | ||
29 | { | ||
30 | if (status == USB_TD_OK) | ||
31 | return 0; | ||
32 | else if (status & USB_TD_RX_ER_CRC) | ||
33 | return -EILSEQ; | ||
34 | else if (status & USB_TD_RX_ER_NONOCT) | ||
35 | return -EPROTO; | ||
36 | else if (status & USB_TD_RX_ER_OVERUN) | ||
37 | return -ECOMM; | ||
38 | else if (status & USB_TD_RX_ER_BITSTUFF) | ||
39 | return -EPROTO; | ||
40 | else if (status & USB_TD_RX_ER_PID) | ||
41 | return -EILSEQ; | ||
42 | else if (status & (USB_TD_TX_ER_NAK | USB_TD_TX_ER_TIMEOUT)) | ||
43 | return -ETIMEDOUT; | ||
44 | else if (status & USB_TD_TX_ER_STALL) | ||
45 | return -EPIPE; | ||
46 | else if (status & USB_TD_TX_ER_UNDERUN) | ||
47 | return -ENOSR; | ||
48 | else if (status & USB_TD_RX_DATA_UNDERUN) | ||
49 | return -EREMOTEIO; | ||
50 | else if (status & USB_TD_RX_DATA_OVERUN) | ||
51 | return -EOVERFLOW; | ||
52 | else | ||
53 | return -EINVAL; | ||
54 | } | ||
55 | |||
56 | void fhci_add_td_to_frame(struct fhci_time_frame *frame, struct td *td) | ||
57 | { | ||
58 | list_add_tail(&td->frame_lh, &frame->tds_list); | ||
59 | } | ||
60 | |||
61 | void fhci_add_tds_to_ed(struct ed *ed, struct td **td_list, int number) | ||
62 | { | ||
63 | int i; | ||
64 | |||
65 | for (i = 0; i < number; i++) { | ||
66 | struct td *td = td_list[i]; | ||
67 | list_add_tail(&td->node, &ed->td_list); | ||
68 | } | ||
69 | if (ed->td_head == NULL) | ||
70 | ed->td_head = td_list[0]; | ||
71 | } | ||
72 | |||
73 | static struct td *peek_td_from_ed(struct ed *ed) | ||
74 | { | ||
75 | struct td *td; | ||
76 | |||
77 | if (!list_empty(&ed->td_list)) | ||
78 | td = list_entry(ed->td_list.next, struct td, node); | ||
79 | else | ||
80 | td = NULL; | ||
81 | |||
82 | return td; | ||
83 | } | ||
84 | |||
85 | struct td *fhci_remove_td_from_frame(struct fhci_time_frame *frame) | ||
86 | { | ||
87 | struct td *td; | ||
88 | |||
89 | if (!list_empty(&frame->tds_list)) { | ||
90 | td = list_entry(frame->tds_list.next, struct td, frame_lh); | ||
91 | list_del_init(frame->tds_list.next); | ||
92 | } else | ||
93 | td = NULL; | ||
94 | |||
95 | return td; | ||
96 | } | ||
97 | |||
98 | struct td *fhci_peek_td_from_frame(struct fhci_time_frame *frame) | ||
99 | { | ||
100 | struct td *td; | ||
101 | |||
102 | if (!list_empty(&frame->tds_list)) | ||
103 | td = list_entry(frame->tds_list.next, struct td, frame_lh); | ||
104 | else | ||
105 | td = NULL; | ||
106 | |||
107 | return td; | ||
108 | } | ||
109 | |||
110 | struct td *fhci_remove_td_from_ed(struct ed *ed) | ||
111 | { | ||
112 | struct td *td; | ||
113 | |||
114 | if (!list_empty(&ed->td_list)) { | ||
115 | td = list_entry(ed->td_list.next, struct td, node); | ||
116 | list_del_init(ed->td_list.next); | ||
117 | |||
118 | /* if this TD was the ED's head, find next TD */ | ||
119 | if (!list_empty(&ed->td_list)) | ||
120 | ed->td_head = list_entry(ed->td_list.next, struct td, | ||
121 | node); | ||
122 | else | ||
123 | ed->td_head = NULL; | ||
124 | } else | ||
125 | td = NULL; | ||
126 | |||
127 | return td; | ||
128 | } | ||
129 | |||
130 | struct td *fhci_remove_td_from_done_list(struct fhci_controller_list *p_list) | ||
131 | { | ||
132 | struct td *td; | ||
133 | |||
134 | if (!list_empty(&p_list->done_list)) { | ||
135 | td = list_entry(p_list->done_list.next, struct td, node); | ||
136 | list_del_init(p_list->done_list.next); | ||
137 | } else | ||
138 | td = NULL; | ||
139 | |||
140 | return td; | ||
141 | } | ||
142 | |||
143 | void fhci_move_td_from_ed_to_done_list(struct fhci_usb *usb, struct ed *ed) | ||
144 | { | ||
145 | struct td *td; | ||
146 | |||
147 | td = ed->td_head; | ||
148 | list_del_init(&td->node); | ||
149 | |||
150 | /* If this TD was the ED's head,find next TD */ | ||
151 | if (!list_empty(&ed->td_list)) | ||
152 | ed->td_head = list_entry(ed->td_list.next, struct td, node); | ||
153 | else { | ||
154 | ed->td_head = NULL; | ||
155 | ed->state = FHCI_ED_SKIP; | ||
156 | } | ||
157 | ed->toggle_carry = td->toggle; | ||
158 | list_add_tail(&td->node, &usb->hc_list->done_list); | ||
159 | if (td->ioc) | ||
160 | usb->transfer_confirm(usb->fhci); | ||
161 | } | ||
162 | |||
163 | /* free done FHCI URB resource such as ED and TD */ | ||
164 | static void free_urb_priv(struct fhci_hcd *fhci, struct urb *urb) | ||
165 | { | ||
166 | int i; | ||
167 | struct urb_priv *urb_priv = urb->hcpriv; | ||
168 | struct ed *ed = urb_priv->ed; | ||
169 | |||
170 | for (i = 0; i < urb_priv->num_of_tds; i++) { | ||
171 | list_del_init(&urb_priv->tds[i]->node); | ||
172 | fhci_recycle_empty_td(fhci, urb_priv->tds[i]); | ||
173 | } | ||
174 | |||
175 | /* if this TD was the ED's head,find the next TD */ | ||
176 | if (!list_empty(&ed->td_list)) | ||
177 | ed->td_head = list_entry(ed->td_list.next, struct td, node); | ||
178 | else | ||
179 | ed->td_head = NULL; | ||
180 | |||
181 | kfree(urb_priv->tds); | ||
182 | kfree(urb_priv); | ||
183 | urb->hcpriv = NULL; | ||
184 | |||
185 | /* if this TD was the ED's head,find next TD */ | ||
186 | if (ed->td_head == NULL) | ||
187 | list_del_init(&ed->node); | ||
188 | fhci->active_urbs--; | ||
189 | } | ||
190 | |||
191 | /* this routine called to complete and free done URB */ | ||
192 | void fhci_urb_complete_free(struct fhci_hcd *fhci, struct urb *urb) | ||
193 | { | ||
194 | free_urb_priv(fhci, urb); | ||
195 | |||
196 | if (urb->status == -EINPROGRESS) { | ||
197 | if (urb->actual_length != urb->transfer_buffer_length && | ||
198 | urb->transfer_flags & URB_SHORT_NOT_OK) | ||
199 | urb->status = -EREMOTEIO; | ||
200 | else | ||
201 | urb->status = 0; | ||
202 | } | ||
203 | |||
204 | usb_hcd_unlink_urb_from_ep(fhci_to_hcd(fhci), urb); | ||
205 | |||
206 | spin_unlock(&fhci->lock); | ||
207 | |||
208 | usb_hcd_giveback_urb(fhci_to_hcd(fhci), urb, urb->status); | ||
209 | |||
210 | spin_lock(&fhci->lock); | ||
211 | } | ||
212 | |||
213 | /* | ||
214 | * caculate transfer length/stats and update the urb | ||
215 | * Precondition: irqsafe(only for urb-?status locking) | ||
216 | */ | ||
217 | void fhci_done_td(struct urb *urb, struct td *td) | ||
218 | { | ||
219 | struct ed *ed = td->ed; | ||
220 | u32 cc = td->status; | ||
221 | |||
222 | /* ISO...drivers see per-TD length/status */ | ||
223 | if (ed->mode == FHCI_TF_ISO) { | ||
224 | u32 len; | ||
225 | if (!(urb->transfer_flags & URB_SHORT_NOT_OK && | ||
226 | cc == USB_TD_RX_DATA_UNDERUN)) | ||
227 | cc = USB_TD_OK; | ||
228 | |||
229 | if (usb_pipeout(urb->pipe)) | ||
230 | len = urb->iso_frame_desc[td->iso_index].length; | ||
231 | else | ||
232 | len = td->actual_len; | ||
233 | |||
234 | urb->actual_length += len; | ||
235 | urb->iso_frame_desc[td->iso_index].actual_length = len; | ||
236 | urb->iso_frame_desc[td->iso_index].status = | ||
237 | status_to_error(cc); | ||
238 | } | ||
239 | |||
240 | /* BULK,INT,CONTROL... drivers see aggregate length/status, | ||
241 | * except that "setup" bytes aren't counted and "short" transfers | ||
242 | * might not be reported as errors. | ||
243 | */ | ||
244 | else { | ||
245 | if (td->error_cnt >= 3) | ||
246 | urb->error_count = 3; | ||
247 | |||
248 | /* control endpoint only have soft stalls */ | ||
249 | |||
250 | /* update packet status if needed(short may be ok) */ | ||
251 | if (!(urb->transfer_flags & URB_SHORT_NOT_OK) && | ||
252 | cc == USB_TD_RX_DATA_UNDERUN) { | ||
253 | ed->state = FHCI_ED_OPER; | ||
254 | cc = USB_TD_OK; | ||
255 | } | ||
256 | if (cc != USB_TD_OK) { | ||
257 | if (urb->status == -EINPROGRESS) | ||
258 | urb->status = status_to_error(cc); | ||
259 | } | ||
260 | |||
261 | /* count all non-empty packets except control SETUP packet */ | ||
262 | if (td->type != FHCI_TA_SETUP || td->iso_index != 0) | ||
263 | urb->actual_length += td->actual_len; | ||
264 | } | ||
265 | } | ||
266 | |||
267 | /* there are some pedning request to unlink */ | ||
268 | void fhci_del_ed_list(struct fhci_hcd *fhci, struct ed *ed) | ||
269 | { | ||
270 | struct td *td = peek_td_from_ed(ed); | ||
271 | struct urb *urb = td->urb; | ||
272 | struct urb_priv *urb_priv = urb->hcpriv; | ||
273 | |||
274 | if (urb_priv->state == URB_DEL) { | ||
275 | td = fhci_remove_td_from_ed(ed); | ||
276 | /* HC may have partly processed this TD */ | ||
277 | if (td->status != USB_TD_INPROGRESS) | ||
278 | fhci_done_td(urb, td); | ||
279 | |||
280 | /* URB is done;clean up */ | ||
281 | if (++(urb_priv->tds_cnt) == urb_priv->num_of_tds) | ||
282 | fhci_urb_complete_free(fhci, urb); | ||
283 | } | ||
284 | } | ||
diff --git a/drivers/usb/host/fhci-sched.c b/drivers/usb/host/fhci-sched.c new file mode 100644 index 000000000000..bb63b68ddb77 --- /dev/null +++ b/drivers/usb/host/fhci-sched.c | |||
@@ -0,0 +1,888 @@ | |||
1 | /* | ||
2 | * Freescale QUICC Engine USB Host Controller Driver | ||
3 | * | ||
4 | * Copyright (c) Freescale Semicondutor, Inc. 2006. | ||
5 | * Shlomi Gridish <gridish@freescale.com> | ||
6 | * Jerry Huang <Chang-Ming.Huang@freescale.com> | ||
7 | * Copyright (c) Logic Product Development, Inc. 2007 | ||
8 | * Peter Barada <peterb@logicpd.com> | ||
9 | * Copyright (c) MontaVista Software, Inc. 2008. | ||
10 | * Anton Vorontsov <avorontsov@ru.mvista.com> | ||
11 | * | ||
12 | * This program is free software; you can redistribute it and/or modify it | ||
13 | * under the terms of the GNU General Public License as published by the | ||
14 | * Free Software Foundation; either version 2 of the License, or (at your | ||
15 | * option) any later version. | ||
16 | */ | ||
17 | |||
18 | #include <linux/kernel.h> | ||
19 | #include <linux/types.h> | ||
20 | #include <linux/spinlock.h> | ||
21 | #include <linux/delay.h> | ||
22 | #include <linux/errno.h> | ||
23 | #include <linux/list.h> | ||
24 | #include <linux/interrupt.h> | ||
25 | #include <linux/io.h> | ||
26 | #include <linux/usb.h> | ||
27 | #include <asm/qe.h> | ||
28 | #include <asm/fsl_gtm.h> | ||
29 | #include "../core/hcd.h" | ||
30 | #include "fhci.h" | ||
31 | |||
32 | static void recycle_frame(struct fhci_usb *usb, struct packet *pkt) | ||
33 | { | ||
34 | pkt->data = NULL; | ||
35 | pkt->len = 0; | ||
36 | pkt->status = USB_TD_OK; | ||
37 | pkt->info = 0; | ||
38 | pkt->priv_data = NULL; | ||
39 | |||
40 | cq_put(usb->ep0->empty_frame_Q, pkt); | ||
41 | } | ||
42 | |||
43 | /* confirm submitted packet */ | ||
44 | void fhci_transaction_confirm(struct fhci_usb *usb, struct packet *pkt) | ||
45 | { | ||
46 | struct td *td; | ||
47 | struct packet *td_pkt; | ||
48 | struct ed *ed; | ||
49 | u32 trans_len; | ||
50 | bool td_done = false; | ||
51 | |||
52 | td = fhci_remove_td_from_frame(usb->actual_frame); | ||
53 | td_pkt = td->pkt; | ||
54 | trans_len = pkt->len; | ||
55 | td->status = pkt->status; | ||
56 | if (td->type == FHCI_TA_IN && td_pkt->info & PKT_DUMMY_PACKET) { | ||
57 | if ((td->data + td->actual_len) && trans_len) | ||
58 | memcpy(td->data + td->actual_len, pkt->data, | ||
59 | trans_len); | ||
60 | cq_put(usb->ep0->dummy_packets_Q, pkt->data); | ||
61 | } | ||
62 | |||
63 | recycle_frame(usb, pkt); | ||
64 | |||
65 | ed = td->ed; | ||
66 | if (ed->mode == FHCI_TF_ISO) { | ||
67 | if (ed->td_list.next->next != &ed->td_list) { | ||
68 | struct td *td_next = | ||
69 | list_entry(ed->td_list.next->next, struct td, | ||
70 | node); | ||
71 | |||
72 | td_next->start_frame = usb->actual_frame->frame_num; | ||
73 | } | ||
74 | td->actual_len = trans_len; | ||
75 | td_done = true; | ||
76 | } else if ((td->status & USB_TD_ERROR) && | ||
77 | !(td->status & USB_TD_TX_ER_NAK)) { | ||
78 | /* | ||
79 | * There was an error on the transaction (but not NAK). | ||
80 | * If it is fatal error (data underrun, stall, bad pid or 3 | ||
81 | * errors exceeded), mark this TD as done. | ||
82 | */ | ||
83 | if ((td->status & USB_TD_RX_DATA_UNDERUN) || | ||
84 | (td->status & USB_TD_TX_ER_STALL) || | ||
85 | (td->status & USB_TD_RX_ER_PID) || | ||
86 | (++td->error_cnt >= 3)) { | ||
87 | ed->state = FHCI_ED_HALTED; | ||
88 | td_done = true; | ||
89 | |||
90 | if (td->status & USB_TD_RX_DATA_UNDERUN) { | ||
91 | fhci_dbg(usb->fhci, "td err fu\n"); | ||
92 | td->toggle = !td->toggle; | ||
93 | td->actual_len += trans_len; | ||
94 | } else { | ||
95 | fhci_dbg(usb->fhci, "td err f!u\n"); | ||
96 | } | ||
97 | } else { | ||
98 | fhci_dbg(usb->fhci, "td err !f\n"); | ||
99 | /* it is not a fatal error -retry this transaction */ | ||
100 | td->nak_cnt = 0; | ||
101 | td->error_cnt++; | ||
102 | td->status = USB_TD_OK; | ||
103 | } | ||
104 | } else if (td->status & USB_TD_TX_ER_NAK) { | ||
105 | /* there was a NAK response */ | ||
106 | fhci_vdbg(usb->fhci, "td nack\n"); | ||
107 | td->nak_cnt++; | ||
108 | td->error_cnt = 0; | ||
109 | td->status = USB_TD_OK; | ||
110 | } else { | ||
111 | /* there was no error on transaction */ | ||
112 | td->error_cnt = 0; | ||
113 | td->nak_cnt = 0; | ||
114 | td->toggle = !td->toggle; | ||
115 | td->actual_len += trans_len; | ||
116 | |||
117 | if (td->len == td->actual_len) | ||
118 | td_done = true; | ||
119 | } | ||
120 | |||
121 | if (td_done) | ||
122 | fhci_move_td_from_ed_to_done_list(usb, ed); | ||
123 | } | ||
124 | |||
125 | /* | ||
126 | * Flush all transmitted packets from BDs | ||
127 | * This routine is called when disabling the USB port to flush all | ||
128 | * transmissions that are allready scheduled in the BDs | ||
129 | */ | ||
130 | void fhci_flush_all_transmissions(struct fhci_usb *usb) | ||
131 | { | ||
132 | u8 mode; | ||
133 | struct td *td; | ||
134 | |||
135 | mode = in_8(&usb->fhci->regs->usb_mod); | ||
136 | clrbits8(&usb->fhci->regs->usb_mod, USB_MODE_EN); | ||
137 | |||
138 | fhci_flush_bds(usb); | ||
139 | |||
140 | while ((td = fhci_peek_td_from_frame(usb->actual_frame)) != NULL) { | ||
141 | struct packet *pkt = td->pkt; | ||
142 | |||
143 | pkt->status = USB_TD_TX_ER_TIMEOUT; | ||
144 | fhci_transaction_confirm(usb, pkt); | ||
145 | } | ||
146 | |||
147 | usb->actual_frame->frame_status = FRAME_END_TRANSMISSION; | ||
148 | |||
149 | /* reset the event register */ | ||
150 | out_be16(&usb->fhci->regs->usb_event, 0xffff); | ||
151 | /* enable the USB controller */ | ||
152 | out_8(&usb->fhci->regs->usb_mod, mode | USB_MODE_EN); | ||
153 | } | ||
154 | |||
155 | /* | ||
156 | * This function forms the packet and transmit the packet. This function | ||
157 | * will handle all endpoint type:ISO,interrupt,control and bulk | ||
158 | */ | ||
159 | static int add_packet(struct fhci_usb *usb, struct ed *ed, struct td *td) | ||
160 | { | ||
161 | u32 fw_transaction_time, len = 0; | ||
162 | struct packet *pkt; | ||
163 | u8 *data = NULL; | ||
164 | |||
165 | /* calcalate data address,len and toggle and then add the transaction */ | ||
166 | if (td->toggle == USB_TD_TOGGLE_CARRY) | ||
167 | td->toggle = ed->toggle_carry; | ||
168 | |||
169 | switch (ed->mode) { | ||
170 | case FHCI_TF_ISO: | ||
171 | len = td->len; | ||
172 | if (td->type != FHCI_TA_IN) | ||
173 | data = td->data; | ||
174 | break; | ||
175 | case FHCI_TF_CTRL: | ||
176 | case FHCI_TF_BULK: | ||
177 | len = min(td->len - td->actual_len, ed->max_pkt_size); | ||
178 | if (!((td->type == FHCI_TA_IN) && | ||
179 | ((len + td->actual_len) == td->len))) | ||
180 | data = td->data + td->actual_len; | ||
181 | break; | ||
182 | case FHCI_TF_INTR: | ||
183 | len = min(td->len, ed->max_pkt_size); | ||
184 | if (!((td->type == FHCI_TA_IN) && | ||
185 | ((td->len + CRC_SIZE) >= ed->max_pkt_size))) | ||
186 | data = td->data; | ||
187 | break; | ||
188 | default: | ||
189 | break; | ||
190 | } | ||
191 | |||
192 | if (usb->port_status == FHCI_PORT_FULL) | ||
193 | fw_transaction_time = (((len + PROTOCOL_OVERHEAD) * 11) >> 4); | ||
194 | else | ||
195 | fw_transaction_time = ((len + PROTOCOL_OVERHEAD) * 6); | ||
196 | |||
197 | /* check if there's enough space in this frame to submit this TD */ | ||
198 | if (usb->actual_frame->total_bytes + len + PROTOCOL_OVERHEAD >= | ||
199 | usb->max_bytes_per_frame) { | ||
200 | fhci_vdbg(usb->fhci, "not enough space in this frame: " | ||
201 | "%d %d %d\n", usb->actual_frame->total_bytes, len, | ||
202 | usb->max_bytes_per_frame); | ||
203 | return -1; | ||
204 | } | ||
205 | |||
206 | /* check if there's enough time in this frame to submit this TD */ | ||
207 | if (usb->actual_frame->frame_status != FRAME_IS_PREPARED && | ||
208 | (usb->actual_frame->frame_status & FRAME_END_TRANSMISSION || | ||
209 | (fw_transaction_time + usb->sw_transaction_time >= | ||
210 | 1000 - fhci_get_sof_timer_count(usb)))) { | ||
211 | fhci_dbg(usb->fhci, "not enough time in this frame\n"); | ||
212 | return -1; | ||
213 | } | ||
214 | |||
215 | /* update frame object fields before transmitting */ | ||
216 | pkt = cq_get(usb->ep0->empty_frame_Q); | ||
217 | if (!pkt) { | ||
218 | fhci_dbg(usb->fhci, "there is no empty frame\n"); | ||
219 | return -1; | ||
220 | } | ||
221 | td->pkt = pkt; | ||
222 | |||
223 | pkt->info = 0; | ||
224 | if (data == NULL) { | ||
225 | data = cq_get(usb->ep0->dummy_packets_Q); | ||
226 | BUG_ON(!data); | ||
227 | pkt->info = PKT_DUMMY_PACKET; | ||
228 | } | ||
229 | pkt->data = data; | ||
230 | pkt->len = len; | ||
231 | pkt->status = USB_TD_OK; | ||
232 | /* update TD status field before transmitting */ | ||
233 | td->status = USB_TD_INPROGRESS; | ||
234 | /* update actual frame time object with the actual transmission */ | ||
235 | usb->actual_frame->total_bytes += (len + PROTOCOL_OVERHEAD); | ||
236 | fhci_add_td_to_frame(usb->actual_frame, td); | ||
237 | |||
238 | if (usb->port_status != FHCI_PORT_FULL && | ||
239 | usb->port_status != FHCI_PORT_LOW) { | ||
240 | pkt->status = USB_TD_TX_ER_TIMEOUT; | ||
241 | pkt->len = 0; | ||
242 | fhci_transaction_confirm(usb, pkt); | ||
243 | } else if (fhci_host_transaction(usb, pkt, td->type, ed->dev_addr, | ||
244 | ed->ep_addr, ed->mode, ed->speed, td->toggle)) { | ||
245 | /* remove TD from actual frame */ | ||
246 | list_del_init(&td->frame_lh); | ||
247 | td->status = USB_TD_OK; | ||
248 | if (pkt->info & PKT_DUMMY_PACKET) | ||
249 | cq_put(usb->ep0->dummy_packets_Q, pkt->data); | ||
250 | recycle_frame(usb, pkt); | ||
251 | usb->actual_frame->total_bytes -= (len + PROTOCOL_OVERHEAD); | ||
252 | fhci_err(usb->fhci, "host transaction failed\n"); | ||
253 | return -1; | ||
254 | } | ||
255 | |||
256 | return len; | ||
257 | } | ||
258 | |||
259 | static void move_head_to_tail(struct list_head *list) | ||
260 | { | ||
261 | struct list_head *node = list->next; | ||
262 | |||
263 | if (!list_empty(list)) { | ||
264 | list_del(node); | ||
265 | list_add_tail(node, list); | ||
266 | } | ||
267 | } | ||
268 | |||
269 | /* | ||
270 | * This function goes through the endpoint list and schedules the | ||
271 | * transactions within this list | ||
272 | */ | ||
273 | static int scan_ed_list(struct fhci_usb *usb, | ||
274 | struct list_head *list, enum fhci_tf_mode list_type) | ||
275 | { | ||
276 | static const int frame_part[4] = { | ||
277 | [FHCI_TF_CTRL] = MAX_BYTES_PER_FRAME, | ||
278 | [FHCI_TF_ISO] = (MAX_BYTES_PER_FRAME * | ||
279 | MAX_PERIODIC_FRAME_USAGE) / 100, | ||
280 | [FHCI_TF_BULK] = MAX_BYTES_PER_FRAME, | ||
281 | [FHCI_TF_INTR] = (MAX_BYTES_PER_FRAME * | ||
282 | MAX_PERIODIC_FRAME_USAGE) / 100 | ||
283 | }; | ||
284 | struct ed *ed; | ||
285 | struct td *td; | ||
286 | int ans = 1; | ||
287 | u32 save_transaction_time = usb->sw_transaction_time; | ||
288 | |||
289 | list_for_each_entry(ed, list, node) { | ||
290 | td = ed->td_head; | ||
291 | |||
292 | if (!td || (td && td->status == USB_TD_INPROGRESS)) | ||
293 | continue; | ||
294 | |||
295 | if (ed->state != FHCI_ED_OPER) { | ||
296 | if (ed->state == FHCI_ED_URB_DEL) { | ||
297 | td->status = USB_TD_OK; | ||
298 | fhci_move_td_from_ed_to_done_list(usb, ed); | ||
299 | ed->state = FHCI_ED_SKIP; | ||
300 | } | ||
301 | continue; | ||
302 | } | ||
303 | |||
304 | /* | ||
305 | * if it isn't interrupt pipe or it is not iso pipe and the | ||
306 | * interval time passed | ||
307 | */ | ||
308 | if ((list_type == FHCI_TF_INTR || list_type == FHCI_TF_ISO) && | ||
309 | (((usb->actual_frame->frame_num - | ||
310 | td->start_frame) & 0x7ff) < td->interval)) | ||
311 | continue; | ||
312 | |||
313 | if (add_packet(usb, ed, td) < 0) | ||
314 | continue; | ||
315 | |||
316 | /* update time stamps in the TD */ | ||
317 | td->start_frame = usb->actual_frame->frame_num; | ||
318 | usb->sw_transaction_time += save_transaction_time; | ||
319 | |||
320 | if (usb->actual_frame->total_bytes >= | ||
321 | usb->max_bytes_per_frame) { | ||
322 | usb->actual_frame->frame_status = | ||
323 | FRAME_DATA_END_TRANSMISSION; | ||
324 | fhci_push_dummy_bd(usb->ep0); | ||
325 | ans = 0; | ||
326 | break; | ||
327 | } | ||
328 | |||
329 | if (usb->actual_frame->total_bytes >= frame_part[list_type]) | ||
330 | break; | ||
331 | } | ||
332 | |||
333 | /* be fair to each ED(move list head around) */ | ||
334 | move_head_to_tail(list); | ||
335 | usb->sw_transaction_time = save_transaction_time; | ||
336 | |||
337 | return ans; | ||
338 | } | ||
339 | |||
340 | static u32 rotate_frames(struct fhci_usb *usb) | ||
341 | { | ||
342 | struct fhci_hcd *fhci = usb->fhci; | ||
343 | |||
344 | if (!list_empty(&usb->actual_frame->tds_list)) { | ||
345 | if ((((in_be16(&fhci->pram->frame_num) & 0x07ff) - | ||
346 | usb->actual_frame->frame_num) & 0x7ff) > 5) | ||
347 | fhci_flush_actual_frame(usb); | ||
348 | else | ||
349 | return -EINVAL; | ||
350 | } | ||
351 | |||
352 | usb->actual_frame->frame_status = FRAME_IS_PREPARED; | ||
353 | usb->actual_frame->frame_num = in_be16(&fhci->pram->frame_num) & 0x7ff; | ||
354 | usb->actual_frame->total_bytes = 0; | ||
355 | |||
356 | return 0; | ||
357 | } | ||
358 | |||
359 | /* | ||
360 | * This function schedule the USB transaction and will process the | ||
361 | * endpoint in the following order: iso, interrupt, control and bulk. | ||
362 | */ | ||
363 | void fhci_schedule_transactions(struct fhci_usb *usb) | ||
364 | { | ||
365 | int left = 1; | ||
366 | |||
367 | if (usb->actual_frame->frame_status & FRAME_END_TRANSMISSION) | ||
368 | if (rotate_frames(usb) != 0) | ||
369 | return; | ||
370 | |||
371 | if (usb->actual_frame->frame_status & FRAME_END_TRANSMISSION) | ||
372 | return; | ||
373 | |||
374 | if (usb->actual_frame->total_bytes == 0) { | ||
375 | /* | ||
376 | * schedule the next available ISO transfer | ||
377 | *or next stage of the ISO transfer | ||
378 | */ | ||
379 | scan_ed_list(usb, &usb->hc_list->iso_list, FHCI_TF_ISO); | ||
380 | |||
381 | /* | ||
382 | * schedule the next available interrupt transfer or | ||
383 | * the next stage of the interrupt transfer | ||
384 | */ | ||
385 | scan_ed_list(usb, &usb->hc_list->intr_list, FHCI_TF_INTR); | ||
386 | |||
387 | /* | ||
388 | * schedule the next available control transfer | ||
389 | * or the next stage of the control transfer | ||
390 | */ | ||
391 | left = scan_ed_list(usb, &usb->hc_list->ctrl_list, | ||
392 | FHCI_TF_CTRL); | ||
393 | } | ||
394 | |||
395 | /* | ||
396 | * schedule the next available bulk transfer or the next stage of the | ||
397 | * bulk transfer | ||
398 | */ | ||
399 | if (left > 0) | ||
400 | scan_ed_list(usb, &usb->hc_list->bulk_list, FHCI_TF_BULK); | ||
401 | } | ||
402 | |||
403 | /* Handles SOF interrupt */ | ||
404 | static void sof_interrupt(struct fhci_hcd *fhci) | ||
405 | { | ||
406 | struct fhci_usb *usb = fhci->usb_lld; | ||
407 | |||
408 | if ((usb->port_status == FHCI_PORT_DISABLED) && | ||
409 | (usb->vroot_hub->port.wPortStatus & USB_PORT_STAT_CONNECTION) && | ||
410 | !(usb->vroot_hub->port.wPortChange & USB_PORT_STAT_C_CONNECTION)) { | ||
411 | if (usb->vroot_hub->port.wPortStatus & USB_PORT_STAT_LOW_SPEED) | ||
412 | usb->port_status = FHCI_PORT_LOW; | ||
413 | else | ||
414 | usb->port_status = FHCI_PORT_FULL; | ||
415 | /* Disable IDLE */ | ||
416 | usb->saved_msk &= ~USB_E_IDLE_MASK; | ||
417 | out_be16(&usb->fhci->regs->usb_mask, usb->saved_msk); | ||
418 | } | ||
419 | |||
420 | gtm_set_exact_timer16(fhci->timer, usb->max_frame_usage, false); | ||
421 | |||
422 | fhci_host_transmit_actual_frame(usb); | ||
423 | usb->actual_frame->frame_status = FRAME_IS_TRANSMITTED; | ||
424 | |||
425 | fhci_schedule_transactions(usb); | ||
426 | } | ||
427 | |||
428 | /* Handles device disconnected interrupt on port */ | ||
429 | void fhci_device_disconnected_interrupt(struct fhci_hcd *fhci) | ||
430 | { | ||
431 | struct fhci_usb *usb = fhci->usb_lld; | ||
432 | |||
433 | fhci_dbg(fhci, "-> %s\n", __func__); | ||
434 | |||
435 | fhci_usb_disable_interrupt(usb); | ||
436 | clrbits8(&usb->fhci->regs->usb_mod, USB_MODE_LSS); | ||
437 | usb->port_status = FHCI_PORT_DISABLED; | ||
438 | |||
439 | fhci_stop_sof_timer(fhci); | ||
440 | |||
441 | /* Enable IDLE since we want to know if something comes along */ | ||
442 | usb->saved_msk |= USB_E_IDLE_MASK; | ||
443 | out_be16(&usb->fhci->regs->usb_mask, usb->saved_msk); | ||
444 | |||
445 | usb->vroot_hub->port.wPortStatus &= ~USB_PORT_STAT_CONNECTION; | ||
446 | usb->vroot_hub->port.wPortChange |= USB_PORT_STAT_C_CONNECTION; | ||
447 | usb->max_bytes_per_frame = 0; | ||
448 | fhci_usb_enable_interrupt(usb); | ||
449 | |||
450 | fhci_dbg(fhci, "<- %s\n", __func__); | ||
451 | } | ||
452 | |||
453 | /* detect a new device connected on the USB port */ | ||
454 | void fhci_device_connected_interrupt(struct fhci_hcd *fhci) | ||
455 | { | ||
456 | |||
457 | struct fhci_usb *usb = fhci->usb_lld; | ||
458 | int state; | ||
459 | int ret; | ||
460 | |||
461 | fhci_dbg(fhci, "-> %s\n", __func__); | ||
462 | |||
463 | fhci_usb_disable_interrupt(usb); | ||
464 | state = fhci_ioports_check_bus_state(fhci); | ||
465 | |||
466 | /* low-speed device was connected to the USB port */ | ||
467 | if (state == 1) { | ||
468 | ret = qe_usb_clock_set(fhci->lowspeed_clk, USB_CLOCK >> 3); | ||
469 | if (ret) { | ||
470 | fhci_warn(fhci, "Low-Speed device is not supported, " | ||
471 | "try use BRGx\n"); | ||
472 | goto out; | ||
473 | } | ||
474 | |||
475 | usb->port_status = FHCI_PORT_LOW; | ||
476 | setbits8(&usb->fhci->regs->usb_mod, USB_MODE_LSS); | ||
477 | usb->vroot_hub->port.wPortStatus |= | ||
478 | (USB_PORT_STAT_LOW_SPEED | | ||
479 | USB_PORT_STAT_CONNECTION); | ||
480 | usb->vroot_hub->port.wPortChange |= | ||
481 | USB_PORT_STAT_C_CONNECTION; | ||
482 | usb->max_bytes_per_frame = | ||
483 | (MAX_BYTES_PER_FRAME >> 3) - 7; | ||
484 | fhci_port_enable(usb); | ||
485 | } else if (state == 2) { | ||
486 | ret = qe_usb_clock_set(fhci->fullspeed_clk, USB_CLOCK); | ||
487 | if (ret) { | ||
488 | fhci_warn(fhci, "Full-Speed device is not supported, " | ||
489 | "try use CLKx\n"); | ||
490 | goto out; | ||
491 | } | ||
492 | |||
493 | usb->port_status = FHCI_PORT_FULL; | ||
494 | clrbits8(&usb->fhci->regs->usb_mod, USB_MODE_LSS); | ||
495 | usb->vroot_hub->port.wPortStatus &= | ||
496 | ~USB_PORT_STAT_LOW_SPEED; | ||
497 | usb->vroot_hub->port.wPortStatus |= | ||
498 | USB_PORT_STAT_CONNECTION; | ||
499 | usb->vroot_hub->port.wPortChange |= | ||
500 | USB_PORT_STAT_C_CONNECTION; | ||
501 | usb->max_bytes_per_frame = (MAX_BYTES_PER_FRAME - 15); | ||
502 | fhci_port_enable(usb); | ||
503 | } | ||
504 | out: | ||
505 | fhci_usb_enable_interrupt(usb); | ||
506 | fhci_dbg(fhci, "<- %s\n", __func__); | ||
507 | } | ||
508 | |||
509 | irqreturn_t fhci_frame_limit_timer_irq(int irq, void *_hcd) | ||
510 | { | ||
511 | struct usb_hcd *hcd = _hcd; | ||
512 | struct fhci_hcd *fhci = hcd_to_fhci(hcd); | ||
513 | struct fhci_usb *usb = fhci->usb_lld; | ||
514 | |||
515 | spin_lock(&fhci->lock); | ||
516 | |||
517 | gtm_set_exact_timer16(fhci->timer, 1000, false); | ||
518 | |||
519 | if (usb->actual_frame->frame_status == FRAME_IS_TRANSMITTED) { | ||
520 | usb->actual_frame->frame_status = FRAME_TIMER_END_TRANSMISSION; | ||
521 | fhci_push_dummy_bd(usb->ep0); | ||
522 | } | ||
523 | |||
524 | fhci_schedule_transactions(usb); | ||
525 | |||
526 | spin_unlock(&fhci->lock); | ||
527 | |||
528 | return IRQ_HANDLED; | ||
529 | } | ||
530 | |||
531 | /* Cancel transmission on the USB endpoint */ | ||
532 | static void abort_transmission(struct fhci_usb *usb) | ||
533 | { | ||
534 | fhci_dbg(usb->fhci, "-> %s\n", __func__); | ||
535 | /* issue stop Tx command */ | ||
536 | qe_issue_cmd(QE_USB_STOP_TX, QE_CR_SUBBLOCK_USB, EP_ZERO, 0); | ||
537 | /* flush Tx FIFOs */ | ||
538 | out_8(&usb->fhci->regs->usb_comm, USB_CMD_FLUSH_FIFO | EP_ZERO); | ||
539 | udelay(1000); | ||
540 | /* reset Tx BDs */ | ||
541 | fhci_flush_bds(usb); | ||
542 | /* issue restart Tx command */ | ||
543 | qe_issue_cmd(QE_USB_RESTART_TX, QE_CR_SUBBLOCK_USB, EP_ZERO, 0); | ||
544 | fhci_dbg(usb->fhci, "<- %s\n", __func__); | ||
545 | } | ||
546 | |||
547 | irqreturn_t fhci_irq(struct usb_hcd *hcd) | ||
548 | { | ||
549 | struct fhci_hcd *fhci = hcd_to_fhci(hcd); | ||
550 | struct fhci_usb *usb; | ||
551 | u16 usb_er = 0; | ||
552 | unsigned long flags; | ||
553 | |||
554 | spin_lock_irqsave(&fhci->lock, flags); | ||
555 | |||
556 | usb = fhci->usb_lld; | ||
557 | |||
558 | usb_er |= in_be16(&usb->fhci->regs->usb_event) & | ||
559 | in_be16(&usb->fhci->regs->usb_mask); | ||
560 | |||
561 | /* clear event bits for next time */ | ||
562 | out_be16(&usb->fhci->regs->usb_event, usb_er); | ||
563 | |||
564 | fhci_dbg_isr(fhci, usb_er); | ||
565 | |||
566 | if (usb_er & USB_E_RESET_MASK) { | ||
567 | if ((usb->port_status == FHCI_PORT_FULL) || | ||
568 | (usb->port_status == FHCI_PORT_LOW)) { | ||
569 | fhci_device_disconnected_interrupt(fhci); | ||
570 | usb_er &= ~USB_E_IDLE_MASK; | ||
571 | } else if (usb->port_status == FHCI_PORT_WAITING) { | ||
572 | usb->port_status = FHCI_PORT_DISCONNECTING; | ||
573 | |||
574 | /* Turn on IDLE since we want to disconnect */ | ||
575 | usb->saved_msk |= USB_E_IDLE_MASK; | ||
576 | out_be16(&usb->fhci->regs->usb_event, | ||
577 | usb->saved_msk); | ||
578 | } else if (usb->port_status == FHCI_PORT_DISABLED) { | ||
579 | if (fhci_ioports_check_bus_state(fhci) == 1 && | ||
580 | usb->port_status != FHCI_PORT_LOW && | ||
581 | usb->port_status != FHCI_PORT_FULL) | ||
582 | fhci_device_connected_interrupt(fhci); | ||
583 | } | ||
584 | usb_er &= ~USB_E_RESET_MASK; | ||
585 | } | ||
586 | |||
587 | if (usb_er & USB_E_MSF_MASK) { | ||
588 | abort_transmission(fhci->usb_lld); | ||
589 | usb_er &= ~USB_E_MSF_MASK; | ||
590 | } | ||
591 | |||
592 | if (usb_er & (USB_E_SOF_MASK | USB_E_SFT_MASK)) { | ||
593 | sof_interrupt(fhci); | ||
594 | usb_er &= ~(USB_E_SOF_MASK | USB_E_SFT_MASK); | ||
595 | } | ||
596 | |||
597 | if (usb_er & USB_E_TXB_MASK) { | ||
598 | fhci_tx_conf_interrupt(fhci->usb_lld); | ||
599 | usb_er &= ~USB_E_TXB_MASK; | ||
600 | } | ||
601 | |||
602 | if (usb_er & USB_E_TXE1_MASK) { | ||
603 | fhci_tx_conf_interrupt(fhci->usb_lld); | ||
604 | usb_er &= ~USB_E_TXE1_MASK; | ||
605 | } | ||
606 | |||
607 | if (usb_er & USB_E_IDLE_MASK) { | ||
608 | if (usb->port_status == FHCI_PORT_DISABLED && | ||
609 | usb->port_status != FHCI_PORT_LOW && | ||
610 | usb->port_status != FHCI_PORT_FULL) { | ||
611 | usb_er &= ~USB_E_RESET_MASK; | ||
612 | fhci_device_connected_interrupt(fhci); | ||
613 | } else if (usb->port_status == | ||
614 | FHCI_PORT_DISCONNECTING) { | ||
615 | /* XXX usb->port_status = FHCI_PORT_WAITING; */ | ||
616 | /* Disable IDLE */ | ||
617 | usb->saved_msk &= ~USB_E_IDLE_MASK; | ||
618 | out_be16(&usb->fhci->regs->usb_mask, | ||
619 | usb->saved_msk); | ||
620 | } else { | ||
621 | fhci_dbg_isr(fhci, -1); | ||
622 | } | ||
623 | |||
624 | usb_er &= ~USB_E_IDLE_MASK; | ||
625 | } | ||
626 | |||
627 | spin_unlock_irqrestore(&fhci->lock, flags); | ||
628 | |||
629 | return IRQ_HANDLED; | ||
630 | } | ||
631 | |||
632 | |||
633 | /* | ||
634 | * Process normal completions(error or sucess) and clean the schedule. | ||
635 | * | ||
636 | * This is the main path for handing urbs back to drivers. The only other patth | ||
637 | * is process_del_list(),which unlinks URBs by scanning EDs,instead of scanning | ||
638 | * the (re-reversed) done list as this does. | ||
639 | */ | ||
640 | static void process_done_list(unsigned long data) | ||
641 | { | ||
642 | struct urb *urb; | ||
643 | struct ed *ed; | ||
644 | struct td *td; | ||
645 | struct urb_priv *urb_priv; | ||
646 | struct fhci_hcd *fhci = (struct fhci_hcd *)data; | ||
647 | |||
648 | disable_irq(fhci->timer->irq); | ||
649 | disable_irq(fhci_to_hcd(fhci)->irq); | ||
650 | spin_lock(&fhci->lock); | ||
651 | |||
652 | td = fhci_remove_td_from_done_list(fhci->hc_list); | ||
653 | while (td != NULL) { | ||
654 | urb = td->urb; | ||
655 | urb_priv = urb->hcpriv; | ||
656 | ed = td->ed; | ||
657 | |||
658 | /* update URB's length and status from TD */ | ||
659 | fhci_done_td(urb, td); | ||
660 | urb_priv->tds_cnt++; | ||
661 | |||
662 | /* | ||
663 | * if all this urb's TDs are done, call complete() | ||
664 | * Interrupt transfers are the onley special case: | ||
665 | * they are reissued,until "deleted" by usb_unlink_urb | ||
666 | * (real work done in a SOF intr, by process_del_list) | ||
667 | */ | ||
668 | if (urb_priv->tds_cnt == urb_priv->num_of_tds) { | ||
669 | fhci_urb_complete_free(fhci, urb); | ||
670 | } else if (urb_priv->state == URB_DEL && | ||
671 | ed->state == FHCI_ED_SKIP) { | ||
672 | fhci_del_ed_list(fhci, ed); | ||
673 | ed->state = FHCI_ED_OPER; | ||
674 | } else if (ed->state == FHCI_ED_HALTED) { | ||
675 | urb_priv->state = URB_DEL; | ||
676 | ed->state = FHCI_ED_URB_DEL; | ||
677 | fhci_del_ed_list(fhci, ed); | ||
678 | ed->state = FHCI_ED_OPER; | ||
679 | } | ||
680 | |||
681 | td = fhci_remove_td_from_done_list(fhci->hc_list); | ||
682 | } | ||
683 | |||
684 | spin_unlock(&fhci->lock); | ||
685 | enable_irq(fhci->timer->irq); | ||
686 | enable_irq(fhci_to_hcd(fhci)->irq); | ||
687 | } | ||
688 | |||
689 | DECLARE_TASKLET(fhci_tasklet, process_done_list, 0); | ||
690 | |||
691 | /* transfer complted callback */ | ||
692 | u32 fhci_transfer_confirm_callback(struct fhci_hcd *fhci) | ||
693 | { | ||
694 | if (!fhci->process_done_task->state) | ||
695 | tasklet_schedule(fhci->process_done_task); | ||
696 | return 0; | ||
697 | } | ||
698 | |||
699 | /* | ||
700 | * adds urb to the endpoint descriptor list | ||
701 | * arguments: | ||
702 | * fhci data structure for the Low level host controller | ||
703 | * ep USB Host endpoint data structure | ||
704 | * urb USB request block data structure | ||
705 | */ | ||
706 | void fhci_queue_urb(struct fhci_hcd *fhci, struct urb *urb) | ||
707 | { | ||
708 | struct ed *ed = urb->ep->hcpriv; | ||
709 | struct urb_priv *urb_priv = urb->hcpriv; | ||
710 | u32 data_len = urb->transfer_buffer_length; | ||
711 | int urb_state = 0; | ||
712 | int toggle = 0; | ||
713 | struct td *td; | ||
714 | u8 *data; | ||
715 | u16 cnt = 0; | ||
716 | |||
717 | if (ed == NULL) { | ||
718 | ed = fhci_get_empty_ed(fhci); | ||
719 | ed->dev_addr = usb_pipedevice(urb->pipe); | ||
720 | ed->ep_addr = usb_pipeendpoint(urb->pipe); | ||
721 | switch (usb_pipetype(urb->pipe)) { | ||
722 | case PIPE_CONTROL: | ||
723 | ed->mode = FHCI_TF_CTRL; | ||
724 | break; | ||
725 | case PIPE_BULK: | ||
726 | ed->mode = FHCI_TF_BULK; | ||
727 | break; | ||
728 | case PIPE_INTERRUPT: | ||
729 | ed->mode = FHCI_TF_INTR; | ||
730 | break; | ||
731 | case PIPE_ISOCHRONOUS: | ||
732 | ed->mode = FHCI_TF_ISO; | ||
733 | break; | ||
734 | default: | ||
735 | break; | ||
736 | } | ||
737 | ed->speed = (urb->dev->speed == USB_SPEED_LOW) ? | ||
738 | FHCI_LOW_SPEED : FHCI_FULL_SPEED; | ||
739 | ed->max_pkt_size = usb_maxpacket(urb->dev, | ||
740 | urb->pipe, usb_pipeout(urb->pipe)); | ||
741 | urb->ep->hcpriv = ed; | ||
742 | fhci_dbg(fhci, "new ep speed=%d max_pkt_size=%d\n", | ||
743 | ed->speed, ed->max_pkt_size); | ||
744 | } | ||
745 | |||
746 | /* for ISO transfer calculate start frame index */ | ||
747 | if (ed->mode == FHCI_TF_ISO && urb->transfer_flags & URB_ISO_ASAP) | ||
748 | urb->start_frame = ed->td_head ? ed->last_iso + 1 : | ||
749 | get_frame_num(fhci); | ||
750 | |||
751 | /* | ||
752 | * OHCI handles the DATA toggle itself,we just use the USB | ||
753 | * toggle bits | ||
754 | */ | ||
755 | if (usb_gettoggle(urb->dev, usb_pipeendpoint(urb->pipe), | ||
756 | usb_pipeout(urb->pipe))) | ||
757 | toggle = USB_TD_TOGGLE_CARRY; | ||
758 | else { | ||
759 | toggle = USB_TD_TOGGLE_DATA0; | ||
760 | usb_settoggle(urb->dev, usb_pipeendpoint(urb->pipe), | ||
761 | usb_pipeout(urb->pipe), 1); | ||
762 | } | ||
763 | |||
764 | urb_priv->tds_cnt = 0; | ||
765 | urb_priv->ed = ed; | ||
766 | if (data_len > 0) | ||
767 | data = urb->transfer_buffer; | ||
768 | else | ||
769 | data = NULL; | ||
770 | |||
771 | switch (ed->mode) { | ||
772 | case FHCI_TF_BULK: | ||
773 | if (urb->transfer_flags & URB_ZERO_PACKET && | ||
774 | urb->transfer_buffer_length > 0 && | ||
775 | ((urb->transfer_buffer_length % | ||
776 | usb_maxpacket(urb->dev, urb->pipe, | ||
777 | usb_pipeout(urb->pipe))) == 0)) | ||
778 | urb_state = US_BULK0; | ||
779 | while (data_len > 4096) { | ||
780 | td = fhci_td_fill(fhci, urb, urb_priv, ed, cnt, | ||
781 | usb_pipeout(urb->pipe) ? FHCI_TA_OUT : | ||
782 | FHCI_TA_IN, | ||
783 | cnt ? USB_TD_TOGGLE_CARRY : | ||
784 | toggle, | ||
785 | data, 4096, 0, 0, true); | ||
786 | data += 4096; | ||
787 | data_len -= 4096; | ||
788 | cnt++; | ||
789 | } | ||
790 | |||
791 | td = fhci_td_fill(fhci, urb, urb_priv, ed, cnt, | ||
792 | usb_pipeout(urb->pipe) ? FHCI_TA_OUT : FHCI_TA_IN, | ||
793 | cnt ? USB_TD_TOGGLE_CARRY : toggle, | ||
794 | data, data_len, 0, 0, true); | ||
795 | cnt++; | ||
796 | |||
797 | if (urb->transfer_flags & URB_ZERO_PACKET && | ||
798 | cnt < urb_priv->num_of_tds) { | ||
799 | td = fhci_td_fill(fhci, urb, urb_priv, ed, cnt, | ||
800 | usb_pipeout(urb->pipe) ? FHCI_TA_OUT : | ||
801 | FHCI_TA_IN, | ||
802 | USB_TD_TOGGLE_CARRY, NULL, 0, 0, 0, true); | ||
803 | cnt++; | ||
804 | } | ||
805 | break; | ||
806 | case FHCI_TF_INTR: | ||
807 | urb->start_frame = get_frame_num(fhci) + 1; | ||
808 | td = fhci_td_fill(fhci, urb, urb_priv, ed, cnt++, | ||
809 | usb_pipeout(urb->pipe) ? FHCI_TA_OUT : FHCI_TA_IN, | ||
810 | USB_TD_TOGGLE_DATA0, data, data_len, | ||
811 | urb->interval, urb->start_frame, true); | ||
812 | break; | ||
813 | case FHCI_TF_CTRL: | ||
814 | ed->dev_addr = usb_pipedevice(urb->pipe); | ||
815 | ed->max_pkt_size = usb_maxpacket(urb->dev, urb->pipe, | ||
816 | usb_pipeout(urb->pipe)); | ||
817 | td = fhci_td_fill(fhci, urb, urb_priv, ed, cnt++, FHCI_TA_SETUP, | ||
818 | USB_TD_TOGGLE_DATA0, urb->setup_packet, 8, 0, 0, true); | ||
819 | |||
820 | if (data_len > 0) { | ||
821 | td = fhci_td_fill(fhci, urb, urb_priv, ed, cnt++, | ||
822 | usb_pipeout(urb->pipe) ? FHCI_TA_OUT : | ||
823 | FHCI_TA_IN, | ||
824 | USB_TD_TOGGLE_DATA1, data, data_len, 0, 0, | ||
825 | true); | ||
826 | } | ||
827 | td = fhci_td_fill(fhci, urb, urb_priv, ed, cnt++, | ||
828 | usb_pipeout(urb->pipe) ? FHCI_TA_IN : FHCI_TA_OUT, | ||
829 | USB_TD_TOGGLE_DATA1, data, 0, 0, 0, true); | ||
830 | urb_state = US_CTRL_SETUP; | ||
831 | break; | ||
832 | case FHCI_TF_ISO: | ||
833 | for (cnt = 0; cnt < urb->number_of_packets; cnt++) { | ||
834 | u16 frame = urb->start_frame; | ||
835 | |||
836 | /* | ||
837 | * FIXME scheduling should handle frame counter | ||
838 | * roll-around ... exotic case (and OHCI has | ||
839 | * a 2^16 iso range, vs other HCs max of 2^10) | ||
840 | */ | ||
841 | frame += cnt * urb->interval; | ||
842 | frame &= 0x07ff; | ||
843 | td = fhci_td_fill(fhci, urb, urb_priv, ed, cnt, | ||
844 | usb_pipeout(urb->pipe) ? FHCI_TA_OUT : | ||
845 | FHCI_TA_IN, | ||
846 | USB_TD_TOGGLE_DATA0, | ||
847 | data + urb->iso_frame_desc[cnt].offset, | ||
848 | urb->iso_frame_desc[cnt].length, | ||
849 | urb->interval, frame, true); | ||
850 | } | ||
851 | break; | ||
852 | default: | ||
853 | break; | ||
854 | } | ||
855 | |||
856 | /* | ||
857 | * set the state of URB | ||
858 | * control pipe:3 states -- setup,data,status | ||
859 | * interrupt and bulk pipe:1 state -- data | ||
860 | */ | ||
861 | urb->pipe &= ~0x1f; | ||
862 | urb->pipe |= urb_state & 0x1f; | ||
863 | |||
864 | urb_priv->state = URB_INPROGRESS; | ||
865 | |||
866 | if (!ed->td_head) { | ||
867 | ed->state = FHCI_ED_OPER; | ||
868 | switch (ed->mode) { | ||
869 | case FHCI_TF_CTRL: | ||
870 | list_add(&ed->node, &fhci->hc_list->ctrl_list); | ||
871 | break; | ||
872 | case FHCI_TF_BULK: | ||
873 | list_add(&ed->node, &fhci->hc_list->bulk_list); | ||
874 | break; | ||
875 | case FHCI_TF_INTR: | ||
876 | list_add(&ed->node, &fhci->hc_list->intr_list); | ||
877 | break; | ||
878 | case FHCI_TF_ISO: | ||
879 | list_add(&ed->node, &fhci->hc_list->iso_list); | ||
880 | break; | ||
881 | default: | ||
882 | break; | ||
883 | } | ||
884 | } | ||
885 | |||
886 | fhci_add_tds_to_ed(ed, urb_priv->tds, urb_priv->num_of_tds); | ||
887 | fhci->active_urbs++; | ||
888 | } | ||
diff --git a/drivers/usb/host/fhci-tds.c b/drivers/usb/host/fhci-tds.c new file mode 100644 index 000000000000..b40332290319 --- /dev/null +++ b/drivers/usb/host/fhci-tds.c | |||
@@ -0,0 +1,626 @@ | |||
1 | /* | ||
2 | * Freescale QUICC Engine USB Host Controller Driver | ||
3 | * | ||
4 | * Copyright (c) Freescale Semicondutor, Inc. 2006. | ||
5 | * Shlomi Gridish <gridish@freescale.com> | ||
6 | * Jerry Huang <Chang-Ming.Huang@freescale.com> | ||
7 | * Copyright (c) Logic Product Development, Inc. 2007 | ||
8 | * Peter Barada <peterb@logicpd.com> | ||
9 | * Copyright (c) MontaVista Software, Inc. 2008. | ||
10 | * Anton Vorontsov <avorontsov@ru.mvista.com> | ||
11 | * | ||
12 | * This program is free software; you can redistribute it and/or modify it | ||
13 | * under the terms of the GNU General Public License as published by the | ||
14 | * Free Software Foundation; either version 2 of the License, or (at your | ||
15 | * option) any later version. | ||
16 | */ | ||
17 | |||
18 | #include <linux/kernel.h> | ||
19 | #include <linux/types.h> | ||
20 | #include <linux/errno.h> | ||
21 | #include <linux/list.h> | ||
22 | #include <linux/io.h> | ||
23 | #include <linux/usb.h> | ||
24 | #include "../core/hcd.h" | ||
25 | #include "fhci.h" | ||
26 | |||
27 | #define DUMMY_BD_BUFFER 0xdeadbeef | ||
28 | #define DUMMY2_BD_BUFFER 0xbaadf00d | ||
29 | |||
30 | /* Transaction Descriptors bits */ | ||
31 | #define TD_R 0x8000 /* ready bit */ | ||
32 | #define TD_W 0x2000 /* wrap bit */ | ||
33 | #define TD_I 0x1000 /* interrupt on completion */ | ||
34 | #define TD_L 0x0800 /* last */ | ||
35 | #define TD_TC 0x0400 /* transmit CRC */ | ||
36 | #define TD_CNF 0x0200 /* CNF - Must be always 1 */ | ||
37 | #define TD_LSP 0x0100 /* Low-speed transaction */ | ||
38 | #define TD_PID 0x00c0 /* packet id */ | ||
39 | #define TD_RXER 0x0020 /* Rx error or not */ | ||
40 | |||
41 | #define TD_NAK 0x0010 /* No ack. */ | ||
42 | #define TD_STAL 0x0008 /* Stall recieved */ | ||
43 | #define TD_TO 0x0004 /* time out */ | ||
44 | #define TD_UN 0x0002 /* underrun */ | ||
45 | #define TD_NO 0x0010 /* Rx Non Octet Aligned Packet */ | ||
46 | #define TD_AB 0x0008 /* Frame Aborted */ | ||
47 | #define TD_CR 0x0004 /* CRC Error */ | ||
48 | #define TD_OV 0x0002 /* Overrun */ | ||
49 | #define TD_BOV 0x0001 /* Buffer Overrun */ | ||
50 | |||
51 | #define TD_ERRORS (TD_NAK | TD_STAL | TD_TO | TD_UN | \ | ||
52 | TD_NO | TD_AB | TD_CR | TD_OV | TD_BOV) | ||
53 | |||
54 | #define TD_PID_DATA0 0x0080 /* Data 0 toggle */ | ||
55 | #define TD_PID_DATA1 0x00c0 /* Data 1 toggle */ | ||
56 | #define TD_PID_TOGGLE 0x00c0 /* Data 0/1 toggle mask */ | ||
57 | |||
58 | #define TD_TOK_SETUP 0x0000 | ||
59 | #define TD_TOK_OUT 0x4000 | ||
60 | #define TD_TOK_IN 0x8000 | ||
61 | #define TD_ISO 0x1000 | ||
62 | #define TD_ENDP 0x0780 | ||
63 | #define TD_ADDR 0x007f | ||
64 | |||
65 | #define TD_ENDP_SHIFT 7 | ||
66 | |||
67 | struct usb_td { | ||
68 | __be16 status; | ||
69 | __be16 length; | ||
70 | __be32 buf_ptr; | ||
71 | __be16 extra; | ||
72 | __be16 reserved; | ||
73 | }; | ||
74 | |||
75 | static struct usb_td __iomem *next_bd(struct usb_td __iomem *base, | ||
76 | struct usb_td __iomem *td, | ||
77 | u16 status) | ||
78 | { | ||
79 | if (status & TD_W) | ||
80 | return base; | ||
81 | else | ||
82 | return ++td; | ||
83 | } | ||
84 | |||
85 | void fhci_push_dummy_bd(struct endpoint *ep) | ||
86 | { | ||
87 | if (ep->already_pushed_dummy_bd == false) { | ||
88 | u16 td_status = in_be16(&ep->empty_td->status); | ||
89 | |||
90 | out_be32(&ep->empty_td->buf_ptr, DUMMY_BD_BUFFER); | ||
91 | /* get the next TD in the ring */ | ||
92 | ep->empty_td = next_bd(ep->td_base, ep->empty_td, td_status); | ||
93 | ep->already_pushed_dummy_bd = true; | ||
94 | } | ||
95 | } | ||
96 | |||
97 | /* destroy an USB endpoint */ | ||
98 | void fhci_ep0_free(struct fhci_usb *usb) | ||
99 | { | ||
100 | struct endpoint *ep; | ||
101 | int size; | ||
102 | |||
103 | ep = usb->ep0; | ||
104 | if (ep) { | ||
105 | if (ep->td_base) | ||
106 | cpm_muram_free(cpm_muram_offset(ep->td_base)); | ||
107 | |||
108 | if (ep->conf_frame_Q) { | ||
109 | size = cq_howmany(ep->conf_frame_Q); | ||
110 | for (; size; size--) { | ||
111 | struct packet *pkt = cq_get(ep->conf_frame_Q); | ||
112 | |||
113 | kfree(pkt); | ||
114 | } | ||
115 | cq_delete(ep->conf_frame_Q); | ||
116 | } | ||
117 | |||
118 | if (ep->empty_frame_Q) { | ||
119 | size = cq_howmany(ep->empty_frame_Q); | ||
120 | for (; size; size--) { | ||
121 | struct packet *pkt = cq_get(ep->empty_frame_Q); | ||
122 | |||
123 | kfree(pkt); | ||
124 | } | ||
125 | cq_delete(ep->empty_frame_Q); | ||
126 | } | ||
127 | |||
128 | if (ep->dummy_packets_Q) { | ||
129 | size = cq_howmany(ep->dummy_packets_Q); | ||
130 | for (; size; size--) { | ||
131 | u8 *buff = cq_get(ep->dummy_packets_Q); | ||
132 | |||
133 | kfree(buff); | ||
134 | } | ||
135 | cq_delete(ep->dummy_packets_Q); | ||
136 | } | ||
137 | |||
138 | kfree(ep); | ||
139 | usb->ep0 = NULL; | ||
140 | } | ||
141 | } | ||
142 | |||
143 | /* | ||
144 | * create the endpoint structure | ||
145 | * | ||
146 | * arguments: | ||
147 | * usb A pointer to the data structure of the USB | ||
148 | * data_mem The data memory partition(BUS) | ||
149 | * ring_len TD ring length | ||
150 | */ | ||
151 | u32 fhci_create_ep(struct fhci_usb *usb, enum fhci_mem_alloc data_mem, | ||
152 | u32 ring_len) | ||
153 | { | ||
154 | struct endpoint *ep; | ||
155 | struct usb_td __iomem *td; | ||
156 | unsigned long ep_offset; | ||
157 | char *err_for = "enpoint PRAM"; | ||
158 | int ep_mem_size; | ||
159 | u32 i; | ||
160 | |||
161 | /* we need at least 3 TDs in the ring */ | ||
162 | if (!(ring_len > 2)) { | ||
163 | fhci_err(usb->fhci, "illegal TD ring length parameters\n"); | ||
164 | return -EINVAL; | ||
165 | } | ||
166 | |||
167 | ep = kzalloc(sizeof(*ep), GFP_KERNEL); | ||
168 | if (!ep) | ||
169 | return -ENOMEM; | ||
170 | |||
171 | ep_mem_size = ring_len * sizeof(*td) + sizeof(struct fhci_ep_pram); | ||
172 | ep_offset = cpm_muram_alloc(ep_mem_size, 32); | ||
173 | if (IS_ERR_VALUE(ep_offset)) | ||
174 | goto err; | ||
175 | ep->td_base = cpm_muram_addr(ep_offset); | ||
176 | |||
177 | /* zero all queue pointers */ | ||
178 | ep->conf_frame_Q = cq_new(ring_len + 2); | ||
179 | ep->empty_frame_Q = cq_new(ring_len + 2); | ||
180 | ep->dummy_packets_Q = cq_new(ring_len + 2); | ||
181 | if (!ep->conf_frame_Q || !ep->empty_frame_Q || !ep->dummy_packets_Q) { | ||
182 | err_for = "frame_queues"; | ||
183 | goto err; | ||
184 | } | ||
185 | |||
186 | for (i = 0; i < (ring_len + 1); i++) { | ||
187 | struct packet *pkt; | ||
188 | u8 *buff; | ||
189 | |||
190 | pkt = kmalloc(sizeof(*pkt), GFP_KERNEL); | ||
191 | if (!pkt) { | ||
192 | err_for = "frame"; | ||
193 | goto err; | ||
194 | } | ||
195 | |||
196 | buff = kmalloc(1028 * sizeof(*buff), GFP_KERNEL); | ||
197 | if (!buff) { | ||
198 | kfree(pkt); | ||
199 | err_for = "buffer"; | ||
200 | goto err; | ||
201 | } | ||
202 | cq_put(ep->empty_frame_Q, pkt); | ||
203 | cq_put(ep->dummy_packets_Q, buff); | ||
204 | } | ||
205 | |||
206 | /* we put the endpoint parameter RAM right behind the TD ring */ | ||
207 | ep->ep_pram_ptr = (void __iomem *)ep->td_base + sizeof(*td) * ring_len; | ||
208 | |||
209 | ep->conf_td = ep->td_base; | ||
210 | ep->empty_td = ep->td_base; | ||
211 | |||
212 | ep->already_pushed_dummy_bd = false; | ||
213 | |||
214 | /* initialize tds */ | ||
215 | td = ep->td_base; | ||
216 | for (i = 0; i < ring_len; i++) { | ||
217 | out_be32(&td->buf_ptr, 0); | ||
218 | out_be16(&td->status, 0); | ||
219 | out_be16(&td->length, 0); | ||
220 | out_be16(&td->extra, 0); | ||
221 | td++; | ||
222 | } | ||
223 | td--; | ||
224 | out_be16(&td->status, TD_W); /* for last TD set Wrap bit */ | ||
225 | out_be16(&td->length, 0); | ||
226 | |||
227 | /* endpoint structure has been created */ | ||
228 | usb->ep0 = ep; | ||
229 | |||
230 | return 0; | ||
231 | err: | ||
232 | fhci_ep0_free(usb); | ||
233 | kfree(ep); | ||
234 | fhci_err(usb->fhci, "no memory for the %s\n", err_for); | ||
235 | return -ENOMEM; | ||
236 | } | ||
237 | |||
238 | /* | ||
239 | * initialize the endpoint register according to the given parameters | ||
240 | * | ||
241 | * artuments: | ||
242 | * usb A pointer to the data strucutre of the USB | ||
243 | * ep A pointer to the endpoint structre | ||
244 | * data_mem The data memory partition(BUS) | ||
245 | */ | ||
246 | void fhci_init_ep_registers(struct fhci_usb *usb, struct endpoint *ep, | ||
247 | enum fhci_mem_alloc data_mem) | ||
248 | { | ||
249 | u8 rt; | ||
250 | |||
251 | /* set the endpoint registers according to the endpoint */ | ||
252 | out_be16(&usb->fhci->regs->usb_ep[0], | ||
253 | USB_TRANS_CTR | USB_EP_MF | USB_EP_RTE); | ||
254 | out_be16(&usb->fhci->pram->ep_ptr[0], | ||
255 | cpm_muram_offset(ep->ep_pram_ptr)); | ||
256 | |||
257 | rt = (BUS_MODE_BO_BE | BUS_MODE_GBL); | ||
258 | #ifdef MULTI_DATA_BUS | ||
259 | if (data_mem == MEM_SECONDARY) | ||
260 | rt |= BUS_MODE_DTB; | ||
261 | #endif | ||
262 | out_8(&ep->ep_pram_ptr->rx_func_code, rt); | ||
263 | out_8(&ep->ep_pram_ptr->tx_func_code, rt); | ||
264 | out_be16(&ep->ep_pram_ptr->rx_buff_len, 1028); | ||
265 | out_be16(&ep->ep_pram_ptr->rx_base, 0); | ||
266 | out_be16(&ep->ep_pram_ptr->tx_base, cpm_muram_offset(ep->td_base)); | ||
267 | out_be16(&ep->ep_pram_ptr->rx_bd_ptr, 0); | ||
268 | out_be16(&ep->ep_pram_ptr->tx_bd_ptr, cpm_muram_offset(ep->td_base)); | ||
269 | out_be32(&ep->ep_pram_ptr->tx_state, 0); | ||
270 | } | ||
271 | |||
272 | /* | ||
273 | * Collect the submitted frames and inform the application about them | ||
274 | * It is also prepearing the TDs for new frames. If the Tx interrupts | ||
275 | * are diabled, the application should call that routine to get | ||
276 | * confirmation about the submitted frames. Otherwise, the routine is | ||
277 | * called frome the interrupt service routine during the Tx interrupt. | ||
278 | * In that case the application is informed by calling the application | ||
279 | * specific 'fhci_transaction_confirm' routine | ||
280 | */ | ||
281 | static void fhci_td_transaction_confirm(struct fhci_usb *usb) | ||
282 | { | ||
283 | struct endpoint *ep = usb->ep0; | ||
284 | struct packet *pkt; | ||
285 | struct usb_td __iomem *td; | ||
286 | u16 extra_data; | ||
287 | u16 td_status; | ||
288 | u16 td_length; | ||
289 | u32 buf; | ||
290 | |||
291 | /* | ||
292 | * collect transmitted BDs from the chip. The routine clears all BDs | ||
293 | * with R bit = 0 and the pointer to data buffer is not NULL, that is | ||
294 | * BDs which point to the transmitted data buffer | ||
295 | */ | ||
296 | while (1) { | ||
297 | td = ep->conf_td; | ||
298 | td_status = in_be16(&td->status); | ||
299 | td_length = in_be16(&td->length); | ||
300 | buf = in_be32(&td->buf_ptr); | ||
301 | extra_data = in_be16(&td->extra); | ||
302 | |||
303 | /* check if the TD is empty */ | ||
304 | if (!(!(td_status & TD_R) && ((td_status & ~TD_W) || buf))) | ||
305 | break; | ||
306 | /* check if it is a dummy buffer */ | ||
307 | else if ((buf == DUMMY_BD_BUFFER) && !(td_status & ~TD_W)) | ||
308 | break; | ||
309 | |||
310 | /* mark TD as empty */ | ||
311 | clrbits16(&td->status, ~TD_W); | ||
312 | out_be16(&td->length, 0); | ||
313 | out_be32(&td->buf_ptr, 0); | ||
314 | out_be16(&td->extra, 0); | ||
315 | /* advance the TD pointer */ | ||
316 | ep->conf_td = next_bd(ep->td_base, ep->conf_td, td_status); | ||
317 | |||
318 | /* check if it is a dummy buffer(type2) */ | ||
319 | if ((buf == DUMMY2_BD_BUFFER) && !(td_status & ~TD_W)) | ||
320 | continue; | ||
321 | |||
322 | pkt = cq_get(ep->conf_frame_Q); | ||
323 | if (!pkt) | ||
324 | fhci_err(usb->fhci, "no frame to confirm\n"); | ||
325 | |||
326 | if (td_status & TD_ERRORS) { | ||
327 | if (td_status & TD_RXER) { | ||
328 | if (td_status & TD_CR) | ||
329 | pkt->status = USB_TD_RX_ER_CRC; | ||
330 | else if (td_status & TD_AB) | ||
331 | pkt->status = USB_TD_RX_ER_BITSTUFF; | ||
332 | else if (td_status & TD_OV) | ||
333 | pkt->status = USB_TD_RX_ER_OVERUN; | ||
334 | else if (td_status & TD_BOV) | ||
335 | pkt->status = USB_TD_RX_DATA_OVERUN; | ||
336 | else if (td_status & TD_NO) | ||
337 | pkt->status = USB_TD_RX_ER_NONOCT; | ||
338 | else | ||
339 | fhci_err(usb->fhci, "illegal error " | ||
340 | "occured\n"); | ||
341 | } else if (td_status & TD_NAK) | ||
342 | pkt->status = USB_TD_TX_ER_NAK; | ||
343 | else if (td_status & TD_TO) | ||
344 | pkt->status = USB_TD_TX_ER_TIMEOUT; | ||
345 | else if (td_status & TD_UN) | ||
346 | pkt->status = USB_TD_TX_ER_UNDERUN; | ||
347 | else if (td_status & TD_STAL) | ||
348 | pkt->status = USB_TD_TX_ER_STALL; | ||
349 | else | ||
350 | fhci_err(usb->fhci, "illegal error occured\n"); | ||
351 | } else if ((extra_data & TD_TOK_IN) && | ||
352 | pkt->len > td_length - CRC_SIZE) { | ||
353 | pkt->status = USB_TD_RX_DATA_UNDERUN; | ||
354 | } | ||
355 | |||
356 | if (extra_data & TD_TOK_IN) | ||
357 | pkt->len = td_length - CRC_SIZE; | ||
358 | else if (pkt->info & PKT_ZLP) | ||
359 | pkt->len = 0; | ||
360 | else | ||
361 | pkt->len = td_length; | ||
362 | |||
363 | fhci_transaction_confirm(usb, pkt); | ||
364 | } | ||
365 | } | ||
366 | |||
367 | /* | ||
368 | * Submitting a data frame to a specified endpoint of a USB device | ||
369 | * The frame is put in the driver's transmit queue for this endpoint | ||
370 | * | ||
371 | * Arguments: | ||
372 | * usb A pointer to the USB structure | ||
373 | * pkt A pointer to the user frame structure | ||
374 | * trans_type Transaction tyep - IN,OUT or SETUP | ||
375 | * dest_addr Device address - 0~127 | ||
376 | * dest_ep Endpoint number of the device - 0~16 | ||
377 | * trans_mode Pipe type - ISO,Interrupt,bulk or control | ||
378 | * dest_speed USB speed - Low speed or FULL speed | ||
379 | * data_toggle Data sequence toggle - 0 or 1 | ||
380 | */ | ||
381 | u32 fhci_host_transaction(struct fhci_usb *usb, | ||
382 | struct packet *pkt, | ||
383 | enum fhci_ta_type trans_type, | ||
384 | u8 dest_addr, | ||
385 | u8 dest_ep, | ||
386 | enum fhci_tf_mode trans_mode, | ||
387 | enum fhci_speed dest_speed, u8 data_toggle) | ||
388 | { | ||
389 | struct endpoint *ep = usb->ep0; | ||
390 | struct usb_td __iomem *td; | ||
391 | u16 extra_data; | ||
392 | u16 td_status; | ||
393 | |||
394 | fhci_usb_disable_interrupt(usb); | ||
395 | /* start from the next BD that should be filled */ | ||
396 | td = ep->empty_td; | ||
397 | td_status = in_be16(&td->status); | ||
398 | |||
399 | if (td_status & TD_R && in_be16(&td->length)) { | ||
400 | /* if the TD is not free */ | ||
401 | fhci_usb_enable_interrupt(usb); | ||
402 | return -1; | ||
403 | } | ||
404 | |||
405 | /* get the next TD in the ring */ | ||
406 | ep->empty_td = next_bd(ep->td_base, ep->empty_td, td_status); | ||
407 | fhci_usb_enable_interrupt(usb); | ||
408 | pkt->priv_data = td; | ||
409 | out_be32(&td->buf_ptr, virt_to_phys(pkt->data)); | ||
410 | /* sets up transaction parameters - addr,endp,dir,and type */ | ||
411 | extra_data = (dest_ep << TD_ENDP_SHIFT) | dest_addr; | ||
412 | switch (trans_type) { | ||
413 | case FHCI_TA_IN: | ||
414 | extra_data |= TD_TOK_IN; | ||
415 | break; | ||
416 | case FHCI_TA_OUT: | ||
417 | extra_data |= TD_TOK_OUT; | ||
418 | break; | ||
419 | case FHCI_TA_SETUP: | ||
420 | extra_data |= TD_TOK_SETUP; | ||
421 | break; | ||
422 | } | ||
423 | if (trans_mode == FHCI_TF_ISO) | ||
424 | extra_data |= TD_ISO; | ||
425 | out_be16(&td->extra, extra_data); | ||
426 | |||
427 | /* sets up the buffer descriptor */ | ||
428 | td_status = ((td_status & TD_W) | TD_R | TD_L | TD_I | TD_CNF); | ||
429 | if (!(pkt->info & PKT_NO_CRC)) | ||
430 | td_status |= TD_TC; | ||
431 | |||
432 | switch (trans_type) { | ||
433 | case FHCI_TA_IN: | ||
434 | if (data_toggle) | ||
435 | pkt->info |= PKT_PID_DATA1; | ||
436 | else | ||
437 | pkt->info |= PKT_PID_DATA0; | ||
438 | break; | ||
439 | default: | ||
440 | if (data_toggle) { | ||
441 | td_status |= TD_PID_DATA1; | ||
442 | pkt->info |= PKT_PID_DATA1; | ||
443 | } else { | ||
444 | td_status |= TD_PID_DATA0; | ||
445 | pkt->info |= PKT_PID_DATA0; | ||
446 | } | ||
447 | break; | ||
448 | } | ||
449 | |||
450 | if ((dest_speed == FHCI_LOW_SPEED) && | ||
451 | (usb->port_status == FHCI_PORT_FULL)) | ||
452 | td_status |= TD_LSP; | ||
453 | |||
454 | out_be16(&td->status, td_status); | ||
455 | |||
456 | /* set up buffer length */ | ||
457 | if (trans_type == FHCI_TA_IN) | ||
458 | out_be16(&td->length, pkt->len + CRC_SIZE); | ||
459 | else | ||
460 | out_be16(&td->length, pkt->len); | ||
461 | |||
462 | /* put the frame to the confirmation queue */ | ||
463 | cq_put(ep->conf_frame_Q, pkt); | ||
464 | |||
465 | if (cq_howmany(ep->conf_frame_Q) == 1) | ||
466 | out_8(&usb->fhci->regs->usb_comm, USB_CMD_STR_FIFO); | ||
467 | |||
468 | return 0; | ||
469 | } | ||
470 | |||
471 | /* Reset the Tx BD ring */ | ||
472 | void fhci_flush_bds(struct fhci_usb *usb) | ||
473 | { | ||
474 | u16 extra_data; | ||
475 | u16 td_status; | ||
476 | u32 buf; | ||
477 | struct usb_td __iomem *td; | ||
478 | struct endpoint *ep = usb->ep0; | ||
479 | |||
480 | td = ep->td_base; | ||
481 | while (1) { | ||
482 | td_status = in_be16(&td->status); | ||
483 | buf = in_be32(&td->buf_ptr); | ||
484 | extra_data = in_be16(&td->extra); | ||
485 | |||
486 | /* if the TD is not empty - we'll confirm it as Timeout */ | ||
487 | if (td_status & TD_R) | ||
488 | out_be16(&td->status, (td_status & ~TD_R) | TD_TO); | ||
489 | /* if this TD is dummy - let's skip this TD */ | ||
490 | else if (in_be32(&td->buf_ptr) == DUMMY_BD_BUFFER) | ||
491 | out_be32(&td->buf_ptr, DUMMY2_BD_BUFFER); | ||
492 | /* if this is the last TD - break */ | ||
493 | if (td_status & TD_W) | ||
494 | break; | ||
495 | |||
496 | td++; | ||
497 | } | ||
498 | |||
499 | fhci_td_transaction_confirm(usb); | ||
500 | |||
501 | td = ep->td_base; | ||
502 | do { | ||
503 | out_be16(&td->status, 0); | ||
504 | out_be16(&td->length, 0); | ||
505 | out_be32(&td->buf_ptr, 0); | ||
506 | out_be16(&td->extra, 0); | ||
507 | td++; | ||
508 | } while (!(in_be16(&td->status) & TD_W)); | ||
509 | out_be16(&td->status, TD_W); /* for last TD set Wrap bit */ | ||
510 | out_be16(&td->length, 0); | ||
511 | out_be32(&td->buf_ptr, 0); | ||
512 | out_be16(&td->extra, 0); | ||
513 | |||
514 | out_be16(&ep->ep_pram_ptr->tx_bd_ptr, | ||
515 | in_be16(&ep->ep_pram_ptr->tx_base)); | ||
516 | out_be32(&ep->ep_pram_ptr->tx_state, 0); | ||
517 | out_be16(&ep->ep_pram_ptr->tx_cnt, 0); | ||
518 | ep->empty_td = ep->td_base; | ||
519 | ep->conf_td = ep->td_base; | ||
520 | } | ||
521 | |||
522 | /* | ||
523 | * Flush all transmitted packets from TDs in the actual frame. | ||
524 | * This routine is called when something wrong with the controller and | ||
525 | * we want to get rid of the actual frame and start again next frame | ||
526 | */ | ||
527 | void fhci_flush_actual_frame(struct fhci_usb *usb) | ||
528 | { | ||
529 | u8 mode; | ||
530 | u16 tb_ptr; | ||
531 | u16 extra_data; | ||
532 | u16 td_status; | ||
533 | u32 buf_ptr; | ||
534 | struct usb_td __iomem *td; | ||
535 | struct endpoint *ep = usb->ep0; | ||
536 | |||
537 | /* disable the USB controller */ | ||
538 | mode = in_8(&usb->fhci->regs->usb_mod); | ||
539 | out_8(&usb->fhci->regs->usb_mod, mode & ~USB_MODE_EN); | ||
540 | |||
541 | tb_ptr = in_be16(&ep->ep_pram_ptr->tx_bd_ptr); | ||
542 | td = cpm_muram_addr(tb_ptr); | ||
543 | td_status = in_be16(&td->status); | ||
544 | buf_ptr = in_be32(&td->buf_ptr); | ||
545 | extra_data = in_be16(&td->extra); | ||
546 | do { | ||
547 | if (td_status & TD_R) { | ||
548 | out_be16(&td->status, (td_status & ~TD_R) | TD_TO); | ||
549 | } else { | ||
550 | out_be32(&td->buf_ptr, 0); | ||
551 | ep->already_pushed_dummy_bd = false; | ||
552 | break; | ||
553 | } | ||
554 | |||
555 | /* advance the TD pointer */ | ||
556 | td = next_bd(ep->td_base, td, td_status); | ||
557 | td_status = in_be16(&td->status); | ||
558 | buf_ptr = in_be32(&td->buf_ptr); | ||
559 | extra_data = in_be16(&td->extra); | ||
560 | } while ((td_status & TD_R) || buf_ptr); | ||
561 | |||
562 | fhci_td_transaction_confirm(usb); | ||
563 | |||
564 | out_be16(&ep->ep_pram_ptr->tx_bd_ptr, | ||
565 | in_be16(&ep->ep_pram_ptr->tx_base)); | ||
566 | out_be32(&ep->ep_pram_ptr->tx_state, 0); | ||
567 | out_be16(&ep->ep_pram_ptr->tx_cnt, 0); | ||
568 | ep->empty_td = ep->td_base; | ||
569 | ep->conf_td = ep->td_base; | ||
570 | |||
571 | usb->actual_frame->frame_status = FRAME_TIMER_END_TRANSMISSION; | ||
572 | |||
573 | /* reset the event register */ | ||
574 | out_be16(&usb->fhci->regs->usb_event, 0xffff); | ||
575 | /* enable the USB controller */ | ||
576 | out_8(&usb->fhci->regs->usb_mod, mode | USB_MODE_EN); | ||
577 | } | ||
578 | |||
579 | /* handles Tx confirm and Tx error interrupt */ | ||
580 | void fhci_tx_conf_interrupt(struct fhci_usb *usb) | ||
581 | { | ||
582 | fhci_td_transaction_confirm(usb); | ||
583 | |||
584 | /* | ||
585 | * Schedule another transaction to this frame only if we have | ||
586 | * already confirmed all transaction in the frame. | ||
587 | */ | ||
588 | if (((fhci_get_sof_timer_count(usb) < usb->max_frame_usage) || | ||
589 | (usb->actual_frame->frame_status & FRAME_END_TRANSMISSION)) && | ||
590 | (list_empty(&usb->actual_frame->tds_list))) | ||
591 | fhci_schedule_transactions(usb); | ||
592 | } | ||
593 | |||
594 | void fhci_host_transmit_actual_frame(struct fhci_usb *usb) | ||
595 | { | ||
596 | u16 tb_ptr; | ||
597 | u16 td_status; | ||
598 | struct usb_td __iomem *td; | ||
599 | struct endpoint *ep = usb->ep0; | ||
600 | |||
601 | tb_ptr = in_be16(&ep->ep_pram_ptr->tx_bd_ptr); | ||
602 | td = cpm_muram_addr(tb_ptr); | ||
603 | |||
604 | if (in_be32(&td->buf_ptr) == DUMMY_BD_BUFFER) { | ||
605 | struct usb_td __iomem *old_td = td; | ||
606 | |||
607 | ep->already_pushed_dummy_bd = false; | ||
608 | td_status = in_be16(&td->status); | ||
609 | /* gets the next TD in the ring */ | ||
610 | td = next_bd(ep->td_base, td, td_status); | ||
611 | tb_ptr = cpm_muram_offset(td); | ||
612 | out_be16(&ep->ep_pram_ptr->tx_bd_ptr, tb_ptr); | ||
613 | |||
614 | /* start transmit only if we have something in the TDs */ | ||
615 | if (in_be16(&td->status) & TD_R) | ||
616 | out_8(&usb->fhci->regs->usb_comm, USB_CMD_STR_FIFO); | ||
617 | |||
618 | if (in_be32(&ep->conf_td->buf_ptr) == DUMMY_BD_BUFFER) { | ||
619 | out_be32(&old_td->buf_ptr, 0); | ||
620 | ep->conf_td = next_bd(ep->td_base, ep->conf_td, | ||
621 | td_status); | ||
622 | } else { | ||
623 | out_be32(&old_td->buf_ptr, DUMMY2_BD_BUFFER); | ||
624 | } | ||
625 | } | ||
626 | } | ||
diff --git a/drivers/usb/host/fhci.h b/drivers/usb/host/fhci.h new file mode 100644 index 000000000000..7116284ed21a --- /dev/null +++ b/drivers/usb/host/fhci.h | |||
@@ -0,0 +1,607 @@ | |||
1 | /* | ||
2 | * Freescale QUICC Engine USB Host Controller Driver | ||
3 | * | ||
4 | * Copyright (c) Freescale Semicondutor, Inc. 2006. | ||
5 | * Shlomi Gridish <gridish@freescale.com> | ||
6 | * Jerry Huang <Chang-Ming.Huang@freescale.com> | ||
7 | * Copyright (c) Logic Product Development, Inc. 2007 | ||
8 | * Peter Barada <peterb@logicpd.com> | ||
9 | * Copyright (c) MontaVista Software, Inc. 2008. | ||
10 | * Anton Vorontsov <avorontsov@ru.mvista.com> | ||
11 | * | ||
12 | * This program is free software; you can redistribute it and/or modify it | ||
13 | * under the terms of the GNU General Public License as published by the | ||
14 | * Free Software Foundation; either version 2 of the License, or (at your | ||
15 | * option) any later version. | ||
16 | */ | ||
17 | |||
18 | #ifndef __FHCI_H | ||
19 | #define __FHCI_H | ||
20 | |||
21 | #include <linux/kernel.h> | ||
22 | #include <linux/types.h> | ||
23 | #include <linux/spinlock.h> | ||
24 | #include <linux/interrupt.h> | ||
25 | #include <linux/kfifo.h> | ||
26 | #include <linux/io.h> | ||
27 | #include <linux/usb.h> | ||
28 | #include <asm/qe.h> | ||
29 | #include "../core/hcd.h" | ||
30 | |||
31 | #define USB_CLOCK 48000000 | ||
32 | |||
33 | #define FHCI_PRAM_SIZE 0x100 | ||
34 | |||
35 | #define MAX_EDS 32 | ||
36 | #define MAX_TDS 32 | ||
37 | |||
38 | |||
39 | /* CRC16 field size */ | ||
40 | #define CRC_SIZE 2 | ||
41 | |||
42 | /* USB protocol overhead for each frame transmitted from the host */ | ||
43 | #define PROTOCOL_OVERHEAD 7 | ||
44 | |||
45 | /* Packet structure, info field */ | ||
46 | #define PKT_PID_DATA0 0x80000000 /* PID - Data toggle zero */ | ||
47 | #define PKT_PID_DATA1 0x40000000 /* PID - Data toggle one */ | ||
48 | #define PKT_PID_SETUP 0x20000000 /* PID - Setup bit */ | ||
49 | #define PKT_SETUP_STATUS 0x10000000 /* Setup status bit */ | ||
50 | #define PKT_SETADDR_STATUS 0x08000000 /* Set address status bit */ | ||
51 | #define PKT_SET_HOST_LAST 0x04000000 /* Last data packet */ | ||
52 | #define PKT_HOST_DATA 0x02000000 /* Data packet */ | ||
53 | #define PKT_FIRST_IN_FRAME 0x01000000 /* First packet in the frame */ | ||
54 | #define PKT_TOKEN_FRAME 0x00800000 /* Token packet */ | ||
55 | #define PKT_ZLP 0x00400000 /* Zero length packet */ | ||
56 | #define PKT_IN_TOKEN_FRAME 0x00200000 /* IN token packet */ | ||
57 | #define PKT_OUT_TOKEN_FRAME 0x00100000 /* OUT token packet */ | ||
58 | #define PKT_SETUP_TOKEN_FRAME 0x00080000 /* SETUP token packet */ | ||
59 | #define PKT_STALL_FRAME 0x00040000 /* STALL packet */ | ||
60 | #define PKT_NACK_FRAME 0x00020000 /* NACK packet */ | ||
61 | #define PKT_NO_PID 0x00010000 /* No PID */ | ||
62 | #define PKT_NO_CRC 0x00008000 /* don't append CRC */ | ||
63 | #define PKT_HOST_COMMAND 0x00004000 /* Host command packet */ | ||
64 | #define PKT_DUMMY_PACKET 0x00002000 /* Dummy packet, used for mmm */ | ||
65 | #define PKT_LOW_SPEED_PACKET 0x00001000 /* Low-Speed packet */ | ||
66 | |||
67 | #define TRANS_OK (0) | ||
68 | #define TRANS_INPROGRESS (-1) | ||
69 | #define TRANS_DISCARD (-2) | ||
70 | #define TRANS_FAIL (-3) | ||
71 | |||
72 | #define PS_INT 0 | ||
73 | #define PS_DISCONNECTED 1 | ||
74 | #define PS_CONNECTED 2 | ||
75 | #define PS_READY 3 | ||
76 | #define PS_MISSING 4 | ||
77 | |||
78 | /* Transfer Descriptor status field */ | ||
79 | #define USB_TD_OK 0x00000000 /* TD transmited or received ok */ | ||
80 | #define USB_TD_INPROGRESS 0x80000000 /* TD is being transmitted */ | ||
81 | #define USB_TD_RX_ER_NONOCT 0x40000000 /* Tx Non Octet Aligned Packet */ | ||
82 | #define USB_TD_RX_ER_BITSTUFF 0x20000000 /* Frame Aborted-Received pkt */ | ||
83 | #define USB_TD_RX_ER_CRC 0x10000000 /* CRC error */ | ||
84 | #define USB_TD_RX_ER_OVERUN 0x08000000 /* Over - run occured */ | ||
85 | #define USB_TD_RX_ER_PID 0x04000000 /* wrong PID received */ | ||
86 | #define USB_TD_RX_DATA_UNDERUN 0x02000000 /* shorter than expected */ | ||
87 | #define USB_TD_RX_DATA_OVERUN 0x01000000 /* longer than expected */ | ||
88 | #define USB_TD_TX_ER_NAK 0x00800000 /* NAK handshake */ | ||
89 | #define USB_TD_TX_ER_STALL 0x00400000 /* STALL handshake */ | ||
90 | #define USB_TD_TX_ER_TIMEOUT 0x00200000 /* transmit time out */ | ||
91 | #define USB_TD_TX_ER_UNDERUN 0x00100000 /* transmit underrun */ | ||
92 | |||
93 | #define USB_TD_ERROR (USB_TD_RX_ER_NONOCT | USB_TD_RX_ER_BITSTUFF | \ | ||
94 | USB_TD_RX_ER_CRC | USB_TD_RX_ER_OVERUN | USB_TD_RX_ER_PID | \ | ||
95 | USB_TD_RX_DATA_UNDERUN | USB_TD_RX_DATA_OVERUN | \ | ||
96 | USB_TD_TX_ER_NAK | USB_TD_TX_ER_STALL | \ | ||
97 | USB_TD_TX_ER_TIMEOUT | USB_TD_TX_ER_UNDERUN) | ||
98 | |||
99 | /* Transfer Descriptor toggle field */ | ||
100 | #define USB_TD_TOGGLE_DATA0 0 | ||
101 | #define USB_TD_TOGGLE_DATA1 1 | ||
102 | #define USB_TD_TOGGLE_CARRY 2 | ||
103 | |||
104 | /* #define MULTI_DATA_BUS */ | ||
105 | |||
106 | /* Bus mode register RBMR/TBMR */ | ||
107 | #define BUS_MODE_GBL 0x20 /* Global snooping */ | ||
108 | #define BUS_MODE_BO 0x18 /* Byte ordering */ | ||
109 | #define BUS_MODE_BO_BE 0x10 /* Byte ordering - Big-endian */ | ||
110 | #define BUS_MODE_DTB 0x02 /* Data bus */ | ||
111 | |||
112 | /* FHCI QE USB Register Description */ | ||
113 | |||
114 | /* USB Mode Register bit define */ | ||
115 | #define USB_MODE_EN 0x01 | ||
116 | #define USB_MODE_HOST 0x02 | ||
117 | #define USB_MODE_TEST 0x04 | ||
118 | #define USB_MODE_SFTE 0x08 | ||
119 | #define USB_MODE_RESUME 0x40 | ||
120 | #define USB_MODE_LSS 0x80 | ||
121 | |||
122 | /* USB Slave Address Register Mask */ | ||
123 | #define USB_SLVADDR_MASK 0x7F | ||
124 | |||
125 | /* USB Endpoint register define */ | ||
126 | #define USB_EPNUM_MASK 0xF000 | ||
127 | #define USB_EPNUM_SHIFT 12 | ||
128 | |||
129 | #define USB_TRANS_MODE_SHIFT 8 | ||
130 | #define USB_TRANS_CTR 0x0000 | ||
131 | #define USB_TRANS_INT 0x0100 | ||
132 | #define USB_TRANS_BULK 0x0200 | ||
133 | #define USB_TRANS_ISO 0x0300 | ||
134 | |||
135 | #define USB_EP_MF 0x0020 | ||
136 | #define USB_EP_RTE 0x0010 | ||
137 | |||
138 | #define USB_THS_SHIFT 2 | ||
139 | #define USB_THS_MASK 0x000c | ||
140 | #define USB_THS_NORMAL 0x0 | ||
141 | #define USB_THS_IGNORE_IN 0x0004 | ||
142 | #define USB_THS_NACK 0x0008 | ||
143 | #define USB_THS_STALL 0x000c | ||
144 | |||
145 | #define USB_RHS_SHIFT 0 | ||
146 | #define USB_RHS_MASK 0x0003 | ||
147 | #define USB_RHS_NORMAL 0x0 | ||
148 | #define USB_RHS_IGNORE_OUT 0x0001 | ||
149 | #define USB_RHS_NACK 0x0002 | ||
150 | #define USB_RHS_STALL 0x0003 | ||
151 | |||
152 | #define USB_RTHS_MASK 0x000f | ||
153 | |||
154 | /* USB Command Register define */ | ||
155 | #define USB_CMD_STR_FIFO 0x80 | ||
156 | #define USB_CMD_FLUSH_FIFO 0x40 | ||
157 | #define USB_CMD_ISFT 0x20 | ||
158 | #define USB_CMD_DSFT 0x10 | ||
159 | #define USB_CMD_EP_MASK 0x03 | ||
160 | |||
161 | /* USB Event and Mask Register define */ | ||
162 | #define USB_E_MSF_MASK 0x0800 | ||
163 | #define USB_E_SFT_MASK 0x0400 | ||
164 | #define USB_E_RESET_MASK 0x0200 | ||
165 | #define USB_E_IDLE_MASK 0x0100 | ||
166 | #define USB_E_TXE4_MASK 0x0080 | ||
167 | #define USB_E_TXE3_MASK 0x0040 | ||
168 | #define USB_E_TXE2_MASK 0x0020 | ||
169 | #define USB_E_TXE1_MASK 0x0010 | ||
170 | #define USB_E_SOF_MASK 0x0008 | ||
171 | #define USB_E_BSY_MASK 0x0004 | ||
172 | #define USB_E_TXB_MASK 0x0002 | ||
173 | #define USB_E_RXB_MASK 0x0001 | ||
174 | |||
175 | /* Freescale USB Host controller registers */ | ||
176 | struct fhci_regs { | ||
177 | u8 usb_mod; /* mode register */ | ||
178 | u8 usb_addr; /* address register */ | ||
179 | u8 usb_comm; /* command register */ | ||
180 | u8 reserved1[1]; | ||
181 | __be16 usb_ep[4]; /* endpoint register */ | ||
182 | u8 reserved2[4]; | ||
183 | __be16 usb_event; /* event register */ | ||
184 | u8 reserved3[2]; | ||
185 | __be16 usb_mask; /* mask register */ | ||
186 | u8 reserved4[1]; | ||
187 | u8 usb_status; /* status register */ | ||
188 | __be16 usb_sof_tmr; /* Start Of Frame timer */ | ||
189 | u8 reserved5[2]; | ||
190 | __be16 usb_frame_num; /* frame number register */ | ||
191 | u8 reserved6[1]; | ||
192 | }; | ||
193 | |||
194 | /* Freescale USB HOST */ | ||
195 | struct fhci_pram { | ||
196 | __be16 ep_ptr[4]; /* Endpoint porter reg */ | ||
197 | __be32 rx_state; /* Rx internal state */ | ||
198 | __be32 rx_ptr; /* Rx internal data pointer */ | ||
199 | __be16 frame_num; /* Frame number */ | ||
200 | __be16 rx_cnt; /* Rx byte count */ | ||
201 | __be32 rx_temp; /* Rx temp */ | ||
202 | __be32 rx_data_temp; /* Rx data temp */ | ||
203 | __be16 rx_u_ptr; /* Rx microcode return address temp */ | ||
204 | u8 reserved1[2]; /* reserved area */ | ||
205 | __be32 sof_tbl; /* SOF lookup table pointer */ | ||
206 | u8 sof_u_crc_temp; /* SOF micorcode CRC5 temp reg */ | ||
207 | u8 reserved2[0xdb]; | ||
208 | }; | ||
209 | |||
210 | /* Freescale USB Endpoint*/ | ||
211 | struct fhci_ep_pram { | ||
212 | __be16 rx_base; /* Rx BD base address */ | ||
213 | __be16 tx_base; /* Tx BD base address */ | ||
214 | u8 rx_func_code; /* Rx function code */ | ||
215 | u8 tx_func_code; /* Tx function code */ | ||
216 | __be16 rx_buff_len; /* Rx buffer length */ | ||
217 | __be16 rx_bd_ptr; /* Rx BD pointer */ | ||
218 | __be16 tx_bd_ptr; /* Tx BD pointer */ | ||
219 | __be32 tx_state; /* Tx internal state */ | ||
220 | __be32 tx_ptr; /* Tx internal data pointer */ | ||
221 | __be16 tx_crc; /* temp transmit CRC */ | ||
222 | __be16 tx_cnt; /* Tx byte count */ | ||
223 | __be32 tx_temp; /* Tx temp */ | ||
224 | __be16 tx_u_ptr; /* Tx microcode return address temp */ | ||
225 | __be16 reserved; | ||
226 | }; | ||
227 | |||
228 | struct fhci_controller_list { | ||
229 | struct list_head ctrl_list; /* control endpoints */ | ||
230 | struct list_head bulk_list; /* bulk endpoints */ | ||
231 | struct list_head iso_list; /* isochronous endpoints */ | ||
232 | struct list_head intr_list; /* interruput endpoints */ | ||
233 | struct list_head done_list; /* done transfers */ | ||
234 | }; | ||
235 | |||
236 | struct virtual_root_hub { | ||
237 | int dev_num; /* USB address of the root hub */ | ||
238 | u32 feature; /* indicates what feature has been set */ | ||
239 | struct usb_hub_status hub; | ||
240 | struct usb_port_status port; | ||
241 | }; | ||
242 | |||
243 | enum fhci_gpios { | ||
244 | GPIO_USBOE = 0, | ||
245 | GPIO_USBTP, | ||
246 | GPIO_USBTN, | ||
247 | GPIO_USBRP, | ||
248 | GPIO_USBRN, | ||
249 | /* these are optional */ | ||
250 | GPIO_SPEED, | ||
251 | GPIO_POWER, | ||
252 | NUM_GPIOS, | ||
253 | }; | ||
254 | |||
255 | enum fhci_pins { | ||
256 | PIN_USBOE = 0, | ||
257 | PIN_USBTP, | ||
258 | PIN_USBTN, | ||
259 | NUM_PINS, | ||
260 | }; | ||
261 | |||
262 | struct fhci_hcd { | ||
263 | enum qe_clock fullspeed_clk; | ||
264 | enum qe_clock lowspeed_clk; | ||
265 | struct qe_pin *pins[NUM_PINS]; | ||
266 | int gpios[NUM_GPIOS]; | ||
267 | bool alow_gpios[NUM_GPIOS]; | ||
268 | |||
269 | struct fhci_regs __iomem *regs; /* I/O memory used to communicate */ | ||
270 | struct fhci_pram __iomem *pram; /* Parameter RAM */ | ||
271 | struct gtm_timer *timer; | ||
272 | |||
273 | spinlock_t lock; | ||
274 | struct fhci_usb *usb_lld; /* Low-level driver */ | ||
275 | struct virtual_root_hub *vroot_hub; /* the virtual root hub */ | ||
276 | int active_urbs; | ||
277 | struct fhci_controller_list *hc_list; | ||
278 | struct tasklet_struct *process_done_task; /* tasklet for done list */ | ||
279 | |||
280 | struct list_head empty_eds; | ||
281 | struct list_head empty_tds; | ||
282 | |||
283 | #ifdef CONFIG_FHCI_DEBUG | ||
284 | int usb_irq_stat[13]; | ||
285 | struct dentry *dfs_root; | ||
286 | struct dentry *dfs_regs; | ||
287 | struct dentry *dfs_irq_stat; | ||
288 | #endif | ||
289 | }; | ||
290 | |||
291 | #define USB_FRAME_USAGE 90 | ||
292 | #define FRAME_TIME_USAGE (USB_FRAME_USAGE*10) /* frame time usage */ | ||
293 | #define SW_FIX_TIME_BETWEEN_TRANSACTION 150 /* SW */ | ||
294 | #define MAX_BYTES_PER_FRAME (USB_FRAME_USAGE*15) | ||
295 | #define MAX_PERIODIC_FRAME_USAGE 90 | ||
296 | |||
297 | /* transaction type */ | ||
298 | enum fhci_ta_type { | ||
299 | FHCI_TA_IN = 0, /* input transaction */ | ||
300 | FHCI_TA_OUT, /* output transaction */ | ||
301 | FHCI_TA_SETUP, /* setup transaction */ | ||
302 | }; | ||
303 | |||
304 | /* transfer mode */ | ||
305 | enum fhci_tf_mode { | ||
306 | FHCI_TF_CTRL = 0, | ||
307 | FHCI_TF_ISO, | ||
308 | FHCI_TF_BULK, | ||
309 | FHCI_TF_INTR, | ||
310 | }; | ||
311 | |||
312 | enum fhci_speed { | ||
313 | FHCI_FULL_SPEED, | ||
314 | FHCI_LOW_SPEED, | ||
315 | }; | ||
316 | |||
317 | /* endpoint state */ | ||
318 | enum fhci_ed_state { | ||
319 | FHCI_ED_NEW = 0, /* pipe is new */ | ||
320 | FHCI_ED_OPER, /* pipe is operating */ | ||
321 | FHCI_ED_URB_DEL, /* pipe is in hold because urb is being deleted */ | ||
322 | FHCI_ED_SKIP, /* skip this pipe */ | ||
323 | FHCI_ED_HALTED, /* pipe is halted */ | ||
324 | }; | ||
325 | |||
326 | enum fhci_port_status { | ||
327 | FHCI_PORT_POWER_OFF = 0, | ||
328 | FHCI_PORT_DISABLED, | ||
329 | FHCI_PORT_DISCONNECTING, | ||
330 | FHCI_PORT_WAITING, /* waiting for connection */ | ||
331 | FHCI_PORT_FULL, /* full speed connected */ | ||
332 | FHCI_PORT_LOW, /* low speed connected */ | ||
333 | }; | ||
334 | |||
335 | enum fhci_mem_alloc { | ||
336 | MEM_CACHABLE_SYS = 0x00000001, /* primary DDR,cachable */ | ||
337 | MEM_NOCACHE_SYS = 0x00000004, /* primary DDR,non-cachable */ | ||
338 | MEM_SECONDARY = 0x00000002, /* either secondary DDR or SDRAM */ | ||
339 | MEM_PRAM = 0x00000008, /* multi-user RAM identifier */ | ||
340 | }; | ||
341 | |||
342 | /* USB default parameters*/ | ||
343 | #define DEFAULT_RING_LEN 8 | ||
344 | #define DEFAULT_DATA_MEM MEM_CACHABLE_SYS | ||
345 | |||
346 | struct ed { | ||
347 | u8 dev_addr; /* device address */ | ||
348 | u8 ep_addr; /* endpoint address */ | ||
349 | enum fhci_tf_mode mode; /* USB transfer mode */ | ||
350 | enum fhci_speed speed; | ||
351 | unsigned int max_pkt_size; | ||
352 | enum fhci_ed_state state; | ||
353 | struct list_head td_list; /* a list of all queued TD to this pipe */ | ||
354 | struct list_head node; | ||
355 | |||
356 | /* read only parameters, should be cleared upon initialization */ | ||
357 | u8 toggle_carry; /* toggle carry from the last TD submitted */ | ||
358 | u32 last_iso; /* time stamp of last queued ISO transfer */ | ||
359 | struct td *td_head; /* a pointer to the current TD handled */ | ||
360 | }; | ||
361 | |||
362 | struct td { | ||
363 | void *data; /* a pointer to the data buffer */ | ||
364 | unsigned int len; /* length of the data to be submitted */ | ||
365 | unsigned int actual_len; /* actual bytes transfered on this td */ | ||
366 | enum fhci_ta_type type; /* transaction type */ | ||
367 | u8 toggle; /* toggle for next trans. within this TD */ | ||
368 | u16 iso_index; /* ISO transaction index */ | ||
369 | u16 start_frame; /* start frame time stamp */ | ||
370 | u16 interval; /* interval between trans. (for ISO/Intr) */ | ||
371 | u32 status; /* status of the TD */ | ||
372 | struct ed *ed; /* a handle to the corresponding ED */ | ||
373 | struct urb *urb; /* a handle to the corresponding URB */ | ||
374 | bool ioc; /* Inform On Completion */ | ||
375 | struct list_head node; | ||
376 | |||
377 | /* read only parameters should be cleared upon initialization */ | ||
378 | struct packet *pkt; | ||
379 | int nak_cnt; | ||
380 | int error_cnt; | ||
381 | struct list_head frame_lh; | ||
382 | }; | ||
383 | |||
384 | struct packet { | ||
385 | u8 *data; /* packet data */ | ||
386 | u32 len; /* packet length */ | ||
387 | u32 status; /* status of the packet - equivalent to the status | ||
388 | * field for the corresponding structure td */ | ||
389 | u32 info; /* packet information */ | ||
390 | void __iomem *priv_data; /* private data of the driver (TDs or BDs) */ | ||
391 | }; | ||
392 | |||
393 | /* struct for each URB */ | ||
394 | #define URB_INPROGRESS 0 | ||
395 | #define URB_DEL 1 | ||
396 | |||
397 | /* URB states (state field) */ | ||
398 | #define US_BULK 0 | ||
399 | #define US_BULK0 1 | ||
400 | |||
401 | /* three setup states */ | ||
402 | #define US_CTRL_SETUP 2 | ||
403 | #define US_CTRL_DATA 1 | ||
404 | #define US_CTRL_ACK 0 | ||
405 | |||
406 | #define EP_ZERO 0 | ||
407 | |||
408 | struct urb_priv { | ||
409 | int num_of_tds; | ||
410 | int tds_cnt; | ||
411 | int state; | ||
412 | |||
413 | struct td **tds; | ||
414 | struct ed *ed; | ||
415 | struct timer_list time_out; | ||
416 | }; | ||
417 | |||
418 | struct endpoint { | ||
419 | /* Pointer to ep parameter RAM */ | ||
420 | struct fhci_ep_pram __iomem *ep_pram_ptr; | ||
421 | |||
422 | /* Host transactions */ | ||
423 | struct usb_td __iomem *td_base; /* first TD in the ring */ | ||
424 | struct usb_td __iomem *conf_td; /* next TD for confirm after transac */ | ||
425 | struct usb_td __iomem *empty_td;/* next TD for new transaction req. */ | ||
426 | struct kfifo *empty_frame_Q; /* Empty frames list to use */ | ||
427 | struct kfifo *conf_frame_Q; /* frames passed to TDs,waiting for tx */ | ||
428 | struct kfifo *dummy_packets_Q;/* dummy packets for the CRC overun */ | ||
429 | |||
430 | bool already_pushed_dummy_bd; | ||
431 | }; | ||
432 | |||
433 | /* struct for each 1mSec frame time */ | ||
434 | #define FRAME_IS_TRANSMITTED 0x00 | ||
435 | #define FRAME_TIMER_END_TRANSMISSION 0x01 | ||
436 | #define FRAME_DATA_END_TRANSMISSION 0x02 | ||
437 | #define FRAME_END_TRANSMISSION 0x03 | ||
438 | #define FRAME_IS_PREPARED 0x04 | ||
439 | |||
440 | struct fhci_time_frame { | ||
441 | u16 frame_num; /* frame number */ | ||
442 | u16 total_bytes; /* total bytes submitted within this frame */ | ||
443 | u8 frame_status; /* flag that indicates to stop fill this frame */ | ||
444 | struct list_head tds_list; /* all tds of this frame */ | ||
445 | }; | ||
446 | |||
447 | /* internal driver structure*/ | ||
448 | struct fhci_usb { | ||
449 | u16 saved_msk; /* saving of the USB mask register */ | ||
450 | struct endpoint *ep0; /* pointer for endpoint0 structure */ | ||
451 | int intr_nesting_cnt; /* interrupt nesting counter */ | ||
452 | u16 max_frame_usage; /* max frame time usage,in micro-sec */ | ||
453 | u16 max_bytes_per_frame; /* max byte can be tx in one time frame */ | ||
454 | u32 sw_transaction_time; /* sw complete trans time,in micro-sec */ | ||
455 | struct fhci_time_frame *actual_frame; | ||
456 | struct fhci_controller_list *hc_list; /* main structure for hc */ | ||
457 | struct virtual_root_hub *vroot_hub; | ||
458 | enum fhci_port_status port_status; /* v_rh port status */ | ||
459 | |||
460 | u32 (*transfer_confirm)(struct fhci_hcd *fhci); | ||
461 | |||
462 | struct fhci_hcd *fhci; | ||
463 | }; | ||
464 | |||
465 | /* | ||
466 | * Various helpers and prototypes below. | ||
467 | */ | ||
468 | |||
469 | static inline u16 get_frame_num(struct fhci_hcd *fhci) | ||
470 | { | ||
471 | return in_be16(&fhci->pram->frame_num) & 0x07ff; | ||
472 | } | ||
473 | |||
474 | #define fhci_dbg(fhci, fmt, args...) \ | ||
475 | dev_dbg(fhci_to_hcd(fhci)->self.controller, fmt, ##args) | ||
476 | #define fhci_vdbg(fhci, fmt, args...) \ | ||
477 | dev_vdbg(fhci_to_hcd(fhci)->self.controller, fmt, ##args) | ||
478 | #define fhci_err(fhci, fmt, args...) \ | ||
479 | dev_err(fhci_to_hcd(fhci)->self.controller, fmt, ##args) | ||
480 | #define fhci_info(fhci, fmt, args...) \ | ||
481 | dev_info(fhci_to_hcd(fhci)->self.controller, fmt, ##args) | ||
482 | #define fhci_warn(fhci, fmt, args...) \ | ||
483 | dev_warn(fhci_to_hcd(fhci)->self.controller, fmt, ##args) | ||
484 | |||
485 | static inline struct fhci_hcd *hcd_to_fhci(struct usb_hcd *hcd) | ||
486 | { | ||
487 | return (struct fhci_hcd *)hcd->hcd_priv; | ||
488 | } | ||
489 | |||
490 | static inline struct usb_hcd *fhci_to_hcd(struct fhci_hcd *fhci) | ||
491 | { | ||
492 | return container_of((void *)fhci, struct usb_hcd, hcd_priv); | ||
493 | } | ||
494 | |||
495 | /* fifo of pointers */ | ||
496 | static inline struct kfifo *cq_new(int size) | ||
497 | { | ||
498 | return kfifo_alloc(size * sizeof(void *), GFP_KERNEL, NULL); | ||
499 | } | ||
500 | |||
501 | static inline void cq_delete(struct kfifo *kfifo) | ||
502 | { | ||
503 | kfifo_free(kfifo); | ||
504 | } | ||
505 | |||
506 | static inline unsigned int cq_howmany(struct kfifo *kfifo) | ||
507 | { | ||
508 | return __kfifo_len(kfifo) / sizeof(void *); | ||
509 | } | ||
510 | |||
511 | static inline int cq_put(struct kfifo *kfifo, void *p) | ||
512 | { | ||
513 | return __kfifo_put(kfifo, (void *)&p, sizeof(p)); | ||
514 | } | ||
515 | |||
516 | static inline void *cq_get(struct kfifo *kfifo) | ||
517 | { | ||
518 | void *p = NULL; | ||
519 | |||
520 | __kfifo_get(kfifo, (void *)&p, sizeof(p)); | ||
521 | return p; | ||
522 | } | ||
523 | |||
524 | /* fhci-hcd.c */ | ||
525 | void fhci_start_sof_timer(struct fhci_hcd *fhci); | ||
526 | void fhci_stop_sof_timer(struct fhci_hcd *fhci); | ||
527 | u16 fhci_get_sof_timer_count(struct fhci_usb *usb); | ||
528 | void fhci_usb_enable_interrupt(struct fhci_usb *usb); | ||
529 | void fhci_usb_disable_interrupt(struct fhci_usb *usb); | ||
530 | int fhci_ioports_check_bus_state(struct fhci_hcd *fhci); | ||
531 | |||
532 | /* fhci-mem.c */ | ||
533 | void fhci_recycle_empty_td(struct fhci_hcd *fhci, struct td *td); | ||
534 | void fhci_recycle_empty_ed(struct fhci_hcd *fhci, struct ed *ed); | ||
535 | struct ed *fhci_get_empty_ed(struct fhci_hcd *fhci); | ||
536 | struct td *fhci_td_fill(struct fhci_hcd *fhci, struct urb *urb, | ||
537 | struct urb_priv *urb_priv, struct ed *ed, u16 index, | ||
538 | enum fhci_ta_type type, int toggle, u8 *data, u32 len, | ||
539 | u16 interval, u16 start_frame, bool ioc); | ||
540 | void fhci_add_tds_to_ed(struct ed *ed, struct td **td_list, int number); | ||
541 | |||
542 | /* fhci-hub.c */ | ||
543 | void fhci_config_transceiver(struct fhci_hcd *fhci, | ||
544 | enum fhci_port_status status); | ||
545 | void fhci_port_disable(struct fhci_hcd *fhci); | ||
546 | void fhci_port_enable(void *lld); | ||
547 | void fhci_io_port_generate_reset(struct fhci_hcd *fhci); | ||
548 | void fhci_port_reset(void *lld); | ||
549 | int fhci_hub_status_data(struct usb_hcd *hcd, char *buf); | ||
550 | int fhci_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue, | ||
551 | u16 wIndex, char *buf, u16 wLength); | ||
552 | |||
553 | /* fhci-tds.c */ | ||
554 | void fhci_flush_bds(struct fhci_usb *usb); | ||
555 | void fhci_flush_actual_frame(struct fhci_usb *usb); | ||
556 | u32 fhci_host_transaction(struct fhci_usb *usb, struct packet *pkt, | ||
557 | enum fhci_ta_type trans_type, u8 dest_addr, | ||
558 | u8 dest_ep, enum fhci_tf_mode trans_mode, | ||
559 | enum fhci_speed dest_speed, u8 data_toggle); | ||
560 | void fhci_host_transmit_actual_frame(struct fhci_usb *usb); | ||
561 | void fhci_tx_conf_interrupt(struct fhci_usb *usb); | ||
562 | void fhci_push_dummy_bd(struct endpoint *ep); | ||
563 | u32 fhci_create_ep(struct fhci_usb *usb, enum fhci_mem_alloc data_mem, | ||
564 | u32 ring_len); | ||
565 | void fhci_init_ep_registers(struct fhci_usb *usb, | ||
566 | struct endpoint *ep, | ||
567 | enum fhci_mem_alloc data_mem); | ||
568 | void fhci_ep0_free(struct fhci_usb *usb); | ||
569 | |||
570 | /* fhci-sched.c */ | ||
571 | extern struct tasklet_struct fhci_tasklet; | ||
572 | void fhci_transaction_confirm(struct fhci_usb *usb, struct packet *pkt); | ||
573 | void fhci_flush_all_transmissions(struct fhci_usb *usb); | ||
574 | void fhci_schedule_transactions(struct fhci_usb *usb); | ||
575 | void fhci_device_connected_interrupt(struct fhci_hcd *fhci); | ||
576 | void fhci_device_disconnected_interrupt(struct fhci_hcd *fhci); | ||
577 | void fhci_queue_urb(struct fhci_hcd *fhci, struct urb *urb); | ||
578 | u32 fhci_transfer_confirm_callback(struct fhci_hcd *fhci); | ||
579 | irqreturn_t fhci_irq(struct usb_hcd *hcd); | ||
580 | irqreturn_t fhci_frame_limit_timer_irq(int irq, void *_hcd); | ||
581 | |||
582 | /* fhci-q.h */ | ||
583 | void fhci_urb_complete_free(struct fhci_hcd *fhci, struct urb *urb); | ||
584 | struct td *fhci_remove_td_from_ed(struct ed *ed); | ||
585 | struct td *fhci_remove_td_from_frame(struct fhci_time_frame *frame); | ||
586 | void fhci_move_td_from_ed_to_done_list(struct fhci_usb *usb, struct ed *ed); | ||
587 | struct td *fhci_peek_td_from_frame(struct fhci_time_frame *frame); | ||
588 | void fhci_add_td_to_frame(struct fhci_time_frame *frame, struct td *td); | ||
589 | struct td *fhci_remove_td_from_done_list(struct fhci_controller_list *p_list); | ||
590 | void fhci_done_td(struct urb *urb, struct td *td); | ||
591 | void fhci_del_ed_list(struct fhci_hcd *fhci, struct ed *ed); | ||
592 | |||
593 | #ifdef CONFIG_FHCI_DEBUG | ||
594 | |||
595 | void fhci_dbg_isr(struct fhci_hcd *fhci, int usb_er); | ||
596 | void fhci_dfs_destroy(struct fhci_hcd *fhci); | ||
597 | void fhci_dfs_create(struct fhci_hcd *fhci); | ||
598 | |||
599 | #else | ||
600 | |||
601 | static inline void fhci_dbg_isr(struct fhci_hcd *fhci, int usb_er) {} | ||
602 | static inline void fhci_dfs_destroy(struct fhci_hcd *fhci) {} | ||
603 | static inline void fhci_dfs_create(struct fhci_hcd *fhci) {} | ||
604 | |||
605 | #endif /* CONFIG_FHCI_DEBUG */ | ||
606 | |||
607 | #endif /* __FHCI_H */ | ||
diff --git a/drivers/usb/host/ohci-hcd.c b/drivers/usb/host/ohci-hcd.c index 65a9609f4ad6..5cf5f1eca4f4 100644 --- a/drivers/usb/host/ohci-hcd.c +++ b/drivers/usb/host/ohci-hcd.c | |||
@@ -593,12 +593,10 @@ static int ohci_run (struct ohci_hcd *ohci) | |||
593 | * to be checked in case boot firmware (BIOS/SMM/...) has set up | 593 | * to be checked in case boot firmware (BIOS/SMM/...) has set up |
594 | * wakeup in a way the bus isn't aware of (e.g., legacy PCI PM). | 594 | * wakeup in a way the bus isn't aware of (e.g., legacy PCI PM). |
595 | * If the bus glue detected wakeup capability then it should | 595 | * If the bus glue detected wakeup capability then it should |
596 | * already be enabled. Either way, if wakeup should be enabled | 596 | * already be enabled; if so we'll just enable it again. |
597 | * but isn't, we'll enable it now. | ||
598 | */ | 597 | */ |
599 | if ((ohci->hc_control & OHCI_CTRL_RWC) != 0 | 598 | if ((ohci->hc_control & OHCI_CTRL_RWC) != 0) |
600 | && !device_can_wakeup(hcd->self.controller)) | 599 | device_set_wakeup_capable(hcd->self.controller, 1); |
601 | device_init_wakeup(hcd->self.controller, 1); | ||
602 | 600 | ||
603 | switch (ohci->hc_control & OHCI_CTRL_HCFS) { | 601 | switch (ohci->hc_control & OHCI_CTRL_HCFS) { |
604 | case OHCI_USB_OPER: | 602 | case OHCI_USB_OPER: |
diff --git a/drivers/usb/host/ohci-pci.c b/drivers/usb/host/ohci-pci.c index 8b28ae7865ba..5d625c3fd423 100644 --- a/drivers/usb/host/ohci-pci.c +++ b/drivers/usb/host/ohci-pci.c | |||
@@ -487,7 +487,6 @@ static struct pci_driver ohci_pci_driver = { | |||
487 | 487 | ||
488 | #ifdef CONFIG_PM | 488 | #ifdef CONFIG_PM |
489 | .suspend = usb_hcd_pci_suspend, | 489 | .suspend = usb_hcd_pci_suspend, |
490 | .suspend_late = usb_hcd_pci_suspend_late, | ||
491 | .resume_early = usb_hcd_pci_resume_early, | 490 | .resume_early = usb_hcd_pci_resume_early, |
492 | .resume = usb_hcd_pci_resume, | 491 | .resume = usb_hcd_pci_resume, |
493 | #endif | 492 | #endif |
diff --git a/drivers/usb/host/uhci-hcd.c b/drivers/usb/host/uhci-hcd.c index 4e221060f58c..944f7e0ca4df 100644 --- a/drivers/usb/host/uhci-hcd.c +++ b/drivers/usb/host/uhci-hcd.c | |||
@@ -942,7 +942,6 @@ static struct pci_driver uhci_pci_driver = { | |||
942 | 942 | ||
943 | #ifdef CONFIG_PM | 943 | #ifdef CONFIG_PM |
944 | .suspend = usb_hcd_pci_suspend, | 944 | .suspend = usb_hcd_pci_suspend, |
945 | .suspend_late = usb_hcd_pci_suspend_late, | ||
946 | .resume_early = usb_hcd_pci_resume_early, | 945 | .resume_early = usb_hcd_pci_resume_early, |
947 | .resume = usb_hcd_pci_resume, | 946 | .resume = usb_hcd_pci_resume, |
948 | #endif /* PM */ | 947 | #endif /* PM */ |
diff --git a/drivers/usb/misc/ldusb.c b/drivers/usb/misc/ldusb.c index 189a9db03509..ad4fb15b5dcb 100644 --- a/drivers/usb/misc/ldusb.c +++ b/drivers/usb/misc/ldusb.c | |||
@@ -57,7 +57,6 @@ | |||
57 | #define USB_DEVICE_ID_LD_MACHINETEST 0x2040 /* USB Product ID of Machine Test System */ | 57 | #define USB_DEVICE_ID_LD_MACHINETEST 0x2040 /* USB Product ID of Machine Test System */ |
58 | 58 | ||
59 | #define USB_VENDOR_ID_VERNIER 0x08f7 | 59 | #define USB_VENDOR_ID_VERNIER 0x08f7 |
60 | #define USB_DEVICE_ID_VERNIER_LABPRO 0x0001 | ||
61 | #define USB_DEVICE_ID_VERNIER_GOTEMP 0x0002 | 60 | #define USB_DEVICE_ID_VERNIER_GOTEMP 0x0002 |
62 | #define USB_DEVICE_ID_VERNIER_SKIP 0x0003 | 61 | #define USB_DEVICE_ID_VERNIER_SKIP 0x0003 |
63 | #define USB_DEVICE_ID_VERNIER_CYCLOPS 0x0004 | 62 | #define USB_DEVICE_ID_VERNIER_CYCLOPS 0x0004 |
@@ -85,7 +84,6 @@ static struct usb_device_id ld_usb_table [] = { | |||
85 | { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_NETWORKANALYSER) }, | 84 | { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_NETWORKANALYSER) }, |
86 | { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POWERCONTROL) }, | 85 | { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POWERCONTROL) }, |
87 | { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MACHINETEST) }, | 86 | { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MACHINETEST) }, |
88 | { USB_DEVICE(USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_LABPRO) }, | ||
89 | { USB_DEVICE(USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_GOTEMP) }, | 87 | { USB_DEVICE(USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_GOTEMP) }, |
90 | { USB_DEVICE(USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_SKIP) }, | 88 | { USB_DEVICE(USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_SKIP) }, |
91 | { USB_DEVICE(USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_CYCLOPS) }, | 89 | { USB_DEVICE(USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_CYCLOPS) }, |
diff --git a/drivers/usb/mon/mon_bin.c b/drivers/usb/mon/mon_bin.c index e06810aef2df..4cf27c72423e 100644 --- a/drivers/usb/mon/mon_bin.c +++ b/drivers/usb/mon/mon_bin.c | |||
@@ -37,6 +37,7 @@ | |||
37 | #define MON_IOCX_GET _IOW(MON_IOC_MAGIC, 6, struct mon_bin_get) | 37 | #define MON_IOCX_GET _IOW(MON_IOC_MAGIC, 6, struct mon_bin_get) |
38 | #define MON_IOCX_MFETCH _IOWR(MON_IOC_MAGIC, 7, struct mon_bin_mfetch) | 38 | #define MON_IOCX_MFETCH _IOWR(MON_IOC_MAGIC, 7, struct mon_bin_mfetch) |
39 | #define MON_IOCH_MFLUSH _IO(MON_IOC_MAGIC, 8) | 39 | #define MON_IOCH_MFLUSH _IO(MON_IOC_MAGIC, 8) |
40 | |||
40 | #ifdef CONFIG_COMPAT | 41 | #ifdef CONFIG_COMPAT |
41 | #define MON_IOCX_GET32 _IOW(MON_IOC_MAGIC, 6, struct mon_bin_get32) | 42 | #define MON_IOCX_GET32 _IOW(MON_IOC_MAGIC, 6, struct mon_bin_get32) |
42 | #define MON_IOCX_MFETCH32 _IOWR(MON_IOC_MAGIC, 7, struct mon_bin_mfetch32) | 43 | #define MON_IOCX_MFETCH32 _IOWR(MON_IOC_MAGIC, 7, struct mon_bin_mfetch32) |
@@ -921,21 +922,6 @@ static int mon_bin_ioctl(struct inode *inode, struct file *file, | |||
921 | } | 922 | } |
922 | break; | 923 | break; |
923 | 924 | ||
924 | #ifdef CONFIG_COMPAT | ||
925 | case MON_IOCX_GET32: { | ||
926 | struct mon_bin_get32 getb; | ||
927 | |||
928 | if (copy_from_user(&getb, (void __user *)arg, | ||
929 | sizeof(struct mon_bin_get32))) | ||
930 | return -EFAULT; | ||
931 | |||
932 | ret = mon_bin_get_event(file, rp, | ||
933 | compat_ptr(getb.hdr32), compat_ptr(getb.data32), | ||
934 | getb.alloc32); | ||
935 | } | ||
936 | break; | ||
937 | #endif | ||
938 | |||
939 | case MON_IOCX_MFETCH: | 925 | case MON_IOCX_MFETCH: |
940 | { | 926 | { |
941 | struct mon_bin_mfetch mfetch; | 927 | struct mon_bin_mfetch mfetch; |
@@ -962,7 +948,57 @@ static int mon_bin_ioctl(struct inode *inode, struct file *file, | |||
962 | } | 948 | } |
963 | break; | 949 | break; |
964 | 950 | ||
951 | case MON_IOCG_STATS: { | ||
952 | struct mon_bin_stats __user *sp; | ||
953 | unsigned int nevents; | ||
954 | unsigned int ndropped; | ||
955 | |||
956 | spin_lock_irqsave(&rp->b_lock, flags); | ||
957 | ndropped = rp->cnt_lost; | ||
958 | rp->cnt_lost = 0; | ||
959 | spin_unlock_irqrestore(&rp->b_lock, flags); | ||
960 | nevents = mon_bin_queued(rp); | ||
961 | |||
962 | sp = (struct mon_bin_stats __user *)arg; | ||
963 | if (put_user(rp->cnt_lost, &sp->dropped)) | ||
964 | return -EFAULT; | ||
965 | if (put_user(nevents, &sp->queued)) | ||
966 | return -EFAULT; | ||
967 | |||
968 | } | ||
969 | break; | ||
970 | |||
971 | default: | ||
972 | return -ENOTTY; | ||
973 | } | ||
974 | |||
975 | return ret; | ||
976 | } | ||
977 | |||
965 | #ifdef CONFIG_COMPAT | 978 | #ifdef CONFIG_COMPAT |
979 | static long mon_bin_compat_ioctl(struct file *file, | ||
980 | unsigned int cmd, unsigned long arg) | ||
981 | { | ||
982 | struct mon_reader_bin *rp = file->private_data; | ||
983 | int ret; | ||
984 | |||
985 | switch (cmd) { | ||
986 | |||
987 | case MON_IOCX_GET32: { | ||
988 | struct mon_bin_get32 getb; | ||
989 | |||
990 | if (copy_from_user(&getb, (void __user *)arg, | ||
991 | sizeof(struct mon_bin_get32))) | ||
992 | return -EFAULT; | ||
993 | |||
994 | ret = mon_bin_get_event(file, rp, | ||
995 | compat_ptr(getb.hdr32), compat_ptr(getb.data32), | ||
996 | getb.alloc32); | ||
997 | if (ret < 0) | ||
998 | return ret; | ||
999 | } | ||
1000 | return 0; | ||
1001 | |||
966 | case MON_IOCX_MFETCH32: | 1002 | case MON_IOCX_MFETCH32: |
967 | { | 1003 | { |
968 | struct mon_bin_mfetch32 mfetch; | 1004 | struct mon_bin_mfetch32 mfetch; |
@@ -986,37 +1022,25 @@ static int mon_bin_ioctl(struct inode *inode, struct file *file, | |||
986 | return ret; | 1022 | return ret; |
987 | if (put_user(ret, &uptr->nfetch32)) | 1023 | if (put_user(ret, &uptr->nfetch32)) |
988 | return -EFAULT; | 1024 | return -EFAULT; |
989 | ret = 0; | ||
990 | } | 1025 | } |
991 | break; | 1026 | return 0; |
992 | #endif | ||
993 | |||
994 | case MON_IOCG_STATS: { | ||
995 | struct mon_bin_stats __user *sp; | ||
996 | unsigned int nevents; | ||
997 | unsigned int ndropped; | ||
998 | |||
999 | spin_lock_irqsave(&rp->b_lock, flags); | ||
1000 | ndropped = rp->cnt_lost; | ||
1001 | rp->cnt_lost = 0; | ||
1002 | spin_unlock_irqrestore(&rp->b_lock, flags); | ||
1003 | nevents = mon_bin_queued(rp); | ||
1004 | 1027 | ||
1005 | sp = (struct mon_bin_stats __user *)arg; | 1028 | case MON_IOCG_STATS: |
1006 | if (put_user(rp->cnt_lost, &sp->dropped)) | 1029 | return mon_bin_ioctl(NULL, file, cmd, |
1007 | return -EFAULT; | 1030 | (unsigned long) compat_ptr(arg)); |
1008 | if (put_user(nevents, &sp->queued)) | ||
1009 | return -EFAULT; | ||
1010 | 1031 | ||
1011 | } | 1032 | case MON_IOCQ_URB_LEN: |
1012 | break; | 1033 | case MON_IOCQ_RING_SIZE: |
1034 | case MON_IOCT_RING_SIZE: | ||
1035 | case MON_IOCH_MFLUSH: | ||
1036 | return mon_bin_ioctl(NULL, file, cmd, arg); | ||
1013 | 1037 | ||
1014 | default: | 1038 | default: |
1015 | return -ENOTTY; | 1039 | ; |
1016 | } | 1040 | } |
1017 | 1041 | return -ENOTTY; | |
1018 | return ret; | ||
1019 | } | 1042 | } |
1043 | #endif /* CONFIG_COMPAT */ | ||
1020 | 1044 | ||
1021 | static unsigned int | 1045 | static unsigned int |
1022 | mon_bin_poll(struct file *file, struct poll_table_struct *wait) | 1046 | mon_bin_poll(struct file *file, struct poll_table_struct *wait) |
@@ -1094,6 +1118,9 @@ static const struct file_operations mon_fops_binary = { | |||
1094 | /* .write = mon_text_write, */ | 1118 | /* .write = mon_text_write, */ |
1095 | .poll = mon_bin_poll, | 1119 | .poll = mon_bin_poll, |
1096 | .ioctl = mon_bin_ioctl, | 1120 | .ioctl = mon_bin_ioctl, |
1121 | #ifdef CONFIG_COMPAT | ||
1122 | .compat_ioctl = mon_bin_compat_ioctl, | ||
1123 | #endif | ||
1097 | .release = mon_bin_release, | 1124 | .release = mon_bin_release, |
1098 | .mmap = mon_bin_mmap, | 1125 | .mmap = mon_bin_mmap, |
1099 | }; | 1126 | }; |
diff --git a/drivers/usb/musb/Kconfig b/drivers/usb/musb/Kconfig index 5af7379cd9a3..9985db08e7db 100644 --- a/drivers/usb/musb/Kconfig +++ b/drivers/usb/musb/Kconfig | |||
@@ -11,6 +11,7 @@ config USB_MUSB_HDRC | |||
11 | depends on (USB || USB_GADGET) && HAVE_CLK | 11 | depends on (USB || USB_GADGET) && HAVE_CLK |
12 | depends on !SUPERH | 12 | depends on !SUPERH |
13 | select TWL4030_USB if MACH_OMAP_3430SDP | 13 | select TWL4030_USB if MACH_OMAP_3430SDP |
14 | select USB_OTG_UTILS | ||
14 | tristate 'Inventra Highspeed Dual Role Controller (TI, ADI, ...)' | 15 | tristate 'Inventra Highspeed Dual Role Controller (TI, ADI, ...)' |
15 | help | 16 | help |
16 | Say Y here if your system has a dual role high speed USB | 17 | Say Y here if your system has a dual role high speed USB |
@@ -49,7 +50,7 @@ comment "OMAP 343x high speed USB support" | |||
49 | depends on USB_MUSB_HDRC && ARCH_OMAP34XX | 50 | depends on USB_MUSB_HDRC && ARCH_OMAP34XX |
50 | 51 | ||
51 | comment "Blackfin high speed USB Support" | 52 | comment "Blackfin high speed USB Support" |
52 | depends on USB_MUSB_HDRC && (BF54x && !BF544) || (BF52x && !BF522 && !BF523) | 53 | depends on USB_MUSB_HDRC && ((BF54x && !BF544) || (BF52x && !BF522 && !BF523)) |
53 | 54 | ||
54 | config USB_TUSB6010 | 55 | config USB_TUSB6010 |
55 | boolean "TUSB 6010 support" | 56 | boolean "TUSB 6010 support" |
diff --git a/drivers/usb/musb/cppi_dma.c b/drivers/usb/musb/cppi_dma.c index 5ad6d0893cbe..569ef0fed0f6 100644 --- a/drivers/usb/musb/cppi_dma.c +++ b/drivers/usb/musb/cppi_dma.c | |||
@@ -9,6 +9,7 @@ | |||
9 | #include <linux/usb.h> | 9 | #include <linux/usb.h> |
10 | 10 | ||
11 | #include "musb_core.h" | 11 | #include "musb_core.h" |
12 | #include "musb_debug.h" | ||
12 | #include "cppi_dma.h" | 13 | #include "cppi_dma.h" |
13 | 14 | ||
14 | 15 | ||
@@ -423,6 +424,7 @@ cppi_rndis_update(struct cppi_channel *c, int is_rx, | |||
423 | } | 424 | } |
424 | } | 425 | } |
425 | 426 | ||
427 | #ifdef CONFIG_USB_MUSB_DEBUG | ||
426 | static void cppi_dump_rxbd(const char *tag, struct cppi_descriptor *bd) | 428 | static void cppi_dump_rxbd(const char *tag, struct cppi_descriptor *bd) |
427 | { | 429 | { |
428 | pr_debug("RXBD/%s %08x: " | 430 | pr_debug("RXBD/%s %08x: " |
@@ -431,10 +433,11 @@ static void cppi_dump_rxbd(const char *tag, struct cppi_descriptor *bd) | |||
431 | bd->hw_next, bd->hw_bufp, bd->hw_off_len, | 433 | bd->hw_next, bd->hw_bufp, bd->hw_off_len, |
432 | bd->hw_options); | 434 | bd->hw_options); |
433 | } | 435 | } |
436 | #endif | ||
434 | 437 | ||
435 | static void cppi_dump_rxq(int level, const char *tag, struct cppi_channel *rx) | 438 | static void cppi_dump_rxq(int level, const char *tag, struct cppi_channel *rx) |
436 | { | 439 | { |
437 | #if MUSB_DEBUG > 0 | 440 | #ifdef CONFIG_USB_MUSB_DEBUG |
438 | struct cppi_descriptor *bd; | 441 | struct cppi_descriptor *bd; |
439 | 442 | ||
440 | if (!_dbg_level(level)) | 443 | if (!_dbg_level(level)) |
@@ -881,12 +884,14 @@ cppi_next_rx_segment(struct musb *musb, struct cppi_channel *rx, int onepacket) | |||
881 | bd->hw_options |= CPPI_SOP_SET; | 884 | bd->hw_options |= CPPI_SOP_SET; |
882 | tail->hw_options |= CPPI_EOP_SET; | 885 | tail->hw_options |= CPPI_EOP_SET; |
883 | 886 | ||
884 | if (debug >= 5) { | 887 | #ifdef CONFIG_USB_MUSB_DEBUG |
888 | if (_dbg_level(5)) { | ||
885 | struct cppi_descriptor *d; | 889 | struct cppi_descriptor *d; |
886 | 890 | ||
887 | for (d = rx->head; d; d = d->next) | 891 | for (d = rx->head; d; d = d->next) |
888 | cppi_dump_rxbd("S", d); | 892 | cppi_dump_rxbd("S", d); |
889 | } | 893 | } |
894 | #endif | ||
890 | 895 | ||
891 | /* in case the preceding transfer left some state... */ | 896 | /* in case the preceding transfer left some state... */ |
892 | tail = rx->last_processed; | 897 | tail = rx->last_processed; |
@@ -990,6 +995,7 @@ static int cppi_channel_program(struct dma_channel *ch, | |||
990 | cppi_ch->offset = 0; | 995 | cppi_ch->offset = 0; |
991 | cppi_ch->maxpacket = maxpacket; | 996 | cppi_ch->maxpacket = maxpacket; |
992 | cppi_ch->buf_len = len; | 997 | cppi_ch->buf_len = len; |
998 | cppi_ch->channel.actual_len = 0; | ||
993 | 999 | ||
994 | /* TX channel? or RX? */ | 1000 | /* TX channel? or RX? */ |
995 | if (cppi_ch->transmit) | 1001 | if (cppi_ch->transmit) |
diff --git a/drivers/usb/musb/davinci.c b/drivers/usb/musb/davinci.c index 0d566dc5ce06..5a8fd5d57a11 100644 --- a/drivers/usb/musb/davinci.c +++ b/drivers/usb/musb/davinci.c | |||
@@ -32,9 +32,10 @@ | |||
32 | #include <linux/io.h> | 32 | #include <linux/io.h> |
33 | #include <linux/gpio.h> | 33 | #include <linux/gpio.h> |
34 | 34 | ||
35 | #include <mach/arch/hardware.h> | 35 | #include <mach/hardware.h> |
36 | #include <mach/arch/memory.h> | 36 | #include <mach/memory.h> |
37 | #include <mach/arch/gpio.h> | 37 | #include <mach/gpio.h> |
38 | |||
38 | #include <asm/mach-types.h> | 39 | #include <asm/mach-types.h> |
39 | 40 | ||
40 | #include "musb_core.h" | 41 | #include "musb_core.h" |
@@ -370,12 +371,6 @@ int musb_platform_set_mode(struct musb *musb, u8 mode) | |||
370 | return -EIO; | 371 | return -EIO; |
371 | } | 372 | } |
372 | 373 | ||
373 | int musb_platform_set_mode(struct musb *musb, u8 mode) | ||
374 | { | ||
375 | /* EVM can't do this (right?) */ | ||
376 | return -EIO; | ||
377 | } | ||
378 | |||
379 | int __init musb_platform_init(struct musb *musb) | 374 | int __init musb_platform_init(struct musb *musb) |
380 | { | 375 | { |
381 | void __iomem *tibase = musb->ctrl_base; | 376 | void __iomem *tibase = musb->ctrl_base; |
diff --git a/drivers/usb/musb/musb_core.c b/drivers/usb/musb/musb_core.c index 6c7faacfb535..2cc34fa05b73 100644 --- a/drivers/usb/musb/musb_core.c +++ b/drivers/usb/musb/musb_core.c | |||
@@ -1824,8 +1824,9 @@ static void musb_free(struct musb *musb) | |||
1824 | musb_gadget_cleanup(musb); | 1824 | musb_gadget_cleanup(musb); |
1825 | #endif | 1825 | #endif |
1826 | 1826 | ||
1827 | if (musb->nIrq >= 0 && musb->irq_wake) { | 1827 | if (musb->nIrq >= 0) { |
1828 | disable_irq_wake(musb->nIrq); | 1828 | if (musb->irq_wake) |
1829 | disable_irq_wake(musb->nIrq); | ||
1829 | free_irq(musb->nIrq, musb); | 1830 | free_irq(musb->nIrq, musb); |
1830 | } | 1831 | } |
1831 | if (is_dma_capable() && musb->dma_controller) { | 1832 | if (is_dma_capable() && musb->dma_controller) { |
diff --git a/drivers/usb/musb/musb_gadget.c b/drivers/usb/musb/musb_gadget.c index 6197daeab8f9..4ea305387981 100644 --- a/drivers/usb/musb/musb_gadget.c +++ b/drivers/usb/musb/musb_gadget.c | |||
@@ -874,10 +874,10 @@ static int musb_gadget_enable(struct usb_ep *ep, | |||
874 | status = -EBUSY; | 874 | status = -EBUSY; |
875 | goto fail; | 875 | goto fail; |
876 | } | 876 | } |
877 | musb_ep->type = desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK; | 877 | musb_ep->type = usb_endpoint_type(desc); |
878 | 878 | ||
879 | /* check direction and (later) maxpacket size against endpoint */ | 879 | /* check direction and (later) maxpacket size against endpoint */ |
880 | if ((desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK) != epnum) | 880 | if (usb_endpoint_num(desc) != epnum) |
881 | goto fail; | 881 | goto fail; |
882 | 882 | ||
883 | /* REVISIT this rules out high bandwidth periodic transfers */ | 883 | /* REVISIT this rules out high bandwidth periodic transfers */ |
@@ -890,7 +890,7 @@ static int musb_gadget_enable(struct usb_ep *ep, | |||
890 | * packet size (or fail), set the mode, clear the fifo | 890 | * packet size (or fail), set the mode, clear the fifo |
891 | */ | 891 | */ |
892 | musb_ep_select(mbase, epnum); | 892 | musb_ep_select(mbase, epnum); |
893 | if (desc->bEndpointAddress & USB_DIR_IN) { | 893 | if (usb_endpoint_dir_in(desc)) { |
894 | u16 int_txe = musb_readw(mbase, MUSB_INTRTXE); | 894 | u16 int_txe = musb_readw(mbase, MUSB_INTRTXE); |
895 | 895 | ||
896 | if (hw_ep->is_shared_fifo) | 896 | if (hw_ep->is_shared_fifo) |
diff --git a/drivers/usb/musb/musb_host.c b/drivers/usb/musb/musb_host.c index 99fa61234876..a035ceccf950 100644 --- a/drivers/usb/musb/musb_host.c +++ b/drivers/usb/musb/musb_host.c | |||
@@ -1847,8 +1847,8 @@ static int musb_urb_enqueue( | |||
1847 | goto done; | 1847 | goto done; |
1848 | } | 1848 | } |
1849 | 1849 | ||
1850 | qh->epnum = epd->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK; | 1850 | qh->epnum = usb_endpoint_num(epd); |
1851 | qh->type = epd->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK; | 1851 | qh->type = usb_endpoint_type(epd); |
1852 | 1852 | ||
1853 | /* NOTE: urb->dev->devnum is wrong during SET_ADDRESS */ | 1853 | /* NOTE: urb->dev->devnum is wrong during SET_ADDRESS */ |
1854 | qh->addr_reg = (u8) usb_pipedevice(urb->pipe); | 1854 | qh->addr_reg = (u8) usb_pipedevice(urb->pipe); |
diff --git a/drivers/usb/musb/tusb6010_omap.c b/drivers/usb/musb/tusb6010_omap.c index 52f7f29cebda..7e073a0d7ac9 100644 --- a/drivers/usb/musb/tusb6010_omap.c +++ b/drivers/usb/musb/tusb6010_omap.c | |||
@@ -15,8 +15,8 @@ | |||
15 | #include <linux/usb.h> | 15 | #include <linux/usb.h> |
16 | #include <linux/platform_device.h> | 16 | #include <linux/platform_device.h> |
17 | #include <linux/dma-mapping.h> | 17 | #include <linux/dma-mapping.h> |
18 | #include <asm/arch/dma.h> | 18 | #include <mach/dma.h> |
19 | #include <asm/arch/mux.h> | 19 | #include <mach/mux.h> |
20 | 20 | ||
21 | #include "musb_core.h" | 21 | #include "musb_core.h" |
22 | 22 | ||
diff --git a/drivers/usb/otg/Kconfig b/drivers/usb/otg/Kconfig index 8e8dbdb9b39b..ee55b449ffde 100644 --- a/drivers/usb/otg/Kconfig +++ b/drivers/usb/otg/Kconfig | |||
@@ -6,14 +6,14 @@ | |||
6 | 6 | ||
7 | comment "OTG and related infrastructure" | 7 | comment "OTG and related infrastructure" |
8 | 8 | ||
9 | if USB || USB_GADGET | ||
10 | |||
11 | config USB_OTG_UTILS | 9 | config USB_OTG_UTILS |
12 | bool | 10 | bool |
13 | help | 11 | help |
14 | Select this to make sure the build includes objects from | 12 | Select this to make sure the build includes objects from |
15 | the OTG infrastructure directory. | 13 | the OTG infrastructure directory. |
16 | 14 | ||
15 | if USB || USB_GADGET | ||
16 | |||
17 | # | 17 | # |
18 | # USB Transceiver Drivers | 18 | # USB Transceiver Drivers |
19 | # | 19 | # |
diff --git a/drivers/usb/serial/cp2101.c b/drivers/usb/serial/cp2101.c index cfaf1f085535..027f4b7dde86 100644 --- a/drivers/usb/serial/cp2101.c +++ b/drivers/usb/serial/cp2101.c | |||
@@ -85,6 +85,8 @@ static struct usb_device_id id_table [] = { | |||
85 | { USB_DEVICE(0x10C4, 0x81E2) }, /* Lipowsky Industrie Elektronik GmbH, Baby-LIN */ | 85 | { USB_DEVICE(0x10C4, 0x81E2) }, /* Lipowsky Industrie Elektronik GmbH, Baby-LIN */ |
86 | { USB_DEVICE(0x10C4, 0x81E7) }, /* Aerocomm Radio */ | 86 | { USB_DEVICE(0x10C4, 0x81E7) }, /* Aerocomm Radio */ |
87 | { USB_DEVICE(0x10C4, 0x8218) }, /* Lipowsky Industrie Elektronik GmbH, HARP-1 */ | 87 | { USB_DEVICE(0x10C4, 0x8218) }, /* Lipowsky Industrie Elektronik GmbH, HARP-1 */ |
88 | { USB_DEVICE(0x10C4, 0x822B) }, /* Modem EDGE(GSM) Comander 2 */ | ||
89 | { USB_DEVICE(0x10C4, 0x826B) }, /* Cygnal Integrated Products, Inc., Fasttrax GPS demostration module */ | ||
88 | { USB_DEVICE(0x10c4, 0x8293) }, /* Telegesys ETRX2USB */ | 90 | { USB_DEVICE(0x10c4, 0x8293) }, /* Telegesys ETRX2USB */ |
89 | { USB_DEVICE(0x10C4, 0x8341) }, /* Siemens MC35PU GPRS Modem */ | 91 | { USB_DEVICE(0x10C4, 0x8341) }, /* Siemens MC35PU GPRS Modem */ |
90 | { USB_DEVICE(0x10C4, 0x83A8) }, /* Amber Wireless AMB2560 */ | 92 | { USB_DEVICE(0x10C4, 0x83A8) }, /* Amber Wireless AMB2560 */ |
diff --git a/drivers/usb/serial/ftdi_sio.c b/drivers/usb/serial/ftdi_sio.c index c70a8f667d85..75597337583e 100644 --- a/drivers/usb/serial/ftdi_sio.c +++ b/drivers/usb/serial/ftdi_sio.c | |||
@@ -660,6 +660,8 @@ static struct usb_device_id id_table_combined [] = { | |||
660 | { USB_DEVICE(PAPOUCH_VID, PAPOUCH_QUIDO4x4_PID) }, | 660 | { USB_DEVICE(PAPOUCH_VID, PAPOUCH_QUIDO4x4_PID) }, |
661 | { USB_DEVICE(FTDI_VID, FTDI_DOMINTELL_DGQG_PID) }, | 661 | { USB_DEVICE(FTDI_VID, FTDI_DOMINTELL_DGQG_PID) }, |
662 | { USB_DEVICE(FTDI_VID, FTDI_DOMINTELL_DUSB_PID) }, | 662 | { USB_DEVICE(FTDI_VID, FTDI_DOMINTELL_DUSB_PID) }, |
663 | { USB_DEVICE(ALTI2_VID, ALTI2_N3_PID) }, | ||
664 | { USB_DEVICE(FTDI_VID, DIEBOLD_BCS_SE923_PID) }, | ||
663 | { }, /* Optional parameter entry */ | 665 | { }, /* Optional parameter entry */ |
664 | { } /* Terminating entry */ | 666 | { } /* Terminating entry */ |
665 | }; | 667 | }; |
diff --git a/drivers/usb/serial/ftdi_sio.h b/drivers/usb/serial/ftdi_sio.h index 373ee09975bb..1b62eff475d2 100644 --- a/drivers/usb/serial/ftdi_sio.h +++ b/drivers/usb/serial/ftdi_sio.h | |||
@@ -854,6 +854,10 @@ | |||
854 | #define FTDI_DOMINTELL_DGQG_PID 0xEF50 /* Master */ | 854 | #define FTDI_DOMINTELL_DGQG_PID 0xEF50 /* Master */ |
855 | #define FTDI_DOMINTELL_DUSB_PID 0xEF51 /* DUSB01 module */ | 855 | #define FTDI_DOMINTELL_DUSB_PID 0xEF51 /* DUSB01 module */ |
856 | 856 | ||
857 | /* Alti-2 products http://www.alti-2.com */ | ||
858 | #define ALTI2_VID 0x1BC9 | ||
859 | #define ALTI2_N3_PID 0x6001 /* Neptune 3 */ | ||
860 | |||
857 | /* Commands */ | 861 | /* Commands */ |
858 | #define FTDI_SIO_RESET 0 /* Reset the port */ | 862 | #define FTDI_SIO_RESET 0 /* Reset the port */ |
859 | #define FTDI_SIO_MODEM_CTRL 1 /* Set the modem control register */ | 863 | #define FTDI_SIO_MODEM_CTRL 1 /* Set the modem control register */ |
@@ -881,6 +885,11 @@ | |||
881 | #define RATOC_PRODUCT_ID_USB60F 0xb020 | 885 | #define RATOC_PRODUCT_ID_USB60F 0xb020 |
882 | 886 | ||
883 | /* | 887 | /* |
888 | * DIEBOLD BCS SE923 | ||
889 | */ | ||
890 | #define DIEBOLD_BCS_SE923_PID 0xfb99 | ||
891 | |||
892 | /* | ||
884 | * BmRequestType: 1100 0000b | 893 | * BmRequestType: 1100 0000b |
885 | * bRequest: FTDI_E2_READ | 894 | * bRequest: FTDI_E2_READ |
886 | * wValue: 0 | 895 | * wValue: 0 |
diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c index 5ed183477aaf..6c89da9c6fea 100644 --- a/drivers/usb/serial/option.c +++ b/drivers/usb/serial/option.c | |||
@@ -158,6 +158,13 @@ static int option_send_setup(struct tty_struct *tty, struct usb_serial_port *po | |||
158 | #define HUAWEI_PRODUCT_E143E 0x143E | 158 | #define HUAWEI_PRODUCT_E143E 0x143E |
159 | #define HUAWEI_PRODUCT_E143F 0x143F | 159 | #define HUAWEI_PRODUCT_E143F 0x143F |
160 | 160 | ||
161 | #define QUANTA_VENDOR_ID 0x0408 | ||
162 | #define QUANTA_PRODUCT_Q101 0xEA02 | ||
163 | #define QUANTA_PRODUCT_Q111 0xEA03 | ||
164 | #define QUANTA_PRODUCT_GLX 0xEA04 | ||
165 | #define QUANTA_PRODUCT_GKE 0xEA05 | ||
166 | #define QUANTA_PRODUCT_GLE 0xEA06 | ||
167 | |||
161 | #define NOVATELWIRELESS_VENDOR_ID 0x1410 | 168 | #define NOVATELWIRELESS_VENDOR_ID 0x1410 |
162 | 169 | ||
163 | /* YISO PRODUCTS */ | 170 | /* YISO PRODUCTS */ |
@@ -224,7 +231,7 @@ static int option_send_setup(struct tty_struct *tty, struct usb_serial_port *po | |||
224 | #define ONDA_VENDOR_ID 0x19d2 | 231 | #define ONDA_VENDOR_ID 0x19d2 |
225 | #define ONDA_PRODUCT_MSA501HS 0x0001 | 232 | #define ONDA_PRODUCT_MSA501HS 0x0001 |
226 | #define ONDA_PRODUCT_ET502HS 0x0002 | 233 | #define ONDA_PRODUCT_ET502HS 0x0002 |
227 | #define ONDA_PRODUCT_MT503HS 0x0200 | 234 | #define ONDA_PRODUCT_MT503HS 0x2000 |
228 | 235 | ||
229 | #define BANDRICH_VENDOR_ID 0x1A8D | 236 | #define BANDRICH_VENDOR_ID 0x1A8D |
230 | #define BANDRICH_PRODUCT_C100_1 0x1002 | 237 | #define BANDRICH_PRODUCT_C100_1 0x1002 |
@@ -298,6 +305,11 @@ static struct usb_device_id option_ids[] = { | |||
298 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_GT) }, | 305 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_GT) }, |
299 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_EX) }, | 306 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_EX) }, |
300 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_KOI_MODEM) }, | 307 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_KOI_MODEM) }, |
308 | { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_Q101) }, | ||
309 | { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_Q111) }, | ||
310 | { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_GLX) }, | ||
311 | { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_GKE) }, | ||
312 | { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_GLE) }, | ||
301 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E600, 0xff, 0xff, 0xff) }, | 313 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E600, 0xff, 0xff, 0xff) }, |
302 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220, 0xff, 0xff, 0xff) }, | 314 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220, 0xff, 0xff, 0xff) }, |
303 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220BIS, 0xff, 0xff, 0xff) }, | 315 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220BIS, 0xff, 0xff, 0xff) }, |
diff --git a/drivers/usb/serial/ti_usb_3410_5052.c b/drivers/usb/serial/ti_usb_3410_5052.c index 3cf41df302d7..baf591137b80 100644 --- a/drivers/usb/serial/ti_usb_3410_5052.c +++ b/drivers/usb/serial/ti_usb_3410_5052.c | |||
@@ -184,6 +184,7 @@ static struct usb_device_id ti_id_table_3410[7+TI_EXTRA_VID_PID_COUNT+1] = { | |||
184 | { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_PRODUCT_ID) }, | 184 | { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_PRODUCT_ID) }, |
185 | { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_PRODUCT_ID) }, | 185 | { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_PRODUCT_ID) }, |
186 | { USB_DEVICE(MTS_VENDOR_ID, MTS_EDGE_PRODUCT_ID) }, | 186 | { USB_DEVICE(MTS_VENDOR_ID, MTS_EDGE_PRODUCT_ID) }, |
187 | { USB_DEVICE(IBM_VENDOR_ID, IBM_4543_PRODUCT_ID) }, | ||
187 | }; | 188 | }; |
188 | 189 | ||
189 | static struct usb_device_id ti_id_table_5052[4+TI_EXTRA_VID_PID_COUNT+1] = { | 190 | static struct usb_device_id ti_id_table_5052[4+TI_EXTRA_VID_PID_COUNT+1] = { |
@@ -191,6 +192,7 @@ static struct usb_device_id ti_id_table_5052[4+TI_EXTRA_VID_PID_COUNT+1] = { | |||
191 | { USB_DEVICE(TI_VENDOR_ID, TI_5152_BOOT_PRODUCT_ID) }, | 192 | { USB_DEVICE(TI_VENDOR_ID, TI_5152_BOOT_PRODUCT_ID) }, |
192 | { USB_DEVICE(TI_VENDOR_ID, TI_5052_EEPROM_PRODUCT_ID) }, | 193 | { USB_DEVICE(TI_VENDOR_ID, TI_5052_EEPROM_PRODUCT_ID) }, |
193 | { USB_DEVICE(TI_VENDOR_ID, TI_5052_FIRMWARE_PRODUCT_ID) }, | 194 | { USB_DEVICE(TI_VENDOR_ID, TI_5052_FIRMWARE_PRODUCT_ID) }, |
195 | { USB_DEVICE(IBM_VENDOR_ID, IBM_4543_PRODUCT_ID) }, | ||
194 | }; | 196 | }; |
195 | 197 | ||
196 | static struct usb_device_id ti_id_table_combined[6+2*TI_EXTRA_VID_PID_COUNT+1] = { | 198 | static struct usb_device_id ti_id_table_combined[6+2*TI_EXTRA_VID_PID_COUNT+1] = { |
@@ -205,6 +207,7 @@ static struct usb_device_id ti_id_table_combined[6+2*TI_EXTRA_VID_PID_COUNT+1] = | |||
205 | { USB_DEVICE(TI_VENDOR_ID, TI_5152_BOOT_PRODUCT_ID) }, | 207 | { USB_DEVICE(TI_VENDOR_ID, TI_5152_BOOT_PRODUCT_ID) }, |
206 | { USB_DEVICE(TI_VENDOR_ID, TI_5052_EEPROM_PRODUCT_ID) }, | 208 | { USB_DEVICE(TI_VENDOR_ID, TI_5052_EEPROM_PRODUCT_ID) }, |
207 | { USB_DEVICE(TI_VENDOR_ID, TI_5052_FIRMWARE_PRODUCT_ID) }, | 209 | { USB_DEVICE(TI_VENDOR_ID, TI_5052_FIRMWARE_PRODUCT_ID) }, |
210 | { USB_DEVICE(IBM_VENDOR_ID, IBM_4543_PRODUCT_ID) }, | ||
208 | { } | 211 | { } |
209 | }; | 212 | }; |
210 | 213 | ||
diff --git a/drivers/usb/serial/ti_usb_3410_5052.h b/drivers/usb/serial/ti_usb_3410_5052.h index 7e4752fbf232..b7ea5dbadee5 100644 --- a/drivers/usb/serial/ti_usb_3410_5052.h +++ b/drivers/usb/serial/ti_usb_3410_5052.h | |||
@@ -27,7 +27,9 @@ | |||
27 | 27 | ||
28 | /* Vendor and product ids */ | 28 | /* Vendor and product ids */ |
29 | #define TI_VENDOR_ID 0x0451 | 29 | #define TI_VENDOR_ID 0x0451 |
30 | #define IBM_VENDOR_ID 0x04b3 | ||
30 | #define TI_3410_PRODUCT_ID 0x3410 | 31 | #define TI_3410_PRODUCT_ID 0x3410 |
32 | #define IBM_4543_PRODUCT_ID 0x4543 | ||
31 | #define TI_3410_EZ430_ID 0xF430 /* TI ez430 development tool */ | 33 | #define TI_3410_EZ430_ID 0xF430 /* TI ez430 development tool */ |
32 | #define TI_5052_BOOT_PRODUCT_ID 0x5052 /* no EEPROM, no firmware */ | 34 | #define TI_5052_BOOT_PRODUCT_ID 0x5052 /* no EEPROM, no firmware */ |
33 | #define TI_5152_BOOT_PRODUCT_ID 0x5152 /* no EEPROM, no firmware */ | 35 | #define TI_5152_BOOT_PRODUCT_ID 0x5152 /* no EEPROM, no firmware */ |
diff --git a/drivers/usb/storage/unusual_devs.h b/drivers/usb/storage/unusual_devs.h index a7f9513fa19d..69269f739563 100644 --- a/drivers/usb/storage/unusual_devs.h +++ b/drivers/usb/storage/unusual_devs.h | |||
@@ -995,6 +995,16 @@ UNUSUAL_DEV( 0x071b, 0x3203, 0x0000, 0x0000, | |||
995 | US_SC_DEVICE, US_PR_DEVICE, NULL, | 995 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
996 | US_FL_NO_WP_DETECT | US_FL_MAX_SECTORS_64), | 996 | US_FL_NO_WP_DETECT | US_FL_MAX_SECTORS_64), |
997 | 997 | ||
998 | /* Reported by Jean-Baptiste Onofre <jb@nanthrax.net> | ||
999 | * Support the following product : | ||
1000 | * "Dane-Elec MediaTouch" | ||
1001 | */ | ||
1002 | UNUSUAL_DEV( 0x071b, 0x32bb, 0x0000, 0x0000, | ||
1003 | "RockChip", | ||
1004 | "MTP", | ||
1005 | US_SC_DEVICE, US_PR_DEVICE, NULL, | ||
1006 | US_FL_NO_WP_DETECT | US_FL_MAX_SECTORS_64), | ||
1007 | |||
998 | /* Reported by Massimiliano Ghilardi <massimiliano.ghilardi@gmail.com> | 1008 | /* Reported by Massimiliano Ghilardi <massimiliano.ghilardi@gmail.com> |
999 | * This USB MP3/AVI player device fails and disconnects if more than 128 | 1009 | * This USB MP3/AVI player device fails and disconnects if more than 128 |
1000 | * sectors (64kB) are read/written in a single command, and may be present | 1010 | * sectors (64kB) are read/written in a single command, and may be present |
@@ -1251,6 +1261,13 @@ UNUSUAL_DEV( 0x0840, 0x0084, 0x0001, 0x0001, | |||
1251 | US_SC_DEVICE, US_PR_DEVICE, NULL, | 1261 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
1252 | US_FL_FIX_CAPACITY), | 1262 | US_FL_FIX_CAPACITY), |
1253 | 1263 | ||
1264 | /* Reported by Martijn Hijdra <martijn.hijdra@gmail.com> */ | ||
1265 | UNUSUAL_DEV( 0x0840, 0x0085, 0x0001, 0x0001, | ||
1266 | "Argosy", | ||
1267 | "Storage", | ||
1268 | US_SC_DEVICE, US_PR_DEVICE, NULL, | ||
1269 | US_FL_FIX_CAPACITY), | ||
1270 | |||
1254 | /* Entry and supporting patch by Theodore Kilgore <kilgota@auburn.edu>. | 1271 | /* Entry and supporting patch by Theodore Kilgore <kilgota@auburn.edu>. |
1255 | * Flag will support Bulk devices which use a standards-violating 32-byte | 1272 | * Flag will support Bulk devices which use a standards-violating 32-byte |
1256 | * Command Block Wrapper. Here, the "DC2MEGA" cameras (several brands) with | 1273 | * Command Block Wrapper. Here, the "DC2MEGA" cameras (several brands) with |
@@ -1589,6 +1606,13 @@ UNUSUAL_DEV( 0x0fce, 0xd008, 0x0000, 0x0000, | |||
1589 | US_SC_DEVICE, US_PR_DEVICE, NULL, | 1606 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
1590 | US_FL_NO_WP_DETECT ), | 1607 | US_FL_NO_WP_DETECT ), |
1591 | 1608 | ||
1609 | /* Reported by The Solutor <thesolutor@gmail.com> */ | ||
1610 | UNUSUAL_DEV( 0x0fce, 0xd0e1, 0x0000, 0x0000, | ||
1611 | "Sony Ericsson", | ||
1612 | "MD400", | ||
1613 | US_SC_DEVICE, US_PR_DEVICE, NULL, | ||
1614 | US_FL_IGNORE_DEVICE), | ||
1615 | |||
1592 | /* Reported by Jan Mate <mate@fiit.stuba.sk> | 1616 | /* Reported by Jan Mate <mate@fiit.stuba.sk> |
1593 | * and by Soeren Sonnenburg <kernel@nn7.de> */ | 1617 | * and by Soeren Sonnenburg <kernel@nn7.de> */ |
1594 | UNUSUAL_DEV( 0x0fce, 0xe030, 0x0000, 0x0000, | 1618 | UNUSUAL_DEV( 0x0fce, 0xe030, 0x0000, 0x0000, |
@@ -2031,15 +2055,11 @@ UNUSUAL_DEV( 0x1652, 0x6600, 0x0201, 0x0201, | |||
2031 | US_SC_DEVICE, US_PR_DEVICE, NULL, | 2055 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
2032 | US_FL_IGNORE_RESIDUE ), | 2056 | US_FL_IGNORE_RESIDUE ), |
2033 | 2057 | ||
2034 | /* Reported by Mauro Andreolini <andreoli@weblab.ing.unimo.it> | 2058 | UNUSUAL_DEV( 0x2116, 0x0320, 0x0001, 0x0001, |
2035 | * This entry is needed to bypass the ZeroCD mechanism | 2059 | "ST", |
2036 | * and to properly load as a modem device. | 2060 | "2A", |
2037 | */ | ||
2038 | UNUSUAL_DEV( 0x19d2, 0x2000, 0x0000, 0x0000, | ||
2039 | "Onda ET502HS", | ||
2040 | "USB MMC Storage", | ||
2041 | US_SC_DEVICE, US_PR_DEVICE, NULL, | 2061 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
2042 | US_FL_IGNORE_DEVICE), | 2062 | US_FL_FIX_CAPACITY), |
2043 | 2063 | ||
2044 | /* patch submitted by Davide Perini <perini.davide@dpsoftware.org> | 2064 | /* patch submitted by Davide Perini <perini.davide@dpsoftware.org> |
2045 | * and Renato Perini <rperini@email.it> | 2065 | * and Renato Perini <rperini@email.it> |
diff --git a/fs/nfsd/auth.c b/fs/nfsd/auth.c index c903e04aa217..5573508f707f 100644 --- a/fs/nfsd/auth.c +++ b/fs/nfsd/auth.c | |||
@@ -49,6 +49,8 @@ int nfsd_setuser(struct svc_rqst *rqstp, struct svc_export *exp) | |||
49 | new->fsuid = exp->ex_anon_uid; | 49 | new->fsuid = exp->ex_anon_uid; |
50 | new->fsgid = exp->ex_anon_gid; | 50 | new->fsgid = exp->ex_anon_gid; |
51 | gi = groups_alloc(0); | 51 | gi = groups_alloc(0); |
52 | if (!gi) | ||
53 | goto oom; | ||
52 | } else if (flags & NFSEXP_ROOTSQUASH) { | 54 | } else if (flags & NFSEXP_ROOTSQUASH) { |
53 | if (!new->fsuid) | 55 | if (!new->fsuid) |
54 | new->fsuid = exp->ex_anon_uid; | 56 | new->fsuid = exp->ex_anon_uid; |
@@ -85,6 +87,7 @@ int nfsd_setuser(struct svc_rqst *rqstp, struct svc_export *exp) | |||
85 | new->cap_effective = cap_raise_nfsd_set(new->cap_effective, | 87 | new->cap_effective = cap_raise_nfsd_set(new->cap_effective, |
86 | new->cap_permitted); | 88 | new->cap_permitted); |
87 | put_cred(override_creds(new)); | 89 | put_cred(override_creds(new)); |
90 | put_cred(new); | ||
88 | return 0; | 91 | return 0; |
89 | 92 | ||
90 | oom: | 93 | oom: |
diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c index 88db7d3ec120..b6f60f48e94b 100644 --- a/fs/nfsd/nfs4state.c +++ b/fs/nfsd/nfs4state.c | |||
@@ -2871,7 +2871,6 @@ nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, | |||
2871 | file_lock.fl_owner = (fl_owner_t)lockt->lt_stateowner; | 2871 | file_lock.fl_owner = (fl_owner_t)lockt->lt_stateowner; |
2872 | file_lock.fl_pid = current->tgid; | 2872 | file_lock.fl_pid = current->tgid; |
2873 | file_lock.fl_flags = FL_POSIX; | 2873 | file_lock.fl_flags = FL_POSIX; |
2874 | file_lock.fl_lmops = &nfsd_posix_mng_ops; | ||
2875 | 2874 | ||
2876 | file_lock.fl_start = lockt->lt_offset; | 2875 | file_lock.fl_start = lockt->lt_offset; |
2877 | file_lock.fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length); | 2876 | file_lock.fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length); |
diff --git a/include/drm/drm.h b/include/drm/drm.h index 32e5096554e9..8e77357334ad 100644 --- a/include/drm/drm.h +++ b/include/drm/drm.h | |||
@@ -458,7 +458,7 @@ enum drm_vblank_seq_type { | |||
458 | _DRM_VBLANK_FLIP = 0x8000000, /**< Scheduled buffer swap should flip */ | 458 | _DRM_VBLANK_FLIP = 0x8000000, /**< Scheduled buffer swap should flip */ |
459 | _DRM_VBLANK_NEXTONMISS = 0x10000000, /**< If missed, wait for next vblank */ | 459 | _DRM_VBLANK_NEXTONMISS = 0x10000000, /**< If missed, wait for next vblank */ |
460 | _DRM_VBLANK_SECONDARY = 0x20000000, /**< Secondary display controller */ | 460 | _DRM_VBLANK_SECONDARY = 0x20000000, /**< Secondary display controller */ |
461 | _DRM_VBLANK_SIGNAL = 0x40000000 /**< Send signal instead of blocking */ | 461 | _DRM_VBLANK_SIGNAL = 0x40000000 /**< Send signal instead of blocking, unsupported */ |
462 | }; | 462 | }; |
463 | 463 | ||
464 | #define _DRM_VBLANK_TYPES_MASK (_DRM_VBLANK_ABSOLUTE | _DRM_VBLANK_RELATIVE) | 464 | #define _DRM_VBLANK_TYPES_MASK (_DRM_VBLANK_ABSOLUTE | _DRM_VBLANK_RELATIVE) |
diff --git a/include/drm/drmP.h b/include/drm/drmP.h index afb7858c068d..8190b9bcc2d9 100644 --- a/include/drm/drmP.h +++ b/include/drm/drmP.h | |||
@@ -545,13 +545,6 @@ struct drm_ctx_list { | |||
545 | struct drm_file *tag; /**< associated fd private data */ | 545 | struct drm_file *tag; /**< associated fd private data */ |
546 | }; | 546 | }; |
547 | 547 | ||
548 | struct drm_vbl_sig { | ||
549 | struct list_head head; | ||
550 | unsigned int sequence; | ||
551 | struct siginfo info; | ||
552 | struct task_struct *task; | ||
553 | }; | ||
554 | |||
555 | /* location of GART table */ | 548 | /* location of GART table */ |
556 | #define DRM_ATI_GART_MAIN 1 | 549 | #define DRM_ATI_GART_MAIN 1 |
557 | #define DRM_ATI_GART_FB 2 | 550 | #define DRM_ATI_GART_FB 2 |
@@ -903,8 +896,6 @@ struct drm_device { | |||
903 | wait_queue_head_t *vbl_queue; /**< VBLANK wait queue */ | 896 | wait_queue_head_t *vbl_queue; /**< VBLANK wait queue */ |
904 | atomic_t *_vblank_count; /**< number of VBLANK interrupts (driver must alloc the right number of counters) */ | 897 | atomic_t *_vblank_count; /**< number of VBLANK interrupts (driver must alloc the right number of counters) */ |
905 | spinlock_t vbl_lock; | 898 | spinlock_t vbl_lock; |
906 | struct list_head *vbl_sigs; /**< signal list to send on VBLANK */ | ||
907 | atomic_t vbl_signal_pending; /* number of signals pending on all crtcs*/ | ||
908 | atomic_t *vblank_refcount; /* number of users of vblank interruptsper crtc */ | 899 | atomic_t *vblank_refcount; /* number of users of vblank interruptsper crtc */ |
909 | u32 *last_vblank; /* protected by dev->vbl_lock, used */ | 900 | u32 *last_vblank; /* protected by dev->vbl_lock, used */ |
910 | /* for wraparound handling */ | 901 | /* for wraparound handling */ |
diff --git a/include/linux/dmi.h b/include/linux/dmi.h index 34161907b2f8..d741b9ceb0e0 100644 --- a/include/linux/dmi.h +++ b/include/linux/dmi.h | |||
@@ -38,6 +38,7 @@ struct dmi_device { | |||
38 | #ifdef CONFIG_DMI | 38 | #ifdef CONFIG_DMI |
39 | 39 | ||
40 | extern int dmi_check_system(const struct dmi_system_id *list); | 40 | extern int dmi_check_system(const struct dmi_system_id *list); |
41 | const struct dmi_system_id *dmi_first_match(const struct dmi_system_id *list); | ||
41 | extern const char * dmi_get_system_info(int field); | 42 | extern const char * dmi_get_system_info(int field); |
42 | extern const struct dmi_device * dmi_find_device(int type, const char *name, | 43 | extern const struct dmi_device * dmi_find_device(int type, const char *name, |
43 | const struct dmi_device *from); | 44 | const struct dmi_device *from); |
@@ -64,6 +65,8 @@ static inline int dmi_walk(void (*decode)(const struct dmi_header *)) | |||
64 | { return -1; } | 65 | { return -1; } |
65 | static inline bool dmi_match(enum dmi_field f, const char *str) | 66 | static inline bool dmi_match(enum dmi_field f, const char *str) |
66 | { return false; } | 67 | { return false; } |
68 | static inline const struct dmi_system_id * | ||
69 | dmi_first_match(const struct dmi_system_id *list) { return NULL; } | ||
67 | 70 | ||
68 | #endif | 71 | #endif |
69 | 72 | ||
diff --git a/include/linux/libata.h b/include/linux/libata.h index 2c6bd66209ff..bca3ba25f52a 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h | |||
@@ -187,6 +187,8 @@ enum { | |||
187 | ATA_FLAG_PIO_POLLING = (1 << 9), /* use polling PIO if LLD | 187 | ATA_FLAG_PIO_POLLING = (1 << 9), /* use polling PIO if LLD |
188 | * doesn't handle PIO interrupts */ | 188 | * doesn't handle PIO interrupts */ |
189 | ATA_FLAG_NCQ = (1 << 10), /* host supports NCQ */ | 189 | ATA_FLAG_NCQ = (1 << 10), /* host supports NCQ */ |
190 | ATA_FLAG_NO_POWEROFF_SPINDOWN = (1 << 11), /* don't spindown before poweroff */ | ||
191 | ATA_FLAG_NO_HIBERNATE_SPINDOWN = (1 << 12), /* don't spindown before hibernation */ | ||
190 | ATA_FLAG_DEBUGMSG = (1 << 13), | 192 | ATA_FLAG_DEBUGMSG = (1 << 13), |
191 | ATA_FLAG_IGN_SIMPLEX = (1 << 15), /* ignore SIMPLEX */ | 193 | ATA_FLAG_IGN_SIMPLEX = (1 << 15), /* ignore SIMPLEX */ |
192 | ATA_FLAG_NO_IORDY = (1 << 16), /* controller lacks iordy */ | 194 | ATA_FLAG_NO_IORDY = (1 << 16), /* controller lacks iordy */ |
diff --git a/include/linux/mod_devicetable.h b/include/linux/mod_devicetable.h index 97b91d1abb43..fde86671f48f 100644 --- a/include/linux/mod_devicetable.h +++ b/include/linux/mod_devicetable.h | |||
@@ -443,6 +443,13 @@ struct dmi_system_id { | |||
443 | struct dmi_strmatch matches[4]; | 443 | struct dmi_strmatch matches[4]; |
444 | void *driver_data; | 444 | void *driver_data; |
445 | }; | 445 | }; |
446 | /* | ||
447 | * struct dmi_device_id appears during expansion of | ||
448 | * "MODULE_DEVICE_TABLE(dmi, x)". Compiler doesn't look inside it | ||
449 | * but this is enough for gcc 3.4.6 to error out: | ||
450 | * error: storage size of '__mod_dmi_device_table' isn't known | ||
451 | */ | ||
452 | #define dmi_device_id dmi_system_id | ||
446 | #endif | 453 | #endif |
447 | 454 | ||
448 | #define DMI_MATCH(a, b) { a, b } | 455 | #define DMI_MATCH(a, b) { a, b } |
diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h index d56ad9c21c09..febc10ed3858 100644 --- a/include/linux/pci_ids.h +++ b/include/linux/pci_ids.h | |||
@@ -1357,6 +1357,7 @@ | |||
1357 | #define PCI_DEVICE_ID_VIA_8783_0 0x3208 | 1357 | #define PCI_DEVICE_ID_VIA_8783_0 0x3208 |
1358 | #define PCI_DEVICE_ID_VIA_8237 0x3227 | 1358 | #define PCI_DEVICE_ID_VIA_8237 0x3227 |
1359 | #define PCI_DEVICE_ID_VIA_8251 0x3287 | 1359 | #define PCI_DEVICE_ID_VIA_8251 0x3287 |
1360 | #define PCI_DEVICE_ID_VIA_8261 0x3402 | ||
1360 | #define PCI_DEVICE_ID_VIA_8237A 0x3337 | 1361 | #define PCI_DEVICE_ID_VIA_8237A 0x3337 |
1361 | #define PCI_DEVICE_ID_VIA_8237S 0x3372 | 1362 | #define PCI_DEVICE_ID_VIA_8237S 0x3372 |
1362 | #define PCI_DEVICE_ID_VIA_SATA_EIDE 0x5324 | 1363 | #define PCI_DEVICE_ID_VIA_SATA_EIDE 0x5324 |
@@ -1366,10 +1367,13 @@ | |||
1366 | #define PCI_DEVICE_ID_VIA_CX700 0x8324 | 1367 | #define PCI_DEVICE_ID_VIA_CX700 0x8324 |
1367 | #define PCI_DEVICE_ID_VIA_CX700_IDE 0x0581 | 1368 | #define PCI_DEVICE_ID_VIA_CX700_IDE 0x0581 |
1368 | #define PCI_DEVICE_ID_VIA_VX800 0x8353 | 1369 | #define PCI_DEVICE_ID_VIA_VX800 0x8353 |
1370 | #define PCI_DEVICE_ID_VIA_VX855 0x8409 | ||
1369 | #define PCI_DEVICE_ID_VIA_8371_1 0x8391 | 1371 | #define PCI_DEVICE_ID_VIA_8371_1 0x8391 |
1370 | #define PCI_DEVICE_ID_VIA_82C598_1 0x8598 | 1372 | #define PCI_DEVICE_ID_VIA_82C598_1 0x8598 |
1371 | #define PCI_DEVICE_ID_VIA_838X_1 0xB188 | 1373 | #define PCI_DEVICE_ID_VIA_838X_1 0xB188 |
1372 | #define PCI_DEVICE_ID_VIA_83_87XX_1 0xB198 | 1374 | #define PCI_DEVICE_ID_VIA_83_87XX_1 0xB198 |
1375 | #define PCI_DEVICE_ID_VIA_C409_IDE 0XC409 | ||
1376 | #define PCI_DEVICE_ID_VIA_ANON 0xFFFF | ||
1373 | 1377 | ||
1374 | #define PCI_VENDOR_ID_SIEMENS 0x110A | 1378 | #define PCI_VENDOR_ID_SIEMENS 0x110A |
1375 | #define PCI_DEVICE_ID_SIEMENS_DSCC4 0x2102 | 1379 | #define PCI_DEVICE_ID_SIEMENS_DSCC4 0x2102 |
diff --git a/include/linux/suspend.h b/include/linux/suspend.h index 2b409c44db83..c7d9bb1832ba 100644 --- a/include/linux/suspend.h +++ b/include/linux/suspend.h | |||
@@ -237,6 +237,7 @@ extern int hibernate_nvs_alloc(void); | |||
237 | extern void hibernate_nvs_free(void); | 237 | extern void hibernate_nvs_free(void); |
238 | extern void hibernate_nvs_save(void); | 238 | extern void hibernate_nvs_save(void); |
239 | extern void hibernate_nvs_restore(void); | 239 | extern void hibernate_nvs_restore(void); |
240 | extern bool system_entering_hibernation(void); | ||
240 | #else /* CONFIG_HIBERNATION */ | 241 | #else /* CONFIG_HIBERNATION */ |
241 | static inline int swsusp_page_is_forbidden(struct page *p) { return 0; } | 242 | static inline int swsusp_page_is_forbidden(struct page *p) { return 0; } |
242 | static inline void swsusp_set_page_free(struct page *p) {} | 243 | static inline void swsusp_set_page_free(struct page *p) {} |
@@ -252,6 +253,7 @@ static inline int hibernate_nvs_alloc(void) { return 0; } | |||
252 | static inline void hibernate_nvs_free(void) {} | 253 | static inline void hibernate_nvs_free(void) {} |
253 | static inline void hibernate_nvs_save(void) {} | 254 | static inline void hibernate_nvs_save(void) {} |
254 | static inline void hibernate_nvs_restore(void) {} | 255 | static inline void hibernate_nvs_restore(void) {} |
256 | static inline bool system_entering_hibernation(void) { return false; } | ||
255 | #endif /* CONFIG_HIBERNATION */ | 257 | #endif /* CONFIG_HIBERNATION */ |
256 | 258 | ||
257 | #ifdef CONFIG_PM_SLEEP | 259 | #ifdef CONFIG_PM_SLEEP |
diff --git a/include/linux/usb.h b/include/linux/usb.h index 85ee9be9361e..88079fd60235 100644 --- a/include/linux/usb.h +++ b/include/linux/usb.h | |||
@@ -418,6 +418,8 @@ struct usb_tt; | |||
418 | * @autosuspend_disabled: autosuspend disabled by the user | 418 | * @autosuspend_disabled: autosuspend disabled by the user |
419 | * @autoresume_disabled: autoresume disabled by the user | 419 | * @autoresume_disabled: autoresume disabled by the user |
420 | * @skip_sys_resume: skip the next system resume | 420 | * @skip_sys_resume: skip the next system resume |
421 | * @wusb_dev: if this is a Wireless USB device, link to the WUSB | ||
422 | * specific data for the device. | ||
421 | * | 423 | * |
422 | * Notes: | 424 | * Notes: |
423 | * Usbcore drivers should not set usbdev->state directly. Instead use | 425 | * Usbcore drivers should not set usbdev->state directly. Instead use |
diff --git a/kernel/irq/handle.c b/kernel/irq/handle.c index 375d68cd5bf0..f51eaee921b6 100644 --- a/kernel/irq/handle.c +++ b/kernel/irq/handle.c | |||
@@ -40,6 +40,18 @@ void handle_bad_irq(unsigned int irq, struct irq_desc *desc) | |||
40 | ack_bad_irq(irq); | 40 | ack_bad_irq(irq); |
41 | } | 41 | } |
42 | 42 | ||
43 | #if defined(CONFIG_SMP) && defined(CONFIG_GENERIC_HARDIRQS) | ||
44 | static void __init init_irq_default_affinity(void) | ||
45 | { | ||
46 | alloc_bootmem_cpumask_var(&irq_default_affinity); | ||
47 | cpumask_setall(irq_default_affinity); | ||
48 | } | ||
49 | #else | ||
50 | static void __init init_irq_default_affinity(void) | ||
51 | { | ||
52 | } | ||
53 | #endif | ||
54 | |||
43 | /* | 55 | /* |
44 | * Linux has a controller-independent interrupt architecture. | 56 | * Linux has a controller-independent interrupt architecture. |
45 | * Every controller has a 'controller-template', that is used | 57 | * Every controller has a 'controller-template', that is used |
@@ -133,6 +145,8 @@ int __init early_irq_init(void) | |||
133 | int legacy_count; | 145 | int legacy_count; |
134 | int i; | 146 | int i; |
135 | 147 | ||
148 | init_irq_default_affinity(); | ||
149 | |||
136 | /* initialize nr_irqs based on nr_cpu_ids */ | 150 | /* initialize nr_irqs based on nr_cpu_ids */ |
137 | arch_probe_nr_irqs(); | 151 | arch_probe_nr_irqs(); |
138 | printk(KERN_INFO "NR_IRQS:%d nr_irqs:%d\n", NR_IRQS, nr_irqs); | 152 | printk(KERN_INFO "NR_IRQS:%d nr_irqs:%d\n", NR_IRQS, nr_irqs); |
@@ -229,6 +243,8 @@ int __init early_irq_init(void) | |||
229 | int count; | 243 | int count; |
230 | int i; | 244 | int i; |
231 | 245 | ||
246 | init_irq_default_affinity(); | ||
247 | |||
232 | printk(KERN_INFO "NR_IRQS:%d\n", NR_IRQS); | 248 | printk(KERN_INFO "NR_IRQS:%d\n", NR_IRQS); |
233 | 249 | ||
234 | desc = irq_desc; | 250 | desc = irq_desc; |
diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c index b98739af4558..a3a5dc9ef346 100644 --- a/kernel/irq/manage.c +++ b/kernel/irq/manage.c | |||
@@ -15,17 +15,9 @@ | |||
15 | 15 | ||
16 | #include "internals.h" | 16 | #include "internals.h" |
17 | 17 | ||
18 | #ifdef CONFIG_SMP | 18 | #if defined(CONFIG_SMP) && defined(CONFIG_GENERIC_HARDIRQS) |
19 | cpumask_var_t irq_default_affinity; | 19 | cpumask_var_t irq_default_affinity; |
20 | 20 | ||
21 | static int init_irq_default_affinity(void) | ||
22 | { | ||
23 | alloc_cpumask_var(&irq_default_affinity, GFP_KERNEL); | ||
24 | cpumask_setall(irq_default_affinity); | ||
25 | return 0; | ||
26 | } | ||
27 | core_initcall(init_irq_default_affinity); | ||
28 | |||
29 | /** | 21 | /** |
30 | * synchronize_irq - wait for pending IRQ handlers (on other CPUs) | 22 | * synchronize_irq - wait for pending IRQ handlers (on other CPUs) |
31 | * @irq: interrupt number to wait for | 23 | * @irq: interrupt number to wait for |
diff --git a/kernel/power/disk.c b/kernel/power/disk.c index 45e8541ab7e3..432ee575c9ee 100644 --- a/kernel/power/disk.c +++ b/kernel/power/disk.c | |||
@@ -71,6 +71,14 @@ void hibernation_set_ops(struct platform_hibernation_ops *ops) | |||
71 | mutex_unlock(&pm_mutex); | 71 | mutex_unlock(&pm_mutex); |
72 | } | 72 | } |
73 | 73 | ||
74 | static bool entering_platform_hibernation; | ||
75 | |||
76 | bool system_entering_hibernation(void) | ||
77 | { | ||
78 | return entering_platform_hibernation; | ||
79 | } | ||
80 | EXPORT_SYMBOL(system_entering_hibernation); | ||
81 | |||
74 | #ifdef CONFIG_PM_DEBUG | 82 | #ifdef CONFIG_PM_DEBUG |
75 | static void hibernation_debug_sleep(void) | 83 | static void hibernation_debug_sleep(void) |
76 | { | 84 | { |
@@ -411,6 +419,7 @@ int hibernation_platform_enter(void) | |||
411 | if (error) | 419 | if (error) |
412 | goto Close; | 420 | goto Close; |
413 | 421 | ||
422 | entering_platform_hibernation = true; | ||
414 | suspend_console(); | 423 | suspend_console(); |
415 | error = device_suspend(PMSG_HIBERNATE); | 424 | error = device_suspend(PMSG_HIBERNATE); |
416 | if (error) { | 425 | if (error) { |
@@ -445,6 +454,7 @@ int hibernation_platform_enter(void) | |||
445 | Finish: | 454 | Finish: |
446 | hibernation_ops->finish(); | 455 | hibernation_ops->finish(); |
447 | Resume_devices: | 456 | Resume_devices: |
457 | entering_platform_hibernation = false; | ||
448 | device_resume(PMSG_RESTORE); | 458 | device_resume(PMSG_RESTORE); |
449 | resume_console(); | 459 | resume_console(); |
450 | Close: | 460 | Close: |
diff --git a/mm/nommu.c b/mm/nommu.c index 0c3e7d2114f6..2fcf47d449b4 100644 --- a/mm/nommu.c +++ b/mm/nommu.c | |||
@@ -1161,8 +1161,8 @@ error_free: | |||
1161 | return ret; | 1161 | return ret; |
1162 | 1162 | ||
1163 | enomem: | 1163 | enomem: |
1164 | printk("Allocation of length %lu from process %d failed\n", | 1164 | printk("Allocation of length %lu from process %d (%s) failed\n", |
1165 | len, current->pid); | 1165 | len, current->pid, current->comm); |
1166 | show_free_areas(); | 1166 | show_free_areas(); |
1167 | return -ENOMEM; | 1167 | return -ENOMEM; |
1168 | } | 1168 | } |
diff --git a/net/sunrpc/Kconfig b/net/sunrpc/Kconfig index eda4a7aee596..dcef600d0bf5 100644 --- a/net/sunrpc/Kconfig +++ b/net/sunrpc/Kconfig | |||
@@ -9,9 +9,8 @@ config SUNRPC_XPRT_RDMA | |||
9 | depends on SUNRPC && INFINIBAND && EXPERIMENTAL | 9 | depends on SUNRPC && INFINIBAND && EXPERIMENTAL |
10 | default SUNRPC && INFINIBAND | 10 | default SUNRPC && INFINIBAND |
11 | help | 11 | help |
12 | This option enables an RPC client transport capability that | 12 | This option allows the NFS client and server to support |
13 | allows the NFS client to mount servers via an RDMA-enabled | 13 | an RDMA-enabled transport. |
14 | transport. | ||
15 | 14 | ||
16 | To compile RPC client RDMA transport support as a module, | 15 | To compile RPC client RDMA transport support as a module, |
17 | choose M here: the module will be called xprtrdma. | 16 | choose M here: the module will be called xprtrdma. |
diff --git a/security/smack/smackfs.c b/security/smack/smackfs.c index 71e2b914363e..8e42800878f4 100644 --- a/security/smack/smackfs.c +++ b/security/smack/smackfs.c | |||
@@ -334,7 +334,7 @@ static ssize_t smk_write_load(struct file *file, const char __user *buf, | |||
334 | break; | 334 | break; |
335 | case 'a': | 335 | case 'a': |
336 | case 'A': | 336 | case 'A': |
337 | rule.smk_access |= MAY_READ; | 337 | rule.smk_access |= MAY_APPEND; |
338 | break; | 338 | break; |
339 | default: | 339 | default: |
340 | goto out; | 340 | goto out; |