Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'merge' of git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc

* 'merge' of git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc: (23 commits)
Revert "powerpc: Sync RPA note in zImage with kernel's RPA note"
powerpc: Fix compile errors with CONFIG_BUG=n
powerpc: Fix format string warning in arch/powerpc/boot/main.c
powerpc: Fix bug in kernel copy of libfdt's fdt_subnode_offset_namelen()
powerpc: Remove duplicate DMA entry from mpc8313erdb device tree
powerpc/cell/OProfile: Fix on-stack array size in activate spu profiling function
powerpc/mpic: Fix regression caused by change of default IRQ affinity
powerpc: Update remaining dma_mapping_ops to use map/unmap_page
powerpc/pci: Fix unmapping of IO space on 64-bit
powerpc/pci: Properly allocate bus resources for hotplug PHBs
OF-device: Don't overwrite numa_node in device registration
powerpc: Fix swapcontext system for VSX + old ucontext size
powerpc: Fix compiler warning for the relocatable kernel
powerpc: Work around ld bug in older binutils
powerpc/ppc64/kdump: Better flag for running relocatable
powerpc: Use is_kdump_kernel()
powerpc: Kexec exit should not use magic numbers
powerpc/44x: Update 44x defconfigs
powerpc/40x: Update 40x defconfigs
powerpc: enable heap randomization for linkstations
...

+1444 -865
+44 -129
arch/powerpc/boot/addnote.c
··· 11 11 * as published by the Free Software Foundation; either version 12 12 * 2 of the License, or (at your option) any later version. 13 13 * 14 - * Usage: addnote [-r realbase] zImage [note.elf] 15 - * 16 - * If note.elf is supplied, it is the name of an ELF file that contains 17 - * an RPA note to use instead of the built-in one. Alternatively, the 18 - * note.elf file may be empty, in which case the built-in RPA note is 19 - * used (this is to simplify how this is invoked from the wrapper script). 14 + * Usage: addnote zImage 20 15 */ 21 16 #include <stdio.h> 22 17 #include <stdlib.h> ··· 43 48 */ 44 49 #define N_RPA_DESCR 8 45 50 unsigned int rpanote[N_RPA_DESCR] = { 46 - 1, /* lparaffinity */ 47 - 128, /* min_rmo_size */ 51 + 0, /* lparaffinity */ 52 + 64, /* min_rmo_size */ 48 53 0, /* min_rmo_percent */ 49 - 46, /* max_pft_size */ 54 + 40, /* max_pft_size */ 50 55 1, /* splpar */ 51 56 -1, /* min_load */ 52 - 1, /* new_mem_def */ 53 - 0, /* ignore_my_client_config */ 57 + 0, /* new_mem_def */ 58 + 1, /* ignore_my_client_config */ 54 59 }; 55 60 56 61 #define ROUNDUP(len) (((len) + 3) & ~3) 57 62 58 63 unsigned char buf[512]; 59 - unsigned char notebuf[512]; 60 64 61 - #define GET_16BE(b, off) (((b)[off] << 8) + ((b)[(off)+1])) 62 - #define GET_32BE(b, off) ((GET_16BE((b), (off)) << 16) + \ 63 - GET_16BE((b), (off)+2)) 65 + #define GET_16BE(off) ((buf[off] << 8) + (buf[(off)+1])) 66 + #define GET_32BE(off) ((GET_16BE(off) << 16) + GET_16BE((off)+2)) 64 67 65 - #define PUT_16BE(b, off, v) ((b)[off] = ((v) >> 8) & 0xff, \ 66 - (b)[(off) + 1] = (v) & 0xff) 67 - #define PUT_32BE(b, off, v) (PUT_16BE((b), (off), (v) >> 16), \ 68 - PUT_16BE((b), (off) + 2, (v))) 68 + #define PUT_16BE(off, v) (buf[off] = ((v) >> 8) & 0xff, \ 69 + buf[(off) + 1] = (v) & 0xff) 70 + #define PUT_32BE(off, v) (PUT_16BE((off), (v) >> 16), \ 71 + PUT_16BE((off) + 2, (v))) 69 72 70 73 /* Structure of an ELF file */ 71 74 #define E_IDENT 0 /* ELF header */ ··· 88 95 89 96 unsigned char elf_magic[4] = { 0x7f, 'E', 'L', 'F' }; 90 97 91 - unsigned char *read_rpanote(const char *fname, int *nnp) 92 - { 93 - int notefd, nr, i; 94 - int ph, ps, np; 95 - int note, notesize; 96 - 97 - notefd = open(fname, O_RDONLY); 98 - if (notefd < 0) { 99 - perror(fname); 100 - exit(1); 101 - } 102 - nr = read(notefd, notebuf, sizeof(notebuf)); 103 - if (nr < 0) { 104 - perror("read note"); 105 - exit(1); 106 - } 107 - if (nr == 0) /* empty file */ 108 - return NULL; 109 - if (nr < E_HSIZE || 110 - memcmp(&notebuf[E_IDENT+EI_MAGIC], elf_magic, 4) != 0 || 111 - notebuf[E_IDENT+EI_CLASS] != ELFCLASS32 || 112 - notebuf[E_IDENT+EI_DATA] != ELFDATA2MSB) 113 - goto notelf; 114 - close(notefd); 115 - 116 - /* now look for the RPA-note */ 117 - ph = GET_32BE(notebuf, E_PHOFF); 118 - ps = GET_16BE(notebuf, E_PHENTSIZE); 119 - np = GET_16BE(notebuf, E_PHNUM); 120 - if (ph < E_HSIZE || ps < PH_HSIZE || np < 1) 121 - goto notelf; 122 - 123 - for (i = 0; i < np; ++i, ph += ps) { 124 - if (GET_32BE(notebuf, ph + PH_TYPE) != PT_NOTE) 125 - continue; 126 - note = GET_32BE(notebuf, ph + PH_OFFSET); 127 - notesize = GET_32BE(notebuf, ph + PH_FILESZ); 128 - if (notesize < 34 || note + notesize > nr) 129 - continue; 130 - if (GET_32BE(notebuf, note) != strlen(rpaname) + 1 || 131 - GET_32BE(notebuf, note + 8) != 0x12759999 || 132 - strcmp((char *)&notebuf[note + 12], rpaname) != 0) 133 - continue; 134 - /* looks like an RPA note, return it */ 135 - *nnp = notesize; 136 - return &notebuf[note]; 137 - } 138 - /* no RPA note found */ 139 - return NULL; 140 - 141 - notelf: 142 - fprintf(stderr, "%s is not a big-endian 32-bit ELF image\n", fname); 143 - exit(1); 144 - } 145 - 146 98 int 147 99 main(int ac, char **av) 148 100 { 149 - int fd, n, i, ai; 101 + int fd, n, i; 150 102 int ph, ps, np; 151 103 int nnote, nnote2, ns; 152 - unsigned char *rpap; 153 - char *p, *endp; 154 104 155 - ai = 1; 156 - if (ac >= ai + 2 && strcmp(av[ai], "-r") == 0) { 157 - /* process -r realbase */ 158 - p = av[ai + 1]; 159 - descr[1] = strtol(p, &endp, 16); 160 - if (endp == p || *endp != 0) { 161 - fprintf(stderr, "Can't parse -r argument '%s' as hex\n", 162 - p); 163 - exit(1); 164 - } 165 - ai += 2; 166 - } 167 - if (ac != ai + 1 && ac != ai + 2) { 168 - fprintf(stderr, "Usage: %s [-r realbase] elf-file [rpanote.elf]\n", av[0]); 105 + if (ac != 2) { 106 + fprintf(stderr, "Usage: %s elf-file\n", av[0]); 169 107 exit(1); 170 108 } 171 - fd = open(av[ai], O_RDWR); 109 + fd = open(av[1], O_RDWR); 172 110 if (fd < 0) { 173 - perror(av[ai]); 111 + perror(av[1]); 174 112 exit(1); 175 113 } 176 114 177 115 nnote = 12 + ROUNDUP(strlen(arch) + 1) + sizeof(descr); 178 116 nnote2 = 12 + ROUNDUP(strlen(rpaname) + 1) + sizeof(rpanote); 179 - rpap = NULL; 180 117 181 118 n = read(fd, buf, sizeof(buf)); 182 119 if (n < 0) { ··· 120 197 if (buf[E_IDENT+EI_CLASS] != ELFCLASS32 121 198 || buf[E_IDENT+EI_DATA] != ELFDATA2MSB) { 122 199 fprintf(stderr, "%s is not a big-endian 32-bit ELF image\n", 123 - av[ai]); 200 + av[1]); 124 201 exit(1); 125 202 } 126 203 127 - if (ac == ai + 2) 128 - rpap = read_rpanote(av[ai + 1], &nnote2); 129 - 130 - ph = GET_32BE(buf, E_PHOFF); 131 - ps = GET_16BE(buf, E_PHENTSIZE); 132 - np = GET_16BE(buf, E_PHNUM); 204 + ph = GET_32BE(E_PHOFF); 205 + ps = GET_16BE(E_PHENTSIZE); 206 + np = GET_16BE(E_PHNUM); 133 207 if (ph < E_HSIZE || ps < PH_HSIZE || np < 1) 134 208 goto notelf; 135 209 if (ph + (np + 2) * ps + nnote + nnote2 > n) 136 210 goto nospace; 137 211 138 212 for (i = 0; i < np; ++i) { 139 - if (GET_32BE(buf, ph + PH_TYPE) == PT_NOTE) { 213 + if (GET_32BE(ph + PH_TYPE) == PT_NOTE) { 140 214 fprintf(stderr, "%s already has a note entry\n", 141 - av[ai]); 215 + av[1]); 142 216 exit(0); 143 217 } 144 218 ph += ps; ··· 148 228 149 229 /* fill in the program header entry */ 150 230 ns = ph + 2 * ps; 151 - PUT_32BE(buf, ph + PH_TYPE, PT_NOTE); 152 - PUT_32BE(buf, ph + PH_OFFSET, ns); 153 - PUT_32BE(buf, ph + PH_FILESZ, nnote); 231 + PUT_32BE(ph + PH_TYPE, PT_NOTE); 232 + PUT_32BE(ph + PH_OFFSET, ns); 233 + PUT_32BE(ph + PH_FILESZ, nnote); 154 234 155 235 /* fill in the note area we point to */ 156 236 /* XXX we should probably make this a proper section */ 157 - PUT_32BE(buf, ns, strlen(arch) + 1); 158 - PUT_32BE(buf, ns + 4, N_DESCR * 4); 159 - PUT_32BE(buf, ns + 8, 0x1275); 237 + PUT_32BE(ns, strlen(arch) + 1); 238 + PUT_32BE(ns + 4, N_DESCR * 4); 239 + PUT_32BE(ns + 8, 0x1275); 160 240 strcpy((char *) &buf[ns + 12], arch); 161 241 ns += 12 + strlen(arch) + 1; 162 242 for (i = 0; i < N_DESCR; ++i, ns += 4) 163 - PUT_32BE(buf, ns, descr[i]); 243 + PUT_32BE(ns, descr[i]); 164 244 165 245 /* fill in the second program header entry and the RPA note area */ 166 246 ph += ps; 167 - PUT_32BE(buf, ph + PH_TYPE, PT_NOTE); 168 - PUT_32BE(buf, ph + PH_OFFSET, ns); 169 - PUT_32BE(buf, ph + PH_FILESZ, nnote2); 247 + PUT_32BE(ph + PH_TYPE, PT_NOTE); 248 + PUT_32BE(ph + PH_OFFSET, ns); 249 + PUT_32BE(ph + PH_FILESZ, nnote2); 170 250 171 251 /* fill in the note area we point to */ 172 - if (rpap) { 173 - /* RPA note supplied in file, just copy the whole thing over */ 174 - memcpy(buf + ns, rpap, nnote2); 175 - } else { 176 - PUT_32BE(buf, ns, strlen(rpaname) + 1); 177 - PUT_32BE(buf, ns + 4, sizeof(rpanote)); 178 - PUT_32BE(buf, ns + 8, 0x12759999); 179 - strcpy((char *) &buf[ns + 12], rpaname); 180 - ns += 12 + ROUNDUP(strlen(rpaname) + 1); 181 - for (i = 0; i < N_RPA_DESCR; ++i, ns += 4) 182 - PUT_32BE(buf, ns, rpanote[i]); 183 - } 252 + PUT_32BE(ns, strlen(rpaname) + 1); 253 + PUT_32BE(ns + 4, sizeof(rpanote)); 254 + PUT_32BE(ns + 8, 0x12759999); 255 + strcpy((char *) &buf[ns + 12], rpaname); 256 + ns += 12 + ROUNDUP(strlen(rpaname) + 1); 257 + for (i = 0; i < N_RPA_DESCR; ++i, ns += 4) 258 + PUT_32BE(ns, rpanote[i]); 184 259 185 260 /* Update the number of program headers */ 186 - PUT_16BE(buf, E_PHNUM, np + 2); 261 + PUT_16BE(E_PHNUM, np + 2); 187 262 188 263 /* write back */ 189 264 lseek(fd, (long) 0, SEEK_SET); ··· 188 273 exit(1); 189 274 } 190 275 if (i < n) { 191 - fprintf(stderr, "%s: write truncated\n", av[ai]); 276 + fprintf(stderr, "%s: write truncated\n", av[1]); 192 277 exit(1); 193 278 } 194 279 195 280 exit(0); 196 281 197 282 notelf: 198 - fprintf(stderr, "%s does not appear to be an ELF file\n", av[ai]); 283 + fprintf(stderr, "%s does not appear to be an ELF file\n", av[1]); 199 284 exit(1); 200 285 201 286 nospace: 202 287 fprintf(stderr, "sorry, I can't find space in %s to put the note\n", 203 - av[ai]); 288 + av[1]); 204 289 exit(1); 205 290 }
-39
arch/powerpc/boot/dts/mpc8313erdb.dts
··· 164 164 mode = "cpu"; 165 165 }; 166 166 167 - dma@82a8 { 168 - #address-cells = <1>; 169 - #size-cells = <1>; 170 - compatible = "fsl,mpc8313-dma", "fsl,elo-dma"; 171 - reg = <0x82a8 4>; 172 - ranges = <0 0x8100 0x1a8>; 173 - interrupt-parent = <&ipic>; 174 - interrupts = <71 8>; 175 - cell-index = <0>; 176 - dma-channel@0 { 177 - compatible = "fsl,mpc8313-dma-channel", "fsl,elo-dma-channel"; 178 - reg = <0 0x80>; 179 - cell-index = <0>; 180 - interrupt-parent = <&ipic>; 181 - interrupts = <71 8>; 182 - }; 183 - dma-channel@80 { 184 - compatible = "fsl,mpc8313-dma-channel", "fsl,elo-dma-channel"; 185 - reg = <0x80 0x80>; 186 - cell-index = <1>; 187 - interrupt-parent = <&ipic>; 188 - interrupts = <71 8>; 189 - }; 190 - dma-channel@100 { 191 - compatible = "fsl,mpc8313-dma-channel", "fsl,elo-dma-channel"; 192 - reg = <0x100 0x80>; 193 - cell-index = <2>; 194 - interrupt-parent = <&ipic>; 195 - interrupts = <71 8>; 196 - }; 197 - dma-channel@180 { 198 - compatible = "fsl,mpc8313-dma-channel", "fsl,elo-dma-channel"; 199 - reg = <0x180 0x28>; 200 - cell-index = <3>; 201 - interrupt-parent = <&ipic>; 202 - interrupts = <71 8>; 203 - }; 204 - }; 205 - 206 167 /* phy type (ULPI, UTMI, UTMI_WIDE, SERIAL) */ 207 168 usb@23000 { 208 169 compatible = "fsl-usb2-dr";
+6 -3
arch/powerpc/boot/libfdt/fdt_ro.c
··· 104 104 105 105 FDT_CHECK_HEADER(fdt); 106 106 107 - for (depth = 0; 108 - offset >= 0; 107 + for (depth = 0, offset = fdt_next_node(fdt, offset, &depth); 108 + (offset >= 0) && (depth > 0); 109 109 offset = fdt_next_node(fdt, offset, &depth)) { 110 110 if (depth < 0) 111 111 return -FDT_ERR_NOTFOUND; ··· 114 114 return offset; 115 115 } 116 116 117 - return offset; /* error */ 117 + if (offset < 0) 118 + return offset; /* error */ 119 + else 120 + return -FDT_ERR_NOTFOUND; 118 121 } 119 122 120 123 int fdt_subnode_offset(const void *fdt, int parentoffset,
+1 -1
arch/powerpc/boot/main.c
··· 63 63 */ 64 64 if ((unsigned long)_start < ei.loadsize) 65 65 fatal("Insufficient memory for kernel at address 0!" 66 - " (_start=%p, uncomressed size=%08x)\n\r", 66 + " (_start=%p, uncompressed size=%08lx)\n\r", 67 67 _start, ei.loadsize); 68 68 69 69 if ((unsigned long)_end < ei.memsize)
+2 -7
arch/powerpc/boot/wrapper
··· 306 306 307 307 # post-processing needed for some platforms 308 308 case "$platform" in 309 - pseries) 310 - ${CROSS}objcopy -O binary -j .fakeelf "$kernel" "$ofile".rpanote 311 - $objbin/addnote "$ofile" "$ofile".rpanote 312 - rm -r "$ofile".rpanote 313 - ;; 314 - chrp) 315 - $objbin/addnote -r c00000 "$ofile" 309 + pseries|chrp) 310 + $objbin/addnote "$ofile" 316 311 ;; 317 312 coff) 318 313 ${CROSS}objcopy -O aixcoff-rs6000 --set-start "$entry" "$ofile"
+39 -20
arch/powerpc/configs/40x/acadia_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27-rc5 4 - # Mon Oct 13 13:47:16 2008 3 + # Linux kernel version: 2.6.28-rc2 4 + # Tue Oct 28 08:49:18 2008 5 5 # 6 6 # CONFIG_PPC64 is not set 7 7 ··· 19 19 CONFIG_NOT_COHERENT_CACHE=y 20 20 CONFIG_PPC32=y 21 21 CONFIG_WORD_SIZE=32 22 - CONFIG_PPC_MERGE=y 22 + # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set 23 23 CONFIG_MMU=y 24 24 CONFIG_GENERIC_CMOS_UPDATE=y 25 25 CONFIG_GENERIC_TIME=y ··· 103 103 CONFIG_TIMERFD=y 104 104 CONFIG_EVENTFD=y 105 105 CONFIG_SHMEM=y 106 + CONFIG_AIO=y 106 107 CONFIG_VM_EVENT_COUNTERS=y 108 + CONFIG_PCI_QUIRKS=y 107 109 CONFIG_SLUB_DEBUG=y 108 110 # CONFIG_SLAB is not set 109 111 CONFIG_SLUB=y ··· 119 117 CONFIG_HAVE_KPROBES=y 120 118 CONFIG_HAVE_KRETPROBES=y 121 119 CONFIG_HAVE_ARCH_TRACEHOOK=y 122 - # CONFIG_HAVE_DMA_ATTRS is not set 123 - # CONFIG_USE_GENERIC_SMP_HELPERS is not set 124 - # CONFIG_HAVE_CLK is not set 125 - CONFIG_PROC_PAGE_MONITOR=y 126 120 # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set 127 121 CONFIG_SLABINFO=y 128 122 CONFIG_RT_MUTEXES=y ··· 151 153 # CONFIG_DEFAULT_NOOP is not set 152 154 CONFIG_DEFAULT_IOSCHED="anticipatory" 153 155 CONFIG_CLASSIC_RCU=y 156 + # CONFIG_FREEZER is not set 154 157 # CONFIG_PPC4xx_PCI_EXPRESS is not set 155 158 156 159 # ··· 160 161 # CONFIG_PPC_CELL is not set 161 162 # CONFIG_PPC_CELL_NATIVE is not set 162 163 # CONFIG_PQ2ADS is not set 164 + # CONFIG_PPC4xx_GPIO is not set 163 165 CONFIG_ACADIA=y 164 166 # CONFIG_EP405 is not set 167 + # CONFIG_HCU4 is not set 165 168 # CONFIG_KILAUEA is not set 166 169 # CONFIG_MAKALU is not set 167 170 # CONFIG_WALNUT is not set ··· 187 186 # Kernel options 188 187 # 189 188 # CONFIG_HIGHMEM is not set 190 - # CONFIG_TICK_ONESHOT is not set 191 189 # CONFIG_NO_HZ is not set 192 190 # CONFIG_HIGH_RES_TIMERS is not set 193 191 CONFIG_GENERIC_CLOCKEVENTS_BUILD=y ··· 200 200 # CONFIG_PREEMPT_VOLUNTARY is not set 201 201 # CONFIG_PREEMPT is not set 202 202 CONFIG_BINFMT_ELF=y 203 + # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 204 + # CONFIG_HAVE_AOUT is not set 203 205 # CONFIG_BINFMT_MISC is not set 204 206 # CONFIG_MATH_EMULATION is not set 205 207 # CONFIG_IOMMU_HELPER is not set ··· 216 214 # CONFIG_SPARSEMEM_MANUAL is not set 217 215 CONFIG_FLATMEM=y 218 216 CONFIG_FLAT_NODE_MEM_MAP=y 219 - # CONFIG_SPARSEMEM_STATIC is not set 220 - # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set 221 217 CONFIG_PAGEFLAGS_EXTENDED=y 222 218 CONFIG_SPLIT_PTLOCK_CPUS=4 223 219 CONFIG_MIGRATION=y 224 220 # CONFIG_RESOURCES_64BIT is not set 221 + # CONFIG_PHYS_ADDR_T_64BIT is not set 225 222 CONFIG_ZONE_DMA_FLAG=1 226 223 CONFIG_BOUNCE=y 227 224 CONFIG_VIRT_TO_BUS=y 225 + CONFIG_UNEVICTABLE_LRU=y 228 226 CONFIG_FORCE_MAX_ZONEORDER=11 229 227 CONFIG_PROC_DEVICETREE=y 230 228 # CONFIG_CMDLINE_BOOL is not set ··· 311 309 # CONFIG_TIPC is not set 312 310 # CONFIG_ATM is not set 313 311 # CONFIG_BRIDGE is not set 312 + # CONFIG_NET_DSA is not set 314 313 # CONFIG_VLAN_8021Q is not set 315 314 # CONFIG_DECNET is not set 316 315 # CONFIG_LLC2 is not set ··· 332 329 # CONFIG_IRDA is not set 333 330 # CONFIG_BT is not set 334 331 # CONFIG_AF_RXRPC is not set 335 - 336 - # 337 - # Wireless 338 - # 339 - # CONFIG_CFG80211 is not set 340 - # CONFIG_WIRELESS_EXT is not set 341 - # CONFIG_MAC80211 is not set 342 - # CONFIG_IEEE80211 is not set 332 + # CONFIG_PHONET is not set 333 + # CONFIG_WIRELESS is not set 343 334 # CONFIG_RFKILL is not set 344 335 # CONFIG_NET_9P is not set 345 336 ··· 513 516 CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR=y 514 517 # CONFIG_NET_PCI is not set 515 518 # CONFIG_B44 is not set 519 + # CONFIG_ATL2 is not set 516 520 # CONFIG_NETDEV_1000 is not set 517 521 # CONFIG_NETDEV_10000 is not set 518 522 # CONFIG_TR is not set ··· 611 613 # CONFIG_MFD_SM501 is not set 612 614 # CONFIG_HTC_PASIC3 is not set 613 615 # CONFIG_MFD_TMIO is not set 616 + # CONFIG_MFD_WM8400 is not set 614 617 615 618 # 616 619 # Multimedia devices ··· 645 646 # CONFIG_DISPLAY_SUPPORT is not set 646 647 # CONFIG_SOUND is not set 647 648 # CONFIG_USB_SUPPORT is not set 649 + # CONFIG_UWB is not set 648 650 # CONFIG_MMC is not set 649 651 # CONFIG_MEMSTICK is not set 650 652 # CONFIG_NEW_LEDS is not set ··· 655 655 # CONFIG_RTC_CLASS is not set 656 656 # CONFIG_DMADEVICES is not set 657 657 # CONFIG_UIO is not set 658 + # CONFIG_STAGING is not set 658 659 659 660 # 660 661 # File systems ··· 664 663 # CONFIG_EXT2_FS_XATTR is not set 665 664 # CONFIG_EXT2_FS_XIP is not set 666 665 # CONFIG_EXT3_FS is not set 667 - # CONFIG_EXT4DEV_FS is not set 666 + # CONFIG_EXT4_FS is not set 668 667 # CONFIG_REISERFS_FS is not set 669 668 # CONFIG_JFS_FS is not set 670 669 # CONFIG_FS_POSIX_ACL is not set 670 + CONFIG_FILE_LOCKING=y 671 671 # CONFIG_XFS_FS is not set 672 672 # CONFIG_OCFS2_FS is not set 673 673 CONFIG_DNOTIFY=y ··· 698 696 CONFIG_PROC_FS=y 699 697 CONFIG_PROC_KCORE=y 700 698 CONFIG_PROC_SYSCTL=y 699 + CONFIG_PROC_PAGE_MONITOR=y 701 700 CONFIG_SYSFS=y 702 701 CONFIG_TMPFS=y 703 702 # CONFIG_TMPFS_POSIX_ACL is not set ··· 736 733 CONFIG_LOCKD_V4=y 737 734 CONFIG_NFS_COMMON=y 738 735 CONFIG_SUNRPC=y 736 + # CONFIG_SUNRPC_REGISTER_V4 is not set 739 737 # CONFIG_RPCSEC_GSS_KRB5 is not set 740 738 # CONFIG_RPCSEC_GSS_SPKM3 is not set 741 739 # CONFIG_SMB_FS is not set ··· 757 753 # Library routines 758 754 # 759 755 CONFIG_BITREVERSE=y 760 - # CONFIG_GENERIC_FIND_FIRST_BIT is not set 761 756 # CONFIG_CRC_CCITT is not set 762 757 # CONFIG_CRC16 is not set 763 758 # CONFIG_CRC_T10DIF is not set ··· 809 806 # CONFIG_DEBUG_SG is not set 810 807 # CONFIG_BOOT_PRINTK_DELAY is not set 811 808 # CONFIG_RCU_TORTURE_TEST is not set 809 + # CONFIG_RCU_CPU_STALL_DETECTOR is not set 812 810 # CONFIG_BACKTRACE_SELF_TEST is not set 811 + # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 813 812 # CONFIG_FAULT_INJECTION is not set 814 813 # CONFIG_LATENCYTOP is not set 815 814 CONFIG_SYSCTL_SYSCALL_CHECK=y 815 + CONFIG_NOP_TRACER=y 816 816 CONFIG_HAVE_FTRACE=y 817 817 CONFIG_HAVE_DYNAMIC_FTRACE=y 818 818 # CONFIG_FTRACE is not set 819 819 # CONFIG_SCHED_TRACER is not set 820 820 # CONFIG_CONTEXT_SWITCH_TRACER is not set 821 + # CONFIG_BOOT_TRACER is not set 822 + # CONFIG_STACK_TRACER is not set 823 + # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 821 824 # CONFIG_SAMPLES is not set 822 825 CONFIG_HAVE_ARCH_KGDB=y 823 826 # CONFIG_KGDB is not set ··· 844 835 # 845 836 # CONFIG_KEYS is not set 846 837 # CONFIG_SECURITY is not set 838 + # CONFIG_SECURITYFS is not set 847 839 # CONFIG_SECURITY_FILE_CAPABILITIES is not set 848 840 CONFIG_CRYPTO=y 849 841 850 842 # 851 843 # Crypto core or helper 852 844 # 845 + # CONFIG_CRYPTO_FIPS is not set 853 846 CONFIG_CRYPTO_ALGAPI=y 847 + CONFIG_CRYPTO_AEAD=y 854 848 CONFIG_CRYPTO_BLKCIPHER=y 849 + CONFIG_CRYPTO_HASH=y 850 + CONFIG_CRYPTO_RNG=y 855 851 CONFIG_CRYPTO_MANAGER=y 856 852 # CONFIG_CRYPTO_GF128MUL is not set 857 853 # CONFIG_CRYPTO_NULL is not set ··· 929 915 # 930 916 # CONFIG_CRYPTO_DEFLATE is not set 931 917 # CONFIG_CRYPTO_LZO is not set 918 + 919 + # 920 + # Random Number Generation 921 + # 922 + # CONFIG_CRYPTO_ANSI_CPRNG is not set 932 923 CONFIG_CRYPTO_HW=y 933 924 # CONFIG_CRYPTO_DEV_HIFN_795X is not set 934 925 # CONFIG_PPC_CLOCK is not set
+59 -24
arch/powerpc/configs/40x/ep405_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27-rc1 4 - # Tue Aug 5 19:34:03 2008 3 + # Linux kernel version: 2.6.28-rc2 4 + # Tue Oct 28 08:49:20 2008 5 5 # 6 6 # CONFIG_PPC64 is not set 7 7 ··· 19 19 CONFIG_NOT_COHERENT_CACHE=y 20 20 CONFIG_PPC32=y 21 21 CONFIG_WORD_SIZE=32 22 - CONFIG_PPC_MERGE=y 22 + # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set 23 23 CONFIG_MMU=y 24 24 CONFIG_GENERIC_CMOS_UPDATE=y 25 25 CONFIG_GENERIC_TIME=y 26 26 CONFIG_GENERIC_TIME_VSYSCALL=y 27 27 CONFIG_GENERIC_CLOCKEVENTS=y 28 28 CONFIG_GENERIC_HARDIRQS=y 29 - # CONFIG_HAVE_GET_USER_PAGES_FAST is not set 30 29 # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set 31 30 CONFIG_IRQ_PER_CPU=y 32 31 CONFIG_STACKTRACE_SUPPORT=y ··· 87 88 CONFIG_SYSCTL=y 88 89 CONFIG_EMBEDDED=y 89 90 CONFIG_SYSCTL_SYSCALL=y 90 - CONFIG_SYSCTL_SYSCALL_CHECK=y 91 91 CONFIG_KALLSYMS=y 92 92 CONFIG_KALLSYMS_ALL=y 93 93 CONFIG_KALLSYMS_EXTRA_PASS=y ··· 103 105 CONFIG_TIMERFD=y 104 106 CONFIG_EVENTFD=y 105 107 CONFIG_SHMEM=y 108 + CONFIG_AIO=y 106 109 CONFIG_VM_EVENT_COUNTERS=y 110 + CONFIG_PCI_QUIRKS=y 107 111 CONFIG_SLUB_DEBUG=y 108 112 # CONFIG_SLAB is not set 109 113 CONFIG_SLUB=y ··· 119 119 CONFIG_HAVE_KPROBES=y 120 120 CONFIG_HAVE_KRETPROBES=y 121 121 CONFIG_HAVE_ARCH_TRACEHOOK=y 122 - # CONFIG_HAVE_DMA_ATTRS is not set 123 - # CONFIG_USE_GENERIC_SMP_HELPERS is not set 124 - # CONFIG_HAVE_CLK is not set 125 - CONFIG_PROC_PAGE_MONITOR=y 126 122 # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set 127 123 CONFIG_SLABINFO=y 128 124 CONFIG_RT_MUTEXES=y ··· 151 155 # CONFIG_DEFAULT_NOOP is not set 152 156 CONFIG_DEFAULT_IOSCHED="anticipatory" 153 157 CONFIG_CLASSIC_RCU=y 158 + # CONFIG_FREEZER is not set 154 159 # CONFIG_PPC4xx_PCI_EXPRESS is not set 155 160 156 161 # ··· 160 163 # CONFIG_PPC_CELL is not set 161 164 # CONFIG_PPC_CELL_NATIVE is not set 162 165 # CONFIG_PQ2ADS is not set 166 + # CONFIG_PPC4xx_GPIO is not set 167 + # CONFIG_ACADIA is not set 163 168 CONFIG_EP405=y 169 + # CONFIG_HCU4 is not set 164 170 # CONFIG_KILAUEA is not set 165 171 # CONFIG_MAKALU is not set 166 172 # CONFIG_WALNUT is not set 167 173 # CONFIG_XILINX_VIRTEX_GENERIC_BOARD is not set 174 + # CONFIG_PPC40x_SIMPLE is not set 168 175 CONFIG_405GP=y 169 176 CONFIG_IBM405_ERR77=y 170 177 CONFIG_IBM405_ERR51=y ··· 189 188 # Kernel options 190 189 # 191 190 # CONFIG_HIGHMEM is not set 192 - # CONFIG_TICK_ONESHOT is not set 193 191 # CONFIG_NO_HZ is not set 194 192 # CONFIG_HIGH_RES_TIMERS is not set 195 193 CONFIG_GENERIC_CLOCKEVENTS_BUILD=y ··· 202 202 # CONFIG_PREEMPT_VOLUNTARY is not set 203 203 # CONFIG_PREEMPT is not set 204 204 CONFIG_BINFMT_ELF=y 205 + # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 206 + # CONFIG_HAVE_AOUT is not set 205 207 # CONFIG_BINFMT_MISC is not set 206 208 # CONFIG_MATH_EMULATION is not set 207 209 # CONFIG_IOMMU_HELPER is not set ··· 218 216 # CONFIG_SPARSEMEM_MANUAL is not set 219 217 CONFIG_FLATMEM=y 220 218 CONFIG_FLAT_NODE_MEM_MAP=y 221 - # CONFIG_SPARSEMEM_STATIC is not set 222 - # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set 223 219 CONFIG_PAGEFLAGS_EXTENDED=y 224 220 CONFIG_SPLIT_PTLOCK_CPUS=4 225 221 CONFIG_MIGRATION=y 226 222 # CONFIG_RESOURCES_64BIT is not set 223 + # CONFIG_PHYS_ADDR_T_64BIT is not set 227 224 CONFIG_ZONE_DMA_FLAG=1 228 225 CONFIG_BOUNCE=y 229 226 CONFIG_VIRT_TO_BUS=y 227 + CONFIG_UNEVICTABLE_LRU=y 230 228 CONFIG_FORCE_MAX_ZONEORDER=11 231 229 CONFIG_PROC_DEVICETREE=y 232 230 # CONFIG_CMDLINE_BOOL is not set ··· 313 311 # CONFIG_TIPC is not set 314 312 # CONFIG_ATM is not set 315 313 # CONFIG_BRIDGE is not set 314 + # CONFIG_NET_DSA is not set 316 315 # CONFIG_VLAN_8021Q is not set 317 316 # CONFIG_DECNET is not set 318 317 # CONFIG_LLC2 is not set ··· 334 331 # CONFIG_IRDA is not set 335 332 # CONFIG_BT is not set 336 333 # CONFIG_AF_RXRPC is not set 337 - 338 - # 339 - # Wireless 340 - # 341 - # CONFIG_CFG80211 is not set 342 - # CONFIG_WIRELESS_EXT is not set 343 - # CONFIG_MAC80211 is not set 344 - # CONFIG_IEEE80211 is not set 334 + # CONFIG_PHONET is not set 335 + # CONFIG_WIRELESS is not set 345 336 # CONFIG_RFKILL is not set 346 337 # CONFIG_NET_9P is not set 347 338 ··· 517 520 # CONFIG_IBM_NEW_EMAC_RGMII is not set 518 521 # CONFIG_IBM_NEW_EMAC_TAH is not set 519 522 # CONFIG_IBM_NEW_EMAC_EMAC4 is not set 523 + # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set 524 + # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set 525 + # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set 520 526 # CONFIG_NET_PCI is not set 521 527 # CONFIG_B44 is not set 528 + # CONFIG_ATL2 is not set 522 529 CONFIG_NETDEV_1000=y 523 530 # CONFIG_ACENIC is not set 524 531 # CONFIG_DL2K is not set ··· 543 542 # CONFIG_QLA3XXX is not set 544 543 # CONFIG_ATL1 is not set 545 544 # CONFIG_ATL1E is not set 545 + # CONFIG_JME is not set 546 546 CONFIG_NETDEV_10000=y 547 547 # CONFIG_CHELSIO_T1 is not set 548 548 # CONFIG_CHELSIO_T3 is not set 549 + # CONFIG_ENIC is not set 549 550 # CONFIG_IXGBE is not set 550 551 # CONFIG_IXGB is not set 551 552 # CONFIG_S2IO is not set 552 553 # CONFIG_MYRI10GE is not set 553 554 # CONFIG_NETXEN_NIC is not set 554 555 # CONFIG_NIU is not set 556 + # CONFIG_MLX4_EN is not set 555 557 # CONFIG_MLX4_CORE is not set 556 558 # CONFIG_TEHUTI is not set 557 559 # CONFIG_BNX2X is not set 560 + # CONFIG_QLGE is not set 558 561 # CONFIG_SFC is not set 559 562 # CONFIG_TR is not set 560 563 ··· 663 658 # CONFIG_MFD_CORE is not set 664 659 # CONFIG_MFD_SM501 is not set 665 660 # CONFIG_HTC_PASIC3 is not set 661 + # CONFIG_MFD_TMIO is not set 662 + # CONFIG_MFD_WM8400 is not set 666 663 667 664 # 668 665 # Multimedia devices ··· 714 707 # CONFIG_USB_OTG is not set 715 708 # CONFIG_USB_OTG_WHITELIST is not set 716 709 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 710 + CONFIG_USB_MON=y 711 + # CONFIG_USB_WUSB is not set 712 + # CONFIG_USB_WUSB_CBAF is not set 717 713 718 714 # 719 715 # USB Host Controller Drivers ··· 736 726 # CONFIG_USB_UHCI_HCD is not set 737 727 # CONFIG_USB_SL811_HCD is not set 738 728 # CONFIG_USB_R8A66597_HCD is not set 729 + # CONFIG_USB_WHCI_HCD is not set 730 + # CONFIG_USB_HWA_HCD is not set 739 731 740 732 # 741 733 # USB Device Class drivers ··· 745 733 # CONFIG_USB_ACM is not set 746 734 # CONFIG_USB_PRINTER is not set 747 735 # CONFIG_USB_WDM is not set 736 + # CONFIG_USB_TMC is not set 748 737 749 738 # 750 739 # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' ··· 760 747 # USB Imaging devices 761 748 # 762 749 # CONFIG_USB_MDC800 is not set 763 - CONFIG_USB_MON=y 764 750 765 751 # 766 752 # USB port drivers ··· 772 760 # CONFIG_USB_EMI62 is not set 773 761 # CONFIG_USB_EMI26 is not set 774 762 # CONFIG_USB_ADUTUX is not set 775 - # CONFIG_USB_AUERSWALD is not set 763 + # CONFIG_USB_SEVSEG is not set 776 764 # CONFIG_USB_RIO500 is not set 777 765 # CONFIG_USB_LEGOTOWER is not set 778 766 # CONFIG_USB_LCD is not set ··· 789 777 # CONFIG_USB_IOWARRIOR is not set 790 778 # CONFIG_USB_TEST is not set 791 779 # CONFIG_USB_ISIGHTFW is not set 780 + # CONFIG_USB_VST is not set 792 781 # CONFIG_USB_GADGET is not set 782 + # CONFIG_UWB is not set 793 783 # CONFIG_MMC is not set 794 784 # CONFIG_MEMSTICK is not set 795 785 # CONFIG_NEW_LEDS is not set ··· 801 787 # CONFIG_RTC_CLASS is not set 802 788 # CONFIG_DMADEVICES is not set 803 789 # CONFIG_UIO is not set 790 + # CONFIG_STAGING is not set 804 791 805 792 # 806 793 # File systems ··· 810 795 # CONFIG_EXT2_FS_XATTR is not set 811 796 # CONFIG_EXT2_FS_XIP is not set 812 797 # CONFIG_EXT3_FS is not set 813 - # CONFIG_EXT4DEV_FS is not set 798 + # CONFIG_EXT4_FS is not set 814 799 # CONFIG_REISERFS_FS is not set 815 800 # CONFIG_JFS_FS is not set 816 801 # CONFIG_FS_POSIX_ACL is not set 802 + CONFIG_FILE_LOCKING=y 817 803 # CONFIG_XFS_FS is not set 818 804 # CONFIG_OCFS2_FS is not set 819 805 CONFIG_DNOTIFY=y ··· 844 828 CONFIG_PROC_FS=y 845 829 CONFIG_PROC_KCORE=y 846 830 CONFIG_PROC_SYSCTL=y 831 + CONFIG_PROC_PAGE_MONITOR=y 847 832 CONFIG_SYSFS=y 848 833 CONFIG_TMPFS=y 849 834 # CONFIG_TMPFS_POSIX_ACL is not set ··· 882 865 CONFIG_LOCKD_V4=y 883 866 CONFIG_NFS_COMMON=y 884 867 CONFIG_SUNRPC=y 868 + # CONFIG_SUNRPC_REGISTER_V4 is not set 885 869 # CONFIG_RPCSEC_GSS_KRB5 is not set 886 870 # CONFIG_RPCSEC_GSS_SPKM3 is not set 887 871 # CONFIG_SMB_FS is not set ··· 903 885 # Library routines 904 886 # 905 887 CONFIG_BITREVERSE=y 906 - # CONFIG_GENERIC_FIND_FIRST_BIT is not set 907 888 # CONFIG_CRC_CCITT is not set 908 889 # CONFIG_CRC16 is not set 909 890 # CONFIG_CRC_T10DIF is not set ··· 955 938 # CONFIG_DEBUG_SG is not set 956 939 # CONFIG_BOOT_PRINTK_DELAY is not set 957 940 # CONFIG_RCU_TORTURE_TEST is not set 941 + # CONFIG_RCU_CPU_STALL_DETECTOR is not set 958 942 # CONFIG_BACKTRACE_SELF_TEST is not set 943 + # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 959 944 # CONFIG_FAULT_INJECTION is not set 960 945 # CONFIG_LATENCYTOP is not set 946 + CONFIG_SYSCTL_SYSCALL_CHECK=y 947 + CONFIG_NOP_TRACER=y 961 948 CONFIG_HAVE_FTRACE=y 962 949 CONFIG_HAVE_DYNAMIC_FTRACE=y 963 950 # CONFIG_FTRACE is not set 964 951 # CONFIG_SCHED_TRACER is not set 965 952 # CONFIG_CONTEXT_SWITCH_TRACER is not set 953 + # CONFIG_BOOT_TRACER is not set 954 + # CONFIG_STACK_TRACER is not set 955 + # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 966 956 # CONFIG_SAMPLES is not set 967 957 CONFIG_HAVE_ARCH_KGDB=y 968 958 # CONFIG_KGDB is not set ··· 978 954 # CONFIG_DEBUG_PAGEALLOC is not set 979 955 # CONFIG_CODE_PATCHING_SELFTEST is not set 980 956 # CONFIG_FTR_FIXUP_SELFTEST is not set 957 + # CONFIG_MSI_BITMAP_SELFTEST is not set 981 958 # CONFIG_XMON is not set 982 959 # CONFIG_IRQSTACKS is not set 983 960 # CONFIG_VIRQ_DEBUG is not set ··· 990 965 # 991 966 # CONFIG_KEYS is not set 992 967 # CONFIG_SECURITY is not set 968 + # CONFIG_SECURITYFS is not set 993 969 # CONFIG_SECURITY_FILE_CAPABILITIES is not set 994 970 CONFIG_CRYPTO=y 995 971 996 972 # 997 973 # Crypto core or helper 998 974 # 975 + # CONFIG_CRYPTO_FIPS is not set 999 976 CONFIG_CRYPTO_ALGAPI=y 977 + CONFIG_CRYPTO_AEAD=y 1000 978 CONFIG_CRYPTO_BLKCIPHER=y 979 + CONFIG_CRYPTO_HASH=y 980 + CONFIG_CRYPTO_RNG=y 1001 981 CONFIG_CRYPTO_MANAGER=y 1002 982 # CONFIG_CRYPTO_GF128MUL is not set 1003 983 # CONFIG_CRYPTO_NULL is not set ··· 1075 1045 # 1076 1046 # CONFIG_CRYPTO_DEFLATE is not set 1077 1047 # CONFIG_CRYPTO_LZO is not set 1048 + 1049 + # 1050 + # Random Number Generation 1051 + # 1052 + # CONFIG_CRYPTO_ANSI_CPRNG is not set 1078 1053 CONFIG_CRYPTO_HW=y 1079 1054 # CONFIG_CRYPTO_DEV_HIFN_795X is not set 1080 1055 # CONFIG_PPC_CLOCK is not set
+89 -36
arch/powerpc/configs/40x/hcu4_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.26.5 4 - # Tue Sep 16 00:44:33 2008 3 + # Linux kernel version: 2.6.28-rc2 4 + # Tue Oct 28 08:49:22 2008 5 5 # 6 6 # CONFIG_PPC64 is not set 7 7 ··· 19 19 CONFIG_NOT_COHERENT_CACHE=y 20 20 CONFIG_PPC32=y 21 21 CONFIG_WORD_SIZE=32 22 - CONFIG_PPC_MERGE=y 22 + # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set 23 23 CONFIG_MMU=y 24 24 CONFIG_GENERIC_CMOS_UPDATE=y 25 25 CONFIG_GENERIC_TIME=y ··· 29 29 # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set 30 30 CONFIG_IRQ_PER_CPU=y 31 31 CONFIG_STACKTRACE_SUPPORT=y 32 + CONFIG_HAVE_LATENCYTOP_SUPPORT=y 32 33 CONFIG_LOCKDEP_SUPPORT=y 33 34 CONFIG_RWSEM_XCHGADD_ALGORITHM=y 34 35 CONFIG_ARCH_HAS_ILOG2_U32=y ··· 87 86 CONFIG_SYSCTL=y 88 87 CONFIG_EMBEDDED=y 89 88 CONFIG_SYSCTL_SYSCALL=y 90 - CONFIG_SYSCTL_SYSCALL_CHECK=y 91 89 CONFIG_KALLSYMS=y 92 90 CONFIG_KALLSYMS_ALL=y 93 91 CONFIG_KALLSYMS_EXTRA_PASS=y 94 92 CONFIG_HOTPLUG=y 95 93 CONFIG_PRINTK=y 96 - # CONFIG_LOGBUFFER is not set 97 94 CONFIG_BUG=y 98 95 CONFIG_ELF_CORE=y 99 96 CONFIG_COMPAT_BRK=y ··· 103 104 CONFIG_TIMERFD=y 104 105 CONFIG_EVENTFD=y 105 106 CONFIG_SHMEM=y 107 + CONFIG_AIO=y 106 108 CONFIG_VM_EVENT_COUNTERS=y 109 + CONFIG_PCI_QUIRKS=y 107 110 CONFIG_SLUB_DEBUG=y 108 111 # CONFIG_SLAB is not set 109 112 CONFIG_SLUB=y ··· 114 113 # CONFIG_MARKERS is not set 115 114 CONFIG_HAVE_OPROFILE=y 116 115 # CONFIG_KPROBES is not set 116 + CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y 117 + CONFIG_HAVE_IOREMAP_PROT=y 117 118 CONFIG_HAVE_KPROBES=y 118 119 CONFIG_HAVE_KRETPROBES=y 119 - # CONFIG_HAVE_DMA_ATTRS is not set 120 - CONFIG_PROC_PAGE_MONITOR=y 120 + CONFIG_HAVE_ARCH_TRACEHOOK=y 121 + # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set 121 122 CONFIG_SLABINFO=y 122 123 CONFIG_RT_MUTEXES=y 123 124 # CONFIG_TINY_SHMEM is not set ··· 136 133 # CONFIG_BLK_DEV_IO_TRACE is not set 137 134 # CONFIG_LSF is not set 138 135 # CONFIG_BLK_DEV_BSG is not set 136 + # CONFIG_BLK_DEV_INTEGRITY is not set 139 137 140 138 # 141 139 # IO Schedulers ··· 151 147 # CONFIG_DEFAULT_NOOP is not set 152 148 CONFIG_DEFAULT_IOSCHED="anticipatory" 153 149 CONFIG_CLASSIC_RCU=y 150 + # CONFIG_FREEZER is not set 154 151 # CONFIG_PPC4xx_PCI_EXPRESS is not set 155 152 156 153 # 157 154 # Platform support 158 155 # 159 - # CONFIG_PPC_MPC512x is not set 160 - # CONFIG_PPC_MPC5121 is not set 161 156 # CONFIG_PPC_CELL is not set 162 157 # CONFIG_PPC_CELL_NATIVE is not set 163 158 # CONFIG_PQ2ADS is not set 159 + # CONFIG_PPC4xx_GPIO is not set 160 + # CONFIG_ACADIA is not set 164 161 # CONFIG_EP405 is not set 165 162 CONFIG_HCU4=y 166 163 # CONFIG_KILAUEA is not set 167 164 # CONFIG_MAKALU is not set 168 165 # CONFIG_WALNUT is not set 169 166 # CONFIG_XILINX_VIRTEX_GENERIC_BOARD is not set 167 + # CONFIG_PPC40x_SIMPLE is not set 168 + CONFIG_405GPR=y 170 169 # CONFIG_IPIC is not set 171 170 # CONFIG_MPIC is not set 172 171 # CONFIG_MPIC_WEIRD is not set ··· 187 180 # Kernel options 188 181 # 189 182 # CONFIG_HIGHMEM is not set 190 - # CONFIG_TICK_ONESHOT is not set 191 183 # CONFIG_NO_HZ is not set 192 184 # CONFIG_HIGH_RES_TIMERS is not set 193 185 CONFIG_GENERIC_CLOCKEVENTS_BUILD=y ··· 200 194 # CONFIG_PREEMPT_VOLUNTARY is not set 201 195 # CONFIG_PREEMPT is not set 202 196 CONFIG_BINFMT_ELF=y 197 + # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 198 + # CONFIG_HAVE_AOUT is not set 203 199 # CONFIG_BINFMT_MISC is not set 204 200 # CONFIG_MATH_EMULATION is not set 205 201 # CONFIG_IOMMU_HELPER is not set ··· 216 208 # CONFIG_SPARSEMEM_MANUAL is not set 217 209 CONFIG_FLATMEM=y 218 210 CONFIG_FLAT_NODE_MEM_MAP=y 219 - # CONFIG_SPARSEMEM_STATIC is not set 220 - # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set 221 211 CONFIG_PAGEFLAGS_EXTENDED=y 222 212 CONFIG_SPLIT_PTLOCK_CPUS=4 213 + CONFIG_MIGRATION=y 223 214 CONFIG_RESOURCES_64BIT=y 215 + # CONFIG_PHYS_ADDR_T_64BIT is not set 224 216 CONFIG_ZONE_DMA_FLAG=1 225 217 CONFIG_BOUNCE=y 226 218 CONFIG_VIRT_TO_BUS=y 219 + CONFIG_UNEVICTABLE_LRU=y 227 220 CONFIG_FORCE_MAX_ZONEORDER=11 228 221 CONFIG_PROC_DEVICETREE=y 229 222 # CONFIG_CMDLINE_BOOL is not set 223 + CONFIG_EXTRA_TARGETS="" 230 224 # CONFIG_PM is not set 231 225 CONFIG_SECCOMP=y 232 226 CONFIG_ISA_DMA_API=y ··· 239 229 CONFIG_ZONE_DMA=y 240 230 CONFIG_PPC_INDIRECT_PCI=y 241 231 CONFIG_4xx_SOC=y 232 + CONFIG_PPC_PCI_CHOICE=y 242 233 CONFIG_PCI=y 243 234 CONFIG_PCI_DOMAINS=y 244 235 CONFIG_PCI_SYSCALL=y ··· 267 256 CONFIG_TASK_SIZE=0xc0000000 268 257 CONFIG_CONSISTENT_START=0xff100000 269 258 CONFIG_CONSISTENT_SIZE=0x00200000 270 - 271 - # 272 - # Networking 273 - # 274 259 CONFIG_NET=y 275 260 276 261 # ··· 311 304 # CONFIG_TIPC is not set 312 305 # CONFIG_ATM is not set 313 306 # CONFIG_BRIDGE is not set 307 + # CONFIG_NET_DSA is not set 314 308 # CONFIG_VLAN_8021Q is not set 315 309 # CONFIG_DECNET is not set 316 310 # CONFIG_LLC2 is not set ··· 332 324 # CONFIG_IRDA is not set 333 325 # CONFIG_BT is not set 334 326 # CONFIG_AF_RXRPC is not set 335 - 336 - # 337 - # Wireless 338 - # 339 - # CONFIG_CFG80211 is not set 340 - # CONFIG_WIRELESS_EXT is not set 341 - # CONFIG_MAC80211 is not set 342 - # CONFIG_IEEE80211 is not set 327 + # CONFIG_PHONET is not set 328 + # CONFIG_WIRELESS is not set 343 329 # CONFIG_RFKILL is not set 344 330 # CONFIG_NET_9P is not set 345 331 ··· 348 346 CONFIG_STANDALONE=y 349 347 CONFIG_PREVENT_FIRMWARE_BUILD=y 350 348 CONFIG_FW_LOADER=y 349 + CONFIG_FIRMWARE_IN_KERNEL=y 350 + CONFIG_EXTRA_FIRMWARE="" 351 351 # CONFIG_DEBUG_DRIVER is not set 352 352 # CONFIG_DEBUG_DEVRES is not set 353 353 # CONFIG_SYS_HYPERVISOR is not set ··· 453 449 # CONFIG_CDROM_PKTCDVD is not set 454 450 # CONFIG_ATA_OVER_ETH is not set 455 451 # CONFIG_XILINX_SYSACE is not set 452 + # CONFIG_BLK_DEV_HD is not set 456 453 CONFIG_MISC_DEVICES=y 457 454 # CONFIG_PHANTOM is not set 458 455 # CONFIG_EEPROM_93CX6 is not set 459 456 # CONFIG_SGI_IOC4 is not set 460 457 # CONFIG_TIFM_CORE is not set 461 458 # CONFIG_ENCLOSURE_SERVICES is not set 459 + # CONFIG_HP_ILO is not set 462 460 CONFIG_HAVE_IDE=y 463 461 # CONFIG_IDE is not set 464 462 ··· 487 481 # CONFIG_I2O is not set 488 482 # CONFIG_MACINTOSH_DRIVERS is not set 489 483 CONFIG_NETDEVICES=y 490 - # CONFIG_NETDEVICES_MULTIQUEUE is not set 491 484 # CONFIG_DUMMY is not set 492 485 # CONFIG_BONDING is not set 493 486 # CONFIG_MACVLAN is not set ··· 514 509 # CONFIG_IBM_NEW_EMAC_RGMII is not set 515 510 # CONFIG_IBM_NEW_EMAC_TAH is not set 516 511 # CONFIG_IBM_NEW_EMAC_EMAC4 is not set 512 + # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set 513 + # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set 514 + # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set 517 515 # CONFIG_NET_PCI is not set 518 516 # CONFIG_B44 is not set 517 + # CONFIG_ATL2 is not set 519 518 CONFIG_NETDEV_1000=y 520 519 # CONFIG_ACENIC is not set 521 520 # CONFIG_DL2K is not set 522 521 # CONFIG_E1000 is not set 523 522 # CONFIG_E1000E is not set 524 - # CONFIG_E1000E_ENABLED is not set 525 523 # CONFIG_IP1000 is not set 526 524 # CONFIG_IGB is not set 527 525 # CONFIG_NS83820 is not set ··· 539 531 # CONFIG_BNX2 is not set 540 532 # CONFIG_QLA3XXX is not set 541 533 # CONFIG_ATL1 is not set 534 + # CONFIG_ATL1E is not set 535 + # CONFIG_JME is not set 542 536 CONFIG_NETDEV_10000=y 543 537 # CONFIG_CHELSIO_T1 is not set 544 538 # CONFIG_CHELSIO_T3 is not set 539 + # CONFIG_ENIC is not set 545 540 # CONFIG_IXGBE is not set 546 541 # CONFIG_IXGB is not set 547 542 # CONFIG_S2IO is not set 548 543 # CONFIG_MYRI10GE is not set 549 544 # CONFIG_NETXEN_NIC is not set 550 545 # CONFIG_NIU is not set 546 + # CONFIG_MLX4_EN is not set 551 547 # CONFIG_MLX4_CORE is not set 552 548 # CONFIG_TEHUTI is not set 553 549 # CONFIG_BNX2X is not set 550 + # CONFIG_QLGE is not set 554 551 # CONFIG_SFC is not set 555 552 # CONFIG_TR is not set 556 553 ··· 631 618 CONFIG_DEVPORT=y 632 619 # CONFIG_I2C is not set 633 620 # CONFIG_SPI is not set 621 + CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y 622 + # CONFIG_GPIOLIB is not set 634 623 # CONFIG_W1 is not set 635 624 # CONFIG_POWER_SUPPLY is not set 636 625 # CONFIG_HWMON is not set ··· 649 634 # 650 635 # Multifunction device drivers 651 636 # 637 + # CONFIG_MFD_CORE is not set 652 638 # CONFIG_MFD_SM501 is not set 653 639 # CONFIG_HTC_PASIC3 is not set 640 + # CONFIG_MFD_TMIO is not set 641 + # CONFIG_MFD_WM8400 is not set 654 642 655 643 # 656 644 # Multimedia devices ··· 685 667 # Display device support 686 668 # 687 669 # CONFIG_DISPLAY_SUPPORT is not set 688 - 689 - # 690 - # Sound 691 - # 692 670 # CONFIG_SOUND is not set 693 671 # CONFIG_USB_SUPPORT is not set 672 + # CONFIG_UWB is not set 694 673 # CONFIG_MMC is not set 695 674 # CONFIG_MEMSTICK is not set 696 675 # CONFIG_NEW_LEDS is not set ··· 697 682 # CONFIG_RTC_CLASS is not set 698 683 # CONFIG_DMADEVICES is not set 699 684 # CONFIG_UIO is not set 685 + # CONFIG_STAGING is not set 700 686 701 687 # 702 688 # File systems ··· 706 690 # CONFIG_EXT2_FS_XATTR is not set 707 691 # CONFIG_EXT2_FS_XIP is not set 708 692 # CONFIG_EXT3_FS is not set 709 - # CONFIG_EXT4DEV_FS is not set 693 + # CONFIG_EXT4_FS is not set 710 694 # CONFIG_REISERFS_FS is not set 711 695 # CONFIG_JFS_FS is not set 712 696 # CONFIG_FS_POSIX_ACL is not set 697 + CONFIG_FILE_LOCKING=y 713 698 # CONFIG_XFS_FS is not set 714 699 # CONFIG_OCFS2_FS is not set 715 700 CONFIG_DNOTIFY=y ··· 740 723 CONFIG_PROC_FS=y 741 724 CONFIG_PROC_KCORE=y 742 725 CONFIG_PROC_SYSCTL=y 726 + CONFIG_PROC_PAGE_MONITOR=y 743 727 CONFIG_SYSFS=y 744 728 CONFIG_TMPFS=y 745 729 # CONFIG_TMPFS_POSIX_ACL is not set ··· 757 739 # CONFIG_BEFS_FS is not set 758 740 # CONFIG_BFS_FS is not set 759 741 # CONFIG_EFS_FS is not set 760 - # CONFIG_YAFFS_FS is not set 761 742 # CONFIG_JFFS2_FS is not set 762 743 CONFIG_CRAMFS=y 763 744 # CONFIG_VXFS_FS is not set 764 745 # CONFIG_MINIX_FS is not set 746 + # CONFIG_OMFS_FS is not set 765 747 # CONFIG_HPFS_FS is not set 766 748 # CONFIG_QNX4FS_FS is not set 767 749 # CONFIG_ROMFS_FS is not set ··· 772 754 CONFIG_NFS_V3=y 773 755 # CONFIG_NFS_V3_ACL is not set 774 756 # CONFIG_NFS_V4 is not set 775 - # CONFIG_NFSD is not set 776 757 CONFIG_ROOT_NFS=y 758 + # CONFIG_NFSD is not set 777 759 CONFIG_LOCKD=y 778 760 CONFIG_LOCKD_V4=y 779 761 CONFIG_NFS_COMMON=y 780 762 CONFIG_SUNRPC=y 781 - # CONFIG_SUNRPC_BIND34 is not set 763 + # CONFIG_SUNRPC_REGISTER_V4 is not set 782 764 # CONFIG_RPCSEC_GSS_KRB5 is not set 783 765 # CONFIG_RPCSEC_GSS_SPKM3 is not set 784 766 # CONFIG_SMB_FS is not set ··· 799 781 # Library routines 800 782 # 801 783 CONFIG_BITREVERSE=y 802 - # CONFIG_GENERIC_FIND_FIRST_BIT is not set 803 784 # CONFIG_CRC_CCITT is not set 804 785 # CONFIG_CRC16 is not set 786 + # CONFIG_CRC_T10DIF is not set 805 787 # CONFIG_CRC_ITU_T is not set 806 788 CONFIG_CRC32=y 807 789 # CONFIG_CRC7 is not set ··· 827 809 CONFIG_DEBUG_KERNEL=y 828 810 # CONFIG_DEBUG_SHIRQ is not set 829 811 CONFIG_DETECT_SOFTLOCKUP=y 812 + # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set 813 + CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 830 814 CONFIG_SCHED_DEBUG=y 831 815 # CONFIG_SCHEDSTATS is not set 832 816 # CONFIG_TIMER_STATS is not set ··· 846 826 # CONFIG_DEBUG_INFO is not set 847 827 # CONFIG_DEBUG_VM is not set 848 828 # CONFIG_DEBUG_WRITECOUNT is not set 829 + # CONFIG_DEBUG_MEMORY_INIT is not set 849 830 # CONFIG_DEBUG_LIST is not set 850 831 # CONFIG_DEBUG_SG is not set 851 832 # CONFIG_BOOT_PRINTK_DELAY is not set 852 833 # CONFIG_RCU_TORTURE_TEST is not set 834 + # CONFIG_RCU_CPU_STALL_DETECTOR is not set 853 835 # CONFIG_BACKTRACE_SELF_TEST is not set 836 + # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 854 837 # CONFIG_FAULT_INJECTION is not set 838 + # CONFIG_LATENCYTOP is not set 839 + CONFIG_SYSCTL_SYSCALL_CHECK=y 840 + CONFIG_NOP_TRACER=y 841 + CONFIG_HAVE_FTRACE=y 842 + CONFIG_HAVE_DYNAMIC_FTRACE=y 843 + # CONFIG_FTRACE is not set 844 + # CONFIG_SCHED_TRACER is not set 845 + # CONFIG_CONTEXT_SWITCH_TRACER is not set 846 + # CONFIG_BOOT_TRACER is not set 847 + # CONFIG_STACK_TRACER is not set 848 + # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 855 849 # CONFIG_SAMPLES is not set 850 + CONFIG_HAVE_ARCH_KGDB=y 851 + # CONFIG_KGDB is not set 856 852 # CONFIG_DEBUG_STACKOVERFLOW is not set 857 853 # CONFIG_DEBUG_STACK_USAGE is not set 858 854 # CONFIG_DEBUG_PAGEALLOC is not set 859 - # CONFIG_DEBUGGER is not set 855 + # CONFIG_CODE_PATCHING_SELFTEST is not set 856 + # CONFIG_FTR_FIXUP_SELFTEST is not set 857 + # CONFIG_MSI_BITMAP_SELFTEST is not set 858 + # CONFIG_XMON is not set 860 859 # CONFIG_IRQSTACKS is not set 861 860 # CONFIG_VIRQ_DEBUG is not set 862 861 # CONFIG_BDI_SWITCH is not set ··· 886 847 # 887 848 # CONFIG_KEYS is not set 888 849 # CONFIG_SECURITY is not set 850 + # CONFIG_SECURITYFS is not set 889 851 # CONFIG_SECURITY_FILE_CAPABILITIES is not set 890 852 CONFIG_CRYPTO=y 891 853 892 854 # 893 855 # Crypto core or helper 894 856 # 857 + # CONFIG_CRYPTO_FIPS is not set 895 858 CONFIG_CRYPTO_ALGAPI=y 859 + CONFIG_CRYPTO_AEAD=y 896 860 CONFIG_CRYPTO_BLKCIPHER=y 861 + CONFIG_CRYPTO_HASH=y 862 + CONFIG_CRYPTO_RNG=y 897 863 CONFIG_CRYPTO_MANAGER=y 898 864 # CONFIG_CRYPTO_GF128MUL is not set 899 865 # CONFIG_CRYPTO_NULL is not set ··· 937 893 # CONFIG_CRYPTO_MD4 is not set 938 894 CONFIG_CRYPTO_MD5=y 939 895 # CONFIG_CRYPTO_MICHAEL_MIC is not set 896 + # CONFIG_CRYPTO_RMD128 is not set 897 + # CONFIG_CRYPTO_RMD160 is not set 898 + # CONFIG_CRYPTO_RMD256 is not set 899 + # CONFIG_CRYPTO_RMD320 is not set 940 900 # CONFIG_CRYPTO_SHA1 is not set 941 901 # CONFIG_CRYPTO_SHA256 is not set 942 902 # CONFIG_CRYPTO_SHA512 is not set ··· 971 923 # 972 924 # CONFIG_CRYPTO_DEFLATE is not set 973 925 # CONFIG_CRYPTO_LZO is not set 926 + 927 + # 928 + # Random Number Generation 929 + # 930 + # CONFIG_CRYPTO_ANSI_CPRNG is not set 974 931 CONFIG_CRYPTO_HW=y 975 932 # CONFIG_CRYPTO_DEV_HIFN_795X is not set 976 933 # CONFIG_PPC_CLOCK is not set
+47 -22
arch/powerpc/configs/40x/kilauea_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27-rc1 4 - # Tue Aug 5 19:36:14 2008 3 + # Linux kernel version: 2.6.28-rc2 4 + # Tue Oct 28 08:49:23 2008 5 5 # 6 6 # CONFIG_PPC64 is not set 7 7 ··· 19 19 CONFIG_NOT_COHERENT_CACHE=y 20 20 CONFIG_PPC32=y 21 21 CONFIG_WORD_SIZE=32 22 - CONFIG_PPC_MERGE=y 22 + # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set 23 23 CONFIG_MMU=y 24 24 CONFIG_GENERIC_CMOS_UPDATE=y 25 25 CONFIG_GENERIC_TIME=y 26 26 CONFIG_GENERIC_TIME_VSYSCALL=y 27 27 CONFIG_GENERIC_CLOCKEVENTS=y 28 28 CONFIG_GENERIC_HARDIRQS=y 29 - # CONFIG_HAVE_GET_USER_PAGES_FAST is not set 30 29 # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set 31 30 CONFIG_IRQ_PER_CPU=y 32 31 CONFIG_STACKTRACE_SUPPORT=y ··· 87 88 CONFIG_SYSCTL=y 88 89 CONFIG_EMBEDDED=y 89 90 CONFIG_SYSCTL_SYSCALL=y 90 - CONFIG_SYSCTL_SYSCALL_CHECK=y 91 91 CONFIG_KALLSYMS=y 92 92 CONFIG_KALLSYMS_ALL=y 93 93 CONFIG_KALLSYMS_EXTRA_PASS=y ··· 103 105 CONFIG_TIMERFD=y 104 106 CONFIG_EVENTFD=y 105 107 CONFIG_SHMEM=y 108 + CONFIG_AIO=y 106 109 CONFIG_VM_EVENT_COUNTERS=y 110 + CONFIG_PCI_QUIRKS=y 107 111 CONFIG_SLUB_DEBUG=y 108 112 # CONFIG_SLAB is not set 109 113 CONFIG_SLUB=y ··· 119 119 CONFIG_HAVE_KPROBES=y 120 120 CONFIG_HAVE_KRETPROBES=y 121 121 CONFIG_HAVE_ARCH_TRACEHOOK=y 122 - # CONFIG_HAVE_DMA_ATTRS is not set 123 - # CONFIG_USE_GENERIC_SMP_HELPERS is not set 124 - # CONFIG_HAVE_CLK is not set 125 - CONFIG_PROC_PAGE_MONITOR=y 126 122 # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set 127 123 CONFIG_SLABINFO=y 128 124 CONFIG_RT_MUTEXES=y ··· 151 155 # CONFIG_DEFAULT_NOOP is not set 152 156 CONFIG_DEFAULT_IOSCHED="anticipatory" 153 157 CONFIG_CLASSIC_RCU=y 158 + # CONFIG_FREEZER is not set 154 159 CONFIG_PPC4xx_PCI_EXPRESS=y 155 160 156 161 # ··· 160 163 # CONFIG_PPC_CELL is not set 161 164 # CONFIG_PPC_CELL_NATIVE is not set 162 165 # CONFIG_PQ2ADS is not set 166 + # CONFIG_PPC4xx_GPIO is not set 167 + # CONFIG_ACADIA is not set 163 168 # CONFIG_EP405 is not set 169 + # CONFIG_HCU4 is not set 164 170 CONFIG_KILAUEA=y 165 171 # CONFIG_MAKALU is not set 166 172 # CONFIG_WALNUT is not set 167 173 # CONFIG_XILINX_VIRTEX_GENERIC_BOARD is not set 174 + # CONFIG_PPC40x_SIMPLE is not set 168 175 CONFIG_405EX=y 169 176 # CONFIG_IPIC is not set 170 177 # CONFIG_MPIC is not set ··· 187 186 # Kernel options 188 187 # 189 188 # CONFIG_HIGHMEM is not set 190 - # CONFIG_TICK_ONESHOT is not set 191 189 # CONFIG_NO_HZ is not set 192 190 # CONFIG_HIGH_RES_TIMERS is not set 193 191 CONFIG_GENERIC_CLOCKEVENTS_BUILD=y ··· 200 200 # CONFIG_PREEMPT_VOLUNTARY is not set 201 201 # CONFIG_PREEMPT is not set 202 202 CONFIG_BINFMT_ELF=y 203 + # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 204 + # CONFIG_HAVE_AOUT is not set 203 205 # CONFIG_BINFMT_MISC is not set 204 206 # CONFIG_MATH_EMULATION is not set 205 207 # CONFIG_IOMMU_HELPER is not set ··· 216 214 # CONFIG_SPARSEMEM_MANUAL is not set 217 215 CONFIG_FLATMEM=y 218 216 CONFIG_FLAT_NODE_MEM_MAP=y 219 - # CONFIG_SPARSEMEM_STATIC is not set 220 - # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set 221 217 CONFIG_PAGEFLAGS_EXTENDED=y 222 218 CONFIG_SPLIT_PTLOCK_CPUS=4 223 219 CONFIG_MIGRATION=y 224 220 # CONFIG_RESOURCES_64BIT is not set 221 + # CONFIG_PHYS_ADDR_T_64BIT is not set 225 222 CONFIG_ZONE_DMA_FLAG=1 226 223 CONFIG_BOUNCE=y 227 224 CONFIG_VIRT_TO_BUS=y 225 + CONFIG_UNEVICTABLE_LRU=y 228 226 CONFIG_FORCE_MAX_ZONEORDER=11 229 227 CONFIG_PROC_DEVICETREE=y 230 228 # CONFIG_CMDLINE_BOOL is not set ··· 311 309 # CONFIG_TIPC is not set 312 310 # CONFIG_ATM is not set 313 311 # CONFIG_BRIDGE is not set 312 + # CONFIG_NET_DSA is not set 314 313 # CONFIG_VLAN_8021Q is not set 315 314 # CONFIG_DECNET is not set 316 315 # CONFIG_LLC2 is not set ··· 332 329 # CONFIG_IRDA is not set 333 330 # CONFIG_BT is not set 334 331 # CONFIG_AF_RXRPC is not set 335 - 336 - # 337 - # Wireless 338 - # 339 - # CONFIG_CFG80211 is not set 340 - # CONFIG_WIRELESS_EXT is not set 341 - # CONFIG_MAC80211 is not set 342 - # CONFIG_IEEE80211 is not set 332 + # CONFIG_PHONET is not set 333 + # CONFIG_WIRELESS is not set 343 334 # CONFIG_RFKILL is not set 344 335 # CONFIG_NET_9P is not set 345 336 ··· 508 511 CONFIG_IBM_NEW_EMAC_RGMII=y 509 512 # CONFIG_IBM_NEW_EMAC_TAH is not set 510 513 CONFIG_IBM_NEW_EMAC_EMAC4=y 514 + # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set 515 + # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set 516 + # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set 511 517 # CONFIG_NET_PCI is not set 512 518 # CONFIG_B44 is not set 519 + # CONFIG_ATL2 is not set 513 520 # CONFIG_NETDEV_1000 is not set 514 521 # CONFIG_NETDEV_10000 is not set 515 522 # CONFIG_TR is not set ··· 610 609 # CONFIG_MFD_CORE is not set 611 610 # CONFIG_MFD_SM501 is not set 612 611 # CONFIG_HTC_PASIC3 is not set 612 + # CONFIG_MFD_TMIO is not set 613 + # CONFIG_MFD_WM8400 is not set 613 614 614 615 # 615 616 # Multimedia devices ··· 645 642 # CONFIG_DISPLAY_SUPPORT is not set 646 643 # CONFIG_SOUND is not set 647 644 # CONFIG_USB_SUPPORT is not set 645 + # CONFIG_UWB is not set 648 646 # CONFIG_MMC is not set 649 647 # CONFIG_MEMSTICK is not set 650 648 # CONFIG_NEW_LEDS is not set ··· 655 651 # CONFIG_RTC_CLASS is not set 656 652 # CONFIG_DMADEVICES is not set 657 653 # CONFIG_UIO is not set 654 + # CONFIG_STAGING is not set 658 655 659 656 # 660 657 # File systems ··· 664 659 # CONFIG_EXT2_FS_XATTR is not set 665 660 # CONFIG_EXT2_FS_XIP is not set 666 661 # CONFIG_EXT3_FS is not set 667 - # CONFIG_EXT4DEV_FS is not set 662 + # CONFIG_EXT4_FS is not set 668 663 # CONFIG_REISERFS_FS is not set 669 664 # CONFIG_JFS_FS is not set 670 665 # CONFIG_FS_POSIX_ACL is not set 666 + CONFIG_FILE_LOCKING=y 671 667 # CONFIG_XFS_FS is not set 672 668 # CONFIG_OCFS2_FS is not set 673 669 CONFIG_DNOTIFY=y ··· 698 692 CONFIG_PROC_FS=y 699 693 CONFIG_PROC_KCORE=y 700 694 CONFIG_PROC_SYSCTL=y 695 + CONFIG_PROC_PAGE_MONITOR=y 701 696 CONFIG_SYSFS=y 702 697 CONFIG_TMPFS=y 703 698 # CONFIG_TMPFS_POSIX_ACL is not set ··· 736 729 CONFIG_LOCKD_V4=y 737 730 CONFIG_NFS_COMMON=y 738 731 CONFIG_SUNRPC=y 732 + # CONFIG_SUNRPC_REGISTER_V4 is not set 739 733 # CONFIG_RPCSEC_GSS_KRB5 is not set 740 734 # CONFIG_RPCSEC_GSS_SPKM3 is not set 741 735 # CONFIG_SMB_FS is not set ··· 757 749 # Library routines 758 750 # 759 751 CONFIG_BITREVERSE=y 760 - # CONFIG_GENERIC_FIND_FIRST_BIT is not set 761 752 # CONFIG_CRC_CCITT is not set 762 753 # CONFIG_CRC16 is not set 763 754 # CONFIG_CRC_T10DIF is not set ··· 809 802 # CONFIG_DEBUG_SG is not set 810 803 # CONFIG_BOOT_PRINTK_DELAY is not set 811 804 # CONFIG_RCU_TORTURE_TEST is not set 805 + # CONFIG_RCU_CPU_STALL_DETECTOR is not set 812 806 # CONFIG_BACKTRACE_SELF_TEST is not set 807 + # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 813 808 # CONFIG_FAULT_INJECTION is not set 814 809 # CONFIG_LATENCYTOP is not set 810 + CONFIG_SYSCTL_SYSCALL_CHECK=y 811 + CONFIG_NOP_TRACER=y 815 812 CONFIG_HAVE_FTRACE=y 816 813 CONFIG_HAVE_DYNAMIC_FTRACE=y 817 814 # CONFIG_FTRACE is not set 818 815 # CONFIG_SCHED_TRACER is not set 819 816 # CONFIG_CONTEXT_SWITCH_TRACER is not set 817 + # CONFIG_BOOT_TRACER is not set 818 + # CONFIG_STACK_TRACER is not set 819 + # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 820 820 # CONFIG_SAMPLES is not set 821 821 CONFIG_HAVE_ARCH_KGDB=y 822 822 # CONFIG_KGDB is not set ··· 832 818 # CONFIG_DEBUG_PAGEALLOC is not set 833 819 # CONFIG_CODE_PATCHING_SELFTEST is not set 834 820 # CONFIG_FTR_FIXUP_SELFTEST is not set 821 + # CONFIG_MSI_BITMAP_SELFTEST is not set 835 822 # CONFIG_XMON is not set 836 823 # CONFIG_IRQSTACKS is not set 837 824 # CONFIG_VIRQ_DEBUG is not set ··· 844 829 # 845 830 # CONFIG_KEYS is not set 846 831 # CONFIG_SECURITY is not set 832 + # CONFIG_SECURITYFS is not set 847 833 # CONFIG_SECURITY_FILE_CAPABILITIES is not set 848 834 CONFIG_CRYPTO=y 849 835 850 836 # 851 837 # Crypto core or helper 852 838 # 839 + # CONFIG_CRYPTO_FIPS is not set 853 840 CONFIG_CRYPTO_ALGAPI=y 841 + CONFIG_CRYPTO_AEAD=y 854 842 CONFIG_CRYPTO_BLKCIPHER=y 843 + CONFIG_CRYPTO_HASH=y 844 + CONFIG_CRYPTO_RNG=y 855 845 CONFIG_CRYPTO_MANAGER=y 856 846 # CONFIG_CRYPTO_GF128MUL is not set 857 847 # CONFIG_CRYPTO_NULL is not set ··· 929 909 # 930 910 # CONFIG_CRYPTO_DEFLATE is not set 931 911 # CONFIG_CRYPTO_LZO is not set 912 + 913 + # 914 + # Random Number Generation 915 + # 916 + # CONFIG_CRYPTO_ANSI_CPRNG is not set 932 917 CONFIG_CRYPTO_HW=y 933 918 # CONFIG_CRYPTO_DEV_HIFN_795X is not set 934 919 # CONFIG_PPC_CLOCK is not set
+47 -22
arch/powerpc/configs/40x/makalu_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27-rc1 4 - # Tue Aug 5 19:38:39 2008 3 + # Linux kernel version: 2.6.28-rc2 4 + # Tue Oct 28 08:49:25 2008 5 5 # 6 6 # CONFIG_PPC64 is not set 7 7 ··· 19 19 CONFIG_NOT_COHERENT_CACHE=y 20 20 CONFIG_PPC32=y 21 21 CONFIG_WORD_SIZE=32 22 - CONFIG_PPC_MERGE=y 22 + # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set 23 23 CONFIG_MMU=y 24 24 CONFIG_GENERIC_CMOS_UPDATE=y 25 25 CONFIG_GENERIC_TIME=y 26 26 CONFIG_GENERIC_TIME_VSYSCALL=y 27 27 CONFIG_GENERIC_CLOCKEVENTS=y 28 28 CONFIG_GENERIC_HARDIRQS=y 29 - # CONFIG_HAVE_GET_USER_PAGES_FAST is not set 30 29 # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set 31 30 CONFIG_IRQ_PER_CPU=y 32 31 CONFIG_STACKTRACE_SUPPORT=y ··· 87 88 CONFIG_SYSCTL=y 88 89 CONFIG_EMBEDDED=y 89 90 CONFIG_SYSCTL_SYSCALL=y 90 - CONFIG_SYSCTL_SYSCALL_CHECK=y 91 91 CONFIG_KALLSYMS=y 92 92 CONFIG_KALLSYMS_ALL=y 93 93 CONFIG_KALLSYMS_EXTRA_PASS=y ··· 103 105 CONFIG_TIMERFD=y 104 106 CONFIG_EVENTFD=y 105 107 CONFIG_SHMEM=y 108 + CONFIG_AIO=y 106 109 CONFIG_VM_EVENT_COUNTERS=y 110 + CONFIG_PCI_QUIRKS=y 107 111 CONFIG_SLUB_DEBUG=y 108 112 # CONFIG_SLAB is not set 109 113 CONFIG_SLUB=y ··· 119 119 CONFIG_HAVE_KPROBES=y 120 120 CONFIG_HAVE_KRETPROBES=y 121 121 CONFIG_HAVE_ARCH_TRACEHOOK=y 122 - # CONFIG_HAVE_DMA_ATTRS is not set 123 - # CONFIG_USE_GENERIC_SMP_HELPERS is not set 124 - # CONFIG_HAVE_CLK is not set 125 - CONFIG_PROC_PAGE_MONITOR=y 126 122 # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set 127 123 CONFIG_SLABINFO=y 128 124 CONFIG_RT_MUTEXES=y ··· 151 155 # CONFIG_DEFAULT_NOOP is not set 152 156 CONFIG_DEFAULT_IOSCHED="anticipatory" 153 157 CONFIG_CLASSIC_RCU=y 158 + # CONFIG_FREEZER is not set 154 159 CONFIG_PPC4xx_PCI_EXPRESS=y 155 160 156 161 # ··· 160 163 # CONFIG_PPC_CELL is not set 161 164 # CONFIG_PPC_CELL_NATIVE is not set 162 165 # CONFIG_PQ2ADS is not set 166 + # CONFIG_PPC4xx_GPIO is not set 167 + # CONFIG_ACADIA is not set 163 168 # CONFIG_EP405 is not set 169 + # CONFIG_HCU4 is not set 164 170 # CONFIG_KILAUEA is not set 165 171 CONFIG_MAKALU=y 166 172 # CONFIG_WALNUT is not set 167 173 # CONFIG_XILINX_VIRTEX_GENERIC_BOARD is not set 174 + # CONFIG_PPC40x_SIMPLE is not set 168 175 CONFIG_405EX=y 169 176 # CONFIG_IPIC is not set 170 177 # CONFIG_MPIC is not set ··· 187 186 # Kernel options 188 187 # 189 188 # CONFIG_HIGHMEM is not set 190 - # CONFIG_TICK_ONESHOT is not set 191 189 # CONFIG_NO_HZ is not set 192 190 # CONFIG_HIGH_RES_TIMERS is not set 193 191 CONFIG_GENERIC_CLOCKEVENTS_BUILD=y ··· 200 200 # CONFIG_PREEMPT_VOLUNTARY is not set 201 201 # CONFIG_PREEMPT is not set 202 202 CONFIG_BINFMT_ELF=y 203 + # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 204 + # CONFIG_HAVE_AOUT is not set 203 205 # CONFIG_BINFMT_MISC is not set 204 206 # CONFIG_MATH_EMULATION is not set 205 207 # CONFIG_IOMMU_HELPER is not set ··· 216 214 # CONFIG_SPARSEMEM_MANUAL is not set 217 215 CONFIG_FLATMEM=y 218 216 CONFIG_FLAT_NODE_MEM_MAP=y 219 - # CONFIG_SPARSEMEM_STATIC is not set 220 - # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set 221 217 CONFIG_PAGEFLAGS_EXTENDED=y 222 218 CONFIG_SPLIT_PTLOCK_CPUS=4 223 219 CONFIG_MIGRATION=y 224 220 # CONFIG_RESOURCES_64BIT is not set 221 + # CONFIG_PHYS_ADDR_T_64BIT is not set 225 222 CONFIG_ZONE_DMA_FLAG=1 226 223 CONFIG_BOUNCE=y 227 224 CONFIG_VIRT_TO_BUS=y 225 + CONFIG_UNEVICTABLE_LRU=y 228 226 CONFIG_FORCE_MAX_ZONEORDER=11 229 227 CONFIG_PROC_DEVICETREE=y 230 228 # CONFIG_CMDLINE_BOOL is not set ··· 311 309 # CONFIG_TIPC is not set 312 310 # CONFIG_ATM is not set 313 311 # CONFIG_BRIDGE is not set 312 + # CONFIG_NET_DSA is not set 314 313 # CONFIG_VLAN_8021Q is not set 315 314 # CONFIG_DECNET is not set 316 315 # CONFIG_LLC2 is not set ··· 332 329 # CONFIG_IRDA is not set 333 330 # CONFIG_BT is not set 334 331 # CONFIG_AF_RXRPC is not set 335 - 336 - # 337 - # Wireless 338 - # 339 - # CONFIG_CFG80211 is not set 340 - # CONFIG_WIRELESS_EXT is not set 341 - # CONFIG_MAC80211 is not set 342 - # CONFIG_IEEE80211 is not set 332 + # CONFIG_PHONET is not set 333 + # CONFIG_WIRELESS is not set 343 334 # CONFIG_RFKILL is not set 344 335 # CONFIG_NET_9P is not set 345 336 ··· 508 511 CONFIG_IBM_NEW_EMAC_RGMII=y 509 512 # CONFIG_IBM_NEW_EMAC_TAH is not set 510 513 CONFIG_IBM_NEW_EMAC_EMAC4=y 514 + # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set 515 + # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set 516 + # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set 511 517 # CONFIG_NET_PCI is not set 512 518 # CONFIG_B44 is not set 519 + # CONFIG_ATL2 is not set 513 520 # CONFIG_NETDEV_1000 is not set 514 521 # CONFIG_NETDEV_10000 is not set 515 522 # CONFIG_TR is not set ··· 610 609 # CONFIG_MFD_CORE is not set 611 610 # CONFIG_MFD_SM501 is not set 612 611 # CONFIG_HTC_PASIC3 is not set 612 + # CONFIG_MFD_TMIO is not set 613 + # CONFIG_MFD_WM8400 is not set 613 614 614 615 # 615 616 # Multimedia devices ··· 645 642 # CONFIG_DISPLAY_SUPPORT is not set 646 643 # CONFIG_SOUND is not set 647 644 # CONFIG_USB_SUPPORT is not set 645 + # CONFIG_UWB is not set 648 646 # CONFIG_MMC is not set 649 647 # CONFIG_MEMSTICK is not set 650 648 # CONFIG_NEW_LEDS is not set ··· 655 651 # CONFIG_RTC_CLASS is not set 656 652 # CONFIG_DMADEVICES is not set 657 653 # CONFIG_UIO is not set 654 + # CONFIG_STAGING is not set 658 655 659 656 # 660 657 # File systems ··· 664 659 # CONFIG_EXT2_FS_XATTR is not set 665 660 # CONFIG_EXT2_FS_XIP is not set 666 661 # CONFIG_EXT3_FS is not set 667 - # CONFIG_EXT4DEV_FS is not set 662 + # CONFIG_EXT4_FS is not set 668 663 # CONFIG_REISERFS_FS is not set 669 664 # CONFIG_JFS_FS is not set 670 665 # CONFIG_FS_POSIX_ACL is not set 666 + CONFIG_FILE_LOCKING=y 671 667 # CONFIG_XFS_FS is not set 672 668 # CONFIG_OCFS2_FS is not set 673 669 CONFIG_DNOTIFY=y ··· 698 692 CONFIG_PROC_FS=y 699 693 CONFIG_PROC_KCORE=y 700 694 CONFIG_PROC_SYSCTL=y 695 + CONFIG_PROC_PAGE_MONITOR=y 701 696 CONFIG_SYSFS=y 702 697 CONFIG_TMPFS=y 703 698 # CONFIG_TMPFS_POSIX_ACL is not set ··· 736 729 CONFIG_LOCKD_V4=y 737 730 CONFIG_NFS_COMMON=y 738 731 CONFIG_SUNRPC=y 732 + # CONFIG_SUNRPC_REGISTER_V4 is not set 739 733 # CONFIG_RPCSEC_GSS_KRB5 is not set 740 734 # CONFIG_RPCSEC_GSS_SPKM3 is not set 741 735 # CONFIG_SMB_FS is not set ··· 757 749 # Library routines 758 750 # 759 751 CONFIG_BITREVERSE=y 760 - # CONFIG_GENERIC_FIND_FIRST_BIT is not set 761 752 # CONFIG_CRC_CCITT is not set 762 753 # CONFIG_CRC16 is not set 763 754 # CONFIG_CRC_T10DIF is not set ··· 809 802 # CONFIG_DEBUG_SG is not set 810 803 # CONFIG_BOOT_PRINTK_DELAY is not set 811 804 # CONFIG_RCU_TORTURE_TEST is not set 805 + # CONFIG_RCU_CPU_STALL_DETECTOR is not set 812 806 # CONFIG_BACKTRACE_SELF_TEST is not set 807 + # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 813 808 # CONFIG_FAULT_INJECTION is not set 814 809 # CONFIG_LATENCYTOP is not set 810 + CONFIG_SYSCTL_SYSCALL_CHECK=y 811 + CONFIG_NOP_TRACER=y 815 812 CONFIG_HAVE_FTRACE=y 816 813 CONFIG_HAVE_DYNAMIC_FTRACE=y 817 814 # CONFIG_FTRACE is not set 818 815 # CONFIG_SCHED_TRACER is not set 819 816 # CONFIG_CONTEXT_SWITCH_TRACER is not set 817 + # CONFIG_BOOT_TRACER is not set 818 + # CONFIG_STACK_TRACER is not set 819 + # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 820 820 # CONFIG_SAMPLES is not set 821 821 CONFIG_HAVE_ARCH_KGDB=y 822 822 # CONFIG_KGDB is not set ··· 832 818 # CONFIG_DEBUG_PAGEALLOC is not set 833 819 # CONFIG_CODE_PATCHING_SELFTEST is not set 834 820 # CONFIG_FTR_FIXUP_SELFTEST is not set 821 + # CONFIG_MSI_BITMAP_SELFTEST is not set 835 822 # CONFIG_XMON is not set 836 823 # CONFIG_IRQSTACKS is not set 837 824 # CONFIG_VIRQ_DEBUG is not set ··· 844 829 # 845 830 # CONFIG_KEYS is not set 846 831 # CONFIG_SECURITY is not set 832 + # CONFIG_SECURITYFS is not set 847 833 # CONFIG_SECURITY_FILE_CAPABILITIES is not set 848 834 CONFIG_CRYPTO=y 849 835 850 836 # 851 837 # Crypto core or helper 852 838 # 839 + # CONFIG_CRYPTO_FIPS is not set 853 840 CONFIG_CRYPTO_ALGAPI=y 841 + CONFIG_CRYPTO_AEAD=y 854 842 CONFIG_CRYPTO_BLKCIPHER=y 843 + CONFIG_CRYPTO_HASH=y 844 + CONFIG_CRYPTO_RNG=y 855 845 CONFIG_CRYPTO_MANAGER=y 856 846 # CONFIG_CRYPTO_GF128MUL is not set 857 847 # CONFIG_CRYPTO_NULL is not set ··· 929 909 # 930 910 # CONFIG_CRYPTO_DEFLATE is not set 931 911 # CONFIG_CRYPTO_LZO is not set 912 + 913 + # 914 + # Random Number Generation 915 + # 916 + # CONFIG_CRYPTO_ANSI_CPRNG is not set 932 917 CONFIG_CRYPTO_HW=y 933 918 # CONFIG_CRYPTO_DEV_HIFN_795X is not set 934 919 # CONFIG_PPC_CLOCK is not set
+55 -22
arch/powerpc/configs/40x/walnut_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27-rc1 4 - # Tue Aug 5 19:40:56 2008 3 + # Linux kernel version: 2.6.28-rc2 4 + # Tue Oct 28 08:49:27 2008 5 5 # 6 6 # CONFIG_PPC64 is not set 7 7 ··· 19 19 CONFIG_NOT_COHERENT_CACHE=y 20 20 CONFIG_PPC32=y 21 21 CONFIG_WORD_SIZE=32 22 - CONFIG_PPC_MERGE=y 22 + # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set 23 23 CONFIG_MMU=y 24 24 CONFIG_GENERIC_CMOS_UPDATE=y 25 25 CONFIG_GENERIC_TIME=y 26 26 CONFIG_GENERIC_TIME_VSYSCALL=y 27 27 CONFIG_GENERIC_CLOCKEVENTS=y 28 28 CONFIG_GENERIC_HARDIRQS=y 29 - # CONFIG_HAVE_GET_USER_PAGES_FAST is not set 30 29 # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set 31 30 CONFIG_IRQ_PER_CPU=y 32 31 CONFIG_STACKTRACE_SUPPORT=y ··· 87 88 CONFIG_SYSCTL=y 88 89 CONFIG_EMBEDDED=y 89 90 CONFIG_SYSCTL_SYSCALL=y 90 - CONFIG_SYSCTL_SYSCALL_CHECK=y 91 91 CONFIG_KALLSYMS=y 92 92 CONFIG_KALLSYMS_ALL=y 93 93 CONFIG_KALLSYMS_EXTRA_PASS=y ··· 103 105 CONFIG_TIMERFD=y 104 106 CONFIG_EVENTFD=y 105 107 CONFIG_SHMEM=y 108 + CONFIG_AIO=y 106 109 CONFIG_VM_EVENT_COUNTERS=y 110 + CONFIG_PCI_QUIRKS=y 107 111 CONFIG_SLUB_DEBUG=y 108 112 # CONFIG_SLAB is not set 109 113 CONFIG_SLUB=y ··· 119 119 CONFIG_HAVE_KPROBES=y 120 120 CONFIG_HAVE_KRETPROBES=y 121 121 CONFIG_HAVE_ARCH_TRACEHOOK=y 122 - # CONFIG_HAVE_DMA_ATTRS is not set 123 - # CONFIG_USE_GENERIC_SMP_HELPERS is not set 124 - # CONFIG_HAVE_CLK is not set 125 - CONFIG_PROC_PAGE_MONITOR=y 126 122 # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set 127 123 CONFIG_SLABINFO=y 128 124 CONFIG_RT_MUTEXES=y ··· 151 155 # CONFIG_DEFAULT_NOOP is not set 152 156 CONFIG_DEFAULT_IOSCHED="anticipatory" 153 157 CONFIG_CLASSIC_RCU=y 158 + # CONFIG_FREEZER is not set 154 159 # CONFIG_PPC4xx_PCI_EXPRESS is not set 155 160 156 161 # ··· 160 163 # CONFIG_PPC_CELL is not set 161 164 # CONFIG_PPC_CELL_NATIVE is not set 162 165 # CONFIG_PQ2ADS is not set 166 + # CONFIG_PPC4xx_GPIO is not set 167 + # CONFIG_ACADIA is not set 163 168 # CONFIG_EP405 is not set 169 + # CONFIG_HCU4 is not set 164 170 # CONFIG_KILAUEA is not set 165 171 # CONFIG_MAKALU is not set 166 172 CONFIG_WALNUT=y 167 173 # CONFIG_XILINX_VIRTEX_GENERIC_BOARD is not set 174 + # CONFIG_PPC40x_SIMPLE is not set 168 175 CONFIG_405GP=y 169 176 CONFIG_IBM405_ERR77=y 170 177 CONFIG_IBM405_ERR51=y ··· 190 189 # Kernel options 191 190 # 192 191 # CONFIG_HIGHMEM is not set 193 - # CONFIG_TICK_ONESHOT is not set 194 192 # CONFIG_NO_HZ is not set 195 193 # CONFIG_HIGH_RES_TIMERS is not set 196 194 CONFIG_GENERIC_CLOCKEVENTS_BUILD=y ··· 203 203 # CONFIG_PREEMPT_VOLUNTARY is not set 204 204 # CONFIG_PREEMPT is not set 205 205 CONFIG_BINFMT_ELF=y 206 + # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 207 + # CONFIG_HAVE_AOUT is not set 206 208 # CONFIG_BINFMT_MISC is not set 207 209 # CONFIG_MATH_EMULATION is not set 208 210 # CONFIG_IOMMU_HELPER is not set ··· 219 217 # CONFIG_SPARSEMEM_MANUAL is not set 220 218 CONFIG_FLATMEM=y 221 219 CONFIG_FLAT_NODE_MEM_MAP=y 222 - # CONFIG_SPARSEMEM_STATIC is not set 223 - # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set 224 220 CONFIG_PAGEFLAGS_EXTENDED=y 225 221 CONFIG_SPLIT_PTLOCK_CPUS=4 226 222 CONFIG_MIGRATION=y 227 223 CONFIG_RESOURCES_64BIT=y 224 + # CONFIG_PHYS_ADDR_T_64BIT is not set 228 225 CONFIG_ZONE_DMA_FLAG=1 229 226 CONFIG_BOUNCE=y 230 227 CONFIG_VIRT_TO_BUS=y 228 + CONFIG_UNEVICTABLE_LRU=y 231 229 CONFIG_FORCE_MAX_ZONEORDER=11 232 230 CONFIG_PROC_DEVICETREE=y 233 231 # CONFIG_CMDLINE_BOOL is not set ··· 314 312 # CONFIG_TIPC is not set 315 313 # CONFIG_ATM is not set 316 314 # CONFIG_BRIDGE is not set 315 + # CONFIG_NET_DSA is not set 317 316 # CONFIG_VLAN_8021Q is not set 318 317 # CONFIG_DECNET is not set 319 318 # CONFIG_LLC2 is not set ··· 335 332 # CONFIG_IRDA is not set 336 333 # CONFIG_BT is not set 337 334 # CONFIG_AF_RXRPC is not set 338 - 339 - # 340 - # Wireless 341 - # 342 - # CONFIG_CFG80211 is not set 343 - # CONFIG_WIRELESS_EXT is not set 344 - # CONFIG_MAC80211 is not set 345 - # CONFIG_IEEE80211 is not set 335 + # CONFIG_PHONET is not set 336 + # CONFIG_WIRELESS is not set 346 337 # CONFIG_RFKILL is not set 347 338 # CONFIG_NET_9P is not set 348 339 ··· 517 520 # CONFIG_IBM_NEW_EMAC_RGMII is not set 518 521 # CONFIG_IBM_NEW_EMAC_TAH is not set 519 522 # CONFIG_IBM_NEW_EMAC_EMAC4 is not set 523 + # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set 524 + # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set 525 + # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set 520 526 # CONFIG_NET_PCI is not set 521 527 # CONFIG_B44 is not set 528 + # CONFIG_ATL2 is not set 522 529 CONFIG_NETDEV_1000=y 523 530 # CONFIG_ACENIC is not set 524 531 # CONFIG_DL2K is not set ··· 543 542 # CONFIG_QLA3XXX is not set 544 543 # CONFIG_ATL1 is not set 545 544 # CONFIG_ATL1E is not set 545 + # CONFIG_JME is not set 546 546 CONFIG_NETDEV_10000=y 547 547 # CONFIG_CHELSIO_T1 is not set 548 548 # CONFIG_CHELSIO_T3 is not set 549 + # CONFIG_ENIC is not set 549 550 # CONFIG_IXGBE is not set 550 551 # CONFIG_IXGB is not set 551 552 # CONFIG_S2IO is not set 552 553 # CONFIG_MYRI10GE is not set 553 554 # CONFIG_NETXEN_NIC is not set 554 555 # CONFIG_NIU is not set 556 + # CONFIG_MLX4_EN is not set 555 557 # CONFIG_MLX4_CORE is not set 556 558 # CONFIG_TEHUTI is not set 557 559 # CONFIG_BNX2X is not set 560 + # CONFIG_QLGE is not set 558 561 # CONFIG_SFC is not set 559 562 # CONFIG_TR is not set 560 563 ··· 654 649 # CONFIG_MFD_CORE is not set 655 650 # CONFIG_MFD_SM501 is not set 656 651 # CONFIG_HTC_PASIC3 is not set 652 + # CONFIG_MFD_TMIO is not set 653 + # CONFIG_MFD_WM8400 is not set 657 654 658 655 # 659 656 # Multimedia devices ··· 697 690 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 698 691 699 692 # 693 + # Enable Host or Gadget support to see Inventra options 694 + # 695 + 696 + # 700 697 # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 701 698 # 702 699 # CONFIG_USB_GADGET is not set 700 + # CONFIG_UWB is not set 703 701 # CONFIG_MMC is not set 704 702 # CONFIG_MEMSTICK is not set 705 703 # CONFIG_NEW_LEDS is not set ··· 714 702 # CONFIG_RTC_CLASS is not set 715 703 # CONFIG_DMADEVICES is not set 716 704 # CONFIG_UIO is not set 705 + # CONFIG_STAGING is not set 717 706 718 707 # 719 708 # File systems ··· 723 710 # CONFIG_EXT2_FS_XATTR is not set 724 711 # CONFIG_EXT2_FS_XIP is not set 725 712 # CONFIG_EXT3_FS is not set 726 - # CONFIG_EXT4DEV_FS is not set 713 + # CONFIG_EXT4_FS is not set 727 714 # CONFIG_REISERFS_FS is not set 728 715 # CONFIG_JFS_FS is not set 729 716 # CONFIG_FS_POSIX_ACL is not set 717 + CONFIG_FILE_LOCKING=y 730 718 # CONFIG_XFS_FS is not set 731 719 # CONFIG_OCFS2_FS is not set 732 720 CONFIG_DNOTIFY=y ··· 757 743 CONFIG_PROC_FS=y 758 744 CONFIG_PROC_KCORE=y 759 745 CONFIG_PROC_SYSCTL=y 746 + CONFIG_PROC_PAGE_MONITOR=y 760 747 CONFIG_SYSFS=y 761 748 CONFIG_TMPFS=y 762 749 # CONFIG_TMPFS_POSIX_ACL is not set ··· 795 780 CONFIG_LOCKD_V4=y 796 781 CONFIG_NFS_COMMON=y 797 782 CONFIG_SUNRPC=y 783 + # CONFIG_SUNRPC_REGISTER_V4 is not set 798 784 # CONFIG_RPCSEC_GSS_KRB5 is not set 799 785 # CONFIG_RPCSEC_GSS_SPKM3 is not set 800 786 # CONFIG_SMB_FS is not set ··· 816 800 # Library routines 817 801 # 818 802 CONFIG_BITREVERSE=y 819 - # CONFIG_GENERIC_FIND_FIRST_BIT is not set 820 803 # CONFIG_CRC_CCITT is not set 821 804 # CONFIG_CRC16 is not set 822 805 # CONFIG_CRC_T10DIF is not set ··· 868 853 # CONFIG_DEBUG_SG is not set 869 854 # CONFIG_BOOT_PRINTK_DELAY is not set 870 855 # CONFIG_RCU_TORTURE_TEST is not set 856 + # CONFIG_RCU_CPU_STALL_DETECTOR is not set 871 857 # CONFIG_BACKTRACE_SELF_TEST is not set 858 + # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 872 859 # CONFIG_FAULT_INJECTION is not set 873 860 # CONFIG_LATENCYTOP is not set 861 + CONFIG_SYSCTL_SYSCALL_CHECK=y 862 + CONFIG_NOP_TRACER=y 874 863 CONFIG_HAVE_FTRACE=y 875 864 CONFIG_HAVE_DYNAMIC_FTRACE=y 876 865 # CONFIG_FTRACE is not set 877 866 # CONFIG_SCHED_TRACER is not set 878 867 # CONFIG_CONTEXT_SWITCH_TRACER is not set 868 + # CONFIG_BOOT_TRACER is not set 869 + # CONFIG_STACK_TRACER is not set 870 + # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 879 871 # CONFIG_SAMPLES is not set 880 872 CONFIG_HAVE_ARCH_KGDB=y 881 873 # CONFIG_KGDB is not set ··· 891 869 # CONFIG_DEBUG_PAGEALLOC is not set 892 870 # CONFIG_CODE_PATCHING_SELFTEST is not set 893 871 # CONFIG_FTR_FIXUP_SELFTEST is not set 872 + # CONFIG_MSI_BITMAP_SELFTEST is not set 894 873 # CONFIG_XMON is not set 895 874 # CONFIG_IRQSTACKS is not set 896 875 # CONFIG_VIRQ_DEBUG is not set ··· 903 880 # 904 881 # CONFIG_KEYS is not set 905 882 # CONFIG_SECURITY is not set 883 + # CONFIG_SECURITYFS is not set 906 884 # CONFIG_SECURITY_FILE_CAPABILITIES is not set 907 885 CONFIG_CRYPTO=y 908 886 909 887 # 910 888 # Crypto core or helper 911 889 # 890 + # CONFIG_CRYPTO_FIPS is not set 912 891 CONFIG_CRYPTO_ALGAPI=y 892 + CONFIG_CRYPTO_AEAD=y 913 893 CONFIG_CRYPTO_BLKCIPHER=y 894 + CONFIG_CRYPTO_HASH=y 895 + CONFIG_CRYPTO_RNG=y 914 896 CONFIG_CRYPTO_MANAGER=y 915 897 # CONFIG_CRYPTO_GF128MUL is not set 916 898 # CONFIG_CRYPTO_NULL is not set ··· 988 960 # 989 961 # CONFIG_CRYPTO_DEFLATE is not set 990 962 # CONFIG_CRYPTO_LZO is not set 963 + 964 + # 965 + # Random Number Generation 966 + # 967 + # CONFIG_CRYPTO_ANSI_CPRNG is not set 991 968 CONFIG_CRYPTO_HW=y 992 969 # CONFIG_CRYPTO_DEV_HIFN_795X is not set 993 970 # CONFIG_PPC_CLOCK is not set
+32 -19
arch/powerpc/configs/44x/arches_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27-rc5 4 - # Wed Oct 1 15:54:57 2008 3 + # Linux kernel version: 2.6.28-rc2 4 + # Tue Oct 28 09:16:04 2008 5 5 # 6 6 # CONFIG_PPC64 is not set 7 7 ··· 23 23 CONFIG_NOT_COHERENT_CACHE=y 24 24 CONFIG_PPC32=y 25 25 CONFIG_WORD_SIZE=32 26 - CONFIG_PPC_MERGE=y 26 + CONFIG_ARCH_PHYS_ADDR_T_64BIT=y 27 27 CONFIG_MMU=y 28 28 CONFIG_GENERIC_CMOS_UPDATE=y 29 29 CONFIG_GENERIC_TIME=y ··· 103 103 CONFIG_TIMERFD=y 104 104 CONFIG_EVENTFD=y 105 105 CONFIG_SHMEM=y 106 + CONFIG_AIO=y 106 107 CONFIG_VM_EVENT_COUNTERS=y 108 + CONFIG_PCI_QUIRKS=y 107 109 CONFIG_SLUB_DEBUG=y 108 110 # CONFIG_SLAB is not set 109 111 CONFIG_SLUB=y ··· 119 117 CONFIG_HAVE_KPROBES=y 120 118 CONFIG_HAVE_KRETPROBES=y 121 119 CONFIG_HAVE_ARCH_TRACEHOOK=y 122 - # CONFIG_HAVE_DMA_ATTRS is not set 123 - # CONFIG_USE_GENERIC_SMP_HELPERS is not set 124 - # CONFIG_HAVE_CLK is not set 125 - CONFIG_PROC_PAGE_MONITOR=y 126 120 # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set 127 121 CONFIG_SLABINFO=y 128 122 CONFIG_RT_MUTEXES=y ··· 151 153 # CONFIG_DEFAULT_NOOP is not set 152 154 CONFIG_DEFAULT_IOSCHED="anticipatory" 153 155 CONFIG_CLASSIC_RCU=y 156 + # CONFIG_FREEZER is not set 154 157 CONFIG_PPC4xx_PCI_EXPRESS=y 155 158 156 159 # ··· 174 175 # CONFIG_YOSEMITE is not set 175 176 # CONFIG_XILINX_VIRTEX440_GENERIC_BOARD is not set 176 177 CONFIG_PPC44x_SIMPLE=y 178 + # CONFIG_PPC4xx_GPIO is not set 177 179 CONFIG_460EX=y 178 180 # CONFIG_IPIC is not set 179 181 # CONFIG_MPIC is not set ··· 207 207 # CONFIG_PREEMPT_VOLUNTARY is not set 208 208 # CONFIG_PREEMPT is not set 209 209 CONFIG_BINFMT_ELF=y 210 + # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 211 + # CONFIG_HAVE_AOUT is not set 210 212 # CONFIG_BINFMT_MISC is not set 211 213 # CONFIG_MATH_EMULATION is not set 212 214 # CONFIG_IOMMU_HELPER is not set ··· 223 221 # CONFIG_SPARSEMEM_MANUAL is not set 224 222 CONFIG_FLATMEM=y 225 223 CONFIG_FLAT_NODE_MEM_MAP=y 226 - # CONFIG_SPARSEMEM_STATIC is not set 227 - # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set 228 224 CONFIG_PAGEFLAGS_EXTENDED=y 229 225 CONFIG_SPLIT_PTLOCK_CPUS=4 230 226 CONFIG_MIGRATION=y 231 227 CONFIG_RESOURCES_64BIT=y 228 + CONFIG_PHYS_ADDR_T_64BIT=y 232 229 CONFIG_ZONE_DMA_FLAG=1 233 230 CONFIG_BOUNCE=y 234 231 CONFIG_VIRT_TO_BUS=y 232 + CONFIG_UNEVICTABLE_LRU=y 235 233 CONFIG_FORCE_MAX_ZONEORDER=11 236 234 CONFIG_PROC_DEVICETREE=y 237 235 CONFIG_CMDLINE_BOOL=y ··· 318 316 # CONFIG_TIPC is not set 319 317 # CONFIG_ATM is not set 320 318 # CONFIG_BRIDGE is not set 319 + # CONFIG_NET_DSA is not set 321 320 # CONFIG_VLAN_8021Q is not set 322 321 # CONFIG_DECNET is not set 323 322 # CONFIG_LLC2 is not set ··· 339 336 # CONFIG_IRDA is not set 340 337 # CONFIG_BT is not set 341 338 # CONFIG_AF_RXRPC is not set 342 - 343 - # 344 - # Wireless 345 - # 346 - # CONFIG_CFG80211 is not set 347 - # CONFIG_WIRELESS_EXT is not set 348 - # CONFIG_MAC80211 is not set 349 - # CONFIG_IEEE80211 is not set 339 + # CONFIG_PHONET is not set 340 + # CONFIG_WIRELESS is not set 350 341 # CONFIG_RFKILL is not set 351 342 # CONFIG_NET_9P is not set 352 343 ··· 437 440 # CONFIG_IBM_NEW_EMAC_RGMII is not set 438 441 CONFIG_IBM_NEW_EMAC_TAH=y 439 442 CONFIG_IBM_NEW_EMAC_EMAC4=y 443 + # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set 444 + # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set 445 + # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set 440 446 # CONFIG_NET_PCI is not set 441 447 # CONFIG_B44 is not set 448 + # CONFIG_ATL2 is not set 442 449 # CONFIG_NETDEV_1000 is not set 443 450 # CONFIG_NETDEV_10000 is not set 444 451 # CONFIG_TR is not set ··· 541 540 # CONFIG_MFD_SM501 is not set 542 541 # CONFIG_HTC_PASIC3 is not set 543 542 # CONFIG_MFD_TMIO is not set 543 + # CONFIG_MFD_WM8400 is not set 544 544 545 545 # 546 546 # Multimedia devices ··· 575 573 # CONFIG_DISPLAY_SUPPORT is not set 576 574 # CONFIG_SOUND is not set 577 575 # CONFIG_USB_SUPPORT is not set 576 + # CONFIG_UWB is not set 578 577 # CONFIG_MMC is not set 579 578 # CONFIG_MEMSTICK is not set 580 579 # CONFIG_NEW_LEDS is not set ··· 585 582 # CONFIG_RTC_CLASS is not set 586 583 # CONFIG_DMADEVICES is not set 587 584 # CONFIG_UIO is not set 585 + # CONFIG_STAGING is not set 588 586 589 587 # 590 588 # File systems ··· 594 590 # CONFIG_EXT2_FS_XATTR is not set 595 591 # CONFIG_EXT2_FS_XIP is not set 596 592 # CONFIG_EXT3_FS is not set 597 - # CONFIG_EXT4DEV_FS is not set 593 + # CONFIG_EXT4_FS is not set 598 594 # CONFIG_REISERFS_FS is not set 599 595 # CONFIG_JFS_FS is not set 600 596 # CONFIG_FS_POSIX_ACL is not set 597 + CONFIG_FILE_LOCKING=y 601 598 # CONFIG_XFS_FS is not set 602 599 # CONFIG_OCFS2_FS is not set 603 600 CONFIG_DNOTIFY=y ··· 628 623 CONFIG_PROC_FS=y 629 624 CONFIG_PROC_KCORE=y 630 625 CONFIG_PROC_SYSCTL=y 626 + CONFIG_PROC_PAGE_MONITOR=y 631 627 CONFIG_SYSFS=y 632 628 CONFIG_TMPFS=y 633 629 # CONFIG_TMPFS_POSIX_ACL is not set ··· 665 659 CONFIG_LOCKD_V4=y 666 660 CONFIG_NFS_COMMON=y 667 661 CONFIG_SUNRPC=y 662 + # CONFIG_SUNRPC_REGISTER_V4 is not set 668 663 # CONFIG_RPCSEC_GSS_KRB5 is not set 669 664 # CONFIG_RPCSEC_GSS_SPKM3 is not set 670 665 # CONFIG_SMB_FS is not set ··· 686 679 # Library routines 687 680 # 688 681 CONFIG_BITREVERSE=y 689 - # CONFIG_GENERIC_FIND_FIRST_BIT is not set 690 682 # CONFIG_CRC_CCITT is not set 691 683 # CONFIG_CRC16 is not set 692 684 # CONFIG_CRC_T10DIF is not set ··· 738 732 # CONFIG_DEBUG_SG is not set 739 733 # CONFIG_BOOT_PRINTK_DELAY is not set 740 734 # CONFIG_RCU_TORTURE_TEST is not set 735 + # CONFIG_RCU_CPU_STALL_DETECTOR is not set 741 736 # CONFIG_BACKTRACE_SELF_TEST is not set 737 + # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 742 738 # CONFIG_FAULT_INJECTION is not set 743 739 # CONFIG_LATENCYTOP is not set 744 740 CONFIG_SYSCTL_SYSCALL_CHECK=y 741 + CONFIG_NOP_TRACER=y 745 742 CONFIG_HAVE_FTRACE=y 746 743 CONFIG_HAVE_DYNAMIC_FTRACE=y 747 744 # CONFIG_FTRACE is not set 748 745 # CONFIG_SCHED_TRACER is not set 749 746 # CONFIG_CONTEXT_SWITCH_TRACER is not set 747 + # CONFIG_BOOT_TRACER is not set 748 + # CONFIG_STACK_TRACER is not set 749 + # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 750 750 # CONFIG_SAMPLES is not set 751 751 CONFIG_HAVE_ARCH_KGDB=y 752 752 # CONFIG_KGDB is not set ··· 773 761 # 774 762 # CONFIG_KEYS is not set 775 763 # CONFIG_SECURITY is not set 764 + # CONFIG_SECURITYFS is not set 776 765 # CONFIG_SECURITY_FILE_CAPABILITIES is not set 777 766 # CONFIG_CRYPTO is not set 778 767 # CONFIG_PPC_CLOCK is not set
+55 -22
arch/powerpc/configs/44x/bamboo_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27-rc1 4 - # Tue Aug 5 08:43:44 2008 3 + # Linux kernel version: 2.6.28-rc2 4 + # Tue Oct 28 09:16:06 2008 5 5 # 6 6 # CONFIG_PPC64 is not set 7 7 ··· 23 23 CONFIG_NOT_COHERENT_CACHE=y 24 24 CONFIG_PPC32=y 25 25 CONFIG_WORD_SIZE=32 26 - CONFIG_PPC_MERGE=y 26 + CONFIG_ARCH_PHYS_ADDR_T_64BIT=y 27 27 CONFIG_MMU=y 28 28 CONFIG_GENERIC_CMOS_UPDATE=y 29 29 CONFIG_GENERIC_TIME=y 30 30 CONFIG_GENERIC_TIME_VSYSCALL=y 31 31 CONFIG_GENERIC_CLOCKEVENTS=y 32 32 CONFIG_GENERIC_HARDIRQS=y 33 - # CONFIG_HAVE_GET_USER_PAGES_FAST is not set 34 33 # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set 35 34 CONFIG_IRQ_PER_CPU=y 36 35 CONFIG_STACKTRACE_SUPPORT=y ··· 91 92 CONFIG_SYSCTL=y 92 93 CONFIG_EMBEDDED=y 93 94 CONFIG_SYSCTL_SYSCALL=y 94 - CONFIG_SYSCTL_SYSCALL_CHECK=y 95 95 CONFIG_KALLSYMS=y 96 96 # CONFIG_KALLSYMS_ALL is not set 97 97 # CONFIG_KALLSYMS_EXTRA_PASS is not set ··· 107 109 CONFIG_TIMERFD=y 108 110 CONFIG_EVENTFD=y 109 111 CONFIG_SHMEM=y 112 + CONFIG_AIO=y 110 113 CONFIG_VM_EVENT_COUNTERS=y 114 + CONFIG_PCI_QUIRKS=y 111 115 CONFIG_SLUB_DEBUG=y 112 116 # CONFIG_SLAB is not set 113 117 CONFIG_SLUB=y ··· 123 123 CONFIG_HAVE_KPROBES=y 124 124 CONFIG_HAVE_KRETPROBES=y 125 125 CONFIG_HAVE_ARCH_TRACEHOOK=y 126 - # CONFIG_HAVE_DMA_ATTRS is not set 127 - # CONFIG_USE_GENERIC_SMP_HELPERS is not set 128 - # CONFIG_HAVE_CLK is not set 129 - CONFIG_PROC_PAGE_MONITOR=y 130 126 # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set 131 127 CONFIG_SLABINFO=y 132 128 CONFIG_RT_MUTEXES=y ··· 155 159 # CONFIG_DEFAULT_NOOP is not set 156 160 CONFIG_DEFAULT_IOSCHED="anticipatory" 157 161 CONFIG_CLASSIC_RCU=y 162 + # CONFIG_FREEZER is not set 158 163 # CONFIG_PPC4xx_PCI_EXPRESS is not set 159 164 160 165 # ··· 172 175 # CONFIG_KATMAI is not set 173 176 # CONFIG_RAINIER is not set 174 177 # CONFIG_WARP is not set 178 + # CONFIG_ARCHES is not set 175 179 # CONFIG_CANYONLANDS is not set 180 + # CONFIG_GLACIER is not set 176 181 # CONFIG_YOSEMITE is not set 177 182 # CONFIG_XILINX_VIRTEX440_GENERIC_BOARD is not set 183 + CONFIG_PPC44x_SIMPLE=y 184 + # CONFIG_PPC4xx_GPIO is not set 178 185 CONFIG_440EP=y 179 186 CONFIG_IBM440EP_ERR42=y 180 187 # CONFIG_IPIC is not set ··· 198 197 # Kernel options 199 198 # 200 199 # CONFIG_HIGHMEM is not set 201 - # CONFIG_TICK_ONESHOT is not set 202 200 # CONFIG_NO_HZ is not set 203 201 # CONFIG_HIGH_RES_TIMERS is not set 204 202 CONFIG_GENERIC_CLOCKEVENTS_BUILD=y ··· 211 211 # CONFIG_PREEMPT_VOLUNTARY is not set 212 212 # CONFIG_PREEMPT is not set 213 213 CONFIG_BINFMT_ELF=y 214 + # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 215 + # CONFIG_HAVE_AOUT is not set 214 216 # CONFIG_BINFMT_MISC is not set 215 217 # CONFIG_MATH_EMULATION is not set 216 218 # CONFIG_IOMMU_HELPER is not set ··· 227 225 # CONFIG_SPARSEMEM_MANUAL is not set 228 226 CONFIG_FLATMEM=y 229 227 CONFIG_FLAT_NODE_MEM_MAP=y 230 - # CONFIG_SPARSEMEM_STATIC is not set 231 - # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set 232 228 CONFIG_PAGEFLAGS_EXTENDED=y 233 229 CONFIG_SPLIT_PTLOCK_CPUS=4 234 230 CONFIG_MIGRATION=y 235 231 CONFIG_RESOURCES_64BIT=y 232 + CONFIG_PHYS_ADDR_T_64BIT=y 236 233 CONFIG_ZONE_DMA_FLAG=1 237 234 CONFIG_BOUNCE=y 238 235 CONFIG_VIRT_TO_BUS=y 236 + CONFIG_UNEVICTABLE_LRU=y 239 237 CONFIG_FORCE_MAX_ZONEORDER=11 240 238 CONFIG_PROC_DEVICETREE=y 241 239 CONFIG_CMDLINE_BOOL=y ··· 322 320 # CONFIG_TIPC is not set 323 321 # CONFIG_ATM is not set 324 322 # CONFIG_BRIDGE is not set 323 + # CONFIG_NET_DSA is not set 325 324 # CONFIG_VLAN_8021Q is not set 326 325 # CONFIG_DECNET is not set 327 326 # CONFIG_LLC2 is not set ··· 343 340 # CONFIG_IRDA is not set 344 341 # CONFIG_BT is not set 345 342 # CONFIG_AF_RXRPC is not set 346 - 347 - # 348 - # Wireless 349 - # 350 - # CONFIG_CFG80211 is not set 351 - # CONFIG_WIRELESS_EXT is not set 352 - # CONFIG_MAC80211 is not set 353 - # CONFIG_IEEE80211 is not set 343 + # CONFIG_PHONET is not set 344 + # CONFIG_WIRELESS is not set 354 345 # CONFIG_RFKILL is not set 355 346 # CONFIG_NET_9P is not set 356 347 ··· 447 450 # CONFIG_IBM_NEW_EMAC_RGMII is not set 448 451 # CONFIG_IBM_NEW_EMAC_TAH is not set 449 452 # CONFIG_IBM_NEW_EMAC_EMAC4 is not set 453 + # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set 454 + # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set 455 + # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set 450 456 # CONFIG_NET_PCI is not set 451 457 # CONFIG_B44 is not set 458 + # CONFIG_ATL2 is not set 452 459 CONFIG_NETDEV_1000=y 453 460 # CONFIG_ACENIC is not set 454 461 # CONFIG_DL2K is not set ··· 473 472 # CONFIG_QLA3XXX is not set 474 473 # CONFIG_ATL1 is not set 475 474 # CONFIG_ATL1E is not set 475 + # CONFIG_JME is not set 476 476 CONFIG_NETDEV_10000=y 477 477 # CONFIG_CHELSIO_T1 is not set 478 478 # CONFIG_CHELSIO_T3 is not set 479 + # CONFIG_ENIC is not set 479 480 # CONFIG_IXGBE is not set 480 481 # CONFIG_IXGB is not set 481 482 # CONFIG_S2IO is not set 482 483 # CONFIG_MYRI10GE is not set 483 484 # CONFIG_NETXEN_NIC is not set 484 485 # CONFIG_NIU is not set 486 + # CONFIG_MLX4_EN is not set 485 487 # CONFIG_MLX4_CORE is not set 486 488 # CONFIG_TEHUTI is not set 487 489 # CONFIG_BNX2X is not set 490 + # CONFIG_QLGE is not set 488 491 # CONFIG_SFC is not set 489 492 # CONFIG_TR is not set 490 493 ··· 584 579 # CONFIG_MFD_CORE is not set 585 580 # CONFIG_MFD_SM501 is not set 586 581 # CONFIG_HTC_PASIC3 is not set 582 + # CONFIG_MFD_TMIO is not set 583 + # CONFIG_MFD_WM8400 is not set 587 584 588 585 # 589 586 # Multimedia devices ··· 627 620 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 628 621 629 622 # 623 + # Enable Host or Gadget support to see Inventra options 624 + # 625 + 626 + # 630 627 # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 631 628 # 632 629 # CONFIG_USB_GADGET is not set 630 + # CONFIG_UWB is not set 633 631 # CONFIG_MMC is not set 634 632 # CONFIG_MEMSTICK is not set 635 633 # CONFIG_NEW_LEDS is not set ··· 644 632 # CONFIG_RTC_CLASS is not set 645 633 # CONFIG_DMADEVICES is not set 646 634 # CONFIG_UIO is not set 635 + # CONFIG_STAGING is not set 647 636 648 637 # 649 638 # File systems ··· 653 640 # CONFIG_EXT2_FS_XATTR is not set 654 641 # CONFIG_EXT2_FS_XIP is not set 655 642 # CONFIG_EXT3_FS is not set 656 - # CONFIG_EXT4DEV_FS is not set 643 + # CONFIG_EXT4_FS is not set 657 644 # CONFIG_REISERFS_FS is not set 658 645 # CONFIG_JFS_FS is not set 659 646 # CONFIG_FS_POSIX_ACL is not set 647 + CONFIG_FILE_LOCKING=y 660 648 # CONFIG_XFS_FS is not set 661 649 # CONFIG_OCFS2_FS is not set 662 650 CONFIG_DNOTIFY=y ··· 687 673 CONFIG_PROC_FS=y 688 674 CONFIG_PROC_KCORE=y 689 675 CONFIG_PROC_SYSCTL=y 676 + CONFIG_PROC_PAGE_MONITOR=y 690 677 CONFIG_SYSFS=y 691 678 CONFIG_TMPFS=y 692 679 # CONFIG_TMPFS_POSIX_ACL is not set ··· 724 709 CONFIG_LOCKD_V4=y 725 710 CONFIG_NFS_COMMON=y 726 711 CONFIG_SUNRPC=y 712 + # CONFIG_SUNRPC_REGISTER_V4 is not set 727 713 # CONFIG_RPCSEC_GSS_KRB5 is not set 728 714 # CONFIG_RPCSEC_GSS_SPKM3 is not set 729 715 # CONFIG_SMB_FS is not set ··· 745 729 # Library routines 746 730 # 747 731 CONFIG_BITREVERSE=y 748 - # CONFIG_GENERIC_FIND_FIRST_BIT is not set 749 732 # CONFIG_CRC_CCITT is not set 750 733 # CONFIG_CRC16 is not set 751 734 # CONFIG_CRC_T10DIF is not set ··· 797 782 # CONFIG_DEBUG_SG is not set 798 783 # CONFIG_BOOT_PRINTK_DELAY is not set 799 784 # CONFIG_RCU_TORTURE_TEST is not set 785 + # CONFIG_RCU_CPU_STALL_DETECTOR is not set 800 786 # CONFIG_BACKTRACE_SELF_TEST is not set 787 + # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 801 788 # CONFIG_FAULT_INJECTION is not set 802 789 # CONFIG_LATENCYTOP is not set 790 + CONFIG_SYSCTL_SYSCALL_CHECK=y 791 + CONFIG_NOP_TRACER=y 803 792 CONFIG_HAVE_FTRACE=y 804 793 CONFIG_HAVE_DYNAMIC_FTRACE=y 805 794 # CONFIG_FTRACE is not set 806 795 # CONFIG_SCHED_TRACER is not set 807 796 # CONFIG_CONTEXT_SWITCH_TRACER is not set 797 + # CONFIG_BOOT_TRACER is not set 798 + # CONFIG_STACK_TRACER is not set 799 + # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 808 800 # CONFIG_SAMPLES is not set 809 801 CONFIG_HAVE_ARCH_KGDB=y 810 802 # CONFIG_KGDB is not set ··· 820 798 # CONFIG_DEBUG_PAGEALLOC is not set 821 799 # CONFIG_CODE_PATCHING_SELFTEST is not set 822 800 # CONFIG_FTR_FIXUP_SELFTEST is not set 801 + # CONFIG_MSI_BITMAP_SELFTEST is not set 823 802 # CONFIG_XMON is not set 824 803 # CONFIG_IRQSTACKS is not set 825 804 # CONFIG_VIRQ_DEBUG is not set ··· 832 809 # 833 810 # CONFIG_KEYS is not set 834 811 # CONFIG_SECURITY is not set 812 + # CONFIG_SECURITYFS is not set 835 813 # CONFIG_SECURITY_FILE_CAPABILITIES is not set 836 814 CONFIG_CRYPTO=y 837 815 838 816 # 839 817 # Crypto core or helper 840 818 # 819 + # CONFIG_CRYPTO_FIPS is not set 841 820 CONFIG_CRYPTO_ALGAPI=y 821 + CONFIG_CRYPTO_AEAD=y 842 822 CONFIG_CRYPTO_BLKCIPHER=y 823 + CONFIG_CRYPTO_HASH=y 824 + CONFIG_CRYPTO_RNG=y 843 825 CONFIG_CRYPTO_MANAGER=y 844 826 # CONFIG_CRYPTO_GF128MUL is not set 845 827 # CONFIG_CRYPTO_NULL is not set ··· 917 889 # 918 890 # CONFIG_CRYPTO_DEFLATE is not set 919 891 # CONFIG_CRYPTO_LZO is not set 892 + 893 + # 894 + # Random Number Generation 895 + # 896 + # CONFIG_CRYPTO_ANSI_CPRNG is not set 920 897 CONFIG_CRYPTO_HW=y 921 898 # CONFIG_CRYPTO_DEV_HIFN_795X is not set 922 899 # CONFIG_PPC_CLOCK is not set
+39 -22
arch/powerpc/configs/44x/canyonlands_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27-rc1 4 - # Tue Aug 5 08:46:14 2008 3 + # Linux kernel version: 2.6.28-rc2 4 + # Tue Oct 28 09:16:08 2008 5 5 # 6 6 # CONFIG_PPC64 is not set 7 7 ··· 23 23 CONFIG_NOT_COHERENT_CACHE=y 24 24 CONFIG_PPC32=y 25 25 CONFIG_WORD_SIZE=32 26 - CONFIG_PPC_MERGE=y 26 + CONFIG_ARCH_PHYS_ADDR_T_64BIT=y 27 27 CONFIG_MMU=y 28 28 CONFIG_GENERIC_CMOS_UPDATE=y 29 29 CONFIG_GENERIC_TIME=y 30 30 CONFIG_GENERIC_TIME_VSYSCALL=y 31 31 CONFIG_GENERIC_CLOCKEVENTS=y 32 32 CONFIG_GENERIC_HARDIRQS=y 33 - # CONFIG_HAVE_GET_USER_PAGES_FAST is not set 34 33 # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set 35 34 CONFIG_IRQ_PER_CPU=y 36 35 CONFIG_STACKTRACE_SUPPORT=y ··· 87 88 CONFIG_SYSCTL=y 88 89 CONFIG_EMBEDDED=y 89 90 CONFIG_SYSCTL_SYSCALL=y 90 - CONFIG_SYSCTL_SYSCALL_CHECK=y 91 91 CONFIG_KALLSYMS=y 92 92 # CONFIG_KALLSYMS_ALL is not set 93 93 # CONFIG_KALLSYMS_EXTRA_PASS is not set ··· 103 105 CONFIG_TIMERFD=y 104 106 CONFIG_EVENTFD=y 105 107 CONFIG_SHMEM=y 108 + CONFIG_AIO=y 106 109 CONFIG_VM_EVENT_COUNTERS=y 110 + CONFIG_PCI_QUIRKS=y 107 111 CONFIG_SLUB_DEBUG=y 108 112 # CONFIG_SLAB is not set 109 113 CONFIG_SLUB=y ··· 119 119 CONFIG_HAVE_KPROBES=y 120 120 CONFIG_HAVE_KRETPROBES=y 121 121 CONFIG_HAVE_ARCH_TRACEHOOK=y 122 - # CONFIG_HAVE_DMA_ATTRS is not set 123 - # CONFIG_USE_GENERIC_SMP_HELPERS is not set 124 - # CONFIG_HAVE_CLK is not set 125 - CONFIG_PROC_PAGE_MONITOR=y 126 122 # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set 127 123 CONFIG_SLABINFO=y 128 124 CONFIG_RT_MUTEXES=y ··· 151 155 # CONFIG_DEFAULT_NOOP is not set 152 156 CONFIG_DEFAULT_IOSCHED="anticipatory" 153 157 CONFIG_CLASSIC_RCU=y 158 + # CONFIG_FREEZER is not set 154 159 CONFIG_PPC4xx_PCI_EXPRESS=y 155 160 156 161 # ··· 168 171 # CONFIG_KATMAI is not set 169 172 # CONFIG_RAINIER is not set 170 173 # CONFIG_WARP is not set 174 + # CONFIG_ARCHES is not set 171 175 CONFIG_CANYONLANDS=y 176 + # CONFIG_GLACIER is not set 172 177 # CONFIG_YOSEMITE is not set 173 178 # CONFIG_XILINX_VIRTEX440_GENERIC_BOARD is not set 179 + CONFIG_PPC44x_SIMPLE=y 180 + # CONFIG_PPC4xx_GPIO is not set 174 181 CONFIG_460EX=y 175 182 # CONFIG_IPIC is not set 176 183 # CONFIG_MPIC is not set ··· 202 201 # CONFIG_HZ_300 is not set 203 202 # CONFIG_HZ_1000 is not set 204 203 CONFIG_HZ=250 205 - # CONFIG_SCHED_HRTICK is not set 204 + CONFIG_SCHED_HRTICK=y 206 205 CONFIG_PREEMPT_NONE=y 207 206 # CONFIG_PREEMPT_VOLUNTARY is not set 208 207 # CONFIG_PREEMPT is not set 209 208 CONFIG_BINFMT_ELF=y 209 + # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 210 + # CONFIG_HAVE_AOUT is not set 210 211 # CONFIG_BINFMT_MISC is not set 211 212 # CONFIG_MATH_EMULATION is not set 212 213 # CONFIG_IOMMU_HELPER is not set ··· 223 220 # CONFIG_SPARSEMEM_MANUAL is not set 224 221 CONFIG_FLATMEM=y 225 222 CONFIG_FLAT_NODE_MEM_MAP=y 226 - # CONFIG_SPARSEMEM_STATIC is not set 227 - # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set 228 223 CONFIG_PAGEFLAGS_EXTENDED=y 229 224 CONFIG_SPLIT_PTLOCK_CPUS=4 230 225 CONFIG_MIGRATION=y 231 226 CONFIG_RESOURCES_64BIT=y 227 + CONFIG_PHYS_ADDR_T_64BIT=y 232 228 CONFIG_ZONE_DMA_FLAG=1 233 229 CONFIG_BOUNCE=y 234 230 CONFIG_VIRT_TO_BUS=y 231 + CONFIG_UNEVICTABLE_LRU=y 235 232 CONFIG_FORCE_MAX_ZONEORDER=11 236 233 CONFIG_PROC_DEVICETREE=y 237 234 CONFIG_CMDLINE_BOOL=y ··· 318 315 # CONFIG_TIPC is not set 319 316 # CONFIG_ATM is not set 320 317 # CONFIG_BRIDGE is not set 318 + # CONFIG_NET_DSA is not set 321 319 # CONFIG_VLAN_8021Q is not set 322 320 # CONFIG_DECNET is not set 323 321 # CONFIG_LLC2 is not set ··· 339 335 # CONFIG_IRDA is not set 340 336 # CONFIG_BT is not set 341 337 # CONFIG_AF_RXRPC is not set 342 - 343 - # 344 - # Wireless 345 - # 346 - # CONFIG_CFG80211 is not set 347 - # CONFIG_WIRELESS_EXT is not set 348 - # CONFIG_MAC80211 is not set 349 - # CONFIG_IEEE80211 is not set 338 + # CONFIG_PHONET is not set 339 + # CONFIG_WIRELESS is not set 350 340 # CONFIG_RFKILL is not set 351 341 # CONFIG_NET_9P is not set 352 342 ··· 437 439 CONFIG_IBM_NEW_EMAC_RGMII=y 438 440 CONFIG_IBM_NEW_EMAC_TAH=y 439 441 CONFIG_IBM_NEW_EMAC_EMAC4=y 442 + # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set 443 + # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set 444 + # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set 440 445 # CONFIG_NET_PCI is not set 441 446 # CONFIG_B44 is not set 447 + # CONFIG_ATL2 is not set 442 448 # CONFIG_NETDEV_1000 is not set 443 449 # CONFIG_NETDEV_10000 is not set 444 450 # CONFIG_TR is not set ··· 540 538 # CONFIG_MFD_CORE is not set 541 539 # CONFIG_MFD_SM501 is not set 542 540 # CONFIG_HTC_PASIC3 is not set 541 + # CONFIG_MFD_TMIO is not set 542 + # CONFIG_MFD_WM8400 is not set 543 543 544 544 # 545 545 # Multimedia devices ··· 575 571 # CONFIG_DISPLAY_SUPPORT is not set 576 572 # CONFIG_SOUND is not set 577 573 # CONFIG_USB_SUPPORT is not set 574 + # CONFIG_UWB is not set 578 575 # CONFIG_MMC is not set 579 576 # CONFIG_MEMSTICK is not set 580 577 # CONFIG_NEW_LEDS is not set ··· 585 580 # CONFIG_RTC_CLASS is not set 586 581 # CONFIG_DMADEVICES is not set 587 582 # CONFIG_UIO is not set 583 + # CONFIG_STAGING is not set 588 584 589 585 # 590 586 # File systems ··· 594 588 # CONFIG_EXT2_FS_XATTR is not set 595 589 # CONFIG_EXT2_FS_XIP is not set 596 590 # CONFIG_EXT3_FS is not set 597 - # CONFIG_EXT4DEV_FS is not set 591 + # CONFIG_EXT4_FS is not set 598 592 # CONFIG_REISERFS_FS is not set 599 593 # CONFIG_JFS_FS is not set 600 594 # CONFIG_FS_POSIX_ACL is not set 595 + CONFIG_FILE_LOCKING=y 601 596 # CONFIG_XFS_FS is not set 602 597 # CONFIG_OCFS2_FS is not set 603 598 CONFIG_DNOTIFY=y ··· 628 621 CONFIG_PROC_FS=y 629 622 CONFIG_PROC_KCORE=y 630 623 CONFIG_PROC_SYSCTL=y 624 + CONFIG_PROC_PAGE_MONITOR=y 631 625 CONFIG_SYSFS=y 632 626 CONFIG_TMPFS=y 633 627 # CONFIG_TMPFS_POSIX_ACL is not set ··· 665 657 CONFIG_LOCKD_V4=y 666 658 CONFIG_NFS_COMMON=y 667 659 CONFIG_SUNRPC=y 660 + # CONFIG_SUNRPC_REGISTER_V4 is not set 668 661 # CONFIG_RPCSEC_GSS_KRB5 is not set 669 662 # CONFIG_RPCSEC_GSS_SPKM3 is not set 670 663 # CONFIG_SMB_FS is not set ··· 686 677 # Library routines 687 678 # 688 679 CONFIG_BITREVERSE=y 689 - # CONFIG_GENERIC_FIND_FIRST_BIT is not set 690 680 # CONFIG_CRC_CCITT is not set 691 681 # CONFIG_CRC16 is not set 692 682 # CONFIG_CRC_T10DIF is not set ··· 738 730 # CONFIG_DEBUG_SG is not set 739 731 # CONFIG_BOOT_PRINTK_DELAY is not set 740 732 # CONFIG_RCU_TORTURE_TEST is not set 733 + # CONFIG_RCU_CPU_STALL_DETECTOR is not set 741 734 # CONFIG_BACKTRACE_SELF_TEST is not set 735 + # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 742 736 # CONFIG_FAULT_INJECTION is not set 743 737 # CONFIG_LATENCYTOP is not set 738 + CONFIG_SYSCTL_SYSCALL_CHECK=y 739 + CONFIG_NOP_TRACER=y 744 740 CONFIG_HAVE_FTRACE=y 745 741 CONFIG_HAVE_DYNAMIC_FTRACE=y 746 742 # CONFIG_FTRACE is not set 747 743 # CONFIG_SCHED_TRACER is not set 748 744 # CONFIG_CONTEXT_SWITCH_TRACER is not set 745 + # CONFIG_BOOT_TRACER is not set 746 + # CONFIG_STACK_TRACER is not set 747 + # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 749 748 # CONFIG_SAMPLES is not set 750 749 CONFIG_HAVE_ARCH_KGDB=y 751 750 # CONFIG_KGDB is not set ··· 761 746 # CONFIG_DEBUG_PAGEALLOC is not set 762 747 # CONFIG_CODE_PATCHING_SELFTEST is not set 763 748 # CONFIG_FTR_FIXUP_SELFTEST is not set 749 + # CONFIG_MSI_BITMAP_SELFTEST is not set 764 750 # CONFIG_XMON is not set 765 751 # CONFIG_IRQSTACKS is not set 766 752 # CONFIG_VIRQ_DEBUG is not set ··· 773 757 # 774 758 # CONFIG_KEYS is not set 775 759 # CONFIG_SECURITY is not set 760 + # CONFIG_SECURITYFS is not set 776 761 # CONFIG_SECURITY_FILE_CAPABILITIES is not set 777 762 # CONFIG_CRYPTO is not set 778 763 # CONFIG_PPC_CLOCK is not set
+55 -22
arch/powerpc/configs/44x/ebony_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27-rc1 4 - # Tue Aug 5 09:04:12 2008 3 + # Linux kernel version: 2.6.28-rc2 4 + # Tue Oct 28 09:16:09 2008 5 5 # 6 6 # CONFIG_PPC64 is not set 7 7 ··· 22 22 CONFIG_NOT_COHERENT_CACHE=y 23 23 CONFIG_PPC32=y 24 24 CONFIG_WORD_SIZE=32 25 - CONFIG_PPC_MERGE=y 25 + CONFIG_ARCH_PHYS_ADDR_T_64BIT=y 26 26 CONFIG_MMU=y 27 27 CONFIG_GENERIC_CMOS_UPDATE=y 28 28 CONFIG_GENERIC_TIME=y 29 29 CONFIG_GENERIC_TIME_VSYSCALL=y 30 30 CONFIG_GENERIC_CLOCKEVENTS=y 31 31 CONFIG_GENERIC_HARDIRQS=y 32 - # CONFIG_HAVE_GET_USER_PAGES_FAST is not set 33 32 # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set 34 33 CONFIG_IRQ_PER_CPU=y 35 34 CONFIG_STACKTRACE_SUPPORT=y ··· 90 91 CONFIG_SYSCTL=y 91 92 CONFIG_EMBEDDED=y 92 93 CONFIG_SYSCTL_SYSCALL=y 93 - CONFIG_SYSCTL_SYSCALL_CHECK=y 94 94 CONFIG_KALLSYMS=y 95 95 CONFIG_KALLSYMS_ALL=y 96 96 CONFIG_KALLSYMS_EXTRA_PASS=y ··· 106 108 CONFIG_TIMERFD=y 107 109 CONFIG_EVENTFD=y 108 110 CONFIG_SHMEM=y 111 + CONFIG_AIO=y 109 112 CONFIG_VM_EVENT_COUNTERS=y 113 + CONFIG_PCI_QUIRKS=y 110 114 CONFIG_SLUB_DEBUG=y 111 115 # CONFIG_SLAB is not set 112 116 CONFIG_SLUB=y ··· 122 122 CONFIG_HAVE_KPROBES=y 123 123 CONFIG_HAVE_KRETPROBES=y 124 124 CONFIG_HAVE_ARCH_TRACEHOOK=y 125 - # CONFIG_HAVE_DMA_ATTRS is not set 126 - # CONFIG_USE_GENERIC_SMP_HELPERS is not set 127 - # CONFIG_HAVE_CLK is not set 128 - CONFIG_PROC_PAGE_MONITOR=y 129 125 # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set 130 126 CONFIG_SLABINFO=y 131 127 CONFIG_RT_MUTEXES=y ··· 154 158 # CONFIG_DEFAULT_NOOP is not set 155 159 CONFIG_DEFAULT_IOSCHED="anticipatory" 156 160 CONFIG_CLASSIC_RCU=y 161 + # CONFIG_FREEZER is not set 157 162 # CONFIG_PPC4xx_PCI_EXPRESS is not set 158 163 159 164 # ··· 171 174 # CONFIG_KATMAI is not set 172 175 # CONFIG_RAINIER is not set 173 176 # CONFIG_WARP is not set 177 + # CONFIG_ARCHES is not set 174 178 # CONFIG_CANYONLANDS is not set 179 + # CONFIG_GLACIER is not set 175 180 # CONFIG_YOSEMITE is not set 176 181 # CONFIG_XILINX_VIRTEX440_GENERIC_BOARD is not set 182 + # CONFIG_PPC44x_SIMPLE is not set 183 + # CONFIG_PPC4xx_GPIO is not set 177 184 CONFIG_440GP=y 178 185 # CONFIG_IPIC is not set 179 186 # CONFIG_MPIC is not set ··· 197 196 # Kernel options 198 197 # 199 198 # CONFIG_HIGHMEM is not set 200 - # CONFIG_TICK_ONESHOT is not set 201 199 # CONFIG_NO_HZ is not set 202 200 # CONFIG_HIGH_RES_TIMERS is not set 203 201 CONFIG_GENERIC_CLOCKEVENTS_BUILD=y ··· 210 210 # CONFIG_PREEMPT_VOLUNTARY is not set 211 211 # CONFIG_PREEMPT is not set 212 212 CONFIG_BINFMT_ELF=y 213 + # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 214 + # CONFIG_HAVE_AOUT is not set 213 215 # CONFIG_BINFMT_MISC is not set 214 216 CONFIG_MATH_EMULATION=y 215 217 # CONFIG_IOMMU_HELPER is not set ··· 226 224 # CONFIG_SPARSEMEM_MANUAL is not set 227 225 CONFIG_FLATMEM=y 228 226 CONFIG_FLAT_NODE_MEM_MAP=y 229 - # CONFIG_SPARSEMEM_STATIC is not set 230 - # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set 231 227 CONFIG_PAGEFLAGS_EXTENDED=y 232 228 CONFIG_SPLIT_PTLOCK_CPUS=4 233 229 CONFIG_MIGRATION=y 234 230 CONFIG_RESOURCES_64BIT=y 231 + CONFIG_PHYS_ADDR_T_64BIT=y 235 232 CONFIG_ZONE_DMA_FLAG=1 236 233 CONFIG_BOUNCE=y 237 234 CONFIG_VIRT_TO_BUS=y 235 + CONFIG_UNEVICTABLE_LRU=y 238 236 CONFIG_FORCE_MAX_ZONEORDER=11 239 237 CONFIG_PROC_DEVICETREE=y 240 238 # CONFIG_CMDLINE_BOOL is not set ··· 320 318 # CONFIG_TIPC is not set 321 319 # CONFIG_ATM is not set 322 320 # CONFIG_BRIDGE is not set 321 + # CONFIG_NET_DSA is not set 323 322 # CONFIG_VLAN_8021Q is not set 324 323 # CONFIG_DECNET is not set 325 324 # CONFIG_LLC2 is not set ··· 341 338 # CONFIG_IRDA is not set 342 339 # CONFIG_BT is not set 343 340 # CONFIG_AF_RXRPC is not set 344 - 345 - # 346 - # Wireless 347 - # 348 - # CONFIG_CFG80211 is not set 349 - # CONFIG_WIRELESS_EXT is not set 350 - # CONFIG_MAC80211 is not set 351 - # CONFIG_IEEE80211 is not set 341 + # CONFIG_PHONET is not set 342 + # CONFIG_WIRELESS is not set 352 343 # CONFIG_RFKILL is not set 353 344 # CONFIG_NET_9P is not set 354 345 ··· 522 525 # CONFIG_IBM_NEW_EMAC_RGMII is not set 523 526 # CONFIG_IBM_NEW_EMAC_TAH is not set 524 527 # CONFIG_IBM_NEW_EMAC_EMAC4 is not set 528 + # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set 529 + # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set 530 + # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set 525 531 # CONFIG_NET_PCI is not set 526 532 # CONFIG_B44 is not set 533 + # CONFIG_ATL2 is not set 527 534 CONFIG_NETDEV_1000=y 528 535 # CONFIG_ACENIC is not set 529 536 # CONFIG_DL2K is not set ··· 548 547 # CONFIG_QLA3XXX is not set 549 548 # CONFIG_ATL1 is not set 550 549 # CONFIG_ATL1E is not set 550 + # CONFIG_JME is not set 551 551 CONFIG_NETDEV_10000=y 552 552 # CONFIG_CHELSIO_T1 is not set 553 553 # CONFIG_CHELSIO_T3 is not set 554 + # CONFIG_ENIC is not set 554 555 # CONFIG_IXGBE is not set 555 556 # CONFIG_IXGB is not set 556 557 # CONFIG_S2IO is not set 557 558 # CONFIG_MYRI10GE is not set 558 559 # CONFIG_NETXEN_NIC is not set 559 560 # CONFIG_NIU is not set 561 + # CONFIG_MLX4_EN is not set 560 562 # CONFIG_MLX4_CORE is not set 561 563 # CONFIG_TEHUTI is not set 562 564 # CONFIG_BNX2X is not set 565 + # CONFIG_QLGE is not set 563 566 # CONFIG_SFC is not set 564 567 # CONFIG_TR is not set 565 568 ··· 659 654 # CONFIG_MFD_CORE is not set 660 655 # CONFIG_MFD_SM501 is not set 661 656 # CONFIG_HTC_PASIC3 is not set 657 + # CONFIG_MFD_TMIO is not set 658 + # CONFIG_MFD_WM8400 is not set 662 659 663 660 # 664 661 # Multimedia devices ··· 702 695 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 703 696 704 697 # 698 + # Enable Host or Gadget support to see Inventra options 699 + # 700 + 701 + # 705 702 # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 706 703 # 707 704 # CONFIG_USB_GADGET is not set 705 + # CONFIG_UWB is not set 708 706 # CONFIG_MMC is not set 709 707 # CONFIG_MEMSTICK is not set 710 708 # CONFIG_NEW_LEDS is not set ··· 719 707 # CONFIG_RTC_CLASS is not set 720 708 # CONFIG_DMADEVICES is not set 721 709 # CONFIG_UIO is not set 710 + # CONFIG_STAGING is not set 722 711 723 712 # 724 713 # File systems ··· 728 715 # CONFIG_EXT2_FS_XATTR is not set 729 716 # CONFIG_EXT2_FS_XIP is not set 730 717 # CONFIG_EXT3_FS is not set 731 - # CONFIG_EXT4DEV_FS is not set 718 + # CONFIG_EXT4_FS is not set 732 719 # CONFIG_REISERFS_FS is not set 733 720 # CONFIG_JFS_FS is not set 734 721 # CONFIG_FS_POSIX_ACL is not set 722 + CONFIG_FILE_LOCKING=y 735 723 # CONFIG_XFS_FS is not set 736 724 # CONFIG_OCFS2_FS is not set 737 725 CONFIG_DNOTIFY=y ··· 762 748 CONFIG_PROC_FS=y 763 749 CONFIG_PROC_KCORE=y 764 750 CONFIG_PROC_SYSCTL=y 751 + CONFIG_PROC_PAGE_MONITOR=y 765 752 CONFIG_SYSFS=y 766 753 CONFIG_TMPFS=y 767 754 # CONFIG_TMPFS_POSIX_ACL is not set ··· 810 795 CONFIG_LOCKD_V4=y 811 796 CONFIG_NFS_COMMON=y 812 797 CONFIG_SUNRPC=y 798 + # CONFIG_SUNRPC_REGISTER_V4 is not set 813 799 # CONFIG_RPCSEC_GSS_KRB5 is not set 814 800 # CONFIG_RPCSEC_GSS_SPKM3 is not set 815 801 # CONFIG_SMB_FS is not set ··· 831 815 # Library routines 832 816 # 833 817 CONFIG_BITREVERSE=y 834 - # CONFIG_GENERIC_FIND_FIRST_BIT is not set 835 818 # CONFIG_CRC_CCITT is not set 836 819 # CONFIG_CRC16 is not set 837 820 # CONFIG_CRC_T10DIF is not set ··· 884 869 # CONFIG_DEBUG_SG is not set 885 870 # CONFIG_BOOT_PRINTK_DELAY is not set 886 871 # CONFIG_RCU_TORTURE_TEST is not set 872 + # CONFIG_RCU_CPU_STALL_DETECTOR is not set 887 873 # CONFIG_BACKTRACE_SELF_TEST is not set 874 + # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 888 875 # CONFIG_FAULT_INJECTION is not set 889 876 # CONFIG_LATENCYTOP is not set 877 + CONFIG_SYSCTL_SYSCALL_CHECK=y 878 + CONFIG_NOP_TRACER=y 890 879 CONFIG_HAVE_FTRACE=y 891 880 CONFIG_HAVE_DYNAMIC_FTRACE=y 892 881 # CONFIG_FTRACE is not set 893 882 # CONFIG_SCHED_TRACER is not set 894 883 # CONFIG_CONTEXT_SWITCH_TRACER is not set 884 + # CONFIG_BOOT_TRACER is not set 885 + # CONFIG_STACK_TRACER is not set 886 + # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 895 887 # CONFIG_SAMPLES is not set 896 888 CONFIG_HAVE_ARCH_KGDB=y 897 889 # CONFIG_KGDB is not set ··· 907 885 # CONFIG_DEBUG_PAGEALLOC is not set 908 886 # CONFIG_CODE_PATCHING_SELFTEST is not set 909 887 # CONFIG_FTR_FIXUP_SELFTEST is not set 888 + # CONFIG_MSI_BITMAP_SELFTEST is not set 910 889 # CONFIG_XMON is not set 911 890 # CONFIG_IRQSTACKS is not set 912 891 # CONFIG_VIRQ_DEBUG is not set ··· 919 896 # 920 897 # CONFIG_KEYS is not set 921 898 # CONFIG_SECURITY is not set 899 + # CONFIG_SECURITYFS is not set 922 900 # CONFIG_SECURITY_FILE_CAPABILITIES is not set 923 901 CONFIG_CRYPTO=y 924 902 925 903 # 926 904 # Crypto core or helper 927 905 # 906 + # CONFIG_CRYPTO_FIPS is not set 928 907 CONFIG_CRYPTO_ALGAPI=y 908 + CONFIG_CRYPTO_AEAD=y 929 909 CONFIG_CRYPTO_BLKCIPHER=y 910 + CONFIG_CRYPTO_HASH=y 911 + CONFIG_CRYPTO_RNG=y 930 912 CONFIG_CRYPTO_MANAGER=y 931 913 # CONFIG_CRYPTO_GF128MUL is not set 932 914 # CONFIG_CRYPTO_NULL is not set ··· 1004 976 # 1005 977 # CONFIG_CRYPTO_DEFLATE is not set 1006 978 # CONFIG_CRYPTO_LZO is not set 979 + 980 + # 981 + # Random Number Generation 982 + # 983 + # CONFIG_CRYPTO_ANSI_CPRNG is not set 1007 984 # CONFIG_CRYPTO_HW is not set 1008 985 # CONFIG_PPC_CLOCK is not set 1009 986 # CONFIG_VIRTUALIZATION is not set
+55 -22
arch/powerpc/configs/44x/katmai_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27-rc1 4 - # Tue Aug 5 09:06:51 2008 3 + # Linux kernel version: 2.6.28-rc2 4 + # Tue Oct 28 09:16:11 2008 5 5 # 6 6 # CONFIG_PPC64 is not set 7 7 ··· 22 22 CONFIG_NOT_COHERENT_CACHE=y 23 23 CONFIG_PPC32=y 24 24 CONFIG_WORD_SIZE=32 25 - CONFIG_PPC_MERGE=y 25 + CONFIG_ARCH_PHYS_ADDR_T_64BIT=y 26 26 CONFIG_MMU=y 27 27 CONFIG_GENERIC_CMOS_UPDATE=y 28 28 CONFIG_GENERIC_TIME=y 29 29 CONFIG_GENERIC_TIME_VSYSCALL=y 30 30 CONFIG_GENERIC_CLOCKEVENTS=y 31 31 CONFIG_GENERIC_HARDIRQS=y 32 - # CONFIG_HAVE_GET_USER_PAGES_FAST is not set 33 32 # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set 34 33 CONFIG_IRQ_PER_CPU=y 35 34 CONFIG_STACKTRACE_SUPPORT=y ··· 86 87 CONFIG_SYSCTL=y 87 88 CONFIG_EMBEDDED=y 88 89 CONFIG_SYSCTL_SYSCALL=y 89 - CONFIG_SYSCTL_SYSCALL_CHECK=y 90 90 CONFIG_KALLSYMS=y 91 91 # CONFIG_KALLSYMS_ALL is not set 92 92 # CONFIG_KALLSYMS_EXTRA_PASS is not set ··· 102 104 CONFIG_TIMERFD=y 103 105 CONFIG_EVENTFD=y 104 106 CONFIG_SHMEM=y 107 + CONFIG_AIO=y 105 108 CONFIG_VM_EVENT_COUNTERS=y 109 + CONFIG_PCI_QUIRKS=y 106 110 CONFIG_SLUB_DEBUG=y 107 111 # CONFIG_SLAB is not set 108 112 CONFIG_SLUB=y ··· 118 118 CONFIG_HAVE_KPROBES=y 119 119 CONFIG_HAVE_KRETPROBES=y 120 120 CONFIG_HAVE_ARCH_TRACEHOOK=y 121 - # CONFIG_HAVE_DMA_ATTRS is not set 122 - # CONFIG_USE_GENERIC_SMP_HELPERS is not set 123 - # CONFIG_HAVE_CLK is not set 124 - CONFIG_PROC_PAGE_MONITOR=y 125 121 # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set 126 122 CONFIG_SLABINFO=y 127 123 CONFIG_RT_MUTEXES=y ··· 150 154 # CONFIG_DEFAULT_NOOP is not set 151 155 CONFIG_DEFAULT_IOSCHED="anticipatory" 152 156 CONFIG_CLASSIC_RCU=y 157 + # CONFIG_FREEZER is not set 153 158 CONFIG_PPC4xx_PCI_EXPRESS=y 154 159 155 160 # ··· 167 170 CONFIG_KATMAI=y 168 171 # CONFIG_RAINIER is not set 169 172 # CONFIG_WARP is not set 173 + # CONFIG_ARCHES is not set 170 174 # CONFIG_CANYONLANDS is not set 175 + # CONFIG_GLACIER is not set 171 176 # CONFIG_YOSEMITE is not set 172 177 # CONFIG_XILINX_VIRTEX440_GENERIC_BOARD is not set 178 + CONFIG_PPC44x_SIMPLE=y 179 + # CONFIG_PPC4xx_GPIO is not set 173 180 CONFIG_440SPe=y 174 181 # CONFIG_IPIC is not set 175 182 # CONFIG_MPIC is not set ··· 192 191 # Kernel options 193 192 # 194 193 # CONFIG_HIGHMEM is not set 195 - # CONFIG_TICK_ONESHOT is not set 196 194 # CONFIG_NO_HZ is not set 197 195 # CONFIG_HIGH_RES_TIMERS is not set 198 196 CONFIG_GENERIC_CLOCKEVENTS_BUILD=y ··· 205 205 # CONFIG_PREEMPT_VOLUNTARY is not set 206 206 # CONFIG_PREEMPT is not set 207 207 CONFIG_BINFMT_ELF=y 208 + # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 209 + # CONFIG_HAVE_AOUT is not set 208 210 # CONFIG_BINFMT_MISC is not set 209 211 # CONFIG_MATH_EMULATION is not set 210 212 # CONFIG_IOMMU_HELPER is not set ··· 221 219 # CONFIG_SPARSEMEM_MANUAL is not set 222 220 CONFIG_FLATMEM=y 223 221 CONFIG_FLAT_NODE_MEM_MAP=y 224 - # CONFIG_SPARSEMEM_STATIC is not set 225 - # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set 226 222 CONFIG_PAGEFLAGS_EXTENDED=y 227 223 CONFIG_SPLIT_PTLOCK_CPUS=4 228 224 CONFIG_MIGRATION=y 229 225 CONFIG_RESOURCES_64BIT=y 226 + CONFIG_PHYS_ADDR_T_64BIT=y 230 227 CONFIG_ZONE_DMA_FLAG=1 231 228 CONFIG_BOUNCE=y 232 229 CONFIG_VIRT_TO_BUS=y 230 + CONFIG_UNEVICTABLE_LRU=y 233 231 CONFIG_FORCE_MAX_ZONEORDER=11 234 232 CONFIG_PROC_DEVICETREE=y 235 233 CONFIG_CMDLINE_BOOL=y ··· 316 314 # CONFIG_TIPC is not set 317 315 # CONFIG_ATM is not set 318 316 # CONFIG_BRIDGE is not set 317 + # CONFIG_NET_DSA is not set 319 318 # CONFIG_VLAN_8021Q is not set 320 319 # CONFIG_DECNET is not set 321 320 # CONFIG_LLC2 is not set ··· 337 334 # CONFIG_IRDA is not set 338 335 # CONFIG_BT is not set 339 336 # CONFIG_AF_RXRPC is not set 340 - 341 - # 342 - # Wireless 343 - # 344 - # CONFIG_CFG80211 is not set 345 - # CONFIG_WIRELESS_EXT is not set 346 - # CONFIG_MAC80211 is not set 347 - # CONFIG_IEEE80211 is not set 337 + # CONFIG_PHONET is not set 338 + # CONFIG_WIRELESS is not set 348 339 # CONFIG_RFKILL is not set 349 340 # CONFIG_NET_9P is not set 350 341 ··· 443 446 # CONFIG_IBM_NEW_EMAC_RGMII is not set 444 447 # CONFIG_IBM_NEW_EMAC_TAH is not set 445 448 CONFIG_IBM_NEW_EMAC_EMAC4=y 449 + # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set 450 + # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set 451 + # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set 446 452 # CONFIG_NET_PCI is not set 447 453 # CONFIG_B44 is not set 454 + # CONFIG_ATL2 is not set 448 455 CONFIG_NETDEV_1000=y 449 456 # CONFIG_ACENIC is not set 450 457 # CONFIG_DL2K is not set ··· 469 468 # CONFIG_QLA3XXX is not set 470 469 # CONFIG_ATL1 is not set 471 470 # CONFIG_ATL1E is not set 471 + # CONFIG_JME is not set 472 472 CONFIG_NETDEV_10000=y 473 473 # CONFIG_CHELSIO_T1 is not set 474 474 # CONFIG_CHELSIO_T3 is not set 475 + # CONFIG_ENIC is not set 475 476 # CONFIG_IXGBE is not set 476 477 # CONFIG_IXGB is not set 477 478 # CONFIG_S2IO is not set 478 479 # CONFIG_MYRI10GE is not set 479 480 # CONFIG_NETXEN_NIC is not set 480 481 # CONFIG_NIU is not set 482 + # CONFIG_MLX4_EN is not set 481 483 # CONFIG_MLX4_CORE is not set 482 484 # CONFIG_TEHUTI is not set 483 485 # CONFIG_BNX2X is not set 486 + # CONFIG_QLGE is not set 484 487 # CONFIG_SFC is not set 485 488 # CONFIG_TR is not set 486 489 ··· 581 576 # CONFIG_MFD_CORE is not set 582 577 # CONFIG_MFD_SM501 is not set 583 578 # CONFIG_HTC_PASIC3 is not set 579 + # CONFIG_MFD_TMIO is not set 580 + # CONFIG_MFD_WM8400 is not set 584 581 585 582 # 586 583 # Multimedia devices ··· 624 617 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 625 618 626 619 # 620 + # Enable Host or Gadget support to see Inventra options 621 + # 622 + 623 + # 627 624 # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 628 625 # 629 626 # CONFIG_USB_GADGET is not set 627 + # CONFIG_UWB is not set 630 628 # CONFIG_MMC is not set 631 629 # CONFIG_MEMSTICK is not set 632 630 # CONFIG_NEW_LEDS is not set ··· 641 629 # CONFIG_RTC_CLASS is not set 642 630 # CONFIG_DMADEVICES is not set 643 631 # CONFIG_UIO is not set 632 + # CONFIG_STAGING is not set 644 633 645 634 # 646 635 # File systems ··· 650 637 # CONFIG_EXT2_FS_XATTR is not set 651 638 # CONFIG_EXT2_FS_XIP is not set 652 639 # CONFIG_EXT3_FS is not set 653 - # CONFIG_EXT4DEV_FS is not set 640 + # CONFIG_EXT4_FS is not set 654 641 # CONFIG_REISERFS_FS is not set 655 642 # CONFIG_JFS_FS is not set 656 643 # CONFIG_FS_POSIX_ACL is not set 644 + CONFIG_FILE_LOCKING=y 657 645 # CONFIG_XFS_FS is not set 658 646 # CONFIG_OCFS2_FS is not set 659 647 CONFIG_DNOTIFY=y ··· 684 670 CONFIG_PROC_FS=y 685 671 CONFIG_PROC_KCORE=y 686 672 CONFIG_PROC_SYSCTL=y 673 + CONFIG_PROC_PAGE_MONITOR=y 687 674 CONFIG_SYSFS=y 688 675 CONFIG_TMPFS=y 689 676 # CONFIG_TMPFS_POSIX_ACL is not set ··· 721 706 CONFIG_LOCKD_V4=y 722 707 CONFIG_NFS_COMMON=y 723 708 CONFIG_SUNRPC=y 709 + # CONFIG_SUNRPC_REGISTER_V4 is not set 724 710 # CONFIG_RPCSEC_GSS_KRB5 is not set 725 711 # CONFIG_RPCSEC_GSS_SPKM3 is not set 726 712 # CONFIG_SMB_FS is not set ··· 742 726 # Library routines 743 727 # 744 728 CONFIG_BITREVERSE=y 745 - # CONFIG_GENERIC_FIND_FIRST_BIT is not set 746 729 # CONFIG_CRC_CCITT is not set 747 730 # CONFIG_CRC16 is not set 748 731 # CONFIG_CRC_T10DIF is not set ··· 794 779 # CONFIG_DEBUG_SG is not set 795 780 # CONFIG_BOOT_PRINTK_DELAY is not set 796 781 # CONFIG_RCU_TORTURE_TEST is not set 782 + # CONFIG_RCU_CPU_STALL_DETECTOR is not set 797 783 # CONFIG_BACKTRACE_SELF_TEST is not set 784 + # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 798 785 # CONFIG_FAULT_INJECTION is not set 799 786 # CONFIG_LATENCYTOP is not set 787 + CONFIG_SYSCTL_SYSCALL_CHECK=y 788 + CONFIG_NOP_TRACER=y 800 789 CONFIG_HAVE_FTRACE=y 801 790 CONFIG_HAVE_DYNAMIC_FTRACE=y 802 791 # CONFIG_FTRACE is not set 803 792 # CONFIG_SCHED_TRACER is not set 804 793 # CONFIG_CONTEXT_SWITCH_TRACER is not set 794 + # CONFIG_BOOT_TRACER is not set 795 + # CONFIG_STACK_TRACER is not set 796 + # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 805 797 # CONFIG_SAMPLES is not set 806 798 CONFIG_HAVE_ARCH_KGDB=y 807 799 # CONFIG_KGDB is not set ··· 817 795 # CONFIG_DEBUG_PAGEALLOC is not set 818 796 # CONFIG_CODE_PATCHING_SELFTEST is not set 819 797 # CONFIG_FTR_FIXUP_SELFTEST is not set 798 + # CONFIG_MSI_BITMAP_SELFTEST is not set 820 799 # CONFIG_XMON is not set 821 800 # CONFIG_IRQSTACKS is not set 822 801 # CONFIG_BDI_SWITCH is not set ··· 828 805 # 829 806 # CONFIG_KEYS is not set 830 807 # CONFIG_SECURITY is not set 808 + # CONFIG_SECURITYFS is not set 831 809 # CONFIG_SECURITY_FILE_CAPABILITIES is not set 832 810 CONFIG_CRYPTO=y 833 811 834 812 # 835 813 # Crypto core or helper 836 814 # 815 + # CONFIG_CRYPTO_FIPS is not set 837 816 CONFIG_CRYPTO_ALGAPI=y 817 + CONFIG_CRYPTO_AEAD=y 838 818 CONFIG_CRYPTO_BLKCIPHER=y 819 + CONFIG_CRYPTO_HASH=y 820 + CONFIG_CRYPTO_RNG=y 839 821 CONFIG_CRYPTO_MANAGER=y 840 822 # CONFIG_CRYPTO_GF128MUL is not set 841 823 # CONFIG_CRYPTO_NULL is not set ··· 913 885 # 914 886 # CONFIG_CRYPTO_DEFLATE is not set 915 887 # CONFIG_CRYPTO_LZO is not set 888 + 889 + # 890 + # Random Number Generation 891 + # 892 + # CONFIG_CRYPTO_ANSI_CPRNG is not set 916 893 CONFIG_CRYPTO_HW=y 917 894 # CONFIG_CRYPTO_DEV_HIFN_795X is not set 918 895 # CONFIG_PPC_CLOCK is not set
+51 -22
arch/powerpc/configs/44x/rainier_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27-rc1 4 - # Tue Aug 5 09:09:35 2008 3 + # Linux kernel version: 2.6.28-rc2 4 + # Tue Oct 28 09:16:13 2008 5 5 # 6 6 # CONFIG_PPC64 is not set 7 7 ··· 22 22 CONFIG_NOT_COHERENT_CACHE=y 23 23 CONFIG_PPC32=y 24 24 CONFIG_WORD_SIZE=32 25 - CONFIG_PPC_MERGE=y 25 + CONFIG_ARCH_PHYS_ADDR_T_64BIT=y 26 26 CONFIG_MMU=y 27 27 CONFIG_GENERIC_CMOS_UPDATE=y 28 28 CONFIG_GENERIC_TIME=y 29 29 CONFIG_GENERIC_TIME_VSYSCALL=y 30 30 CONFIG_GENERIC_CLOCKEVENTS=y 31 31 CONFIG_GENERIC_HARDIRQS=y 32 - # CONFIG_HAVE_GET_USER_PAGES_FAST is not set 33 32 # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set 34 33 CONFIG_IRQ_PER_CPU=y 35 34 CONFIG_STACKTRACE_SUPPORT=y ··· 90 91 CONFIG_SYSCTL=y 91 92 CONFIG_EMBEDDED=y 92 93 CONFIG_SYSCTL_SYSCALL=y 93 - CONFIG_SYSCTL_SYSCALL_CHECK=y 94 94 CONFIG_KALLSYMS=y 95 95 # CONFIG_KALLSYMS_ALL is not set 96 96 # CONFIG_KALLSYMS_EXTRA_PASS is not set ··· 106 108 CONFIG_TIMERFD=y 107 109 CONFIG_EVENTFD=y 108 110 CONFIG_SHMEM=y 111 + CONFIG_AIO=y 109 112 CONFIG_VM_EVENT_COUNTERS=y 113 + CONFIG_PCI_QUIRKS=y 110 114 CONFIG_SLUB_DEBUG=y 111 115 # CONFIG_SLAB is not set 112 116 CONFIG_SLUB=y ··· 122 122 CONFIG_HAVE_KPROBES=y 123 123 CONFIG_HAVE_KRETPROBES=y 124 124 CONFIG_HAVE_ARCH_TRACEHOOK=y 125 - # CONFIG_HAVE_DMA_ATTRS is not set 126 - # CONFIG_USE_GENERIC_SMP_HELPERS is not set 127 - # CONFIG_HAVE_CLK is not set 128 - CONFIG_PROC_PAGE_MONITOR=y 129 125 # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set 130 126 CONFIG_SLABINFO=y 131 127 CONFIG_RT_MUTEXES=y ··· 154 158 # CONFIG_DEFAULT_NOOP is not set 155 159 CONFIG_DEFAULT_IOSCHED="anticipatory" 156 160 CONFIG_CLASSIC_RCU=y 161 + # CONFIG_FREEZER is not set 157 162 # CONFIG_PPC4xx_PCI_EXPRESS is not set 158 163 159 164 # ··· 171 174 # CONFIG_KATMAI is not set 172 175 CONFIG_RAINIER=y 173 176 # CONFIG_WARP is not set 177 + # CONFIG_ARCHES is not set 174 178 # CONFIG_CANYONLANDS is not set 179 + # CONFIG_GLACIER is not set 175 180 # CONFIG_YOSEMITE is not set 176 181 # CONFIG_XILINX_VIRTEX440_GENERIC_BOARD is not set 182 + CONFIG_PPC44x_SIMPLE=y 183 + # CONFIG_PPC4xx_GPIO is not set 177 184 CONFIG_440GRX=y 178 185 # CONFIG_IPIC is not set 179 186 # CONFIG_MPIC is not set ··· 196 195 # Kernel options 197 196 # 198 197 # CONFIG_HIGHMEM is not set 199 - # CONFIG_TICK_ONESHOT is not set 200 198 # CONFIG_NO_HZ is not set 201 199 # CONFIG_HIGH_RES_TIMERS is not set 202 200 CONFIG_GENERIC_CLOCKEVENTS_BUILD=y ··· 209 209 # CONFIG_PREEMPT_VOLUNTARY is not set 210 210 # CONFIG_PREEMPT is not set 211 211 CONFIG_BINFMT_ELF=y 212 + # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 213 + # CONFIG_HAVE_AOUT is not set 212 214 # CONFIG_BINFMT_MISC is not set 213 215 CONFIG_MATH_EMULATION=y 214 216 # CONFIG_IOMMU_HELPER is not set ··· 225 223 # CONFIG_SPARSEMEM_MANUAL is not set 226 224 CONFIG_FLATMEM=y 227 225 CONFIG_FLAT_NODE_MEM_MAP=y 228 - # CONFIG_SPARSEMEM_STATIC is not set 229 - # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set 230 226 CONFIG_PAGEFLAGS_EXTENDED=y 231 227 CONFIG_SPLIT_PTLOCK_CPUS=4 232 228 CONFIG_MIGRATION=y 233 229 CONFIG_RESOURCES_64BIT=y 230 + CONFIG_PHYS_ADDR_T_64BIT=y 234 231 CONFIG_ZONE_DMA_FLAG=1 235 232 CONFIG_BOUNCE=y 236 233 CONFIG_VIRT_TO_BUS=y 234 + CONFIG_UNEVICTABLE_LRU=y 237 235 CONFIG_FORCE_MAX_ZONEORDER=11 238 236 CONFIG_PROC_DEVICETREE=y 239 237 CONFIG_CMDLINE_BOOL=y ··· 320 318 # CONFIG_TIPC is not set 321 319 # CONFIG_ATM is not set 322 320 # CONFIG_BRIDGE is not set 321 + # CONFIG_NET_DSA is not set 323 322 # CONFIG_VLAN_8021Q is not set 324 323 # CONFIG_DECNET is not set 325 324 # CONFIG_LLC2 is not set ··· 341 338 # CONFIG_IRDA is not set 342 339 # CONFIG_BT is not set 343 340 # CONFIG_AF_RXRPC is not set 344 - 345 - # 346 - # Wireless 347 - # 348 - # CONFIG_CFG80211 is not set 349 - # CONFIG_WIRELESS_EXT is not set 350 - # CONFIG_MAC80211 is not set 351 - # CONFIG_IEEE80211 is not set 341 + # CONFIG_PHONET is not set 342 + # CONFIG_WIRELESS is not set 352 343 # CONFIG_RFKILL is not set 353 344 # CONFIG_NET_9P is not set 354 345 ··· 529 532 # CONFIG_QLA3XXX is not set 530 533 # CONFIG_ATL1 is not set 531 534 # CONFIG_ATL1E is not set 535 + # CONFIG_JME is not set 532 536 CONFIG_NETDEV_10000=y 533 537 # CONFIG_CHELSIO_T1 is not set 534 538 # CONFIG_CHELSIO_T3 is not set 539 + # CONFIG_ENIC is not set 535 540 # CONFIG_IXGBE is not set 536 541 # CONFIG_IXGB is not set 537 542 # CONFIG_S2IO is not set 538 543 # CONFIG_MYRI10GE is not set 539 544 # CONFIG_NETXEN_NIC is not set 540 545 # CONFIG_NIU is not set 546 + # CONFIG_MLX4_EN is not set 541 547 # CONFIG_MLX4_CORE is not set 542 548 # CONFIG_TEHUTI is not set 543 549 # CONFIG_BNX2X is not set 550 + # CONFIG_QLGE is not set 544 551 # CONFIG_SFC is not set 545 552 # CONFIG_TR is not set 546 553 ··· 640 639 # CONFIG_MFD_CORE is not set 641 640 # CONFIG_MFD_SM501 is not set 642 641 # CONFIG_HTC_PASIC3 is not set 642 + # CONFIG_MFD_TMIO is not set 643 + # CONFIG_MFD_WM8400 is not set 643 644 644 645 # 645 646 # Multimedia devices ··· 683 680 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 684 681 685 682 # 683 + # Enable Host or Gadget support to see Inventra options 684 + # 685 + 686 + # 686 687 # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 687 688 # 688 689 # CONFIG_USB_GADGET is not set 690 + # CONFIG_UWB is not set 689 691 # CONFIG_MMC is not set 690 692 # CONFIG_MEMSTICK is not set 691 693 # CONFIG_NEW_LEDS is not set ··· 700 692 # CONFIG_RTC_CLASS is not set 701 693 # CONFIG_DMADEVICES is not set 702 694 # CONFIG_UIO is not set 695 + # CONFIG_STAGING is not set 703 696 704 697 # 705 698 # File systems ··· 709 700 # CONFIG_EXT2_FS_XATTR is not set 710 701 # CONFIG_EXT2_FS_XIP is not set 711 702 # CONFIG_EXT3_FS is not set 712 - # CONFIG_EXT4DEV_FS is not set 703 + # CONFIG_EXT4_FS is not set 713 704 # CONFIG_REISERFS_FS is not set 714 705 # CONFIG_JFS_FS is not set 715 706 # CONFIG_FS_POSIX_ACL is not set 707 + CONFIG_FILE_LOCKING=y 716 708 # CONFIG_XFS_FS is not set 717 709 # CONFIG_OCFS2_FS is not set 718 710 CONFIG_DNOTIFY=y ··· 743 733 CONFIG_PROC_FS=y 744 734 CONFIG_PROC_KCORE=y 745 735 CONFIG_PROC_SYSCTL=y 736 + CONFIG_PROC_PAGE_MONITOR=y 746 737 CONFIG_SYSFS=y 747 738 CONFIG_TMPFS=y 748 739 # CONFIG_TMPFS_POSIX_ACL is not set ··· 791 780 CONFIG_LOCKD_V4=y 792 781 CONFIG_NFS_COMMON=y 793 782 CONFIG_SUNRPC=y 783 + # CONFIG_SUNRPC_REGISTER_V4 is not set 794 784 # CONFIG_RPCSEC_GSS_KRB5 is not set 795 785 # CONFIG_RPCSEC_GSS_SPKM3 is not set 796 786 # CONFIG_SMB_FS is not set ··· 812 800 # Library routines 813 801 # 814 802 CONFIG_BITREVERSE=y 815 - # CONFIG_GENERIC_FIND_FIRST_BIT is not set 816 803 # CONFIG_CRC_CCITT is not set 817 804 # CONFIG_CRC16 is not set 818 805 # CONFIG_CRC_T10DIF is not set ··· 865 854 # CONFIG_DEBUG_SG is not set 866 855 # CONFIG_BOOT_PRINTK_DELAY is not set 867 856 # CONFIG_RCU_TORTURE_TEST is not set 857 + # CONFIG_RCU_CPU_STALL_DETECTOR is not set 868 858 # CONFIG_BACKTRACE_SELF_TEST is not set 859 + # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 869 860 # CONFIG_FAULT_INJECTION is not set 870 861 # CONFIG_LATENCYTOP is not set 862 + CONFIG_SYSCTL_SYSCALL_CHECK=y 863 + CONFIG_NOP_TRACER=y 871 864 CONFIG_HAVE_FTRACE=y 872 865 CONFIG_HAVE_DYNAMIC_FTRACE=y 873 866 # CONFIG_FTRACE is not set 874 867 # CONFIG_SCHED_TRACER is not set 875 868 # CONFIG_CONTEXT_SWITCH_TRACER is not set 869 + # CONFIG_BOOT_TRACER is not set 870 + # CONFIG_STACK_TRACER is not set 871 + # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 876 872 # CONFIG_SAMPLES is not set 877 873 CONFIG_HAVE_ARCH_KGDB=y 878 874 # CONFIG_KGDB is not set ··· 888 870 # CONFIG_DEBUG_PAGEALLOC is not set 889 871 # CONFIG_CODE_PATCHING_SELFTEST is not set 890 872 # CONFIG_FTR_FIXUP_SELFTEST is not set 873 + # CONFIG_MSI_BITMAP_SELFTEST is not set 891 874 # CONFIG_XMON is not set 892 875 # CONFIG_IRQSTACKS is not set 893 876 # CONFIG_VIRQ_DEBUG is not set ··· 913 894 # 914 895 # CONFIG_KEYS is not set 915 896 # CONFIG_SECURITY is not set 897 + # CONFIG_SECURITYFS is not set 916 898 # CONFIG_SECURITY_FILE_CAPABILITIES is not set 917 899 CONFIG_CRYPTO=y 918 900 919 901 # 920 902 # Crypto core or helper 921 903 # 904 + # CONFIG_CRYPTO_FIPS is not set 922 905 CONFIG_CRYPTO_ALGAPI=y 906 + CONFIG_CRYPTO_AEAD=y 923 907 CONFIG_CRYPTO_BLKCIPHER=y 908 + CONFIG_CRYPTO_HASH=y 909 + CONFIG_CRYPTO_RNG=y 924 910 CONFIG_CRYPTO_MANAGER=y 925 911 # CONFIG_CRYPTO_GF128MUL is not set 926 912 # CONFIG_CRYPTO_NULL is not set ··· 998 974 # 999 975 # CONFIG_CRYPTO_DEFLATE is not set 1000 976 # CONFIG_CRYPTO_LZO is not set 977 + 978 + # 979 + # Random Number Generation 980 + # 981 + # CONFIG_CRYPTO_ANSI_CPRNG is not set 1001 982 CONFIG_CRYPTO_HW=y 1002 983 # CONFIG_CRYPTO_DEV_HIFN_795X is not set 1003 984 # CONFIG_PPC_CLOCK is not set
+80 -30
arch/powerpc/configs/44x/sam440ep_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27-rc1 4 - # Tue Aug 5 09:12:48 2008 3 + # Linux kernel version: 2.6.28-rc2 4 + # Tue Oct 28 09:16:15 2008 5 5 # 6 6 # CONFIG_PPC64 is not set 7 7 ··· 23 23 CONFIG_NOT_COHERENT_CACHE=y 24 24 CONFIG_PPC32=y 25 25 CONFIG_WORD_SIZE=32 26 - CONFIG_PPC_MERGE=y 26 + CONFIG_ARCH_PHYS_ADDR_T_64BIT=y 27 27 CONFIG_MMU=y 28 28 CONFIG_GENERIC_CMOS_UPDATE=y 29 29 CONFIG_GENERIC_TIME=y 30 30 CONFIG_GENERIC_TIME_VSYSCALL=y 31 31 CONFIG_GENERIC_CLOCKEVENTS=y 32 32 CONFIG_GENERIC_HARDIRQS=y 33 - # CONFIG_HAVE_GET_USER_PAGES_FAST is not set 34 33 # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set 35 34 CONFIG_IRQ_PER_CPU=y 36 35 CONFIG_STACKTRACE_SUPPORT=y ··· 92 93 CONFIG_SYSCTL=y 93 94 CONFIG_EMBEDDED=y 94 95 CONFIG_SYSCTL_SYSCALL=y 95 - CONFIG_SYSCTL_SYSCALL_CHECK=y 96 96 CONFIG_KALLSYMS=y 97 97 # CONFIG_KALLSYMS_EXTRA_PASS is not set 98 98 CONFIG_HOTPLUG=y ··· 107 109 CONFIG_TIMERFD=y 108 110 CONFIG_EVENTFD=y 109 111 CONFIG_SHMEM=y 112 + CONFIG_AIO=y 110 113 CONFIG_VM_EVENT_COUNTERS=y 114 + CONFIG_PCI_QUIRKS=y 111 115 CONFIG_SLUB_DEBUG=y 112 116 # CONFIG_SLAB is not set 113 117 CONFIG_SLUB=y ··· 123 123 CONFIG_HAVE_KPROBES=y 124 124 CONFIG_HAVE_KRETPROBES=y 125 125 CONFIG_HAVE_ARCH_TRACEHOOK=y 126 - # CONFIG_HAVE_DMA_ATTRS is not set 127 - # CONFIG_USE_GENERIC_SMP_HELPERS is not set 128 - # CONFIG_HAVE_CLK is not set 129 - CONFIG_PROC_PAGE_MONITOR=y 130 126 # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set 131 127 CONFIG_SLABINFO=y 132 128 CONFIG_RT_MUTEXES=y ··· 155 159 # CONFIG_DEFAULT_NOOP is not set 156 160 CONFIG_DEFAULT_IOSCHED="anticipatory" 157 161 CONFIG_CLASSIC_RCU=y 162 + # CONFIG_FREEZER is not set 158 163 # CONFIG_PPC4xx_PCI_EXPRESS is not set 159 164 160 165 # ··· 172 175 # CONFIG_KATMAI is not set 173 176 # CONFIG_RAINIER is not set 174 177 # CONFIG_WARP is not set 178 + # CONFIG_ARCHES is not set 175 179 # CONFIG_CANYONLANDS is not set 180 + # CONFIG_GLACIER is not set 176 181 # CONFIG_YOSEMITE is not set 177 182 # CONFIG_XILINX_VIRTEX440_GENERIC_BOARD is not set 183 + # CONFIG_PPC44x_SIMPLE is not set 184 + # CONFIG_PPC4xx_GPIO is not set 178 185 CONFIG_440EP=y 179 186 CONFIG_IBM440EP_ERR42=y 180 187 # CONFIG_IPIC is not set ··· 198 197 # Kernel options 199 198 # 200 199 # CONFIG_HIGHMEM is not set 201 - # CONFIG_TICK_ONESHOT is not set 202 200 # CONFIG_NO_HZ is not set 203 201 # CONFIG_HIGH_RES_TIMERS is not set 204 202 CONFIG_GENERIC_CLOCKEVENTS_BUILD=y ··· 211 211 # CONFIG_PREEMPT_VOLUNTARY is not set 212 212 # CONFIG_PREEMPT is not set 213 213 CONFIG_BINFMT_ELF=y 214 + # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 215 + # CONFIG_HAVE_AOUT is not set 214 216 # CONFIG_BINFMT_MISC is not set 215 217 # CONFIG_MATH_EMULATION is not set 216 218 # CONFIG_IOMMU_HELPER is not set ··· 227 225 # CONFIG_SPARSEMEM_MANUAL is not set 228 226 CONFIG_FLATMEM=y 229 227 CONFIG_FLAT_NODE_MEM_MAP=y 230 - # CONFIG_SPARSEMEM_STATIC is not set 231 - # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set 232 228 CONFIG_PAGEFLAGS_EXTENDED=y 233 229 CONFIG_SPLIT_PTLOCK_CPUS=4 234 230 CONFIG_MIGRATION=y 235 231 CONFIG_RESOURCES_64BIT=y 232 + CONFIG_PHYS_ADDR_T_64BIT=y 236 233 CONFIG_ZONE_DMA_FLAG=1 237 234 CONFIG_BOUNCE=y 238 235 CONFIG_VIRT_TO_BUS=y 236 + CONFIG_UNEVICTABLE_LRU=y 239 237 CONFIG_FORCE_MAX_ZONEORDER=11 240 238 CONFIG_PROC_DEVICETREE=y 241 239 CONFIG_CMDLINE_BOOL=y ··· 321 319 # CONFIG_TIPC is not set 322 320 # CONFIG_ATM is not set 323 321 # CONFIG_BRIDGE is not set 322 + # CONFIG_NET_DSA is not set 324 323 # CONFIG_VLAN_8021Q is not set 325 324 # CONFIG_DECNET is not set 326 325 # CONFIG_LLC2 is not set ··· 342 339 # CONFIG_IRDA is not set 343 340 # CONFIG_BT is not set 344 341 # CONFIG_AF_RXRPC is not set 345 - 346 - # 347 - # Wireless 348 - # 349 - # CONFIG_CFG80211 is not set 350 - # CONFIG_WIRELESS_EXT is not set 351 - # CONFIG_MAC80211 is not set 352 - # CONFIG_IEEE80211 is not set 342 + # CONFIG_PHONET is not set 343 + # CONFIG_WIRELESS is not set 353 344 # CONFIG_RFKILL is not set 354 345 # CONFIG_NET_9P is not set 355 346 ··· 533 536 # CONFIG_IBM_NEW_EMAC_RGMII is not set 534 537 # CONFIG_IBM_NEW_EMAC_TAH is not set 535 538 # CONFIG_IBM_NEW_EMAC_EMAC4 is not set 539 + # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set 540 + # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set 541 + # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set 536 542 # CONFIG_NET_PCI is not set 537 543 # CONFIG_B44 is not set 544 + # CONFIG_ATL2 is not set 538 545 # CONFIG_NETDEV_1000 is not set 539 546 # CONFIG_NETDEV_10000 is not set 540 547 # CONFIG_TR is not set ··· 574 573 # Input device support 575 574 # 576 575 CONFIG_INPUT=y 577 - # CONFIG_INPUT_FF_MEMLESS is not set 576 + CONFIG_INPUT_FF_MEMLESS=m 578 577 # CONFIG_INPUT_POLLDEV is not set 579 578 580 579 # ··· 608 607 # CONFIG_MOUSE_PS2_TOUCHKIT is not set 609 608 # CONFIG_MOUSE_SERIAL is not set 610 609 # CONFIG_MOUSE_APPLETOUCH is not set 610 + # CONFIG_MOUSE_BCM5974 is not set 611 611 # CONFIG_MOUSE_VSXXXAA is not set 612 612 # CONFIG_INPUT_JOYSTICK is not set 613 613 # CONFIG_INPUT_TABLET is not set ··· 675 673 CONFIG_I2C=y 676 674 CONFIG_I2C_BOARDINFO=y 677 675 # CONFIG_I2C_CHARDEV is not set 676 + CONFIG_I2C_HELPER_AUTO=y 678 677 CONFIG_I2C_ALGOBIT=y 679 678 680 679 # ··· 764 761 # CONFIG_MFD_CORE is not set 765 762 # CONFIG_MFD_SM501 is not set 766 763 # CONFIG_HTC_PASIC3 is not set 764 + # CONFIG_MFD_TMIO is not set 765 + # CONFIG_MFD_WM8400 is not set 766 + # CONFIG_MFD_WM8350_I2C is not set 767 767 768 768 # 769 769 # Multimedia devices ··· 794 788 CONFIG_FB=y 795 789 # CONFIG_FIRMWARE_EDID is not set 796 790 CONFIG_FB_DDC=y 791 + # CONFIG_FB_BOOT_VESA_SUPPORT is not set 797 792 CONFIG_FB_CFB_FILLRECT=y 798 793 CONFIG_FB_CFB_COPYAREA=y 799 794 CONFIG_FB_CFB_IMAGEBLIT=y ··· 835 828 # CONFIG_FB_S3 is not set 836 829 # CONFIG_FB_SAVAGE is not set 837 830 # CONFIG_FB_SIS is not set 831 + # CONFIG_FB_VIA is not set 838 832 # CONFIG_FB_NEOMAGIC is not set 839 833 # CONFIG_FB_KYRO is not set 840 834 # CONFIG_FB_3DFX is not set ··· 847 839 # CONFIG_FB_CARMINE is not set 848 840 # CONFIG_FB_IBM_GXT4500 is not set 849 841 # CONFIG_FB_VIRTUAL is not set 842 + # CONFIG_FB_METRONOME is not set 850 843 CONFIG_BACKLIGHT_LCD_SUPPORT=y 851 844 CONFIG_LCD_CLASS_DEVICE=y 852 845 # CONFIG_LCD_ILI9320 is not set ··· 884 875 # USB Input Devices 885 876 # 886 877 CONFIG_USB_HID=y 887 - # CONFIG_USB_HIDINPUT_POWERBOOK is not set 888 - # CONFIG_HID_FF is not set 878 + # CONFIG_HID_PID is not set 889 879 # CONFIG_USB_HIDDEV is not set 880 + 881 + # 882 + # Special HID drivers 883 + # 884 + CONFIG_HID_COMPAT=y 885 + CONFIG_HID_A4TECH=y 886 + CONFIG_HID_APPLE=y 887 + CONFIG_HID_BELKIN=y 888 + CONFIG_HID_BRIGHT=y 889 + CONFIG_HID_CHERRY=y 890 + CONFIG_HID_CHICONY=y 891 + CONFIG_HID_CYPRESS=y 892 + CONFIG_HID_DELL=y 893 + CONFIG_HID_EZKEY=y 894 + CONFIG_HID_GYRATION=y 895 + CONFIG_HID_LOGITECH=y 896 + # CONFIG_LOGITECH_FF is not set 897 + # CONFIG_LOGIRUMBLEPAD2_FF is not set 898 + CONFIG_HID_MICROSOFT=y 899 + CONFIG_HID_MONTEREY=y 900 + CONFIG_HID_PANTHERLORD=y 901 + # CONFIG_PANTHERLORD_FF is not set 902 + CONFIG_HID_PETALYNX=y 903 + CONFIG_HID_SAMSUNG=y 904 + CONFIG_HID_SONY=y 905 + CONFIG_HID_SUNPLUS=y 906 + CONFIG_THRUSTMASTER_FF=m 907 + CONFIG_ZEROPLUS_FF=m 890 908 CONFIG_USB_SUPPORT=y 891 909 CONFIG_USB_ARCH_HAS_HCD=y 892 910 CONFIG_USB_ARCH_HAS_OHCI=y ··· 931 895 # CONFIG_USB_OTG is not set 932 896 # CONFIG_USB_OTG_WHITELIST is not set 933 897 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 898 + # CONFIG_USB_MON is not set 899 + # CONFIG_USB_WUSB is not set 900 + # CONFIG_USB_WUSB_CBAF is not set 934 901 935 902 # 936 903 # USB Host Controller Drivers ··· 956 917 # CONFIG_USB_UHCI_HCD is not set 957 918 # CONFIG_USB_SL811_HCD is not set 958 919 # CONFIG_USB_R8A66597_HCD is not set 920 + # CONFIG_USB_WHCI_HCD is not set 921 + # CONFIG_USB_HWA_HCD is not set 959 922 960 923 # 961 924 # USB Device Class drivers ··· 965 924 # CONFIG_USB_ACM is not set 966 925 # CONFIG_USB_PRINTER is not set 967 926 # CONFIG_USB_WDM is not set 927 + # CONFIG_USB_TMC is not set 968 928 969 929 # 970 930 # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' ··· 995 953 # 996 954 # CONFIG_USB_MDC800 is not set 997 955 # CONFIG_USB_MICROTEK is not set 998 - # CONFIG_USB_MON is not set 999 956 1000 957 # 1001 958 # USB port drivers ··· 1007 966 # CONFIG_USB_EMI62 is not set 1008 967 # CONFIG_USB_EMI26 is not set 1009 968 # CONFIG_USB_ADUTUX is not set 1010 - # CONFIG_USB_AUERSWALD is not set 969 + # CONFIG_USB_SEVSEG is not set 1011 970 # CONFIG_USB_RIO500 is not set 1012 971 # CONFIG_USB_LEGOTOWER is not set 1013 972 # CONFIG_USB_LCD is not set ··· 1025 984 # CONFIG_USB_IOWARRIOR is not set 1026 985 # CONFIG_USB_TEST is not set 1027 986 # CONFIG_USB_ISIGHTFW is not set 987 + # CONFIG_USB_VST is not set 1028 988 # CONFIG_USB_GADGET is not set 989 + # CONFIG_UWB is not set 1029 990 # CONFIG_MMC is not set 1030 991 # CONFIG_MEMSTICK is not set 1031 992 # CONFIG_NEW_LEDS is not set ··· 1074 1031 # Platform RTC drivers 1075 1032 # 1076 1033 # CONFIG_RTC_DRV_CMOS is not set 1034 + # CONFIG_RTC_DRV_DS1286 is not set 1077 1035 # CONFIG_RTC_DRV_DS1511 is not set 1078 1036 # CONFIG_RTC_DRV_DS1553 is not set 1079 1037 # CONFIG_RTC_DRV_DS1742 is not set 1080 1038 # CONFIG_RTC_DRV_STK17TA8 is not set 1081 1039 # CONFIG_RTC_DRV_M48T86 is not set 1040 + # CONFIG_RTC_DRV_M48T35 is not set 1082 1041 # CONFIG_RTC_DRV_M48T59 is not set 1042 + # CONFIG_RTC_DRV_BQ4802 is not set 1083 1043 # CONFIG_RTC_DRV_V3020 is not set 1084 1044 1085 1045 # ··· 1091 1045 # CONFIG_RTC_DRV_PPC is not set 1092 1046 # CONFIG_DMADEVICES is not set 1093 1047 # CONFIG_UIO is not set 1048 + # CONFIG_STAGING is not set 1094 1049 1095 1050 # 1096 1051 # File systems ··· 1105 1058 CONFIG_EXT3_FS_XATTR=y 1106 1059 CONFIG_EXT3_FS_POSIX_ACL=y 1107 1060 # CONFIG_EXT3_FS_SECURITY is not set 1108 - # CONFIG_EXT4DEV_FS is not set 1061 + # CONFIG_EXT4_FS is not set 1109 1062 CONFIG_JBD=y 1110 1063 CONFIG_FS_MBCACHE=y 1111 1064 CONFIG_REISERFS_FS=y ··· 1114 1067 # CONFIG_REISERFS_FS_XATTR is not set 1115 1068 # CONFIG_JFS_FS is not set 1116 1069 CONFIG_FS_POSIX_ACL=y 1070 + CONFIG_FILE_LOCKING=y 1117 1071 # CONFIG_XFS_FS is not set 1118 1072 # CONFIG_OCFS2_FS is not set 1119 1073 CONFIG_DNOTIFY=y ··· 1150 1102 CONFIG_PROC_FS=y 1151 1103 CONFIG_PROC_KCORE=y 1152 1104 CONFIG_PROC_SYSCTL=y 1105 + CONFIG_PROC_PAGE_MONITOR=y 1153 1106 CONFIG_SYSFS=y 1154 1107 CONFIG_TMPFS=y 1155 1108 # CONFIG_TMPFS_POSIX_ACL is not set ··· 1245 1196 # Library routines 1246 1197 # 1247 1198 CONFIG_BITREVERSE=y 1248 - # CONFIG_GENERIC_FIND_FIRST_BIT is not set 1249 1199 # CONFIG_CRC_CCITT is not set 1250 1200 # CONFIG_CRC16 is not set 1251 1201 CONFIG_CRC_T10DIF=y ··· 1275 1227 # CONFIG_SLUB_STATS is not set 1276 1228 # CONFIG_DEBUG_BUGVERBOSE is not set 1277 1229 # CONFIG_DEBUG_MEMORY_INIT is not set 1230 + # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1278 1231 # CONFIG_LATENCYTOP is not set 1232 + CONFIG_SYSCTL_SYSCALL_CHECK=y 1233 + CONFIG_NOP_TRACER=y 1279 1234 CONFIG_HAVE_FTRACE=y 1280 1235 CONFIG_HAVE_DYNAMIC_FTRACE=y 1281 - # CONFIG_FTRACE is not set 1282 - # CONFIG_SCHED_TRACER is not set 1283 - # CONFIG_CONTEXT_SWITCH_TRACER is not set 1236 + # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1284 1237 # CONFIG_SAMPLES is not set 1285 1238 CONFIG_HAVE_ARCH_KGDB=y 1286 1239 # CONFIG_IRQSTACKS is not set ··· 1292 1243 # 1293 1244 # CONFIG_KEYS is not set 1294 1245 # CONFIG_SECURITY is not set 1246 + # CONFIG_SECURITYFS is not set 1295 1247 # CONFIG_SECURITY_FILE_CAPABILITIES is not set 1296 1248 # CONFIG_CRYPTO is not set 1297 1249 # CONFIG_PPC_CLOCK is not set
+56 -22
arch/powerpc/configs/44x/sequoia_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27-rc1 4 - # Tue Aug 5 09:15:13 2008 3 + # Linux kernel version: 2.6.28-rc2 4 + # Tue Oct 28 09:16:16 2008 5 5 # 6 6 # CONFIG_PPC64 is not set 7 7 ··· 23 23 CONFIG_NOT_COHERENT_CACHE=y 24 24 CONFIG_PPC32=y 25 25 CONFIG_WORD_SIZE=32 26 - CONFIG_PPC_MERGE=y 26 + CONFIG_ARCH_PHYS_ADDR_T_64BIT=y 27 27 CONFIG_MMU=y 28 28 CONFIG_GENERIC_CMOS_UPDATE=y 29 29 CONFIG_GENERIC_TIME=y 30 30 CONFIG_GENERIC_TIME_VSYSCALL=y 31 31 CONFIG_GENERIC_CLOCKEVENTS=y 32 32 CONFIG_GENERIC_HARDIRQS=y 33 - # CONFIG_HAVE_GET_USER_PAGES_FAST is not set 34 33 # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set 35 34 CONFIG_IRQ_PER_CPU=y 36 35 CONFIG_STACKTRACE_SUPPORT=y ··· 91 92 CONFIG_SYSCTL=y 92 93 CONFIG_EMBEDDED=y 93 94 CONFIG_SYSCTL_SYSCALL=y 94 - CONFIG_SYSCTL_SYSCALL_CHECK=y 95 95 CONFIG_KALLSYMS=y 96 96 # CONFIG_KALLSYMS_ALL is not set 97 97 # CONFIG_KALLSYMS_EXTRA_PASS is not set ··· 107 109 CONFIG_TIMERFD=y 108 110 CONFIG_EVENTFD=y 109 111 CONFIG_SHMEM=y 112 + CONFIG_AIO=y 110 113 CONFIG_VM_EVENT_COUNTERS=y 114 + CONFIG_PCI_QUIRKS=y 111 115 CONFIG_SLUB_DEBUG=y 112 116 # CONFIG_SLAB is not set 113 117 CONFIG_SLUB=y ··· 123 123 CONFIG_HAVE_KPROBES=y 124 124 CONFIG_HAVE_KRETPROBES=y 125 125 CONFIG_HAVE_ARCH_TRACEHOOK=y 126 - # CONFIG_HAVE_DMA_ATTRS is not set 127 - # CONFIG_USE_GENERIC_SMP_HELPERS is not set 128 - # CONFIG_HAVE_CLK is not set 129 - CONFIG_PROC_PAGE_MONITOR=y 130 126 # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set 131 127 CONFIG_SLABINFO=y 132 128 CONFIG_RT_MUTEXES=y ··· 155 159 # CONFIG_DEFAULT_NOOP is not set 156 160 CONFIG_DEFAULT_IOSCHED="anticipatory" 157 161 CONFIG_CLASSIC_RCU=y 162 + # CONFIG_FREEZER is not set 158 163 # CONFIG_PPC4xx_PCI_EXPRESS is not set 159 164 160 165 # ··· 172 175 # CONFIG_KATMAI is not set 173 176 # CONFIG_RAINIER is not set 174 177 # CONFIG_WARP is not set 178 + # CONFIG_ARCHES is not set 175 179 # CONFIG_CANYONLANDS is not set 180 + # CONFIG_GLACIER is not set 176 181 # CONFIG_YOSEMITE is not set 177 182 # CONFIG_XILINX_VIRTEX440_GENERIC_BOARD is not set 183 + CONFIG_PPC44x_SIMPLE=y 184 + # CONFIG_PPC4xx_GPIO is not set 178 185 CONFIG_440EPX=y 179 186 # CONFIG_IPIC is not set 180 187 # CONFIG_MPIC is not set ··· 206 205 # CONFIG_HZ_300 is not set 207 206 # CONFIG_HZ_1000 is not set 208 207 CONFIG_HZ=250 209 - # CONFIG_SCHED_HRTICK is not set 208 + CONFIG_SCHED_HRTICK=y 210 209 CONFIG_PREEMPT_NONE=y 211 210 # CONFIG_PREEMPT_VOLUNTARY is not set 212 211 # CONFIG_PREEMPT is not set 213 212 CONFIG_BINFMT_ELF=y 213 + # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 214 + # CONFIG_HAVE_AOUT is not set 214 215 # CONFIG_BINFMT_MISC is not set 215 216 # CONFIG_MATH_EMULATION is not set 216 217 # CONFIG_IOMMU_HELPER is not set ··· 227 224 # CONFIG_SPARSEMEM_MANUAL is not set 228 225 CONFIG_FLATMEM=y 229 226 CONFIG_FLAT_NODE_MEM_MAP=y 230 - # CONFIG_SPARSEMEM_STATIC is not set 231 - # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set 232 227 CONFIG_PAGEFLAGS_EXTENDED=y 233 228 CONFIG_SPLIT_PTLOCK_CPUS=4 234 229 CONFIG_MIGRATION=y 235 230 CONFIG_RESOURCES_64BIT=y 231 + CONFIG_PHYS_ADDR_T_64BIT=y 236 232 CONFIG_ZONE_DMA_FLAG=1 237 233 CONFIG_BOUNCE=y 238 234 CONFIG_VIRT_TO_BUS=y 235 + CONFIG_UNEVICTABLE_LRU=y 239 236 CONFIG_FORCE_MAX_ZONEORDER=11 240 237 CONFIG_PROC_DEVICETREE=y 241 238 CONFIG_CMDLINE_BOOL=y ··· 322 319 # CONFIG_TIPC is not set 323 320 # CONFIG_ATM is not set 324 321 # CONFIG_BRIDGE is not set 322 + # CONFIG_NET_DSA is not set 325 323 # CONFIG_VLAN_8021Q is not set 326 324 # CONFIG_DECNET is not set 327 325 # CONFIG_LLC2 is not set ··· 343 339 # CONFIG_IRDA is not set 344 340 # CONFIG_BT is not set 345 341 # CONFIG_AF_RXRPC is not set 346 - 347 - # 348 - # Wireless 349 - # 350 - # CONFIG_CFG80211 is not set 351 - # CONFIG_WIRELESS_EXT is not set 352 - # CONFIG_MAC80211 is not set 353 - # CONFIG_IEEE80211 is not set 342 + # CONFIG_PHONET is not set 343 + # CONFIG_WIRELESS is not set 354 344 # CONFIG_RFKILL is not set 355 345 # CONFIG_NET_9P is not set 356 346 ··· 525 527 CONFIG_IBM_NEW_EMAC_RGMII=y 526 528 # CONFIG_IBM_NEW_EMAC_TAH is not set 527 529 CONFIG_IBM_NEW_EMAC_EMAC4=y 530 + # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set 531 + # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set 532 + # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set 528 533 # CONFIG_NET_PCI is not set 529 534 # CONFIG_B44 is not set 535 + # CONFIG_ATL2 is not set 530 536 CONFIG_NETDEV_1000=y 531 537 # CONFIG_ACENIC is not set 532 538 # CONFIG_DL2K is not set ··· 551 549 # CONFIG_QLA3XXX is not set 552 550 # CONFIG_ATL1 is not set 553 551 # CONFIG_ATL1E is not set 552 + # CONFIG_JME is not set 554 553 CONFIG_NETDEV_10000=y 555 554 # CONFIG_CHELSIO_T1 is not set 556 555 # CONFIG_CHELSIO_T3 is not set 556 + # CONFIG_ENIC is not set 557 557 # CONFIG_IXGBE is not set 558 558 # CONFIG_IXGB is not set 559 559 # CONFIG_S2IO is not set 560 560 # CONFIG_MYRI10GE is not set 561 561 # CONFIG_NETXEN_NIC is not set 562 562 # CONFIG_NIU is not set 563 + # CONFIG_MLX4_EN is not set 563 564 # CONFIG_MLX4_CORE is not set 564 565 # CONFIG_TEHUTI is not set 565 566 # CONFIG_BNX2X is not set 567 + # CONFIG_QLGE is not set 566 568 # CONFIG_SFC is not set 567 569 # CONFIG_TR is not set 568 570 ··· 662 656 # CONFIG_MFD_CORE is not set 663 657 # CONFIG_MFD_SM501 is not set 664 658 # CONFIG_HTC_PASIC3 is not set 659 + # CONFIG_MFD_TMIO is not set 660 + # CONFIG_MFD_WM8400 is not set 665 661 666 662 # 667 663 # Multimedia devices ··· 705 697 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 706 698 707 699 # 700 + # Enable Host or Gadget support to see Inventra options 701 + # 702 + 703 + # 708 704 # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 709 705 # 710 706 # CONFIG_USB_GADGET is not set 707 + # CONFIG_UWB is not set 711 708 # CONFIG_MMC is not set 712 709 # CONFIG_MEMSTICK is not set 713 710 # CONFIG_NEW_LEDS is not set ··· 722 709 # CONFIG_RTC_CLASS is not set 723 710 # CONFIG_DMADEVICES is not set 724 711 # CONFIG_UIO is not set 712 + # CONFIG_STAGING is not set 725 713 726 714 # 727 715 # File systems ··· 731 717 # CONFIG_EXT2_FS_XATTR is not set 732 718 # CONFIG_EXT2_FS_XIP is not set 733 719 # CONFIG_EXT3_FS is not set 734 - # CONFIG_EXT4DEV_FS is not set 720 + # CONFIG_EXT4_FS is not set 735 721 # CONFIG_REISERFS_FS is not set 736 722 # CONFIG_JFS_FS is not set 737 723 # CONFIG_FS_POSIX_ACL is not set 724 + CONFIG_FILE_LOCKING=y 738 725 # CONFIG_XFS_FS is not set 739 726 # CONFIG_OCFS2_FS is not set 740 727 CONFIG_DNOTIFY=y ··· 765 750 CONFIG_PROC_FS=y 766 751 CONFIG_PROC_KCORE=y 767 752 CONFIG_PROC_SYSCTL=y 753 + CONFIG_PROC_PAGE_MONITOR=y 768 754 CONFIG_SYSFS=y 769 755 CONFIG_TMPFS=y 770 756 # CONFIG_TMPFS_POSIX_ACL is not set ··· 813 797 CONFIG_LOCKD_V4=y 814 798 CONFIG_NFS_COMMON=y 815 799 CONFIG_SUNRPC=y 800 + # CONFIG_SUNRPC_REGISTER_V4 is not set 816 801 # CONFIG_RPCSEC_GSS_KRB5 is not set 817 802 # CONFIG_RPCSEC_GSS_SPKM3 is not set 818 803 # CONFIG_SMB_FS is not set ··· 834 817 # Library routines 835 818 # 836 819 CONFIG_BITREVERSE=y 837 - # CONFIG_GENERIC_FIND_FIRST_BIT is not set 838 820 # CONFIG_CRC_CCITT is not set 839 821 # CONFIG_CRC16 is not set 840 822 # CONFIG_CRC_T10DIF is not set ··· 887 871 # CONFIG_DEBUG_SG is not set 888 872 # CONFIG_BOOT_PRINTK_DELAY is not set 889 873 # CONFIG_RCU_TORTURE_TEST is not set 874 + # CONFIG_RCU_CPU_STALL_DETECTOR is not set 890 875 # CONFIG_BACKTRACE_SELF_TEST is not set 876 + # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 891 877 # CONFIG_FAULT_INJECTION is not set 892 878 # CONFIG_LATENCYTOP is not set 879 + CONFIG_SYSCTL_SYSCALL_CHECK=y 880 + CONFIG_NOP_TRACER=y 893 881 CONFIG_HAVE_FTRACE=y 894 882 CONFIG_HAVE_DYNAMIC_FTRACE=y 895 883 # CONFIG_FTRACE is not set 896 884 # CONFIG_SCHED_TRACER is not set 897 885 # CONFIG_CONTEXT_SWITCH_TRACER is not set 886 + # CONFIG_BOOT_TRACER is not set 887 + # CONFIG_STACK_TRACER is not set 888 + # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 898 889 # CONFIG_SAMPLES is not set 899 890 CONFIG_HAVE_ARCH_KGDB=y 900 891 # CONFIG_KGDB is not set ··· 910 887 # CONFIG_DEBUG_PAGEALLOC is not set 911 888 # CONFIG_CODE_PATCHING_SELFTEST is not set 912 889 # CONFIG_FTR_FIXUP_SELFTEST is not set 890 + # CONFIG_MSI_BITMAP_SELFTEST is not set 913 891 # CONFIG_XMON is not set 914 892 # CONFIG_IRQSTACKS is not set 915 893 # CONFIG_VIRQ_DEBUG is not set ··· 935 911 # 936 912 # CONFIG_KEYS is not set 937 913 # CONFIG_SECURITY is not set 914 + # CONFIG_SECURITYFS is not set 938 915 # CONFIG_SECURITY_FILE_CAPABILITIES is not set 939 916 CONFIG_CRYPTO=y 940 917 941 918 # 942 919 # Crypto core or helper 943 920 # 921 + # CONFIG_CRYPTO_FIPS is not set 944 922 CONFIG_CRYPTO_ALGAPI=y 923 + CONFIG_CRYPTO_AEAD=y 945 924 CONFIG_CRYPTO_BLKCIPHER=y 925 + CONFIG_CRYPTO_HASH=y 926 + CONFIG_CRYPTO_RNG=y 946 927 CONFIG_CRYPTO_MANAGER=y 947 928 # CONFIG_CRYPTO_GF128MUL is not set 948 929 # CONFIG_CRYPTO_NULL is not set ··· 1020 991 # 1021 992 # CONFIG_CRYPTO_DEFLATE is not set 1022 993 # CONFIG_CRYPTO_LZO is not set 994 + 995 + # 996 + # Random Number Generation 997 + # 998 + # CONFIG_CRYPTO_ANSI_CPRNG is not set 1023 999 CONFIG_CRYPTO_HW=y 1024 1000 # CONFIG_CRYPTO_DEV_HIFN_795X is not set 1025 1001 # CONFIG_PPC_CLOCK is not set
+55 -22
arch/powerpc/configs/44x/taishan_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27-rc1 4 - # Tue Aug 5 09:17:48 2008 3 + # Linux kernel version: 2.6.28-rc2 4 + # Tue Oct 28 09:16:18 2008 5 5 # 6 6 # CONFIG_PPC64 is not set 7 7 ··· 22 22 CONFIG_NOT_COHERENT_CACHE=y 23 23 CONFIG_PPC32=y 24 24 CONFIG_WORD_SIZE=32 25 - CONFIG_PPC_MERGE=y 25 + CONFIG_ARCH_PHYS_ADDR_T_64BIT=y 26 26 CONFIG_MMU=y 27 27 CONFIG_GENERIC_CMOS_UPDATE=y 28 28 CONFIG_GENERIC_TIME=y 29 29 CONFIG_GENERIC_TIME_VSYSCALL=y 30 30 CONFIG_GENERIC_CLOCKEVENTS=y 31 31 CONFIG_GENERIC_HARDIRQS=y 32 - # CONFIG_HAVE_GET_USER_PAGES_FAST is not set 33 32 # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set 34 33 CONFIG_IRQ_PER_CPU=y 35 34 CONFIG_STACKTRACE_SUPPORT=y ··· 90 91 CONFIG_SYSCTL=y 91 92 CONFIG_EMBEDDED=y 92 93 CONFIG_SYSCTL_SYSCALL=y 93 - CONFIG_SYSCTL_SYSCALL_CHECK=y 94 94 CONFIG_KALLSYMS=y 95 95 # CONFIG_KALLSYMS_ALL is not set 96 96 # CONFIG_KALLSYMS_EXTRA_PASS is not set ··· 106 108 CONFIG_TIMERFD=y 107 109 CONFIG_EVENTFD=y 108 110 CONFIG_SHMEM=y 111 + CONFIG_AIO=y 109 112 CONFIG_VM_EVENT_COUNTERS=y 113 + CONFIG_PCI_QUIRKS=y 110 114 CONFIG_SLUB_DEBUG=y 111 115 # CONFIG_SLAB is not set 112 116 CONFIG_SLUB=y ··· 122 122 CONFIG_HAVE_KPROBES=y 123 123 CONFIG_HAVE_KRETPROBES=y 124 124 CONFIG_HAVE_ARCH_TRACEHOOK=y 125 - # CONFIG_HAVE_DMA_ATTRS is not set 126 - # CONFIG_USE_GENERIC_SMP_HELPERS is not set 127 - # CONFIG_HAVE_CLK is not set 128 - CONFIG_PROC_PAGE_MONITOR=y 129 125 # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set 130 126 CONFIG_SLABINFO=y 131 127 CONFIG_RT_MUTEXES=y ··· 154 158 # CONFIG_DEFAULT_NOOP is not set 155 159 CONFIG_DEFAULT_IOSCHED="anticipatory" 156 160 CONFIG_CLASSIC_RCU=y 161 + # CONFIG_FREEZER is not set 157 162 # CONFIG_PPC4xx_PCI_EXPRESS is not set 158 163 159 164 # ··· 171 174 # CONFIG_KATMAI is not set 172 175 # CONFIG_RAINIER is not set 173 176 # CONFIG_WARP is not set 177 + # CONFIG_ARCHES is not set 174 178 # CONFIG_CANYONLANDS is not set 179 + # CONFIG_GLACIER is not set 175 180 # CONFIG_YOSEMITE is not set 176 181 # CONFIG_XILINX_VIRTEX440_GENERIC_BOARD is not set 182 + CONFIG_PPC44x_SIMPLE=y 183 + # CONFIG_PPC4xx_GPIO is not set 177 184 CONFIG_440GX=y 178 185 # CONFIG_IPIC is not set 179 186 # CONFIG_MPIC is not set ··· 196 195 # Kernel options 197 196 # 198 197 # CONFIG_HIGHMEM is not set 199 - # CONFIG_TICK_ONESHOT is not set 200 198 # CONFIG_NO_HZ is not set 201 199 # CONFIG_HIGH_RES_TIMERS is not set 202 200 CONFIG_GENERIC_CLOCKEVENTS_BUILD=y ··· 209 209 # CONFIG_PREEMPT_VOLUNTARY is not set 210 210 # CONFIG_PREEMPT is not set 211 211 CONFIG_BINFMT_ELF=y 212 + # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 213 + # CONFIG_HAVE_AOUT is not set 212 214 # CONFIG_BINFMT_MISC is not set 213 215 # CONFIG_MATH_EMULATION is not set 214 216 # CONFIG_IOMMU_HELPER is not set ··· 225 223 # CONFIG_SPARSEMEM_MANUAL is not set 226 224 CONFIG_FLATMEM=y 227 225 CONFIG_FLAT_NODE_MEM_MAP=y 228 - # CONFIG_SPARSEMEM_STATIC is not set 229 - # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set 230 226 CONFIG_PAGEFLAGS_EXTENDED=y 231 227 CONFIG_SPLIT_PTLOCK_CPUS=4 232 228 CONFIG_MIGRATION=y 233 229 CONFIG_RESOURCES_64BIT=y 230 + CONFIG_PHYS_ADDR_T_64BIT=y 234 231 CONFIG_ZONE_DMA_FLAG=1 235 232 CONFIG_BOUNCE=y 236 233 CONFIG_VIRT_TO_BUS=y 234 + CONFIG_UNEVICTABLE_LRU=y 237 235 CONFIG_FORCE_MAX_ZONEORDER=11 238 236 CONFIG_PROC_DEVICETREE=y 239 237 CONFIG_CMDLINE_BOOL=y ··· 320 318 # CONFIG_TIPC is not set 321 319 # CONFIG_ATM is not set 322 320 # CONFIG_BRIDGE is not set 321 + # CONFIG_NET_DSA is not set 323 322 # CONFIG_VLAN_8021Q is not set 324 323 # CONFIG_DECNET is not set 325 324 # CONFIG_LLC2 is not set ··· 341 338 # CONFIG_IRDA is not set 342 339 # CONFIG_BT is not set 343 340 # CONFIG_AF_RXRPC is not set 344 - 345 - # 346 - # Wireless 347 - # 348 - # CONFIG_CFG80211 is not set 349 - # CONFIG_WIRELESS_EXT is not set 350 - # CONFIG_MAC80211 is not set 351 - # CONFIG_IEEE80211 is not set 341 + # CONFIG_PHONET is not set 342 + # CONFIG_WIRELESS is not set 352 343 # CONFIG_RFKILL is not set 353 344 # CONFIG_NET_9P is not set 354 345 ··· 525 528 CONFIG_IBM_NEW_EMAC_RGMII=y 526 529 CONFIG_IBM_NEW_EMAC_TAH=y 527 530 CONFIG_IBM_NEW_EMAC_EMAC4=y 531 + # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set 532 + # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set 533 + # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set 528 534 # CONFIG_NET_PCI is not set 529 535 # CONFIG_B44 is not set 536 + # CONFIG_ATL2 is not set 530 537 CONFIG_NETDEV_1000=y 531 538 # CONFIG_ACENIC is not set 532 539 # CONFIG_DL2K is not set ··· 551 550 # CONFIG_QLA3XXX is not set 552 551 # CONFIG_ATL1 is not set 553 552 # CONFIG_ATL1E is not set 553 + # CONFIG_JME is not set 554 554 CONFIG_NETDEV_10000=y 555 555 # CONFIG_CHELSIO_T1 is not set 556 556 # CONFIG_CHELSIO_T3 is not set 557 + # CONFIG_ENIC is not set 557 558 # CONFIG_IXGBE is not set 558 559 # CONFIG_IXGB is not set 559 560 # CONFIG_S2IO is not set 560 561 # CONFIG_MYRI10GE is not set 561 562 # CONFIG_NETXEN_NIC is not set 562 563 # CONFIG_NIU is not set 564 + # CONFIG_MLX4_EN is not set 563 565 # CONFIG_MLX4_CORE is not set 564 566 # CONFIG_TEHUTI is not set 565 567 # CONFIG_BNX2X is not set 568 + # CONFIG_QLGE is not set 566 569 # CONFIG_SFC is not set 567 570 # CONFIG_TR is not set 568 571 ··· 662 657 # CONFIG_MFD_CORE is not set 663 658 # CONFIG_MFD_SM501 is not set 664 659 # CONFIG_HTC_PASIC3 is not set 660 + # CONFIG_MFD_TMIO is not set 661 + # CONFIG_MFD_WM8400 is not set 665 662 666 663 # 667 664 # Multimedia devices ··· 705 698 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 706 699 707 700 # 701 + # Enable Host or Gadget support to see Inventra options 702 + # 703 + 704 + # 708 705 # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 709 706 # 710 707 # CONFIG_USB_GADGET is not set 708 + # CONFIG_UWB is not set 711 709 # CONFIG_MMC is not set 712 710 # CONFIG_MEMSTICK is not set 713 711 # CONFIG_NEW_LEDS is not set ··· 722 710 # CONFIG_RTC_CLASS is not set 723 711 # CONFIG_DMADEVICES is not set 724 712 # CONFIG_UIO is not set 713 + # CONFIG_STAGING is not set 725 714 726 715 # 727 716 # File systems ··· 731 718 # CONFIG_EXT2_FS_XATTR is not set 732 719 # CONFIG_EXT2_FS_XIP is not set 733 720 # CONFIG_EXT3_FS is not set 734 - # CONFIG_EXT4DEV_FS is not set 721 + # CONFIG_EXT4_FS is not set 735 722 # CONFIG_REISERFS_FS is not set 736 723 # CONFIG_JFS_FS is not set 737 724 # CONFIG_FS_POSIX_ACL is not set 725 + CONFIG_FILE_LOCKING=y 738 726 # CONFIG_XFS_FS is not set 739 727 # CONFIG_OCFS2_FS is not set 740 728 CONFIG_DNOTIFY=y ··· 765 751 CONFIG_PROC_FS=y 766 752 CONFIG_PROC_KCORE=y 767 753 CONFIG_PROC_SYSCTL=y 754 + CONFIG_PROC_PAGE_MONITOR=y 768 755 CONFIG_SYSFS=y 769 756 CONFIG_TMPFS=y 770 757 # CONFIG_TMPFS_POSIX_ACL is not set ··· 803 788 CONFIG_LOCKD_V4=y 804 789 CONFIG_NFS_COMMON=y 805 790 CONFIG_SUNRPC=y 791 + # CONFIG_SUNRPC_REGISTER_V4 is not set 806 792 # CONFIG_RPCSEC_GSS_KRB5 is not set 807 793 # CONFIG_RPCSEC_GSS_SPKM3 is not set 808 794 # CONFIG_SMB_FS is not set ··· 824 808 # Library routines 825 809 # 826 810 CONFIG_BITREVERSE=y 827 - # CONFIG_GENERIC_FIND_FIRST_BIT is not set 828 811 # CONFIG_CRC_CCITT is not set 829 812 # CONFIG_CRC16 is not set 830 813 # CONFIG_CRC_T10DIF is not set ··· 876 861 # CONFIG_DEBUG_SG is not set 877 862 # CONFIG_BOOT_PRINTK_DELAY is not set 878 863 # CONFIG_RCU_TORTURE_TEST is not set 864 + # CONFIG_RCU_CPU_STALL_DETECTOR is not set 879 865 # CONFIG_BACKTRACE_SELF_TEST is not set 866 + # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 880 867 # CONFIG_FAULT_INJECTION is not set 881 868 # CONFIG_LATENCYTOP is not set 869 + CONFIG_SYSCTL_SYSCALL_CHECK=y 870 + CONFIG_NOP_TRACER=y 882 871 CONFIG_HAVE_FTRACE=y 883 872 CONFIG_HAVE_DYNAMIC_FTRACE=y 884 873 # CONFIG_FTRACE is not set 885 874 # CONFIG_SCHED_TRACER is not set 886 875 # CONFIG_CONTEXT_SWITCH_TRACER is not set 876 + # CONFIG_BOOT_TRACER is not set 877 + # CONFIG_STACK_TRACER is not set 878 + # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 887 879 # CONFIG_SAMPLES is not set 888 880 CONFIG_HAVE_ARCH_KGDB=y 889 881 # CONFIG_KGDB is not set ··· 899 877 # CONFIG_DEBUG_PAGEALLOC is not set 900 878 # CONFIG_CODE_PATCHING_SELFTEST is not set 901 879 # CONFIG_FTR_FIXUP_SELFTEST is not set 880 + # CONFIG_MSI_BITMAP_SELFTEST is not set 902 881 # CONFIG_XMON is not set 903 882 # CONFIG_IRQSTACKS is not set 904 883 # CONFIG_VIRQ_DEBUG is not set ··· 911 888 # 912 889 # CONFIG_KEYS is not set 913 890 # CONFIG_SECURITY is not set 891 + # CONFIG_SECURITYFS is not set 914 892 # CONFIG_SECURITY_FILE_CAPABILITIES is not set 915 893 CONFIG_CRYPTO=y 916 894 917 895 # 918 896 # Crypto core or helper 919 897 # 898 + # CONFIG_CRYPTO_FIPS is not set 920 899 CONFIG_CRYPTO_ALGAPI=y 900 + CONFIG_CRYPTO_AEAD=y 921 901 CONFIG_CRYPTO_BLKCIPHER=y 902 + CONFIG_CRYPTO_HASH=y 903 + CONFIG_CRYPTO_RNG=y 922 904 CONFIG_CRYPTO_MANAGER=y 923 905 # CONFIG_CRYPTO_GF128MUL is not set 924 906 # CONFIG_CRYPTO_NULL is not set ··· 996 968 # 997 969 # CONFIG_CRYPTO_DEFLATE is not set 998 970 # CONFIG_CRYPTO_LZO is not set 971 + 972 + # 973 + # Random Number Generation 974 + # 975 + # CONFIG_CRYPTO_ANSI_CPRNG is not set 999 976 CONFIG_CRYPTO_HW=y 1000 977 # CONFIG_CRYPTO_DEV_HIFN_795X is not set 1001 978 # CONFIG_PPC_CLOCK is not set
+55 -27
arch/powerpc/configs/44x/warp_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27-rc1 4 - # Tue Aug 5 09:23:39 2008 3 + # Linux kernel version: 2.6.28-rc2 4 + # Tue Oct 28 09:16:22 2008 5 5 # 6 6 # CONFIG_PPC64 is not set 7 7 ··· 23 23 CONFIG_NOT_COHERENT_CACHE=y 24 24 CONFIG_PPC32=y 25 25 CONFIG_WORD_SIZE=32 26 - CONFIG_PPC_MERGE=y 26 + CONFIG_ARCH_PHYS_ADDR_T_64BIT=y 27 27 CONFIG_MMU=y 28 28 CONFIG_GENERIC_CMOS_UPDATE=y 29 29 CONFIG_GENERIC_TIME=y 30 30 CONFIG_GENERIC_TIME_VSYSCALL=y 31 31 CONFIG_GENERIC_CLOCKEVENTS=y 32 32 CONFIG_GENERIC_HARDIRQS=y 33 - # CONFIG_HAVE_GET_USER_PAGES_FAST is not set 34 33 # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set 35 34 CONFIG_IRQ_PER_CPU=y 36 35 CONFIG_STACKTRACE_SUPPORT=y ··· 91 92 CONFIG_SYSCTL=y 92 93 CONFIG_EMBEDDED=y 93 94 CONFIG_SYSCTL_SYSCALL=y 94 - CONFIG_SYSCTL_SYSCALL_CHECK=y 95 95 CONFIG_KALLSYMS=y 96 96 # CONFIG_KALLSYMS_ALL is not set 97 97 # CONFIG_KALLSYMS_EXTRA_PASS is not set ··· 107 109 CONFIG_TIMERFD=y 108 110 CONFIG_EVENTFD=y 109 111 CONFIG_SHMEM=y 112 + CONFIG_AIO=y 110 113 CONFIG_VM_EVENT_COUNTERS=y 111 114 CONFIG_SLAB=y 112 115 # CONFIG_SLUB is not set ··· 121 122 CONFIG_HAVE_KPROBES=y 122 123 CONFIG_HAVE_KRETPROBES=y 123 124 CONFIG_HAVE_ARCH_TRACEHOOK=y 124 - # CONFIG_HAVE_DMA_ATTRS is not set 125 - # CONFIG_USE_GENERIC_SMP_HELPERS is not set 126 - # CONFIG_HAVE_CLK is not set 127 - CONFIG_PROC_PAGE_MONITOR=y 128 125 # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set 129 126 CONFIG_SLABINFO=y 130 127 CONFIG_RT_MUTEXES=y ··· 153 158 # CONFIG_DEFAULT_NOOP is not set 154 159 CONFIG_DEFAULT_IOSCHED="anticipatory" 155 160 CONFIG_CLASSIC_RCU=y 161 + # CONFIG_FREEZER is not set 156 162 157 163 # 158 164 # Platform support ··· 169 173 # CONFIG_KATMAI is not set 170 174 # CONFIG_RAINIER is not set 171 175 CONFIG_WARP=y 176 + # CONFIG_ARCHES is not set 172 177 # CONFIG_CANYONLANDS is not set 178 + # CONFIG_GLACIER is not set 173 179 # CONFIG_YOSEMITE is not set 174 180 # CONFIG_XILINX_VIRTEX440_GENERIC_BOARD is not set 181 + # CONFIG_PPC44x_SIMPLE is not set 182 + # CONFIG_PPC4xx_GPIO is not set 175 183 CONFIG_440EP=y 176 184 CONFIG_IBM440EP_ERR42=y 177 185 # CONFIG_IPIC is not set ··· 195 195 # Kernel options 196 196 # 197 197 # CONFIG_HIGHMEM is not set 198 - # CONFIG_TICK_ONESHOT is not set 199 198 # CONFIG_NO_HZ is not set 200 199 # CONFIG_HIGH_RES_TIMERS is not set 201 200 CONFIG_GENERIC_CLOCKEVENTS_BUILD=y ··· 208 209 # CONFIG_PREEMPT_VOLUNTARY is not set 209 210 # CONFIG_PREEMPT is not set 210 211 CONFIG_BINFMT_ELF=y 212 + # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 213 + # CONFIG_HAVE_AOUT is not set 211 214 # CONFIG_BINFMT_MISC is not set 212 215 # CONFIG_MATH_EMULATION is not set 213 216 # CONFIG_IOMMU_HELPER is not set ··· 224 223 # CONFIG_SPARSEMEM_MANUAL is not set 225 224 CONFIG_FLATMEM=y 226 225 CONFIG_FLAT_NODE_MEM_MAP=y 227 - # CONFIG_SPARSEMEM_STATIC is not set 228 - # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set 229 226 CONFIG_PAGEFLAGS_EXTENDED=y 230 227 CONFIG_SPLIT_PTLOCK_CPUS=4 231 228 CONFIG_MIGRATION=y 232 229 CONFIG_RESOURCES_64BIT=y 230 + CONFIG_PHYS_ADDR_T_64BIT=y 233 231 CONFIG_ZONE_DMA_FLAG=1 234 232 CONFIG_BOUNCE=y 235 233 CONFIG_VIRT_TO_BUS=y 234 + CONFIG_UNEVICTABLE_LRU=y 236 235 CONFIG_FORCE_MAX_ZONEORDER=11 237 236 CONFIG_PROC_DEVICETREE=y 238 237 CONFIG_CMDLINE_BOOL=y ··· 309 308 CONFIG_TCP_CONG_CUBIC=y 310 309 CONFIG_DEFAULT_TCP_CONG="cubic" 311 310 # CONFIG_TCP_MD5SIG is not set 312 - # CONFIG_IP_VS is not set 313 311 # CONFIG_IPV6 is not set 314 312 # CONFIG_NETWORK_SECMARK is not set 315 313 CONFIG_NETFILTER=y ··· 322 322 # CONFIG_NETFILTER_NETLINK_LOG is not set 323 323 # CONFIG_NF_CONNTRACK is not set 324 324 # CONFIG_NETFILTER_XTABLES is not set 325 + # CONFIG_IP_VS is not set 325 326 326 327 # 327 328 # IP: Netfilter Configuration 328 329 # 330 + # CONFIG_NF_DEFRAG_IPV4 is not set 329 331 # CONFIG_IP_NF_QUEUE is not set 330 332 # CONFIG_IP_NF_IPTABLES is not set 331 333 # CONFIG_IP_NF_ARPTABLES is not set ··· 336 334 # CONFIG_TIPC is not set 337 335 # CONFIG_ATM is not set 338 336 # CONFIG_BRIDGE is not set 337 + # CONFIG_NET_DSA is not set 339 338 CONFIG_VLAN_8021Q=y 340 339 # CONFIG_VLAN_8021Q_GVRP is not set 341 340 # CONFIG_DECNET is not set ··· 358 355 # CONFIG_IRDA is not set 359 356 # CONFIG_BT is not set 360 357 # CONFIG_AF_RXRPC is not set 361 - 362 - # 363 - # Wireless 364 - # 365 - # CONFIG_CFG80211 is not set 366 - # CONFIG_WIRELESS_EXT is not set 367 - # CONFIG_MAC80211 is not set 368 - # CONFIG_IEEE80211 is not set 358 + # CONFIG_PHONET is not set 359 + # CONFIG_WIRELESS is not set 369 360 # CONFIG_RFKILL is not set 370 361 # CONFIG_NET_9P is not set 371 362 ··· 547 550 # CONFIG_IBM_NEW_EMAC_RGMII is not set 548 551 # CONFIG_IBM_NEW_EMAC_TAH is not set 549 552 # CONFIG_IBM_NEW_EMAC_EMAC4 is not set 553 + # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set 554 + # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set 555 + # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set 550 556 # CONFIG_B44 is not set 551 557 # CONFIG_NETDEV_1000 is not set 552 558 # CONFIG_NETDEV_10000 is not set ··· 629 629 CONFIG_I2C=y 630 630 CONFIG_I2C_BOARDINFO=y 631 631 # CONFIG_I2C_CHARDEV is not set 632 + CONFIG_I2C_HELPER_AUTO=y 632 633 633 634 # 634 635 # I2C Hardware Bus support ··· 679 678 # CONFIG_POWER_SUPPLY is not set 680 679 CONFIG_HWMON=y 681 680 # CONFIG_HWMON_VID is not set 681 + # CONFIG_SENSORS_AD7414 is not set 682 682 # CONFIG_SENSORS_AD7418 is not set 683 683 # CONFIG_SENSORS_ADM1021 is not set 684 684 # CONFIG_SENSORS_ADM1025 is not set ··· 744 742 # CONFIG_MFD_CORE is not set 745 743 # CONFIG_MFD_SM501 is not set 746 744 # CONFIG_HTC_PASIC3 is not set 745 + # CONFIG_MFD_TMIO is not set 746 + # CONFIG_MFD_WM8400 is not set 747 + # CONFIG_MFD_WM8350_I2C is not set 747 748 748 749 # 749 750 # Multimedia devices ··· 794 789 # CONFIG_USB_OTG is not set 795 790 # CONFIG_USB_OTG_WHITELIST is not set 796 791 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 792 + CONFIG_USB_MON=y 793 + # CONFIG_USB_WUSB is not set 794 + # CONFIG_USB_WUSB_CBAF is not set 797 795 798 796 # 799 797 # USB Host Controller Drivers ··· 813 805 CONFIG_USB_OHCI_LITTLE_ENDIAN=y 814 806 # CONFIG_USB_SL811_HCD is not set 815 807 # CONFIG_USB_R8A66597_HCD is not set 808 + # CONFIG_USB_HWA_HCD is not set 816 809 817 810 # 818 811 # USB Device Class drivers ··· 821 812 # CONFIG_USB_ACM is not set 822 813 # CONFIG_USB_PRINTER is not set 823 814 # CONFIG_USB_WDM is not set 815 + # CONFIG_USB_TMC is not set 824 816 825 817 # 826 818 # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' ··· 850 840 # 851 841 # CONFIG_USB_MDC800 is not set 852 842 # CONFIG_USB_MICROTEK is not set 853 - CONFIG_USB_MON=y 854 843 855 844 # 856 845 # USB port drivers ··· 862 853 # CONFIG_USB_EMI62 is not set 863 854 # CONFIG_USB_EMI26 is not set 864 855 # CONFIG_USB_ADUTUX is not set 865 - # CONFIG_USB_AUERSWALD is not set 856 + # CONFIG_USB_SEVSEG is not set 866 857 # CONFIG_USB_RIO500 is not set 867 858 # CONFIG_USB_LEGOTOWER is not set 868 859 # CONFIG_USB_LCD is not set ··· 878 869 # CONFIG_USB_TRANCEVIBRATOR is not set 879 870 # CONFIG_USB_IOWARRIOR is not set 880 871 # CONFIG_USB_ISIGHTFW is not set 872 + # CONFIG_USB_VST is not set 881 873 # CONFIG_USB_GADGET is not set 882 874 CONFIG_MMC=m 883 875 # CONFIG_MMC_DEBUG is not set 884 876 # CONFIG_MMC_UNSAFE_RESUME is not set 885 877 886 878 # 887 - # MMC/SD Card Drivers 879 + # MMC/SD/SDIO Card Drivers 888 880 # 889 881 CONFIG_MMC_BLOCK=m 890 882 CONFIG_MMC_BLOCK_BOUNCE=y ··· 893 883 # CONFIG_MMC_TEST is not set 894 884 895 885 # 896 - # MMC/SD Host Controller Drivers 886 + # MMC/SD/SDIO Host Controller Drivers 897 887 # 898 888 # CONFIG_MMC_SDHCI is not set 899 889 # CONFIG_MMC_WBSD is not set ··· 904 894 # CONFIG_RTC_CLASS is not set 905 895 # CONFIG_DMADEVICES is not set 906 896 # CONFIG_UIO is not set 897 + # CONFIG_STAGING is not set 907 898 908 899 # 909 900 # File systems ··· 913 902 # CONFIG_EXT2_FS_XATTR is not set 914 903 # CONFIG_EXT2_FS_XIP is not set 915 904 # CONFIG_EXT3_FS is not set 916 - # CONFIG_EXT4DEV_FS is not set 905 + # CONFIG_EXT4_FS is not set 917 906 # CONFIG_REISERFS_FS is not set 918 907 # CONFIG_JFS_FS is not set 919 908 # CONFIG_FS_POSIX_ACL is not set 909 + CONFIG_FILE_LOCKING=y 920 910 # CONFIG_XFS_FS is not set 921 911 # CONFIG_OCFS2_FS is not set 922 912 CONFIG_DNOTIFY=y ··· 950 938 CONFIG_PROC_FS=y 951 939 CONFIG_PROC_KCORE=y 952 940 CONFIG_PROC_SYSCTL=y 941 + CONFIG_PROC_PAGE_MONITOR=y 953 942 CONFIG_SYSFS=y 954 943 # CONFIG_TMPFS is not set 955 944 # CONFIG_HUGETLB_PAGE is not set ··· 997 984 CONFIG_LOCKD_V4=y 998 985 CONFIG_NFS_COMMON=y 999 986 CONFIG_SUNRPC=y 987 + # CONFIG_SUNRPC_REGISTER_V4 is not set 1000 988 # CONFIG_RPCSEC_GSS_KRB5 is not set 1001 989 # CONFIG_RPCSEC_GSS_SPKM3 is not set 1002 990 # CONFIG_SMB_FS is not set ··· 1057 1043 # Library routines 1058 1044 # 1059 1045 CONFIG_BITREVERSE=y 1060 - # CONFIG_GENERIC_FIND_FIRST_BIT is not set 1061 1046 CONFIG_CRC_CCITT=y 1062 1047 # CONFIG_CRC16 is not set 1063 1048 CONFIG_CRC_T10DIF=y ··· 1109 1096 # CONFIG_DEBUG_SG is not set 1110 1097 # CONFIG_BOOT_PRINTK_DELAY is not set 1111 1098 # CONFIG_RCU_TORTURE_TEST is not set 1099 + # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1112 1100 # CONFIG_BACKTRACE_SELF_TEST is not set 1101 + # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 1113 1102 # CONFIG_FAULT_INJECTION is not set 1114 1103 # CONFIG_LATENCYTOP is not set 1104 + CONFIG_SYSCTL_SYSCALL_CHECK=y 1105 + CONFIG_NOP_TRACER=y 1115 1106 CONFIG_HAVE_FTRACE=y 1116 1107 CONFIG_HAVE_DYNAMIC_FTRACE=y 1117 1108 # CONFIG_FTRACE is not set 1118 1109 # CONFIG_SCHED_TRACER is not set 1119 1110 # CONFIG_CONTEXT_SWITCH_TRACER is not set 1111 + # CONFIG_BOOT_TRACER is not set 1112 + # CONFIG_STACK_TRACER is not set 1113 + # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1120 1114 # CONFIG_SAMPLES is not set 1121 1115 CONFIG_HAVE_ARCH_KGDB=y 1122 1116 # CONFIG_KGDB is not set ··· 1132 1112 # CONFIG_DEBUG_PAGEALLOC is not set 1133 1113 # CONFIG_CODE_PATCHING_SELFTEST is not set 1134 1114 # CONFIG_FTR_FIXUP_SELFTEST is not set 1115 + # CONFIG_MSI_BITMAP_SELFTEST is not set 1135 1116 # CONFIG_XMON is not set 1136 1117 # CONFIG_IRQSTACKS is not set 1137 1118 # CONFIG_VIRQ_DEBUG is not set ··· 1144 1123 # 1145 1124 # CONFIG_KEYS is not set 1146 1125 # CONFIG_SECURITY is not set 1126 + # CONFIG_SECURITYFS is not set 1147 1127 # CONFIG_SECURITY_FILE_CAPABILITIES is not set 1148 1128 CONFIG_CRYPTO=y 1149 1129 1150 1130 # 1151 1131 # Crypto core or helper 1152 1132 # 1133 + # CONFIG_CRYPTO_FIPS is not set 1153 1134 # CONFIG_CRYPTO_MANAGER is not set 1154 1135 # CONFIG_CRYPTO_GF128MUL is not set 1155 1136 # CONFIG_CRYPTO_NULL is not set ··· 1224 1201 # 1225 1202 # CONFIG_CRYPTO_DEFLATE is not set 1226 1203 # CONFIG_CRYPTO_LZO is not set 1204 + 1205 + # 1206 + # Random Number Generation 1207 + # 1208 + # CONFIG_CRYPTO_ANSI_CPRNG is not set 1227 1209 CONFIG_CRYPTO_HW=y 1228 1210 # CONFIG_PPC_CLOCK is not set 1229 1211 # CONFIG_VIRTUALIZATION is not set
+5 -6
arch/powerpc/configs/linkstation_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27-rc4 4 - # Thu Aug 21 00:52:05 2008 3 + # Linux kernel version: 2.6.27 4 + # Fri Oct 24 00:42:39 2008 5 5 # 6 6 # CONFIG_PPC64 is not set 7 7 ··· 90 90 # CONFIG_PID_NS is not set 91 91 CONFIG_BLK_DEV_INITRD=y 92 92 CONFIG_INITRAMFS_SOURCE="" 93 - # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set 93 + CONFIG_CC_OPTIMIZE_FOR_SIZE=y 94 94 CONFIG_SYSCTL=y 95 95 # CONFIG_EMBEDDED is not set 96 96 CONFIG_SYSCTL_SYSCALL=y ··· 101 101 CONFIG_PRINTK=y 102 102 CONFIG_BUG=y 103 103 CONFIG_ELF_CORE=y 104 - CONFIG_COMPAT_BRK=y 104 + # CONFIG_COMPAT_BRK is not set 105 105 CONFIG_BASE_FULL=y 106 106 CONFIG_FUTEX=y 107 107 CONFIG_ANON_INODES=y ··· 934 934 CONFIG_SERIAL_CORE=y 935 935 CONFIG_SERIAL_CORE_CONSOLE=y 936 936 # CONFIG_SERIAL_JSM is not set 937 - CONFIG_SERIAL_OF_PLATFORM=y 937 + # CONFIG_SERIAL_OF_PLATFORM is not set 938 938 CONFIG_UNIX98_PTYS=y 939 939 CONFIG_LEGACY_PTYS=y 940 940 CONFIG_LEGACY_PTY_COUNT=256 ··· 1211 1211 # CONFIG_USB_STORAGE_ALAUDA is not set 1212 1212 # CONFIG_USB_STORAGE_ONETOUCH is not set 1213 1213 # CONFIG_USB_STORAGE_KARMA is not set 1214 - # CONFIG_USB_STORAGE_SIERRA is not set 1215 1214 # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set 1216 1215 # CONFIG_USB_LIBUSUAL is not set 1217 1216
+86 -20
arch/powerpc/configs/ppc40x_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27-rc1 4 - # Tue Aug 5 12:34:33 2008 3 + # Linux kernel version: 2.6.28-rc2 4 + # Tue Oct 28 08:56:44 2008 5 5 # 6 6 # CONFIG_PPC64 is not set 7 7 ··· 19 19 CONFIG_NOT_COHERENT_CACHE=y 20 20 CONFIG_PPC32=y 21 21 CONFIG_WORD_SIZE=32 22 - CONFIG_PPC_MERGE=y 22 + # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set 23 23 CONFIG_MMU=y 24 24 CONFIG_GENERIC_CMOS_UPDATE=y 25 25 CONFIG_GENERIC_TIME=y 26 26 CONFIG_GENERIC_TIME_VSYSCALL=y 27 27 CONFIG_GENERIC_CLOCKEVENTS=y 28 28 CONFIG_GENERIC_HARDIRQS=y 29 - # CONFIG_HAVE_GET_USER_PAGES_FAST is not set 30 29 # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set 31 30 CONFIG_IRQ_PER_CPU=y 32 31 CONFIG_STACKTRACE_SUPPORT=y ··· 36 37 CONFIG_GENERIC_HWEIGHT=y 37 38 CONFIG_GENERIC_CALIBRATE_DELAY=y 38 39 CONFIG_GENERIC_FIND_NEXT_BIT=y 40 + CONFIG_GENERIC_GPIO=y 39 41 # CONFIG_ARCH_NO_VIRT_TO_BUS is not set 40 42 CONFIG_PPC=y 41 43 CONFIG_EARLY_PRINTK=y ··· 88 88 CONFIG_SYSCTL=y 89 89 CONFIG_EMBEDDED=y 90 90 CONFIG_SYSCTL_SYSCALL=y 91 - CONFIG_SYSCTL_SYSCALL_CHECK=y 92 91 CONFIG_KALLSYMS=y 93 92 CONFIG_KALLSYMS_ALL=y 94 93 CONFIG_KALLSYMS_EXTRA_PASS=y ··· 104 105 CONFIG_TIMERFD=y 105 106 CONFIG_EVENTFD=y 106 107 CONFIG_SHMEM=y 108 + CONFIG_AIO=y 107 109 CONFIG_VM_EVENT_COUNTERS=y 110 + CONFIG_PCI_QUIRKS=y 108 111 CONFIG_SLUB_DEBUG=y 109 112 # CONFIG_SLAB is not set 110 113 CONFIG_SLUB=y ··· 120 119 CONFIG_HAVE_KPROBES=y 121 120 CONFIG_HAVE_KRETPROBES=y 122 121 CONFIG_HAVE_ARCH_TRACEHOOK=y 123 - # CONFIG_HAVE_DMA_ATTRS is not set 124 - # CONFIG_USE_GENERIC_SMP_HELPERS is not set 125 - # CONFIG_HAVE_CLK is not set 126 - CONFIG_PROC_PAGE_MONITOR=y 127 122 # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set 128 123 CONFIG_SLABINFO=y 129 124 CONFIG_RT_MUTEXES=y ··· 152 155 # CONFIG_DEFAULT_NOOP is not set 153 156 CONFIG_DEFAULT_IOSCHED="anticipatory" 154 157 CONFIG_CLASSIC_RCU=y 158 + # CONFIG_FREEZER is not set 155 159 CONFIG_PPC4xx_PCI_EXPRESS=y 156 160 157 161 # ··· 161 163 # CONFIG_PPC_CELL is not set 162 164 # CONFIG_PPC_CELL_NATIVE is not set 163 165 # CONFIG_PQ2ADS is not set 166 + CONFIG_PPC4xx_GPIO=y 164 167 CONFIG_XILINX_VIRTEX=y 168 + CONFIG_ACADIA=y 165 169 CONFIG_EP405=y 170 + CONFIG_HCU4=y 166 171 CONFIG_KILAUEA=y 167 172 CONFIG_MAKALU=y 168 173 CONFIG_WALNUT=y 169 174 CONFIG_XILINX_VIRTEX_GENERIC_BOARD=y 175 + CONFIG_PPC40x_SIMPLE=y 170 176 CONFIG_405GP=y 171 177 CONFIG_405EX=y 178 + CONFIG_405EZ=y 179 + CONFIG_405GPR=y 172 180 CONFIG_XILINX_VIRTEX_II_PRO=y 173 181 CONFIG_XILINX_VIRTEX_4_FX=y 174 182 CONFIG_IBM405_ERR77=y ··· 197 193 # Kernel options 198 194 # 199 195 # CONFIG_HIGHMEM is not set 200 - # CONFIG_TICK_ONESHOT is not set 201 196 # CONFIG_NO_HZ is not set 202 197 # CONFIG_HIGH_RES_TIMERS is not set 203 198 CONFIG_GENERIC_CLOCKEVENTS_BUILD=y ··· 210 207 # CONFIG_PREEMPT_VOLUNTARY is not set 211 208 # CONFIG_PREEMPT is not set 212 209 CONFIG_BINFMT_ELF=y 210 + # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 211 + # CONFIG_HAVE_AOUT is not set 213 212 # CONFIG_BINFMT_MISC is not set 214 213 # CONFIG_MATH_EMULATION is not set 215 214 # CONFIG_IOMMU_HELPER is not set ··· 226 221 # CONFIG_SPARSEMEM_MANUAL is not set 227 222 CONFIG_FLATMEM=y 228 223 CONFIG_FLAT_NODE_MEM_MAP=y 229 - # CONFIG_SPARSEMEM_STATIC is not set 230 - # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set 231 224 CONFIG_PAGEFLAGS_EXTENDED=y 232 225 CONFIG_SPLIT_PTLOCK_CPUS=4 233 226 CONFIG_MIGRATION=y 234 227 CONFIG_RESOURCES_64BIT=y 228 + # CONFIG_PHYS_ADDR_T_64BIT is not set 235 229 CONFIG_ZONE_DMA_FLAG=1 236 230 CONFIG_BOUNCE=y 237 231 CONFIG_VIRT_TO_BUS=y 232 + CONFIG_UNEVICTABLE_LRU=y 238 233 CONFIG_FORCE_MAX_ZONEORDER=11 239 234 CONFIG_PROC_DEVICETREE=y 240 235 # CONFIG_CMDLINE_BOOL is not set ··· 344 339 # CONFIG_TIPC is not set 345 340 # CONFIG_ATM is not set 346 341 # CONFIG_BRIDGE is not set 342 + # CONFIG_NET_DSA is not set 347 343 # CONFIG_VLAN_8021Q is not set 348 344 # CONFIG_DECNET is not set 349 345 # CONFIG_LLC2 is not set ··· 365 359 # CONFIG_IRDA is not set 366 360 # CONFIG_BT is not set 367 361 # CONFIG_AF_RXRPC is not set 368 - 369 - # 370 - # Wireless 371 - # 362 + # CONFIG_PHONET is not set 363 + CONFIG_WIRELESS=y 372 364 # CONFIG_CFG80211 is not set 365 + CONFIG_WIRELESS_OLD_REGULATORY=y 373 366 # CONFIG_WIRELESS_EXT is not set 374 367 # CONFIG_MAC80211 is not set 375 368 # CONFIG_IEEE80211 is not set ··· 481 476 # 482 477 # CONFIG_MTD_UBI_DEBUG is not set 483 478 CONFIG_OF_DEVICE=y 479 + CONFIG_OF_GPIO=y 484 480 CONFIG_OF_I2C=m 485 481 # CONFIG_PARPORT is not set 486 482 CONFIG_BLK_DEV=y ··· 562 556 CONFIG_IBM_NEW_EMAC_RGMII=y 563 557 # CONFIG_IBM_NEW_EMAC_TAH is not set 564 558 CONFIG_IBM_NEW_EMAC_EMAC4=y 559 + CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL=y 560 + CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT=y 561 + CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR=y 565 562 # CONFIG_NET_PCI is not set 566 563 # CONFIG_B44 is not set 564 + # CONFIG_ATL2 is not set 567 565 CONFIG_NETDEV_1000=y 568 566 # CONFIG_ACENIC is not set 569 567 # CONFIG_DL2K is not set ··· 588 578 # CONFIG_QLA3XXX is not set 589 579 # CONFIG_ATL1 is not set 590 580 # CONFIG_ATL1E is not set 581 + # CONFIG_JME is not set 591 582 CONFIG_NETDEV_10000=y 592 583 # CONFIG_CHELSIO_T1 is not set 593 584 # CONFIG_CHELSIO_T3 is not set 585 + # CONFIG_ENIC is not set 594 586 # CONFIG_IXGBE is not set 595 587 # CONFIG_IXGB is not set 596 588 # CONFIG_S2IO is not set 597 589 # CONFIG_MYRI10GE is not set 598 590 # CONFIG_NETXEN_NIC is not set 599 591 # CONFIG_NIU is not set 592 + # CONFIG_MLX4_EN is not set 600 593 # CONFIG_MLX4_CORE is not set 601 594 # CONFIG_TEHUTI is not set 602 595 # CONFIG_BNX2X is not set 596 + # CONFIG_QLGE is not set 603 597 # CONFIG_SFC is not set 604 598 # CONFIG_TR is not set 605 599 ··· 681 667 CONFIG_I2C=m 682 668 CONFIG_I2C_BOARDINFO=y 683 669 CONFIG_I2C_CHARDEV=m 670 + CONFIG_I2C_HELPER_AUTO=y 671 + CONFIG_I2C_ALGOBIT=m 684 672 685 673 # 686 674 # I2C Hardware Bus support ··· 709 693 # 710 694 # I2C system bus drivers (mostly embedded / system-on-chip) 711 695 # 696 + CONFIG_I2C_GPIO=m 712 697 CONFIG_I2C_IBM_IIC=m 713 698 # CONFIG_I2C_MPC is not set 714 699 # CONFIG_I2C_OCORES is not set ··· 742 725 # CONFIG_PCF8575 is not set 743 726 # CONFIG_SENSORS_PCA9539 is not set 744 727 # CONFIG_SENSORS_PCF8591 is not set 728 + # CONFIG_TPS65010 is not set 745 729 # CONFIG_SENSORS_MAX6875 is not set 746 730 # CONFIG_SENSORS_TSL2550 is not set 747 731 # CONFIG_I2C_DEBUG_CORE is not set ··· 751 733 # CONFIG_I2C_DEBUG_CHIP is not set 752 734 # CONFIG_SPI is not set 753 735 CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y 754 - # CONFIG_GPIOLIB is not set 736 + CONFIG_ARCH_REQUIRE_GPIOLIB=y 737 + CONFIG_GPIOLIB=y 738 + # CONFIG_DEBUG_GPIO is not set 739 + # CONFIG_GPIO_SYSFS is not set 740 + 741 + # 742 + # I2C GPIO expanders: 743 + # 744 + # CONFIG_GPIO_MAX732X is not set 745 + # CONFIG_GPIO_PCA953X is not set 746 + # CONFIG_GPIO_PCF857X is not set 747 + 748 + # 749 + # PCI GPIO expanders: 750 + # 751 + # CONFIG_GPIO_BT8XX is not set 752 + 753 + # 754 + # SPI GPIO expanders: 755 + # 755 756 # CONFIG_W1 is not set 756 757 # CONFIG_POWER_SUPPLY is not set 757 758 # CONFIG_HWMON is not set ··· 789 752 # CONFIG_MFD_CORE is not set 790 753 # CONFIG_MFD_SM501 is not set 791 754 # CONFIG_HTC_PASIC3 is not set 755 + # CONFIG_MFD_TMIO is not set 756 + # CONFIG_MFD_WM8400 is not set 757 + # CONFIG_MFD_WM8350_I2C is not set 792 758 793 759 # 794 760 # Multimedia devices ··· 833 793 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 834 794 835 795 # 796 + # Enable Host or Gadget support to see Inventra options 797 + # 798 + 799 + # 836 800 # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 837 801 # 838 802 # CONFIG_USB_GADGET is not set 803 + # CONFIG_UWB is not set 839 804 # CONFIG_MMC is not set 840 805 # CONFIG_MEMSTICK is not set 841 806 # CONFIG_NEW_LEDS is not set ··· 850 805 # CONFIG_RTC_CLASS is not set 851 806 # CONFIG_DMADEVICES is not set 852 807 # CONFIG_UIO is not set 808 + # CONFIG_STAGING is not set 853 809 854 810 # 855 811 # File systems ··· 862 816 CONFIG_EXT3_FS_XATTR=y 863 817 # CONFIG_EXT3_FS_POSIX_ACL is not set 864 818 # CONFIG_EXT3_FS_SECURITY is not set 865 - # CONFIG_EXT4DEV_FS is not set 819 + # CONFIG_EXT4_FS is not set 866 820 CONFIG_JBD=m 867 821 # CONFIG_JBD_DEBUG is not set 868 - CONFIG_FS_MBCACHE=y 822 + CONFIG_FS_MBCACHE=m 869 823 # CONFIG_REISERFS_FS is not set 870 824 # CONFIG_JFS_FS is not set 871 825 # CONFIG_FS_POSIX_ACL is not set 826 + CONFIG_FILE_LOCKING=y 872 827 # CONFIG_XFS_FS is not set 873 828 # CONFIG_OCFS2_FS is not set 874 829 CONFIG_DNOTIFY=y ··· 902 855 CONFIG_PROC_FS=y 903 856 CONFIG_PROC_KCORE=y 904 857 CONFIG_PROC_SYSCTL=y 858 + CONFIG_PROC_PAGE_MONITOR=y 905 859 CONFIG_SYSFS=y 906 860 CONFIG_TMPFS=y 907 861 # CONFIG_TMPFS_POSIX_ACL is not set ··· 956 908 CONFIG_LOCKD_V4=y 957 909 CONFIG_NFS_COMMON=y 958 910 CONFIG_SUNRPC=y 911 + # CONFIG_SUNRPC_REGISTER_V4 is not set 959 912 # CONFIG_RPCSEC_GSS_KRB5 is not set 960 913 # CONFIG_RPCSEC_GSS_SPKM3 is not set 961 914 # CONFIG_SMB_FS is not set ··· 1016 967 # Library routines 1017 968 # 1018 969 CONFIG_BITREVERSE=y 1019 - # CONFIG_GENERIC_FIND_FIRST_BIT is not set 1020 970 # CONFIG_CRC_CCITT is not set 1021 971 CONFIG_CRC16=m 1022 972 # CONFIG_CRC_T10DIF is not set ··· 1071 1023 # CONFIG_DEBUG_SG is not set 1072 1024 # CONFIG_BOOT_PRINTK_DELAY is not set 1073 1025 # CONFIG_RCU_TORTURE_TEST is not set 1026 + # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1074 1027 # CONFIG_BACKTRACE_SELF_TEST is not set 1028 + # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 1075 1029 # CONFIG_FAULT_INJECTION is not set 1076 1030 # CONFIG_LATENCYTOP is not set 1031 + CONFIG_SYSCTL_SYSCALL_CHECK=y 1032 + CONFIG_NOP_TRACER=y 1077 1033 CONFIG_HAVE_FTRACE=y 1078 1034 CONFIG_HAVE_DYNAMIC_FTRACE=y 1079 1035 # CONFIG_FTRACE is not set 1080 1036 # CONFIG_SCHED_TRACER is not set 1081 1037 # CONFIG_CONTEXT_SWITCH_TRACER is not set 1038 + # CONFIG_BOOT_TRACER is not set 1039 + # CONFIG_STACK_TRACER is not set 1040 + # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1082 1041 # CONFIG_SAMPLES is not set 1083 1042 CONFIG_HAVE_ARCH_KGDB=y 1084 1043 # CONFIG_KGDB is not set ··· 1094 1039 # CONFIG_DEBUG_PAGEALLOC is not set 1095 1040 # CONFIG_CODE_PATCHING_SELFTEST is not set 1096 1041 # CONFIG_FTR_FIXUP_SELFTEST is not set 1042 + # CONFIG_MSI_BITMAP_SELFTEST is not set 1097 1043 # CONFIG_XMON is not set 1098 1044 # CONFIG_IRQSTACKS is not set 1099 1045 # CONFIG_VIRQ_DEBUG is not set ··· 1106 1050 # 1107 1051 # CONFIG_KEYS is not set 1108 1052 # CONFIG_SECURITY is not set 1053 + # CONFIG_SECURITYFS is not set 1109 1054 # CONFIG_SECURITY_FILE_CAPABILITIES is not set 1110 1055 CONFIG_CRYPTO=y 1111 1056 1112 1057 # 1113 1058 # Crypto core or helper 1114 1059 # 1060 + # CONFIG_CRYPTO_FIPS is not set 1115 1061 CONFIG_CRYPTO_ALGAPI=y 1062 + CONFIG_CRYPTO_AEAD=y 1116 1063 CONFIG_CRYPTO_BLKCIPHER=y 1064 + CONFIG_CRYPTO_HASH=y 1065 + CONFIG_CRYPTO_RNG=y 1117 1066 CONFIG_CRYPTO_MANAGER=y 1118 1067 # CONFIG_CRYPTO_GF128MUL is not set 1119 1068 # CONFIG_CRYPTO_NULL is not set ··· 1191 1130 # 1192 1131 CONFIG_CRYPTO_DEFLATE=m 1193 1132 CONFIG_CRYPTO_LZO=m 1133 + 1134 + # 1135 + # Random Number Generation 1136 + # 1137 + # CONFIG_CRYPTO_ANSI_CPRNG is not set 1194 1138 CONFIG_CRYPTO_HW=y 1195 1139 # CONFIG_CRYPTO_DEV_HIFN_795X is not set 1196 1140 # CONFIG_PPC_CLOCK is not set
+97 -28
arch/powerpc/configs/ppc44x_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27-rc1 4 - # Tue Aug 5 10:01:31 2008 3 + # Linux kernel version: 2.6.28-rc2 4 + # Tue Oct 28 09:28:58 2008 5 5 # 6 6 # CONFIG_PPC64 is not set 7 7 ··· 23 23 CONFIG_NOT_COHERENT_CACHE=y 24 24 CONFIG_PPC32=y 25 25 CONFIG_WORD_SIZE=32 26 - CONFIG_PPC_MERGE=y 26 + CONFIG_ARCH_PHYS_ADDR_T_64BIT=y 27 27 CONFIG_MMU=y 28 28 CONFIG_GENERIC_CMOS_UPDATE=y 29 29 CONFIG_GENERIC_TIME=y 30 30 CONFIG_GENERIC_TIME_VSYSCALL=y 31 31 CONFIG_GENERIC_CLOCKEVENTS=y 32 32 CONFIG_GENERIC_HARDIRQS=y 33 - # CONFIG_HAVE_GET_USER_PAGES_FAST is not set 34 33 # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set 35 34 CONFIG_IRQ_PER_CPU=y 36 35 CONFIG_STACKTRACE_SUPPORT=y ··· 40 41 CONFIG_GENERIC_HWEIGHT=y 41 42 CONFIG_GENERIC_CALIBRATE_DELAY=y 42 43 CONFIG_GENERIC_FIND_NEXT_BIT=y 44 + CONFIG_GENERIC_GPIO=y 43 45 # CONFIG_ARCH_NO_VIRT_TO_BUS is not set 44 46 CONFIG_PPC=y 45 47 CONFIG_EARLY_PRINTK=y ··· 92 92 CONFIG_SYSCTL=y 93 93 CONFIG_EMBEDDED=y 94 94 CONFIG_SYSCTL_SYSCALL=y 95 - CONFIG_SYSCTL_SYSCALL_CHECK=y 96 95 CONFIG_KALLSYMS=y 97 96 CONFIG_KALLSYMS_ALL=y 98 97 CONFIG_KALLSYMS_EXTRA_PASS=y ··· 108 109 CONFIG_TIMERFD=y 109 110 CONFIG_EVENTFD=y 110 111 CONFIG_SHMEM=y 112 + CONFIG_AIO=y 111 113 CONFIG_VM_EVENT_COUNTERS=y 114 + CONFIG_PCI_QUIRKS=y 112 115 CONFIG_SLUB_DEBUG=y 113 116 # CONFIG_SLAB is not set 114 117 CONFIG_SLUB=y ··· 124 123 CONFIG_HAVE_KPROBES=y 125 124 CONFIG_HAVE_KRETPROBES=y 126 125 CONFIG_HAVE_ARCH_TRACEHOOK=y 127 - # CONFIG_HAVE_DMA_ATTRS is not set 128 - # CONFIG_USE_GENERIC_SMP_HELPERS is not set 129 - # CONFIG_HAVE_CLK is not set 130 - CONFIG_PROC_PAGE_MONITOR=y 131 126 # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set 132 127 CONFIG_SLABINFO=y 133 128 CONFIG_RT_MUTEXES=y ··· 155 158 # CONFIG_DEFAULT_CFQ is not set 156 159 # CONFIG_DEFAULT_NOOP is not set 157 160 CONFIG_DEFAULT_IOSCHED="anticipatory" 161 + CONFIG_PREEMPT_NOTIFIERS=y 158 162 CONFIG_CLASSIC_RCU=y 163 + # CONFIG_FREEZER is not set 159 164 CONFIG_PPC4xx_PCI_EXPRESS=y 160 165 161 166 # ··· 174 175 CONFIG_KATMAI=y 175 176 CONFIG_RAINIER=y 176 177 CONFIG_WARP=y 178 + CONFIG_ARCHES=y 177 179 CONFIG_CANYONLANDS=y 180 + CONFIG_GLACIER=y 178 181 CONFIG_YOSEMITE=y 179 182 CONFIG_XILINX_VIRTEX440_GENERIC_BOARD=y 183 + CONFIG_PPC44x_SIMPLE=y 184 + CONFIG_PPC4xx_GPIO=y 180 185 CONFIG_440EP=y 181 186 CONFIG_440EPX=y 182 187 CONFIG_440GRX=y ··· 209 206 # Kernel options 210 207 # 211 208 # CONFIG_HIGHMEM is not set 212 - # CONFIG_TICK_ONESHOT is not set 213 209 # CONFIG_NO_HZ is not set 214 210 # CONFIG_HIGH_RES_TIMERS is not set 215 211 CONFIG_GENERIC_CLOCKEVENTS_BUILD=y ··· 222 220 # CONFIG_PREEMPT_VOLUNTARY is not set 223 221 # CONFIG_PREEMPT is not set 224 222 CONFIG_BINFMT_ELF=y 223 + # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 224 + # CONFIG_HAVE_AOUT is not set 225 225 # CONFIG_BINFMT_MISC is not set 226 226 CONFIG_MATH_EMULATION=y 227 227 # CONFIG_IOMMU_HELPER is not set ··· 238 234 # CONFIG_SPARSEMEM_MANUAL is not set 239 235 CONFIG_FLATMEM=y 240 236 CONFIG_FLAT_NODE_MEM_MAP=y 241 - # CONFIG_SPARSEMEM_STATIC is not set 242 - # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set 243 237 CONFIG_PAGEFLAGS_EXTENDED=y 244 238 CONFIG_SPLIT_PTLOCK_CPUS=4 245 239 CONFIG_MIGRATION=y 246 240 CONFIG_RESOURCES_64BIT=y 241 + CONFIG_PHYS_ADDR_T_64BIT=y 247 242 CONFIG_ZONE_DMA_FLAG=1 248 243 CONFIG_BOUNCE=y 249 244 CONFIG_VIRT_TO_BUS=y 245 + CONFIG_UNEVICTABLE_LRU=y 250 246 CONFIG_FORCE_MAX_ZONEORDER=11 251 247 CONFIG_PROC_DEVICETREE=y 252 248 # CONFIG_CMDLINE_BOOL is not set ··· 355 351 # CONFIG_TIPC is not set 356 352 # CONFIG_ATM is not set 357 353 # CONFIG_BRIDGE is not set 354 + # CONFIG_NET_DSA is not set 358 355 # CONFIG_VLAN_8021Q is not set 359 356 # CONFIG_DECNET is not set 360 357 # CONFIG_LLC2 is not set ··· 376 371 # CONFIG_IRDA is not set 377 372 # CONFIG_BT is not set 378 373 # CONFIG_AF_RXRPC is not set 379 - 380 - # 381 - # Wireless 382 - # 383 - # CONFIG_CFG80211 is not set 384 - # CONFIG_WIRELESS_EXT is not set 385 - # CONFIG_MAC80211 is not set 386 - # CONFIG_IEEE80211 is not set 374 + # CONFIG_PHONET is not set 375 + # CONFIG_WIRELESS is not set 387 376 # CONFIG_RFKILL is not set 388 377 # CONFIG_NET_9P is not set 389 378 ··· 486 487 # 487 488 # CONFIG_MTD_UBI_DEBUG is not set 488 489 CONFIG_OF_DEVICE=y 490 + CONFIG_OF_GPIO=y 489 491 CONFIG_OF_I2C=m 490 492 # CONFIG_PARPORT is not set 491 493 CONFIG_BLK_DEV=y ··· 600 600 CONFIG_IBM_NEW_EMAC_RGMII=y 601 601 CONFIG_IBM_NEW_EMAC_TAH=y 602 602 CONFIG_IBM_NEW_EMAC_EMAC4=y 603 + # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set 604 + # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set 605 + # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set 603 606 # CONFIG_NET_PCI is not set 604 607 # CONFIG_B44 is not set 608 + # CONFIG_ATL2 is not set 605 609 CONFIG_NETDEV_1000=y 606 610 # CONFIG_ACENIC is not set 607 611 # CONFIG_DL2K is not set ··· 626 622 # CONFIG_QLA3XXX is not set 627 623 # CONFIG_ATL1 is not set 628 624 # CONFIG_ATL1E is not set 625 + # CONFIG_JME is not set 629 626 CONFIG_NETDEV_10000=y 630 627 # CONFIG_CHELSIO_T1 is not set 631 628 # CONFIG_CHELSIO_T3 is not set 629 + # CONFIG_ENIC is not set 632 630 # CONFIG_IXGBE is not set 633 631 # CONFIG_IXGB is not set 634 632 # CONFIG_S2IO is not set 635 633 # CONFIG_MYRI10GE is not set 636 634 # CONFIG_NETXEN_NIC is not set 637 635 # CONFIG_NIU is not set 636 + # CONFIG_MLX4_EN is not set 638 637 # CONFIG_MLX4_CORE is not set 639 638 # CONFIG_TEHUTI is not set 640 639 # CONFIG_BNX2X is not set 640 + # CONFIG_QLGE is not set 641 641 # CONFIG_SFC is not set 642 642 # CONFIG_TR is not set 643 643 ··· 729 721 CONFIG_I2C=m 730 722 CONFIG_I2C_BOARDINFO=y 731 723 CONFIG_I2C_CHARDEV=m 724 + CONFIG_I2C_HELPER_AUTO=y 725 + CONFIG_I2C_ALGOBIT=m 732 726 733 727 # 734 728 # I2C Hardware Bus support ··· 757 747 # 758 748 # I2C system bus drivers (mostly embedded / system-on-chip) 759 749 # 750 + CONFIG_I2C_GPIO=m 760 751 CONFIG_I2C_IBM_IIC=m 761 752 # CONFIG_I2C_MPC is not set 762 753 # CONFIG_I2C_OCORES is not set ··· 791 780 # CONFIG_PCF8575 is not set 792 781 # CONFIG_SENSORS_PCA9539 is not set 793 782 # CONFIG_SENSORS_PCF8591 is not set 783 + # CONFIG_TPS65010 is not set 794 784 # CONFIG_SENSORS_MAX6875 is not set 795 785 # CONFIG_SENSORS_TSL2550 is not set 796 786 # CONFIG_I2C_DEBUG_CORE is not set ··· 800 788 # CONFIG_I2C_DEBUG_CHIP is not set 801 789 # CONFIG_SPI is not set 802 790 CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y 803 - # CONFIG_GPIOLIB is not set 791 + CONFIG_ARCH_REQUIRE_GPIOLIB=y 792 + CONFIG_GPIOLIB=y 793 + # CONFIG_DEBUG_GPIO is not set 794 + # CONFIG_GPIO_SYSFS is not set 795 + 796 + # 797 + # I2C GPIO expanders: 798 + # 799 + # CONFIG_GPIO_MAX732X is not set 800 + # CONFIG_GPIO_PCA953X is not set 801 + # CONFIG_GPIO_PCF857X is not set 802 + 803 + # 804 + # PCI GPIO expanders: 805 + # 806 + # CONFIG_GPIO_BT8XX is not set 807 + 808 + # 809 + # SPI GPIO expanders: 810 + # 804 811 # CONFIG_W1 is not set 805 812 # CONFIG_POWER_SUPPLY is not set 806 813 # CONFIG_HWMON is not set ··· 839 808 # CONFIG_MFD_CORE is not set 840 809 # CONFIG_MFD_SM501 is not set 841 810 # CONFIG_HTC_PASIC3 is not set 811 + # CONFIG_MFD_TMIO is not set 812 + # CONFIG_MFD_WM8400 is not set 813 + # CONFIG_MFD_WM8350_I2C is not set 842 814 843 815 # 844 816 # Multimedia devices ··· 891 857 # CONFIG_USB_OTG is not set 892 858 # CONFIG_USB_OTG_WHITELIST is not set 893 859 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 860 + # CONFIG_USB_MON is not set 861 + # CONFIG_USB_WUSB is not set 862 + # CONFIG_USB_WUSB_CBAF is not set 894 863 895 864 # 896 865 # USB Host Controller Drivers ··· 918 881 # CONFIG_USB_UHCI_HCD is not set 919 882 # CONFIG_USB_SL811_HCD is not set 920 883 # CONFIG_USB_R8A66597_HCD is not set 884 + # CONFIG_USB_WHCI_HCD is not set 885 + # CONFIG_USB_HWA_HCD is not set 886 + 887 + # 888 + # Enable Host or Gadget support to see Inventra options 889 + # 921 890 922 891 # 923 892 # USB Device Class drivers ··· 931 888 # CONFIG_USB_ACM is not set 932 889 # CONFIG_USB_PRINTER is not set 933 890 # CONFIG_USB_WDM is not set 891 + # CONFIG_USB_TMC is not set 934 892 935 893 # 936 894 # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' ··· 960 916 # 961 917 # CONFIG_USB_MDC800 is not set 962 918 # CONFIG_USB_MICROTEK is not set 963 - # CONFIG_USB_MON is not set 964 919 965 920 # 966 921 # USB port drivers ··· 972 929 # CONFIG_USB_EMI62 is not set 973 930 # CONFIG_USB_EMI26 is not set 974 931 # CONFIG_USB_ADUTUX is not set 975 - # CONFIG_USB_AUERSWALD is not set 932 + # CONFIG_USB_SEVSEG is not set 976 933 # CONFIG_USB_RIO500 is not set 977 934 # CONFIG_USB_LEGOTOWER is not set 978 935 # CONFIG_USB_LCD is not set ··· 989 946 # CONFIG_USB_TRANCEVIBRATOR is not set 990 947 # CONFIG_USB_IOWARRIOR is not set 991 948 # CONFIG_USB_ISIGHTFW is not set 949 + # CONFIG_USB_VST is not set 992 950 # CONFIG_USB_GADGET is not set 951 + # CONFIG_UWB is not set 993 952 # CONFIG_MMC is not set 994 953 # CONFIG_MEMSTICK is not set 995 954 # CONFIG_NEW_LEDS is not set ··· 1001 956 # CONFIG_RTC_CLASS is not set 1002 957 # CONFIG_DMADEVICES is not set 1003 958 # CONFIG_UIO is not set 959 + # CONFIG_STAGING is not set 1004 960 1005 961 # 1006 962 # File systems ··· 1013 967 CONFIG_EXT3_FS_XATTR=y 1014 968 # CONFIG_EXT3_FS_POSIX_ACL is not set 1015 969 # CONFIG_EXT3_FS_SECURITY is not set 1016 - # CONFIG_EXT4DEV_FS is not set 970 + # CONFIG_EXT4_FS is not set 1017 971 CONFIG_JBD=m 1018 - CONFIG_FS_MBCACHE=y 972 + CONFIG_FS_MBCACHE=m 1019 973 # CONFIG_REISERFS_FS is not set 1020 974 # CONFIG_JFS_FS is not set 1021 975 # CONFIG_FS_POSIX_ACL is not set 976 + CONFIG_FILE_LOCKING=y 1022 977 # CONFIG_XFS_FS is not set 1023 978 # CONFIG_OCFS2_FS is not set 1024 979 CONFIG_DNOTIFY=y ··· 1052 1005 CONFIG_PROC_FS=y 1053 1006 CONFIG_PROC_KCORE=y 1054 1007 CONFIG_PROC_SYSCTL=y 1008 + CONFIG_PROC_PAGE_MONITOR=y 1055 1009 CONFIG_SYSFS=y 1056 1010 CONFIG_TMPFS=y 1057 1011 # CONFIG_TMPFS_POSIX_ACL is not set ··· 1106 1058 CONFIG_LOCKD_V4=y 1107 1059 CONFIG_NFS_COMMON=y 1108 1060 CONFIG_SUNRPC=y 1061 + # CONFIG_SUNRPC_REGISTER_V4 is not set 1109 1062 # CONFIG_RPCSEC_GSS_KRB5 is not set 1110 1063 # CONFIG_RPCSEC_GSS_SPKM3 is not set 1111 1064 # CONFIG_SMB_FS is not set ··· 1166 1117 # Library routines 1167 1118 # 1168 1119 CONFIG_BITREVERSE=y 1169 - # CONFIG_GENERIC_FIND_FIRST_BIT is not set 1170 1120 # CONFIG_CRC_CCITT is not set 1171 1121 CONFIG_CRC16=m 1172 1122 CONFIG_CRC_T10DIF=m ··· 1221 1173 # CONFIG_DEBUG_SG is not set 1222 1174 # CONFIG_BOOT_PRINTK_DELAY is not set 1223 1175 # CONFIG_RCU_TORTURE_TEST is not set 1176 + # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1224 1177 # CONFIG_BACKTRACE_SELF_TEST is not set 1178 + # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 1225 1179 # CONFIG_FAULT_INJECTION is not set 1226 1180 # CONFIG_LATENCYTOP is not set 1181 + CONFIG_SYSCTL_SYSCALL_CHECK=y 1182 + CONFIG_NOP_TRACER=y 1227 1183 CONFIG_HAVE_FTRACE=y 1228 1184 CONFIG_HAVE_DYNAMIC_FTRACE=y 1229 1185 # CONFIG_FTRACE is not set 1230 1186 # CONFIG_SCHED_TRACER is not set 1231 1187 # CONFIG_CONTEXT_SWITCH_TRACER is not set 1188 + # CONFIG_BOOT_TRACER is not set 1189 + # CONFIG_STACK_TRACER is not set 1190 + # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1232 1191 # CONFIG_SAMPLES is not set 1233 1192 CONFIG_HAVE_ARCH_KGDB=y 1234 1193 # CONFIG_KGDB is not set ··· 1244 1189 # CONFIG_DEBUG_PAGEALLOC is not set 1245 1190 # CONFIG_CODE_PATCHING_SELFTEST is not set 1246 1191 # CONFIG_FTR_FIXUP_SELFTEST is not set 1192 + # CONFIG_MSI_BITMAP_SELFTEST is not set 1247 1193 # CONFIG_XMON is not set 1248 1194 # CONFIG_IRQSTACKS is not set 1249 1195 # CONFIG_BDI_SWITCH is not set 1250 - # CONFIG_PPC_EARLY_DEBUG is not set 1251 1196 1252 1197 # 1253 1198 # Security options 1254 1199 # 1255 1200 # CONFIG_KEYS is not set 1256 1201 # CONFIG_SECURITY is not set 1202 + # CONFIG_SECURITYFS is not set 1257 1203 # CONFIG_SECURITY_FILE_CAPABILITIES is not set 1258 1204 CONFIG_CRYPTO=y 1259 1205 1260 1206 # 1261 1207 # Crypto core or helper 1262 1208 # 1209 + # CONFIG_CRYPTO_FIPS is not set 1263 1210 CONFIG_CRYPTO_ALGAPI=y 1211 + CONFIG_CRYPTO_AEAD=y 1264 1212 CONFIG_CRYPTO_BLKCIPHER=y 1213 + CONFIG_CRYPTO_HASH=y 1214 + CONFIG_CRYPTO_RNG=y 1265 1215 CONFIG_CRYPTO_MANAGER=y 1266 1216 # CONFIG_CRYPTO_GF128MUL is not set 1267 1217 # CONFIG_CRYPTO_NULL is not set ··· 1339 1279 # 1340 1280 CONFIG_CRYPTO_DEFLATE=m 1341 1281 CONFIG_CRYPTO_LZO=m 1282 + 1283 + # 1284 + # Random Number Generation 1285 + # 1286 + # CONFIG_CRYPTO_ANSI_CPRNG is not set 1342 1287 # CONFIG_CRYPTO_HW is not set 1343 1288 # CONFIG_PPC_CLOCK is not set 1344 - # CONFIG_VIRTUALIZATION is not set 1289 + CONFIG_VIRTUALIZATION=y 1290 + CONFIG_KVM=y 1291 + CONFIG_KVM_BOOKE_HOST=y 1292 + # CONFIG_VIRTIO_PCI is not set 1293 + # CONFIG_VIRTIO_BALLOON is not set
+8 -7
arch/powerpc/include/asm/iommu.h
··· 92 92 unsigned long mask, gfp_t flag, int node); 93 93 extern void iommu_free_coherent(struct iommu_table *tbl, size_t size, 94 94 void *vaddr, dma_addr_t dma_handle); 95 - extern dma_addr_t iommu_map_single(struct device *dev, struct iommu_table *tbl, 96 - void *vaddr, size_t size, unsigned long mask, 97 - enum dma_data_direction direction, 98 - struct dma_attrs *attrs); 99 - extern void iommu_unmap_single(struct iommu_table *tbl, dma_addr_t dma_handle, 100 - size_t size, enum dma_data_direction direction, 101 - struct dma_attrs *attrs); 95 + extern dma_addr_t iommu_map_page(struct device *dev, struct iommu_table *tbl, 96 + struct page *page, unsigned long offset, 97 + size_t size, unsigned long mask, 98 + enum dma_data_direction direction, 99 + struct dma_attrs *attrs); 100 + extern void iommu_unmap_page(struct iommu_table *tbl, dma_addr_t dma_handle, 101 + size_t size, enum dma_data_direction direction, 102 + struct dma_attrs *attrs); 102 103 103 104 extern void iommu_init_early_pSeries(void); 104 105 extern void iommu_init_early_iSeries(void);
-8
arch/powerpc/include/asm/kdump.h
··· 9 9 * Reserve to the end of the FWNMI area, see head_64.S */ 10 10 #define KDUMP_RESERVE_LIMIT 0x10000 /* 64K */ 11 11 12 - /* 13 - * Used to differentiate between relocatable kdump kernel and other 14 - * kernels 15 - */ 16 - #define KDUMP_SIGNATURE 0xfeed1234 17 - 18 12 #ifdef CONFIG_CRASH_DUMP 19 13 20 14 #define KDUMP_TRAMPOLINE_START 0x0100 ··· 19 25 #endif /* CONFIG_CRASH_DUMP */ 20 26 21 27 #ifndef __ASSEMBLY__ 22 - 23 - extern unsigned long __kdump_flag; 24 28 25 29 #if defined(CONFIG_CRASH_DUMP) && !defined(CONFIG_RELOCATABLE) 26 30 extern void reserve_kdump_trampoline(void);
+2
arch/powerpc/include/asm/mpic.h
··· 355 355 #define MPIC_NO_BIAS 0x00000400 356 356 /* Ignore NIRQS as reported by FRR */ 357 357 #define MPIC_BROKEN_FRR_NIRQS 0x00000800 358 + /* Destination only supports a single CPU at a time */ 359 + #define MPIC_SINGLE_DEST_CPU 0x00001000 358 360 359 361 /* MPIC HW modification ID */ 360 362 #define MPIC_REGSET_MASK 0xf0000000
+2
arch/powerpc/include/asm/pci.h
··· 208 208 209 209 extern void pcibios_claim_one_bus(struct pci_bus *b); 210 210 211 + extern void pcibios_allocate_bus_resources(struct pci_bus *bus); 212 + 211 213 extern void pcibios_resource_survey(void); 212 214 213 215 extern struct pci_controller *init_phb_dynamic(struct device_node *dn);
+16 -18
arch/powerpc/kernel/dma-iommu.c
··· 30 30 } 31 31 32 32 /* Creates TCEs for a user provided buffer. The user buffer must be 33 - * contiguous real kernel storage (not vmalloc). The address of the buffer 34 - * passed here is the kernel (virtual) address of the buffer. The buffer 35 - * need not be page aligned, the dma_addr_t returned will point to the same 36 - * byte within the page as vaddr. 33 + * contiguous real kernel storage (not vmalloc). The address passed here 34 + * comprises a page address and offset into that page. The dma_addr_t 35 + * returned will point to the same byte within the page as was passed in. 37 36 */ 38 - static dma_addr_t dma_iommu_map_single(struct device *dev, void *vaddr, 39 - size_t size, 40 - enum dma_data_direction direction, 41 - struct dma_attrs *attrs) 37 + static dma_addr_t dma_iommu_map_page(struct device *dev, struct page *page, 38 + unsigned long offset, size_t size, 39 + enum dma_data_direction direction, 40 + struct dma_attrs *attrs) 42 41 { 43 - return iommu_map_single(dev, dev->archdata.dma_data, vaddr, size, 44 - device_to_mask(dev), direction, attrs); 42 + return iommu_map_page(dev, dev->archdata.dma_data, page, offset, size, 43 + device_to_mask(dev), direction, attrs); 45 44 } 46 45 47 46 48 - static void dma_iommu_unmap_single(struct device *dev, dma_addr_t dma_handle, 49 - size_t size, 50 - enum dma_data_direction direction, 51 - struct dma_attrs *attrs) 47 + static void dma_iommu_unmap_page(struct device *dev, dma_addr_t dma_handle, 48 + size_t size, enum dma_data_direction direction, 49 + struct dma_attrs *attrs) 52 50 { 53 - iommu_unmap_single(dev->archdata.dma_data, dma_handle, size, direction, 54 - attrs); 51 + iommu_unmap_page(dev->archdata.dma_data, dma_handle, size, direction, 52 + attrs); 55 53 } 56 54 57 55 ··· 92 94 struct dma_mapping_ops dma_iommu_ops = { 93 95 .alloc_coherent = dma_iommu_alloc_coherent, 94 96 .free_coherent = dma_iommu_free_coherent, 95 - .map_single = dma_iommu_map_single, 96 - .unmap_single = dma_iommu_unmap_single, 97 97 .map_sg = dma_iommu_map_sg, 98 98 .unmap_sg = dma_iommu_unmap_sg, 99 99 .dma_supported = dma_iommu_dma_supported, 100 + .map_page = dma_iommu_map_page, 101 + .unmap_page = dma_iommu_unmap_page, 100 102 }; 101 103 EXPORT_SYMBOL(dma_iommu_ops);
+19 -11
arch/powerpc/kernel/head_64.S
··· 97 97 __secondary_hold_acknowledge: 98 98 .llong 0x0 99 99 100 - /* This flag is set by purgatory if we should be a kdump kernel. */ 101 - /* Do not move this variable as purgatory knows about it. */ 102 - .globl __kdump_flag 103 - __kdump_flag: 104 - .llong 0x0 105 - 106 100 #ifdef CONFIG_PPC_ISERIES 107 101 /* 108 102 * At offset 0x20, there is a pointer to iSeries LPAR data. ··· 105 111 . = 0x20 106 112 .llong hvReleaseData-KERNELBASE 107 113 #endif /* CONFIG_PPC_ISERIES */ 114 + 115 + #ifdef CONFIG_CRASH_DUMP 116 + /* This flag is set to 1 by a loader if the kernel should run 117 + * at the loaded address instead of the linked address. This 118 + * is used by kexec-tools to keep the the kdump kernel in the 119 + * crash_kernel region. The loader is responsible for 120 + * observing the alignment requirement. 121 + */ 122 + /* Do not move this variable as kexec-tools knows about it. */ 123 + . = 0x5c 124 + .globl __run_at_load 125 + __run_at_load: 126 + .long 0x72756e30 /* "run0" -- relocate to 0 by default */ 127 + #endif 108 128 109 129 . = 0x60 110 130 /* ··· 1399 1391 lis r25,PAGE_OFFSET@highest /* compute virtual base of kernel */ 1400 1392 sldi r25,r25,32 1401 1393 #ifdef CONFIG_CRASH_DUMP 1402 - ld r7,__kdump_flag-_stext(r26) 1403 - cmpldi cr0,r7,1 /* kdump kernel ? - stay where we are */ 1394 + lwz r7,__run_at_load-_stext(r26) 1395 + cmplwi cr0,r7,1 /* kdump kernel ? - stay where we are */ 1404 1396 bne 1f 1405 1397 add r25,r25,r26 1406 1398 #endif ··· 1424 1416 #ifdef CONFIG_CRASH_DUMP 1425 1417 /* 1426 1418 * Check if the kernel has to be running as relocatable kernel based on the 1427 - * variable __kdump_flag, if it is set the kernel is treated as relocatable 1419 + * variable __run_at_load, if it is set the kernel is treated as relocatable 1428 1420 * kernel, otherwise it will be moved to PHYSICAL_START 1429 1421 */ 1430 - ld r7,__kdump_flag-_stext(r26) 1431 - cmpldi cr0,r7,1 1422 + lwz r7,__run_at_load-_stext(r26) 1423 + cmplwi cr0,r7,1 1432 1424 bne 3f 1433 1425 1434 1426 li r5,__end_interrupts - _stext /* just copy interrupts */
+14 -13
arch/powerpc/kernel/ibmebus.c
··· 79 79 kfree(vaddr); 80 80 } 81 81 82 - static dma_addr_t ibmebus_map_single(struct device *dev, 83 - void *ptr, 84 - size_t size, 85 - enum dma_data_direction direction, 86 - struct dma_attrs *attrs) 82 + static dma_addr_t ibmebus_map_page(struct device *dev, 83 + struct page *page, 84 + unsigned long offset, 85 + size_t size, 86 + enum dma_data_direction direction, 87 + struct dma_attrs *attrs) 87 88 { 88 - return (dma_addr_t)(ptr); 89 + return (dma_addr_t)(page_address(page) + offset); 89 90 } 90 91 91 - static void ibmebus_unmap_single(struct device *dev, 92 - dma_addr_t dma_addr, 93 - size_t size, 94 - enum dma_data_direction direction, 95 - struct dma_attrs *attrs) 92 + static void ibmebus_unmap_page(struct device *dev, 93 + dma_addr_t dma_addr, 94 + size_t size, 95 + enum dma_data_direction direction, 96 + struct dma_attrs *attrs) 96 97 { 97 98 return; 98 99 } ··· 130 129 static struct dma_mapping_ops ibmebus_dma_ops = { 131 130 .alloc_coherent = ibmebus_alloc_coherent, 132 131 .free_coherent = ibmebus_free_coherent, 133 - .map_single = ibmebus_map_single, 134 - .unmap_single = ibmebus_unmap_single, 135 132 .map_sg = ibmebus_map_sg, 136 133 .unmap_sg = ibmebus_unmap_sg, 137 134 .dma_supported = ibmebus_dma_supported, 135 + .map_page = ibmebus_map_page, 136 + .unmap_page = ibmebus_unmap_page, 138 137 }; 139 138 140 139 static int ibmebus_match_path(struct device *dev, void *data)
+14 -11
arch/powerpc/kernel/iommu.c
··· 32 32 #include <linux/dma-mapping.h> 33 33 #include <linux/bitops.h> 34 34 #include <linux/iommu-helper.h> 35 + #include <linux/crash_dump.h> 35 36 #include <asm/io.h> 36 37 #include <asm/prom.h> 37 38 #include <asm/iommu.h> ··· 461 460 462 461 static void iommu_table_clear(struct iommu_table *tbl) 463 462 { 464 - if (!__kdump_flag) { 463 + if (!is_kdump_kernel()) { 465 464 /* Clear the table in case firmware left allocations in it */ 466 465 ppc_md.tce_free(tbl, tbl->it_offset, tbl->it_size); 467 466 return; ··· 565 564 } 566 565 567 566 /* Creates TCEs for a user provided buffer. The user buffer must be 568 - * contiguous real kernel storage (not vmalloc). The address of the buffer 569 - * passed here is the kernel (virtual) address of the buffer. The buffer 570 - * need not be page aligned, the dma_addr_t returned will point to the same 571 - * byte within the page as vaddr. 567 + * contiguous real kernel storage (not vmalloc). The address passed here 568 + * comprises a page address and offset into that page. The dma_addr_t 569 + * returned will point to the same byte within the page as was passed in. 572 570 */ 573 - dma_addr_t iommu_map_single(struct device *dev, struct iommu_table *tbl, 574 - void *vaddr, size_t size, unsigned long mask, 575 - enum dma_data_direction direction, struct dma_attrs *attrs) 571 + dma_addr_t iommu_map_page(struct device *dev, struct iommu_table *tbl, 572 + struct page *page, unsigned long offset, size_t size, 573 + unsigned long mask, enum dma_data_direction direction, 574 + struct dma_attrs *attrs) 576 575 { 577 576 dma_addr_t dma_handle = DMA_ERROR_CODE; 577 + void *vaddr; 578 578 unsigned long uaddr; 579 579 unsigned int npages, align; 580 580 581 581 BUG_ON(direction == DMA_NONE); 582 582 583 + vaddr = page_address(page) + offset; 583 584 uaddr = (unsigned long)vaddr; 584 585 npages = iommu_num_pages(uaddr, size, IOMMU_PAGE_SIZE); 585 586 ··· 607 604 return dma_handle; 608 605 } 609 606 610 - void iommu_unmap_single(struct iommu_table *tbl, dma_addr_t dma_handle, 611 - size_t size, enum dma_data_direction direction, 612 - struct dma_attrs *attrs) 607 + void iommu_unmap_page(struct iommu_table *tbl, dma_addr_t dma_handle, 608 + size_t size, enum dma_data_direction direction, 609 + struct dma_attrs *attrs) 613 610 { 614 611 unsigned int npages; 615 612
+2 -7
arch/powerpc/kernel/machine_kexec_64.c
··· 255 255 /* Our assembly helper, in kexec_stub.S */ 256 256 extern NORET_TYPE void kexec_sequence(void *newstack, unsigned long start, 257 257 void *image, void *control, 258 - void (*clear_all)(void), 259 - unsigned long kdump_flag) ATTRIB_NORET; 258 + void (*clear_all)(void)) ATTRIB_NORET; 260 259 261 260 /* too late to fail here */ 262 261 void default_machine_kexec(struct kimage *image) 263 262 { 264 - unsigned long kdump_flag = 0; 265 - 266 263 /* prepare control code if any */ 267 264 268 265 /* ··· 272 275 273 276 if (crashing_cpu == -1) 274 277 kexec_prepare_cpus(); 275 - else 276 - kdump_flag = KDUMP_SIGNATURE; 277 278 278 279 /* switch to a staticly allocated stack. Based on irq stack code. 279 280 * XXX: the task struct will likely be invalid once we do the copy! ··· 284 289 */ 285 290 kexec_sequence(&kexec_stack, image->start, image, 286 291 page_address(image->control_code_page), 287 - ppc_md.hpte_clear_all, kdump_flag); 292 + ppc_md.hpte_clear_all); 288 293 /* NOTREACHED */ 289 294 } 290 295
+3 -6
arch/powerpc/kernel/misc_64.S
··· 611 611 612 612 613 613 /* 614 - * kexec_sequence(newstack, start, image, control, clear_all(), kdump_flag) 614 + * kexec_sequence(newstack, start, image, control, clear_all()) 615 615 * 616 616 * does the grungy work with stack switching and real mode switches 617 617 * also does simple calls to other code 618 - * 619 - * kdump_flag says whether the next kernel should be a kdump kernel. 620 618 */ 621 619 622 620 _GLOBAL(kexec_sequence) ··· 647 649 mr r29,r5 /* image (virt) */ 648 650 mr r28,r6 /* control, unused */ 649 651 mr r27,r7 /* clear_all() fn desc */ 650 - mr r26,r8 /* kdump flag */ 652 + mr r26,r8 /* spare */ 651 653 lhz r25,PACAHWCPUID(r13) /* get our phys cpu from paca */ 652 654 653 655 /* disable interrupts, we are overwriting kernel data next */ ··· 709 711 mr r4,r30 # start, aka phys mem offset 710 712 mtlr 4 711 713 li r5,0 712 - mr r6,r26 /* kdump_flag */ 713 - blr /* image->start(physid, image->start, 0, kdump_flag); */ 714 + blr /* image->start(physid, image->start, 0); */ 714 715 #endif /* CONFIG_KEXEC */
-1
arch/powerpc/kernel/of_device.c
··· 78 78 dev->dev.parent = parent; 79 79 dev->dev.release = of_release_dev; 80 80 dev->dev.archdata.of_node = np; 81 - set_dev_node(&dev->dev, of_node_to_nid(np)); 82 81 83 82 if (bus_id) 84 83 strlcpy(dev->dev.bus_id, bus_id, BUS_ID_SIZE);
+56 -56
arch/powerpc/kernel/pci-common.c
··· 1239 1239 * as well. 1240 1240 */ 1241 1241 1242 - static void __init pcibios_allocate_bus_resources(struct list_head *bus_list) 1242 + void pcibios_allocate_bus_resources(struct pci_bus *bus) 1243 1243 { 1244 - struct pci_bus *bus; 1244 + struct pci_bus *b; 1245 1245 int i; 1246 1246 struct resource *res, *pr; 1247 1247 1248 - /* Depth-First Search on bus tree */ 1249 - list_for_each_entry(bus, bus_list, node) { 1250 - for (i = 0; i < PCI_BUS_NUM_RESOURCES; ++i) { 1251 - if ((res = bus->resource[i]) == NULL || !res->flags 1252 - || res->start > res->end) 1248 + for (i = 0; i < PCI_BUS_NUM_RESOURCES; ++i) { 1249 + if ((res = bus->resource[i]) == NULL || !res->flags 1250 + || res->start > res->end) 1251 + continue; 1252 + if (bus->parent == NULL) 1253 + pr = (res->flags & IORESOURCE_IO) ? 1254 + &ioport_resource : &iomem_resource; 1255 + else { 1256 + /* Don't bother with non-root busses when 1257 + * re-assigning all resources. We clear the 1258 + * resource flags as if they were colliding 1259 + * and as such ensure proper re-allocation 1260 + * later. 1261 + */ 1262 + if (ppc_pci_flags & PPC_PCI_REASSIGN_ALL_RSRC) 1263 + goto clear_resource; 1264 + pr = pci_find_parent_resource(bus->self, res); 1265 + if (pr == res) { 1266 + /* this happens when the generic PCI 1267 + * code (wrongly) decides that this 1268 + * bridge is transparent -- paulus 1269 + */ 1253 1270 continue; 1254 - if (bus->parent == NULL) 1255 - pr = (res->flags & IORESOURCE_IO) ? 1256 - &ioport_resource : &iomem_resource; 1257 - else { 1258 - /* Don't bother with non-root busses when 1259 - * re-assigning all resources. We clear the 1260 - * resource flags as if they were colliding 1261 - * and as such ensure proper re-allocation 1262 - * later. 1263 - */ 1264 - if (ppc_pci_flags & PPC_PCI_REASSIGN_ALL_RSRC) 1265 - goto clear_resource; 1266 - pr = pci_find_parent_resource(bus->self, res); 1267 - if (pr == res) { 1268 - /* this happens when the generic PCI 1269 - * code (wrongly) decides that this 1270 - * bridge is transparent -- paulus 1271 - */ 1272 - continue; 1273 - } 1274 1271 } 1275 - 1276 - DBG("PCI: %s (bus %d) bridge rsrc %d: %016llx-%016llx " 1277 - "[0x%x], parent %p (%s)\n", 1278 - bus->self ? pci_name(bus->self) : "PHB", 1279 - bus->number, i, 1280 - (unsigned long long)res->start, 1281 - (unsigned long long)res->end, 1282 - (unsigned int)res->flags, 1283 - pr, (pr && pr->name) ? pr->name : "nil"); 1284 - 1285 - if (pr && !(pr->flags & IORESOURCE_UNSET)) { 1286 - if (request_resource(pr, res) == 0) 1287 - continue; 1288 - /* 1289 - * Must be a conflict with an existing entry. 1290 - * Move that entry (or entries) under the 1291 - * bridge resource and try again. 1292 - */ 1293 - if (reparent_resources(pr, res) == 0) 1294 - continue; 1295 - } 1296 - printk(KERN_WARNING 1297 - "PCI: Cannot allocate resource region " 1298 - "%d of PCI bridge %d, will remap\n", 1299 - i, bus->number); 1300 - clear_resource: 1301 - res->flags = 0; 1302 1272 } 1303 - pcibios_allocate_bus_resources(&bus->children); 1273 + 1274 + DBG("PCI: %s (bus %d) bridge rsrc %d: %016llx-%016llx " 1275 + "[0x%x], parent %p (%s)\n", 1276 + bus->self ? pci_name(bus->self) : "PHB", 1277 + bus->number, i, 1278 + (unsigned long long)res->start, 1279 + (unsigned long long)res->end, 1280 + (unsigned int)res->flags, 1281 + pr, (pr && pr->name) ? pr->name : "nil"); 1282 + 1283 + if (pr && !(pr->flags & IORESOURCE_UNSET)) { 1284 + if (request_resource(pr, res) == 0) 1285 + continue; 1286 + /* 1287 + * Must be a conflict with an existing entry. 1288 + * Move that entry (or entries) under the 1289 + * bridge resource and try again. 1290 + */ 1291 + if (reparent_resources(pr, res) == 0) 1292 + continue; 1293 + } 1294 + printk(KERN_WARNING "PCI: Cannot allocate resource region " 1295 + "%d of PCI bridge %d, will remap\n", i, bus->number); 1296 + clear_resource: 1297 + res->flags = 0; 1304 1298 } 1299 + 1300 + list_for_each_entry(b, &bus->children, node) 1301 + pcibios_allocate_bus_resources(b); 1305 1302 } 1306 1303 1307 1304 static inline void __devinit alloc_resource(struct pci_dev *dev, int idx) ··· 1369 1372 1370 1373 void __init pcibios_resource_survey(void) 1371 1374 { 1375 + struct pci_bus *b; 1376 + 1372 1377 /* Allocate and assign resources. If we re-assign everything, then 1373 1378 * we skip the allocate phase 1374 1379 */ 1375 - pcibios_allocate_bus_resources(&pci_root_buses); 1380 + list_for_each_entry(b, &pci_root_buses, node) 1381 + pcibios_allocate_bus_resources(b); 1376 1382 1377 1383 if (!(ppc_pci_flags & PPC_PCI_REASSIGN_ALL_RSRC)) { 1378 1384 pcibios_allocate_resources(0);
+1 -1
arch/powerpc/kernel/pci_64.c
··· 426 426 pci_name(bus->self)); 427 427 428 428 __flush_hash_table_range(&init_mm, res->start + _IO_BASE, 429 - res->end - res->start + 1); 429 + res->end + _IO_BASE + 1); 430 430 return 0; 431 431 } 432 432
+5 -5
arch/powerpc/kernel/prom_init.c
··· 671 671 u32 ignore_me; 672 672 } rpadesc; 673 673 } rpanote; 674 - } fake_elf __section(.fakeelf) = { 674 + } fake_elf = { 675 675 .elfhdr = { 676 676 .e_ident = { 0x7f, 'E', 'L', 'F', 677 677 ELFCLASS32, ELFDATA2MSB, EV_CURRENT }, ··· 713 713 .type = 0x12759999, 714 714 .name = "IBM,RPA-Client-Config", 715 715 .rpadesc = { 716 - .lpar_affinity = 1, 717 - .min_rmo_size = 128, /* in megabytes */ 716 + .lpar_affinity = 0, 717 + .min_rmo_size = 64, /* in megabytes */ 718 718 .min_rmo_percent = 0, 719 - .max_pft_size = 46, /* 2^46 bytes max PFT size */ 719 + .max_pft_size = 48, /* 2^48 bytes max PFT size */ 720 720 .splpar = 1, 721 721 .min_load = ~0U, 722 - .new_mem_def = 1 722 + .new_mem_def = 0 723 723 } 724 724 } 725 725 };
+3 -3
arch/powerpc/kernel/setup_64.c
··· 444 444 if (htab_address) 445 445 printk("htab_address = 0x%p\n", htab_address); 446 446 printk("htab_hash_mask = 0x%lx\n", htab_hash_mask); 447 - #if PHYSICAL_START > 0 448 - printk("physical_start = 0x%lx\n", PHYSICAL_START); 449 - #endif 447 + if (PHYSICAL_START > 0) 448 + printk("physical_start = 0x%lx\n", 449 + PHYSICAL_START); 450 450 printk("-----------------------------------------------------\n"); 451 451 452 452 DBG(" <- setup_system()\n");
+15 -21
arch/powerpc/kernel/signal_32.c
··· 410 410 * altivec/spe instructions at some point. 411 411 */ 412 412 static int save_user_regs(struct pt_regs *regs, struct mcontext __user *frame, 413 - int sigret) 413 + int sigret, int ctx_has_vsx_region) 414 414 { 415 415 unsigned long msr = regs->msr; 416 416 ··· 451 451 * the saved MSR value to indicate that frame->mc_vregs 452 452 * contains valid data 453 453 */ 454 - if (current->thread.used_vsr) { 454 + if (current->thread.used_vsr && ctx_has_vsx_region) { 455 455 __giveup_vsx(current); 456 456 if (copy_vsx_to_user(&frame->mc_vsregs, current)) 457 457 return 1; ··· 858 858 frame = &rt_sf->uc.uc_mcontext; 859 859 addr = frame; 860 860 if (vdso32_rt_sigtramp && current->mm->context.vdso_base) { 861 - if (save_user_regs(regs, frame, 0)) 861 + if (save_user_regs(regs, frame, 0, 1)) 862 862 goto badframe; 863 863 regs->link = current->mm->context.vdso_base + vdso32_rt_sigtramp; 864 864 } else { 865 - if (save_user_regs(regs, frame, __NR_rt_sigreturn)) 865 + if (save_user_regs(regs, frame, __NR_rt_sigreturn, 1)) 866 866 goto badframe; 867 867 regs->link = (unsigned long) frame->tramp; 868 868 } ··· 936 936 int ctx_size, int r6, int r7, int r8, struct pt_regs *regs) 937 937 { 938 938 unsigned char tmp; 939 + int ctx_has_vsx_region = 0; 939 940 940 941 #ifdef CONFIG_PPC64 941 942 unsigned long new_msr = 0; 942 943 943 944 if (new_ctx && 944 - __get_user(new_msr, &new_ctx->uc_mcontext.mc_gregs[PT_MSR])) 945 + get_user(new_msr, &new_ctx->uc_mcontext.mc_gregs[PT_MSR])) 945 946 return -EFAULT; 946 947 /* 947 948 * Check that the context is not smaller than the original ··· 957 956 if ((ctx_size < sizeof(struct ucontext)) && 958 957 (new_msr & MSR_VSX)) 959 958 return -EINVAL; 960 - #ifdef CONFIG_VSX 961 - /* 962 - * If userspace doesn't provide enough room for VSX data, 963 - * but current thread has used VSX, we don't have anywhere 964 - * to store the full context back into. 965 - */ 966 - if ((ctx_size < sizeof(struct ucontext)) && 967 - (current->thread.used_vsr && old_ctx)) 968 - return -EINVAL; 969 - #endif 959 + /* Does the context have enough room to store VSX data? */ 960 + if (ctx_size >= sizeof(struct ucontext)) 961 + ctx_has_vsx_region = 1; 970 962 #else 971 963 /* Context size is for future use. Right now, we only make sure 972 964 * we are passed something we understand ··· 979 985 */ 980 986 mctx = (struct mcontext __user *) 981 987 ((unsigned long) &old_ctx->uc_mcontext & ~0xfUL); 982 - if (!access_ok(VERIFY_WRITE, old_ctx, sizeof(*old_ctx)) 983 - || save_user_regs(regs, mctx, 0) 988 + if (!access_ok(VERIFY_WRITE, old_ctx, ctx_size) 989 + || save_user_regs(regs, mctx, 0, ctx_has_vsx_region) 984 990 || put_sigset_t(&old_ctx->uc_sigmask, &current->blocked) 985 991 || __put_user(to_user_ptr(mctx), &old_ctx->uc_regs)) 986 992 return -EFAULT; 987 993 } 988 994 if (new_ctx == NULL) 989 995 return 0; 990 - if (!access_ok(VERIFY_READ, new_ctx, sizeof(*new_ctx)) 996 + if (!access_ok(VERIFY_READ, new_ctx, ctx_size) 991 997 || __get_user(tmp, (u8 __user *) new_ctx) 992 - || __get_user(tmp, (u8 __user *) (new_ctx + 1) - 1)) 998 + || __get_user(tmp, (u8 __user *) new_ctx + ctx_size - 1)) 993 999 return -EFAULT; 994 1000 995 1001 /* ··· 1190 1196 goto badframe; 1191 1197 1192 1198 if (vdso32_sigtramp && current->mm->context.vdso_base) { 1193 - if (save_user_regs(regs, &frame->mctx, 0)) 1199 + if (save_user_regs(regs, &frame->mctx, 0, 1)) 1194 1200 goto badframe; 1195 1201 regs->link = current->mm->context.vdso_base + vdso32_sigtramp; 1196 1202 } else { 1197 - if (save_user_regs(regs, &frame->mctx, __NR_sigreturn)) 1203 + if (save_user_regs(regs, &frame->mctx, __NR_sigreturn, 1)) 1198 1204 goto badframe; 1199 1205 regs->link = (unsigned long) frame->mctx.tramp; 1200 1206 }
+15 -18
arch/powerpc/kernel/signal_64.c
··· 74 74 */ 75 75 76 76 static long setup_sigcontext(struct sigcontext __user *sc, struct pt_regs *regs, 77 - int signr, sigset_t *set, unsigned long handler) 77 + int signr, sigset_t *set, unsigned long handler, 78 + int ctx_has_vsx_region) 78 79 { 79 80 /* When CONFIG_ALTIVEC is set, we _always_ setup v_regs even if the 80 81 * process never used altivec yet (MSR_VEC is zero in pt_regs of ··· 122 121 * then out to userspace. Update v_regs to point after the 123 122 * VMX data. 124 123 */ 125 - if (current->thread.used_vsr) { 124 + if (current->thread.used_vsr && ctx_has_vsx_region) { 126 125 __giveup_vsx(current); 127 126 v_regs += ELF_NVRREG; 128 127 err |= copy_vsx_to_user(v_regs, current); ··· 283 282 unsigned char tmp; 284 283 sigset_t set; 285 284 unsigned long new_msr = 0; 285 + int ctx_has_vsx_region = 0; 286 286 287 287 if (new_ctx && 288 - __get_user(new_msr, &new_ctx->uc_mcontext.gp_regs[PT_MSR])) 288 + get_user(new_msr, &new_ctx->uc_mcontext.gp_regs[PT_MSR])) 289 289 return -EFAULT; 290 290 /* 291 291 * Check that the context is not smaller than the original ··· 301 299 if ((ctx_size < sizeof(struct ucontext)) && 302 300 (new_msr & MSR_VSX)) 303 301 return -EINVAL; 304 - #ifdef CONFIG_VSX 305 - /* 306 - * If userspace doesn't provide enough room for VSX data, 307 - * but current thread has used VSX, we don't have anywhere 308 - * to store the full context back into. 309 - */ 310 - if ((ctx_size < sizeof(struct ucontext)) && 311 - (current->thread.used_vsr && old_ctx)) 312 - return -EINVAL; 313 - #endif 302 + /* Does the context have enough room to store VSX data? */ 303 + if (ctx_size >= sizeof(struct ucontext)) 304 + ctx_has_vsx_region = 1; 305 + 314 306 if (old_ctx != NULL) { 315 - if (!access_ok(VERIFY_WRITE, old_ctx, sizeof(*old_ctx)) 316 - || setup_sigcontext(&old_ctx->uc_mcontext, regs, 0, NULL, 0) 307 + if (!access_ok(VERIFY_WRITE, old_ctx, ctx_size) 308 + || setup_sigcontext(&old_ctx->uc_mcontext, regs, 0, NULL, 0, 309 + ctx_has_vsx_region) 317 310 || __copy_to_user(&old_ctx->uc_sigmask, 318 311 &current->blocked, sizeof(sigset_t))) 319 312 return -EFAULT; 320 313 } 321 314 if (new_ctx == NULL) 322 315 return 0; 323 - if (!access_ok(VERIFY_READ, new_ctx, sizeof(*new_ctx)) 316 + if (!access_ok(VERIFY_READ, new_ctx, ctx_size) 324 317 || __get_user(tmp, (u8 __user *) new_ctx) 325 - || __get_user(tmp, (u8 __user *) (new_ctx + 1) - 1)) 318 + || __get_user(tmp, (u8 __user *) new_ctx + ctx_size - 1)) 326 319 return -EFAULT; 327 320 328 321 /* ··· 420 423 &frame->uc.uc_stack.ss_flags); 421 424 err |= __put_user(current->sas_ss_size, &frame->uc.uc_stack.ss_size); 422 425 err |= setup_sigcontext(&frame->uc.uc_mcontext, regs, signr, NULL, 423 - (unsigned long)ka->sa.sa_handler); 426 + (unsigned long)ka->sa.sa_handler, 1); 424 427 err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set)); 425 428 if (err) 426 429 goto badframe;
+13 -12
arch/powerpc/kernel/vio.c
··· 516 516 vio_cmo_dealloc(viodev, roundup(size, IOMMU_PAGE_SIZE)); 517 517 } 518 518 519 - static dma_addr_t vio_dma_iommu_map_single(struct device *dev, void *vaddr, 520 - size_t size, 521 - enum dma_data_direction direction, 522 - struct dma_attrs *attrs) 519 + static dma_addr_t vio_dma_iommu_map_page(struct device *dev, struct page *page, 520 + unsigned long offset, size_t size, 521 + enum dma_data_direction direction, 522 + struct dma_attrs *attrs) 523 523 { 524 524 struct vio_dev *viodev = to_vio_dev(dev); 525 525 dma_addr_t ret = DMA_ERROR_CODE; ··· 529 529 return ret; 530 530 } 531 531 532 - ret = dma_iommu_ops.map_single(dev, vaddr, size, direction, attrs); 532 + ret = dma_iommu_ops.map_page(dev, page, offset, size, direction, attrs); 533 533 if (unlikely(dma_mapping_error(dev, ret))) { 534 534 vio_cmo_dealloc(viodev, roundup(size, IOMMU_PAGE_SIZE)); 535 535 atomic_inc(&viodev->cmo.allocs_failed); ··· 538 538 return ret; 539 539 } 540 540 541 - static void vio_dma_iommu_unmap_single(struct device *dev, 542 - dma_addr_t dma_handle, size_t size, 543 - enum dma_data_direction direction, 544 - struct dma_attrs *attrs) 541 + static void vio_dma_iommu_unmap_page(struct device *dev, dma_addr_t dma_handle, 542 + size_t size, 543 + enum dma_data_direction direction, 544 + struct dma_attrs *attrs) 545 545 { 546 546 struct vio_dev *viodev = to_vio_dev(dev); 547 547 548 - dma_iommu_ops.unmap_single(dev, dma_handle, size, direction, attrs); 548 + dma_iommu_ops.unmap_page(dev, dma_handle, size, direction, attrs); 549 549 550 550 vio_cmo_dealloc(viodev, roundup(size, IOMMU_PAGE_SIZE)); 551 551 } ··· 603 603 struct dma_mapping_ops vio_dma_mapping_ops = { 604 604 .alloc_coherent = vio_dma_iommu_alloc_coherent, 605 605 .free_coherent = vio_dma_iommu_free_coherent, 606 - .map_single = vio_dma_iommu_map_single, 607 - .unmap_single = vio_dma_iommu_unmap_single, 608 606 .map_sg = vio_dma_iommu_map_sg, 609 607 .unmap_sg = vio_dma_iommu_unmap_sg, 608 + .map_page = vio_dma_iommu_map_page, 609 + .unmap_page = vio_dma_iommu_unmap_page, 610 + 610 611 }; 611 612 612 613 /**
+2 -3
arch/powerpc/kernel/vmlinux.lds.S
··· 187 187 *(.machine.desc) 188 188 __machine_desc_end = . ; 189 189 } 190 + #ifdef CONFIG_RELOCATABLE 190 191 . = ALIGN(8); 191 192 .dynsym : AT(ADDR(.dynsym) - LOAD_OFFSET) { *(.dynsym) } 192 193 .dynstr : AT(ADDR(.dynstr) - LOAD_OFFSET) { *(.dynstr) } ··· 203 202 __rela_dyn_start = .; 204 203 *(.rela*) 205 204 } 206 - 207 - /* Fake ELF header containing RPA note; for addnote */ 208 - .fakeelf : AT(ADDR(.fakeelf) - LOAD_OFFSET) { *(.fakeelf) } 205 + #endif 209 206 210 207 /* freed after init ends here */ 211 208 . = ALIGN(PAGE_SIZE);
+10 -3
arch/powerpc/oprofile/op_model_cell.c
··· 582 582 583 583 num_counters = num_ctrs; 584 584 585 + if (unlikely(num_ctrs > NR_PHYS_CTRS)) { 586 + printk(KERN_ERR 587 + "%s: Oprofile, number of specified events " \ 588 + "exceeds number of physical counters\n", 589 + __func__); 590 + return -EIO; 591 + } 585 592 pm_regs.group_control = 0; 586 593 pm_regs.debug_bus_control = 0; 587 594 ··· 837 830 static int pm_rtas_activate_spu_profiling(u32 node) 838 831 { 839 832 int ret, i; 840 - struct pm_signal pm_signal_local[NR_PHYS_CTRS]; 833 + struct pm_signal pm_signal_local[NUM_SPUS_PER_NODE]; 841 834 842 835 /* 843 836 * Set up the rtas call to configure the debug bus to 844 837 * route the SPU PCs. Setup the pm_signal for each SPU 845 838 */ 846 - for (i = 0; i < NUM_SPUS_PER_NODE; i++) { 839 + for (i = 0; i < ARRAY_SIZE(pm_signal_local); i++) { 847 840 pm_signal_local[i].cpu = node; 848 841 pm_signal_local[i].signal_group = 41; 849 842 /* spu i on word (i/2) */ ··· 855 848 856 849 ret = rtas_ibm_cbe_perftools(SUBFUNC_ACTIVATE, 857 850 PASSTHRU_ENABLE, pm_signal_local, 858 - (NUM_SPUS_PER_NODE 851 + (ARRAY_SIZE(pm_signal_local) 859 852 * sizeof(struct pm_signal))); 860 853 861 854 if (unlikely(ret)) {
+1 -1
arch/powerpc/platforms/40x/Kconfig
··· 35 35 config HCU4 36 36 bool "Hcu4" 37 37 depends on 40x 38 - default y 38 + default n 39 39 select 405GPR 40 40 help 41 41 This option enables support for the Nestal Maschinen HCU4 board.
+2 -1
arch/powerpc/platforms/85xx/mpc85xx_ds.c
··· 78 78 79 79 mpic = mpic_alloc(np, r.start, 80 80 MPIC_PRIMARY | MPIC_WANTS_RESET | 81 - MPIC_BIG_ENDIAN | MPIC_BROKEN_FRR_NIRQS, 81 + MPIC_BIG_ENDIAN | MPIC_BROKEN_FRR_NIRQS | 82 + MPIC_SINGLE_DEST_CPU, 82 83 0, 256, " OpenPIC "); 83 84 BUG_ON(mpic == NULL); 84 85 of_node_put(np);
+2 -1
arch/powerpc/platforms/86xx/pic.c
··· 44 44 45 45 mpic = mpic_alloc(np, res.start, 46 46 MPIC_PRIMARY | MPIC_WANTS_RESET | 47 - MPIC_BIG_ENDIAN | MPIC_BROKEN_FRR_NIRQS, 47 + MPIC_BIG_ENDIAN | MPIC_BROKEN_FRR_NIRQS | 48 + MPIC_SINGLE_DEST_CPU, 48 49 0, 256, " MPIC "); 49 50 of_node_put(np); 50 51 BUG_ON(mpic == NULL);
+18 -19
arch/powerpc/platforms/cell/iommu.c
··· 593 593 dma_direct_ops.free_coherent(dev, size, vaddr, dma_handle); 594 594 } 595 595 596 - static dma_addr_t dma_fixed_map_single(struct device *dev, void *ptr, 597 - size_t size, 598 - enum dma_data_direction direction, 599 - struct dma_attrs *attrs) 596 + static dma_addr_t dma_fixed_map_page(struct device *dev, struct page *page, 597 + unsigned long offset, size_t size, 598 + enum dma_data_direction direction, 599 + struct dma_attrs *attrs) 600 600 { 601 601 if (iommu_fixed_is_weak == dma_get_attr(DMA_ATTR_WEAK_ORDERING, attrs)) 602 - return dma_direct_ops.map_single(dev, ptr, size, direction, 603 - attrs); 602 + return dma_direct_ops.map_page(dev, page, offset, size, 603 + direction, attrs); 604 604 else 605 - return iommu_map_single(dev, cell_get_iommu_table(dev), ptr, 606 - size, device_to_mask(dev), direction, 607 - attrs); 605 + return iommu_map_page(dev, cell_get_iommu_table(dev), page, 606 + offset, size, device_to_mask(dev), 607 + direction, attrs); 608 608 } 609 609 610 - static void dma_fixed_unmap_single(struct device *dev, dma_addr_t dma_addr, 611 - size_t size, 612 - enum dma_data_direction direction, 613 - struct dma_attrs *attrs) 610 + static void dma_fixed_unmap_page(struct device *dev, dma_addr_t dma_addr, 611 + size_t size, enum dma_data_direction direction, 612 + struct dma_attrs *attrs) 614 613 { 615 614 if (iommu_fixed_is_weak == dma_get_attr(DMA_ATTR_WEAK_ORDERING, attrs)) 616 - dma_direct_ops.unmap_single(dev, dma_addr, size, direction, 617 - attrs); 615 + dma_direct_ops.unmap_page(dev, dma_addr, size, direction, 616 + attrs); 618 617 else 619 - iommu_unmap_single(cell_get_iommu_table(dev), dma_addr, size, 620 - direction, attrs); 618 + iommu_unmap_page(cell_get_iommu_table(dev), dma_addr, size, 619 + direction, attrs); 621 620 } 622 621 623 622 static int dma_fixed_map_sg(struct device *dev, struct scatterlist *sg, ··· 651 652 struct dma_mapping_ops dma_iommu_fixed_ops = { 652 653 .alloc_coherent = dma_fixed_alloc_coherent, 653 654 .free_coherent = dma_fixed_free_coherent, 654 - .map_single = dma_fixed_map_single, 655 - .unmap_single = dma_fixed_unmap_single, 656 655 .map_sg = dma_fixed_map_sg, 657 656 .unmap_sg = dma_fixed_unmap_sg, 658 657 .dma_supported = dma_fixed_dma_supported, 659 658 .set_dma_mask = dma_set_mask_and_switch, 659 + .map_page = dma_fixed_map_page, 660 + .unmap_page = dma_fixed_unmap_page, 660 661 }; 661 662 662 663 static void cell_dma_dev_setup_fixed(struct device *dev);
+3 -3
arch/powerpc/platforms/cell/ras.c
··· 13 13 #include <linux/kernel.h> 14 14 #include <linux/smp.h> 15 15 #include <linux/reboot.h> 16 + #include <linux/kexec.h> 17 + #include <linux/crash_dump.h> 16 18 17 19 #include <asm/reg.h> 18 20 #include <asm/io.h> 19 21 #include <asm/prom.h> 20 - #include <asm/kexec.h> 21 22 #include <asm/machdep.h> 22 23 #include <asm/rtas.h> 23 24 #include <asm/cell-regs.h> 24 - #include <asm/kdump.h> 25 25 26 26 #include "ras.h" 27 27 ··· 112 112 int ret = -ENOMEM; 113 113 unsigned long addr; 114 114 115 - if (__kdump_flag) 115 + if (is_kdump_kernel()) 116 116 rtas_call(ptcal_stop_tok, 1, 1, NULL, nid); 117 117 118 118 area = kmalloc(sizeof(*area), GFP_KERNEL);
+14
arch/powerpc/platforms/embedded6xx/linkstation.c
··· 13 13 #include <linux/kernel.h> 14 14 #include <linux/initrd.h> 15 15 #include <linux/mtd/physmap.h> 16 + #include <linux/of_platform.h> 16 17 17 18 #include <asm/time.h> 18 19 #include <asm/prom.h> ··· 54 53 .size = 0x0f0000, 55 54 }, 56 55 }; 56 + 57 + static __initdata struct of_device_id of_bus_ids[] = { 58 + { .type = "soc", }, 59 + { .compatible = "simple-bus", }, 60 + {}, 61 + }; 62 + 63 + static int __init declare_of_platform_devices(void) 64 + { 65 + of_platform_bus_probe(NULL, of_bus_ids, NULL); 66 + return 0; 67 + } 68 + machine_device_initcall(linkstation, declare_of_platform_devices); 57 69 58 70 static int __init linkstation_add_bridge(struct device_node *dev) 59 71 {
+4 -3
arch/powerpc/platforms/iseries/iommu.c
··· 215 215 dma_addr_t iseries_hv_map(void *vaddr, size_t size, 216 216 enum dma_data_direction direction) 217 217 { 218 - return iommu_map_single(NULL, &vio_iommu_table, vaddr, size, 219 - DMA_32BIT_MASK, direction, NULL); 218 + return iommu_map_page(NULL, &vio_iommu_table, virt_to_page(vaddr), 219 + (unsigned long)vaddr % PAGE_SIZE, size, 220 + DMA_32BIT_MASK, direction, NULL); 220 221 } 221 222 222 223 void iseries_hv_unmap(dma_addr_t dma_handle, size_t size, 223 224 enum dma_data_direction direction) 224 225 { 225 - iommu_unmap_single(&vio_iommu_table, dma_handle, size, direction, NULL); 226 + iommu_unmap_page(&vio_iommu_table, dma_handle, size, direction, NULL); 226 227 } 227 228 228 229 void __init iommu_vio_init(void)
+19 -17
arch/powerpc/platforms/ps3/system-bus.c
··· 555 555 } 556 556 557 557 /* Creates TCEs for a user provided buffer. The user buffer must be 558 - * contiguous real kernel storage (not vmalloc). The address of the buffer 559 - * passed here is the kernel (virtual) address of the buffer. The buffer 560 - * need not be page aligned, the dma_addr_t returned will point to the same 561 - * byte within the page as vaddr. 558 + * contiguous real kernel storage (not vmalloc). The address passed here 559 + * comprises a page address and offset into that page. The dma_addr_t 560 + * returned will point to the same byte within the page as was passed in. 562 561 */ 563 562 564 - static dma_addr_t ps3_sb_map_single(struct device *_dev, void *ptr, size_t size, 565 - enum dma_data_direction direction, struct dma_attrs *attrs) 563 + static dma_addr_t ps3_sb_map_page(struct device *_dev, struct page *page, 564 + unsigned long offset, size_t size, enum dma_data_direction direction, 565 + struct dma_attrs *attrs) 566 566 { 567 567 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev); 568 568 int result; 569 569 unsigned long bus_addr; 570 + void *ptr = page_address(page) + offset; 570 571 571 572 result = ps3_dma_map(dev->d_region, (unsigned long)ptr, size, 572 573 &bus_addr, ··· 581 580 return bus_addr; 582 581 } 583 582 584 - static dma_addr_t ps3_ioc0_map_single(struct device *_dev, void *ptr, 585 - size_t size, 586 - enum dma_data_direction direction, 587 - struct dma_attrs *attrs) 583 + static dma_addr_t ps3_ioc0_map_page(struct device *_dev, struct page *page, 584 + unsigned long offset, size_t size, 585 + enum dma_data_direction direction, 586 + struct dma_attrs *attrs) 588 587 { 589 588 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev); 590 589 int result; 591 590 unsigned long bus_addr; 592 591 u64 iopte_flag; 592 + void *ptr = page_address(page) + offset; 593 593 594 594 iopte_flag = IOPTE_M; 595 595 switch (direction) { ··· 617 615 return bus_addr; 618 616 } 619 617 620 - static void ps3_unmap_single(struct device *_dev, dma_addr_t dma_addr, 618 + static void ps3_unmap_page(struct device *_dev, dma_addr_t dma_addr, 621 619 size_t size, enum dma_data_direction direction, struct dma_attrs *attrs) 622 620 { 623 621 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev); ··· 691 689 static struct dma_mapping_ops ps3_sb_dma_ops = { 692 690 .alloc_coherent = ps3_alloc_coherent, 693 691 .free_coherent = ps3_free_coherent, 694 - .map_single = ps3_sb_map_single, 695 - .unmap_single = ps3_unmap_single, 696 692 .map_sg = ps3_sb_map_sg, 697 693 .unmap_sg = ps3_sb_unmap_sg, 698 - .dma_supported = ps3_dma_supported 694 + .dma_supported = ps3_dma_supported, 695 + .map_page = ps3_sb_map_page, 696 + .unmap_page = ps3_unmap_page, 699 697 }; 700 698 701 699 static struct dma_mapping_ops ps3_ioc0_dma_ops = { 702 700 .alloc_coherent = ps3_alloc_coherent, 703 701 .free_coherent = ps3_free_coherent, 704 - .map_single = ps3_ioc0_map_single, 705 - .unmap_single = ps3_unmap_single, 706 702 .map_sg = ps3_ioc0_map_sg, 707 703 .unmap_sg = ps3_ioc0_unmap_sg, 708 - .dma_supported = ps3_dma_supported 704 + .dma_supported = ps3_dma_supported, 705 + .map_page = ps3_ioc0_map_page, 706 + .unmap_page = ps3_unmap_page, 709 707 }; 710 708 711 709 /**
+2 -2
arch/powerpc/platforms/pseries/iommu.c
··· 32 32 #include <linux/string.h> 33 33 #include <linux/pci.h> 34 34 #include <linux/dma-mapping.h> 35 + #include <linux/crash_dump.h> 35 36 #include <asm/io.h> 36 37 #include <asm/prom.h> 37 38 #include <asm/rtas.h> ··· 45 44 #include <asm/tce.h> 46 45 #include <asm/ppc-pci.h> 47 46 #include <asm/udbg.h> 48 - #include <asm/kdump.h> 49 47 50 48 #include "plpar_wrappers.h" 51 49 ··· 292 292 293 293 tbl->it_base = (unsigned long)__va(*basep); 294 294 295 - if (!__kdump_flag) 295 + if (!is_kdump_kernel()) 296 296 memset((void *)tbl->it_base, 0, *sizep); 297 297 298 298 tbl->it_busno = phb->bus->number;
+2
arch/powerpc/platforms/pseries/pci_dlpar.c
··· 189 189 { 190 190 struct pci_controller *phb; 191 191 int primary; 192 + struct pci_bus *b; 192 193 193 194 primary = list_empty(&hose_list); 194 195 phb = pcibios_alloc_controller(dn); ··· 204 203 eeh_add_device_tree_early(dn); 205 204 206 205 scan_phb(phb); 206 + pcibios_allocate_bus_resources(phb->bus); 207 207 pcibios_fixup_new_pci_devices(phb->bus); 208 208 pci_bus_add_devices(phb->bus); 209 209 eeh_add_device_tree_late(phb->bus);
+55 -4
arch/powerpc/sysdev/mpic.c
··· 563 563 564 564 #endif /* CONFIG_MPIC_U3_HT_IRQS */ 565 565 566 + #ifdef CONFIG_SMP 567 + static int irq_choose_cpu(unsigned int virt_irq) 568 + { 569 + cpumask_t mask = irq_desc[virt_irq].affinity; 570 + int cpuid; 571 + 572 + if (cpus_equal(mask, CPU_MASK_ALL)) { 573 + static int irq_rover; 574 + static DEFINE_SPINLOCK(irq_rover_lock); 575 + unsigned long flags; 576 + 577 + /* Round-robin distribution... */ 578 + do_round_robin: 579 + spin_lock_irqsave(&irq_rover_lock, flags); 580 + 581 + while (!cpu_online(irq_rover)) { 582 + if (++irq_rover >= NR_CPUS) 583 + irq_rover = 0; 584 + } 585 + cpuid = irq_rover; 586 + do { 587 + if (++irq_rover >= NR_CPUS) 588 + irq_rover = 0; 589 + } while (!cpu_online(irq_rover)); 590 + 591 + spin_unlock_irqrestore(&irq_rover_lock, flags); 592 + } else { 593 + cpumask_t tmp; 594 + 595 + cpus_and(tmp, cpu_online_map, mask); 596 + 597 + if (cpus_empty(tmp)) 598 + goto do_round_robin; 599 + 600 + cpuid = first_cpu(tmp); 601 + } 602 + 603 + return cpuid; 604 + } 605 + #else 606 + static int irq_choose_cpu(unsigned int virt_irq) 607 + { 608 + return hard_smp_processor_id(); 609 + } 610 + #endif 566 611 567 612 #define mpic_irq_to_hw(virq) ((unsigned int)irq_map[virq].hwirq) 568 613 ··· 822 777 struct mpic *mpic = mpic_from_irq(irq); 823 778 unsigned int src = mpic_irq_to_hw(irq); 824 779 825 - cpumask_t tmp; 780 + if (mpic->flags & MPIC_SINGLE_DEST_CPU) { 781 + int cpuid = irq_choose_cpu(irq); 826 782 827 - cpus_and(tmp, cpumask, cpu_online_map); 783 + mpic_irq_write(src, MPIC_INFO(IRQ_DESTINATION), 1 << cpuid); 784 + } else { 785 + cpumask_t tmp; 828 786 829 - mpic_irq_write(src, MPIC_INFO(IRQ_DESTINATION), 830 - mpic_physmask(cpus_addr(tmp)[0])); 787 + cpus_and(tmp, cpumask, cpu_online_map); 788 + 789 + mpic_irq_write(src, MPIC_INFO(IRQ_DESTINATION), 790 + mpic_physmask(cpus_addr(tmp)[0])); 791 + } 831 792 } 832 793 833 794 static unsigned int mpic_type_to_vecpri(struct mpic *mpic, unsigned int type)
+2
arch/powerpc/xmon/xmon.c
··· 1353 1353 1354 1354 static void print_bug_trap(struct pt_regs *regs) 1355 1355 { 1356 + #ifdef CONFIG_BUG 1356 1357 const struct bug_entry *bug; 1357 1358 unsigned long addr; 1358 1359 ··· 1374 1373 #else 1375 1374 printf("kernel BUG at %p!\n", (void *)bug->bug_addr); 1376 1375 #endif 1376 + #endif /* CONFIG_BUG */ 1377 1377 } 1378 1378 1379 1379 static void excprint(struct pt_regs *fp)
+10 -1
drivers/of/device.c
··· 105 105 int of_device_register(struct of_device *ofdev) 106 106 { 107 107 BUG_ON(ofdev->node == NULL); 108 - return device_register(&ofdev->dev); 108 + 109 + device_initialize(&ofdev->dev); 110 + 111 + /* device_add will assume that this device is on the same node as 112 + * the parent. If there is no parent defined, set the node 113 + * explicitly */ 114 + if (!ofdev->dev.parent) 115 + set_dev_node(&ofdev->dev, of_node_to_nid(ofdev->node)); 116 + 117 + return device_add(&ofdev->dev); 109 118 } 110 119 EXPORT_SYMBOL(of_device_register); 111 120