diff options
| author | Russell King <rmk+kernel@arm.linux.org.uk> | 2010-02-25 15:41:34 -0500 |
|---|---|---|
| committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2010-02-25 15:41:34 -0500 |
| commit | 2a2d10f386c1bacabe1a530c06dc8488eac419e5 (patch) | |
| tree | 4606a4a3bafa42a8aa70e001d35883956a0f0589 /arch | |
| parent | 2f68ffd11aa76b251921976c982b814df9ebe890 (diff) | |
| parent | c499546f43f2c31b681271ef7db922839fcde5fe (diff) | |
Merge branch 'for-rmk' of git://git.marvell.com/orion into devel-stable
Diffstat (limited to 'arch')
53 files changed, 1616 insertions, 294 deletions
diff --git a/arch/arm/configs/mv78xx0_defconfig b/arch/arm/configs/mv78xx0_defconfig index 6afa2c108eaa..da4710dd1da1 100644 --- a/arch/arm/configs/mv78xx0_defconfig +++ b/arch/arm/configs/mv78xx0_defconfig | |||
| @@ -176,6 +176,7 @@ CONFIG_ARCH_MV78XX0=y | |||
| 176 | # | 176 | # |
| 177 | CONFIG_MACH_DB78X00_BP=y | 177 | CONFIG_MACH_DB78X00_BP=y |
| 178 | CONFIG_MACH_RD78X00_MASA=y | 178 | CONFIG_MACH_RD78X00_MASA=y |
| 179 | CONFIG_MACH_TERASTATION_WXL=y | ||
| 179 | CONFIG_PLAT_ORION=y | 180 | CONFIG_PLAT_ORION=y |
| 180 | 181 | ||
| 181 | # | 182 | # |
diff --git a/arch/arm/include/asm/cacheflush.h b/arch/arm/include/asm/cacheflush.h index c77d2fa1f6e5..8113bb5fb66e 100644 --- a/arch/arm/include/asm/cacheflush.h +++ b/arch/arm/include/asm/cacheflush.h | |||
| @@ -42,7 +42,8 @@ | |||
| 42 | #endif | 42 | #endif |
| 43 | 43 | ||
| 44 | #if defined(CONFIG_CPU_ARM920T) || defined(CONFIG_CPU_ARM922T) || \ | 44 | #if defined(CONFIG_CPU_ARM920T) || defined(CONFIG_CPU_ARM922T) || \ |
| 45 | defined(CONFIG_CPU_ARM925T) || defined(CONFIG_CPU_ARM1020) | 45 | defined(CONFIG_CPU_ARM925T) || defined(CONFIG_CPU_ARM1020) || \ |
| 46 | defined(CONFIG_CPU_ARM1026) | ||
| 46 | # define MULTI_CACHE 1 | 47 | # define MULTI_CACHE 1 |
| 47 | #endif | 48 | #endif |
| 48 | 49 | ||
diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c index c6c57b640b6b..621acad8ea43 100644 --- a/arch/arm/kernel/setup.c +++ b/arch/arm/kernel/setup.c | |||
| @@ -102,6 +102,7 @@ struct cpu_cache_fns cpu_cache; | |||
| 102 | #endif | 102 | #endif |
| 103 | #ifdef CONFIG_OUTER_CACHE | 103 | #ifdef CONFIG_OUTER_CACHE |
| 104 | struct outer_cache_fns outer_cache; | 104 | struct outer_cache_fns outer_cache; |
| 105 | EXPORT_SYMBOL(outer_cache); | ||
| 105 | #endif | 106 | #endif |
| 106 | 107 | ||
| 107 | struct stack { | 108 | struct stack { |
diff --git a/arch/arm/mach-gemini/gpio.c b/arch/arm/mach-gemini/gpio.c index e7263854bc7b..fe3bd5ac8b10 100644 --- a/arch/arm/mach-gemini/gpio.c +++ b/arch/arm/mach-gemini/gpio.c | |||
| @@ -86,7 +86,7 @@ static int gpio_set_irq_type(unsigned int irq, unsigned int type) | |||
| 86 | unsigned int reg_both, reg_level, reg_type; | 86 | unsigned int reg_both, reg_level, reg_type; |
| 87 | 87 | ||
| 88 | reg_type = __raw_readl(base + GPIO_INT_TYPE); | 88 | reg_type = __raw_readl(base + GPIO_INT_TYPE); |
| 89 | reg_level = __raw_readl(base + GPIO_INT_BOTH_EDGE); | 89 | reg_level = __raw_readl(base + GPIO_INT_LEVEL); |
| 90 | reg_both = __raw_readl(base + GPIO_INT_BOTH_EDGE); | 90 | reg_both = __raw_readl(base + GPIO_INT_BOTH_EDGE); |
| 91 | 91 | ||
| 92 | switch (type) { | 92 | switch (type) { |
| @@ -117,7 +117,7 @@ static int gpio_set_irq_type(unsigned int irq, unsigned int type) | |||
| 117 | } | 117 | } |
| 118 | 118 | ||
| 119 | __raw_writel(reg_type, base + GPIO_INT_TYPE); | 119 | __raw_writel(reg_type, base + GPIO_INT_TYPE); |
| 120 | __raw_writel(reg_level, base + GPIO_INT_BOTH_EDGE); | 120 | __raw_writel(reg_level, base + GPIO_INT_LEVEL); |
| 121 | __raw_writel(reg_both, base + GPIO_INT_BOTH_EDGE); | 121 | __raw_writel(reg_both, base + GPIO_INT_BOTH_EDGE); |
| 122 | 122 | ||
| 123 | gpio_ack_irq(irq); | 123 | gpio_ack_irq(irq); |
diff --git a/arch/arm/mach-kirkwood/Kconfig b/arch/arm/mach-kirkwood/Kconfig index edc9aeb6e6b2..17879a876be6 100644 --- a/arch/arm/mach-kirkwood/Kconfig +++ b/arch/arm/mach-kirkwood/Kconfig | |||
| @@ -32,6 +32,12 @@ config MACH_SHEEVAPLUG | |||
| 32 | Say 'Y' here if you want your kernel to support the | 32 | Say 'Y' here if you want your kernel to support the |
| 33 | Marvell SheevaPlug Reference Board. | 33 | Marvell SheevaPlug Reference Board. |
| 34 | 34 | ||
| 35 | config MACH_ESATA_SHEEVAPLUG | ||
| 36 | bool "Marvell eSATA SheevaPlug Reference Board" | ||
| 37 | help | ||
| 38 | Say 'Y' here if you want your kernel to support the | ||
| 39 | Marvell eSATA SheevaPlug Reference Board. | ||
| 40 | |||
| 35 | config MACH_TS219 | 41 | config MACH_TS219 |
| 36 | bool "QNAP TS-110, TS-119, TS-210, TS-219 and TS-219P Turbo NAS" | 42 | bool "QNAP TS-110, TS-119, TS-210, TS-219 and TS-219P Turbo NAS" |
| 37 | help | 43 | help |
diff --git a/arch/arm/mach-kirkwood/Makefile b/arch/arm/mach-kirkwood/Makefile index 55b4ccf3729b..a5530e36ba3e 100644 --- a/arch/arm/mach-kirkwood/Makefile +++ b/arch/arm/mach-kirkwood/Makefile | |||
| @@ -5,6 +5,7 @@ obj-$(CONFIG_MACH_RD88F6192_NAS) += rd88f6192-nas-setup.o | |||
| 5 | obj-$(CONFIG_MACH_RD88F6281) += rd88f6281-setup.o | 5 | obj-$(CONFIG_MACH_RD88F6281) += rd88f6281-setup.o |
| 6 | obj-$(CONFIG_MACH_MV88F6281GTW_GE) += mv88f6281gtw_ge-setup.o | 6 | obj-$(CONFIG_MACH_MV88F6281GTW_GE) += mv88f6281gtw_ge-setup.o |
| 7 | obj-$(CONFIG_MACH_SHEEVAPLUG) += sheevaplug-setup.o | 7 | obj-$(CONFIG_MACH_SHEEVAPLUG) += sheevaplug-setup.o |
| 8 | obj-$(CONFIG_MACH_ESATA_SHEEVAPLUG) += sheevaplug-setup.o | ||
| 8 | obj-$(CONFIG_MACH_TS219) += ts219-setup.o tsx1x-common.o | 9 | obj-$(CONFIG_MACH_TS219) += ts219-setup.o tsx1x-common.o |
| 9 | obj-$(CONFIG_MACH_TS41X) += ts41x-setup.o tsx1x-common.o | 10 | obj-$(CONFIG_MACH_TS41X) += ts41x-setup.o tsx1x-common.o |
| 10 | obj-$(CONFIG_MACH_OPENRD) += openrd-setup.o | 11 | obj-$(CONFIG_MACH_OPENRD) += openrd-setup.o |
diff --git a/arch/arm/mach-kirkwood/sheevaplug-setup.c b/arch/arm/mach-kirkwood/sheevaplug-setup.c index c7319eeac8bb..a00879d34d54 100644 --- a/arch/arm/mach-kirkwood/sheevaplug-setup.c +++ b/arch/arm/mach-kirkwood/sheevaplug-setup.c | |||
| @@ -11,6 +11,7 @@ | |||
| 11 | #include <linux/kernel.h> | 11 | #include <linux/kernel.h> |
| 12 | #include <linux/init.h> | 12 | #include <linux/init.h> |
| 13 | #include <linux/platform_device.h> | 13 | #include <linux/platform_device.h> |
| 14 | #include <linux/ata_platform.h> | ||
| 14 | #include <linux/mtd/partitions.h> | 15 | #include <linux/mtd/partitions.h> |
| 15 | #include <linux/mv643xx_eth.h> | 16 | #include <linux/mv643xx_eth.h> |
| 16 | #include <linux/gpio.h> | 17 | #include <linux/gpio.h> |
| @@ -42,10 +43,19 @@ static struct mv643xx_eth_platform_data sheevaplug_ge00_data = { | |||
| 42 | .phy_addr = MV643XX_ETH_PHY_ADDR(0), | 43 | .phy_addr = MV643XX_ETH_PHY_ADDR(0), |
| 43 | }; | 44 | }; |
| 44 | 45 | ||
| 46 | static struct mv_sata_platform_data sheeva_esata_sata_data = { | ||
| 47 | .n_ports = 2, | ||
| 48 | }; | ||
| 49 | |||
| 45 | static struct mvsdio_platform_data sheevaplug_mvsdio_data = { | 50 | static struct mvsdio_platform_data sheevaplug_mvsdio_data = { |
| 46 | /* unfortunately the CD signal has not been connected */ | 51 | /* unfortunately the CD signal has not been connected */ |
| 47 | }; | 52 | }; |
| 48 | 53 | ||
| 54 | static struct mvsdio_platform_data sheeva_esata_mvsdio_data = { | ||
| 55 | .gpio_write_protect = 44, /* MPP44 used as SD write protect */ | ||
| 56 | .gpio_card_detect = 47, /* MPP47 used as SD card detect */ | ||
| 57 | }; | ||
| 58 | |||
| 49 | static struct gpio_led sheevaplug_led_pins[] = { | 59 | static struct gpio_led sheevaplug_led_pins[] = { |
| 50 | { | 60 | { |
| 51 | .name = "plug:green:health", | 61 | .name = "plug:green:health", |
| @@ -74,13 +84,26 @@ static unsigned int sheevaplug_mpp_config[] __initdata = { | |||
| 74 | 0 | 84 | 0 |
| 75 | }; | 85 | }; |
| 76 | 86 | ||
| 87 | static unsigned int sheeva_esata_mpp_config[] __initdata = { | ||
| 88 | MPP29_GPIO, /* USB Power Enable */ | ||
| 89 | MPP44_GPIO, /* SD Write Protect */ | ||
| 90 | MPP47_GPIO, /* SD Card Detect */ | ||
| 91 | MPP49_GPIO, /* LED Green */ | ||
| 92 | 0 | ||
| 93 | }; | ||
| 94 | |||
| 77 | static void __init sheevaplug_init(void) | 95 | static void __init sheevaplug_init(void) |
| 78 | { | 96 | { |
| 79 | /* | 97 | /* |
| 80 | * Basic setup. Needs to be called early. | 98 | * Basic setup. Needs to be called early. |
| 81 | */ | 99 | */ |
| 82 | kirkwood_init(); | 100 | kirkwood_init(); |
| 83 | kirkwood_mpp_conf(sheevaplug_mpp_config); | 101 | |
| 102 | /* setup gpio pin select */ | ||
| 103 | if (machine_is_sheeva_esata()) | ||
| 104 | kirkwood_mpp_conf(sheeva_esata_mpp_config); | ||
| 105 | else | ||
| 106 | kirkwood_mpp_conf(sheevaplug_mpp_config); | ||
| 84 | 107 | ||
| 85 | kirkwood_uart0_init(); | 108 | kirkwood_uart0_init(); |
| 86 | kirkwood_nand_init(ARRAY_AND_SIZE(sheevaplug_nand_parts), 25); | 109 | kirkwood_nand_init(ARRAY_AND_SIZE(sheevaplug_nand_parts), 25); |
| @@ -91,11 +114,21 @@ static void __init sheevaplug_init(void) | |||
| 91 | kirkwood_ehci_init(); | 114 | kirkwood_ehci_init(); |
| 92 | 115 | ||
| 93 | kirkwood_ge00_init(&sheevaplug_ge00_data); | 116 | kirkwood_ge00_init(&sheevaplug_ge00_data); |
| 94 | kirkwood_sdio_init(&sheevaplug_mvsdio_data); | 117 | |
| 118 | /* honor lower power consumption for plugs with out eSATA */ | ||
| 119 | if (machine_is_sheeva_esata()) | ||
| 120 | kirkwood_sata_init(&sheeva_esata_sata_data); | ||
| 121 | |||
| 122 | /* enable sd wp and sd cd on plugs with esata */ | ||
| 123 | if (machine_is_sheeva_esata()) | ||
| 124 | kirkwood_sdio_init(&sheeva_esata_mvsdio_data); | ||
| 125 | else | ||
| 126 | kirkwood_sdio_init(&sheevaplug_mvsdio_data); | ||
| 95 | 127 | ||
| 96 | platform_device_register(&sheevaplug_leds); | 128 | platform_device_register(&sheevaplug_leds); |
| 97 | } | 129 | } |
| 98 | 130 | ||
| 131 | #ifdef CONFIG_MACH_SHEEVAPLUG | ||
| 99 | MACHINE_START(SHEEVAPLUG, "Marvell SheevaPlug Reference Board") | 132 | MACHINE_START(SHEEVAPLUG, "Marvell SheevaPlug Reference Board") |
| 100 | /* Maintainer: shadi Ammouri <shadi@marvell.com> */ | 133 | /* Maintainer: shadi Ammouri <shadi@marvell.com> */ |
| 101 | .phys_io = KIRKWOOD_REGS_PHYS_BASE, | 134 | .phys_io = KIRKWOOD_REGS_PHYS_BASE, |
| @@ -106,3 +139,16 @@ MACHINE_START(SHEEVAPLUG, "Marvell SheevaPlug Reference Board") | |||
| 106 | .init_irq = kirkwood_init_irq, | 139 | .init_irq = kirkwood_init_irq, |
| 107 | .timer = &kirkwood_timer, | 140 | .timer = &kirkwood_timer, |
| 108 | MACHINE_END | 141 | MACHINE_END |
| 142 | #endif | ||
| 143 | |||
| 144 | #ifdef CONFIG_MACH_ESATA_SHEEVAPLUG | ||
| 145 | MACHINE_START(ESATA_SHEEVAPLUG, "Marvell eSATA SheevaPlug Reference Board") | ||
| 146 | .phys_io = KIRKWOOD_REGS_PHYS_BASE, | ||
| 147 | .io_pg_offst = ((KIRKWOOD_REGS_VIRT_BASE) >> 18) & 0xfffc, | ||
| 148 | .boot_params = 0x00000100, | ||
| 149 | .init_machine = sheevaplug_init, | ||
| 150 | .map_io = kirkwood_map_io, | ||
| 151 | .init_irq = kirkwood_init_irq, | ||
| 152 | .timer = &kirkwood_timer, | ||
| 153 | MACHINE_END | ||
| 154 | #endif | ||
diff --git a/arch/arm/mach-mv78xx0/Kconfig b/arch/arm/mach-mv78xx0/Kconfig index 6fbe68fe4412..f2d309d0619e 100644 --- a/arch/arm/mach-mv78xx0/Kconfig +++ b/arch/arm/mach-mv78xx0/Kconfig | |||
| @@ -14,6 +14,12 @@ config MACH_RD78X00_MASA | |||
| 14 | Say 'Y' here if you want your kernel to support the | 14 | Say 'Y' here if you want your kernel to support the |
| 15 | Marvell RD-78x00-mASA Reference Design. | 15 | Marvell RD-78x00-mASA Reference Design. |
| 16 | 16 | ||
| 17 | config MACH_TERASTATION_WXL | ||
| 18 | bool "Buffalo WLX (Terastation Duo) NAS" | ||
| 19 | help | ||
| 20 | Say 'Y' here if you want your kernel to support the | ||
| 21 | Buffalo WXL Nas. | ||
| 22 | |||
| 17 | endmenu | 23 | endmenu |
| 18 | 24 | ||
| 19 | endif | 25 | endif |
diff --git a/arch/arm/mach-mv78xx0/Makefile b/arch/arm/mach-mv78xx0/Makefile index da628b7f3bb6..67a13f9bfe64 100644 --- a/arch/arm/mach-mv78xx0/Makefile +++ b/arch/arm/mach-mv78xx0/Makefile | |||
| @@ -1,3 +1,4 @@ | |||
| 1 | obj-y += common.o addr-map.o irq.o pcie.o | 1 | obj-y += common.o addr-map.o mpp.o irq.o pcie.o |
| 2 | obj-$(CONFIG_MACH_DB78X00_BP) += db78x00-bp-setup.o | 2 | obj-$(CONFIG_MACH_DB78X00_BP) += db78x00-bp-setup.o |
| 3 | obj-$(CONFIG_MACH_RD78X00_MASA) += rd78x00-masa-setup.o | 3 | obj-$(CONFIG_MACH_RD78X00_MASA) += rd78x00-masa-setup.o |
| 4 | obj-$(CONFIG_MACH_TERASTATION_WXL) += buffalo-wxl-setup.o | ||
diff --git a/arch/arm/mach-mv78xx0/buffalo-wxl-setup.c b/arch/arm/mach-mv78xx0/buffalo-wxl-setup.c new file mode 100644 index 000000000000..61e5e583603b --- /dev/null +++ b/arch/arm/mach-mv78xx0/buffalo-wxl-setup.c | |||
| @@ -0,0 +1,155 @@ | |||
| 1 | /* | ||
| 2 | * arch/arm/mach-mv78xx0/buffalo-wxl-setup.c | ||
| 3 | * | ||
| 4 | * Buffalo WXL (Terastation Duo) Setup routines | ||
| 5 | * | ||
| 6 | * sebastien requiem <sebastien@requiem.fr> | ||
| 7 | * | ||
| 8 | * This file is licensed under the terms of the GNU General Public | ||
| 9 | * License version 2. This program is licensed "as is" without any | ||
| 10 | * warranty of any kind, whether express or implied. | ||
| 11 | */ | ||
| 12 | |||
| 13 | #include <linux/kernel.h> | ||
| 14 | #include <linux/init.h> | ||
| 15 | #include <linux/platform_device.h> | ||
| 16 | #include <linux/ata_platform.h> | ||
| 17 | #include <linux/mv643xx_eth.h> | ||
| 18 | #include <linux/ethtool.h> | ||
| 19 | #include <linux/i2c.h> | ||
| 20 | #include <mach/mv78xx0.h> | ||
| 21 | #include <asm/mach-types.h> | ||
| 22 | #include <asm/mach/arch.h> | ||
| 23 | #include "common.h" | ||
| 24 | #include "mpp.h" | ||
| 25 | |||
| 26 | |||
| 27 | /* This arch has 2 Giga Ethernet */ | ||
| 28 | |||
| 29 | static struct mv643xx_eth_platform_data db78x00_ge00_data = { | ||
| 30 | .phy_addr = MV643XX_ETH_PHY_ADDR(0), | ||
| 31 | }; | ||
| 32 | |||
| 33 | static struct mv643xx_eth_platform_data db78x00_ge01_data = { | ||
| 34 | .phy_addr = MV643XX_ETH_PHY_ADDR(8), | ||
| 35 | }; | ||
| 36 | |||
| 37 | |||
| 38 | /* 2 SATA controller supporting HotPlug */ | ||
| 39 | |||
| 40 | static struct mv_sata_platform_data db78x00_sata_data = { | ||
| 41 | .n_ports = 2, | ||
| 42 | }; | ||
| 43 | |||
| 44 | static struct i2c_board_info __initdata db78x00_i2c_rtc = { | ||
| 45 | I2C_BOARD_INFO("ds1338", 0x68), | ||
| 46 | }; | ||
| 47 | |||
| 48 | |||
| 49 | static unsigned int wxl_mpp_config[] __initdata = { | ||
| 50 | MPP0_GE1_TXCLK, | ||
| 51 | MPP1_GE1_TXCTL, | ||
| 52 | MPP2_GE1_RXCTL, | ||
| 53 | MPP3_GE1_RXCLK, | ||
| 54 | MPP4_GE1_TXD0, | ||
| 55 | MPP5_GE1_TXD1, | ||
| 56 | MPP6_GE1_TXD2, | ||
| 57 | MPP7_GE1_TXD3, | ||
| 58 | MPP8_GE1_RXD0, | ||
| 59 | MPP9_GE1_RXD1, | ||
| 60 | MPP10_GE1_RXD2, | ||
| 61 | MPP11_GE1_RXD3, | ||
| 62 | MPP12_GPIO, | ||
| 63 | MPP13_SYSRST_OUTn, | ||
| 64 | MPP14_SATA1_ACTn, | ||
| 65 | MPP15_SATA0_ACTn, | ||
| 66 | MPP16_GPIO, | ||
| 67 | MPP17_GPIO, | ||
| 68 | MPP18_GPIO, | ||
| 69 | MPP19_GPIO, | ||
| 70 | MPP20_GPIO, | ||
| 71 | MPP21_GPIO, | ||
| 72 | MPP22_GPIO, | ||
| 73 | MPP23_GPIO, | ||
| 74 | MPP24_UA2_TXD, | ||
| 75 | MPP25_UA2_RXD, | ||
| 76 | MPP26_UA2_CTSn, | ||
| 77 | MPP27_UA2_RTSn, | ||
| 78 | MPP28_GPIO, | ||
| 79 | MPP29_SYSRST_OUTn, | ||
| 80 | MPP30_GPIO, | ||
| 81 | MPP31_GPIO, | ||
| 82 | MPP32_GPIO, | ||
| 83 | MPP33_GPIO, | ||
| 84 | MPP34_GPIO, | ||
| 85 | MPP35_GPIO, | ||
| 86 | MPP36_GPIO, | ||
| 87 | MPP37_GPIO, | ||
| 88 | MPP38_GPIO, | ||
| 89 | MPP39_GPIO, | ||
| 90 | MPP40_UNUSED, | ||
| 91 | MPP41_UNUSED, | ||
| 92 | MPP42_UNUSED, | ||
| 93 | MPP43_UNUSED, | ||
| 94 | MPP44_UNUSED, | ||
| 95 | MPP45_UNUSED, | ||
| 96 | MPP46_UNUSED, | ||
| 97 | MPP47_UNUSED, | ||
| 98 | MPP48_SATA1_ACTn, | ||
| 99 | MPP49_SATA0_ACTn, | ||
| 100 | 0 | ||
| 101 | }; | ||
| 102 | |||
| 103 | |||
| 104 | static void __init wxl_init(void) | ||
| 105 | { | ||
| 106 | /* | ||
| 107 | * Basic MV78xx0 setup. Needs to be called early. | ||
| 108 | */ | ||
| 109 | mv78xx0_init(); | ||
| 110 | mv78xx0_mpp_conf(wxl_mpp_config); | ||
| 111 | |||
| 112 | /* | ||
| 113 | * Partition on-chip peripherals between the two CPU cores. | ||
| 114 | */ | ||
| 115 | mv78xx0_ehci0_init(); | ||
| 116 | mv78xx0_ehci1_init(); | ||
| 117 | mv78xx0_ehci2_init(); | ||
| 118 | mv78xx0_ge00_init(&db78x00_ge00_data); | ||
| 119 | mv78xx0_ge01_init(&db78x00_ge01_data); | ||
| 120 | mv78xx0_sata_init(&db78x00_sata_data); | ||
| 121 | mv78xx0_uart0_init(); | ||
| 122 | mv78xx0_uart1_init(); | ||
| 123 | mv78xx0_uart2_init(); | ||
| 124 | mv78xx0_uart3_init(); | ||
| 125 | mv78xx0_i2c_init(); | ||
| 126 | i2c_register_board_info(0, &db78x00_i2c_rtc, 1); | ||
| 127 | } | ||
| 128 | |||
| 129 | static int __init wxl_pci_init(void) | ||
| 130 | { | ||
| 131 | if (machine_is_terastation_wxl()) { | ||
| 132 | /* | ||
| 133 | * Assign the x16 PCIe slot on the board to CPU core | ||
| 134 | * #0, and let CPU core #1 have the four x1 slots. | ||
| 135 | */ | ||
| 136 | if (mv78xx0_core_index() == 0) | ||
| 137 | mv78xx0_pcie_init(0, 1); | ||
| 138 | else | ||
| 139 | mv78xx0_pcie_init(1, 0); | ||
| 140 | } | ||
| 141 | |||
| 142 | return 0; | ||
| 143 | } | ||
| 144 | subsys_initcall(wxl_pci_init); | ||
| 145 | |||
| 146 | MACHINE_START(TERASTATION_WXL, "Buffalo Nas WXL") | ||
| 147 | /* Maintainer: Sebastien Requiem <sebastien@requiem.fr> */ | ||
| 148 | .phys_io = MV78XX0_REGS_PHYS_BASE, | ||
| 149 | .io_pg_offst = ((MV78XX0_REGS_VIRT_BASE) >> 18) & 0xfffc, | ||
| 150 | .boot_params = 0x00000100, | ||
| 151 | .init_machine = wxl_init, | ||
| 152 | .map_io = mv78xx0_map_io, | ||
| 153 | .init_irq = mv78xx0_init_irq, | ||
| 154 | .timer = &mv78xx0_timer, | ||
| 155 | MACHINE_END | ||
diff --git a/arch/arm/mach-mv78xx0/mpp.c b/arch/arm/mach-mv78xx0/mpp.c new file mode 100644 index 000000000000..354ac514eb89 --- /dev/null +++ b/arch/arm/mach-mv78xx0/mpp.c | |||
| @@ -0,0 +1,96 @@ | |||
| 1 | /* | ||
| 2 | * arch/arm/mach-mv78x00/mpp.c | ||
| 3 | * | ||
| 4 | * MPP functions for Marvell MV78x00 SoCs | ||
| 5 | * | ||
| 6 | * This file is licensed under the terms of the GNU General Public | ||
| 7 | * License version 2. This program is licensed "as is" without any | ||
| 8 | * warranty of any kind, whether express or implied. | ||
| 9 | */ | ||
| 10 | |||
| 11 | #include <linux/kernel.h> | ||
| 12 | #include <linux/init.h> | ||
| 13 | #include <linux/mbus.h> | ||
| 14 | #include <linux/io.h> | ||
| 15 | #include <asm/gpio.h> | ||
| 16 | #include <mach/hardware.h> | ||
| 17 | #include "common.h" | ||
| 18 | #include "mpp.h" | ||
| 19 | |||
| 20 | static unsigned int __init mv78xx0_variant(void) | ||
| 21 | { | ||
| 22 | u32 dev, rev; | ||
| 23 | |||
| 24 | mv78xx0_pcie_id(&dev, &rev); | ||
| 25 | |||
| 26 | if (dev == MV78100_DEV_ID && rev >= MV78100_REV_A0) | ||
| 27 | return MPP_78100_A0_MASK; | ||
| 28 | |||
| 29 | printk(KERN_ERR "MPP setup: unknown mv78x00 variant " | ||
| 30 | "(dev %#x rev %#x)\n", dev, rev); | ||
| 31 | return 0; | ||
| 32 | } | ||
| 33 | |||
| 34 | #define MPP_CTRL(i) (DEV_BUS_VIRT_BASE + (i) * 4) | ||
| 35 | #define MPP_NR_REGS (1 + MPP_MAX/8) | ||
| 36 | |||
| 37 | void __init mv78xx0_mpp_conf(unsigned int *mpp_list) | ||
| 38 | { | ||
| 39 | u32 mpp_ctrl[MPP_NR_REGS]; | ||
| 40 | unsigned int variant_mask; | ||
| 41 | int i; | ||
| 42 | |||
| 43 | variant_mask = mv78xx0_variant(); | ||
| 44 | if (!variant_mask) | ||
| 45 | return; | ||
| 46 | |||
| 47 | /* Initialize gpiolib. */ | ||
| 48 | orion_gpio_init(); | ||
| 49 | |||
| 50 | printk(KERN_DEBUG "initial MPP regs:"); | ||
| 51 | for (i = 0; i < MPP_NR_REGS; i++) { | ||
| 52 | mpp_ctrl[i] = readl(MPP_CTRL(i)); | ||
| 53 | printk(" %08x", mpp_ctrl[i]); | ||
| 54 | } | ||
| 55 | printk("\n"); | ||
| 56 | |||
| 57 | while (*mpp_list) { | ||
| 58 | unsigned int num = MPP_NUM(*mpp_list); | ||
| 59 | unsigned int sel = MPP_SEL(*mpp_list); | ||
| 60 | int shift, gpio_mode; | ||
| 61 | |||
| 62 | if (num > MPP_MAX) { | ||
| 63 | printk(KERN_ERR "mv78xx0_mpp_conf: invalid MPP " | ||
| 64 | "number (%u)\n", num); | ||
| 65 | continue; | ||
| 66 | } | ||
| 67 | if (!(*mpp_list & variant_mask)) { | ||
| 68 | printk(KERN_WARNING | ||
| 69 | "mv78xx0_mpp_conf: requested MPP%u config " | ||
| 70 | "unavailable on this hardware\n", num); | ||
| 71 | continue; | ||
| 72 | } | ||
| 73 | |||
| 74 | shift = (num & 7) << 2; | ||
| 75 | mpp_ctrl[num / 8] &= ~(0xf << shift); | ||
| 76 | mpp_ctrl[num / 8] |= sel << shift; | ||
| 77 | |||
| 78 | gpio_mode = 0; | ||
| 79 | if (*mpp_list & MPP_INPUT_MASK) | ||
| 80 | gpio_mode |= GPIO_INPUT_OK; | ||
| 81 | if (*mpp_list & MPP_OUTPUT_MASK) | ||
| 82 | gpio_mode |= GPIO_OUTPUT_OK; | ||
| 83 | if (sel != 0) | ||
| 84 | gpio_mode = 0; | ||
| 85 | orion_gpio_set_valid(num, gpio_mode); | ||
| 86 | |||
| 87 | mpp_list++; | ||
| 88 | } | ||
| 89 | |||
| 90 | printk(KERN_DEBUG " final MPP regs:"); | ||
| 91 | for (i = 0; i < MPP_NR_REGS; i++) { | ||
| 92 | writel(mpp_ctrl[i], MPP_CTRL(i)); | ||
| 93 | printk(" %08x", mpp_ctrl[i]); | ||
| 94 | } | ||
| 95 | printk("\n"); | ||
| 96 | } | ||
diff --git a/arch/arm/mach-mv78xx0/mpp.h b/arch/arm/mach-mv78xx0/mpp.h new file mode 100644 index 000000000000..80840b781eaa --- /dev/null +++ b/arch/arm/mach-mv78xx0/mpp.h | |||
| @@ -0,0 +1,347 @@ | |||
| 1 | /* | ||
| 2 | * linux/arch/arm/mach-mv78xx0/mpp.h -- Multi Purpose Pins | ||
| 3 | * | ||
| 4 | * | ||
| 5 | * sebastien requiem <sebastien@requiem.fr> | ||
| 6 | * | ||
| 7 | * This file is licensed under the terms of the GNU General Public | ||
| 8 | * License version 2. This program is licensed "as is" without any | ||
| 9 | * warranty of any kind, whether express or implied. | ||
| 10 | */ | ||
| 11 | |||
| 12 | #ifndef __MV78X00_MPP_H | ||
| 13 | #define __MV78X00_MPP_H | ||
| 14 | |||
| 15 | #define MPP(_num, _sel, _in, _out, _78100_A0) (\ | ||
| 16 | /* MPP number */ ((_num) & 0xff) | \ | ||
| 17 | /* MPP select value */ (((_sel) & 0xf) << 8) | \ | ||
| 18 | /* may be input signal */ ((!!(_in)) << 12) | \ | ||
| 19 | /* may be output signal */ ((!!(_out)) << 13) | \ | ||
| 20 | /* available on A0 */ ((!!(_78100_A0)) << 14)) | ||
| 21 | |||
| 22 | #define MPP_NUM(x) ((x) & 0xff) | ||
| 23 | #define MPP_SEL(x) (((x) >> 8) & 0xf) | ||
| 24 | |||
| 25 | /* num sel i o 78100_A0 */ | ||
| 26 | |||
| 27 | #define MPP_INPUT_MASK MPP(0, 0x0, 1, 0, 0) | ||
| 28 | #define MPP_OUTPUT_MASK MPP(0, 0x0, 0, 1, 0) | ||
| 29 | |||
| 30 | #define MPP_78100_A0_MASK MPP(0, 0x0, 0, 0, 1) | ||
| 31 | |||
| 32 | #define MPP0_GPIO MPP(0, 0x0, 1, 1, 1) | ||
| 33 | #define MPP0_GE0_COL MPP(0, 0x1, 1, 0, 1) | ||
| 34 | #define MPP0_GE1_TXCLK MPP(0, 0x2, 0, 1, 1) | ||
| 35 | #define MPP0_UNUSED MPP(0, 0x3, 0, 0, 1) | ||
| 36 | |||
| 37 | #define MPP1_GPIO MPP(1, 0x0, 1, 1, 1) | ||
| 38 | #define MPP1_GE0_RXERR MPP(1, 0x1, 1, 0, 1) | ||
| 39 | #define MPP1_GE1_TXCTL MPP(1, 0x2, 0, 1, 1) | ||
| 40 | #define MPP1_UNUSED MPP(1, 0x3, 0, 0, 1) | ||
| 41 | |||
| 42 | #define MPP2_GPIO MPP(2, 0x0, 1, 1, 1) | ||
| 43 | #define MPP2_GE0_CRS MPP(2, 0x1, 1, 0, 1) | ||
| 44 | #define MPP2_GE1_RXCTL MPP(2, 0x2, 1, 0, 1) | ||
| 45 | #define MPP2_UNUSED MPP(2, 0x3, 0, 0, 1) | ||
| 46 | |||
| 47 | #define MPP3_GPIO MPP(3, 0x0, 1, 1, 1) | ||
| 48 | #define MPP3_GE0_TXERR MPP(3, 0x1, 0, 1, 1) | ||
| 49 | #define MPP3_GE1_RXCLK MPP(3, 0x2, 1, 0, 1) | ||
| 50 | #define MPP3_UNUSED MPP(3, 0x3, 0, 0, 1) | ||
| 51 | |||
| 52 | #define MPP4_GPIO MPP(4, 0x0, 1, 1, 1) | ||
| 53 | #define MPP4_GE0_TXD4 MPP(4, 0x1, 0, 1, 1) | ||
| 54 | #define MPP4_GE1_TXD0 MPP(4, 0x2, 0, 1, 1) | ||
| 55 | #define MPP4_UNUSED MPP(4, 0x3, 0, 0, 1) | ||
| 56 | |||
| 57 | #define MPP5_GPIO MPP(5, 0x0, 1, 1, 1) | ||
| 58 | #define MPP5_GE0_TXD5 MPP(5, 0x1, 0, 1, 1) | ||
| 59 | #define MPP5_GE1_TXD1 MPP(5, 0x2, 0, 1, 1) | ||
| 60 | #define MPP5_UNUSED MPP(5, 0x3, 0, 0, 1) | ||
| 61 | |||
| 62 | #define MPP6_GPIO MPP(6, 0x0, 1, 1, 1) | ||
| 63 | #define MPP6_GE0_TXD6 MPP(6, 0x1, 0, 1, 1) | ||
| 64 | #define MPP6_GE1_TXD2 MPP(6, 0x2, 0, 1, 1) | ||
| 65 | #define MPP6_UNUSED MPP(6, 0x3, 0, 0, 1) | ||
| 66 | |||
| 67 | #define MPP7_GPIO MPP(7, 0x0, 1, 1, 1) | ||
| 68 | #define MPP7_GE0_TXD7 MPP(7, 0x1, 0, 1, 1) | ||
| 69 | #define MPP7_GE1_TXD3 MPP(7, 0x2, 0, 1, 1) | ||
| 70 | #define MPP7_UNUSED MPP(7, 0x3, 0, 0, 1) | ||
| 71 | |||
| 72 | #define MPP8_GPIO MPP(8, 0x0, 1, 1, 1) | ||
| 73 | #define MPP8_GE0_RXD4 MPP(8, 0x1, 1, 0, 1) | ||
| 74 | #define MPP8_GE1_RXD0 MPP(8, 0x2, 1, 0, 1) | ||
| 75 | #define MPP8_UNUSED MPP(8, 0x3, 0, 0, 1) | ||
| 76 | |||
| 77 | #define MPP9_GPIO MPP(9, 0x0, 1, 1, 1) | ||
| 78 | #define MPP9_GE0_RXD5 MPP(9, 0x1, 1, 0, 1) | ||
| 79 | #define MPP9_GE1_RXD1 MPP(9, 0x2, 1, 0, 1) | ||
| 80 | #define MPP9_UNUSED MPP(9, 0x3, 0, 0, 1) | ||
| 81 | |||
| 82 | #define MPP10_GPIO MPP(10, 0x0, 1, 1, 1) | ||
| 83 | #define MPP10_GE0_RXD6 MPP(10, 0x1, 1, 0, 1) | ||
| 84 | #define MPP10_GE1_RXD2 MPP(10, 0x2, 1, 0, 1) | ||
| 85 | #define MPP10_UNUSED MPP(10, 0x3, 0, 0, 1) | ||
| 86 | |||
| 87 | #define MPP11_GPIO MPP(11, 0x0, 1, 1, 1) | ||
| 88 | #define MPP11_GE0_RXD7 MPP(11, 0x1, 1, 0, 1) | ||
| 89 | #define MPP11_GE1_RXD3 MPP(11, 0x2, 1, 0, 1) | ||
| 90 | #define MPP11_UNUSED MPP(11, 0x3, 0, 0, 1) | ||
| 91 | |||
| 92 | #define MPP12_GPIO MPP(12, 0x0, 1, 1, 1) | ||
| 93 | #define MPP12_M_BB MPP(12, 0x3, 1, 0, 1) | ||
| 94 | #define MPP12_UA0_CTSn MPP(12, 0x4, 1, 0, 1) | ||
| 95 | #define MPP12_NAND_FLASH_REn0 MPP(12, 0x5, 0, 1, 1) | ||
| 96 | #define MPP12_TDM0_SCSn MPP(12, 0X6, 0, 1, 1) | ||
| 97 | #define MPP12_UNUSED MPP(12, 0x1, 0, 0, 1) | ||
| 98 | |||
| 99 | #define MPP13_GPIO MPP(13, 0x0, 1, 1, 1) | ||
| 100 | #define MPP13_SYSRST_OUTn MPP(13, 0x3, 0, 1, 1) | ||
| 101 | #define MPP13_UA0_RTSn MPP(13, 0x4, 0, 1, 1) | ||
| 102 | #define MPP13_NAN_FLASH_WEn0 MPP(13, 0x5, 0, 1, 1) | ||
| 103 | #define MPP13_TDM_SCLK MPP(13, 0x6, 0, 1, 1) | ||
| 104 | #define MPP13_UNUSED MPP(13, 0x1, 0, 0, 1) | ||
| 105 | |||
| 106 | #define MPP14_GPIO MPP(14, 0x0, 1, 1, 1) | ||
| 107 | #define MPP14_SATA1_ACTn MPP(14, 0x3, 0, 1, 1) | ||
| 108 | #define MPP14_UA1_CTSn MPP(14, 0x4, 1, 0, 1) | ||
| 109 | #define MPP14_NAND_FLASH_REn1 MPP(14, 0x5, 0, 1, 1) | ||
| 110 | #define MPP14_TDM_SMOSI MPP(14, 0x6, 0, 1, 1) | ||
| 111 | #define MPP14_UNUSED MPP(14, 0x1, 0, 0, 1) | ||
| 112 | |||
| 113 | #define MPP15_GPIO MPP(15, 0x0, 1, 1, 1) | ||
| 114 | #define MPP15_SATA0_ACTn MPP(15, 0x3, 0, 1, 1) | ||
| 115 | #define MPP15_UA1_RTSn MPP(15, 0x4, 0, 1, 1) | ||
| 116 | #define MPP15_NAND_FLASH_WEn1 MPP(15, 0x5, 0, 1, 1) | ||
| 117 | #define MPP15_TDM_SMISO MPP(15, 0x6, 1, 0, 1) | ||
| 118 | #define MPP15_UNUSED MPP(15, 0x1, 0, 0, 1) | ||
| 119 | |||
| 120 | #define MPP16_GPIO MPP(16, 0x0, 1, 1, 1) | ||
| 121 | #define MPP16_SATA1_PRESENTn MPP(16, 0x3, 0, 1, 1) | ||
| 122 | #define MPP16_UA2_TXD MPP(16, 0x4, 0, 1, 1) | ||
| 123 | #define MPP16_NAND_FLASH_REn3 MPP(16, 0x5, 0, 1, 1) | ||
| 124 | #define MPP16_TDM_INTn MPP(16, 0x6, 1, 0, 1) | ||
| 125 | #define MPP16_UNUSED MPP(16, 0x1, 0, 0, 1) | ||
| 126 | |||
| 127 | |||
| 128 | #define MPP17_GPIO MPP(17, 0x0, 1, 1, 1) | ||
| 129 | #define MPP17_SATA0_PRESENTn MPP(17, 0x3, 0, 1, 1) | ||
| 130 | #define MPP17_UA2_RXD MPP(17, 0x4, 1, 0, 1) | ||
| 131 | #define MPP17_NAND_FLASH_WEn3 MPP(17, 0x5, 0, 1, 1) | ||
| 132 | #define MPP17_TDM_RSTn MPP(17, 0x6, 0, 1, 1) | ||
| 133 | #define MPP17_UNUSED MPP(17, 0x1, 0, 0, 1) | ||
| 134 | |||
| 135 | |||
| 136 | #define MPP18_GPIO MPP(18, 0x0, 1, 1, 1) | ||
| 137 | #define MPP18_UA0_CTSn MPP(18, 0x4, 1, 0, 1) | ||
| 138 | #define MPP18_BOOT_FLASH_REn MPP(18, 0x5, 0, 1, 1) | ||
| 139 | #define MPP18_UNUSED MPP(18, 0x1, 0, 0, 1) | ||
| 140 | |||
| 141 | |||
| 142 | |||
| 143 | #define MPP19_GPIO MPP(19, 0x0, 1, 1, 1) | ||
| 144 | #define MPP19_UA0_CTSn MPP(19, 0x4, 0, 1, 1) | ||
| 145 | #define MPP19_BOOT_FLASH_WEn MPP(19, 0x5, 0, 1, 1) | ||
| 146 | #define MPP19_UNUSED MPP(19, 0x1, 0, 0, 1) | ||
| 147 | |||
| 148 | |||
| 149 | #define MPP20_GPIO MPP(20, 0x0, 1, 1, 1) | ||
| 150 | #define MPP20_UA1_CTSs MPP(20, 0x4, 1, 0, 1) | ||
| 151 | #define MPP20_TDM_PCLK MPP(20, 0x6, 1, 1, 0) | ||
| 152 | #define MPP20_UNUSED MPP(20, 0x1, 0, 0, 1) | ||
| 153 | |||
| 154 | |||
| 155 | |||
| 156 | #define MPP21_GPIO MPP(21, 0x0, 1, 1, 1) | ||
| 157 | #define MPP21_UA1_CTSs MPP(21, 0x4, 0, 1, 1) | ||
| 158 | #define MPP21_TDM_FSYNC MPP(21, 0x6, 1, 1, 0) | ||
| 159 | #define MPP21_UNUSED MPP(21, 0x1, 0, 0, 1) | ||
| 160 | |||
| 161 | |||
| 162 | |||
| 163 | #define MPP22_GPIO MPP(22, 0x0, 1, 1, 1) | ||
| 164 | #define MPP22_UA3_TDX MPP(22, 0x4, 0, 1, 1) | ||
| 165 | #define MPP22_NAND_FLASH_REn2 MPP(22, 0x5, 0, 1, 1) | ||
| 166 | #define MPP22_TDM_DRX MPP(22, 0x6, 1, 0, 1) | ||
| 167 | #define MPP22_UNUSED MPP(22, 0x1, 0, 0, 1) | ||
| 168 | |||
| 169 | |||
| 170 | |||
| 171 | #define MPP23_GPIO MPP(23, 0x0, 1, 1, 1) | ||
| 172 | #define MPP23_UA3_RDX MPP(23, 0x4, 1, 0, 1) | ||
| 173 | #define MPP23_NAND_FLASH_WEn2 MPP(23, 0x5, 0, 1, 1) | ||
| 174 | #define MPP23_TDM_DTX MPP(23, 0x6, 0, 1, 1) | ||
| 175 | #define MPP23_UNUSED MPP(23, 0x1, 0, 0, 1) | ||
| 176 | |||
| 177 | |||
| 178 | #define MPP24_GPIO MPP(24, 0x0, 1, 1, 1) | ||
| 179 | #define MPP24_UA2_TXD MPP(24, 0x4, 0, 1, 1) | ||
| 180 | #define MPP24_TDM_INTn MPP(24, 0x6, 1, 0, 1) | ||
| 181 | #define MPP24_UNUSED MPP(24, 0x1, 0, 0, 1) | ||
| 182 | |||
| 183 | |||
| 184 | #define MPP25_GPIO MPP(25, 0x0, 1, 1, 1) | ||
| 185 | #define MPP25_UA2_RXD MPP(25, 0x4, 1, 0, 1) | ||
| 186 | #define MPP25_TDM_RSTn MPP(25, 0x6, 0, 1, 1) | ||
| 187 | #define MPP25_UNUSED MPP(25, 0x1, 0, 0, 1) | ||
| 188 | |||
| 189 | |||
| 190 | #define MPP26_GPIO MPP(26, 0x0, 1, 1, 1) | ||
| 191 | #define MPP26_UA2_CTSn MPP(26, 0x4, 1, 0, 1) | ||
| 192 | #define MPP26_TDM_PCLK MPP(26, 0x6, 1, 1, 1) | ||
| 193 | #define MPP26_UNUSED MPP(26, 0x1, 0, 0, 1) | ||
| 194 | |||
| 195 | |||
| 196 | #define MPP27_GPIO MPP(27, 0x0, 1, 1, 1) | ||
| 197 | #define MPP27_UA2_RTSn MPP(27, 0x4, 0, 1, 1) | ||
| 198 | #define MPP27_TDM_FSYNC MPP(27, 0x6, 1, 1, 1) | ||
| 199 | #define MPP27_UNUSED MPP(27, 0x1, 0, 0, 1) | ||
| 200 | |||
| 201 | |||
| 202 | #define MPP28_GPIO MPP(28, 0x0, 1, 1, 1) | ||
| 203 | #define MPP28_UA3_TXD MPP(28, 0x4, 0, 1, 1) | ||
| 204 | #define MPP28_TDM_DRX MPP(28, 0x6, 1, 0, 1) | ||
| 205 | #define MPP28_UNUSED MPP(28, 0x1, 0, 0, 1) | ||
| 206 | |||
| 207 | #define MPP29_GPIO MPP(29, 0x0, 1, 1, 1) | ||
| 208 | #define MPP29_UA3_RXD MPP(29, 0x4, 1, 0, 1) | ||
| 209 | #define MPP29_SYSRST_OUTn MPP(29, 0x5, 0, 1, 1) | ||
| 210 | #define MPP29_TDM_DTX MPP(29, 0x6, 0, 1, 1) | ||
| 211 | #define MPP29_UNUSED MPP(29, 0x1, 0, 0, 1) | ||
| 212 | |||
| 213 | #define MPP30_GPIO MPP(30, 0x0, 1, 1, 1) | ||
| 214 | #define MPP30_UA3_CTSn MPP(30, 0x4, 1, 0, 1) | ||
| 215 | #define MPP30_UNUSED MPP(30, 0x1, 0, 0, 1) | ||
| 216 | |||
| 217 | #define MPP31_GPIO MPP(31, 0x0, 1, 1, 1) | ||
| 218 | #define MPP31_UA3_RTSn MPP(31, 0x4, 0, 1, 1) | ||
| 219 | #define MPP31_TDM1_SCSn MPP(31, 0x6, 0, 1, 1) | ||
| 220 | #define MPP31_UNUSED MPP(31, 0x1, 0, 0, 1) | ||
| 221 | |||
| 222 | |||
| 223 | #define MPP32_GPIO MPP(32, 0x1, 1, 1, 1) | ||
| 224 | #define MPP32_UA3_TDX MPP(32, 0x4, 0, 1, 1) | ||
| 225 | #define MPP32_SYSRST_OUTn MPP(32, 0x5, 0, 1, 1) | ||
| 226 | #define MPP32_TDM0_RXQ MPP(32, 0x6, 0, 1, 1) | ||
| 227 | #define MPP32_UNUSED MPP(32, 0x3, 0, 0, 1) | ||
| 228 | |||
| 229 | |||
| 230 | #define MPP33_GPIO MPP(33, 0x1, 1, 1, 1) | ||
| 231 | #define MPP33_UA3_RDX MPP(33, 0x4, 1, 0, 1) | ||
| 232 | #define MPP33_TDM0_TXQ MPP(33, 0x6, 0, 1, 1) | ||
| 233 | #define MPP33_UNUSED MPP(33, 0x3, 0, 0, 1) | ||
| 234 | |||
| 235 | |||
| 236 | |||
| 237 | #define MPP34_GPIO MPP(34, 0x1, 1, 1, 1) | ||
| 238 | #define MPP34_UA2_TDX MPP(34, 0x4, 0, 1, 1) | ||
| 239 | #define MPP34_TDM1_RXQ MPP(34, 0x6, 0, 1, 1) | ||
| 240 | #define MPP34_UNUSED MPP(34, 0x3, 0, 0, 1) | ||
| 241 | |||
| 242 | |||
| 243 | |||
| 244 | #define MPP35_GPIO MPP(35, 0x1, 1, 1, 1) | ||
| 245 | #define MPP35_UA2_RDX MPP(35, 0x4, 1, 0, 1) | ||
| 246 | #define MPP35_TDM1_TXQ MPP(35, 0x6, 0, 1, 1) | ||
| 247 | #define MPP35_UNUSED MPP(35, 0x3, 0, 0, 1) | ||
| 248 | |||
| 249 | #define MPP36_GPIO MPP(36, 0x1, 1, 1, 1) | ||
| 250 | #define MPP36_UA0_CTSn MPP(36, 0x2, 1, 0, 1) | ||
| 251 | #define MPP36_UA2_TDX MPP(36, 0x4, 0, 1, 1) | ||
| 252 | #define MPP36_TDM0_SCSn MPP(36, 0x6, 0, 1, 1) | ||
| 253 | #define MPP36_UNUSED MPP(36, 0x3, 0, 0, 1) | ||
| 254 | |||
| 255 | |||
| 256 | #define MPP37_GPIO MPP(37, 0x1, 1, 1, 1) | ||
| 257 | #define MPP37_UA0_RTSn MPP(37, 0x2, 0, 1, 1) | ||
| 258 | #define MPP37_UA2_RXD MPP(37, 0x4, 1, 0, 1) | ||
| 259 | #define MPP37_SYSRST_OUTn MPP(37, 0x5, 0, 1, 1) | ||
| 260 | #define MPP37_TDM_SCLK MPP(37, 0x6, 0, 1, 1) | ||
| 261 | #define MPP37_UNUSED MPP(37, 0x3, 0, 0, 1) | ||
| 262 | |||
| 263 | |||
| 264 | |||
| 265 | |||
| 266 | #define MPP38_GPIO MPP(38, 0x1, 1, 1, 1) | ||
| 267 | #define MPP38_UA1_CTSn MPP(38, 0x2, 1, 0, 1) | ||
| 268 | #define MPP38_UA3_TXD MPP(38, 0x4, 0, 1, 1) | ||
| 269 | #define MPP38_SYSRST_OUTn MPP(38, 0x5, 0, 1, 1) | ||
| 270 | #define MPP38_TDM_SMOSI MPP(38, 0x6, 0, 1, 1) | ||
| 271 | #define MPP38_UNUSED MPP(38, 0x3, 0, 0, 1) | ||
| 272 | |||
| 273 | |||
| 274 | |||
| 275 | |||
| 276 | #define MPP39_GPIO MPP(39, 0x1, 1, 1, 1) | ||
| 277 | #define MPP39_UA1_RTSn MPP(39, 0x2, 0, 1, 1) | ||
| 278 | #define MPP39_UA3_RXD MPP(39, 0x4, 1, 0, 1) | ||
| 279 | #define MPP39_SYSRST_OUTn MPP(39, 0x5, 0, 1, 1) | ||
| 280 | #define MPP39_TDM_SMISO MPP(39, 0x6, 1, 0, 1) | ||
| 281 | #define MPP39_UNUSED MPP(39, 0x3, 0, 0, 1) | ||
| 282 | |||
| 283 | |||
| 284 | |||
| 285 | #define MPP40_GPIO MPP(40, 0x1, 1, 1, 1) | ||
| 286 | #define MPP40_TDM_INTn MPP(40, 0x6, 1, 0, 1) | ||
| 287 | #define MPP40_UNUSED MPP(40, 0x0, 0, 0, 1) | ||
| 288 | |||
| 289 | |||
| 290 | |||
| 291 | #define MPP41_GPIO MPP(41, 0x1, 1, 1, 1) | ||
| 292 | #define MPP41_TDM_RSTn MPP(41, 0x6, 0, 1, 1) | ||
| 293 | #define MPP41_UNUSED MPP(41, 0x0, 0, 0, 1) | ||
| 294 | |||
| 295 | |||
| 296 | |||
| 297 | #define MPP42_GPIO MPP(42, 0x1, 1, 1, 1) | ||
| 298 | #define MPP42_TDM_PCLK MPP(42, 0x6, 1, 1, 1) | ||
| 299 | #define MPP42_UNUSED MPP(42, 0x0, 0, 0, 1) | ||
| 300 | |||
| 301 | |||
| 302 | |||
| 303 | #define MPP43_GPIO MPP(43, 0x1, 1, 1, 1) | ||
| 304 | #define MPP43_TDM_FSYNC MPP(43, 0x6, 1, 1, 1) | ||
| 305 | #define MPP43_UNUSED MPP(43, 0x0, 0, 0, 1) | ||
| 306 | |||
| 307 | |||
| 308 | |||
| 309 | #define MPP44_GPIO MPP(44, 0x1, 1, 1, 1) | ||
| 310 | #define MPP44_TDM_DRX MPP(44, 0x6, 1, 0, 1) | ||
| 311 | #define MPP44_UNUSED MPP(44, 0x0, 0, 0, 1) | ||
| 312 | |||
| 313 | |||
| 314 | |||
| 315 | #define MPP45_GPIO MPP(45, 0x1, 1, 1, 1) | ||
| 316 | #define MPP45_SATA0_ACTn MPP(45, 0x3, 0, 1, 1) | ||
| 317 | #define MPP45_TDM_DRX MPP(45, 0x6, 0, 1, 1) | ||
| 318 | #define MPP45_UNUSED MPP(45, 0x0, 0, 0, 1) | ||
| 319 | |||
| 320 | |||
| 321 | #define MPP46_GPIO MPP(46, 0x1, 1, 1, 1) | ||
| 322 | #define MPP46_TDM_SCSn MPP(46, 0x6, 0, 1, 1) | ||
| 323 | #define MPP46_UNUSED MPP(46, 0x0, 0, 0, 1) | ||
| 324 | |||
| 325 | |||
| 326 | #define MPP47_GPIO MPP(47, 0x1, 1, 1, 1) | ||
| 327 | #define MPP47_UNUSED MPP(47, 0x0, 0, 0, 1) | ||
| 328 | |||
| 329 | |||
| 330 | |||
| 331 | #define MPP48_GPIO MPP(48, 0x1, 1, 1, 1) | ||
| 332 | #define MPP48_SATA1_ACTn MPP(48, 0x3, 0, 1, 1) | ||
| 333 | #define MPP48_UNUSED MPP(48, 0x2, 0, 0, 1) | ||
| 334 | |||
| 335 | |||
| 336 | |||
| 337 | #define MPP49_GPIO MPP(49, 0x1, 1, 1, 1) | ||
| 338 | #define MPP49_SATA0_ACTn MPP(49, 0x3, 0, 1, 1) | ||
| 339 | #define MPP49_M_BB MPP(49, 0x4, 1, 0, 1) | ||
| 340 | #define MPP49_UNUSED MPP(49, 0x2, 0, 0, 1) | ||
| 341 | |||
| 342 | |||
| 343 | #define MPP_MAX 49 | ||
| 344 | |||
| 345 | void mv78xx0_mpp_conf(unsigned int *mpp_list); | ||
| 346 | |||
| 347 | #endif | ||
diff --git a/arch/arm/mach-omap2/mmc-twl4030.c b/arch/arm/mach-omap2/mmc-twl4030.c index 0c3c72d934bf..8afe9dd3f150 100644 --- a/arch/arm/mach-omap2/mmc-twl4030.c +++ b/arch/arm/mach-omap2/mmc-twl4030.c | |||
| @@ -408,6 +408,7 @@ void __init twl4030_mmc_init(struct twl4030_hsmmc_info *controllers) | |||
| 408 | { | 408 | { |
| 409 | struct twl4030_hsmmc_info *c; | 409 | struct twl4030_hsmmc_info *c; |
| 410 | int nr_hsmmc = ARRAY_SIZE(hsmmc_data); | 410 | int nr_hsmmc = ARRAY_SIZE(hsmmc_data); |
| 411 | int i; | ||
| 411 | 412 | ||
| 412 | if (cpu_is_omap2430()) { | 413 | if (cpu_is_omap2430()) { |
| 413 | control_pbias_offset = OMAP243X_CONTROL_PBIAS_LITE; | 414 | control_pbias_offset = OMAP243X_CONTROL_PBIAS_LITE; |
| @@ -434,7 +435,7 @@ void __init twl4030_mmc_init(struct twl4030_hsmmc_info *controllers) | |||
| 434 | mmc = kzalloc(sizeof(struct omap_mmc_platform_data), GFP_KERNEL); | 435 | mmc = kzalloc(sizeof(struct omap_mmc_platform_data), GFP_KERNEL); |
| 435 | if (!mmc) { | 436 | if (!mmc) { |
| 436 | pr_err("Cannot allocate memory for mmc device!\n"); | 437 | pr_err("Cannot allocate memory for mmc device!\n"); |
| 437 | return; | 438 | goto done; |
| 438 | } | 439 | } |
| 439 | 440 | ||
| 440 | if (c->name) | 441 | if (c->name) |
| @@ -532,6 +533,10 @@ void __init twl4030_mmc_init(struct twl4030_hsmmc_info *controllers) | |||
| 532 | continue; | 533 | continue; |
| 533 | c->dev = mmc->dev; | 534 | c->dev = mmc->dev; |
| 534 | } | 535 | } |
| 536 | |||
| 537 | done: | ||
| 538 | for (i = 0; i < nr_hsmmc; i++) | ||
| 539 | kfree(hsmmc_data[i]); | ||
| 535 | } | 540 | } |
| 536 | 541 | ||
| 537 | #endif | 542 | #endif |
diff --git a/arch/arm/tools/mach-types b/arch/arm/tools/mach-types index 5a79fc6ee818..31c2f4c30a95 100644 --- a/arch/arm/tools/mach-types +++ b/arch/arm/tools/mach-types | |||
| @@ -12,7 +12,7 @@ | |||
| 12 | # | 12 | # |
| 13 | # http://www.arm.linux.org.uk/developer/machines/?action=new | 13 | # http://www.arm.linux.org.uk/developer/machines/?action=new |
| 14 | # | 14 | # |
| 15 | # Last update: Thu Jan 28 22:15:54 2010 | 15 | # Last update: Sat Feb 20 14:16:15 2010 |
| 16 | # | 16 | # |
| 17 | # machine_is_xxx CONFIG_xxxx MACH_TYPE_xxx number | 17 | # machine_is_xxx CONFIG_xxxx MACH_TYPE_xxx number |
| 18 | # | 18 | # |
| @@ -2257,7 +2257,7 @@ oratisalog MACH_ORATISALOG ORATISALOG 2268 | |||
| 2257 | oratismadi MACH_ORATISMADI ORATISMADI 2269 | 2257 | oratismadi MACH_ORATISMADI ORATISMADI 2269 |
| 2258 | oratisot16 MACH_ORATISOT16 ORATISOT16 2270 | 2258 | oratisot16 MACH_ORATISOT16 ORATISOT16 2270 |
| 2259 | oratisdesk MACH_ORATISDESK ORATISDESK 2271 | 2259 | oratisdesk MACH_ORATISDESK ORATISDESK 2271 |
| 2260 | v2_ca9 MACH_V2P_CA9 V2P_CA9 2272 | 2260 | vexpress MACH_VEXPRESS VEXPRESS 2272 |
| 2261 | sintexo MACH_SINTEXO SINTEXO 2273 | 2261 | sintexo MACH_SINTEXO SINTEXO 2273 |
| 2262 | cm3389 MACH_CM3389 CM3389 2274 | 2262 | cm3389 MACH_CM3389 CM3389 2274 |
| 2263 | omap3_cio MACH_OMAP3_CIO OMAP3_CIO 2275 | 2263 | omap3_cio MACH_OMAP3_CIO OMAP3_CIO 2275 |
| @@ -2636,3 +2636,45 @@ hw90240 MACH_HW90240 HW90240 2648 | |||
| 2636 | dm365_leopard MACH_DM365_LEOPARD DM365_LEOPARD 2649 | 2636 | dm365_leopard MACH_DM365_LEOPARD DM365_LEOPARD 2649 |
| 2637 | mityomapl138 MACH_MITYOMAPL138 MITYOMAPL138 2650 | 2637 | mityomapl138 MACH_MITYOMAPL138 MITYOMAPL138 2650 |
| 2638 | scat110 MACH_SCAT110 SCAT110 2651 | 2638 | scat110 MACH_SCAT110 SCAT110 2651 |
| 2639 | acer_a1 MACH_ACER_A1 ACER_A1 2652 | ||
| 2640 | cmcontrol MACH_CMCONTROL CMCONTROL 2653 | ||
| 2641 | pelco_lamar MACH_PELCO_LAMAR PELCO_LAMAR 2654 | ||
| 2642 | rfp43 MACH_RFP43 RFP43 2655 | ||
| 2643 | sk86r0301 MACH_SK86R0301 SK86R0301 2656 | ||
| 2644 | ctpxa MACH_CTPXA CTPXA 2657 | ||
| 2645 | epb_arm9_a MACH_EPB_ARM9_A EPB_ARM9_A 2658 | ||
| 2646 | guruplug MACH_GURUPLUG GURUPLUG 2659 | ||
| 2647 | spear310 MACH_SPEAR310 SPEAR310 2660 | ||
| 2648 | spear320 MACH_SPEAR320 SPEAR320 2661 | ||
| 2649 | robotx MACH_ROBOTX ROBOTX 2662 | ||
| 2650 | lsxhl MACH_LSXHL LSXHL 2663 | ||
| 2651 | smartlite MACH_SMARTLITE SMARTLITE 2664 | ||
| 2652 | cws2 MACH_CWS2 CWS2 2665 | ||
| 2653 | m619 MACH_M619 M619 2666 | ||
| 2654 | smartview MACH_SMARTVIEW SMARTVIEW 2667 | ||
| 2655 | lsa_salsa MACH_LSA_SALSA LSA_SALSA 2668 | ||
| 2656 | kizbox MACH_KIZBOX KIZBOX 2669 | ||
| 2657 | htccharmer MACH_HTCCHARMER HTCCHARMER 2670 | ||
| 2658 | guf_neso_lt MACH_GUF_NESO_LT GUF_NESO_LT 2671 | ||
| 2659 | pm9g45 MACH_PM9G45 PM9G45 2672 | ||
| 2660 | htcpanther MACH_HTCPANTHER HTCPANTHER 2673 | ||
| 2661 | htcpanther_cdma MACH_HTCPANTHER_CDMA HTCPANTHER_CDMA 2674 | ||
| 2662 | reb01 MACH_REB01 REB01 2675 | ||
| 2663 | aquila MACH_AQUILA AQUILA 2676 | ||
| 2664 | spark_sls_hw2 MACH_SPARK_SLS_HW2 SPARK_SLS_HW2 2677 | ||
| 2665 | sheeva_esata MACH_ESATA_SHEEVAPLUG ESATA_SHEEVAPLUG 2678 | ||
| 2666 | surf7x30 MACH_SURF7X30 SURF7X30 2679 | ||
| 2667 | micro2440 MACH_MICRO2440 MICRO2440 2680 | ||
| 2668 | am2440 MACH_AM2440 AM2440 2681 | ||
| 2669 | tq2440 MACH_TQ2440 TQ2440 2682 | ||
| 2670 | lpc2478oem MACH_LPC2478OEM LPC2478OEM 2683 | ||
| 2671 | ak880x MACH_AK880X AK880X 2684 | ||
| 2672 | cobra3530 MACH_COBRA3530 COBRA3530 2685 | ||
| 2673 | pmppb MACH_PMPPB PMPPB 2686 | ||
| 2674 | u6715 MACH_U6715 U6715 2687 | ||
| 2675 | axar1500_sender MACH_AXAR1500_SENDER AXAR1500_SENDER 2688 | ||
| 2676 | g30_dvb MACH_G30_DVB G30_DVB 2689 | ||
| 2677 | vc088x MACH_VC088X VC088X 2690 | ||
| 2678 | mioa702 MACH_MIOA702 MIOA702 2691 | ||
| 2679 | hpmin MACH_HPMIN HPMIN 2692 | ||
| 2680 | ak880xak MACH_AK880XAK AK880XAK 2693 | ||
diff --git a/arch/avr32/mach-at32ap/at32ap700x.c b/arch/avr32/mach-at32ap/at32ap700x.c index 1aa1ea5e9212..b13d1879e51b 100644 --- a/arch/avr32/mach-at32ap/at32ap700x.c +++ b/arch/avr32/mach-at32ap/at32ap700x.c | |||
| @@ -1325,7 +1325,7 @@ struct platform_device *__init | |||
| 1325 | at32_add_device_mci(unsigned int id, struct mci_platform_data *data) | 1325 | at32_add_device_mci(unsigned int id, struct mci_platform_data *data) |
| 1326 | { | 1326 | { |
| 1327 | struct platform_device *pdev; | 1327 | struct platform_device *pdev; |
| 1328 | struct mci_dma_slave *slave; | 1328 | struct mci_dma_data *slave; |
| 1329 | u32 pioa_mask; | 1329 | u32 pioa_mask; |
| 1330 | u32 piob_mask; | 1330 | u32 piob_mask; |
| 1331 | 1331 | ||
| @@ -1344,7 +1344,9 @@ at32_add_device_mci(unsigned int id, struct mci_platform_data *data) | |||
| 1344 | ARRAY_SIZE(atmel_mci0_resource))) | 1344 | ARRAY_SIZE(atmel_mci0_resource))) |
| 1345 | goto fail; | 1345 | goto fail; |
| 1346 | 1346 | ||
| 1347 | slave = kzalloc(sizeof(struct mci_dma_slave), GFP_KERNEL); | 1347 | slave = kzalloc(sizeof(struct mci_dma_data), GFP_KERNEL); |
| 1348 | if (!slave) | ||
| 1349 | goto fail; | ||
| 1348 | 1350 | ||
| 1349 | slave->sdata.dma_dev = &dw_dmac0_device.dev; | 1351 | slave->sdata.dma_dev = &dw_dmac0_device.dev; |
| 1350 | slave->sdata.reg_width = DW_DMA_SLAVE_WIDTH_32BIT; | 1352 | slave->sdata.reg_width = DW_DMA_SLAVE_WIDTH_32BIT; |
| @@ -1357,7 +1359,7 @@ at32_add_device_mci(unsigned int id, struct mci_platform_data *data) | |||
| 1357 | 1359 | ||
| 1358 | if (platform_device_add_data(pdev, data, | 1360 | if (platform_device_add_data(pdev, data, |
| 1359 | sizeof(struct mci_platform_data))) | 1361 | sizeof(struct mci_platform_data))) |
| 1360 | goto fail; | 1362 | goto fail_free; |
| 1361 | 1363 | ||
| 1362 | /* CLK line is common to both slots */ | 1364 | /* CLK line is common to both slots */ |
| 1363 | pioa_mask = 1 << 10; | 1365 | pioa_mask = 1 << 10; |
| @@ -1381,7 +1383,7 @@ at32_add_device_mci(unsigned int id, struct mci_platform_data *data) | |||
| 1381 | /* Slot is unused */ | 1383 | /* Slot is unused */ |
| 1382 | break; | 1384 | break; |
| 1383 | default: | 1385 | default: |
| 1384 | goto fail; | 1386 | goto fail_free; |
| 1385 | } | 1387 | } |
| 1386 | 1388 | ||
| 1387 | select_peripheral(PIOA, pioa_mask, PERIPH_A, 0); | 1389 | select_peripheral(PIOA, pioa_mask, PERIPH_A, 0); |
| @@ -1408,7 +1410,7 @@ at32_add_device_mci(unsigned int id, struct mci_platform_data *data) | |||
| 1408 | break; | 1410 | break; |
| 1409 | default: | 1411 | default: |
| 1410 | if (!data->slot[0].bus_width) | 1412 | if (!data->slot[0].bus_width) |
| 1411 | goto fail; | 1413 | goto fail_free; |
| 1412 | 1414 | ||
| 1413 | data->slot[1].bus_width = 0; | 1415 | data->slot[1].bus_width = 0; |
| 1414 | break; | 1416 | break; |
| @@ -1419,9 +1421,10 @@ at32_add_device_mci(unsigned int id, struct mci_platform_data *data) | |||
| 1419 | platform_device_add(pdev); | 1421 | platform_device_add(pdev); |
| 1420 | return pdev; | 1422 | return pdev; |
| 1421 | 1423 | ||
| 1424 | fail_free: | ||
| 1425 | kfree(slave); | ||
| 1422 | fail: | 1426 | fail: |
| 1423 | data->dma_slave = NULL; | 1427 | data->dma_slave = NULL; |
| 1424 | kfree(slave); | ||
| 1425 | platform_device_put(pdev); | 1428 | platform_device_put(pdev); |
| 1426 | return NULL; | 1429 | return NULL; |
| 1427 | } | 1430 | } |
diff --git a/arch/ia64/include/asm/acpi.h b/arch/ia64/include/asm/acpi.h index 7ae58892ba8d..e97b255d97bc 100644 --- a/arch/ia64/include/asm/acpi.h +++ b/arch/ia64/include/asm/acpi.h | |||
| @@ -94,6 +94,7 @@ ia64_acpi_release_global_lock (unsigned int *lock) | |||
| 94 | #define acpi_noirq 0 /* ACPI always enabled on IA64 */ | 94 | #define acpi_noirq 0 /* ACPI always enabled on IA64 */ |
| 95 | #define acpi_pci_disabled 0 /* ACPI PCI always enabled on IA64 */ | 95 | #define acpi_pci_disabled 0 /* ACPI PCI always enabled on IA64 */ |
| 96 | #define acpi_strict 1 /* no ACPI spec workarounds on IA64 */ | 96 | #define acpi_strict 1 /* no ACPI spec workarounds on IA64 */ |
| 97 | #define acpi_ht 0 /* no HT-only mode on IA64 */ | ||
| 97 | #endif | 98 | #endif |
| 98 | #define acpi_processor_cstate_check(x) (x) /* no idle limits on IA64 :) */ | 99 | #define acpi_processor_cstate_check(x) (x) /* no idle limits on IA64 :) */ |
| 99 | static inline void disable_acpi(void) { } | 100 | static inline void disable_acpi(void) { } |
diff --git a/arch/ia64/include/asm/elf.h b/arch/ia64/include/asm/elf.h index e14108b19c09..4c41656ede87 100644 --- a/arch/ia64/include/asm/elf.h +++ b/arch/ia64/include/asm/elf.h | |||
| @@ -201,7 +201,9 @@ extern void ia64_elf_core_copy_regs (struct pt_regs *src, elf_gregset_t dst); | |||
| 201 | relevant until we have real hardware to play with... */ | 201 | relevant until we have real hardware to play with... */ |
| 202 | #define ELF_PLATFORM NULL | 202 | #define ELF_PLATFORM NULL |
| 203 | 203 | ||
| 204 | #define SET_PERSONALITY(ex) set_personality(PER_LINUX) | 204 | #define SET_PERSONALITY(ex) \ |
| 205 | set_personality((current->personality & ~PER_MASK) | PER_LINUX) | ||
| 206 | |||
| 205 | #define elf_read_implies_exec(ex, executable_stack) \ | 207 | #define elf_read_implies_exec(ex, executable_stack) \ |
| 206 | ((executable_stack!=EXSTACK_DISABLE_X) && ((ex).e_flags & EF_IA_64_LINUX_EXECUTABLE_STACK) != 0) | 208 | ((executable_stack!=EXSTACK_DISABLE_X) && ((ex).e_flags & EF_IA_64_LINUX_EXECUTABLE_STACK) != 0) |
| 207 | 209 | ||
diff --git a/arch/microblaze/kernel/setup.c b/arch/microblaze/kernel/setup.c index 5372b24ad049..bb8c4b9ccb80 100644 --- a/arch/microblaze/kernel/setup.c +++ b/arch/microblaze/kernel/setup.c | |||
| @@ -54,6 +54,7 @@ void __init setup_arch(char **cmdline_p) | |||
| 54 | 54 | ||
| 55 | microblaze_cache_init(); | 55 | microblaze_cache_init(); |
| 56 | 56 | ||
| 57 | invalidate_dcache(); | ||
| 57 | enable_dcache(); | 58 | enable_dcache(); |
| 58 | 59 | ||
| 59 | invalidate_icache(); | 60 | invalidate_icache(); |
diff --git a/arch/mips/configs/ip27_defconfig b/arch/mips/configs/ip27_defconfig index ed84b4cb3c8d..84b6503f10b9 100644 --- a/arch/mips/configs/ip27_defconfig +++ b/arch/mips/configs/ip27_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.23-rc2 | 3 | # Linux kernel version: 2.6.33-rc6 |
| 4 | # Tue Aug 7 13:04:24 2007 | 4 | # Wed Feb 3 18:12:31 2010 |
| 5 | # | 5 | # |
| 6 | CONFIG_MIPS=y | 6 | CONFIG_MIPS=y |
| 7 | 7 | ||
| @@ -9,20 +9,28 @@ CONFIG_MIPS=y | |||
| 9 | # Machine selection | 9 | # Machine selection |
| 10 | # | 10 | # |
| 11 | # CONFIG_MACH_ALCHEMY is not set | 11 | # CONFIG_MACH_ALCHEMY is not set |
| 12 | # CONFIG_AR7 is not set | ||
| 13 | # CONFIG_BCM47XX is not set | ||
| 14 | # CONFIG_BCM63XX is not set | ||
| 12 | # CONFIG_MIPS_COBALT is not set | 15 | # CONFIG_MIPS_COBALT is not set |
| 13 | # CONFIG_MACH_DECSTATION is not set | 16 | # CONFIG_MACH_DECSTATION is not set |
| 14 | # CONFIG_MACH_JAZZ is not set | 17 | # CONFIG_MACH_JAZZ is not set |
| 15 | # CONFIG_LEMOTE_FULONG is not set | 18 | # CONFIG_LASAT is not set |
| 19 | # CONFIG_MACH_LOONGSON is not set | ||
| 16 | # CONFIG_MIPS_MALTA is not set | 20 | # CONFIG_MIPS_MALTA is not set |
| 17 | # CONFIG_MIPS_SIM is not set | 21 | # CONFIG_MIPS_SIM is not set |
| 18 | # CONFIG_MARKEINS is not set | 22 | # CONFIG_NEC_MARKEINS is not set |
| 19 | # CONFIG_MACH_VR41XX is not set | 23 | # CONFIG_MACH_VR41XX is not set |
| 24 | # CONFIG_NXP_STB220 is not set | ||
| 25 | # CONFIG_NXP_STB225 is not set | ||
| 20 | # CONFIG_PNX8550_JBS is not set | 26 | # CONFIG_PNX8550_JBS is not set |
| 21 | # CONFIG_PNX8550_STB810 is not set | 27 | # CONFIG_PNX8550_STB810 is not set |
| 22 | # CONFIG_PMC_MSP is not set | 28 | # CONFIG_PMC_MSP is not set |
| 23 | # CONFIG_PMC_YOSEMITE is not set | 29 | # CONFIG_PMC_YOSEMITE is not set |
| 30 | # CONFIG_POWERTV is not set | ||
| 24 | # CONFIG_SGI_IP22 is not set | 31 | # CONFIG_SGI_IP22 is not set |
| 25 | CONFIG_SGI_IP27=y | 32 | CONFIG_SGI_IP27=y |
| 33 | # CONFIG_SGI_IP28 is not set | ||
| 26 | # CONFIG_SGI_IP32 is not set | 34 | # CONFIG_SGI_IP32 is not set |
| 27 | # CONFIG_SIBYTE_CRHINE is not set | 35 | # CONFIG_SIBYTE_CRHINE is not set |
| 28 | # CONFIG_SIBYTE_CARMEL is not set | 36 | # CONFIG_SIBYTE_CARMEL is not set |
| @@ -33,32 +41,39 @@ CONFIG_SGI_IP27=y | |||
| 33 | # CONFIG_SIBYTE_SENTOSA is not set | 41 | # CONFIG_SIBYTE_SENTOSA is not set |
| 34 | # CONFIG_SIBYTE_BIGSUR is not set | 42 | # CONFIG_SIBYTE_BIGSUR is not set |
| 35 | # CONFIG_SNI_RM is not set | 43 | # CONFIG_SNI_RM is not set |
| 36 | # CONFIG_TOSHIBA_JMR3927 is not set | 44 | # CONFIG_MACH_TX39XX is not set |
| 37 | # CONFIG_TOSHIBA_RBTX4927 is not set | 45 | # CONFIG_MACH_TX49XX is not set |
| 38 | # CONFIG_TOSHIBA_RBTX4938 is not set | 46 | # CONFIG_MIKROTIK_RB532 is not set |
| 39 | # CONFIG_WR_PPMC is not set | 47 | # CONFIG_WR_PPMC is not set |
| 48 | # CONFIG_CAVIUM_OCTEON_SIMULATOR is not set | ||
| 49 | # CONFIG_CAVIUM_OCTEON_REFERENCE_BOARD is not set | ||
| 50 | # CONFIG_ALCHEMY_GPIO_INDIRECT is not set | ||
| 40 | CONFIG_SGI_SN_M_MODE=y | 51 | CONFIG_SGI_SN_M_MODE=y |
| 41 | # CONFIG_SGI_SN_N_MODE is not set | 52 | # CONFIG_SGI_SN_N_MODE is not set |
| 42 | # CONFIG_MAPPED_KERNEL is not set | 53 | # CONFIG_MAPPED_KERNEL is not set |
| 43 | # CONFIG_REPLICATE_KTEXT is not set | 54 | # CONFIG_REPLICATE_KTEXT is not set |
| 44 | # CONFIG_REPLICATE_EXHANDLERS is not set | 55 | # CONFIG_REPLICATE_EXHANDLERS is not set |
| 56 | CONFIG_LOONGSON_UART_BASE=y | ||
| 45 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | 57 | CONFIG_RWSEM_GENERIC_SPINLOCK=y |
| 46 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 58 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 47 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 59 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 60 | CONFIG_ARCH_SUPPORTS_OPROFILE=y | ||
| 48 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 61 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
| 49 | CONFIG_GENERIC_HWEIGHT=y | 62 | CONFIG_GENERIC_HWEIGHT=y |
| 50 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 63 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
| 64 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
| 51 | CONFIG_GENERIC_TIME=y | 65 | CONFIG_GENERIC_TIME=y |
| 52 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 66 | CONFIG_GENERIC_CMOS_UPDATE=y |
| 67 | CONFIG_SCHED_OMIT_FRAME_POINTER=y | ||
| 53 | CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y | 68 | CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y |
| 54 | CONFIG_ARC=y | 69 | CONFIG_ARC=y |
| 55 | CONFIG_DMA_COHERENT=y | 70 | CONFIG_DMA_COHERENT=y |
| 56 | CONFIG_EARLY_PRINTK=y | ||
| 57 | CONFIG_SYS_HAS_EARLY_PRINTK=y | 71 | CONFIG_SYS_HAS_EARLY_PRINTK=y |
| 58 | # CONFIG_NO_IOPORT is not set | 72 | # CONFIG_NO_IOPORT is not set |
| 59 | CONFIG_CPU_BIG_ENDIAN=y | 73 | CONFIG_CPU_BIG_ENDIAN=y |
| 60 | # CONFIG_CPU_LITTLE_ENDIAN is not set | 74 | # CONFIG_CPU_LITTLE_ENDIAN is not set |
| 61 | CONFIG_SYS_SUPPORTS_BIG_ENDIAN=y | 75 | CONFIG_SYS_SUPPORTS_BIG_ENDIAN=y |
| 76 | CONFIG_DEFAULT_SGI_PARTITION=y | ||
| 62 | CONFIG_MIPS_L1_CACHE_SHIFT=7 | 77 | CONFIG_MIPS_L1_CACHE_SHIFT=7 |
| 63 | CONFIG_ARC64=y | 78 | CONFIG_ARC64=y |
| 64 | CONFIG_BOOT_ELF64=y | 79 | CONFIG_BOOT_ELF64=y |
| @@ -66,7 +81,8 @@ CONFIG_BOOT_ELF64=y | |||
| 66 | # | 81 | # |
| 67 | # CPU selection | 82 | # CPU selection |
| 68 | # | 83 | # |
| 69 | # CONFIG_CPU_LOONGSON2 is not set | 84 | # CONFIG_CPU_LOONGSON2E is not set |
| 85 | # CONFIG_CPU_LOONGSON2F is not set | ||
| 70 | # CONFIG_CPU_MIPS32_R1 is not set | 86 | # CONFIG_CPU_MIPS32_R1 is not set |
| 71 | # CONFIG_CPU_MIPS32_R2 is not set | 87 | # CONFIG_CPU_MIPS32_R2 is not set |
| 72 | # CONFIG_CPU_MIPS64_R1 is not set | 88 | # CONFIG_CPU_MIPS64_R1 is not set |
| @@ -79,6 +95,7 @@ CONFIG_BOOT_ELF64=y | |||
| 79 | # CONFIG_CPU_TX49XX is not set | 95 | # CONFIG_CPU_TX49XX is not set |
| 80 | # CONFIG_CPU_R5000 is not set | 96 | # CONFIG_CPU_R5000 is not set |
| 81 | # CONFIG_CPU_R5432 is not set | 97 | # CONFIG_CPU_R5432 is not set |
| 98 | # CONFIG_CPU_R5500 is not set | ||
| 82 | # CONFIG_CPU_R6000 is not set | 99 | # CONFIG_CPU_R6000 is not set |
| 83 | # CONFIG_CPU_NEVADA is not set | 100 | # CONFIG_CPU_NEVADA is not set |
| 84 | # CONFIG_CPU_R8000 is not set | 101 | # CONFIG_CPU_R8000 is not set |
| @@ -86,6 +103,7 @@ CONFIG_CPU_R10000=y | |||
| 86 | # CONFIG_CPU_RM7000 is not set | 103 | # CONFIG_CPU_RM7000 is not set |
| 87 | # CONFIG_CPU_RM9000 is not set | 104 | # CONFIG_CPU_RM9000 is not set |
| 88 | # CONFIG_CPU_SB1 is not set | 105 | # CONFIG_CPU_SB1 is not set |
| 106 | # CONFIG_CPU_CAVIUM_OCTEON is not set | ||
| 89 | CONFIG_SYS_HAS_CPU_R10000=y | 107 | CONFIG_SYS_HAS_CPU_R10000=y |
| 90 | CONFIG_SYS_SUPPORTS_64BIT_KERNEL=y | 108 | CONFIG_SYS_SUPPORTS_64BIT_KERNEL=y |
| 91 | CONFIG_CPU_SUPPORTS_32BIT_KERNEL=y | 109 | CONFIG_CPU_SUPPORTS_32BIT_KERNEL=y |
| @@ -99,6 +117,7 @@ CONFIG_64BIT=y | |||
| 99 | CONFIG_PAGE_SIZE_4KB=y | 117 | CONFIG_PAGE_SIZE_4KB=y |
| 100 | # CONFIG_PAGE_SIZE_8KB is not set | 118 | # CONFIG_PAGE_SIZE_8KB is not set |
| 101 | # CONFIG_PAGE_SIZE_16KB is not set | 119 | # CONFIG_PAGE_SIZE_16KB is not set |
| 120 | # CONFIG_PAGE_SIZE_32KB is not set | ||
| 102 | # CONFIG_PAGE_SIZE_64KB is not set | 121 | # CONFIG_PAGE_SIZE_64KB is not set |
| 103 | CONFIG_CPU_HAS_PREFETCH=y | 122 | CONFIG_CPU_HAS_PREFETCH=y |
| 104 | CONFIG_MIPS_MT_DISABLED=y | 123 | CONFIG_MIPS_MT_DISABLED=y |
| @@ -110,6 +129,7 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 110 | CONFIG_IRQ_PER_CPU=y | 129 | CONFIG_IRQ_PER_CPU=y |
| 111 | CONFIG_CPU_SUPPORTS_HIGHMEM=y | 130 | CONFIG_CPU_SUPPORTS_HIGHMEM=y |
| 112 | CONFIG_ARCH_DISCONTIGMEM_ENABLE=y | 131 | CONFIG_ARCH_DISCONTIGMEM_ENABLE=y |
| 132 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
| 113 | CONFIG_NUMA=y | 133 | CONFIG_NUMA=y |
| 114 | CONFIG_SYS_SUPPORTS_NUMA=y | 134 | CONFIG_SYS_SUPPORTS_NUMA=y |
| 115 | CONFIG_NODES_SHIFT=6 | 135 | CONFIG_NODES_SHIFT=6 |
| @@ -120,16 +140,22 @@ CONFIG_DISCONTIGMEM_MANUAL=y | |||
| 120 | CONFIG_DISCONTIGMEM=y | 140 | CONFIG_DISCONTIGMEM=y |
| 121 | CONFIG_FLAT_NODE_MEM_MAP=y | 141 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 122 | CONFIG_NEED_MULTIPLE_NODES=y | 142 | CONFIG_NEED_MULTIPLE_NODES=y |
| 123 | # CONFIG_SPARSEMEM_STATIC is not set | 143 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 124 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 144 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 125 | CONFIG_MIGRATION=y | 145 | CONFIG_MIGRATION=y |
| 126 | CONFIG_RESOURCES_64BIT=y | 146 | CONFIG_PHYS_ADDR_T_64BIT=y |
| 127 | CONFIG_ZONE_DMA_FLAG=0 | 147 | CONFIG_ZONE_DMA_FLAG=0 |
| 128 | CONFIG_VIRT_TO_BUS=y | 148 | CONFIG_VIRT_TO_BUS=y |
| 149 | # CONFIG_KSM is not set | ||
| 150 | CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 | ||
| 129 | CONFIG_SMP=y | 151 | CONFIG_SMP=y |
| 130 | CONFIG_SYS_SUPPORTS_SMP=y | 152 | CONFIG_SYS_SUPPORTS_SMP=y |
| 131 | CONFIG_NR_CPUS_DEFAULT_64=y | 153 | CONFIG_NR_CPUS_DEFAULT_64=y |
| 132 | CONFIG_NR_CPUS=64 | 154 | CONFIG_NR_CPUS=64 |
| 155 | CONFIG_TICK_ONESHOT=y | ||
| 156 | CONFIG_NO_HZ=y | ||
| 157 | CONFIG_HIGH_RES_TIMERS=y | ||
| 158 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
| 133 | # CONFIG_HZ_48 is not set | 159 | # CONFIG_HZ_48 is not set |
| 134 | # CONFIG_HZ_100 is not set | 160 | # CONFIG_HZ_100 is not set |
| 135 | # CONFIG_HZ_128 is not set | 161 | # CONFIG_HZ_128 is not set |
| @@ -142,13 +168,13 @@ CONFIG_HZ=1000 | |||
| 142 | CONFIG_PREEMPT_NONE=y | 168 | CONFIG_PREEMPT_NONE=y |
| 143 | # CONFIG_PREEMPT_VOLUNTARY is not set | 169 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 144 | # CONFIG_PREEMPT is not set | 170 | # CONFIG_PREEMPT is not set |
| 145 | CONFIG_PREEMPT_BKL=y | ||
| 146 | # CONFIG_MIPS_INSANE_LARGE is not set | 171 | # CONFIG_MIPS_INSANE_LARGE is not set |
| 147 | # CONFIG_KEXEC is not set | 172 | # CONFIG_KEXEC is not set |
| 148 | CONFIG_SECCOMP=y | 173 | CONFIG_SECCOMP=y |
| 149 | CONFIG_LOCKDEP_SUPPORT=y | 174 | CONFIG_LOCKDEP_SUPPORT=y |
| 150 | CONFIG_STACKTRACE_SUPPORT=y | 175 | CONFIG_STACKTRACE_SUPPORT=y |
| 151 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 176 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 177 | CONFIG_CONSTRUCTORS=y | ||
| 152 | 178 | ||
| 153 | # | 179 | # |
| 154 | # General setup | 180 | # General setup |
| @@ -162,20 +188,41 @@ CONFIG_SWAP=y | |||
| 162 | CONFIG_SYSVIPC=y | 188 | CONFIG_SYSVIPC=y |
| 163 | CONFIG_SYSVIPC_SYSCTL=y | 189 | CONFIG_SYSVIPC_SYSCTL=y |
| 164 | CONFIG_POSIX_MQUEUE=y | 190 | CONFIG_POSIX_MQUEUE=y |
| 191 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
| 165 | # CONFIG_BSD_PROCESS_ACCT is not set | 192 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 166 | # CONFIG_TASKSTATS is not set | 193 | # CONFIG_TASKSTATS is not set |
| 167 | # CONFIG_USER_NS is not set | ||
| 168 | # CONFIG_AUDIT is not set | 194 | # CONFIG_AUDIT is not set |
| 195 | |||
| 196 | # | ||
| 197 | # RCU Subsystem | ||
| 198 | # | ||
| 199 | CONFIG_TREE_RCU=y | ||
| 200 | # CONFIG_TREE_PREEMPT_RCU is not set | ||
| 201 | # CONFIG_TINY_RCU is not set | ||
| 202 | # CONFIG_RCU_TRACE is not set | ||
| 203 | CONFIG_RCU_FANOUT=64 | ||
| 204 | # CONFIG_RCU_FANOUT_EXACT is not set | ||
| 205 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 169 | CONFIG_IKCONFIG=y | 206 | CONFIG_IKCONFIG=y |
| 170 | CONFIG_IKCONFIG_PROC=y | 207 | CONFIG_IKCONFIG_PROC=y |
| 171 | CONFIG_LOG_BUF_SHIFT=15 | 208 | CONFIG_LOG_BUF_SHIFT=15 |
| 209 | # CONFIG_GROUP_SCHED is not set | ||
| 172 | CONFIG_CGROUPS=y | 210 | CONFIG_CGROUPS=y |
| 211 | # CONFIG_CGROUP_DEBUG is not set | ||
| 212 | # CONFIG_CGROUP_NS is not set | ||
| 213 | # CONFIG_CGROUP_FREEZER is not set | ||
| 214 | # CONFIG_CGROUP_DEVICE is not set | ||
| 173 | CONFIG_CPUSETS=y | 215 | CONFIG_CPUSETS=y |
| 174 | CONFIG_SYSFS_DEPRECATED=y | 216 | CONFIG_PROC_PID_CPUSET=y |
| 217 | # CONFIG_CGROUP_CPUACCT is not set | ||
| 218 | # CONFIG_RESOURCE_COUNTERS is not set | ||
| 219 | # CONFIG_SYSFS_DEPRECATED_V2 is not set | ||
| 175 | CONFIG_RELAY=y | 220 | CONFIG_RELAY=y |
| 221 | # CONFIG_NAMESPACES is not set | ||
| 176 | # CONFIG_BLK_DEV_INITRD is not set | 222 | # CONFIG_BLK_DEV_INITRD is not set |
| 177 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 223 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 178 | CONFIG_SYSCTL=y | 224 | CONFIG_SYSCTL=y |
| 225 | CONFIG_ANON_INODES=y | ||
| 179 | CONFIG_EMBEDDED=y | 226 | CONFIG_EMBEDDED=y |
| 180 | CONFIG_SYSCTL_SYSCALL=y | 227 | CONFIG_SYSCTL_SYSCALL=y |
| 181 | CONFIG_KALLSYMS=y | 228 | CONFIG_KALLSYMS=y |
| @@ -184,44 +231,92 @@ CONFIG_HOTPLUG=y | |||
| 184 | CONFIG_PRINTK=y | 231 | CONFIG_PRINTK=y |
| 185 | CONFIG_BUG=y | 232 | CONFIG_BUG=y |
| 186 | CONFIG_ELF_CORE=y | 233 | CONFIG_ELF_CORE=y |
| 234 | # CONFIG_PCSPKR_PLATFORM is not set | ||
| 187 | CONFIG_BASE_FULL=y | 235 | CONFIG_BASE_FULL=y |
| 188 | CONFIG_FUTEX=y | 236 | CONFIG_FUTEX=y |
| 189 | CONFIG_ANON_INODES=y | ||
| 190 | CONFIG_EPOLL=y | 237 | CONFIG_EPOLL=y |
| 191 | CONFIG_SIGNALFD=y | 238 | CONFIG_SIGNALFD=y |
| 192 | CONFIG_TIMERFD=y | 239 | CONFIG_TIMERFD=y |
| 193 | CONFIG_EVENTFD=y | 240 | CONFIG_EVENTFD=y |
| 194 | CONFIG_SHMEM=y | 241 | CONFIG_SHMEM=y |
| 242 | CONFIG_AIO=y | ||
| 243 | |||
| 244 | # | ||
| 245 | # Kernel Performance Events And Counters | ||
| 246 | # | ||
| 195 | CONFIG_VM_EVENT_COUNTERS=y | 247 | CONFIG_VM_EVENT_COUNTERS=y |
| 248 | CONFIG_PCI_QUIRKS=y | ||
| 249 | CONFIG_COMPAT_BRK=y | ||
| 196 | CONFIG_SLAB=y | 250 | CONFIG_SLAB=y |
| 197 | # CONFIG_SLUB is not set | 251 | # CONFIG_SLUB is not set |
| 198 | # CONFIG_SLOB is not set | 252 | # CONFIG_SLOB is not set |
| 253 | # CONFIG_PROFILING is not set | ||
| 254 | CONFIG_HAVE_OPROFILE=y | ||
| 255 | CONFIG_HAVE_SYSCALL_WRAPPERS=y | ||
| 256 | CONFIG_USE_GENERIC_SMP_HELPERS=y | ||
| 257 | |||
| 258 | # | ||
| 259 | # GCOV-based kernel profiling | ||
| 260 | # | ||
| 261 | CONFIG_SLOW_WORK=y | ||
| 262 | CONFIG_HAVE_GENERIC_DMA_COHERENT=y | ||
| 263 | CONFIG_SLABINFO=y | ||
| 199 | CONFIG_RT_MUTEXES=y | 264 | CONFIG_RT_MUTEXES=y |
| 200 | # CONFIG_TINY_SHMEM is not set | ||
| 201 | CONFIG_BASE_SMALL=0 | 265 | CONFIG_BASE_SMALL=0 |
| 202 | CONFIG_MODULES=y | 266 | CONFIG_MODULES=y |
| 267 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 203 | CONFIG_MODULE_UNLOAD=y | 268 | CONFIG_MODULE_UNLOAD=y |
| 204 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 269 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 205 | # CONFIG_MODVERSIONS is not set | 270 | # CONFIG_MODVERSIONS is not set |
| 206 | CONFIG_MODULE_SRCVERSION_ALL=y | 271 | CONFIG_MODULE_SRCVERSION_ALL=y |
| 207 | CONFIG_KMOD=y | ||
| 208 | CONFIG_STOP_MACHINE=y | 272 | CONFIG_STOP_MACHINE=y |
| 209 | CONFIG_BLOCK=y | 273 | CONFIG_BLOCK=y |
| 210 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 211 | # CONFIG_BLK_DEV_BSG is not set | 274 | # CONFIG_BLK_DEV_BSG is not set |
| 275 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 276 | # CONFIG_BLK_CGROUP is not set | ||
| 277 | CONFIG_BLOCK_COMPAT=y | ||
| 212 | 278 | ||
| 213 | # | 279 | # |
| 214 | # IO Schedulers | 280 | # IO Schedulers |
| 215 | # | 281 | # |
| 216 | CONFIG_IOSCHED_NOOP=y | 282 | CONFIG_IOSCHED_NOOP=y |
| 217 | CONFIG_IOSCHED_AS=y | ||
| 218 | CONFIG_IOSCHED_DEADLINE=y | 283 | CONFIG_IOSCHED_DEADLINE=y |
| 219 | CONFIG_IOSCHED_CFQ=y | 284 | CONFIG_IOSCHED_CFQ=y |
| 220 | CONFIG_DEFAULT_AS=y | 285 | # CONFIG_CFQ_GROUP_IOSCHED is not set |
| 221 | # CONFIG_DEFAULT_DEADLINE is not set | 286 | # CONFIG_DEFAULT_DEADLINE is not set |
| 222 | # CONFIG_DEFAULT_CFQ is not set | 287 | CONFIG_DEFAULT_CFQ=y |
| 223 | # CONFIG_DEFAULT_NOOP is not set | 288 | # CONFIG_DEFAULT_NOOP is not set |
| 224 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 289 | CONFIG_DEFAULT_IOSCHED="cfq" |
| 290 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
| 291 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
| 292 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
| 293 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
| 294 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
| 295 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
| 296 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
| 297 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
| 298 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
| 299 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
| 300 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
| 301 | # CONFIG_INLINE_READ_LOCK is not set | ||
| 302 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
| 303 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
| 304 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
| 305 | CONFIG_INLINE_READ_UNLOCK=y | ||
| 306 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
| 307 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
| 308 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
| 309 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
| 310 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
| 311 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
| 312 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
| 313 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
| 314 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
| 315 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
| 316 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
| 317 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
| 318 | CONFIG_MUTEX_SPIN_ON_OWNER=y | ||
| 319 | # CONFIG_FREEZER is not set | ||
| 225 | 320 | ||
| 226 | # | 321 | # |
| 227 | # Bus options (PCI, PCMCIA, EISA, ISA, TC) | 322 | # Bus options (PCI, PCMCIA, EISA, ISA, TC) |
| @@ -230,11 +325,10 @@ CONFIG_HW_HAS_PCI=y | |||
| 230 | CONFIG_PCI=y | 325 | CONFIG_PCI=y |
| 231 | CONFIG_PCI_DOMAINS=y | 326 | CONFIG_PCI_DOMAINS=y |
| 232 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 327 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 328 | # CONFIG_PCI_LEGACY is not set | ||
| 329 | # CONFIG_PCI_STUB is not set | ||
| 330 | # CONFIG_PCI_IOV is not set | ||
| 233 | CONFIG_MMU=y | 331 | CONFIG_MMU=y |
| 234 | |||
| 235 | # | ||
| 236 | # PCCARD (PCMCIA/CardBus) support | ||
| 237 | # | ||
| 238 | # CONFIG_PCCARD is not set | 332 | # CONFIG_PCCARD is not set |
| 239 | # CONFIG_HOTPLUG_PCI is not set | 333 | # CONFIG_HOTPLUG_PCI is not set |
| 240 | 334 | ||
| @@ -242,8 +336,9 @@ CONFIG_MMU=y | |||
| 242 | # Executable file formats | 336 | # Executable file formats |
| 243 | # | 337 | # |
| 244 | CONFIG_BINFMT_ELF=y | 338 | CONFIG_BINFMT_ELF=y |
| 339 | CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y | ||
| 340 | # CONFIG_HAVE_AOUT is not set | ||
| 245 | # CONFIG_BINFMT_MISC is not set | 341 | # CONFIG_BINFMT_MISC is not set |
| 246 | # CONFIG_BUILD_ELF64 is not set | ||
| 247 | CONFIG_MIPS32_COMPAT=y | 342 | CONFIG_MIPS32_COMPAT=y |
| 248 | CONFIG_COMPAT=y | 343 | CONFIG_COMPAT=y |
| 249 | CONFIG_SYSVIPC_COMPAT=y | 344 | CONFIG_SYSVIPC_COMPAT=y |
| @@ -255,13 +350,10 @@ CONFIG_BINFMT_ELF32=y | |||
| 255 | # Power management options | 350 | # Power management options |
| 256 | # | 351 | # |
| 257 | CONFIG_PM=y | 352 | CONFIG_PM=y |
| 258 | # CONFIG_PM_LEGACY is not set | ||
| 259 | # CONFIG_PM_DEBUG is not set | 353 | # CONFIG_PM_DEBUG is not set |
| 260 | 354 | # CONFIG_PM_RUNTIME is not set | |
| 261 | # | ||
| 262 | # Networking | ||
| 263 | # | ||
| 264 | CONFIG_NET=y | 355 | CONFIG_NET=y |
| 356 | CONFIG_COMPAT_NETLINK_MESSAGES=y | ||
| 265 | 357 | ||
| 266 | # | 358 | # |
| 267 | # Networking options | 359 | # Networking options |
| @@ -273,6 +365,8 @@ CONFIG_XFRM=y | |||
| 273 | CONFIG_XFRM_USER=m | 365 | CONFIG_XFRM_USER=m |
| 274 | # CONFIG_XFRM_SUB_POLICY is not set | 366 | # CONFIG_XFRM_SUB_POLICY is not set |
| 275 | CONFIG_XFRM_MIGRATE=y | 367 | CONFIG_XFRM_MIGRATE=y |
| 368 | CONFIG_XFRM_STATISTICS=y | ||
| 369 | CONFIG_XFRM_IPCOMP=m | ||
| 276 | CONFIG_NET_KEY=y | 370 | CONFIG_NET_KEY=y |
| 277 | CONFIG_NET_KEY_MIGRATE=y | 371 | CONFIG_NET_KEY_MIGRATE=y |
| 278 | CONFIG_INET=y | 372 | CONFIG_INET=y |
| @@ -292,19 +386,40 @@ CONFIG_IP_PNP=y | |||
| 292 | # CONFIG_INET_ESP is not set | 386 | # CONFIG_INET_ESP is not set |
| 293 | # CONFIG_INET_IPCOMP is not set | 387 | # CONFIG_INET_IPCOMP is not set |
| 294 | # CONFIG_INET_XFRM_TUNNEL is not set | 388 | # CONFIG_INET_XFRM_TUNNEL is not set |
| 295 | # CONFIG_INET_TUNNEL is not set | 389 | CONFIG_INET_TUNNEL=m |
| 296 | CONFIG_INET_XFRM_MODE_TRANSPORT=m | 390 | CONFIG_INET_XFRM_MODE_TRANSPORT=m |
| 297 | CONFIG_INET_XFRM_MODE_TUNNEL=m | 391 | CONFIG_INET_XFRM_MODE_TUNNEL=m |
| 298 | CONFIG_INET_XFRM_MODE_BEET=m | 392 | CONFIG_INET_XFRM_MODE_BEET=m |
| 393 | CONFIG_INET_LRO=y | ||
| 299 | CONFIG_INET_DIAG=y | 394 | CONFIG_INET_DIAG=y |
| 300 | CONFIG_INET_TCP_DIAG=y | 395 | CONFIG_INET_TCP_DIAG=y |
| 301 | # CONFIG_TCP_CONG_ADVANCED is not set | 396 | # CONFIG_TCP_CONG_ADVANCED is not set |
| 302 | CONFIG_TCP_CONG_CUBIC=y | 397 | CONFIG_TCP_CONG_CUBIC=y |
| 303 | CONFIG_DEFAULT_TCP_CONG="cubic" | 398 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 304 | CONFIG_TCP_MD5SIG=y | 399 | CONFIG_TCP_MD5SIG=y |
| 305 | # CONFIG_IPV6 is not set | 400 | CONFIG_IPV6=y |
| 306 | # CONFIG_INET6_XFRM_TUNNEL is not set | 401 | CONFIG_IPV6_PRIVACY=y |
| 307 | # CONFIG_INET6_TUNNEL is not set | 402 | CONFIG_IPV6_ROUTER_PREF=y |
| 403 | CONFIG_IPV6_ROUTE_INFO=y | ||
| 404 | CONFIG_IPV6_OPTIMISTIC_DAD=y | ||
| 405 | CONFIG_INET6_AH=m | ||
| 406 | CONFIG_INET6_ESP=m | ||
| 407 | CONFIG_INET6_IPCOMP=m | ||
| 408 | CONFIG_IPV6_MIP6=m | ||
| 409 | CONFIG_INET6_XFRM_TUNNEL=m | ||
| 410 | CONFIG_INET6_TUNNEL=m | ||
| 411 | CONFIG_INET6_XFRM_MODE_TRANSPORT=m | ||
| 412 | CONFIG_INET6_XFRM_MODE_TUNNEL=m | ||
| 413 | CONFIG_INET6_XFRM_MODE_BEET=m | ||
| 414 | CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m | ||
| 415 | CONFIG_IPV6_SIT=m | ||
| 416 | CONFIG_IPV6_SIT_6RD=y | ||
| 417 | CONFIG_IPV6_NDISC_NODETYPE=y | ||
| 418 | CONFIG_IPV6_TUNNEL=m | ||
| 419 | CONFIG_IPV6_MULTIPLE_TABLES=y | ||
| 420 | CONFIG_IPV6_SUBTREES=y | ||
| 421 | CONFIG_IPV6_MROUTE=y | ||
| 422 | CONFIG_IPV6_PIMSM_V2=y | ||
| 308 | CONFIG_NETWORK_SECMARK=y | 423 | CONFIG_NETWORK_SECMARK=y |
| 309 | # CONFIG_NETFILTER is not set | 424 | # CONFIG_NETFILTER is not set |
| 310 | # CONFIG_IP_DCCP is not set | 425 | # CONFIG_IP_DCCP is not set |
| @@ -314,9 +429,11 @@ CONFIG_IP_SCTP=m | |||
| 314 | # CONFIG_SCTP_HMAC_NONE is not set | 429 | # CONFIG_SCTP_HMAC_NONE is not set |
| 315 | # CONFIG_SCTP_HMAC_SHA1 is not set | 430 | # CONFIG_SCTP_HMAC_SHA1 is not set |
| 316 | CONFIG_SCTP_HMAC_MD5=y | 431 | CONFIG_SCTP_HMAC_MD5=y |
| 432 | # CONFIG_RDS is not set | ||
| 317 | # CONFIG_TIPC is not set | 433 | # CONFIG_TIPC is not set |
| 318 | # CONFIG_ATM is not set | 434 | # CONFIG_ATM is not set |
| 319 | # CONFIG_BRIDGE is not set | 435 | # CONFIG_BRIDGE is not set |
| 436 | # CONFIG_NET_DSA is not set | ||
| 320 | # CONFIG_VLAN_8021Q is not set | 437 | # CONFIG_VLAN_8021Q is not set |
| 321 | # CONFIG_DECNET is not set | 438 | # CONFIG_DECNET is not set |
| 322 | # CONFIG_LLC2 is not set | 439 | # CONFIG_LLC2 is not set |
| @@ -326,12 +443,9 @@ CONFIG_SCTP_HMAC_MD5=y | |||
| 326 | # CONFIG_LAPB is not set | 443 | # CONFIG_LAPB is not set |
| 327 | # CONFIG_ECONET is not set | 444 | # CONFIG_ECONET is not set |
| 328 | # CONFIG_WAN_ROUTER is not set | 445 | # CONFIG_WAN_ROUTER is not set |
| 329 | 446 | # CONFIG_PHONET is not set | |
| 330 | # | 447 | # CONFIG_IEEE802154 is not set |
| 331 | # QoS and/or fair queueing | ||
| 332 | # | ||
| 333 | CONFIG_NET_SCHED=y | 448 | CONFIG_NET_SCHED=y |
| 334 | CONFIG_NET_SCH_FIFO=y | ||
| 335 | 449 | ||
| 336 | # | 450 | # |
| 337 | # Queueing/Scheduling | 451 | # Queueing/Scheduling |
| @@ -340,7 +454,7 @@ CONFIG_NET_SCH_CBQ=m | |||
| 340 | CONFIG_NET_SCH_HTB=m | 454 | CONFIG_NET_SCH_HTB=m |
| 341 | CONFIG_NET_SCH_HFSC=m | 455 | CONFIG_NET_SCH_HFSC=m |
| 342 | CONFIG_NET_SCH_PRIO=m | 456 | CONFIG_NET_SCH_PRIO=m |
| 343 | CONFIG_NET_SCH_RR=m | 457 | CONFIG_NET_SCH_MULTIQ=y |
| 344 | CONFIG_NET_SCH_RED=m | 458 | CONFIG_NET_SCH_RED=m |
| 345 | CONFIG_NET_SCH_SFQ=m | 459 | CONFIG_NET_SCH_SFQ=m |
| 346 | CONFIG_NET_SCH_TEQL=m | 460 | CONFIG_NET_SCH_TEQL=m |
| @@ -348,6 +462,7 @@ CONFIG_NET_SCH_TBF=m | |||
| 348 | CONFIG_NET_SCH_GRED=m | 462 | CONFIG_NET_SCH_GRED=m |
| 349 | CONFIG_NET_SCH_DSMARK=m | 463 | CONFIG_NET_SCH_DSMARK=m |
| 350 | CONFIG_NET_SCH_NETEM=m | 464 | CONFIG_NET_SCH_NETEM=m |
| 465 | # CONFIG_NET_SCH_DRR is not set | ||
| 351 | CONFIG_NET_SCH_INGRESS=m | 466 | CONFIG_NET_SCH_INGRESS=m |
| 352 | 467 | ||
| 353 | # | 468 | # |
| @@ -364,41 +479,63 @@ CONFIG_NET_CLS_U32=m | |||
| 364 | CONFIG_CLS_U32_MARK=y | 479 | CONFIG_CLS_U32_MARK=y |
| 365 | CONFIG_NET_CLS_RSVP=m | 480 | CONFIG_NET_CLS_RSVP=m |
| 366 | CONFIG_NET_CLS_RSVP6=m | 481 | CONFIG_NET_CLS_RSVP6=m |
| 482 | CONFIG_NET_CLS_FLOW=m | ||
| 483 | CONFIG_NET_CLS_CGROUP=y | ||
| 367 | # CONFIG_NET_EMATCH is not set | 484 | # CONFIG_NET_EMATCH is not set |
| 368 | CONFIG_NET_CLS_ACT=y | 485 | CONFIG_NET_CLS_ACT=y |
| 369 | CONFIG_NET_ACT_POLICE=y | 486 | CONFIG_NET_ACT_POLICE=y |
| 370 | CONFIG_NET_ACT_GACT=m | 487 | CONFIG_NET_ACT_GACT=m |
| 371 | CONFIG_GACT_PROB=y | 488 | CONFIG_GACT_PROB=y |
| 372 | CONFIG_NET_ACT_MIRRED=m | 489 | CONFIG_NET_ACT_MIRRED=m |
| 490 | CONFIG_NET_ACT_NAT=m | ||
| 373 | CONFIG_NET_ACT_PEDIT=m | 491 | CONFIG_NET_ACT_PEDIT=m |
| 374 | # CONFIG_NET_ACT_SIMP is not set | 492 | # CONFIG_NET_ACT_SIMP is not set |
| 375 | CONFIG_NET_CLS_POLICE=y | 493 | CONFIG_NET_ACT_SKBEDIT=m |
| 376 | # CONFIG_NET_CLS_IND is not set | 494 | # CONFIG_NET_CLS_IND is not set |
| 495 | CONFIG_NET_SCH_FIFO=y | ||
| 496 | # CONFIG_DCB is not set | ||
| 377 | 497 | ||
| 378 | # | 498 | # |
| 379 | # Network testing | 499 | # Network testing |
| 380 | # | 500 | # |
| 381 | # CONFIG_NET_PKTGEN is not set | 501 | # CONFIG_NET_PKTGEN is not set |
| 382 | # CONFIG_HAMRADIO is not set | 502 | # CONFIG_HAMRADIO is not set |
| 503 | # CONFIG_CAN is not set | ||
| 383 | # CONFIG_IRDA is not set | 504 | # CONFIG_IRDA is not set |
| 384 | # CONFIG_BT is not set | 505 | # CONFIG_BT is not set |
| 385 | # CONFIG_AF_RXRPC is not set | 506 | # CONFIG_AF_RXRPC is not set |
| 386 | 507 | CONFIG_FIB_RULES=y | |
| 387 | # | 508 | CONFIG_WIRELESS=y |
| 388 | # Wireless | ||
| 389 | # | ||
| 390 | CONFIG_CFG80211=m | ||
| 391 | CONFIG_WIRELESS_EXT=y | 509 | CONFIG_WIRELESS_EXT=y |
| 510 | CONFIG_WEXT_CORE=y | ||
| 511 | CONFIG_WEXT_PROC=y | ||
| 512 | CONFIG_WEXT_SPY=y | ||
| 513 | CONFIG_WEXT_PRIV=y | ||
| 514 | CONFIG_CFG80211=m | ||
| 515 | # CONFIG_NL80211_TESTMODE is not set | ||
| 516 | # CONFIG_CFG80211_DEVELOPER_WARNINGS is not set | ||
| 517 | # CONFIG_CFG80211_REG_DEBUG is not set | ||
| 518 | CONFIG_CFG80211_DEFAULT_PS=y | ||
| 519 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
| 520 | CONFIG_CFG80211_WEXT=y | ||
| 521 | CONFIG_WIRELESS_EXT_SYSFS=y | ||
| 522 | CONFIG_LIB80211=m | ||
| 523 | CONFIG_LIB80211_CRYPT_WEP=m | ||
| 524 | CONFIG_LIB80211_CRYPT_CCMP=m | ||
| 525 | CONFIG_LIB80211_CRYPT_TKIP=m | ||
| 526 | # CONFIG_LIB80211_DEBUG is not set | ||
| 392 | CONFIG_MAC80211=m | 527 | CONFIG_MAC80211=m |
| 393 | # CONFIG_MAC80211_DEBUG is not set | 528 | CONFIG_MAC80211_RC_PID=y |
| 394 | CONFIG_IEEE80211=m | 529 | CONFIG_MAC80211_RC_MINSTREL=y |
| 395 | # CONFIG_IEEE80211_DEBUG is not set | 530 | # CONFIG_MAC80211_RC_DEFAULT_PID is not set |
| 396 | CONFIG_IEEE80211_CRYPT_WEP=m | 531 | CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y |
| 397 | CONFIG_IEEE80211_CRYPT_CCMP=m | 532 | CONFIG_MAC80211_RC_DEFAULT="minstrel" |
| 398 | CONFIG_IEEE80211_CRYPT_TKIP=m | 533 | # CONFIG_MAC80211_MESH is not set |
| 399 | CONFIG_IEEE80211_SOFTMAC=m | 534 | CONFIG_MAC80211_LEDS=y |
| 400 | # CONFIG_IEEE80211_SOFTMAC_DEBUG is not set | 535 | # CONFIG_MAC80211_DEBUG_MENU is not set |
| 536 | # CONFIG_WIMAX is not set | ||
| 401 | CONFIG_RFKILL=m | 537 | CONFIG_RFKILL=m |
| 538 | CONFIG_RFKILL_LEDS=y | ||
| 402 | # CONFIG_NET_9P is not set | 539 | # CONFIG_NET_9P is not set |
| 403 | 540 | ||
| 404 | # | 541 | # |
| @@ -408,9 +545,13 @@ CONFIG_RFKILL=m | |||
| 408 | # | 545 | # |
| 409 | # Generic Driver Options | 546 | # Generic Driver Options |
| 410 | # | 547 | # |
| 548 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
| 549 | # CONFIG_DEVTMPFS is not set | ||
| 411 | CONFIG_STANDALONE=y | 550 | CONFIG_STANDALONE=y |
| 412 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 551 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
| 413 | CONFIG_FW_LOADER=y | 552 | CONFIG_FW_LOADER=y |
| 553 | CONFIG_FIRMWARE_IN_KERNEL=y | ||
| 554 | CONFIG_EXTRA_FIRMWARE="" | ||
| 414 | # CONFIG_SYS_HYPERVISOR is not set | 555 | # CONFIG_SYS_HYPERVISOR is not set |
| 415 | CONFIG_CONNECTOR=m | 556 | CONFIG_CONNECTOR=m |
| 416 | # CONFIG_MTD is not set | 557 | # CONFIG_MTD is not set |
| @@ -423,14 +564,19 @@ CONFIG_BLK_DEV=y | |||
| 423 | # CONFIG_BLK_DEV_COW_COMMON is not set | 564 | # CONFIG_BLK_DEV_COW_COMMON is not set |
| 424 | CONFIG_BLK_DEV_LOOP=y | 565 | CONFIG_BLK_DEV_LOOP=y |
| 425 | CONFIG_BLK_DEV_CRYPTOLOOP=m | 566 | CONFIG_BLK_DEV_CRYPTOLOOP=m |
| 567 | # CONFIG_BLK_DEV_DRBD is not set | ||
| 426 | # CONFIG_BLK_DEV_NBD is not set | 568 | # CONFIG_BLK_DEV_NBD is not set |
| 569 | CONFIG_BLK_DEV_OSD=m | ||
| 427 | # CONFIG_BLK_DEV_SX8 is not set | 570 | # CONFIG_BLK_DEV_SX8 is not set |
| 428 | # CONFIG_BLK_DEV_RAM is not set | 571 | # CONFIG_BLK_DEV_RAM is not set |
| 429 | CONFIG_CDROM_PKTCDVD=m | 572 | CONFIG_CDROM_PKTCDVD=m |
| 430 | CONFIG_CDROM_PKTCDVD_BUFFERS=8 | 573 | CONFIG_CDROM_PKTCDVD_BUFFERS=8 |
| 431 | # CONFIG_CDROM_PKTCDVD_WCACHE is not set | 574 | # CONFIG_CDROM_PKTCDVD_WCACHE is not set |
| 432 | CONFIG_ATA_OVER_ETH=m | 575 | CONFIG_ATA_OVER_ETH=m |
| 576 | # CONFIG_BLK_DEV_HD is not set | ||
| 433 | # CONFIG_MISC_DEVICES is not set | 577 | # CONFIG_MISC_DEVICES is not set |
| 578 | CONFIG_EEPROM_93CX6=m | ||
| 579 | CONFIG_HAVE_IDE=y | ||
| 434 | # CONFIG_IDE is not set | 580 | # CONFIG_IDE is not set |
| 435 | 581 | ||
| 436 | # | 582 | # |
| @@ -453,10 +599,6 @@ CONFIG_BLK_DEV_SR=m | |||
| 453 | CONFIG_BLK_DEV_SR_VENDOR=y | 599 | CONFIG_BLK_DEV_SR_VENDOR=y |
| 454 | CONFIG_CHR_DEV_SG=m | 600 | CONFIG_CHR_DEV_SG=m |
| 455 | CONFIG_CHR_DEV_SCH=m | 601 | CONFIG_CHR_DEV_SCH=m |
| 456 | |||
| 457 | # | ||
| 458 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
| 459 | # | ||
| 460 | # CONFIG_SCSI_MULTI_LUN is not set | 602 | # CONFIG_SCSI_MULTI_LUN is not set |
| 461 | CONFIG_SCSI_CONSTANTS=y | 603 | CONFIG_SCSI_CONSTANTS=y |
| 462 | CONFIG_SCSI_LOGGING=y | 604 | CONFIG_SCSI_LOGGING=y |
| @@ -471,11 +613,18 @@ CONFIG_SCSI_FC_ATTRS=y | |||
| 471 | CONFIG_SCSI_ISCSI_ATTRS=m | 613 | CONFIG_SCSI_ISCSI_ATTRS=m |
| 472 | CONFIG_SCSI_SAS_ATTRS=m | 614 | CONFIG_SCSI_SAS_ATTRS=m |
| 473 | CONFIG_SCSI_SAS_LIBSAS=m | 615 | CONFIG_SCSI_SAS_LIBSAS=m |
| 616 | CONFIG_SCSI_SAS_HOST_SMP=y | ||
| 474 | # CONFIG_SCSI_SAS_LIBSAS_DEBUG is not set | 617 | # CONFIG_SCSI_SAS_LIBSAS_DEBUG is not set |
| 618 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
| 475 | CONFIG_SCSI_LOWLEVEL=y | 619 | CONFIG_SCSI_LOWLEVEL=y |
| 476 | # CONFIG_ISCSI_TCP is not set | 620 | # CONFIG_ISCSI_TCP is not set |
| 621 | CONFIG_SCSI_CXGB3_ISCSI=m | ||
| 622 | CONFIG_SCSI_BNX2_ISCSI=m | ||
| 623 | CONFIG_BE2ISCSI=m | ||
| 477 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 624 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
| 625 | CONFIG_SCSI_HPSA=m | ||
| 478 | # CONFIG_SCSI_3W_9XXX is not set | 626 | # CONFIG_SCSI_3W_9XXX is not set |
| 627 | CONFIG_SCSI_3W_SAS=m | ||
| 479 | # CONFIG_SCSI_ACARD is not set | 628 | # CONFIG_SCSI_ACARD is not set |
| 480 | # CONFIG_SCSI_AACRAID is not set | 629 | # CONFIG_SCSI_AACRAID is not set |
| 481 | # CONFIG_SCSI_AIC7XXX is not set | 630 | # CONFIG_SCSI_AIC7XXX is not set |
| @@ -483,11 +632,21 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 483 | # CONFIG_SCSI_AIC79XX is not set | 632 | # CONFIG_SCSI_AIC79XX is not set |
| 484 | CONFIG_SCSI_AIC94XX=m | 633 | CONFIG_SCSI_AIC94XX=m |
| 485 | # CONFIG_AIC94XX_DEBUG is not set | 634 | # CONFIG_AIC94XX_DEBUG is not set |
| 635 | CONFIG_SCSI_MVSAS=m | ||
| 636 | # CONFIG_SCSI_MVSAS_DEBUG is not set | ||
| 637 | CONFIG_SCSI_DPT_I2O=m | ||
| 638 | # CONFIG_SCSI_ADVANSYS is not set | ||
| 486 | # CONFIG_SCSI_ARCMSR is not set | 639 | # CONFIG_SCSI_ARCMSR is not set |
| 487 | # CONFIG_MEGARAID_NEWGEN is not set | 640 | # CONFIG_MEGARAID_NEWGEN is not set |
| 488 | # CONFIG_MEGARAID_LEGACY is not set | 641 | # CONFIG_MEGARAID_LEGACY is not set |
| 489 | # CONFIG_MEGARAID_SAS is not set | 642 | # CONFIG_MEGARAID_SAS is not set |
| 643 | CONFIG_SCSI_MPT2SAS=m | ||
| 644 | CONFIG_SCSI_MPT2SAS_MAX_SGE=128 | ||
| 645 | # CONFIG_SCSI_MPT2SAS_LOGGING is not set | ||
| 490 | # CONFIG_SCSI_HPTIOP is not set | 646 | # CONFIG_SCSI_HPTIOP is not set |
| 647 | CONFIG_LIBFC=m | ||
| 648 | # CONFIG_LIBFCOE is not set | ||
| 649 | # CONFIG_FCOE is not set | ||
| 491 | # CONFIG_SCSI_DMX3191D is not set | 650 | # CONFIG_SCSI_DMX3191D is not set |
| 492 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 651 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
| 493 | # CONFIG_SCSI_IPS is not set | 652 | # CONFIG_SCSI_IPS is not set |
| @@ -502,16 +661,31 @@ CONFIG_SCSI_QLOGIC_1280=y | |||
| 502 | # CONFIG_SCSI_DC395x is not set | 661 | # CONFIG_SCSI_DC395x is not set |
| 503 | # CONFIG_SCSI_DC390T is not set | 662 | # CONFIG_SCSI_DC390T is not set |
| 504 | # CONFIG_SCSI_DEBUG is not set | 663 | # CONFIG_SCSI_DEBUG is not set |
| 664 | CONFIG_SCSI_PMCRAID=m | ||
| 665 | # CONFIG_SCSI_PM8001 is not set | ||
| 505 | # CONFIG_SCSI_SRP is not set | 666 | # CONFIG_SCSI_SRP is not set |
| 667 | CONFIG_SCSI_BFA_FC=m | ||
| 668 | CONFIG_SCSI_DH=m | ||
| 669 | CONFIG_SCSI_DH_RDAC=m | ||
| 670 | CONFIG_SCSI_DH_HP_SW=m | ||
| 671 | CONFIG_SCSI_DH_EMC=m | ||
| 672 | CONFIG_SCSI_DH_ALUA=m | ||
| 673 | CONFIG_SCSI_OSD_INITIATOR=m | ||
| 674 | CONFIG_SCSI_OSD_ULD=m | ||
| 675 | CONFIG_SCSI_OSD_DPRINT_SENSE=1 | ||
| 676 | # CONFIG_SCSI_OSD_DEBUG is not set | ||
| 506 | # CONFIG_ATA is not set | 677 | # CONFIG_ATA is not set |
| 507 | CONFIG_MD=y | 678 | CONFIG_MD=y |
| 508 | CONFIG_BLK_DEV_MD=y | 679 | CONFIG_BLK_DEV_MD=y |
| 680 | CONFIG_MD_AUTODETECT=y | ||
| 509 | CONFIG_MD_LINEAR=m | 681 | CONFIG_MD_LINEAR=m |
| 510 | CONFIG_MD_RAID0=y | 682 | CONFIG_MD_RAID0=y |
| 511 | CONFIG_MD_RAID1=y | 683 | CONFIG_MD_RAID1=y |
| 512 | CONFIG_MD_RAID10=m | 684 | CONFIG_MD_RAID10=m |
| 513 | CONFIG_MD_RAID456=y | 685 | CONFIG_MD_RAID456=y |
| 514 | CONFIG_MD_RAID5_RESHAPE=y | 686 | # CONFIG_MULTICORE_RAID456 is not set |
| 687 | CONFIG_MD_RAID6_PQ=y | ||
| 688 | # CONFIG_ASYNC_RAID6_TEST is not set | ||
| 515 | CONFIG_MD_MULTIPATH=m | 689 | CONFIG_MD_MULTIPATH=m |
| 516 | CONFIG_MD_FAULTY=m | 690 | CONFIG_MD_FAULTY=m |
| 517 | CONFIG_BLK_DEV_DM=m | 691 | CONFIG_BLK_DEV_DM=m |
| @@ -519,36 +693,39 @@ CONFIG_BLK_DEV_DM=m | |||
| 519 | CONFIG_DM_CRYPT=m | 693 | CONFIG_DM_CRYPT=m |
| 520 | CONFIG_DM_SNAPSHOT=m | 694 | CONFIG_DM_SNAPSHOT=m |
| 521 | CONFIG_DM_MIRROR=m | 695 | CONFIG_DM_MIRROR=m |
| 696 | CONFIG_DM_LOG_USERSPACE=m | ||
| 522 | CONFIG_DM_ZERO=m | 697 | CONFIG_DM_ZERO=m |
| 523 | CONFIG_DM_MULTIPATH=m | 698 | CONFIG_DM_MULTIPATH=m |
| 524 | CONFIG_DM_MULTIPATH_EMC=m | 699 | CONFIG_DM_MULTIPATH_QL=m |
| 525 | CONFIG_DM_MULTIPATH_RDAC=m | 700 | CONFIG_DM_MULTIPATH_ST=m |
| 526 | # CONFIG_DM_DELAY is not set | 701 | # CONFIG_DM_DELAY is not set |
| 702 | CONFIG_DM_UEVENT=y | ||
| 703 | # CONFIG_FUSION is not set | ||
| 527 | 704 | ||
| 528 | # | 705 | # |
| 529 | # Fusion MPT device support | 706 | # IEEE 1394 (FireWire) support |
| 530 | # | 707 | # |
| 531 | # CONFIG_FUSION is not set | ||
| 532 | # CONFIG_FUSION_SPI is not set | ||
| 533 | # CONFIG_FUSION_FC is not set | ||
| 534 | # CONFIG_FUSION_SAS is not set | ||
| 535 | 708 | ||
| 536 | # | 709 | # |
| 537 | # IEEE 1394 (FireWire) support | 710 | # You can enable one or both FireWire driver stacks. |
| 711 | # | ||
| 712 | |||
| 713 | # | ||
| 714 | # The newer stack is recommended. | ||
| 538 | # | 715 | # |
| 539 | # CONFIG_FIREWIRE is not set | 716 | # CONFIG_FIREWIRE is not set |
| 540 | # CONFIG_IEEE1394 is not set | 717 | # CONFIG_IEEE1394 is not set |
| 541 | # CONFIG_I2O is not set | 718 | # CONFIG_I2O is not set |
| 542 | CONFIG_NETDEVICES=y | 719 | CONFIG_NETDEVICES=y |
| 543 | CONFIG_NETDEVICES_MULTIQUEUE=y | ||
| 544 | CONFIG_IFB=m | 720 | CONFIG_IFB=m |
| 545 | # CONFIG_DUMMY is not set | 721 | # CONFIG_DUMMY is not set |
| 546 | # CONFIG_BONDING is not set | 722 | # CONFIG_BONDING is not set |
| 547 | CONFIG_MACVLAN=m | 723 | CONFIG_MACVLAN=m |
| 548 | # CONFIG_EQUALIZER is not set | 724 | # CONFIG_EQUALIZER is not set |
| 549 | # CONFIG_TUN is not set | 725 | # CONFIG_TUN is not set |
| 726 | CONFIG_VETH=m | ||
| 550 | # CONFIG_ARCNET is not set | 727 | # CONFIG_ARCNET is not set |
| 551 | CONFIG_PHYLIB=m | 728 | CONFIG_PHYLIB=y |
| 552 | 729 | ||
| 553 | # | 730 | # |
| 554 | # MII PHY device drivers | 731 | # MII PHY device drivers |
| @@ -562,23 +739,51 @@ CONFIG_VITESSE_PHY=m | |||
| 562 | CONFIG_SMSC_PHY=m | 739 | CONFIG_SMSC_PHY=m |
| 563 | # CONFIG_BROADCOM_PHY is not set | 740 | # CONFIG_BROADCOM_PHY is not set |
| 564 | CONFIG_ICPLUS_PHY=m | 741 | CONFIG_ICPLUS_PHY=m |
| 742 | CONFIG_REALTEK_PHY=m | ||
| 743 | CONFIG_NATIONAL_PHY=m | ||
| 744 | CONFIG_STE10XP=m | ||
| 745 | CONFIG_LSI_ET1011C_PHY=m | ||
| 565 | # CONFIG_FIXED_PHY is not set | 746 | # CONFIG_FIXED_PHY is not set |
| 747 | CONFIG_MDIO_BITBANG=m | ||
| 566 | CONFIG_NET_ETHERNET=y | 748 | CONFIG_NET_ETHERNET=y |
| 567 | CONFIG_MII=y | 749 | CONFIG_MII=y |
| 568 | CONFIG_AX88796=m | 750 | CONFIG_AX88796=m |
| 751 | CONFIG_AX88796_93CX6=y | ||
| 569 | CONFIG_SGI_IOC3_ETH=y | 752 | CONFIG_SGI_IOC3_ETH=y |
| 570 | # CONFIG_HAPPYMEAL is not set | 753 | # CONFIG_HAPPYMEAL is not set |
| 571 | # CONFIG_SUNGEM is not set | 754 | # CONFIG_SUNGEM is not set |
| 572 | # CONFIG_CASSINI is not set | 755 | # CONFIG_CASSINI is not set |
| 573 | # CONFIG_NET_VENDOR_3COM is not set | 756 | # CONFIG_NET_VENDOR_3COM is not set |
| 757 | CONFIG_SMC91X=m | ||
| 574 | # CONFIG_DM9000 is not set | 758 | # CONFIG_DM9000 is not set |
| 759 | CONFIG_ETHOC=m | ||
| 760 | CONFIG_SMSC911X=m | ||
| 761 | CONFIG_DNET=m | ||
| 575 | # CONFIG_NET_TULIP is not set | 762 | # CONFIG_NET_TULIP is not set |
| 576 | # CONFIG_HP100 is not set | 763 | # CONFIG_HP100 is not set |
| 764 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
| 765 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
| 766 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
| 767 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
| 768 | # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set | ||
| 769 | # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set | ||
| 770 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | ||
| 577 | # CONFIG_NET_PCI is not set | 771 | # CONFIG_NET_PCI is not set |
| 772 | CONFIG_B44=m | ||
| 773 | CONFIG_B44_PCI_AUTOSELECT=y | ||
| 774 | CONFIG_B44_PCICORE_AUTOSELECT=y | ||
| 775 | CONFIG_B44_PCI=y | ||
| 776 | CONFIG_KS8842=m | ||
| 777 | CONFIG_KS8851_MLL=m | ||
| 778 | CONFIG_ATL2=m | ||
| 578 | CONFIG_NETDEV_1000=y | 779 | CONFIG_NETDEV_1000=y |
| 579 | # CONFIG_ACENIC is not set | 780 | # CONFIG_ACENIC is not set |
| 580 | # CONFIG_DL2K is not set | 781 | # CONFIG_DL2K is not set |
| 581 | # CONFIG_E1000 is not set | 782 | # CONFIG_E1000 is not set |
| 783 | CONFIG_E1000E=m | ||
| 784 | CONFIG_IP1000=m | ||
| 785 | CONFIG_IGB=m | ||
| 786 | CONFIG_IGBVF=m | ||
| 582 | # CONFIG_NS83820 is not set | 787 | # CONFIG_NS83820 is not set |
| 583 | # CONFIG_HAMACHI is not set | 788 | # CONFIG_HAMACHI is not set |
| 584 | # CONFIG_YELLOWFIN is not set | 789 | # CONFIG_YELLOWFIN is not set |
| @@ -588,24 +793,75 @@ CONFIG_NETDEV_1000=y | |||
| 588 | # CONFIG_SKY2 is not set | 793 | # CONFIG_SKY2 is not set |
| 589 | CONFIG_VIA_VELOCITY=m | 794 | CONFIG_VIA_VELOCITY=m |
| 590 | # CONFIG_TIGON3 is not set | 795 | # CONFIG_TIGON3 is not set |
| 591 | # CONFIG_BNX2 is not set | 796 | CONFIG_BNX2=m |
| 797 | CONFIG_CNIC=m | ||
| 592 | CONFIG_QLA3XXX=m | 798 | CONFIG_QLA3XXX=m |
| 593 | # CONFIG_ATL1 is not set | 799 | # CONFIG_ATL1 is not set |
| 800 | CONFIG_ATL1E=m | ||
| 801 | CONFIG_ATL1C=m | ||
| 802 | CONFIG_JME=m | ||
| 594 | CONFIG_NETDEV_10000=y | 803 | CONFIG_NETDEV_10000=y |
| 804 | CONFIG_MDIO=m | ||
| 595 | # CONFIG_CHELSIO_T1 is not set | 805 | # CONFIG_CHELSIO_T1 is not set |
| 806 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
| 596 | CONFIG_CHELSIO_T3=m | 807 | CONFIG_CHELSIO_T3=m |
| 808 | CONFIG_ENIC=m | ||
| 809 | CONFIG_IXGBE=m | ||
| 597 | # CONFIG_IXGB is not set | 810 | # CONFIG_IXGB is not set |
| 598 | # CONFIG_S2IO is not set | 811 | # CONFIG_S2IO is not set |
| 812 | CONFIG_VXGE=m | ||
| 813 | # CONFIG_VXGE_DEBUG_TRACE_ALL is not set | ||
| 599 | # CONFIG_MYRI10GE is not set | 814 | # CONFIG_MYRI10GE is not set |
| 600 | CONFIG_NETXEN_NIC=m | 815 | CONFIG_NETXEN_NIC=m |
| 601 | # CONFIG_MLX4_CORE is not set | 816 | CONFIG_NIU=m |
| 817 | CONFIG_MLX4_EN=m | ||
| 818 | CONFIG_MLX4_CORE=m | ||
| 819 | # CONFIG_MLX4_DEBUG is not set | ||
| 820 | CONFIG_TEHUTI=m | ||
| 821 | CONFIG_BNX2X=m | ||
| 822 | CONFIG_QLGE=m | ||
| 823 | CONFIG_SFC=m | ||
| 824 | CONFIG_BE2NET=m | ||
| 602 | # CONFIG_TR is not set | 825 | # CONFIG_TR is not set |
| 603 | 826 | CONFIG_WLAN=y | |
| 604 | # | 827 | CONFIG_LIBERTAS_THINFIRM=m |
| 605 | # Wireless LAN | 828 | CONFIG_ATMEL=m |
| 606 | # | 829 | CONFIG_PCI_ATMEL=m |
| 607 | # CONFIG_WLAN_PRE80211 is not set | 830 | CONFIG_PRISM54=m |
| 608 | CONFIG_WLAN_80211=y | 831 | CONFIG_RTL8180=m |
| 832 | CONFIG_ADM8211=m | ||
| 833 | # CONFIG_MAC80211_HWSIM is not set | ||
| 834 | CONFIG_MWL8K=m | ||
| 835 | CONFIG_ATH_COMMON=m | ||
| 836 | # CONFIG_ATH_DEBUG is not set | ||
| 837 | CONFIG_ATH5K=m | ||
| 838 | # CONFIG_ATH5K_DEBUG is not set | ||
| 839 | CONFIG_ATH9K_HW=m | ||
| 840 | CONFIG_ATH9K_COMMON=m | ||
| 841 | CONFIG_ATH9K=m | ||
| 842 | CONFIG_B43=m | ||
| 843 | CONFIG_B43_PCI_AUTOSELECT=y | ||
| 844 | CONFIG_B43_PCICORE_AUTOSELECT=y | ||
| 845 | CONFIG_B43_PHY_LP=y | ||
| 846 | CONFIG_B43_LEDS=y | ||
| 847 | CONFIG_B43_HWRNG=y | ||
| 848 | # CONFIG_B43_DEBUG is not set | ||
| 849 | CONFIG_B43LEGACY=m | ||
| 850 | CONFIG_B43LEGACY_PCI_AUTOSELECT=y | ||
| 851 | CONFIG_B43LEGACY_PCICORE_AUTOSELECT=y | ||
| 852 | CONFIG_B43LEGACY_LEDS=y | ||
| 853 | CONFIG_B43LEGACY_HWRNG=y | ||
| 854 | # CONFIG_B43LEGACY_DEBUG is not set | ||
| 855 | CONFIG_B43LEGACY_DMA=y | ||
| 856 | CONFIG_B43LEGACY_PIO=y | ||
| 857 | CONFIG_B43LEGACY_DMA_AND_PIO_MODE=y | ||
| 858 | # CONFIG_B43LEGACY_DMA_MODE is not set | ||
| 859 | # CONFIG_B43LEGACY_PIO_MODE is not set | ||
| 860 | CONFIG_HOSTAP=m | ||
| 861 | CONFIG_HOSTAP_FIRMWARE=y | ||
| 862 | CONFIG_HOSTAP_FIRMWARE_NVRAM=y | ||
| 863 | CONFIG_HOSTAP_PLX=m | ||
| 864 | CONFIG_HOSTAP_PCI=m | ||
| 609 | CONFIG_IPW2100=m | 865 | CONFIG_IPW2100=m |
| 610 | CONFIG_IPW2100_MONITOR=y | 866 | CONFIG_IPW2100_MONITOR=y |
| 611 | CONFIG_IPW2100_DEBUG=y | 867 | CONFIG_IPW2100_DEBUG=y |
| @@ -615,38 +871,57 @@ CONFIG_IPW2200_RADIOTAP=y | |||
| 615 | CONFIG_IPW2200_PROMISCUOUS=y | 871 | CONFIG_IPW2200_PROMISCUOUS=y |
| 616 | CONFIG_IPW2200_QOS=y | 872 | CONFIG_IPW2200_QOS=y |
| 617 | CONFIG_IPW2200_DEBUG=y | 873 | CONFIG_IPW2200_DEBUG=y |
| 874 | CONFIG_LIBIPW=m | ||
| 875 | # CONFIG_LIBIPW_DEBUG is not set | ||
| 876 | CONFIG_IWLWIFI=m | ||
| 877 | CONFIG_IWLWIFI_SPECTRUM_MEASUREMENT=y | ||
| 878 | # CONFIG_IWLWIFI_DEBUG is not set | ||
| 879 | CONFIG_IWLAGN=m | ||
| 880 | CONFIG_IWL4965=y | ||
| 881 | CONFIG_IWL5000=y | ||
| 882 | CONFIG_IWL3945=m | ||
| 883 | CONFIG_IWL3945_SPECTRUM_MEASUREMENT=y | ||
| 618 | CONFIG_LIBERTAS=m | 884 | CONFIG_LIBERTAS=m |
| 619 | # CONFIG_LIBERTAS_DEBUG is not set | 885 | # CONFIG_LIBERTAS_DEBUG is not set |
| 620 | CONFIG_HERMES=m | 886 | CONFIG_HERMES=m |
| 887 | # CONFIG_HERMES_CACHE_FW_ON_INIT is not set | ||
| 621 | CONFIG_PLX_HERMES=m | 888 | CONFIG_PLX_HERMES=m |
| 622 | CONFIG_TMD_HERMES=m | 889 | CONFIG_TMD_HERMES=m |
| 623 | CONFIG_NORTEL_HERMES=m | 890 | CONFIG_NORTEL_HERMES=m |
| 624 | CONFIG_PCI_HERMES=m | 891 | CONFIG_PCI_HERMES=m |
| 625 | CONFIG_ATMEL=m | 892 | CONFIG_P54_COMMON=m |
| 626 | CONFIG_PCI_ATMEL=m | 893 | CONFIG_P54_PCI=m |
| 627 | CONFIG_PRISM54=m | 894 | CONFIG_P54_LEDS=y |
| 628 | CONFIG_HOSTAP=m | 895 | CONFIG_RT2X00=m |
| 629 | CONFIG_HOSTAP_FIRMWARE=y | 896 | CONFIG_RT2400PCI=m |
| 630 | CONFIG_HOSTAP_FIRMWARE_NVRAM=y | 897 | CONFIG_RT2500PCI=m |
| 631 | CONFIG_HOSTAP_PLX=m | 898 | CONFIG_RT61PCI=m |
| 632 | CONFIG_HOSTAP_PCI=m | 899 | CONFIG_RT2800PCI_PCI=m |
| 633 | CONFIG_BCM43XX=m | 900 | CONFIG_RT2800PCI=m |
| 634 | CONFIG_BCM43XX_DEBUG=y | 901 | CONFIG_RT2800_LIB=m |
| 635 | CONFIG_BCM43XX_DMA=y | 902 | CONFIG_RT2X00_LIB_PCI=m |
| 636 | CONFIG_BCM43XX_PIO=y | 903 | CONFIG_RT2X00_LIB=m |
| 637 | CONFIG_BCM43XX_DMA_AND_PIO_MODE=y | 904 | CONFIG_RT2X00_LIB_HT=y |
| 638 | # CONFIG_BCM43XX_DMA_MODE is not set | 905 | CONFIG_RT2X00_LIB_FIRMWARE=y |
| 639 | # CONFIG_BCM43XX_PIO_MODE is not set | 906 | CONFIG_RT2X00_LIB_CRYPTO=y |
| 907 | CONFIG_RT2X00_LIB_LEDS=y | ||
| 908 | # CONFIG_RT2X00_DEBUG is not set | ||
| 909 | CONFIG_WL12XX=m | ||
| 910 | CONFIG_WL1251=m | ||
| 911 | |||
| 912 | # | ||
| 913 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 914 | # | ||
| 640 | # CONFIG_WAN is not set | 915 | # CONFIG_WAN is not set |
| 641 | # CONFIG_FDDI is not set | 916 | # CONFIG_FDDI is not set |
| 642 | # CONFIG_HIPPI is not set | 917 | # CONFIG_HIPPI is not set |
| 643 | # CONFIG_PPP is not set | 918 | # CONFIG_PPP is not set |
| 644 | # CONFIG_SLIP is not set | 919 | # CONFIG_SLIP is not set |
| 645 | # CONFIG_NET_FC is not set | 920 | # CONFIG_NET_FC is not set |
| 646 | # CONFIG_SHAPER is not set | ||
| 647 | # CONFIG_NETCONSOLE is not set | 921 | # CONFIG_NETCONSOLE is not set |
| 648 | # CONFIG_NETPOLL is not set | 922 | # CONFIG_NETPOLL is not set |
| 649 | # CONFIG_NET_POLL_CONTROLLER is not set | 923 | # CONFIG_NET_POLL_CONTROLLER is not set |
| 924 | # CONFIG_VMXNET3 is not set | ||
| 650 | # CONFIG_ISDN is not set | 925 | # CONFIG_ISDN is not set |
| 651 | # CONFIG_PHONE is not set | 926 | # CONFIG_PHONE is not set |
| 652 | 927 | ||
| @@ -664,13 +939,16 @@ CONFIG_SERIO_SERPORT=y | |||
| 664 | # CONFIG_SERIO_PCIPS2 is not set | 939 | # CONFIG_SERIO_PCIPS2 is not set |
| 665 | CONFIG_SERIO_LIBPS2=m | 940 | CONFIG_SERIO_LIBPS2=m |
| 666 | CONFIG_SERIO_RAW=m | 941 | CONFIG_SERIO_RAW=m |
| 942 | CONFIG_SERIO_ALTERA_PS2=m | ||
| 667 | # CONFIG_GAMEPORT is not set | 943 | # CONFIG_GAMEPORT is not set |
| 668 | 944 | ||
| 669 | # | 945 | # |
| 670 | # Character devices | 946 | # Character devices |
| 671 | # | 947 | # |
| 672 | # CONFIG_VT is not set | 948 | # CONFIG_VT is not set |
| 949 | CONFIG_DEVKMEM=y | ||
| 673 | # CONFIG_SERIAL_NONSTANDARD is not set | 950 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 951 | CONFIG_NOZOMI=m | ||
| 674 | 952 | ||
| 675 | # | 953 | # |
| 676 | # Serial drivers | 954 | # Serial drivers |
| @@ -693,95 +971,258 @@ CONFIG_SERIAL_CORE=y | |||
| 693 | CONFIG_SERIAL_CORE_CONSOLE=y | 971 | CONFIG_SERIAL_CORE_CONSOLE=y |
| 694 | # CONFIG_SERIAL_JSM is not set | 972 | # CONFIG_SERIAL_JSM is not set |
| 695 | CONFIG_UNIX98_PTYS=y | 973 | CONFIG_UNIX98_PTYS=y |
| 974 | CONFIG_DEVPTS_MULTIPLE_INSTANCES=y | ||
| 696 | CONFIG_LEGACY_PTYS=y | 975 | CONFIG_LEGACY_PTYS=y |
| 697 | CONFIG_LEGACY_PTY_COUNT=256 | 976 | CONFIG_LEGACY_PTY_COUNT=256 |
| 698 | # CONFIG_IPMI_HANDLER is not set | 977 | # CONFIG_IPMI_HANDLER is not set |
| 699 | # CONFIG_WATCHDOG is not set | ||
| 700 | CONFIG_HW_RANDOM=m | 978 | CONFIG_HW_RANDOM=m |
| 701 | # CONFIG_RTC is not set | 979 | CONFIG_HW_RANDOM_TIMERIOMEM=m |
| 702 | # CONFIG_R3964 is not set | 980 | # CONFIG_R3964 is not set |
| 703 | # CONFIG_APPLICOM is not set | 981 | # CONFIG_APPLICOM is not set |
| 704 | # CONFIG_DRM is not set | ||
| 705 | # CONFIG_RAW_DRIVER is not set | 982 | # CONFIG_RAW_DRIVER is not set |
| 706 | # CONFIG_TCG_TPM is not set | 983 | # CONFIG_TCG_TPM is not set |
| 707 | CONFIG_DEVPORT=y | 984 | CONFIG_DEVPORT=y |
| 708 | # CONFIG_I2C is not set | 985 | CONFIG_I2C=m |
| 986 | CONFIG_I2C_BOARDINFO=y | ||
| 987 | CONFIG_I2C_COMPAT=y | ||
| 988 | CONFIG_I2C_CHARDEV=m | ||
| 989 | CONFIG_I2C_HELPER_AUTO=y | ||
| 990 | CONFIG_I2C_ALGOBIT=m | ||
| 991 | CONFIG_I2C_ALGOPCA=m | ||
| 992 | |||
| 993 | # | ||
| 994 | # I2C Hardware Bus support | ||
| 995 | # | ||
| 996 | |||
| 997 | # | ||
| 998 | # PC SMBus host controller drivers | ||
| 999 | # | ||
| 1000 | CONFIG_I2C_ALI1535=m | ||
| 1001 | CONFIG_I2C_ALI1563=m | ||
| 1002 | CONFIG_I2C_ALI15X3=m | ||
| 1003 | CONFIG_I2C_AMD756=m | ||
| 1004 | CONFIG_I2C_AMD8111=m | ||
| 1005 | CONFIG_I2C_I801=m | ||
| 1006 | CONFIG_I2C_ISCH=m | ||
| 1007 | CONFIG_I2C_PIIX4=m | ||
| 1008 | CONFIG_I2C_NFORCE2=m | ||
| 1009 | CONFIG_I2C_SIS5595=m | ||
| 1010 | CONFIG_I2C_SIS630=m | ||
| 1011 | CONFIG_I2C_SIS96X=m | ||
| 1012 | CONFIG_I2C_VIA=m | ||
| 1013 | CONFIG_I2C_VIAPRO=m | ||
| 709 | 1014 | ||
| 710 | # | 1015 | # |
| 711 | # SPI support | 1016 | # I2C system bus drivers (mostly embedded / system-on-chip) |
| 712 | # | 1017 | # |
| 1018 | CONFIG_I2C_OCORES=m | ||
| 1019 | CONFIG_I2C_SIMTEC=m | ||
| 1020 | |||
| 1021 | # | ||
| 1022 | # External I2C/SMBus adapter drivers | ||
| 1023 | # | ||
| 1024 | CONFIG_I2C_PARPORT_LIGHT=m | ||
| 1025 | CONFIG_I2C_TAOS_EVM=m | ||
| 1026 | |||
| 1027 | # | ||
| 1028 | # Other I2C/SMBus bus drivers | ||
| 1029 | # | ||
| 1030 | CONFIG_I2C_PCA_PLATFORM=m | ||
| 1031 | CONFIG_I2C_STUB=m | ||
| 1032 | |||
| 1033 | # | ||
| 1034 | # Miscellaneous I2C Chip support | ||
| 1035 | # | ||
| 1036 | CONFIG_SENSORS_TSL2550=m | ||
| 1037 | # CONFIG_I2C_DEBUG_CORE is not set | ||
| 1038 | # CONFIG_I2C_DEBUG_ALGO is not set | ||
| 1039 | # CONFIG_I2C_DEBUG_BUS is not set | ||
| 1040 | # CONFIG_I2C_DEBUG_CHIP is not set | ||
| 713 | # CONFIG_SPI is not set | 1041 | # CONFIG_SPI is not set |
| 714 | # CONFIG_SPI_MASTER is not set | 1042 | |
| 1043 | # | ||
| 1044 | # PPS support | ||
| 1045 | # | ||
| 1046 | CONFIG_PPS=m | ||
| 1047 | # CONFIG_PPS_DEBUG is not set | ||
| 715 | # CONFIG_W1 is not set | 1048 | # CONFIG_W1 is not set |
| 716 | # CONFIG_POWER_SUPPLY is not set | 1049 | # CONFIG_POWER_SUPPLY is not set |
| 717 | # CONFIG_HWMON is not set | 1050 | # CONFIG_HWMON is not set |
| 1051 | CONFIG_THERMAL=m | ||
| 1052 | # CONFIG_WATCHDOG is not set | ||
| 1053 | CONFIG_SSB_POSSIBLE=y | ||
| 718 | 1054 | ||
| 719 | # | 1055 | # |
| 720 | # Multifunction device drivers | 1056 | # Sonics Silicon Backplane |
| 721 | # | 1057 | # |
| 722 | # CONFIG_MFD_SM501 is not set | 1058 | CONFIG_SSB=m |
| 1059 | CONFIG_SSB_SPROM=y | ||
| 1060 | CONFIG_SSB_PCIHOST_POSSIBLE=y | ||
| 1061 | CONFIG_SSB_PCIHOST=y | ||
| 1062 | CONFIG_SSB_B43_PCI_BRIDGE=y | ||
| 1063 | # CONFIG_SSB_SILENT is not set | ||
| 1064 | # CONFIG_SSB_DEBUG is not set | ||
| 1065 | CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y | ||
| 1066 | CONFIG_SSB_DRIVER_PCICORE=y | ||
| 1067 | # CONFIG_SSB_DRIVER_MIPS is not set | ||
| 723 | 1068 | ||
| 724 | # | 1069 | # |
| 725 | # Multimedia devices | 1070 | # Multifunction device drivers |
| 726 | # | 1071 | # |
| 727 | # CONFIG_VIDEO_DEV is not set | 1072 | # CONFIG_MFD_CORE is not set |
| 728 | # CONFIG_DVB_CORE is not set | 1073 | # CONFIG_MFD_SM501 is not set |
| 729 | # CONFIG_DAB is not set | 1074 | # CONFIG_HTC_PASIC3 is not set |
| 1075 | # CONFIG_MFD_TMIO is not set | ||
| 1076 | # CONFIG_MFD_WM8400 is not set | ||
| 1077 | CONFIG_MFD_WM8350=m | ||
| 1078 | CONFIG_MFD_WM8350_I2C=m | ||
| 1079 | CONFIG_MFD_PCF50633=m | ||
| 1080 | CONFIG_PCF50633_ADC=m | ||
| 1081 | CONFIG_PCF50633_GPIO=m | ||
| 1082 | CONFIG_AB3100_CORE=m | ||
| 1083 | CONFIG_AB3100_OTP=m | ||
| 1084 | # CONFIG_REGULATOR is not set | ||
| 1085 | # CONFIG_MEDIA_SUPPORT is not set | ||
| 730 | 1086 | ||
| 731 | # | 1087 | # |
| 732 | # Graphics support | 1088 | # Graphics support |
| 733 | # | 1089 | # |
| 734 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 1090 | # CONFIG_VGA_ARB is not set |
| 735 | 1091 | # CONFIG_DRM is not set | |
| 736 | # | ||
| 737 | # Display device support | ||
| 738 | # | ||
| 739 | # CONFIG_DISPLAY_SUPPORT is not set | ||
| 740 | # CONFIG_VGASTATE is not set | 1092 | # CONFIG_VGASTATE is not set |
| 741 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | 1093 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set |
| 742 | # CONFIG_FB is not set | 1094 | # CONFIG_FB is not set |
| 1095 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
| 743 | 1096 | ||
| 744 | # | 1097 | # |
| 745 | # Sound | 1098 | # Display device support |
| 746 | # | 1099 | # |
| 1100 | # CONFIG_DISPLAY_SUPPORT is not set | ||
| 747 | # CONFIG_SOUND is not set | 1101 | # CONFIG_SOUND is not set |
| 748 | CONFIG_USB_SUPPORT=y | 1102 | CONFIG_USB_SUPPORT=y |
| 749 | CONFIG_USB_ARCH_HAS_HCD=y | 1103 | CONFIG_USB_ARCH_HAS_HCD=y |
| 750 | CONFIG_USB_ARCH_HAS_OHCI=y | 1104 | CONFIG_USB_ARCH_HAS_OHCI=y |
| 751 | CONFIG_USB_ARCH_HAS_EHCI=y | 1105 | CONFIG_USB_ARCH_HAS_EHCI=y |
| 752 | # CONFIG_USB is not set | 1106 | # CONFIG_USB is not set |
| 1107 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 1108 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 753 | 1109 | ||
| 754 | # | 1110 | # |
| 755 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1111 | # Enable Host or Gadget support to see Inventra options |
| 756 | # | 1112 | # |
| 757 | 1113 | ||
| 758 | # | 1114 | # |
| 759 | # USB Gadget Support | 1115 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 760 | # | 1116 | # |
| 761 | # CONFIG_USB_GADGET is not set | 1117 | # CONFIG_USB_GADGET is not set |
| 1118 | |||
| 1119 | # | ||
| 1120 | # OTG and related infrastructure | ||
| 1121 | # | ||
| 1122 | # CONFIG_UWB is not set | ||
| 762 | # CONFIG_MMC is not set | 1123 | # CONFIG_MMC is not set |
| 763 | # CONFIG_NEW_LEDS is not set | 1124 | # CONFIG_MEMSTICK is not set |
| 764 | # CONFIG_INFINIBAND is not set | 1125 | CONFIG_NEW_LEDS=y |
| 765 | # CONFIG_RTC_CLASS is not set | 1126 | CONFIG_LEDS_CLASS=m |
| 1127 | |||
| 1128 | # | ||
| 1129 | # LED drivers | ||
| 1130 | # | ||
| 1131 | CONFIG_LEDS_LP3944=m | ||
| 1132 | CONFIG_LEDS_PCA955X=m | ||
| 1133 | CONFIG_LEDS_WM8350=m | ||
| 1134 | CONFIG_LEDS_BD2802=m | ||
| 1135 | |||
| 1136 | # | ||
| 1137 | # LED Triggers | ||
| 1138 | # | ||
| 1139 | CONFIG_LEDS_TRIGGERS=y | ||
| 1140 | CONFIG_LEDS_TRIGGER_TIMER=m | ||
| 1141 | CONFIG_LEDS_TRIGGER_HEARTBEAT=m | ||
| 1142 | CONFIG_LEDS_TRIGGER_BACKLIGHT=m | ||
| 1143 | CONFIG_LEDS_TRIGGER_DEFAULT_ON=m | ||
| 766 | 1144 | ||
| 767 | # | 1145 | # |
| 768 | # DMA Engine support | 1146 | # iptables trigger is under Netfilter config (LED target) |
| 769 | # | 1147 | # |
| 770 | # CONFIG_DMA_ENGINE is not set | 1148 | # CONFIG_ACCESSIBILITY is not set |
| 1149 | # CONFIG_INFINIBAND is not set | ||
| 1150 | CONFIG_RTC_LIB=y | ||
| 1151 | CONFIG_RTC_CLASS=y | ||
| 1152 | CONFIG_RTC_HCTOSYS=y | ||
| 1153 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | ||
| 1154 | # CONFIG_RTC_DEBUG is not set | ||
| 771 | 1155 | ||
| 772 | # | 1156 | # |
| 773 | # DMA Clients | 1157 | # RTC interfaces |
| 774 | # | 1158 | # |
| 1159 | CONFIG_RTC_INTF_SYSFS=y | ||
| 1160 | CONFIG_RTC_INTF_PROC=y | ||
| 1161 | CONFIG_RTC_INTF_DEV=y | ||
| 1162 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
| 1163 | # CONFIG_RTC_DRV_TEST is not set | ||
| 775 | 1164 | ||
| 776 | # | 1165 | # |
| 777 | # DMA Devices | 1166 | # I2C RTC drivers |
| 1167 | # | ||
| 1168 | # CONFIG_RTC_DRV_DS1307 is not set | ||
| 1169 | # CONFIG_RTC_DRV_DS1374 is not set | ||
| 1170 | # CONFIG_RTC_DRV_DS1672 is not set | ||
| 1171 | # CONFIG_RTC_DRV_MAX6900 is not set | ||
| 1172 | # CONFIG_RTC_DRV_RS5C372 is not set | ||
| 1173 | # CONFIG_RTC_DRV_ISL1208 is not set | ||
| 1174 | # CONFIG_RTC_DRV_X1205 is not set | ||
| 1175 | # CONFIG_RTC_DRV_PCF8563 is not set | ||
| 1176 | # CONFIG_RTC_DRV_PCF8583 is not set | ||
| 1177 | # CONFIG_RTC_DRV_M41T80 is not set | ||
| 1178 | # CONFIG_RTC_DRV_BQ32K is not set | ||
| 1179 | # CONFIG_RTC_DRV_S35390A is not set | ||
| 1180 | # CONFIG_RTC_DRV_FM3130 is not set | ||
| 1181 | # CONFIG_RTC_DRV_RX8581 is not set | ||
| 1182 | # CONFIG_RTC_DRV_RX8025 is not set | ||
| 1183 | |||
| 1184 | # | ||
| 1185 | # SPI RTC drivers | ||
| 1186 | # | ||
| 1187 | |||
| 778 | # | 1188 | # |
| 1189 | # Platform RTC drivers | ||
| 1190 | # | ||
| 1191 | # CONFIG_RTC_DRV_CMOS is not set | ||
| 1192 | # CONFIG_RTC_DRV_DS1286 is not set | ||
| 1193 | # CONFIG_RTC_DRV_DS1511 is not set | ||
| 1194 | # CONFIG_RTC_DRV_DS1553 is not set | ||
| 1195 | # CONFIG_RTC_DRV_DS1742 is not set | ||
| 1196 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
| 1197 | # CONFIG_RTC_DRV_M48T86 is not set | ||
| 1198 | CONFIG_RTC_DRV_M48T35=y | ||
| 1199 | # CONFIG_RTC_DRV_M48T59 is not set | ||
| 1200 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
| 1201 | # CONFIG_RTC_DRV_BQ4802 is not set | ||
| 1202 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
| 1203 | # CONFIG_RTC_DRV_V3020 is not set | ||
| 1204 | # CONFIG_RTC_DRV_WM8350 is not set | ||
| 1205 | # CONFIG_RTC_DRV_PCF50633 is not set | ||
| 1206 | CONFIG_RTC_DRV_AB3100=m | ||
| 779 | 1207 | ||
| 780 | # | 1208 | # |
| 781 | # Userspace I/O | 1209 | # on-CPU RTC drivers |
| 782 | # | 1210 | # |
| 1211 | # CONFIG_DMADEVICES is not set | ||
| 1212 | # CONFIG_AUXDISPLAY is not set | ||
| 783 | CONFIG_UIO=y | 1213 | CONFIG_UIO=y |
| 784 | # CONFIG_UIO_CIF is not set | 1214 | # CONFIG_UIO_CIF is not set |
| 1215 | # CONFIG_UIO_PDRV is not set | ||
| 1216 | # CONFIG_UIO_PDRV_GENIRQ is not set | ||
| 1217 | CONFIG_UIO_SMX=m | ||
| 1218 | CONFIG_UIO_AEC=m | ||
| 1219 | CONFIG_UIO_SERCOS3=m | ||
| 1220 | CONFIG_UIO_PCI_GENERIC=m | ||
| 1221 | |||
| 1222 | # | ||
| 1223 | # TI VLYNQ | ||
| 1224 | # | ||
| 1225 | # CONFIG_STAGING is not set | ||
| 785 | 1226 | ||
| 786 | # | 1227 | # |
| 787 | # File systems | 1228 | # File systems |
| @@ -792,36 +1233,58 @@ CONFIG_EXT2_FS_POSIX_ACL=y | |||
| 792 | CONFIG_EXT2_FS_SECURITY=y | 1233 | CONFIG_EXT2_FS_SECURITY=y |
| 793 | # CONFIG_EXT2_FS_XIP is not set | 1234 | # CONFIG_EXT2_FS_XIP is not set |
| 794 | CONFIG_EXT3_FS=y | 1235 | CONFIG_EXT3_FS=y |
| 1236 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 795 | CONFIG_EXT3_FS_XATTR=y | 1237 | CONFIG_EXT3_FS_XATTR=y |
| 796 | CONFIG_EXT3_FS_POSIX_ACL=y | 1238 | CONFIG_EXT3_FS_POSIX_ACL=y |
| 797 | CONFIG_EXT3_FS_SECURITY=y | 1239 | CONFIG_EXT3_FS_SECURITY=y |
| 798 | # CONFIG_EXT4DEV_FS is not set | 1240 | CONFIG_EXT4_FS=y |
| 1241 | CONFIG_EXT4_FS_XATTR=y | ||
| 1242 | CONFIG_EXT4_FS_POSIX_ACL=y | ||
| 1243 | CONFIG_EXT4_FS_SECURITY=y | ||
| 1244 | # CONFIG_EXT4_DEBUG is not set | ||
| 799 | CONFIG_JBD=y | 1245 | CONFIG_JBD=y |
| 800 | CONFIG_JBD_DEBUG=y | 1246 | CONFIG_JBD2=y |
| 801 | CONFIG_FS_MBCACHE=y | 1247 | CONFIG_FS_MBCACHE=y |
| 802 | # CONFIG_REISERFS_FS is not set | 1248 | # CONFIG_REISERFS_FS is not set |
| 803 | # CONFIG_JFS_FS is not set | 1249 | # CONFIG_JFS_FS is not set |
| 804 | CONFIG_FS_POSIX_ACL=y | 1250 | CONFIG_FS_POSIX_ACL=y |
| 805 | CONFIG_XFS_FS=m | 1251 | CONFIG_XFS_FS=m |
| 806 | CONFIG_XFS_QUOTA=y | 1252 | CONFIG_XFS_QUOTA=y |
| 807 | CONFIG_XFS_SECURITY=y | ||
| 808 | CONFIG_XFS_POSIX_ACL=y | 1253 | CONFIG_XFS_POSIX_ACL=y |
| 809 | # CONFIG_XFS_RT is not set | 1254 | # CONFIG_XFS_RT is not set |
| 1255 | # CONFIG_XFS_DEBUG is not set | ||
| 810 | # CONFIG_GFS2_FS is not set | 1256 | # CONFIG_GFS2_FS is not set |
| 811 | # CONFIG_OCFS2_FS is not set | 1257 | # CONFIG_OCFS2_FS is not set |
| 812 | # CONFIG_MINIX_FS is not set | 1258 | CONFIG_BTRFS_FS=m |
| 813 | # CONFIG_ROMFS_FS is not set | 1259 | CONFIG_BTRFS_FS_POSIX_ACL=y |
| 1260 | # CONFIG_NILFS2_FS is not set | ||
| 1261 | CONFIG_FILE_LOCKING=y | ||
| 1262 | CONFIG_FSNOTIFY=y | ||
| 1263 | CONFIG_DNOTIFY=y | ||
| 814 | CONFIG_INOTIFY=y | 1264 | CONFIG_INOTIFY=y |
| 815 | CONFIG_INOTIFY_USER=y | 1265 | CONFIG_INOTIFY_USER=y |
| 816 | # CONFIG_QUOTA is not set | 1266 | # CONFIG_QUOTA is not set |
| 1267 | CONFIG_QUOTA_NETLINK_INTERFACE=y | ||
| 817 | CONFIG_QUOTACTL=y | 1268 | CONFIG_QUOTACTL=y |
| 818 | CONFIG_DNOTIFY=y | ||
| 819 | CONFIG_AUTOFS_FS=m | 1269 | CONFIG_AUTOFS_FS=m |
| 820 | # CONFIG_AUTOFS4_FS is not set | 1270 | # CONFIG_AUTOFS4_FS is not set |
| 821 | CONFIG_FUSE_FS=m | 1271 | CONFIG_FUSE_FS=m |
| 1272 | CONFIG_CUSE=m | ||
| 822 | CONFIG_GENERIC_ACL=y | 1273 | CONFIG_GENERIC_ACL=y |
| 823 | 1274 | ||
| 824 | # | 1275 | # |
| 1276 | # Caches | ||
| 1277 | # | ||
| 1278 | CONFIG_FSCACHE=m | ||
| 1279 | CONFIG_FSCACHE_STATS=y | ||
| 1280 | # CONFIG_FSCACHE_HISTOGRAM is not set | ||
| 1281 | # CONFIG_FSCACHE_DEBUG is not set | ||
| 1282 | # CONFIG_FSCACHE_OBJECT_LIST is not set | ||
| 1283 | CONFIG_CACHEFILES=m | ||
| 1284 | # CONFIG_CACHEFILES_DEBUG is not set | ||
| 1285 | # CONFIG_CACHEFILES_HISTOGRAM is not set | ||
| 1286 | |||
| 1287 | # | ||
| 825 | # CD-ROM/DVD Filesystems | 1288 | # CD-ROM/DVD Filesystems |
| 826 | # | 1289 | # |
| 827 | # CONFIG_ISO9660_FS is not set | 1290 | # CONFIG_ISO9660_FS is not set |
| @@ -840,16 +1303,13 @@ CONFIG_GENERIC_ACL=y | |||
| 840 | CONFIG_PROC_FS=y | 1303 | CONFIG_PROC_FS=y |
| 841 | CONFIG_PROC_KCORE=y | 1304 | CONFIG_PROC_KCORE=y |
| 842 | CONFIG_PROC_SYSCTL=y | 1305 | CONFIG_PROC_SYSCTL=y |
| 1306 | CONFIG_PROC_PAGE_MONITOR=y | ||
| 843 | CONFIG_SYSFS=y | 1307 | CONFIG_SYSFS=y |
| 844 | CONFIG_TMPFS=y | 1308 | CONFIG_TMPFS=y |
| 845 | CONFIG_TMPFS_POSIX_ACL=y | 1309 | CONFIG_TMPFS_POSIX_ACL=y |
| 846 | # CONFIG_HUGETLB_PAGE is not set | 1310 | # CONFIG_HUGETLB_PAGE is not set |
| 847 | CONFIG_RAMFS=y | ||
| 848 | CONFIG_CONFIGFS_FS=m | 1311 | CONFIG_CONFIGFS_FS=m |
| 849 | 1312 | CONFIG_MISC_FILESYSTEMS=y | |
| 850 | # | ||
| 851 | # Miscellaneous filesystems | ||
| 852 | # | ||
| 853 | # CONFIG_ADFS_FS is not set | 1313 | # CONFIG_ADFS_FS is not set |
| 854 | # CONFIG_AFFS_FS is not set | 1314 | # CONFIG_AFFS_FS is not set |
| 855 | # CONFIG_ECRYPT_FS is not set | 1315 | # CONFIG_ECRYPT_FS is not set |
| @@ -859,28 +1319,32 @@ CONFIG_CONFIGFS_FS=m | |||
| 859 | # CONFIG_BFS_FS is not set | 1319 | # CONFIG_BFS_FS is not set |
| 860 | # CONFIG_EFS_FS is not set | 1320 | # CONFIG_EFS_FS is not set |
| 861 | # CONFIG_CRAMFS is not set | 1321 | # CONFIG_CRAMFS is not set |
| 1322 | CONFIG_SQUASHFS=m | ||
| 1323 | # CONFIG_SQUASHFS_EMBEDDED is not set | ||
| 1324 | CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 | ||
| 862 | # CONFIG_VXFS_FS is not set | 1325 | # CONFIG_VXFS_FS is not set |
| 1326 | # CONFIG_MINIX_FS is not set | ||
| 1327 | CONFIG_OMFS_FS=m | ||
| 863 | # CONFIG_HPFS_FS is not set | 1328 | # CONFIG_HPFS_FS is not set |
| 864 | # CONFIG_QNX4FS_FS is not set | 1329 | # CONFIG_QNX4FS_FS is not set |
| 1330 | # CONFIG_ROMFS_FS is not set | ||
| 865 | # CONFIG_SYSV_FS is not set | 1331 | # CONFIG_SYSV_FS is not set |
| 866 | # CONFIG_UFS_FS is not set | 1332 | # CONFIG_UFS_FS is not set |
| 867 | 1333 | CONFIG_EXOFS_FS=m | |
| 868 | # | 1334 | # CONFIG_EXOFS_DEBUG is not set |
| 869 | # Network File Systems | 1335 | CONFIG_NETWORK_FILESYSTEMS=y |
| 870 | # | ||
| 871 | CONFIG_NFS_FS=y | 1336 | CONFIG_NFS_FS=y |
| 872 | CONFIG_NFS_V3=y | 1337 | CONFIG_NFS_V3=y |
| 873 | # CONFIG_NFS_V3_ACL is not set | 1338 | # CONFIG_NFS_V3_ACL is not set |
| 874 | # CONFIG_NFS_V4 is not set | 1339 | # CONFIG_NFS_V4 is not set |
| 875 | # CONFIG_NFS_DIRECTIO is not set | ||
| 876 | # CONFIG_NFSD is not set | ||
| 877 | # CONFIG_ROOT_NFS is not set | 1340 | # CONFIG_ROOT_NFS is not set |
| 1341 | # CONFIG_NFSD is not set | ||
| 878 | CONFIG_LOCKD=y | 1342 | CONFIG_LOCKD=y |
| 879 | CONFIG_LOCKD_V4=y | 1343 | CONFIG_LOCKD_V4=y |
| 1344 | CONFIG_EXPORTFS=m | ||
| 880 | CONFIG_NFS_COMMON=y | 1345 | CONFIG_NFS_COMMON=y |
| 881 | CONFIG_SUNRPC=y | 1346 | CONFIG_SUNRPC=y |
| 882 | CONFIG_SUNRPC_GSS=y | 1347 | CONFIG_SUNRPC_GSS=y |
| 883 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 884 | CONFIG_RPCSEC_GSS_KRB5=y | 1348 | CONFIG_RPCSEC_GSS_KRB5=y |
| 885 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1349 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 886 | # CONFIG_SMB_FS is not set | 1350 | # CONFIG_SMB_FS is not set |
| @@ -910,35 +1374,37 @@ CONFIG_SGI_PARTITION=y | |||
| 910 | # CONFIG_KARMA_PARTITION is not set | 1374 | # CONFIG_KARMA_PARTITION is not set |
| 911 | # CONFIG_EFI_PARTITION is not set | 1375 | # CONFIG_EFI_PARTITION is not set |
| 912 | # CONFIG_SYSV68_PARTITION is not set | 1376 | # CONFIG_SYSV68_PARTITION is not set |
| 913 | |||
| 914 | # | ||
| 915 | # Native Language Support | ||
| 916 | # | ||
| 917 | # CONFIG_NLS is not set | 1377 | # CONFIG_NLS is not set |
| 918 | |||
| 919 | # | ||
| 920 | # Distributed Lock Manager | ||
| 921 | # | ||
| 922 | CONFIG_DLM=m | 1378 | CONFIG_DLM=m |
| 923 | # CONFIG_DLM_DEBUG is not set | 1379 | # CONFIG_DLM_DEBUG is not set |
| 924 | 1380 | ||
| 925 | # | 1381 | # |
| 926 | # Profiling support | ||
| 927 | # | ||
| 928 | # CONFIG_PROFILING is not set | ||
| 929 | |||
| 930 | # | ||
| 931 | # Kernel hacking | 1382 | # Kernel hacking |
| 932 | # | 1383 | # |
| 933 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | 1384 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y |
| 934 | # CONFIG_PRINTK_TIME is not set | 1385 | # CONFIG_PRINTK_TIME is not set |
| 1386 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
| 935 | CONFIG_ENABLE_MUST_CHECK=y | 1387 | CONFIG_ENABLE_MUST_CHECK=y |
| 1388 | CONFIG_FRAME_WARN=2048 | ||
| 936 | # CONFIG_MAGIC_SYSRQ is not set | 1389 | # CONFIG_MAGIC_SYSRQ is not set |
| 1390 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 937 | # CONFIG_UNUSED_SYMBOLS is not set | 1391 | # CONFIG_UNUSED_SYMBOLS is not set |
| 938 | # CONFIG_DEBUG_FS is not set | 1392 | # CONFIG_DEBUG_FS is not set |
| 939 | # CONFIG_HEADERS_CHECK is not set | 1393 | # CONFIG_HEADERS_CHECK is not set |
| 940 | # CONFIG_DEBUG_KERNEL is not set | 1394 | # CONFIG_DEBUG_KERNEL is not set |
| 941 | CONFIG_CROSSCOMPILE=y | 1395 | # CONFIG_DEBUG_MEMORY_INIT is not set |
| 1396 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
| 1397 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
| 1398 | CONFIG_HAVE_FUNCTION_TRACER=y | ||
| 1399 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1400 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y | ||
| 1401 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1402 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
| 1403 | CONFIG_TRACING_SUPPORT=y | ||
| 1404 | # CONFIG_FTRACE is not set | ||
| 1405 | # CONFIG_SAMPLES is not set | ||
| 1406 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1407 | CONFIG_EARLY_PRINTK=y | ||
| 942 | # CONFIG_CMDLINE_BOOL is not set | 1408 | # CONFIG_CMDLINE_BOOL is not set |
| 943 | 1409 | ||
| 944 | # | 1410 | # |
| @@ -947,65 +1413,140 @@ CONFIG_CROSSCOMPILE=y | |||
| 947 | CONFIG_KEYS=y | 1413 | CONFIG_KEYS=y |
| 948 | CONFIG_KEYS_DEBUG_PROC_KEYS=y | 1414 | CONFIG_KEYS_DEBUG_PROC_KEYS=y |
| 949 | # CONFIG_SECURITY is not set | 1415 | # CONFIG_SECURITY is not set |
| 950 | CONFIG_XOR_BLOCKS=m | 1416 | CONFIG_SECURITYFS=y |
| 951 | CONFIG_ASYNC_CORE=m | 1417 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
| 952 | CONFIG_ASYNC_MEMCPY=m | 1418 | # CONFIG_DEFAULT_SECURITY_SMACK is not set |
| 953 | CONFIG_ASYNC_XOR=m | 1419 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set |
| 1420 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
| 1421 | CONFIG_DEFAULT_SECURITY="" | ||
| 1422 | CONFIG_XOR_BLOCKS=y | ||
| 1423 | CONFIG_ASYNC_CORE=y | ||
| 1424 | CONFIG_ASYNC_MEMCPY=y | ||
| 1425 | CONFIG_ASYNC_XOR=y | ||
| 1426 | CONFIG_ASYNC_PQ=y | ||
| 1427 | CONFIG_ASYNC_RAID6_RECOV=y | ||
| 954 | CONFIG_CRYPTO=y | 1428 | CONFIG_CRYPTO=y |
| 1429 | |||
| 1430 | # | ||
| 1431 | # Crypto core or helper | ||
| 1432 | # | ||
| 1433 | CONFIG_CRYPTO_FIPS=y | ||
| 955 | CONFIG_CRYPTO_ALGAPI=y | 1434 | CONFIG_CRYPTO_ALGAPI=y |
| 956 | CONFIG_CRYPTO_ABLKCIPHER=m | 1435 | CONFIG_CRYPTO_ALGAPI2=y |
| 1436 | CONFIG_CRYPTO_AEAD=m | ||
| 1437 | CONFIG_CRYPTO_AEAD2=y | ||
| 957 | CONFIG_CRYPTO_BLKCIPHER=y | 1438 | CONFIG_CRYPTO_BLKCIPHER=y |
| 1439 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
| 958 | CONFIG_CRYPTO_HASH=y | 1440 | CONFIG_CRYPTO_HASH=y |
| 1441 | CONFIG_CRYPTO_HASH2=y | ||
| 1442 | CONFIG_CRYPTO_RNG=m | ||
| 1443 | CONFIG_CRYPTO_RNG2=y | ||
| 1444 | CONFIG_CRYPTO_PCOMP=y | ||
| 959 | CONFIG_CRYPTO_MANAGER=y | 1445 | CONFIG_CRYPTO_MANAGER=y |
| 1446 | CONFIG_CRYPTO_MANAGER2=y | ||
| 1447 | CONFIG_CRYPTO_GF128MUL=m | ||
| 1448 | CONFIG_CRYPTO_NULL=m | ||
| 1449 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1450 | CONFIG_CRYPTO_CRYPTD=m | ||
| 1451 | CONFIG_CRYPTO_AUTHENC=m | ||
| 1452 | # CONFIG_CRYPTO_TEST is not set | ||
| 1453 | |||
| 1454 | # | ||
| 1455 | # Authenticated Encryption with Associated Data | ||
| 1456 | # | ||
| 1457 | CONFIG_CRYPTO_CCM=m | ||
| 1458 | CONFIG_CRYPTO_GCM=m | ||
| 1459 | CONFIG_CRYPTO_SEQIV=m | ||
| 1460 | |||
| 1461 | # | ||
| 1462 | # Block modes | ||
| 1463 | # | ||
| 1464 | CONFIG_CRYPTO_CBC=y | ||
| 1465 | CONFIG_CRYPTO_CTR=m | ||
| 1466 | CONFIG_CRYPTO_CTS=m | ||
| 1467 | CONFIG_CRYPTO_ECB=m | ||
| 1468 | CONFIG_CRYPTO_LRW=m | ||
| 1469 | CONFIG_CRYPTO_PCBC=m | ||
| 1470 | CONFIG_CRYPTO_XTS=m | ||
| 1471 | |||
| 1472 | # | ||
| 1473 | # Hash modes | ||
| 1474 | # | ||
| 960 | CONFIG_CRYPTO_HMAC=y | 1475 | CONFIG_CRYPTO_HMAC=y |
| 961 | CONFIG_CRYPTO_XCBC=m | 1476 | CONFIG_CRYPTO_XCBC=m |
| 962 | CONFIG_CRYPTO_NULL=m | 1477 | CONFIG_CRYPTO_VMAC=m |
| 1478 | |||
| 1479 | # | ||
| 1480 | # Digest | ||
| 1481 | # | ||
| 1482 | CONFIG_CRYPTO_CRC32C=m | ||
| 1483 | CONFIG_CRYPTO_GHASH=m | ||
| 963 | CONFIG_CRYPTO_MD4=m | 1484 | CONFIG_CRYPTO_MD4=m |
| 964 | CONFIG_CRYPTO_MD5=y | 1485 | CONFIG_CRYPTO_MD5=y |
| 1486 | CONFIG_CRYPTO_MICHAEL_MIC=m | ||
| 1487 | CONFIG_CRYPTO_RMD128=m | ||
| 1488 | CONFIG_CRYPTO_RMD160=m | ||
| 1489 | CONFIG_CRYPTO_RMD256=m | ||
| 1490 | CONFIG_CRYPTO_RMD320=m | ||
| 965 | CONFIG_CRYPTO_SHA1=m | 1491 | CONFIG_CRYPTO_SHA1=m |
| 966 | CONFIG_CRYPTO_SHA256=m | 1492 | CONFIG_CRYPTO_SHA256=m |
| 967 | CONFIG_CRYPTO_SHA512=m | 1493 | CONFIG_CRYPTO_SHA512=m |
| 968 | CONFIG_CRYPTO_WP512=m | ||
| 969 | CONFIG_CRYPTO_TGR192=m | 1494 | CONFIG_CRYPTO_TGR192=m |
| 970 | CONFIG_CRYPTO_GF128MUL=m | 1495 | CONFIG_CRYPTO_WP512=m |
| 971 | CONFIG_CRYPTO_ECB=m | 1496 | |
| 972 | CONFIG_CRYPTO_CBC=y | 1497 | # |
| 973 | CONFIG_CRYPTO_PCBC=m | 1498 | # Ciphers |
| 974 | CONFIG_CRYPTO_LRW=m | 1499 | # |
| 975 | CONFIG_CRYPTO_CRYPTD=m | ||
| 976 | CONFIG_CRYPTO_DES=y | ||
| 977 | CONFIG_CRYPTO_FCRYPT=m | ||
| 978 | CONFIG_CRYPTO_BLOWFISH=m | ||
| 979 | CONFIG_CRYPTO_TWOFISH=m | ||
| 980 | CONFIG_CRYPTO_TWOFISH_COMMON=m | ||
| 981 | CONFIG_CRYPTO_SERPENT=m | ||
| 982 | CONFIG_CRYPTO_AES=m | 1500 | CONFIG_CRYPTO_AES=m |
| 1501 | CONFIG_CRYPTO_ANUBIS=m | ||
| 1502 | CONFIG_CRYPTO_ARC4=m | ||
| 1503 | CONFIG_CRYPTO_BLOWFISH=m | ||
| 1504 | CONFIG_CRYPTO_CAMELLIA=m | ||
| 983 | CONFIG_CRYPTO_CAST5=m | 1505 | CONFIG_CRYPTO_CAST5=m |
| 984 | CONFIG_CRYPTO_CAST6=m | 1506 | CONFIG_CRYPTO_CAST6=m |
| 985 | CONFIG_CRYPTO_TEA=m | 1507 | CONFIG_CRYPTO_DES=y |
| 986 | CONFIG_CRYPTO_ARC4=m | 1508 | CONFIG_CRYPTO_FCRYPT=m |
| 987 | CONFIG_CRYPTO_KHAZAD=m | 1509 | CONFIG_CRYPTO_KHAZAD=m |
| 988 | CONFIG_CRYPTO_ANUBIS=m | 1510 | CONFIG_CRYPTO_SALSA20=m |
| 1511 | CONFIG_CRYPTO_SEED=m | ||
| 1512 | CONFIG_CRYPTO_SERPENT=m | ||
| 1513 | CONFIG_CRYPTO_TEA=m | ||
| 1514 | CONFIG_CRYPTO_TWOFISH=m | ||
| 1515 | CONFIG_CRYPTO_TWOFISH_COMMON=m | ||
| 1516 | |||
| 1517 | # | ||
| 1518 | # Compression | ||
| 1519 | # | ||
| 989 | CONFIG_CRYPTO_DEFLATE=m | 1520 | CONFIG_CRYPTO_DEFLATE=m |
| 990 | CONFIG_CRYPTO_MICHAEL_MIC=m | 1521 | CONFIG_CRYPTO_ZLIB=m |
| 991 | CONFIG_CRYPTO_CRC32C=m | 1522 | CONFIG_CRYPTO_LZO=m |
| 992 | CONFIG_CRYPTO_CAMELLIA=m | 1523 | |
| 993 | # CONFIG_CRYPTO_TEST is not set | 1524 | # |
| 1525 | # Random Number Generation | ||
| 1526 | # | ||
| 1527 | CONFIG_CRYPTO_ANSI_CPRNG=m | ||
| 994 | CONFIG_CRYPTO_HW=y | 1528 | CONFIG_CRYPTO_HW=y |
| 1529 | CONFIG_CRYPTO_DEV_HIFN_795X=m | ||
| 1530 | # CONFIG_CRYPTO_DEV_HIFN_795X_RNG is not set | ||
| 1531 | # CONFIG_BINARY_PRINTF is not set | ||
| 995 | 1532 | ||
| 996 | # | 1533 | # |
| 997 | # Library routines | 1534 | # Library routines |
| 998 | # | 1535 | # |
| 999 | CONFIG_BITREVERSE=y | 1536 | CONFIG_BITREVERSE=y |
| 1537 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
| 1000 | CONFIG_CRC_CCITT=m | 1538 | CONFIG_CRC_CCITT=m |
| 1001 | # CONFIG_CRC16 is not set | 1539 | CONFIG_CRC16=y |
| 1002 | # CONFIG_CRC_ITU_T is not set | 1540 | CONFIG_CRC_T10DIF=m |
| 1541 | CONFIG_CRC_ITU_T=m | ||
| 1003 | CONFIG_CRC32=y | 1542 | CONFIG_CRC32=y |
| 1004 | # CONFIG_CRC7 is not set | 1543 | CONFIG_CRC7=m |
| 1005 | CONFIG_LIBCRC32C=m | 1544 | CONFIG_LIBCRC32C=m |
| 1006 | CONFIG_ZLIB_INFLATE=m | 1545 | CONFIG_ZLIB_INFLATE=m |
| 1007 | CONFIG_ZLIB_DEFLATE=m | 1546 | CONFIG_ZLIB_DEFLATE=m |
| 1008 | CONFIG_PLIST=y | 1547 | CONFIG_LZO_COMPRESS=m |
| 1548 | CONFIG_LZO_DECOMPRESS=m | ||
| 1009 | CONFIG_HAS_IOMEM=y | 1549 | CONFIG_HAS_IOMEM=y |
| 1010 | CONFIG_HAS_IOPORT=y | 1550 | CONFIG_HAS_IOPORT=y |
| 1011 | CONFIG_HAS_DMA=y | 1551 | CONFIG_HAS_DMA=y |
| 1552 | CONFIG_NLATTR=y | ||
diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c index 9c187a64649b..758ad426c57f 100644 --- a/arch/mips/kernel/cpu-probe.c +++ b/arch/mips/kernel/cpu-probe.c | |||
| @@ -287,9 +287,9 @@ static inline int __cpu_has_fpu(void) | |||
| 287 | static inline void cpu_probe_vmbits(struct cpuinfo_mips *c) | 287 | static inline void cpu_probe_vmbits(struct cpuinfo_mips *c) |
| 288 | { | 288 | { |
| 289 | #ifdef __NEED_VMBITS_PROBE | 289 | #ifdef __NEED_VMBITS_PROBE |
| 290 | write_c0_entryhi(0x3ffffffffffff000ULL); | 290 | write_c0_entryhi(0x3fffffffffffe000ULL); |
| 291 | back_to_back_c0_hazard(); | 291 | back_to_back_c0_hazard(); |
| 292 | c->vmbits = fls64(read_c0_entryhi() & 0x3ffffffffffff000ULL); | 292 | c->vmbits = fls64(read_c0_entryhi() & 0x3fffffffffffe000ULL); |
| 293 | #endif | 293 | #endif |
| 294 | } | 294 | } |
| 295 | 295 | ||
diff --git a/arch/mips/kernel/traps.c b/arch/mips/kernel/traps.c index 338dfe8ed002..31b204b26ba0 100644 --- a/arch/mips/kernel/traps.c +++ b/arch/mips/kernel/traps.c | |||
| @@ -1501,6 +1501,7 @@ void __cpuinit per_cpu_trap_init(void) | |||
| 1501 | cp0_perfcount_irq = -1; | 1501 | cp0_perfcount_irq = -1; |
| 1502 | } else { | 1502 | } else { |
| 1503 | cp0_compare_irq = CP0_LEGACY_COMPARE_IRQ; | 1503 | cp0_compare_irq = CP0_LEGACY_COMPARE_IRQ; |
| 1504 | cp0_compare_irq_shift = cp0_compare_irq; | ||
| 1504 | cp0_perfcount_irq = -1; | 1505 | cp0_perfcount_irq = -1; |
| 1505 | } | 1506 | } |
| 1506 | 1507 | ||
diff --git a/arch/mips/mm/c-octeon.c b/arch/mips/mm/c-octeon.c index 94e05e5733c1..e06f1af760a7 100644 --- a/arch/mips/mm/c-octeon.c +++ b/arch/mips/mm/c-octeon.c | |||
| @@ -174,7 +174,7 @@ static void octeon_flush_cache_page(struct vm_area_struct *vma, | |||
| 174 | * Probe Octeon's caches | 174 | * Probe Octeon's caches |
| 175 | * | 175 | * |
| 176 | */ | 176 | */ |
| 177 | static void __devinit probe_octeon(void) | 177 | static void __cpuinit probe_octeon(void) |
| 178 | { | 178 | { |
| 179 | unsigned long icache_size; | 179 | unsigned long icache_size; |
| 180 | unsigned long dcache_size; | 180 | unsigned long dcache_size; |
| @@ -235,7 +235,7 @@ static void __devinit probe_octeon(void) | |||
| 235 | * Setup the Octeon cache flush routines | 235 | * Setup the Octeon cache flush routines |
| 236 | * | 236 | * |
| 237 | */ | 237 | */ |
| 238 | void __devinit octeon_cache_init(void) | 238 | void __cpuinit octeon_cache_init(void) |
| 239 | { | 239 | { |
| 240 | extern unsigned long ebase; | 240 | extern unsigned long ebase; |
| 241 | extern char except_vec2_octeon; | 241 | extern char except_vec2_octeon; |
diff --git a/arch/mips/mm/cache.c b/arch/mips/mm/cache.c index 102b2dfa542a..e716cafc346d 100644 --- a/arch/mips/mm/cache.c +++ b/arch/mips/mm/cache.c | |||
| @@ -155,7 +155,7 @@ static inline void setup_protection_map(void) | |||
| 155 | protection_map[15] = PAGE_SHARED; | 155 | protection_map[15] = PAGE_SHARED; |
| 156 | } | 156 | } |
| 157 | 157 | ||
| 158 | void __devinit cpu_cache_init(void) | 158 | void __cpuinit cpu_cache_init(void) |
| 159 | { | 159 | { |
| 160 | if (cpu_has_3k_cache) { | 160 | if (cpu_has_3k_cache) { |
| 161 | extern void __weak r3k_cache_init(void); | 161 | extern void __weak r3k_cache_init(void); |
diff --git a/arch/mips/sni/rm200.c b/arch/mips/sni/rm200.c index 46f00691f448..31e2583ec622 100644 --- a/arch/mips/sni/rm200.c +++ b/arch/mips/sni/rm200.c | |||
| @@ -404,7 +404,7 @@ void __init sni_rm200_i8259_irqs(void) | |||
| 404 | if (!rm200_pic_master) | 404 | if (!rm200_pic_master) |
| 405 | return; | 405 | return; |
| 406 | rm200_pic_slave = ioremap_nocache(0x160000a0, 4); | 406 | rm200_pic_slave = ioremap_nocache(0x160000a0, 4); |
| 407 | if (!rm200_pic_master) { | 407 | if (!rm200_pic_slave) { |
| 408 | iounmap(rm200_pic_master); | 408 | iounmap(rm200_pic_master); |
| 409 | return; | 409 | return; |
| 410 | } | 410 | } |
diff --git a/arch/parisc/kernel/signal.c b/arch/parisc/kernel/signal.c index fb37ac52e46c..35c827e94e31 100644 --- a/arch/parisc/kernel/signal.c +++ b/arch/parisc/kernel/signal.c | |||
| @@ -468,7 +468,9 @@ handle_signal(unsigned long sig, siginfo_t *info, struct k_sigaction *ka, | |||
| 468 | recalc_sigpending(); | 468 | recalc_sigpending(); |
| 469 | spin_unlock_irq(¤t->sighand->siglock); | 469 | spin_unlock_irq(¤t->sighand->siglock); |
| 470 | 470 | ||
| 471 | tracehook_signal_handler(sig, info, ka, regs, 0); | 471 | tracehook_signal_handler(sig, info, ka, regs, |
| 472 | test_thread_flag(TIF_SINGLESTEP) || | ||
| 473 | test_thread_flag(TIF_BLOCKSTEP)); | ||
| 472 | 474 | ||
| 473 | return 1; | 475 | return 1; |
| 474 | } | 476 | } |
diff --git a/arch/powerpc/mm/tlb_hash64.c b/arch/powerpc/mm/tlb_hash64.c index 282d9306361f..1ec06576f619 100644 --- a/arch/powerpc/mm/tlb_hash64.c +++ b/arch/powerpc/mm/tlb_hash64.c | |||
| @@ -63,15 +63,21 @@ void hpte_need_flush(struct mm_struct *mm, unsigned long addr, | |||
| 63 | if (huge) { | 63 | if (huge) { |
| 64 | #ifdef CONFIG_HUGETLB_PAGE | 64 | #ifdef CONFIG_HUGETLB_PAGE |
| 65 | psize = get_slice_psize(mm, addr); | 65 | psize = get_slice_psize(mm, addr); |
| 66 | /* Mask the address for the correct page size */ | ||
| 67 | addr &= ~((1UL << mmu_psize_defs[psize].shift) - 1); | ||
| 66 | #else | 68 | #else |
| 67 | BUG(); | 69 | BUG(); |
| 68 | psize = pte_pagesize_index(mm, addr, pte); /* shutup gcc */ | 70 | psize = pte_pagesize_index(mm, addr, pte); /* shutup gcc */ |
| 69 | #endif | 71 | #endif |
| 70 | } else | 72 | } else { |
| 71 | psize = pte_pagesize_index(mm, addr, pte); | 73 | psize = pte_pagesize_index(mm, addr, pte); |
| 74 | /* Mask the address for the standard page size. If we | ||
| 75 | * have a 64k page kernel, but the hardware does not | ||
| 76 | * support 64k pages, this might be different from the | ||
| 77 | * hardware page size encoded in the slice table. */ | ||
| 78 | addr &= PAGE_MASK; | ||
| 79 | } | ||
| 72 | 80 | ||
| 73 | /* Mask the address for the correct page size */ | ||
| 74 | addr &= ~((1UL << mmu_psize_defs[psize].shift) - 1); | ||
| 75 | 81 | ||
| 76 | /* Build full vaddr */ | 82 | /* Build full vaddr */ |
| 77 | if (!is_kernel_addr(addr)) { | 83 | if (!is_kernel_addr(addr)) { |
diff --git a/arch/powerpc/platforms/85xx/mpc85xx_mds.c b/arch/powerpc/platforms/85xx/mpc85xx_mds.c index 21f61b8c445b..cc29c0f5300d 100644 --- a/arch/powerpc/platforms/85xx/mpc85xx_mds.c +++ b/arch/powerpc/platforms/85xx/mpc85xx_mds.c | |||
| @@ -338,7 +338,8 @@ static void __init mpc85xx_mds_pic_init(void) | |||
| 338 | } | 338 | } |
| 339 | 339 | ||
| 340 | mpic = mpic_alloc(np, r.start, | 340 | mpic = mpic_alloc(np, r.start, |
| 341 | MPIC_PRIMARY | MPIC_WANTS_RESET | MPIC_BIG_ENDIAN, | 341 | MPIC_PRIMARY | MPIC_WANTS_RESET | MPIC_BIG_ENDIAN | |
| 342 | MPIC_BROKEN_FRR_NIRQS, | ||
| 342 | 0, 256, " OpenPIC "); | 343 | 0, 256, " OpenPIC "); |
| 343 | BUG_ON(mpic == NULL); | 344 | BUG_ON(mpic == NULL); |
| 344 | of_node_put(np); | 345 | of_node_put(np); |
diff --git a/arch/powerpc/platforms/85xx/smp.c b/arch/powerpc/platforms/85xx/smp.c index 04160a4cc699..a15f582300d8 100644 --- a/arch/powerpc/platforms/85xx/smp.c +++ b/arch/powerpc/platforms/85xx/smp.c | |||
| @@ -46,6 +46,7 @@ smp_85xx_kick_cpu(int nr) | |||
| 46 | __iomem u32 *bptr_vaddr; | 46 | __iomem u32 *bptr_vaddr; |
| 47 | struct device_node *np; | 47 | struct device_node *np; |
| 48 | int n = 0; | 48 | int n = 0; |
| 49 | int ioremappable; | ||
| 49 | 50 | ||
| 50 | WARN_ON (nr < 0 || nr >= NR_CPUS); | 51 | WARN_ON (nr < 0 || nr >= NR_CPUS); |
| 51 | 52 | ||
| @@ -59,21 +60,37 @@ smp_85xx_kick_cpu(int nr) | |||
| 59 | return; | 60 | return; |
| 60 | } | 61 | } |
| 61 | 62 | ||
| 63 | /* | ||
| 64 | * A secondary core could be in a spinloop in the bootpage | ||
| 65 | * (0xfffff000), somewhere in highmem, or somewhere in lowmem. | ||
| 66 | * The bootpage and highmem can be accessed via ioremap(), but | ||
| 67 | * we need to directly access the spinloop if its in lowmem. | ||
| 68 | */ | ||
| 69 | ioremappable = *cpu_rel_addr > virt_to_phys(high_memory); | ||
| 70 | |||
| 62 | /* Map the spin table */ | 71 | /* Map the spin table */ |
| 63 | bptr_vaddr = ioremap(*cpu_rel_addr, SIZE_BOOT_ENTRY); | 72 | if (ioremappable) |
| 73 | bptr_vaddr = ioremap(*cpu_rel_addr, SIZE_BOOT_ENTRY); | ||
| 74 | else | ||
| 75 | bptr_vaddr = phys_to_virt(*cpu_rel_addr); | ||
| 64 | 76 | ||
| 65 | local_irq_save(flags); | 77 | local_irq_save(flags); |
| 66 | 78 | ||
| 67 | out_be32(bptr_vaddr + BOOT_ENTRY_PIR, nr); | 79 | out_be32(bptr_vaddr + BOOT_ENTRY_PIR, nr); |
| 68 | out_be32(bptr_vaddr + BOOT_ENTRY_ADDR_LOWER, __pa(__early_start)); | 80 | out_be32(bptr_vaddr + BOOT_ENTRY_ADDR_LOWER, __pa(__early_start)); |
| 69 | 81 | ||
| 82 | if (!ioremappable) | ||
| 83 | flush_dcache_range((ulong)bptr_vaddr, | ||
| 84 | (ulong)(bptr_vaddr + SIZE_BOOT_ENTRY)); | ||
| 85 | |||
| 70 | /* Wait a bit for the CPU to ack. */ | 86 | /* Wait a bit for the CPU to ack. */ |
| 71 | while ((__secondary_hold_acknowledge != nr) && (++n < 1000)) | 87 | while ((__secondary_hold_acknowledge != nr) && (++n < 1000)) |
| 72 | mdelay(1); | 88 | mdelay(1); |
| 73 | 89 | ||
| 74 | local_irq_restore(flags); | 90 | local_irq_restore(flags); |
| 75 | 91 | ||
| 76 | iounmap(bptr_vaddr); | 92 | if (ioremappable) |
| 93 | iounmap(bptr_vaddr); | ||
| 77 | 94 | ||
| 78 | pr_debug("waited %d msecs for CPU #%d.\n", n, nr); | 95 | pr_debug("waited %d msecs for CPU #%d.\n", n, nr); |
| 79 | } | 96 | } |
diff --git a/arch/powerpc/platforms/pseries/xics.c b/arch/powerpc/platforms/pseries/xics.c index 1ee66db003be..f5f79196721c 100644 --- a/arch/powerpc/platforms/pseries/xics.c +++ b/arch/powerpc/platforms/pseries/xics.c | |||
| @@ -784,9 +784,13 @@ static void xics_set_cpu_priority(unsigned char cppr) | |||
| 784 | { | 784 | { |
| 785 | struct xics_cppr *os_cppr = &__get_cpu_var(xics_cppr); | 785 | struct xics_cppr *os_cppr = &__get_cpu_var(xics_cppr); |
| 786 | 786 | ||
| 787 | BUG_ON(os_cppr->index != 0); | 787 | /* |
| 788 | * we only really want to set the priority when there's | ||
| 789 | * just one cppr value on the stack | ||
| 790 | */ | ||
| 791 | WARN_ON(os_cppr->index != 0); | ||
| 788 | 792 | ||
| 789 | os_cppr->stack[os_cppr->index] = cppr; | 793 | os_cppr->stack[0] = cppr; |
| 790 | 794 | ||
| 791 | if (firmware_has_feature(FW_FEATURE_LPAR)) | 795 | if (firmware_has_feature(FW_FEATURE_LPAR)) |
| 792 | lpar_cppr_info(cppr); | 796 | lpar_cppr_info(cppr); |
| @@ -821,8 +825,14 @@ void xics_setup_cpu(void) | |||
| 821 | 825 | ||
| 822 | void xics_teardown_cpu(void) | 826 | void xics_teardown_cpu(void) |
| 823 | { | 827 | { |
| 828 | struct xics_cppr *os_cppr = &__get_cpu_var(xics_cppr); | ||
| 824 | int cpu = smp_processor_id(); | 829 | int cpu = smp_processor_id(); |
| 825 | 830 | ||
| 831 | /* | ||
| 832 | * we have to reset the cppr index to 0 because we're | ||
| 833 | * not going to return from the IPI | ||
| 834 | */ | ||
| 835 | os_cppr->index = 0; | ||
| 826 | xics_set_cpu_priority(0); | 836 | xics_set_cpu_priority(0); |
| 827 | 837 | ||
| 828 | /* Clear any pending IPI request */ | 838 | /* Clear any pending IPI request */ |
diff --git a/arch/s390/include/asm/lowcore.h b/arch/s390/include/asm/lowcore.h index f2ef4b619ce1..c25dfac7dd76 100644 --- a/arch/s390/include/asm/lowcore.h +++ b/arch/s390/include/asm/lowcore.h | |||
| @@ -293,12 +293,12 @@ struct _lowcore | |||
| 293 | __u64 clock_comparator; /* 0x02d0 */ | 293 | __u64 clock_comparator; /* 0x02d0 */ |
| 294 | __u32 machine_flags; /* 0x02d8 */ | 294 | __u32 machine_flags; /* 0x02d8 */ |
| 295 | __u32 ftrace_func; /* 0x02dc */ | 295 | __u32 ftrace_func; /* 0x02dc */ |
| 296 | __u8 pad_0x02f0[0x0300-0x02f0]; /* 0x02f0 */ | 296 | __u8 pad_0x02e0[0x0300-0x02e0]; /* 0x02e0 */ |
| 297 | 297 | ||
| 298 | /* Interrupt response block */ | 298 | /* Interrupt response block */ |
| 299 | __u8 irb[64]; /* 0x0300 */ | 299 | __u8 irb[64]; /* 0x0300 */ |
| 300 | 300 | ||
| 301 | __u8 pad_0x0400[0x0e00-0x0400]; /* 0x0400 */ | 301 | __u8 pad_0x0340[0x0e00-0x0340]; /* 0x0340 */ |
| 302 | 302 | ||
| 303 | /* | 303 | /* |
| 304 | * 0xe00 contains the address of the IPL Parameter Information | 304 | * 0xe00 contains the address of the IPL Parameter Information |
diff --git a/arch/sh/kernel/cpu/sh3/entry.S b/arch/sh/kernel/cpu/sh3/entry.S index 3f7e2a22c7c2..f6a389c996cb 100644 --- a/arch/sh/kernel/cpu/sh3/entry.S +++ b/arch/sh/kernel/cpu/sh3/entry.S | |||
| @@ -132,7 +132,6 @@ ENTRY(tlb_protection_violation_store) | |||
| 132 | mov #1, r5 | 132 | mov #1, r5 |
| 133 | 133 | ||
| 134 | call_handle_tlbmiss: | 134 | call_handle_tlbmiss: |
| 135 | setup_frame_reg | ||
| 136 | mov.l 1f, r0 | 135 | mov.l 1f, r0 |
| 137 | mov r5, r8 | 136 | mov r5, r8 |
| 138 | mov.l @r0, r6 | 137 | mov.l @r0, r6 |
| @@ -365,6 +364,8 @@ handle_exception: | |||
| 365 | mov.l @k2, k2 ! read out vector and keep in k2 | 364 | mov.l @k2, k2 ! read out vector and keep in k2 |
| 366 | 365 | ||
| 367 | handle_exception_special: | 366 | handle_exception_special: |
| 367 | setup_frame_reg | ||
| 368 | |||
| 368 | ! Setup return address and jump to exception handler | 369 | ! Setup return address and jump to exception handler |
| 369 | mov.l 7f, r9 ! fetch return address | 370 | mov.l 7f, r9 ! fetch return address |
| 370 | stc r2_bank, r0 ! k2 (vector) | 371 | stc r2_bank, r0 ! k2 (vector) |
diff --git a/arch/sh/kernel/dwarf.c b/arch/sh/kernel/dwarf.c index 88d28ec3780a..e51168064e56 100644 --- a/arch/sh/kernel/dwarf.c +++ b/arch/sh/kernel/dwarf.c | |||
| @@ -540,6 +540,8 @@ void dwarf_free_frame(struct dwarf_frame *frame) | |||
| 540 | mempool_free(frame, dwarf_frame_pool); | 540 | mempool_free(frame, dwarf_frame_pool); |
| 541 | } | 541 | } |
| 542 | 542 | ||
| 543 | extern void ret_from_irq(void); | ||
| 544 | |||
| 543 | /** | 545 | /** |
| 544 | * dwarf_unwind_stack - unwind the stack | 546 | * dwarf_unwind_stack - unwind the stack |
| 545 | * | 547 | * |
| @@ -678,6 +680,24 @@ struct dwarf_frame * dwarf_unwind_stack(unsigned long pc, | |||
| 678 | addr = frame->cfa + reg->addr; | 680 | addr = frame->cfa + reg->addr; |
| 679 | frame->return_addr = __raw_readl(addr); | 681 | frame->return_addr = __raw_readl(addr); |
| 680 | 682 | ||
| 683 | /* | ||
| 684 | * Ah, the joys of unwinding through interrupts. | ||
| 685 | * | ||
| 686 | * Interrupts are tricky - the DWARF info needs to be _really_ | ||
| 687 | * accurate and unfortunately I'm seeing a lot of bogus DWARF | ||
| 688 | * info. For example, I've seen interrupts occur in epilogues | ||
| 689 | * just after the frame pointer (r14) had been restored. The | ||
| 690 | * problem was that the DWARF info claimed that the CFA could be | ||
| 691 | * reached by using the value of the frame pointer before it was | ||
| 692 | * restored. | ||
| 693 | * | ||
| 694 | * So until the compiler can be trusted to produce reliable | ||
| 695 | * DWARF info when it really matters, let's stop unwinding once | ||
| 696 | * we've calculated the function that was interrupted. | ||
| 697 | */ | ||
| 698 | if (prev && prev->pc == (unsigned long)ret_from_irq) | ||
| 699 | frame->return_addr = 0; | ||
| 700 | |||
| 681 | return frame; | 701 | return frame; |
| 682 | 702 | ||
| 683 | bail: | 703 | bail: |
diff --git a/arch/sh/kernel/entry-common.S b/arch/sh/kernel/entry-common.S index f0abd58c3a69..2b15ae60c3a0 100644 --- a/arch/sh/kernel/entry-common.S +++ b/arch/sh/kernel/entry-common.S | |||
| @@ -70,8 +70,14 @@ ret_from_exception: | |||
| 70 | CFI_STARTPROC simple | 70 | CFI_STARTPROC simple |
| 71 | CFI_DEF_CFA r14, 0 | 71 | CFI_DEF_CFA r14, 0 |
| 72 | CFI_REL_OFFSET 17, 64 | 72 | CFI_REL_OFFSET 17, 64 |
| 73 | CFI_REL_OFFSET 15, 0 | 73 | CFI_REL_OFFSET 15, 60 |
| 74 | CFI_REL_OFFSET 14, 56 | 74 | CFI_REL_OFFSET 14, 56 |
| 75 | CFI_REL_OFFSET 13, 52 | ||
| 76 | CFI_REL_OFFSET 12, 48 | ||
| 77 | CFI_REL_OFFSET 11, 44 | ||
| 78 | CFI_REL_OFFSET 10, 40 | ||
| 79 | CFI_REL_OFFSET 9, 36 | ||
| 80 | CFI_REL_OFFSET 8, 32 | ||
| 75 | preempt_stop() | 81 | preempt_stop() |
| 76 | ENTRY(ret_from_irq) | 82 | ENTRY(ret_from_irq) |
| 77 | ! | 83 | ! |
diff --git a/arch/sh/kernel/ptrace_64.c b/arch/sh/kernel/ptrace_64.c index 873ebdc4f98e..b063eb8b18e3 100644 --- a/arch/sh/kernel/ptrace_64.c +++ b/arch/sh/kernel/ptrace_64.c | |||
| @@ -133,6 +133,8 @@ void user_enable_single_step(struct task_struct *child) | |||
| 133 | struct pt_regs *regs = child->thread.uregs; | 133 | struct pt_regs *regs = child->thread.uregs; |
| 134 | 134 | ||
| 135 | regs->sr |= SR_SSTEP; /* auto-resetting upon exception */ | 135 | regs->sr |= SR_SSTEP; /* auto-resetting upon exception */ |
| 136 | |||
| 137 | set_tsk_thread_flag(child, TIF_SINGLESTEP); | ||
| 136 | } | 138 | } |
| 137 | 139 | ||
| 138 | void user_disable_single_step(struct task_struct *child) | 140 | void user_disable_single_step(struct task_struct *child) |
| @@ -140,6 +142,8 @@ void user_disable_single_step(struct task_struct *child) | |||
| 140 | struct pt_regs *regs = child->thread.uregs; | 142 | struct pt_regs *regs = child->thread.uregs; |
| 141 | 143 | ||
| 142 | regs->sr &= ~SR_SSTEP; | 144 | regs->sr &= ~SR_SSTEP; |
| 145 | |||
| 146 | clear_tsk_thread_flag(child, TIF_SINGLESTEP); | ||
| 143 | } | 147 | } |
| 144 | 148 | ||
| 145 | static int genregs_get(struct task_struct *target, | 149 | static int genregs_get(struct task_struct *target, |
| @@ -454,6 +458,8 @@ asmlinkage long long do_syscall_trace_enter(struct pt_regs *regs) | |||
| 454 | 458 | ||
| 455 | asmlinkage void do_syscall_trace_leave(struct pt_regs *regs) | 459 | asmlinkage void do_syscall_trace_leave(struct pt_regs *regs) |
| 456 | { | 460 | { |
| 461 | int step; | ||
| 462 | |||
| 457 | if (unlikely(current->audit_context)) | 463 | if (unlikely(current->audit_context)) |
| 458 | audit_syscall_exit(AUDITSC_RESULT(regs->regs[9]), | 464 | audit_syscall_exit(AUDITSC_RESULT(regs->regs[9]), |
| 459 | regs->regs[9]); | 465 | regs->regs[9]); |
| @@ -461,8 +467,9 @@ asmlinkage void do_syscall_trace_leave(struct pt_regs *regs) | |||
| 461 | if (unlikely(test_thread_flag(TIF_SYSCALL_TRACEPOINT))) | 467 | if (unlikely(test_thread_flag(TIF_SYSCALL_TRACEPOINT))) |
| 462 | trace_sys_exit(regs, regs->regs[9]); | 468 | trace_sys_exit(regs, regs->regs[9]); |
| 463 | 469 | ||
| 464 | if (test_thread_flag(TIF_SYSCALL_TRACE)) | 470 | step = test_thread_flag(TIF_SINGLESTEP); |
| 465 | tracehook_report_syscall_exit(regs, 0); | 471 | if (step || test_thread_flag(TIF_SYSCALL_TRACE)) |
| 472 | tracehook_report_syscall_exit(regs, step); | ||
| 466 | } | 473 | } |
| 467 | 474 | ||
| 468 | /* Called with interrupts disabled */ | 475 | /* Called with interrupts disabled */ |
diff --git a/arch/sh/kernel/signal_64.c b/arch/sh/kernel/signal_64.c index ce76dbdef294..580e97d46ca5 100644 --- a/arch/sh/kernel/signal_64.c +++ b/arch/sh/kernel/signal_64.c | |||
| @@ -118,7 +118,9 @@ static int do_signal(struct pt_regs *regs, sigset_t *oldset) | |||
| 118 | * clear the TS_RESTORE_SIGMASK flag. | 118 | * clear the TS_RESTORE_SIGMASK flag. |
| 119 | */ | 119 | */ |
| 120 | current_thread_info()->status &= ~TS_RESTORE_SIGMASK; | 120 | current_thread_info()->status &= ~TS_RESTORE_SIGMASK; |
| 121 | tracehook_signal_handler(signr, &info, &ka, regs, 0); | 121 | |
| 122 | tracehook_signal_handler(signr, &info, &ka, regs, | ||
| 123 | test_thread_flag(TIF_SINGLESTEP)); | ||
| 122 | return 1; | 124 | return 1; |
| 123 | } | 125 | } |
| 124 | } | 126 | } |
diff --git a/arch/sparc/kernel/process_32.c b/arch/sparc/kernel/process_32.c index 2830b415e214..c49865b30719 100644 --- a/arch/sparc/kernel/process_32.c +++ b/arch/sparc/kernel/process_32.c | |||
| @@ -526,7 +526,7 @@ int copy_thread(unsigned long clone_flags, unsigned long sp, | |||
| 526 | * Set some valid stack frames to give to the child. | 526 | * Set some valid stack frames to give to the child. |
| 527 | */ | 527 | */ |
| 528 | childstack = (struct sparc_stackf __user *) | 528 | childstack = (struct sparc_stackf __user *) |
| 529 | (sp & ~0x7UL); | 529 | (sp & ~0xfUL); |
| 530 | parentstack = (struct sparc_stackf __user *) | 530 | parentstack = (struct sparc_stackf __user *) |
| 531 | regs->u_regs[UREG_FP]; | 531 | regs->u_regs[UREG_FP]; |
| 532 | 532 | ||
diff --git a/arch/sparc/kernel/process_64.c b/arch/sparc/kernel/process_64.c index c3f1cce0e95e..cb70476bd8f5 100644 --- a/arch/sparc/kernel/process_64.c +++ b/arch/sparc/kernel/process_64.c | |||
| @@ -398,11 +398,11 @@ static unsigned long clone_stackframe(unsigned long csp, unsigned long psp) | |||
| 398 | } else | 398 | } else |
| 399 | __get_user(fp, &(((struct reg_window32 __user *)psp)->ins[6])); | 399 | __get_user(fp, &(((struct reg_window32 __user *)psp)->ins[6])); |
| 400 | 400 | ||
| 401 | /* Now 8-byte align the stack as this is mandatory in the | 401 | /* Now align the stack as this is mandatory in the Sparc ABI |
| 402 | * Sparc ABI due to how register windows work. This hides | 402 | * due to how register windows work. This hides the |
| 403 | * the restriction from thread libraries etc. -DaveM | 403 | * restriction from thread libraries etc. |
| 404 | */ | 404 | */ |
| 405 | csp &= ~7UL; | 405 | csp &= ~15UL; |
| 406 | 406 | ||
| 407 | distance = fp - psp; | 407 | distance = fp - psp; |
| 408 | rval = (csp - distance); | 408 | rval = (csp - distance); |
diff --git a/arch/sparc/kernel/signal32.c b/arch/sparc/kernel/signal32.c index ba5b09ad6666..ea22cd373c64 100644 --- a/arch/sparc/kernel/signal32.c +++ b/arch/sparc/kernel/signal32.c | |||
| @@ -120,8 +120,8 @@ struct rt_signal_frame32 { | |||
| 120 | }; | 120 | }; |
| 121 | 121 | ||
| 122 | /* Align macros */ | 122 | /* Align macros */ |
| 123 | #define SF_ALIGNEDSZ (((sizeof(struct signal_frame32) + 7) & (~7))) | 123 | #define SF_ALIGNEDSZ (((sizeof(struct signal_frame32) + 15) & (~15))) |
| 124 | #define RT_ALIGNEDSZ (((sizeof(struct rt_signal_frame32) + 7) & (~7))) | 124 | #define RT_ALIGNEDSZ (((sizeof(struct rt_signal_frame32) + 15) & (~15))) |
| 125 | 125 | ||
| 126 | int copy_siginfo_to_user32(compat_siginfo_t __user *to, siginfo_t *from) | 126 | int copy_siginfo_to_user32(compat_siginfo_t __user *to, siginfo_t *from) |
| 127 | { | 127 | { |
| @@ -420,15 +420,17 @@ static void __user *get_sigframe(struct sigaction *sa, struct pt_regs *regs, uns | |||
| 420 | sp = current->sas_ss_sp + current->sas_ss_size; | 420 | sp = current->sas_ss_sp + current->sas_ss_size; |
| 421 | } | 421 | } |
| 422 | 422 | ||
| 423 | sp -= framesize; | ||
| 424 | |||
| 423 | /* Always align the stack frame. This handles two cases. First, | 425 | /* Always align the stack frame. This handles two cases. First, |
| 424 | * sigaltstack need not be mindful of platform specific stack | 426 | * sigaltstack need not be mindful of platform specific stack |
| 425 | * alignment. Second, if we took this signal because the stack | 427 | * alignment. Second, if we took this signal because the stack |
| 426 | * is not aligned properly, we'd like to take the signal cleanly | 428 | * is not aligned properly, we'd like to take the signal cleanly |
| 427 | * and report that. | 429 | * and report that. |
| 428 | */ | 430 | */ |
| 429 | sp &= ~7UL; | 431 | sp &= ~15UL; |
| 430 | 432 | ||
| 431 | return (void __user *)(sp - framesize); | 433 | return (void __user *) sp; |
| 432 | } | 434 | } |
| 433 | 435 | ||
| 434 | static int save_fpu_state32(struct pt_regs *regs, __siginfo_fpu_t __user *fpu) | 436 | static int save_fpu_state32(struct pt_regs *regs, __siginfo_fpu_t __user *fpu) |
diff --git a/arch/sparc/kernel/signal_32.c b/arch/sparc/kernel/signal_32.c index 7ce1a1005b1d..9882df92ba0a 100644 --- a/arch/sparc/kernel/signal_32.c +++ b/arch/sparc/kernel/signal_32.c | |||
| @@ -267,15 +267,17 @@ static inline void __user *get_sigframe(struct sigaction *sa, struct pt_regs *re | |||
| 267 | sp = current->sas_ss_sp + current->sas_ss_size; | 267 | sp = current->sas_ss_sp + current->sas_ss_size; |
| 268 | } | 268 | } |
| 269 | 269 | ||
| 270 | sp -= framesize; | ||
| 271 | |||
| 270 | /* Always align the stack frame. This handles two cases. First, | 272 | /* Always align the stack frame. This handles two cases. First, |
| 271 | * sigaltstack need not be mindful of platform specific stack | 273 | * sigaltstack need not be mindful of platform specific stack |
| 272 | * alignment. Second, if we took this signal because the stack | 274 | * alignment. Second, if we took this signal because the stack |
| 273 | * is not aligned properly, we'd like to take the signal cleanly | 275 | * is not aligned properly, we'd like to take the signal cleanly |
| 274 | * and report that. | 276 | * and report that. |
| 275 | */ | 277 | */ |
| 276 | sp &= ~7UL; | 278 | sp &= ~15UL; |
| 277 | 279 | ||
| 278 | return (void __user *)(sp - framesize); | 280 | return (void __user *) sp; |
| 279 | } | 281 | } |
| 280 | 282 | ||
| 281 | static inline int | 283 | static inline int |
diff --git a/arch/sparc/kernel/signal_64.c b/arch/sparc/kernel/signal_64.c index 647afbda7ae1..9fa48c30037e 100644 --- a/arch/sparc/kernel/signal_64.c +++ b/arch/sparc/kernel/signal_64.c | |||
| @@ -353,7 +353,7 @@ segv: | |||
| 353 | /* Checks if the fp is valid */ | 353 | /* Checks if the fp is valid */ |
| 354 | static int invalid_frame_pointer(void __user *fp, int fplen) | 354 | static int invalid_frame_pointer(void __user *fp, int fplen) |
| 355 | { | 355 | { |
| 356 | if (((unsigned long) fp) & 7) | 356 | if (((unsigned long) fp) & 15) |
| 357 | return 1; | 357 | return 1; |
| 358 | return 0; | 358 | return 0; |
| 359 | } | 359 | } |
| @@ -396,15 +396,17 @@ static inline void __user *get_sigframe(struct k_sigaction *ka, struct pt_regs * | |||
| 396 | sp = current->sas_ss_sp + current->sas_ss_size; | 396 | sp = current->sas_ss_sp + current->sas_ss_size; |
| 397 | } | 397 | } |
| 398 | 398 | ||
| 399 | sp -= framesize; | ||
| 400 | |||
| 399 | /* Always align the stack frame. This handles two cases. First, | 401 | /* Always align the stack frame. This handles two cases. First, |
| 400 | * sigaltstack need not be mindful of platform specific stack | 402 | * sigaltstack need not be mindful of platform specific stack |
| 401 | * alignment. Second, if we took this signal because the stack | 403 | * alignment. Second, if we took this signal because the stack |
| 402 | * is not aligned properly, we'd like to take the signal cleanly | 404 | * is not aligned properly, we'd like to take the signal cleanly |
| 403 | * and report that. | 405 | * and report that. |
| 404 | */ | 406 | */ |
| 405 | sp &= ~7UL; | 407 | sp &= ~15UL; |
| 406 | 408 | ||
| 407 | return (void __user *)(sp - framesize); | 409 | return (void __user *) sp; |
| 408 | } | 410 | } |
| 409 | 411 | ||
| 410 | static inline void | 412 | static inline void |
diff --git a/arch/x86/include/asm/elf.h b/arch/x86/include/asm/elf.h index 1994d3f58443..f2ad2163109d 100644 --- a/arch/x86/include/asm/elf.h +++ b/arch/x86/include/asm/elf.h | |||
| @@ -170,10 +170,7 @@ static inline void elf_common_init(struct thread_struct *t, | |||
| 170 | } | 170 | } |
| 171 | 171 | ||
| 172 | #define ELF_PLAT_INIT(_r, load_addr) \ | 172 | #define ELF_PLAT_INIT(_r, load_addr) \ |
| 173 | do { \ | 173 | elf_common_init(¤t->thread, _r, 0) |
| 174 | elf_common_init(¤t->thread, _r, 0); \ | ||
| 175 | clear_thread_flag(TIF_IA32); \ | ||
| 176 | } while (0) | ||
| 177 | 174 | ||
| 178 | #define COMPAT_ELF_PLAT_INIT(regs, load_addr) \ | 175 | #define COMPAT_ELF_PLAT_INIT(regs, load_addr) \ |
| 179 | elf_common_init(¤t->thread, regs, __USER_DS) | 176 | elf_common_init(¤t->thread, regs, __USER_DS) |
diff --git a/arch/x86/include/asm/system.h b/arch/x86/include/asm/system.h index ecb544e65382..e04740f7a0bb 100644 --- a/arch/x86/include/asm/system.h +++ b/arch/x86/include/asm/system.h | |||
| @@ -11,9 +11,9 @@ | |||
| 11 | #include <linux/irqflags.h> | 11 | #include <linux/irqflags.h> |
| 12 | 12 | ||
| 13 | /* entries in ARCH_DLINFO: */ | 13 | /* entries in ARCH_DLINFO: */ |
| 14 | #ifdef CONFIG_IA32_EMULATION | 14 | #if defined(CONFIG_IA32_EMULATION) || !defined(CONFIG_X86_64) |
| 15 | # define AT_VECTOR_SIZE_ARCH 2 | 15 | # define AT_VECTOR_SIZE_ARCH 2 |
| 16 | #else | 16 | #else /* else it's non-compat x86-64 */ |
| 17 | # define AT_VECTOR_SIZE_ARCH 1 | 17 | # define AT_VECTOR_SIZE_ARCH 1 |
| 18 | #endif | 18 | #endif |
| 19 | 19 | ||
diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c index 036d28adf59d..af1c5833ff23 100644 --- a/arch/x86/kernel/acpi/boot.c +++ b/arch/x86/kernel/acpi/boot.c | |||
| @@ -1185,9 +1185,6 @@ static void __init acpi_process_madt(void) | |||
| 1185 | if (!error) { | 1185 | if (!error) { |
| 1186 | acpi_lapic = 1; | 1186 | acpi_lapic = 1; |
| 1187 | 1187 | ||
| 1188 | #ifdef CONFIG_X86_BIGSMP | ||
| 1189 | generic_bigsmp_probe(); | ||
| 1190 | #endif | ||
| 1191 | /* | 1188 | /* |
| 1192 | * Parse MADT IO-APIC entries | 1189 | * Parse MADT IO-APIC entries |
| 1193 | */ | 1190 | */ |
| @@ -1197,8 +1194,6 @@ static void __init acpi_process_madt(void) | |||
| 1197 | acpi_ioapic = 1; | 1194 | acpi_ioapic = 1; |
| 1198 | 1195 | ||
| 1199 | smp_found_config = 1; | 1196 | smp_found_config = 1; |
| 1200 | if (apic->setup_apic_routing) | ||
| 1201 | apic->setup_apic_routing(); | ||
| 1202 | } | 1197 | } |
| 1203 | } | 1198 | } |
| 1204 | if (error == -EINVAL) { | 1199 | if (error == -EINVAL) { |
| @@ -1349,14 +1344,6 @@ static struct dmi_system_id __initdata acpi_dmi_table[] = { | |||
| 1349 | }, | 1344 | }, |
| 1350 | { | 1345 | { |
| 1351 | .callback = force_acpi_ht, | 1346 | .callback = force_acpi_ht, |
| 1352 | .ident = "ASUS P2B-DS", | ||
| 1353 | .matches = { | ||
| 1354 | DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."), | ||
| 1355 | DMI_MATCH(DMI_BOARD_NAME, "P2B-DS"), | ||
| 1356 | }, | ||
| 1357 | }, | ||
| 1358 | { | ||
| 1359 | .callback = force_acpi_ht, | ||
| 1360 | .ident = "ASUS CUR-DLS", | 1347 | .ident = "ASUS CUR-DLS", |
| 1361 | .matches = { | 1348 | .matches = { |
| 1362 | DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."), | 1349 | DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."), |
diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c index 3987e4408f75..dfca210f6a10 100644 --- a/arch/x86/kernel/apic/apic.c +++ b/arch/x86/kernel/apic/apic.c | |||
| @@ -1641,9 +1641,7 @@ int __init APIC_init_uniprocessor(void) | |||
| 1641 | #endif | 1641 | #endif |
| 1642 | 1642 | ||
| 1643 | enable_IR_x2apic(); | 1643 | enable_IR_x2apic(); |
| 1644 | #ifdef CONFIG_X86_64 | ||
| 1645 | default_setup_apic_routing(); | 1644 | default_setup_apic_routing(); |
| 1646 | #endif | ||
| 1647 | 1645 | ||
| 1648 | verify_local_APIC(); | 1646 | verify_local_APIC(); |
| 1649 | connect_bsp_APIC(); | 1647 | connect_bsp_APIC(); |
| @@ -1891,21 +1889,6 @@ void __cpuinit generic_processor_info(int apicid, int version) | |||
| 1891 | if (apicid > max_physical_apicid) | 1889 | if (apicid > max_physical_apicid) |
| 1892 | max_physical_apicid = apicid; | 1890 | max_physical_apicid = apicid; |
| 1893 | 1891 | ||
| 1894 | #ifdef CONFIG_X86_32 | ||
| 1895 | if (num_processors > 8) { | ||
| 1896 | switch (boot_cpu_data.x86_vendor) { | ||
| 1897 | case X86_VENDOR_INTEL: | ||
| 1898 | if (!APIC_XAPIC(version)) { | ||
| 1899 | def_to_bigsmp = 0; | ||
| 1900 | break; | ||
| 1901 | } | ||
| 1902 | /* If P4 and above fall through */ | ||
| 1903 | case X86_VENDOR_AMD: | ||
| 1904 | def_to_bigsmp = 1; | ||
| 1905 | } | ||
| 1906 | } | ||
| 1907 | #endif | ||
| 1908 | |||
| 1909 | #if defined(CONFIG_SMP) || defined(CONFIG_X86_64) | 1892 | #if defined(CONFIG_SMP) || defined(CONFIG_X86_64) |
| 1910 | early_per_cpu(x86_cpu_to_apicid, cpu) = apicid; | 1893 | early_per_cpu(x86_cpu_to_apicid, cpu) = apicid; |
| 1911 | early_per_cpu(x86_bios_cpu_apicid, cpu) = apicid; | 1894 | early_per_cpu(x86_bios_cpu_apicid, cpu) = apicid; |
diff --git a/arch/x86/kernel/apic/probe_32.c b/arch/x86/kernel/apic/probe_32.c index 1a6559f6768c..99d2fe016084 100644 --- a/arch/x86/kernel/apic/probe_32.c +++ b/arch/x86/kernel/apic/probe_32.c | |||
| @@ -52,7 +52,32 @@ static int __init print_ipi_mode(void) | |||
| 52 | } | 52 | } |
| 53 | late_initcall(print_ipi_mode); | 53 | late_initcall(print_ipi_mode); |
| 54 | 54 | ||
| 55 | void default_setup_apic_routing(void) | 55 | void __init default_setup_apic_routing(void) |
| 56 | { | ||
| 57 | int version = apic_version[boot_cpu_physical_apicid]; | ||
| 58 | |||
| 59 | if (num_possible_cpus() > 8) { | ||
| 60 | switch (boot_cpu_data.x86_vendor) { | ||
| 61 | case X86_VENDOR_INTEL: | ||
| 62 | if (!APIC_XAPIC(version)) { | ||
| 63 | def_to_bigsmp = 0; | ||
| 64 | break; | ||
| 65 | } | ||
| 66 | /* If P4 and above fall through */ | ||
| 67 | case X86_VENDOR_AMD: | ||
| 68 | def_to_bigsmp = 1; | ||
| 69 | } | ||
| 70 | } | ||
| 71 | |||
| 72 | #ifdef CONFIG_X86_BIGSMP | ||
| 73 | generic_bigsmp_probe(); | ||
| 74 | #endif | ||
| 75 | |||
| 76 | if (apic->setup_apic_routing) | ||
| 77 | apic->setup_apic_routing(); | ||
| 78 | } | ||
| 79 | |||
| 80 | static void setup_apic_flat_routing(void) | ||
| 56 | { | 81 | { |
| 57 | #ifdef CONFIG_X86_IO_APIC | 82 | #ifdef CONFIG_X86_IO_APIC |
| 58 | printk(KERN_INFO | 83 | printk(KERN_INFO |
| @@ -103,7 +128,7 @@ struct apic apic_default = { | |||
| 103 | .init_apic_ldr = default_init_apic_ldr, | 128 | .init_apic_ldr = default_init_apic_ldr, |
| 104 | 129 | ||
| 105 | .ioapic_phys_id_map = default_ioapic_phys_id_map, | 130 | .ioapic_phys_id_map = default_ioapic_phys_id_map, |
| 106 | .setup_apic_routing = default_setup_apic_routing, | 131 | .setup_apic_routing = setup_apic_flat_routing, |
| 107 | .multi_timer_check = NULL, | 132 | .multi_timer_check = NULL, |
| 108 | .apicid_to_node = default_apicid_to_node, | 133 | .apicid_to_node = default_apicid_to_node, |
| 109 | .cpu_to_logical_apicid = default_cpu_to_logical_apicid, | 134 | .cpu_to_logical_apicid = default_cpu_to_logical_apicid, |
diff --git a/arch/x86/kernel/apic/probe_64.c b/arch/x86/kernel/apic/probe_64.c index 450fe2064a14..83e9be4778e2 100644 --- a/arch/x86/kernel/apic/probe_64.c +++ b/arch/x86/kernel/apic/probe_64.c | |||
| @@ -67,7 +67,7 @@ void __init default_setup_apic_routing(void) | |||
| 67 | } | 67 | } |
| 68 | #endif | 68 | #endif |
| 69 | 69 | ||
| 70 | if (apic == &apic_flat && num_processors > 8) | 70 | if (apic == &apic_flat && num_possible_cpus() > 8) |
| 71 | apic = &apic_physflat; | 71 | apic = &apic_physflat; |
| 72 | 72 | ||
| 73 | printk(KERN_INFO "Setting APIC routing to %s\n", apic->name); | 73 | printk(KERN_INFO "Setting APIC routing to %s\n", apic->name); |
diff --git a/arch/x86/kernel/cpu/cpufreq/powernow-k8.c b/arch/x86/kernel/cpu/cpufreq/powernow-k8.c index f125e5c551c0..6e44519960c8 100644 --- a/arch/x86/kernel/cpu/cpufreq/powernow-k8.c +++ b/arch/x86/kernel/cpu/cpufreq/powernow-k8.c | |||
| @@ -1356,6 +1356,7 @@ static int __devexit powernowk8_cpu_exit(struct cpufreq_policy *pol) | |||
| 1356 | 1356 | ||
| 1357 | kfree(data->powernow_table); | 1357 | kfree(data->powernow_table); |
| 1358 | kfree(data); | 1358 | kfree(data); |
| 1359 | per_cpu(powernow_data, pol->cpu) = NULL; | ||
| 1359 | 1360 | ||
| 1360 | return 0; | 1361 | return 0; |
| 1361 | } | 1362 | } |
| @@ -1375,7 +1376,7 @@ static unsigned int powernowk8_get(unsigned int cpu) | |||
| 1375 | int err; | 1376 | int err; |
| 1376 | 1377 | ||
| 1377 | if (!data) | 1378 | if (!data) |
| 1378 | return -EINVAL; | 1379 | return 0; |
| 1379 | 1380 | ||
| 1380 | smp_call_function_single(cpu, query_values_on_cpu, &err, true); | 1381 | smp_call_function_single(cpu, query_values_on_cpu, &err, true); |
| 1381 | if (err) | 1382 | if (err) |
diff --git a/arch/x86/kernel/mpparse.c b/arch/x86/kernel/mpparse.c index 40b54ceb68b5..a2c1edd2d3ac 100644 --- a/arch/x86/kernel/mpparse.c +++ b/arch/x86/kernel/mpparse.c | |||
| @@ -359,13 +359,6 @@ static int __init smp_read_mpc(struct mpc_table *mpc, unsigned early) | |||
| 359 | x86_init.mpparse.mpc_record(1); | 359 | x86_init.mpparse.mpc_record(1); |
| 360 | } | 360 | } |
| 361 | 361 | ||
| 362 | #ifdef CONFIG_X86_BIGSMP | ||
| 363 | generic_bigsmp_probe(); | ||
| 364 | #endif | ||
| 365 | |||
| 366 | if (apic->setup_apic_routing) | ||
| 367 | apic->setup_apic_routing(); | ||
| 368 | |||
| 369 | if (!num_processors) | 362 | if (!num_processors) |
| 370 | printk(KERN_ERR "MPTABLE: no processors registered!\n"); | 363 | printk(KERN_ERR "MPTABLE: no processors registered!\n"); |
| 371 | return num_processors; | 364 | return num_processors; |
diff --git a/arch/x86/kernel/process_64.c b/arch/x86/kernel/process_64.c index 41a26a82470a..126f0b493d04 100644 --- a/arch/x86/kernel/process_64.c +++ b/arch/x86/kernel/process_64.c | |||
| @@ -527,6 +527,7 @@ void set_personality_ia32(void) | |||
| 527 | 527 | ||
| 528 | /* Make sure to be in 32bit mode */ | 528 | /* Make sure to be in 32bit mode */ |
| 529 | set_thread_flag(TIF_IA32); | 529 | set_thread_flag(TIF_IA32); |
| 530 | current->personality |= force_personality32; | ||
| 530 | 531 | ||
| 531 | /* Prepare the first "return" to user space */ | 532 | /* Prepare the first "return" to user space */ |
| 532 | current_thread_info()->status |= TS_COMPAT; | 533 | current_thread_info()->status |= TS_COMPAT; |
diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c index 678d0b8c26f3..b4e870cbdc60 100644 --- a/arch/x86/kernel/smpboot.c +++ b/arch/x86/kernel/smpboot.c | |||
| @@ -1083,9 +1083,7 @@ void __init native_smp_prepare_cpus(unsigned int max_cpus) | |||
| 1083 | set_cpu_sibling_map(0); | 1083 | set_cpu_sibling_map(0); |
| 1084 | 1084 | ||
| 1085 | enable_IR_x2apic(); | 1085 | enable_IR_x2apic(); |
| 1086 | #ifdef CONFIG_X86_64 | ||
| 1087 | default_setup_apic_routing(); | 1086 | default_setup_apic_routing(); |
| 1088 | #endif | ||
| 1089 | 1087 | ||
| 1090 | if (smp_sanity_check(max_cpus) < 0) { | 1088 | if (smp_sanity_check(max_cpus) < 0) { |
| 1091 | printk(KERN_INFO "SMP disabled\n"); | 1089 | printk(KERN_INFO "SMP disabled\n"); |
diff --git a/arch/x86/kvm/i8254.c b/arch/x86/kvm/i8254.c index 296aba49472a..15578f180e59 100644 --- a/arch/x86/kvm/i8254.c +++ b/arch/x86/kvm/i8254.c | |||
| @@ -467,6 +467,9 @@ static int pit_ioport_read(struct kvm_io_device *this, | |||
| 467 | return -EOPNOTSUPP; | 467 | return -EOPNOTSUPP; |
| 468 | 468 | ||
| 469 | addr &= KVM_PIT_CHANNEL_MASK; | 469 | addr &= KVM_PIT_CHANNEL_MASK; |
| 470 | if (addr == 3) | ||
| 471 | return 0; | ||
| 472 | |||
| 470 | s = &pit_state->channels[addr]; | 473 | s = &pit_state->channels[addr]; |
| 471 | 474 | ||
| 472 | mutex_lock(&pit_state->lock); | 475 | mutex_lock(&pit_state->lock); |
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index 1ddcad452add..a1e1bc9d412d 100644 --- a/arch/x86/kvm/x86.c +++ b/arch/x86/kvm/x86.c | |||
| @@ -670,7 +670,7 @@ static void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock) | |||
| 670 | { | 670 | { |
| 671 | static int version; | 671 | static int version; |
| 672 | struct pvclock_wall_clock wc; | 672 | struct pvclock_wall_clock wc; |
| 673 | struct timespec now, sys, boot; | 673 | struct timespec boot; |
| 674 | 674 | ||
| 675 | if (!wall_clock) | 675 | if (!wall_clock) |
| 676 | return; | 676 | return; |
| @@ -685,9 +685,7 @@ static void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock) | |||
| 685 | * wall clock specified here. guest system time equals host | 685 | * wall clock specified here. guest system time equals host |
| 686 | * system time for us, thus we must fill in host boot time here. | 686 | * system time for us, thus we must fill in host boot time here. |
| 687 | */ | 687 | */ |
| 688 | now = current_kernel_time(); | 688 | getboottime(&boot); |
| 689 | ktime_get_ts(&sys); | ||
| 690 | boot = ns_to_timespec(timespec_to_ns(&now) - timespec_to_ns(&sys)); | ||
| 691 | 689 | ||
| 692 | wc.sec = boot.tv_sec; | 690 | wc.sec = boot.tv_sec; |
| 693 | wc.nsec = boot.tv_nsec; | 691 | wc.nsec = boot.tv_nsec; |
| @@ -762,6 +760,7 @@ static void kvm_write_guest_time(struct kvm_vcpu *v) | |||
| 762 | local_irq_save(flags); | 760 | local_irq_save(flags); |
| 763 | kvm_get_msr(v, MSR_IA32_TSC, &vcpu->hv_clock.tsc_timestamp); | 761 | kvm_get_msr(v, MSR_IA32_TSC, &vcpu->hv_clock.tsc_timestamp); |
| 764 | ktime_get_ts(&ts); | 762 | ktime_get_ts(&ts); |
| 763 | monotonic_to_bootbased(&ts); | ||
| 765 | local_irq_restore(flags); | 764 | local_irq_restore(flags); |
| 766 | 765 | ||
| 767 | /* With all the info we got, fill in the values */ | 766 | /* With all the info we got, fill in the values */ |
diff --git a/arch/x86/mm/gup.c b/arch/x86/mm/gup.c index 71da1bca13cb..738e6593799d 100644 --- a/arch/x86/mm/gup.c +++ b/arch/x86/mm/gup.c | |||
| @@ -18,7 +18,7 @@ static inline pte_t gup_get_pte(pte_t *ptep) | |||
| 18 | #else | 18 | #else |
| 19 | /* | 19 | /* |
| 20 | * With get_user_pages_fast, we walk down the pagetables without taking | 20 | * With get_user_pages_fast, we walk down the pagetables without taking |
| 21 | * any locks. For this we would like to load the pointers atoimcally, | 21 | * any locks. For this we would like to load the pointers atomically, |
| 22 | * but that is not possible (without expensive cmpxchg8b) on PAE. What | 22 | * but that is not possible (without expensive cmpxchg8b) on PAE. What |
| 23 | * we do have is the guarantee that a pte will only either go from not | 23 | * we do have is the guarantee that a pte will only either go from not |
| 24 | * present to present, or present to not present or both -- it will not | 24 | * present to present, or present to not present or both -- it will not |
