Merge branch 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus

* 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus: (53 commits)
[MIPS] sparsemem: fix crash in show_mem
[MIPS] vr41xx: Update workpad setup function
[MIPS] vr41xx: Update e55 setup function
[MIPS] vr41xx: Removed old v2.4 VRC4173 driver
[MIPS] vr41xx: Move IRQ numbers to asm-mips/vr41xx/irq.h
[MIPS] MIPSsim: Build fix, rename sim_timer_setup -> plat_timer_setup.
[MIPS] Remove unused code.
[MIPS] IP22 Fix brown paper bag in RTC code.
[MIPS] Atlas, Malta, SEAD: Don't disable interrupts in mips_time_init().
[MIPS] Replace board_timer_setup function pointer by plat_timer_setup.
[MIPS] Nuke redeclarations of board_time_init.
[MIPS] Remove redeclarations of setup_irq().
[MIPS] Nuke redeclarations of board_timer_setup.
[MIPS] Print out TLB handler assembly for debugging.
[MIPS] SMTC: Reformat to Linux style.
[MIPS] MIPSsim: Delete redeclaration of ll_local_timer_interrupt.
[MIPS] IP27: Reformatting.
[MIPS] IP27: Invoke setup_irq for timer interrupt so proc stats will be shown.
[MIPS] IP27: irq_chip startup method returns unsigned int.
[MIPS] IP27: struct irq_desc member handler was renamed to chip.
...

+3039 -3237
+4 -6
Documentation/mips/time.README
··· 65 65 1. (optional) set up RTC routines 66 66 2. (optional) calibrate and set the mips_counter_frequency 67 67 68 - b) board_timer_setup - a function pointer. Invoked at the end of time_init() 68 + b) plat_timer_setup - a function pointer. Invoked at the end of time_init() 69 69 1. (optional) over-ride any decisions made in time_init() 70 70 2. set up the irqaction for timer interrupt. 71 71 3. enable the timer interrupt ··· 116 116 117 117 If you supply board_time_init(), set the function poointer. 118 118 119 - Set the function pointer board_timer_setup() (mandatory) 120 119 121 - 122 - Step 3: implement rtc routines, board_time_init() and board_timer_setup() 120 + Step 3: implement rtc routines, board_time_init() and plat_timer_setup() 123 121 if needed. 124 122 125 - board_time_init() - 123 + board_time_init() - 126 124 a) (optional) set up RTC routines, 127 125 b) (optional) calibrate and set the mips_counter_frequency 128 126 (only needed if you intended to use fixed_rate_gettimeoffset 129 127 or use cpu counter as timer interrupt source) 130 128 131 - board_timer_setup() - 129 + plat_timer_setup() - 132 130 a) (optional) over-write any choices made above by time_init(). 133 131 b) machine specific code should setup the timer irqaction. 134 132 c) enable the timer interrupt
+9 -1
arch/mips/Kconfig
··· 480 480 select SYS_SUPPORTS_32BIT_KERNEL 481 481 select SYS_SUPPORTS_64BIT_KERNEL 482 482 select SYS_SUPPORTS_BIG_ENDIAN 483 + select ARCH_SPARSEMEM_ENABLE 483 484 help 484 485 The Ocelot is a MIPS-based Single Board Computer (SBC) made by 485 486 Momentum Computer <http://www.momenco.com/>. ··· 557 556 select SYS_HAS_CPU_MIPS32_R1 558 557 select SYS_SUPPORTS_32BIT_KERNEL 559 558 select SYS_SUPPORTS_BIG_ENDIAN 559 + select ARCH_SPARSEMEM_ENABLE 560 560 help 561 561 Qemu is a software emulator which among other architectures also 562 562 can simulate a MIPS32 4Kc system. This patch adds support for the ··· 596 594 select SYS_SUPPORTS_32BIT_KERNEL 597 595 select SYS_SUPPORTS_64BIT_KERNEL 598 596 select SYS_SUPPORTS_BIG_ENDIAN 599 - select SYS_SUPPORTS_SMP 600 597 help 601 598 This are the SGI Indy, Challenge S and Indigo2, as well as certain 602 599 OEM variants like the Tandem CMN B006S. To compile a Linux kernel ··· 1688 1687 for architectures which are either NUMA (Non-Uniform Memory Access) 1689 1688 or have huge holes in the physical address space for other reasons. 1690 1689 See <file:Documentation/vm/numa> for more. 1690 + 1691 + config ARCH_SPARSEMEM_ENABLE 1692 + bool 1693 + 1694 + config ARCH_SPARSEMEM_ENABLE 1695 + bool 1696 + select SPARSEMEM_STATIC 1691 1697 1692 1698 config NUMA 1693 1699 bool "NUMA Support"
+4
arch/mips/Kconfig.debug
··· 1 1 menu "Kernel hacking" 2 2 3 + config TRACE_IRQFLAGS_SUPPORT 4 + bool 5 + default y 6 + 3 7 source "lib/Kconfig.debug" 4 8 5 9 config CROSSCOMPILE
+2 -4
arch/mips/Makefile
··· 712 712 vmlinux.bin: $(vmlinux-32) 713 713 +@$(call makeboot,$@) 714 714 715 - vmlinux.ecoff vmlinux.rm200: $(vmlinux-32) 715 + vmlinux.ecoff: $(vmlinux-32) 716 716 +@$(call makeboot,$@) 717 717 718 718 vmlinux.srec: $(vmlinux-32) 719 719 +@$(call makeboot,$@) 720 720 721 721 CLEAN_FILES += vmlinux.ecoff \ 722 - vmlinux.srec \ 723 - vmlinux.rm200.tmp \ 724 - vmlinux.rm200 722 + vmlinux.srec 725 723 726 724 archclean: 727 725 @$(MAKE) $(clean)=arch/mips/boot
+4 -4
arch/mips/au1000/common/irq.c
··· 251 251 } 252 252 253 253 254 - static struct hw_interrupt_type rise_edge_irq_type = { 254 + static struct irq_chip rise_edge_irq_type = { 255 255 .typename = "Au1000 Rise Edge", 256 256 .startup = startup_irq, 257 257 .shutdown = shutdown_irq, ··· 261 261 .end = end_irq, 262 262 }; 263 263 264 - static struct hw_interrupt_type fall_edge_irq_type = { 264 + static struct irq_chip fall_edge_irq_type = { 265 265 .typename = "Au1000 Fall Edge", 266 266 .startup = startup_irq, 267 267 .shutdown = shutdown_irq, ··· 271 271 .end = end_irq, 272 272 }; 273 273 274 - static struct hw_interrupt_type either_edge_irq_type = { 274 + static struct irq_chip either_edge_irq_type = { 275 275 .typename = "Au1000 Rise or Fall Edge", 276 276 .startup = startup_irq, 277 277 .shutdown = shutdown_irq, ··· 281 281 .end = end_irq, 282 282 }; 283 283 284 - static struct hw_interrupt_type level_irq_type = { 284 + static struct irq_chip level_irq_type = { 285 285 .typename = "Au1000 Level", 286 286 .startup = startup_irq, 287 287 .shutdown = shutdown_irq,
+13 -11
arch/mips/au1000/common/prom.c
··· 1 1 /* 2 2 * 3 3 * BRIEF MODULE DESCRIPTION 4 - * PROM library initialisation code, assuming YAMON is the boot loader. 4 + * PROM library initialisation code, supports YAMON and U-Boot. 5 5 * 6 6 * Copyright 2000, 2001, 2006 MontaVista Software Inc. 7 7 * Author: MontaVista Software, Inc. ··· 46 46 extern int prom_argc; 47 47 extern char **prom_argv, **prom_envp; 48 48 49 - typedef struct 50 - { 51 - char *name; 52 - char *val; 53 - } t_env_var; 54 - 55 49 56 50 char * prom_getcmdline(void) 57 51 { ··· 78 84 { 79 85 /* 80 86 * Return a pointer to the given environment variable. 87 + * YAMON uses "name", "value" pairs, while U-Boot uses "name=value". 81 88 */ 82 89 83 - t_env_var *env = (t_env_var *)prom_envp; 90 + char **env = prom_envp; 91 + int i = strlen(envname); 92 + int yamon = (*env && strchr(*env, '=') == NULL); 84 93 85 - while (env->name) { 86 - if (strcmp(envname, env->name) == 0) 87 - return env->val; 94 + while (*env) { 95 + if (yamon) { 96 + if (strcmp(envname, *env++) == 0) 97 + return *env; 98 + } else { 99 + if (strncmp(envname, *env, i) == 0 && (*env)[i] == '=') 100 + return *env + i + 1; 101 + } 88 102 env++; 89 103 } 90 104 return NULL;
-2
arch/mips/au1000/common/setup.c
··· 51 51 extern void au1x_time_init(void); 52 52 extern void au1x_timer_setup(struct irqaction *irq); 53 53 extern void au1xxx_time_init(void); 54 - extern void au1xxx_timer_setup(struct irqaction *irq); 55 54 extern void set_cpuspec(void); 56 55 57 56 void __init plat_mem_setup(void) ··· 122 123 _machine_halt = au1000_halt; 123 124 pm_power_off = au1000_power_off; 124 125 board_time_init = au1xxx_time_init; 125 - board_timer_setup = au1xxx_timer_setup; 126 126 127 127 /* IO/MEM resources. */ 128 128 set_io_port_base(0);
+1 -1
arch/mips/au1000/common/time.c
··· 383 383 } 384 384 #endif 385 385 386 - void __init au1xxx_timer_setup(struct irqaction *irq) 386 + void __init plat_timer_setup(struct irqaction *irq) 387 387 { 388 388 unsigned int est_freq; 389 389
-8
arch/mips/au1000/csb250/Makefile
··· 1 - # 2 - # Copyright 2002 Cogent Computer Systems 3 - # dan@embeddededge.com 4 - # 5 - # Makefile for the Cogent CSB250 Au1500 board. Copied from Pb1500. 6 - # 7 - 8 - obj-y := init.o board_setup.o irqmap.o
-238
arch/mips/au1000/csb250/board_setup.c
··· 1 - /* 2 - * 3 - * BRIEF MODULE DESCRIPTION 4 - * Cogent CSB250 board setup. 5 - * 6 - * Copyright 2002 Cogent Computer Systems, Inc. 7 - * dan@embeddededge.com 8 - * 9 - * This program is free software; you can redistribute it and/or modify it 10 - * under the terms of the GNU General Public License as published by the 11 - * Free Software Foundation; either version 2 of the License, or (at your 12 - * option) any later version. 13 - * 14 - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 15 - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 16 - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN 17 - * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 18 - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 19 - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF 20 - * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 21 - * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 22 - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 23 - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 - * 25 - * You should have received a copy of the GNU General Public License along 26 - * with this program; if not, write to the Free Software Foundation, Inc., 27 - * 675 Mass Ave, Cambridge, MA 02139, USA. 28 - */ 29 - #include <linux/init.h> 30 - #include <linux/sched.h> 31 - #include <linux/ioport.h> 32 - #include <linux/mm.h> 33 - #include <linux/console.h> 34 - #include <linux/mc146818rtc.h> 35 - #include <linux/delay.h> 36 - 37 - #include <asm/cpu.h> 38 - #include <asm/bootinfo.h> 39 - #include <asm/irq.h> 40 - #include <asm/keyboard.h> 41 - #include <asm/mipsregs.h> 42 - #include <asm/reboot.h> 43 - #include <asm/pgtable.h> 44 - #include <asm/au1000.h> 45 - #include <asm/csb250.h> 46 - 47 - extern int (*board_pci_idsel)(unsigned int devsel, int assert); 48 - int csb250_pci_idsel(unsigned int devsel, int assert); 49 - 50 - void __init board_setup(void) 51 - { 52 - u32 pin_func, pin_val; 53 - u32 sys_freqctrl, sys_clksrc; 54 - 55 - 56 - // set AUX clock to 12MHz * 8 = 96 MHz 57 - au_writel(8, SYS_AUXPLL); 58 - au_writel(0, SYS_PINSTATERD); 59 - udelay(100); 60 - 61 - #if defined (CONFIG_USB_OHCI) || defined (CONFIG_AU1X00_USB_DEVICE) 62 - 63 - /* GPIO201 is input for PCMCIA card detect */ 64 - /* GPIO203 is input for PCMCIA interrupt request */ 65 - au_writel(au_readl(GPIO2_DIR) & (u32)(~((1<<1)|(1<<3))), GPIO2_DIR); 66 - 67 - /* zero and disable FREQ2 */ 68 - sys_freqctrl = au_readl(SYS_FREQCTRL0); 69 - sys_freqctrl &= ~0xFFF00000; 70 - au_writel(sys_freqctrl, SYS_FREQCTRL0); 71 - 72 - /* zero and disable USBH/USBD clocks */ 73 - sys_clksrc = au_readl(SYS_CLKSRC); 74 - sys_clksrc &= ~0x00007FE0; 75 - au_writel(sys_clksrc, SYS_CLKSRC); 76 - 77 - sys_freqctrl = au_readl(SYS_FREQCTRL0); 78 - sys_freqctrl &= ~0xFFF00000; 79 - 80 - sys_clksrc = au_readl(SYS_CLKSRC); 81 - sys_clksrc &= ~0x00007FE0; 82 - 83 - // FREQ2 = aux/2 = 48 MHz 84 - sys_freqctrl |= ((0<<22) | (1<<21) | (1<<20)); 85 - au_writel(sys_freqctrl, SYS_FREQCTRL0); 86 - 87 - /* 88 - * Route 48MHz FREQ2 into USB Host and/or Device 89 - */ 90 - #ifdef CONFIG_USB_OHCI 91 - sys_clksrc |= ((4<<12) | (0<<11) | (0<<10)); 92 - #endif 93 - #ifdef CONFIG_AU1X00_USB_DEVICE 94 - sys_clksrc |= ((4<<7) | (0<<6) | (0<<5)); 95 - #endif 96 - au_writel(sys_clksrc, SYS_CLKSRC); 97 - 98 - 99 - pin_func = au_readl(SYS_PINFUNC) & (u32)(~0x8000); 100 - #ifndef CONFIG_AU1X00_USB_DEVICE 101 - // 2nd USB port is USB host 102 - pin_func |= 0x8000; 103 - #endif 104 - au_writel(pin_func, SYS_PINFUNC); 105 - #endif // defined (CONFIG_USB_OHCI) || defined (CONFIG_AU1X00_USB_DEVICE) 106 - 107 - /* Configure GPIO2....it's used by PCI among other things. 108 - */ 109 - 110 - /* Make everything but GP200 (PCI RST) an input until we get 111 - * the pins set correctly. 112 - */ 113 - au_writel(0x00000001, GPIO2_DIR); 114 - 115 - /* Set the pins used for output. 116 - * A zero bit will leave PCI reset, LEDs off, power up USB, 117 - * IDSEL disabled. 118 - */ 119 - pin_val = ((3 << 30) | (7 << 19) | (1 << 17) | (1 << 16)); 120 - au_writel(pin_val, GPIO2_OUTPUT); 121 - 122 - /* Set the output direction. 123 - */ 124 - pin_val = ((3 << 14) | (7 << 3) | (1 << 1) | (1 << 0)); 125 - au_writel(pin_val, GPIO2_DIR); 126 - 127 - #ifdef CONFIG_PCI 128 - /* Use FREQ1 for the PCI output clock. We use the 129 - * CPU clock of 384 MHz divided by 12 to get 32 MHz PCI. 130 - * If Michael changes the CPU speed, we need to adjust 131 - * that here as well :-). 132 - */ 133 - 134 - /* zero and disable FREQ1 135 - */ 136 - sys_freqctrl = au_readl(SYS_FREQCTRL0); 137 - sys_freqctrl &= ~0x000ffc00; 138 - au_writel(sys_freqctrl, SYS_FREQCTRL0); 139 - 140 - /* zero and disable PCI clock 141 - */ 142 - sys_clksrc = au_readl(SYS_CLKSRC); 143 - sys_clksrc &= ~0x000f8000; 144 - au_writel(sys_clksrc, SYS_CLKSRC); 145 - 146 - /* Get current values (which really should match above). 147 - */ 148 - sys_freqctrl = au_readl(SYS_FREQCTRL0); 149 - sys_freqctrl &= ~0x000ffc00; 150 - 151 - sys_clksrc = au_readl(SYS_CLKSRC); 152 - sys_clksrc &= ~0x000f8000; 153 - 154 - /* FREQ1 = cpu/12 = 32 MHz 155 - */ 156 - sys_freqctrl |= ((5<<12) | (1<<11) | (0<<10)); 157 - au_writel(sys_freqctrl, SYS_FREQCTRL0); 158 - 159 - /* Just connect the clock without further dividing. 160 - */ 161 - sys_clksrc |= ((3<<17) | (0<<16) | (0<<15)); 162 - au_writel(sys_clksrc, SYS_CLKSRC); 163 - 164 - udelay(1); 165 - 166 - /* Now that clocks should be running, take PCI out of reset. 167 - */ 168 - pin_val = au_readl(GPIO2_OUTPUT); 169 - pin_val |= ((1 << 16) | 1); 170 - au_writel(pin_val, GPIO2_OUTPUT); 171 - 172 - // Setup PCI bus controller 173 - au_writel(0, Au1500_PCI_CMEM); 174 - au_writel(0x00003fff, Au1500_CFG_BASE); 175 - 176 - /* We run big endian without any of the software byte swapping, 177 - * so configure the PCI bridge to help us out. 178 - */ 179 - au_writel(0xf | (2<<6) | (1<<5) | (1<<4), Au1500_PCI_CFG); 180 - 181 - au_writel(0xf0000000, Au1500_PCI_MWMASK_DEV); 182 - au_writel(0, Au1500_PCI_MWBASE_REV_CCL); 183 - au_writel(0x02a00356, Au1500_PCI_STATCMD); 184 - au_writel(0x00003c04, Au1500_PCI_HDRTYPE); 185 - au_writel(0x00000008, Au1500_PCI_MBAR); 186 - au_sync(); 187 - 188 - board_pci_idsel = csb250_pci_idsel; 189 - #endif 190 - 191 - /* Enable sys bus clock divider when IDLE state or no bus activity. */ 192 - au_writel(au_readl(SYS_POWERCTRL) | (0x3 << 5), SYS_POWERCTRL); 193 - 194 - #ifdef CONFIG_RTC 195 - // Enable the RTC if not already enabled 196 - if (!(au_readl(0xac000028) & 0x20)) { 197 - printk("enabling clock ...\n"); 198 - au_writel((au_readl(0xac000028) | 0x20), 0xac000028); 199 - } 200 - // Put the clock in BCD mode 201 - if (readl(0xac00002C) & 0x4) { /* reg B */ 202 - au_writel(au_readl(0xac00002c) & ~0x4, 0xac00002c); 203 - au_sync(); 204 - } 205 - #endif 206 - } 207 - 208 - /* The IDSEL is selected in the GPIO2 register. We will make device 209 - * 12 appear in slot 0 and device 13 appear in slot 1. 210 - */ 211 - int 212 - csb250_pci_idsel(unsigned int devsel, int assert) 213 - { 214 - int retval; 215 - unsigned int gpio2_pins; 216 - 217 - retval = 1; 218 - 219 - /* First, disable both selects, then assert the one requested. 220 - */ 221 - au_writel(0xc000c000, GPIO2_OUTPUT); 222 - au_sync(); 223 - 224 - if (assert) { 225 - if (devsel == 12) 226 - gpio2_pins = 0x40000000; 227 - else if (devsel == 13) 228 - gpio2_pins = 0x80000000; 229 - else { 230 - gpio2_pins = 0xc000c000; 231 - retval = 0; 232 - } 233 - au_writel(gpio2_pins, GPIO2_OUTPUT); 234 - } 235 - au_sync(); 236 - 237 - return retval; 238 - }
-94
arch/mips/au1000/csb250/init.c
··· 1 - /* 2 - * 3 - * BRIEF MODULE DESCRIPTION 4 - * Cogent CSB250 board setup 5 - * 6 - * Copyright 2002 Cogent Computer Systems, Inc. 7 - * dan@embeddededge.com 8 - * 9 - * This program is free software; you can redistribute it and/or modify it 10 - * under the terms of the GNU General Public License as published by the 11 - * Free Software Foundation; either version 2 of the License, or (at your 12 - * option) any later version. 13 - * 14 - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 15 - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 16 - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN 17 - * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 18 - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 19 - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF 20 - * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 21 - * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 22 - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 23 - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 - * 25 - * You should have received a copy of the GNU General Public License along 26 - * with this program; if not, write to the Free Software Foundation, Inc., 27 - * 675 Mass Ave, Cambridge, MA 02139, USA. 28 - */ 29 - 30 - #include <linux/init.h> 31 - #include <linux/mm.h> 32 - #include <linux/sched.h> 33 - #include <linux/bootmem.h> 34 - #include <asm/addrspace.h> 35 - #include <asm/bootinfo.h> 36 - #include <linux/string.h> 37 - #include <linux/kernel.h> 38 - 39 - int prom_argc; 40 - char **prom_argv, **prom_envp; 41 - extern void __init prom_init_cmdline(void); 42 - extern char *prom_getenv(char *envname); 43 - 44 - /* When we get initrd working someday......... 45 - */ 46 - int my_initrd_start, my_initrd_size; 47 - 48 - /* Start arguments and environment. 49 - */ 50 - static char *csb_env[2]; 51 - static char *csb_arg[4]; 52 - static char *arg1 = "console=ttyS3,38400"; 53 - static char *arg2 = "root=/dev/nfs rw ip=any"; 54 - static char *env1 = "ethaddr=00:30:23:50:00:00"; 55 - 56 - const char *get_system_type(void) 57 - { 58 - return "Cogent CSB250"; 59 - } 60 - 61 - int __init prom_init(int argc, char **argv, char **envp, int *prom_vec) 62 - { 63 - unsigned char *memsize_str; 64 - unsigned long memsize; 65 - 66 - /* We use a0 and a1 to pass initrd start and size. 67 - */ 68 - if (((unsigned int) argc > 0) && ((uint)argv > 0)) { 69 - my_initrd_start = (unsigned int)argc; 70 - my_initrd_size = (unsigned int)argv; 71 - } 72 - 73 - /* First argv is ignored. 74 - */ 75 - prom_argc = 3; 76 - prom_argv = csb_arg; 77 - prom_envp = csb_env; 78 - csb_arg[1] = arg1; 79 - csb_arg[2] = arg2; 80 - csb_env[0] = env1; 81 - 82 - mips_machgroup = MACH_GROUP_ALCHEMY; 83 - mips_machtype = MACH_CSB250; 84 - 85 - prom_init_cmdline(); 86 - memsize_str = prom_getenv("memsize"); 87 - if (!memsize_str) { 88 - memsize = 0x02000000; 89 - } else { 90 - memsize = simple_strtol(memsize_str, NULL, 0); 91 - } 92 - add_memory_region(0, memsize, BOOT_MEM_RAM); 93 - return 0; 94 - }
-60
arch/mips/au1000/csb250/irqmap.c
··· 1 - /* 2 - * BRIEF MODULE DESCRIPTION 3 - * Au1xxx irq map table 4 - * 5 - * Copyright 2003 Embedded Edge, LLC 6 - * dan@embeddededge.com 7 - * 8 - * This program is free software; you can redistribute it and/or modify it 9 - * under the terms of the GNU General Public License as published by the 10 - * Free Software Foundation; either version 2 of the License, or (at your 11 - * option) any later version. 12 - * 13 - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 14 - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 15 - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN 16 - * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 17 - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 18 - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF 19 - * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 20 - * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 21 - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 22 - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 - * 24 - * You should have received a copy of the GNU General Public License along 25 - * with this program; if not, write to the Free Software Foundation, Inc., 26 - * 675 Mass Ave, Cambridge, MA 02139, USA. 27 - */ 28 - #include <linux/errno.h> 29 - #include <linux/init.h> 30 - #include <linux/irq.h> 31 - #include <linux/kernel_stat.h> 32 - #include <linux/module.h> 33 - #include <linux/signal.h> 34 - #include <linux/sched.h> 35 - #include <linux/types.h> 36 - #include <linux/interrupt.h> 37 - #include <linux/ioport.h> 38 - #include <linux/timex.h> 39 - #include <linux/slab.h> 40 - #include <linux/random.h> 41 - #include <linux/delay.h> 42 - #include <linux/bitops.h> 43 - 44 - #include <asm/bootinfo.h> 45 - #include <asm/io.h> 46 - #include <asm/mipsregs.h> 47 - #include <asm/system.h> 48 - #include <asm/au1000.h> 49 - 50 - au1xxx_irq_map_t __initdata au1xxx_irq_map[] = { 51 - 52 - { AU1500_GPIO_204, INTC_INT_HIGH_LEVEL, 0}, 53 - { AU1500_GPIO_201, INTC_INT_LOW_LEVEL, 0 }, 54 - { AU1500_GPIO_202, INTC_INT_LOW_LEVEL, 0 }, 55 - { AU1500_GPIO_203, INTC_INT_LOW_LEVEL, 0 }, 56 - { AU1500_GPIO_205, INTC_INT_LOW_LEVEL, 0 }, 57 - { AU1500_GPIO_207, INTC_INT_LOW_LEVEL, 0 }, 58 - }; 59 - 60 - int __initdata au1xxx_nr_irqs = ARRAY_SIZE(au1xxx_irq_map);
-9
arch/mips/au1000/hydrogen3/Makefile
··· 1 - # 2 - # Copyright 2000 MontaVista Software Inc. 3 - # Author: MontaVista Software, Inc. 4 - # ppopov@mvista.com or source@mvista.com 5 - # 6 - # Makefile for the Alchemy Semiconductor PB1000 board. 7 - # 8 - 9 - obj-y := init.o board_setup.o irqmap.o
-69
arch/mips/au1000/hydrogen3/board_setup.c
··· 1 - /* 2 - * 3 - * BRIEF MODULE DESCRIPTION 4 - * Alchemy Db1x00 board setup. 5 - * 6 - * Copyright 2000 MontaVista Software Inc. 7 - * Author: MontaVista Software, Inc. 8 - * ppopov@mvista.com or source@mvista.com 9 - * 10 - * This program is free software; you can redistribute it and/or modify it 11 - * under the terms of the GNU General Public License as published by the 12 - * Free Software Foundation; either version 2 of the License, or (at your 13 - * option) any later version. 14 - * 15 - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 16 - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 17 - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN 18 - * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 19 - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 20 - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF 21 - * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 22 - * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 24 - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 - * 26 - * You should have received a copy of the GNU General Public License along 27 - * with this program; if not, write to the Free Software Foundation, Inc., 28 - * 675 Mass Ave, Cambridge, MA 02139, USA. 29 - */ 30 - #include <linux/init.h> 31 - #include <linux/sched.h> 32 - #include <linux/ioport.h> 33 - #include <linux/mm.h> 34 - #include <linux/console.h> 35 - #include <linux/mc146818rtc.h> 36 - #include <linux/delay.h> 37 - 38 - #include <asm/cpu.h> 39 - #include <asm/bootinfo.h> 40 - #include <asm/irq.h> 41 - #include <asm/keyboard.h> 42 - #include <asm/mipsregs.h> 43 - #include <asm/reboot.h> 44 - #include <asm/pgtable.h> 45 - #include <asm/au1000.h> 46 - 47 - void board_reset (void) 48 - { 49 - } 50 - 51 - void __init board_setup(void) 52 - { 53 - u32 pin_func; 54 - 55 - #ifdef CONFIG_AU1X00_USB_DEVICE 56 - // 2nd USB port is USB device 57 - pin_func = au_readl(SYS_PINFUNC) & (u32)(~0x8000); 58 - au_writel(pin_func, SYS_PINFUNC); 59 - #endif 60 - 61 - #if defined(CONFIG_IRDA) && (defined(CONFIG_SOC_AU1000) || defined(CONFIG_SOC_AU1100)) 62 - /* set IRFIRSEL instead of GPIO15 */ 63 - pin_func = au_readl(SYS_PINFUNC) | (u32)((1<<8)); 64 - au_writel(pin_func, SYS_PINFUNC); 65 - au_sync(); 66 - #endif 67 - 68 - printk("AMD Alchemy Hydrogen3 Board\n"); 69 - }
-75
arch/mips/au1000/hydrogen3/init.c
··· 1 - /* 2 - * 3 - * BRIEF MODULE DESCRIPTION 4 - * PB1000 board setup 5 - * 6 - * Copyright 2001 MontaVista Software Inc. 7 - * Author: MontaVista Software, Inc. 8 - * ppopov@mvista.com or source@mvista.com 9 - * 10 - * This program is free software; you can redistribute it and/or modify it 11 - * under the terms of the GNU General Public License as published by the 12 - * Free Software Foundation; either version 2 of the License, or (at your 13 - * option) any later version. 14 - * 15 - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 16 - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 17 - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN 18 - * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 19 - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 20 - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF 21 - * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 22 - * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 24 - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 - * 26 - * You should have received a copy of the GNU General Public License along 27 - * with this program; if not, write to the Free Software Foundation, Inc., 28 - * 675 Mass Ave, Cambridge, MA 02139, USA. 29 - */ 30 - 31 - #include <linux/init.h> 32 - #include <linux/mm.h> 33 - #include <linux/sched.h> 34 - #include <linux/bootmem.h> 35 - #include <asm/addrspace.h> 36 - #include <asm/bootinfo.h> 37 - #include <linux/string.h> 38 - #include <linux/kernel.h> 39 - 40 - int prom_argc; 41 - char **prom_argv, **prom_envp; 42 - extern void __init prom_init_cmdline(void); 43 - extern char *prom_getenv(char *envname); 44 - 45 - const char *get_system_type(void) 46 - { 47 - #ifdef CONFIG_MIPS_BOSPORUS 48 - return "Alchemy Bosporus Gateway Reference"; 49 - #else 50 - return "Alchemy Db1x00"; 51 - #endif 52 - } 53 - 54 - int __init prom_init(int argc, char **argv, char **envp, int *prom_vec) 55 - { 56 - unsigned char *memsize_str; 57 - unsigned long memsize; 58 - 59 - prom_argc = argc; 60 - prom_argv = argv; 61 - prom_envp = envp; 62 - 63 - mips_machgroup = MACH_GROUP_ALCHEMY; 64 - mips_machtype = MACH_DB1000; /* set the platform # */ 65 - prom_init_cmdline(); 66 - 67 - memsize_str = prom_getenv("memsize"); 68 - if (!memsize_str) { 69 - memsize = 0x04000000; 70 - } else { 71 - memsize = simple_strtol(memsize_str, NULL, 0); 72 - } 73 - add_memory_region(0, memsize, BOOT_MEM_RAM); 74 - return 0; 75 - }
-56
arch/mips/au1000/hydrogen3/irqmap.c
··· 1 - /* 2 - * BRIEF MODULE DESCRIPTION 3 - * Au1xxx irq map table 4 - * 5 - * Copyright 2003 Embedded Edge, LLC 6 - * dan@embeddededge.com 7 - * 8 - * This program is free software; you can redistribute it and/or modify it 9 - * under the terms of the GNU General Public License as published by the 10 - * Free Software Foundation; either version 2 of the License, or (at your 11 - * option) any later version. 12 - * 13 - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 14 - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 15 - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN 16 - * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 17 - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 18 - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF 19 - * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 20 - * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 21 - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 22 - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 - * 24 - * You should have received a copy of the GNU General Public License along 25 - * with this program; if not, write to the Free Software Foundation, Inc., 26 - * 675 Mass Ave, Cambridge, MA 02139, USA. 27 - */ 28 - #include <linux/errno.h> 29 - #include <linux/init.h> 30 - #include <linux/irq.h> 31 - #include <linux/kernel_stat.h> 32 - #include <linux/module.h> 33 - #include <linux/signal.h> 34 - #include <linux/sched.h> 35 - #include <linux/types.h> 36 - #include <linux/interrupt.h> 37 - #include <linux/ioport.h> 38 - #include <linux/timex.h> 39 - #include <linux/slab.h> 40 - #include <linux/random.h> 41 - #include <linux/delay.h> 42 - #include <linux/bitops.h> 43 - 44 - #include <asm/bootinfo.h> 45 - #include <asm/io.h> 46 - #include <asm/mipsregs.h> 47 - #include <asm/system.h> 48 - #include <asm/au1000.h> 49 - 50 - au1xxx_irq_map_t __initdata au1xxx_irq_map[] = { 51 - 52 - /* { AU1500_GPIO_205, INTC_INT_LOW_LEVEL, 0 }, */ 53 - { AU1000_GPIO_21, INTC_INT_LOW_LEVEL, 0 }, 54 - }; 55 - 56 - int __initdata au1xxx_nr_irqs = ARRAY_SIZE(au1xxx_irq_map);
+1 -1
arch/mips/au1000/pb1200/irqmap.c
··· 148 148 } 149 149 } 150 150 151 - static struct hw_interrupt_type external_irq_type = 151 + static struct irq_chip external_irq_type = 152 152 { 153 153 #ifdef CONFIG_MIPS_PB1200 154 154 "Pb1200 Ext",
-1
arch/mips/basler/excite/excite_dbg_io.c
··· 17 17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 18 */ 19 19 20 - #include <linux/config.h> 21 20 #include <linux/linkage.h> 22 21 #include <linux/init.h> 23 22 #include <linux/kernel.h>
-1
arch/mips/basler/excite/excite_device.c
··· 17 17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 18 */ 19 19 20 - #include <linux/config.h> 21 20 #include <linux/kernel.h> 22 21 #include <linux/init.h> 23 22 #include <linux/platform_device.h>
-1
arch/mips/basler/excite/excite_iodev.c
··· 17 17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 18 */ 19 19 20 - #include <linux/config.h> 21 20 #include <linux/compiler.h> 22 21 #include <linux/init.h> 23 22 #include <linux/module.h>
-1
arch/mips/basler/excite/excite_procfs.c
··· 19 19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 20 20 */ 21 21 22 - #include <linux/config.h> 23 22 #include <linux/proc_fs.h> 24 23 #include <linux/stat.h> 25 24 #include <asm/page.h>
-1
arch/mips/basler/excite/excite_prom.c
··· 18 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 19 19 */ 20 20 21 - #include <linux/config.h> 22 21 #include <linux/init.h> 23 22 #include <linux/sched.h> 24 23 #include <linux/mm.h>
+1 -3
arch/mips/basler/excite/excite_setup.c
··· 19 19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 20 20 */ 21 21 22 - #include <linux/config.h> 23 22 #include <linux/types.h> 24 23 #include <linux/kernel.h> 25 24 #include <linux/module.h> ··· 78 79 mips_hpt_frequency = EXCITE_CPU_EXT_CLOCK * mult / div / 2; 79 80 } 80 81 81 - static void excite_timer_setup(struct irqaction *irq) 82 + void __init plat_timer_setup(struct irqaction *irq) 82 83 { 83 84 /* The eXcite platform uses the alternate timer interrupt */ 84 85 set_c0_intcontrol(0x80); ··· 262 263 263 264 /* Set up timer initialization hooks */ 264 265 board_time_init = excite_timer_init; 265 - board_timer_setup = excite_timer_setup; 266 266 267 267 /* Set up the peripheral address map */ 268 268 *(boot_ocd_base + (LKB9 / sizeof (u32))) = 0;
+1 -3
arch/mips/cobalt/setup.c
··· 49 49 return "MIPS Cobalt"; 50 50 } 51 51 52 - static void __init cobalt_timer_setup(struct irqaction *irq) 52 + void __init plat_timer_setup(struct irqaction *irq) 53 53 { 54 54 /* Load timer value for 1KHz (TCLK is 50MHz) */ 55 55 GALILEO_OUTL(50*1000*1000 / 1000, GT_TC0_OFS); ··· 128 128 _machine_restart = cobalt_machine_restart; 129 129 _machine_halt = cobalt_machine_halt; 130 130 pm_power_off = cobalt_machine_power_off; 131 - 132 - board_timer_setup = cobalt_timer_setup; 133 131 134 132 set_io_port_base(CKSEG1ADDR(GT64111_IO_BASE)); 135 133
+62 -6
arch/mips/configs/atlas_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:50:55 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 09:59:39 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 CONFIG_MIPS_ATLAS=y 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 68 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 66 CONFIG_GENERIC_HWEIGHT=y 70 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 71 69 CONFIG_DMA_NONCOHERENT=y 72 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 71 CONFIG_MIPS_BONITO64=y ··· 129 125 CONFIG_BOARD_SCACHE=y 130 126 CONFIG_RM7000_CPU_SCACHE=y 131 127 CONFIG_CPU_HAS_PREFETCH=y 132 - # CONFIG_MIPS_MT is not set 128 + CONFIG_MIPS_MT_DISABLED=y 129 + # CONFIG_MIPS_MT_SMTC is not set 130 + # CONFIG_MIPS_MT_SMP is not set 131 + # CONFIG_MIPS_VPE_LOADER is not set 132 + CONFIG_SYS_SUPPORTS_MULTITHREADING=y 133 133 # CONFIG_64BIT_PHYS_ADDR is not set 134 134 CONFIG_CPU_HAS_LLSC=y 135 135 CONFIG_CPU_HAS_SYNC=y ··· 149 141 CONFIG_FLAT_NODE_MEM_MAP=y 150 142 # CONFIG_SPARSEMEM_STATIC is not set 151 143 CONFIG_SPLIT_PTLOCK_CPUS=4 144 + # CONFIG_RESOURCES_64BIT is not set 152 145 # CONFIG_HZ_48 is not set 153 146 CONFIG_HZ_100=y 154 147 # CONFIG_HZ_128 is not set ··· 162 153 CONFIG_PREEMPT_NONE=y 163 154 # CONFIG_PREEMPT_VOLUNTARY is not set 164 155 # CONFIG_PREEMPT is not set 156 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 165 157 166 158 # 167 159 # Code maturity level options ··· 194 184 CONFIG_BUG=y 195 185 CONFIG_ELF_CORE=y 196 186 CONFIG_BASE_FULL=y 187 + CONFIG_RT_MUTEXES=y 197 188 CONFIG_FUTEX=y 198 189 CONFIG_EPOLL=y 199 190 CONFIG_SHMEM=y 200 191 CONFIG_SLAB=y 192 + CONFIG_VM_EVENT_COUNTERS=y 201 193 # CONFIG_TINY_SHMEM is not set 202 194 CONFIG_BASE_SMALL=0 203 195 # CONFIG_SLOB is not set ··· 301 289 CONFIG_INET_IPCOMP=m 302 290 CONFIG_INET_XFRM_TUNNEL=m 303 291 CONFIG_INET_TUNNEL=m 292 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 293 + CONFIG_INET_XFRM_MODE_TUNNEL=m 304 294 CONFIG_INET_DIAG=y 305 295 CONFIG_INET_TCP_DIAG=y 306 296 # CONFIG_TCP_CONG_ADVANCED is not set ··· 350 336 CONFIG_INET6_IPCOMP=m 351 337 CONFIG_INET6_XFRM_TUNNEL=m 352 338 CONFIG_INET6_TUNNEL=m 339 + CONFIG_INET6_XFRM_MODE_TRANSPORT=m 340 + CONFIG_INET6_XFRM_MODE_TUNNEL=m 353 341 CONFIG_IPV6_TUNNEL=m 342 + CONFIG_NETWORK_SECMARK=y 354 343 CONFIG_NETFILTER=y 355 344 # CONFIG_NETFILTER_DEBUG is not set 356 345 CONFIG_BRIDGE_NETFILTER=y ··· 370 353 CONFIG_NETFILTER_XT_TARGET_MARK=m 371 354 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 372 355 CONFIG_NETFILTER_XT_TARGET_NOTRACK=m 356 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 357 + CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m 373 358 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 374 359 CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m 375 360 CONFIG_NETFILTER_XT_MATCH_CONNMARK=m ··· 387 368 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 388 369 CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m 389 370 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 371 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 390 372 CONFIG_NETFILTER_XT_MATCH_REALM=m 391 373 CONFIG_NETFILTER_XT_MATCH_SCTP=m 392 374 CONFIG_NETFILTER_XT_MATCH_STATE=m 375 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 393 376 CONFIG_NETFILTER_XT_MATCH_STRING=m 394 377 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 395 378 ··· 401 380 CONFIG_IP_NF_CONNTRACK=m 402 381 CONFIG_IP_NF_CT_ACCT=y 403 382 CONFIG_IP_NF_CONNTRACK_MARK=y 383 + CONFIG_IP_NF_CONNTRACK_SECMARK=y 404 384 CONFIG_IP_NF_CONNTRACK_EVENTS=y 405 385 CONFIG_IP_NF_CONNTRACK_NETLINK=m 406 386 CONFIG_IP_NF_CT_PROTO_SCTP=m ··· 412 390 CONFIG_IP_NF_AMANDA=m 413 391 CONFIG_IP_NF_PPTP=m 414 392 CONFIG_IP_NF_H323=m 393 + CONFIG_IP_NF_SIP=m 415 394 CONFIG_IP_NF_QUEUE=m 416 395 CONFIG_IP_NF_IPTABLES=m 417 396 CONFIG_IP_NF_MATCH_IPRANGE=m ··· 443 420 CONFIG_IP_NF_NAT_AMANDA=m 444 421 CONFIG_IP_NF_NAT_PPTP=m 445 422 CONFIG_IP_NF_NAT_H323=m 423 + CONFIG_IP_NF_NAT_SIP=m 446 424 CONFIG_IP_NF_MANGLE=m 447 425 CONFIG_IP_NF_TARGET_TOS=m 448 426 CONFIG_IP_NF_TARGET_ECN=m ··· 605 581 CONFIG_STANDALONE=y 606 582 CONFIG_PREVENT_FIRMWARE_BUILD=y 607 583 CONFIG_FW_LOADER=y 584 + # CONFIG_SYS_HYPERVISOR is not set 608 585 609 586 # 610 587 # Connector - unified userspace <-> kernelspace linker ··· 724 699 # CONFIG_MEGARAID_LEGACY is not set 725 700 # CONFIG_MEGARAID_SAS is not set 726 701 # CONFIG_SCSI_SATA is not set 702 + # CONFIG_SCSI_HPTIOP is not set 727 703 # CONFIG_SCSI_DMX3191D is not set 728 704 # CONFIG_SCSI_FUTURE_DOMAIN is not set 729 705 # CONFIG_SCSI_IPS is not set ··· 753 727 CONFIG_MD_RAID0=m 754 728 CONFIG_MD_RAID1=m 755 729 CONFIG_MD_RAID10=m 756 - CONFIG_MD_RAID5=m 730 + CONFIG_MD_RAID456=m 757 731 CONFIG_MD_RAID5_RESHAPE=y 758 - CONFIG_MD_RAID6=m 759 732 CONFIG_MD_MULTIPATH=m 760 733 CONFIG_MD_FAULTY=m 761 734 CONFIG_BLK_DEV_DM=m ··· 810 785 CONFIG_QSEMI_PHY=m 811 786 CONFIG_LXT_PHY=m 812 787 CONFIG_CICADA_PHY=m 788 + CONFIG_VITESSE_PHY=m 789 + CONFIG_SMSC_PHY=m 813 790 814 791 # 815 792 # Ethernet (10 or 100Mbit) ··· 874 847 # CONFIG_CHELSIO_T1 is not set 875 848 # CONFIG_IXGB is not set 876 849 # CONFIG_S2IO is not set 850 + # CONFIG_MYRI10GE is not set 877 851 878 852 # 879 853 # Token Ring devices ··· 956 928 CONFIG_VT=y 957 929 CONFIG_VT_CONSOLE=y 958 930 CONFIG_HW_CONSOLE=y 931 + CONFIG_VT_HW_CONSOLE_BINDING=y 959 932 # CONFIG_SERIAL_NONSTANDARD is not set 960 933 961 934 # ··· 988 959 # Watchdog Cards 989 960 # 990 961 # CONFIG_WATCHDOG is not set 962 + # CONFIG_HW_RANDOM is not set 991 963 # CONFIG_RTC is not set 992 964 # CONFIG_GEN_RTC is not set 993 965 # CONFIG_DTLK is not set ··· 1037 1007 # Multimedia devices 1038 1008 # 1039 1009 # CONFIG_VIDEO_DEV is not set 1010 + CONFIG_VIDEO_V4L2=y 1040 1011 1041 1012 # 1042 1013 # Digital Video Broadcasting Devices ··· 1047 1016 # 1048 1017 # Graphics support 1049 1018 # 1019 + # CONFIG_FIRMWARE_EDID is not set 1050 1020 # CONFIG_FB is not set 1051 1021 1052 1022 # ··· 1111 1079 # CONFIG_RTC_CLASS is not set 1112 1080 1113 1081 # 1082 + # DMA Engine support 1083 + # 1084 + # CONFIG_DMA_ENGINE is not set 1085 + 1086 + # 1087 + # DMA Clients 1088 + # 1089 + 1090 + # 1091 + # DMA Devices 1092 + # 1093 + 1094 + # 1114 1095 # File systems 1115 1096 # 1116 1097 CONFIG_EXT2_FS=y ··· 1149 1104 # CONFIG_JFS_STATISTICS is not set 1150 1105 CONFIG_FS_POSIX_ACL=y 1151 1106 CONFIG_XFS_FS=m 1152 - CONFIG_XFS_EXPORT=y 1153 1107 CONFIG_XFS_QUOTA=y 1154 1108 CONFIG_XFS_SECURITY=y 1155 1109 CONFIG_XFS_POSIX_ACL=y ··· 1157 1113 CONFIG_MINIX_FS=m 1158 1114 CONFIG_ROMFS_FS=m 1159 1115 CONFIG_INOTIFY=y 1116 + CONFIG_INOTIFY_USER=y 1160 1117 CONFIG_QUOTA=y 1161 1118 # CONFIG_QFMT_V1 is not set 1162 1119 CONFIG_QFMT_V2=y ··· 1215 1170 # CONFIG_QNX4FS_FS is not set 1216 1171 CONFIG_SYSV_FS=m 1217 1172 CONFIG_UFS_FS=m 1173 + # CONFIG_UFS_FS_WRITE is not set 1174 + # CONFIG_UFS_DEBUG is not set 1218 1175 1219 1176 # 1220 1177 # Network File Systems ··· 1241 1194 # CONFIG_RPCSEC_GSS_SPKM3 is not set 1242 1195 # CONFIG_SMB_FS is not set 1243 1196 # CONFIG_CIFS is not set 1197 + # CONFIG_CIFS_DEBUG2 is not set 1244 1198 # CONFIG_NCP_FS is not set 1245 1199 # CONFIG_CODA_FS is not set 1246 1200 # CONFIG_AFS_FS is not set ··· 1307 1259 # 1308 1260 # CONFIG_PRINTK_TIME is not set 1309 1261 # CONFIG_MAGIC_SYSRQ is not set 1262 + # CONFIG_UNUSED_SYMBOLS is not set 1310 1263 # CONFIG_DEBUG_KERNEL is not set 1311 1264 CONFIG_LOG_BUF_SHIFT=14 1312 1265 # CONFIG_DEBUG_FS is not set ··· 1366 1317 CONFIG_TEXTSEARCH_KMP=m 1367 1318 CONFIG_TEXTSEARCH_BM=m 1368 1319 CONFIG_TEXTSEARCH_FSM=m 1320 + CONFIG_PLIST=y 1321 + CONFIG_RIO=n 1322 + CONFIG_I2C_OCORES=n 1323 + CONFIG_DEBUG_RT_MUTEXES=n 1324 + CONFIG_RT_MUTEX_TESTER=n 1325 + CONFIG_DEBUG_RWSEMS=n 1326 + CONFIG_DEBUG_LOCKING_API_SELFTESTS=n
+51 -8
arch/mips/configs/bigsur_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:50:55 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:02:58 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 84 81 CONFIG_GENERIC_FIND_NEXT_BIT=y 85 82 CONFIG_GENERIC_HWEIGHT=y 86 83 CONFIG_GENERIC_CALIBRATE_DELAY=y 84 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 87 85 CONFIG_DMA_COHERENT=y 88 86 CONFIG_CPU_BIG_ENDIAN=y 89 87 # CONFIG_CPU_LITTLE_ENDIAN is not set ··· 132 128 # CONFIG_PAGE_SIZE_16KB is not set 133 129 # CONFIG_PAGE_SIZE_64KB is not set 134 130 # CONFIG_SIBYTE_DMA_PAGEOPS is not set 135 - # CONFIG_MIPS_MT is not set 131 + CONFIG_MIPS_MT_DISABLED=y 132 + # CONFIG_MIPS_MT_SMTC is not set 133 + # CONFIG_MIPS_MT_SMP is not set 134 + # CONFIG_MIPS_VPE_LOADER is not set 136 135 CONFIG_CPU_HAS_LLSC=y 137 136 CONFIG_CPU_HAS_SYNC=y 138 137 CONFIG_GENERIC_HARDIRQS=y 139 138 CONFIG_GENERIC_IRQ_PROBE=y 139 + CONFIG_IRQ_PER_CPU=y 140 140 CONFIG_CPU_SUPPORTS_HIGHMEM=y 141 141 CONFIG_ARCH_FLATMEM_ENABLE=y 142 142 CONFIG_SELECT_MEMORY_MODEL=y ··· 151 143 CONFIG_FLAT_NODE_MEM_MAP=y 152 144 # CONFIG_SPARSEMEM_STATIC is not set 153 145 CONFIG_SPLIT_PTLOCK_CPUS=4 146 + CONFIG_RESOURCES_64BIT=y 147 + CONFIG_SMP=y 148 + CONFIG_SYS_SUPPORTS_SMP=y 149 + CONFIG_NR_CPUS=4 154 150 # CONFIG_HZ_48 is not set 155 151 # CONFIG_HZ_100 is not set 156 152 # CONFIG_HZ_128 is not set ··· 164 152 # CONFIG_HZ_1024 is not set 165 153 CONFIG_SYS_SUPPORTS_ARBIT_HZ=y 166 154 CONFIG_HZ=1000 167 - CONFIG_SMP=y 168 - CONFIG_NR_CPUS=4 169 155 CONFIG_PREEMPT_NONE=y 170 156 # CONFIG_PREEMPT_VOLUNTARY is not set 171 157 # CONFIG_PREEMPT is not set 172 158 # CONFIG_PREEMPT_BKL is not set 159 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 173 160 174 161 # 175 162 # Code maturity level options ··· 203 192 CONFIG_BUG=y 204 193 CONFIG_ELF_CORE=y 205 194 CONFIG_BASE_FULL=y 195 + CONFIG_RT_MUTEXES=y 206 196 CONFIG_FUTEX=y 207 197 CONFIG_EPOLL=y 208 198 CONFIG_SHMEM=y 209 199 CONFIG_SLAB=y 200 + CONFIG_VM_EVENT_COUNTERS=y 210 201 # CONFIG_TINY_SHMEM is not set 211 202 CONFIG_BASE_SMALL=0 212 203 # CONFIG_SLOB is not set ··· 266 253 # 267 254 CONFIG_BINFMT_ELF=y 268 255 # CONFIG_BINFMT_MISC is not set 269 - CONFIG_BUILD_ELF64=y 256 + # CONFIG_BUILD_ELF64 is not set 270 257 CONFIG_MIPS32_COMPAT=y 271 258 CONFIG_COMPAT=y 272 259 CONFIG_MIPS32_O32=y ··· 305 292 # CONFIG_INET_IPCOMP is not set 306 293 # CONFIG_INET_XFRM_TUNNEL is not set 307 294 # CONFIG_INET_TUNNEL is not set 295 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 296 + CONFIG_INET_XFRM_MODE_TUNNEL=m 308 297 CONFIG_INET_DIAG=y 309 298 CONFIG_INET_TCP_DIAG=y 310 299 # CONFIG_TCP_CONG_ADVANCED is not set ··· 314 299 # CONFIG_IPV6 is not set 315 300 # CONFIG_INET6_XFRM_TUNNEL is not set 316 301 # CONFIG_INET6_TUNNEL is not set 302 + CONFIG_NETWORK_SECMARK=y 317 303 # CONFIG_NETFILTER is not set 318 304 319 305 # ··· 369 353 CONFIG_PREVENT_FIRMWARE_BUILD=y 370 354 # CONFIG_FW_LOADER is not set 371 355 # CONFIG_DEBUG_DRIVER is not set 356 + # CONFIG_SYS_HYPERVISOR is not set 372 357 373 358 # 374 359 # Connector - unified userspace <-> kernelspace linker ··· 522 505 # CONFIG_CHELSIO_T1 is not set 523 506 # CONFIG_IXGB is not set 524 507 # CONFIG_S2IO is not set 508 + # CONFIG_MYRI10GE is not set 525 509 526 510 # 527 511 # Token Ring devices ··· 590 572 # CONFIG_N_HDLC is not set 591 573 # CONFIG_SPECIALIX is not set 592 574 # CONFIG_SX is not set 575 + # CONFIG_RIO is not set 593 576 # CONFIG_STALDRV is not set 594 577 CONFIG_SIBYTE_SB1250_DUART=y 595 578 CONFIG_SIBYTE_SB1250_DUART_CONSOLE=y ··· 617 598 # Watchdog Cards 618 599 # 619 600 # CONFIG_WATCHDOG is not set 601 + # CONFIG_HW_RANDOM is not set 620 602 # CONFIG_RTC is not set 621 603 CONFIG_GEN_RTC=y 622 604 # CONFIG_GEN_RTC_X is not set ··· 663 643 # CONFIG_I2C_I810 is not set 664 644 # CONFIG_I2C_PIIX4 is not set 665 645 # CONFIG_I2C_NFORCE2 is not set 646 + # CONFIG_I2C_OCORES is not set 666 647 # CONFIG_I2C_PARPORT_LIGHT is not set 667 648 # CONFIG_I2C_PROSAVAGE is not set 668 649 # CONFIG_I2C_SAVAGE4 is not set ··· 701 680 # 702 681 # Dallas's 1-wire bus 703 682 # 704 - # CONFIG_W1 is not set 705 683 706 684 # 707 685 # Hardware Monitoring support ··· 716 696 # Multimedia devices 717 697 # 718 698 # CONFIG_VIDEO_DEV is not set 699 + CONFIG_VIDEO_V4L2=y 719 700 720 701 # 721 702 # Digital Video Broadcasting Devices ··· 726 705 # 727 706 # Graphics support 728 707 # 708 + # CONFIG_FIRMWARE_EDID is not set 729 709 # CONFIG_FB is not set 730 710 731 711 # ··· 784 762 # CONFIG_RTC_CLASS is not set 785 763 786 764 # 765 + # DMA Engine support 766 + # 767 + # CONFIG_DMA_ENGINE is not set 768 + 769 + # 770 + # DMA Clients 771 + # 772 + 773 + # 774 + # DMA Devices 775 + # 776 + 777 + # 787 778 # File systems 788 779 # 789 780 CONFIG_EXT2_FS=y ··· 814 779 # CONFIG_MINIX_FS is not set 815 780 # CONFIG_ROMFS_FS is not set 816 781 CONFIG_INOTIFY=y 782 + CONFIG_INOTIFY_USER=y 817 783 # CONFIG_QUOTA is not set 818 784 CONFIG_DNOTIFY=y 819 785 # CONFIG_AUTOFS_FS is not set ··· 880 844 # CONFIG_RPCSEC_GSS_SPKM3 is not set 881 845 # CONFIG_SMB_FS is not set 882 846 # CONFIG_CIFS is not set 847 + # CONFIG_CIFS_DEBUG2 is not set 883 848 # CONFIG_NCP_FS is not set 884 849 # CONFIG_CODA_FS is not set 885 850 # CONFIG_AFS_FS is not set ··· 907 870 # 908 871 CONFIG_PRINTK_TIME=y 909 872 CONFIG_MAGIC_SYSRQ=y 873 + # CONFIG_UNUSED_SYMBOLS is not set 910 874 CONFIG_DEBUG_KERNEL=y 911 875 CONFIG_LOG_BUF_SHIFT=16 912 876 CONFIG_DETECT_SOFTLOCKUP=y 913 877 # CONFIG_SCHEDSTATS is not set 914 878 # CONFIG_DEBUG_SLAB is not set 915 - CONFIG_DEBUG_MUTEXES=y 879 + # CONFIG_DEBUG_RT_MUTEXES is not set 880 + # CONFIG_RT_MUTEX_TESTER is not set 916 881 # CONFIG_DEBUG_SPINLOCK is not set 882 + CONFIG_DEBUG_MUTEXES=y 883 + # CONFIG_DEBUG_RWSEMS is not set 917 884 # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 885 + # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 918 886 # CONFIG_DEBUG_KOBJECT is not set 919 887 # CONFIG_DEBUG_INFO is not set 920 888 # CONFIG_DEBUG_FS is not set ··· 982 940 # CONFIG_LIBCRC32C is not set 983 941 CONFIG_ZLIB_INFLATE=y 984 942 CONFIG_ZLIB_DEFLATE=y 943 + CONFIG_PLIST=y
+46 -3
arch/mips/configs/capcella_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Tue Apr 25 00:08:06 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:03:24 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 CONFIG_MACH_VR41XX=y 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 76 73 CONFIG_GENERIC_FIND_NEXT_BIT=y 77 74 CONFIG_GENERIC_HWEIGHT=y 78 75 CONFIG_GENERIC_CALIBRATE_DELAY=y 76 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 79 77 CONFIG_DMA_NONCOHERENT=y 80 78 CONFIG_DMA_NEED_PCI_MAP_STATE=y 81 79 # CONFIG_CPU_BIG_ENDIAN is not set ··· 121 117 # CONFIG_PAGE_SIZE_8KB is not set 122 118 # CONFIG_PAGE_SIZE_16KB is not set 123 119 # CONFIG_PAGE_SIZE_64KB is not set 124 - # CONFIG_MIPS_MT is not set 120 + CONFIG_MIPS_MT_DISABLED=y 121 + # CONFIG_MIPS_MT_SMTC is not set 122 + # CONFIG_MIPS_MT_SMP is not set 123 + # CONFIG_MIPS_VPE_LOADER is not set 125 124 CONFIG_CPU_HAS_SYNC=y 126 125 CONFIG_GENERIC_HARDIRQS=y 127 126 CONFIG_GENERIC_IRQ_PROBE=y ··· 137 130 CONFIG_FLAT_NODE_MEM_MAP=y 138 131 # CONFIG_SPARSEMEM_STATIC is not set 139 132 CONFIG_SPLIT_PTLOCK_CPUS=4 133 + # CONFIG_RESOURCES_64BIT is not set 140 134 # CONFIG_HZ_48 is not set 141 135 # CONFIG_HZ_100 is not set 142 136 # CONFIG_HZ_128 is not set ··· 150 142 CONFIG_PREEMPT_NONE=y 151 143 # CONFIG_PREEMPT_VOLUNTARY is not set 152 144 # CONFIG_PREEMPT is not set 145 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 153 146 154 147 # 155 148 # Code maturity level options ··· 182 173 CONFIG_BUG=y 183 174 CONFIG_ELF_CORE=y 184 175 CONFIG_BASE_FULL=y 176 + CONFIG_RT_MUTEXES=y 185 177 CONFIG_FUTEX=y 186 178 CONFIG_EPOLL=y 187 179 CONFIG_SHMEM=y 188 180 CONFIG_SLAB=y 181 + CONFIG_VM_EVENT_COUNTERS=y 189 182 # CONFIG_TINY_SHMEM is not set 190 183 CONFIG_BASE_SMALL=0 191 184 # CONFIG_SLOB is not set ··· 279 268 # CONFIG_INET_IPCOMP is not set 280 269 # CONFIG_INET_XFRM_TUNNEL is not set 281 270 # CONFIG_INET_TUNNEL is not set 271 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 272 + CONFIG_INET_XFRM_MODE_TUNNEL=m 282 273 CONFIG_INET_DIAG=y 283 274 CONFIG_INET_TCP_DIAG=y 284 275 # CONFIG_TCP_CONG_ADVANCED is not set ··· 288 275 # CONFIG_IPV6 is not set 289 276 # CONFIG_INET6_XFRM_TUNNEL is not set 290 277 # CONFIG_INET6_TUNNEL is not set 278 + CONFIG_NETWORK_SECMARK=y 291 279 # CONFIG_NETFILTER is not set 292 280 293 281 # ··· 342 328 CONFIG_STANDALONE=y 343 329 CONFIG_PREVENT_FIRMWARE_BUILD=y 344 330 CONFIG_FW_LOADER=m 331 + # CONFIG_SYS_HYPERVISOR is not set 345 332 346 333 # 347 334 # Connector - unified userspace <-> kernelspace linker ··· 461 446 CONFIG_QSEMI_PHY=m 462 447 CONFIG_LXT_PHY=m 463 448 CONFIG_CICADA_PHY=m 449 + CONFIG_VITESSE_PHY=m 450 + CONFIG_SMSC_PHY=m 464 451 465 452 # 466 453 # Ethernet (10 or 100Mbit) ··· 529 512 # CONFIG_CHELSIO_T1 is not set 530 513 # CONFIG_IXGB is not set 531 514 # CONFIG_S2IO is not set 515 + # CONFIG_MYRI10GE is not set 532 516 533 517 # 534 518 # Token Ring devices ··· 599 581 CONFIG_VT=y 600 582 CONFIG_VT_CONSOLE=y 601 583 CONFIG_HW_CONSOLE=y 584 + CONFIG_VT_HW_CONSOLE_BINDING=y 602 585 # CONFIG_SERIAL_NONSTANDARD is not set 603 586 604 587 # ··· 628 609 # Watchdog Cards 629 610 # 630 611 # CONFIG_WATCHDOG is not set 612 + # CONFIG_HW_RANDOM is not set 631 613 # CONFIG_RTC is not set 632 614 # CONFIG_GEN_RTC is not set 633 615 # CONFIG_DTLK is not set ··· 678 658 # Multimedia devices 679 659 # 680 660 # CONFIG_VIDEO_DEV is not set 661 + CONFIG_VIDEO_V4L2=y 681 662 682 663 # 683 664 # Digital Video Broadcasting Devices ··· 688 667 # 689 668 # Graphics support 690 669 # 670 + # CONFIG_FIRMWARE_EDID is not set 691 671 # CONFIG_FB is not set 692 672 693 673 # ··· 760 738 CONFIG_RTC_INTF_SYSFS=y 761 739 CONFIG_RTC_INTF_PROC=y 762 740 CONFIG_RTC_INTF_DEV=y 741 + # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set 763 742 764 743 # 765 744 # RTC drivers 766 745 # 746 + # CONFIG_RTC_DRV_DS1553 is not set 747 + # CONFIG_RTC_DRV_DS1742 is not set 767 748 # CONFIG_RTC_DRV_M48T86 is not set 768 749 CONFIG_RTC_DRV_VR41XX=y 769 750 # CONFIG_RTC_DRV_TEST is not set 751 + # CONFIG_RTC_DRV_V3020 is not set 752 + 753 + # 754 + # DMA Engine support 755 + # 756 + # CONFIG_DMA_ENGINE is not set 757 + 758 + # 759 + # DMA Clients 760 + # 761 + 762 + # 763 + # DMA Devices 764 + # 770 765 771 766 # 772 767 # File systems ··· 800 761 # CONFIG_MINIX_FS is not set 801 762 # CONFIG_ROMFS_FS is not set 802 763 CONFIG_INOTIFY=y 764 + CONFIG_INOTIFY_USER=y 803 765 # CONFIG_QUOTA is not set 804 766 CONFIG_DNOTIFY=y 805 767 # CONFIG_AUTOFS_FS is not set ··· 867 827 # CONFIG_RPCSEC_GSS_SPKM3 is not set 868 828 # CONFIG_SMB_FS is not set 869 829 # CONFIG_CIFS is not set 830 + # CONFIG_CIFS_DEBUG2 is not set 870 831 # CONFIG_NCP_FS is not set 871 832 # CONFIG_CODA_FS is not set 872 833 # CONFIG_AFS_FS is not set ··· 894 853 # 895 854 # CONFIG_PRINTK_TIME is not set 896 855 # CONFIG_MAGIC_SYSRQ is not set 856 + # CONFIG_UNUSED_SYMBOLS is not set 897 857 # CONFIG_DEBUG_KERNEL is not set 898 858 CONFIG_LOG_BUF_SHIFT=14 899 859 # CONFIG_DEBUG_FS is not set ··· 923 881 # CONFIG_CRC16 is not set 924 882 CONFIG_CRC32=y 925 883 # CONFIG_LIBCRC32C is not set 884 + CONFIG_PLIST=y
+42 -4
arch/mips/configs/cobalt_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:50:57 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:03:25 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 CONFIG_MIPS_COBALT=y 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 69 66 CONFIG_GENERIC_FIND_NEXT_BIT=y 70 67 CONFIG_GENERIC_HWEIGHT=y 71 68 CONFIG_GENERIC_CALIBRATE_DELAY=y 69 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 72 70 CONFIG_DMA_NONCOHERENT=y 73 71 CONFIG_DMA_NEED_PCI_MAP_STATE=y 74 72 CONFIG_I8259=y ··· 117 113 # CONFIG_PAGE_SIZE_8KB is not set 118 114 # CONFIG_PAGE_SIZE_16KB is not set 119 115 # CONFIG_PAGE_SIZE_64KB is not set 120 - # CONFIG_MIPS_MT is not set 116 + CONFIG_MIPS_MT_DISABLED=y 117 + # CONFIG_MIPS_MT_SMTC is not set 118 + # CONFIG_MIPS_MT_SMP is not set 119 + # CONFIG_MIPS_VPE_LOADER is not set 121 120 CONFIG_CPU_HAS_LLSC=y 122 121 CONFIG_CPU_HAS_SYNC=y 123 122 CONFIG_GENERIC_HARDIRQS=y ··· 134 127 CONFIG_FLAT_NODE_MEM_MAP=y 135 128 # CONFIG_SPARSEMEM_STATIC is not set 136 129 CONFIG_SPLIT_PTLOCK_CPUS=4 130 + # CONFIG_RESOURCES_64BIT is not set 137 131 # CONFIG_HZ_48 is not set 138 132 # CONFIG_HZ_100 is not set 139 133 # CONFIG_HZ_128 is not set ··· 147 139 CONFIG_PREEMPT_NONE=y 148 140 # CONFIG_PREEMPT_VOLUNTARY is not set 149 141 # CONFIG_PREEMPT is not set 142 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 150 143 151 144 # 152 145 # Code maturity level options ··· 179 170 CONFIG_BUG=y 180 171 CONFIG_ELF_CORE=y 181 172 CONFIG_BASE_FULL=y 173 + CONFIG_RT_MUTEXES=y 182 174 CONFIG_FUTEX=y 183 175 CONFIG_EPOLL=y 184 176 CONFIG_SHMEM=y 185 177 CONFIG_SLAB=y 178 + CONFIG_VM_EVENT_COUNTERS=y 186 179 # CONFIG_TINY_SHMEM is not set 187 180 CONFIG_BASE_SMALL=0 188 181 # CONFIG_SLOB is not set ··· 267 256 # CONFIG_INET_IPCOMP is not set 268 257 # CONFIG_INET_XFRM_TUNNEL is not set 269 258 # CONFIG_INET_TUNNEL is not set 259 + CONFIG_INET_XFRM_MODE_TRANSPORT=y 260 + CONFIG_INET_XFRM_MODE_TUNNEL=y 270 261 CONFIG_INET_DIAG=y 271 262 CONFIG_INET_TCP_DIAG=y 272 263 # CONFIG_TCP_CONG_ADVANCED is not set ··· 276 263 # CONFIG_IPV6 is not set 277 264 # CONFIG_INET6_XFRM_TUNNEL is not set 278 265 # CONFIG_INET6_TUNNEL is not set 266 + CONFIG_NETWORK_SECMARK=y 279 267 # CONFIG_NETFILTER is not set 280 268 281 269 # ··· 336 322 CONFIG_STANDALONE=y 337 323 CONFIG_PREVENT_FIRMWARE_BUILD=y 338 324 CONFIG_FW_LOADER=y 325 + # CONFIG_SYS_HYPERVISOR is not set 339 326 340 327 # 341 328 # Connector - unified userspace <-> kernelspace linker ··· 486 471 CONFIG_QSEMI_PHY=y 487 472 CONFIG_LXT_PHY=y 488 473 CONFIG_CICADA_PHY=y 474 + CONFIG_VITESSE_PHY=y 475 + CONFIG_SMSC_PHY=y 489 476 490 477 # 491 478 # Ethernet (10 or 100Mbit) ··· 539 522 # CONFIG_CHELSIO_T1 is not set 540 523 # CONFIG_IXGB is not set 541 524 # CONFIG_S2IO is not set 525 + # CONFIG_MYRI10GE is not set 542 526 543 527 # 544 528 # Token Ring devices ··· 617 599 CONFIG_VT=y 618 600 CONFIG_VT_CONSOLE=y 619 601 CONFIG_HW_CONSOLE=y 602 + CONFIG_VT_HW_CONSOLE_BINDING=y 620 603 # CONFIG_SERIAL_NONSTANDARD is not set 621 604 622 605 # ··· 649 630 # Watchdog Cards 650 631 # 651 632 # CONFIG_WATCHDOG is not set 633 + # CONFIG_HW_RANDOM is not set 652 634 CONFIG_RTC=y 653 635 CONFIG_COBALT_LCD=y 654 636 # CONFIG_DTLK is not set ··· 698 678 # Multimedia devices 699 679 # 700 680 # CONFIG_VIDEO_DEV is not set 681 + CONFIG_VIDEO_V4L2=y 701 682 702 683 # 703 684 # Digital Video Broadcasting Devices ··· 708 687 # 709 688 # Graphics support 710 689 # 690 + # CONFIG_FIRMWARE_EDID is not set 711 691 # CONFIG_FB is not set 712 692 713 693 # ··· 772 750 # CONFIG_RTC_CLASS is not set 773 751 774 752 # 753 + # DMA Engine support 754 + # 755 + # CONFIG_DMA_ENGINE is not set 756 + 757 + # 758 + # DMA Clients 759 + # 760 + 761 + # 762 + # DMA Devices 763 + # 764 + 765 + # 775 766 # File systems 776 767 # 777 768 CONFIG_EXT2_FS=y ··· 802 767 # CONFIG_MINIX_FS is not set 803 768 # CONFIG_ROMFS_FS is not set 804 769 CONFIG_INOTIFY=y 770 + CONFIG_INOTIFY_USER=y 805 771 # CONFIG_QUOTA is not set 806 772 CONFIG_DNOTIFY=y 807 773 # CONFIG_AUTOFS_FS is not set ··· 865 829 # CONFIG_RPCSEC_GSS_SPKM3 is not set 866 830 # CONFIG_SMB_FS is not set 867 831 # CONFIG_CIFS is not set 832 + # CONFIG_CIFS_DEBUG2 is not set 868 833 # CONFIG_NCP_FS is not set 869 834 # CONFIG_CODA_FS is not set 870 835 # CONFIG_AFS_FS is not set ··· 892 855 # 893 856 # CONFIG_PRINTK_TIME is not set 894 857 # CONFIG_MAGIC_SYSRQ is not set 858 + # CONFIG_UNUSED_SYMBOLS is not set 895 859 # CONFIG_DEBUG_KERNEL is not set 896 860 CONFIG_LOG_BUF_SHIFT=14 897 861 # CONFIG_DEBUG_FS is not set ··· 934 896 CONFIG_CRYPTO_DEFLATE=y 935 897 CONFIG_CRYPTO_MICHAEL_MIC=y 936 898 CONFIG_CRYPTO_CRC32C=y 937 - # CONFIG_CRYPTO_TEST is not set 938 899 939 900 # 940 901 # Hardware crypto devices ··· 948 911 CONFIG_LIBCRC32C=y 949 912 CONFIG_ZLIB_INFLATE=y 950 913 CONFIG_ZLIB_DEFLATE=y 914 + CONFIG_PLIST=y
+45 -5
arch/mips/configs/db1000_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:50:57 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:03:33 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 68 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 66 CONFIG_GENERIC_HWEIGHT=y 70 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 71 69 CONFIG_DMA_NONCOHERENT=y 72 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 71 # CONFIG_CPU_BIG_ENDIAN is not set ··· 116 112 # CONFIG_PAGE_SIZE_16KB is not set 117 113 # CONFIG_PAGE_SIZE_64KB is not set 118 114 CONFIG_CPU_HAS_PREFETCH=y 119 - # CONFIG_MIPS_MT is not set 115 + CONFIG_MIPS_MT_DISABLED=y 116 + # CONFIG_MIPS_MT_SMTC is not set 117 + # CONFIG_MIPS_MT_SMP is not set 118 + # CONFIG_MIPS_VPE_LOADER is not set 120 119 CONFIG_64BIT_PHYS_ADDR=y 121 120 CONFIG_CPU_HAS_LLSC=y 122 121 CONFIG_CPU_HAS_SYNC=y ··· 135 128 CONFIG_FLAT_NODE_MEM_MAP=y 136 129 # CONFIG_SPARSEMEM_STATIC is not set 137 130 CONFIG_SPLIT_PTLOCK_CPUS=4 131 + # CONFIG_RESOURCES_64BIT is not set 138 132 # CONFIG_HZ_48 is not set 139 133 # CONFIG_HZ_100 is not set 140 134 # CONFIG_HZ_128 is not set ··· 148 140 CONFIG_PREEMPT_NONE=y 149 141 # CONFIG_PREEMPT_VOLUNTARY is not set 150 142 # CONFIG_PREEMPT is not set 143 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 151 144 152 145 # 153 146 # Code maturity level options ··· 180 171 CONFIG_BUG=y 181 172 CONFIG_ELF_CORE=y 182 173 CONFIG_BASE_FULL=y 174 + CONFIG_RT_MUTEXES=y 183 175 CONFIG_FUTEX=y 184 176 CONFIG_EPOLL=y 185 177 CONFIG_SHMEM=y 186 178 CONFIG_SLAB=y 179 + CONFIG_VM_EVENT_COUNTERS=y 187 180 # CONFIG_TINY_SHMEM is not set 188 181 CONFIG_BASE_SMALL=0 189 182 # CONFIG_SLOB is not set 190 - CONFIG_OBSOLETE_INTERMODULE=y 191 183 192 184 # 193 185 # Loadable module support ··· 286 276 # CONFIG_INET_IPCOMP is not set 287 277 # CONFIG_INET_XFRM_TUNNEL is not set 288 278 # CONFIG_INET_TUNNEL is not set 279 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 280 + CONFIG_INET_XFRM_MODE_TUNNEL=m 289 281 CONFIG_INET_DIAG=y 290 282 CONFIG_INET_TCP_DIAG=y 291 283 # CONFIG_TCP_CONG_ADVANCED is not set ··· 300 288 # CONFIG_IPV6 is not set 301 289 # CONFIG_INET6_XFRM_TUNNEL is not set 302 290 # CONFIG_INET6_TUNNEL is not set 291 + CONFIG_NETWORK_SECMARK=y 303 292 CONFIG_NETFILTER=y 304 293 # CONFIG_NETFILTER_DEBUG is not set 305 294 ··· 315 302 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 316 303 CONFIG_NETFILTER_XT_TARGET_MARK=m 317 304 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 305 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 318 306 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 319 307 CONFIG_NETFILTER_XT_MATCH_DCCP=m 320 308 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 326 312 CONFIG_NETFILTER_XT_MATCH_POLICY=m 327 313 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 328 314 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 315 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 329 316 CONFIG_NETFILTER_XT_MATCH_REALM=m 330 317 CONFIG_NETFILTER_XT_MATCH_SCTP=m 318 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 331 319 CONFIG_NETFILTER_XT_MATCH_STRING=m 332 320 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 333 321 ··· 399 383 CONFIG_STANDALONE=y 400 384 CONFIG_PREVENT_FIRMWARE_BUILD=y 401 385 CONFIG_FW_LOADER=m 386 + # CONFIG_SYS_HYPERVISOR is not set 402 387 403 388 # 404 389 # Connector - unified userspace <-> kernelspace linker ··· 549 532 # 550 533 # PHY device support 551 534 # 552 - CONFIG_PHYLIB=m 535 + CONFIG_PHYLIB=y 553 536 554 537 # 555 538 # MII PHY device drivers ··· 559 542 CONFIG_QSEMI_PHY=m 560 543 CONFIG_LXT_PHY=m 561 544 CONFIG_CICADA_PHY=m 545 + CONFIG_VITESSE_PHY=m 546 + CONFIG_SMSC_PHY=m 562 547 563 548 # 564 549 # Ethernet (10 or 100Mbit) ··· 672 653 CONFIG_VT=y 673 654 CONFIG_VT_CONSOLE=y 674 655 CONFIG_HW_CONSOLE=y 656 + CONFIG_VT_HW_CONSOLE_BINDING=y 675 657 # CONFIG_SERIAL_NONSTANDARD is not set 676 658 # CONFIG_AU1X00_GPIO is not set 677 659 # CONFIG_TS_AU1X00_ADS7846 is not set ··· 706 686 # Watchdog Cards 707 687 # 708 688 # CONFIG_WATCHDOG is not set 689 + # CONFIG_HW_RANDOM is not set 709 690 # CONFIG_RTC is not set 710 691 # CONFIG_GEN_RTC is not set 711 692 # CONFIG_DTLK is not set ··· 760 739 # Multimedia devices 761 740 # 762 741 # CONFIG_VIDEO_DEV is not set 742 + CONFIG_VIDEO_V4L2=y 763 743 764 744 # 765 745 # Digital Video Broadcasting Devices ··· 770 748 # 771 749 # Graphics support 772 750 # 751 + # CONFIG_FIRMWARE_EDID is not set 773 752 # CONFIG_FB is not set 774 753 775 754 # ··· 833 810 # CONFIG_RTC_CLASS is not set 834 811 835 812 # 813 + # DMA Engine support 814 + # 815 + # CONFIG_DMA_ENGINE is not set 816 + 817 + # 818 + # DMA Clients 819 + # 820 + 821 + # 822 + # DMA Devices 823 + # 824 + 825 + # 836 826 # File systems 837 827 # 838 828 CONFIG_EXT2_FS=y ··· 873 837 # CONFIG_MINIX_FS is not set 874 838 # CONFIG_ROMFS_FS is not set 875 839 CONFIG_INOTIFY=y 840 + CONFIG_INOTIFY_USER=y 876 841 # CONFIG_QUOTA is not set 877 842 CONFIG_DNOTIFY=y 878 843 CONFIG_AUTOFS_FS=m ··· 943 906 CONFIG_SMB_FS=m 944 907 # CONFIG_SMB_NLS_DEFAULT is not set 945 908 # CONFIG_CIFS is not set 909 + # CONFIG_CIFS_DEBUG2 is not set 946 910 # CONFIG_NCP_FS is not set 947 911 # CONFIG_CODA_FS is not set 948 912 # CONFIG_AFS_FS is not set ··· 1009 971 # 1010 972 # CONFIG_PRINTK_TIME is not set 1011 973 # CONFIG_MAGIC_SYSRQ is not set 974 + # CONFIG_UNUSED_SYMBOLS is not set 1012 975 # CONFIG_DEBUG_KERNEL is not set 1013 976 CONFIG_LOG_BUF_SHIFT=14 1014 977 # CONFIG_DEBUG_FS is not set ··· 1069 1030 CONFIG_TEXTSEARCH_KMP=m 1070 1031 CONFIG_TEXTSEARCH_BM=m 1071 1032 CONFIG_TEXTSEARCH_FSM=m 1033 + CONFIG_PLIST=y
+46 -6
arch/mips/configs/db1100_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:50:58 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:03:34 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 68 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 66 CONFIG_GENERIC_HWEIGHT=y 70 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 71 69 CONFIG_DMA_NONCOHERENT=y 72 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 71 # CONFIG_CPU_BIG_ENDIAN is not set ··· 116 112 # CONFIG_PAGE_SIZE_16KB is not set 117 113 # CONFIG_PAGE_SIZE_64KB is not set 118 114 CONFIG_CPU_HAS_PREFETCH=y 119 - # CONFIG_MIPS_MT is not set 115 + CONFIG_MIPS_MT_DISABLED=y 116 + # CONFIG_MIPS_MT_SMTC is not set 117 + # CONFIG_MIPS_MT_SMP is not set 118 + # CONFIG_MIPS_VPE_LOADER is not set 120 119 CONFIG_64BIT_PHYS_ADDR=y 121 120 CONFIG_CPU_HAS_LLSC=y 122 121 CONFIG_CPU_HAS_SYNC=y ··· 135 128 CONFIG_FLAT_NODE_MEM_MAP=y 136 129 # CONFIG_SPARSEMEM_STATIC is not set 137 130 CONFIG_SPLIT_PTLOCK_CPUS=4 131 + # CONFIG_RESOURCES_64BIT is not set 138 132 # CONFIG_HZ_48 is not set 139 133 # CONFIG_HZ_100 is not set 140 134 # CONFIG_HZ_128 is not set ··· 148 140 CONFIG_PREEMPT_NONE=y 149 141 # CONFIG_PREEMPT_VOLUNTARY is not set 150 142 # CONFIG_PREEMPT is not set 143 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 151 144 152 145 # 153 146 # Code maturity level options ··· 180 171 CONFIG_BUG=y 181 172 CONFIG_ELF_CORE=y 182 173 CONFIG_BASE_FULL=y 174 + CONFIG_RT_MUTEXES=y 183 175 CONFIG_FUTEX=y 184 176 CONFIG_EPOLL=y 185 177 CONFIG_SHMEM=y 186 178 CONFIG_SLAB=y 179 + CONFIG_VM_EVENT_COUNTERS=y 187 180 # CONFIG_TINY_SHMEM is not set 188 181 CONFIG_BASE_SMALL=0 189 182 # CONFIG_SLOB is not set 190 - CONFIG_OBSOLETE_INTERMODULE=y 191 183 192 184 # 193 185 # Loadable module support ··· 275 265 # CONFIG_INET_IPCOMP is not set 276 266 # CONFIG_INET_XFRM_TUNNEL is not set 277 267 # CONFIG_INET_TUNNEL is not set 268 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 269 + CONFIG_INET_XFRM_MODE_TUNNEL=m 278 270 CONFIG_INET_DIAG=y 279 271 CONFIG_INET_TCP_DIAG=y 280 272 # CONFIG_TCP_CONG_ADVANCED is not set ··· 289 277 # CONFIG_IPV6 is not set 290 278 # CONFIG_INET6_XFRM_TUNNEL is not set 291 279 # CONFIG_INET6_TUNNEL is not set 280 + CONFIG_NETWORK_SECMARK=y 292 281 CONFIG_NETFILTER=y 293 282 # CONFIG_NETFILTER_DEBUG is not set 294 283 ··· 304 291 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 305 292 CONFIG_NETFILTER_XT_TARGET_MARK=m 306 293 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 294 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 307 295 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 308 296 CONFIG_NETFILTER_XT_MATCH_DCCP=m 309 297 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 315 301 CONFIG_NETFILTER_XT_MATCH_POLICY=m 316 302 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 317 303 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 304 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 318 305 CONFIG_NETFILTER_XT_MATCH_REALM=m 319 306 CONFIG_NETFILTER_XT_MATCH_SCTP=m 307 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 320 308 CONFIG_NETFILTER_XT_MATCH_STRING=m 321 309 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 322 310 ··· 388 372 CONFIG_STANDALONE=y 389 373 CONFIG_PREVENT_FIRMWARE_BUILD=y 390 374 # CONFIG_FW_LOADER is not set 375 + # CONFIG_SYS_HYPERVISOR is not set 391 376 392 377 # 393 378 # Connector - unified userspace <-> kernelspace linker ··· 538 521 # 539 522 # PHY device support 540 523 # 541 - CONFIG_PHYLIB=m 524 + CONFIG_PHYLIB=y 542 525 543 526 # 544 527 # MII PHY device drivers ··· 548 531 CONFIG_QSEMI_PHY=m 549 532 CONFIG_LXT_PHY=m 550 533 CONFIG_CICADA_PHY=m 534 + CONFIG_VITESSE_PHY=m 535 + CONFIG_SMSC_PHY=m 551 536 552 537 # 553 538 # Ethernet (10 or 100Mbit) ··· 648 629 CONFIG_VT=y 649 630 CONFIG_VT_CONSOLE=y 650 631 CONFIG_HW_CONSOLE=y 632 + CONFIG_VT_HW_CONSOLE_BINDING=y 651 633 # CONFIG_SERIAL_NONSTANDARD is not set 652 634 # CONFIG_AU1X00_GPIO is not set 653 635 # CONFIG_TS_AU1X00_ADS7846 is not set ··· 681 661 # Watchdog Cards 682 662 # 683 663 # CONFIG_WATCHDOG is not set 664 + # CONFIG_HW_RANDOM is not set 684 665 # CONFIG_RTC is not set 685 666 # CONFIG_GEN_RTC is not set 686 667 # CONFIG_DTLK is not set ··· 728 707 # Multimedia devices 729 708 # 730 709 # CONFIG_VIDEO_DEV is not set 710 + CONFIG_VIDEO_V4L2=y 731 711 732 712 # 733 713 # Digital Video Broadcasting Devices ··· 738 716 # 739 717 # Graphics support 740 718 # 719 + # CONFIG_FIRMWARE_EDID is not set 741 720 CONFIG_FB=y 742 721 CONFIG_FB_CFB_FILLRECT=y 743 722 CONFIG_FB_CFB_COPYAREA=y 744 723 CONFIG_FB_CFB_IMAGEBLIT=y 745 724 # CONFIG_FB_MACMODES is not set 746 - CONFIG_FB_FIRMWARE_EDID=y 725 + # CONFIG_FB_BACKLIGHT is not set 747 726 # CONFIG_FB_MODE_HELPERS is not set 748 727 # CONFIG_FB_TILEBLITTING is not set 749 728 # CONFIG_FB_S1D13XXX is not set ··· 833 810 # CONFIG_RTC_CLASS is not set 834 811 835 812 # 813 + # DMA Engine support 814 + # 815 + # CONFIG_DMA_ENGINE is not set 816 + 817 + # 818 + # DMA Clients 819 + # 820 + 821 + # 822 + # DMA Devices 823 + # 824 + 825 + # 836 826 # File systems 837 827 # 838 828 CONFIG_EXT2_FS=y ··· 873 837 # CONFIG_MINIX_FS is not set 874 838 # CONFIG_ROMFS_FS is not set 875 839 CONFIG_INOTIFY=y 840 + CONFIG_INOTIFY_USER=y 876 841 # CONFIG_QUOTA is not set 877 842 CONFIG_DNOTIFY=y 878 843 CONFIG_AUTOFS_FS=m ··· 943 906 CONFIG_SMB_FS=m 944 907 # CONFIG_SMB_NLS_DEFAULT is not set 945 908 # CONFIG_CIFS is not set 909 + # CONFIG_CIFS_DEBUG2 is not set 946 910 # CONFIG_NCP_FS is not set 947 911 # CONFIG_CODA_FS is not set 948 912 # CONFIG_AFS_FS is not set ··· 1009 971 # 1010 972 # CONFIG_PRINTK_TIME is not set 1011 973 # CONFIG_MAGIC_SYSRQ is not set 974 + # CONFIG_UNUSED_SYMBOLS is not set 1012 975 # CONFIG_DEBUG_KERNEL is not set 1013 976 CONFIG_LOG_BUF_SHIFT=14 1014 977 # CONFIG_DEBUG_FS is not set ··· 1069 1030 CONFIG_TEXTSEARCH_KMP=m 1070 1031 CONFIG_TEXTSEARCH_BM=m 1071 1032 CONFIG_TEXTSEARCH_FSM=m 1033 + CONFIG_PLIST=y
+45 -6
arch/mips/configs/db1200_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:50:58 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:03:43 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 CONFIG_MIPS_DB1200=y 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 68 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 66 CONFIG_GENERIC_HWEIGHT=y 70 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 71 69 CONFIG_DMA_COHERENT=y 72 70 CONFIG_MIPS_DISABLE_OBSOLETE_IDE=y 73 71 # CONFIG_CPU_BIG_ENDIAN is not set ··· 116 112 # CONFIG_PAGE_SIZE_16KB is not set 117 113 # CONFIG_PAGE_SIZE_64KB is not set 118 114 CONFIG_CPU_HAS_PREFETCH=y 119 - # CONFIG_MIPS_MT is not set 115 + CONFIG_MIPS_MT_DISABLED=y 116 + # CONFIG_MIPS_MT_SMTC is not set 117 + # CONFIG_MIPS_MT_SMP is not set 118 + # CONFIG_MIPS_VPE_LOADER is not set 120 119 CONFIG_64BIT_PHYS_ADDR=y 121 120 CONFIG_CPU_HAS_LLSC=y 122 121 CONFIG_CPU_HAS_SYNC=y ··· 135 128 CONFIG_FLAT_NODE_MEM_MAP=y 136 129 # CONFIG_SPARSEMEM_STATIC is not set 137 130 CONFIG_SPLIT_PTLOCK_CPUS=4 131 + # CONFIG_RESOURCES_64BIT is not set 138 132 # CONFIG_HZ_48 is not set 139 133 # CONFIG_HZ_100 is not set 140 134 # CONFIG_HZ_128 is not set ··· 148 140 CONFIG_PREEMPT_NONE=y 149 141 # CONFIG_PREEMPT_VOLUNTARY is not set 150 142 # CONFIG_PREEMPT is not set 143 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 151 144 152 145 # 153 146 # Code maturity level options ··· 181 172 CONFIG_BUG=y 182 173 CONFIG_ELF_CORE=y 183 174 CONFIG_BASE_FULL=y 175 + CONFIG_RT_MUTEXES=y 184 176 CONFIG_FUTEX=y 185 177 CONFIG_EPOLL=y 186 178 CONFIG_SHMEM=y 187 179 CONFIG_SLAB=y 180 + CONFIG_VM_EVENT_COUNTERS=y 188 181 # CONFIG_TINY_SHMEM is not set 189 182 CONFIG_BASE_SMALL=0 190 183 # CONFIG_SLOB is not set 191 - CONFIG_OBSOLETE_INTERMODULE=y 192 184 193 185 # 194 186 # Loadable module support ··· 282 272 # CONFIG_INET_IPCOMP is not set 283 273 # CONFIG_INET_XFRM_TUNNEL is not set 284 274 # CONFIG_INET_TUNNEL is not set 275 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 276 + CONFIG_INET_XFRM_MODE_TUNNEL=m 285 277 CONFIG_INET_DIAG=y 286 278 CONFIG_INET_TCP_DIAG=y 287 279 # CONFIG_TCP_CONG_ADVANCED is not set ··· 296 284 # CONFIG_IPV6 is not set 297 285 # CONFIG_INET6_XFRM_TUNNEL is not set 298 286 # CONFIG_INET6_TUNNEL is not set 287 + CONFIG_NETWORK_SECMARK=y 299 288 CONFIG_NETFILTER=y 300 289 # CONFIG_NETFILTER_DEBUG is not set 301 290 ··· 309 296 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 310 297 CONFIG_NETFILTER_XT_TARGET_MARK=m 311 298 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 299 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 312 300 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 313 301 CONFIG_NETFILTER_XT_MATCH_DCCP=m 314 302 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 320 306 CONFIG_NETFILTER_XT_MATCH_POLICY=m 321 307 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 322 308 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 309 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 323 310 CONFIG_NETFILTER_XT_MATCH_REALM=m 324 311 CONFIG_NETFILTER_XT_MATCH_SCTP=m 312 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 325 313 CONFIG_NETFILTER_XT_MATCH_STRING=m 326 314 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 327 315 ··· 387 371 CONFIG_STANDALONE=y 388 372 CONFIG_PREVENT_FIRMWARE_BUILD=y 389 373 CONFIG_FW_LOADER=y 374 + # CONFIG_SYS_HYPERVISOR is not set 390 375 391 376 # 392 377 # Connector - unified userspace <-> kernelspace linker ··· 468 451 # 469 452 CONFIG_MTD_NAND=y 470 453 # CONFIG_MTD_NAND_VERIFY_WRITE is not set 454 + # CONFIG_MTD_NAND_ECC_SMC is not set 471 455 CONFIG_MTD_NAND_IDS=y 472 456 # CONFIG_MTD_NAND_AU1550 is not set 473 457 # CONFIG_MTD_NAND_DISKONCHIP is not set ··· 709 691 CONFIG_VT=y 710 692 CONFIG_VT_CONSOLE=y 711 693 CONFIG_HW_CONSOLE=y 694 + CONFIG_VT_HW_CONSOLE_BINDING=y 712 695 # CONFIG_SERIAL_NONSTANDARD is not set 713 696 # CONFIG_AU1X00_GPIO is not set 714 697 # CONFIG_TS_AU1X00_ADS7846 is not set ··· 743 724 # Watchdog Cards 744 725 # 745 726 # CONFIG_WATCHDOG is not set 727 + # CONFIG_HW_RANDOM is not set 746 728 # CONFIG_RTC is not set 747 729 # CONFIG_GEN_RTC is not set 748 730 # CONFIG_DTLK is not set ··· 781 761 # 782 762 # Dallas's 1-wire bus 783 763 # 784 - # CONFIG_W1 is not set 785 764 786 765 # 787 766 # Hardware Monitoring support ··· 796 777 # Multimedia devices 797 778 # 798 779 # CONFIG_VIDEO_DEV is not set 780 + CONFIG_VIDEO_V4L2=y 799 781 800 782 # 801 783 # Digital Video Broadcasting Devices ··· 806 786 # 807 787 # Graphics support 808 788 # 789 + # CONFIG_FIRMWARE_EDID is not set 809 790 CONFIG_FB=y 810 791 CONFIG_FB_CFB_FILLRECT=y 811 792 CONFIG_FB_CFB_COPYAREA=y 812 793 CONFIG_FB_CFB_IMAGEBLIT=y 813 794 # CONFIG_FB_MACMODES is not set 814 - CONFIG_FB_FIRMWARE_EDID=y 795 + # CONFIG_FB_BACKLIGHT is not set 815 796 # CONFIG_FB_MODE_HELPERS is not set 816 797 # CONFIG_FB_TILEBLITTING is not set 817 798 # CONFIG_FB_S1D13XXX is not set ··· 902 881 # CONFIG_RTC_CLASS is not set 903 882 904 883 # 884 + # DMA Engine support 885 + # 886 + # CONFIG_DMA_ENGINE is not set 887 + 888 + # 889 + # DMA Clients 890 + # 891 + 892 + # 893 + # DMA Devices 894 + # 895 + 896 + # 905 897 # File systems 906 898 # 907 899 CONFIG_EXT2_FS=y ··· 941 907 # CONFIG_MINIX_FS is not set 942 908 # CONFIG_ROMFS_FS is not set 943 909 CONFIG_INOTIFY=y 910 + CONFIG_INOTIFY_USER=y 944 911 # CONFIG_QUOTA is not set 945 912 CONFIG_DNOTIFY=y 946 913 # CONFIG_AUTOFS_FS is not set ··· 994 959 CONFIG_JFFS2_FS_DEBUG=0 995 960 CONFIG_JFFS2_FS_WRITEBUFFER=y 996 961 # CONFIG_JFFS2_SUMMARY is not set 962 + # CONFIG_JFFS2_FS_XATTR is not set 997 963 # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set 998 964 CONFIG_JFFS2_ZLIB=y 999 965 CONFIG_JFFS2_RTIME=y ··· 1024 988 CONFIG_SMB_FS=y 1025 989 # CONFIG_SMB_NLS_DEFAULT is not set 1026 990 # CONFIG_CIFS is not set 991 + # CONFIG_CIFS_DEBUG2 is not set 1027 992 # CONFIG_NCP_FS is not set 1028 993 # CONFIG_CODA_FS is not set 1029 994 # CONFIG_AFS_FS is not set ··· 1090 1053 # 1091 1054 # CONFIG_PRINTK_TIME is not set 1092 1055 # CONFIG_MAGIC_SYSRQ is not set 1056 + # CONFIG_UNUSED_SYMBOLS is not set 1093 1057 # CONFIG_DEBUG_KERNEL is not set 1094 1058 CONFIG_LOG_BUF_SHIFT=14 1095 1059 # CONFIG_DEBUG_FS is not set ··· 1126 1088 CONFIG_TEXTSEARCH_KMP=m 1127 1089 CONFIG_TEXTSEARCH_BM=m 1128 1090 CONFIG_TEXTSEARCH_FSM=m 1091 + CONFIG_PLIST=y
+61 -5
arch/mips/configs/db1500_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:50:59 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:03:56 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 68 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 66 CONFIG_GENERIC_HWEIGHT=y 70 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 71 69 CONFIG_DMA_NONCOHERENT=y 72 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 71 CONFIG_MIPS_DISABLE_OBSOLETE_IDE=y ··· 118 114 # CONFIG_PAGE_SIZE_16KB is not set 119 115 # CONFIG_PAGE_SIZE_64KB is not set 120 116 CONFIG_CPU_HAS_PREFETCH=y 121 - # CONFIG_MIPS_MT is not set 117 + CONFIG_MIPS_MT_DISABLED=y 118 + # CONFIG_MIPS_MT_SMTC is not set 119 + # CONFIG_MIPS_MT_SMP is not set 120 + # CONFIG_MIPS_VPE_LOADER is not set 122 121 CONFIG_64BIT_PHYS_ADDR=y 123 122 CONFIG_CPU_HAS_LLSC=y 124 123 CONFIG_CPU_HAS_SYNC=y ··· 137 130 CONFIG_FLAT_NODE_MEM_MAP=y 138 131 # CONFIG_SPARSEMEM_STATIC is not set 139 132 CONFIG_SPLIT_PTLOCK_CPUS=4 133 + # CONFIG_RESOURCES_64BIT is not set 140 134 # CONFIG_HZ_48 is not set 141 135 # CONFIG_HZ_100 is not set 142 136 # CONFIG_HZ_128 is not set ··· 150 142 CONFIG_PREEMPT_NONE=y 151 143 # CONFIG_PREEMPT_VOLUNTARY is not set 152 144 # CONFIG_PREEMPT is not set 145 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 153 146 154 147 # 155 148 # Code maturity level options ··· 182 173 CONFIG_BUG=y 183 174 CONFIG_ELF_CORE=y 184 175 CONFIG_BASE_FULL=y 176 + CONFIG_RT_MUTEXES=y 185 177 CONFIG_FUTEX=y 186 178 CONFIG_EPOLL=y 187 179 CONFIG_SHMEM=y 188 180 CONFIG_SLAB=y 181 + CONFIG_VM_EVENT_COUNTERS=y 189 182 # CONFIG_TINY_SHMEM is not set 190 183 CONFIG_BASE_SMALL=0 191 184 # CONFIG_SLOB is not set 192 - CONFIG_OBSOLETE_INTERMODULE=y 193 185 194 186 # 195 187 # Loadable module support ··· 293 283 # CONFIG_INET_IPCOMP is not set 294 284 # CONFIG_INET_XFRM_TUNNEL is not set 295 285 # CONFIG_INET_TUNNEL is not set 286 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 287 + CONFIG_INET_XFRM_MODE_TUNNEL=m 296 288 CONFIG_INET_DIAG=y 297 289 CONFIG_INET_TCP_DIAG=y 298 290 # CONFIG_TCP_CONG_ADVANCED is not set ··· 307 295 # CONFIG_IPV6 is not set 308 296 # CONFIG_INET6_XFRM_TUNNEL is not set 309 297 # CONFIG_INET6_TUNNEL is not set 298 + CONFIG_NETWORK_SECMARK=y 310 299 CONFIG_NETFILTER=y 311 300 # CONFIG_NETFILTER_DEBUG is not set 312 301 ··· 322 309 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 323 310 CONFIG_NETFILTER_XT_TARGET_MARK=m 324 311 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 312 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 325 313 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 326 314 CONFIG_NETFILTER_XT_MATCH_DCCP=m 327 315 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 333 319 CONFIG_NETFILTER_XT_MATCH_POLICY=m 334 320 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 335 321 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 322 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 336 323 CONFIG_NETFILTER_XT_MATCH_REALM=m 337 324 CONFIG_NETFILTER_XT_MATCH_SCTP=m 325 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 338 326 CONFIG_NETFILTER_XT_MATCH_STRING=m 339 327 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 340 328 ··· 406 390 CONFIG_STANDALONE=y 407 391 CONFIG_PREVENT_FIRMWARE_BUILD=y 408 392 CONFIG_FW_LOADER=m 393 + # CONFIG_SYS_HYPERVISOR is not set 409 394 410 395 # 411 396 # Connector - unified userspace <-> kernelspace linker ··· 593 576 # 594 577 # PHY device support 595 578 # 596 - CONFIG_PHYLIB=m 579 + CONFIG_PHYLIB=y 597 580 598 581 # 599 582 # MII PHY device drivers ··· 603 586 CONFIG_QSEMI_PHY=m 604 587 CONFIG_LXT_PHY=m 605 588 CONFIG_CICADA_PHY=m 589 + CONFIG_VITESSE_PHY=m 590 + CONFIG_SMSC_PHY=m 606 591 607 592 # 608 593 # Ethernet (10 or 100Mbit) ··· 649 630 # CONFIG_CHELSIO_T1 is not set 650 631 # CONFIG_IXGB is not set 651 632 # CONFIG_S2IO is not set 633 + # CONFIG_MYRI10GE is not set 652 634 653 635 # 654 636 # Token Ring devices ··· 773 753 # Watchdog Cards 774 754 # 775 755 # CONFIG_WATCHDOG is not set 756 + # CONFIG_HW_RANDOM is not set 776 757 # CONFIG_RTC is not set 777 758 # CONFIG_GEN_RTC is not set 778 759 # CONFIG_DTLK is not set ··· 829 808 # Multimedia devices 830 809 # 831 810 # CONFIG_VIDEO_DEV is not set 811 + CONFIG_VIDEO_V4L2=y 832 812 833 813 # 834 814 # Digital Video Broadcasting Devices ··· 840 818 # 841 819 # Graphics support 842 820 # 821 + # CONFIG_FIRMWARE_EDID is not set 843 822 # CONFIG_FB is not set 844 823 845 824 # ··· 896 873 # CONFIG_SND_CMIPCI is not set 897 874 # CONFIG_SND_CS4281 is not set 898 875 # CONFIG_SND_CS46XX is not set 876 + # CONFIG_SND_DARLA20 is not set 877 + # CONFIG_SND_GINA20 is not set 878 + # CONFIG_SND_LAYLA20 is not set 879 + # CONFIG_SND_DARLA24 is not set 880 + # CONFIG_SND_GINA24 is not set 881 + # CONFIG_SND_LAYLA24 is not set 882 + # CONFIG_SND_MONA is not set 883 + # CONFIG_SND_MIA is not set 884 + # CONFIG_SND_ECHO3G is not set 885 + # CONFIG_SND_INDIGO is not set 886 + # CONFIG_SND_INDIGOIO is not set 887 + # CONFIG_SND_INDIGODJ is not set 899 888 # CONFIG_SND_EMU10K1 is not set 900 889 # CONFIG_SND_EMU10K1X is not set 901 890 # CONFIG_SND_ENS1370 is not set ··· 951 916 # 952 917 # PCMCIA devices 953 918 # 919 + # CONFIG_SND_VXPOCKET is not set 920 + # CONFIG_SND_PDAUDIOCF is not set 954 921 955 922 # 956 923 # Open Sound System ··· 1067 1030 # CONFIG_USB_LEGOTOWER is not set 1068 1031 # CONFIG_USB_LCD is not set 1069 1032 # CONFIG_USB_LED is not set 1033 + # CONFIG_USB_CY7C63 is not set 1070 1034 # CONFIG_USB_CYTHERM is not set 1071 1035 # CONFIG_USB_PHIDGETKIT is not set 1072 1036 # CONFIG_USB_PHIDGETSERVO is not set 1073 1037 # CONFIG_USB_IDMOUSE is not set 1038 + # CONFIG_USB_APPLEDISPLAY is not set 1074 1039 CONFIG_USB_LD=m 1075 1040 1076 1041 # ··· 1117 1078 # CONFIG_RTC_CLASS is not set 1118 1079 1119 1080 # 1081 + # DMA Engine support 1082 + # 1083 + # CONFIG_DMA_ENGINE is not set 1084 + 1085 + # 1086 + # DMA Clients 1087 + # 1088 + 1089 + # 1090 + # DMA Devices 1091 + # 1092 + 1093 + # 1120 1094 # File systems 1121 1095 # 1122 1096 CONFIG_EXT2_FS=y ··· 1157 1105 # CONFIG_MINIX_FS is not set 1158 1106 # CONFIG_ROMFS_FS is not set 1159 1107 CONFIG_INOTIFY=y 1108 + CONFIG_INOTIFY_USER=y 1160 1109 # CONFIG_QUOTA is not set 1161 1110 CONFIG_DNOTIFY=y 1162 1111 CONFIG_AUTOFS_FS=m ··· 1227 1174 CONFIG_SMB_FS=m 1228 1175 # CONFIG_SMB_NLS_DEFAULT is not set 1229 1176 # CONFIG_CIFS is not set 1177 + # CONFIG_CIFS_DEBUG2 is not set 1230 1178 # CONFIG_NCP_FS is not set 1231 1179 # CONFIG_CODA_FS is not set 1232 1180 # CONFIG_AFS_FS is not set ··· 1293 1239 # 1294 1240 # CONFIG_PRINTK_TIME is not set 1295 1241 # CONFIG_MAGIC_SYSRQ is not set 1242 + # CONFIG_UNUSED_SYMBOLS is not set 1296 1243 # CONFIG_DEBUG_KERNEL is not set 1297 1244 CONFIG_LOG_BUF_SHIFT=14 1298 1245 # CONFIG_DEBUG_FS is not set ··· 1353 1298 CONFIG_TEXTSEARCH_KMP=m 1354 1299 CONFIG_TEXTSEARCH_BM=m 1355 1300 CONFIG_TEXTSEARCH_FSM=m 1301 + CONFIG_PLIST=y
+46 -5
arch/mips/configs/db1550_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:00 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:03:59 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 CONFIG_MIPS_DB1550=y 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 68 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 66 CONFIG_GENERIC_HWEIGHT=y 70 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 71 69 CONFIG_DMA_NONCOHERENT=y 72 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 71 CONFIG_MIPS_DISABLE_OBSOLETE_IDE=y ··· 117 113 # CONFIG_PAGE_SIZE_16KB is not set 118 114 # CONFIG_PAGE_SIZE_64KB is not set 119 115 CONFIG_CPU_HAS_PREFETCH=y 120 - # CONFIG_MIPS_MT is not set 116 + CONFIG_MIPS_MT_DISABLED=y 117 + # CONFIG_MIPS_MT_SMTC is not set 118 + # CONFIG_MIPS_MT_SMP is not set 119 + # CONFIG_MIPS_VPE_LOADER is not set 121 120 CONFIG_64BIT_PHYS_ADDR=y 122 121 CONFIG_CPU_HAS_LLSC=y 123 122 CONFIG_CPU_HAS_SYNC=y ··· 136 129 CONFIG_FLAT_NODE_MEM_MAP=y 137 130 # CONFIG_SPARSEMEM_STATIC is not set 138 131 CONFIG_SPLIT_PTLOCK_CPUS=4 132 + # CONFIG_RESOURCES_64BIT is not set 139 133 # CONFIG_HZ_48 is not set 140 134 # CONFIG_HZ_100 is not set 141 135 # CONFIG_HZ_128 is not set ··· 149 141 CONFIG_PREEMPT_NONE=y 150 142 # CONFIG_PREEMPT_VOLUNTARY is not set 151 143 # CONFIG_PREEMPT is not set 144 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 152 145 153 146 # 154 147 # Code maturity level options ··· 181 172 CONFIG_BUG=y 182 173 CONFIG_ELF_CORE=y 183 174 CONFIG_BASE_FULL=y 175 + CONFIG_RT_MUTEXES=y 184 176 CONFIG_FUTEX=y 185 177 CONFIG_EPOLL=y 186 178 CONFIG_SHMEM=y 187 179 CONFIG_SLAB=y 180 + CONFIG_VM_EVENT_COUNTERS=y 188 181 # CONFIG_TINY_SHMEM is not set 189 182 CONFIG_BASE_SMALL=0 190 183 # CONFIG_SLOB is not set 191 - CONFIG_OBSOLETE_INTERMODULE=y 192 184 193 185 # 194 186 # Loadable module support ··· 292 282 # CONFIG_INET_IPCOMP is not set 293 283 # CONFIG_INET_XFRM_TUNNEL is not set 294 284 # CONFIG_INET_TUNNEL is not set 285 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 286 + CONFIG_INET_XFRM_MODE_TUNNEL=m 295 287 CONFIG_INET_DIAG=y 296 288 CONFIG_INET_TCP_DIAG=y 297 289 # CONFIG_TCP_CONG_ADVANCED is not set ··· 306 294 # CONFIG_IPV6 is not set 307 295 # CONFIG_INET6_XFRM_TUNNEL is not set 308 296 # CONFIG_INET6_TUNNEL is not set 297 + CONFIG_NETWORK_SECMARK=y 309 298 CONFIG_NETFILTER=y 310 299 # CONFIG_NETFILTER_DEBUG is not set 311 300 ··· 321 308 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 322 309 CONFIG_NETFILTER_XT_TARGET_MARK=m 323 310 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 311 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 324 312 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 325 313 CONFIG_NETFILTER_XT_MATCH_DCCP=m 326 314 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 332 318 CONFIG_NETFILTER_XT_MATCH_POLICY=m 333 319 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 334 320 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 321 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 335 322 CONFIG_NETFILTER_XT_MATCH_REALM=m 336 323 CONFIG_NETFILTER_XT_MATCH_SCTP=m 324 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 337 325 CONFIG_NETFILTER_XT_MATCH_STRING=m 338 326 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 339 327 ··· 405 389 CONFIG_STANDALONE=y 406 390 CONFIG_PREVENT_FIRMWARE_BUILD=y 407 391 CONFIG_FW_LOADER=m 392 + # CONFIG_SYS_HYPERVISOR is not set 408 393 409 394 # 410 395 # Connector - unified userspace <-> kernelspace linker ··· 487 470 # 488 471 CONFIG_MTD_NAND=m 489 472 # CONFIG_MTD_NAND_VERIFY_WRITE is not set 473 + # CONFIG_MTD_NAND_ECC_SMC is not set 490 474 CONFIG_MTD_NAND_IDS=m 491 475 CONFIG_MTD_NAND_AU1550=m 492 476 # CONFIG_MTD_NAND_DISKONCHIP is not set ··· 626 608 # 627 609 # PHY device support 628 610 # 629 - CONFIG_PHYLIB=m 611 + CONFIG_PHYLIB=y 630 612 631 613 # 632 614 # MII PHY device drivers ··· 636 618 CONFIG_QSEMI_PHY=m 637 619 CONFIG_LXT_PHY=m 638 620 CONFIG_CICADA_PHY=m 621 + CONFIG_VITESSE_PHY=m 622 + CONFIG_SMSC_PHY=m 639 623 640 624 # 641 625 # Ethernet (10 or 100Mbit) ··· 682 662 # CONFIG_CHELSIO_T1 is not set 683 663 # CONFIG_IXGB is not set 684 664 # CONFIG_S2IO is not set 665 + # CONFIG_MYRI10GE is not set 685 666 686 667 # 687 668 # Token Ring devices ··· 814 793 # Watchdog Cards 815 794 # 816 795 # CONFIG_WATCHDOG is not set 796 + # CONFIG_HW_RANDOM is not set 817 797 # CONFIG_RTC is not set 818 798 # CONFIG_GEN_RTC is not set 819 799 # CONFIG_DTLK is not set ··· 870 848 # Multimedia devices 871 849 # 872 850 # CONFIG_VIDEO_DEV is not set 851 + CONFIG_VIDEO_V4L2=y 873 852 874 853 # 875 854 # Digital Video Broadcasting Devices ··· 880 857 # 881 858 # Graphics support 882 859 # 860 + # CONFIG_FIRMWARE_EDID is not set 883 861 # CONFIG_FB is not set 884 862 885 863 # ··· 938 914 # CONFIG_RTC_CLASS is not set 939 915 940 916 # 917 + # DMA Engine support 918 + # 919 + # CONFIG_DMA_ENGINE is not set 920 + 921 + # 922 + # DMA Clients 923 + # 924 + 925 + # 926 + # DMA Devices 927 + # 928 + 929 + # 941 930 # File systems 942 931 # 943 932 CONFIG_EXT2_FS=y ··· 978 941 # CONFIG_MINIX_FS is not set 979 942 # CONFIG_ROMFS_FS is not set 980 943 CONFIG_INOTIFY=y 944 + CONFIG_INOTIFY_USER=y 981 945 # CONFIG_QUOTA is not set 982 946 CONFIG_DNOTIFY=y 983 947 CONFIG_AUTOFS_FS=m ··· 1048 1010 CONFIG_SMB_FS=m 1049 1011 # CONFIG_SMB_NLS_DEFAULT is not set 1050 1012 # CONFIG_CIFS is not set 1013 + # CONFIG_CIFS_DEBUG2 is not set 1051 1014 # CONFIG_NCP_FS is not set 1052 1015 # CONFIG_CODA_FS is not set 1053 1016 # CONFIG_AFS_FS is not set ··· 1114 1075 # 1115 1076 # CONFIG_PRINTK_TIME is not set 1116 1077 # CONFIG_MAGIC_SYSRQ is not set 1078 + # CONFIG_UNUSED_SYMBOLS is not set 1117 1079 # CONFIG_DEBUG_KERNEL is not set 1118 1080 CONFIG_LOG_BUF_SHIFT=14 1119 1081 # CONFIG_DEBUG_FS is not set ··· 1174 1134 CONFIG_TEXTSEARCH_KMP=m 1175 1135 CONFIG_TEXTSEARCH_BM=m 1176 1136 CONFIG_TEXTSEARCH_FSM=m 1137 + CONFIG_PLIST=y
+42 -4
arch/mips/configs/ddb5477_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:01 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:00 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 69 66 CONFIG_GENERIC_FIND_NEXT_BIT=y 70 67 CONFIG_GENERIC_HWEIGHT=y 71 68 CONFIG_GENERIC_CALIBRATE_DELAY=y 69 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 72 70 CONFIG_DMA_NONCOHERENT=y 73 71 CONFIG_DMA_NEED_PCI_MAP_STATE=y 74 72 CONFIG_I8259=y ··· 117 113 # CONFIG_PAGE_SIZE_8KB is not set 118 114 # CONFIG_PAGE_SIZE_16KB is not set 119 115 # CONFIG_PAGE_SIZE_64KB is not set 120 - # CONFIG_MIPS_MT is not set 116 + CONFIG_MIPS_MT_DISABLED=y 117 + # CONFIG_MIPS_MT_SMTC is not set 118 + # CONFIG_MIPS_MT_SMP is not set 119 + # CONFIG_MIPS_VPE_LOADER is not set 121 120 CONFIG_CPU_HAS_LLSC=y 122 121 CONFIG_CPU_HAS_SYNC=y 123 122 CONFIG_GENERIC_HARDIRQS=y ··· 134 127 CONFIG_FLAT_NODE_MEM_MAP=y 135 128 # CONFIG_SPARSEMEM_STATIC is not set 136 129 CONFIG_SPLIT_PTLOCK_CPUS=4 130 + # CONFIG_RESOURCES_64BIT is not set 137 131 # CONFIG_HZ_48 is not set 138 132 # CONFIG_HZ_100 is not set 139 133 # CONFIG_HZ_128 is not set ··· 147 139 CONFIG_PREEMPT_NONE=y 148 140 # CONFIG_PREEMPT_VOLUNTARY is not set 149 141 # CONFIG_PREEMPT is not set 142 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 150 143 151 144 # 152 145 # Code maturity level options ··· 179 170 CONFIG_BUG=y 180 171 CONFIG_ELF_CORE=y 181 172 CONFIG_BASE_FULL=y 173 + CONFIG_RT_MUTEXES=y 182 174 CONFIG_FUTEX=y 183 175 CONFIG_EPOLL=y 184 176 CONFIG_SHMEM=y 185 177 CONFIG_SLAB=y 178 + CONFIG_VM_EVENT_COUNTERS=y 186 179 # CONFIG_TINY_SHMEM is not set 187 180 CONFIG_BASE_SMALL=0 188 181 # CONFIG_SLOB is not set ··· 270 259 # CONFIG_INET_IPCOMP is not set 271 260 # CONFIG_INET_XFRM_TUNNEL is not set 272 261 # CONFIG_INET_TUNNEL is not set 262 + CONFIG_INET_XFRM_MODE_TRANSPORT=y 263 + CONFIG_INET_XFRM_MODE_TUNNEL=y 273 264 CONFIG_INET_DIAG=y 274 265 CONFIG_INET_TCP_DIAG=y 275 266 # CONFIG_TCP_CONG_ADVANCED is not set ··· 279 266 # CONFIG_IPV6 is not set 280 267 # CONFIG_INET6_XFRM_TUNNEL is not set 281 268 # CONFIG_INET6_TUNNEL is not set 269 + CONFIG_NETWORK_SECMARK=y 282 270 # CONFIG_NETFILTER is not set 283 271 284 272 # ··· 339 325 CONFIG_STANDALONE=y 340 326 CONFIG_PREVENT_FIRMWARE_BUILD=y 341 327 CONFIG_FW_LOADER=y 328 + # CONFIG_SYS_HYPERVISOR is not set 342 329 343 330 # 344 331 # Connector - unified userspace <-> kernelspace linker ··· 437 422 CONFIG_QSEMI_PHY=y 438 423 CONFIG_LXT_PHY=y 439 424 CONFIG_CICADA_PHY=y 425 + CONFIG_VITESSE_PHY=y 426 + CONFIG_SMSC_PHY=y 440 427 441 428 # 442 429 # Ethernet (10 or 100Mbit) ··· 501 484 # CONFIG_CHELSIO_T1 is not set 502 485 # CONFIG_IXGB is not set 503 486 # CONFIG_S2IO is not set 487 + # CONFIG_MYRI10GE is not set 504 488 505 489 # 506 490 # Token Ring devices ··· 579 561 CONFIG_VT=y 580 562 CONFIG_VT_CONSOLE=y 581 563 CONFIG_HW_CONSOLE=y 564 + CONFIG_VT_HW_CONSOLE_BINDING=y 582 565 # CONFIG_SERIAL_NONSTANDARD is not set 583 566 584 567 # ··· 611 592 # Watchdog Cards 612 593 # 613 594 # CONFIG_WATCHDOG is not set 595 + # CONFIG_HW_RANDOM is not set 614 596 # CONFIG_RTC is not set 615 597 # CONFIG_GEN_RTC is not set 616 598 # CONFIG_DTLK is not set ··· 660 640 # Multimedia devices 661 641 # 662 642 # CONFIG_VIDEO_DEV is not set 643 + CONFIG_VIDEO_V4L2=y 663 644 664 645 # 665 646 # Digital Video Broadcasting Devices ··· 670 649 # 671 650 # Graphics support 672 651 # 652 + # CONFIG_FIRMWARE_EDID is not set 673 653 # CONFIG_FB is not set 674 654 675 655 # ··· 734 712 # CONFIG_RTC_CLASS is not set 735 713 736 714 # 715 + # DMA Engine support 716 + # 717 + # CONFIG_DMA_ENGINE is not set 718 + 719 + # 720 + # DMA Clients 721 + # 722 + 723 + # 724 + # DMA Devices 725 + # 726 + 727 + # 737 728 # File systems 738 729 # 739 730 CONFIG_EXT2_FS=y ··· 761 726 # CONFIG_MINIX_FS is not set 762 727 # CONFIG_ROMFS_FS is not set 763 728 CONFIG_INOTIFY=y 729 + CONFIG_INOTIFY_USER=y 764 730 # CONFIG_QUOTA is not set 765 731 CONFIG_DNOTIFY=y 766 732 CONFIG_AUTOFS_FS=y ··· 828 792 # CONFIG_RPCSEC_GSS_SPKM3 is not set 829 793 # CONFIG_SMB_FS is not set 830 794 # CONFIG_CIFS is not set 795 + # CONFIG_CIFS_DEBUG2 is not set 831 796 # CONFIG_NCP_FS is not set 832 797 # CONFIG_CODA_FS is not set 833 798 # CONFIG_AFS_FS is not set ··· 855 818 # 856 819 # CONFIG_PRINTK_TIME is not set 857 820 # CONFIG_MAGIC_SYSRQ is not set 821 + # CONFIG_UNUSED_SYMBOLS is not set 858 822 # CONFIG_DEBUG_KERNEL is not set 859 823 CONFIG_LOG_BUF_SHIFT=14 860 824 # CONFIG_DEBUG_FS is not set ··· 897 859 CONFIG_CRYPTO_DEFLATE=y 898 860 CONFIG_CRYPTO_MICHAEL_MIC=y 899 861 CONFIG_CRYPTO_CRC32C=y 900 - # CONFIG_CRYPTO_TEST is not set 901 862 902 863 # 903 864 # Hardware crypto devices ··· 911 874 CONFIG_LIBCRC32C=y 912 875 CONFIG_ZLIB_INFLATE=y 913 876 CONFIG_ZLIB_DEFLATE=y 877 + CONFIG_PLIST=y
+50 -5
arch/mips/configs/decstation_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:01 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:01 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 CONFIG_MACH_DECSTATION=y 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 69 66 CONFIG_GENERIC_FIND_NEXT_BIT=y 70 67 CONFIG_GENERIC_HWEIGHT=y 71 68 CONFIG_GENERIC_CALIBRATE_DELAY=y 69 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 72 70 CONFIG_DMA_NONCOHERENT=y 73 71 CONFIG_DMA_NEED_PCI_MAP_STATE=y 74 72 # CONFIG_CPU_BIG_ENDIAN is not set ··· 116 112 # CONFIG_PAGE_SIZE_8KB is not set 117 113 # CONFIG_PAGE_SIZE_16KB is not set 118 114 # CONFIG_PAGE_SIZE_64KB is not set 119 - # CONFIG_MIPS_MT is not set 115 + CONFIG_MIPS_MT_DISABLED=y 116 + # CONFIG_MIPS_MT_SMTC is not set 117 + # CONFIG_MIPS_MT_SMP is not set 118 + # CONFIG_MIPS_VPE_LOADER is not set 120 119 CONFIG_CPU_HAS_WB=y 121 120 CONFIG_GENERIC_HARDIRQS=y 122 121 CONFIG_GENERIC_IRQ_PROBE=y ··· 133 126 CONFIG_FLAT_NODE_MEM_MAP=y 134 127 # CONFIG_SPARSEMEM_STATIC is not set 135 128 CONFIG_SPLIT_PTLOCK_CPUS=4 129 + # CONFIG_RESOURCES_64BIT is not set 136 130 # CONFIG_HZ_48 is not set 137 131 # CONFIG_HZ_100 is not set 138 132 CONFIG_HZ_128=y ··· 148 140 CONFIG_PREEMPT_NONE=y 149 141 # CONFIG_PREEMPT_VOLUNTARY is not set 150 142 # CONFIG_PREEMPT is not set 143 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 151 144 152 145 # 153 146 # Code maturity level options ··· 181 172 CONFIG_BUG=y 182 173 CONFIG_ELF_CORE=y 183 174 CONFIG_BASE_FULL=y 175 + CONFIG_RT_MUTEXES=y 184 176 CONFIG_FUTEX=y 185 177 CONFIG_EPOLL=y 186 178 CONFIG_SHMEM=y 187 179 CONFIG_SLAB=y 180 + CONFIG_VM_EVENT_COUNTERS=y 188 181 # CONFIG_TINY_SHMEM is not set 189 182 CONFIG_BASE_SMALL=0 190 183 # CONFIG_SLOB is not set ··· 255 244 CONFIG_PACKET=y 256 245 CONFIG_PACKET_MMAP=y 257 246 CONFIG_UNIX=y 247 + CONFIG_XFRM=y 248 + # CONFIG_XFRM_USER is not set 258 249 # CONFIG_NET_KEY is not set 259 250 CONFIG_INET=y 260 251 # CONFIG_IP_MULTICAST is not set ··· 275 262 # CONFIG_INET_IPCOMP is not set 276 263 # CONFIG_INET_XFRM_TUNNEL is not set 277 264 # CONFIG_INET_TUNNEL is not set 265 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 266 + CONFIG_INET_XFRM_MODE_TUNNEL=m 278 267 CONFIG_INET_DIAG=y 279 268 CONFIG_INET_TCP_DIAG=y 280 269 # CONFIG_TCP_CONG_ADVANCED is not set ··· 284 269 # CONFIG_IPV6 is not set 285 270 # CONFIG_INET6_XFRM_TUNNEL is not set 286 271 # CONFIG_INET6_TUNNEL is not set 272 + CONFIG_NETWORK_SECMARK=y 287 273 # CONFIG_NETFILTER is not set 288 274 289 275 # ··· 345 329 CONFIG_PREVENT_FIRMWARE_BUILD=y 346 330 # CONFIG_FW_LOADER is not set 347 331 # CONFIG_DEBUG_DRIVER is not set 332 + # CONFIG_SYS_HYPERVISOR is not set 348 333 349 334 # 350 335 # Connector - unified userspace <-> kernelspace linker ··· 465 448 CONFIG_QSEMI_PHY=m 466 449 CONFIG_LXT_PHY=m 467 450 CONFIG_CICADA_PHY=m 451 + CONFIG_VITESSE_PHY=m 452 + CONFIG_SMSC_PHY=m 468 453 469 454 # 470 455 # Ethernet (10 or 100Mbit) ··· 556 537 # Watchdog Cards 557 538 # 558 539 # CONFIG_WATCHDOG is not set 540 + # CONFIG_HW_RANDOM is not set 559 541 CONFIG_RTC=y 560 542 # CONFIG_DTLK is not set 561 543 # CONFIG_R3964 is not set ··· 602 582 # Multimedia devices 603 583 # 604 584 # CONFIG_VIDEO_DEV is not set 585 + CONFIG_VIDEO_V4L2=y 605 586 606 587 # 607 588 # Digital Video Broadcasting Devices ··· 612 591 # 613 592 # Graphics support 614 593 # 594 + # CONFIG_FIRMWARE_EDID is not set 615 595 CONFIG_FB=y 616 596 CONFIG_FB_CFB_FILLRECT=y 617 597 CONFIG_FB_CFB_COPYAREA=y 618 598 CONFIG_FB_CFB_IMAGEBLIT=y 619 599 # CONFIG_FB_MACMODES is not set 620 - CONFIG_FB_FIRMWARE_EDID=y 600 + # CONFIG_FB_BACKLIGHT is not set 621 601 # CONFIG_FB_MODE_HELPERS is not set 622 602 # CONFIG_FB_TILEBLITTING is not set 623 603 # CONFIG_FB_S1D13XXX is not set ··· 691 669 # CONFIG_RTC_CLASS is not set 692 670 693 671 # 672 + # DMA Engine support 673 + # 674 + # CONFIG_DMA_ENGINE is not set 675 + 676 + # 677 + # DMA Clients 678 + # 679 + 680 + # 681 + # DMA Devices 682 + # 683 + 684 + # 694 685 # File systems 695 686 # 696 687 CONFIG_EXT2_FS=y ··· 721 686 # CONFIG_MINIX_FS is not set 722 687 # CONFIG_ROMFS_FS is not set 723 688 CONFIG_INOTIFY=y 689 + CONFIG_INOTIFY_USER=y 724 690 # CONFIG_QUOTA is not set 725 691 CONFIG_DNOTIFY=y 726 692 # CONFIG_AUTOFS_FS is not set ··· 768 732 # CONFIG_QNX4FS_FS is not set 769 733 # CONFIG_SYSV_FS is not set 770 734 CONFIG_UFS_FS=y 735 + # CONFIG_UFS_FS_WRITE is not set 736 + # CONFIG_UFS_DEBUG is not set 771 737 772 738 # 773 739 # Network File Systems ··· 789 751 # CONFIG_RPCSEC_GSS_SPKM3 is not set 790 752 # CONFIG_SMB_FS is not set 791 753 # CONFIG_CIFS is not set 754 + # CONFIG_CIFS_DEBUG2 is not set 792 755 # CONFIG_NCP_FS is not set 793 756 # CONFIG_CODA_FS is not set 794 757 # CONFIG_AFS_FS is not set ··· 831 792 # 832 793 # CONFIG_PRINTK_TIME is not set 833 794 CONFIG_MAGIC_SYSRQ=y 795 + # CONFIG_UNUSED_SYMBOLS is not set 834 796 CONFIG_DEBUG_KERNEL=y 835 797 CONFIG_LOG_BUF_SHIFT=14 836 798 CONFIG_DETECT_SOFTLOCKUP=y 837 799 # CONFIG_SCHEDSTATS is not set 838 800 # CONFIG_DEBUG_SLAB is not set 839 - CONFIG_DEBUG_MUTEXES=y 801 + # CONFIG_DEBUG_RT_MUTEXES is not set 802 + # CONFIG_RT_MUTEX_TESTER is not set 840 803 # CONFIG_DEBUG_SPINLOCK is not set 804 + CONFIG_DEBUG_MUTEXES=y 805 + # CONFIG_DEBUG_RWSEMS is not set 841 806 # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 807 + # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 842 808 # CONFIG_DEBUG_KOBJECT is not set 843 809 # CONFIG_DEBUG_INFO is not set 844 810 # CONFIG_DEBUG_FS is not set ··· 906 862 CONFIG_LIBCRC32C=m 907 863 CONFIG_ZLIB_INFLATE=m 908 864 CONFIG_ZLIB_DEFLATE=m 865 + CONFIG_PLIST=y
+35 -4
arch/mips/configs/e55_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Tue Apr 25 00:08:20 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:02 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 CONFIG_MACH_VR41XX=y 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 74 71 CONFIG_GENERIC_FIND_NEXT_BIT=y 75 72 CONFIG_GENERIC_HWEIGHT=y 76 73 CONFIG_GENERIC_CALIBRATE_DELAY=y 74 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 77 75 CONFIG_DMA_NONCOHERENT=y 78 76 CONFIG_DMA_NEED_PCI_MAP_STATE=y 79 77 # CONFIG_CPU_BIG_ENDIAN is not set ··· 119 115 # CONFIG_PAGE_SIZE_8KB is not set 120 116 # CONFIG_PAGE_SIZE_16KB is not set 121 117 # CONFIG_PAGE_SIZE_64KB is not set 122 - # CONFIG_MIPS_MT is not set 118 + CONFIG_MIPS_MT_DISABLED=y 119 + # CONFIG_MIPS_MT_SMTC is not set 120 + # CONFIG_MIPS_MT_SMP is not set 121 + # CONFIG_MIPS_VPE_LOADER is not set 123 122 CONFIG_CPU_HAS_SYNC=y 124 123 CONFIG_GENERIC_HARDIRQS=y 125 124 CONFIG_GENERIC_IRQ_PROBE=y ··· 135 128 CONFIG_FLAT_NODE_MEM_MAP=y 136 129 # CONFIG_SPARSEMEM_STATIC is not set 137 130 CONFIG_SPLIT_PTLOCK_CPUS=4 131 + # CONFIG_RESOURCES_64BIT is not set 138 132 # CONFIG_HZ_48 is not set 139 133 # CONFIG_HZ_100 is not set 140 134 # CONFIG_HZ_128 is not set ··· 148 140 CONFIG_PREEMPT_NONE=y 149 141 # CONFIG_PREEMPT_VOLUNTARY is not set 150 142 # CONFIG_PREEMPT is not set 143 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 151 144 152 145 # 153 146 # Code maturity level options ··· 178 169 CONFIG_BUG=y 179 170 CONFIG_ELF_CORE=y 180 171 CONFIG_BASE_FULL=y 172 + CONFIG_RT_MUTEXES=y 181 173 CONFIG_FUTEX=y 182 174 CONFIG_EPOLL=y 183 175 CONFIG_SHMEM=y 184 176 CONFIG_SLAB=y 177 + CONFIG_VM_EVENT_COUNTERS=y 185 178 # CONFIG_TINY_SHMEM is not set 186 179 CONFIG_BASE_SMALL=0 187 180 # CONFIG_SLOB is not set ··· 255 244 CONFIG_STANDALONE=y 256 245 CONFIG_PREVENT_FIRMWARE_BUILD=y 257 246 # CONFIG_FW_LOADER is not set 247 + # CONFIG_SYS_HYPERVISOR is not set 258 248 259 249 # 260 250 # Connector - unified userspace <-> kernelspace linker ··· 390 378 CONFIG_VT=y 391 379 CONFIG_VT_CONSOLE=y 392 380 CONFIG_HW_CONSOLE=y 381 + CONFIG_VT_HW_CONSOLE_BINDING=y 393 382 # CONFIG_SERIAL_NONSTANDARD is not set 394 383 395 384 # ··· 431 418 # CONFIG_PCWATCHDOG is not set 432 419 # CONFIG_MIXCOMWD is not set 433 420 # CONFIG_WDT is not set 421 + # CONFIG_HW_RANDOM is not set 434 422 # CONFIG_RTC is not set 435 423 # CONFIG_GEN_RTC is not set 436 424 # CONFIG_DTLK is not set ··· 463 449 # 464 450 # Dallas's 1-wire bus 465 451 # 466 - # CONFIG_W1 is not set 467 452 468 453 # 469 454 # Hardware Monitoring support ··· 478 465 # Multimedia devices 479 466 # 480 467 # CONFIG_VIDEO_DEV is not set 468 + CONFIG_VIDEO_V4L2=y 481 469 482 470 # 483 471 # Digital Video Broadcasting Devices ··· 487 473 # 488 474 # Graphics support 489 475 # 476 + # CONFIG_FIRMWARE_EDID is not set 490 477 # CONFIG_FB is not set 491 478 492 479 # ··· 550 535 # CONFIG_RTC_CLASS is not set 551 536 552 537 # 538 + # DMA Engine support 539 + # 540 + # CONFIG_DMA_ENGINE is not set 541 + 542 + # 543 + # DMA Clients 544 + # 545 + 546 + # 547 + # DMA Devices 548 + # 549 + 550 + # 553 551 # File systems 554 552 # 555 553 CONFIG_EXT2_FS=y ··· 576 548 # CONFIG_MINIX_FS is not set 577 549 # CONFIG_ROMFS_FS is not set 578 550 CONFIG_INOTIFY=y 551 + CONFIG_INOTIFY_USER=y 579 552 # CONFIG_QUOTA is not set 580 553 CONFIG_DNOTIFY=y 581 554 # CONFIG_AUTOFS_FS is not set ··· 645 616 # 646 617 # CONFIG_PRINTK_TIME is not set 647 618 # CONFIG_MAGIC_SYSRQ is not set 619 + # CONFIG_UNUSED_SYMBOLS is not set 648 620 # CONFIG_DEBUG_KERNEL is not set 649 621 CONFIG_LOG_BUF_SHIFT=14 650 622 # CONFIG_DEBUG_FS is not set ··· 674 644 # CONFIG_CRC16 is not set 675 645 # CONFIG_CRC32 is not set 676 646 # CONFIG_LIBCRC32C is not set 647 + CONFIG_PLIST=y
+39 -5
arch/mips/configs/emma2rh_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17 4 - # Sun Jun 18 13:46:53 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:05 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 134 133 CONFIG_FLAT_NODE_MEM_MAP=y 135 134 # CONFIG_SPARSEMEM_STATIC is not set 136 135 CONFIG_SPLIT_PTLOCK_CPUS=4 136 + # CONFIG_RESOURCES_64BIT is not set 137 137 # CONFIG_HZ_48 is not set 138 138 # CONFIG_HZ_100 is not set 139 139 # CONFIG_HZ_128 is not set ··· 148 146 # CONFIG_PREEMPT_VOLUNTARY is not set 149 147 CONFIG_PREEMPT=y 150 148 CONFIG_PREEMPT_BKL=y 149 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 151 150 152 151 # 153 152 # Code maturity level options ··· 183 180 CONFIG_BUG=y 184 181 CONFIG_ELF_CORE=y 185 182 CONFIG_BASE_FULL=y 183 + CONFIG_RT_MUTEXES=y 186 184 CONFIG_FUTEX=y 187 185 CONFIG_EPOLL=y 188 186 CONFIG_SHMEM=y 189 187 CONFIG_SLAB=y 188 + CONFIG_VM_EVENT_COUNTERS=y 190 189 # CONFIG_TINY_SHMEM is not set 191 190 CONFIG_BASE_SMALL=0 192 191 # CONFIG_SLOB is not set 193 - CONFIG_OBSOLETE_INTERMODULE=y 194 192 195 193 # 196 194 # Loadable module support ··· 287 283 # CONFIG_INET_IPCOMP is not set 288 284 # CONFIG_INET_XFRM_TUNNEL is not set 289 285 # CONFIG_INET_TUNNEL is not set 286 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 287 + CONFIG_INET_XFRM_MODE_TUNNEL=m 290 288 CONFIG_INET_DIAG=y 291 289 CONFIG_INET_TCP_DIAG=y 292 290 # CONFIG_TCP_CONG_ADVANCED is not set ··· 306 300 # CONFIG_INET6_IPCOMP is not set 307 301 # CONFIG_INET6_XFRM_TUNNEL is not set 308 302 # CONFIG_INET6_TUNNEL is not set 303 + CONFIG_INET6_XFRM_MODE_TRANSPORT=m 304 + CONFIG_INET6_XFRM_MODE_TUNNEL=m 309 305 # CONFIG_IPV6_TUNNEL is not set 306 + CONFIG_NETWORK_SECMARK=y 310 307 CONFIG_NETFILTER=y 311 308 # CONFIG_NETFILTER_DEBUG is not set 312 309 ··· 387 378 CONFIG_STANDALONE=y 388 379 CONFIG_PREVENT_FIRMWARE_BUILD=y 389 380 # CONFIG_FW_LOADER is not set 381 + # CONFIG_SYS_HYPERVISOR is not set 390 382 391 383 # 392 384 # Connector - unified userspace <-> kernelspace linker ··· 555 545 # CONFIG_MEGARAID_LEGACY is not set 556 546 # CONFIG_MEGARAID_SAS is not set 557 547 # CONFIG_SCSI_SATA is not set 548 + # CONFIG_SCSI_HPTIOP is not set 558 549 # CONFIG_SCSI_DMX3191D is not set 559 550 # CONFIG_SCSI_FUTURE_DOMAIN is not set 560 551 # CONFIG_SCSI_IPS is not set ··· 674 663 # CONFIG_CHELSIO_T1 is not set 675 664 # CONFIG_IXGB is not set 676 665 # CONFIG_S2IO is not set 666 + # CONFIG_MYRI10GE is not set 677 667 678 668 # 679 669 # Token Ring devices ··· 782 770 # Watchdog Cards 783 771 # 784 772 # CONFIG_WATCHDOG is not set 773 + # CONFIG_HW_RANDOM is not set 785 774 CONFIG_RTC=m 786 775 CONFIG_GEN_RTC=m 787 776 CONFIG_GEN_RTC_X=y ··· 827 814 # CONFIG_I2C_I810 is not set 828 815 # CONFIG_I2C_PIIX4 is not set 829 816 # CONFIG_I2C_NFORCE2 is not set 817 + # CONFIG_I2C_OCORES is not set 830 818 # CONFIG_I2C_PARPORT_LIGHT is not set 831 819 # CONFIG_I2C_PROSAVAGE is not set 832 820 # CONFIG_I2C_SAVAGE4 is not set ··· 864 850 # 865 851 # Dallas's 1-wire bus 866 852 # 867 - # CONFIG_W1 is not set 868 853 869 854 # 870 855 # Hardware Monitoring support 871 856 # 872 857 CONFIG_HWMON=y 873 858 # CONFIG_HWMON_VID is not set 859 + # CONFIG_SENSORS_ABITUGURU is not set 874 860 # CONFIG_SENSORS_ADM1021 is not set 875 861 # CONFIG_SENSORS_ADM1025 is not set 876 862 # CONFIG_SENSORS_ADM1026 is not set ··· 899 885 # CONFIG_SENSORS_PC87360 is not set 900 886 # CONFIG_SENSORS_SIS5595 is not set 901 887 # CONFIG_SENSORS_SMSC47M1 is not set 888 + # CONFIG_SENSORS_SMSC47M192 is not set 902 889 # CONFIG_SENSORS_SMSC47B397 is not set 903 890 # CONFIG_SENSORS_VIA686A is not set 904 891 # CONFIG_SENSORS_VT8231 is not set 905 892 # CONFIG_SENSORS_W83781D is not set 893 + # CONFIG_SENSORS_W83791D is not set 906 894 # CONFIG_SENSORS_W83792D is not set 907 895 # CONFIG_SENSORS_W83L785TS is not set 908 896 # CONFIG_SENSORS_W83627HF is not set ··· 929 913 # 930 914 # Graphics support 931 915 # 916 + # CONFIG_FIRMWARE_EDID is not set 932 917 # CONFIG_FB is not set 933 918 934 919 # ··· 987 970 # CONFIG_RTC_CLASS is not set 988 971 989 972 # 973 + # DMA Engine support 974 + # 975 + # CONFIG_DMA_ENGINE is not set 976 + 977 + # 978 + # DMA Clients 979 + # 980 + 981 + # 982 + # DMA Devices 983 + # 984 + 985 + # 990 986 # File systems 991 987 # 992 988 CONFIG_EXT2_FS=y ··· 1018 988 # CONFIG_JFS_FS is not set 1019 989 CONFIG_FS_POSIX_ACL=y 1020 990 CONFIG_XFS_FS=m 1021 - CONFIG_XFS_EXPORT=y 1022 991 # CONFIG_XFS_QUOTA is not set 1023 992 # CONFIG_XFS_SECURITY is not set 1024 993 # CONFIG_XFS_POSIX_ACL is not set ··· 1026 997 # CONFIG_MINIX_FS is not set 1027 998 # CONFIG_ROMFS_FS is not set 1028 999 CONFIG_INOTIFY=y 1000 + CONFIG_INOTIFY_USER=y 1029 1001 # CONFIG_QUOTA is not set 1030 1002 # CONFIG_DNOTIFY is not set 1031 1003 # CONFIG_AUTOFS_FS is not set ··· 1077 1047 CONFIG_JFFS2_FS_DEBUG=0 1078 1048 CONFIG_JFFS2_FS_WRITEBUFFER=y 1079 1049 # CONFIG_JFFS2_SUMMARY is not set 1050 + # CONFIG_JFFS2_FS_XATTR is not set 1080 1051 CONFIG_JFFS2_COMPRESSION_OPTIONS=y 1081 1052 CONFIG_JFFS2_ZLIB=y 1082 1053 CONFIG_JFFS2_RTIME=y ··· 1117 1086 CONFIG_SMB_FS=m 1118 1087 # CONFIG_SMB_NLS_DEFAULT is not set 1119 1088 # CONFIG_CIFS is not set 1089 + # CONFIG_CIFS_DEBUG2 is not set 1120 1090 # CONFIG_NCP_FS is not set 1121 1091 # CONFIG_CODA_FS is not set 1122 1092 # CONFIG_AFS_FS is not set ··· 1183 1151 # 1184 1152 # CONFIG_PRINTK_TIME is not set 1185 1153 # CONFIG_MAGIC_SYSRQ is not set 1154 + # CONFIG_UNUSED_SYMBOLS is not set 1186 1155 # CONFIG_DEBUG_KERNEL is not set 1187 1156 CONFIG_LOG_BUF_SHIFT=14 1188 1157 # CONFIG_DEBUG_FS is not set ··· 1238 1205 # CONFIG_LIBCRC32C is not set 1239 1206 CONFIG_ZLIB_INFLATE=y 1240 1207 CONFIG_ZLIB_DEFLATE=y 1208 + CONFIG_PLIST=y
+42 -3
arch/mips/configs/ev64120_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:02 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:05 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 CONFIG_MIPS_EV64120=y ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 69 66 CONFIG_GENERIC_FIND_NEXT_BIT=y 70 67 CONFIG_GENERIC_HWEIGHT=y 71 68 CONFIG_GENERIC_CALIBRATE_DELAY=y 69 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 72 70 CONFIG_DMA_NONCOHERENT=y 73 71 CONFIG_DMA_NEED_PCI_MAP_STATE=y 74 72 CONFIG_CPU_BIG_ENDIAN=y ··· 118 114 # CONFIG_PAGE_SIZE_8KB is not set 119 115 # CONFIG_PAGE_SIZE_16KB is not set 120 116 # CONFIG_PAGE_SIZE_64KB is not set 121 - # CONFIG_MIPS_MT is not set 117 + CONFIG_MIPS_MT_DISABLED=y 118 + # CONFIG_MIPS_MT_SMTC is not set 119 + # CONFIG_MIPS_MT_SMP is not set 120 + # CONFIG_MIPS_VPE_LOADER is not set 122 121 # CONFIG_64BIT_PHYS_ADDR is not set 123 122 CONFIG_CPU_HAS_LLSC=y 124 123 CONFIG_CPU_HAS_SYNC=y ··· 136 129 CONFIG_FLAT_NODE_MEM_MAP=y 137 130 # CONFIG_SPARSEMEM_STATIC is not set 138 131 CONFIG_SPLIT_PTLOCK_CPUS=4 132 + # CONFIG_RESOURCES_64BIT is not set 139 133 # CONFIG_HZ_48 is not set 140 134 # CONFIG_HZ_100 is not set 141 135 # CONFIG_HZ_128 is not set ··· 149 141 CONFIG_PREEMPT_NONE=y 150 142 # CONFIG_PREEMPT_VOLUNTARY is not set 151 143 # CONFIG_PREEMPT is not set 144 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 152 145 153 146 # 154 147 # Code maturity level options ··· 181 172 CONFIG_BUG=y 182 173 CONFIG_ELF_CORE=y 183 174 CONFIG_BASE_FULL=y 175 + CONFIG_RT_MUTEXES=y 184 176 CONFIG_FUTEX=y 185 177 CONFIG_EPOLL=y 186 178 CONFIG_SHMEM=y 187 179 CONFIG_SLAB=y 180 + CONFIG_VM_EVENT_COUNTERS=y 188 181 # CONFIG_TINY_SHMEM is not set 189 182 CONFIG_BASE_SMALL=0 190 183 # CONFIG_SLOB is not set ··· 276 265 # CONFIG_INET_IPCOMP is not set 277 266 # CONFIG_INET_XFRM_TUNNEL is not set 278 267 # CONFIG_INET_TUNNEL is not set 268 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 269 + CONFIG_INET_XFRM_MODE_TUNNEL=m 279 270 CONFIG_INET_DIAG=y 280 271 CONFIG_INET_TCP_DIAG=y 281 272 # CONFIG_TCP_CONG_ADVANCED is not set ··· 285 272 # CONFIG_IPV6 is not set 286 273 # CONFIG_INET6_XFRM_TUNNEL is not set 287 274 # CONFIG_INET6_TUNNEL is not set 275 + CONFIG_NETWORK_SECMARK=y 288 276 # CONFIG_NETFILTER is not set 289 277 290 278 # ··· 345 331 CONFIG_STANDALONE=y 346 332 CONFIG_PREVENT_FIRMWARE_BUILD=y 347 333 CONFIG_FW_LOADER=m 334 + # CONFIG_SYS_HYPERVISOR is not set 348 335 349 336 # 350 337 # Connector - unified userspace <-> kernelspace linker ··· 442 427 CONFIG_QSEMI_PHY=m 443 428 CONFIG_LXT_PHY=m 444 429 CONFIG_CICADA_PHY=m 430 + CONFIG_VITESSE_PHY=m 431 + CONFIG_SMSC_PHY=m 445 432 446 433 # 447 434 # Ethernet (10 or 100Mbit) ··· 486 469 # CONFIG_CHELSIO_T1 is not set 487 470 # CONFIG_IXGB is not set 488 471 # CONFIG_S2IO is not set 472 + # CONFIG_MYRI10GE is not set 489 473 490 474 # 491 475 # Token Ring devices ··· 572 554 CONFIG_VT=y 573 555 CONFIG_VT_CONSOLE=y 574 556 CONFIG_HW_CONSOLE=y 557 + CONFIG_VT_HW_CONSOLE_BINDING=y 575 558 # CONFIG_SERIAL_NONSTANDARD is not set 576 559 577 560 # ··· 604 585 # Watchdog Cards 605 586 # 606 587 # CONFIG_WATCHDOG is not set 588 + # CONFIG_HW_RANDOM is not set 607 589 # CONFIG_RTC is not set 608 590 # CONFIG_GEN_RTC is not set 609 591 # CONFIG_DTLK is not set ··· 653 633 # Multimedia devices 654 634 # 655 635 # CONFIG_VIDEO_DEV is not set 636 + CONFIG_VIDEO_V4L2=y 656 637 657 638 # 658 639 # Digital Video Broadcasting Devices ··· 663 642 # 664 643 # Graphics support 665 644 # 645 + # CONFIG_FIRMWARE_EDID is not set 666 646 # CONFIG_FB is not set 667 647 668 648 # ··· 727 705 # CONFIG_RTC_CLASS is not set 728 706 729 707 # 708 + # DMA Engine support 709 + # 710 + # CONFIG_DMA_ENGINE is not set 711 + 712 + # 713 + # DMA Clients 714 + # 715 + 716 + # 717 + # DMA Devices 718 + # 719 + 720 + # 730 721 # File systems 731 722 # 732 723 CONFIG_EXT2_FS=y ··· 754 719 # CONFIG_MINIX_FS is not set 755 720 # CONFIG_ROMFS_FS is not set 756 721 CONFIG_INOTIFY=y 722 + CONFIG_INOTIFY_USER=y 757 723 # CONFIG_QUOTA is not set 758 724 CONFIG_DNOTIFY=y 759 725 # CONFIG_AUTOFS_FS is not set ··· 818 782 # CONFIG_RPCSEC_GSS_SPKM3 is not set 819 783 # CONFIG_SMB_FS is not set 820 784 # CONFIG_CIFS is not set 785 + # CONFIG_CIFS_DEBUG2 is not set 821 786 # CONFIG_NCP_FS is not set 822 787 # CONFIG_CODA_FS is not set 823 788 # CONFIG_AFS_FS is not set ··· 845 808 # 846 809 # CONFIG_PRINTK_TIME is not set 847 810 # CONFIG_MAGIC_SYSRQ is not set 811 + # CONFIG_UNUSED_SYMBOLS is not set 848 812 # CONFIG_DEBUG_KERNEL is not set 849 813 CONFIG_LOG_BUF_SHIFT=14 850 814 # CONFIG_DEBUG_FS is not set ··· 901 863 CONFIG_LIBCRC32C=m 902 864 CONFIG_ZLIB_INFLATE=m 903 865 CONFIG_ZLIB_DEFLATE=m 866 + CONFIG_PLIST=y
+41 -3
arch/mips/configs/ev96100_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:03 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:05 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 68 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 66 CONFIG_GENERIC_HWEIGHT=y 70 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 71 69 CONFIG_DMA_NONCOHERENT=y 72 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 71 CONFIG_CPU_BIG_ENDIAN=y ··· 121 117 CONFIG_BOARD_SCACHE=y 122 118 CONFIG_RM7000_CPU_SCACHE=y 123 119 CONFIG_CPU_HAS_PREFETCH=y 124 - # CONFIG_MIPS_MT is not set 120 + CONFIG_MIPS_MT_DISABLED=y 121 + # CONFIG_MIPS_MT_SMTC is not set 122 + # CONFIG_MIPS_MT_SMP is not set 123 + # CONFIG_MIPS_VPE_LOADER is not set 125 124 # CONFIG_64BIT_PHYS_ADDR is not set 126 125 CONFIG_CPU_HAS_LLSC=y 127 126 CONFIG_CPU_HAS_SYNC=y ··· 140 133 CONFIG_FLAT_NODE_MEM_MAP=y 141 134 # CONFIG_SPARSEMEM_STATIC is not set 142 135 CONFIG_SPLIT_PTLOCK_CPUS=4 136 + # CONFIG_RESOURCES_64BIT is not set 143 137 # CONFIG_HZ_48 is not set 144 138 # CONFIG_HZ_100 is not set 145 139 # CONFIG_HZ_128 is not set ··· 153 145 CONFIG_PREEMPT_NONE=y 154 146 # CONFIG_PREEMPT_VOLUNTARY is not set 155 147 # CONFIG_PREEMPT is not set 148 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 156 149 157 150 # 158 151 # Code maturity level options ··· 185 176 CONFIG_BUG=y 186 177 CONFIG_ELF_CORE=y 187 178 CONFIG_BASE_FULL=y 179 + CONFIG_RT_MUTEXES=y 188 180 CONFIG_FUTEX=y 189 181 CONFIG_EPOLL=y 190 182 CONFIG_SHMEM=y 191 183 CONFIG_SLAB=y 184 + CONFIG_VM_EVENT_COUNTERS=y 192 185 # CONFIG_TINY_SHMEM is not set 193 186 CONFIG_BASE_SMALL=0 194 187 # CONFIG_SLOB is not set ··· 279 268 # CONFIG_INET_IPCOMP is not set 280 269 # CONFIG_INET_XFRM_TUNNEL is not set 281 270 # CONFIG_INET_TUNNEL is not set 271 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 272 + CONFIG_INET_XFRM_MODE_TUNNEL=m 282 273 CONFIG_INET_DIAG=y 283 274 CONFIG_INET_TCP_DIAG=y 284 275 # CONFIG_TCP_CONG_ADVANCED is not set ··· 288 275 # CONFIG_IPV6 is not set 289 276 # CONFIG_INET6_XFRM_TUNNEL is not set 290 277 # CONFIG_INET6_TUNNEL is not set 278 + CONFIG_NETWORK_SECMARK=y 291 279 # CONFIG_NETFILTER is not set 292 280 293 281 # ··· 348 334 CONFIG_STANDALONE=y 349 335 CONFIG_PREVENT_FIRMWARE_BUILD=y 350 336 # CONFIG_FW_LOADER is not set 337 + # CONFIG_SYS_HYPERVISOR is not set 351 338 352 339 # 353 340 # Connector - unified userspace <-> kernelspace linker ··· 433 418 CONFIG_QSEMI_PHY=m 434 419 CONFIG_LXT_PHY=m 435 420 CONFIG_CICADA_PHY=m 421 + CONFIG_VITESSE_PHY=m 422 + CONFIG_SMSC_PHY=m 436 423 437 424 # 438 425 # Ethernet (10 or 100Mbit) ··· 524 507 CONFIG_VT=y 525 508 CONFIG_VT_CONSOLE=y 526 509 CONFIG_HW_CONSOLE=y 510 + CONFIG_VT_HW_CONSOLE_BINDING=y 527 511 # CONFIG_SERIAL_NONSTANDARD is not set 528 512 529 513 # ··· 554 536 # Watchdog Cards 555 537 # 556 538 # CONFIG_WATCHDOG is not set 539 + # CONFIG_HW_RANDOM is not set 557 540 # CONFIG_RTC is not set 558 541 # CONFIG_GEN_RTC is not set 559 542 # CONFIG_DTLK is not set ··· 601 582 # Multimedia devices 602 583 # 603 584 # CONFIG_VIDEO_DEV is not set 585 + CONFIG_VIDEO_V4L2=y 604 586 605 587 # 606 588 # Digital Video Broadcasting Devices ··· 611 591 # 612 592 # Graphics support 613 593 # 594 + # CONFIG_FIRMWARE_EDID is not set 614 595 # CONFIG_FB is not set 615 596 616 597 # ··· 673 652 # CONFIG_RTC_CLASS is not set 674 653 675 654 # 655 + # DMA Engine support 656 + # 657 + # CONFIG_DMA_ENGINE is not set 658 + 659 + # 660 + # DMA Clients 661 + # 662 + 663 + # 664 + # DMA Devices 665 + # 666 + 667 + # 676 668 # File systems 677 669 # 678 670 CONFIG_EXT2_FS=y ··· 700 666 # CONFIG_MINIX_FS is not set 701 667 # CONFIG_ROMFS_FS is not set 702 668 CONFIG_INOTIFY=y 669 + CONFIG_INOTIFY_USER=y 703 670 # CONFIG_QUOTA is not set 704 671 CONFIG_DNOTIFY=y 705 672 # CONFIG_AUTOFS_FS is not set ··· 764 729 # CONFIG_RPCSEC_GSS_SPKM3 is not set 765 730 # CONFIG_SMB_FS is not set 766 731 # CONFIG_CIFS is not set 732 + # CONFIG_CIFS_DEBUG2 is not set 767 733 # CONFIG_NCP_FS is not set 768 734 # CONFIG_CODA_FS is not set 769 735 # CONFIG_AFS_FS is not set ··· 791 755 # 792 756 # CONFIG_PRINTK_TIME is not set 793 757 # CONFIG_MAGIC_SYSRQ is not set 758 + # CONFIG_UNUSED_SYMBOLS is not set 794 759 # CONFIG_DEBUG_KERNEL is not set 795 760 CONFIG_LOG_BUF_SHIFT=14 796 761 # CONFIG_DEBUG_FS is not set ··· 847 810 CONFIG_LIBCRC32C=m 848 811 CONFIG_ZLIB_INFLATE=m 849 812 CONFIG_ZLIB_DEFLATE=m 813 + CONFIG_PLIST=y
+80 -55
arch/mips/configs/excite_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.16-rc4 4 - # Thu Feb 23 13:15:27 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:09 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + CONFIG_BASLER_EXCITE=y 25 + # CONFIG_BASLER_EXCITE_PROTOTYPE is not set 24 26 # CONFIG_MIPS_COBALT is not set 25 27 # CONFIG_MACH_DECSTATION is not set 26 28 # CONFIG_MIPS_EV64120 is not set ··· 34 32 # CONFIG_MIPS_ATLAS is not set 35 33 # CONFIG_MIPS_MALTA is not set 36 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 37 36 # CONFIG_MIPS_SIM is not set 38 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 39 38 # CONFIG_MOMENCO_OCELOT is not set ··· 44 41 # CONFIG_MIPS_XXS1500 is not set 45 42 # CONFIG_PNX8550_V2PCI is not set 46 43 # CONFIG_PNX8550_JBS is not set 47 - CONFIG_BASLER_EXCITE=y 48 - # CONFIG_BASLER_EXCITE_PROTOTYPE is not set 49 - # CONFIG_DDB5074 is not set 50 - # CONFIG_DDB5476 is not set 51 44 # CONFIG_DDB5477 is not set 52 45 # CONFIG_MACH_VR41XX is not set 53 46 # CONFIG_PMC_YOSEMITE is not set 54 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 55 49 # CONFIG_SGI_IP22 is not set 56 50 # CONFIG_SGI_IP27 is not set 57 51 # CONFIG_SGI_IP32 is not set ··· 66 66 # CONFIG_TOSHIBA_RBTX4927 is not set 67 67 # CONFIG_TOSHIBA_RBTX4938 is not set 68 68 CONFIG_RWSEM_GENERIC_SPINLOCK=y 69 + CONFIG_GENERIC_FIND_NEXT_BIT=y 70 + CONFIG_GENERIC_HWEIGHT=y 69 71 CONFIG_GENERIC_CALIBRATE_DELAY=y 72 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 70 73 CONFIG_DMA_COHERENT=y 71 - CONFIG_SERIAL_RM9000=y 72 74 CONFIG_CPU_BIG_ENDIAN=y 73 75 # CONFIG_CPU_LITTLE_ENDIAN is not set 74 76 CONFIG_SYS_SUPPORTS_BIG_ENDIAN=y ··· 117 115 # CONFIG_PAGE_SIZE_16KB is not set 118 116 # CONFIG_PAGE_SIZE_64KB is not set 119 117 CONFIG_CPU_HAS_PREFETCH=y 120 - # CONFIG_MIPS_MT is not set 118 + CONFIG_MIPS_MT_DISABLED=y 119 + # CONFIG_MIPS_MT_SMTC is not set 120 + # CONFIG_MIPS_MT_SMP is not set 121 + # CONFIG_MIPS_VPE_LOADER is not set 121 122 # CONFIG_64BIT_PHYS_ADDR is not set 122 - # CONFIG_CPU_ADVANCED is not set 123 123 CONFIG_CPU_HAS_LLSC=y 124 124 CONFIG_CPU_HAS_SYNC=y 125 125 CONFIG_GENERIC_HARDIRQS=y ··· 136 132 CONFIG_FLAT_NODE_MEM_MAP=y 137 133 # CONFIG_SPARSEMEM_STATIC is not set 138 134 CONFIG_SPLIT_PTLOCK_CPUS=4 135 + # CONFIG_RESOURCES_64BIT is not set 139 136 # CONFIG_HZ_48 is not set 140 137 # CONFIG_HZ_100 is not set 141 138 # CONFIG_HZ_128 is not set ··· 146 141 # CONFIG_HZ_1024 is not set 147 142 CONFIG_SYS_SUPPORTS_ARBIT_HZ=y 148 143 CONFIG_HZ=1000 149 - # CONFIG_SMP is not set 150 144 # CONFIG_PREEMPT_NONE is not set 151 145 # CONFIG_PREEMPT_VOLUNTARY is not set 152 146 CONFIG_PREEMPT=y 153 147 CONFIG_PREEMPT_BKL=y 148 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 154 149 155 150 # 156 151 # Code maturity level options ··· 172 167 CONFIG_SYSCTL=y 173 168 # CONFIG_AUDIT is not set 174 169 # CONFIG_IKCONFIG is not set 170 + # CONFIG_RELAY is not set 175 171 CONFIG_INITRAMFS_SOURCE="" 176 172 CONFIG_CC_OPTIMIZE_FOR_SIZE=y 177 173 CONFIG_EMBEDDED=y ··· 183 177 CONFIG_BUG=y 184 178 CONFIG_ELF_CORE=y 185 179 CONFIG_BASE_FULL=y 180 + CONFIG_RT_MUTEXES=y 186 181 CONFIG_FUTEX=y 187 182 CONFIG_EPOLL=y 188 183 CONFIG_SHMEM=y 189 - CONFIG_CC_ALIGN_FUNCTIONS=0 190 - CONFIG_CC_ALIGN_LABELS=0 191 - CONFIG_CC_ALIGN_LOOPS=0 192 - CONFIG_CC_ALIGN_JUMPS=0 193 184 CONFIG_SLAB=y 185 + CONFIG_VM_EVENT_COUNTERS=y 194 186 # CONFIG_TINY_SHMEM is not set 195 187 CONFIG_BASE_SMALL=0 196 188 # CONFIG_SLOB is not set ··· 199 195 CONFIG_MODULES=y 200 196 CONFIG_MODULE_UNLOAD=y 201 197 # CONFIG_MODULE_FORCE_UNLOAD is not set 202 - CONFIG_OBSOLETE_MODPARM=y 203 198 # CONFIG_MODVERSIONS is not set 204 199 # CONFIG_MODULE_SRCVERSION_ALL is not set 205 200 CONFIG_KMOD=y ··· 207 204 # Block layer 208 205 # 209 206 # CONFIG_LBD is not set 207 + # CONFIG_BLK_DEV_IO_TRACE is not set 208 + # CONFIG_LSF is not set 210 209 211 210 # 212 211 # IO Schedulers ··· 228 223 # 229 224 CONFIG_HW_HAS_PCI=y 230 225 CONFIG_PCI=y 231 - # CONFIG_PCI_LEGACY_PROC is not set 232 226 CONFIG_MMU=y 233 227 234 228 # ··· 259 255 CONFIG_PACKET=y 260 256 CONFIG_PACKET_MMAP=y 261 257 CONFIG_UNIX=y 258 + CONFIG_XFRM=y 259 + # CONFIG_XFRM_USER is not set 262 260 # CONFIG_NET_KEY is not set 263 261 CONFIG_INET=y 264 262 # CONFIG_IP_MULTICAST is not set ··· 277 271 # CONFIG_INET_AH is not set 278 272 # CONFIG_INET_ESP is not set 279 273 # CONFIG_INET_IPCOMP is not set 274 + # CONFIG_INET_XFRM_TUNNEL is not set 280 275 # CONFIG_INET_TUNNEL is not set 276 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 277 + CONFIG_INET_XFRM_MODE_TUNNEL=m 281 278 CONFIG_INET_DIAG=y 282 279 CONFIG_INET_TCP_DIAG=y 283 280 # CONFIG_TCP_CONG_ADVANCED is not set 284 281 CONFIG_TCP_CONG_BIC=y 285 282 # CONFIG_IPV6 is not set 283 + # CONFIG_INET6_XFRM_TUNNEL is not set 284 + # CONFIG_INET6_TUNNEL is not set 285 + CONFIG_NETWORK_SECMARK=y 286 286 # CONFIG_NETFILTER is not set 287 287 288 288 # ··· 342 330 CONFIG_STANDALONE=y 343 331 CONFIG_PREVENT_FIRMWARE_BUILD=y 344 332 # CONFIG_FW_LOADER is not set 333 + # CONFIG_SYS_HYPERVISOR is not set 345 334 346 335 # 347 336 # Connector - unified userspace <-> kernelspace linker ··· 402 389 # CONFIG_MTD_SLRAM is not set 403 390 # CONFIG_MTD_PHRAM is not set 404 391 # CONFIG_MTD_MTDRAM is not set 405 - # CONFIG_MTD_BLKMTD is not set 406 392 # CONFIG_MTD_BLOCK2MTD is not set 407 393 408 394 # ··· 416 404 # 417 405 CONFIG_MTD_NAND=y 418 406 CONFIG_MTD_NAND_VERIFY_WRITE=y 407 + # CONFIG_MTD_NAND_ECC_SMC is not set 419 408 CONFIG_MTD_NAND_IDS=y 420 409 # CONFIG_MTD_NAND_DISKONCHIP is not set 421 - CONFIG_MTD_NAND_BASLER_EXCITE=y 422 - # CONFIG_MTD_NAND_BASLER_EXCITE_RDNBY is not set 423 - # CONFIG_MTD_NAND_BASLER_EXCITE_PERF is not set 424 410 # CONFIG_MTD_NAND_NANDSIM is not set 425 411 426 412 # ··· 449 439 # CONFIG_BLK_DEV_SX8 is not set 450 440 # CONFIG_BLK_DEV_UB is not set 451 441 # CONFIG_BLK_DEV_RAM is not set 452 - CONFIG_BLK_DEV_RAM_COUNT=16 442 + # CONFIG_BLK_DEV_INITRD is not set 453 443 # CONFIG_CDROM_PKTCDVD is not set 454 444 # CONFIG_ATA_OVER_ETH is not set 455 445 ··· 506 496 # CONFIG_MEGARAID_LEGACY is not set 507 497 # CONFIG_MEGARAID_SAS is not set 508 498 # CONFIG_SCSI_SATA is not set 499 + # CONFIG_SCSI_HPTIOP is not set 509 500 # CONFIG_SCSI_DMX3191D is not set 510 501 # CONFIG_SCSI_FUTURE_DOMAIN is not set 511 502 # CONFIG_SCSI_IPS is not set ··· 514 503 # CONFIG_SCSI_INIA100 is not set 515 504 # CONFIG_SCSI_SYM53C8XX_2 is not set 516 505 # CONFIG_SCSI_IPR is not set 517 - # CONFIG_SCSI_QLOGIC_FC is not set 518 506 # CONFIG_SCSI_QLOGIC_1280 is not set 519 507 # CONFIG_SCSI_QLA_FC is not set 520 508 # CONFIG_SCSI_LPFC is not set ··· 584 574 # CONFIG_SK98LIN is not set 585 575 # CONFIG_TIGON3 is not set 586 576 # CONFIG_BNX2 is not set 587 - # CONFIG_TITAN_GE is not set 588 - CONFIG_RM9K_GE=m 589 577 590 578 # 591 579 # Ethernet (10000 Mbit) ··· 591 583 # CONFIG_CHELSIO_T1 is not set 592 584 # CONFIG_IXGB is not set 593 585 # CONFIG_S2IO is not set 586 + # CONFIG_MYRI10GE is not set 594 587 595 588 # 596 589 # Token Ring devices ··· 665 656 CONFIG_VT=y 666 657 CONFIG_VT_CONSOLE=y 667 658 CONFIG_HW_CONSOLE=y 659 + CONFIG_VT_HW_CONSOLE_BINDING=y 668 660 # CONFIG_SERIAL_NONSTANDARD is not set 669 661 670 662 # ··· 673 663 # 674 664 CONFIG_SERIAL_8250=y 675 665 CONFIG_SERIAL_8250_CONSOLE=y 666 + CONFIG_SERIAL_8250_PCI=y 676 667 CONFIG_SERIAL_8250_NR_UARTS=2 677 668 CONFIG_SERIAL_8250_RUNTIME_UARTS=2 678 669 CONFIG_SERIAL_8250_EXTENDED=y ··· 706 695 # Watchdog Device Drivers 707 696 # 708 697 # CONFIG_SOFT_WATCHDOG is not set 709 - CONFIG_WDT_RM9K_GPI=m 710 698 711 699 # 712 700 # PCI-based Watchdog Cards ··· 717 707 # USB-based Watchdog Cards 718 708 # 719 709 # CONFIG_USBPCWATCHDOG is not set 710 + # CONFIG_HW_RANDOM is not set 720 711 # CONFIG_RTC is not set 721 712 # CONFIG_GEN_RTC is not set 722 713 # CONFIG_DTLK is not set ··· 750 739 # 751 740 # Dallas's 1-wire bus 752 741 # 753 - # CONFIG_W1 is not set 754 742 755 743 # 756 744 # Hardware Monitoring support ··· 762 752 # 763 753 764 754 # 765 - # Multimedia Capabilities Port drivers 766 - # 767 - 768 - # 769 755 # Multimedia devices 770 756 # 771 757 # CONFIG_VIDEO_DEV is not set 758 + CONFIG_VIDEO_V4L2=y 772 759 773 760 # 774 761 # Digital Video Broadcasting Devices 775 762 # 776 763 # CONFIG_DVB is not set 764 + # CONFIG_USB_DABUSB is not set 777 765 778 766 # 779 767 # Graphics support 780 768 # 769 + # CONFIG_FIRMWARE_EDID is not set 781 770 CONFIG_FB=y 782 - CONFIG_FB_CFB_FILLRECT=y 783 - CONFIG_FB_CFB_COPYAREA=y 784 - CONFIG_FB_CFB_IMAGEBLIT=y 771 + # CONFIG_FB_CFB_FILLRECT is not set 772 + # CONFIG_FB_CFB_COPYAREA is not set 773 + # CONFIG_FB_CFB_IMAGEBLIT is not set 785 774 # CONFIG_FB_MACMODES is not set 775 + # CONFIG_FB_BACKLIGHT is not set 786 776 # CONFIG_FB_MODE_HELPERS is not set 787 777 # CONFIG_FB_TILEBLITTING is not set 788 778 # CONFIG_FB_CIRRUS is not set ··· 794 784 # CONFIG_FB_NVIDIA is not set 795 785 # CONFIG_FB_RIVA is not set 796 786 # CONFIG_FB_MATROX is not set 797 - # CONFIG_FB_RADEON_OLD is not set 798 787 # CONFIG_FB_RADEON is not set 799 788 # CONFIG_FB_ATY128 is not set 800 789 # CONFIG_FB_ATY is not set ··· 806 797 # CONFIG_FB_SMIVGX is not set 807 798 # CONFIG_FB_TRIDENT is not set 808 799 # CONFIG_FB_VIRTUAL is not set 809 - CONFIG_FB_DD=y 810 800 811 801 # 812 802 # Console display driver support ··· 834 826 # 835 827 CONFIG_USB_ARCH_HAS_HCD=y 836 828 CONFIG_USB_ARCH_HAS_OHCI=y 829 + CONFIG_USB_ARCH_HAS_EHCI=y 837 830 CONFIG_USB=y 838 831 # CONFIG_USB_DEBUG is not set 839 832 ··· 852 843 CONFIG_USB_EHCI_HCD=y 853 844 # CONFIG_USB_EHCI_SPLIT_ISO is not set 854 845 # CONFIG_USB_EHCI_ROOT_HUB_TT is not set 846 + # CONFIG_USB_EHCI_TT_NEWSCHED is not set 855 847 # CONFIG_USB_ISP116X_HCD is not set 856 848 CONFIG_USB_OHCI_HCD=y 857 849 # CONFIG_USB_OHCI_BIG_ENDIAN is not set ··· 905 895 # CONFIG_USB_ACECAD is not set 906 896 # CONFIG_USB_KBTAB is not set 907 897 # CONFIG_USB_POWERMATE is not set 908 - # CONFIG_USB_MTOUCH is not set 909 - # CONFIG_USB_ITMTOUCH is not set 910 - # CONFIG_USB_EGALAX is not set 898 + # CONFIG_USB_TOUCHSCREEN is not set 911 899 # CONFIG_USB_YEALINK is not set 912 900 # CONFIG_USB_XPAD is not set 913 901 # CONFIG_USB_ATI_REMOTE is not set ··· 918 910 # 919 911 # CONFIG_USB_MDC800 is not set 920 912 # CONFIG_USB_MICROTEK is not set 921 - 922 - # 923 - # USB Multimedia devices 924 - # 925 - # CONFIG_USB_DABUSB is not set 926 - 927 - # 928 - # Video4Linux support is needed for USB Multimedia device support 929 - # 930 913 931 914 # 932 915 # USB Network Adapters ··· 945 946 # CONFIG_USB_EMI26 is not set 946 947 # CONFIG_USB_AUERSWALD is not set 947 948 # CONFIG_USB_RIO500 is not set 948 - CONFIG_USB_ARTTFT=m 949 - # CONFIG_USB_ARTTOUCH is not set 950 949 # CONFIG_USB_LEGOTOWER is not set 951 950 # CONFIG_USB_LCD is not set 952 951 # CONFIG_USB_LED is not set 952 + # CONFIG_USB_CY7C63 is not set 953 953 # CONFIG_USB_CYTHERM is not set 954 954 # CONFIG_USB_PHIDGETKIT is not set 955 955 # CONFIG_USB_PHIDGETSERVO is not set 956 956 # CONFIG_USB_IDMOUSE is not set 957 + # CONFIG_USB_APPLEDISPLAY is not set 957 958 # CONFIG_USB_SISUSBVGA is not set 958 959 # CONFIG_USB_LD is not set 959 960 # CONFIG_USB_TEST is not set ··· 973 974 # CONFIG_MMC is not set 974 975 975 976 # 977 + # LED devices 978 + # 979 + # CONFIG_NEW_LEDS is not set 980 + 981 + # 982 + # LED drivers 983 + # 984 + 985 + # 986 + # LED Triggers 987 + # 988 + 989 + # 976 990 # InfiniBand support 977 991 # 978 992 # CONFIG_INFINIBAND is not set 979 993 980 994 # 981 - # SN Devices 995 + # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) 982 996 # 983 997 984 998 # 985 - # EDAC - error detection and reporting (RAS) 999 + # Real Time Clock 1000 + # 1001 + # CONFIG_RTC_CLASS is not set 1002 + 1003 + # 1004 + # DMA Engine support 1005 + # 1006 + # CONFIG_DMA_ENGINE is not set 1007 + 1008 + # 1009 + # DMA Clients 986 1010 # 987 1011 988 1012 # 989 - # eXcite frame capture support 1013 + # DMA Devices 990 1014 # 991 - CONFIG_EXCITE_FCAP=m 992 - CONFIG_EXCITE_FCAP_GPI=m 993 1015 994 1016 # 995 1017 # File systems ··· 1027 1007 # CONFIG_MINIX_FS is not set 1028 1008 # CONFIG_ROMFS_FS is not set 1029 1009 CONFIG_INOTIFY=y 1010 + CONFIG_INOTIFY_USER=y 1030 1011 # CONFIG_QUOTA is not set 1031 1012 # CONFIG_DNOTIFY is not set 1032 1013 # CONFIG_AUTOFS_FS is not set ··· 1059 1038 CONFIG_TMPFS=y 1060 1039 # CONFIG_HUGETLB_PAGE is not set 1061 1040 CONFIG_RAMFS=y 1062 - # CONFIG_RELAYFS_FS is not set 1063 1041 # CONFIG_CONFIGFS_FS is not set 1064 1042 1065 1043 # ··· 1076 1056 CONFIG_JFFS2_FS_DEBUG=0 1077 1057 CONFIG_JFFS2_FS_WRITEBUFFER=y 1078 1058 # CONFIG_JFFS2_SUMMARY is not set 1059 + # CONFIG_JFFS2_FS_XATTR is not set 1079 1060 # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set 1080 1061 CONFIG_JFFS2_ZLIB=y 1081 1062 CONFIG_JFFS2_RTIME=y ··· 1106 1085 # CONFIG_RPCSEC_GSS_SPKM3 is not set 1107 1086 # CONFIG_SMB_FS is not set 1108 1087 # CONFIG_CIFS is not set 1088 + # CONFIG_CIFS_DEBUG2 is not set 1109 1089 # CONFIG_NCP_FS is not set 1110 1090 # CONFIG_CODA_FS is not set 1111 1091 # CONFIG_AFS_FS is not set ··· 1187 1165 # 1188 1166 # CONFIG_PRINTK_TIME is not set 1189 1167 # CONFIG_MAGIC_SYSRQ is not set 1168 + # CONFIG_UNUSED_SYMBOLS is not set 1190 1169 # CONFIG_DEBUG_KERNEL is not set 1191 1170 CONFIG_LOG_BUF_SHIFT=14 1171 + # CONFIG_DEBUG_FS is not set 1192 1172 CONFIG_CROSSCOMPILE=y 1193 1173 CONFIG_CMDLINE="" 1194 1174 ··· 1242 1218 # CONFIG_LIBCRC32C is not set 1243 1219 CONFIG_ZLIB_INFLATE=y 1244 1220 CONFIG_ZLIB_DEFLATE=y 1221 + CONFIG_PLIST=y
+53 -4
arch/mips/configs/ip22_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:50:54 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:10 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 CONFIG_SGI_IP22=y 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 68 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 66 CONFIG_GENERIC_HWEIGHT=y 70 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 71 69 CONFIG_ARC=y 72 70 CONFIG_DMA_NONCOHERENT=y 73 71 CONFIG_DMA_NEED_PCI_MAP_STATE=y ··· 123 119 # CONFIG_PAGE_SIZE_64KB is not set 124 120 CONFIG_BOARD_SCACHE=y 125 121 CONFIG_IP22_CPU_SCACHE=y 126 - # CONFIG_MIPS_MT is not set 122 + CONFIG_MIPS_MT_DISABLED=y 123 + # CONFIG_MIPS_MT_SMTC is not set 124 + # CONFIG_MIPS_MT_SMP is not set 125 + # CONFIG_MIPS_VPE_LOADER is not set 127 126 # CONFIG_64BIT_PHYS_ADDR is not set 128 127 CONFIG_CPU_HAS_LLSC=y 129 128 CONFIG_CPU_HAS_SYNC=y ··· 141 134 CONFIG_FLAT_NODE_MEM_MAP=y 142 135 # CONFIG_SPARSEMEM_STATIC is not set 143 136 CONFIG_SPLIT_PTLOCK_CPUS=4 137 + # CONFIG_RESOURCES_64BIT is not set 144 138 # CONFIG_HZ_48 is not set 145 139 # CONFIG_HZ_100 is not set 146 140 # CONFIG_HZ_128 is not set ··· 154 146 # CONFIG_PREEMPT_NONE is not set 155 147 CONFIG_PREEMPT_VOLUNTARY=y 156 148 # CONFIG_PREEMPT is not set 149 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 157 150 158 151 # 159 152 # Code maturity level options ··· 187 178 CONFIG_BUG=y 188 179 CONFIG_ELF_CORE=y 189 180 CONFIG_BASE_FULL=y 181 + CONFIG_RT_MUTEXES=y 190 182 CONFIG_FUTEX=y 191 183 CONFIG_EPOLL=y 192 184 CONFIG_SHMEM=y 193 185 CONFIG_SLAB=y 186 + CONFIG_VM_EVENT_COUNTERS=y 194 187 # CONFIG_TINY_SHMEM is not set 195 188 CONFIG_BASE_SMALL=0 196 189 # CONFIG_SLOB is not set ··· 283 272 CONFIG_INET_IPCOMP=m 284 273 CONFIG_INET_XFRM_TUNNEL=m 285 274 CONFIG_INET_TUNNEL=m 275 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 276 + CONFIG_INET_XFRM_MODE_TUNNEL=m 286 277 CONFIG_INET_DIAG=y 287 278 CONFIG_INET_TCP_DIAG=y 288 279 # CONFIG_TCP_CONG_ADVANCED is not set ··· 332 319 CONFIG_INET6_IPCOMP=m 333 320 CONFIG_INET6_XFRM_TUNNEL=m 334 321 CONFIG_INET6_TUNNEL=m 322 + CONFIG_INET6_XFRM_MODE_TRANSPORT=m 323 + CONFIG_INET6_XFRM_MODE_TUNNEL=m 335 324 CONFIG_IPV6_TUNNEL=m 325 + CONFIG_NETWORK_SECMARK=y 336 326 CONFIG_NETFILTER=y 337 327 # CONFIG_NETFILTER_DEBUG is not set 338 328 ··· 351 335 CONFIG_NETFILTER_XT_TARGET_MARK=m 352 336 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 353 337 CONFIG_NETFILTER_XT_TARGET_NOTRACK=m 338 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 339 + CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m 354 340 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 355 341 CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m 356 342 CONFIG_NETFILTER_XT_MATCH_CONNMARK=m ··· 367 349 CONFIG_NETFILTER_XT_MATCH_POLICY=m 368 350 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 369 351 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 352 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 370 353 CONFIG_NETFILTER_XT_MATCH_REALM=m 371 354 CONFIG_NETFILTER_XT_MATCH_SCTP=m 372 355 CONFIG_NETFILTER_XT_MATCH_STATE=m 356 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 373 357 CONFIG_NETFILTER_XT_MATCH_STRING=m 374 358 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 375 359 ··· 381 361 CONFIG_IP_NF_CONNTRACK=m 382 362 CONFIG_IP_NF_CT_ACCT=y 383 363 CONFIG_IP_NF_CONNTRACK_MARK=y 364 + CONFIG_IP_NF_CONNTRACK_SECMARK=y 384 365 CONFIG_IP_NF_CONNTRACK_EVENTS=y 385 366 CONFIG_IP_NF_CONNTRACK_NETLINK=m 386 367 # CONFIG_IP_NF_CT_PROTO_SCTP is not set ··· 392 371 CONFIG_IP_NF_AMANDA=m 393 372 CONFIG_IP_NF_PPTP=m 394 373 CONFIG_IP_NF_H323=m 374 + CONFIG_IP_NF_SIP=m 395 375 CONFIG_IP_NF_QUEUE=m 396 376 CONFIG_IP_NF_IPTABLES=m 397 377 CONFIG_IP_NF_MATCH_IPRANGE=m ··· 423 401 CONFIG_IP_NF_NAT_AMANDA=m 424 402 CONFIG_IP_NF_NAT_PPTP=m 425 403 CONFIG_IP_NF_NAT_H323=m 404 + CONFIG_IP_NF_NAT_SIP=m 426 405 CONFIG_IP_NF_MANGLE=m 427 406 CONFIG_IP_NF_TARGET_TOS=m 428 407 CONFIG_IP_NF_TARGET_ECN=m ··· 556 533 CONFIG_STANDALONE=y 557 534 CONFIG_PREVENT_FIRMWARE_BUILD=y 558 535 # CONFIG_FW_LOADER is not set 536 + # CONFIG_SYS_HYPERVISOR is not set 559 537 560 538 # 561 539 # Connector - unified userspace <-> kernelspace linker ··· 676 652 CONFIG_QSEMI_PHY=m 677 653 CONFIG_LXT_PHY=m 678 654 CONFIG_CICADA_PHY=m 655 + # CONFIG_VITESSE_PHY is not set 656 + # CONFIG_SMSC_PHY is not set 679 657 680 658 # 681 659 # Ethernet (10 or 100Mbit) ··· 775 749 CONFIG_VT=y 776 750 CONFIG_VT_CONSOLE=y 777 751 CONFIG_HW_CONSOLE=y 752 + CONFIG_VT_HW_CONSOLE_BINDING=y 778 753 # CONFIG_SERIAL_NONSTANDARD is not set 779 754 780 755 # ··· 808 781 # 809 782 # CONFIG_SOFT_WATCHDOG is not set 810 783 CONFIG_INDYDOG=m 784 + # CONFIG_HW_RANDOM is not set 811 785 # CONFIG_RTC is not set 812 786 CONFIG_SGI_DS1286=m 813 787 # CONFIG_GEN_RTC is not set ··· 857 829 # Multimedia devices 858 830 # 859 831 # CONFIG_VIDEO_DEV is not set 832 + CONFIG_VIDEO_V4L2=y 860 833 861 834 # 862 835 # Digital Video Broadcasting Devices ··· 867 838 # 868 839 # Graphics support 869 840 # 841 + CONFIG_FIRMWARE_EDID=y 870 842 # CONFIG_FB is not set 871 843 872 844 # ··· 940 910 # CONFIG_RTC_CLASS is not set 941 911 942 912 # 913 + # DMA Engine support 914 + # 915 + # CONFIG_DMA_ENGINE is not set 916 + 917 + # 918 + # DMA Clients 919 + # 920 + 921 + # 922 + # DMA Devices 923 + # 924 + 925 + # 943 926 # File systems 944 927 # 945 928 CONFIG_EXT2_FS=m ··· 969 926 # CONFIG_JFS_FS is not set 970 927 CONFIG_FS_POSIX_ACL=y 971 928 CONFIG_XFS_FS=m 972 - CONFIG_XFS_EXPORT=y 973 929 CONFIG_XFS_QUOTA=y 974 930 CONFIG_XFS_SECURITY=y 975 931 # CONFIG_XFS_POSIX_ACL is not set ··· 977 935 CONFIG_MINIX_FS=m 978 936 # CONFIG_ROMFS_FS is not set 979 937 CONFIG_INOTIFY=y 938 + CONFIG_INOTIFY_USER=y 980 939 CONFIG_QUOTA=y 981 940 # CONFIG_QFMT_V1 is not set 982 941 CONFIG_QFMT_V2=m ··· 1034 991 # CONFIG_QNX4FS_FS is not set 1035 992 # CONFIG_SYSV_FS is not set 1036 993 CONFIG_UFS_FS=m 994 + # CONFIG_UFS_FS_WRITE is not set 995 + # CONFIG_UFS_DEBUG is not set 1037 996 1038 997 # 1039 998 # Network File Systems ··· 1065 1020 CONFIG_SMB_NLS_REMOTE="cp437" 1066 1021 CONFIG_CIFS=m 1067 1022 # CONFIG_CIFS_STATS is not set 1023 + # CONFIG_CIFS_WEAK_PW_HASH is not set 1068 1024 # CONFIG_CIFS_XATTR is not set 1025 + # CONFIG_CIFS_DEBUG2 is not set 1069 1026 # CONFIG_CIFS_EXPERIMENTAL is not set 1070 1027 # CONFIG_NCP_FS is not set 1071 1028 CONFIG_CODA_FS=m ··· 1150 1103 # 1151 1104 # CONFIG_PRINTK_TIME is not set 1152 1105 # CONFIG_MAGIC_SYSRQ is not set 1106 + # CONFIG_UNUSED_SYMBOLS is not set 1153 1107 # CONFIG_DEBUG_KERNEL is not set 1154 1108 CONFIG_LOG_BUF_SHIFT=14 1155 1109 # CONFIG_DEBUG_FS is not set ··· 1210 1162 CONFIG_TEXTSEARCH_KMP=m 1211 1163 CONFIG_TEXTSEARCH_BM=m 1212 1164 CONFIG_TEXTSEARCH_FSM=m 1165 + CONFIG_PLIST=y
+53 -12
arch/mips/configs/ip27_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:04 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:10 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 CONFIG_SGI_IP27=y 52 51 # CONFIG_SGI_IP32 is not set ··· 64 61 # CONFIG_TOSHIBA_JMR3927 is not set 65 62 # CONFIG_TOSHIBA_RBTX4927 is not set 66 63 # CONFIG_TOSHIBA_RBTX4938 is not set 64 + CONFIG_SGI_SN_M_MODE=y 67 65 # CONFIG_SGI_SN_N_MODE is not set 68 - CONFIG_ARCH_DISCONTIGMEM_ENABLE=y 69 - CONFIG_NUMA=y 70 66 # CONFIG_MAPPED_KERNEL is not set 71 67 # CONFIG_REPLICATE_KTEXT is not set 72 68 # CONFIG_REPLICATE_EXHANDLERS is not set 69 + CONFIG_EARLY_PRINTK=y 73 70 CONFIG_RWSEM_GENERIC_SPINLOCK=y 74 71 CONFIG_GENERIC_FIND_NEXT_BIT=y 75 72 CONFIG_GENERIC_HWEIGHT=y 76 73 CONFIG_GENERIC_CALIBRATE_DELAY=y 74 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 77 75 CONFIG_ARC=y 78 76 CONFIG_DMA_IP27=y 79 77 CONFIG_CPU_BIG_ENDIAN=y ··· 121 117 # CONFIG_PAGE_SIZE_16KB is not set 122 118 # CONFIG_PAGE_SIZE_64KB is not set 123 119 CONFIG_CPU_HAS_PREFETCH=y 124 - # CONFIG_MIPS_MT is not set 120 + CONFIG_MIPS_MT_DISABLED=y 121 + # CONFIG_MIPS_MT_SMTC is not set 122 + # CONFIG_MIPS_MT_SMP is not set 123 + # CONFIG_MIPS_VPE_LOADER is not set 125 124 CONFIG_CPU_HAS_LLSC=y 126 125 CONFIG_CPU_HAS_SYNC=y 127 126 CONFIG_GENERIC_HARDIRQS=y 128 127 CONFIG_GENERIC_IRQ_PROBE=y 128 + CONFIG_IRQ_PER_CPU=y 129 129 CONFIG_CPU_SUPPORTS_HIGHMEM=y 130 + CONFIG_ARCH_DISCONTIGMEM_ENABLE=y 131 + CONFIG_NUMA=y 132 + CONFIG_SYS_SUPPORTS_NUMA=y 130 133 CONFIG_NODES_SHIFT=6 131 134 CONFIG_SELECT_MEMORY_MODEL=y 132 135 # CONFIG_FLATMEM_MANUAL is not set ··· 144 133 CONFIG_NEED_MULTIPLE_NODES=y 145 134 # CONFIG_SPARSEMEM_STATIC is not set 146 135 CONFIG_SPLIT_PTLOCK_CPUS=4 136 + CONFIG_MIGRATION=y 137 + CONFIG_RESOURCES_64BIT=y 138 + CONFIG_SMP=y 139 + CONFIG_SYS_SUPPORTS_SMP=y 140 + CONFIG_NR_CPUS=64 147 141 # CONFIG_HZ_48 is not set 148 142 # CONFIG_HZ_100 is not set 149 143 # CONFIG_HZ_128 is not set ··· 158 142 # CONFIG_HZ_1024 is not set 159 143 CONFIG_SYS_SUPPORTS_ARBIT_HZ=y 160 144 CONFIG_HZ=1000 161 - CONFIG_MIGRATION=y 162 - CONFIG_SMP=y 163 - CONFIG_NR_CPUS=64 164 145 CONFIG_PREEMPT_NONE=y 165 146 # CONFIG_PREEMPT_VOLUNTARY is not set 166 147 # CONFIG_PREEMPT is not set 167 148 CONFIG_PREEMPT_BKL=y 168 149 # CONFIG_MIPS_INSANE_LARGE is not set 150 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 169 151 170 152 # 171 153 # Code maturity level options ··· 197 183 CONFIG_BUG=y 198 184 CONFIG_ELF_CORE=y 199 185 CONFIG_BASE_FULL=y 186 + CONFIG_RT_MUTEXES=y 200 187 CONFIG_FUTEX=y 201 188 CONFIG_EPOLL=y 202 189 CONFIG_SHMEM=y 203 190 CONFIG_SLAB=y 191 + CONFIG_VM_EVENT_COUNTERS=y 204 192 # CONFIG_TINY_SHMEM is not set 205 193 CONFIG_BASE_SMALL=0 206 194 # CONFIG_SLOB is not set ··· 299 283 # CONFIG_INET_IPCOMP is not set 300 284 # CONFIG_INET_XFRM_TUNNEL is not set 301 285 # CONFIG_INET_TUNNEL is not set 286 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 287 + CONFIG_INET_XFRM_MODE_TUNNEL=m 302 288 CONFIG_INET_DIAG=y 303 289 CONFIG_INET_TCP_DIAG=y 304 290 # CONFIG_TCP_CONG_ADVANCED is not set ··· 308 290 # CONFIG_IPV6 is not set 309 291 # CONFIG_INET6_XFRM_TUNNEL is not set 310 292 # CONFIG_INET6_TUNNEL is not set 293 + CONFIG_NETWORK_SECMARK=y 311 294 # CONFIG_NETFILTER is not set 312 295 313 296 # ··· 406 387 CONFIG_STANDALONE=y 407 388 CONFIG_PREVENT_FIRMWARE_BUILD=y 408 389 CONFIG_FW_LOADER=y 390 + # CONFIG_SYS_HYPERVISOR is not set 409 391 410 392 # 411 393 # Connector - unified userspace <-> kernelspace linker ··· 499 479 # CONFIG_MEGARAID_LEGACY is not set 500 480 # CONFIG_MEGARAID_SAS is not set 501 481 # CONFIG_SCSI_SATA is not set 482 + # CONFIG_SCSI_HPTIOP is not set 502 483 # CONFIG_SCSI_DMX3191D is not set 503 484 # CONFIG_SCSI_FUTURE_DOMAIN is not set 504 485 # CONFIG_SCSI_IPS is not set ··· 523 502 CONFIG_MD_RAID0=y 524 503 CONFIG_MD_RAID1=y 525 504 CONFIG_MD_RAID10=m 526 - CONFIG_MD_RAID5=y 505 + CONFIG_MD_RAID456=m 527 506 CONFIG_MD_RAID5_RESHAPE=y 528 - CONFIG_MD_RAID6=m 529 507 CONFIG_MD_MULTIPATH=m 530 508 CONFIG_MD_FAULTY=m 531 509 CONFIG_BLK_DEV_DM=m ··· 580 560 CONFIG_QSEMI_PHY=m 581 561 CONFIG_LXT_PHY=m 582 562 CONFIG_CICADA_PHY=m 563 + CONFIG_VITESSE_PHY=m 564 + CONFIG_SMSC_PHY=m 583 565 584 566 # 585 567 # Ethernet (10 or 100Mbit) ··· 589 567 CONFIG_NET_ETHERNET=y 590 568 CONFIG_MII=y 591 569 CONFIG_SGI_IOC3_ETH=y 592 - CONFIG_SGI_IOC3_ETH_HW_RX_CSUM=y 593 - CONFIG_SGI_IOC3_ETH_HW_TX_CSUM=y 594 570 # CONFIG_HAPPYMEAL is not set 595 571 # CONFIG_SUNGEM is not set 596 572 # CONFIG_CASSINI is not set ··· 625 605 # CONFIG_CHELSIO_T1 is not set 626 606 # CONFIG_IXGB is not set 627 607 # CONFIG_S2IO is not set 608 + # CONFIG_MYRI10GE is not set 628 609 629 610 # 630 611 # Token Ring devices ··· 716 695 # Watchdog Cards 717 696 # 718 697 # CONFIG_WATCHDOG is not set 698 + # CONFIG_HW_RANDOM is not set 719 699 # CONFIG_RTC is not set 720 700 CONFIG_SGI_IP27_RTC=y 721 701 # CONFIG_GEN_RTC is not set ··· 766 744 # Multimedia devices 767 745 # 768 746 # CONFIG_VIDEO_DEV is not set 747 + CONFIG_VIDEO_V4L2=y 769 748 770 749 # 771 750 # Digital Video Broadcasting Devices ··· 776 753 # 777 754 # Graphics support 778 755 # 756 + # CONFIG_FIRMWARE_EDID is not set 779 757 # CONFIG_FB is not set 780 758 781 759 # ··· 834 810 # CONFIG_RTC_CLASS is not set 835 811 836 812 # 813 + # DMA Engine support 814 + # 815 + # CONFIG_DMA_ENGINE is not set 816 + 817 + # 818 + # DMA Clients 819 + # 820 + 821 + # 822 + # DMA Devices 823 + # 824 + 825 + # 837 826 # File systems 838 827 # 839 828 CONFIG_EXT2_FS=y ··· 873 836 # CONFIG_MINIX_FS is not set 874 837 # CONFIG_ROMFS_FS is not set 875 838 CONFIG_INOTIFY=y 839 + CONFIG_INOTIFY_USER=y 876 840 # CONFIG_QUOTA is not set 877 841 CONFIG_QUOTACTL=y 878 842 CONFIG_DNOTIFY=y ··· 941 903 # CONFIG_RPCSEC_GSS_SPKM3 is not set 942 904 # CONFIG_SMB_FS is not set 943 905 # CONFIG_CIFS is not set 906 + # CONFIG_CIFS_DEBUG2 is not set 944 907 # CONFIG_NCP_FS is not set 945 908 # CONFIG_CODA_FS is not set 946 909 # CONFIG_AFS_FS is not set ··· 983 944 # 984 945 # CONFIG_PRINTK_TIME is not set 985 946 # CONFIG_MAGIC_SYSRQ is not set 947 + # CONFIG_UNUSED_SYMBOLS is not set 986 948 # CONFIG_DEBUG_KERNEL is not set 987 949 CONFIG_LOG_BUF_SHIFT=15 988 950 # CONFIG_DEBUG_FS is not set ··· 1039 999 CONFIG_LIBCRC32C=m 1040 1000 CONFIG_ZLIB_INFLATE=m 1041 1001 CONFIG_ZLIB_DEFLATE=m 1002 + CONFIG_PLIST=y
+43 -4
arch/mips/configs/ip32_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:05 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:11 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 CONFIG_SGI_IP32=y ··· 68 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 66 CONFIG_GENERIC_HWEIGHT=y 70 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 71 69 CONFIG_ARC=y 72 70 CONFIG_DMA_IP32=y 73 71 CONFIG_DMA_NONCOHERENT=y ··· 124 120 CONFIG_BOARD_SCACHE=y 125 121 CONFIG_R5000_CPU_SCACHE=y 126 122 CONFIG_RM7000_CPU_SCACHE=y 127 - # CONFIG_MIPS_MT is not set 123 + CONFIG_MIPS_MT_DISABLED=y 124 + # CONFIG_MIPS_MT_SMTC is not set 125 + # CONFIG_MIPS_MT_SMP is not set 126 + # CONFIG_MIPS_VPE_LOADER is not set 128 127 CONFIG_CPU_HAS_LLSC=y 129 128 CONFIG_CPU_HAS_SYNC=y 130 129 CONFIG_GENERIC_HARDIRQS=y ··· 141 134 CONFIG_FLAT_NODE_MEM_MAP=y 142 135 # CONFIG_SPARSEMEM_STATIC is not set 143 136 CONFIG_SPLIT_PTLOCK_CPUS=4 137 + CONFIG_RESOURCES_64BIT=y 144 138 # CONFIG_HZ_48 is not set 145 139 # CONFIG_HZ_100 is not set 146 140 # CONFIG_HZ_128 is not set ··· 154 146 # CONFIG_PREEMPT_NONE is not set 155 147 CONFIG_PREEMPT_VOLUNTARY=y 156 148 # CONFIG_PREEMPT is not set 149 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 157 150 158 151 # 159 152 # Code maturity level options ··· 187 178 CONFIG_BUG=y 188 179 CONFIG_ELF_CORE=y 189 180 CONFIG_BASE_FULL=y 181 + CONFIG_RT_MUTEXES=y 190 182 CONFIG_FUTEX=y 191 183 CONFIG_EPOLL=y 192 184 CONFIG_SHMEM=y 193 185 CONFIG_SLAB=y 186 + CONFIG_VM_EVENT_COUNTERS=y 194 187 # CONFIG_TINY_SHMEM is not set 195 188 CONFIG_BASE_SMALL=0 196 189 # CONFIG_SLOB is not set ··· 281 270 # CONFIG_INET_IPCOMP is not set 282 271 # CONFIG_INET_XFRM_TUNNEL is not set 283 272 # CONFIG_INET_TUNNEL is not set 273 + CONFIG_INET_XFRM_MODE_TRANSPORT=y 274 + CONFIG_INET_XFRM_MODE_TUNNEL=y 284 275 CONFIG_INET_DIAG=y 285 276 CONFIG_INET_TCP_DIAG=y 286 277 # CONFIG_TCP_CONG_ADVANCED is not set ··· 290 277 # CONFIG_IPV6 is not set 291 278 # CONFIG_INET6_XFRM_TUNNEL is not set 292 279 # CONFIG_INET6_TUNNEL is not set 280 + CONFIG_NETWORK_SECMARK=y 293 281 # CONFIG_NETFILTER is not set 294 282 295 283 # ··· 350 336 CONFIG_STANDALONE=y 351 337 CONFIG_PREVENT_FIRMWARE_BUILD=y 352 338 CONFIG_FW_LOADER=y 339 + # CONFIG_SYS_HYPERVISOR is not set 353 340 354 341 # 355 342 # Connector - unified userspace <-> kernelspace linker ··· 449 434 # CONFIG_MEGARAID_LEGACY is not set 450 435 # CONFIG_MEGARAID_SAS is not set 451 436 # CONFIG_SCSI_SATA is not set 437 + # CONFIG_SCSI_HPTIOP is not set 452 438 # CONFIG_SCSI_DMX3191D is not set 453 439 # CONFIG_SCSI_FUTURE_DOMAIN is not set 454 440 # CONFIG_SCSI_IPS is not set ··· 514 498 CONFIG_QSEMI_PHY=y 515 499 CONFIG_LXT_PHY=y 516 500 CONFIG_CICADA_PHY=y 501 + CONFIG_VITESSE_PHY=y 502 + CONFIG_SMSC_PHY=y 517 503 518 504 # 519 505 # Ethernet (10 or 100Mbit) ··· 559 541 # CONFIG_CHELSIO_T1 is not set 560 542 # CONFIG_IXGB is not set 561 543 # CONFIG_S2IO is not set 544 + # CONFIG_MYRI10GE is not set 562 545 563 546 # 564 547 # Token Ring devices ··· 639 620 CONFIG_VT=y 640 621 CONFIG_VT_CONSOLE=y 641 622 CONFIG_HW_CONSOLE=y 623 + CONFIG_VT_HW_CONSOLE_BINDING=y 642 624 # CONFIG_SERIAL_NONSTANDARD is not set 643 625 644 626 # ··· 671 651 # Watchdog Cards 672 652 # 673 653 # CONFIG_WATCHDOG is not set 654 + # CONFIG_HW_RANDOM is not set 674 655 # CONFIG_RTC is not set 675 656 # CONFIG_GEN_RTC is not set 676 657 # CONFIG_DTLK is not set ··· 720 699 # Multimedia devices 721 700 # 722 701 # CONFIG_VIDEO_DEV is not set 702 + CONFIG_VIDEO_V4L2=y 723 703 724 704 # 725 705 # Digital Video Broadcasting Devices ··· 730 708 # 731 709 # Graphics support 732 710 # 711 + # CONFIG_FIRMWARE_EDID is not set 733 712 # CONFIG_FB is not set 734 713 735 714 # ··· 794 771 # CONFIG_RTC_CLASS is not set 795 772 796 773 # 774 + # DMA Engine support 775 + # 776 + # CONFIG_DMA_ENGINE is not set 777 + 778 + # 779 + # DMA Clients 780 + # 781 + 782 + # 783 + # DMA Devices 784 + # 785 + 786 + # 797 787 # File systems 798 788 # 799 789 CONFIG_EXT2_FS=y ··· 821 785 # CONFIG_MINIX_FS is not set 822 786 # CONFIG_ROMFS_FS is not set 823 787 CONFIG_INOTIFY=y 788 + CONFIG_INOTIFY_USER=y 824 789 # CONFIG_QUOTA is not set 825 790 CONFIG_DNOTIFY=y 826 791 # CONFIG_AUTOFS_FS is not set ··· 887 850 # CONFIG_RPCSEC_GSS_SPKM3 is not set 888 851 # CONFIG_SMB_FS is not set 889 852 # CONFIG_CIFS is not set 853 + # CONFIG_CIFS_DEBUG2 is not set 890 854 # CONFIG_NCP_FS is not set 891 855 # CONFIG_CODA_FS is not set 892 856 # CONFIG_AFS_FS is not set ··· 925 887 # 926 888 # CONFIG_PRINTK_TIME is not set 927 889 # CONFIG_MAGIC_SYSRQ is not set 890 + # CONFIG_UNUSED_SYMBOLS is not set 928 891 # CONFIG_DEBUG_KERNEL is not set 929 892 CONFIG_LOG_BUF_SHIFT=14 930 893 # CONFIG_DEBUG_FS is not set ··· 967 928 CONFIG_CRYPTO_DEFLATE=y 968 929 CONFIG_CRYPTO_MICHAEL_MIC=y 969 930 CONFIG_CRYPTO_CRC32C=y 970 - # CONFIG_CRYPTO_TEST is not set 971 931 972 932 # 973 933 # Hardware crypto devices ··· 981 943 CONFIG_LIBCRC32C=y 982 944 CONFIG_ZLIB_INFLATE=y 983 945 CONFIG_ZLIB_DEFLATE=y 946 + CONFIG_PLIST=y
+41 -4
arch/mips/configs/it8172_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:05 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:11 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 69 66 CONFIG_GENERIC_FIND_NEXT_BIT=y 70 67 CONFIG_GENERIC_HWEIGHT=y 71 68 CONFIG_GENERIC_CALIBRATE_DELAY=y 69 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 72 70 CONFIG_DMA_NONCOHERENT=y 73 71 CONFIG_DMA_NEED_PCI_MAP_STATE=y 74 72 # CONFIG_CPU_BIG_ENDIAN is not set ··· 118 114 # CONFIG_PAGE_SIZE_8KB is not set 119 115 # CONFIG_PAGE_SIZE_16KB is not set 120 116 # CONFIG_PAGE_SIZE_64KB is not set 121 - # CONFIG_MIPS_MT is not set 117 + CONFIG_MIPS_MT_DISABLED=y 118 + # CONFIG_MIPS_MT_SMTC is not set 119 + # CONFIG_MIPS_MT_SMP is not set 120 + # CONFIG_MIPS_VPE_LOADER is not set 122 121 CONFIG_CPU_HAS_LLSC=y 123 122 CONFIG_CPU_HAS_SYNC=y 124 123 CONFIG_GENERIC_HARDIRQS=y ··· 135 128 CONFIG_FLAT_NODE_MEM_MAP=y 136 129 # CONFIG_SPARSEMEM_STATIC is not set 137 130 CONFIG_SPLIT_PTLOCK_CPUS=4 131 + # CONFIG_RESOURCES_64BIT is not set 138 132 # CONFIG_HZ_48 is not set 139 133 # CONFIG_HZ_100 is not set 140 134 # CONFIG_HZ_128 is not set ··· 148 140 CONFIG_PREEMPT_NONE=y 149 141 # CONFIG_PREEMPT_VOLUNTARY is not set 150 142 # CONFIG_PREEMPT is not set 143 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 151 144 152 145 # 153 146 # Code maturity level options ··· 181 172 CONFIG_BUG=y 182 173 CONFIG_ELF_CORE=y 183 174 CONFIG_BASE_FULL=y 175 + CONFIG_RT_MUTEXES=y 184 176 CONFIG_FUTEX=y 185 177 CONFIG_EPOLL=y 186 178 CONFIG_SHMEM=y 187 179 CONFIG_SLAB=y 180 + CONFIG_VM_EVENT_COUNTERS=y 188 181 # CONFIG_TINY_SHMEM is not set 189 182 CONFIG_BASE_SMALL=0 190 183 # CONFIG_SLOB is not set 191 - CONFIG_OBSOLETE_INTERMODULE=y 192 184 193 185 # 194 186 # Loadable module support ··· 276 266 # CONFIG_INET_IPCOMP is not set 277 267 # CONFIG_INET_XFRM_TUNNEL is not set 278 268 # CONFIG_INET_TUNNEL is not set 269 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 270 + CONFIG_INET_XFRM_MODE_TUNNEL=m 279 271 CONFIG_INET_DIAG=y 280 272 CONFIG_INET_TCP_DIAG=y 281 273 # CONFIG_TCP_CONG_ADVANCED is not set ··· 285 273 # CONFIG_IPV6 is not set 286 274 # CONFIG_INET6_XFRM_TUNNEL is not set 287 275 # CONFIG_INET6_TUNNEL is not set 276 + CONFIG_NETWORK_SECMARK=y 288 277 # CONFIG_NETFILTER is not set 289 278 290 279 # ··· 345 332 CONFIG_STANDALONE=y 346 333 CONFIG_PREVENT_FIRMWARE_BUILD=y 347 334 # CONFIG_FW_LOADER is not set 335 + # CONFIG_SYS_HYPERVISOR is not set 348 336 349 337 # 350 338 # Connector - unified userspace <-> kernelspace linker ··· 527 513 CONFIG_QSEMI_PHY=m 528 514 CONFIG_LXT_PHY=m 529 515 CONFIG_CICADA_PHY=m 516 + CONFIG_VITESSE_PHY=m 517 + CONFIG_SMSC_PHY=m 530 518 531 519 # 532 520 # Ethernet (10 or 100Mbit) ··· 617 601 CONFIG_VT=y 618 602 CONFIG_VT_CONSOLE=y 619 603 CONFIG_HW_CONSOLE=y 604 + CONFIG_VT_HW_CONSOLE_BINDING=y 620 605 # CONFIG_SERIAL_NONSTANDARD is not set 621 606 # CONFIG_QTRONIX_KEYBOARD is not set 622 607 # CONFIG_IT8172_SCR0 is not set ··· 651 634 # Watchdog Cards 652 635 # 653 636 # CONFIG_WATCHDOG is not set 637 + # CONFIG_HW_RANDOM is not set 654 638 # CONFIG_RTC is not set 655 639 # CONFIG_GEN_RTC is not set 656 640 # CONFIG_DTLK is not set ··· 698 680 # Multimedia devices 699 681 # 700 682 # CONFIG_VIDEO_DEV is not set 683 + CONFIG_VIDEO_V4L2=y 701 684 702 685 # 703 686 # Digital Video Broadcasting Devices ··· 708 689 # 709 690 # Graphics support 710 691 # 692 + # CONFIG_FIRMWARE_EDID is not set 711 693 # CONFIG_FB is not set 712 694 713 695 # ··· 783 763 # CONFIG_RTC_CLASS is not set 784 764 785 765 # 766 + # DMA Engine support 767 + # 768 + # CONFIG_DMA_ENGINE is not set 769 + 770 + # 771 + # DMA Clients 772 + # 773 + 774 + # 775 + # DMA Devices 776 + # 777 + 778 + # 786 779 # File systems 787 780 # 788 781 CONFIG_EXT2_FS=y ··· 810 777 # CONFIG_MINIX_FS is not set 811 778 # CONFIG_ROMFS_FS is not set 812 779 CONFIG_INOTIFY=y 780 + CONFIG_INOTIFY_USER=y 813 781 # CONFIG_QUOTA is not set 814 782 CONFIG_DNOTIFY=y 815 783 # CONFIG_AUTOFS_FS is not set ··· 876 842 # CONFIG_RPCSEC_GSS_SPKM3 is not set 877 843 # CONFIG_SMB_FS is not set 878 844 # CONFIG_CIFS is not set 845 + # CONFIG_CIFS_DEBUG2 is not set 879 846 # CONFIG_NCP_FS is not set 880 847 # CONFIG_CODA_FS is not set 881 848 # CONFIG_AFS_FS is not set ··· 903 868 # 904 869 # CONFIG_PRINTK_TIME is not set 905 870 # CONFIG_MAGIC_SYSRQ is not set 871 + # CONFIG_UNUSED_SYMBOLS is not set 906 872 # CONFIG_DEBUG_KERNEL is not set 907 873 CONFIG_LOG_BUF_SHIFT=14 908 874 # CONFIG_DEBUG_FS is not set ··· 959 923 CONFIG_LIBCRC32C=m 960 924 CONFIG_ZLIB_INFLATE=m 961 925 CONFIG_ZLIB_DEFLATE=m 926 + CONFIG_PLIST=y
+42 -3
arch/mips/configs/ivr_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:06 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:12 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 68 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 66 CONFIG_GENERIC_HWEIGHT=y 70 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 71 69 CONFIG_DMA_NONCOHERENT=y 72 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 71 # CONFIG_CPU_BIG_ENDIAN is not set ··· 115 111 # CONFIG_PAGE_SIZE_8KB is not set 116 112 # CONFIG_PAGE_SIZE_16KB is not set 117 113 # CONFIG_PAGE_SIZE_64KB is not set 118 - # CONFIG_MIPS_MT is not set 114 + CONFIG_MIPS_MT_DISABLED=y 115 + # CONFIG_MIPS_MT_SMTC is not set 116 + # CONFIG_MIPS_MT_SMP is not set 117 + # CONFIG_MIPS_VPE_LOADER is not set 119 118 CONFIG_CPU_HAS_LLSC=y 120 119 CONFIG_CPU_HAS_SYNC=y 121 120 CONFIG_GENERIC_HARDIRQS=y ··· 132 125 CONFIG_FLAT_NODE_MEM_MAP=y 133 126 # CONFIG_SPARSEMEM_STATIC is not set 134 127 CONFIG_SPLIT_PTLOCK_CPUS=4 128 + # CONFIG_RESOURCES_64BIT is not set 135 129 # CONFIG_HZ_48 is not set 136 130 # CONFIG_HZ_100 is not set 137 131 # CONFIG_HZ_128 is not set ··· 145 137 CONFIG_PREEMPT_NONE=y 146 138 # CONFIG_PREEMPT_VOLUNTARY is not set 147 139 # CONFIG_PREEMPT is not set 140 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 148 141 149 142 # 150 143 # Code maturity level options ··· 178 169 CONFIG_BUG=y 179 170 CONFIG_ELF_CORE=y 180 171 CONFIG_BASE_FULL=y 172 + CONFIG_RT_MUTEXES=y 181 173 CONFIG_FUTEX=y 182 174 CONFIG_EPOLL=y 183 175 CONFIG_SHMEM=y 184 176 CONFIG_SLAB=y 177 + CONFIG_VM_EVENT_COUNTERS=y 185 178 # CONFIG_TINY_SHMEM is not set 186 179 CONFIG_BASE_SMALL=0 187 180 # CONFIG_SLOB is not set ··· 274 263 # CONFIG_INET_IPCOMP is not set 275 264 # CONFIG_INET_XFRM_TUNNEL is not set 276 265 # CONFIG_INET_TUNNEL is not set 266 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 267 + CONFIG_INET_XFRM_MODE_TUNNEL=m 277 268 CONFIG_INET_DIAG=y 278 269 CONFIG_INET_TCP_DIAG=y 279 270 # CONFIG_TCP_CONG_ADVANCED is not set ··· 283 270 # CONFIG_IPV6 is not set 284 271 # CONFIG_INET6_XFRM_TUNNEL is not set 285 272 # CONFIG_INET6_TUNNEL is not set 273 + CONFIG_NETWORK_SECMARK=y 286 274 # CONFIG_NETFILTER is not set 287 275 288 276 # ··· 343 329 CONFIG_STANDALONE=y 344 330 CONFIG_PREVENT_FIRMWARE_BUILD=y 345 331 CONFIG_FW_LOADER=m 332 + # CONFIG_SYS_HYPERVISOR is not set 346 333 347 334 # 348 335 # Connector - unified userspace <-> kernelspace linker ··· 462 447 CONFIG_QSEMI_PHY=m 463 448 CONFIG_LXT_PHY=m 464 449 CONFIG_CICADA_PHY=m 450 + CONFIG_VITESSE_PHY=m 451 + CONFIG_SMSC_PHY=m 465 452 466 453 # 467 454 # Ethernet (10 or 100Mbit) ··· 506 489 # CONFIG_CHELSIO_T1 is not set 507 490 # CONFIG_IXGB is not set 508 491 # CONFIG_S2IO is not set 492 + # CONFIG_MYRI10GE is not set 509 493 510 494 # 511 495 # Token Ring devices ··· 584 566 CONFIG_VT=y 585 567 CONFIG_VT_CONSOLE=y 586 568 CONFIG_HW_CONSOLE=y 569 + CONFIG_VT_HW_CONSOLE_BINDING=y 587 570 # CONFIG_SERIAL_NONSTANDARD is not set 588 571 CONFIG_QTRONIX_KEYBOARD=y 589 572 CONFIG_IT8172_SCR0=y ··· 619 600 # Watchdog Cards 620 601 # 621 602 # CONFIG_WATCHDOG is not set 603 + # CONFIG_HW_RANDOM is not set 622 604 CONFIG_RTC=y 623 605 # CONFIG_DTLK is not set 624 606 # CONFIG_R3964 is not set ··· 667 647 # Multimedia devices 668 648 # 669 649 # CONFIG_VIDEO_DEV is not set 650 + CONFIG_VIDEO_V4L2=y 670 651 671 652 # 672 653 # Digital Video Broadcasting Devices ··· 677 656 # 678 657 # Graphics support 679 658 # 659 + # CONFIG_FIRMWARE_EDID is not set 680 660 # CONFIG_FB is not set 681 661 682 662 # ··· 741 719 # CONFIG_RTC_CLASS is not set 742 720 743 721 # 722 + # DMA Engine support 723 + # 724 + # CONFIG_DMA_ENGINE is not set 725 + 726 + # 727 + # DMA Clients 728 + # 729 + 730 + # 731 + # DMA Devices 732 + # 733 + 734 + # 744 735 # File systems 745 736 # 746 737 CONFIG_EXT2_FS=y ··· 768 733 # CONFIG_MINIX_FS is not set 769 734 # CONFIG_ROMFS_FS is not set 770 735 CONFIG_INOTIFY=y 736 + CONFIG_INOTIFY_USER=y 771 737 # CONFIG_QUOTA is not set 772 738 CONFIG_DNOTIFY=y 773 739 # CONFIG_AUTOFS_FS is not set ··· 832 796 # CONFIG_RPCSEC_GSS_SPKM3 is not set 833 797 # CONFIG_SMB_FS is not set 834 798 # CONFIG_CIFS is not set 799 + # CONFIG_CIFS_DEBUG2 is not set 835 800 # CONFIG_NCP_FS is not set 836 801 # CONFIG_CODA_FS is not set 837 802 # CONFIG_AFS_FS is not set ··· 859 822 # 860 823 # CONFIG_PRINTK_TIME is not set 861 824 # CONFIG_MAGIC_SYSRQ is not set 825 + # CONFIG_UNUSED_SYMBOLS is not set 862 826 # CONFIG_DEBUG_KERNEL is not set 863 827 CONFIG_LOG_BUF_SHIFT=14 864 828 # CONFIG_DEBUG_FS is not set ··· 915 877 CONFIG_LIBCRC32C=m 916 878 CONFIG_ZLIB_INFLATE=m 917 879 CONFIG_ZLIB_DEFLATE=m 880 + CONFIG_PLIST=y
+44 -4
arch/mips/configs/jaguar-atx_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:06 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:12 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 CONFIG_MOMENCO_JAGUAR_ATX=y 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 69 66 CONFIG_GENERIC_FIND_NEXT_BIT=y 70 67 CONFIG_GENERIC_HWEIGHT=y 71 68 CONFIG_GENERIC_CALIBRATE_DELAY=y 69 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 72 70 CONFIG_DMA_NONCOHERENT=y 73 71 CONFIG_DMA_NEED_PCI_MAP_STATE=y 74 72 CONFIG_LIMITED_DMA=y ··· 124 120 CONFIG_BOARD_SCACHE=y 125 121 CONFIG_RM7000_CPU_SCACHE=y 126 122 CONFIG_CPU_HAS_PREFETCH=y 127 - # CONFIG_MIPS_MT is not set 123 + CONFIG_MIPS_MT_DISABLED=y 124 + # CONFIG_MIPS_MT_SMTC is not set 125 + # CONFIG_MIPS_MT_SMP is not set 126 + # CONFIG_MIPS_VPE_LOADER is not set 128 127 # CONFIG_64BIT_PHYS_ADDR is not set 129 128 CONFIG_CPU_HAS_LLSC=y 130 129 CONFIG_CPU_HAS_SYNC=y ··· 141 134 CONFIG_FLAT_NODE_MEM_MAP=y 142 135 # CONFIG_SPARSEMEM_STATIC is not set 143 136 CONFIG_SPLIT_PTLOCK_CPUS=4 137 + # CONFIG_RESOURCES_64BIT is not set 144 138 # CONFIG_HZ_48 is not set 145 139 # CONFIG_HZ_100 is not set 146 140 # CONFIG_HZ_128 is not set ··· 151 143 # CONFIG_HZ_1024 is not set 152 144 CONFIG_SYS_SUPPORTS_ARBIT_HZ=y 153 145 CONFIG_HZ=1000 154 - # CONFIG_SMP is not set 155 146 CONFIG_PREEMPT_NONE=y 156 147 # CONFIG_PREEMPT_VOLUNTARY is not set 157 148 # CONFIG_PREEMPT is not set 149 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 158 150 159 151 # 160 152 # Code maturity level options ··· 185 177 CONFIG_BUG=y 186 178 CONFIG_ELF_CORE=y 187 179 CONFIG_BASE_FULL=y 180 + CONFIG_RT_MUTEXES=y 188 181 CONFIG_FUTEX=y 189 182 CONFIG_EPOLL=y 190 183 CONFIG_SHMEM=y 191 184 CONFIG_SLAB=y 185 + CONFIG_VM_EVENT_COUNTERS=y 192 186 # CONFIG_TINY_SHMEM is not set 193 187 CONFIG_BASE_SMALL=0 194 188 # CONFIG_SLOB is not set ··· 277 267 # CONFIG_INET_IPCOMP is not set 278 268 # CONFIG_INET_XFRM_TUNNEL is not set 279 269 # CONFIG_INET_TUNNEL is not set 270 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 271 + CONFIG_INET_XFRM_MODE_TUNNEL=m 280 272 CONFIG_INET_DIAG=y 281 273 CONFIG_INET_TCP_DIAG=y 282 274 # CONFIG_TCP_CONG_ADVANCED is not set ··· 291 279 CONFIG_INET6_IPCOMP=m 292 280 CONFIG_INET6_XFRM_TUNNEL=m 293 281 CONFIG_INET6_TUNNEL=m 282 + CONFIG_INET6_XFRM_MODE_TRANSPORT=m 283 + CONFIG_INET6_XFRM_MODE_TUNNEL=m 294 284 CONFIG_IPV6_TUNNEL=m 285 + CONFIG_NETWORK_SECMARK=y 295 286 # CONFIG_NETFILTER is not set 296 287 # CONFIG_BRIDGE is not set 297 288 # CONFIG_VLAN_8021Q is not set ··· 330 315 CONFIG_STANDALONE=y 331 316 CONFIG_PREVENT_FIRMWARE_BUILD=y 332 317 CONFIG_FW_LOADER=m 318 + # CONFIG_SYS_HYPERVISOR is not set 333 319 334 320 # 335 321 # Connector - unified userspace <-> kernelspace linker ··· 425 409 CONFIG_QSEMI_PHY=m 426 410 CONFIG_LXT_PHY=m 427 411 CONFIG_CICADA_PHY=m 412 + CONFIG_VITESSE_PHY=m 413 + CONFIG_SMSC_PHY=m 428 414 429 415 # 430 416 # Ethernet (10 or 100Mbit) ··· 448 430 # CONFIG_PCNET32 is not set 449 431 # CONFIG_AMD8111_ETH is not set 450 432 # CONFIG_ADAPTEC_STARFIRE is not set 433 + # CONFIG_B44 is not set 451 434 # CONFIG_FORCEDETH is not set 452 435 # CONFIG_DGRS is not set 453 436 CONFIG_EEPRO100=y ··· 489 470 # CONFIG_CHELSIO_T1 is not set 490 471 # CONFIG_IXGB is not set 491 472 # CONFIG_S2IO is not set 473 + # CONFIG_MYRI10GE is not set 492 474 493 475 # 494 476 # Token Ring devices ··· 567 547 # Watchdog Cards 568 548 # 569 549 # CONFIG_WATCHDOG is not set 550 + # CONFIG_HW_RANDOM is not set 570 551 # CONFIG_RTC is not set 571 552 # CONFIG_GEN_RTC is not set 572 553 # CONFIG_DTLK is not set ··· 614 593 # Multimedia devices 615 594 # 616 595 # CONFIG_VIDEO_DEV is not set 596 + CONFIG_VIDEO_V4L2=y 617 597 618 598 # 619 599 # Digital Video Broadcasting Devices ··· 624 602 # 625 603 # Graphics support 626 604 # 605 + # CONFIG_FIRMWARE_EDID is not set 627 606 # CONFIG_FB is not set 628 607 629 608 # ··· 681 658 # 682 659 683 660 # 661 + # DMA Engine support 662 + # 663 + # CONFIG_DMA_ENGINE is not set 664 + 665 + # 666 + # DMA Clients 667 + # 668 + 669 + # 670 + # DMA Devices 671 + # 672 + 673 + # 684 674 # File systems 685 675 # 686 676 # CONFIG_EXT2_FS is not set ··· 705 669 # CONFIG_MINIX_FS is not set 706 670 # CONFIG_ROMFS_FS is not set 707 671 CONFIG_INOTIFY=y 672 + CONFIG_INOTIFY_USER=y 708 673 # CONFIG_QUOTA is not set 709 674 CONFIG_DNOTIFY=y 710 675 # CONFIG_AUTOFS_FS is not set ··· 758 721 CONFIG_SUNRPC=y 759 722 # CONFIG_SMB_FS is not set 760 723 # CONFIG_CIFS is not set 724 + # CONFIG_CIFS_DEBUG2 is not set 761 725 # CONFIG_NCP_FS is not set 762 726 # CONFIG_CODA_FS is not set 763 727 ··· 778 740 # 779 741 # CONFIG_PRINTK_TIME is not set 780 742 # CONFIG_MAGIC_SYSRQ is not set 743 + # CONFIG_UNUSED_SYMBOLS is not set 781 744 # CONFIG_DEBUG_KERNEL is not set 782 745 CONFIG_LOG_BUF_SHIFT=14 783 746 # CONFIG_DEBUG_FS is not set ··· 834 795 CONFIG_LIBCRC32C=m 835 796 CONFIG_ZLIB_INFLATE=m 836 797 CONFIG_ZLIB_DEFLATE=m 798 + CONFIG_PLIST=y
+43 -5
arch/mips/configs/jmr3927_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:07 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:12 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 68 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 66 CONFIG_GENERIC_HWEIGHT=y 70 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 71 69 CONFIG_DMA_NONCOHERENT=y 72 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 71 CONFIG_CPU_BIG_ENDIAN=y ··· 114 110 # CONFIG_PAGE_SIZE_8KB is not set 115 111 # CONFIG_PAGE_SIZE_16KB is not set 116 112 # CONFIG_PAGE_SIZE_64KB is not set 117 - # CONFIG_MIPS_MT is not set 113 + CONFIG_MIPS_MT_DISABLED=y 114 + # CONFIG_MIPS_MT_SMTC is not set 115 + # CONFIG_MIPS_MT_SMP is not set 116 + # CONFIG_MIPS_VPE_LOADER is not set 118 117 CONFIG_CPU_HAS_SYNC=y 119 118 CONFIG_GENERIC_HARDIRQS=y 120 119 CONFIG_GENERIC_IRQ_PROBE=y ··· 130 123 CONFIG_FLAT_NODE_MEM_MAP=y 131 124 # CONFIG_SPARSEMEM_STATIC is not set 132 125 CONFIG_SPLIT_PTLOCK_CPUS=4 126 + # CONFIG_RESOURCES_64BIT is not set 133 127 # CONFIG_HZ_48 is not set 134 128 # CONFIG_HZ_100 is not set 135 129 # CONFIG_HZ_128 is not set ··· 144 136 # CONFIG_PREEMPT_VOLUNTARY is not set 145 137 # CONFIG_PREEMPT is not set 146 138 CONFIG_RTC_DS1742=y 139 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 147 140 148 141 # 149 142 # Code maturity level options ··· 176 167 CONFIG_BUG=y 177 168 CONFIG_ELF_CORE=y 178 169 CONFIG_BASE_FULL=y 170 + CONFIG_RT_MUTEXES=y 179 171 CONFIG_FUTEX=y 180 172 CONFIG_EPOLL=y 181 173 CONFIG_SHMEM=y 182 174 CONFIG_SLAB=y 175 + CONFIG_VM_EVENT_COUNTERS=y 183 176 # CONFIG_TINY_SHMEM is not set 184 177 CONFIG_BASE_SMALL=0 185 178 # CONFIG_SLOB is not set ··· 267 256 # CONFIG_INET_IPCOMP is not set 268 257 # CONFIG_INET_XFRM_TUNNEL is not set 269 258 # CONFIG_INET_TUNNEL is not set 259 + CONFIG_INET_XFRM_MODE_TRANSPORT=y 260 + CONFIG_INET_XFRM_MODE_TUNNEL=y 270 261 CONFIG_INET_DIAG=y 271 262 CONFIG_INET_TCP_DIAG=y 272 263 # CONFIG_TCP_CONG_ADVANCED is not set ··· 276 263 # CONFIG_IPV6 is not set 277 264 # CONFIG_INET6_XFRM_TUNNEL is not set 278 265 # CONFIG_INET6_TUNNEL is not set 266 + CONFIG_NETWORK_SECMARK=y 279 267 # CONFIG_NETFILTER is not set 280 268 281 269 # ··· 336 322 CONFIG_STANDALONE=y 337 323 CONFIG_PREVENT_FIRMWARE_BUILD=y 338 324 CONFIG_FW_LOADER=y 325 + # CONFIG_SYS_HYPERVISOR is not set 339 326 340 327 # 341 328 # Connector - unified userspace <-> kernelspace linker ··· 434 419 CONFIG_QSEMI_PHY=y 435 420 CONFIG_LXT_PHY=y 436 421 CONFIG_CICADA_PHY=y 422 + CONFIG_VITESSE_PHY=y 423 + CONFIG_SMSC_PHY=y 437 424 438 425 # 439 426 # Ethernet (10 or 100Mbit) ··· 478 461 # CONFIG_CHELSIO_T1 is not set 479 462 # CONFIG_IXGB is not set 480 463 # CONFIG_S2IO is not set 464 + # CONFIG_MYRI10GE is not set 481 465 482 466 # 483 467 # Token Ring devices ··· 556 538 CONFIG_VT=y 557 539 CONFIG_VT_CONSOLE=y 558 540 CONFIG_HW_CONSOLE=y 541 + CONFIG_VT_HW_CONSOLE_BINDING=y 559 542 CONFIG_SERIAL_NONSTANDARD=y 560 543 # CONFIG_COMPUTONE is not set 561 544 # CONFIG_ROCKETPORT is not set ··· 601 582 # Watchdog Cards 602 583 # 603 584 # CONFIG_WATCHDOG is not set 585 + # CONFIG_HW_RANDOM is not set 604 586 # CONFIG_RTC is not set 605 587 # CONFIG_GEN_RTC is not set 606 588 # CONFIG_DTLK is not set ··· 650 630 # Multimedia devices 651 631 # 652 632 # CONFIG_VIDEO_DEV is not set 633 + CONFIG_VIDEO_V4L2=y 653 634 654 635 # 655 636 # Digital Video Broadcasting Devices ··· 660 639 # 661 640 # Graphics support 662 641 # 642 + # CONFIG_FIRMWARE_EDID is not set 663 643 CONFIG_FB=y 664 644 # CONFIG_FB_CFB_FILLRECT is not set 665 645 # CONFIG_FB_CFB_COPYAREA is not set 666 646 # CONFIG_FB_CFB_IMAGEBLIT is not set 667 647 # CONFIG_FB_MACMODES is not set 668 - CONFIG_FB_FIRMWARE_EDID=y 648 + # CONFIG_FB_BACKLIGHT is not set 669 649 # CONFIG_FB_MODE_HELPERS is not set 670 650 # CONFIG_FB_TILEBLITTING is not set 671 651 # CONFIG_FB_CIRRUS is not set ··· 759 737 # CONFIG_RTC_CLASS is not set 760 738 761 739 # 740 + # DMA Engine support 741 + # 742 + # CONFIG_DMA_ENGINE is not set 743 + 744 + # 745 + # DMA Clients 746 + # 747 + 748 + # 749 + # DMA Devices 750 + # 751 + 752 + # 762 753 # File systems 763 754 # 764 755 # CONFIG_EXT2_FS is not set ··· 784 749 # CONFIG_MINIX_FS is not set 785 750 # CONFIG_ROMFS_FS is not set 786 751 CONFIG_INOTIFY=y 752 + CONFIG_INOTIFY_USER=y 787 753 # CONFIG_QUOTA is not set 788 754 CONFIG_DNOTIFY=y 789 755 # CONFIG_AUTOFS_FS is not set ··· 848 812 # CONFIG_RPCSEC_GSS_SPKM3 is not set 849 813 # CONFIG_SMB_FS is not set 850 814 # CONFIG_CIFS is not set 815 + # CONFIG_CIFS_DEBUG2 is not set 851 816 # CONFIG_NCP_FS is not set 852 817 # CONFIG_CODA_FS is not set 853 818 # CONFIG_AFS_FS is not set ··· 875 838 # 876 839 # CONFIG_PRINTK_TIME is not set 877 840 # CONFIG_MAGIC_SYSRQ is not set 841 + # CONFIG_UNUSED_SYMBOLS is not set 878 842 # CONFIG_DEBUG_KERNEL is not set 879 843 CONFIG_LOG_BUF_SHIFT=14 880 844 # CONFIG_DEBUG_FS is not set ··· 917 879 CONFIG_CRYPTO_DEFLATE=y 918 880 CONFIG_CRYPTO_MICHAEL_MIC=y 919 881 CONFIG_CRYPTO_CRC32C=y 920 - # CONFIG_CRYPTO_TEST is not set 921 882 922 883 # 923 884 # Hardware crypto devices ··· 931 894 CONFIG_LIBCRC32C=y 932 895 CONFIG_ZLIB_INFLATE=y 933 896 CONFIG_ZLIB_DEFLATE=y 897 + CONFIG_PLIST=y
+42 -4
arch/mips/configs/lasat200_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:07 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:12 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 72 69 CONFIG_GENERIC_FIND_NEXT_BIT=y 73 70 CONFIG_GENERIC_HWEIGHT=y 74 71 CONFIG_GENERIC_CALIBRATE_DELAY=y 72 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 75 73 CONFIG_DMA_NONCOHERENT=y 76 74 CONFIG_DMA_NEED_PCI_MAP_STATE=y 77 75 CONFIG_MIPS_NILE4=y ··· 121 117 # CONFIG_PAGE_SIZE_64KB is not set 122 118 CONFIG_BOARD_SCACHE=y 123 119 CONFIG_R5000_CPU_SCACHE=y 124 - # CONFIG_MIPS_MT is not set 120 + CONFIG_MIPS_MT_DISABLED=y 121 + # CONFIG_MIPS_MT_SMTC is not set 122 + # CONFIG_MIPS_MT_SMP is not set 123 + # CONFIG_MIPS_VPE_LOADER is not set 125 124 # CONFIG_64BIT_PHYS_ADDR is not set 126 125 CONFIG_CPU_HAS_LLSC=y 127 126 CONFIG_CPU_HAS_SYNC=y ··· 139 132 CONFIG_FLAT_NODE_MEM_MAP=y 140 133 # CONFIG_SPARSEMEM_STATIC is not set 141 134 CONFIG_SPLIT_PTLOCK_CPUS=4 135 + # CONFIG_RESOURCES_64BIT is not set 142 136 # CONFIG_HZ_48 is not set 143 137 # CONFIG_HZ_100 is not set 144 138 # CONFIG_HZ_128 is not set ··· 152 144 CONFIG_PREEMPT_NONE=y 153 145 # CONFIG_PREEMPT_VOLUNTARY is not set 154 146 # CONFIG_PREEMPT is not set 147 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 155 148 156 149 # 157 150 # Code maturity level options ··· 184 175 CONFIG_BUG=y 185 176 CONFIG_ELF_CORE=y 186 177 CONFIG_BASE_FULL=y 178 + CONFIG_RT_MUTEXES=y 187 179 CONFIG_FUTEX=y 188 180 CONFIG_EPOLL=y 189 181 CONFIG_SHMEM=y 190 182 CONFIG_SLAB=y 183 + CONFIG_VM_EVENT_COUNTERS=y 191 184 # CONFIG_TINY_SHMEM is not set 192 185 CONFIG_BASE_SMALL=0 193 186 # CONFIG_SLOB is not set 194 - CONFIG_OBSOLETE_INTERMODULE=y 195 187 196 188 # 197 189 # Loadable module support ··· 276 266 # CONFIG_INET_IPCOMP is not set 277 267 # CONFIG_INET_XFRM_TUNNEL is not set 278 268 # CONFIG_INET_TUNNEL is not set 269 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 270 + CONFIG_INET_XFRM_MODE_TUNNEL=m 279 271 CONFIG_INET_DIAG=y 280 272 CONFIG_INET_TCP_DIAG=y 281 273 # CONFIG_TCP_CONG_ADVANCED is not set ··· 285 273 # CONFIG_IPV6 is not set 286 274 # CONFIG_INET6_XFRM_TUNNEL is not set 287 275 # CONFIG_INET6_TUNNEL is not set 276 + CONFIG_NETWORK_SECMARK=y 288 277 # CONFIG_NETFILTER is not set 289 278 290 279 # ··· 345 332 CONFIG_STANDALONE=y 346 333 CONFIG_PREVENT_FIRMWARE_BUILD=y 347 334 CONFIG_FW_LOADER=m 335 + # CONFIG_SYS_HYPERVISOR is not set 348 336 349 337 # 350 338 # Connector - unified userspace <-> kernelspace linker ··· 569 555 CONFIG_QSEMI_PHY=m 570 556 CONFIG_LXT_PHY=m 571 557 CONFIG_CICADA_PHY=m 558 + CONFIG_VITESSE_PHY=m 559 + CONFIG_SMSC_PHY=m 572 560 573 561 # 574 562 # Ethernet (10 or 100Mbit) ··· 613 597 # CONFIG_CHELSIO_T1 is not set 614 598 # CONFIG_IXGB is not set 615 599 # CONFIG_S2IO is not set 600 + # CONFIG_MYRI10GE is not set 616 601 617 602 # 618 603 # Token Ring devices ··· 691 674 CONFIG_VT=y 692 675 CONFIG_VT_CONSOLE=y 693 676 CONFIG_HW_CONSOLE=y 677 + CONFIG_VT_HW_CONSOLE_BINDING=y 694 678 # CONFIG_SERIAL_NONSTANDARD is not set 695 679 696 680 # ··· 723 705 # Watchdog Cards 724 706 # 725 707 # CONFIG_WATCHDOG is not set 708 + # CONFIG_HW_RANDOM is not set 726 709 # CONFIG_RTC is not set 727 710 # CONFIG_GEN_RTC is not set 728 711 # CONFIG_DTLK is not set ··· 772 753 # Multimedia devices 773 754 # 774 755 # CONFIG_VIDEO_DEV is not set 756 + CONFIG_VIDEO_V4L2=y 775 757 776 758 # 777 759 # Digital Video Broadcasting Devices ··· 782 762 # 783 763 # Graphics support 784 764 # 765 + # CONFIG_FIRMWARE_EDID is not set 785 766 # CONFIG_FB is not set 786 767 787 768 # ··· 846 825 # CONFIG_RTC_CLASS is not set 847 826 848 827 # 828 + # DMA Engine support 829 + # 830 + # CONFIG_DMA_ENGINE is not set 831 + 832 + # 833 + # DMA Clients 834 + # 835 + 836 + # 837 + # DMA Devices 838 + # 839 + 840 + # 849 841 # File systems 850 842 # 851 843 CONFIG_EXT2_FS=y ··· 879 845 # CONFIG_MINIX_FS is not set 880 846 # CONFIG_ROMFS_FS is not set 881 847 CONFIG_INOTIFY=y 848 + CONFIG_INOTIFY_USER=y 882 849 # CONFIG_QUOTA is not set 883 850 CONFIG_DNOTIFY=y 884 851 # CONFIG_AUTOFS_FS is not set ··· 946 911 # CONFIG_RPCSEC_GSS_SPKM3 is not set 947 912 # CONFIG_SMB_FS is not set 948 913 # CONFIG_CIFS is not set 914 + # CONFIG_CIFS_DEBUG2 is not set 949 915 # CONFIG_NCP_FS is not set 950 916 # CONFIG_CODA_FS is not set 951 917 # CONFIG_AFS_FS is not set ··· 973 937 # 974 938 # CONFIG_PRINTK_TIME is not set 975 939 # CONFIG_MAGIC_SYSRQ is not set 940 + # CONFIG_UNUSED_SYMBOLS is not set 976 941 # CONFIG_DEBUG_KERNEL is not set 977 942 CONFIG_LOG_BUF_SHIFT=14 978 943 # CONFIG_DEBUG_FS is not set ··· 1029 992 CONFIG_LIBCRC32C=m 1030 993 CONFIG_ZLIB_INFLATE=m 1031 994 CONFIG_ZLIB_DEFLATE=m 995 + CONFIG_PLIST=y
+56 -8
arch/mips/configs/malta_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:08 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:13 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 CONFIG_MIPS_MALTA=y 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 68 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 66 CONFIG_GENERIC_HWEIGHT=y 70 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 71 69 CONFIG_ARCH_MAY_HAVE_PC_FDC=y 72 70 CONFIG_DMA_NONCOHERENT=y 73 71 CONFIG_DMA_NEED_PCI_MAP_STATE=y ··· 130 126 # CONFIG_PAGE_SIZE_8KB is not set 131 127 # CONFIG_PAGE_SIZE_16KB is not set 132 128 # CONFIG_PAGE_SIZE_64KB is not set 129 + CONFIG_BOARD_SCACHE=y 130 + CONFIG_MIPS_CPU_SCACHE=y 133 131 CONFIG_CPU_HAS_PREFETCH=y 134 - CONFIG_MIPS_MT=y 132 + # CONFIG_MIPS_MT_DISABLED is not set 135 133 # CONFIG_MIPS_MT_SMTC is not set 136 134 # CONFIG_MIPS_MT_SMP is not set 137 135 CONFIG_MIPS_VPE_LOADER=y 136 + CONFIG_MIPS_MT=y 137 + CONFIG_SYS_SUPPORTS_MULTITHREADING=y 138 138 CONFIG_MIPS_MT_FPAFF=y 139 139 CONFIG_MIPS_VPE_LOADER_TOM=y 140 140 CONFIG_MIPS_VPE_APSP_API=y 141 141 CONFIG_MIPS_APSP_KSPD=y 142 142 # CONFIG_64BIT_PHYS_ADDR is not set 143 143 CONFIG_CPU_HAS_LLSC=y 144 - # CONFIG_CPU_MIPSR2_IRQ_VI is not set 145 - # CONFIG_CPU_MIPSR2_IRQ_EI is not set 146 144 CONFIG_CPU_HAS_SYNC=y 147 145 CONFIG_GENERIC_HARDIRQS=y 148 146 CONFIG_GENERIC_IRQ_PROBE=y ··· 158 152 CONFIG_FLAT_NODE_MEM_MAP=y 159 153 # CONFIG_SPARSEMEM_STATIC is not set 160 154 CONFIG_SPLIT_PTLOCK_CPUS=4 155 + # CONFIG_RESOURCES_64BIT is not set 161 156 # CONFIG_HZ_48 is not set 162 157 CONFIG_HZ_100=y 163 158 # CONFIG_HZ_128 is not set ··· 171 164 CONFIG_PREEMPT_NONE=y 172 165 # CONFIG_PREEMPT_VOLUNTARY is not set 173 166 # CONFIG_PREEMPT is not set 167 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 174 168 175 169 # 176 170 # Code maturity level options ··· 203 195 CONFIG_BUG=y 204 196 CONFIG_ELF_CORE=y 205 197 CONFIG_BASE_FULL=y 198 + CONFIG_RT_MUTEXES=y 206 199 CONFIG_FUTEX=y 207 200 CONFIG_EPOLL=y 208 201 CONFIG_SHMEM=y 209 202 CONFIG_SLAB=y 203 + CONFIG_VM_EVENT_COUNTERS=y 210 204 # CONFIG_TINY_SHMEM is not set 211 205 CONFIG_BASE_SMALL=0 212 206 # CONFIG_SLOB is not set ··· 310 300 CONFIG_INET_IPCOMP=m 311 301 CONFIG_INET_XFRM_TUNNEL=m 312 302 CONFIG_INET_TUNNEL=m 303 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 304 + CONFIG_INET_XFRM_MODE_TUNNEL=m 313 305 CONFIG_INET_DIAG=y 314 306 CONFIG_INET_TCP_DIAG=y 315 307 # CONFIG_TCP_CONG_ADVANCED is not set ··· 359 347 CONFIG_INET6_IPCOMP=m 360 348 CONFIG_INET6_XFRM_TUNNEL=m 361 349 CONFIG_INET6_TUNNEL=m 350 + CONFIG_INET6_XFRM_MODE_TRANSPORT=m 351 + CONFIG_INET6_XFRM_MODE_TUNNEL=m 362 352 CONFIG_IPV6_TUNNEL=m 353 + CONFIG_NETWORK_SECMARK=y 363 354 CONFIG_NETFILTER=y 364 355 # CONFIG_NETFILTER_DEBUG is not set 365 356 CONFIG_BRIDGE_NETFILTER=y ··· 379 364 CONFIG_NETFILTER_XT_TARGET_MARK=m 380 365 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 381 366 CONFIG_NETFILTER_XT_TARGET_NOTRACK=m 367 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 368 + # CONFIG_NETFILTER_XT_TARGET_CONNSECMARK is not set 382 369 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 383 370 CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m 384 371 CONFIG_NETFILTER_XT_MATCH_CONNMARK=m ··· 396 379 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 397 380 # CONFIG_NETFILTER_XT_MATCH_PHYSDEV is not set 398 381 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 382 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 399 383 CONFIG_NETFILTER_XT_MATCH_REALM=m 400 384 CONFIG_NETFILTER_XT_MATCH_SCTP=m 401 385 CONFIG_NETFILTER_XT_MATCH_STATE=m 386 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 402 387 CONFIG_NETFILTER_XT_MATCH_STRING=m 403 388 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 404 389 ··· 410 391 CONFIG_IP_NF_CONNTRACK=m 411 392 CONFIG_IP_NF_CT_ACCT=y 412 393 CONFIG_IP_NF_CONNTRACK_MARK=y 394 + CONFIG_IP_NF_CONNTRACK_SECMARK=y 413 395 CONFIG_IP_NF_CONNTRACK_EVENTS=y 414 396 CONFIG_IP_NF_CONNTRACK_NETLINK=m 415 397 CONFIG_IP_NF_CT_PROTO_SCTP=m ··· 421 401 CONFIG_IP_NF_AMANDA=m 422 402 CONFIG_IP_NF_PPTP=m 423 403 CONFIG_IP_NF_H323=m 404 + CONFIG_IP_NF_SIP=m 424 405 CONFIG_IP_NF_QUEUE=m 425 406 CONFIG_IP_NF_IPTABLES=m 426 407 CONFIG_IP_NF_MATCH_IPRANGE=m ··· 452 431 CONFIG_IP_NF_NAT_AMANDA=m 453 432 CONFIG_IP_NF_NAT_PPTP=m 454 433 CONFIG_IP_NF_NAT_H323=m 434 + CONFIG_IP_NF_NAT_SIP=m 455 435 CONFIG_IP_NF_MANGLE=m 456 436 CONFIG_IP_NF_TARGET_TOS=m 457 437 CONFIG_IP_NF_TARGET_ECN=m ··· 614 592 CONFIG_STANDALONE=y 615 593 CONFIG_PREVENT_FIRMWARE_BUILD=y 616 594 CONFIG_FW_LOADER=y 595 + # CONFIG_SYS_HYPERVISOR is not set 617 596 618 597 # 619 598 # Connector - unified userspace <-> kernelspace linker ··· 769 746 # CONFIG_MEGARAID_LEGACY is not set 770 747 # CONFIG_MEGARAID_SAS is not set 771 748 # CONFIG_SCSI_SATA is not set 749 + # CONFIG_SCSI_HPTIOP is not set 772 750 # CONFIG_SCSI_DMX3191D is not set 773 751 # CONFIG_SCSI_FUTURE_DOMAIN is not set 774 752 # CONFIG_SCSI_IPS is not set ··· 794 770 CONFIG_MD_RAID0=m 795 771 CONFIG_MD_RAID1=m 796 772 CONFIG_MD_RAID10=m 797 - CONFIG_MD_RAID5=m 773 + CONFIG_MD_RAID456=m 798 774 CONFIG_MD_RAID5_RESHAPE=y 799 - CONFIG_MD_RAID6=m 800 775 CONFIG_MD_MULTIPATH=m 801 776 CONFIG_MD_FAULTY=m 802 777 CONFIG_BLK_DEV_DM=m ··· 851 828 CONFIG_QSEMI_PHY=m 852 829 CONFIG_LXT_PHY=m 853 830 CONFIG_CICADA_PHY=m 831 + CONFIG_VITESSE_PHY=m 832 + CONFIG_SMSC_PHY=m 854 833 855 834 # 856 835 # Ethernet (10 or 100Mbit) ··· 915 890 # CONFIG_CHELSIO_T1 is not set 916 891 # CONFIG_IXGB is not set 917 892 # CONFIG_S2IO is not set 893 + # CONFIG_MYRI10GE is not set 918 894 919 895 # 920 896 # Token Ring devices ··· 994 968 CONFIG_VT=y 995 969 CONFIG_VT_CONSOLE=y 996 970 CONFIG_HW_CONSOLE=y 971 + CONFIG_VT_HW_CONSOLE_BINDING=y 997 972 # CONFIG_SERIAL_NONSTANDARD is not set 998 973 999 974 # ··· 1026 999 # Watchdog Cards 1027 1000 # 1028 1001 # CONFIG_WATCHDOG is not set 1002 + # CONFIG_HW_RANDOM is not set 1029 1003 CONFIG_RTC=y 1030 1004 # CONFIG_DTLK is not set 1031 1005 # CONFIG_R3964 is not set ··· 1074 1046 # Multimedia devices 1075 1047 # 1076 1048 # CONFIG_VIDEO_DEV is not set 1049 + CONFIG_VIDEO_V4L2=y 1077 1050 1078 1051 # 1079 1052 # Digital Video Broadcasting Devices ··· 1084 1055 # 1085 1056 # Graphics support 1086 1057 # 1058 + # CONFIG_FIRMWARE_EDID is not set 1087 1059 # CONFIG_FB is not set 1088 1060 1089 1061 # ··· 1148 1118 # CONFIG_RTC_CLASS is not set 1149 1119 1150 1120 # 1121 + # DMA Engine support 1122 + # 1123 + # CONFIG_DMA_ENGINE is not set 1124 + 1125 + # 1126 + # DMA Clients 1127 + # 1128 + 1129 + # 1130 + # DMA Devices 1131 + # 1132 + 1133 + # 1151 1134 # File systems 1152 1135 # 1153 1136 CONFIG_EXT2_FS=y ··· 1186 1143 # CONFIG_JFS_STATISTICS is not set 1187 1144 CONFIG_FS_POSIX_ACL=y 1188 1145 CONFIG_XFS_FS=m 1189 - CONFIG_XFS_EXPORT=y 1190 1146 CONFIG_XFS_QUOTA=y 1191 1147 CONFIG_XFS_SECURITY=y 1192 1148 CONFIG_XFS_POSIX_ACL=y ··· 1194 1152 CONFIG_MINIX_FS=m 1195 1153 CONFIG_ROMFS_FS=m 1196 1154 CONFIG_INOTIFY=y 1155 + CONFIG_INOTIFY_USER=y 1197 1156 CONFIG_QUOTA=y 1198 1157 # CONFIG_QFMT_V1 is not set 1199 1158 CONFIG_QFMT_V2=y ··· 1252 1209 # CONFIG_QNX4FS_FS is not set 1253 1210 CONFIG_SYSV_FS=m 1254 1211 CONFIG_UFS_FS=m 1212 + # CONFIG_UFS_FS_WRITE is not set 1213 + # CONFIG_UFS_DEBUG is not set 1255 1214 1256 1215 # 1257 1216 # Network File Systems ··· 1278 1233 # CONFIG_RPCSEC_GSS_SPKM3 is not set 1279 1234 # CONFIG_SMB_FS is not set 1280 1235 # CONFIG_CIFS is not set 1236 + # CONFIG_CIFS_DEBUG2 is not set 1281 1237 # CONFIG_NCP_FS is not set 1282 1238 # CONFIG_CODA_FS is not set 1283 1239 # CONFIG_AFS_FS is not set ··· 1344 1298 # 1345 1299 # CONFIG_PRINTK_TIME is not set 1346 1300 # CONFIG_MAGIC_SYSRQ is not set 1301 + # CONFIG_UNUSED_SYMBOLS is not set 1347 1302 # CONFIG_DEBUG_KERNEL is not set 1348 1303 CONFIG_LOG_BUF_SHIFT=14 1349 1304 # CONFIG_DEBUG_FS is not set ··· 1403 1356 CONFIG_TEXTSEARCH_KMP=m 1404 1357 CONFIG_TEXTSEARCH_BM=m 1405 1358 CONFIG_TEXTSEARCH_FSM=m 1359 + CONFIG_PLIST=y
+40 -11
arch/mips/configs/mipssim_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:09 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:13 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 CONFIG_MIPS_SIM=y 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 68 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 66 CONFIG_GENERIC_HWEIGHT=y 70 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 71 69 CONFIG_DMA_NONCOHERENT=y 72 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 71 # CONFIG_CPU_BIG_ENDIAN is not set ··· 117 113 # CONFIG_PAGE_SIZE_16KB is not set 118 114 # CONFIG_PAGE_SIZE_64KB is not set 119 115 CONFIG_CPU_HAS_PREFETCH=y 120 - CONFIG_MIPS_MT=y 116 + CONFIG_MIPS_MT_DISABLED=y 121 117 # CONFIG_MIPS_MT_SMTC is not set 122 118 # CONFIG_MIPS_MT_SMP is not set 123 - CONFIG_MIPS_VPE_LOADER=y 124 - CONFIG_MIPS_MT_FPAFF=y 125 - CONFIG_MIPS_VPE_LOADER_TOM=y 126 - CONFIG_MIPS_VPE_APSP_API=y 127 - CONFIG_MIPS_APSP_KSPD=y 119 + # CONFIG_MIPS_VPE_LOADER is not set 128 120 # CONFIG_64BIT_PHYS_ADDR is not set 129 121 CONFIG_CPU_HAS_LLSC=y 130 122 CONFIG_CPU_HAS_SYNC=y ··· 136 136 CONFIG_FLAT_NODE_MEM_MAP=y 137 137 # CONFIG_SPARSEMEM_STATIC is not set 138 138 CONFIG_SPLIT_PTLOCK_CPUS=4 139 + # CONFIG_RESOURCES_64BIT is not set 139 140 # CONFIG_HZ_48 is not set 140 141 # CONFIG_HZ_100 is not set 141 142 # CONFIG_HZ_128 is not set ··· 149 148 CONFIG_PREEMPT_NONE=y 150 149 # CONFIG_PREEMPT_VOLUNTARY is not set 151 150 # CONFIG_PREEMPT is not set 151 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 152 152 153 153 # 154 154 # Code maturity level options ··· 182 180 CONFIG_BUG=y 183 181 CONFIG_ELF_CORE=y 184 182 CONFIG_BASE_FULL=y 183 + CONFIG_RT_MUTEXES=y 185 184 CONFIG_FUTEX=y 186 185 CONFIG_EPOLL=y 187 186 CONFIG_SHMEM=y 188 187 CONFIG_SLAB=y 188 + CONFIG_VM_EVENT_COUNTERS=y 189 189 # CONFIG_TINY_SHMEM is not set 190 190 CONFIG_BASE_SMALL=0 191 191 # CONFIG_SLOB is not set ··· 283 279 # CONFIG_INET_IPCOMP is not set 284 280 # CONFIG_INET_XFRM_TUNNEL is not set 285 281 # CONFIG_INET_TUNNEL is not set 282 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 283 + CONFIG_INET_XFRM_MODE_TUNNEL=m 286 284 CONFIG_INET_DIAG=y 287 285 CONFIG_INET_TCP_DIAG=y 288 286 # CONFIG_TCP_CONG_ADVANCED is not set ··· 292 286 # CONFIG_IPV6 is not set 293 287 # CONFIG_INET6_XFRM_TUNNEL is not set 294 288 # CONFIG_INET6_TUNNEL is not set 289 + CONFIG_NETWORK_SECMARK=y 295 290 # CONFIG_NETFILTER is not set 296 291 297 292 # ··· 388 381 # CONFIG_PREVENT_FIRMWARE_BUILD is not set 389 382 # CONFIG_FW_LOADER is not set 390 383 # CONFIG_DEBUG_DRIVER is not set 384 + # CONFIG_SYS_HYPERVISOR is not set 391 385 392 386 # 393 387 # Connector - unified userspace <-> kernelspace linker ··· 573 565 # Watchdog Cards 574 566 # 575 567 # CONFIG_WATCHDOG is not set 568 + # CONFIG_HW_RANDOM is not set 576 569 # CONFIG_RTC is not set 577 570 # CONFIG_GEN_RTC is not set 578 571 # CONFIG_DTLK is not set ··· 604 595 # 605 596 # Dallas's 1-wire bus 606 597 # 607 - # CONFIG_W1 is not set 608 598 609 599 # 610 600 # Hardware Monitoring support ··· 619 611 # Multimedia devices 620 612 # 621 613 # CONFIG_VIDEO_DEV is not set 614 + CONFIG_VIDEO_V4L2=y 622 615 623 616 # 624 617 # Digital Video Broadcasting Devices ··· 629 620 # 630 621 # Graphics support 631 622 # 623 + # CONFIG_FIRMWARE_EDID is not set 632 624 # CONFIG_FB is not set 633 625 634 626 # ··· 685 675 # CONFIG_RTC_CLASS is not set 686 676 687 677 # 678 + # DMA Engine support 679 + # 680 + # CONFIG_DMA_ENGINE is not set 681 + 682 + # 683 + # DMA Clients 684 + # 685 + 686 + # 687 + # DMA Devices 688 + # 689 + 690 + # 688 691 # File systems 689 692 # 690 693 CONFIG_EXT2_FS=y ··· 708 685 # CONFIG_JFS_FS is not set 709 686 # CONFIG_FS_POSIX_ACL is not set 710 687 # CONFIG_XFS_FS is not set 711 - # CONFIG_OCFS2_FS is not set 712 688 # CONFIG_MINIX_FS is not set 713 689 CONFIG_ROMFS_FS=y 714 690 # CONFIG_INOTIFY is not set ··· 775 753 # CONFIG_RPCSEC_GSS_SPKM3 is not set 776 754 # CONFIG_SMB_FS is not set 777 755 # CONFIG_CIFS is not set 756 + # CONFIG_CIFS_DEBUG2 is not set 778 757 # CONFIG_NCP_FS is not set 779 758 # CONFIG_CODA_FS is not set 780 759 # CONFIG_AFS_FS is not set ··· 802 779 # 803 780 # CONFIG_PRINTK_TIME is not set 804 781 # CONFIG_MAGIC_SYSRQ is not set 782 + # CONFIG_UNUSED_SYMBOLS is not set 805 783 CONFIG_DEBUG_KERNEL=y 806 784 CONFIG_LOG_BUF_SHIFT=14 807 785 # CONFIG_DETECT_SOFTLOCKUP is not set 808 786 # CONFIG_SCHEDSTATS is not set 809 787 # CONFIG_DEBUG_SLAB is not set 810 - CONFIG_DEBUG_MUTEXES=y 788 + # CONFIG_DEBUG_RT_MUTEXES is not set 789 + # CONFIG_RT_MUTEX_TESTER is not set 811 790 # CONFIG_DEBUG_SPINLOCK is not set 791 + CONFIG_DEBUG_MUTEXES=y 792 + # CONFIG_DEBUG_RWSEMS is not set 812 793 # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 794 + # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 813 795 # CONFIG_DEBUG_KOBJECT is not set 814 796 CONFIG_DEBUG_INFO=y 815 797 # CONFIG_DEBUG_VM is not set ··· 872 844 CONFIG_CRC16=y 873 845 CONFIG_CRC32=y 874 846 # CONFIG_LIBCRC32C is not set 847 + CONFIG_PLIST=y
+44 -4
arch/mips/configs/mpc30x_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:09 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:15 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 CONFIG_MACH_VR41XX=y 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 76 73 CONFIG_GENERIC_FIND_NEXT_BIT=y 77 74 CONFIG_GENERIC_HWEIGHT=y 78 75 CONFIG_GENERIC_CALIBRATE_DELAY=y 76 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 79 77 CONFIG_DMA_NONCOHERENT=y 80 78 CONFIG_DMA_NEED_PCI_MAP_STATE=y 81 79 # CONFIG_CPU_BIG_ENDIAN is not set ··· 121 117 # CONFIG_PAGE_SIZE_8KB is not set 122 118 # CONFIG_PAGE_SIZE_16KB is not set 123 119 # CONFIG_PAGE_SIZE_64KB is not set 124 - # CONFIG_MIPS_MT is not set 120 + CONFIG_MIPS_MT_DISABLED=y 121 + # CONFIG_MIPS_MT_SMTC is not set 122 + # CONFIG_MIPS_MT_SMP is not set 123 + # CONFIG_MIPS_VPE_LOADER is not set 125 124 CONFIG_CPU_HAS_SYNC=y 126 125 CONFIG_GENERIC_HARDIRQS=y 127 126 CONFIG_GENERIC_IRQ_PROBE=y ··· 137 130 CONFIG_FLAT_NODE_MEM_MAP=y 138 131 # CONFIG_SPARSEMEM_STATIC is not set 139 132 CONFIG_SPLIT_PTLOCK_CPUS=4 133 + # CONFIG_RESOURCES_64BIT is not set 140 134 # CONFIG_HZ_48 is not set 141 135 # CONFIG_HZ_100 is not set 142 136 # CONFIG_HZ_128 is not set ··· 150 142 CONFIG_PREEMPT_NONE=y 151 143 # CONFIG_PREEMPT_VOLUNTARY is not set 152 144 # CONFIG_PREEMPT is not set 145 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 153 146 154 147 # 155 148 # Code maturity level options ··· 182 173 CONFIG_BUG=y 183 174 CONFIG_ELF_CORE=y 184 175 CONFIG_BASE_FULL=y 176 + CONFIG_RT_MUTEXES=y 185 177 CONFIG_FUTEX=y 186 178 CONFIG_EPOLL=y 187 179 CONFIG_SHMEM=y 188 180 CONFIG_SLAB=y 181 + CONFIG_VM_EVENT_COUNTERS=y 189 182 # CONFIG_TINY_SHMEM is not set 190 183 CONFIG_BASE_SMALL=0 191 184 # CONFIG_SLOB is not set ··· 289 278 # CONFIG_INET_IPCOMP is not set 290 279 # CONFIG_INET_XFRM_TUNNEL is not set 291 280 # CONFIG_INET_TUNNEL is not set 281 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 282 + CONFIG_INET_XFRM_MODE_TUNNEL=m 292 283 CONFIG_INET_DIAG=y 293 284 CONFIG_INET_TCP_DIAG=y 294 285 # CONFIG_TCP_CONG_ADVANCED is not set ··· 298 285 # CONFIG_IPV6 is not set 299 286 # CONFIG_INET6_XFRM_TUNNEL is not set 300 287 # CONFIG_INET6_TUNNEL is not set 288 + CONFIG_NETWORK_SECMARK=y 301 289 # CONFIG_NETFILTER is not set 302 290 303 291 # ··· 359 345 CONFIG_STANDALONE=y 360 346 CONFIG_PREVENT_FIRMWARE_BUILD=y 361 347 CONFIG_FW_LOADER=y 348 + # CONFIG_SYS_HYPERVISOR is not set 362 349 363 350 # 364 351 # Connector - unified userspace <-> kernelspace linker ··· 498 483 # CONFIG_CHELSIO_T1 is not set 499 484 # CONFIG_IXGB is not set 500 485 # CONFIG_S2IO is not set 486 + # CONFIG_MYRI10GE is not set 501 487 502 488 # 503 489 # Token Ring devices ··· 547 531 # Prism GT/Duette 802.11(a/b/g) PCI/Cardbus support 548 532 # 549 533 # CONFIG_PRISM54 is not set 534 + # CONFIG_USB_ZD1201 is not set 550 535 # CONFIG_HOSTAP is not set 551 536 # CONFIG_BCM43XX is not set 537 + # CONFIG_ZD1211RW is not set 552 538 CONFIG_NET_WIRELESS=y 553 539 554 540 # ··· 632 614 CONFIG_VT=y 633 615 CONFIG_VT_CONSOLE=y 634 616 CONFIG_HW_CONSOLE=y 617 + CONFIG_VT_HW_CONSOLE_BINDING=y 635 618 # CONFIG_SERIAL_NONSTANDARD is not set 636 619 637 620 # ··· 658 639 # Watchdog Cards 659 640 # 660 641 # CONFIG_WATCHDOG is not set 642 + # CONFIG_HW_RANDOM is not set 661 643 # CONFIG_RTC is not set 662 644 # CONFIG_GEN_RTC is not set 663 645 # CONFIG_DTLK is not set ··· 715 695 # Multimedia devices 716 696 # 717 697 # CONFIG_VIDEO_DEV is not set 698 + CONFIG_VIDEO_V4L2=y 718 699 719 700 # 720 701 # Digital Video Broadcasting Devices ··· 726 705 # 727 706 # Graphics support 728 707 # 708 + # CONFIG_FIRMWARE_EDID is not set 729 709 # CONFIG_FB is not set 730 710 731 711 # ··· 820 798 CONFIG_USB_PEGASUS=m 821 799 # CONFIG_USB_RTL8150 is not set 822 800 # CONFIG_USB_USBNET is not set 823 - # CONFIG_USB_ZD1201 is not set 824 801 # CONFIG_USB_MON is not set 825 802 826 803 # ··· 841 820 # CONFIG_USB_LEGOTOWER is not set 842 821 # CONFIG_USB_LCD is not set 843 822 # CONFIG_USB_LED is not set 823 + # CONFIG_USB_CY7C63 is not set 844 824 # CONFIG_USB_CYTHERM is not set 845 825 # CONFIG_USB_PHIDGETKIT is not set 846 826 # CONFIG_USB_PHIDGETSERVO is not set 847 827 # CONFIG_USB_IDMOUSE is not set 828 + # CONFIG_USB_APPLEDISPLAY is not set 848 829 # CONFIG_USB_LD is not set 849 830 # CONFIG_USB_TEST is not set 850 831 ··· 892 869 # CONFIG_RTC_CLASS is not set 893 870 894 871 # 872 + # DMA Engine support 873 + # 874 + # CONFIG_DMA_ENGINE is not set 875 + 876 + # 877 + # DMA Clients 878 + # 879 + 880 + # 881 + # DMA Devices 882 + # 883 + 884 + # 895 885 # File systems 896 886 # 897 887 CONFIG_EXT2_FS=y ··· 919 883 # CONFIG_MINIX_FS is not set 920 884 # CONFIG_ROMFS_FS is not set 921 885 CONFIG_INOTIFY=y 886 + CONFIG_INOTIFY_USER=y 922 887 # CONFIG_QUOTA is not set 923 888 CONFIG_DNOTIFY=y 924 889 CONFIG_AUTOFS_FS=y ··· 982 945 # CONFIG_RPCSEC_GSS_SPKM3 is not set 983 946 # CONFIG_SMB_FS is not set 984 947 # CONFIG_CIFS is not set 948 + # CONFIG_CIFS_DEBUG2 is not set 985 949 # CONFIG_NCP_FS is not set 986 950 # CONFIG_CODA_FS is not set 987 951 # CONFIG_AFS_FS is not set ··· 1009 971 # 1010 972 # CONFIG_PRINTK_TIME is not set 1011 973 # CONFIG_MAGIC_SYSRQ is not set 974 + # CONFIG_UNUSED_SYMBOLS is not set 1012 975 # CONFIG_DEBUG_KERNEL is not set 1013 976 CONFIG_LOG_BUF_SHIFT=14 1014 977 # CONFIG_DEBUG_FS is not set ··· 1065 1026 CONFIG_LIBCRC32C=m 1066 1027 CONFIG_ZLIB_INFLATE=m 1067 1028 CONFIG_ZLIB_DEFLATE=m 1029 + CONFIG_PLIST=y
+49 -6
arch/mips/configs/ocelot_3_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:10 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:15 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 68 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 66 CONFIG_GENERIC_HWEIGHT=y 70 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 71 69 CONFIG_DMA_NONCOHERENT=y 72 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 71 CONFIG_CPU_BIG_ENDIAN=y ··· 122 118 CONFIG_BOARD_SCACHE=y 123 119 CONFIG_RM7000_CPU_SCACHE=y 124 120 CONFIG_CPU_HAS_PREFETCH=y 125 - # CONFIG_MIPS_MT is not set 121 + CONFIG_MIPS_MT_DISABLED=y 122 + # CONFIG_MIPS_MT_SMTC is not set 123 + # CONFIG_MIPS_MT_SMP is not set 124 + # CONFIG_MIPS_VPE_LOADER is not set 126 125 # CONFIG_64BIT_PHYS_ADDR is not set 127 126 CONFIG_CPU_HAS_LLSC=y 128 127 CONFIG_CPU_HAS_SYNC=y ··· 141 134 CONFIG_FLAT_NODE_MEM_MAP=y 142 135 # CONFIG_SPARSEMEM_STATIC is not set 143 136 CONFIG_SPLIT_PTLOCK_CPUS=4 137 + # CONFIG_RESOURCES_64BIT is not set 144 138 # CONFIG_HZ_48 is not set 145 139 # CONFIG_HZ_100 is not set 146 140 # CONFIG_HZ_128 is not set ··· 151 143 # CONFIG_HZ_1024 is not set 152 144 CONFIG_SYS_SUPPORTS_ARBIT_HZ=y 153 145 CONFIG_HZ=1000 154 - # CONFIG_SMP is not set 155 146 CONFIG_PREEMPT_NONE=y 156 147 # CONFIG_PREEMPT_VOLUNTARY is not set 157 148 # CONFIG_PREEMPT is not set 149 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 158 150 159 151 # 160 152 # Code maturity level options ··· 187 179 CONFIG_BUG=y 188 180 CONFIG_ELF_CORE=y 189 181 CONFIG_BASE_FULL=y 182 + CONFIG_RT_MUTEXES=y 190 183 CONFIG_FUTEX=y 191 184 CONFIG_EPOLL=y 192 185 CONFIG_SHMEM=y 193 186 CONFIG_SLAB=y 187 + CONFIG_VM_EVENT_COUNTERS=y 194 188 # CONFIG_TINY_SHMEM is not set 195 189 CONFIG_BASE_SMALL=0 196 190 # CONFIG_SLOB is not set ··· 283 273 # CONFIG_INET_IPCOMP is not set 284 274 # CONFIG_INET_XFRM_TUNNEL is not set 285 275 # CONFIG_INET_TUNNEL is not set 276 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 277 + CONFIG_INET_XFRM_MODE_TUNNEL=m 286 278 CONFIG_INET_DIAG=y 287 279 CONFIG_INET_TCP_DIAG=y 288 280 # CONFIG_TCP_CONG_ADVANCED is not set ··· 303 291 # CONFIG_INET6_IPCOMP is not set 304 292 # CONFIG_INET6_XFRM_TUNNEL is not set 305 293 # CONFIG_INET6_TUNNEL is not set 294 + CONFIG_INET6_XFRM_MODE_TRANSPORT=m 295 + CONFIG_INET6_XFRM_MODE_TUNNEL=m 306 296 # CONFIG_IPV6_TUNNEL is not set 297 + CONFIG_NETWORK_SECMARK=y 307 298 CONFIG_NETFILTER=y 308 299 # CONFIG_NETFILTER_DEBUG is not set 309 300 ··· 321 306 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 322 307 CONFIG_NETFILTER_XT_TARGET_MARK=m 323 308 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 309 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 324 310 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 325 311 CONFIG_NETFILTER_XT_MATCH_DCCP=m 326 312 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 332 316 CONFIG_NETFILTER_XT_MATCH_POLICY=m 333 317 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 334 318 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 319 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 335 320 CONFIG_NETFILTER_XT_MATCH_REALM=m 336 321 CONFIG_NETFILTER_XT_MATCH_SCTP=m 322 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 337 323 CONFIG_NETFILTER_XT_MATCH_STRING=m 338 324 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 339 325 ··· 411 393 CONFIG_STANDALONE=y 412 394 CONFIG_PREVENT_FIRMWARE_BUILD=y 413 395 CONFIG_FW_LOADER=m 396 + # CONFIG_SYS_HYPERVISOR is not set 414 397 415 398 # 416 399 # Connector - unified userspace <-> kernelspace linker ··· 502 483 # CONFIG_MEGARAID_LEGACY is not set 503 484 # CONFIG_MEGARAID_SAS is not set 504 485 # CONFIG_SCSI_SATA is not set 486 + # CONFIG_SCSI_HPTIOP is not set 505 487 # CONFIG_SCSI_DMX3191D is not set 506 488 # CONFIG_SCSI_FUTURE_DOMAIN is not set 507 489 # CONFIG_SCSI_IPS is not set ··· 568 548 CONFIG_QSEMI_PHY=m 569 549 CONFIG_LXT_PHY=m 570 550 CONFIG_CICADA_PHY=m 551 + CONFIG_VITESSE_PHY=m 552 + CONFIG_SMSC_PHY=m 571 553 572 554 # 573 555 # Ethernet (10 or 100Mbit) ··· 636 614 # CONFIG_CHELSIO_T1 is not set 637 615 # CONFIG_IXGB is not set 638 616 # CONFIG_S2IO is not set 617 + # CONFIG_MYRI10GE is not set 639 618 640 619 # 641 620 # Token Ring devices ··· 720 697 CONFIG_VT=y 721 698 CONFIG_VT_CONSOLE=y 722 699 CONFIG_HW_CONSOLE=y 700 + CONFIG_VT_HW_CONSOLE_BINDING=y 723 701 # CONFIG_SERIAL_NONSTANDARD is not set 724 702 725 703 # ··· 752 728 # Watchdog Cards 753 729 # 754 730 # CONFIG_WATCHDOG is not set 731 + # CONFIG_HW_RANDOM is not set 755 732 CONFIG_RTC=y 756 733 # CONFIG_DTLK is not set 757 734 # CONFIG_R3964 is not set ··· 800 775 # Multimedia devices 801 776 # 802 777 # CONFIG_VIDEO_DEV is not set 778 + CONFIG_VIDEO_V4L2=y 803 779 804 780 # 805 781 # Digital Video Broadcasting Devices ··· 810 784 # 811 785 # Graphics support 812 786 # 787 + # CONFIG_FIRMWARE_EDID is not set 813 788 CONFIG_FB=y 814 789 # CONFIG_FB_CFB_FILLRECT is not set 815 790 # CONFIG_FB_CFB_COPYAREA is not set 816 791 # CONFIG_FB_CFB_IMAGEBLIT is not set 817 792 # CONFIG_FB_MACMODES is not set 818 - CONFIG_FB_FIRMWARE_EDID=y 793 + # CONFIG_FB_BACKLIGHT is not set 819 794 CONFIG_FB_MODE_HELPERS=y 820 795 # CONFIG_FB_TILEBLITTING is not set 821 796 # CONFIG_FB_CIRRUS is not set ··· 916 889 # CONFIG_RTC_CLASS is not set 917 890 918 891 # 892 + # DMA Engine support 893 + # 894 + # CONFIG_DMA_ENGINE is not set 895 + 896 + # 897 + # DMA Clients 898 + # 899 + 900 + # 901 + # DMA Devices 902 + # 903 + 904 + # 919 905 # File systems 920 906 # 921 907 CONFIG_EXT2_FS=y ··· 948 908 # CONFIG_JFS_FS is not set 949 909 # CONFIG_FS_POSIX_ACL is not set 950 910 CONFIG_XFS_FS=m 951 - CONFIG_XFS_EXPORT=y 952 911 # CONFIG_XFS_QUOTA is not set 953 912 # CONFIG_XFS_SECURITY is not set 954 913 # CONFIG_XFS_POSIX_ACL is not set ··· 956 917 # CONFIG_MINIX_FS is not set 957 918 # CONFIG_ROMFS_FS is not set 958 919 CONFIG_INOTIFY=y 920 + CONFIG_INOTIFY_USER=y 959 921 # CONFIG_QUOTA is not set 960 922 CONFIG_DNOTIFY=y 961 923 CONFIG_AUTOFS_FS=y ··· 1028 988 CONFIG_SMB_FS=m 1029 989 # CONFIG_SMB_NLS_DEFAULT is not set 1030 990 # CONFIG_CIFS is not set 991 + # CONFIG_CIFS_DEBUG2 is not set 1031 992 # CONFIG_NCP_FS is not set 1032 993 # CONFIG_CODA_FS is not set 1033 994 # CONFIG_AFS_FS is not set ··· 1094 1053 # 1095 1054 # CONFIG_PRINTK_TIME is not set 1096 1055 # CONFIG_MAGIC_SYSRQ is not set 1056 + # CONFIG_UNUSED_SYMBOLS is not set 1097 1057 # CONFIG_DEBUG_KERNEL is not set 1098 1058 CONFIG_LOG_BUF_SHIFT=14 1099 1059 # CONFIG_DEBUG_FS is not set ··· 1153 1111 CONFIG_TEXTSEARCH_KMP=m 1154 1112 CONFIG_TEXTSEARCH_BM=m 1155 1113 CONFIG_TEXTSEARCH_FSM=m 1114 + CONFIG_PLIST=y
+42 -4
arch/mips/configs/ocelot_c_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:10 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:16 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 68 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 66 CONFIG_GENERIC_HWEIGHT=y 70 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 71 69 CONFIG_DMA_NONCOHERENT=y 72 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 71 CONFIG_CPU_BIG_ENDIAN=y ··· 120 116 CONFIG_BOARD_SCACHE=y 121 117 CONFIG_RM7000_CPU_SCACHE=y 122 118 CONFIG_CPU_HAS_PREFETCH=y 123 - # CONFIG_MIPS_MT is not set 119 + CONFIG_MIPS_MT_DISABLED=y 120 + # CONFIG_MIPS_MT_SMTC is not set 121 + # CONFIG_MIPS_MT_SMP is not set 122 + # CONFIG_MIPS_VPE_LOADER is not set 124 123 CONFIG_CPU_HAS_LLSC=y 125 124 CONFIG_CPU_HAS_SYNC=y 126 125 CONFIG_GENERIC_HARDIRQS=y ··· 138 131 CONFIG_FLAT_NODE_MEM_MAP=y 139 132 # CONFIG_SPARSEMEM_STATIC is not set 140 133 CONFIG_SPLIT_PTLOCK_CPUS=4 134 + CONFIG_RESOURCES_64BIT=y 141 135 # CONFIG_HZ_48 is not set 142 136 # CONFIG_HZ_100 is not set 143 137 # CONFIG_HZ_128 is not set ··· 151 143 CONFIG_PREEMPT_NONE=y 152 144 # CONFIG_PREEMPT_VOLUNTARY is not set 153 145 # CONFIG_PREEMPT is not set 146 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 154 147 155 148 # 156 149 # Code maturity level options ··· 183 174 CONFIG_BUG=y 184 175 CONFIG_ELF_CORE=y 185 176 CONFIG_BASE_FULL=y 177 + CONFIG_RT_MUTEXES=y 186 178 CONFIG_FUTEX=y 187 179 CONFIG_EPOLL=y 188 180 CONFIG_SHMEM=y 189 181 CONFIG_SLAB=y 182 + CONFIG_VM_EVENT_COUNTERS=y 190 183 # CONFIG_TINY_SHMEM is not set 191 184 CONFIG_BASE_SMALL=0 192 185 # CONFIG_SLOB is not set ··· 276 265 # CONFIG_INET_IPCOMP is not set 277 266 # CONFIG_INET_XFRM_TUNNEL is not set 278 267 # CONFIG_INET_TUNNEL is not set 268 + CONFIG_INET_XFRM_MODE_TRANSPORT=y 269 + CONFIG_INET_XFRM_MODE_TUNNEL=y 279 270 CONFIG_INET_DIAG=y 280 271 CONFIG_INET_TCP_DIAG=y 281 272 # CONFIG_TCP_CONG_ADVANCED is not set ··· 285 272 # CONFIG_IPV6 is not set 286 273 # CONFIG_INET6_XFRM_TUNNEL is not set 287 274 # CONFIG_INET6_TUNNEL is not set 275 + CONFIG_NETWORK_SECMARK=y 288 276 # CONFIG_NETFILTER is not set 289 277 290 278 # ··· 345 331 CONFIG_STANDALONE=y 346 332 CONFIG_PREVENT_FIRMWARE_BUILD=y 347 333 CONFIG_FW_LOADER=y 334 + # CONFIG_SYS_HYPERVISOR is not set 348 335 349 336 # 350 337 # Connector - unified userspace <-> kernelspace linker ··· 443 428 CONFIG_QSEMI_PHY=y 444 429 CONFIG_LXT_PHY=y 445 430 CONFIG_CICADA_PHY=y 431 + CONFIG_VITESSE_PHY=y 432 + CONFIG_SMSC_PHY=y 446 433 447 434 # 448 435 # Ethernet (10 or 100Mbit) ··· 488 471 # CONFIG_CHELSIO_T1 is not set 489 472 # CONFIG_IXGB is not set 490 473 # CONFIG_S2IO is not set 474 + # CONFIG_MYRI10GE is not set 491 475 492 476 # 493 477 # Token Ring devices ··· 566 548 CONFIG_VT=y 567 549 CONFIG_VT_CONSOLE=y 568 550 CONFIG_HW_CONSOLE=y 551 + CONFIG_VT_HW_CONSOLE_BINDING=y 569 552 # CONFIG_SERIAL_NONSTANDARD is not set 570 553 571 554 # ··· 598 579 # Watchdog Cards 599 580 # 600 581 # CONFIG_WATCHDOG is not set 582 + # CONFIG_HW_RANDOM is not set 601 583 # CONFIG_RTC is not set 602 584 # CONFIG_GEN_RTC is not set 603 585 # CONFIG_DTLK is not set ··· 647 627 # Multimedia devices 648 628 # 649 629 # CONFIG_VIDEO_DEV is not set 630 + CONFIG_VIDEO_V4L2=y 650 631 651 632 # 652 633 # Digital Video Broadcasting Devices ··· 657 636 # 658 637 # Graphics support 659 638 # 639 + # CONFIG_FIRMWARE_EDID is not set 660 640 # CONFIG_FB is not set 661 641 662 642 # ··· 721 699 # CONFIG_RTC_CLASS is not set 722 700 723 701 # 702 + # DMA Engine support 703 + # 704 + # CONFIG_DMA_ENGINE is not set 705 + 706 + # 707 + # DMA Clients 708 + # 709 + 710 + # 711 + # DMA Devices 712 + # 713 + 714 + # 724 715 # File systems 725 716 # 726 717 CONFIG_EXT2_FS=y ··· 748 713 # CONFIG_MINIX_FS is not set 749 714 # CONFIG_ROMFS_FS is not set 750 715 CONFIG_INOTIFY=y 716 + CONFIG_INOTIFY_USER=y 751 717 # CONFIG_QUOTA is not set 752 718 CONFIG_DNOTIFY=y 753 719 # CONFIG_AUTOFS_FS is not set ··· 815 779 # CONFIG_RPCSEC_GSS_SPKM3 is not set 816 780 # CONFIG_SMB_FS is not set 817 781 # CONFIG_CIFS is not set 782 + # CONFIG_CIFS_DEBUG2 is not set 818 783 # CONFIG_NCP_FS is not set 819 784 # CONFIG_CODA_FS is not set 820 785 # CONFIG_AFS_FS is not set ··· 842 805 # 843 806 # CONFIG_PRINTK_TIME is not set 844 807 # CONFIG_MAGIC_SYSRQ is not set 808 + # CONFIG_UNUSED_SYMBOLS is not set 845 809 # CONFIG_DEBUG_KERNEL is not set 846 810 CONFIG_LOG_BUF_SHIFT=14 847 811 # CONFIG_DEBUG_FS is not set ··· 884 846 CONFIG_CRYPTO_DEFLATE=y 885 847 CONFIG_CRYPTO_MICHAEL_MIC=y 886 848 CONFIG_CRYPTO_CRC32C=y 887 - # CONFIG_CRYPTO_TEST is not set 888 849 889 850 # 890 851 # Hardware crypto devices ··· 898 861 CONFIG_LIBCRC32C=y 899 862 CONFIG_ZLIB_INFLATE=y 900 863 CONFIG_ZLIB_DEFLATE=y 864 + CONFIG_PLIST=y
+41 -4
arch/mips/configs/ocelot_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:11 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:16 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 CONFIG_MOMENCO_OCELOT=y ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 68 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 66 CONFIG_GENERIC_HWEIGHT=y 70 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 71 69 CONFIG_DMA_NONCOHERENT=y 72 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 71 CONFIG_CPU_BIG_ENDIAN=y ··· 123 119 CONFIG_BOARD_SCACHE=y 124 120 CONFIG_RM7000_CPU_SCACHE=y 125 121 CONFIG_CPU_HAS_PREFETCH=y 126 - # CONFIG_MIPS_MT is not set 122 + CONFIG_MIPS_MT_DISABLED=y 123 + # CONFIG_MIPS_MT_SMTC is not set 124 + # CONFIG_MIPS_MT_SMP is not set 125 + # CONFIG_MIPS_VPE_LOADER is not set 127 126 # CONFIG_64BIT_PHYS_ADDR is not set 128 127 CONFIG_CPU_HAS_LLSC=y 129 128 CONFIG_CPU_HAS_SYNC=y ··· 142 135 CONFIG_FLAT_NODE_MEM_MAP=y 143 136 # CONFIG_SPARSEMEM_STATIC is not set 144 137 CONFIG_SPLIT_PTLOCK_CPUS=4 138 + # CONFIG_RESOURCES_64BIT is not set 145 139 # CONFIG_HZ_48 is not set 146 140 # CONFIG_HZ_100 is not set 147 141 # CONFIG_HZ_128 is not set ··· 155 147 CONFIG_PREEMPT_NONE=y 156 148 # CONFIG_PREEMPT_VOLUNTARY is not set 157 149 # CONFIG_PREEMPT is not set 150 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 158 151 159 152 # 160 153 # Code maturity level options ··· 187 178 CONFIG_BUG=y 188 179 CONFIG_ELF_CORE=y 189 180 CONFIG_BASE_FULL=y 181 + CONFIG_RT_MUTEXES=y 190 182 CONFIG_FUTEX=y 191 183 CONFIG_EPOLL=y 192 184 CONFIG_SHMEM=y 193 185 CONFIG_SLAB=y 186 + CONFIG_VM_EVENT_COUNTERS=y 194 187 # CONFIG_TINY_SHMEM is not set 195 188 CONFIG_BASE_SMALL=0 196 189 # CONFIG_SLOB is not set ··· 276 265 # CONFIG_INET_IPCOMP is not set 277 266 # CONFIG_INET_XFRM_TUNNEL is not set 278 267 # CONFIG_INET_TUNNEL is not set 268 + CONFIG_INET_XFRM_MODE_TRANSPORT=y 269 + CONFIG_INET_XFRM_MODE_TUNNEL=y 279 270 CONFIG_INET_DIAG=y 280 271 CONFIG_INET_TCP_DIAG=y 281 272 # CONFIG_TCP_CONG_ADVANCED is not set ··· 285 272 # CONFIG_IPV6 is not set 286 273 # CONFIG_INET6_XFRM_TUNNEL is not set 287 274 # CONFIG_INET6_TUNNEL is not set 275 + CONFIG_NETWORK_SECMARK=y 288 276 # CONFIG_NETFILTER is not set 289 277 290 278 # ··· 345 331 CONFIG_STANDALONE=y 346 332 CONFIG_PREVENT_FIRMWARE_BUILD=y 347 333 # CONFIG_FW_LOADER is not set 334 + # CONFIG_SYS_HYPERVISOR is not set 348 335 349 336 # 350 337 # Connector - unified userspace <-> kernelspace linker ··· 431 416 CONFIG_QSEMI_PHY=y 432 417 CONFIG_LXT_PHY=y 433 418 CONFIG_CICADA_PHY=y 419 + CONFIG_VITESSE_PHY=y 420 + CONFIG_SMSC_PHY=y 434 421 435 422 # 436 423 # Ethernet (10 or 100Mbit) ··· 521 504 CONFIG_VT=y 522 505 CONFIG_VT_CONSOLE=y 523 506 CONFIG_HW_CONSOLE=y 507 + CONFIG_VT_HW_CONSOLE_BINDING=y 524 508 # CONFIG_SERIAL_NONSTANDARD is not set 525 509 526 510 # ··· 551 533 # Watchdog Cards 552 534 # 553 535 # CONFIG_WATCHDOG is not set 536 + # CONFIG_HW_RANDOM is not set 554 537 # CONFIG_RTC is not set 555 538 # CONFIG_GEN_RTC is not set 556 539 # CONFIG_DTLK is not set ··· 598 579 # Multimedia devices 599 580 # 600 581 # CONFIG_VIDEO_DEV is not set 582 + CONFIG_VIDEO_V4L2=y 601 583 602 584 # 603 585 # Digital Video Broadcasting Devices ··· 608 588 # 609 589 # Graphics support 610 590 # 591 + # CONFIG_FIRMWARE_EDID is not set 611 592 # CONFIG_FB is not set 612 593 613 594 # ··· 670 649 # CONFIG_RTC_CLASS is not set 671 650 672 651 # 652 + # DMA Engine support 653 + # 654 + # CONFIG_DMA_ENGINE is not set 655 + 656 + # 657 + # DMA Clients 658 + # 659 + 660 + # 661 + # DMA Devices 662 + # 663 + 664 + # 673 665 # File systems 674 666 # 675 667 CONFIG_EXT2_FS=y ··· 697 663 # CONFIG_MINIX_FS is not set 698 664 # CONFIG_ROMFS_FS is not set 699 665 CONFIG_INOTIFY=y 666 + CONFIG_INOTIFY_USER=y 700 667 # CONFIG_QUOTA is not set 701 668 CONFIG_DNOTIFY=y 702 669 # CONFIG_AUTOFS_FS is not set ··· 764 729 # CONFIG_RPCSEC_GSS_SPKM3 is not set 765 730 # CONFIG_SMB_FS is not set 766 731 # CONFIG_CIFS is not set 732 + # CONFIG_CIFS_DEBUG2 is not set 767 733 # CONFIG_NCP_FS is not set 768 734 # CONFIG_CODA_FS is not set 769 735 # CONFIG_AFS_FS is not set ··· 791 755 # 792 756 # CONFIG_PRINTK_TIME is not set 793 757 # CONFIG_MAGIC_SYSRQ is not set 758 + # CONFIG_UNUSED_SYMBOLS is not set 794 759 # CONFIG_DEBUG_KERNEL is not set 795 760 CONFIG_LOG_BUF_SHIFT=14 796 761 # CONFIG_DEBUG_FS is not set ··· 833 796 CONFIG_CRYPTO_DEFLATE=y 834 797 CONFIG_CRYPTO_MICHAEL_MIC=y 835 798 CONFIG_CRYPTO_CRC32C=y 836 - # CONFIG_CRYPTO_TEST is not set 837 799 838 800 # 839 801 # Hardware crypto devices ··· 847 811 CONFIG_LIBCRC32C=y 848 812 CONFIG_ZLIB_INFLATE=y 849 813 CONFIG_ZLIB_DEFLATE=y 814 + CONFIG_PLIST=y
+42 -4
arch/mips/configs/ocelot_g_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:11 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:16 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 68 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 66 CONFIG_GENERIC_HWEIGHT=y 70 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 71 69 CONFIG_DMA_NONCOHERENT=y 72 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 71 CONFIG_CPU_BIG_ENDIAN=y ··· 123 119 CONFIG_BOARD_SCACHE=y 124 120 CONFIG_RM7000_CPU_SCACHE=y 125 121 CONFIG_CPU_HAS_PREFETCH=y 126 - # CONFIG_MIPS_MT is not set 122 + CONFIG_MIPS_MT_DISABLED=y 123 + # CONFIG_MIPS_MT_SMTC is not set 124 + # CONFIG_MIPS_MT_SMP is not set 125 + # CONFIG_MIPS_VPE_LOADER is not set 127 126 CONFIG_CPU_HAS_LLSC=y 128 127 CONFIG_CPU_HAS_SYNC=y 129 128 CONFIG_GENERIC_HARDIRQS=y ··· 141 134 CONFIG_FLAT_NODE_MEM_MAP=y 142 135 # CONFIG_SPARSEMEM_STATIC is not set 143 136 CONFIG_SPLIT_PTLOCK_CPUS=4 137 + CONFIG_RESOURCES_64BIT=y 144 138 # CONFIG_HZ_48 is not set 145 139 # CONFIG_HZ_100 is not set 146 140 # CONFIG_HZ_128 is not set ··· 154 146 CONFIG_PREEMPT_NONE=y 155 147 # CONFIG_PREEMPT_VOLUNTARY is not set 156 148 # CONFIG_PREEMPT is not set 149 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 157 150 158 151 # 159 152 # Code maturity level options ··· 186 177 CONFIG_BUG=y 187 178 CONFIG_ELF_CORE=y 188 179 CONFIG_BASE_FULL=y 180 + CONFIG_RT_MUTEXES=y 189 181 CONFIG_FUTEX=y 190 182 CONFIG_EPOLL=y 191 183 CONFIG_SHMEM=y 192 184 CONFIG_SLAB=y 185 + CONFIG_VM_EVENT_COUNTERS=y 193 186 # CONFIG_TINY_SHMEM is not set 194 187 CONFIG_BASE_SMALL=0 195 188 # CONFIG_SLOB is not set ··· 279 268 # CONFIG_INET_IPCOMP is not set 280 269 # CONFIG_INET_XFRM_TUNNEL is not set 281 270 # CONFIG_INET_TUNNEL is not set 271 + CONFIG_INET_XFRM_MODE_TRANSPORT=y 272 + CONFIG_INET_XFRM_MODE_TUNNEL=y 282 273 CONFIG_INET_DIAG=y 283 274 CONFIG_INET_TCP_DIAG=y 284 275 # CONFIG_TCP_CONG_ADVANCED is not set ··· 288 275 # CONFIG_IPV6 is not set 289 276 # CONFIG_INET6_XFRM_TUNNEL is not set 290 277 # CONFIG_INET6_TUNNEL is not set 278 + CONFIG_NETWORK_SECMARK=y 291 279 # CONFIG_NETFILTER is not set 292 280 293 281 # ··· 348 334 CONFIG_STANDALONE=y 349 335 CONFIG_PREVENT_FIRMWARE_BUILD=y 350 336 CONFIG_FW_LOADER=y 337 + # CONFIG_SYS_HYPERVISOR is not set 351 338 352 339 # 353 340 # Connector - unified userspace <-> kernelspace linker ··· 446 431 CONFIG_QSEMI_PHY=y 447 432 CONFIG_LXT_PHY=y 448 433 CONFIG_CICADA_PHY=y 434 + CONFIG_VITESSE_PHY=y 435 + CONFIG_SMSC_PHY=y 449 436 450 437 # 451 438 # Ethernet (10 or 100Mbit) ··· 491 474 # CONFIG_CHELSIO_T1 is not set 492 475 # CONFIG_IXGB is not set 493 476 # CONFIG_S2IO is not set 477 + # CONFIG_MYRI10GE is not set 494 478 495 479 # 496 480 # Token Ring devices ··· 569 551 CONFIG_VT=y 570 552 CONFIG_VT_CONSOLE=y 571 553 CONFIG_HW_CONSOLE=y 554 + CONFIG_VT_HW_CONSOLE_BINDING=y 572 555 # CONFIG_SERIAL_NONSTANDARD is not set 573 556 574 557 # ··· 601 582 # Watchdog Cards 602 583 # 603 584 # CONFIG_WATCHDOG is not set 585 + # CONFIG_HW_RANDOM is not set 604 586 # CONFIG_RTC is not set 605 587 # CONFIG_GEN_RTC is not set 606 588 # CONFIG_DTLK is not set ··· 650 630 # Multimedia devices 651 631 # 652 632 # CONFIG_VIDEO_DEV is not set 633 + CONFIG_VIDEO_V4L2=y 653 634 654 635 # 655 636 # Digital Video Broadcasting Devices ··· 660 639 # 661 640 # Graphics support 662 641 # 642 + # CONFIG_FIRMWARE_EDID is not set 663 643 # CONFIG_FB is not set 664 644 665 645 # ··· 724 702 # CONFIG_RTC_CLASS is not set 725 703 726 704 # 705 + # DMA Engine support 706 + # 707 + # CONFIG_DMA_ENGINE is not set 708 + 709 + # 710 + # DMA Clients 711 + # 712 + 713 + # 714 + # DMA Devices 715 + # 716 + 717 + # 727 718 # File systems 728 719 # 729 720 CONFIG_EXT2_FS=y ··· 751 716 # CONFIG_MINIX_FS is not set 752 717 # CONFIG_ROMFS_FS is not set 753 718 CONFIG_INOTIFY=y 719 + CONFIG_INOTIFY_USER=y 754 720 # CONFIG_QUOTA is not set 755 721 CONFIG_DNOTIFY=y 756 722 # CONFIG_AUTOFS_FS is not set ··· 818 782 # CONFIG_RPCSEC_GSS_SPKM3 is not set 819 783 # CONFIG_SMB_FS is not set 820 784 # CONFIG_CIFS is not set 785 + # CONFIG_CIFS_DEBUG2 is not set 821 786 # CONFIG_NCP_FS is not set 822 787 # CONFIG_CODA_FS is not set 823 788 # CONFIG_AFS_FS is not set ··· 845 808 # 846 809 # CONFIG_PRINTK_TIME is not set 847 810 # CONFIG_MAGIC_SYSRQ is not set 811 + # CONFIG_UNUSED_SYMBOLS is not set 848 812 # CONFIG_DEBUG_KERNEL is not set 849 813 CONFIG_LOG_BUF_SHIFT=14 850 814 # CONFIG_DEBUG_FS is not set ··· 887 849 CONFIG_CRYPTO_DEFLATE=y 888 850 CONFIG_CRYPTO_MICHAEL_MIC=y 889 851 CONFIG_CRYPTO_CRC32C=y 890 - # CONFIG_CRYPTO_TEST is not set 891 852 892 853 # 893 854 # Hardware crypto devices ··· 901 864 CONFIG_LIBCRC32C=y 902 865 CONFIG_ZLIB_INFLATE=y 903 866 CONFIG_ZLIB_DEFLATE=y 867 + CONFIG_PLIST=y
+44 -4
arch/mips/configs/pb1100_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:12 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:17 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 68 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 66 CONFIG_GENERIC_HWEIGHT=y 70 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 71 69 CONFIG_DMA_NONCOHERENT=y 72 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 71 # CONFIG_CPU_BIG_ENDIAN is not set ··· 118 114 # CONFIG_PAGE_SIZE_16KB is not set 119 115 # CONFIG_PAGE_SIZE_64KB is not set 120 116 CONFIG_CPU_HAS_PREFETCH=y 121 - # CONFIG_MIPS_MT is not set 117 + CONFIG_MIPS_MT_DISABLED=y 118 + # CONFIG_MIPS_MT_SMTC is not set 119 + # CONFIG_MIPS_MT_SMP is not set 120 + # CONFIG_MIPS_VPE_LOADER is not set 122 121 CONFIG_64BIT_PHYS_ADDR=y 123 122 CONFIG_CPU_HAS_LLSC=y 124 123 CONFIG_CPU_HAS_SYNC=y ··· 137 130 CONFIG_FLAT_NODE_MEM_MAP=y 138 131 # CONFIG_SPARSEMEM_STATIC is not set 139 132 CONFIG_SPLIT_PTLOCK_CPUS=4 133 + # CONFIG_RESOURCES_64BIT is not set 140 134 # CONFIG_HZ_48 is not set 141 135 # CONFIG_HZ_100 is not set 142 136 # CONFIG_HZ_128 is not set ··· 150 142 CONFIG_PREEMPT_NONE=y 151 143 # CONFIG_PREEMPT_VOLUNTARY is not set 152 144 # CONFIG_PREEMPT is not set 145 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 153 146 154 147 # 155 148 # Code maturity level options ··· 182 173 CONFIG_BUG=y 183 174 CONFIG_ELF_CORE=y 184 175 CONFIG_BASE_FULL=y 176 + CONFIG_RT_MUTEXES=y 185 177 CONFIG_FUTEX=y 186 178 CONFIG_EPOLL=y 187 179 CONFIG_SHMEM=y 188 180 CONFIG_SLAB=y 181 + CONFIG_VM_EVENT_COUNTERS=y 189 182 # CONFIG_TINY_SHMEM is not set 190 183 CONFIG_BASE_SMALL=0 191 184 # CONFIG_SLOB is not set 192 - CONFIG_OBSOLETE_INTERMODULE=y 193 185 194 186 # 195 187 # Loadable module support ··· 288 278 # CONFIG_INET_IPCOMP is not set 289 279 # CONFIG_INET_XFRM_TUNNEL is not set 290 280 # CONFIG_INET_TUNNEL is not set 281 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 282 + CONFIG_INET_XFRM_MODE_TUNNEL=m 291 283 CONFIG_INET_DIAG=y 292 284 CONFIG_INET_TCP_DIAG=y 293 285 # CONFIG_TCP_CONG_ADVANCED is not set ··· 302 290 # CONFIG_IPV6 is not set 303 291 # CONFIG_INET6_XFRM_TUNNEL is not set 304 292 # CONFIG_INET6_TUNNEL is not set 293 + CONFIG_NETWORK_SECMARK=y 305 294 CONFIG_NETFILTER=y 306 295 # CONFIG_NETFILTER_DEBUG is not set 307 296 ··· 317 304 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 318 305 CONFIG_NETFILTER_XT_TARGET_MARK=m 319 306 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 307 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 320 308 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 321 309 CONFIG_NETFILTER_XT_MATCH_DCCP=m 322 310 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 328 314 CONFIG_NETFILTER_XT_MATCH_POLICY=m 329 315 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 330 316 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 317 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 331 318 CONFIG_NETFILTER_XT_MATCH_REALM=m 332 319 CONFIG_NETFILTER_XT_MATCH_SCTP=m 320 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 333 321 CONFIG_NETFILTER_XT_MATCH_STRING=m 334 322 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 335 323 ··· 401 385 CONFIG_STANDALONE=y 402 386 CONFIG_PREVENT_FIRMWARE_BUILD=y 403 387 CONFIG_FW_LOADER=m 388 + # CONFIG_SYS_HYPERVISOR is not set 404 389 405 390 # 406 391 # Connector - unified userspace <-> kernelspace linker ··· 561 544 CONFIG_QSEMI_PHY=m 562 545 CONFIG_LXT_PHY=m 563 546 CONFIG_CICADA_PHY=m 547 + CONFIG_VITESSE_PHY=m 548 + CONFIG_SMSC_PHY=m 564 549 565 550 # 566 551 # Ethernet (10 or 100Mbit) ··· 666 647 CONFIG_VT=y 667 648 CONFIG_VT_CONSOLE=y 668 649 CONFIG_HW_CONSOLE=y 650 + CONFIG_VT_HW_CONSOLE_BINDING=y 669 651 # CONFIG_SERIAL_NONSTANDARD is not set 670 652 # CONFIG_AU1X00_GPIO is not set 671 653 # CONFIG_TS_AU1X00_ADS7846 is not set ··· 700 680 # Watchdog Cards 701 681 # 702 682 # CONFIG_WATCHDOG is not set 683 + # CONFIG_HW_RANDOM is not set 703 684 # CONFIG_RTC is not set 704 685 # CONFIG_GEN_RTC is not set 705 686 # CONFIG_DTLK is not set ··· 754 733 # Multimedia devices 755 734 # 756 735 # CONFIG_VIDEO_DEV is not set 736 + CONFIG_VIDEO_V4L2=y 757 737 758 738 # 759 739 # Digital Video Broadcasting Devices ··· 764 742 # 765 743 # Graphics support 766 744 # 745 + # CONFIG_FIRMWARE_EDID is not set 767 746 # CONFIG_FB is not set 768 747 769 748 # ··· 827 804 # CONFIG_RTC_CLASS is not set 828 805 829 806 # 807 + # DMA Engine support 808 + # 809 + # CONFIG_DMA_ENGINE is not set 810 + 811 + # 812 + # DMA Clients 813 + # 814 + 815 + # 816 + # DMA Devices 817 + # 818 + 819 + # 830 820 # File systems 831 821 # 832 822 CONFIG_EXT2_FS=y ··· 867 831 # CONFIG_MINIX_FS is not set 868 832 # CONFIG_ROMFS_FS is not set 869 833 CONFIG_INOTIFY=y 834 + CONFIG_INOTIFY_USER=y 870 835 # CONFIG_QUOTA is not set 871 836 CONFIG_DNOTIFY=y 872 837 CONFIG_AUTOFS_FS=m ··· 937 900 CONFIG_SMB_FS=m 938 901 # CONFIG_SMB_NLS_DEFAULT is not set 939 902 # CONFIG_CIFS is not set 903 + # CONFIG_CIFS_DEBUG2 is not set 940 904 # CONFIG_NCP_FS is not set 941 905 # CONFIG_CODA_FS is not set 942 906 # CONFIG_AFS_FS is not set ··· 1003 965 # 1004 966 # CONFIG_PRINTK_TIME is not set 1005 967 # CONFIG_MAGIC_SYSRQ is not set 968 + # CONFIG_UNUSED_SYMBOLS is not set 1006 969 # CONFIG_DEBUG_KERNEL is not set 1007 970 CONFIG_LOG_BUF_SHIFT=14 1008 971 # CONFIG_DEBUG_FS is not set ··· 1063 1024 CONFIG_TEXTSEARCH_KMP=m 1064 1025 CONFIG_TEXTSEARCH_BM=m 1065 1026 CONFIG_TEXTSEARCH_FSM=m 1027 + CONFIG_PLIST=y
+45 -5
arch/mips/configs/pb1500_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:13 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:17 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 68 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 66 CONFIG_GENERIC_HWEIGHT=y 70 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 71 69 CONFIG_DMA_NONCOHERENT=y 72 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 71 # CONFIG_CPU_BIG_ENDIAN is not set ··· 117 113 # CONFIG_PAGE_SIZE_16KB is not set 118 114 # CONFIG_PAGE_SIZE_64KB is not set 119 115 CONFIG_CPU_HAS_PREFETCH=y 120 - # CONFIG_MIPS_MT is not set 116 + CONFIG_MIPS_MT_DISABLED=y 117 + # CONFIG_MIPS_MT_SMTC is not set 118 + # CONFIG_MIPS_MT_SMP is not set 119 + # CONFIG_MIPS_VPE_LOADER is not set 121 120 CONFIG_64BIT_PHYS_ADDR=y 122 121 CONFIG_CPU_HAS_LLSC=y 123 122 CONFIG_CPU_HAS_SYNC=y ··· 136 129 CONFIG_FLAT_NODE_MEM_MAP=y 137 130 # CONFIG_SPARSEMEM_STATIC is not set 138 131 CONFIG_SPLIT_PTLOCK_CPUS=4 132 + # CONFIG_RESOURCES_64BIT is not set 139 133 # CONFIG_HZ_48 is not set 140 134 # CONFIG_HZ_100 is not set 141 135 # CONFIG_HZ_128 is not set ··· 149 141 CONFIG_PREEMPT_NONE=y 150 142 # CONFIG_PREEMPT_VOLUNTARY is not set 151 143 # CONFIG_PREEMPT is not set 144 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 152 145 153 146 # 154 147 # Code maturity level options ··· 181 172 CONFIG_BUG=y 182 173 CONFIG_ELF_CORE=y 183 174 CONFIG_BASE_FULL=y 175 + CONFIG_RT_MUTEXES=y 184 176 CONFIG_FUTEX=y 185 177 CONFIG_EPOLL=y 186 178 CONFIG_SHMEM=y 187 179 CONFIG_SLAB=y 180 + CONFIG_VM_EVENT_COUNTERS=y 188 181 # CONFIG_TINY_SHMEM is not set 189 182 CONFIG_BASE_SMALL=0 190 183 # CONFIG_SLOB is not set 191 - CONFIG_OBSOLETE_INTERMODULE=y 192 184 193 185 # 194 186 # Loadable module support ··· 293 283 # CONFIG_INET_IPCOMP is not set 294 284 # CONFIG_INET_XFRM_TUNNEL is not set 295 285 # CONFIG_INET_TUNNEL is not set 286 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 287 + CONFIG_INET_XFRM_MODE_TUNNEL=m 296 288 CONFIG_INET_DIAG=y 297 289 CONFIG_INET_TCP_DIAG=y 298 290 # CONFIG_TCP_CONG_ADVANCED is not set ··· 307 295 # CONFIG_IPV6 is not set 308 296 # CONFIG_INET6_XFRM_TUNNEL is not set 309 297 # CONFIG_INET6_TUNNEL is not set 298 + CONFIG_NETWORK_SECMARK=y 310 299 CONFIG_NETFILTER=y 311 300 # CONFIG_NETFILTER_DEBUG is not set 312 301 ··· 322 309 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 323 310 CONFIG_NETFILTER_XT_TARGET_MARK=m 324 311 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 312 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 325 313 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 326 314 CONFIG_NETFILTER_XT_MATCH_DCCP=m 327 315 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 333 319 CONFIG_NETFILTER_XT_MATCH_POLICY=m 334 320 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 335 321 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 322 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 336 323 CONFIG_NETFILTER_XT_MATCH_REALM=m 337 324 CONFIG_NETFILTER_XT_MATCH_SCTP=m 325 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 338 326 CONFIG_NETFILTER_XT_MATCH_STRING=m 339 327 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 340 328 ··· 406 390 CONFIG_STANDALONE=y 407 391 CONFIG_PREVENT_FIRMWARE_BUILD=y 408 392 CONFIG_FW_LOADER=m 393 + # CONFIG_SYS_HYPERVISOR is not set 409 394 410 395 # 411 396 # Connector - unified userspace <-> kernelspace linker ··· 621 604 # 622 605 # PHY device support 623 606 # 624 - CONFIG_PHYLIB=m 607 + CONFIG_PHYLIB=y 625 608 626 609 # 627 610 # MII PHY device drivers ··· 631 614 CONFIG_QSEMI_PHY=m 632 615 CONFIG_LXT_PHY=m 633 616 CONFIG_CICADA_PHY=m 617 + CONFIG_VITESSE_PHY=m 618 + CONFIG_SMSC_PHY=m 634 619 635 620 # 636 621 # Ethernet (10 or 100Mbit) ··· 677 658 # CONFIG_CHELSIO_T1 is not set 678 659 # CONFIG_IXGB is not set 679 660 # CONFIG_S2IO is not set 661 + # CONFIG_MYRI10GE is not set 680 662 681 663 # 682 664 # Token Ring devices ··· 809 789 # Watchdog Cards 810 790 # 811 791 # CONFIG_WATCHDOG is not set 792 + # CONFIG_HW_RANDOM is not set 812 793 # CONFIG_RTC is not set 813 794 # CONFIG_GEN_RTC is not set 814 795 # CONFIG_DTLK is not set ··· 865 844 # Multimedia devices 866 845 # 867 846 # CONFIG_VIDEO_DEV is not set 847 + CONFIG_VIDEO_V4L2=y 868 848 869 849 # 870 850 # Digital Video Broadcasting Devices ··· 875 853 # 876 854 # Graphics support 877 855 # 856 + # CONFIG_FIRMWARE_EDID is not set 878 857 # CONFIG_FB is not set 879 858 880 859 # ··· 933 910 # CONFIG_RTC_CLASS is not set 934 911 935 912 # 913 + # DMA Engine support 914 + # 915 + # CONFIG_DMA_ENGINE is not set 916 + 917 + # 918 + # DMA Clients 919 + # 920 + 921 + # 922 + # DMA Devices 923 + # 924 + 925 + # 936 926 # File systems 937 927 # 938 928 CONFIG_EXT2_FS=y ··· 973 937 # CONFIG_MINIX_FS is not set 974 938 # CONFIG_ROMFS_FS is not set 975 939 CONFIG_INOTIFY=y 940 + CONFIG_INOTIFY_USER=y 976 941 # CONFIG_QUOTA is not set 977 942 CONFIG_DNOTIFY=y 978 943 CONFIG_AUTOFS_FS=m ··· 1043 1006 CONFIG_SMB_FS=m 1044 1007 # CONFIG_SMB_NLS_DEFAULT is not set 1045 1008 # CONFIG_CIFS is not set 1009 + # CONFIG_CIFS_DEBUG2 is not set 1046 1010 # CONFIG_NCP_FS is not set 1047 1011 # CONFIG_CODA_FS is not set 1048 1012 # CONFIG_AFS_FS is not set ··· 1109 1071 # 1110 1072 # CONFIG_PRINTK_TIME is not set 1111 1073 # CONFIG_MAGIC_SYSRQ is not set 1074 + # CONFIG_UNUSED_SYMBOLS is not set 1112 1075 # CONFIG_DEBUG_KERNEL is not set 1113 1076 CONFIG_LOG_BUF_SHIFT=14 1114 1077 # CONFIG_DEBUG_FS is not set ··· 1169 1130 CONFIG_TEXTSEARCH_KMP=m 1170 1131 CONFIG_TEXTSEARCH_BM=m 1171 1132 CONFIG_TEXTSEARCH_FSM=m 1133 + CONFIG_PLIST=y
+45 -5
arch/mips/configs/pb1550_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:13 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:17 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 68 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 66 CONFIG_GENERIC_HWEIGHT=y 70 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 71 69 CONFIG_DMA_NONCOHERENT=y 72 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 71 CONFIG_MIPS_DISABLE_OBSOLETE_IDE=y ··· 117 113 # CONFIG_PAGE_SIZE_16KB is not set 118 114 # CONFIG_PAGE_SIZE_64KB is not set 119 115 CONFIG_CPU_HAS_PREFETCH=y 120 - # CONFIG_MIPS_MT is not set 116 + CONFIG_MIPS_MT_DISABLED=y 117 + # CONFIG_MIPS_MT_SMTC is not set 118 + # CONFIG_MIPS_MT_SMP is not set 119 + # CONFIG_MIPS_VPE_LOADER is not set 121 120 CONFIG_64BIT_PHYS_ADDR=y 122 121 CONFIG_CPU_HAS_LLSC=y 123 122 CONFIG_CPU_HAS_SYNC=y ··· 136 129 CONFIG_FLAT_NODE_MEM_MAP=y 137 130 # CONFIG_SPARSEMEM_STATIC is not set 138 131 CONFIG_SPLIT_PTLOCK_CPUS=4 132 + # CONFIG_RESOURCES_64BIT is not set 139 133 # CONFIG_HZ_48 is not set 140 134 # CONFIG_HZ_100 is not set 141 135 # CONFIG_HZ_128 is not set ··· 149 141 CONFIG_PREEMPT_NONE=y 150 142 # CONFIG_PREEMPT_VOLUNTARY is not set 151 143 # CONFIG_PREEMPT is not set 144 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 152 145 153 146 # 154 147 # Code maturity level options ··· 181 172 CONFIG_BUG=y 182 173 CONFIG_ELF_CORE=y 183 174 CONFIG_BASE_FULL=y 175 + CONFIG_RT_MUTEXES=y 184 176 CONFIG_FUTEX=y 185 177 CONFIG_EPOLL=y 186 178 CONFIG_SHMEM=y 187 179 CONFIG_SLAB=y 180 + CONFIG_VM_EVENT_COUNTERS=y 188 181 # CONFIG_TINY_SHMEM is not set 189 182 CONFIG_BASE_SMALL=0 190 183 # CONFIG_SLOB is not set 191 - CONFIG_OBSOLETE_INTERMODULE=y 192 184 193 185 # 194 186 # Loadable module support ··· 293 283 # CONFIG_INET_IPCOMP is not set 294 284 # CONFIG_INET_XFRM_TUNNEL is not set 295 285 # CONFIG_INET_TUNNEL is not set 286 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 287 + CONFIG_INET_XFRM_MODE_TUNNEL=m 296 288 CONFIG_INET_DIAG=y 297 289 CONFIG_INET_TCP_DIAG=y 298 290 # CONFIG_TCP_CONG_ADVANCED is not set ··· 307 295 # CONFIG_IPV6 is not set 308 296 # CONFIG_INET6_XFRM_TUNNEL is not set 309 297 # CONFIG_INET6_TUNNEL is not set 298 + CONFIG_NETWORK_SECMARK=y 310 299 CONFIG_NETFILTER=y 311 300 # CONFIG_NETFILTER_DEBUG is not set 312 301 ··· 322 309 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 323 310 CONFIG_NETFILTER_XT_TARGET_MARK=m 324 311 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 312 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 325 313 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 326 314 CONFIG_NETFILTER_XT_MATCH_DCCP=m 327 315 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 333 319 CONFIG_NETFILTER_XT_MATCH_POLICY=m 334 320 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 335 321 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 322 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 336 323 CONFIG_NETFILTER_XT_MATCH_REALM=m 337 324 CONFIG_NETFILTER_XT_MATCH_SCTP=m 325 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 338 326 CONFIG_NETFILTER_XT_MATCH_STRING=m 339 327 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 340 328 ··· 406 390 CONFIG_STANDALONE=y 407 391 CONFIG_PREVENT_FIRMWARE_BUILD=y 408 392 CONFIG_FW_LOADER=m 393 + # CONFIG_SYS_HYPERVISOR is not set 409 394 410 395 # 411 396 # Connector - unified userspace <-> kernelspace linker ··· 621 604 # 622 605 # PHY device support 623 606 # 624 - CONFIG_PHYLIB=m 607 + CONFIG_PHYLIB=y 625 608 626 609 # 627 610 # MII PHY device drivers ··· 631 614 CONFIG_QSEMI_PHY=m 632 615 CONFIG_LXT_PHY=m 633 616 CONFIG_CICADA_PHY=m 617 + CONFIG_VITESSE_PHY=m 618 + CONFIG_SMSC_PHY=m 634 619 635 620 # 636 621 # Ethernet (10 or 100Mbit) ··· 677 658 # CONFIG_CHELSIO_T1 is not set 678 659 # CONFIG_IXGB is not set 679 660 # CONFIG_S2IO is not set 661 + # CONFIG_MYRI10GE is not set 680 662 681 663 # 682 664 # Token Ring devices ··· 801 781 # Watchdog Cards 802 782 # 803 783 # CONFIG_WATCHDOG is not set 784 + # CONFIG_HW_RANDOM is not set 804 785 # CONFIG_RTC is not set 805 786 # CONFIG_GEN_RTC is not set 806 787 # CONFIG_DTLK is not set ··· 857 836 # Multimedia devices 858 837 # 859 838 # CONFIG_VIDEO_DEV is not set 839 + CONFIG_VIDEO_V4L2=y 860 840 861 841 # 862 842 # Digital Video Broadcasting Devices ··· 867 845 # 868 846 # Graphics support 869 847 # 848 + # CONFIG_FIRMWARE_EDID is not set 870 849 # CONFIG_FB is not set 871 850 872 851 # ··· 925 902 # CONFIG_RTC_CLASS is not set 926 903 927 904 # 905 + # DMA Engine support 906 + # 907 + # CONFIG_DMA_ENGINE is not set 908 + 909 + # 910 + # DMA Clients 911 + # 912 + 913 + # 914 + # DMA Devices 915 + # 916 + 917 + # 928 918 # File systems 929 919 # 930 920 CONFIG_EXT2_FS=y ··· 965 929 # CONFIG_MINIX_FS is not set 966 930 # CONFIG_ROMFS_FS is not set 967 931 CONFIG_INOTIFY=y 932 + CONFIG_INOTIFY_USER=y 968 933 # CONFIG_QUOTA is not set 969 934 CONFIG_DNOTIFY=y 970 935 CONFIG_AUTOFS_FS=m ··· 1035 998 CONFIG_SMB_FS=m 1036 999 # CONFIG_SMB_NLS_DEFAULT is not set 1037 1000 # CONFIG_CIFS is not set 1001 + # CONFIG_CIFS_DEBUG2 is not set 1038 1002 # CONFIG_NCP_FS is not set 1039 1003 # CONFIG_CODA_FS is not set 1040 1004 # CONFIG_AFS_FS is not set ··· 1101 1063 # 1102 1064 # CONFIG_PRINTK_TIME is not set 1103 1065 # CONFIG_MAGIC_SYSRQ is not set 1066 + # CONFIG_UNUSED_SYMBOLS is not set 1104 1067 # CONFIG_DEBUG_KERNEL is not set 1105 1068 CONFIG_LOG_BUF_SHIFT=14 1106 1069 # CONFIG_DEBUG_FS is not set ··· 1161 1122 CONFIG_TEXTSEARCH_KMP=m 1162 1123 CONFIG_TEXTSEARCH_BM=m 1163 1124 CONFIG_TEXTSEARCH_FSM=m 1125 + CONFIG_PLIST=y
+79 -270
arch/mips/configs/pnx8550-jbs_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:14 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:18 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 42 40 # CONFIG_MOMENCO_OCELOT_G is not set 43 41 # CONFIG_MIPS_XXS1500 is not set 44 42 # CONFIG_PNX8550_V2PCI is not set 45 - CONFIG_PNX8550_JBS=y 43 + # CONFIG_PNX8550_JBS is not set 46 44 # CONFIG_DDB5477 is not set 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 50 - # CONFIG_SGI_IP22 is not set 48 + # CONFIG_MARKEINS is not set 49 + CONFIG_SGI_IP22=y 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set 53 52 # CONFIG_SIBYTE_BIGSUR is not set ··· 68 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 66 CONFIG_GENERIC_HWEIGHT=y 70 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 + CONFIG_ARC=y 71 70 CONFIG_DMA_NONCOHERENT=y 72 71 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 - # CONFIG_CPU_BIG_ENDIAN is not set 74 - CONFIG_CPU_LITTLE_ENDIAN=y 75 - CONFIG_SYS_SUPPORTS_LITTLE_ENDIAN=y 76 - CONFIG_PNX8550=y 77 - CONFIG_SOC_PNX8550=y 72 + CONFIG_CPU_BIG_ENDIAN=y 73 + # CONFIG_CPU_LITTLE_ENDIAN is not set 74 + CONFIG_SYS_SUPPORTS_BIG_ENDIAN=y 75 + CONFIG_IRQ_CPU=y 76 + CONFIG_SWAP_IO_SPACE=y 77 + CONFIG_ARC32=y 78 + CONFIG_BOOT_ELF32=y 78 79 CONFIG_MIPS_L1_CACHE_SHIFT=5 80 + # CONFIG_ARC_CONSOLE is not set 81 + CONFIG_ARC_PROMLIB=y 79 82 80 83 # 81 84 # CPU selection 82 85 # 83 - CONFIG_CPU_MIPS32_R1=y 86 + # CONFIG_CPU_MIPS32_R1 is not set 84 87 # CONFIG_CPU_MIPS32_R2 is not set 85 88 # CONFIG_CPU_MIPS64_R1 is not set 86 89 # CONFIG_CPU_MIPS64_R2 is not set ··· 94 85 # CONFIG_CPU_TX39XX is not set 95 86 # CONFIG_CPU_VR41XX is not set 96 87 # CONFIG_CPU_R4300 is not set 97 - # CONFIG_CPU_R4X00 is not set 88 + CONFIG_CPU_R4X00=y 98 89 # CONFIG_CPU_TX49XX is not set 99 90 # CONFIG_CPU_R5000 is not set 100 91 # CONFIG_CPU_R5432 is not set ··· 105 96 # CONFIG_CPU_RM7000 is not set 106 97 # CONFIG_CPU_RM9000 is not set 107 98 # CONFIG_CPU_SB1 is not set 108 - CONFIG_SYS_HAS_CPU_MIPS32_R1=y 109 - CONFIG_CPU_MIPS32=y 110 - CONFIG_CPU_MIPSR1=y 99 + CONFIG_SYS_HAS_CPU_R4X00=y 100 + CONFIG_SYS_HAS_CPU_R5000=y 111 101 CONFIG_SYS_SUPPORTS_32BIT_KERNEL=y 102 + CONFIG_SYS_SUPPORTS_64BIT_KERNEL=y 112 103 CONFIG_CPU_SUPPORTS_32BIT_KERNEL=y 104 + CONFIG_CPU_SUPPORTS_64BIT_KERNEL=y 113 105 114 106 # 115 107 # Kernel type ··· 121 111 # CONFIG_PAGE_SIZE_8KB is not set 122 112 # CONFIG_PAGE_SIZE_16KB is not set 123 113 # CONFIG_PAGE_SIZE_64KB is not set 124 - CONFIG_CPU_HAS_PREFETCH=y 125 - # CONFIG_MIPS_MT is not set 114 + CONFIG_BOARD_SCACHE=y 115 + CONFIG_IP22_CPU_SCACHE=y 116 + CONFIG_MIPS_MT_DISABLED=y 117 + # CONFIG_MIPS_MT_SMTC is not set 118 + # CONFIG_MIPS_MT_SMP is not set 119 + # CONFIG_MIPS_VPE_LOADER is not set 126 120 # CONFIG_64BIT_PHYS_ADDR is not set 127 121 CONFIG_CPU_HAS_LLSC=y 128 122 CONFIG_CPU_HAS_SYNC=y 129 123 CONFIG_GENERIC_HARDIRQS=y 130 124 CONFIG_GENERIC_IRQ_PROBE=y 131 - CONFIG_CPU_SUPPORTS_HIGHMEM=y 132 125 CONFIG_ARCH_FLATMEM_ENABLE=y 133 126 CONFIG_SELECT_MEMORY_MODEL=y 134 127 CONFIG_FLATMEM_MANUAL=y ··· 141 128 CONFIG_FLAT_NODE_MEM_MAP=y 142 129 # CONFIG_SPARSEMEM_STATIC is not set 143 130 CONFIG_SPLIT_PTLOCK_CPUS=4 131 + # CONFIG_RESOURCES_64BIT is not set 144 132 # CONFIG_HZ_48 is not set 145 133 # CONFIG_HZ_100 is not set 146 134 # CONFIG_HZ_128 is not set ··· 154 140 CONFIG_PREEMPT_NONE=y 155 141 # CONFIG_PREEMPT_VOLUNTARY is not set 156 142 # CONFIG_PREEMPT is not set 143 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 157 144 158 145 # 159 146 # Code maturity level options ··· 188 173 CONFIG_BUG=y 189 174 CONFIG_ELF_CORE=y 190 175 CONFIG_BASE_FULL=y 176 + CONFIG_RT_MUTEXES=y 191 177 CONFIG_FUTEX=y 192 178 CONFIG_EPOLL=y 193 179 CONFIG_SHMEM=y 194 180 CONFIG_SLAB=y 181 + CONFIG_VM_EVENT_COUNTERS=y 195 182 # CONFIG_TINY_SHMEM is not set 196 183 CONFIG_BASE_SMALL=0 197 184 # CONFIG_SLOB is not set ··· 230 213 # 231 214 # Bus options (PCI, PCMCIA, EISA, ISA, TC) 232 215 # 233 - CONFIG_HW_HAS_PCI=y 234 - CONFIG_PCI=y 235 - # CONFIG_PCI_DEBUG is not set 216 + CONFIG_HW_HAS_EISA=y 217 + # CONFIG_EISA is not set 236 218 CONFIG_MMU=y 237 219 238 220 # ··· 242 226 # 243 227 # PCI Hotplug Support 244 228 # 245 - # CONFIG_HOTPLUG_PCI is not set 246 229 247 230 # 248 231 # Executable file formats ··· 262 247 CONFIG_PACKET=y 263 248 # CONFIG_PACKET_MMAP is not set 264 249 CONFIG_UNIX=y 250 + CONFIG_XFRM=y 251 + # CONFIG_XFRM_USER is not set 265 252 # CONFIG_NET_KEY is not set 266 253 CONFIG_INET=y 267 254 # CONFIG_IP_MULTICAST is not set ··· 282 265 # CONFIG_INET_IPCOMP is not set 283 266 # CONFIG_INET_XFRM_TUNNEL is not set 284 267 # CONFIG_INET_TUNNEL is not set 268 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 269 + CONFIG_INET_XFRM_MODE_TUNNEL=m 285 270 CONFIG_INET_DIAG=y 286 271 CONFIG_INET_TCP_DIAG=y 287 272 # CONFIG_TCP_CONG_ADVANCED is not set ··· 291 272 # CONFIG_IPV6 is not set 292 273 # CONFIG_INET6_XFRM_TUNNEL is not set 293 274 # CONFIG_INET6_TUNNEL is not set 275 + CONFIG_NETWORK_SECMARK=y 294 276 # CONFIG_NETFILTER is not set 295 277 296 278 # ··· 346 326 CONFIG_PREVENT_FIRMWARE_BUILD=y 347 327 CONFIG_FW_LOADER=y 348 328 # CONFIG_DEBUG_DRIVER is not set 329 + # CONFIG_SYS_HYPERVISOR is not set 349 330 350 331 # 351 332 # Connector - unified userspace <-> kernelspace linker ··· 370 349 # 371 350 # Block devices 372 351 # 373 - # CONFIG_BLK_CPQ_DA is not set 374 - # CONFIG_BLK_CPQ_CISS_DA is not set 375 - # CONFIG_BLK_DEV_DAC960 is not set 376 - # CONFIG_BLK_DEV_UMEM is not set 377 352 # CONFIG_BLK_DEV_COW_COMMON is not set 378 353 CONFIG_BLK_DEV_LOOP=y 379 354 # CONFIG_BLK_DEV_CRYPTOLOOP is not set 380 355 # CONFIG_BLK_DEV_NBD is not set 381 - # CONFIG_BLK_DEV_SX8 is not set 382 - # CONFIG_BLK_DEV_UB is not set 383 356 CONFIG_BLK_DEV_RAM=y 384 357 CONFIG_BLK_DEV_RAM_COUNT=16 385 358 CONFIG_BLK_DEV_RAM_SIZE=8192 ··· 403 388 # IDE chipset support/bugfixes 404 389 # 405 390 CONFIG_IDE_GENERIC=y 406 - CONFIG_BLK_DEV_IDEPCI=y 407 - CONFIG_IDEPCI_SHARE_IRQ=y 408 - CONFIG_BLK_DEV_OFFBOARD=y 409 - CONFIG_BLK_DEV_GENERIC=y 410 - # CONFIG_BLK_DEV_OPTI621 is not set 411 - CONFIG_BLK_DEV_IDEDMA_PCI=y 412 - # CONFIG_BLK_DEV_IDEDMA_FORCED is not set 413 - # CONFIG_IDEDMA_PCI_AUTO is not set 414 - # CONFIG_BLK_DEV_AEC62XX is not set 415 - # CONFIG_BLK_DEV_ALI15X3 is not set 416 - # CONFIG_BLK_DEV_AMD74XX is not set 417 - # CONFIG_BLK_DEV_CMD64X is not set 418 - # CONFIG_BLK_DEV_TRIFLEX is not set 419 - # CONFIG_BLK_DEV_CY82C693 is not set 420 - # CONFIG_BLK_DEV_CS5520 is not set 421 - # CONFIG_BLK_DEV_CS5530 is not set 422 - # CONFIG_BLK_DEV_HPT34X is not set 423 - CONFIG_BLK_DEV_HPT366=y 424 - # CONFIG_BLK_DEV_SC1200 is not set 425 - # CONFIG_BLK_DEV_PIIX is not set 426 - # CONFIG_BLK_DEV_IT821X is not set 427 - # CONFIG_BLK_DEV_NS87415 is not set 428 - # CONFIG_BLK_DEV_PDC202XX_OLD is not set 429 - # CONFIG_BLK_DEV_PDC202XX_NEW is not set 430 - # CONFIG_BLK_DEV_SVWKS is not set 431 - # CONFIG_BLK_DEV_SIIMAGE is not set 432 - # CONFIG_BLK_DEV_SLC90E66 is not set 433 - # CONFIG_BLK_DEV_TRM290 is not set 434 - # CONFIG_BLK_DEV_VIA82CXXX is not set 435 391 # CONFIG_IDE_ARM is not set 436 - CONFIG_BLK_DEV_IDEDMA=y 437 - # CONFIG_IDEDMA_IVB is not set 392 + # CONFIG_BLK_DEV_IDEDMA is not set 438 393 # CONFIG_IDEDMA_AUTO is not set 439 394 # CONFIG_BLK_DEV_HD is not set 440 395 ··· 444 459 # SCSI low-level drivers 445 460 # 446 461 CONFIG_ISCSI_TCP=m 447 - # CONFIG_BLK_DEV_3W_XXXX_RAID is not set 448 - # CONFIG_SCSI_3W_9XXX is not set 449 - # CONFIG_SCSI_ACARD is not set 450 - # CONFIG_SCSI_AACRAID is not set 451 - # CONFIG_SCSI_AIC7XXX is not set 452 - # CONFIG_SCSI_AIC7XXX_OLD is not set 453 - # CONFIG_SCSI_AIC79XX is not set 454 - # CONFIG_SCSI_DPT_I2O is not set 455 - # CONFIG_MEGARAID_NEWGEN is not set 456 - # CONFIG_MEGARAID_LEGACY is not set 457 - # CONFIG_MEGARAID_SAS is not set 462 + # CONFIG_SGIWD93_SCSI is not set 458 463 # CONFIG_SCSI_SATA is not set 459 - # CONFIG_SCSI_DMX3191D is not set 460 - # CONFIG_SCSI_FUTURE_DOMAIN is not set 461 - # CONFIG_SCSI_IPS is not set 462 - # CONFIG_SCSI_INITIO is not set 463 - # CONFIG_SCSI_INIA100 is not set 464 - # CONFIG_SCSI_SYM53C8XX_2 is not set 465 - # CONFIG_SCSI_IPR is not set 466 - # CONFIG_SCSI_QLOGIC_1280 is not set 467 - # CONFIG_SCSI_QLA_FC is not set 468 - # CONFIG_SCSI_LPFC is not set 469 - # CONFIG_SCSI_DC395x is not set 470 - # CONFIG_SCSI_DC390T is not set 471 - # CONFIG_SCSI_NSP32 is not set 472 464 # CONFIG_SCSI_DEBUG is not set 473 465 474 466 # ··· 457 495 # Fusion MPT device support 458 496 # 459 497 # CONFIG_FUSION is not set 460 - # CONFIG_FUSION_SPI is not set 461 - # CONFIG_FUSION_FC is not set 462 - # CONFIG_FUSION_SAS is not set 463 498 464 499 # 465 500 # IEEE 1394 (FireWire) support 466 501 # 467 - # CONFIG_IEEE1394 is not set 468 502 469 503 # 470 504 # I2O device support 471 505 # 472 - # CONFIG_I2O is not set 473 506 474 507 # 475 508 # Network device support ··· 476 519 # CONFIG_TUN is not set 477 520 478 521 # 479 - # ARCnet devices 480 - # 481 - # CONFIG_ARCNET is not set 482 - 483 - # 484 522 # PHY device support 485 523 # 486 524 # CONFIG_PHYLIB is not set ··· 485 533 # 486 534 CONFIG_NET_ETHERNET=y 487 535 CONFIG_MII=y 488 - # CONFIG_HAPPYMEAL is not set 489 - # CONFIG_SUNGEM is not set 490 - # CONFIG_CASSINI is not set 491 - # CONFIG_NET_VENDOR_3COM is not set 492 536 # CONFIG_DM9000 is not set 493 - 494 - # 495 - # Tulip family network device support 496 - # 497 - # CONFIG_NET_TULIP is not set 498 - # CONFIG_HP100 is not set 499 - CONFIG_NET_PCI=y 500 - # CONFIG_PCNET32 is not set 501 - # CONFIG_AMD8111_ETH is not set 502 - # CONFIG_ADAPTEC_STARFIRE is not set 503 - # CONFIG_B44 is not set 504 - # CONFIG_FORCEDETH is not set 505 - # CONFIG_DGRS is not set 506 - # CONFIG_EEPRO100 is not set 507 - # CONFIG_E100 is not set 508 - # CONFIG_FEALNX is not set 509 - # CONFIG_NATSEMI is not set 510 - # CONFIG_NE2K_PCI is not set 511 - # CONFIG_8139CP is not set 512 - CONFIG_8139TOO=y 513 - # CONFIG_8139TOO_PIO is not set 514 - CONFIG_8139TOO_TUNE_TWISTER=y 515 - CONFIG_8139TOO_8129=y 516 - # CONFIG_8139_OLD_RX_RESET is not set 517 - # CONFIG_SIS900 is not set 518 - # CONFIG_EPIC100 is not set 519 - # CONFIG_SUNDANCE is not set 520 - # CONFIG_TLAN is not set 521 - # CONFIG_VIA_RHINE is not set 522 - # CONFIG_LAN_SAA9730 is not set 537 + # CONFIG_SGISEEQ is not set 523 538 524 539 # 525 540 # Ethernet (1000 Mbit) 526 541 # 527 - # CONFIG_ACENIC is not set 528 - # CONFIG_DL2K is not set 529 - # CONFIG_E1000 is not set 530 - # CONFIG_NS83820 is not set 531 - # CONFIG_HAMACHI is not set 532 - # CONFIG_YELLOWFIN is not set 533 - # CONFIG_R8169 is not set 534 - # CONFIG_SIS190 is not set 535 - # CONFIG_SKGE is not set 536 - # CONFIG_SKY2 is not set 537 - # CONFIG_SK98LIN is not set 538 - # CONFIG_VIA_VELOCITY is not set 539 - # CONFIG_TIGON3 is not set 540 - # CONFIG_BNX2 is not set 541 542 542 543 # 543 544 # Ethernet (10000 Mbit) 544 545 # 545 - # CONFIG_CHELSIO_T1 is not set 546 - # CONFIG_IXGB is not set 547 - # CONFIG_S2IO is not set 548 546 549 547 # 550 548 # Token Ring devices 551 549 # 552 - # CONFIG_TR is not set 553 550 554 551 # 555 552 # Wireless LAN (non-hamradio) ··· 509 608 # Wan interfaces 510 609 # 511 610 # CONFIG_WAN is not set 512 - # CONFIG_FDDI is not set 513 - # CONFIG_HIPPI is not set 514 611 # CONFIG_PPP is not set 515 612 # CONFIG_SLIP is not set 516 - # CONFIG_NET_FC is not set 517 613 # CONFIG_SHAPER is not set 518 614 # CONFIG_NETCONSOLE is not set 519 615 # CONFIG_NETPOLL is not set ··· 555 657 CONFIG_SERIO=y 556 658 # CONFIG_SERIO_I8042 is not set 557 659 # CONFIG_SERIO_SERPORT is not set 558 - # CONFIG_SERIO_PCIPS2 is not set 559 660 CONFIG_SERIO_LIBPS2=y 560 661 # CONFIG_SERIO_RAW is not set 561 662 # CONFIG_GAMEPORT is not set ··· 565 668 CONFIG_VT=y 566 669 CONFIG_VT_CONSOLE=y 567 670 CONFIG_HW_CONSOLE=y 671 + CONFIG_VT_HW_CONSOLE_BINDING=y 568 672 # CONFIG_SERIAL_NONSTANDARD is not set 569 673 570 674 # ··· 576 678 # 577 679 # Non-8250 serial port support 578 680 # 579 - # CONFIG_SERIAL_IP3106 is not set 580 - # CONFIG_SERIAL_JSM is not set 681 + # CONFIG_SERIAL_IP22_ZILOG is not set 581 682 CONFIG_UNIX98_PTYS=y 582 683 CONFIG_LEGACY_PTYS=y 583 684 CONFIG_LEGACY_PTY_COUNT=256 ··· 590 693 # Watchdog Cards 591 694 # 592 695 # CONFIG_WATCHDOG is not set 696 + # CONFIG_HW_RANDOM is not set 593 697 # CONFIG_RTC is not set 698 + # CONFIG_SGI_DS1286 is not set 594 699 # CONFIG_GEN_RTC is not set 595 700 # CONFIG_DTLK is not set 596 701 # CONFIG_R3964 is not set 597 - # CONFIG_APPLICOM is not set 598 702 599 703 # 600 704 # Ftape, the floppy tape device driver 601 705 # 602 - # CONFIG_DRM is not set 603 706 # CONFIG_RAW_DRIVER is not set 604 707 605 708 # ··· 622 725 # 623 726 # Dallas's 1-wire bus 624 727 # 625 - # CONFIG_W1 is not set 626 728 627 729 # 628 730 # Hardware Monitoring support 629 731 # 630 732 CONFIG_HWMON=y 631 733 # CONFIG_HWMON_VID is not set 734 + # CONFIG_SENSORS_ABITUGURU is not set 632 735 # CONFIG_SENSORS_F71805F is not set 633 736 # CONFIG_HWMON_DEBUG_CHIP is not set 634 737 ··· 640 743 # Multimedia devices 641 744 # 642 745 # CONFIG_VIDEO_DEV is not set 746 + CONFIG_VIDEO_V4L2=y 643 747 644 748 # 645 749 # Digital Video Broadcasting Devices 646 750 # 647 751 # CONFIG_DVB is not set 648 - # CONFIG_USB_DABUSB is not set 649 752 650 753 # 651 754 # Graphics support 652 755 # 756 + # CONFIG_FIRMWARE_EDID is not set 653 757 # CONFIG_FB is not set 654 758 655 759 # 656 760 # Console display driver support 657 761 # 658 762 # CONFIG_VGA_CONSOLE is not set 763 + # CONFIG_SGI_NEWPORT_CONSOLE is not set 659 764 CONFIG_DUMMY_CONSOLE=y 660 765 661 766 # ··· 668 769 # 669 770 # USB support 670 771 # 671 - CONFIG_USB_ARCH_HAS_HCD=y 672 - CONFIG_USB_ARCH_HAS_OHCI=y 673 - CONFIG_USB_ARCH_HAS_EHCI=y 674 - CONFIG_USB=y 675 - # CONFIG_USB_DEBUG is not set 676 - 677 - # 678 - # Miscellaneous USB options 679 - # 680 - # CONFIG_USB_DEVICEFS is not set 681 - # CONFIG_USB_BANDWIDTH is not set 682 - # CONFIG_USB_DYNAMIC_MINORS is not set 683 - # CONFIG_USB_OTG is not set 684 - 685 - # 686 - # USB Host Controller Drivers 687 - # 688 - # CONFIG_USB_EHCI_HCD is not set 689 - # CONFIG_USB_ISP116X_HCD is not set 690 - CONFIG_USB_OHCI_HCD=y 691 - # CONFIG_USB_OHCI_BIG_ENDIAN is not set 692 - CONFIG_USB_OHCI_LITTLE_ENDIAN=y 693 - # CONFIG_USB_UHCI_HCD is not set 694 - # CONFIG_USB_SL811_HCD is not set 695 - 696 - # 697 - # USB Device Class drivers 698 - # 699 - # CONFIG_USB_ACM is not set 700 - # CONFIG_USB_PRINTER is not set 772 + # CONFIG_USB_ARCH_HAS_HCD is not set 773 + # CONFIG_USB_ARCH_HAS_OHCI is not set 774 + # CONFIG_USB_ARCH_HAS_EHCI is not set 701 775 702 776 # 703 777 # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 704 - # 705 - 706 - # 707 - # may also be needed; see USB_STORAGE Help for more information 708 - # 709 - CONFIG_USB_STORAGE=y 710 - # CONFIG_USB_STORAGE_DEBUG is not set 711 - CONFIG_USB_STORAGE_DATAFAB=y 712 - CONFIG_USB_STORAGE_FREECOM=y 713 - CONFIG_USB_STORAGE_ISD200=y 714 - CONFIG_USB_STORAGE_DPCM=y 715 - CONFIG_USB_STORAGE_USBAT=y 716 - CONFIG_USB_STORAGE_SDDR09=y 717 - CONFIG_USB_STORAGE_SDDR55=y 718 - CONFIG_USB_STORAGE_JUMPSHOT=y 719 - # CONFIG_USB_STORAGE_ALAUDA is not set 720 - # CONFIG_USB_LIBUSUAL is not set 721 - 722 - # 723 - # USB Input Devices 724 - # 725 - # CONFIG_USB_HID is not set 726 - 727 - # 728 - # USB HID Boot Protocol drivers 729 - # 730 - # CONFIG_USB_KBD is not set 731 - # CONFIG_USB_MOUSE is not set 732 - # CONFIG_USB_AIPTEK is not set 733 - # CONFIG_USB_WACOM is not set 734 - # CONFIG_USB_ACECAD is not set 735 - # CONFIG_USB_KBTAB is not set 736 - # CONFIG_USB_POWERMATE is not set 737 - # CONFIG_USB_TOUCHSCREEN is not set 738 - # CONFIG_USB_YEALINK is not set 739 - # CONFIG_USB_XPAD is not set 740 - # CONFIG_USB_ATI_REMOTE is not set 741 - # CONFIG_USB_ATI_REMOTE2 is not set 742 - # CONFIG_USB_KEYSPAN_REMOTE is not set 743 - # CONFIG_USB_APPLETOUCH is not set 744 - 745 - # 746 - # USB Imaging devices 747 - # 748 - # CONFIG_USB_MDC800 is not set 749 - # CONFIG_USB_MICROTEK is not set 750 - 751 - # 752 - # USB Network Adapters 753 - # 754 - # CONFIG_USB_CATC is not set 755 - # CONFIG_USB_KAWETH is not set 756 - # CONFIG_USB_PEGASUS is not set 757 - # CONFIG_USB_RTL8150 is not set 758 - # CONFIG_USB_USBNET is not set 759 - CONFIG_USB_MON=y 760 - 761 - # 762 - # USB port drivers 763 - # 764 - 765 - # 766 - # USB Serial Converter support 767 - # 768 - # CONFIG_USB_SERIAL is not set 769 - 770 - # 771 - # USB Miscellaneous drivers 772 - # 773 - # CONFIG_USB_EMI62 is not set 774 - # CONFIG_USB_EMI26 is not set 775 - # CONFIG_USB_AUERSWALD is not set 776 - # CONFIG_USB_RIO500 is not set 777 - # CONFIG_USB_LEGOTOWER is not set 778 - # CONFIG_USB_LCD is not set 779 - # CONFIG_USB_LED is not set 780 - # CONFIG_USB_CYTHERM is not set 781 - # CONFIG_USB_PHIDGETKIT is not set 782 - # CONFIG_USB_PHIDGETSERVO is not set 783 - # CONFIG_USB_IDMOUSE is not set 784 - # CONFIG_USB_LD is not set 785 - 786 - # 787 - # USB DSL modem support 788 778 # 789 779 790 780 # ··· 702 914 # 703 915 # InfiniBand support 704 916 # 705 - # CONFIG_INFINIBAND is not set 706 917 707 918 # 708 919 # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) ··· 711 924 # Real Time Clock 712 925 # 713 926 # CONFIG_RTC_CLASS is not set 927 + 928 + # 929 + # DMA Engine support 930 + # 931 + # CONFIG_DMA_ENGINE is not set 932 + 933 + # 934 + # DMA Clients 935 + # 936 + 937 + # 938 + # DMA Devices 939 + # 714 940 715 941 # 716 942 # File systems ··· 740 940 # CONFIG_MINIX_FS is not set 741 941 # CONFIG_ROMFS_FS is not set 742 942 CONFIG_INOTIFY=y 943 + CONFIG_INOTIFY_USER=y 743 944 # CONFIG_QUOTA is not set 744 945 # CONFIG_DNOTIFY is not set 745 946 # CONFIG_AUTOFS_FS is not set ··· 812 1011 # CONFIG_RPCSEC_GSS_SPKM3 is not set 813 1012 # CONFIG_SMB_FS is not set 814 1013 # CONFIG_CIFS is not set 1014 + # CONFIG_CIFS_DEBUG2 is not set 815 1015 # CONFIG_NCP_FS is not set 816 1016 # CONFIG_CODA_FS is not set 817 1017 # CONFIG_AFS_FS is not set ··· 823 1021 # 824 1022 # CONFIG_PARTITION_ADVANCED is not set 825 1023 CONFIG_MSDOS_PARTITION=y 1024 + CONFIG_SGI_PARTITION=y 826 1025 827 1026 # 828 1027 # Native Language Support ··· 879 1076 # 880 1077 # CONFIG_PRINTK_TIME is not set 881 1078 CONFIG_MAGIC_SYSRQ=y 1079 + # CONFIG_UNUSED_SYMBOLS is not set 882 1080 CONFIG_DEBUG_KERNEL=y 883 1081 CONFIG_LOG_BUF_SHIFT=14 884 1082 CONFIG_DETECT_SOFTLOCKUP=y 885 1083 # CONFIG_SCHEDSTATS is not set 886 1084 CONFIG_DEBUG_SLAB=y 887 1085 # CONFIG_DEBUG_SLAB_LEAK is not set 888 - CONFIG_DEBUG_MUTEXES=y 1086 + # CONFIG_DEBUG_RT_MUTEXES is not set 1087 + # CONFIG_RT_MUTEX_TESTER is not set 889 1088 # CONFIG_DEBUG_SPINLOCK is not set 1089 + CONFIG_DEBUG_MUTEXES=y 1090 + # CONFIG_DEBUG_RWSEMS is not set 890 1091 # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 1092 + # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 891 1093 # CONFIG_DEBUG_KOBJECT is not set 892 1094 # CONFIG_DEBUG_INFO is not set 893 1095 # CONFIG_DEBUG_FS is not set ··· 952 1144 # CONFIG_CRC16 is not set 953 1145 CONFIG_CRC32=y 954 1146 CONFIG_LIBCRC32C=m 1147 + CONFIG_PLIST=y
+86 -315
arch/mips/configs/pnx8550-v2pci_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:14 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:18 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 41 39 # CONFIG_MOMENCO_OCELOT_C is not set 42 40 # CONFIG_MOMENCO_OCELOT_G is not set 43 41 # CONFIG_MIPS_XXS1500 is not set 44 - CONFIG_PNX8550_V2PCI=y 42 + # CONFIG_PNX8550_V2PCI is not set 45 43 # CONFIG_PNX8550_JBS is not set 46 44 # CONFIG_DDB5477 is not set 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 50 - # CONFIG_SGI_IP22 is not set 48 + # CONFIG_MARKEINS is not set 49 + CONFIG_SGI_IP22=y 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set 53 52 # CONFIG_SIBYTE_BIGSUR is not set ··· 68 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 66 CONFIG_GENERIC_HWEIGHT=y 70 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 + CONFIG_ARC=y 71 70 CONFIG_DMA_NONCOHERENT=y 72 71 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 - # CONFIG_CPU_BIG_ENDIAN is not set 74 - CONFIG_CPU_LITTLE_ENDIAN=y 75 - CONFIG_SYS_SUPPORTS_LITTLE_ENDIAN=y 76 - CONFIG_PNX8550=y 77 - CONFIG_SOC_PNX8550=y 72 + CONFIG_CPU_BIG_ENDIAN=y 73 + # CONFIG_CPU_LITTLE_ENDIAN is not set 74 + CONFIG_SYS_SUPPORTS_BIG_ENDIAN=y 75 + CONFIG_IRQ_CPU=y 76 + CONFIG_SWAP_IO_SPACE=y 77 + CONFIG_ARC32=y 78 + CONFIG_BOOT_ELF32=y 78 79 CONFIG_MIPS_L1_CACHE_SHIFT=5 80 + # CONFIG_ARC_CONSOLE is not set 81 + CONFIG_ARC_PROMLIB=y 79 82 80 83 # 81 84 # CPU selection 82 85 # 83 - CONFIG_CPU_MIPS32_R1=y 86 + # CONFIG_CPU_MIPS32_R1 is not set 84 87 # CONFIG_CPU_MIPS32_R2 is not set 85 88 # CONFIG_CPU_MIPS64_R1 is not set 86 89 # CONFIG_CPU_MIPS64_R2 is not set ··· 94 85 # CONFIG_CPU_TX39XX is not set 95 86 # CONFIG_CPU_VR41XX is not set 96 87 # CONFIG_CPU_R4300 is not set 97 - # CONFIG_CPU_R4X00 is not set 88 + CONFIG_CPU_R4X00=y 98 89 # CONFIG_CPU_TX49XX is not set 99 90 # CONFIG_CPU_R5000 is not set 100 91 # CONFIG_CPU_R5432 is not set ··· 105 96 # CONFIG_CPU_RM7000 is not set 106 97 # CONFIG_CPU_RM9000 is not set 107 98 # CONFIG_CPU_SB1 is not set 108 - CONFIG_SYS_HAS_CPU_MIPS32_R1=y 109 - CONFIG_CPU_MIPS32=y 110 - CONFIG_CPU_MIPSR1=y 99 + CONFIG_SYS_HAS_CPU_R4X00=y 100 + CONFIG_SYS_HAS_CPU_R5000=y 111 101 CONFIG_SYS_SUPPORTS_32BIT_KERNEL=y 102 + CONFIG_SYS_SUPPORTS_64BIT_KERNEL=y 112 103 CONFIG_CPU_SUPPORTS_32BIT_KERNEL=y 104 + CONFIG_CPU_SUPPORTS_64BIT_KERNEL=y 113 105 114 106 # 115 107 # Kernel type ··· 121 111 # CONFIG_PAGE_SIZE_8KB is not set 122 112 # CONFIG_PAGE_SIZE_16KB is not set 123 113 # CONFIG_PAGE_SIZE_64KB is not set 124 - CONFIG_CPU_HAS_PREFETCH=y 125 - # CONFIG_MIPS_MT is not set 114 + CONFIG_BOARD_SCACHE=y 115 + CONFIG_IP22_CPU_SCACHE=y 116 + CONFIG_MIPS_MT_DISABLED=y 117 + # CONFIG_MIPS_MT_SMTC is not set 118 + # CONFIG_MIPS_MT_SMP is not set 119 + # CONFIG_MIPS_VPE_LOADER is not set 126 120 # CONFIG_64BIT_PHYS_ADDR is not set 127 121 CONFIG_CPU_HAS_LLSC=y 128 122 CONFIG_CPU_HAS_SYNC=y 129 123 CONFIG_GENERIC_HARDIRQS=y 130 124 CONFIG_GENERIC_IRQ_PROBE=y 131 - CONFIG_CPU_SUPPORTS_HIGHMEM=y 132 125 CONFIG_ARCH_FLATMEM_ENABLE=y 133 126 CONFIG_SELECT_MEMORY_MODEL=y 134 127 CONFIG_FLATMEM_MANUAL=y ··· 141 128 CONFIG_FLAT_NODE_MEM_MAP=y 142 129 # CONFIG_SPARSEMEM_STATIC is not set 143 130 CONFIG_SPLIT_PTLOCK_CPUS=4 131 + # CONFIG_RESOURCES_64BIT is not set 144 132 # CONFIG_HZ_48 is not set 145 133 # CONFIG_HZ_100 is not set 146 134 # CONFIG_HZ_128 is not set ··· 154 140 CONFIG_PREEMPT_NONE=y 155 141 # CONFIG_PREEMPT_VOLUNTARY is not set 156 142 # CONFIG_PREEMPT is not set 143 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 157 144 158 145 # 159 146 # Code maturity level options ··· 187 172 CONFIG_BUG=y 188 173 CONFIG_ELF_CORE=y 189 174 CONFIG_BASE_FULL=y 175 + CONFIG_RT_MUTEXES=y 190 176 CONFIG_FUTEX=y 191 177 CONFIG_EPOLL=y 192 178 CONFIG_SHMEM=y 193 179 CONFIG_SLAB=y 180 + CONFIG_VM_EVENT_COUNTERS=y 194 181 # CONFIG_TINY_SHMEM is not set 195 182 CONFIG_BASE_SMALL=0 196 183 # CONFIG_SLOB is not set ··· 229 212 # 230 213 # Bus options (PCI, PCMCIA, EISA, ISA, TC) 231 214 # 232 - CONFIG_HW_HAS_PCI=y 233 - CONFIG_PCI=y 215 + CONFIG_HW_HAS_EISA=y 216 + # CONFIG_EISA is not set 234 217 CONFIG_MMU=y 235 218 236 219 # ··· 241 224 # 242 225 # PCI Hotplug Support 243 226 # 244 - # CONFIG_HOTPLUG_PCI is not set 245 227 246 228 # 247 229 # Executable file formats ··· 261 245 CONFIG_PACKET=y 262 246 # CONFIG_PACKET_MMAP is not set 263 247 CONFIG_UNIX=y 248 + CONFIG_XFRM=y 249 + # CONFIG_XFRM_USER is not set 264 250 # CONFIG_NET_KEY is not set 265 251 CONFIG_INET=y 266 252 # CONFIG_IP_MULTICAST is not set ··· 281 263 # CONFIG_INET_IPCOMP is not set 282 264 # CONFIG_INET_XFRM_TUNNEL is not set 283 265 # CONFIG_INET_TUNNEL is not set 266 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 267 + CONFIG_INET_XFRM_MODE_TUNNEL=m 284 268 CONFIG_INET_DIAG=y 285 269 CONFIG_INET_TCP_DIAG=y 286 270 # CONFIG_TCP_CONG_ADVANCED is not set ··· 301 281 # CONFIG_INET6_IPCOMP is not set 302 282 # CONFIG_INET6_XFRM_TUNNEL is not set 303 283 # CONFIG_INET6_TUNNEL is not set 284 + CONFIG_INET6_XFRM_MODE_TRANSPORT=m 285 + CONFIG_INET6_XFRM_MODE_TUNNEL=m 304 286 # CONFIG_IPV6_TUNNEL is not set 287 + CONFIG_NETWORK_SECMARK=y 305 288 CONFIG_NETFILTER=y 306 289 # CONFIG_NETFILTER_DEBUG is not set 307 290 ··· 317 294 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 318 295 CONFIG_NETFILTER_XT_TARGET_MARK=m 319 296 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 297 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 320 298 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 321 299 CONFIG_NETFILTER_XT_MATCH_DCCP=m 322 300 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 325 301 CONFIG_NETFILTER_XT_MATCH_LIMIT=m 326 302 CONFIG_NETFILTER_XT_MATCH_MAC=m 327 303 CONFIG_NETFILTER_XT_MATCH_MARK=m 304 + # CONFIG_NETFILTER_XT_MATCH_POLICY is not set 328 305 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 329 306 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 307 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 330 308 CONFIG_NETFILTER_XT_MATCH_REALM=m 331 309 CONFIG_NETFILTER_XT_MATCH_SCTP=m 310 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 332 311 CONFIG_NETFILTER_XT_MATCH_STRING=m 333 312 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 334 313 ··· 401 374 CONFIG_STANDALONE=y 402 375 CONFIG_PREVENT_FIRMWARE_BUILD=y 403 376 CONFIG_FW_LOADER=y 377 + # CONFIG_SYS_HYPERVISOR is not set 404 378 405 379 # 406 380 # Connector - unified userspace <-> kernelspace linker ··· 425 397 # 426 398 # Block devices 427 399 # 428 - # CONFIG_BLK_CPQ_DA is not set 429 - # CONFIG_BLK_CPQ_CISS_DA is not set 430 - # CONFIG_BLK_DEV_DAC960 is not set 431 - # CONFIG_BLK_DEV_UMEM is not set 432 400 # CONFIG_BLK_DEV_COW_COMMON is not set 433 401 CONFIG_BLK_DEV_LOOP=y 434 402 # CONFIG_BLK_DEV_CRYPTOLOOP is not set 435 403 # CONFIG_BLK_DEV_NBD is not set 436 - # CONFIG_BLK_DEV_SX8 is not set 437 - # CONFIG_BLK_DEV_UB is not set 438 404 CONFIG_BLK_DEV_RAM=y 439 405 CONFIG_BLK_DEV_RAM_COUNT=16 440 406 CONFIG_BLK_DEV_RAM_SIZE=8192 ··· 458 436 # IDE chipset support/bugfixes 459 437 # 460 438 CONFIG_IDE_GENERIC=y 461 - CONFIG_BLK_DEV_IDEPCI=y 462 - CONFIG_IDEPCI_SHARE_IRQ=y 463 - # CONFIG_BLK_DEV_OFFBOARD is not set 464 - # CONFIG_BLK_DEV_GENERIC is not set 465 - # CONFIG_BLK_DEV_OPTI621 is not set 466 - CONFIG_BLK_DEV_IDEDMA_PCI=y 467 - # CONFIG_BLK_DEV_IDEDMA_FORCED is not set 468 - CONFIG_IDEDMA_PCI_AUTO=y 469 - # CONFIG_IDEDMA_ONLYDISK is not set 470 - # CONFIG_BLK_DEV_AEC62XX is not set 471 - # CONFIG_BLK_DEV_ALI15X3 is not set 472 - # CONFIG_BLK_DEV_AMD74XX is not set 473 - CONFIG_BLK_DEV_CMD64X=y 474 - # CONFIG_BLK_DEV_TRIFLEX is not set 475 - # CONFIG_BLK_DEV_CY82C693 is not set 476 - # CONFIG_BLK_DEV_CS5520 is not set 477 - # CONFIG_BLK_DEV_CS5530 is not set 478 - # CONFIG_BLK_DEV_HPT34X is not set 479 - # CONFIG_BLK_DEV_HPT366 is not set 480 - # CONFIG_BLK_DEV_SC1200 is not set 481 - # CONFIG_BLK_DEV_PIIX is not set 482 - # CONFIG_BLK_DEV_IT821X is not set 483 - # CONFIG_BLK_DEV_NS87415 is not set 484 - # CONFIG_BLK_DEV_PDC202XX_OLD is not set 485 - # CONFIG_BLK_DEV_PDC202XX_NEW is not set 486 - # CONFIG_BLK_DEV_SVWKS is not set 487 - # CONFIG_BLK_DEV_SIIMAGE is not set 488 - # CONFIG_BLK_DEV_SLC90E66 is not set 489 - # CONFIG_BLK_DEV_TRM290 is not set 490 - # CONFIG_BLK_DEV_VIA82CXXX is not set 491 439 # CONFIG_IDE_ARM is not set 492 - CONFIG_BLK_DEV_IDEDMA=y 493 - # CONFIG_IDEDMA_IVB is not set 494 - CONFIG_IDEDMA_AUTO=y 440 + # CONFIG_BLK_DEV_IDEDMA is not set 441 + # CONFIG_IDEDMA_AUTO is not set 495 442 # CONFIG_BLK_DEV_HD is not set 496 443 497 444 # ··· 499 508 # SCSI low-level drivers 500 509 # 501 510 CONFIG_ISCSI_TCP=m 502 - # CONFIG_BLK_DEV_3W_XXXX_RAID is not set 503 - # CONFIG_SCSI_3W_9XXX is not set 504 - # CONFIG_SCSI_ACARD is not set 505 - # CONFIG_SCSI_AACRAID is not set 506 - CONFIG_SCSI_AIC7XXX=m 507 - CONFIG_AIC7XXX_CMDS_PER_DEVICE=32 508 - CONFIG_AIC7XXX_RESET_DELAY_MS=15000 509 - # CONFIG_AIC7XXX_DEBUG_ENABLE is not set 510 - CONFIG_AIC7XXX_DEBUG_MASK=0 511 - # CONFIG_AIC7XXX_REG_PRETTY_PRINT is not set 512 - # CONFIG_SCSI_AIC7XXX_OLD is not set 513 - # CONFIG_SCSI_AIC79XX is not set 514 - # CONFIG_SCSI_DPT_I2O is not set 515 - # CONFIG_MEGARAID_NEWGEN is not set 516 - # CONFIG_MEGARAID_LEGACY is not set 517 - # CONFIG_MEGARAID_SAS is not set 511 + # CONFIG_SGIWD93_SCSI is not set 518 512 # CONFIG_SCSI_SATA is not set 519 - # CONFIG_SCSI_DMX3191D is not set 520 - # CONFIG_SCSI_FUTURE_DOMAIN is not set 521 - # CONFIG_SCSI_IPS is not set 522 - # CONFIG_SCSI_INITIO is not set 523 - # CONFIG_SCSI_INIA100 is not set 524 - # CONFIG_SCSI_SYM53C8XX_2 is not set 525 - # CONFIG_SCSI_IPR is not set 526 - # CONFIG_SCSI_QLOGIC_1280 is not set 527 - # CONFIG_SCSI_QLA_FC is not set 528 - # CONFIG_SCSI_LPFC is not set 529 - # CONFIG_SCSI_DC395x is not set 530 - # CONFIG_SCSI_DC390T is not set 531 - # CONFIG_SCSI_NSP32 is not set 532 513 # CONFIG_SCSI_DEBUG is not set 533 514 534 515 # ··· 512 549 # Fusion MPT device support 513 550 # 514 551 # CONFIG_FUSION is not set 515 - # CONFIG_FUSION_SPI is not set 516 - # CONFIG_FUSION_FC is not set 517 - # CONFIG_FUSION_SAS is not set 518 552 519 553 # 520 554 # IEEE 1394 (FireWire) support 521 555 # 522 - # CONFIG_IEEE1394 is not set 523 556 524 557 # 525 558 # I2O device support 526 559 # 527 - # CONFIG_I2O is not set 528 560 529 561 # 530 562 # Network device support ··· 531 573 CONFIG_TUN=m 532 574 533 575 # 534 - # ARCnet devices 535 - # 536 - # CONFIG_ARCNET is not set 537 - 538 - # 539 576 # PHY device support 540 577 # 541 578 # CONFIG_PHYLIB is not set ··· 540 587 # 541 588 CONFIG_NET_ETHERNET=y 542 589 CONFIG_MII=y 543 - # CONFIG_HAPPYMEAL is not set 544 - # CONFIG_SUNGEM is not set 545 - # CONFIG_CASSINI is not set 546 - # CONFIG_NET_VENDOR_3COM is not set 547 590 # CONFIG_DM9000 is not set 548 - 549 - # 550 - # Tulip family network device support 551 - # 552 - # CONFIG_NET_TULIP is not set 553 - # CONFIG_HP100 is not set 554 - CONFIG_NET_PCI=y 555 - # CONFIG_PCNET32 is not set 556 - # CONFIG_AMD8111_ETH is not set 557 - # CONFIG_ADAPTEC_STARFIRE is not set 558 - # CONFIG_B44 is not set 559 - # CONFIG_FORCEDETH is not set 560 - # CONFIG_DGRS is not set 561 - # CONFIG_EEPRO100 is not set 562 - # CONFIG_E100 is not set 563 - # CONFIG_FEALNX is not set 564 - CONFIG_NATSEMI=y 565 - # CONFIG_NE2K_PCI is not set 566 - # CONFIG_8139CP is not set 567 - CONFIG_8139TOO=y 568 - # CONFIG_8139TOO_PIO is not set 569 - # CONFIG_8139TOO_TUNE_TWISTER is not set 570 - # CONFIG_8139TOO_8129 is not set 571 - # CONFIG_8139_OLD_RX_RESET is not set 572 - # CONFIG_SIS900 is not set 573 - # CONFIG_EPIC100 is not set 574 - # CONFIG_SUNDANCE is not set 575 - # CONFIG_TLAN is not set 576 - # CONFIG_VIA_RHINE is not set 577 - # CONFIG_LAN_SAA9730 is not set 591 + # CONFIG_SGISEEQ is not set 578 592 579 593 # 580 594 # Ethernet (1000 Mbit) 581 595 # 582 - # CONFIG_ACENIC is not set 583 - # CONFIG_DL2K is not set 584 - # CONFIG_E1000 is not set 585 - # CONFIG_NS83820 is not set 586 - # CONFIG_HAMACHI is not set 587 - # CONFIG_YELLOWFIN is not set 588 - # CONFIG_R8169 is not set 589 - # CONFIG_SIS190 is not set 590 - # CONFIG_SKGE is not set 591 - # CONFIG_SKY2 is not set 592 - # CONFIG_SK98LIN is not set 593 - # CONFIG_VIA_VELOCITY is not set 594 - # CONFIG_TIGON3 is not set 595 - # CONFIG_BNX2 is not set 596 596 597 597 # 598 598 # Ethernet (10000 Mbit) 599 599 # 600 - # CONFIG_CHELSIO_T1 is not set 601 - # CONFIG_IXGB is not set 602 - # CONFIG_S2IO is not set 603 600 604 601 # 605 602 # Token Ring devices 606 603 # 607 - # CONFIG_TR is not set 608 604 609 605 # 610 606 # Wireless LAN (non-hamradio) ··· 564 662 # Wan interfaces 565 663 # 566 664 # CONFIG_WAN is not set 567 - # CONFIG_FDDI is not set 568 - # CONFIG_HIPPI is not set 569 665 CONFIG_PPP=m 570 666 # CONFIG_PPP_MULTILINK is not set 571 667 # CONFIG_PPP_FILTER is not set ··· 574 674 CONFIG_PPP_MPPE=m 575 675 # CONFIG_PPPOE is not set 576 676 # CONFIG_SLIP is not set 577 - # CONFIG_NET_FC is not set 578 677 # CONFIG_SHAPER is not set 579 678 # CONFIG_NETCONSOLE is not set 580 679 # CONFIG_NETPOLL is not set ··· 629 730 CONFIG_SERIO=y 630 731 CONFIG_SERIO_I8042=y 631 732 CONFIG_SERIO_SERPORT=y 632 - # CONFIG_SERIO_PCIPS2 is not set 633 733 CONFIG_SERIO_LIBPS2=y 634 734 # CONFIG_SERIO_RAW is not set 635 735 # CONFIG_GAMEPORT is not set ··· 639 741 CONFIG_VT=y 640 742 # CONFIG_VT_CONSOLE is not set 641 743 CONFIG_HW_CONSOLE=y 744 + CONFIG_VT_HW_CONSOLE_BINDING=y 642 745 CONFIG_SERIAL_NONSTANDARD=y 643 746 # CONFIG_COMPUTONE is not set 644 747 # CONFIG_ROCKETPORT is not set ··· 649 750 # CONFIG_MOXA_SMARTIO is not set 650 751 # CONFIG_ISI is not set 651 752 # CONFIG_SYNCLINKMP is not set 652 - # CONFIG_SYNCLINK_GT is not set 653 753 # CONFIG_N_HDLC is not set 654 754 # CONFIG_RISCOM8 is not set 655 755 # CONFIG_SPECIALIX is not set ··· 664 766 # 665 767 # Non-8250 serial port support 666 768 # 667 - # CONFIG_SERIAL_IP3106 is not set 668 - # CONFIG_SERIAL_JSM is not set 769 + # CONFIG_SERIAL_IP22_ZILOG is not set 669 770 CONFIG_UNIX98_PTYS=y 670 771 CONFIG_LEGACY_PTYS=y 671 772 CONFIG_LEGACY_PTY_COUNT=256 ··· 678 781 # Watchdog Cards 679 782 # 680 783 # CONFIG_WATCHDOG is not set 784 + # CONFIG_HW_RANDOM is not set 681 785 # CONFIG_RTC is not set 786 + # CONFIG_SGI_DS1286 is not set 682 787 # CONFIG_GEN_RTC is not set 683 788 # CONFIG_DTLK is not set 684 789 # CONFIG_R3964 is not set 685 - # CONFIG_APPLICOM is not set 686 790 687 791 # 688 792 # Ftape, the floppy tape device driver 689 793 # 690 - # CONFIG_DRM is not set 691 794 # CONFIG_RAW_DRIVER is not set 692 795 693 796 # ··· 708 811 CONFIG_I2C_ALGOBIT=m 709 812 # CONFIG_I2C_ALGOPCF is not set 710 813 # CONFIG_I2C_ALGOPCA is not set 814 + # CONFIG_I2C_ALGO_SGI is not set 711 815 712 816 # 713 817 # I2C Hardware Bus support 714 818 # 715 - # CONFIG_I2C_ALI1535 is not set 716 - # CONFIG_I2C_ALI1563 is not set 717 - # CONFIG_I2C_ALI15X3 is not set 718 - # CONFIG_I2C_AMD756 is not set 719 - # CONFIG_I2C_AMD8111 is not set 720 - # CONFIG_I2C_I801 is not set 721 - # CONFIG_I2C_I810 is not set 722 - # CONFIG_I2C_PIIX4 is not set 723 - # CONFIG_I2C_NFORCE2 is not set 819 + # CONFIG_I2C_OCORES is not set 724 820 # CONFIG_I2C_PARPORT_LIGHT is not set 725 - # CONFIG_I2C_PROSAVAGE is not set 726 - # CONFIG_I2C_SAVAGE4 is not set 727 - # CONFIG_I2C_SIS5595 is not set 728 - # CONFIG_I2C_SIS630 is not set 729 - # CONFIG_I2C_SIS96X is not set 730 821 # CONFIG_I2C_STUB is not set 731 - # CONFIG_I2C_VIA is not set 732 - # CONFIG_I2C_VIAPRO is not set 733 - # CONFIG_I2C_VOODOO3 is not set 734 822 # CONFIG_I2C_PCA_ISA is not set 735 823 736 824 # ··· 742 860 # 743 861 # Dallas's 1-wire bus 744 862 # 745 - # CONFIG_W1 is not set 746 863 747 864 # 748 865 # Hardware Monitoring support 749 866 # 750 867 CONFIG_HWMON=y 751 868 # CONFIG_HWMON_VID is not set 869 + # CONFIG_SENSORS_ABITUGURU is not set 752 870 # CONFIG_SENSORS_ADM1021 is not set 753 871 # CONFIG_SENSORS_ADM1025 is not set 754 872 # CONFIG_SENSORS_ADM1026 is not set ··· 775 893 # CONFIG_SENSORS_LM92 is not set 776 894 # CONFIG_SENSORS_MAX1619 is not set 777 895 # CONFIG_SENSORS_PC87360 is not set 778 - # CONFIG_SENSORS_SIS5595 is not set 779 896 # CONFIG_SENSORS_SMSC47M1 is not set 897 + # CONFIG_SENSORS_SMSC47M192 is not set 780 898 # CONFIG_SENSORS_SMSC47B397 is not set 781 - # CONFIG_SENSORS_VIA686A is not set 782 - # CONFIG_SENSORS_VT8231 is not set 783 899 # CONFIG_SENSORS_W83781D is not set 900 + # CONFIG_SENSORS_W83791D is not set 784 901 # CONFIG_SENSORS_W83792D is not set 785 902 # CONFIG_SENSORS_W83L785TS is not set 786 903 # CONFIG_SENSORS_W83627HF is not set ··· 794 913 # Multimedia devices 795 914 # 796 915 # CONFIG_VIDEO_DEV is not set 916 + CONFIG_VIDEO_V4L2=y 797 917 798 918 # 799 919 # Digital Video Broadcasting Devices 800 920 # 801 921 # CONFIG_DVB is not set 802 - # CONFIG_USB_DABUSB is not set 803 922 804 923 # 805 924 # Graphics support 806 925 # 926 + # CONFIG_FIRMWARE_EDID is not set 807 927 CONFIG_FB=y 808 928 # CONFIG_FB_CFB_FILLRECT is not set 809 929 # CONFIG_FB_CFB_COPYAREA is not set 810 930 # CONFIG_FB_CFB_IMAGEBLIT is not set 811 931 # CONFIG_FB_MACMODES is not set 812 - CONFIG_FB_FIRMWARE_EDID=y 932 + # CONFIG_FB_BACKLIGHT is not set 813 933 # CONFIG_FB_MODE_HELPERS is not set 814 934 # CONFIG_FB_TILEBLITTING is not set 815 - # CONFIG_FB_CIRRUS is not set 816 - # CONFIG_FB_PM2 is not set 817 - # CONFIG_FB_CYBER2000 is not set 818 - # CONFIG_FB_ASILIANT is not set 819 - # CONFIG_FB_IMSTT is not set 820 935 # CONFIG_FB_S1D13XXX is not set 821 - # CONFIG_FB_NVIDIA is not set 822 - # CONFIG_FB_RIVA is not set 823 - # CONFIG_FB_MATROX is not set 824 - # CONFIG_FB_RADEON is not set 825 - # CONFIG_FB_ATY128 is not set 826 - # CONFIG_FB_ATY is not set 827 - # CONFIG_FB_SAVAGE is not set 828 - # CONFIG_FB_SIS is not set 829 - # CONFIG_FB_NEOMAGIC is not set 830 - # CONFIG_FB_KYRO is not set 831 - # CONFIG_FB_3DFX is not set 832 - # CONFIG_FB_VOODOO1 is not set 833 - # CONFIG_FB_SMIVGX is not set 834 - # CONFIG_FB_TRIDENT is not set 835 936 # CONFIG_FB_VIRTUAL is not set 836 937 837 938 # 838 939 # Console display driver support 839 940 # 840 941 # CONFIG_VGA_CONSOLE is not set 942 + # CONFIG_SGI_NEWPORT_CONSOLE is not set 841 943 CONFIG_DUMMY_CONSOLE=y 842 944 # CONFIG_FRAMEBUFFER_CONSOLE is not set 843 945 ··· 838 974 # 839 975 # USB support 840 976 # 841 - CONFIG_USB_ARCH_HAS_HCD=y 842 - CONFIG_USB_ARCH_HAS_OHCI=y 843 - CONFIG_USB_ARCH_HAS_EHCI=y 844 - CONFIG_USB=y 845 - # CONFIG_USB_DEBUG is not set 846 - 847 - # 848 - # Miscellaneous USB options 849 - # 850 - CONFIG_USB_DEVICEFS=y 851 - # CONFIG_USB_BANDWIDTH is not set 852 - # CONFIG_USB_DYNAMIC_MINORS is not set 853 - # CONFIG_USB_OTG is not set 854 - 855 - # 856 - # USB Host Controller Drivers 857 - # 858 - # CONFIG_USB_EHCI_HCD is not set 859 - # CONFIG_USB_ISP116X_HCD is not set 860 - # CONFIG_USB_OHCI_HCD is not set 861 - # CONFIG_USB_UHCI_HCD is not set 862 - # CONFIG_USB_SL811_HCD is not set 863 - 864 - # 865 - # USB Device Class drivers 866 - # 867 - # CONFIG_USB_ACM is not set 868 - # CONFIG_USB_PRINTER is not set 977 + # CONFIG_USB_ARCH_HAS_HCD is not set 978 + # CONFIG_USB_ARCH_HAS_OHCI is not set 979 + # CONFIG_USB_ARCH_HAS_EHCI is not set 869 980 870 981 # 871 982 # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 872 - # 873 - 874 - # 875 - # may also be needed; see USB_STORAGE Help for more information 876 - # 877 - CONFIG_USB_STORAGE=y 878 - # CONFIG_USB_STORAGE_DEBUG is not set 879 - # CONFIG_USB_STORAGE_DATAFAB is not set 880 - # CONFIG_USB_STORAGE_FREECOM is not set 881 - # CONFIG_USB_STORAGE_ISD200 is not set 882 - # CONFIG_USB_STORAGE_DPCM is not set 883 - # CONFIG_USB_STORAGE_USBAT is not set 884 - # CONFIG_USB_STORAGE_SDDR09 is not set 885 - # CONFIG_USB_STORAGE_SDDR55 is not set 886 - # CONFIG_USB_STORAGE_JUMPSHOT is not set 887 - # CONFIG_USB_STORAGE_ALAUDA is not set 888 - # CONFIG_USB_STORAGE_ONETOUCH is not set 889 - # CONFIG_USB_LIBUSUAL is not set 890 - 891 - # 892 - # USB Input Devices 893 - # 894 - CONFIG_USB_HID=y 895 - CONFIG_USB_HIDINPUT=y 896 - # CONFIG_USB_HIDINPUT_POWERBOOK is not set 897 - # CONFIG_HID_FF is not set 898 - CONFIG_USB_HIDDEV=y 899 - # CONFIG_USB_AIPTEK is not set 900 - # CONFIG_USB_WACOM is not set 901 - # CONFIG_USB_ACECAD is not set 902 - # CONFIG_USB_KBTAB is not set 903 - # CONFIG_USB_POWERMATE is not set 904 - # CONFIG_USB_TOUCHSCREEN is not set 905 - # CONFIG_USB_YEALINK is not set 906 - # CONFIG_USB_XPAD is not set 907 - # CONFIG_USB_ATI_REMOTE is not set 908 - # CONFIG_USB_ATI_REMOTE2 is not set 909 - # CONFIG_USB_KEYSPAN_REMOTE is not set 910 - # CONFIG_USB_APPLETOUCH is not set 911 - 912 - # 913 - # USB Imaging devices 914 - # 915 - # CONFIG_USB_MDC800 is not set 916 - # CONFIG_USB_MICROTEK is not set 917 - 918 - # 919 - # USB Network Adapters 920 - # 921 - # CONFIG_USB_CATC is not set 922 - # CONFIG_USB_KAWETH is not set 923 - # CONFIG_USB_PEGASUS is not set 924 - # CONFIG_USB_RTL8150 is not set 925 - # CONFIG_USB_USBNET is not set 926 - CONFIG_USB_MON=y 927 - 928 - # 929 - # USB port drivers 930 - # 931 - 932 - # 933 - # USB Serial Converter support 934 - # 935 - # CONFIG_USB_SERIAL is not set 936 - 937 - # 938 - # USB Miscellaneous drivers 939 - # 940 - # CONFIG_USB_EMI62 is not set 941 - # CONFIG_USB_EMI26 is not set 942 - # CONFIG_USB_AUERSWALD is not set 943 - # CONFIG_USB_RIO500 is not set 944 - # CONFIG_USB_LEGOTOWER is not set 945 - # CONFIG_USB_LCD is not set 946 - # CONFIG_USB_LED is not set 947 - # CONFIG_USB_CYTHERM is not set 948 - # CONFIG_USB_PHIDGETKIT is not set 949 - # CONFIG_USB_PHIDGETSERVO is not set 950 - # CONFIG_USB_IDMOUSE is not set 951 - # CONFIG_USB_LD is not set 952 - # CONFIG_USB_TEST is not set 953 - 954 - # 955 - # USB DSL modem support 956 983 # 957 984 958 985 # ··· 872 1117 # 873 1118 # InfiniBand support 874 1119 # 875 - # CONFIG_INFINIBAND is not set 876 1120 877 1121 # 878 1122 # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) ··· 881 1127 # Real Time Clock 882 1128 # 883 1129 # CONFIG_RTC_CLASS is not set 1130 + 1131 + # 1132 + # DMA Engine support 1133 + # 1134 + # CONFIG_DMA_ENGINE is not set 1135 + 1136 + # 1137 + # DMA Clients 1138 + # 1139 + 1140 + # 1141 + # DMA Devices 1142 + # 884 1143 885 1144 # 886 1145 # File systems ··· 912 1145 # CONFIG_JFS_FS is not set 913 1146 # CONFIG_FS_POSIX_ACL is not set 914 1147 CONFIG_XFS_FS=m 915 - CONFIG_XFS_EXPORT=y 916 1148 # CONFIG_XFS_QUOTA is not set 917 1149 # CONFIG_XFS_SECURITY is not set 918 1150 # CONFIG_XFS_POSIX_ACL is not set ··· 920 1154 # CONFIG_MINIX_FS is not set 921 1155 # CONFIG_ROMFS_FS is not set 922 1156 CONFIG_INOTIFY=y 1157 + CONFIG_INOTIFY_USER=y 923 1158 # CONFIG_QUOTA is not set 924 1159 CONFIG_DNOTIFY=y 925 1160 CONFIG_AUTOFS_FS=y ··· 993 1226 CONFIG_SMB_FS=m 994 1227 # CONFIG_SMB_NLS_DEFAULT is not set 995 1228 # CONFIG_CIFS is not set 1229 + # CONFIG_CIFS_DEBUG2 is not set 996 1230 # CONFIG_NCP_FS is not set 997 1231 # CONFIG_CODA_FS is not set 998 1232 # CONFIG_AFS_FS is not set ··· 1004 1236 # 1005 1237 # CONFIG_PARTITION_ADVANCED is not set 1006 1238 CONFIG_MSDOS_PARTITION=y 1239 + CONFIG_SGI_PARTITION=y 1007 1240 1008 1241 # 1009 1242 # Native Language Support ··· 1060 1291 # 1061 1292 # CONFIG_PRINTK_TIME is not set 1062 1293 # CONFIG_MAGIC_SYSRQ is not set 1294 + # CONFIG_UNUSED_SYMBOLS is not set 1063 1295 # CONFIG_DEBUG_KERNEL is not set 1064 1296 CONFIG_LOG_BUF_SHIFT=14 1065 1297 # CONFIG_DEBUG_FS is not set ··· 1119 1349 CONFIG_TEXTSEARCH_KMP=m 1120 1350 CONFIG_TEXTSEARCH_BM=m 1121 1351 CONFIG_TEXTSEARCH_FSM=m 1352 + CONFIG_PLIST=y
+40 -4
arch/mips/configs/qemu_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:15 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:18 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 CONFIG_QEMU=y 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 68 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 66 CONFIG_GENERIC_HWEIGHT=y 70 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 71 69 CONFIG_DMA_COHERENT=y 72 70 CONFIG_GENERIC_ISA_DMA=y 73 71 CONFIG_I8259=y ··· 117 113 # CONFIG_PAGE_SIZE_16KB is not set 118 114 # CONFIG_PAGE_SIZE_64KB is not set 119 115 CONFIG_CPU_HAS_PREFETCH=y 120 - # CONFIG_MIPS_MT is not set 116 + CONFIG_MIPS_MT_DISABLED=y 117 + # CONFIG_MIPS_MT_SMTC is not set 118 + # CONFIG_MIPS_MT_SMP is not set 119 + # CONFIG_MIPS_VPE_LOADER is not set 121 120 # CONFIG_64BIT_PHYS_ADDR is not set 122 121 CONFIG_CPU_HAS_LLSC=y 123 122 CONFIG_CPU_HAS_SYNC=y ··· 128 121 CONFIG_GENERIC_IRQ_PROBE=y 129 122 CONFIG_CPU_SUPPORTS_HIGHMEM=y 130 123 CONFIG_ARCH_FLATMEM_ENABLE=y 124 + CONFIG_ARCH_SPARSEMEM_ENABLE=y 131 125 CONFIG_FLATMEM=y 132 126 CONFIG_FLAT_NODE_MEM_MAP=y 133 127 # CONFIG_SPARSEMEM_STATIC is not set 134 128 CONFIG_SPLIT_PTLOCK_CPUS=4 135 - # CONFIG_SMP is not set 129 + # CONFIG_RESOURCES_64BIT is not set 136 130 # CONFIG_HZ_48 is not set 137 131 CONFIG_HZ_100=y 138 132 # CONFIG_HZ_128 is not set ··· 146 138 CONFIG_PREEMPT_NONE=y 147 139 # CONFIG_PREEMPT_VOLUNTARY is not set 148 140 # CONFIG_PREEMPT is not set 141 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 149 142 150 143 # 151 144 # Code maturity level options ··· 180 171 # CONFIG_EPOLL is not set 181 172 # CONFIG_SHMEM is not set 182 173 CONFIG_SLAB=y 174 + CONFIG_VM_EVENT_COUNTERS=y 183 175 CONFIG_TINY_SHMEM=y 184 176 CONFIG_BASE_SMALL=1 185 177 # CONFIG_SLOB is not set ··· 245 235 CONFIG_PACKET=y 246 236 CONFIG_PACKET_MMAP=y 247 237 CONFIG_UNIX=y 238 + CONFIG_XFRM=y 239 + # CONFIG_XFRM_USER is not set 248 240 # CONFIG_NET_KEY is not set 249 241 CONFIG_INET=y 250 242 CONFIG_IP_MULTICAST=y ··· 265 253 # CONFIG_INET_IPCOMP is not set 266 254 # CONFIG_INET_XFRM_TUNNEL is not set 267 255 # CONFIG_INET_TUNNEL is not set 256 + CONFIG_INET_XFRM_MODE_TRANSPORT=y 257 + CONFIG_INET_XFRM_MODE_TUNNEL=y 268 258 CONFIG_INET_DIAG=y 269 259 CONFIG_INET_TCP_DIAG=y 270 260 # CONFIG_TCP_CONG_ADVANCED is not set ··· 274 260 # CONFIG_IPV6 is not set 275 261 # CONFIG_INET6_XFRM_TUNNEL is not set 276 262 # CONFIG_INET6_TUNNEL is not set 263 + CONFIG_NETWORK_SECMARK=y 277 264 # CONFIG_NETFILTER is not set 278 265 # CONFIG_BRIDGE is not set 279 266 # CONFIG_VLAN_8021Q is not set ··· 307 292 CONFIG_STANDALONE=y 308 293 # CONFIG_PREVENT_FIRMWARE_BUILD is not set 309 294 # CONFIG_FW_LOADER is not set 295 + # CONFIG_SYS_HYPERVISOR is not set 310 296 311 297 # 312 298 # Connector - unified userspace <-> kernelspace linker ··· 489 473 CONFIG_VT=y 490 474 CONFIG_VT_CONSOLE=y 491 475 CONFIG_HW_CONSOLE=y 476 + CONFIG_VT_HW_CONSOLE_BINDING=y 492 477 # CONFIG_SERIAL_NONSTANDARD is not set 493 478 494 479 # ··· 519 502 # Watchdog Cards 520 503 # 521 504 # CONFIG_WATCHDOG is not set 505 + # CONFIG_HW_RANDOM is not set 522 506 # CONFIG_RTC is not set 523 507 # CONFIG_GEN_RTC is not set 524 508 # CONFIG_DTLK is not set ··· 564 546 # Multimedia devices 565 547 # 566 548 # CONFIG_VIDEO_DEV is not set 549 + CONFIG_VIDEO_V4L2=y 567 550 568 551 # 569 552 # Digital Video Broadcasting Devices ··· 574 555 # 575 556 # Graphics support 576 557 # 558 + # CONFIG_FIRMWARE_EDID is not set 577 559 # CONFIG_FB is not set 578 560 579 561 # ··· 637 617 # 638 618 639 619 # 620 + # DMA Engine support 621 + # 622 + # CONFIG_DMA_ENGINE is not set 623 + 624 + # 625 + # DMA Clients 626 + # 627 + 628 + # 629 + # DMA Devices 630 + # 631 + 632 + # 640 633 # File systems 641 634 # 642 635 # CONFIG_EXT2_FS is not set ··· 661 628 # CONFIG_MINIX_FS is not set 662 629 # CONFIG_ROMFS_FS is not set 663 630 CONFIG_INOTIFY=y 631 + CONFIG_INOTIFY_USER=y 664 632 # CONFIG_QUOTA is not set 665 633 # CONFIG_DNOTIFY is not set 666 634 # CONFIG_AUTOFS_FS is not set ··· 716 682 CONFIG_SUNRPC=y 717 683 # CONFIG_SMB_FS is not set 718 684 # CONFIG_CIFS is not set 685 + # CONFIG_CIFS_DEBUG2 is not set 719 686 # CONFIG_NCP_FS is not set 720 687 # CONFIG_CODA_FS is not set 721 688 ··· 736 701 # 737 702 # CONFIG_PRINTK_TIME is not set 738 703 # CONFIG_MAGIC_SYSRQ is not set 704 + # CONFIG_UNUSED_SYMBOLS is not set 739 705 # CONFIG_DEBUG_KERNEL is not set 740 706 CONFIG_LOG_BUF_SHIFT=14 741 707 # CONFIG_DEBUG_FS is not set
+56 -8
arch/mips/configs/rbhma4500_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:16 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:19 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 75 72 CONFIG_GENERIC_FIND_NEXT_BIT=y 76 73 CONFIG_GENERIC_HWEIGHT=y 77 74 CONFIG_GENERIC_CALIBRATE_DELAY=y 75 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 78 76 CONFIG_DMA_NONCOHERENT=y 79 77 CONFIG_DMA_NEED_PCI_MAP_STATE=y 80 78 CONFIG_GENERIC_ISA_DMA=y ··· 126 122 # CONFIG_PAGE_SIZE_16KB is not set 127 123 # CONFIG_PAGE_SIZE_64KB is not set 128 124 CONFIG_CPU_HAS_PREFETCH=y 129 - # CONFIG_MIPS_MT is not set 125 + CONFIG_MIPS_MT_DISABLED=y 126 + # CONFIG_MIPS_MT_SMTC is not set 127 + # CONFIG_MIPS_MT_SMP is not set 128 + # CONFIG_MIPS_VPE_LOADER is not set 130 129 CONFIG_CPU_HAS_LLSC=y 131 130 CONFIG_CPU_HAS_SYNC=y 132 131 CONFIG_GENERIC_HARDIRQS=y ··· 143 136 CONFIG_FLAT_NODE_MEM_MAP=y 144 137 # CONFIG_SPARSEMEM_STATIC is not set 145 138 CONFIG_SPLIT_PTLOCK_CPUS=4 139 + # CONFIG_RESOURCES_64BIT is not set 146 140 # CONFIG_HZ_48 is not set 147 141 # CONFIG_HZ_100 is not set 148 142 # CONFIG_HZ_128 is not set ··· 156 148 CONFIG_PREEMPT_NONE=y 157 149 # CONFIG_PREEMPT_VOLUNTARY is not set 158 150 # CONFIG_PREEMPT is not set 151 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 159 152 160 153 # 161 154 # Code maturity level options ··· 193 184 # CONFIG_EPOLL is not set 194 185 CONFIG_SHMEM=y 195 186 CONFIG_SLAB=y 187 + CONFIG_VM_EVENT_COUNTERS=y 196 188 # CONFIG_TINY_SHMEM is not set 197 189 CONFIG_BASE_SMALL=0 198 190 # CONFIG_SLOB is not set 199 - CONFIG_OBSOLETE_INTERMODULE=y 200 191 201 192 # 202 193 # Loadable module support ··· 264 255 CONFIG_PACKET=y 265 256 # CONFIG_PACKET_MMAP is not set 266 257 CONFIG_UNIX=y 258 + CONFIG_XFRM=y 259 + # CONFIG_XFRM_USER is not set 267 260 # CONFIG_NET_KEY is not set 268 261 CONFIG_INET=y 269 262 CONFIG_IP_MULTICAST=y ··· 285 274 # CONFIG_INET_IPCOMP is not set 286 275 # CONFIG_INET_XFRM_TUNNEL is not set 287 276 # CONFIG_INET_TUNNEL is not set 277 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 278 + CONFIG_INET_XFRM_MODE_TUNNEL=m 288 279 CONFIG_INET_DIAG=y 289 280 CONFIG_INET_TCP_DIAG=y 290 281 # CONFIG_TCP_CONG_ADVANCED is not set ··· 305 292 # CONFIG_INET6_IPCOMP is not set 306 293 # CONFIG_INET6_XFRM_TUNNEL is not set 307 294 # CONFIG_INET6_TUNNEL is not set 295 + CONFIG_INET6_XFRM_MODE_TRANSPORT=m 296 + CONFIG_INET6_XFRM_MODE_TUNNEL=m 308 297 # CONFIG_IPV6_TUNNEL is not set 298 + CONFIG_NETWORK_SECMARK=y 309 299 CONFIG_NETFILTER=y 310 300 # CONFIG_NETFILTER_DEBUG is not set 311 301 ··· 323 307 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 324 308 CONFIG_NETFILTER_XT_TARGET_MARK=m 325 309 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 310 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 326 311 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 327 312 CONFIG_NETFILTER_XT_MATCH_DCCP=m 328 313 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 331 314 CONFIG_NETFILTER_XT_MATCH_LIMIT=m 332 315 CONFIG_NETFILTER_XT_MATCH_MAC=m 333 316 CONFIG_NETFILTER_XT_MATCH_MARK=m 317 + # CONFIG_NETFILTER_XT_MATCH_POLICY is not set 334 318 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 335 319 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 320 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 336 321 CONFIG_NETFILTER_XT_MATCH_REALM=m 337 322 CONFIG_NETFILTER_XT_MATCH_SCTP=m 323 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 338 324 CONFIG_NETFILTER_XT_MATCH_STRING=m 339 325 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 340 326 ··· 414 394 CONFIG_STANDALONE=y 415 395 CONFIG_PREVENT_FIRMWARE_BUILD=y 416 396 CONFIG_FW_LOADER=m 397 + # CONFIG_SYS_HYPERVISOR is not set 417 398 418 399 # 419 400 # Connector - unified userspace <-> kernelspace linker ··· 645 624 CONFIG_QSEMI_PHY=m 646 625 CONFIG_LXT_PHY=m 647 626 CONFIG_CICADA_PHY=m 627 + CONFIG_VITESSE_PHY=m 628 + CONFIG_SMSC_PHY=m 648 629 649 630 # 650 631 # Ethernet (10 or 100Mbit) ··· 727 704 # CONFIG_CHELSIO_T1 is not set 728 705 # CONFIG_IXGB is not set 729 706 # CONFIG_S2IO is not set 707 + # CONFIG_MYRI10GE is not set 730 708 731 709 # 732 710 # Token Ring devices ··· 753 729 # CONFIG_IPW2100 is not set 754 730 CONFIG_IPW2200=m 755 731 # CONFIG_IPW2200_MONITOR is not set 756 - # CONFIG_IPW_QOS is not set 732 + # CONFIG_IPW2200_QOS is not set 757 733 # CONFIG_IPW2200_DEBUG is not set 758 734 # CONFIG_HERMES is not set 759 735 # CONFIG_ATMEL is not set ··· 762 738 # Prism GT/Duette 802.11(a/b/g) PCI/Cardbus support 763 739 # 764 740 # CONFIG_PRISM54 is not set 741 + # CONFIG_USB_ZD1201 is not set 765 742 # CONFIG_HOSTAP is not set 766 743 # CONFIG_BCM43XX is not set 744 + # CONFIG_ZD1211RW is not set 767 745 CONFIG_NET_WIRELESS=y 768 746 769 747 # ··· 853 827 CONFIG_VT=y 854 828 CONFIG_VT_CONSOLE=y 855 829 CONFIG_HW_CONSOLE=y 830 + CONFIG_VT_HW_CONSOLE_BINDING=y 856 831 # CONFIG_SERIAL_NONSTANDARD is not set 857 832 858 833 # ··· 883 856 # Watchdog Cards 884 857 # 885 858 # CONFIG_WATCHDOG is not set 859 + # CONFIG_HW_RANDOM is not set 886 860 # CONFIG_RTC is not set 887 861 # CONFIG_GEN_RTC is not set 888 862 # CONFIG_DTLK is not set ··· 923 895 # 924 896 CONFIG_HWMON=y 925 897 # CONFIG_HWMON_VID is not set 898 + # CONFIG_SENSORS_ABITUGURU is not set 926 899 # CONFIG_SENSORS_F71805F is not set 927 900 # CONFIG_HWMON_DEBUG_CHIP is not set 928 901 ··· 935 906 # Multimedia devices 936 907 # 937 908 # CONFIG_VIDEO_DEV is not set 909 + CONFIG_VIDEO_V4L2=y 938 910 939 911 # 940 912 # Digital Video Broadcasting Devices ··· 946 916 # 947 917 # Graphics support 948 918 # 919 + # CONFIG_FIRMWARE_EDID is not set 949 920 CONFIG_FB=y 950 921 CONFIG_FB_CFB_FILLRECT=y 951 922 CONFIG_FB_CFB_COPYAREA=y 952 923 CONFIG_FB_CFB_IMAGEBLIT=y 953 924 # CONFIG_FB_MACMODES is not set 954 - CONFIG_FB_FIRMWARE_EDID=y 925 + # CONFIG_FB_BACKLIGHT is not set 955 926 # CONFIG_FB_MODE_HELPERS is not set 956 927 # CONFIG_FB_TILEBLITTING is not set 957 928 # CONFIG_FB_CIRRUS is not set ··· 1076 1045 # CONFIG_USB_PEGASUS is not set 1077 1046 # CONFIG_USB_RTL8150 is not set 1078 1047 # CONFIG_USB_USBNET is not set 1079 - # CONFIG_USB_ZD1201 is not set 1080 1048 CONFIG_USB_MON=y 1081 1049 1082 1050 # ··· 1097 1067 # CONFIG_USB_LEGOTOWER is not set 1098 1068 # CONFIG_USB_LCD is not set 1099 1069 # CONFIG_USB_LED is not set 1070 + # CONFIG_USB_CY7C63 is not set 1100 1071 # CONFIG_USB_CYTHERM is not set 1101 1072 # CONFIG_USB_PHIDGETKIT is not set 1102 1073 # CONFIG_USB_PHIDGETSERVO is not set 1103 1074 # CONFIG_USB_IDMOUSE is not set 1075 + # CONFIG_USB_APPLEDISPLAY is not set 1104 1076 # CONFIG_USB_LD is not set 1105 1077 1106 1078 # ··· 1147 1115 # CONFIG_RTC_CLASS is not set 1148 1116 1149 1117 # 1118 + # DMA Engine support 1119 + # 1120 + # CONFIG_DMA_ENGINE is not set 1121 + 1122 + # 1123 + # DMA Clients 1124 + # 1125 + 1126 + # 1127 + # DMA Devices 1128 + # 1129 + 1130 + # 1150 1131 # File systems 1151 1132 # 1152 1133 CONFIG_EXT2_FS=y ··· 1179 1134 # CONFIG_JFS_FS is not set 1180 1135 # CONFIG_FS_POSIX_ACL is not set 1181 1136 CONFIG_XFS_FS=m 1182 - CONFIG_XFS_EXPORT=y 1183 1137 # CONFIG_XFS_QUOTA is not set 1184 1138 # CONFIG_XFS_SECURITY is not set 1185 1139 # CONFIG_XFS_POSIX_ACL is not set ··· 1187 1143 # CONFIG_MINIX_FS is not set 1188 1144 # CONFIG_ROMFS_FS is not set 1189 1145 CONFIG_INOTIFY=y 1146 + CONFIG_INOTIFY_USER=y 1190 1147 # CONFIG_QUOTA is not set 1191 1148 # CONFIG_DNOTIFY is not set 1192 1149 # CONFIG_AUTOFS_FS is not set ··· 1238 1193 CONFIG_JFFS2_FS_DEBUG=0 1239 1194 CONFIG_JFFS2_FS_WRITEBUFFER=y 1240 1195 # CONFIG_JFFS2_SUMMARY is not set 1196 + # CONFIG_JFFS2_FS_XATTR is not set 1241 1197 # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set 1242 1198 CONFIG_JFFS2_ZLIB=y 1243 1199 CONFIG_JFFS2_RTIME=y ··· 1272 1226 CONFIG_SMB_FS=m 1273 1227 # CONFIG_SMB_NLS_DEFAULT is not set 1274 1228 # CONFIG_CIFS is not set 1229 + # CONFIG_CIFS_DEBUG2 is not set 1275 1230 # CONFIG_NCP_FS is not set 1276 1231 # CONFIG_CODA_FS is not set 1277 1232 # CONFIG_AFS_FS is not set ··· 1338 1291 # 1339 1292 # CONFIG_PRINTK_TIME is not set 1340 1293 # CONFIG_MAGIC_SYSRQ is not set 1294 + # CONFIG_UNUSED_SYMBOLS is not set 1341 1295 # CONFIG_DEBUG_KERNEL is not set 1342 1296 CONFIG_LOG_BUF_SHIFT=14 1343 1297 # CONFIG_DEBUG_FS is not set
+67 -7
arch/mips/configs/rm200_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:16 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:19 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 68 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 66 CONFIG_GENERIC_HWEIGHT=y 70 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 71 69 CONFIG_ARC=y 72 70 CONFIG_ARCH_MAY_HAVE_PC_FDC=y 73 71 CONFIG_DMA_NONCOHERENT=y ··· 110 106 # CONFIG_CPU_RM9000 is not set 111 107 # CONFIG_CPU_SB1 is not set 112 108 CONFIG_SYS_HAS_CPU_R4X00=y 109 + CONFIG_SYS_HAS_CPU_R5000=y 113 110 CONFIG_SYS_SUPPORTS_32BIT_KERNEL=y 114 111 CONFIG_SYS_SUPPORTS_64BIT_KERNEL=y 115 112 CONFIG_CPU_SUPPORTS_32BIT_KERNEL=y ··· 125 120 # CONFIG_PAGE_SIZE_8KB is not set 126 121 # CONFIG_PAGE_SIZE_16KB is not set 127 122 # CONFIG_PAGE_SIZE_64KB is not set 128 - # CONFIG_MIPS_MT is not set 123 + CONFIG_BOARD_SCACHE=y 124 + CONFIG_R5000_CPU_SCACHE=y 125 + CONFIG_MIPS_MT_DISABLED=y 126 + # CONFIG_MIPS_MT_SMTC is not set 127 + # CONFIG_MIPS_MT_SMP is not set 128 + # CONFIG_MIPS_VPE_LOADER is not set 129 129 # CONFIG_64BIT_PHYS_ADDR is not set 130 130 CONFIG_CPU_HAS_LLSC=y 131 131 CONFIG_CPU_HAS_SYNC=y ··· 146 136 CONFIG_FLAT_NODE_MEM_MAP=y 147 137 # CONFIG_SPARSEMEM_STATIC is not set 148 138 CONFIG_SPLIT_PTLOCK_CPUS=4 139 + # CONFIG_RESOURCES_64BIT is not set 149 140 # CONFIG_HZ_48 is not set 150 141 # CONFIG_HZ_100 is not set 151 142 # CONFIG_HZ_128 is not set ··· 159 148 # CONFIG_PREEMPT_NONE is not set 160 149 CONFIG_PREEMPT_VOLUNTARY=y 161 150 # CONFIG_PREEMPT is not set 151 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 162 152 163 153 # 164 154 # Code maturity level options ··· 193 181 CONFIG_BUG=y 194 182 CONFIG_ELF_CORE=y 195 183 CONFIG_BASE_FULL=y 184 + CONFIG_RT_MUTEXES=y 196 185 CONFIG_FUTEX=y 197 186 CONFIG_EPOLL=y 198 187 CONFIG_SHMEM=y 199 188 CONFIG_SLAB=y 189 + CONFIG_VM_EVENT_COUNTERS=y 200 190 # CONFIG_TINY_SHMEM is not set 201 191 CONFIG_BASE_SMALL=0 202 192 # CONFIG_SLOB is not set ··· 294 280 # CONFIG_INET_IPCOMP is not set 295 281 # CONFIG_INET_XFRM_TUNNEL is not set 296 282 CONFIG_INET_TUNNEL=m 283 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 284 + CONFIG_INET_XFRM_MODE_TUNNEL=m 297 285 CONFIG_INET_DIAG=y 298 286 CONFIG_INET_TCP_DIAG=y 299 287 # CONFIG_TCP_CONG_ADVANCED is not set ··· 314 298 CONFIG_INET6_IPCOMP=m 315 299 CONFIG_INET6_XFRM_TUNNEL=m 316 300 CONFIG_INET6_TUNNEL=m 301 + CONFIG_INET6_XFRM_MODE_TRANSPORT=m 302 + CONFIG_INET6_XFRM_MODE_TUNNEL=m 317 303 CONFIG_IPV6_TUNNEL=m 304 + CONFIG_NETWORK_SECMARK=y 318 305 CONFIG_NETFILTER=y 319 306 # CONFIG_NETFILTER_DEBUG is not set 320 307 CONFIG_BRIDGE_NETFILTER=y ··· 334 315 CONFIG_NETFILTER_XT_TARGET_MARK=m 335 316 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 336 317 CONFIG_NETFILTER_XT_TARGET_NOTRACK=m 318 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 319 + # CONFIG_NETFILTER_XT_TARGET_CONNSECMARK is not set 337 320 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 338 321 CONFIG_NETFILTER_XT_MATCH_CONNMARK=m 339 322 CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m ··· 350 329 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 351 330 CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m 352 331 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 332 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 353 333 CONFIG_NETFILTER_XT_MATCH_REALM=m 354 334 CONFIG_NETFILTER_XT_MATCH_SCTP=m 355 335 CONFIG_NETFILTER_XT_MATCH_STATE=m 336 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 356 337 CONFIG_NETFILTER_XT_MATCH_STRING=m 357 338 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 358 339 ··· 364 341 CONFIG_IP_NF_CONNTRACK=m 365 342 # CONFIG_IP_NF_CT_ACCT is not set 366 343 CONFIG_IP_NF_CONNTRACK_MARK=y 344 + CONFIG_IP_NF_CONNTRACK_SECMARK=y 367 345 CONFIG_IP_NF_CONNTRACK_EVENTS=y 368 346 CONFIG_IP_NF_CONNTRACK_NETLINK=m 369 347 CONFIG_IP_NF_CT_PROTO_SCTP=m ··· 375 351 CONFIG_IP_NF_AMANDA=m 376 352 CONFIG_IP_NF_PPTP=m 377 353 CONFIG_IP_NF_H323=m 354 + CONFIG_IP_NF_SIP=m 378 355 CONFIG_IP_NF_QUEUE=m 379 356 CONFIG_IP_NF_IPTABLES=m 380 357 CONFIG_IP_NF_MATCH_IPRANGE=m ··· 406 381 CONFIG_IP_NF_NAT_AMANDA=m 407 382 CONFIG_IP_NF_NAT_PPTP=m 408 383 CONFIG_IP_NF_NAT_H323=m 384 + CONFIG_IP_NF_NAT_SIP=m 409 385 CONFIG_IP_NF_MANGLE=m 410 386 CONFIG_IP_NF_TARGET_TOS=m 411 387 CONFIG_IP_NF_TARGET_ECN=m ··· 585 559 CONFIG_STANDALONE=y 586 560 CONFIG_PREVENT_FIRMWARE_BUILD=y 587 561 CONFIG_FW_LOADER=y 562 + # CONFIG_SYS_HYPERVISOR is not set 588 563 589 564 # 590 565 # Connector - unified userspace <-> kernelspace linker ··· 607 580 # CONFIG_PARPORT_PC_SUPERIO is not set 608 581 CONFIG_PARPORT_NOT_PC=y 609 582 # CONFIG_PARPORT_GSC is not set 583 + # CONFIG_PARPORT_AX88796 is not set 610 584 CONFIG_PARPORT_1284=y 611 585 612 586 # ··· 727 699 # CONFIG_MEGARAID_LEGACY is not set 728 700 # CONFIG_MEGARAID_SAS is not set 729 701 # CONFIG_SCSI_SATA is not set 702 + # CONFIG_SCSI_HPTIOP is not set 730 703 # CONFIG_SCSI_DMX3191D is not set 731 704 # CONFIG_SCSI_DTC3280 is not set 732 705 # CONFIG_SCSI_FUTURE_DOMAIN is not set ··· 774 745 CONFIG_MD_RAID0=m 775 746 CONFIG_MD_RAID1=m 776 747 CONFIG_MD_RAID10=m 777 - CONFIG_MD_RAID5=m 748 + CONFIG_MD_RAID456=m 778 749 CONFIG_MD_RAID5_RESHAPE=y 779 - # CONFIG_MD_RAID6 is not set 780 750 CONFIG_MD_MULTIPATH=m 781 751 CONFIG_MD_FAULTY=m 782 752 CONFIG_BLK_DEV_DM=m ··· 831 803 CONFIG_QSEMI_PHY=m 832 804 CONFIG_LXT_PHY=m 833 805 CONFIG_CICADA_PHY=m 806 + CONFIG_VITESSE_PHY=m 807 + CONFIG_SMSC_PHY=m 834 808 835 809 # 836 810 # Ethernet (10 or 100Mbit) ··· 914 884 # CONFIG_CHELSIO_T1 is not set 915 885 # CONFIG_IXGB is not set 916 886 # CONFIG_S2IO is not set 887 + # CONFIG_MYRI10GE is not set 917 888 918 889 # 919 890 # Token Ring devices ··· 1006 975 CONFIG_VT=y 1007 976 CONFIG_VT_CONSOLE=y 1008 977 CONFIG_HW_CONSOLE=y 978 + CONFIG_VT_HW_CONSOLE_BINDING=y 1009 979 # CONFIG_SERIAL_NONSTANDARD is not set 1010 980 1011 981 # ··· 1044 1012 # Watchdog Cards 1045 1013 # 1046 1014 # CONFIG_WATCHDOG is not set 1015 + # CONFIG_HW_RANDOM is not set 1047 1016 CONFIG_RTC=m 1048 1017 # CONFIG_GEN_RTC is not set 1049 1018 # CONFIG_DTLK is not set ··· 1078 1045 # Dallas's 1-wire bus 1079 1046 # 1080 1047 CONFIG_W1=m 1048 + CONFIG_W1_CON=y 1081 1049 1082 1050 # 1083 1051 # 1-wire Bus Masters 1084 1052 # 1085 1053 # CONFIG_W1_MASTER_MATROX is not set 1086 - # CONFIG_W1_MASTER_DS9490 is not set 1054 + # CONFIG_W1_MASTER_DS2490 is not set 1087 1055 1088 1056 # 1089 1057 # 1-wire Slaves ··· 1107 1073 # Multimedia devices 1108 1074 # 1109 1075 # CONFIG_VIDEO_DEV is not set 1076 + CONFIG_VIDEO_V4L2=y 1110 1077 1111 1078 # 1112 1079 # Digital Video Broadcasting Devices ··· 1118 1083 # 1119 1084 # Graphics support 1120 1085 # 1086 + # CONFIG_FIRMWARE_EDID is not set 1121 1087 # CONFIG_FB is not set 1122 1088 1123 1089 # ··· 1157 1121 CONFIG_USB_EHCI_HCD=m 1158 1122 # CONFIG_USB_EHCI_SPLIT_ISO is not set 1159 1123 # CONFIG_USB_EHCI_ROOT_HUB_TT is not set 1124 + # CONFIG_USB_EHCI_TT_NEWSCHED is not set 1160 1125 # CONFIG_USB_ISP116X_HCD is not set 1161 1126 CONFIG_USB_OHCI_HCD=m 1162 1127 # CONFIG_USB_OHCI_BIG_ENDIAN is not set ··· 1256 1219 CONFIG_USB_SERIAL_GENERIC=y 1257 1220 CONFIG_USB_SERIAL_AIRPRIME=m 1258 1221 CONFIG_USB_SERIAL_ANYDATA=m 1222 + # CONFIG_USB_SERIAL_ARK3116 is not set 1259 1223 CONFIG_USB_SERIAL_BELKIN=m 1260 1224 CONFIG_USB_SERIAL_WHITEHEAT=m 1261 1225 CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m ··· 1297 1259 # CONFIG_USB_SERIAL_TI is not set 1298 1260 CONFIG_USB_SERIAL_CYBERJACK=m 1299 1261 CONFIG_USB_SERIAL_XIRCOM=m 1262 + # CONFIG_USB_SERIAL_OPTION is not set 1300 1263 CONFIG_USB_SERIAL_OMNINET=m 1301 1264 CONFIG_USB_EZUSB=y 1302 1265 ··· 1311 1272 CONFIG_USB_LEGOTOWER=m 1312 1273 CONFIG_USB_LCD=m 1313 1274 CONFIG_USB_LED=m 1275 + # CONFIG_USB_CY7C63 is not set 1314 1276 CONFIG_USB_CYTHERM=m 1315 1277 CONFIG_USB_PHIDGETKIT=m 1316 1278 CONFIG_USB_PHIDGETSERVO=m 1317 1279 # CONFIG_USB_IDMOUSE is not set 1280 + # CONFIG_USB_APPLEDISPLAY is not set 1318 1281 CONFIG_USB_SISUSBVGA=m 1319 1282 # CONFIG_USB_SISUSBVGA_CON is not set 1320 1283 CONFIG_USB_LD=m ··· 1364 1323 # CONFIG_RTC_CLASS is not set 1365 1324 1366 1325 # 1326 + # DMA Engine support 1327 + # 1328 + # CONFIG_DMA_ENGINE is not set 1329 + 1330 + # 1331 + # DMA Clients 1332 + # 1333 + 1334 + # 1335 + # DMA Devices 1336 + # 1337 + 1338 + # 1367 1339 # File systems 1368 1340 # 1369 1341 CONFIG_EXT2_FS=m ··· 1398 1344 # CONFIG_JFS_FS is not set 1399 1345 CONFIG_FS_POSIX_ACL=y 1400 1346 CONFIG_XFS_FS=m 1401 - CONFIG_XFS_EXPORT=y 1402 1347 CONFIG_XFS_QUOTA=y 1403 1348 CONFIG_XFS_SECURITY=y 1404 1349 # CONFIG_XFS_POSIX_ACL is not set ··· 1406 1353 CONFIG_MINIX_FS=m 1407 1354 CONFIG_ROMFS_FS=m 1408 1355 CONFIG_INOTIFY=y 1356 + CONFIG_INOTIFY_USER=y 1409 1357 # CONFIG_QUOTA is not set 1410 1358 CONFIG_QUOTACTL=y 1411 1359 CONFIG_DNOTIFY=y ··· 1465 1411 CONFIG_QNX4FS_FS=m 1466 1412 CONFIG_SYSV_FS=m 1467 1413 CONFIG_UFS_FS=m 1414 + # CONFIG_UFS_FS_WRITE is not set 1415 + # CONFIG_UFS_DEBUG is not set 1468 1416 1469 1417 # 1470 1418 # Network File Systems ··· 1493 1437 # CONFIG_SMB_NLS_DEFAULT is not set 1494 1438 CONFIG_CIFS=m 1495 1439 # CONFIG_CIFS_STATS is not set 1440 + # CONFIG_CIFS_WEAK_PW_HASH is not set 1496 1441 # CONFIG_CIFS_XATTR is not set 1442 + # CONFIG_CIFS_DEBUG2 is not set 1497 1443 # CONFIG_CIFS_EXPERIMENTAL is not set 1498 1444 CONFIG_NCP_FS=m 1499 1445 CONFIG_NCPFS_PACKET_SIGNING=y ··· 1587 1529 # 1588 1530 # CONFIG_PRINTK_TIME is not set 1589 1531 # CONFIG_MAGIC_SYSRQ is not set 1532 + # CONFIG_UNUSED_SYMBOLS is not set 1590 1533 # CONFIG_DEBUG_KERNEL is not set 1591 1534 CONFIG_LOG_BUF_SHIFT=14 1592 1535 # CONFIG_DEBUG_FS is not set ··· 1647 1588 CONFIG_TEXTSEARCH_KMP=m 1648 1589 CONFIG_TEXTSEARCH_BM=m 1649 1590 CONFIG_TEXTSEARCH_FSM=m 1591 + CONFIG_PLIST=y
+46 -5
arch/mips/configs/sb1250-swarm_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:17 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:19 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 85 82 CONFIG_GENERIC_FIND_NEXT_BIT=y 86 83 CONFIG_GENERIC_HWEIGHT=y 87 84 CONFIG_GENERIC_CALIBRATE_DELAY=y 85 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 88 86 CONFIG_DMA_COHERENT=y 89 87 CONFIG_CPU_BIG_ENDIAN=y 90 88 # CONFIG_CPU_LITTLE_ENDIAN is not set ··· 134 130 # CONFIG_PAGE_SIZE_64KB is not set 135 131 # CONFIG_SIBYTE_DMA_PAGEOPS is not set 136 132 CONFIG_CPU_HAS_PREFETCH=y 137 - # CONFIG_MIPS_MT is not set 133 + CONFIG_MIPS_MT_DISABLED=y 134 + # CONFIG_MIPS_MT_SMTC is not set 135 + # CONFIG_MIPS_MT_SMP is not set 136 + # CONFIG_MIPS_VPE_LOADER is not set 138 137 CONFIG_SB1_PASS_1_WORKAROUNDS=y 139 138 CONFIG_CPU_HAS_LLSC=y 140 139 CONFIG_CPU_HAS_SYNC=y 141 140 CONFIG_GENERIC_HARDIRQS=y 142 141 CONFIG_GENERIC_IRQ_PROBE=y 142 + CONFIG_IRQ_PER_CPU=y 143 143 CONFIG_CPU_SUPPORTS_HIGHMEM=y 144 144 CONFIG_SYS_SUPPORTS_HIGHMEM=y 145 145 CONFIG_ARCH_FLATMEM_ENABLE=y ··· 155 147 CONFIG_FLAT_NODE_MEM_MAP=y 156 148 # CONFIG_SPARSEMEM_STATIC is not set 157 149 CONFIG_SPLIT_PTLOCK_CPUS=4 150 + CONFIG_RESOURCES_64BIT=y 151 + CONFIG_SMP=y 152 + CONFIG_SYS_SUPPORTS_SMP=y 153 + CONFIG_NR_CPUS=2 158 154 # CONFIG_HZ_48 is not set 159 155 # CONFIG_HZ_100 is not set 160 156 # CONFIG_HZ_128 is not set ··· 168 156 # CONFIG_HZ_1024 is not set 169 157 CONFIG_SYS_SUPPORTS_ARBIT_HZ=y 170 158 CONFIG_HZ=1000 171 - CONFIG_SMP=y 172 - CONFIG_NR_CPUS=2 173 159 CONFIG_PREEMPT_NONE=y 174 160 # CONFIG_PREEMPT_VOLUNTARY is not set 175 161 # CONFIG_PREEMPT is not set 176 162 CONFIG_PREEMPT_BKL=y 163 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 177 164 178 165 # 179 166 # Code maturity level options ··· 205 194 CONFIG_BUG=y 206 195 CONFIG_ELF_CORE=y 207 196 CONFIG_BASE_FULL=y 197 + CONFIG_RT_MUTEXES=y 208 198 CONFIG_FUTEX=y 209 199 CONFIG_EPOLL=y 210 200 CONFIG_SHMEM=y 211 201 CONFIG_SLAB=y 202 + CONFIG_VM_EVENT_COUNTERS=y 212 203 # CONFIG_TINY_SHMEM is not set 213 204 CONFIG_BASE_SMALL=0 214 205 # CONFIG_SLOB is not set ··· 305 292 # CONFIG_INET_IPCOMP is not set 306 293 # CONFIG_INET_XFRM_TUNNEL is not set 307 294 # CONFIG_INET_TUNNEL is not set 295 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 296 + CONFIG_INET_XFRM_MODE_TUNNEL=m 308 297 CONFIG_INET_DIAG=y 309 298 CONFIG_INET_TCP_DIAG=y 310 299 # CONFIG_TCP_CONG_ADVANCED is not set ··· 314 299 # CONFIG_IPV6 is not set 315 300 # CONFIG_INET6_XFRM_TUNNEL is not set 316 301 # CONFIG_INET6_TUNNEL is not set 302 + CONFIG_NETWORK_SECMARK=y 317 303 # CONFIG_NETFILTER is not set 318 304 319 305 # ··· 374 358 CONFIG_STANDALONE=y 375 359 CONFIG_PREVENT_FIRMWARE_BUILD=y 376 360 CONFIG_FW_LOADER=m 361 + # CONFIG_SYS_HYPERVISOR is not set 377 362 378 363 # 379 364 # Connector - unified userspace <-> kernelspace linker ··· 496 479 CONFIG_QSEMI_PHY=m 497 480 CONFIG_LXT_PHY=m 498 481 CONFIG_CICADA_PHY=m 482 + CONFIG_VITESSE_PHY=m 483 + CONFIG_SMSC_PHY=m 499 484 500 485 # 501 486 # Ethernet (10 or 100Mbit) ··· 541 522 # CONFIG_CHELSIO_T1 is not set 542 523 # CONFIG_IXGB is not set 543 524 # CONFIG_S2IO is not set 525 + # CONFIG_MYRI10GE is not set 544 526 545 527 # 546 528 # Token Ring devices ··· 609 589 # CONFIG_N_HDLC is not set 610 590 # CONFIG_SPECIALIX is not set 611 591 # CONFIG_SX is not set 592 + # CONFIG_RIO is not set 612 593 # CONFIG_STALDRV is not set 613 594 CONFIG_SIBYTE_SB1250_DUART=y 614 595 CONFIG_SIBYTE_SB1250_DUART_CONSOLE=y ··· 636 615 # Watchdog Cards 637 616 # 638 617 # CONFIG_WATCHDOG is not set 618 + # CONFIG_HW_RANDOM is not set 639 619 # CONFIG_RTC is not set 640 620 # CONFIG_GEN_RTC is not set 641 621 # CONFIG_DTLK is not set ··· 685 663 # Multimedia devices 686 664 # 687 665 # CONFIG_VIDEO_DEV is not set 666 + CONFIG_VIDEO_V4L2=y 688 667 689 668 # 690 669 # Digital Video Broadcasting Devices ··· 695 672 # 696 673 # Graphics support 697 674 # 675 + # CONFIG_FIRMWARE_EDID is not set 698 676 # CONFIG_FB is not set 699 677 700 678 # ··· 753 729 # CONFIG_RTC_CLASS is not set 754 730 755 731 # 732 + # DMA Engine support 733 + # 734 + # CONFIG_DMA_ENGINE is not set 735 + 736 + # 737 + # DMA Clients 738 + # 739 + 740 + # 741 + # DMA Devices 742 + # 743 + 744 + # 756 745 # File systems 757 746 # 758 747 CONFIG_EXT2_FS=y ··· 783 746 # CONFIG_MINIX_FS is not set 784 747 # CONFIG_ROMFS_FS is not set 785 748 CONFIG_INOTIFY=y 749 + CONFIG_INOTIFY_USER=y 786 750 # CONFIG_QUOTA is not set 787 751 CONFIG_DNOTIFY=y 788 752 # CONFIG_AUTOFS_FS is not set ··· 849 811 # CONFIG_RPCSEC_GSS_SPKM3 is not set 850 812 # CONFIG_SMB_FS is not set 851 813 # CONFIG_CIFS is not set 814 + # CONFIG_CIFS_DEBUG2 is not set 852 815 # CONFIG_NCP_FS is not set 853 816 # CONFIG_CODA_FS is not set 854 817 # CONFIG_AFS_FS is not set ··· 876 837 # 877 838 # CONFIG_PRINTK_TIME is not set 878 839 # CONFIG_MAGIC_SYSRQ is not set 840 + # CONFIG_UNUSED_SYMBOLS is not set 879 841 # CONFIG_DEBUG_KERNEL is not set 880 842 CONFIG_LOG_BUF_SHIFT=15 881 843 # CONFIG_DEBUG_FS is not set ··· 933 893 CONFIG_LIBCRC32C=m 934 894 CONFIG_ZLIB_INFLATE=m 935 895 CONFIG_ZLIB_DEFLATE=m 896 + CONFIG_PLIST=y
+34 -4
arch/mips/configs/sead_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:17 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:20 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 CONFIG_MIPS_SEAD=y 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 68 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 66 CONFIG_GENERIC_HWEIGHT=y 70 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 71 69 CONFIG_DMA_NONCOHERENT=y 72 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 71 # CONFIG_CPU_BIG_ENDIAN is not set ··· 120 116 # CONFIG_PAGE_SIZE_16KB is not set 121 117 # CONFIG_PAGE_SIZE_64KB is not set 122 118 CONFIG_CPU_HAS_PREFETCH=y 123 - # CONFIG_MIPS_MT is not set 119 + CONFIG_MIPS_MT_DISABLED=y 120 + # CONFIG_MIPS_MT_SMTC is not set 121 + # CONFIG_MIPS_MT_SMP is not set 122 + # CONFIG_MIPS_VPE_LOADER is not set 124 123 # CONFIG_64BIT_PHYS_ADDR is not set 125 124 CONFIG_CPU_HAS_LLSC=y 126 125 CONFIG_CPU_HAS_SYNC=y ··· 139 132 CONFIG_FLAT_NODE_MEM_MAP=y 140 133 # CONFIG_SPARSEMEM_STATIC is not set 141 134 CONFIG_SPLIT_PTLOCK_CPUS=4 135 + # CONFIG_RESOURCES_64BIT is not set 142 136 # CONFIG_HZ_48 is not set 143 137 # CONFIG_HZ_100 is not set 144 138 # CONFIG_HZ_128 is not set ··· 152 144 CONFIG_PREEMPT_NONE=y 153 145 # CONFIG_PREEMPT_VOLUNTARY is not set 154 146 # CONFIG_PREEMPT is not set 147 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 155 148 156 149 # 157 150 # Code maturity level options ··· 182 173 CONFIG_BUG=y 183 174 CONFIG_ELF_CORE=y 184 175 CONFIG_BASE_FULL=y 176 + CONFIG_RT_MUTEXES=y 185 177 CONFIG_FUTEX=y 186 178 CONFIG_EPOLL=y 187 179 CONFIG_SHMEM=y 188 180 CONFIG_SLAB=y 181 + CONFIG_VM_EVENT_COUNTERS=y 189 182 # CONFIG_TINY_SHMEM is not set 190 183 CONFIG_BASE_SMALL=0 191 184 # CONFIG_SLOB is not set ··· 253 242 CONFIG_STANDALONE=y 254 243 CONFIG_PREVENT_FIRMWARE_BUILD=y 255 244 # CONFIG_FW_LOADER is not set 245 + # CONFIG_SYS_HYPERVISOR is not set 256 246 257 247 # 258 248 # Connector - unified userspace <-> kernelspace linker ··· 367 355 # Watchdog Cards 368 356 # 369 357 # CONFIG_WATCHDOG is not set 358 + # CONFIG_HW_RANDOM is not set 370 359 # CONFIG_RTC is not set 371 360 # CONFIG_GEN_RTC is not set 372 361 # CONFIG_DTLK is not set ··· 398 385 # 399 386 # Dallas's 1-wire bus 400 387 # 401 - # CONFIG_W1 is not set 402 388 403 389 # 404 390 # Hardware Monitoring support ··· 413 401 # Multimedia devices 414 402 # 415 403 # CONFIG_VIDEO_DEV is not set 404 + CONFIG_VIDEO_V4L2=y 416 405 417 406 # 418 407 # Digital Video Broadcasting Devices ··· 422 409 # 423 410 # Graphics support 424 411 # 412 + # CONFIG_FIRMWARE_EDID is not set 425 413 # CONFIG_FB is not set 426 414 427 415 # ··· 478 464 # CONFIG_RTC_CLASS is not set 479 465 480 466 # 467 + # DMA Engine support 468 + # 469 + # CONFIG_DMA_ENGINE is not set 470 + 471 + # 472 + # DMA Clients 473 + # 474 + 475 + # 476 + # DMA Devices 477 + # 478 + 479 + # 481 480 # File systems 482 481 # 483 482 CONFIG_EXT2_FS=y ··· 504 477 # CONFIG_MINIX_FS is not set 505 478 # CONFIG_ROMFS_FS is not set 506 479 CONFIG_INOTIFY=y 480 + CONFIG_INOTIFY_USER=y 507 481 # CONFIG_QUOTA is not set 508 482 CONFIG_DNOTIFY=y 509 483 # CONFIG_AUTOFS_FS is not set ··· 584 556 # 585 557 # CONFIG_PRINTK_TIME is not set 586 558 # CONFIG_MAGIC_SYSRQ is not set 559 + # CONFIG_UNUSED_SYMBOLS is not set 587 560 # CONFIG_DEBUG_KERNEL is not set 588 561 CONFIG_LOG_BUF_SHIFT=14 589 562 # CONFIG_DEBUG_FS is not set ··· 614 585 CONFIG_CRC16=y 615 586 # CONFIG_CRC32 is not set 616 587 # CONFIG_LIBCRC32C is not set 588 + CONFIG_PLIST=y
+52 -3
arch/mips/configs/tb0226_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Tue Apr 25 00:08:41 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:20 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 CONFIG_MACH_VR41XX=y 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 78 75 CONFIG_GENERIC_FIND_NEXT_BIT=y 79 76 CONFIG_GENERIC_HWEIGHT=y 80 77 CONFIG_GENERIC_CALIBRATE_DELAY=y 78 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 81 79 CONFIG_DMA_NONCOHERENT=y 82 80 CONFIG_DMA_NEED_PCI_MAP_STATE=y 83 81 # CONFIG_CPU_BIG_ENDIAN is not set ··· 123 119 # CONFIG_PAGE_SIZE_8KB is not set 124 120 # CONFIG_PAGE_SIZE_16KB is not set 125 121 # CONFIG_PAGE_SIZE_64KB is not set 126 - # CONFIG_MIPS_MT is not set 122 + CONFIG_MIPS_MT_DISABLED=y 123 + # CONFIG_MIPS_MT_SMTC is not set 124 + # CONFIG_MIPS_MT_SMP is not set 125 + # CONFIG_MIPS_VPE_LOADER is not set 127 126 CONFIG_CPU_HAS_SYNC=y 128 127 CONFIG_GENERIC_HARDIRQS=y 129 128 CONFIG_GENERIC_IRQ_PROBE=y ··· 139 132 CONFIG_FLAT_NODE_MEM_MAP=y 140 133 # CONFIG_SPARSEMEM_STATIC is not set 141 134 CONFIG_SPLIT_PTLOCK_CPUS=4 135 + # CONFIG_RESOURCES_64BIT is not set 142 136 # CONFIG_HZ_48 is not set 143 137 # CONFIG_HZ_100 is not set 144 138 # CONFIG_HZ_128 is not set ··· 152 144 CONFIG_PREEMPT_NONE=y 153 145 # CONFIG_PREEMPT_VOLUNTARY is not set 154 146 # CONFIG_PREEMPT is not set 147 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 155 148 156 149 # 157 150 # Code maturity level options ··· 184 175 CONFIG_BUG=y 185 176 CONFIG_ELF_CORE=y 186 177 CONFIG_BASE_FULL=y 178 + CONFIG_RT_MUTEXES=y 187 179 CONFIG_FUTEX=y 188 180 CONFIG_EPOLL=y 189 181 CONFIG_SHMEM=y 190 182 CONFIG_SLAB=y 183 + CONFIG_VM_EVENT_COUNTERS=y 191 184 # CONFIG_TINY_SHMEM is not set 192 185 CONFIG_BASE_SMALL=0 193 186 # CONFIG_SLOB is not set ··· 260 249 CONFIG_PACKET=y 261 250 # CONFIG_PACKET_MMAP is not set 262 251 CONFIG_UNIX=y 252 + CONFIG_XFRM=y 253 + # CONFIG_XFRM_USER is not set 263 254 # CONFIG_NET_KEY is not set 264 255 CONFIG_INET=y 265 256 CONFIG_IP_MULTICAST=y ··· 287 274 # CONFIG_INET_IPCOMP is not set 288 275 # CONFIG_INET_XFRM_TUNNEL is not set 289 276 # CONFIG_INET_TUNNEL is not set 277 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 278 + CONFIG_INET_XFRM_MODE_TUNNEL=m 290 279 CONFIG_INET_DIAG=y 291 280 CONFIG_INET_TCP_DIAG=y 292 281 # CONFIG_TCP_CONG_ADVANCED is not set ··· 296 281 # CONFIG_IPV6 is not set 297 282 # CONFIG_INET6_XFRM_TUNNEL is not set 298 283 # CONFIG_INET6_TUNNEL is not set 284 + CONFIG_NETWORK_SECMARK=y 299 285 # CONFIG_NETFILTER is not set 300 286 301 287 # ··· 350 334 CONFIG_STANDALONE=y 351 335 CONFIG_PREVENT_FIRMWARE_BUILD=y 352 336 CONFIG_FW_LOADER=y 337 + # CONFIG_SYS_HYPERVISOR is not set 353 338 354 339 # 355 340 # Connector - unified userspace <-> kernelspace linker ··· 444 427 # CONFIG_MEGARAID_LEGACY is not set 445 428 # CONFIG_MEGARAID_SAS is not set 446 429 # CONFIG_SCSI_SATA is not set 430 + # CONFIG_SCSI_HPTIOP is not set 447 431 # CONFIG_SCSI_DMX3191D is not set 448 432 # CONFIG_SCSI_FUTURE_DOMAIN is not set 449 433 # CONFIG_SCSI_IPS is not set ··· 510 492 CONFIG_QSEMI_PHY=m 511 493 CONFIG_LXT_PHY=m 512 494 CONFIG_CICADA_PHY=m 495 + CONFIG_VITESSE_PHY=m 496 + CONFIG_SMSC_PHY=m 513 497 514 498 # 515 499 # Ethernet (10 or 100Mbit) ··· 574 554 # CONFIG_CHELSIO_T1 is not set 575 555 # CONFIG_IXGB is not set 576 556 # CONFIG_S2IO is not set 557 + # CONFIG_MYRI10GE is not set 577 558 578 559 # 579 560 # Token Ring devices ··· 645 624 CONFIG_VT=y 646 625 CONFIG_VT_CONSOLE=y 647 626 CONFIG_HW_CONSOLE=y 627 + CONFIG_VT_HW_CONSOLE_BINDING=y 648 628 # CONFIG_SERIAL_NONSTANDARD is not set 649 629 650 630 # ··· 674 652 # Watchdog Cards 675 653 # 676 654 # CONFIG_WATCHDOG is not set 655 + # CONFIG_HW_RANDOM is not set 677 656 # CONFIG_RTC is not set 678 657 # CONFIG_GEN_RTC is not set 679 658 # CONFIG_DTLK is not set ··· 725 702 # Multimedia devices 726 703 # 727 704 # CONFIG_VIDEO_DEV is not set 705 + CONFIG_VIDEO_V4L2=y 728 706 729 707 # 730 708 # Digital Video Broadcasting Devices ··· 736 712 # 737 713 # Graphics support 738 714 # 715 + # CONFIG_FIRMWARE_EDID is not set 739 716 # CONFIG_FB is not set 740 717 741 718 # ··· 773 748 CONFIG_USB_EHCI_HCD=y 774 749 # CONFIG_USB_EHCI_SPLIT_ISO is not set 775 750 # CONFIG_USB_EHCI_ROOT_HUB_TT is not set 751 + # CONFIG_USB_EHCI_TT_NEWSCHED is not set 776 752 # CONFIG_USB_ISP116X_HCD is not set 777 753 CONFIG_USB_OHCI_HCD=y 778 754 # CONFIG_USB_OHCI_BIG_ENDIAN is not set ··· 864 838 # CONFIG_USB_LEGOTOWER is not set 865 839 # CONFIG_USB_LCD is not set 866 840 # CONFIG_USB_LED is not set 841 + # CONFIG_USB_CY7C63 is not set 867 842 # CONFIG_USB_CYTHERM is not set 868 843 # CONFIG_USB_PHIDGETKIT is not set 869 844 # CONFIG_USB_PHIDGETSERVO is not set 870 845 # CONFIG_USB_IDMOUSE is not set 846 + # CONFIG_USB_APPLEDISPLAY is not set 871 847 # CONFIG_USB_SISUSBVGA is not set 872 848 # CONFIG_USB_LD is not set 873 849 # CONFIG_USB_TEST is not set ··· 924 896 CONFIG_RTC_INTF_SYSFS=y 925 897 CONFIG_RTC_INTF_PROC=y 926 898 CONFIG_RTC_INTF_DEV=y 899 + # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set 927 900 928 901 # 929 902 # RTC drivers 930 903 # 904 + # CONFIG_RTC_DRV_DS1553 is not set 905 + # CONFIG_RTC_DRV_DS1742 is not set 931 906 # CONFIG_RTC_DRV_M48T86 is not set 932 907 CONFIG_RTC_DRV_VR41XX=y 933 908 # CONFIG_RTC_DRV_TEST is not set 909 + # CONFIG_RTC_DRV_V3020 is not set 910 + 911 + # 912 + # DMA Engine support 913 + # 914 + # CONFIG_DMA_ENGINE is not set 915 + 916 + # 917 + # DMA Clients 918 + # 919 + 920 + # 921 + # DMA Devices 922 + # 934 923 935 924 # 936 925 # File systems ··· 964 919 # CONFIG_MINIX_FS is not set 965 920 CONFIG_ROMFS_FS=m 966 921 CONFIG_INOTIFY=y 922 + CONFIG_INOTIFY_USER=y 967 923 # CONFIG_QUOTA is not set 968 924 CONFIG_DNOTIFY=y 969 925 # CONFIG_AUTOFS_FS is not set ··· 1035 989 # CONFIG_RPCSEC_GSS_SPKM3 is not set 1036 990 # CONFIG_SMB_FS is not set 1037 991 # CONFIG_CIFS is not set 992 + # CONFIG_CIFS_DEBUG2 is not set 1038 993 # CONFIG_NCP_FS is not set 1039 994 # CONFIG_CODA_FS is not set 1040 995 # CONFIG_AFS_FS is not set ··· 1062 1015 # 1063 1016 # CONFIG_PRINTK_TIME is not set 1064 1017 # CONFIG_MAGIC_SYSRQ is not set 1018 + # CONFIG_UNUSED_SYMBOLS is not set 1065 1019 # CONFIG_DEBUG_KERNEL is not set 1066 1020 CONFIG_LOG_BUF_SHIFT=14 1067 1021 # CONFIG_DEBUG_FS is not set ··· 1092 1044 # CONFIG_CRC32 is not set 1093 1045 # CONFIG_LIBCRC32C is not set 1094 1046 CONFIG_ZLIB_INFLATE=m 1047 + CONFIG_PLIST=y
+51 -4
arch/mips/configs/tb0229_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Tue Apr 25 00:08:59 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:20 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 CONFIG_MACH_VR41XX=y 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 78 75 CONFIG_GENERIC_FIND_NEXT_BIT=y 79 76 CONFIG_GENERIC_HWEIGHT=y 80 77 CONFIG_GENERIC_CALIBRATE_DELAY=y 78 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 81 79 CONFIG_DMA_NONCOHERENT=y 82 80 CONFIG_DMA_NEED_PCI_MAP_STATE=y 83 81 # CONFIG_CPU_BIG_ENDIAN is not set ··· 123 119 # CONFIG_PAGE_SIZE_8KB is not set 124 120 # CONFIG_PAGE_SIZE_16KB is not set 125 121 # CONFIG_PAGE_SIZE_64KB is not set 126 - # CONFIG_MIPS_MT is not set 122 + CONFIG_MIPS_MT_DISABLED=y 123 + # CONFIG_MIPS_MT_SMTC is not set 124 + # CONFIG_MIPS_MT_SMP is not set 125 + # CONFIG_MIPS_VPE_LOADER is not set 127 126 CONFIG_CPU_HAS_SYNC=y 128 127 CONFIG_GENERIC_HARDIRQS=y 129 128 CONFIG_GENERIC_IRQ_PROBE=y ··· 139 132 CONFIG_FLAT_NODE_MEM_MAP=y 140 133 # CONFIG_SPARSEMEM_STATIC is not set 141 134 CONFIG_SPLIT_PTLOCK_CPUS=4 135 + # CONFIG_RESOURCES_64BIT is not set 142 136 # CONFIG_HZ_48 is not set 143 137 # CONFIG_HZ_100 is not set 144 138 # CONFIG_HZ_128 is not set ··· 152 144 CONFIG_PREEMPT_NONE=y 153 145 # CONFIG_PREEMPT_VOLUNTARY is not set 154 146 # CONFIG_PREEMPT is not set 147 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 155 148 156 149 # 157 150 # Code maturity level options ··· 184 175 CONFIG_BUG=y 185 176 CONFIG_ELF_CORE=y 186 177 CONFIG_BASE_FULL=y 178 + CONFIG_RT_MUTEXES=y 187 179 CONFIG_FUTEX=y 188 180 CONFIG_EPOLL=y 189 181 CONFIG_SHMEM=y 190 182 CONFIG_SLAB=y 183 + CONFIG_VM_EVENT_COUNTERS=y 191 184 # CONFIG_TINY_SHMEM is not set 192 185 CONFIG_BASE_SMALL=0 193 186 # CONFIG_SLOB is not set ··· 260 249 CONFIG_PACKET=y 261 250 # CONFIG_PACKET_MMAP is not set 262 251 CONFIG_UNIX=y 252 + CONFIG_XFRM=y 253 + # CONFIG_XFRM_USER is not set 263 254 # CONFIG_NET_KEY is not set 264 255 CONFIG_INET=y 265 256 CONFIG_IP_MULTICAST=y ··· 288 275 # CONFIG_INET_IPCOMP is not set 289 276 # CONFIG_INET_XFRM_TUNNEL is not set 290 277 CONFIG_INET_TUNNEL=m 278 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 279 + CONFIG_INET_XFRM_MODE_TUNNEL=m 291 280 CONFIG_INET_DIAG=y 292 281 CONFIG_INET_TCP_DIAG=y 293 282 # CONFIG_TCP_CONG_ADVANCED is not set ··· 297 282 # CONFIG_IPV6 is not set 298 283 # CONFIG_INET6_XFRM_TUNNEL is not set 299 284 # CONFIG_INET6_TUNNEL is not set 285 + CONFIG_NETWORK_SECMARK=y 300 286 # CONFIG_NETFILTER is not set 301 287 302 288 # ··· 351 335 CONFIG_STANDALONE=y 352 336 CONFIG_PREVENT_FIRMWARE_BUILD=y 353 337 # CONFIG_FW_LOADER is not set 338 + # CONFIG_SYS_HYPERVISOR is not set 354 339 355 340 # 356 341 # Connector - unified userspace <-> kernelspace linker ··· 450 433 CONFIG_QSEMI_PHY=m 451 434 CONFIG_LXT_PHY=m 452 435 CONFIG_CICADA_PHY=m 436 + CONFIG_VITESSE_PHY=m 437 + CONFIG_SMSC_PHY=m 453 438 454 439 # 455 440 # Ethernet (10 or 100Mbit) ··· 495 476 # CONFIG_CHELSIO_T1 is not set 496 477 # CONFIG_IXGB is not set 497 478 # CONFIG_S2IO is not set 479 + # CONFIG_MYRI10GE is not set 498 480 499 481 # 500 482 # Token Ring devices ··· 565 545 CONFIG_VT=y 566 546 CONFIG_VT_CONSOLE=y 567 547 CONFIG_HW_CONSOLE=y 548 + CONFIG_VT_HW_CONSOLE_BINDING=y 568 549 # CONFIG_SERIAL_NONSTANDARD is not set 569 550 570 551 # ··· 594 573 # Watchdog Cards 595 574 # 596 575 # CONFIG_WATCHDOG is not set 576 + # CONFIG_HW_RANDOM is not set 597 577 # CONFIG_RTC is not set 598 578 # CONFIG_GEN_RTC is not set 599 579 # CONFIG_DTLK is not set ··· 629 607 # 630 608 # Dallas's 1-wire bus 631 609 # 632 - # CONFIG_W1 is not set 633 610 634 611 # 635 612 # Hardware Monitoring support ··· 644 623 # Multimedia devices 645 624 # 646 625 # CONFIG_VIDEO_DEV is not set 626 + CONFIG_VIDEO_V4L2=y 647 627 648 628 # 649 629 # Digital Video Broadcasting Devices ··· 655 633 # 656 634 # Graphics support 657 635 # 636 + # CONFIG_FIRMWARE_EDID is not set 658 637 # CONFIG_FB is not set 659 638 660 639 # ··· 692 669 CONFIG_USB_EHCI_HCD=m 693 670 # CONFIG_USB_EHCI_SPLIT_ISO is not set 694 671 # CONFIG_USB_EHCI_ROOT_HUB_TT is not set 672 + # CONFIG_USB_EHCI_TT_NEWSCHED is not set 695 673 # CONFIG_USB_ISP116X_HCD is not set 696 674 CONFIG_USB_OHCI_HCD=m 697 675 # CONFIG_USB_OHCI_BIG_ENDIAN is not set ··· 773 749 # CONFIG_USB_LEGOTOWER is not set 774 750 # CONFIG_USB_LCD is not set 775 751 # CONFIG_USB_LED is not set 752 + # CONFIG_USB_CY7C63 is not set 776 753 # CONFIG_USB_CYTHERM is not set 777 754 # CONFIG_USB_PHIDGETKIT is not set 778 755 # CONFIG_USB_PHIDGETSERVO is not set 779 756 # CONFIG_USB_IDMOUSE is not set 757 + # CONFIG_USB_APPLEDISPLAY is not set 780 758 # CONFIG_USB_SISUSBVGA is not set 781 759 # CONFIG_USB_LD is not set 782 760 # CONFIG_USB_TEST is not set ··· 833 807 CONFIG_RTC_INTF_SYSFS=y 834 808 CONFIG_RTC_INTF_PROC=y 835 809 CONFIG_RTC_INTF_DEV=y 810 + # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set 836 811 837 812 # 838 813 # RTC drivers 839 814 # 815 + # CONFIG_RTC_DRV_DS1553 is not set 816 + # CONFIG_RTC_DRV_DS1742 is not set 840 817 # CONFIG_RTC_DRV_M48T86 is not set 841 818 CONFIG_RTC_DRV_VR41XX=y 842 819 # CONFIG_RTC_DRV_TEST is not set 820 + # CONFIG_RTC_DRV_V3020 is not set 821 + 822 + # 823 + # DMA Engine support 824 + # 825 + # CONFIG_DMA_ENGINE is not set 826 + 827 + # 828 + # DMA Clients 829 + # 830 + 831 + # 832 + # DMA Devices 833 + # 843 834 844 835 # 845 836 # File systems ··· 873 830 # CONFIG_MINIX_FS is not set 874 831 CONFIG_ROMFS_FS=m 875 832 CONFIG_INOTIFY=y 833 + CONFIG_INOTIFY_USER=y 876 834 # CONFIG_QUOTA is not set 877 835 CONFIG_DNOTIFY=y 878 836 # CONFIG_AUTOFS_FS is not set ··· 944 900 # CONFIG_RPCSEC_GSS_SPKM3 is not set 945 901 # CONFIG_SMB_FS is not set 946 902 # CONFIG_CIFS is not set 903 + # CONFIG_CIFS_DEBUG2 is not set 947 904 # CONFIG_NCP_FS is not set 948 905 # CONFIG_CODA_FS is not set 949 906 # CONFIG_AFS_FS is not set ··· 971 926 # 972 927 # CONFIG_PRINTK_TIME is not set 973 928 # CONFIG_MAGIC_SYSRQ is not set 929 + # CONFIG_UNUSED_SYMBOLS is not set 974 930 # CONFIG_DEBUG_KERNEL is not set 975 931 CONFIG_LOG_BUF_SHIFT=14 976 932 # CONFIG_DEBUG_FS is not set ··· 1001 955 CONFIG_CRC32=y 1002 956 # CONFIG_LIBCRC32C is not set 1003 957 CONFIG_ZLIB_INFLATE=m 958 + CONFIG_PLIST=y
+49 -6
arch/mips/configs/tb0287_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Tue Apr 25 00:09:17 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:21 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 CONFIG_MACH_VR41XX=y 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 123 120 # CONFIG_PAGE_SIZE_8KB is not set 124 121 # CONFIG_PAGE_SIZE_16KB is not set 125 122 # CONFIG_PAGE_SIZE_64KB is not set 126 - # CONFIG_MIPS_MT is not set 123 + CONFIG_MIPS_MT_DISABLED=y 124 + # CONFIG_MIPS_MT_SMTC is not set 125 + # CONFIG_MIPS_MT_SMP is not set 126 + # CONFIG_MIPS_VPE_LOADER is not set 127 127 CONFIG_CPU_HAS_SYNC=y 128 128 CONFIG_GENERIC_HARDIRQS=y 129 129 CONFIG_GENERIC_IRQ_PROBE=y ··· 139 133 CONFIG_FLAT_NODE_MEM_MAP=y 140 134 # CONFIG_SPARSEMEM_STATIC is not set 141 135 CONFIG_SPLIT_PTLOCK_CPUS=4 136 + # CONFIG_RESOURCES_64BIT is not set 142 137 # CONFIG_HZ_48 is not set 143 138 # CONFIG_HZ_100 is not set 144 139 # CONFIG_HZ_128 is not set ··· 152 145 CONFIG_PREEMPT_NONE=y 153 146 # CONFIG_PREEMPT_VOLUNTARY is not set 154 147 # CONFIG_PREEMPT is not set 148 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 155 149 156 150 # 157 151 # Code maturity level options ··· 184 176 CONFIG_BUG=y 185 177 CONFIG_ELF_CORE=y 186 178 CONFIG_BASE_FULL=y 179 + CONFIG_RT_MUTEXES=y 187 180 CONFIG_FUTEX=y 188 181 CONFIG_EPOLL=y 189 182 CONFIG_SHMEM=y 190 183 CONFIG_SLAB=y 184 + CONFIG_VM_EVENT_COUNTERS=y 191 185 # CONFIG_TINY_SHMEM is not set 192 186 CONFIG_BASE_SMALL=0 193 187 # CONFIG_SLOB is not set ··· 260 250 CONFIG_PACKET=y 261 251 # CONFIG_PACKET_MMAP is not set 262 252 CONFIG_UNIX=y 253 + CONFIG_XFRM=y 254 + # CONFIG_XFRM_USER is not set 263 255 # CONFIG_NET_KEY is not set 264 256 CONFIG_INET=y 265 257 CONFIG_IP_MULTICAST=y ··· 288 276 # CONFIG_INET_IPCOMP is not set 289 277 # CONFIG_INET_XFRM_TUNNEL is not set 290 278 CONFIG_INET_TUNNEL=m 279 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 280 + CONFIG_INET_XFRM_MODE_TUNNEL=m 291 281 CONFIG_INET_DIAG=y 292 282 CONFIG_INET_TCP_DIAG=y 293 283 CONFIG_TCP_CONG_ADVANCED=y ··· 305 291 # CONFIG_TCP_CONG_HYBLA is not set 306 292 # CONFIG_TCP_CONG_VEGAS is not set 307 293 # CONFIG_TCP_CONG_SCALABLE is not set 294 + # CONFIG_TCP_CONG_LP is not set 295 + # CONFIG_TCP_CONG_VENO is not set 296 + # CONFIG_TCP_CONG_COMPOUND is not set 308 297 # CONFIG_IPV6 is not set 309 298 # CONFIG_INET6_XFRM_TUNNEL is not set 310 299 # CONFIG_INET6_TUNNEL is not set 300 + CONFIG_NETWORK_SECMARK=y 311 301 # CONFIG_NETFILTER is not set 312 302 313 303 # ··· 365 347 CONFIG_STANDALONE=y 366 348 CONFIG_PREVENT_FIRMWARE_BUILD=y 367 349 # CONFIG_FW_LOADER is not set 350 + # CONFIG_SYS_HYPERVISOR is not set 368 351 369 352 # 370 353 # Connector - unified userspace <-> kernelspace linker ··· 511 492 # CONFIG_MEGARAID_LEGACY is not set 512 493 # CONFIG_MEGARAID_SAS is not set 513 494 # CONFIG_SCSI_SATA is not set 495 + # CONFIG_SCSI_HPTIOP is not set 514 496 # CONFIG_SCSI_DMX3191D is not set 515 497 # CONFIG_SCSI_FUTURE_DOMAIN is not set 516 498 # CONFIG_SCSI_IPS is not set ··· 568 548 # 569 549 CONFIG_IEEE1394_VIDEO1394=m 570 550 CONFIG_IEEE1394_SBP2=m 571 - # CONFIG_IEEE1394_SBP2_PHYS_DMA is not set 572 551 CONFIG_IEEE1394_ETH1394=m 573 552 CONFIG_IEEE1394_DV1394=m 574 553 CONFIG_IEEE1394_RAWIO=m ··· 638 619 # CONFIG_CHELSIO_T1 is not set 639 620 # CONFIG_IXGB is not set 640 621 # CONFIG_S2IO is not set 622 + # CONFIG_MYRI10GE is not set 641 623 642 624 # 643 625 # Token Ring devices ··· 709 689 CONFIG_VT=y 710 690 CONFIG_VT_CONSOLE=y 711 691 CONFIG_HW_CONSOLE=y 692 + CONFIG_VT_HW_CONSOLE_BINDING=y 712 693 # CONFIG_SERIAL_NONSTANDARD is not set 713 694 714 695 # ··· 738 717 # Watchdog Cards 739 718 # 740 719 # CONFIG_WATCHDOG is not set 720 + # CONFIG_HW_RANDOM is not set 741 721 # CONFIG_RTC is not set 742 722 # CONFIG_GEN_RTC is not set 743 723 # CONFIG_DTLK is not set ··· 773 751 # 774 752 # Dallas's 1-wire bus 775 753 # 776 - # CONFIG_W1 is not set 777 754 778 755 # 779 756 # Hardware Monitoring support ··· 788 767 # Multimedia devices 789 768 # 790 769 # CONFIG_VIDEO_DEV is not set 770 + CONFIG_VIDEO_V4L2=y 791 771 792 772 # 793 773 # Digital Video Broadcasting Devices ··· 799 777 # 800 778 # Graphics support 801 779 # 780 + # CONFIG_FIRMWARE_EDID is not set 802 781 CONFIG_FB=y 803 782 CONFIG_FB_CFB_FILLRECT=y 804 783 CONFIG_FB_CFB_COPYAREA=y 805 784 CONFIG_FB_CFB_IMAGEBLIT=y 806 785 # CONFIG_FB_MACMODES is not set 807 - CONFIG_FB_FIRMWARE_EDID=y 786 + # CONFIG_FB_BACKLIGHT is not set 808 787 # CONFIG_FB_MODE_HELPERS is not set 809 788 # CONFIG_FB_TILEBLITTING is not set 810 789 # CONFIG_FB_CIRRUS is not set ··· 871 848 CONFIG_USB_EHCI_HCD=m 872 849 # CONFIG_USB_EHCI_SPLIT_ISO is not set 873 850 # CONFIG_USB_EHCI_ROOT_HUB_TT is not set 851 + # CONFIG_USB_EHCI_TT_NEWSCHED is not set 874 852 # CONFIG_USB_ISP116X_HCD is not set 875 853 CONFIG_USB_OHCI_HCD=m 876 854 # CONFIG_USB_OHCI_BIG_ENDIAN is not set ··· 967 943 # CONFIG_USB_LEGOTOWER is not set 968 944 # CONFIG_USB_LCD is not set 969 945 # CONFIG_USB_LED is not set 946 + # CONFIG_USB_CY7C63 is not set 970 947 # CONFIG_USB_CYTHERM is not set 971 948 # CONFIG_USB_PHIDGETKIT is not set 972 949 # CONFIG_USB_PHIDGETSERVO is not set 973 950 # CONFIG_USB_IDMOUSE is not set 951 + # CONFIG_USB_APPLEDISPLAY is not set 974 952 # CONFIG_USB_SISUSBVGA is not set 975 953 # CONFIG_USB_LD is not set 976 954 ··· 1018 992 # CONFIG_RTC_CLASS is not set 1019 993 1020 994 # 995 + # DMA Engine support 996 + # 997 + # CONFIG_DMA_ENGINE is not set 998 + 999 + # 1000 + # DMA Clients 1001 + # 1002 + 1003 + # 1004 + # DMA Devices 1005 + # 1006 + 1007 + # 1021 1008 # File systems 1022 1009 # 1023 1010 CONFIG_EXT2_FS=y ··· 1055 1016 # CONFIG_MINIX_FS is not set 1056 1017 CONFIG_ROMFS_FS=m 1057 1018 CONFIG_INOTIFY=y 1019 + CONFIG_INOTIFY_USER=y 1058 1020 # CONFIG_QUOTA is not set 1059 1021 CONFIG_QUOTACTL=y 1060 1022 # CONFIG_DNOTIFY is not set ··· 1122 1082 # CONFIG_RPCSEC_GSS_SPKM3 is not set 1123 1083 # CONFIG_SMB_FS is not set 1124 1084 # CONFIG_CIFS is not set 1085 + # CONFIG_CIFS_DEBUG2 is not set 1125 1086 # CONFIG_NCP_FS is not set 1126 1087 # CONFIG_CODA_FS is not set 1127 1088 # CONFIG_AFS_FS is not set ··· 1149 1108 # 1150 1109 # CONFIG_PRINTK_TIME is not set 1151 1110 # CONFIG_MAGIC_SYSRQ is not set 1111 + # CONFIG_UNUSED_SYMBOLS is not set 1152 1112 # CONFIG_DEBUG_KERNEL is not set 1153 1113 CONFIG_LOG_BUF_SHIFT=14 1154 1114 # CONFIG_DEBUG_FS is not set ··· 1179 1137 CONFIG_CRC32=y 1180 1138 # CONFIG_LIBCRC32C is not set 1181 1139 CONFIG_ZLIB_INFLATE=m 1140 + CONFIG_PLIST=y
+41 -3
arch/mips/configs/workpad_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Tue Apr 25 00:09:33 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:21 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 CONFIG_MACH_VR41XX=y 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 74 71 CONFIG_GENERIC_FIND_NEXT_BIT=y 75 72 CONFIG_GENERIC_HWEIGHT=y 76 73 CONFIG_GENERIC_CALIBRATE_DELAY=y 74 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 77 75 CONFIG_DMA_NONCOHERENT=y 78 76 CONFIG_DMA_NEED_PCI_MAP_STATE=y 79 77 # CONFIG_CPU_BIG_ENDIAN is not set ··· 119 115 # CONFIG_PAGE_SIZE_8KB is not set 120 116 # CONFIG_PAGE_SIZE_16KB is not set 121 117 # CONFIG_PAGE_SIZE_64KB is not set 122 - # CONFIG_MIPS_MT is not set 118 + CONFIG_MIPS_MT_DISABLED=y 119 + # CONFIG_MIPS_MT_SMTC is not set 120 + # CONFIG_MIPS_MT_SMP is not set 121 + # CONFIG_MIPS_VPE_LOADER is not set 123 122 CONFIG_CPU_HAS_SYNC=y 124 123 CONFIG_GENERIC_HARDIRQS=y 125 124 CONFIG_GENERIC_IRQ_PROBE=y ··· 135 128 CONFIG_FLAT_NODE_MEM_MAP=y 136 129 # CONFIG_SPARSEMEM_STATIC is not set 137 130 CONFIG_SPLIT_PTLOCK_CPUS=4 131 + # CONFIG_RESOURCES_64BIT is not set 138 132 # CONFIG_HZ_48 is not set 139 133 # CONFIG_HZ_100 is not set 140 134 # CONFIG_HZ_128 is not set ··· 148 140 CONFIG_PREEMPT_NONE=y 149 141 # CONFIG_PREEMPT_VOLUNTARY is not set 150 142 # CONFIG_PREEMPT is not set 143 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 151 144 152 145 # 153 146 # Code maturity level options ··· 180 171 CONFIG_BUG=y 181 172 CONFIG_ELF_CORE=y 182 173 CONFIG_BASE_FULL=y 174 + CONFIG_RT_MUTEXES=y 183 175 CONFIG_FUTEX=y 184 176 CONFIG_EPOLL=y 185 177 CONFIG_SHMEM=y 186 178 CONFIG_SLAB=y 179 + CONFIG_VM_EVENT_COUNTERS=y 187 180 # CONFIG_TINY_SHMEM is not set 188 181 CONFIG_BASE_SMALL=0 189 182 # CONFIG_SLOB is not set ··· 284 273 # CONFIG_INET_IPCOMP is not set 285 274 # CONFIG_INET_XFRM_TUNNEL is not set 286 275 # CONFIG_INET_TUNNEL is not set 276 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 277 + CONFIG_INET_XFRM_MODE_TUNNEL=m 287 278 CONFIG_INET_DIAG=y 288 279 CONFIG_INET_TCP_DIAG=y 289 280 # CONFIG_TCP_CONG_ADVANCED is not set ··· 293 280 # CONFIG_IPV6 is not set 294 281 # CONFIG_INET6_XFRM_TUNNEL is not set 295 282 # CONFIG_INET6_TUNNEL is not set 283 + CONFIG_NETWORK_SECMARK=y 296 284 # CONFIG_NETFILTER is not set 297 285 298 286 # ··· 348 334 CONFIG_STANDALONE=y 349 335 CONFIG_PREVENT_FIRMWARE_BUILD=y 350 336 CONFIG_FW_LOADER=y 337 + # CONFIG_SYS_HYPERVISOR is not set 351 338 352 339 # 353 340 # Connector - unified userspace <-> kernelspace linker ··· 467 452 CONFIG_QSEMI_PHY=m 468 453 CONFIG_LXT_PHY=m 469 454 CONFIG_CICADA_PHY=m 455 + CONFIG_VITESSE_PHY=m 456 + CONFIG_SMSC_PHY=m 470 457 471 458 # 472 459 # Ethernet (10 or 100Mbit) ··· 603 586 CONFIG_VT=y 604 587 CONFIG_VT_CONSOLE=y 605 588 CONFIG_HW_CONSOLE=y 589 + CONFIG_VT_HW_CONSOLE_BINDING=y 606 590 # CONFIG_SERIAL_NONSTANDARD is not set 607 591 608 592 # ··· 631 613 # Watchdog Cards 632 614 # 633 615 # CONFIG_WATCHDOG is not set 616 + # CONFIG_HW_RANDOM is not set 634 617 # CONFIG_RTC is not set 635 618 # CONFIG_GEN_RTC is not set 636 619 # CONFIG_DTLK is not set ··· 686 667 # Multimedia devices 687 668 # 688 669 # CONFIG_VIDEO_DEV is not set 670 + CONFIG_VIDEO_V4L2=y 689 671 690 672 # 691 673 # Digital Video Broadcasting Devices ··· 696 676 # 697 677 # Graphics support 698 678 # 679 + # CONFIG_FIRMWARE_EDID is not set 699 680 # CONFIG_FB is not set 700 681 701 682 # ··· 759 738 # CONFIG_RTC_CLASS is not set 760 739 761 740 # 741 + # DMA Engine support 742 + # 743 + # CONFIG_DMA_ENGINE is not set 744 + 745 + # 746 + # DMA Clients 747 + # 748 + 749 + # 750 + # DMA Devices 751 + # 752 + 753 + # 762 754 # File systems 763 755 # 764 756 CONFIG_EXT2_FS=y ··· 789 755 # CONFIG_MINIX_FS is not set 790 756 # CONFIG_ROMFS_FS is not set 791 757 CONFIG_INOTIFY=y 758 + CONFIG_INOTIFY_USER=y 792 759 # CONFIG_QUOTA is not set 793 760 CONFIG_DNOTIFY=y 794 761 # CONFIG_AUTOFS_FS is not set ··· 855 820 # CONFIG_RPCSEC_GSS_SPKM3 is not set 856 821 # CONFIG_SMB_FS is not set 857 822 # CONFIG_CIFS is not set 823 + # CONFIG_CIFS_DEBUG2 is not set 858 824 # CONFIG_NCP_FS is not set 859 825 # CONFIG_CODA_FS is not set 860 826 # CONFIG_AFS_FS is not set ··· 882 846 # 883 847 # CONFIG_PRINTK_TIME is not set 884 848 # CONFIG_MAGIC_SYSRQ is not set 849 + # CONFIG_UNUSED_SYMBOLS is not set 885 850 # CONFIG_DEBUG_KERNEL is not set 886 851 CONFIG_LOG_BUF_SHIFT=14 887 852 # CONFIG_DEBUG_FS is not set ··· 911 874 # CONFIG_CRC16 is not set 912 875 CONFIG_CRC32=y 913 876 # CONFIG_LIBCRC32C is not set 877 + CONFIG_PLIST=y
+72 -16
arch/mips/configs/wrppmc_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.16.11 4 - # Fri May 5 17:11:22 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:21 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 47 46 # CONFIG_MACH_VR41XX is not set 48 47 # CONFIG_PMC_YOSEMITE is not set 49 48 # CONFIG_QEMU is not set 49 + # CONFIG_MARKEINS is not set 50 50 # CONFIG_SGI_IP22 is not set 51 51 # CONFIG_SGI_IP27 is not set 52 52 # CONFIG_SGI_IP32 is not set ··· 65 63 # CONFIG_TOSHIBA_RBTX4927 is not set 66 64 # CONFIG_TOSHIBA_RBTX4938 is not set 67 65 CONFIG_RWSEM_GENERIC_SPINLOCK=y 66 + CONFIG_GENERIC_FIND_NEXT_BIT=y 67 + CONFIG_GENERIC_HWEIGHT=y 68 68 CONFIG_GENERIC_CALIBRATE_DELAY=y 69 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 70 CONFIG_DMA_NONCOHERENT=y 70 71 CONFIG_DMA_NEED_PCI_MAP_STATE=y 71 72 CONFIG_CPU_BIG_ENDIAN=y ··· 124 119 # CONFIG_PAGE_SIZE_16KB is not set 125 120 # CONFIG_PAGE_SIZE_64KB is not set 126 121 CONFIG_CPU_HAS_PREFETCH=y 127 - # CONFIG_MIPS_MT is not set 122 + CONFIG_MIPS_MT_DISABLED=y 123 + # CONFIG_MIPS_MT_SMTC is not set 124 + # CONFIG_MIPS_MT_SMP is not set 125 + # CONFIG_MIPS_VPE_LOADER is not set 128 126 # CONFIG_64BIT_PHYS_ADDR is not set 129 - # CONFIG_CPU_ADVANCED is not set 130 127 CONFIG_CPU_HAS_LLSC=y 131 128 CONFIG_CPU_HAS_SYNC=y 132 129 CONFIG_GENERIC_HARDIRQS=y ··· 143 136 CONFIG_FLAT_NODE_MEM_MAP=y 144 137 # CONFIG_SPARSEMEM_STATIC is not set 145 138 CONFIG_SPLIT_PTLOCK_CPUS=4 139 + # CONFIG_RESOURCES_64BIT is not set 146 140 # CONFIG_HZ_48 is not set 147 141 # CONFIG_HZ_100 is not set 148 142 # CONFIG_HZ_128 is not set ··· 156 148 CONFIG_PREEMPT_NONE=y 157 149 # CONFIG_PREEMPT_VOLUNTARY is not set 158 150 # CONFIG_PREEMPT is not set 151 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 159 152 160 153 # 161 154 # Code maturity level options ··· 178 169 CONFIG_SYSCTL=y 179 170 # CONFIG_AUDIT is not set 180 171 # CONFIG_IKCONFIG is not set 172 + # CONFIG_RELAY is not set 181 173 CONFIG_INITRAMFS_SOURCE="" 182 174 # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set 183 175 CONFIG_EMBEDDED=y ··· 189 179 CONFIG_BUG=y 190 180 CONFIG_ELF_CORE=y 191 181 CONFIG_BASE_FULL=y 182 + CONFIG_RT_MUTEXES=y 192 183 CONFIG_FUTEX=y 193 184 # CONFIG_EPOLL is not set 194 185 CONFIG_SHMEM=y 195 - CONFIG_CC_ALIGN_FUNCTIONS=0 196 - CONFIG_CC_ALIGN_LABELS=0 197 - CONFIG_CC_ALIGN_LOOPS=0 198 - CONFIG_CC_ALIGN_JUMPS=0 199 186 CONFIG_SLAB=y 187 + CONFIG_VM_EVENT_COUNTERS=y 200 188 # CONFIG_TINY_SHMEM is not set 201 189 CONFIG_BASE_SMALL=0 202 190 # CONFIG_SLOB is not set ··· 205 197 CONFIG_MODULES=y 206 198 CONFIG_MODULE_UNLOAD=y 207 199 # CONFIG_MODULE_FORCE_UNLOAD is not set 208 - CONFIG_OBSOLETE_MODPARM=y 209 200 CONFIG_MODVERSIONS=y 210 201 CONFIG_MODULE_SRCVERSION_ALL=y 211 202 # CONFIG_KMOD is not set ··· 213 206 # Block layer 214 207 # 215 208 # CONFIG_LBD is not set 209 + # CONFIG_BLK_DEV_IO_TRACE is not set 210 + # CONFIG_LSF is not set 216 211 217 212 # 218 213 # IO Schedulers ··· 234 225 # 235 226 CONFIG_HW_HAS_PCI=y 236 227 CONFIG_PCI=y 237 - CONFIG_PCI_LEGACY_PROC=y 238 228 CONFIG_MMU=y 239 229 240 230 # ··· 268 260 CONFIG_PACKET=y 269 261 CONFIG_PACKET_MMAP=y 270 262 CONFIG_UNIX=y 263 + CONFIG_XFRM=y 264 + # CONFIG_XFRM_USER is not set 271 265 # CONFIG_NET_KEY is not set 272 266 CONFIG_INET=y 273 267 CONFIG_IP_MULTICAST=y ··· 289 279 # CONFIG_INET_AH is not set 290 280 # CONFIG_INET_ESP is not set 291 281 # CONFIG_INET_IPCOMP is not set 282 + # CONFIG_INET_XFRM_TUNNEL is not set 292 283 # CONFIG_INET_TUNNEL is not set 284 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 285 + CONFIG_INET_XFRM_MODE_TUNNEL=m 293 286 CONFIG_INET_DIAG=y 294 287 CONFIG_INET_TCP_DIAG=y 295 288 # CONFIG_TCP_CONG_ADVANCED is not set 296 289 CONFIG_TCP_CONG_BIC=y 297 290 # CONFIG_IPV6 is not set 291 + # CONFIG_INET6_XFRM_TUNNEL is not set 292 + # CONFIG_INET6_TUNNEL is not set 293 + CONFIG_NETWORK_SECMARK=y 298 294 # CONFIG_NETFILTER is not set 299 295 300 296 # ··· 354 338 CONFIG_STANDALONE=y 355 339 CONFIG_PREVENT_FIRMWARE_BUILD=y 356 340 # CONFIG_FW_LOADER is not set 341 + # CONFIG_SYS_HYPERVISOR is not set 357 342 358 343 # 359 344 # Connector - unified userspace <-> kernelspace linker ··· 451 434 # CONFIG_QSEMI_PHY is not set 452 435 # CONFIG_LXT_PHY is not set 453 436 # CONFIG_CICADA_PHY is not set 437 + CONFIG_VITESSE_PHY=m 438 + CONFIG_SMSC_PHY=m 454 439 455 440 # 456 441 # Ethernet (10 or 100Mbit) ··· 515 496 # CONFIG_CHELSIO_T1 is not set 516 497 # CONFIG_IXGB is not set 517 498 # CONFIG_S2IO is not set 499 + # CONFIG_MYRI10GE is not set 518 500 519 501 # 520 502 # Token Ring devices ··· 572 552 # 573 553 CONFIG_SERIAL_8250=y 574 554 CONFIG_SERIAL_8250_CONSOLE=y 555 + CONFIG_SERIAL_8250_PCI=y 575 556 CONFIG_SERIAL_8250_NR_UARTS=1 576 557 CONFIG_SERIAL_8250_RUNTIME_UARTS=1 577 558 # CONFIG_SERIAL_8250_EXTENDED is not set ··· 596 575 # Watchdog Cards 597 576 # 598 577 # CONFIG_WATCHDOG is not set 578 + # CONFIG_HW_RANDOM is not set 599 579 CONFIG_RTC=y 600 580 # CONFIG_DTLK is not set 601 581 # CONFIG_R3964 is not set ··· 628 606 # 629 607 # Dallas's 1-wire bus 630 608 # 631 - # CONFIG_W1 is not set 632 609 633 610 # 634 611 # Hardware Monitoring support 635 612 # 636 613 CONFIG_HWMON=y 637 614 # CONFIG_HWMON_VID is not set 615 + # CONFIG_SENSORS_ABITUGURU is not set 638 616 # CONFIG_SENSORS_F71805F is not set 639 617 # CONFIG_HWMON_DEBUG_CHIP is not set 640 618 ··· 643 621 # 644 622 645 623 # 646 - # Multimedia Capabilities Port drivers 647 - # 648 - 649 - # 650 624 # Multimedia devices 651 625 # 652 626 # CONFIG_VIDEO_DEV is not set 627 + CONFIG_VIDEO_V4L2=y 653 628 654 629 # 655 630 # Digital Video Broadcasting Devices ··· 656 637 # 657 638 # Graphics support 658 639 # 640 + # CONFIG_FIRMWARE_EDID is not set 659 641 # CONFIG_FB is not set 660 642 661 643 # ··· 669 649 # 670 650 CONFIG_USB_ARCH_HAS_HCD=y 671 651 CONFIG_USB_ARCH_HAS_OHCI=y 652 + CONFIG_USB_ARCH_HAS_EHCI=y 672 653 # CONFIG_USB is not set 673 654 674 655 # ··· 687 666 # CONFIG_MMC is not set 688 667 689 668 # 669 + # LED devices 670 + # 671 + # CONFIG_NEW_LEDS is not set 672 + 673 + # 674 + # LED drivers 675 + # 676 + 677 + # 678 + # LED Triggers 679 + # 680 + 681 + # 690 682 # InfiniBand support 691 683 # 692 684 # CONFIG_INFINIBAND is not set 693 685 694 686 # 695 687 # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) 688 + # 689 + 690 + # 691 + # Real Time Clock 692 + # 693 + # CONFIG_RTC_CLASS is not set 694 + 695 + # 696 + # DMA Engine support 697 + # 698 + # CONFIG_DMA_ENGINE is not set 699 + 700 + # 701 + # DMA Clients 702 + # 703 + 704 + # 705 + # DMA Devices 696 706 # 697 707 698 708 # ··· 739 687 # CONFIG_MINIX_FS is not set 740 688 # CONFIG_ROMFS_FS is not set 741 689 CONFIG_INOTIFY=y 690 + CONFIG_INOTIFY_USER=y 742 691 # CONFIG_QUOTA is not set 743 692 CONFIG_DNOTIFY=y 744 693 # CONFIG_AUTOFS_FS is not set ··· 768 715 CONFIG_TMPFS=y 769 716 # CONFIG_HUGETLB_PAGE is not set 770 717 CONFIG_RAMFS=y 771 - # CONFIG_RELAYFS_FS is not set 772 718 # CONFIG_CONFIGFS_FS is not set 773 719 774 720 # ··· 805 753 # CONFIG_RPCSEC_GSS_SPKM3 is not set 806 754 # CONFIG_SMB_FS is not set 807 755 # CONFIG_CIFS is not set 756 + # CONFIG_CIFS_DEBUG2 is not set 808 757 # CONFIG_NCP_FS is not set 809 758 # CONFIG_CODA_FS is not set 810 759 # CONFIG_AFS_FS is not set ··· 832 779 # 833 780 # CONFIG_PRINTK_TIME is not set 834 781 # CONFIG_MAGIC_SYSRQ is not set 782 + # CONFIG_UNUSED_SYMBOLS is not set 835 783 # CONFIG_DEBUG_KERNEL is not set 836 784 CONFIG_LOG_BUF_SHIFT=14 785 + # CONFIG_DEBUG_FS is not set 837 786 CONFIG_CROSSCOMPILE=y 838 787 CONFIG_CMDLINE="console=ttyS0,115200n8" 839 788 ··· 861 806 CONFIG_CRC16=y 862 807 CONFIG_CRC32=y 863 808 CONFIG_LIBCRC32C=y 809 + CONFIG_PLIST=y
+52 -6
arch/mips/configs/yosemite_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:20 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:21 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 CONFIG_PMC_YOSEMITE=y 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 # CONFIG_SGI_IP22 is not set 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 69 66 CONFIG_GENERIC_FIND_NEXT_BIT=y 70 67 CONFIG_GENERIC_HWEIGHT=y 71 68 CONFIG_GENERIC_CALIBRATE_DELAY=y 69 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 72 70 CONFIG_DMA_COHERENT=y 73 71 CONFIG_CPU_BIG_ENDIAN=y 74 72 # CONFIG_CPU_LITTLE_ENDIAN is not set ··· 118 114 # CONFIG_PAGE_SIZE_16KB is not set 119 115 # CONFIG_PAGE_SIZE_64KB is not set 120 116 CONFIG_CPU_HAS_PREFETCH=y 121 - # CONFIG_MIPS_MT is not set 117 + CONFIG_MIPS_MT_DISABLED=y 118 + # CONFIG_MIPS_MT_SMTC is not set 119 + # CONFIG_MIPS_MT_SMP is not set 120 + # CONFIG_MIPS_VPE_LOADER is not set 122 121 # CONFIG_64BIT_PHYS_ADDR is not set 123 122 CONFIG_CPU_HAS_LLSC=y 124 123 CONFIG_CPU_HAS_SYNC=y 125 124 CONFIG_GENERIC_HARDIRQS=y 126 125 CONFIG_GENERIC_IRQ_PROBE=y 126 + CONFIG_IRQ_PER_CPU=y 127 127 CONFIG_HIGHMEM=y 128 128 CONFIG_CPU_SUPPORTS_HIGHMEM=y 129 129 CONFIG_SYS_SUPPORTS_HIGHMEM=y ··· 136 128 CONFIG_FLAT_NODE_MEM_MAP=y 137 129 # CONFIG_SPARSEMEM_STATIC is not set 138 130 CONFIG_SPLIT_PTLOCK_CPUS=4 131 + # CONFIG_RESOURCES_64BIT is not set 132 + CONFIG_SMP=y 133 + CONFIG_SYS_SUPPORTS_SMP=y 134 + CONFIG_NR_CPUS=2 139 135 # CONFIG_HZ_48 is not set 140 136 # CONFIG_HZ_100 is not set 141 137 # CONFIG_HZ_128 is not set ··· 149 137 # CONFIG_HZ_1024 is not set 150 138 CONFIG_SYS_SUPPORTS_ARBIT_HZ=y 151 139 CONFIG_HZ=1000 152 - CONFIG_SMP=y 153 - CONFIG_NR_CPUS=2 154 140 CONFIG_PREEMPT_NONE=y 155 141 # CONFIG_PREEMPT_VOLUNTARY is not set 156 142 # CONFIG_PREEMPT is not set 157 143 CONFIG_PREEMPT_BKL=y 144 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 158 145 159 146 # 160 147 # Code maturity level options ··· 186 175 CONFIG_BUG=y 187 176 CONFIG_ELF_CORE=y 188 177 CONFIG_BASE_FULL=y 178 + CONFIG_RT_MUTEXES=y 189 179 CONFIG_FUTEX=y 190 180 CONFIG_EPOLL=y 191 181 CONFIG_SHMEM=y 192 182 CONFIG_SLAB=y 183 + CONFIG_VM_EVENT_COUNTERS=y 193 184 # CONFIG_TINY_SHMEM is not set 194 185 CONFIG_BASE_SMALL=0 195 186 # CONFIG_SLOB is not set ··· 281 268 # CONFIG_INET_IPCOMP is not set 282 269 # CONFIG_INET_XFRM_TUNNEL is not set 283 270 # CONFIG_INET_TUNNEL is not set 271 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 272 + CONFIG_INET_XFRM_MODE_TUNNEL=m 284 273 CONFIG_INET_DIAG=y 285 274 CONFIG_INET_TCP_DIAG=y 286 275 # CONFIG_TCP_CONG_ADVANCED is not set ··· 295 280 CONFIG_INET6_IPCOMP=m 296 281 CONFIG_INET6_XFRM_TUNNEL=m 297 282 CONFIG_INET6_TUNNEL=m 283 + CONFIG_INET6_XFRM_MODE_TRANSPORT=m 284 + CONFIG_INET6_XFRM_MODE_TUNNEL=m 298 285 CONFIG_IPV6_TUNNEL=m 286 + CONFIG_NETWORK_SECMARK=y 299 287 # CONFIG_NETFILTER is not set 300 288 # CONFIG_BRIDGE is not set 301 289 # CONFIG_VLAN_8021Q is not set ··· 335 317 CONFIG_PREVENT_FIRMWARE_BUILD=y 336 318 CONFIG_FW_LOADER=m 337 319 # CONFIG_DEBUG_DRIVER is not set 320 + # CONFIG_SYS_HYPERVISOR is not set 338 321 339 322 # 340 323 # Connector - unified userspace <-> kernelspace linker ··· 430 411 CONFIG_QSEMI_PHY=m 431 412 CONFIG_LXT_PHY=m 432 413 CONFIG_CICADA_PHY=m 414 + CONFIG_VITESSE_PHY=m 415 + CONFIG_SMSC_PHY=m 433 416 434 417 # 435 418 # Ethernet (10 or 100Mbit) ··· 473 452 # CONFIG_CHELSIO_T1 is not set 474 453 # CONFIG_IXGB is not set 475 454 # CONFIG_S2IO is not set 455 + # CONFIG_MYRI10GE is not set 476 456 477 457 # 478 458 # Token Ring devices ··· 551 529 # Watchdog Cards 552 530 # 553 531 # CONFIG_WATCHDOG is not set 532 + # CONFIG_HW_RANDOM is not set 554 533 # CONFIG_RTC is not set 555 534 CONFIG_GEN_RTC=y 556 535 CONFIG_GEN_RTC_X=y ··· 599 576 # Multimedia devices 600 577 # 601 578 # CONFIG_VIDEO_DEV is not set 579 + CONFIG_VIDEO_V4L2=y 602 580 603 581 # 604 582 # Digital Video Broadcasting Devices ··· 609 585 # 610 586 # Graphics support 611 587 # 588 + # CONFIG_FIRMWARE_EDID is not set 612 589 # CONFIG_FB is not set 613 590 614 591 # ··· 666 641 # 667 642 668 643 # 644 + # DMA Engine support 645 + # 646 + # CONFIG_DMA_ENGINE is not set 647 + 648 + # 649 + # DMA Clients 650 + # 651 + 652 + # 653 + # DMA Devices 654 + # 655 + 656 + # 669 657 # File systems 670 658 # 671 659 # CONFIG_EXT2_FS is not set ··· 690 652 # CONFIG_MINIX_FS is not set 691 653 # CONFIG_ROMFS_FS is not set 692 654 CONFIG_INOTIFY=y 655 + CONFIG_INOTIFY_USER=y 693 656 # CONFIG_QUOTA is not set 694 657 CONFIG_DNOTIFY=y 695 658 # CONFIG_AUTOFS_FS is not set ··· 743 704 CONFIG_SUNRPC=y 744 705 # CONFIG_SMB_FS is not set 745 706 # CONFIG_CIFS is not set 707 + # CONFIG_CIFS_DEBUG2 is not set 746 708 # CONFIG_NCP_FS is not set 747 709 # CONFIG_CODA_FS is not set 748 710 ··· 763 723 # 764 724 # CONFIG_PRINTK_TIME is not set 765 725 # CONFIG_MAGIC_SYSRQ is not set 726 + # CONFIG_UNUSED_SYMBOLS is not set 766 727 CONFIG_DEBUG_KERNEL=y 767 728 CONFIG_LOG_BUF_SHIFT=14 768 729 CONFIG_DETECT_SOFTLOCKUP=y 769 730 # CONFIG_SCHEDSTATS is not set 770 731 # CONFIG_DEBUG_SLAB is not set 771 - CONFIG_DEBUG_MUTEXES=y 732 + # CONFIG_DEBUG_RT_MUTEXES is not set 733 + # CONFIG_RT_MUTEX_TESTER is not set 772 734 # CONFIG_DEBUG_SPINLOCK is not set 735 + CONFIG_DEBUG_MUTEXES=y 736 + # CONFIG_DEBUG_RWSEMS is not set 773 737 # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 738 + # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 774 739 # CONFIG_DEBUG_KOBJECT is not set 775 740 # CONFIG_DEBUG_HIGHMEM is not set 776 741 # CONFIG_DEBUG_INFO is not set ··· 838 793 CONFIG_LIBCRC32C=m 839 794 CONFIG_ZLIB_INFLATE=m 840 795 CONFIG_ZLIB_DEFLATE=m 796 + CONFIG_PLIST=y
-1
arch/mips/ddb5xxx/ddb5477/irq.c
··· 74 74 75 75 extern void vrc5477_irq_init(u32 base); 76 76 extern void mips_cpu_irq_init(u32 base); 77 - extern int setup_irq(unsigned int irq, struct irqaction *irqaction); 78 77 static struct irqaction irq_cascade = { no_action, 0, CPU_MASK_NONE, "cascade", NULL, NULL }; 79 78 80 79 void __init arch_init_irq(void)
+1 -1
arch/mips/ddb5xxx/ddb5477/irq_5477.c
··· 89 89 ll_vrc5477_irq_enable( irq - vrc5477_irq_base); 90 90 } 91 91 92 - hw_irq_controller vrc5477_irq_controller = { 92 + struct irq_chip vrc5477_irq_controller = { 93 93 .typename = "vrc5477_irq", 94 94 .startup = vrc5477_irq_startup, 95 95 .shutdown = vrc5477_irq_shutdown,
+2 -4
arch/mips/ddb5xxx/ddb5477/setup.c
··· 19 19 #include <linux/sched.h> 20 20 #include <linux/pci.h> 21 21 #include <linux/ide.h> 22 + #include <linux/irq.h> 22 23 #include <linux/fs.h> 23 24 #include <linux/ioport.h> 24 25 #include <linux/param.h> /* for HZ */ ··· 147 146 mips_hpt_frequency = bus_frequency*(i+4)/4; 148 147 } 149 148 150 - extern int setup_irq(unsigned int irq, struct irqaction *irqaction); 151 - 152 - static void __init ddb_timer_setup(struct irqaction *irq) 149 + void __init plat_timer_setup(struct irqaction *irq) 153 150 { 154 151 #if defined(USE_CPU_COUNTER_TIMER) 155 152 ··· 177 178 set_io_port_base(KSEG1ADDR(DDB_PCI_IO_BASE)); 178 179 179 180 board_time_init = ddb_time_init; 180 - board_timer_setup = ddb_timer_setup; 181 181 182 182 _machine_restart = ddb_machine_restart; 183 183 _machine_halt = ddb_machine_halt;
+2 -2
arch/mips/dec/ioasic-irq.c
··· 93 93 enable_ioasic_irq(irq); 94 94 } 95 95 96 - static struct hw_interrupt_type ioasic_irq_type = { 96 + static struct irq_chip ioasic_irq_type = { 97 97 .typename = "IO-ASIC", 98 98 .startup = startup_ioasic_irq, 99 99 .shutdown = shutdown_ioasic_irq, ··· 121 121 end_ioasic_irq(irq); 122 122 } 123 123 124 - static struct hw_interrupt_type ioasic_dma_irq_type = { 124 + static struct irq_chip ioasic_dma_irq_type = { 125 125 .typename = "IO-ASIC-DMA", 126 126 .startup = startup_ioasic_dma_irq, 127 127 .shutdown = shutdown_ioasic_dma_irq,
+1 -1
arch/mips/dec/kn02-irq.c
··· 94 94 enable_kn02_irq(irq); 95 95 } 96 96 97 - static struct hw_interrupt_type kn02_irq_type = { 97 + static struct irq_chip kn02_irq_type = { 98 98 .typename = "KN02-CSR", 99 99 .startup = startup_kn02_irq, 100 100 .shutdown = shutdown_kn02_irq,
-2
arch/mips/dec/setup.c
··· 145 145 146 146 147 147 extern void dec_time_init(void); 148 - extern void dec_timer_setup(struct irqaction *); 149 148 150 149 void __init plat_mem_setup(void) 151 150 { 152 151 board_be_init = dec_be_init; 153 152 board_time_init = dec_time_init; 154 - board_timer_setup = dec_timer_setup; 155 153 156 154 wbflush_setup(); 157 155
+1 -1
arch/mips/dec/time.c
··· 186 186 187 187 EXPORT_SYMBOL(do_settimeofday); 188 188 189 - void __init dec_timer_setup(struct irqaction *irq) 189 + void __init plat_timer_setup(struct irqaction *irq) 190 190 { 191 191 setup_irq(dec_interrupt[DEC_IRQ_RTC], irq); 192 192
+53 -4
arch/mips/defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:50:54 2006 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 09:49:33 2006 5 5 # 6 6 CONFIG_MIPS=y 7 7 ··· 21 21 # CONFIG_MIPS_DB1550 is not set 22 22 # CONFIG_MIPS_DB1200 is not set 23 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 24 25 # CONFIG_MIPS_COBALT is not set 25 26 # CONFIG_MACH_DECSTATION is not set 26 27 # CONFIG_MIPS_EV64120 is not set ··· 33 32 # CONFIG_MIPS_ATLAS is not set 34 33 # CONFIG_MIPS_MALTA is not set 35 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 36 # CONFIG_MIPS_SIM is not set 37 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 45 # CONFIG_MACH_VR41XX is not set 48 46 # CONFIG_PMC_YOSEMITE is not set 49 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 50 49 CONFIG_SGI_IP22=y 51 50 # CONFIG_SGI_IP27 is not set 52 51 # CONFIG_SGI_IP32 is not set ··· 68 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 66 CONFIG_GENERIC_HWEIGHT=y 70 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 71 69 CONFIG_ARC=y 72 70 CONFIG_DMA_NONCOHERENT=y 73 71 CONFIG_DMA_NEED_PCI_MAP_STATE=y ··· 123 119 # CONFIG_PAGE_SIZE_64KB is not set 124 120 CONFIG_BOARD_SCACHE=y 125 121 CONFIG_IP22_CPU_SCACHE=y 126 - # CONFIG_MIPS_MT is not set 122 + CONFIG_MIPS_MT_DISABLED=y 123 + # CONFIG_MIPS_MT_SMTC is not set 124 + # CONFIG_MIPS_MT_SMP is not set 125 + # CONFIG_MIPS_VPE_LOADER is not set 127 126 # CONFIG_64BIT_PHYS_ADDR is not set 128 127 CONFIG_CPU_HAS_LLSC=y 129 128 CONFIG_CPU_HAS_SYNC=y ··· 141 134 CONFIG_FLAT_NODE_MEM_MAP=y 142 135 # CONFIG_SPARSEMEM_STATIC is not set 143 136 CONFIG_SPLIT_PTLOCK_CPUS=4 137 + # CONFIG_RESOURCES_64BIT is not set 144 138 # CONFIG_HZ_48 is not set 145 139 # CONFIG_HZ_100 is not set 146 140 # CONFIG_HZ_128 is not set ··· 154 146 # CONFIG_PREEMPT_NONE is not set 155 147 CONFIG_PREEMPT_VOLUNTARY=y 156 148 # CONFIG_PREEMPT is not set 149 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 157 150 158 151 # 159 152 # Code maturity level options ··· 187 178 CONFIG_BUG=y 188 179 CONFIG_ELF_CORE=y 189 180 CONFIG_BASE_FULL=y 181 + CONFIG_RT_MUTEXES=y 190 182 CONFIG_FUTEX=y 191 183 CONFIG_EPOLL=y 192 184 CONFIG_SHMEM=y 193 185 CONFIG_SLAB=y 186 + CONFIG_VM_EVENT_COUNTERS=y 194 187 # CONFIG_TINY_SHMEM is not set 195 188 CONFIG_BASE_SMALL=0 196 189 # CONFIG_SLOB is not set ··· 283 272 CONFIG_INET_IPCOMP=m 284 273 CONFIG_INET_XFRM_TUNNEL=m 285 274 CONFIG_INET_TUNNEL=m 275 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 276 + CONFIG_INET_XFRM_MODE_TUNNEL=m 286 277 CONFIG_INET_DIAG=y 287 278 CONFIG_INET_TCP_DIAG=y 288 279 # CONFIG_TCP_CONG_ADVANCED is not set ··· 332 319 CONFIG_INET6_IPCOMP=m 333 320 CONFIG_INET6_XFRM_TUNNEL=m 334 321 CONFIG_INET6_TUNNEL=m 322 + CONFIG_INET6_XFRM_MODE_TRANSPORT=m 323 + CONFIG_INET6_XFRM_MODE_TUNNEL=m 335 324 CONFIG_IPV6_TUNNEL=m 325 + CONFIG_NETWORK_SECMARK=y 336 326 CONFIG_NETFILTER=y 337 327 # CONFIG_NETFILTER_DEBUG is not set 338 328 ··· 351 335 CONFIG_NETFILTER_XT_TARGET_MARK=m 352 336 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 353 337 CONFIG_NETFILTER_XT_TARGET_NOTRACK=m 338 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 339 + CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m 354 340 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 355 341 CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m 356 342 CONFIG_NETFILTER_XT_MATCH_CONNMARK=m ··· 367 349 CONFIG_NETFILTER_XT_MATCH_POLICY=m 368 350 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 369 351 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 352 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 370 353 CONFIG_NETFILTER_XT_MATCH_REALM=m 371 354 CONFIG_NETFILTER_XT_MATCH_SCTP=m 372 355 CONFIG_NETFILTER_XT_MATCH_STATE=m 356 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 373 357 CONFIG_NETFILTER_XT_MATCH_STRING=m 374 358 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 375 359 ··· 381 361 CONFIG_IP_NF_CONNTRACK=m 382 362 CONFIG_IP_NF_CT_ACCT=y 383 363 CONFIG_IP_NF_CONNTRACK_MARK=y 364 + CONFIG_IP_NF_CONNTRACK_SECMARK=y 384 365 CONFIG_IP_NF_CONNTRACK_EVENTS=y 385 366 CONFIG_IP_NF_CONNTRACK_NETLINK=m 386 367 # CONFIG_IP_NF_CT_PROTO_SCTP is not set ··· 392 371 CONFIG_IP_NF_AMANDA=m 393 372 CONFIG_IP_NF_PPTP=m 394 373 CONFIG_IP_NF_H323=m 374 + CONFIG_IP_NF_SIP=m 395 375 CONFIG_IP_NF_QUEUE=m 396 376 CONFIG_IP_NF_IPTABLES=m 397 377 CONFIG_IP_NF_MATCH_IPRANGE=m ··· 423 401 CONFIG_IP_NF_NAT_AMANDA=m 424 402 CONFIG_IP_NF_NAT_PPTP=m 425 403 CONFIG_IP_NF_NAT_H323=m 404 + CONFIG_IP_NF_NAT_SIP=m 426 405 CONFIG_IP_NF_MANGLE=m 427 406 CONFIG_IP_NF_TARGET_TOS=m 428 407 CONFIG_IP_NF_TARGET_ECN=m ··· 556 533 CONFIG_STANDALONE=y 557 534 CONFIG_PREVENT_FIRMWARE_BUILD=y 558 535 # CONFIG_FW_LOADER is not set 536 + # CONFIG_SYS_HYPERVISOR is not set 559 537 560 538 # 561 539 # Connector - unified userspace <-> kernelspace linker ··· 676 652 CONFIG_QSEMI_PHY=m 677 653 CONFIG_LXT_PHY=m 678 654 CONFIG_CICADA_PHY=m 655 + # CONFIG_VITESSE_PHY is not set 656 + # CONFIG_SMSC_PHY is not set 679 657 680 658 # 681 659 # Ethernet (10 or 100Mbit) ··· 775 749 CONFIG_VT=y 776 750 CONFIG_VT_CONSOLE=y 777 751 CONFIG_HW_CONSOLE=y 752 + CONFIG_VT_HW_CONSOLE_BINDING=y 778 753 # CONFIG_SERIAL_NONSTANDARD is not set 779 754 780 755 # ··· 808 781 # 809 782 # CONFIG_SOFT_WATCHDOG is not set 810 783 CONFIG_INDYDOG=m 784 + # CONFIG_HW_RANDOM is not set 811 785 # CONFIG_RTC is not set 812 786 CONFIG_SGI_DS1286=m 813 787 # CONFIG_GEN_RTC is not set ··· 857 829 # Multimedia devices 858 830 # 859 831 # CONFIG_VIDEO_DEV is not set 832 + CONFIG_VIDEO_V4L2=y 860 833 861 834 # 862 835 # Digital Video Broadcasting Devices ··· 867 838 # 868 839 # Graphics support 869 840 # 841 + CONFIG_FIRMWARE_EDID=y 870 842 # CONFIG_FB is not set 871 843 872 844 # ··· 940 910 # CONFIG_RTC_CLASS is not set 941 911 942 912 # 913 + # DMA Engine support 914 + # 915 + # CONFIG_DMA_ENGINE is not set 916 + 917 + # 918 + # DMA Clients 919 + # 920 + 921 + # 922 + # DMA Devices 923 + # 924 + 925 + # 943 926 # File systems 944 927 # 945 928 CONFIG_EXT2_FS=m ··· 969 926 # CONFIG_JFS_FS is not set 970 927 CONFIG_FS_POSIX_ACL=y 971 928 CONFIG_XFS_FS=m 972 - CONFIG_XFS_EXPORT=y 973 929 CONFIG_XFS_QUOTA=y 974 930 CONFIG_XFS_SECURITY=y 975 931 # CONFIG_XFS_POSIX_ACL is not set ··· 977 935 CONFIG_MINIX_FS=m 978 936 # CONFIG_ROMFS_FS is not set 979 937 CONFIG_INOTIFY=y 938 + CONFIG_INOTIFY_USER=y 980 939 CONFIG_QUOTA=y 981 940 # CONFIG_QFMT_V1 is not set 982 941 CONFIG_QFMT_V2=m ··· 1034 991 # CONFIG_QNX4FS_FS is not set 1035 992 # CONFIG_SYSV_FS is not set 1036 993 CONFIG_UFS_FS=m 994 + # CONFIG_UFS_FS_WRITE is not set 995 + # CONFIG_UFS_DEBUG is not set 1037 996 1038 997 # 1039 998 # Network File Systems ··· 1065 1020 CONFIG_SMB_NLS_REMOTE="cp437" 1066 1021 CONFIG_CIFS=m 1067 1022 # CONFIG_CIFS_STATS is not set 1023 + # CONFIG_CIFS_WEAK_PW_HASH is not set 1068 1024 # CONFIG_CIFS_XATTR is not set 1025 + # CONFIG_CIFS_DEBUG2 is not set 1069 1026 # CONFIG_CIFS_EXPERIMENTAL is not set 1070 1027 # CONFIG_NCP_FS is not set 1071 1028 CONFIG_CODA_FS=m ··· 1150 1103 # 1151 1104 # CONFIG_PRINTK_TIME is not set 1152 1105 # CONFIG_MAGIC_SYSRQ is not set 1106 + # CONFIG_UNUSED_SYMBOLS is not set 1153 1107 # CONFIG_DEBUG_KERNEL is not set 1154 1108 CONFIG_LOG_BUF_SHIFT=14 1155 1109 # CONFIG_DEBUG_FS is not set ··· 1210 1162 CONFIG_TEXTSEARCH_KMP=m 1211 1163 CONFIG_TEXTSEARCH_BM=m 1212 1164 CONFIG_TEXTSEARCH_FSM=m 1165 + CONFIG_PLIST=y
-1
arch/mips/emma2rh/common/irq.c
··· 22 22 * along with this program; if not, write to the Free Software 23 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 24 */ 25 - #include <linux/config.h> 26 25 #include <linux/init.h> 27 26 #include <linux/interrupt.h> 28 27 #include <linux/irq.h>
+1 -1
arch/mips/emma2rh/common/irq_emma2rh.c
··· 78 78 ll_emma2rh_irq_enable(irq - emma2rh_irq_base); 79 79 } 80 80 81 - hw_irq_controller emma2rh_irq_controller = { 81 + struct irq_chip emma2rh_irq_controller = { 82 82 .typename = "emma2rh_irq", 83 83 .startup = emma2rh_irq_startup, 84 84 .shutdown = emma2rh_irq_shutdown,
-1
arch/mips/emma2rh/common/prom.c
··· 22 22 * along with this program; if not, write to the Free Software 23 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 24 */ 25 - #include <linux/config.h> 26 25 #include <linux/init.h> 27 26 #include <linux/mm.h> 28 27 #include <linux/sched.h>
-1
arch/mips/emma2rh/markeins/irq.c
··· 22 22 * along with this program; if not, write to the Free Software 23 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 24 */ 25 - #include <linux/config.h> 26 25 #include <linux/init.h> 27 26 #include <linux/interrupt.h> 28 27 #include <linux/irq.h>
+2 -2
arch/mips/emma2rh/markeins/irq_markeins.c
··· 67 67 ll_emma2rh_sw_irq_enable(irq - emma2rh_sw_irq_base); 68 68 } 69 69 70 - hw_irq_controller emma2rh_sw_irq_controller = { 70 + struct irq_chip emma2rh_sw_irq_controller = { 71 71 .typename = "emma2rh_sw_irq", 72 72 .startup = emma2rh_sw_irq_startup, 73 73 .shutdown = emma2rh_sw_irq_shutdown, ··· 147 147 ll_emma2rh_gpio_irq_enable(irq - emma2rh_gpio_irq_base); 148 148 } 149 149 150 - hw_irq_controller emma2rh_gpio_irq_controller = { 150 + struct irq_chip emma2rh_gpio_irq_controller = { 151 151 .typename = "emma2rh_gpio_irq", 152 152 .startup = emma2rh_gpio_irq_startup, 153 153 .shutdown = emma2rh_gpio_irq_shutdown,
-1
arch/mips/emma2rh/markeins/platform.c
··· 20 20 * along with this program; if not, write to the Free Software 21 21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 22 22 */ 23 - #include <linux/config.h> 24 23 #include <linux/init.h> 25 24 #include <linux/kernel.h> 26 25 #include <linux/types.h>
+1 -3
arch/mips/emma2rh/markeins/setup.c
··· 22 22 * along with this program; if not, write to the Free Software 23 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 24 */ 25 - #include <linux/config.h> 26 25 #include <linux/init.h> 27 26 #include <linux/kernel.h> 28 27 #include <linux/types.h> ··· 104 105 mips_hpt_frequency = (bus_frequency * (4 + reg)) / 4 / 2; 105 106 } 106 107 107 - static void __init emma2rh_timer_setup(struct irqaction *irq) 108 + void __init plat_timer_setup(struct irqaction *irq) 108 109 { 109 110 /* we are using the cpu counter for timer interrupts */ 110 111 setup_irq(CPU_IRQ_BASE + 7, irq); ··· 149 150 set_io_port_base(KSEG1ADDR(EMMA2RH_PCI_IO_BASE)); 150 151 151 152 board_time_init = emma2rh_time_init; 152 - board_timer_setup = emma2rh_timer_setup; 153 153 154 154 _machine_restart = markeins_machine_restart; 155 155 _machine_halt = markeins_machine_halt;
+2 -2
arch/mips/gt64120/ev64120/irq.c
··· 104 104 enable_ev64120_irq(irq); 105 105 } 106 106 107 - static struct hw_interrupt_type ev64120_irq_type = { 107 + static struct irq_chip ev64120_irq_type = { 108 108 .typename = "EV64120", 109 109 .startup = startup_ev64120_irq, 110 110 .shutdown = shutdown_ev64120_irq, ··· 138 138 /* Let's initialize our IRQ descriptors */ 139 139 for (i = 0; i < NR_IRQS; i++) { 140 140 irq_desc[i].status = 0; 141 - irq_desc[i].chip = &no_irq_type; 141 + irq_desc[i].chip = &no_irq_chip; 142 142 irq_desc[i].action = NULL; 143 143 irq_desc[i].depth = 0; 144 144 spin_lock_init(&irq_desc[i].lock);
-3
arch/mips/gt64120/wrppmc/setup.c
··· 8 8 * Copyright (C) 1996, 1997, 2004 by Ralf Baechle (ralf@linux-mips.org) 9 9 * Copyright (C) 2006, Wind River System Inc. Rongkai.zhan <rongkai.zhan@windriver.com> 10 10 */ 11 - #include <linux/config.h> 12 11 #include <linux/init.h> 13 12 #include <linux/string.h> 14 13 #include <linux/kernel.h> ··· 127 128 void __init plat_mem_setup(void) 128 129 { 129 130 extern void wrppmc_time_init(void); 130 - extern void wrppmc_timer_setup(struct irqaction *); 131 131 extern void wrppmc_machine_restart(char *command); 132 132 extern void wrppmc_machine_halt(void); 133 133 extern void wrppmc_machine_power_off(void); ··· 137 139 138 140 /* Use MIPS Count/Compare Timer */ 139 141 board_time_init = wrppmc_time_init; 140 - board_timer_setup = wrppmc_timer_setup; 141 142 142 143 /* This makes the operations of 'in/out[bwl]' to the 143 144 * physical address ( < KSEG0) can work via KSEG1
+1 -2
arch/mips/gt64120/wrppmc/time.c
··· 10 10 * Copyright (C) 1996, 1997, 2004 by Ralf Baechle (ralf@linux-mips.org) 11 11 * Copyright (C) 2006, Wind River System Inc. 12 12 */ 13 - #include <linux/config.h> 14 13 #include <linux/init.h> 15 14 #include <linux/string.h> 16 15 #include <linux/kernel.h> ··· 26 27 27 28 #define WRPPMC_CPU_CLK_FREQ 40000000 /* 40MHZ */ 28 29 29 - void __init wrppmc_timer_setup(struct irqaction *irq) 30 + void __init plat_timer_setup(struct irqaction *irq) 30 31 { 31 32 /* Install ISR for timer interrupt */ 32 33 setup_irq(WRPPMC_MIPS_TIMER_IRQ, irq);
+2 -2
arch/mips/ite-boards/generic/irq.c
··· 133 133 enable_it8172_irq(irq); 134 134 } 135 135 136 - static struct hw_interrupt_type it8172_irq_type = { 136 + static struct irq_chip it8172_irq_type = { 137 137 .typename = "ITE8172", 138 138 .startup = startup_ite_irq, 139 139 .shutdown = shutdown_ite_irq, ··· 153 153 #define shutdown_none disable_none 154 154 #define end_none enable_none 155 155 156 - static struct hw_interrupt_type cp0_irq_type = { 156 + static struct irq_chip cp0_irq_type = { 157 157 .typename = "CP0 Count", 158 158 .startup = startup_none, 159 159 .shutdown = shutdown_none,
+1 -4
arch/mips/ite-boards/generic/it8172_setup.c
··· 29 29 #include <linux/init.h> 30 30 #include <linux/sched.h> 31 31 #include <linux/ioport.h> 32 + #include <linux/irq.h> 32 33 #include <linux/serial_reg.h> 33 34 #include <linux/major.h> 34 35 #include <linux/kdev_t.h> ··· 59 58 extern void it8172_halt(void); 60 59 extern void it8172_power_off(void); 61 60 62 - extern void (*board_time_init)(void); 63 - extern void (*board_timer_setup)(struct irqaction *irq); 64 61 extern void it8172_time_init(void); 65 - extern void it8172_timer_setup(struct irqaction *irq); 66 62 67 63 #ifdef CONFIG_IT8172_REVC 68 64 struct { ··· 167 169 clear_c0_status(ST0_FR); 168 170 169 171 board_time_init = it8172_time_init; 170 - board_timer_setup = it8172_timer_setup; 171 172 172 173 _machine_restart = it8172_restart; 173 174 _machine_halt = it8172_halt;
+2 -1
arch/mips/ite-boards/generic/time.c
··· 233 233 } 234 234 235 235 #define ALLINTS (IE_IRQ0 | IE_IRQ1 | IE_IRQ2 | IE_IRQ3 | IE_IRQ4 | IE_IRQ5) 236 - void __init it8172_timer_setup(struct irqaction *irq) 236 + 237 + void __init plat_timer_setup(struct irqaction *irq) 237 238 { 238 239 puts("timer_setup\n"); 239 240 put32(NR_IRQS);
+1 -1
arch/mips/jazz/irq.c
··· 55 55 enable_r4030_irq(irq); 56 56 } 57 57 58 - static struct hw_interrupt_type r4030_irq_type = { 58 + static struct irq_chip r4030_irq_type = { 59 59 .typename = "R4030", 60 60 .startup = startup_r4030_irq, 61 61 .shutdown = shutdown_r4030_irq,
+1 -2
arch/mips/jazz/setup.c
··· 37 37 extern void jazz_machine_halt(void); 38 38 extern void jazz_machine_power_off(void); 39 39 40 - static void __init jazz_time_init(struct irqaction *irq) 40 + void __init plat_time_init(struct irqaction *irq) 41 41 { 42 42 /* set the clock to 100 Hz */ 43 43 r4030_write_reg32(JAZZ_TIMER_INTERVAL, 9); ··· 75 75 for (i = 0; i < ARRAY_SIZE(jazz_io_resources); i++) 76 76 request_resource(&ioport_resource, jazz_io_resources + i); 77 77 78 - board_timer_setup = jazz_time_init; 79 78 /* The RTC is outside the port address space */ 80 79 81 80 _machine_restart = jazz_machine_restart;
+1 -1
arch/mips/jmr3927/rbhma3100/irq.c
··· 416 416 set_c0_status(ST0_IM); /* IE bit is still 0. */ 417 417 } 418 418 419 - static hw_irq_controller jmr3927_irq_controller = { 419 + static struct irq_chip jmr3927_irq_controller = { 420 420 .typename = "jmr3927_irq", 421 421 .startup = jmr3927_irq_startup, 422 422 .shutdown = jmr3927_irq_shutdown,
+2 -3
arch/mips/jmr3927/rbhma3100/setup.c
··· 40 40 #include <linux/sched.h> 41 41 #include <linux/pci.h> 42 42 #include <linux/ide.h> 43 + #include <linux/irq.h> 43 44 #include <linux/ioport.h> 44 45 #include <linux/param.h> /* for HZ */ 45 46 #include <linux/delay.h> ··· 184 183 } 185 184 186 185 unsigned long jmr3927_do_gettimeoffset(void); 187 - extern int setup_irq(unsigned int irq, struct irqaction *irqaction); 188 186 189 - static void __init jmr3927_timer_setup(struct irqaction *irq) 187 + void __init plat_timer_setup(struct irqaction *irq) 190 188 { 191 189 do_gettimeoffset = jmr3927_do_gettimeoffset; 192 190 ··· 244 244 set_io_port_base(JMR3927_PORT_BASE + JMR3927_PCIIO); 245 245 246 246 board_time_init = jmr3927_time_init; 247 - board_timer_setup = jmr3927_timer_setup; 248 247 249 248 _machine_restart = jmr3927_machine_restart; 250 249 _machine_halt = jmr3927_machine_halt;
-1
arch/mips/kernel/apm.c
··· 10 10 * [This document is available from Microsoft at: 11 11 * http://www.microsoft.com/hwdev/busbios/amp_12.htm] 12 12 */ 13 - #include <linux/config.h> 14 13 #include <linux/module.h> 15 14 #include <linux/poll.h> 16 15 #include <linux/timer.h>
+3 -3
arch/mips/kernel/cpu-probe.c
··· 459 459 isa = (config0 & MIPS_CONF_AT) >> 13; 460 460 switch (isa) { 461 461 case 0: 462 - switch ((config0 >> 10) & 7) { 462 + switch ((config0 & MIPS_CONF_AR) >> 10) { 463 463 case 0: 464 464 c->isa_level = MIPS_CPU_ISA_M32R1; 465 465 break; ··· 471 471 } 472 472 break; 473 473 case 2: 474 - switch ((config0 >> 10) & 7) { 474 + switch ((config0 & MIPS_CONF_AR) >> 10) { 475 475 case 0: 476 476 c->isa_level = MIPS_CPU_ISA_M64R1; 477 477 break; ··· 548 548 return config3 & MIPS_CONF_M; 549 549 } 550 550 551 - static inline void decode_configs(struct cpuinfo_mips *c) 551 + static void __init decode_configs(struct cpuinfo_mips *c) 552 552 { 553 553 /* MIPS32 or MIPS64 compliant CPU. */ 554 554 c->options = MIPS_CPU_4KEX | MIPS_CPU_4K_CACHE | MIPS_CPU_COUNTER |
+15
arch/mips/kernel/entry.S
··· 113 113 RESTORE_AT 114 114 RESTORE_STATIC 115 115 FEXPORT(restore_partial) # restore partial frame 116 + #ifdef CONFIG_TRACE_IRQFLAGS 117 + SAVE_STATIC 118 + SAVE_AT 119 + SAVE_TEMP 120 + LONG_L v0, PT_STATUS(sp) 121 + and v0, 1 122 + beqz v0, 1f 123 + jal trace_hardirqs_on 124 + b 2f 125 + 1: jal trace_hardirqs_off 126 + 2: 127 + RESTORE_TEMP 128 + RESTORE_AT 129 + RESTORE_STATIC 130 + #endif 116 131 RESTORE_SOME 117 132 RESTORE_SP_AND_RET 118 133 .set at
+2
arch/mips/kernel/gdb-low.S
··· 7 7 8 8 #include <asm/asm.h> 9 9 #include <asm/errno.h> 10 + #include <asm/irqflags.h> 10 11 #include <asm/mipsregs.h> 11 12 #include <asm/regdef.h> 12 13 #include <asm/stackframe.h> ··· 121 120 LONG_S $31, GDB_FR_REG31(sp) 122 121 123 122 CLI /* disable interrupts */ 123 + TRACE_IRQS_OFF 124 124 125 125 /* 126 126 * Followed by the floating point registers
+7 -1
arch/mips/kernel/genex.S
··· 13 13 #include <asm/asm.h> 14 14 #include <asm/asmmacro.h> 15 15 #include <asm/cacheops.h> 16 + #include <asm/irqflags.h> 16 17 #include <asm/regdef.h> 17 18 #include <asm/fpregdef.h> 18 19 #include <asm/mipsregs.h> ··· 129 128 NESTED(handle_int, PT_SIZE, sp) 130 129 SAVE_ALL 131 130 CLI 131 + TRACE_IRQS_OFF 132 132 133 133 PTR_LA ra, ret_from_irq 134 134 move a0, sp ··· 218 216 _ehb 219 217 #endif /* CONFIG_MIPS_MT_SMTC */ 220 218 CLI 219 + TRACE_IRQS_OFF 221 220 move a0, sp 222 221 jalr v0 223 222 j ret_from_irq ··· 291 288 .endm 292 289 293 290 .macro __build_clear_sti 291 + TRACE_IRQS_ON 294 292 STI 295 293 .endm 296 294 297 295 .macro __build_clear_cli 298 296 CLI 297 + TRACE_IRQS_OFF 299 298 .endm 300 299 301 300 .macro __build_clear_fpe ··· 305 300 li a2, ~(0x3f << 12) 306 301 and a2, a1 307 302 ctc1 a2, fcr31 303 + TRACE_IRQS_ON 308 304 STI 309 305 .endm 310 306 ··· 371 365 BUILD_HANDLER mdmx mdmx sti silent /* #22 */ 372 366 BUILD_HANDLER watch watch sti verbose /* #23 */ 373 367 BUILD_HANDLER mcheck mcheck cli verbose /* #24 */ 374 - BUILD_HANDLER mt mt sti verbose /* #25 */ 368 + BUILD_HANDLER mt mt sti silent /* #25 */ 375 369 BUILD_HANDLER dsp dsp sti silent /* #26 */ 376 370 BUILD_HANDLER reserved reserved sti verbose /* others */ 377 371
+2 -1
arch/mips/kernel/head.S
··· 5 5 * 6 6 * Copyright (C) 1994, 1995 Waldorf Electronics 7 7 * Written by Ralf Baechle and Andreas Busse 8 - * Copyright (C) 1994, 95, 96, 97, 98, 99, 2003 Ralf Baechle 8 + * Copyright (C) 1994 - 99, 2003, 06 Ralf Baechle 9 9 * Copyright (C) 1996 Paul M. Antoine 10 10 * Modified for DECStation and hence R3000 support by Paul M. Antoine 11 11 * Further modifications by David S. Miller and Harald Koerfgen ··· 18 18 19 19 #include <asm/asm.h> 20 20 #include <asm/asmmacro.h> 21 + #include <asm/irqflags.h> 21 22 #include <asm/regdef.h> 22 23 #include <asm/page.h> 23 24 #include <asm/mipsregs.h>
+1 -1
arch/mips/kernel/i8259.c
··· 51 51 return 0; /* never anything pending */ 52 52 } 53 53 54 - static struct hw_interrupt_type i8259A_irq_type = { 54 + static struct irq_chip i8259A_irq_type = { 55 55 .typename = "XT-PIC", 56 56 .startup = startup_8259A_irq, 57 57 .shutdown = shutdown_8259A_irq,
+2 -2
arch/mips/kernel/irq-msc01.c
··· 137 137 138 138 #define shutdown_msc_irq disable_msc_irq 139 139 140 - struct hw_interrupt_type msc_levelirq_type = { 140 + struct irq_chip msc_levelirq_type = { 141 141 .typename = "SOC-it-Level", 142 142 .startup = startup_msc_irq, 143 143 .shutdown = shutdown_msc_irq, ··· 147 147 .end = end_msc_irq, 148 148 }; 149 149 150 - struct hw_interrupt_type msc_edgeirq_type = { 150 + struct irq_chip msc_edgeirq_type = { 151 151 .typename = "SOC-it-Edge", 152 152 .startup =startup_msc_irq, 153 153 .shutdown = shutdown_msc_irq,
+1 -1
arch/mips/kernel/irq-mv6434x.c
··· 136 136 137 137 #define shutdown_mv64340_irq disable_mv64340_irq 138 138 139 - struct hw_interrupt_type mv64340_irq_type = { 139 + struct irq_chip mv64340_irq_type = { 140 140 .typename = "MV-64340", 141 141 .startup = startup_mv64340_irq, 142 142 .shutdown = shutdown_mv64340_irq,
+1 -1
arch/mips/kernel/irq-rm7000.c
··· 71 71 unmask_rm7k_irq(irq); 72 72 } 73 73 74 - static hw_irq_controller rm7k_irq_controller = { 74 + static struct irq_chip rm7k_irq_controller = { 75 75 .typename = "RM7000", 76 76 .startup = rm7k_cpu_irq_startup, 77 77 .shutdown = rm7k_cpu_irq_shutdown,
+2 -2
arch/mips/kernel/irq-rm9000.c
··· 105 105 unmask_rm9k_irq(irq); 106 106 } 107 107 108 - static hw_irq_controller rm9k_irq_controller = { 108 + static struct irq_chip rm9k_irq_controller = { 109 109 .typename = "RM9000", 110 110 .startup = rm9k_cpu_irq_startup, 111 111 .shutdown = rm9k_cpu_irq_shutdown, ··· 115 115 .end = rm9k_cpu_irq_end, 116 116 }; 117 117 118 - static hw_irq_controller rm9k_perfcounter_irq = { 118 + static struct irq_chip rm9k_perfcounter_irq = { 119 119 .typename = "RM9000", 120 120 .startup = rm9k_perfcounter_irq_startup, 121 121 .shutdown = rm9k_perfcounter_irq_shutdown,
+1 -1
arch/mips/kernel/irq.c
··· 136 136 irq_desc[i].status = IRQ_DISABLED; 137 137 irq_desc[i].action = NULL; 138 138 irq_desc[i].depth = 1; 139 - irq_desc[i].chip = &no_irq_type; 139 + irq_desc[i].chip = &no_irq_chip; 140 140 spin_lock_init(&irq_desc[i].lock); 141 141 #ifdef CONFIG_MIPS_MT_SMTC 142 142 irq_hwmask[i] = 0;
+2 -2
arch/mips/kernel/irq_cpu.c
··· 94 94 unmask_mips_irq(irq); 95 95 } 96 96 97 - static hw_irq_controller mips_cpu_irq_controller = { 97 + static struct irq_chip mips_cpu_irq_controller = { 98 98 .typename = "MIPS", 99 99 .startup = mips_cpu_irq_startup, 100 100 .shutdown = mips_cpu_irq_shutdown, ··· 140 140 141 141 #define mips_mt_cpu_irq_end mips_cpu_irq_end 142 142 143 - static hw_irq_controller mips_mt_cpu_irq_controller = { 143 + static struct irq_chip mips_mt_cpu_irq_controller = { 144 144 .typename = "MIPS", 145 145 .startup = mips_mt_cpu_irq_startup, 146 146 .shutdown = mips_mt_cpu_irq_shutdown,
+1
arch/mips/kernel/mips-mt.c
··· 7 7 #include <linux/sched.h> 8 8 #include <linux/cpumask.h> 9 9 #include <linux/interrupt.h> 10 + #include <linux/security.h> 10 11 11 12 #include <asm/cpu.h> 12 13 #include <asm/processor.h>
+16 -1
arch/mips/kernel/scall32-o32.S
··· 3 3 * License. See the file "COPYING" in the main directory of this archive 4 4 * for more details. 5 5 * 6 - * Copyright (C) 1995, 96, 97, 98, 99, 2000, 01, 02 by Ralf Baechle 6 + * Copyright (C) 1995-99, 2000- 02, 06 Ralf Baechle <ralf@linux-mips.org> 7 7 * Copyright (C) 2001 MIPS Technologies, Inc. 8 8 * Copyright (C) 2004 Thiemo Seufer 9 9 */ 10 10 #include <linux/errno.h> 11 11 #include <asm/asm.h> 12 12 #include <asm/asmmacro.h> 13 + #include <asm/irqflags.h> 13 14 #include <asm/mipsregs.h> 14 15 #include <asm/regdef.h> 15 16 #include <asm/stackframe.h> ··· 28 27 NESTED(handle_sys, PT_SIZE, sp) 29 28 .set noat 30 29 SAVE_SOME 30 + #ifdef CONFIG_TRACE_IRQFLAGS 31 + TRACE_IRQS_ON 32 + #ifdef CONFIG_64BIT 33 + LONG_L $8, PT_R8(sp) 34 + LONG_L $9, PT_R9(sp) 35 + #endif 36 + LONG_L $7, PT_R7(sp) 37 + LONG_L $6, PT_R6(sp) 38 + LONG_L $5, PT_R5(sp) 39 + LONG_L $4, PT_R4(sp) 40 + LONG_L $2, PT_R2(sp) 41 + #endif 31 42 STI 32 43 .set at 33 44 ··· 660 647 sys sys_splice 4 661 648 sys sys_sync_file_range 7 /* 4305 */ 662 649 sys sys_tee 4 650 + sys sys_vmsplice 4 651 + sys sys_move_pages 6 663 652 .endm 664 653 665 654 /* We pre-compute the number of _instruction_ bytes needed to
+4
arch/mips/kernel/scall64-64.S
··· 10 10 #include <linux/errno.h> 11 11 #include <asm/asm.h> 12 12 #include <asm/asmmacro.h> 13 + #include <asm/irqflags.h> 13 14 #include <asm/mipsregs.h> 14 15 #include <asm/regdef.h> 15 16 #include <asm/stackframe.h> ··· 34 33 */ 35 34 .set noat 36 35 SAVE_SOME 36 + TRACE_IRQS_ON 37 37 STI 38 38 .set at 39 39 #endif ··· 464 462 PTR sys_splice 465 463 PTR sys_sync_file_range 466 464 PTR sys_tee /* 5265 */ 465 + PTR sys_vmsplice 466 + PTR sys_move_pages
+4
arch/mips/kernel/scall64-n32.S
··· 10 10 #include <linux/errno.h> 11 11 #include <asm/asm.h> 12 12 #include <asm/asmmacro.h> 13 + #include <asm/irqflags.h> 13 14 #include <asm/mipsregs.h> 14 15 #include <asm/regdef.h> 15 16 #include <asm/stackframe.h> ··· 33 32 #ifndef CONFIG_MIPS32_O32 34 33 .set noat 35 34 SAVE_SOME 35 + TRACE_IRQS_ON 36 36 STI 37 37 .set at 38 38 #endif ··· 390 388 PTR sys_splice 391 389 PTR sys_sync_file_range 392 390 PTR sys_tee 391 + PTR sys_vmsplice /* 6271 */ 392 + PTR sys_move_pages
+4
arch/mips/kernel/scall64-o32.S
··· 16 16 #include <linux/errno.h> 17 17 #include <asm/asm.h> 18 18 #include <asm/asmmacro.h> 19 + #include <asm/irqflags.h> 19 20 #include <asm/mipsregs.h> 20 21 #include <asm/regdef.h> 21 22 #include <asm/stackframe.h> ··· 28 27 NESTED(handle_sys, PT_SIZE, sp) 29 28 .set noat 30 29 SAVE_SOME 30 + TRACE_IRQS_ON 31 31 STI 32 32 .set at 33 33 ld t1, PT_EPC(sp) # skip syscall on return ··· 512 510 PTR sys_splice 513 511 PTR sys32_sync_file_range /* 4305 */ 514 512 PTR sys_tee 513 + PTR sys_vmsplice 514 + PTR compat_sys_move_pages 515 515 .size sys_call_table,.-sys_call_table
+30 -5
arch/mips/kernel/smp.c
··· 319 319 } 320 320 321 321 /* 322 + * Special Variant of smp_call_function for use by TLB functions: 323 + * 324 + * o No return value 325 + * o collapses to normal function call on UP kernels 326 + * o collapses to normal function call on systems with a single shared 327 + * primary cache. 328 + * o CONFIG_MIPS_MT_SMTC currently implies there is only one physical core. 329 + */ 330 + static inline void smp_on_other_tlbs(void (*func) (void *info), void *info) 331 + { 332 + #ifndef CONFIG_MIPS_MT_SMTC 333 + smp_call_function(func, info, 1, 1); 334 + #endif 335 + } 336 + 337 + static inline void smp_on_each_tlb(void (*func) (void *info), void *info) 338 + { 339 + preempt_disable(); 340 + 341 + smp_on_other_tlbs(func, info); 342 + func(info); 343 + 344 + preempt_enable(); 345 + } 346 + 347 + /* 322 348 * The following tlb flush calls are invoked when old translations are 323 349 * being torn down, or pte attributes are changing. For single threaded 324 350 * address spaces, a new context is obtained on the current cpu, and tlb ··· 362 336 preempt_disable(); 363 337 364 338 if ((atomic_read(&mm->mm_users) != 1) || (current->mm != mm)) { 365 - smp_call_function(flush_tlb_mm_ipi, (void *)mm, 1, 1); 339 + smp_on_other_tlbs(flush_tlb_mm_ipi, (void *)mm); 366 340 } else { 367 341 int i; 368 342 for (i = 0; i < num_online_cpus(); i++) ··· 398 372 fd.vma = vma; 399 373 fd.addr1 = start; 400 374 fd.addr2 = end; 401 - smp_call_function(flush_tlb_range_ipi, (void *)&fd, 1, 1); 375 + smp_on_other_tlbs(flush_tlb_range_ipi, (void *)&fd); 402 376 } else { 403 377 int i; 404 378 for (i = 0; i < num_online_cpus(); i++) ··· 440 414 441 415 fd.vma = vma; 442 416 fd.addr1 = page; 443 - smp_call_function(flush_tlb_page_ipi, (void *)&fd, 1, 1); 417 + smp_on_other_tlbs(flush_tlb_page_ipi, (void *)&fd); 444 418 } else { 445 419 int i; 446 420 for (i = 0; i < num_online_cpus(); i++) ··· 460 434 461 435 void flush_tlb_one(unsigned long vaddr) 462 436 { 463 - smp_call_function(flush_tlb_one_ipi, (void *) vaddr, 1, 1); 464 - local_flush_tlb_one(vaddr); 437 + smp_on_each_tlb(flush_tlb_one_ipi, (void *) vaddr); 465 438 } 466 439 467 440 static DEFINE_PER_CPU(struct cpu, cpu_devices);
+1
arch/mips/kernel/smtc-asm.S
··· 96 96 /* Save all will redundantly recompute the SP, but use it for now */ 97 97 SAVE_ALL 98 98 CLI 99 + TRACE_IRQS_OFF 99 100 move a0,sp 100 101 /* Function to be invoked passed stack pad slot 5 */ 101 102 lw t0,PT_PADSLOT5(sp)
+30 -30
arch/mips/kernel/smtc.c
··· 127 127 static int __init asidmask_set(char *str) 128 128 { 129 129 get_option(&str, &asidmask); 130 - switch(asidmask) { 130 + switch (asidmask) { 131 131 case 0x1: 132 132 case 0x3: 133 133 case 0x7: ··· 249 249 /* 250 250 * Only count if the MMU Type indicated is TLB 251 251 */ 252 - if(((read_vpe_c0_config() & MIPS_CONF_MT) >> 7) == 1) { 252 + if (((read_vpe_c0_config() & MIPS_CONF_MT) >> 7) == 1) { 253 253 config1val = read_vpe_c0_config1(); 254 254 tlbsiz += ((config1val >> 25) & 0x3f) + 1; 255 255 } ··· 500 500 /* Set up coprocessor affinity CPU mask(s) */ 501 501 502 502 for (tc = 0; tc < ntc; tc++) { 503 - if(cpu_data[tc].options & MIPS_CPU_FPU) 503 + if (cpu_data[tc].options & MIPS_CPU_FPU) 504 504 cpu_set(tc, mt_fpu_cpumask); 505 505 } 506 506 ··· 577 577 { 578 578 /* 579 579 * Start timer on secondary VPEs if necessary. 580 - * mips_timer_setup should already have been invoked by init/main 580 + * plat_timer_setup has already have been invoked by init/main 581 581 * on "boot" TC. Like per_cpu_trap_init() hack, this assumes that 582 582 * SMTC init code assigns TCs consdecutively and in ascending order 583 583 * to across available VPEs. 584 584 */ 585 - if(((read_c0_tcbind() & TCBIND_CURTC) != 0) 586 - && ((read_c0_tcbind() & TCBIND_CURVPE) 585 + if (((read_c0_tcbind() & TCBIND_CURTC) != 0) && 586 + ((read_c0_tcbind() & TCBIND_CURVPE) 587 587 != cpu_data[smp_processor_id() - 1].vpe_id)){ 588 588 write_c0_compare (read_c0_count() + mips_hpt_frequency/HZ); 589 589 } ··· 757 757 write_tc_c0_tchalt(0); 758 758 UNLOCK_CORE_PRA(); 759 759 /* Try to reduce redundant timer interrupt messages */ 760 - if(type == SMTC_CLOCK_TICK) { 761 - if(atomic_postincrement(&ipi_timer_latch[cpu])!=0) { 760 + if (type == SMTC_CLOCK_TICK) { 761 + if (atomic_postincrement(&ipi_timer_latch[cpu])!=0){ 762 762 smtc_ipi_nq(&freeIPIq, pipi); 763 763 return; 764 764 } ··· 797 797 * CU bit of Status is indicator that TC was 798 798 * already running on a kernel stack... 799 799 */ 800 - if(tcstatus & ST0_CU0) { 800 + if (tcstatus & ST0_CU0) { 801 801 /* Note that this "- 1" is pointer arithmetic */ 802 802 kstack = ((struct pt_regs *)read_tc_gpr_sp()) - 1; 803 803 } else { ··· 840 840 841 841 smtc_ipi_nq(&freeIPIq, pipi); 842 842 switch (type_copy) { 843 - case SMTC_CLOCK_TICK: 844 - /* Invoke Clock "Interrupt" */ 845 - ipi_timer_latch[dest_copy] = 0; 843 + case SMTC_CLOCK_TICK: 844 + /* Invoke Clock "Interrupt" */ 845 + ipi_timer_latch[dest_copy] = 0; 846 846 #ifdef SMTC_IDLE_HOOK_DEBUG 847 - clock_hang_reported[dest_copy] = 0; 847 + clock_hang_reported[dest_copy] = 0; 848 848 #endif /* SMTC_IDLE_HOOK_DEBUG */ 849 - local_timer_interrupt(0, NULL, regs); 849 + local_timer_interrupt(0, NULL, regs); 850 + break; 851 + case LINUX_SMP_IPI: 852 + switch ((int)arg_copy) { 853 + case SMP_RESCHEDULE_YOURSELF: 854 + ipi_resched_interrupt(regs); 850 855 break; 851 - case LINUX_SMP_IPI: 852 - switch ((int)arg_copy) { 853 - case SMP_RESCHEDULE_YOURSELF: 854 - ipi_resched_interrupt(regs); 855 - break; 856 - case SMP_CALL_FUNCTION: 857 - ipi_call_interrupt(regs); 858 - break; 859 - default: 860 - printk("Impossible SMTC IPI Argument 0x%x\n", 861 - (int)arg_copy); 862 - break; 863 - } 856 + case SMP_CALL_FUNCTION: 857 + ipi_call_interrupt(regs); 864 858 break; 865 859 default: 866 - printk("Impossible SMTC IPI Type 0x%x\n", type_copy); 860 + printk("Impossible SMTC IPI Argument 0x%x\n", 861 + (int)arg_copy); 867 862 break; 863 + } 864 + break; 865 + default: 866 + printk("Impossible SMTC IPI Type 0x%x\n", type_copy); 867 + break; 868 868 } 869 869 } 870 870 ··· 879 879 * Test is not atomic, but much faster than a dequeue, 880 880 * and the vast majority of invocations will have a null queue. 881 881 */ 882 - if(IPIQ[q].head != NULL) { 882 + if (IPIQ[q].head != NULL) { 883 883 while((pipi = smtc_ipi_dq(&IPIQ[q])) != NULL) { 884 884 /* ipi_decode() should be called with interrupts off */ 885 885 local_irq_save(flags); ··· 1254 1254 tlb_read(); 1255 1255 ehb(); 1256 1256 ehi = read_c0_entryhi(); 1257 - if((ehi & ASID_MASK) == asid) { 1257 + if ((ehi & ASID_MASK) == asid) { 1258 1258 /* 1259 1259 * Invalidate only entries with specified ASID, 1260 1260 * makiing sure all entries differ.
+2 -3
arch/mips/kernel/time.c
··· 566 566 * 2) setup xtime based on rtc_mips_get_time(). 567 567 * 3) choose a appropriate gettimeoffset routine. 568 568 * 4) calculate a couple of cached variables for later usage 569 - * 5) board_timer_setup() - 569 + * 5) plat_timer_setup() - 570 570 * a) (optional) over-write any choices made above by time_init(). 571 571 * b) machine specific code should setup the timer irqaction. 572 572 * c) enable the timer interrupt 573 573 */ 574 574 575 575 void (*board_time_init)(void); 576 - void (*board_timer_setup)(struct irqaction *irq); 577 576 578 577 unsigned int mips_hpt_frequency; 579 578 ··· 717 718 * to be NULL function so that we are sure the high-level code 718 719 * is not invoked accidentally. 719 720 */ 720 - board_timer_setup(&timer_irqaction); 721 + plat_timer_setup(&timer_irqaction); 721 722 } 722 723 723 724 #define FEBRUARY 2
+12 -12
arch/mips/kernel/traps.c
··· 569 569 */ 570 570 asmlinkage void do_fpe(struct pt_regs *regs, unsigned long fcr31) 571 571 { 572 + die_if_kernel("FP exception in kernel code", regs); 573 + 572 574 if (fcr31 & FPU_CSR_UNI_X) { 573 575 int sig; 574 576 ··· 849 847 { 850 848 int subcode; 851 849 852 - die_if_kernel("MIPS MT Thread exception in kernel", regs); 853 - 854 850 subcode = (read_vpe_c0_vpecontrol() & VPECONTROL_EXCPT) 855 851 >> VPECONTROL_EXCPT_SHIFT; 856 852 switch (subcode) { 857 853 case 0: 858 - printk(KERN_ERR "Thread Underflow\n"); 854 + printk(KERN_DEBUG "Thread Underflow\n"); 859 855 break; 860 856 case 1: 861 - printk(KERN_ERR "Thread Overflow\n"); 857 + printk(KERN_DEBUG "Thread Overflow\n"); 862 858 break; 863 859 case 2: 864 - printk(KERN_ERR "Invalid YIELD Qualifier\n"); 860 + printk(KERN_DEBUG "Invalid YIELD Qualifier\n"); 865 861 break; 866 862 case 3: 867 - printk(KERN_ERR "Gating Storage Exception\n"); 863 + printk(KERN_DEBUG "Gating Storage Exception\n"); 868 864 break; 869 865 case 4: 870 - printk(KERN_ERR "YIELD Scheduler Exception\n"); 866 + printk(KERN_DEBUG "YIELD Scheduler Exception\n"); 871 867 break; 872 868 case 5: 873 - printk(KERN_ERR "Gating Storage Schedulier Exception\n"); 869 + printk(KERN_DEBUG "Gating Storage Schedulier Exception\n"); 874 870 break; 875 871 default: 876 - printk(KERN_ERR "*** UNKNOWN THREAD EXCEPTION %d ***\n", 872 + printk(KERN_DEBUG "*** UNKNOWN THREAD EXCEPTION %d ***\n", 877 873 subcode); 878 874 break; 879 875 } ··· 980 980 unsigned long depc, old_epc; 981 981 unsigned int debug; 982 982 983 - printk("SDBBP EJTAG debug exception - not handled yet, just ignored!\n"); 983 + printk(KERN_DEBUG "SDBBP EJTAG debug exception - not handled yet, just ignored!\n"); 984 984 depc = read_c0_depc(); 985 985 debug = read_c0_debug(); 986 - printk("c0_depc = %0*lx, DEBUG = %08x\n", field, depc, debug); 986 + printk(KERN_DEBUG "c0_depc = %0*lx, DEBUG = %08x\n", field, depc, debug); 987 987 if (debug & 0x80000000) { 988 988 /* 989 989 * In branch delay slot. ··· 1001 1001 write_c0_depc(depc); 1002 1002 1003 1003 #if 0 1004 - printk("\n\n----- Enable EJTAG single stepping ----\n\n"); 1004 + printk(KERN_DEBUG "\n\n----- Enable EJTAG single stepping ----\n\n"); 1005 1005 write_c0_debug(debug | 0x100); 1006 1006 #endif 1007 1007 }
-1
arch/mips/kernel/vpe.c
··· 28 28 * i.e cat spapp >/dev/vpe1. 29 29 */ 30 30 31 - #include <linux/config.h> 32 31 #include <linux/kernel.h> 33 32 #include <linux/module.h> 34 33 #include <linux/fs.h>
+1 -1
arch/mips/lasat/interrupt.c
··· 69 69 enable_lasat_irq(irq); 70 70 } 71 71 72 - static struct hw_interrupt_type lasat_irq_type = { 72 + static struct irq_chip lasat_irq_type = { 73 73 .typename = "Lasat", 74 74 .startup = startup_lasat_irq, 75 75 .shutdown = shutdown_lasat_irq,
+2 -6
arch/mips/lasat/setup.c
··· 115 115 mips_hpt_frequency = lasat_board_info.li_cpu_hz / 2; 116 116 } 117 117 118 - static void lasat_timer_setup(struct irqaction *irq) 118 + void __init plat_timer_setup(struct irqaction *irq) 119 119 { 120 - 121 - write_c0_compare( 122 - read_c0_count() + 123 - mips_hpt_frequency / HZ); 120 + write_c0_compare( read_c0_count() + mips_hpt_frequency / HZ); 124 121 change_c0_status(ST0_IM, IE_IRQ0 | IE_IRQ5); 125 122 } 126 123 ··· 167 170 lasat_reboot_setup(); 168 171 169 172 board_time_init = lasat_time_init; 170 - board_timer_setup = lasat_timer_setup; 171 173 172 174 #ifdef CONFIG_DS1603 173 175 ds1603 = &ds_defs[mips_machtype];
+1 -1
arch/mips/mips-boards/atlas/atlas_int.c
··· 73 73 enable_atlas_irq(irq); 74 74 } 75 75 76 - static struct hw_interrupt_type atlas_irq_type = { 76 + static struct irq_chip atlas_irq_type = { 77 77 .typename = "Atlas", 78 78 .startup = startup_atlas_irq, 79 79 .shutdown = shutdown_atlas_irq,
-2
arch/mips/mips-boards/atlas/atlas_setup.c
··· 35 35 36 36 extern void mips_reboot_setup(void); 37 37 extern void mips_time_init(void); 38 - extern void mips_timer_setup(struct irqaction *irq); 39 38 extern unsigned long mips_rtc_get_time(void); 40 39 41 40 #ifdef CONFIG_KGDB ··· 62 63 mips_reboot_setup(); 63 64 64 65 board_time_init = mips_time_init; 65 - board_timer_setup = mips_timer_setup; 66 66 rtc_mips_get_time = mips_rtc_get_time; 67 67 } 68 68
+26 -24
arch/mips/mips-boards/generic/memory.c
··· 47 47 }; 48 48 #endif 49 49 50 + /* determined physical memory size, not overridden by command line args */ 51 + unsigned long physical_memsize = 0L; 52 + 50 53 struct prom_pmemblock * __init prom_getmdesc(void) 51 54 { 52 55 char *memsize_str; 53 56 unsigned int memsize; 54 57 char cmdline[CL_SIZE], *ptr; 55 58 56 - /* Check the command line first for a memsize directive */ 59 + /* otherwise look in the environment */ 60 + memsize_str = prom_getenv("memsize"); 61 + if (!memsize_str) { 62 + prom_printf("memsize not set in boot prom, set to default (32Mb)\n"); 63 + physical_memsize = 0x02000000; 64 + } else { 65 + #ifdef DEBUG 66 + prom_printf("prom_memsize = %s\n", memsize_str); 67 + #endif 68 + physical_memsize = simple_strtol(memsize_str, NULL, 0); 69 + } 70 + 71 + #ifdef CONFIG_CPU_BIG_ENDIAN 72 + /* SOC-it swaps, or perhaps doesn't swap, when DMA'ing the last 73 + word of physical memory */ 74 + physical_memsize -= PAGE_SIZE; 75 + #endif 76 + 77 + /* Check the command line for a memsize directive that overrides 78 + the physical/default amount */ 57 79 strcpy(cmdline, arcs_cmdline); 58 80 ptr = strstr(cmdline, "memsize="); 59 81 if (ptr && (ptr != cmdline) && (*(ptr - 1) != ' ')) 60 82 ptr = strstr(ptr, " memsize="); 61 83 62 - if (ptr) { 84 + if (ptr) 63 85 memsize = memparse(ptr + 8, &ptr); 64 - } 65 - else { 66 - /* otherwise look in the environment */ 67 - memsize_str = prom_getenv("memsize"); 68 - if (!memsize_str) { 69 - prom_printf("memsize not set in boot prom, set to default (32Mb)\n"); 70 - memsize = 0x02000000; 71 - } else { 72 - #ifdef DEBUG 73 - prom_printf("prom_memsize = %s\n", memsize_str); 74 - #endif 75 - memsize = simple_strtol(memsize_str, NULL, 0); 76 - } 77 - } 78 - 79 - #ifdef CONFIG_CPU_BIG_ENDIAN 80 - /* 81 - * SOC-it swaps, or perhaps doesn't swap, when DMA'ing the last 82 - * word of physical memory 83 - */ 84 - memsize -= PAGE_SIZE; 85 - #endif 86 + else 87 + memsize = physical_memsize; 86 88 87 89 memset(mdesc, 0, sizeof(mdesc)); 88 90
+2 -6
arch/mips/mips-boards/generic/time.c
··· 228 228 229 229 void __init mips_time_init(void) 230 230 { 231 - unsigned int est_freq, flags; 232 - 233 - local_irq_save(flags); 231 + unsigned int est_freq; 234 232 235 233 /* Set Data mode - binary. */ 236 234 CMOS_WRITE(CMOS_READ(RTC_CONTROL) | RTC_DM_BINARY, RTC_CONTROL); ··· 239 241 (est_freq%1000000)*100/1000000); 240 242 241 243 cpu_khz = est_freq / 1000; 242 - 243 - local_irq_restore(flags); 244 244 } 245 245 246 - void __init mips_timer_setup(struct irqaction *irq) 246 + void __init plat_timer_setup(struct irqaction *irq) 247 247 { 248 248 if (cpu_has_veic) { 249 249 set_vi_handler (MSC01E_INT_CPUCTR, mips_timer_dispatch);
-2
arch/mips/mips-boards/malta/malta_setup.c
··· 44 44 45 45 extern void mips_reboot_setup(void); 46 46 extern void mips_time_init(void); 47 - extern void mips_timer_setup(struct irqaction *irq); 48 47 extern unsigned long mips_rtc_get_time(void); 49 48 50 49 #ifdef CONFIG_KGDB ··· 222 223 mips_reboot_setup(); 223 224 224 225 board_time_init = mips_time_init; 225 - board_timer_setup = mips_timer_setup; 226 226 rtc_mips_get_time = mips_rtc_get_time; 227 227 }
-2
arch/mips/mips-boards/sead/sead_setup.c
··· 35 35 36 36 extern void mips_reboot_setup(void); 37 37 extern void mips_time_init(void); 38 - extern void mips_timer_setup(struct irqaction *irq); 39 38 40 39 static void __init serial_init(void); 41 40 ··· 50 51 serial_init (); 51 52 52 53 board_time_init = mips_time_init; 53 - board_timer_setup = mips_timer_setup; 54 54 55 55 mips_reboot_setup(); 56 56 }
+1 -2
arch/mips/mips-boards/sim/Makefile
··· 15 15 # 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. 16 16 # 17 17 18 - obj-y := sim_setup.o sim_mem.o sim_time.o sim_printf.o sim_int.o sim_irq.o \ 19 - sim_cmdline.o 18 + obj-y := sim_setup.o sim_mem.o sim_time.o sim_printf.o sim_int.o sim_cmdline.o 20 19 obj-$(CONFIG_SMP) += sim_smp.o
-147
arch/mips/mips-boards/sim/sim_IRQ.c
··· 1 - /* 2 - * Carsten Langgaard, carstenl@mips.com 3 - * Copyright (C) 1999, 2000 MIPS Technologies, Inc. All rights reserved. 4 - * 5 - * This program is free software; you can distribute it and/or modify it 6 - * under the terms of the GNU General Public License (Version 2) as 7 - * published by the Free Software Foundation. 8 - * 9 - * This program is distributed in the hope it will be useful, but WITHOUT 10 - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 11 - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 12 - * for more details. 13 - * 14 - * You should have received a copy of the GNU General Public License along 15 - * with this program; if not, write to the Free Software Foundation, Inc., 16 - * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. 17 - * 18 - * Interrupt exception dispatch code. 19 - */ 20 - 21 - #include <asm/asm.h> 22 - #include <asm/mipsregs.h> 23 - #include <asm/regdef.h> 24 - #include <asm/stackframe.h> 25 - 26 - /* A lot of complication here is taken away because: 27 - * 28 - * 1) We handle one interrupt and return, sitting in a loop and moving across 29 - * all the pending IRQ bits in the cause register is _NOT_ the answer, the 30 - * common case is one pending IRQ so optimize in that direction. 31 - * 32 - * 2) We need not check against bits in the status register IRQ mask, that 33 - * would make this routine slow as hell. 34 - * 35 - * 3) Linux only thinks in terms of all IRQs on or all IRQs off, nothing in 36 - * between like BSD spl() brain-damage. 37 - * 38 - * Furthermore, the IRQs on the MIPS board look basically (barring software 39 - * IRQs which we don't use at all and all external interrupt sources are 40 - * combined together on hardware interrupt 0 (MIPS IRQ 2)) like: 41 - * 42 - * MIPS IRQ Source 43 - * -------- ------ 44 - * 0 Software (ignored) 45 - * 1 Software (ignored) 46 - * 2 Combined hardware interrupt (hw0) 47 - * 3 Hardware (ignored) 48 - * 4 Hardware (ignored) 49 - * 5 Hardware (ignored) 50 - * 6 Hardware (ignored) 51 - * 7 R4k timer (what we use) 52 - * 53 - * Note: On the SEAD board thing are a little bit different. 54 - * Here IRQ 2 (hw0) is wired to the UART0 and IRQ 3 (hw1) is wired 55 - * wired to UART1. 56 - * 57 - * We handle the IRQ according to _our_ priority which is: 58 - * 59 - * Highest ---- R4k Timer 60 - * Lowest ---- Combined hardware interrupt 61 - * 62 - * then we just return, if multiple IRQs are pending then we will just take 63 - * another exception, big deal. 64 - */ 65 - 66 - .text 67 - .set noreorder 68 - .set noat 69 - .align 5 70 - NESTED(mipsIRQ, PT_SIZE, sp) 71 - SAVE_ALL 72 - CLI 73 - .set at 74 - 75 - mfc0 s0, CP0_CAUSE # get irq bits 76 - mfc0 s1, CP0_STATUS # get irq mask 77 - and s0, s1 78 - 79 - /* First we check for r4k counter/timer IRQ. */ 80 - andi a0, s0, CAUSEF_IP7 81 - beq a0, zero, 1f 82 - andi a0, s0, CAUSEF_IP2 # delay slot, check hw0 interrupt 83 - 84 - /* Wheee, a timer interrupt. */ 85 - move a0, sp 86 - jal mips_timer_interrupt 87 - nop 88 - 89 - j ret_from_irq 90 - nop 91 - 92 - 1: 93 - #if defined(CONFIG_MIPS_SEAD) 94 - beq a0, zero, 1f 95 - andi a0, s0, CAUSEF_IP3 # delay slot, check hw1 interrupt 96 - #else 97 - beq a0, zero, 1f # delay slot, check hw3 interrupt 98 - andi a0, s0, CAUSEF_IP5 99 - #endif 100 - 101 - /* Wheee, combined hardware level zero interrupt. */ 102 - #if defined(CONFIG_MIPS_ATLAS) 103 - jal atlas_hw0_irqdispatch 104 - #elif defined(CONFIG_MIPS_MALTA) 105 - jal malta_hw0_irqdispatch 106 - #elif defined(CONFIG_MIPS_SEAD) 107 - jal sead_hw0_irqdispatch 108 - #else 109 - #error "MIPS board not supported\n" 110 - #endif 111 - move a0, sp # delay slot 112 - 113 - j ret_from_irq 114 - nop # delay slot 115 - 116 - 1: 117 - #if defined(CONFIG_MIPS_SEAD) 118 - beq a0, zero, 1f 119 - andi a0, s0, CAUSEF_IP5 # delay slot, check hw3 interrupt 120 - jal sead_hw1_irqdispatch 121 - move a0, sp # delay slot 122 - j ret_from_irq 123 - nop # delay slot 124 - 1: 125 - #endif 126 - #if defined(CONFIG_MIPS_MALTA) 127 - beq a0, zero, 1f # check hw3 (coreHI) interrupt 128 - nop 129 - jal corehi_irqdispatch 130 - move a0, sp 131 - j ret_from_irq 132 - nop 133 - 1: 134 - #endif 135 - /* 136 - * Here by mistake? This is possible, what can happen is that by the 137 - * time we take the exception the IRQ pin goes low, so just leave if 138 - * this is the case. 139 - */ 140 - move a1,s0 141 - PRINT("Got interrupt: c0_cause = %08x\n") 142 - mfc0 a1, CP0_EPC 143 - PRINT("c0_epc = %08x\n") 144 - 145 - j ret_from_irq 146 - nop 147 - END(mipsIRQ)
-100
arch/mips/mips-boards/sim/sim_irq.S
··· 1 - /* 2 - * Copyright (C) 1999, 2005 MIPS Technologies, Inc. All rights reserved. 3 - * 4 - * This program is free software; you can distribute it and/or modify it 5 - * under the terms of the GNU General Public License (Version 2) as 6 - * published by the Free Software Foundation. 7 - * 8 - * This program is distributed in the hope it will be useful, but WITHOUT 9 - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 10 - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 11 - * for more details. 12 - * 13 - * You should have received a copy of the GNU General Public License along 14 - * with this program; if not, write to the Free Software Foundation, Inc., 15 - * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. 16 - * 17 - * Interrupt exception dispatch code. 18 - * 19 - */ 20 - 21 - #include <asm/asm.h> 22 - #include <asm/mipsregs.h> 23 - #include <asm/regdef.h> 24 - #include <asm/stackframe.h> 25 - 26 - #include <asm/mips-boards/simint.h> 27 - 28 - 29 - .text 30 - .set noreorder 31 - .set noat 32 - .align 5 33 - NESTED(simIRQ, PT_SIZE, sp) 34 - SAVE_ALL 35 - CLI 36 - .set at 37 - 38 - mfc0 s0, CP0_CAUSE # get irq bits 39 - mfc0 s1, CP0_STATUS # get irq mask 40 - andi s0, ST0_IM # CAUSE.CE may be non-zero! 41 - and s0, s1 42 - 43 - #if defined(CONFIG_CPU_MIPS32) || defined(CONFIG_CPU_MIPS64) 44 - .set mips32 45 - clz a0, s0 46 - .set mips0 47 - negu a0 48 - addu a0, 31-CAUSEB_IP 49 - bltz a0, spurious 50 - #else 51 - beqz s0, spurious 52 - li a0, 7 53 - 54 - and t0, s0, 0xf000 55 - sltiu t0, t0, 1 56 - sll t0, 2 57 - subu a0, t0 58 - sll s0, t0 59 - 60 - and t0, s0, 0xc000 61 - sltiu t0, t0, 1 62 - sll t0, 1 63 - subu a0, t0 64 - sll s0, t0 65 - 66 - and t0, s0, 0x8000 67 - sltiu t0, t0, 1 68 - # sll t0, 0 69 - subu a0, t0 70 - # sll s0, t0 71 - #endif 72 - 73 - #ifdef CASCADE_IRQ 74 - li a1, CASCADE_IRQ 75 - bne a0, a1, 1f 76 - addu a0, MIPSCPU_INT_BASE 77 - 78 - jal CASCADE_DISPATCH 79 - move a0, sp 80 - 81 - j ret_from_irq 82 - nop 83 - 1: 84 - #else 85 - addu a0, MIPSCPU_INT_BASE 86 - #endif 87 - 88 - jal do_IRQ 89 - move a1, sp 90 - 91 - j ret_from_irq 92 - nop 93 - 94 - 95 - spurious: 96 - jal spurious_interrupt 97 - nop 98 - j ret_from_irq 99 - nop 100 - END(simIRQ)
-2
arch/mips/mips-boards/sim/sim_setup.c
··· 37 37 38 38 39 39 extern void sim_time_init(void); 40 - extern void sim_timer_setup(struct irqaction *irq); 41 40 static void __init serial_init(void); 42 41 unsigned int _isbonito = 0; 43 42 ··· 55 56 serial_init(); 56 57 57 58 board_time_init = sim_time_init; 58 - board_timer_setup = sim_timer_setup; 59 59 prom_printf("Linux started...\n"); 60 60 61 61 #ifdef CONFIG_MT_SMP
+1 -3
arch/mips/mips-boards/sim/sim_time.c
··· 33 33 34 34 unsigned long cpu_khz; 35 35 36 - extern asmlinkage void ll_local_timer_interrupt(int irq, struct pt_regs *regs); 37 - 38 36 irqreturn_t sim_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs) 39 37 { 40 38 #ifdef CONFIG_SMP ··· 183 185 } 184 186 185 187 186 - void __init sim_timer_setup(struct irqaction *irq) 188 + void __init plat_timer_setup(struct irqaction *irq) 187 189 { 188 190 if (cpu_has_veic) { 189 191 set_vi_handler(MSC01E_INT_CPUCTR, mips_timer_dispatch);
+11 -10
arch/mips/mm/c-r4k.c
··· 578 578 * secondary cache will result in any entries in the primary caches 579 579 * also getting invalidated which hopefully is a bit more economical. 580 580 */ 581 - if (cpu_has_subset_pcaches) { 581 + if (cpu_has_inclusive_pcaches) { 582 582 unsigned long addr = (unsigned long) page_address(page); 583 583 584 584 r4k_blast_scache_page(addr); ··· 634 634 /* Catch bad driver code */ 635 635 BUG_ON(size == 0); 636 636 637 - if (cpu_has_subset_pcaches) { 637 + if (cpu_has_inclusive_pcaches) { 638 638 if (size >= scache_size) 639 639 r4k_blast_scache(); 640 640 else ··· 662 662 /* Catch bad driver code */ 663 663 BUG_ON(size == 0); 664 664 665 - if (cpu_has_subset_pcaches) { 665 + if (cpu_has_inclusive_pcaches) { 666 666 if (size >= scache_size) 667 667 r4k_blast_scache(); 668 668 else ··· 862 862 break; 863 863 864 864 case CPU_VR4133: 865 - write_c0_config(config & ~CONF_EB); 865 + write_c0_config(config & ~VR41_CONF_P4K); 866 866 case CPU_VR4131: 867 867 /* Workaround for cache instruction bug of VR4131 */ 868 868 if (c->processor_id == 0x0c80U || c->processor_id == 0x0c81U || 869 869 c->processor_id == 0x0c82U) { 870 - config &= ~0x00000030U; 871 - config |= 0x00410000U; 870 + config |= 0x00400000U; 871 + if (c->processor_id == 0x0c80U) 872 + config |= VR41_CONF_BP; 872 873 write_c0_config(config); 873 - } 874 + } else 875 + c->options |= MIPS_CPU_CACHE_CDEX_P; 876 + 874 877 icache_size = 1 << (10 + ((config & CONF_IC) >> 9)); 875 878 c->icache.linesz = 16 << ((config & CONF_IB) >> 5); 876 879 c->icache.ways = 2; ··· 883 880 c->dcache.linesz = 16 << ((config & CONF_DB) >> 4); 884 881 c->dcache.ways = 2; 885 882 c->dcache.waybit = __ffs(dcache_size/2); 886 - 887 - c->options |= MIPS_CPU_CACHE_CDEX_P; 888 883 break; 889 884 890 885 case CPU_VR41XX: ··· 1193 1192 printk("Unified secondary cache %ldkB %s, linesize %d bytes.\n", 1194 1193 scache_size >> 10, way_string[c->scache.ways], c->scache.linesz); 1195 1194 1196 - c->options |= MIPS_CPU_SUBSET_CACHES; 1195 + c->options |= MIPS_CPU_INCLUSIVE_CACHES; 1197 1196 } 1198 1197 1199 1198 void au1x00_fixup_config_od(void)
+40 -25
arch/mips/mm/init.c
··· 139 139 #ifndef CONFIG_NEED_MULTIPLE_NODES 140 140 extern void pagetable_init(void); 141 141 142 + static int __init page_is_ram(unsigned long pagenr) 143 + { 144 + int i; 145 + 146 + for (i = 0; i < boot_mem_map.nr_map; i++) { 147 + unsigned long addr, end; 148 + 149 + if (boot_mem_map.map[i].type != BOOT_MEM_RAM) 150 + /* not usable memory */ 151 + continue; 152 + 153 + addr = PFN_UP(boot_mem_map.map[i].addr); 154 + end = PFN_DOWN(boot_mem_map.map[i].addr + 155 + boot_mem_map.map[i].size); 156 + 157 + if (pagenr >= addr && pagenr < end) 158 + return 1; 159 + } 160 + 161 + return 0; 162 + } 163 + 142 164 void __init paging_init(void) 143 165 { 144 - unsigned long zones_size[MAX_NR_ZONES] = {0, 0, 0}; 166 + unsigned long zones_size[] = { [0 ... MAX_NR_ZONES - 1] = 0 }; 145 167 unsigned long max_dma, high, low; 168 + #ifndef CONFIG_FLATMEM 169 + unsigned long zholes_size[] = { [0 ... MAX_NR_ZONES - 1] = 0 }; 170 + unsigned long i, j, pfn; 171 + #endif 146 172 147 173 pagetable_init(); 148 174 ··· 200 174 zones_size[ZONE_HIGHMEM] = high - low; 201 175 #endif 202 176 177 + #ifdef CONFIG_FLATMEM 203 178 free_area_init(zones_size); 204 - } 205 - 206 - static inline int page_is_ram(unsigned long pagenr) 207 - { 208 - int i; 209 - 210 - for (i = 0; i < boot_mem_map.nr_map; i++) { 211 - unsigned long addr, end; 212 - 213 - if (boot_mem_map.map[i].type != BOOT_MEM_RAM) 214 - /* not usable memory */ 215 - continue; 216 - 217 - addr = PFN_UP(boot_mem_map.map[i].addr); 218 - end = PFN_DOWN(boot_mem_map.map[i].addr + 219 - boot_mem_map.map[i].size); 220 - 221 - if (pagenr >= addr && pagenr < end) 222 - return 1; 223 - } 224 - 225 - return 0; 179 + #else 180 + pfn = 0; 181 + for (i = 0; i < MAX_NR_ZONES; i++) 182 + for (j = 0; j < zones_size[i]; j++, pfn++) 183 + if (!page_is_ram(pfn)) 184 + zholes_size[i]++; 185 + free_area_init_node(0, NODE_DATA(0), zones_size, 0, zholes_size); 186 + #endif 226 187 } 227 188 228 189 static struct kcore_list kcore_mem, kcore_vmalloc; ··· 226 213 #ifdef CONFIG_DISCONTIGMEM 227 214 #error "CONFIG_HIGHMEM and CONFIG_DISCONTIGMEM dont work together yet" 228 215 #endif 229 - max_mapnr = num_physpages = highend_pfn; 216 + max_mapnr = highend_pfn; 230 217 #else 231 - max_mapnr = num_physpages = max_low_pfn; 218 + max_mapnr = max_low_pfn; 232 219 #endif 233 220 high_memory = (void *) __va(max_low_pfn << PAGE_SHIFT); 234 221 ··· 242 229 if (PageReserved(pfn_to_page(tmp))) 243 230 reservedpages++; 244 231 } 232 + num_physpages = ram; 245 233 246 234 #ifdef CONFIG_HIGHMEM 247 235 for (tmp = highstart_pfn; tmp < highend_pfn; tmp++) { ··· 261 247 totalhigh_pages++; 262 248 } 263 249 totalram_pages += totalhigh_pages; 250 + num_physpages += totalhigh_pages; 264 251 #endif 265 252 266 253 codesize = (unsigned long) &_etext - (unsigned long) &_text;
+2
arch/mips/mm/pgtable.c
··· 15 15 printk("Free swap: %6ldkB\n", nr_swap_pages<<(PAGE_SHIFT-10)); 16 16 pfn = max_mapnr; 17 17 while (pfn-- > 0) { 18 + if (!pfn_valid(pfn)) 19 + continue; 18 20 page = pfn_to_page(pfn); 19 21 total++; 20 22 if (PageHighMem(page))
+70 -87
arch/mips/mm/tlbex.c
··· 5 5 * 6 6 * Synthesize TLB refill handlers at runtime. 7 7 * 8 - * Copyright (C) 2004,2005 by Thiemo Seufer 8 + * Copyright (C) 2004,2005,2006 by Thiemo Seufer 9 9 * Copyright (C) 2005 Maciej W. Rozycki 10 10 * Copyright (C) 2006 Ralf Baechle (ralf@linux-mips.org) 11 11 * ··· 34 34 #include <asm/elf.h> 35 35 #include <asm/smp.h> 36 36 #include <asm/war.h> 37 - 38 - /* #define DEBUG_TLB */ 39 37 40 38 static __init int __attribute__((unused)) r45k_bvahwbug(void) 41 39 { ··· 726 728 { 727 729 long pgdc = (long)pgd_current; 728 730 u32 *p; 731 + int i; 729 732 730 733 memset(tlb_handler, 0, sizeof(tlb_handler)); 731 734 p = tlb_handler; ··· 752 753 if (p > tlb_handler + 32) 753 754 panic("TLB refill handler space exceeded"); 754 755 755 - printk("Synthesized TLB refill handler (%u instructions).\n", 756 - (unsigned int)(p - tlb_handler)); 757 - #ifdef DEBUG_TLB 758 - { 759 - int i; 756 + pr_info("Synthesized TLB refill handler (%u instructions).\n", 757 + (unsigned int)(p - tlb_handler)); 760 758 761 - for (i = 0; i < (p - tlb_handler); i++) 762 - printk("%08x\n", tlb_handler[i]); 763 - } 764 - #endif 759 + pr_debug("\t.set push\n"); 760 + pr_debug("\t.set noreorder\n"); 761 + for (i = 0; i < (p - tlb_handler); i++) 762 + pr_debug("\t.word 0x%08x\n", tlb_handler[i]); 763 + pr_debug("\t.set pop\n"); 765 764 766 765 memcpy((void *)ebase, tlb_handler, 0x80); 767 766 } ··· 1172 1175 struct reloc *r = relocs; 1173 1176 u32 *f; 1174 1177 unsigned int final_len; 1178 + int i; 1175 1179 1176 1180 memset(tlb_handler, 0, sizeof(tlb_handler)); 1177 1181 memset(labels, 0, sizeof(labels)); ··· 1270 1272 #endif /* CONFIG_64BIT */ 1271 1273 1272 1274 resolve_relocs(relocs, labels); 1273 - printk("Synthesized TLB refill handler (%u instructions).\n", 1274 - final_len); 1275 + pr_info("Synthesized TLB refill handler (%u instructions).\n", 1276 + final_len); 1275 1277 1276 - #ifdef DEBUG_TLB 1277 - { 1278 - int i; 1279 - 1280 - f = final_handler; 1278 + f = final_handler; 1281 1279 #ifdef CONFIG_64BIT 1282 - if (final_len > 32) 1283 - final_len = 64; 1284 - else 1285 - f = final_handler + 32; 1280 + if (final_len > 32) 1281 + final_len = 64; 1282 + else 1283 + f = final_handler + 32; 1286 1284 #endif /* CONFIG_64BIT */ 1287 - for (i = 0; i < final_len; i++) 1288 - printk("%08x\n", f[i]); 1289 - } 1290 - #endif 1285 + pr_debug("\t.set push\n"); 1286 + pr_debug("\t.set noreorder\n"); 1287 + for (i = 0; i < final_len; i++) 1288 + pr_debug("\t.word 0x%08x\n", f[i]); 1289 + pr_debug("\t.set pop\n"); 1291 1290 1292 1291 memcpy((void *)ebase, final_handler, 0x100); 1293 1292 } ··· 1517 1522 u32 *p = handle_tlbl; 1518 1523 struct label *l = labels; 1519 1524 struct reloc *r = relocs; 1525 + int i; 1520 1526 1521 1527 memset(handle_tlbl, 0, sizeof(handle_tlbl)); 1522 1528 memset(labels, 0, sizeof(labels)); ··· 1537 1541 panic("TLB load handler fastpath space exceeded"); 1538 1542 1539 1543 resolve_relocs(relocs, labels); 1540 - printk("Synthesized TLB load handler fastpath (%u instructions).\n", 1541 - (unsigned int)(p - handle_tlbl)); 1544 + pr_info("Synthesized TLB load handler fastpath (%u instructions).\n", 1545 + (unsigned int)(p - handle_tlbl)); 1542 1546 1543 - #ifdef DEBUG_TLB 1544 - { 1545 - int i; 1546 - 1547 - for (i = 0; i < (p - handle_tlbl); i++) 1548 - printk("%08x\n", handle_tlbl[i]); 1549 - } 1550 - #endif 1547 + pr_debug("\t.set push\n"); 1548 + pr_debug("\t.set noreorder\n"); 1549 + for (i = 0; i < (p - handle_tlbl); i++) 1550 + pr_debug("\t.word 0x%08x\n", handle_tlbl[i]); 1551 + pr_debug("\t.set pop\n"); 1551 1552 } 1552 1553 1553 1554 static void __init build_r3000_tlb_store_handler(void) ··· 1552 1559 u32 *p = handle_tlbs; 1553 1560 struct label *l = labels; 1554 1561 struct reloc *r = relocs; 1562 + int i; 1555 1563 1556 1564 memset(handle_tlbs, 0, sizeof(handle_tlbs)); 1557 1565 memset(labels, 0, sizeof(labels)); ··· 1572 1578 panic("TLB store handler fastpath space exceeded"); 1573 1579 1574 1580 resolve_relocs(relocs, labels); 1575 - printk("Synthesized TLB store handler fastpath (%u instructions).\n", 1576 - (unsigned int)(p - handle_tlbs)); 1581 + pr_info("Synthesized TLB store handler fastpath (%u instructions).\n", 1582 + (unsigned int)(p - handle_tlbs)); 1577 1583 1578 - #ifdef DEBUG_TLB 1579 - { 1580 - int i; 1581 - 1582 - for (i = 0; i < (p - handle_tlbs); i++) 1583 - printk("%08x\n", handle_tlbs[i]); 1584 - } 1585 - #endif 1584 + pr_debug("\t.set push\n"); 1585 + pr_debug("\t.set noreorder\n"); 1586 + for (i = 0; i < (p - handle_tlbs); i++) 1587 + pr_debug("\t.word 0x%08x\n", handle_tlbs[i]); 1588 + pr_debug("\t.set pop\n"); 1586 1589 } 1587 1590 1588 1591 static void __init build_r3000_tlb_modify_handler(void) ··· 1587 1596 u32 *p = handle_tlbm; 1588 1597 struct label *l = labels; 1589 1598 struct reloc *r = relocs; 1599 + int i; 1590 1600 1591 1601 memset(handle_tlbm, 0, sizeof(handle_tlbm)); 1592 1602 memset(labels, 0, sizeof(labels)); ··· 1607 1615 panic("TLB modify handler fastpath space exceeded"); 1608 1616 1609 1617 resolve_relocs(relocs, labels); 1610 - printk("Synthesized TLB modify handler fastpath (%u instructions).\n", 1611 - (unsigned int)(p - handle_tlbm)); 1618 + pr_info("Synthesized TLB modify handler fastpath (%u instructions).\n", 1619 + (unsigned int)(p - handle_tlbm)); 1612 1620 1613 - #ifdef DEBUG_TLB 1614 - { 1615 - int i; 1616 - 1617 - for (i = 0; i < (p - handle_tlbm); i++) 1618 - printk("%08x\n", handle_tlbm[i]); 1619 - } 1620 - #endif 1621 + pr_debug("\t.set push\n"); 1622 + pr_debug("\t.set noreorder\n"); 1623 + for (i = 0; i < (p - handle_tlbm); i++) 1624 + pr_debug("\t.word 0x%08x\n", handle_tlbm[i]); 1625 + pr_debug("\t.set pop\n"); 1621 1626 } 1622 1627 1623 1628 /* ··· 1666 1677 u32 *p = handle_tlbl; 1667 1678 struct label *l = labels; 1668 1679 struct reloc *r = relocs; 1680 + int i; 1669 1681 1670 1682 memset(handle_tlbl, 0, sizeof(handle_tlbl)); 1671 1683 memset(labels, 0, sizeof(labels)); ··· 1694 1704 panic("TLB load handler fastpath space exceeded"); 1695 1705 1696 1706 resolve_relocs(relocs, labels); 1697 - printk("Synthesized TLB load handler fastpath (%u instructions).\n", 1698 - (unsigned int)(p - handle_tlbl)); 1707 + pr_info("Synthesized TLB load handler fastpath (%u instructions).\n", 1708 + (unsigned int)(p - handle_tlbl)); 1699 1709 1700 - #ifdef DEBUG_TLB 1701 - { 1702 - int i; 1703 - 1704 - for (i = 0; i < (p - handle_tlbl); i++) 1705 - printk("%08x\n", handle_tlbl[i]); 1706 - } 1707 - #endif 1710 + pr_debug("\t.set push\n"); 1711 + pr_debug("\t.set noreorder\n"); 1712 + for (i = 0; i < (p - handle_tlbl); i++) 1713 + pr_debug("\t.word 0x%08x\n", handle_tlbl[i]); 1714 + pr_debug("\t.set pop\n"); 1708 1715 } 1709 1716 1710 1717 static void __init build_r4000_tlb_store_handler(void) ··· 1709 1722 u32 *p = handle_tlbs; 1710 1723 struct label *l = labels; 1711 1724 struct reloc *r = relocs; 1725 + int i; 1712 1726 1713 1727 memset(handle_tlbs, 0, sizeof(handle_tlbs)); 1714 1728 memset(labels, 0, sizeof(labels)); ··· 1728 1740 panic("TLB store handler fastpath space exceeded"); 1729 1741 1730 1742 resolve_relocs(relocs, labels); 1731 - printk("Synthesized TLB store handler fastpath (%u instructions).\n", 1732 - (unsigned int)(p - handle_tlbs)); 1743 + pr_info("Synthesized TLB store handler fastpath (%u instructions).\n", 1744 + (unsigned int)(p - handle_tlbs)); 1733 1745 1734 - #ifdef DEBUG_TLB 1735 - { 1736 - int i; 1737 - 1738 - for (i = 0; i < (p - handle_tlbs); i++) 1739 - printk("%08x\n", handle_tlbs[i]); 1740 - } 1741 - #endif 1746 + pr_debug("\t.set push\n"); 1747 + pr_debug("\t.set noreorder\n"); 1748 + for (i = 0; i < (p - handle_tlbs); i++) 1749 + pr_debug("\t.word 0x%08x\n", handle_tlbs[i]); 1750 + pr_debug("\t.set pop\n"); 1742 1751 } 1743 1752 1744 1753 static void __init build_r4000_tlb_modify_handler(void) ··· 1743 1758 u32 *p = handle_tlbm; 1744 1759 struct label *l = labels; 1745 1760 struct reloc *r = relocs; 1761 + int i; 1746 1762 1747 1763 memset(handle_tlbm, 0, sizeof(handle_tlbm)); 1748 1764 memset(labels, 0, sizeof(labels)); ··· 1763 1777 panic("TLB modify handler fastpath space exceeded"); 1764 1778 1765 1779 resolve_relocs(relocs, labels); 1766 - printk("Synthesized TLB modify handler fastpath (%u instructions).\n", 1767 - (unsigned int)(p - handle_tlbm)); 1780 + pr_info("Synthesized TLB modify handler fastpath (%u instructions).\n", 1781 + (unsigned int)(p - handle_tlbm)); 1768 1782 1769 - #ifdef DEBUG_TLB 1770 - { 1771 - int i; 1772 - 1773 - for (i = 0; i < (p - handle_tlbm); i++) 1774 - printk("%08x\n", handle_tlbm[i]); 1775 - } 1776 - #endif 1783 + pr_debug("\t.set push\n"); 1784 + pr_debug("\t.set noreorder\n"); 1785 + for (i = 0; i < (p - handle_tlbm); i++) 1786 + pr_debug("\t.word 0x%08x\n", handle_tlbm[i]); 1787 + pr_debug("\t.set pop\n"); 1777 1788 } 1778 1789 1779 1790 void __init build_tlb_refill_handler(void)
+1 -2
arch/mips/momentum/jaguar_atx/setup.c
··· 212 212 return 0; 213 213 } 214 214 215 - void momenco_timer_setup(struct irqaction *irq) 215 + void __init plat_timer_setup(struct irqaction *irq) 216 216 { 217 217 setup_irq(8, irq); 218 218 } ··· 226 226 wire_stupidity_into_tlb(); 227 227 228 228 mips_hpt_frequency = cpu_clock / 2; 229 - board_timer_setup = momenco_timer_setup; 230 229 231 230 rtc_mips_get_time = m48t37y_get_time; 232 231 rtc_mips_set_time = m48t37y_set_time;
+1 -2
arch/mips/momentum/ocelot_3/setup.c
··· 197 197 return 0; 198 198 } 199 199 200 - void momenco_timer_setup(struct irqaction *irq) 200 + void __init plat_timer_setup(struct irqaction *irq) 201 201 { 202 202 setup_irq(7, irq); /* Timer interrupt, unmask status IM7 */ 203 203 } ··· 211 211 * the Rm7900 and the Rm7065C 212 212 */ 213 213 mips_hpt_frequency = cpu_clock / 2; 214 - board_timer_setup = momenco_timer_setup; 215 214 216 215 rtc_mips_get_time = m48t37y_get_time; 217 216 rtc_mips_set_time = m48t37y_set_time;
+1 -1
arch/mips/momentum/ocelot_c/cpci-irq.c
··· 128 128 129 129 #define shutdown_cpci_irq disable_cpci_irq 130 130 131 - struct hw_interrupt_type cpci_irq_type = { 131 + struct irq_chip cpci_irq_type = { 132 132 .typename = "CPCI/FPGA", 133 133 .startup = startup_cpci_irq, 134 134 .shutdown = shutdown_cpci_irq,
+1 -2
arch/mips/momentum/ocelot_c/setup.c
··· 209 209 return 0; 210 210 } 211 211 212 - void momenco_timer_setup(struct irqaction *irq) 212 + void __init plat_timer_setup(struct irqaction *irq) 213 213 { 214 214 setup_irq(7, irq); 215 215 } ··· 224 224 #error Unknown CPU for this board 225 225 #endif 226 226 printk("momenco_time_init cpu_clock=%d\n", cpu_clock); 227 - board_timer_setup = momenco_timer_setup; 228 227 229 228 rtc_mips_get_time = m48t37y_get_time; 230 229 rtc_mips_set_time = m48t37y_set_time;
+1 -1
arch/mips/momentum/ocelot_c/uart-irq.c
··· 121 121 122 122 #define shutdown_uart_irq disable_uart_irq 123 123 124 - struct hw_interrupt_type uart_irq_type = { 124 + struct irq_chip uart_irq_type = { 125 125 .typename = "UART/FPGA", 126 126 .startup = startup_uart_irq, 127 127 .shutdown = shutdown_uart_irq,
+2
arch/mips/oprofile/op_model_mipsxx.c
··· 49 49 default: \ 50 50 BUG(); \ 51 51 } \ 52 + return 0; \ 52 53 } \ 53 54 \ 54 55 static inline void w_c0_ ## r ## n(unsigned int value) \ ··· 66 65 default: \ 67 66 BUG(); \ 68 67 } \ 68 + return; \ 69 69 } \ 70 70 71 71 __define_perf_accessors(perfcntr, 0, 2)
-1
arch/mips/pci/fixup-emma2rh.c
··· 23 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 24 */ 25 25 26 - #include <linux/config.h> 27 26 #include <linux/kernel.h> 28 27 #include <linux/init.h> 29 28 #include <linux/types.h>
-1
arch/mips/pci/fixup-mpc30x.c
··· 21 21 #include <linux/pci.h> 22 22 23 23 #include <asm/vr41xx/mpc30x.h> 24 - #include <asm/vr41xx/vrc4173.h> 25 24 26 25 static const int internal_func_irqs[] __initdata = { 27 26 VRC4173_CASCADE_IRQ,
-1
arch/mips/pci/ops-emma2rh.c
··· 23 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 24 */ 25 25 26 - #include <linux/config.h> 27 26 #include <linux/pci.h> 28 27 #include <linux/kernel.h> 29 28 #include <linux/types.h>
-1
arch/mips/pci/pci-emma2rh.c
··· 23 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 24 */ 25 25 26 - #include <linux/config.h> 27 26 #include <linux/kernel.h> 28 27 #include <linux/init.h> 29 28 #include <linux/types.h>
+1 -1
arch/mips/philips/pnx8550/common/int.c
··· 207 207 } 208 208 } 209 209 210 - static struct hw_interrupt_type level_irq_type = { 210 + static struct irq_chip level_irq_type = { 211 211 .typename = "PNX Level IRQ", 212 212 .startup = startup_irq, 213 213 .shutdown = shutdown_irq,
+1 -4
arch/mips/philips/pnx8550/common/setup.c
··· 20 20 #include <linux/init.h> 21 21 #include <linux/sched.h> 22 22 #include <linux/ioport.h> 23 + #include <linux/irq.h> 23 24 #include <linux/mm.h> 24 25 #include <linux/delay.h> 25 26 #include <linux/interrupt.h> ··· 49 48 extern void pnx8550_machine_power_off(void); 50 49 extern struct resource ioport_resource; 51 50 extern struct resource iomem_resource; 52 - extern void (*board_time_init)(void); 53 51 extern void pnx8550_time_init(void); 54 - extern void (*board_timer_setup)(struct irqaction *irq); 55 - extern void pnx8550_timer_setup(struct irqaction *irq); 56 52 extern void rs_kgdb_hook(int tty_no); 57 53 extern void prom_printf(char *fmt, ...); 58 54 extern char *prom_getcmdline(void); ··· 108 110 pm_power_off = pnx8550_machine_power_off; 109 111 110 112 board_time_init = pnx8550_time_init; 111 - board_timer_setup = pnx8550_timer_setup; 112 113 113 114 /* Clear the Global 2 Register, PCI Inta Output Enable Registers 114 115 Bit 1:Enable DAC Powerdown
+1 -10
arch/mips/philips/pnx8550/common/time.c
··· 70 70 mips_hpt_frequency = 27UL * ((1000000UL * n)/(m * pow2p)); 71 71 } 72 72 73 - /* 74 - * pnx8550_timer_setup() - it does the following things: 75 - * 76 - * 5) board_timer_setup() - 77 - * a) (optional) over-write any choices made above by time_init(). 78 - * b) machine specific code should setup the timer irqaction. 79 - * c) enable the timer interrupt 80 - */ 81 - 82 - void __init pnx8550_timer_setup(struct irqaction *irq) 73 + void __init plat_timer_setup(struct irqaction *irq) 83 74 { 84 75 int configPR; 85 76
+1 -2
arch/mips/pmc-sierra/yosemite/setup.c
··· 133 133 return 0; 134 134 } 135 135 136 - void yosemite_timer_setup(struct irqaction *irq) 136 + void __init plat_timer_setup(struct irqaction *irq) 137 137 { 138 138 setup_irq(7, irq); 139 139 } 140 140 141 141 void yosemite_time_init(void) 142 142 { 143 - board_timer_setup = yosemite_timer_setup; 144 143 mips_hpt_frequency = cpu_clock / 2; 145 144 mips_hpt_frequency = 33000000 * 3 * 5; 146 145 }
-1
arch/mips/qemu/q-reset.c
··· 1 - #include <linux/config.h> 2 1 3 2 #include <asm/io.h> 4 3 #include <asm/reboot.h>
+1 -3
arch/mips/qemu/q-setup.c
··· 11 11 return "Qemu"; 12 12 } 13 13 14 - static void __init qemu_timer_setup(struct irqaction *irq) 14 + void __init plat_timer_setup(struct irqaction *irq) 15 15 { 16 16 /* set the clock to 100 Hz */ 17 17 outb_p(0x34,0x43); /* binary, mode 2, LSB/MSB, ch 0 */ ··· 23 23 void __init plat_mem_setup(void) 24 24 { 25 25 set_io_port_base(QEMU_PORT_BASE); 26 - board_timer_setup = qemu_timer_setup; 27 - 28 26 qemu_reboot_setup(); 29 27 }
+2 -2
arch/mips/sgi-ip22/ip22-eisa.c
··· 144 144 enable_eisa1_irq(irq); 145 145 } 146 146 147 - static struct hw_interrupt_type ip22_eisa1_irq_type = { 147 + static struct irq_chip ip22_eisa1_irq_type = { 148 148 .typename = "IP22 EISA", 149 149 .startup = startup_eisa1_irq, 150 150 .shutdown = shutdown_eisa1_irq, ··· 206 206 enable_eisa2_irq(irq); 207 207 } 208 208 209 - static struct hw_interrupt_type ip22_eisa2_irq_type = { 209 + static struct irq_chip ip22_eisa2_irq_type = { 210 210 .typename = "IP22 EISA", 211 211 .startup = startup_eisa2_irq, 212 212 .shutdown = shutdown_eisa2_irq,
+5 -5
arch/mips/sgi-ip22/ip22-int.c
··· 74 74 enable_local0_irq(irq); 75 75 } 76 76 77 - static struct hw_interrupt_type ip22_local0_irq_type = { 77 + static struct irq_chip ip22_local0_irq_type = { 78 78 .typename = "IP22 local 0", 79 79 .startup = startup_local0_irq, 80 80 .shutdown = shutdown_local0_irq, ··· 120 120 enable_local1_irq(irq); 121 121 } 122 122 123 - static struct hw_interrupt_type ip22_local1_irq_type = { 123 + static struct irq_chip ip22_local1_irq_type = { 124 124 .typename = "IP22 local 1", 125 125 .startup = startup_local1_irq, 126 126 .shutdown = shutdown_local1_irq, ··· 166 166 enable_local2_irq(irq); 167 167 } 168 168 169 - static struct hw_interrupt_type ip22_local2_irq_type = { 169 + static struct irq_chip ip22_local2_irq_type = { 170 170 .typename = "IP22 local 2", 171 171 .startup = startup_local2_irq, 172 172 .shutdown = shutdown_local2_irq, ··· 212 212 enable_local3_irq(irq); 213 213 } 214 214 215 - static struct hw_interrupt_type ip22_local3_irq_type = { 215 + static struct irq_chip ip22_local3_irq_type = { 216 216 .typename = "IP22 local 3", 217 217 .startup = startup_local3_irq, 218 218 .shutdown = shutdown_local3_irq, ··· 421 421 mips_cpu_irq_init(SGINT_CPU); 422 422 423 423 for (i = SGINT_LOCAL0; i < SGI_INTERRUPTS; i++) { 424 - hw_irq_controller *handler; 424 + struct irq_chip *handler; 425 425 426 426 if (i < SGINT_LOCAL1) 427 427 handler = &ip22_local0_irq_type;
+4 -6
arch/mips/sgi-ip22/ip22-time.c
··· 7 7 * Ralf Baechle or David S. Miller (sorry guys, i'm really not sure) 8 8 * 9 9 * Copyright (C) 2001 by Ladislav Michl 10 - * Copyright (C) 2003 Ralf Baechle (ralf@linux-mips.org) 10 + * Copyright (C) 2003, 06 Ralf Baechle (ralf@linux-mips.org) 11 11 */ 12 12 #include <linux/bcd.h> 13 13 #include <linux/ds1286.h> 14 14 #include <linux/init.h> 15 + #include <linux/irq.h> 15 16 #include <linux/kernel.h> 16 17 #include <linux/interrupt.h> 17 18 #include <linux/kernel_stat.h> ··· 77 76 save_control = hpc3c0->rtcregs[RTC_CMD] & 0xff; 78 77 hpc3c0->rtcregs[RTC_CMD] = save_control | RTC_TE; 79 78 80 - hpc3c0->rtcregs[RTC_YEAR] = BIN2BCD(tm.tm_sec); 79 + hpc3c0->rtcregs[RTC_YEAR] = BIN2BCD(tm.tm_year); 81 80 hpc3c0->rtcregs[RTC_MONTH] = BIN2BCD(tm.tm_mon); 82 81 hpc3c0->rtcregs[RTC_DATE] = BIN2BCD(tm.tm_mday); 83 82 hpc3c0->rtcregs[RTC_HOURS] = BIN2BCD(tm.tm_hour); ··· 199 198 irq_exit(); 200 199 } 201 200 202 - extern int setup_irq(unsigned int irq, struct irqaction *irqaction); 203 - 204 - static void indy_timer_setup(struct irqaction *irq) 201 + void __init plat_timer_setup(struct irqaction *irq) 205 202 { 206 203 /* over-write the handler, we use our own way */ 207 204 irq->handler = no_action; ··· 215 216 rtc_mips_set_time = indy_rtc_set_time; 216 217 217 218 board_time_init = indy_time_init; 218 - board_timer_setup = indy_timer_setup; 219 219 }
+1 -3
arch/mips/sgi-ip27/ip27-irq.c
··· 296 296 struct bridge_controller *bc = IRQ_TO_BRIDGE(irq); 297 297 struct hub_data *hub = hub_data(cpu_to_node(bc->irq_cpu)); 298 298 bridge_t *bridge = bc->base; 299 - struct slice_data *si = cpu_data[bc->irq_cpu].data; 300 299 int pin, swlevel; 301 300 cpuid_t cpu; 302 301 ··· 310 311 intr_disconnect_level(cpu, swlevel); 311 312 312 313 __clear_bit(swlevel, hub->irq_alloc_mask); 313 - si->level_to_irq[swlevel] = -1; 314 314 315 315 bridge->b_int_enable &= ~(1 << pin); 316 316 bridge->b_wid_tflush; ··· 345 347 enable_bridge_irq(irq); 346 348 } 347 349 348 - static struct hw_interrupt_type bridge_irq_type = { 350 + static struct irq_chip bridge_irq_type = { 349 351 .typename = "bridge", 350 352 .startup = startup_bridge_irq, 351 353 .shutdown = shutdown_bridge_irq,
+13 -10
arch/mips/sgi-ip27/ip27-timer.c
··· 1 1 /* 2 - * Copytight (C) 1999, 2000, 05 Ralf Baechle (ralf@linux-mips.org) 2 + * Copytight (C) 1999, 2000, 05, 06 Ralf Baechle (ralf@linux-mips.org) 3 3 * Copytight (C) 1999, 2000 Silicon Graphics, Inc. 4 4 */ 5 5 #include <linux/bcd.h> ··· 181 181 return mktime(year, month, date, hour, min, sec); 182 182 } 183 183 184 - static void startup_rt_irq(unsigned int irq) 184 + static unsigned int startup_rt_irq(unsigned int irq) 185 185 { 186 + return 0; 186 187 } 187 188 188 189 static void shutdown_rt_irq(unsigned int irq) ··· 206 205 { 207 206 } 208 207 209 - static struct hw_interrupt_type rt_irq_type = { 208 + static struct irq_chip rt_irq_type = { 210 209 .typename = "SN HUB RT timer", 211 210 .startup = startup_rt_irq, 212 211 .shutdown = shutdown_rt_irq, ··· 225 224 226 225 extern int allocate_irqno(void); 227 226 228 - static void ip27_timer_setup(struct irqaction *irq) 227 + void __init plat_timer_setup(struct irqaction *irq) 229 228 { 230 229 int irqno = allocate_irqno(); 231 230 232 231 if (irqno < 0) 233 232 panic("Can't allocate interrupt number for timer interrupt"); 234 233 235 - irq_desc[irqno].status = IRQ_DISABLED; 236 - irq_desc[irqno].action = NULL; 237 - irq_desc[irqno].depth = 1; 238 - irq_desc[irqno].handler = &rt_irq_type; 234 + irq_desc[irqno].status = IRQ_DISABLED; 235 + irq_desc[irqno].action = NULL; 236 + irq_desc[irqno].depth = 1; 237 + irq_desc[irqno].chip = &rt_irq_type; 239 238 240 239 /* over-write the handler, we use our own way */ 241 240 irq->handler = no_action; ··· 244 243 irq_desc[irqno].status |= IRQ_PER_CPU; 245 244 246 245 rt_timer_irq = irqno; 246 + /* 247 + * Only needed to get /proc/interrupt to display timer irq stats 248 + */ 249 + setup_irq(irqno, &rt_irqaction); 247 250 } 248 251 249 252 void __init ip27_time_init(void) ··· 256 251 xtime.tv_nsec = 0; 257 252 258 253 do_gettimeoffset = ip27_do_gettimeoffset; 259 - 260 - board_timer_setup = ip27_timer_setup; 261 254 } 262 255 263 256 void __init cpu_time_init(void)
+10 -10
arch/mips/sgi-ip32/ip32-irq.c
··· 160 160 #define shutdown_cpu_irq disable_cpu_irq 161 161 #define mask_and_ack_cpu_irq disable_cpu_irq 162 162 163 - static struct hw_interrupt_type ip32_cpu_interrupt = { 163 + static struct irq_chip ip32_cpu_interrupt = { 164 164 .typename = "IP32 CPU", 165 165 .startup = startup_cpu_irq, 166 166 .shutdown = shutdown_cpu_irq, ··· 230 230 231 231 #define shutdown_crime_irq disable_crime_irq 232 232 233 - static struct hw_interrupt_type ip32_crime_interrupt = { 233 + static struct irq_chip ip32_crime_interrupt = { 234 234 .typename = "IP32 CRIME", 235 235 .startup = startup_crime_irq, 236 236 .shutdown = shutdown_crime_irq, ··· 289 289 #define shutdown_macepci_irq disable_macepci_irq 290 290 #define mask_and_ack_macepci_irq disable_macepci_irq 291 291 292 - static struct hw_interrupt_type ip32_macepci_interrupt = { 292 + static struct irq_chip ip32_macepci_interrupt = { 293 293 .typename = "IP32 MACE PCI", 294 294 .startup = startup_macepci_irq, 295 295 .shutdown = shutdown_macepci_irq, ··· 316 316 MACEISA_KEYB_POLL_INT | \ 317 317 MACEISA_MOUSE_INT | \ 318 318 MACEISA_MOUSE_POLL_INT | \ 319 - MACEIIRQF_TIMER0_INT | \ 320 - MACEIIRQF_TIMER1_INT | \ 321 - MACEIIRQF_TIMER2_INT) 319 + MACEISA_TIMER0_INT | \ 320 + MACEISA_TIMER1_INT | \ 321 + MACEISA_TIMER2_INT) 322 322 #define MACEISA_SUPERIO_INT (MACEISA_PARALLEL_INT | \ 323 323 MACEISA_PAR_CTXA_INT | \ 324 324 MACEISA_PAR_CTXB_INT | \ ··· 349 349 case MACEISA_AUDIO_SW_IRQ ... MACEISA_AUDIO3_MERR_IRQ: 350 350 crime_int = MACE_AUDIO_INT; 351 351 break; 352 - case MACEISA_RTC_IRQ ... MACEIIRQF_TIMER2_IRQ: 352 + case MACEISA_RTC_IRQ ... MACEISA_TIMER2_IRQ: 353 353 crime_int = MACE_MISC_INT; 354 354 break; 355 355 case MACEISA_PARALLEL_IRQ ... MACEISA_SERIAL2_RDMAOR_IRQ: ··· 419 419 420 420 #define shutdown_maceisa_irq disable_maceisa_irq 421 421 422 - static struct hw_interrupt_type ip32_maceisa_interrupt = { 422 + static struct irq_chip ip32_maceisa_interrupt = { 423 423 .typename = "IP32 MACE ISA", 424 424 .startup = startup_maceisa_irq, 425 425 .shutdown = shutdown_maceisa_irq, ··· 469 469 #define shutdown_mace_irq disable_mace_irq 470 470 #define mask_and_ack_mace_irq disable_mace_irq 471 471 472 - static struct hw_interrupt_type ip32_mace_interrupt = { 472 + static struct irq_chip ip32_mace_interrupt = { 473 473 .typename = "IP32 MACE", 474 474 .startup = startup_mace_irq, 475 475 .shutdown = shutdown_mace_irq, ··· 575 575 mace->perif.ctrl.imask = 0; 576 576 577 577 for (irq = 0; irq <= IP32_IRQ_MAX; irq++) { 578 - hw_irq_controller *controller; 578 + struct irq_chip *controller; 579 579 580 580 if (irq == IP32_R4K_TIMER_IRQ) 581 581 controller = &ip32_cpu_interrupt;
+2 -2
arch/mips/sgi-ip32/ip32-setup.c
··· 7 7 * 8 8 * Copyright (C) 2000 Harald Koerfgen 9 9 * Copyright (C) 2002, 2003, 2005 Ilya A. Volynets 10 + * Copyright (C) 2006 Ralf Baechle <ralf@linux-mips.org> 10 11 */ 11 12 #include <linux/console.h> 12 13 #include <linux/init.h> ··· 81 80 printk("%d MHz CPU detected\n", mips_hpt_frequency * 2 / 1000000); 82 81 } 83 82 84 - void __init ip32_timer_setup(struct irqaction *irq) 83 + void __init plat_timer_setup(struct irqaction *irq) 85 84 { 86 85 irq->handler = no_action; 87 86 setup_irq(IP32_R4K_TIMER_IRQ, irq); ··· 95 94 rtc_mips_set_mmss = mc146818_set_rtc_mmss; 96 95 97 96 board_time_init = ip32_time_init; 98 - board_timer_setup = ip32_timer_setup; 99 97 100 98 #ifdef CONFIG_SERIAL_8250 101 99 {
+9 -8
arch/mips/sibyte/bcm1480/irq.c
··· 83 83 #endif 84 84 #endif 85 85 86 - static struct hw_interrupt_type bcm1480_irq_type = { 86 + static struct irq_chip bcm1480_irq_type = { 87 87 .typename = "BCM1480-IMR", 88 88 .startup = startup_bcm1480_irq, 89 89 .shutdown = shutdown_bcm1480_irq, ··· 140 140 { 141 141 int i = 0, old_cpu, cpu, int_on, k; 142 142 u64 cur_ints; 143 - irq_desc_t *desc = irq_desc + irq; 143 + struct irq_desc *desc = irq_desc + irq; 144 144 unsigned long flags; 145 145 unsigned int irq_dirty; 146 146 ··· 278 278 irq_desc[i].chip = &bcm1480_irq_type; 279 279 bcm1480_irq_owner[i] = 0; 280 280 } else { 281 - irq_desc[i].chip = &no_irq_type; 281 + irq_desc[i].chip = &no_irq_chip; 282 282 } 283 283 } 284 284 } ··· 301 301 302 302 int bcm1480_steal_irq(int irq) 303 303 { 304 - irq_desc_t *desc = irq_desc + irq; 304 + struct irq_desc *desc = irq_desc + irq; 305 305 unsigned long flags; 306 306 int retval = 0; 307 307 ··· 502 502 #ifdef CONFIG_SIBYTE_BCM1480_PROF 503 503 if (pending & CAUSEF_IP7) /* Cpu performance counter interrupt */ 504 504 sbprof_cpu_intr(exception_epc(regs)); 505 + else 505 506 #endif 506 507 507 508 if (pending & CAUSEF_IP4) 508 509 bcm1480_timer_interrupt(regs); 509 510 510 511 #ifdef CONFIG_SMP 511 - if (pending & CAUSEF_IP3) 512 + else if (pending & CAUSEF_IP3) 512 513 bcm1480_mailbox_interrupt(regs); 513 514 #endif 514 515 515 516 #ifdef CONFIG_KGDB 516 - if (pending & CAUSEF_IP6) 517 + else if (pending & CAUSEF_IP6) 517 518 bcm1480_kgdb_interrupt(regs); /* KGDB (uart 1) */ 518 519 #endif 519 520 520 - if (pending & CAUSEF_IP2) { 521 + else if (pending & CAUSEF_IP2) { 521 522 unsigned long long mask_h, mask_l; 522 523 unsigned long base; 523 524 ··· 534 533 mask_l = __raw_readq( 535 534 IOADDR(base + R_BCM1480_IMR_INTERRUPT_STATUS_BASE_L)); 536 535 537 - if (!mask_h) { 536 + if (mask_h) { 538 537 if (mask_h ^ 1) 539 538 do_IRQ(63 - dclz(mask_h), regs); 540 539 else
+9 -9
arch/mips/sibyte/sb1250/irq.c
··· 69 69 #endif 70 70 #endif 71 71 72 - static struct hw_interrupt_type sb1250_irq_type = { 72 + static struct irq_chip sb1250_irq_type = { 73 73 .typename = "SB1250-IMR", 74 74 .startup = startup_sb1250_irq, 75 75 .shutdown = shutdown_sb1250_irq, ··· 120 120 { 121 121 int i = 0, old_cpu, cpu, int_on; 122 122 u64 cur_ints; 123 - irq_desc_t *desc = irq_desc + irq; 123 + struct irq_desc *desc = irq_desc + irq; 124 124 unsigned long flags; 125 125 126 126 i = first_cpu(mask); ··· 248 248 irq_desc[i].chip = &sb1250_irq_type; 249 249 sb1250_irq_owner[i] = 0; 250 250 } else { 251 - irq_desc[i].chip = &no_irq_type; 251 + irq_desc[i].chip = &no_irq_chip; 252 252 } 253 253 } 254 254 } ··· 271 271 272 272 int sb1250_steal_irq(int irq) 273 273 { 274 - irq_desc_t *desc = irq_desc + irq; 274 + struct irq_desc *desc = irq_desc + irq; 275 275 unsigned long flags; 276 276 int retval = 0; 277 277 ··· 460 460 pending = read_c0_cause(); 461 461 462 462 #ifdef CONFIG_SIBYTE_SB1250_PROF 463 - if (pending & CAUSEF_IP7) { /* Cpu performance counter interrupt */ 463 + if (pending & CAUSEF_IP7) /* Cpu performance counter interrupt */ 464 464 sbprof_cpu_intr(exception_epc(regs)); 465 - } 465 + else 466 466 #endif 467 467 468 468 if (pending & CAUSEF_IP4) 469 469 sb1250_timer_interrupt(regs); 470 470 471 471 #ifdef CONFIG_SMP 472 - if (pending & CAUSEF_IP3) 472 + else if (pending & CAUSEF_IP3) 473 473 sb1250_mailbox_interrupt(regs); 474 474 #endif 475 475 476 476 #ifdef CONFIG_KGDB 477 - if (pending & CAUSEF_IP6) /* KGDB (uart 1) */ 477 + else if (pending & CAUSEF_IP6) /* KGDB (uart 1) */ 478 478 sb1250_kgdb_interrupt(regs); 479 479 #endif 480 480 481 - if (pending & CAUSEF_IP2) { 481 + else if (pending & CAUSEF_IP2) { 482 482 unsigned long long mask; 483 483 484 484 /*
+1 -2
arch/mips/sibyte/swarm/setup.c
··· 77 77 #endif 78 78 } 79 79 80 - void __init swarm_timer_setup(struct irqaction *irq) 80 + void __init plat_timer_setup(struct irqaction *irq) 81 81 { 82 82 /* 83 83 * we don't set up irqaction, because we will deliver timer ··· 117 117 panic_timeout = 5; /* For debug. */ 118 118 119 119 board_time_init = swarm_time_init; 120 - board_timer_setup = swarm_timer_setup; 121 120 board_be_handler = swarm_be_handler; 122 121 123 122 if (xicor_probe()) {
+1 -1
arch/mips/sni/irq.c
··· 55 55 enable_pciasic_irq(irq); 56 56 } 57 57 58 - static struct hw_interrupt_type pciasic_irq_type = { 58 + static struct irq_chip pciasic_irq_type = { 59 59 .typename = "ASIC-PCI", 60 60 .startup = startup_pciasic_irq, 61 61 .shutdown = shutdown_pciasic_irq,
+1 -2
arch/mips/sni/setup.c
··· 41 41 extern void sni_machine_halt(void); 42 42 extern void sni_machine_power_off(void); 43 43 44 - static void __init sni_rm200_pci_timer_setup(struct irqaction *irq) 44 + void __init plat_timer_setup(struct irqaction *irq) 45 45 { 46 46 /* set the clock to 100 Hz */ 47 47 outb_p(0x34,0x43); /* binary, mode 2, LSB/MSB, ch 0 */ ··· 270 270 #endif 271 271 272 272 sni_resource_init(); 273 - board_timer_setup = sni_rm200_pci_timer_setup; 274 273 275 274 _machine_restart = sni_machine_restart; 276 275 _machine_halt = sni_machine_halt;
+2 -2
arch/mips/tx4927/common/tx4927_irq.c
··· 146 146 static DEFINE_SPINLOCK(tx4927_pic_lock); 147 147 148 148 #define TX4927_CP0_NAME "TX4927-CP0" 149 - static struct hw_interrupt_type tx4927_irq_cp0_type = { 149 + static struct irq_chip tx4927_irq_cp0_type = { 150 150 .typename = TX4927_CP0_NAME, 151 151 .startup = tx4927_irq_cp0_startup, 152 152 .shutdown = tx4927_irq_cp0_shutdown, ··· 158 158 }; 159 159 160 160 #define TX4927_PIC_NAME "TX4927-PIC" 161 - static struct hw_interrupt_type tx4927_irq_pic_type = { 161 + static struct irq_chip tx4927_irq_pic_type = { 162 162 .typename = TX4927_PIC_NAME, 163 163 .startup = tx4927_irq_pic_startup, 164 164 .shutdown = tx4927_irq_pic_shutdown,
+1 -3
arch/mips/tx4927/common/tx4927_setup.c
··· 50 50 #undef DEBUG 51 51 52 52 void __init tx4927_time_init(void); 53 - void __init tx4927_timer_setup(struct irqaction *irq); 54 53 void dump_cp0(char *key); 55 54 56 55 ··· 65 66 void __init plat_mem_setup(void) 66 67 { 67 68 board_time_init = tx4927_time_init; 68 - board_timer_setup = tx4927_timer_setup; 69 69 __wbflush = tx4927_write_buffer_flush; 70 70 71 71 #ifdef CONFIG_TOSHIBA_RBTX4927 ··· 89 91 } 90 92 91 93 92 - void __init tx4927_timer_setup(struct irqaction *irq) 94 + void __init plat_timer_setup(struct irqaction *irq) 93 95 { 94 96 u32 count; 95 97 u32 c1;
+2 -2
arch/mips/tx4927/toshiba_rbtx4927/toshiba_rbtx4927_irq.c
··· 251 251 252 252 253 253 #define TOSHIBA_RBTX4927_IOC_NAME "RBTX4927-IOC" 254 - static struct hw_interrupt_type toshiba_rbtx4927_irq_ioc_type = { 254 + static struct irq_chip toshiba_rbtx4927_irq_ioc_type = { 255 255 .typename = TOSHIBA_RBTX4927_IOC_NAME, 256 256 .startup = toshiba_rbtx4927_irq_ioc_startup, 257 257 .shutdown = toshiba_rbtx4927_irq_ioc_shutdown, ··· 267 267 268 268 #ifdef CONFIG_TOSHIBA_FPCIB0 269 269 #define TOSHIBA_RBTX4927_ISA_NAME "RBTX4927-ISA" 270 - static struct hw_interrupt_type toshiba_rbtx4927_irq_isa_type = { 270 + static struct irq_chip toshiba_rbtx4927_irq_isa_type = { 271 271 .typename = TOSHIBA_RBTX4927_ISA_NAME, 272 272 .startup = toshiba_rbtx4927_irq_isa_startup, 273 273 .shutdown = toshiba_rbtx4927_irq_isa_shutdown,
+2 -2
arch/mips/tx4938/common/irq.c
··· 57 57 DEFINE_SPINLOCK(tx4938_pic_lock); 58 58 59 59 #define TX4938_CP0_NAME "TX4938-CP0" 60 - static struct hw_interrupt_type tx4938_irq_cp0_type = { 60 + static struct irq_chip tx4938_irq_cp0_type = { 61 61 .typename = TX4938_CP0_NAME, 62 62 .startup = tx4938_irq_cp0_startup, 63 63 .shutdown = tx4938_irq_cp0_shutdown, ··· 69 69 }; 70 70 71 71 #define TX4938_PIC_NAME "TX4938-PIC" 72 - static struct hw_interrupt_type tx4938_irq_pic_type = { 72 + static struct irq_chip tx4938_irq_pic_type = { 73 73 .typename = TX4938_PIC_NAME, 74 74 .startup = tx4938_irq_pic_startup, 75 75 .shutdown = tx4938_irq_pic_shutdown,
+1 -4
arch/mips/tx4938/common/setup.c
··· 39 39 40 40 void __init tx4938_setup(void); 41 41 void __init tx4938_time_init(void); 42 - void __init tx4938_timer_setup(struct irqaction *irq); 43 42 void dump_cp0(char *key); 44 43 45 44 void (*__wbflush) (void); ··· 63 64 plat_mem_setup(void) 64 65 { 65 66 board_time_init = tx4938_time_init; 66 - board_timer_setup = tx4938_timer_setup; 67 67 __wbflush = tx4938_write_buffer_flush; 68 68 toshiba_rbtx4938_setup(); 69 69 } ··· 73 75 rbtx4938_time_init(); 74 76 } 75 77 76 - void __init 77 - tx4938_timer_setup(struct irqaction *irq) 78 + void __init plat_timer_setup(struct irqaction *irq) 78 79 { 79 80 u32 count; 80 81 u32 c1;
+1 -1
arch/mips/tx4938/toshiba_rbtx4938/irq.c
··· 97 97 DEFINE_SPINLOCK(toshiba_rbtx4938_ioc_lock); 98 98 99 99 #define TOSHIBA_RBTX4938_IOC_NAME "RBTX4938-IOC" 100 - static struct hw_interrupt_type toshiba_rbtx4938_irq_ioc_type = { 100 + static struct irq_chip toshiba_rbtx4938_irq_ioc_type = { 101 101 .typename = TOSHIBA_RBTX4938_IOC_NAME, 102 102 .startup = toshiba_rbtx4938_irq_ioc_startup, 103 103 .shutdown = toshiba_rbtx4938_irq_ioc_shutdown,
-6
arch/mips/vr41xx/Kconfig
··· 86 86 depends on MACH_VR41XX && HW_HAS_PCI 87 87 default y 88 88 select PCI 89 - 90 - config VRC4173 91 - tristate "Add NEC VRC4173 companion chip support" 92 - depends on MACH_VR41XX && PCI_VR41XX 93 - help 94 - The NEC VRC4173 is a companion chip for NEC VR4122/VR4131.
+10 -5
arch/mips/vr41xx/casio-e55/setup.c
··· 1 1 /* 2 2 * setup.c, Setup for the CASIO CASSIOPEIA E-11/15/55/65. 3 3 * 4 - * Copyright (C) 2002-2005 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> 4 + * Copyright (C) 2002-2006 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> 5 5 * 6 6 * This program is free software; you can redistribute it and/or modify 7 7 * it under the terms of the GNU General Public License as published by ··· 21 21 #include <linux/ioport.h> 22 22 23 23 #include <asm/io.h> 24 - #include <asm/vr41xx/e55.h> 24 + 25 + #define E55_ISA_IO_BASE 0x1400c000 26 + #define E55_ISA_IO_SIZE 0x03ff4000 27 + #define E55_ISA_IO_START 0 28 + #define E55_ISA_IO_END (E55_ISA_IO_SIZE - 1) 29 + #define E55_IO_PORT_BASE KSEG1ADDR(E55_ISA_IO_BASE) 25 30 26 31 static int __init casio_e55_setup(void) 27 32 { 28 - set_io_port_base(IO_PORT_BASE); 29 - ioport_resource.start = IO_PORT_RESOURCE_START; 30 - ioport_resource.end = IO_PORT_RESOURCE_END; 33 + set_io_port_base(E55_IO_PORT_BASE); 34 + ioport_resource.start = E55_ISA_IO_START; 35 + ioport_resource.end = E55_ISA_IO_END; 31 36 32 37 return 0; 33 38 }
+1 -2
arch/mips/vr41xx/common/Makefile
··· 2 2 # Makefile for common code of the NEC VR4100 series. 3 3 # 4 4 5 - obj-y += bcu.o cmu.o icu.o init.o irq.o pmu.o type.o 6 - obj-$(CONFIG_VRC4173) += vrc4173.o 5 + obj-y += bcu.o cmu.o icu.o init.o irq.o pmu.o type.o 7 6 8 7 EXTRA_AFLAGS := $(CFLAGS)
+23 -22
arch/mips/vr41xx/common/icu.c
··· 38 38 39 39 #include <asm/cpu.h> 40 40 #include <asm/io.h> 41 + #include <asm/vr41xx/irq.h> 41 42 #include <asm/vr41xx/vr41xx.h> 42 43 43 44 static void __iomem *icu1_base; ··· 153 152 154 153 void vr41xx_enable_piuint(uint16_t mask) 155 154 { 156 - irq_desc_t *desc = irq_desc + PIU_IRQ; 155 + struct irq_desc *desc = irq_desc + PIU_IRQ; 157 156 unsigned long flags; 158 157 159 158 if (current_cpu_data.cputype == CPU_VR4111 || ··· 168 167 169 168 void vr41xx_disable_piuint(uint16_t mask) 170 169 { 171 - irq_desc_t *desc = irq_desc + PIU_IRQ; 170 + struct irq_desc *desc = irq_desc + PIU_IRQ; 172 171 unsigned long flags; 173 172 174 173 if (current_cpu_data.cputype == CPU_VR4111 || ··· 183 182 184 183 void vr41xx_enable_aiuint(uint16_t mask) 185 184 { 186 - irq_desc_t *desc = irq_desc + AIU_IRQ; 185 + struct irq_desc *desc = irq_desc + AIU_IRQ; 187 186 unsigned long flags; 188 187 189 188 if (current_cpu_data.cputype == CPU_VR4111 || ··· 198 197 199 198 void vr41xx_disable_aiuint(uint16_t mask) 200 199 { 201 - irq_desc_t *desc = irq_desc + AIU_IRQ; 200 + struct irq_desc *desc = irq_desc + AIU_IRQ; 202 201 unsigned long flags; 203 202 204 203 if (current_cpu_data.cputype == CPU_VR4111 || ··· 213 212 214 213 void vr41xx_enable_kiuint(uint16_t mask) 215 214 { 216 - irq_desc_t *desc = irq_desc + KIU_IRQ; 215 + struct irq_desc *desc = irq_desc + KIU_IRQ; 217 216 unsigned long flags; 218 217 219 218 if (current_cpu_data.cputype == CPU_VR4111 || ··· 228 227 229 228 void vr41xx_disable_kiuint(uint16_t mask) 230 229 { 231 - irq_desc_t *desc = irq_desc + KIU_IRQ; 230 + struct irq_desc *desc = irq_desc + KIU_IRQ; 232 231 unsigned long flags; 233 232 234 233 if (current_cpu_data.cputype == CPU_VR4111 || ··· 243 242 244 243 void vr41xx_enable_dsiuint(uint16_t mask) 245 244 { 246 - irq_desc_t *desc = irq_desc + DSIU_IRQ; 245 + struct irq_desc *desc = irq_desc + DSIU_IRQ; 247 246 unsigned long flags; 248 247 249 248 spin_lock_irqsave(&desc->lock, flags); ··· 255 254 256 255 void vr41xx_disable_dsiuint(uint16_t mask) 257 256 { 258 - irq_desc_t *desc = irq_desc + DSIU_IRQ; 257 + struct irq_desc *desc = irq_desc + DSIU_IRQ; 259 258 unsigned long flags; 260 259 261 260 spin_lock_irqsave(&desc->lock, flags); ··· 267 266 268 267 void vr41xx_enable_firint(uint16_t mask) 269 268 { 270 - irq_desc_t *desc = irq_desc + FIR_IRQ; 269 + struct irq_desc *desc = irq_desc + FIR_IRQ; 271 270 unsigned long flags; 272 271 273 272 spin_lock_irqsave(&desc->lock, flags); ··· 279 278 280 279 void vr41xx_disable_firint(uint16_t mask) 281 280 { 282 - irq_desc_t *desc = irq_desc + FIR_IRQ; 281 + struct irq_desc *desc = irq_desc + FIR_IRQ; 283 282 unsigned long flags; 284 283 285 284 spin_lock_irqsave(&desc->lock, flags); ··· 291 290 292 291 void vr41xx_enable_pciint(void) 293 292 { 294 - irq_desc_t *desc = irq_desc + PCI_IRQ; 293 + struct irq_desc *desc = irq_desc + PCI_IRQ; 295 294 unsigned long flags; 296 295 297 296 if (current_cpu_data.cputype == CPU_VR4122 || ··· 307 306 308 307 void vr41xx_disable_pciint(void) 309 308 { 310 - irq_desc_t *desc = irq_desc + PCI_IRQ; 309 + struct irq_desc *desc = irq_desc + PCI_IRQ; 311 310 unsigned long flags; 312 311 313 312 if (current_cpu_data.cputype == CPU_VR4122 || ··· 323 322 324 323 void vr41xx_enable_scuint(void) 325 324 { 326 - irq_desc_t *desc = irq_desc + SCU_IRQ; 325 + struct irq_desc *desc = irq_desc + SCU_IRQ; 327 326 unsigned long flags; 328 327 329 328 if (current_cpu_data.cputype == CPU_VR4122 || ··· 339 338 340 339 void vr41xx_disable_scuint(void) 341 340 { 342 - irq_desc_t *desc = irq_desc + SCU_IRQ; 341 + struct irq_desc *desc = irq_desc + SCU_IRQ; 343 342 unsigned long flags; 344 343 345 344 if (current_cpu_data.cputype == CPU_VR4122 || ··· 355 354 356 355 void vr41xx_enable_csiint(uint16_t mask) 357 356 { 358 - irq_desc_t *desc = irq_desc + CSI_IRQ; 357 + struct irq_desc *desc = irq_desc + CSI_IRQ; 359 358 unsigned long flags; 360 359 361 360 if (current_cpu_data.cputype == CPU_VR4122 || ··· 371 370 372 371 void vr41xx_disable_csiint(uint16_t mask) 373 372 { 374 - irq_desc_t *desc = irq_desc + CSI_IRQ; 373 + struct irq_desc *desc = irq_desc + CSI_IRQ; 375 374 unsigned long flags; 376 375 377 376 if (current_cpu_data.cputype == CPU_VR4122 || ··· 387 386 388 387 void vr41xx_enable_bcuint(void) 389 388 { 390 - irq_desc_t *desc = irq_desc + BCU_IRQ; 389 + struct irq_desc *desc = irq_desc + BCU_IRQ; 391 390 unsigned long flags; 392 391 393 392 if (current_cpu_data.cputype == CPU_VR4122 || ··· 403 402 404 403 void vr41xx_disable_bcuint(void) 405 404 { 406 - irq_desc_t *desc = irq_desc + BCU_IRQ; 405 + struct irq_desc *desc = irq_desc + BCU_IRQ; 407 406 unsigned long flags; 408 407 409 408 if (current_cpu_data.cputype == CPU_VR4122 || ··· 443 442 icu1_set(MSYSINT1REG, 1 << SYSINT1_IRQ_TO_PIN(irq)); 444 443 } 445 444 446 - static struct hw_interrupt_type sysint1_irq_type = { 445 + static struct irq_chip sysint1_irq_type = { 447 446 .typename = "SYSINT1", 448 447 .startup = startup_sysint1_irq, 449 448 .shutdown = shutdown_sysint1_irq, ··· 479 478 icu2_set(MSYSINT2REG, 1 << SYSINT2_IRQ_TO_PIN(irq)); 480 479 } 481 480 482 - static struct hw_interrupt_type sysint2_irq_type = { 481 + static struct irq_chip sysint2_irq_type = { 483 482 .typename = "SYSINT2", 484 483 .startup = startup_sysint2_irq, 485 484 .shutdown = shutdown_sysint2_irq, ··· 491 490 492 491 static inline int set_sysint1_assign(unsigned int irq, unsigned char assign) 493 492 { 494 - irq_desc_t *desc = irq_desc + irq; 493 + struct irq_desc *desc = irq_desc + irq; 495 494 uint16_t intassign0, intassign1; 496 495 unsigned int pin; 497 496 ··· 550 549 551 550 static inline int set_sysint2_assign(unsigned int irq, unsigned char assign) 552 551 { 553 - irq_desc_t *desc = irq_desc + irq; 552 + struct irq_desc *desc = irq_desc + irq; 554 553 uint16_t intassign2, intassign3; 555 554 unsigned int pin; 556 555
+2 -2
arch/mips/vr41xx/common/init.c
··· 24 24 25 25 #include <asm/bootinfo.h> 26 26 #include <asm/time.h> 27 + #include <asm/vr41xx/irq.h> 27 28 #include <asm/vr41xx/vr41xx.h> 28 29 29 30 #define IO_MEM_RESOURCE_START 0UL ··· 48 47 mips_hpt_frequency = tclock / 4; 49 48 } 50 49 51 - static void __init setup_timer_irq(struct irqaction *irq) 50 + void __init plat_timer_setup(struct irqaction *irq) 52 51 { 53 52 setup_irq(TIMER_IRQ, irq); 54 53 } ··· 56 55 static void __init timer_init(void) 57 56 { 58 57 board_time_init = setup_timer_frequency; 59 - board_timer_setup = setup_timer_irq; 60 58 } 61 59 62 60 void __init plat_mem_setup(void)
+2 -2
arch/mips/vr41xx/common/irq.c
··· 22 22 23 23 #include <asm/irq_cpu.h> 24 24 #include <asm/system.h> 25 - #include <asm/vr41xx/vr41xx.h> 25 + #include <asm/vr41xx/irq.h> 26 26 27 27 typedef struct irq_cascade { 28 28 int (*get_irq)(unsigned int, struct pt_regs *); ··· 62 62 static void irq_dispatch(unsigned int irq, struct pt_regs *regs) 63 63 { 64 64 irq_cascade_t *cascade; 65 - irq_desc_t *desc; 65 + struct irq_desc *desc; 66 66 67 67 if (irq >= NR_IRQS) { 68 68 atomic_inc(&irq_err_count);
-581
arch/mips/vr41xx/common/vrc4173.c
··· 1 - /* 2 - * vrc4173.c, NEC VRC4173 base driver for NEC VR4122/VR4131. 3 - * 4 - * Copyright (C) 2001-2003 MontaVista Software Inc. 5 - * Author: Yoichi Yuasa <yyuasa@mvista.com, or source@mvista.com> 6 - * Copyright (C) 2004 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> 7 - * Copyright (C) 2005 Ralf Baechle (ralf@linux-mips.org) 8 - * 9 - * This program is free software; you can redistribute it and/or modify 10 - * it under the terms of the GNU General Public License as published by 11 - * the Free Software Foundation; either version 2 of the License, or 12 - * (at your option) any later version. 13 - * 14 - * This program is distributed in the hope that it will be useful, 15 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 - * GNU General Public License for more details. 18 - * 19 - * You should have received a copy of the GNU General Public License 20 - * along with this program; if not, write to the Free Software 21 - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 22 - */ 23 - #include <linux/init.h> 24 - #include <linux/module.h> 25 - #include <linux/interrupt.h> 26 - #include <linux/irq.h> 27 - #include <linux/pci.h> 28 - #include <linux/spinlock.h> 29 - #include <linux/types.h> 30 - 31 - #include <asm/vr41xx/vr41xx.h> 32 - #include <asm/vr41xx/vrc4173.h> 33 - 34 - MODULE_DESCRIPTION("NEC VRC4173 base driver for NEC VR4122/4131"); 35 - MODULE_AUTHOR("Yoichi Yuasa <yyuasa@mvista.com>"); 36 - MODULE_LICENSE("GPL"); 37 - 38 - #define VRC4173_CMUCLKMSK 0x040 39 - #define MSKPIU 0x0001 40 - #define MSKKIU 0x0002 41 - #define MSKAIU 0x0004 42 - #define MSKPS2CH1 0x0008 43 - #define MSKPS2CH2 0x0010 44 - #define MSKUSB 0x0020 45 - #define MSKCARD1 0x0040 46 - #define MSKCARD2 0x0080 47 - #define MSKAC97 0x0100 48 - #define MSK48MUSB 0x0400 49 - #define MSK48MPIN 0x0800 50 - #define MSK48MOSC 0x1000 51 - #define VRC4173_CMUSRST 0x042 52 - #define USBRST 0x0001 53 - #define CARD1RST 0x0002 54 - #define CARD2RST 0x0004 55 - #define AC97RST 0x0008 56 - 57 - #define VRC4173_SYSINT1REG 0x060 58 - #define VRC4173_MSYSINT1REG 0x06c 59 - #define VRC4173_MPIUINTREG 0x06e 60 - #define VRC4173_MAIUINTREG 0x070 61 - #define VRC4173_MKIUINTREG 0x072 62 - 63 - #define VRC4173_SELECTREG 0x09e 64 - #define SEL3 0x0008 65 - #define SEL2 0x0004 66 - #define SEL1 0x0002 67 - #define SEL0 0x0001 68 - 69 - static struct pci_device_id vrc4173_id_table[] __devinitdata = { 70 - { .vendor = PCI_VENDOR_ID_NEC, 71 - .device = PCI_DEVICE_ID_NEC_VRC4173, 72 - .subvendor = PCI_ANY_ID, 73 - .subdevice = PCI_ANY_ID, }, 74 - { .vendor = 0, }, 75 - }; 76 - 77 - unsigned long vrc4173_io_offset = 0; 78 - 79 - EXPORT_SYMBOL(vrc4173_io_offset); 80 - 81 - static int vrc4173_initialized; 82 - static uint16_t vrc4173_cmuclkmsk; 83 - static uint16_t vrc4173_selectreg; 84 - static DEFINE_SPINLOCK(vrc4173_cmu_lock); 85 - static DEFINE_SPINLOCK(vrc4173_giu_lock); 86 - 87 - static inline void set_cmusrst(uint16_t val) 88 - { 89 - uint16_t cmusrst; 90 - 91 - cmusrst = vrc4173_inw(VRC4173_CMUSRST); 92 - cmusrst |= val; 93 - vrc4173_outw(cmusrst, VRC4173_CMUSRST); 94 - } 95 - 96 - static inline void clear_cmusrst(uint16_t val) 97 - { 98 - uint16_t cmusrst; 99 - 100 - cmusrst = vrc4173_inw(VRC4173_CMUSRST); 101 - cmusrst &= ~val; 102 - vrc4173_outw(cmusrst, VRC4173_CMUSRST); 103 - } 104 - 105 - void vrc4173_supply_clock(vrc4173_clock_t clock) 106 - { 107 - if (vrc4173_initialized) { 108 - spin_lock_irq(&vrc4173_cmu_lock); 109 - 110 - switch (clock) { 111 - case VRC4173_PIU_CLOCK: 112 - vrc4173_cmuclkmsk |= MSKPIU; 113 - break; 114 - case VRC4173_KIU_CLOCK: 115 - vrc4173_cmuclkmsk |= MSKKIU; 116 - break; 117 - case VRC4173_AIU_CLOCK: 118 - vrc4173_cmuclkmsk |= MSKAIU; 119 - break; 120 - case VRC4173_PS2_CH1_CLOCK: 121 - vrc4173_cmuclkmsk |= MSKPS2CH1; 122 - break; 123 - case VRC4173_PS2_CH2_CLOCK: 124 - vrc4173_cmuclkmsk |= MSKPS2CH2; 125 - break; 126 - case VRC4173_USBU_PCI_CLOCK: 127 - set_cmusrst(USBRST); 128 - vrc4173_cmuclkmsk |= MSKUSB; 129 - break; 130 - case VRC4173_CARDU1_PCI_CLOCK: 131 - set_cmusrst(CARD1RST); 132 - vrc4173_cmuclkmsk |= MSKCARD1; 133 - break; 134 - case VRC4173_CARDU2_PCI_CLOCK: 135 - set_cmusrst(CARD2RST); 136 - vrc4173_cmuclkmsk |= MSKCARD2; 137 - break; 138 - case VRC4173_AC97U_PCI_CLOCK: 139 - set_cmusrst(AC97RST); 140 - vrc4173_cmuclkmsk |= MSKAC97; 141 - break; 142 - case VRC4173_USBU_48MHz_CLOCK: 143 - set_cmusrst(USBRST); 144 - vrc4173_cmuclkmsk |= MSK48MUSB; 145 - break; 146 - case VRC4173_EXT_48MHz_CLOCK: 147 - if (vrc4173_cmuclkmsk & MSK48MOSC) 148 - vrc4173_cmuclkmsk |= MSK48MPIN; 149 - else 150 - printk(KERN_WARNING 151 - "vrc4173_supply_clock: " 152 - "Please supply VRC4173_48MHz_CLOCK first " 153 - "rather than VRC4173_EXT_48MHz_CLOCK.\n"); 154 - break; 155 - case VRC4173_48MHz_CLOCK: 156 - vrc4173_cmuclkmsk |= MSK48MOSC; 157 - break; 158 - default: 159 - printk(KERN_WARNING 160 - "vrc4173_supply_clock: Invalid CLOCK value %u\n", clock); 161 - break; 162 - } 163 - 164 - vrc4173_outw(vrc4173_cmuclkmsk, VRC4173_CMUCLKMSK); 165 - 166 - switch (clock) { 167 - case VRC4173_USBU_PCI_CLOCK: 168 - case VRC4173_USBU_48MHz_CLOCK: 169 - clear_cmusrst(USBRST); 170 - break; 171 - case VRC4173_CARDU1_PCI_CLOCK: 172 - clear_cmusrst(CARD1RST); 173 - break; 174 - case VRC4173_CARDU2_PCI_CLOCK: 175 - clear_cmusrst(CARD2RST); 176 - break; 177 - case VRC4173_AC97U_PCI_CLOCK: 178 - clear_cmusrst(AC97RST); 179 - break; 180 - default: 181 - break; 182 - } 183 - 184 - spin_unlock_irq(&vrc4173_cmu_lock); 185 - } 186 - } 187 - 188 - EXPORT_SYMBOL(vrc4173_supply_clock); 189 - 190 - void vrc4173_mask_clock(vrc4173_clock_t clock) 191 - { 192 - if (vrc4173_initialized) { 193 - spin_lock_irq(&vrc4173_cmu_lock); 194 - 195 - switch (clock) { 196 - case VRC4173_PIU_CLOCK: 197 - vrc4173_cmuclkmsk &= ~MSKPIU; 198 - break; 199 - case VRC4173_KIU_CLOCK: 200 - vrc4173_cmuclkmsk &= ~MSKKIU; 201 - break; 202 - case VRC4173_AIU_CLOCK: 203 - vrc4173_cmuclkmsk &= ~MSKAIU; 204 - break; 205 - case VRC4173_PS2_CH1_CLOCK: 206 - vrc4173_cmuclkmsk &= ~MSKPS2CH1; 207 - break; 208 - case VRC4173_PS2_CH2_CLOCK: 209 - vrc4173_cmuclkmsk &= ~MSKPS2CH2; 210 - break; 211 - case VRC4173_USBU_PCI_CLOCK: 212 - set_cmusrst(USBRST); 213 - vrc4173_cmuclkmsk &= ~MSKUSB; 214 - break; 215 - case VRC4173_CARDU1_PCI_CLOCK: 216 - set_cmusrst(CARD1RST); 217 - vrc4173_cmuclkmsk &= ~MSKCARD1; 218 - break; 219 - case VRC4173_CARDU2_PCI_CLOCK: 220 - set_cmusrst(CARD2RST); 221 - vrc4173_cmuclkmsk &= ~MSKCARD2; 222 - break; 223 - case VRC4173_AC97U_PCI_CLOCK: 224 - set_cmusrst(AC97RST); 225 - vrc4173_cmuclkmsk &= ~MSKAC97; 226 - break; 227 - case VRC4173_USBU_48MHz_CLOCK: 228 - set_cmusrst(USBRST); 229 - vrc4173_cmuclkmsk &= ~MSK48MUSB; 230 - break; 231 - case VRC4173_EXT_48MHz_CLOCK: 232 - vrc4173_cmuclkmsk &= ~MSK48MPIN; 233 - break; 234 - case VRC4173_48MHz_CLOCK: 235 - vrc4173_cmuclkmsk &= ~MSK48MOSC; 236 - break; 237 - default: 238 - printk(KERN_WARNING "vrc4173_mask_clock: Invalid CLOCK value %u\n", clock); 239 - break; 240 - } 241 - 242 - vrc4173_outw(vrc4173_cmuclkmsk, VRC4173_CMUCLKMSK); 243 - 244 - switch (clock) { 245 - case VRC4173_USBU_PCI_CLOCK: 246 - case VRC4173_USBU_48MHz_CLOCK: 247 - clear_cmusrst(USBRST); 248 - break; 249 - case VRC4173_CARDU1_PCI_CLOCK: 250 - clear_cmusrst(CARD1RST); 251 - break; 252 - case VRC4173_CARDU2_PCI_CLOCK: 253 - clear_cmusrst(CARD2RST); 254 - break; 255 - case VRC4173_AC97U_PCI_CLOCK: 256 - clear_cmusrst(AC97RST); 257 - break; 258 - default: 259 - break; 260 - } 261 - 262 - spin_unlock_irq(&vrc4173_cmu_lock); 263 - } 264 - } 265 - 266 - EXPORT_SYMBOL(vrc4173_mask_clock); 267 - 268 - static inline void vrc4173_cmu_init(void) 269 - { 270 - vrc4173_cmuclkmsk = vrc4173_inw(VRC4173_CMUCLKMSK); 271 - 272 - spin_lock_init(&vrc4173_cmu_lock); 273 - } 274 - 275 - void vrc4173_select_function(vrc4173_function_t function) 276 - { 277 - if (vrc4173_initialized) { 278 - spin_lock_irq(&vrc4173_giu_lock); 279 - 280 - switch(function) { 281 - case PS2_CHANNEL1: 282 - vrc4173_selectreg |= SEL2; 283 - break; 284 - case PS2_CHANNEL2: 285 - vrc4173_selectreg |= SEL1; 286 - break; 287 - case TOUCHPANEL: 288 - vrc4173_selectreg &= SEL2 | SEL1 | SEL0; 289 - break; 290 - case KEYBOARD_8SCANLINES: 291 - vrc4173_selectreg &= SEL3 | SEL2 | SEL1; 292 - break; 293 - case KEYBOARD_10SCANLINES: 294 - vrc4173_selectreg &= SEL3 | SEL2; 295 - break; 296 - case KEYBOARD_12SCANLINES: 297 - vrc4173_selectreg &= SEL3; 298 - break; 299 - case GPIO_0_15PINS: 300 - vrc4173_selectreg |= SEL0; 301 - break; 302 - case GPIO_16_20PINS: 303 - vrc4173_selectreg |= SEL3; 304 - break; 305 - } 306 - 307 - vrc4173_outw(vrc4173_selectreg, VRC4173_SELECTREG); 308 - 309 - spin_unlock_irq(&vrc4173_giu_lock); 310 - } 311 - } 312 - 313 - EXPORT_SYMBOL(vrc4173_select_function); 314 - 315 - static inline void vrc4173_giu_init(void) 316 - { 317 - vrc4173_selectreg = vrc4173_inw(VRC4173_SELECTREG); 318 - 319 - spin_lock_init(&vrc4173_giu_lock); 320 - } 321 - 322 - void vrc4173_enable_piuint(uint16_t mask) 323 - { 324 - irq_desc_t *desc = irq_desc + VRC4173_PIU_IRQ; 325 - unsigned long flags; 326 - uint16_t val; 327 - 328 - spin_lock_irqsave(&desc->lock, flags); 329 - val = vrc4173_inw(VRC4173_MPIUINTREG); 330 - val |= mask; 331 - vrc4173_outw(val, VRC4173_MPIUINTREG); 332 - spin_unlock_irqrestore(&desc->lock, flags); 333 - } 334 - 335 - EXPORT_SYMBOL(vrc4173_enable_piuint); 336 - 337 - void vrc4173_disable_piuint(uint16_t mask) 338 - { 339 - irq_desc_t *desc = irq_desc + VRC4173_PIU_IRQ; 340 - unsigned long flags; 341 - uint16_t val; 342 - 343 - spin_lock_irqsave(&desc->lock, flags); 344 - val = vrc4173_inw(VRC4173_MPIUINTREG); 345 - val &= ~mask; 346 - vrc4173_outw(val, VRC4173_MPIUINTREG); 347 - spin_unlock_irqrestore(&desc->lock, flags); 348 - } 349 - 350 - EXPORT_SYMBOL(vrc4173_disable_piuint); 351 - 352 - void vrc4173_enable_aiuint(uint16_t mask) 353 - { 354 - irq_desc_t *desc = irq_desc + VRC4173_AIU_IRQ; 355 - unsigned long flags; 356 - uint16_t val; 357 - 358 - spin_lock_irqsave(&desc->lock, flags); 359 - val = vrc4173_inw(VRC4173_MAIUINTREG); 360 - val |= mask; 361 - vrc4173_outw(val, VRC4173_MAIUINTREG); 362 - spin_unlock_irqrestore(&desc->lock, flags); 363 - } 364 - 365 - EXPORT_SYMBOL(vrc4173_enable_aiuint); 366 - 367 - void vrc4173_disable_aiuint(uint16_t mask) 368 - { 369 - irq_desc_t *desc = irq_desc + VRC4173_AIU_IRQ; 370 - unsigned long flags; 371 - uint16_t val; 372 - 373 - spin_lock_irqsave(&desc->lock, flags); 374 - val = vrc4173_inw(VRC4173_MAIUINTREG); 375 - val &= ~mask; 376 - vrc4173_outw(val, VRC4173_MAIUINTREG); 377 - spin_unlock_irqrestore(&desc->lock, flags); 378 - } 379 - 380 - EXPORT_SYMBOL(vrc4173_disable_aiuint); 381 - 382 - void vrc4173_enable_kiuint(uint16_t mask) 383 - { 384 - irq_desc_t *desc = irq_desc + VRC4173_KIU_IRQ; 385 - unsigned long flags; 386 - uint16_t val; 387 - 388 - spin_lock_irqsave(&desc->lock, flags); 389 - val = vrc4173_inw(VRC4173_MKIUINTREG); 390 - val |= mask; 391 - vrc4173_outw(val, VRC4173_MKIUINTREG); 392 - spin_unlock_irqrestore(&desc->lock, flags); 393 - } 394 - 395 - EXPORT_SYMBOL(vrc4173_enable_kiuint); 396 - 397 - void vrc4173_disable_kiuint(uint16_t mask) 398 - { 399 - irq_desc_t *desc = irq_desc + VRC4173_KIU_IRQ; 400 - unsigned long flags; 401 - uint16_t val; 402 - 403 - spin_lock_irqsave(&desc->lock, flags); 404 - val = vrc4173_inw(VRC4173_MKIUINTREG); 405 - val &= ~mask; 406 - vrc4173_outw(val, VRC4173_MKIUINTREG); 407 - spin_unlock_irqrestore(&desc->lock, flags); 408 - } 409 - 410 - EXPORT_SYMBOL(vrc4173_disable_kiuint); 411 - 412 - static void enable_vrc4173_irq(unsigned int irq) 413 - { 414 - uint16_t val; 415 - 416 - val = vrc4173_inw(VRC4173_MSYSINT1REG); 417 - val |= (uint16_t)1 << (irq - VRC4173_IRQ_BASE); 418 - vrc4173_outw(val, VRC4173_MSYSINT1REG); 419 - } 420 - 421 - static void disable_vrc4173_irq(unsigned int irq) 422 - { 423 - uint16_t val; 424 - 425 - val = vrc4173_inw(VRC4173_MSYSINT1REG); 426 - val &= ~((uint16_t)1 << (irq - VRC4173_IRQ_BASE)); 427 - vrc4173_outw(val, VRC4173_MSYSINT1REG); 428 - } 429 - 430 - static unsigned int startup_vrc4173_irq(unsigned int irq) 431 - { 432 - enable_vrc4173_irq(irq); 433 - return 0; /* never anything pending */ 434 - } 435 - 436 - #define shutdown_vrc4173_irq disable_vrc4173_irq 437 - #define ack_vrc4173_irq disable_vrc4173_irq 438 - 439 - static void end_vrc4173_irq(unsigned int irq) 440 - { 441 - if (!(irq_desc[irq].status & (IRQ_DISABLED | IRQ_INPROGRESS))) 442 - enable_vrc4173_irq(irq); 443 - } 444 - 445 - static struct hw_interrupt_type vrc4173_irq_type = { 446 - .typename = "VRC4173", 447 - .startup = startup_vrc4173_irq, 448 - .shutdown = shutdown_vrc4173_irq, 449 - .enable = enable_vrc4173_irq, 450 - .disable = disable_vrc4173_irq, 451 - .ack = ack_vrc4173_irq, 452 - .end = end_vrc4173_irq, 453 - }; 454 - 455 - static int vrc4173_get_irq_number(int irq) 456 - { 457 - uint16_t status, mask; 458 - int i; 459 - 460 - status = vrc4173_inw(VRC4173_SYSINT1REG); 461 - mask = vrc4173_inw(VRC4173_MSYSINT1REG); 462 - 463 - status &= mask; 464 - if (status) { 465 - for (i = 0; i < 16; i++) 466 - if (status & (0x0001 << i)) 467 - return VRC4173_IRQ(i); 468 - } 469 - 470 - return -EINVAL; 471 - } 472 - 473 - static inline int vrc4173_icu_init(int cascade_irq) 474 - { 475 - int i; 476 - 477 - if (cascade_irq < GIU_IRQ(0) || cascade_irq > GIU_IRQ(15)) 478 - return -EINVAL; 479 - 480 - vrc4173_outw(0, VRC4173_MSYSINT1REG); 481 - 482 - vr41xx_set_irq_trigger(GIU_IRQ_TO_PIN(cascade_irq), TRIGGER_LEVEL, SIGNAL_THROUGH); 483 - vr41xx_set_irq_level(GIU_IRQ_TO_PIN(cascade_irq), LEVEL_LOW); 484 - 485 - for (i = VRC4173_IRQ_BASE; i <= VRC4173_IRQ_LAST; i++) 486 - irq_desc[i].chip = &vrc4173_irq_type; 487 - 488 - return 0; 489 - } 490 - 491 - static int __devinit vrc4173_probe(struct pci_dev *dev, 492 - const struct pci_device_id *id) 493 - { 494 - unsigned long start, flags; 495 - int err; 496 - 497 - err = pci_enable_device(dev); 498 - if (err < 0) { 499 - printk(KERN_ERR "vrc4173: Failed to enable PCI device, aborting\n"); 500 - return err; 501 - } 502 - 503 - pci_set_master(dev); 504 - 505 - start = pci_resource_start(dev, 0); 506 - if (start == 0) { 507 - printk(KERN_ERR "vrc4173:No such PCI I/O resource, aborting\n"); 508 - return -ENXIO; 509 - } 510 - 511 - flags = pci_resource_flags(dev, 0); 512 - if ((flags & IORESOURCE_IO) == 0) { 513 - printk(KERN_ERR "vrc4173: No such PCI I/O resource, aborting\n"); 514 - return -ENXIO; 515 - } 516 - 517 - err = pci_request_regions(dev, "NEC VRC4173"); 518 - if (err < 0) { 519 - printk(KERN_ERR "vrc4173: PCI resources are busy, aborting\n"); 520 - return err; 521 - } 522 - 523 - set_vrc4173_io_offset(start); 524 - 525 - vrc4173_cmu_init(); 526 - vrc4173_giu_init(); 527 - 528 - err = vrc4173_icu_init(dev->irq); 529 - if (err < 0) { 530 - printk(KERN_ERR "vrc4173: Invalid IRQ %d, aborting\n", dev->irq); 531 - return err; 532 - } 533 - 534 - err = vr41xx_cascade_irq(dev->irq, vrc4173_get_irq_number); 535 - if (err < 0) { 536 - printk(KERN_ERR "vrc4173: IRQ resource %d is busy, aborting\n", dev->irq); 537 - return err; 538 - } 539 - 540 - printk(KERN_INFO 541 - "NEC VRC4173 at 0x%#08lx, IRQ is cascaded to %d\n", start, dev->irq); 542 - 543 - return 0; 544 - } 545 - 546 - static void vrc4173_remove(struct pci_dev *dev) 547 - { 548 - free_irq(dev->irq, NULL); 549 - 550 - pci_release_regions(dev); 551 - } 552 - 553 - static struct pci_driver vrc4173_driver = { 554 - .name = "NEC VRC4173", 555 - .probe = vrc4173_probe, 556 - .remove = vrc4173_remove, 557 - .id_table = vrc4173_id_table, 558 - }; 559 - 560 - static int __devinit vrc4173_init(void) 561 - { 562 - int err; 563 - 564 - err = pci_register_driver(&vrc4173_driver); 565 - if (err < 0) 566 - return err; 567 - 568 - vrc4173_initialized = 1; 569 - 570 - return 0; 571 - } 572 - 573 - static void __devexit vrc4173_exit(void) 574 - { 575 - vrc4173_initialized = 0; 576 - 577 - pci_unregister_driver(&vrc4173_driver); 578 - } 579 - 580 - module_init(vrc4173_init); 581 - module_exit(vrc4173_exit);
+10 -5
arch/mips/vr41xx/ibm-workpad/setup.c
··· 1 1 /* 2 2 * setup.c, Setup for the IBM WorkPad z50. 3 3 * 4 - * Copyright (C) 2002-2005 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> 4 + * Copyright (C) 2002-2006 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> 5 5 * 6 6 * This program is free software; you can redistribute it and/or modify 7 7 * it under the terms of the GNU General Public License as published by ··· 21 21 #include <linux/ioport.h> 22 22 23 23 #include <asm/io.h> 24 - #include <asm/vr41xx/workpad.h> 24 + 25 + #define WORKPAD_ISA_IO_BASE 0x15000000 26 + #define WORKPAD_ISA_IO_SIZE 0x03000000 27 + #define WORKPAD_ISA_IO_START 0 28 + #define WORKPAD_ISA_IO_END (WORKPAD_ISA_IO_SIZE - 1) 29 + #define WORKPAD_IO_PORT_BASE KSEG1ADDR(WORKPAD_ISA_IO_BASE) 25 30 26 31 static int __init ibm_workpad_setup(void) 27 32 { 28 - set_io_port_base(IO_PORT_BASE); 29 - ioport_resource.start = IO_PORT_RESOURCE_START; 30 - ioport_resource.end = IO_PORT_RESOURCE_END; 33 + set_io_port_base(WORKPAD_IO_PORT_BASE); 34 + ioport_resource.start = WORKPAD_ISA_IO_START; 35 + ioport_resource.end = WORKPAD_ISA_IO_END; 31 36 32 37 return 0; 33 38 }
+1 -1
arch/mips/vr41xx/nec-cmbvr4133/irq.c
··· 62 62 enable_8259A_irq(irq - I8259_IRQ_BASE); 63 63 } 64 64 65 - static struct hw_interrupt_type i8259_irq_type = { 65 + static struct irq_chip i8259_irq_type = { 66 66 .typename = "XT-PIC", 67 67 .startup = startup_i8259_irq, 68 68 .shutdown = shutdown_i8259_irq,
+1
drivers/char/vr41xx_giu.c
··· 33 33 #include <asm/cpu.h> 34 34 #include <asm/io.h> 35 35 #include <asm/vr41xx/giu.h> 36 + #include <asm/vr41xx/irq.h> 36 37 #include <asm/vr41xx/vr41xx.h> 37 38 38 39 MODULE_AUTHOR("Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>");
+1 -1
drivers/rtc/rtc-vr41xx.c
··· 30 30 #include <asm/div64.h> 31 31 #include <asm/io.h> 32 32 #include <asm/uaccess.h> 33 - #include <asm/vr41xx/vr41xx.h> 33 + #include <asm/vr41xx/irq.h> 34 34 35 35 MODULE_AUTHOR("Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>"); 36 36 MODULE_DESCRIPTION("NEC VR4100 series RTC driver");
+1
drivers/serial/vr41xx_siu.c
··· 38 38 #include <linux/tty_flip.h> 39 39 40 40 #include <asm/io.h> 41 + #include <asm/vr41xx/irq.h> 41 42 #include <asm/vr41xx/siu.h> 42 43 #include <asm/vr41xx/vr41xx.h> 43 44
-1
include/asm-mips/apm.h
··· 13 13 #ifndef MIPS_ASM_SA1100_APM_H 14 14 #define MIPS_ASM_SA1100_APM_H 15 15 16 - #include <linux/config.h> 17 16 #include <linux/apm_bios.h> 18 17 19 18 /*
+1 -1
include/asm-mips/atomic.h
··· 22 22 #ifndef _ASM_ATOMIC_H 23 23 #define _ASM_ATOMIC_H 24 24 25 + #include <linux/irqflags.h> 25 26 #include <asm/cpu-features.h> 26 - #include <asm/interrupt.h> 27 27 #include <asm/war.h> 28 28 29 29 typedef struct { volatile int counter; } atomic_t;
+1 -1
include/asm-mips/bitops.h
··· 31 31 32 32 #ifdef __KERNEL__ 33 33 34 - #include <asm/interrupt.h> 34 + #include <linux/irqflags.h> 35 35 #include <asm/sgidefs.h> 36 36 #include <asm/war.h> 37 37
+3 -7
include/asm-mips/cpu-features.h
··· 143 143 #define cpu_has_dsp (cpu_data[0].ases & MIPS_ASE_DSP) 144 144 #endif 145 145 146 - #ifdef CONFIG_MIPS_MT 147 146 #ifndef cpu_has_mipsmt 148 - # define cpu_has_mipsmt (cpu_data[0].ases & MIPS_ASE_MIPSMT) 149 - #endif 150 - #else 151 - # define cpu_has_mipsmt 0 147 + #define cpu_has_mipsmt (cpu_data[0].ases & MIPS_ASE_MIPSMT) 152 148 #endif 153 149 154 150 #ifdef CONFIG_32BIT ··· 195 199 # define cpu_has_veic 0 196 200 #endif 197 201 198 - #ifndef cpu_has_subset_pcaches 199 - #define cpu_has_subset_pcaches (cpu_data[0].options & MIPS_CPU_SUBSET_CACHES) 202 + #ifndef cpu_has_inclusive_pcaches 203 + #define cpu_has_inclusive_pcaches (cpu_data[0].options & MIPS_CPU_INCLUSIVE_CACHES) 200 204 #endif 201 205 202 206 #ifndef cpu_dcache_line_size
+1 -1
include/asm-mips/cpu.h
··· 242 242 #define MIPS_CPU_EJTAG 0x00008000 /* EJTAG exception */ 243 243 #define MIPS_CPU_NOFPUEX 0x00010000 /* no FPU exception */ 244 244 #define MIPS_CPU_LLSC 0x00020000 /* CPU has ll/sc instructions */ 245 - #define MIPS_CPU_SUBSET_CACHES 0x00040000 /* P-cache subset enforced */ 245 + #define MIPS_CPU_INCLUSIVE_CACHES 0x00040000 /* P-cache subset enforced */ 246 246 #define MIPS_CPU_PREFETCH 0x00080000 /* CPU has usable prefetch */ 247 247 #define MIPS_CPU_VINT 0x00100000 /* CPU supports MIPSR2 vectored interrupts */ 248 248 #define MIPS_CPU_VEIC 0x00200000 /* CPU supports MIPSR2 external interrupt controller mode */
+1 -1
include/asm-mips/inst.h
··· 74 74 ins_op, dinsm_op, dinsu_op, dins_op, 75 75 bshfl_op = 0x20, 76 76 dbshfl_op = 0x24, 77 - rdhwr_op = 0x3f 77 + rdhwr_op = 0x3b 78 78 }; 79 79 80 80 /*
+37 -33
include/asm-mips/interrupt.h include/asm-mips/irqflags.h
··· 8 8 * Copyright (C) 1999 Silicon Graphics 9 9 * Copyright (C) 2000 MIPS Technologies, Inc. 10 10 */ 11 - #ifndef _ASM_INTERRUPT_H 12 - #define _ASM_INTERRUPT_H 11 + #ifndef _ASM_IRQFLAGS_H 12 + #define _ASM_IRQFLAGS_H 13 + 14 + #ifndef __ASSEMBLY__ 13 15 14 16 #include <asm/hazards.h> 15 17 16 18 __asm__ ( 17 - " .macro local_irq_enable \n" 19 + " .macro raw_local_irq_enable \n" 18 20 " .set push \n" 19 21 " .set reorder \n" 20 22 " .set noat \n" ··· 37 35 " .set pop \n" 38 36 " .endm"); 39 37 40 - static inline void local_irq_enable(void) 38 + static inline void raw_local_irq_enable(void) 41 39 { 42 40 __asm__ __volatile__( 43 - "local_irq_enable" 41 + "raw_local_irq_enable" 44 42 : /* no outputs */ 45 43 : /* no inputs */ 46 44 : "memory"); ··· 65 63 * Workaround: mask EXL bit of the result or place a nop before mfc0. 66 64 */ 67 65 __asm__ ( 68 - " .macro local_irq_disable\n" 66 + " .macro raw_local_irq_disable\n" 69 67 " .set push \n" 70 68 " .set noat \n" 71 69 #ifdef CONFIG_MIPS_MT_SMTC ··· 86 84 " .set pop \n" 87 85 " .endm \n"); 88 86 89 - static inline void local_irq_disable(void) 87 + static inline void raw_local_irq_disable(void) 90 88 { 91 89 __asm__ __volatile__( 92 - "local_irq_disable" 90 + "raw_local_irq_disable" 93 91 : /* no outputs */ 94 92 : /* no inputs */ 95 93 : "memory"); 96 94 } 97 95 98 96 __asm__ ( 99 - " .macro local_save_flags flags \n" 97 + " .macro raw_local_save_flags flags \n" 100 98 " .set push \n" 101 99 " .set reorder \n" 102 100 #ifdef CONFIG_MIPS_MT_SMTC ··· 107 105 " .set pop \n" 108 106 " .endm \n"); 109 107 110 - #define local_save_flags(x) \ 108 + #define raw_local_save_flags(x) \ 111 109 __asm__ __volatile__( \ 112 - "local_save_flags %0" \ 110 + "raw_local_save_flags %0" \ 113 111 : "=r" (x)) 114 112 115 113 __asm__ ( 116 - " .macro local_irq_save result \n" 114 + " .macro raw_local_irq_save result \n" 117 115 " .set push \n" 118 116 " .set reorder \n" 119 117 " .set noat \n" ··· 137 135 " .set pop \n" 138 136 " .endm \n"); 139 137 140 - #define local_irq_save(x) \ 138 + #define raw_local_irq_save(x) \ 141 139 __asm__ __volatile__( \ 142 - "local_irq_save\t%0" \ 140 + "raw_local_irq_save\t%0" \ 143 141 : "=r" (x) \ 144 142 : /* no inputs */ \ 145 143 : "memory") 146 144 147 145 __asm__ ( 148 - " .macro local_irq_restore flags \n" 146 + " .macro raw_local_irq_restore flags \n" 149 147 " .set push \n" 150 148 " .set noreorder \n" 151 149 " .set noat \n" ··· 184 182 " .set pop \n" 185 183 " .endm \n"); 186 184 187 - #define local_irq_restore(flags) \ 185 + #define raw_local_irq_restore(flags) \ 188 186 do { \ 189 187 unsigned long __tmp1; \ 190 188 \ 191 189 __asm__ __volatile__( \ 192 - "local_irq_restore\t%0" \ 190 + "raw_local_irq_restore\t%0" \ 193 191 : "=r" (__tmp1) \ 194 192 : "0" (flags) \ 195 193 : "memory"); \ 196 194 } while(0) 197 195 198 - static inline int irqs_disabled(void) 196 + static inline int raw_irqs_disabled_flags(unsigned long flags) 199 197 { 200 198 #ifdef CONFIG_MIPS_MT_SMTC 201 199 /* 202 200 * SMTC model uses TCStatus.IXMT to disable interrupts for a thread/CPU 203 201 */ 204 - unsigned long __result; 205 - 206 - __asm__ __volatile__( 207 - " .set noreorder \n" 208 - " mfc0 %0, $2, 1 \n" 209 - " andi %0, 0x400 \n" 210 - " slt %0, $0, %0 \n" 211 - " .set reorder \n" 212 - : "=r" (__result)); 213 - 214 - return __result; 202 + return flags & 0x400; 215 203 #else 216 - unsigned long flags; 217 - local_save_flags(flags); 218 - 219 204 return !(flags & 1); 220 205 #endif 221 206 } 222 207 223 - #endif /* _ASM_INTERRUPT_H */ 208 + #endif 209 + 210 + /* 211 + * Do the CPU's IRQ-state tracing from assembly code. 212 + */ 213 + #ifdef CONFIG_TRACE_IRQFLAGS 214 + # define TRACE_IRQS_ON \ 215 + jal trace_hardirqs_on 216 + # define TRACE_IRQS_OFF \ 217 + jal trace_hardirqs_off 218 + #else 219 + # define TRACE_IRQS_ON 220 + # define TRACE_IRQS_OFF 221 + #endif 222 + 223 + #endif /* _ASM_IRQFLAGS_H */
+1 -1
include/asm-mips/mach-cobalt/cpu-feature-overrides.h
··· 27 27 #define cpu_has_mcheck 0 28 28 #define cpu_has_ejtag 0 29 29 30 - #define cpu_has_subset_pcaches 0 30 + #define cpu_has_inclusive_pcaches 0 31 31 #define cpu_dcache_line_size() 32 32 32 #define cpu_icache_line_size() 32 33 33 #define cpu_scache_line_size() 0
+1 -1
include/asm-mips/mach-excite/cpu-feature-overrides.h
··· 31 31 #define cpu_has_nofpuex 0 32 32 #define cpu_has_64bits 1 33 33 34 - #define cpu_has_subset_pcaches 0 34 + #define cpu_has_inclusive_pcaches 0 35 35 36 36 #define cpu_dcache_line_size() 32 37 37 #define cpu_icache_line_size() 32
-1
include/asm-mips/mach-excite/excite.h
··· 1 1 #ifndef __EXCITE_H__ 2 2 #define __EXCITE_H__ 3 3 4 - #include <linux/config.h> 5 4 #include <linux/init.h> 6 5 #include <asm/addrspace.h> 7 6 #include <asm/types.h>
+1 -1
include/asm-mips/mach-ip27/cpu-feature-overrides.h
··· 34 34 #define cpu_has_4kex 1 35 35 #define cpu_has_4k_cache 1 36 36 37 - #define cpu_has_subset_pcaches 1 37 + #define cpu_has_inclusive_pcaches 1 38 38 39 39 #define cpu_dcache_line_size() 32 40 40 #define cpu_icache_line_size() 64
+1 -1
include/asm-mips/mach-ja/cpu-feature-overrides.h
··· 31 31 #define cpu_has_nofpuex 0 32 32 #define cpu_has_64bits 1 33 33 34 - #define cpu_has_subset_pcaches 0 34 + #define cpu_has_inclusive_pcaches 0 35 35 36 36 #define cpu_dcache_line_size() 32 37 37 #define cpu_icache_line_size() 32
+2 -2
include/asm-mips/mach-mips/cpu-feature-overrides.h
··· 39 39 #define cpu_has_nofpuex 0 40 40 /* #define cpu_has_64bits ? */ 41 41 /* #define cpu_has_64bit_zero_reg ? */ 42 - /* #define cpu_has_subset_pcaches ? */ 42 + /* #define cpu_has_inclusive_pcaches ? */ 43 43 #define cpu_icache_snoops_remote_store 1 44 44 #endif 45 45 ··· 65 65 #define cpu_has_nofpuex 0 66 66 /* #define cpu_has_64bits ? */ 67 67 /* #define cpu_has_64bit_zero_reg ? */ 68 - /* #define cpu_has_subset_pcaches ? */ 68 + /* #define cpu_has_inclusive_pcaches ? */ 69 69 #define cpu_icache_snoops_remote_store 1 70 70 #endif 71 71
+1 -1
include/asm-mips/mach-ocelot3/cpu-feature-overrides.h
··· 34 34 #define cpu_has_nofpuex 0 35 35 #define cpu_has_64bits 1 36 36 37 - #define cpu_has_subset_pcaches 0 37 + #define cpu_has_inclusive_pcaches 0 38 38 39 39 #define cpu_dcache_line_size() 32 40 40 #define cpu_icache_line_size() 32
+1 -1
include/asm-mips/mach-sibyte/cpu-feature-overrides.h
··· 31 31 #define cpu_has_nofpuex 0 32 32 #define cpu_has_64bits 1 33 33 34 - #define cpu_has_subset_pcaches 0 34 + #define cpu_has_inclusive_pcaches 0 35 35 36 36 #define cpu_dcache_line_size() 32 37 37 #define cpu_icache_line_size() 32
+2 -2
include/asm-mips/mach-sim/cpu-feature-overrides.h
··· 34 34 #define cpu_has_nofpuex 0 35 35 /* #define cpu_has_64bits ? */ 36 36 /* #define cpu_has_64bit_zero_reg ? */ 37 - /* #define cpu_has_subset_pcaches ? */ 37 + /* #define cpu_has_inclusive_pcaches ? */ 38 38 #endif 39 39 40 40 #ifdef CONFIG_CPU_MIPS64 ··· 59 59 #define cpu_has_nofpuex 0 60 60 /* #define cpu_has_64bits ? */ 61 61 /* #define cpu_has_64bit_zero_reg ? */ 62 - /* #define cpu_has_subset_pcaches ? */ 62 + /* #define cpu_has_inclusive_pcaches ? */ 63 63 #endif 64 64 65 65 #endif /* __ASM_MACH_MIPS_CPU_FEATURE_OVERRIDES_H */
+1 -1
include/asm-mips/mach-yosemite/cpu-feature-overrides.h
··· 31 31 #define cpu_has_nofpuex 0 32 32 #define cpu_has_64bits 1 33 33 34 - #define cpu_has_subset_pcaches 0 34 + #define cpu_has_inclusive_pcaches 0 35 35 36 36 #define cpu_dcache_line_size() 32 37 37 #define cpu_icache_line_size() 32
+3 -1
include/asm-mips/mipsregs.h
··· 470 470 471 471 /* Bits specific to the VR41xx. */ 472 472 #define VR41_CONF_CS (_ULCAST_(1) << 12) 473 + #define VR41_CONF_P4K (_ULCAST_(1) << 13) 474 + #define VR41_CONF_BP (_ULCAST_(1) << 16) 473 475 #define VR41_CONF_M16 (_ULCAST_(1) << 20) 474 476 #define VR41_CONF_AD (_ULCAST_(1) << 23) 475 477 ··· 1418 1416 1419 1417 #else /* SMTC versions that manage MT scheduling */ 1420 1418 1421 - #include <asm/interrupt.h> 1419 + #include <linux/irqflags.h> 1422 1420 1423 1421 /* 1424 1422 * This is a duplicate of dmt() in mipsmtregs.h to avoid problems with
+4 -8
include/asm-mips/page.h
··· 138 138 139 139 #define pfn_to_kaddr(pfn) __va((pfn) << PAGE_SHIFT) 140 140 141 - #ifndef CONFIG_SPARSEMEM 142 - #ifndef CONFIG_NEED_MULTIPLE_NODES 143 - #define pfn_valid(pfn) ((pfn) < max_mapnr) 144 - #endif 145 - #endif 146 - 147 141 #ifdef CONFIG_FLATMEM 148 142 149 143 #define pfn_valid(pfn) ((pfn) < max_mapnr) 144 + 145 + #elif defined(CONFIG_SPARSEMEM) 146 + 147 + /* pfn_valid is defined in linux/mmzone.h */ 150 148 151 149 #elif defined(CONFIG_NEED_MULTIPLE_NODES) 152 150 ··· 157 159 : 0); \ 158 160 }) 159 161 160 - #else 161 - #error Provide a definition of pfn_valid 162 162 #endif 163 163 164 164 #define virt_to_page(kaddr) pfn_to_page(__pa(kaddr) >> PAGE_SHIFT)
+1 -1
include/asm-mips/system.h
··· 13 13 #define _ASM_SYSTEM_H 14 14 15 15 #include <linux/types.h> 16 + #include <linux/irqflags.h> 16 17 17 18 #include <asm/addrspace.h> 18 19 #include <asm/cpu-features.h> 19 20 #include <asm/dsp.h> 20 21 #include <asm/ptrace.h> 21 22 #include <asm/war.h> 22 - #include <asm/interrupt.h> 23 23 24 24 /* 25 25 * read_barrier_depends - Flush all pending reads that subsequents reads
+2 -2
include/asm-mips/time.h
··· 83 83 /* 84 84 * board specific routines required by time_init(). 85 85 * board_time_init is defaulted to NULL and can remain so. 86 - * board_timer_setup must be setup properly in machine setup routine. 86 + * plat_timer_setup must be setup properly in machine setup routine. 87 87 */ 88 88 struct irqaction; 89 89 extern void (*board_time_init)(void); 90 - extern void (*board_timer_setup)(struct irqaction *irq); 90 + extern void plat_timer_setup(struct irqaction *irq); 91 91 92 92 /* 93 93 * mips_hpt_frequency - must be set if you intend to use an R4k-compatible
+12 -6
include/asm-mips/unistd.h
··· 327 327 #define __NR_splice (__NR_Linux + 304) 328 328 #define __NR_sync_file_range (__NR_Linux + 305) 329 329 #define __NR_tee (__NR_Linux + 306) 330 + #define __NR_vmsplice (__NR_Linux + 307) 331 + #define __NR_move_pages (__NR_Linux + 308) 330 332 331 333 /* 332 334 * Offset of the last Linux o32 flavoured syscall 333 335 */ 334 - #define __NR_Linux_syscalls 306 336 + #define __NR_Linux_syscalls 308 335 337 336 338 #endif /* _MIPS_SIM == _MIPS_SIM_ABI32 */ 337 339 338 340 #define __NR_O32_Linux 4000 339 - #define __NR_O32_Linux_syscalls 306 341 + #define __NR_O32_Linux_syscalls 308 340 342 341 343 #if _MIPS_SIM == _MIPS_SIM_ABI64 342 344 ··· 612 610 #define __NR_splice (__NR_Linux + 263) 613 611 #define __NR_sync_file_range (__NR_Linux + 264) 614 612 #define __NR_tee (__NR_Linux + 265) 613 + #define __NR_vmsplice (__NR_Linux + 266) 614 + #define __NR_move_pages (__NR_Linux + 267) 615 615 616 616 /* 617 617 * Offset of the last Linux 64-bit flavoured syscall 618 618 */ 619 - #define __NR_Linux_syscalls 265 619 + #define __NR_Linux_syscalls 267 620 620 621 621 #endif /* _MIPS_SIM == _MIPS_SIM_ABI64 */ 622 622 623 623 #define __NR_64_Linux 5000 624 - #define __NR_64_Linux_syscalls 265 624 + #define __NR_64_Linux_syscalls 267 625 625 626 626 #if _MIPS_SIM == _MIPS_SIM_NABI32 627 627 ··· 901 897 #define __NR_splice (__NR_Linux + 267) 902 898 #define __NR_sync_file_range (__NR_Linux + 268) 903 899 #define __NR_tee (__NR_Linux + 269) 900 + #define __NR_vmsplice (__NR_Linux + 270) 901 + #define __NR_move_pages (__NR_Linux + 271) 904 902 905 903 /* 906 904 * Offset of the last N32 flavoured syscall 907 905 */ 908 - #define __NR_Linux_syscalls 269 906 + #define __NR_Linux_syscalls 271 909 907 910 908 #endif /* _MIPS_SIM == _MIPS_SIM_NABI32 */ 911 909 912 910 #define __NR_N32_Linux 6000 913 - #define __NR_N32_Linux_syscalls 269 911 + #define __NR_N32_Linux_syscalls 271 914 912 915 913 #ifdef __KERNEL__ 916 914
+1 -1
include/asm-mips/vr41xx/capcella.h
··· 20 20 #ifndef __ZAO_CAPCELLA_H 21 21 #define __ZAO_CAPCELLA_H 22 22 23 - #include <asm/vr41xx/vr41xx.h> 23 + #include <asm/vr41xx/irq.h> 24 24 25 25 /* 26 26 * General-Purpose I/O Pin Number
+1 -5
include/asm-mips/vr41xx/cmbvr4133.h
··· 15 15 #ifndef __NEC_CMBVR4133_H 16 16 #define __NEC_CMBVR4133_H 17 17 18 - #include <asm/addrspace.h> 19 - #include <asm/vr41xx/vr41xx.h> 18 + #include <asm/vr41xx/irq.h> 20 19 21 20 /* 22 21 * General-Purpose I/O Pin Number ··· 53 54 #define IDE_PRIMARY_IRQ I8259_IRQ(14) 54 55 #define IDE_SECONDARY_IRQ I8259_IRQ(15) 55 56 #define I8259_IRQ_LAST IDE_SECONDARY_IRQ 56 - 57 - #define RTC_PORT(x) (0xaf000100 + (x)) 58 - #define RTC_IO_EXTENT 0x140 59 57 60 58 #endif /* __NEC_CMBVR4133_H */
-43
include/asm-mips/vr41xx/e55.h
··· 1 - /* 2 - * e55.h, Include file for CASIO CASSIOPEIA E-10/15/55/65. 3 - * 4 - * Copyright (C) 2002-2004 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> 5 - * 6 - * This program is free software; you can redistribute it and/or modify 7 - * it under the terms of the GNU General Public License as published by 8 - * the Free Software Foundation; either version 2 of the License, or 9 - * (at your option) any later version. 10 - * 11 - * This program is distributed in the hope that it will be useful, 12 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 - * GNU General Public License for more details. 15 - * 16 - * You should have received a copy of the GNU General Public License 17 - * along with this program; if not, write to the Free Software 18 - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 19 - */ 20 - #ifndef __CASIO_E55_H 21 - #define __CASIO_E55_H 22 - 23 - #include <asm/addrspace.h> 24 - #include <asm/vr41xx/vr41xx.h> 25 - 26 - /* 27 - * Board specific address mapping 28 - */ 29 - #define VR41XX_ISA_MEM_BASE 0x10000000 30 - #define VR41XX_ISA_MEM_SIZE 0x04000000 31 - 32 - /* VR41XX_ISA_IO_BASE includes offset from real base. */ 33 - #define VR41XX_ISA_IO_BASE 0x1400c000 34 - #define VR41XX_ISA_IO_SIZE 0x03ff4000 35 - 36 - #define ISA_BUS_IO_BASE 0 37 - #define ISA_BUS_IO_SIZE VR41XX_ISA_IO_SIZE 38 - 39 - #define IO_PORT_BASE KSEG1ADDR(VR41XX_ISA_IO_BASE) 40 - #define IO_PORT_RESOURCE_START ISA_BUS_IO_BASE 41 - #define IO_PORT_RESOURCE_END (ISA_BUS_IO_BASE + ISA_BUS_IO_SIZE - 1) 42 - 43 - #endif /* __CASIO_E55_H */
+101
include/asm-mips/vr41xx/irq.h
··· 1 + /* 2 + * include/asm-mips/vr41xx/irq.h 3 + * 4 + * Interrupt numbers for NEC VR4100 series. 5 + * 6 + * Copyright (C) 1999 Michael Klar 7 + * Copyright (C) 2001, 2002 Paul Mundt 8 + * Copyright (C) 2002 MontaVista Software, Inc. 9 + * Copyright (C) 2002 TimeSys Corp. 10 + * Copyright (C) 2003-2006 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> 11 + * 12 + * This program is free software; you can redistribute it and/or modify it 13 + * under the terms of the GNU General Public License as published by the 14 + * Free Software Foundation; either version 2 of the License, or (at your 15 + * option) any later version. 16 + */ 17 + #ifndef __NEC_VR41XX_IRQ_H 18 + #define __NEC_VR41XX_IRQ_H 19 + 20 + /* 21 + * CPU core Interrupt Numbers 22 + */ 23 + #define MIPS_CPU_IRQ_BASE 0 24 + #define MIPS_CPU_IRQ(x) (MIPS_CPU_IRQ_BASE + (x)) 25 + #define MIPS_SOFTINT0_IRQ MIPS_CPU_IRQ(0) 26 + #define MIPS_SOFTINT1_IRQ MIPS_CPU_IRQ(1) 27 + #define INT0_IRQ MIPS_CPU_IRQ(2) 28 + #define INT1_IRQ MIPS_CPU_IRQ(3) 29 + #define INT2_IRQ MIPS_CPU_IRQ(4) 30 + #define INT3_IRQ MIPS_CPU_IRQ(5) 31 + #define INT4_IRQ MIPS_CPU_IRQ(6) 32 + #define TIMER_IRQ MIPS_CPU_IRQ(7) 33 + 34 + /* 35 + * SYINT1 Interrupt Numbers 36 + */ 37 + #define SYSINT1_IRQ_BASE 8 38 + #define SYSINT1_IRQ(x) (SYSINT1_IRQ_BASE + (x)) 39 + #define BATTRY_IRQ SYSINT1_IRQ(0) 40 + #define POWER_IRQ SYSINT1_IRQ(1) 41 + #define RTCLONG1_IRQ SYSINT1_IRQ(2) 42 + #define ELAPSEDTIME_IRQ SYSINT1_IRQ(3) 43 + /* RFU */ 44 + #define PIU_IRQ SYSINT1_IRQ(5) 45 + #define AIU_IRQ SYSINT1_IRQ(6) 46 + #define KIU_IRQ SYSINT1_IRQ(7) 47 + #define GIUINT_IRQ SYSINT1_IRQ(8) 48 + #define SIU_IRQ SYSINT1_IRQ(9) 49 + #define BUSERR_IRQ SYSINT1_IRQ(10) 50 + #define SOFTINT_IRQ SYSINT1_IRQ(11) 51 + #define CLKRUN_IRQ SYSINT1_IRQ(12) 52 + #define DOZEPIU_IRQ SYSINT1_IRQ(13) 53 + #define SYSINT1_IRQ_LAST DOZEPIU_IRQ 54 + 55 + /* 56 + * SYSINT2 Interrupt Numbers 57 + */ 58 + #define SYSINT2_IRQ_BASE 24 59 + #define SYSINT2_IRQ(x) (SYSINT2_IRQ_BASE + (x)) 60 + #define RTCLONG2_IRQ SYSINT2_IRQ(0) 61 + #define LED_IRQ SYSINT2_IRQ(1) 62 + #define HSP_IRQ SYSINT2_IRQ(2) 63 + #define TCLOCK_IRQ SYSINT2_IRQ(3) 64 + #define FIR_IRQ SYSINT2_IRQ(4) 65 + #define CEU_IRQ SYSINT2_IRQ(4) /* same number as FIR_IRQ */ 66 + #define DSIU_IRQ SYSINT2_IRQ(5) 67 + #define PCI_IRQ SYSINT2_IRQ(6) 68 + #define SCU_IRQ SYSINT2_IRQ(7) 69 + #define CSI_IRQ SYSINT2_IRQ(8) 70 + #define BCU_IRQ SYSINT2_IRQ(9) 71 + #define ETHERNET_IRQ SYSINT2_IRQ(10) 72 + #define SYSINT2_IRQ_LAST ETHERNET_IRQ 73 + 74 + /* 75 + * GIU Interrupt Numbers 76 + */ 77 + #define GIU_IRQ_BASE 40 78 + #define GIU_IRQ(x) (GIU_IRQ_BASE + (x)) /* IRQ 40-71 */ 79 + #define GIU_IRQ_LAST GIU_IRQ(31) 80 + 81 + /* 82 + * VRC4173 Interrupt Numbers 83 + */ 84 + #define VRC4173_IRQ_BASE 72 85 + #define VRC4173_IRQ(x) (VRC4173_IRQ_BASE + (x)) 86 + #define VRC4173_USB_IRQ VRC4173_IRQ(0) 87 + #define VRC4173_PCMCIA2_IRQ VRC4173_IRQ(1) 88 + #define VRC4173_PCMCIA1_IRQ VRC4173_IRQ(2) 89 + #define VRC4173_PS2CH2_IRQ VRC4173_IRQ(3) 90 + #define VRC4173_PS2CH1_IRQ VRC4173_IRQ(4) 91 + #define VRC4173_PIU_IRQ VRC4173_IRQ(5) 92 + #define VRC4173_AIU_IRQ VRC4173_IRQ(6) 93 + #define VRC4173_KIU_IRQ VRC4173_IRQ(7) 94 + #define VRC4173_GIU_IRQ VRC4173_IRQ(8) 95 + #define VRC4173_AC97_IRQ VRC4173_IRQ(9) 96 + #define VRC4173_AC97INT1_IRQ VRC4173_IRQ(10) 97 + /* RFU */ 98 + #define VRC4173_DOZEPIU_IRQ VRC4173_IRQ(13) 99 + #define VRC4173_IRQ_LAST VRC4173_DOZEPIU_IRQ 100 + 101 + #endif /* __NEC_VR41XX_IRQ_H */
+1 -1
include/asm-mips/vr41xx/mpc30x.h
··· 20 20 #ifndef __VICTOR_MPC30X_H 21 21 #define __VICTOR_MPC30X_H 22 22 23 - #include <asm/vr41xx/vr41xx.h> 23 + #include <asm/vr41xx/irq.h> 24 24 25 25 /* 26 26 * General-Purpose I/O Pin Number
+1 -1
include/asm-mips/vr41xx/tb0219.h
··· 23 23 #ifndef __TANBAC_TB0219_H 24 24 #define __TANBAC_TB0219_H 25 25 26 - #include <asm/vr41xx/vr41xx.h> 26 + #include <asm/vr41xx/irq.h> 27 27 28 28 /* 29 29 * General-Purpose I/O Pin Number
+1 -1
include/asm-mips/vr41xx/tb0226.h
··· 20 20 #ifndef __TANBAC_TB0226_H 21 21 #define __TANBAC_TB0226_H 22 22 23 - #include <asm/vr41xx/vr41xx.h> 23 + #include <asm/vr41xx/irq.h> 24 24 25 25 /* 26 26 * General-Purpose I/O Pin Number
+1 -1
include/asm-mips/vr41xx/tb0287.h
··· 22 22 #ifndef __TANBAC_TB0287_H 23 23 #define __TANBAC_TB0287_H 24 24 25 - #include <asm/vr41xx/vr41xx.h> 25 + #include <asm/vr41xx/irq.h> 26 26 27 27 /* 28 28 * General-Purpose I/O Pin Number
-53
include/asm-mips/vr41xx/vr41xx.h
··· 74 74 /* 75 75 * Interrupt Control Unit 76 76 */ 77 - /* CPU core Interrupt Numbers */ 78 - #define MIPS_CPU_IRQ_BASE 0 79 - #define MIPS_CPU_IRQ(x) (MIPS_CPU_IRQ_BASE + (x)) 80 - #define MIPS_SOFTINT0_IRQ MIPS_CPU_IRQ(0) 81 - #define MIPS_SOFTINT1_IRQ MIPS_CPU_IRQ(1) 82 - #define INT0_IRQ MIPS_CPU_IRQ(2) 83 - #define INT1_IRQ MIPS_CPU_IRQ(3) 84 - #define INT2_IRQ MIPS_CPU_IRQ(4) 85 - #define INT3_IRQ MIPS_CPU_IRQ(5) 86 - #define INT4_IRQ MIPS_CPU_IRQ(6) 87 - #define TIMER_IRQ MIPS_CPU_IRQ(7) 88 - 89 - /* SYINT1 Interrupt Numbers */ 90 - #define SYSINT1_IRQ_BASE 8 91 - #define SYSINT1_IRQ(x) (SYSINT1_IRQ_BASE + (x)) 92 - #define BATTRY_IRQ SYSINT1_IRQ(0) 93 - #define POWER_IRQ SYSINT1_IRQ(1) 94 - #define RTCLONG1_IRQ SYSINT1_IRQ(2) 95 - #define ELAPSEDTIME_IRQ SYSINT1_IRQ(3) 96 - /* RFU */ 97 - #define PIU_IRQ SYSINT1_IRQ(5) 98 - #define AIU_IRQ SYSINT1_IRQ(6) 99 - #define KIU_IRQ SYSINT1_IRQ(7) 100 - #define GIUINT_IRQ SYSINT1_IRQ(8) 101 - #define SIU_IRQ SYSINT1_IRQ(9) 102 - #define BUSERR_IRQ SYSINT1_IRQ(10) 103 - #define SOFTINT_IRQ SYSINT1_IRQ(11) 104 - #define CLKRUN_IRQ SYSINT1_IRQ(12) 105 - #define DOZEPIU_IRQ SYSINT1_IRQ(13) 106 - #define SYSINT1_IRQ_LAST DOZEPIU_IRQ 107 - 108 - /* SYSINT2 Interrupt Numbers */ 109 - #define SYSINT2_IRQ_BASE 24 110 - #define SYSINT2_IRQ(x) (SYSINT2_IRQ_BASE + (x)) 111 - #define RTCLONG2_IRQ SYSINT2_IRQ(0) 112 - #define LED_IRQ SYSINT2_IRQ(1) 113 - #define HSP_IRQ SYSINT2_IRQ(2) 114 - #define TCLOCK_IRQ SYSINT2_IRQ(3) 115 - #define FIR_IRQ SYSINT2_IRQ(4) 116 - #define CEU_IRQ SYSINT2_IRQ(4) /* same number as FIR_IRQ */ 117 - #define DSIU_IRQ SYSINT2_IRQ(5) 118 - #define PCI_IRQ SYSINT2_IRQ(6) 119 - #define SCU_IRQ SYSINT2_IRQ(7) 120 - #define CSI_IRQ SYSINT2_IRQ(8) 121 - #define BCU_IRQ SYSINT2_IRQ(9) 122 - #define ETHERNET_IRQ SYSINT2_IRQ(10) 123 - #define SYSINT2_IRQ_LAST ETHERNET_IRQ 124 - 125 - /* GIU Interrupt Numbers */ 126 - #define GIU_IRQ_BASE 40 127 - #define GIU_IRQ(x) (GIU_IRQ_BASE + (x)) /* IRQ 40-71 */ 128 - #define GIU_IRQ_LAST GIU_IRQ(31) 129 - 130 77 extern int vr41xx_set_intassign(unsigned int irq, unsigned char intassign); 131 78 extern int cascade_irq(unsigned int irq, int (*get_irq)(unsigned int, struct pt_regs *)); 132 79
-221
include/asm-mips/vr41xx/vrc4173.h
··· 1 - /* 2 - * vrc4173.h, Include file for NEC VRC4173. 3 - * 4 - * Copyright (C) 2000 Michael R. McDonald 5 - * Copyright (C) 2001-2003 Montavista Software Inc. 6 - * Author: Yoichi Yuasa <yyuasa@mvista.com, or source@mvista.com> 7 - * Copyright (C) 2004 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> 8 - * Copyright (C) 2005 Ralf Baechle (ralf@linux-mips.org) 9 - * 10 - * This program is free software; you can redistribute it and/or modify 11 - * it under the terms of the GNU General Public License as published by 12 - * the Free Software Foundation; either version 2 of the License, or 13 - * (at your option) any later version. 14 - * 15 - * This program is distributed in the hope that it will be useful, 16 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 - * GNU General Public License for more details. 19 - * 20 - * You should have received a copy of the GNU General Public License 21 - * along with this program; if not, write to the Free Software 22 - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 23 - */ 24 - #ifndef __NEC_VRC4173_H 25 - #define __NEC_VRC4173_H 26 - 27 - #include <asm/io.h> 28 - 29 - /* 30 - * Interrupt Number 31 - */ 32 - #define VRC4173_IRQ_BASE 72 33 - #define VRC4173_IRQ(x) (VRC4173_IRQ_BASE + (x)) 34 - #define VRC4173_USB_IRQ VRC4173_IRQ(0) 35 - #define VRC4173_PCMCIA2_IRQ VRC4173_IRQ(1) 36 - #define VRC4173_PCMCIA1_IRQ VRC4173_IRQ(2) 37 - #define VRC4173_PS2CH2_IRQ VRC4173_IRQ(3) 38 - #define VRC4173_PS2CH1_IRQ VRC4173_IRQ(4) 39 - #define VRC4173_PIU_IRQ VRC4173_IRQ(5) 40 - #define VRC4173_AIU_IRQ VRC4173_IRQ(6) 41 - #define VRC4173_KIU_IRQ VRC4173_IRQ(7) 42 - #define VRC4173_GIU_IRQ VRC4173_IRQ(8) 43 - #define VRC4173_AC97_IRQ VRC4173_IRQ(9) 44 - #define VRC4173_AC97INT1_IRQ VRC4173_IRQ(10) 45 - /* RFU */ 46 - #define VRC4173_DOZEPIU_IRQ VRC4173_IRQ(13) 47 - #define VRC4173_IRQ_LAST VRC4173_DOZEPIU_IRQ 48 - 49 - /* 50 - * PCI I/O accesses 51 - */ 52 - #ifdef CONFIG_VRC4173 53 - 54 - extern unsigned long vrc4173_io_offset; 55 - 56 - #define set_vrc4173_io_offset(offset) do { vrc4173_io_offset = (offset); } while (0) 57 - 58 - #define vrc4173_outb(val,port) outb((val), vrc4173_io_offset+(port)) 59 - #define vrc4173_outw(val,port) outw((val), vrc4173_io_offset+(port)) 60 - #define vrc4173_outl(val,port) outl((val), vrc4173_io_offset+(port)) 61 - #define vrc4173_outb_p(val,port) outb_p((val), vrc4173_io_offset+(port)) 62 - #define vrc4173_outw_p(val,port) outw_p((val), vrc4173_io_offset+(port)) 63 - #define vrc4173_outl_p(val,port) outl_p((val), vrc4173_io_offset+(port)) 64 - 65 - #define vrc4173_inb(port) inb(vrc4173_io_offset+(port)) 66 - #define vrc4173_inw(port) inw(vrc4173_io_offset+(port)) 67 - #define vrc4173_inl(port) inl(vrc4173_io_offset+(port)) 68 - #define vrc4173_inb_p(port) inb_p(vrc4173_io_offset+(port)) 69 - #define vrc4173_inw_p(port) inw_p(vrc4173_io_offset+(port)) 70 - #define vrc4173_inl_p(port) inl_p(vrc4173_io_offset+(port)) 71 - 72 - #define vrc4173_outsb(port,addr,count) outsb(vrc4173_io_offset+(port),(addr),(count)) 73 - #define vrc4173_outsw(port,addr,count) outsw(vrc4173_io_offset+(port),(addr),(count)) 74 - #define vrc4173_outsl(port,addr,count) outsl(vrc4173_io_offset+(port),(addr),(count)) 75 - 76 - #define vrc4173_insb(port,addr,count) insb(vrc4173_io_offset+(port),(addr),(count)) 77 - #define vrc4173_insw(port,addr,count) insw(vrc4173_io_offset+(port),(addr),(count)) 78 - #define vrc4173_insl(port,addr,count) insl(vrc4173_io_offset+(port),(addr),(count)) 79 - 80 - #else 81 - 82 - #define set_vrc4173_io_offset(offset) do {} while (0) 83 - 84 - #define vrc4173_outb(val,port) do {} while (0) 85 - #define vrc4173_outw(val,port) do {} while (0) 86 - #define vrc4173_outl(val,port) do {} while (0) 87 - #define vrc4173_outb_p(val,port) do {} while (0) 88 - #define vrc4173_outw_p(val,port) do {} while (0) 89 - #define vrc4173_outl_p(val,port) do {} while (0) 90 - 91 - #define vrc4173_inb(port) 0 92 - #define vrc4173_inw(port) 0 93 - #define vrc4173_inl(port) 0 94 - #define vrc4173_inb_p(port) 0 95 - #define vrc4173_inw_p(port) 0 96 - #define vrc4173_inl_p(port) 0 97 - 98 - #define vrc4173_outsb(port,addr,count) do {} while (0) 99 - #define vrc4173_outsw(port,addr,count) do {} while (0) 100 - #define vrc4173_outsl(port,addr,count) do {} while (0) 101 - 102 - #define vrc4173_insb(port,addr,count) do {} while (0) 103 - #define vrc4173_insw(port,addr,count) do {} while (0) 104 - #define vrc4173_insl(port,addr,count) do {} while (0) 105 - 106 - #endif 107 - 108 - /* 109 - * Clock Mask Unit 110 - */ 111 - typedef enum vrc4173_clock { 112 - VRC4173_PIU_CLOCK, 113 - VRC4173_KIU_CLOCK, 114 - VRC4173_AIU_CLOCK, 115 - VRC4173_PS2_CH1_CLOCK, 116 - VRC4173_PS2_CH2_CLOCK, 117 - VRC4173_USBU_PCI_CLOCK, 118 - VRC4173_CARDU1_PCI_CLOCK, 119 - VRC4173_CARDU2_PCI_CLOCK, 120 - VRC4173_AC97U_PCI_CLOCK, 121 - VRC4173_USBU_48MHz_CLOCK, 122 - VRC4173_EXT_48MHz_CLOCK, 123 - VRC4173_48MHz_CLOCK, 124 - } vrc4173_clock_t; 125 - 126 - #ifdef CONFIG_VRC4173 127 - 128 - extern void vrc4173_supply_clock(vrc4173_clock_t clock); 129 - extern void vrc4173_mask_clock(vrc4173_clock_t clock); 130 - 131 - #else 132 - 133 - static inline void vrc4173_supply_clock(vrc4173_clock_t clock) {} 134 - static inline void vrc4173_mask_clock(vrc4173_clock_t clock) {} 135 - 136 - #endif 137 - 138 - /* 139 - * Interupt Control Unit 140 - */ 141 - 142 - #define VRC4173_PIUINT_COMMAND 0x0040 143 - #define VRC4173_PIUINT_DATA 0x0020 144 - #define VRC4173_PIUINT_PAGE1 0x0010 145 - #define VRC4173_PIUINT_PAGE0 0x0008 146 - #define VRC4173_PIUINT_DATALOST 0x0004 147 - #define VRC4173_PIUINT_STATUSCHANGE 0x0001 148 - 149 - #ifdef CONFIG_VRC4173 150 - 151 - extern void vrc4173_enable_piuint(uint16_t mask); 152 - extern void vrc4173_disable_piuint(uint16_t mask); 153 - 154 - #else 155 - 156 - static inline void vrc4173_enable_piuint(uint16_t mask) {} 157 - static inline void vrc4173_disable_piuint(uint16_t mask) {} 158 - 159 - #endif 160 - 161 - #define VRC4173_AIUINT_INPUT_DMAEND 0x0800 162 - #define VRC4173_AIUINT_INPUT_DMAHALT 0x0400 163 - #define VRC4173_AIUINT_INPUT_DATALOST 0x0200 164 - #define VRC4173_AIUINT_INPUT_DATA 0x0100 165 - #define VRC4173_AIUINT_OUTPUT_DMAEND 0x0008 166 - #define VRC4173_AIUINT_OUTPUT_DMAHALT 0x0004 167 - #define VRC4173_AIUINT_OUTPUT_NODATA 0x0002 168 - 169 - #ifdef CONFIG_VRC4173 170 - 171 - extern void vrc4173_enable_aiuint(uint16_t mask); 172 - extern void vrc4173_disable_aiuint(uint16_t mask); 173 - 174 - #else 175 - 176 - static inline void vrc4173_enable_aiuint(uint16_t mask) {} 177 - static inline void vrc4173_disable_aiuint(uint16_t mask) {} 178 - 179 - #endif 180 - 181 - #define VRC4173_KIUINT_DATALOST 0x0004 182 - #define VRC4173_KIUINT_DATAREADY 0x0002 183 - #define VRC4173_KIUINT_SCAN 0x0001 184 - 185 - #ifdef CONFIG_VRC4173 186 - 187 - extern void vrc4173_enable_kiuint(uint16_t mask); 188 - extern void vrc4173_disable_kiuint(uint16_t mask); 189 - 190 - #else 191 - 192 - static inline void vrc4173_enable_kiuint(uint16_t mask) {} 193 - static inline void vrc4173_disable_kiuint(uint16_t mask) {} 194 - 195 - #endif 196 - 197 - /* 198 - * General-Purpose I/O Unit 199 - */ 200 - typedef enum vrc4173_function { 201 - PS2_CHANNEL1, 202 - PS2_CHANNEL2, 203 - TOUCHPANEL, 204 - KEYBOARD_8SCANLINES, 205 - KEYBOARD_10SCANLINES, 206 - KEYBOARD_12SCANLINES, 207 - GPIO_0_15PINS, 208 - GPIO_16_20PINS, 209 - } vrc4173_function_t; 210 - 211 - #ifdef CONFIG_VRC4173 212 - 213 - extern void vrc4173_select_function(vrc4173_function_t function); 214 - 215 - #else 216 - 217 - static inline void vrc4173_select_function(vrc4173_function_t function) {} 218 - 219 - #endif 220 - 221 - #endif /* __NEC_VRC4173_H */
-43
include/asm-mips/vr41xx/workpad.h
··· 1 - /* 2 - * workpad.h, Include file for IBM WorkPad z50. 3 - * 4 - * Copyright (C) 2002-2004 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> 5 - * 6 - * This program is free software; you can redistribute it and/or modify 7 - * it under the terms of the GNU General Public License as published by 8 - * the Free Software Foundation; either version 2 of the License, or 9 - * (at your option) any later version. 10 - * 11 - * This program is distributed in the hope that it will be useful, 12 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 - * GNU General Public License for more details. 15 - * 16 - * You should have received a copy of the GNU General Public License 17 - * along with this program; if not, write to the Free Software 18 - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 19 - */ 20 - #ifndef __IBM_WORKPAD_H 21 - #define __IBM_WORKPAD_H 22 - 23 - #include <asm/addrspace.h> 24 - #include <asm/vr41xx/vr41xx.h> 25 - 26 - /* 27 - * Board specific address mapping 28 - */ 29 - #define VR41XX_ISA_MEM_BASE 0x10000000 30 - #define VR41XX_ISA_MEM_SIZE 0x04000000 31 - 32 - /* VR41XX_ISA_IO_BASE includes offset from real base. */ 33 - #define VR41XX_ISA_IO_BASE 0x15000000 34 - #define VR41XX_ISA_IO_SIZE 0x03000000 35 - 36 - #define ISA_BUS_IO_BASE 0 37 - #define ISA_BUS_IO_SIZE VR41XX_ISA_IO_SIZE 38 - 39 - #define IO_PORT_BASE KSEG1ADDR(VR41XX_ISA_IO_BASE) 40 - #define IO_PORT_RESOURCE_START ISA_BUS_IO_BASE 41 - #define IO_PORT_RESOURCE_END (ISA_BUS_IO_BASE + ISA_BUS_IO_SIZE - 1) 42 - 43 - #endif /* __IBM_WORKPAD_H */