diff options
author | Lachlan McIlroy <lachlan@redback.melbourne.sgi.com> | 2008-02-25 22:26:14 -0500 |
---|---|---|
committer | Lachlan McIlroy <lachlan@redback.melbourne.sgi.com> | 2008-02-25 22:26:14 -0500 |
commit | 91e229bbad6524aabaac8717b2f559283670c37a (patch) | |
tree | 84a55e4ac2dcf23add97bd9fde3e9cb232c12b30 /arch | |
parent | 6e5e93424dc66542c548dfaa3bfebe30d46d50dd (diff) | |
parent | bfa274e2436fc7ef72ef51c878083647f1cfd429 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6 into for-linus
Diffstat (limited to 'arch')
168 files changed, 6357 insertions, 3257 deletions
diff --git a/arch/arm/mach-omap1/board-sx1.c b/arch/arm/mach-omap1/board-sx1.c index 1c7f09aedf07..e473fa6d4a5f 100644 --- a/arch/arm/mach-omap1/board-sx1.c +++ b/arch/arm/mach-omap1/board-sx1.c | |||
@@ -61,6 +61,7 @@ int sx1_i2c_write_byte(u8 devaddr, u8 regoffset, u8 value) | |||
61 | data[0] = regoffset; /* register num */ | 61 | data[0] = regoffset; /* register num */ |
62 | data[1] = value; /* register data */ | 62 | data[1] = value; /* register data */ |
63 | err = i2c_transfer(adap, msg, 1); | 63 | err = i2c_transfer(adap, msg, 1); |
64 | i2c_put_adapter(adap); | ||
64 | if (err >= 0) | 65 | if (err >= 0) |
65 | return 0; | 66 | return 0; |
66 | return err; | 67 | return err; |
@@ -91,6 +92,7 @@ int sx1_i2c_read_byte(u8 devaddr, u8 regoffset, u8 *value) | |||
91 | msg->buf = data; | 92 | msg->buf = data; |
92 | err = i2c_transfer(adap, msg, 1); | 93 | err = i2c_transfer(adap, msg, 1); |
93 | *value = data[0]; | 94 | *value = data[0]; |
95 | i2c_put_adapter(adap); | ||
94 | 96 | ||
95 | if (err >= 0) | 97 | if (err >= 0) |
96 | return 0; | 98 | return 0; |
diff --git a/arch/arm/mach-orion/ts209-setup.c b/arch/arm/mach-orion/ts209-setup.c index 306dbcd1e37b..b8cfe6813e9d 100644 --- a/arch/arm/mach-orion/ts209-setup.c +++ b/arch/arm/mach-orion/ts209-setup.c | |||
@@ -192,9 +192,13 @@ static struct mv643xx_eth_platform_data qnap_ts209_eth_data = { | |||
192 | /***************************************************************************** | 192 | /***************************************************************************** |
193 | * RTC S35390A on I2C bus | 193 | * RTC S35390A on I2C bus |
194 | ****************************************************************************/ | 194 | ****************************************************************************/ |
195 | |||
196 | #define TS209_RTC_GPIO 3 | ||
197 | |||
195 | static struct i2c_board_info __initdata qnap_ts209_i2c_rtc = { | 198 | static struct i2c_board_info __initdata qnap_ts209_i2c_rtc = { |
196 | .driver_name = "rtc-s35390a", | 199 | .driver_name = "rtc-s35390a", |
197 | .addr = 0x30, | 200 | .addr = 0x30, |
201 | .irq = 0, | ||
198 | }; | 202 | }; |
199 | 203 | ||
200 | /**************************************************************************** | 204 | /**************************************************************************** |
@@ -328,7 +332,18 @@ static void __init qnap_ts209_init(void) | |||
328 | 332 | ||
329 | platform_add_devices(qnap_ts209_devices, | 333 | platform_add_devices(qnap_ts209_devices, |
330 | ARRAY_SIZE(qnap_ts209_devices)); | 334 | ARRAY_SIZE(qnap_ts209_devices)); |
335 | |||
336 | /* Get RTC IRQ and register the chip */ | ||
337 | if (gpio_request(TS209_RTC_GPIO, "rtc") == 0) { | ||
338 | if (gpio_direction_input(TS209_RTC_GPIO) == 0) | ||
339 | qnap_ts209_i2c_rtc.irq = gpio_to_irq(TS209_RTC_GPIO); | ||
340 | else | ||
341 | gpio_free(TS209_RTC_GPIO); | ||
342 | } | ||
343 | if (qnap_ts209_i2c_rtc.irq == 0) | ||
344 | pr_warning("qnap_ts209_init: failed to get RTC IRQ\n"); | ||
331 | i2c_register_board_info(0, &qnap_ts209_i2c_rtc, 1); | 345 | i2c_register_board_info(0, &qnap_ts209_i2c_rtc, 1); |
346 | |||
332 | orion_eth_init(&qnap_ts209_eth_data); | 347 | orion_eth_init(&qnap_ts209_eth_data); |
333 | orion_sata_init(&qnap_ts209_sata_data); | 348 | orion_sata_init(&qnap_ts209_sata_data); |
334 | } | 349 | } |
diff --git a/arch/arm/mach-pxa/clock.c b/arch/arm/mach-pxa/clock.c index 83ef5ecaf432..df5ae2710ab1 100644 --- a/arch/arm/mach-pxa/clock.c +++ b/arch/arm/mach-pxa/clock.c | |||
@@ -23,18 +23,27 @@ static LIST_HEAD(clocks); | |||
23 | static DEFINE_MUTEX(clocks_mutex); | 23 | static DEFINE_MUTEX(clocks_mutex); |
24 | static DEFINE_SPINLOCK(clocks_lock); | 24 | static DEFINE_SPINLOCK(clocks_lock); |
25 | 25 | ||
26 | static struct clk *clk_lookup(struct device *dev, const char *id) | ||
27 | { | ||
28 | struct clk *p; | ||
29 | |||
30 | list_for_each_entry(p, &clocks, node) | ||
31 | if (strcmp(id, p->name) == 0 && p->dev == dev) | ||
32 | return p; | ||
33 | |||
34 | return NULL; | ||
35 | } | ||
36 | |||
26 | struct clk *clk_get(struct device *dev, const char *id) | 37 | struct clk *clk_get(struct device *dev, const char *id) |
27 | { | 38 | { |
28 | struct clk *p, *clk = ERR_PTR(-ENOENT); | 39 | struct clk *p, *clk = ERR_PTR(-ENOENT); |
29 | 40 | ||
30 | mutex_lock(&clocks_mutex); | 41 | mutex_lock(&clocks_mutex); |
31 | list_for_each_entry(p, &clocks, node) { | 42 | p = clk_lookup(dev, id); |
32 | if (strcmp(id, p->name) == 0 && | 43 | if (!p) |
33 | (p->dev == NULL || p->dev == dev)) { | 44 | p = clk_lookup(NULL, id); |
34 | clk = p; | 45 | if (p) |
35 | break; | 46 | clk = p; |
36 | } | ||
37 | } | ||
38 | mutex_unlock(&clocks_mutex); | 47 | mutex_unlock(&clocks_mutex); |
39 | 48 | ||
40 | return clk; | 49 | return clk; |
diff --git a/arch/arm/mach-pxa/cpu-pxa.c b/arch/arm/mach-pxa/cpu-pxa.c index cbc583beedc8..939a3867f77c 100644 --- a/arch/arm/mach-pxa/cpu-pxa.c +++ b/arch/arm/mach-pxa/cpu-pxa.c | |||
@@ -134,7 +134,7 @@ static int pxa_set_target(struct cpufreq_policy *policy, | |||
134 | struct cpufreq_frequency_table *pxa_freqs_table; | 134 | struct cpufreq_frequency_table *pxa_freqs_table; |
135 | pxa_freqs_t *pxa_freq_settings; | 135 | pxa_freqs_t *pxa_freq_settings; |
136 | struct cpufreq_freqs freqs; | 136 | struct cpufreq_freqs freqs; |
137 | int idx; | 137 | unsigned int idx; |
138 | unsigned long flags; | 138 | unsigned long flags; |
139 | unsigned int unused, preset_mdrefr, postset_mdrefr; | 139 | unsigned int unused, preset_mdrefr, postset_mdrefr; |
140 | void *ramstart = phys_to_virt(0xa0000000); | 140 | void *ramstart = phys_to_virt(0xa0000000); |
@@ -233,6 +233,11 @@ static int pxa_set_target(struct cpufreq_policy *policy, | |||
233 | return 0; | 233 | return 0; |
234 | } | 234 | } |
235 | 235 | ||
236 | static unsigned int pxa_cpufreq_get(unsigned int cpu) | ||
237 | { | ||
238 | return get_clk_frequency_khz(0); | ||
239 | } | ||
240 | |||
236 | static int pxa_cpufreq_init(struct cpufreq_policy *policy) | 241 | static int pxa_cpufreq_init(struct cpufreq_policy *policy) |
237 | { | 242 | { |
238 | int i; | 243 | int i; |
@@ -269,6 +274,7 @@ static struct cpufreq_driver pxa_cpufreq_driver = { | |||
269 | .verify = pxa_verify_policy, | 274 | .verify = pxa_verify_policy, |
270 | .target = pxa_set_target, | 275 | .target = pxa_set_target, |
271 | .init = pxa_cpufreq_init, | 276 | .init = pxa_cpufreq_init, |
277 | .get = pxa_cpufreq_get, | ||
272 | .name = "PXA25x", | 278 | .name = "PXA25x", |
273 | }; | 279 | }; |
274 | 280 | ||
diff --git a/arch/frv/kernel/entry.S b/arch/frv/kernel/entry.S index ca6a345b87e4..f36d7f4a7c25 100644 --- a/arch/frv/kernel/entry.S +++ b/arch/frv/kernel/entry.S | |||
@@ -1494,9 +1494,11 @@ sys_call_table: | |||
1494 | .long sys_epoll_pwait | 1494 | .long sys_epoll_pwait |
1495 | .long sys_utimensat /* 320 */ | 1495 | .long sys_utimensat /* 320 */ |
1496 | .long sys_signalfd | 1496 | .long sys_signalfd |
1497 | .long sys_ni_syscall | 1497 | .long sys_timerfd_create |
1498 | .long sys_eventfd | 1498 | .long sys_eventfd |
1499 | .long sys_fallocate | 1499 | .long sys_fallocate |
1500 | .long sys_timerfd_settime /* 325 */ | ||
1501 | .long sys_timerfd_gettime | ||
1500 | 1502 | ||
1501 | 1503 | ||
1502 | syscall_table_size = (. - sys_call_table) | 1504 | syscall_table_size = (. - sys_call_table) |
diff --git a/arch/frv/kernel/vmlinux.lds.S b/arch/frv/kernel/vmlinux.lds.S index 17725a55aed8..b95c4eace62f 100644 --- a/arch/frv/kernel/vmlinux.lds.S +++ b/arch/frv/kernel/vmlinux.lds.S | |||
@@ -76,9 +76,6 @@ SECTIONS | |||
76 | *(.data.init_task) | 76 | *(.data.init_task) |
77 | } | 77 | } |
78 | 78 | ||
79 | . = ALIGN(4096); | ||
80 | .data.page_aligned : { *(.data.idt) } | ||
81 | |||
82 | . = ALIGN(L1_CACHE_BYTES); | 79 | . = ALIGN(L1_CACHE_BYTES); |
83 | .data.cacheline_aligned : { *(.data.cacheline_aligned) } | 80 | .data.cacheline_aligned : { *(.data.cacheline_aligned) } |
84 | 81 | ||
diff --git a/arch/h8300/defconfig b/arch/h8300/defconfig index 8f1ec3297150..8901cdb5e75b 100644 --- a/arch/h8300/defconfig +++ b/arch/h8300/defconfig | |||
@@ -1,51 +1,98 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.11-rc1 | 3 | # Linux kernel version: 2.6.25-rc1 |
4 | # Sun Jan 16 17:24:38 2005 | 4 | # Fri Feb 15 17:13:14 2008 |
5 | # | 5 | # |
6 | CONFIG_H8300=y | 6 | CONFIG_H8300=y |
7 | # CONFIG_MMU is not set | 7 | # CONFIG_MMU is not set |
8 | # CONFIG_SWAP is not set | 8 | # CONFIG_SWAP is not set |
9 | CONFIG_ZONE_DMA=y | ||
9 | # CONFIG_FPU is not set | 10 | # CONFIG_FPU is not set |
10 | CONFIG_UID16=y | ||
11 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | 11 | CONFIG_RWSEM_GENERIC_SPINLOCK=y |
12 | # CONFIG_RWSEM_XCHGADD_ALGORITHM is not set | 12 | # CONFIG_RWSEM_XCHGADD_ALGORITHM is not set |
13 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
14 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
15 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
16 | CONFIG_GENERIC_HWEIGHT=y | ||
17 | CONFIG_GENERIC_HARDIRQS=y | ||
13 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 18 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
19 | CONFIG_GENERIC_TIME=y | ||
20 | CONFIG_TIME_LOW_RES=y | ||
21 | CONFIG_ARCH_SUPPORTS_AOUT=y | ||
22 | CONFIG_NO_IOPORT=y | ||
23 | CONFIG_NO_DMA=y | ||
14 | CONFIG_ISA=y | 24 | CONFIG_ISA=y |
15 | # CONFIG_PCI is not set | 25 | # CONFIG_PCI is not set |
26 | CONFIG_HZ=100 | ||
27 | CONFIG_C_SYMBOL_PREFIX=y | ||
28 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
16 | 29 | ||
17 | # | 30 | # |
18 | # Code maturity level options | 31 | # General setup |
19 | # | 32 | # |
20 | CONFIG_EXPERIMENTAL=y | 33 | CONFIG_EXPERIMENTAL=y |
21 | CONFIG_CLEAN_COMPILE=y | ||
22 | CONFIG_BROKEN_ON_SMP=y | 34 | CONFIG_BROKEN_ON_SMP=y |
23 | 35 | CONFIG_INIT_ENV_ARG_LIMIT=32 | |
24 | # | ||
25 | # General setup | ||
26 | # | ||
27 | CONFIG_LOCALVERSION="" | 36 | CONFIG_LOCALVERSION="" |
37 | # CONFIG_LOCALVERSION_AUTO is not set | ||
38 | # CONFIG_SYSVIPC is not set | ||
28 | # CONFIG_BSD_PROCESS_ACCT is not set | 39 | # CONFIG_BSD_PROCESS_ACCT is not set |
29 | # CONFIG_SYSCTL is not set | ||
30 | # CONFIG_AUDIT is not set | ||
31 | CONFIG_LOG_BUF_SHIFT=14 | ||
32 | # CONFIG_HOTPLUG is not set | ||
33 | # CONFIG_IKCONFIG is not set | 40 | # CONFIG_IKCONFIG is not set |
41 | CONFIG_LOG_BUF_SHIFT=14 | ||
42 | # CONFIG_CGROUPS is not set | ||
43 | # CONFIG_FAIR_GROUP_SCHED is not set | ||
44 | # CONFIG_SYSFS_DEPRECATED is not set | ||
45 | # CONFIG_RELAY is not set | ||
46 | # CONFIG_NAMESPACES is not set | ||
47 | # CONFIG_BLK_DEV_INITRD is not set | ||
48 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
49 | CONFIG_SYSCTL=y | ||
34 | CONFIG_EMBEDDED=y | 50 | CONFIG_EMBEDDED=y |
51 | # CONFIG_UID16 is not set | ||
52 | # CONFIG_SYSCTL_SYSCALL is not set | ||
35 | # CONFIG_KALLSYMS is not set | 53 | # CONFIG_KALLSYMS is not set |
54 | # CONFIG_HOTPLUG is not set | ||
55 | CONFIG_PRINTK=y | ||
56 | CONFIG_BUG=y | ||
57 | CONFIG_ELF_CORE=y | ||
58 | # CONFIG_COMPAT_BRK is not set | ||
59 | # CONFIG_BASE_FULL is not set | ||
36 | # CONFIG_FUTEX is not set | 60 | # CONFIG_FUTEX is not set |
37 | # CONFIG_EPOLL is not set | 61 | # CONFIG_EPOLL is not set |
38 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 62 | # CONFIG_SIGNALFD is not set |
39 | CONFIG_CC_ALIGN_FUNCTIONS=0 | 63 | # CONFIG_TIMERFD is not set |
40 | CONFIG_CC_ALIGN_LABELS=0 | 64 | # CONFIG_EVENTFD is not set |
41 | CONFIG_CC_ALIGN_LOOPS=0 | 65 | # CONFIG_VM_EVENT_COUNTERS is not set |
42 | CONFIG_CC_ALIGN_JUMPS=0 | 66 | # CONFIG_SLAB is not set |
67 | # CONFIG_SLUB is not set | ||
68 | CONFIG_SLOB=y | ||
69 | # CONFIG_PROFILING is not set | ||
70 | # CONFIG_MARKERS is not set | ||
71 | # CONFIG_HAVE_OPROFILE is not set | ||
72 | # CONFIG_HAVE_KPROBES is not set | ||
43 | CONFIG_TINY_SHMEM=y | 73 | CONFIG_TINY_SHMEM=y |
74 | CONFIG_BASE_SMALL=1 | ||
75 | # CONFIG_MODULES is not set | ||
76 | CONFIG_BLOCK=y | ||
77 | # CONFIG_LBD is not set | ||
78 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
79 | # CONFIG_LSF is not set | ||
80 | # CONFIG_BLK_DEV_BSG is not set | ||
44 | 81 | ||
45 | # | 82 | # |
46 | # Loadable module support | 83 | # IO Schedulers |
47 | # | 84 | # |
48 | # CONFIG_MODULES is not set | 85 | CONFIG_IOSCHED_NOOP=y |
86 | # CONFIG_IOSCHED_AS is not set | ||
87 | # CONFIG_IOSCHED_DEADLINE is not set | ||
88 | # CONFIG_IOSCHED_CFQ is not set | ||
89 | # CONFIG_DEFAULT_AS is not set | ||
90 | # CONFIG_DEFAULT_DEADLINE is not set | ||
91 | # CONFIG_DEFAULT_CFQ is not set | ||
92 | CONFIG_DEFAULT_NOOP=y | ||
93 | CONFIG_DEFAULT_IOSCHED="noop" | ||
94 | CONFIG_CLASSIC_RCU=y | ||
95 | # CONFIG_PREEMPT_RCU is not set | ||
49 | 96 | ||
50 | # | 97 | # |
51 | # Processor type and features | 98 | # Processor type and features |
@@ -62,14 +109,26 @@ CONFIG_H8300H_GENERIC=y | |||
62 | # Detail Selection | 109 | # Detail Selection |
63 | # | 110 | # |
64 | # CONFIG_H83002 is not set | 111 | # CONFIG_H83002 is not set |
65 | # CONFIG_H83007 is not set | 112 | CONFIG_H83007=y |
66 | # CONFIG_H83048 is not set | 113 | # CONFIG_H83048 is not set |
67 | CONFIG_H83068=y | 114 | # CONFIG_H83068 is not set |
68 | CONFIG_CPU_CLOCK=20000 | 115 | CONFIG_CPU_CLOCK=20000 |
69 | # CONFIG_RAMKERNEL is not set | 116 | CONFIG_RAMKERNEL=y |
70 | CONFIG_ROMKERNEL=y | 117 | # CONFIG_ROMKERNEL is not set |
71 | CONFIG_CPU_H8300H=y | 118 | CONFIG_CPU_H8300H=y |
72 | # CONFIG_PREEMPT is not set | 119 | # CONFIG_PREEMPT is not set |
120 | CONFIG_SELECT_MEMORY_MODEL=y | ||
121 | CONFIG_FLATMEM_MANUAL=y | ||
122 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
123 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
124 | CONFIG_FLATMEM=y | ||
125 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
126 | # CONFIG_SPARSEMEM_STATIC is not set | ||
127 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
128 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
129 | # CONFIG_RESOURCES_64BIT is not set | ||
130 | CONFIG_ZONE_DMA_FLAG=1 | ||
131 | CONFIG_VIRT_TO_BUS=y | ||
73 | 132 | ||
74 | # | 133 | # |
75 | # Executable file formats | 134 | # Executable file formats |
@@ -77,34 +136,42 @@ CONFIG_CPU_H8300H=y | |||
77 | CONFIG_BINFMT_FLAT=y | 136 | CONFIG_BINFMT_FLAT=y |
78 | CONFIG_BINFMT_ZFLAT=y | 137 | CONFIG_BINFMT_ZFLAT=y |
79 | # CONFIG_BINFMT_SHARED_FLAT is not set | 138 | # CONFIG_BINFMT_SHARED_FLAT is not set |
80 | # CONFIG_BINFMT_MISC is not set | 139 | CONFIG_BINFMT_MISC=y |
81 | 140 | ||
82 | # | 141 | # |
83 | # Generic Driver Options | 142 | # Networking |
84 | # | 143 | # |
85 | # CONFIG_STANDALONE is not set | 144 | # CONFIG_NET is not set |
86 | # CONFIG_PREVENT_FIRMWARE_BUILD is not set | ||
87 | # CONFIG_FW_LOADER is not set | ||
88 | # CONFIG_DEBUG_DRIVER is not set | ||
89 | 145 | ||
90 | # | 146 | # |
91 | # Memory Technology Devices (MTD) | 147 | # Generic Driver Options |
92 | # | 148 | # |
149 | CONFIG_STANDALONE=y | ||
150 | # CONFIG_PREVENT_FIRMWARE_BUILD is not set | ||
151 | # CONFIG_SYS_HYPERVISOR is not set | ||
93 | CONFIG_MTD=y | 152 | CONFIG_MTD=y |
94 | # CONFIG_MTD_DEBUG is not set | 153 | # CONFIG_MTD_DEBUG is not set |
154 | # CONFIG_MTD_CONCAT is not set | ||
95 | CONFIG_MTD_PARTITIONS=y | 155 | CONFIG_MTD_PARTITIONS=y |
96 | CONFIG_MTD_CONCAT=y | 156 | CONFIG_MTD_REDBOOT_PARTS=y |
97 | # CONFIG_MTD_REDBOOT_PARTS is not set | 157 | CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 |
158 | # CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set | ||
159 | # CONFIG_MTD_REDBOOT_PARTS_READONLY is not set | ||
98 | # CONFIG_MTD_CMDLINE_PARTS is not set | 160 | # CONFIG_MTD_CMDLINE_PARTS is not set |
99 | 161 | ||
100 | # | 162 | # |
101 | # User Modules And Translation Layers | 163 | # User Modules And Translation Layers |
102 | # | 164 | # |
103 | CONFIG_MTD_CHAR=y | 165 | CONFIG_MTD_CHAR=y |
104 | CONFIG_MTD_BLOCK=y | 166 | # CONFIG_MTD_BLKDEVS is not set |
167 | # CONFIG_MTD_BLOCK is not set | ||
168 | # CONFIG_MTD_BLOCK_RO is not set | ||
105 | # CONFIG_FTL is not set | 169 | # CONFIG_FTL is not set |
106 | # CONFIG_NFTL is not set | 170 | # CONFIG_NFTL is not set |
107 | # CONFIG_INFTL is not set | 171 | # CONFIG_INFTL is not set |
172 | # CONFIG_RFD_FTL is not set | ||
173 | # CONFIG_SSFDC is not set | ||
174 | # CONFIG_MTD_OOPS is not set | ||
108 | 175 | ||
109 | # | 176 | # |
110 | # RAM/ROM/Flash chip drivers | 177 | # RAM/ROM/Flash chip drivers |
@@ -129,7 +196,9 @@ CONFIG_MTD_ROM=y | |||
129 | # Mapping drivers for chip access | 196 | # Mapping drivers for chip access |
130 | # | 197 | # |
131 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | 198 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
199 | # CONFIG_MTD_PHYSMAP is not set | ||
132 | CONFIG_MTD_UCLINUX=y | 200 | CONFIG_MTD_UCLINUX=y |
201 | # CONFIG_MTD_PLATRAM is not set | ||
133 | 202 | ||
134 | # | 203 | # |
135 | # Self-contained MTD device drivers | 204 | # Self-contained MTD device drivers |
@@ -137,7 +206,6 @@ CONFIG_MTD_UCLINUX=y | |||
137 | # CONFIG_MTD_SLRAM is not set | 206 | # CONFIG_MTD_SLRAM is not set |
138 | # CONFIG_MTD_PHRAM is not set | 207 | # CONFIG_MTD_PHRAM is not set |
139 | # CONFIG_MTD_MTDRAM is not set | 208 | # CONFIG_MTD_MTDRAM is not set |
140 | # CONFIG_MTD_BLKMTD is not set | ||
141 | # CONFIG_MTD_BLOCK2MTD is not set | 209 | # CONFIG_MTD_BLOCK2MTD is not set |
142 | 210 | ||
143 | # | 211 | # |
@@ -146,63 +214,27 @@ CONFIG_MTD_UCLINUX=y | |||
146 | # CONFIG_MTD_DOC2000 is not set | 214 | # CONFIG_MTD_DOC2000 is not set |
147 | # CONFIG_MTD_DOC2001 is not set | 215 | # CONFIG_MTD_DOC2001 is not set |
148 | # CONFIG_MTD_DOC2001PLUS is not set | 216 | # CONFIG_MTD_DOC2001PLUS is not set |
149 | |||
150 | # | ||
151 | # NAND Flash Device Drivers | ||
152 | # | ||
153 | # CONFIG_MTD_NAND is not set | 217 | # CONFIG_MTD_NAND is not set |
218 | # CONFIG_MTD_ONENAND is not set | ||
154 | 219 | ||
155 | # | 220 | # |
156 | # Block devices | 221 | # UBI - Unsorted block images |
157 | # | ||
158 | # CONFIG_BLK_DEV_FD is not set | ||
159 | # CONFIG_BLK_DEV_XD is not set | ||
160 | # CONFIG_BLK_DEV_LOOP is not set | ||
161 | # CONFIG_BLK_DEV_RAM is not set | ||
162 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
163 | CONFIG_INITRAMFS_SOURCE="" | ||
164 | # CONFIG_CDROM_PKTCDVD is not set | ||
165 | |||
166 | # | ||
167 | # IO Schedulers | ||
168 | # | ||
169 | CONFIG_IOSCHED_NOOP=y | ||
170 | # CONFIG_IOSCHED_AS is not set | ||
171 | # CONFIG_IOSCHED_DEADLINE is not set | ||
172 | # CONFIG_IOSCHED_CFQ is not set | ||
173 | |||
174 | # | ||
175 | # ATA/ATAPI/MFM/RLL support | ||
176 | # | 222 | # |
223 | # CONFIG_MTD_UBI is not set | ||
224 | # CONFIG_BLK_DEV is not set | ||
225 | CONFIG_HAVE_IDE=y | ||
177 | # CONFIG_IDE is not set | 226 | # CONFIG_IDE is not set |
178 | 227 | ||
179 | # | 228 | # |
180 | # Networking support | ||
181 | # | ||
182 | # CONFIG_NET is not set | ||
183 | # CONFIG_NETPOLL is not set | ||
184 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
185 | |||
186 | # | ||
187 | # Input device support | 229 | # Input device support |
188 | # | 230 | # |
189 | # CONFIG_INPUT is not set | 231 | # CONFIG_INPUT is not set |
190 | 232 | ||
191 | # | 233 | # |
192 | # Userland interfaces | 234 | # Hardware I/O ports |
193 | # | ||
194 | |||
195 | # | ||
196 | # Input I/O drivers | ||
197 | # | 235 | # |
198 | # CONFIG_GAMEPORT is not set | ||
199 | CONFIG_SOUND_GAMEPORT=y | ||
200 | # CONFIG_SERIO is not set | 236 | # CONFIG_SERIO is not set |
201 | # CONFIG_SERIO_I8042 is not set | 237 | # CONFIG_GAMEPORT is not set |
202 | |||
203 | # | ||
204 | # Input Device Drivers | ||
205 | # | ||
206 | 238 | ||
207 | # | 239 | # |
208 | # Character devices | 240 | # Character devices |
@@ -223,45 +255,31 @@ CONFIG_SOUND_GAMEPORT=y | |||
223 | # Non-8250 serial port support | 255 | # Non-8250 serial port support |
224 | # | 256 | # |
225 | CONFIG_SERIAL_SH_SCI=y | 257 | CONFIG_SERIAL_SH_SCI=y |
258 | CONFIG_SERIAL_SH_SCI_NR_UARTS=2 | ||
226 | CONFIG_SERIAL_SH_SCI_CONSOLE=y | 259 | CONFIG_SERIAL_SH_SCI_CONSOLE=y |
227 | CONFIG_SERIAL_CORE=y | 260 | CONFIG_SERIAL_CORE=y |
228 | CONFIG_SERIAL_CORE_CONSOLE=y | 261 | CONFIG_SERIAL_CORE_CONSOLE=y |
229 | |||
230 | # | ||
231 | # I2C support | ||
232 | # | ||
233 | # CONFIG_I2C is not set | 262 | # CONFIG_I2C is not set |
234 | 263 | # CONFIG_HWMON is not set | |
235 | # | 264 | # CONFIG_USB_SUPPORT is not set |
236 | # USB support | ||
237 | # | ||
238 | # CONFIG_USB_ARCH_HAS_HCD is not set | ||
239 | # CONFIG_USB_ARCH_HAS_OHCI is not set | ||
240 | |||
241 | # | ||
242 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' may also be needed; see USB_STORAGE Help for more information | ||
243 | # | ||
244 | |||
245 | # | ||
246 | # USB Gadget Support | ||
247 | # | ||
248 | # CONFIG_USB_GADGET is not set | ||
249 | 265 | ||
250 | # | 266 | # |
251 | # File systems | 267 | # File systems |
252 | # | 268 | # |
253 | # CONFIG_EXT2_FS is not set | 269 | # CONFIG_EXT2_FS is not set |
254 | # CONFIG_EXT3_FS is not set | 270 | # CONFIG_EXT3_FS is not set |
255 | # CONFIG_JBD is not set | 271 | # CONFIG_EXT4DEV_FS is not set |
256 | # CONFIG_REISERFS_FS is not set | 272 | # CONFIG_REISERFS_FS is not set |
257 | # CONFIG_JFS_FS is not set | 273 | # CONFIG_JFS_FS is not set |
274 | # CONFIG_FS_POSIX_ACL is not set | ||
258 | # CONFIG_XFS_FS is not set | 275 | # CONFIG_XFS_FS is not set |
259 | # CONFIG_MINIX_FS is not set | 276 | # CONFIG_GFS2_FS is not set |
260 | CONFIG_ROMFS_FS=y | ||
261 | # CONFIG_QUOTA is not set | ||
262 | # CONFIG_DNOTIFY is not set | 277 | # CONFIG_DNOTIFY is not set |
278 | # CONFIG_INOTIFY is not set | ||
279 | # CONFIG_QUOTA is not set | ||
263 | # CONFIG_AUTOFS_FS is not set | 280 | # CONFIG_AUTOFS_FS is not set |
264 | # CONFIG_AUTOFS4_FS is not set | 281 | # CONFIG_AUTOFS4_FS is not set |
282 | # CONFIG_FUSE_FS is not set | ||
265 | 283 | ||
266 | # | 284 | # |
267 | # CD-ROM/DVD Filesystems | 285 | # CD-ROM/DVD Filesystems |
@@ -280,11 +298,11 @@ CONFIG_ROMFS_FS=y | |||
280 | # Pseudo filesystems | 298 | # Pseudo filesystems |
281 | # | 299 | # |
282 | CONFIG_PROC_FS=y | 300 | CONFIG_PROC_FS=y |
283 | # CONFIG_SYSFS is not set | 301 | CONFIG_PROC_SYSCTL=y |
284 | # CONFIG_DEVFS_FS is not set | 302 | CONFIG_SYSFS=y |
285 | # CONFIG_TMPFS is not set | 303 | # CONFIG_TMPFS is not set |
286 | # CONFIG_HUGETLB_PAGE is not set | 304 | # CONFIG_HUGETLB_PAGE is not set |
287 | CONFIG_RAMFS=y | 305 | # CONFIG_CONFIGFS_FS is not set |
288 | 306 | ||
289 | # | 307 | # |
290 | # Miscellaneous filesystems | 308 | # Miscellaneous filesystems |
@@ -296,12 +314,13 @@ CONFIG_RAMFS=y | |||
296 | # CONFIG_BEFS_FS is not set | 314 | # CONFIG_BEFS_FS is not set |
297 | # CONFIG_BFS_FS is not set | 315 | # CONFIG_BFS_FS is not set |
298 | # CONFIG_EFS_FS is not set | 316 | # CONFIG_EFS_FS is not set |
299 | # CONFIG_JFFS_FS is not set | ||
300 | # CONFIG_JFFS2_FS is not set | 317 | # CONFIG_JFFS2_FS is not set |
301 | # CONFIG_CRAMFS is not set | 318 | # CONFIG_CRAMFS is not set |
302 | # CONFIG_VXFS_FS is not set | 319 | # CONFIG_VXFS_FS is not set |
320 | # CONFIG_MINIX_FS is not set | ||
303 | # CONFIG_HPFS_FS is not set | 321 | # CONFIG_HPFS_FS is not set |
304 | # CONFIG_QNX4FS_FS is not set | 322 | # CONFIG_QNX4FS_FS is not set |
323 | CONFIG_ROMFS_FS=y | ||
305 | # CONFIG_SYSV_FS is not set | 324 | # CONFIG_SYSV_FS is not set |
306 | # CONFIG_UFS_FS is not set | 325 | # CONFIG_UFS_FS is not set |
307 | 326 | ||
@@ -310,22 +329,23 @@ CONFIG_RAMFS=y | |||
310 | # | 329 | # |
311 | # CONFIG_PARTITION_ADVANCED is not set | 330 | # CONFIG_PARTITION_ADVANCED is not set |
312 | CONFIG_MSDOS_PARTITION=y | 331 | CONFIG_MSDOS_PARTITION=y |
313 | |||
314 | # | ||
315 | # Native Language Support | ||
316 | # | ||
317 | # CONFIG_NLS is not set | 332 | # CONFIG_NLS is not set |
318 | 333 | ||
319 | # | 334 | # |
320 | # Kernel hacking | 335 | # Kernel hacking |
321 | # | 336 | # |
322 | CONFIG_DEBUG_KERNEL=y | 337 | # CONFIG_PRINTK_TIME is not set |
323 | # CONFIG_SCHEDSTATS is not set | 338 | # CONFIG_ENABLE_WARN_DEPRECATED is not set |
324 | # CONFIG_DEBUG_KOBJECT is not set | 339 | # CONFIG_ENABLE_MUST_CHECK is not set |
340 | # CONFIG_MAGIC_SYSRQ is not set | ||
341 | # CONFIG_UNUSED_SYMBOLS is not set | ||
325 | # CONFIG_DEBUG_FS is not set | 342 | # CONFIG_DEBUG_FS is not set |
326 | CONFIG_FULLDEBUG=y | 343 | # CONFIG_HEADERS_CHECK is not set |
344 | # CONFIG_DEBUG_KERNEL is not set | ||
345 | # CONFIG_SAMPLES is not set | ||
346 | # CONFIG_FULLDEBUG is not set | ||
327 | # CONFIG_HIGHPROFILE is not set | 347 | # CONFIG_HIGHPROFILE is not set |
328 | CONFIG_NO_KERNEL_MSG=y | 348 | # CONFIG_NO_KERNEL_MSG is not set |
329 | # CONFIG_SYSCALL_PRINT is not set | 349 | # CONFIG_SYSCALL_PRINT is not set |
330 | # CONFIG_GDB_DEBUG is not set | 350 | # CONFIG_GDB_DEBUG is not set |
331 | # CONFIG_SH_STANDARD_BIOS is not set | 351 | # CONFIG_SH_STANDARD_BIOS is not set |
@@ -337,20 +357,17 @@ CONFIG_NO_KERNEL_MSG=y | |||
337 | # | 357 | # |
338 | # CONFIG_KEYS is not set | 358 | # CONFIG_KEYS is not set |
339 | # CONFIG_SECURITY is not set | 359 | # CONFIG_SECURITY is not set |
340 | 360 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | |
341 | # | ||
342 | # Cryptographic options | ||
343 | # | ||
344 | # CONFIG_CRYPTO is not set | 361 | # CONFIG_CRYPTO is not set |
345 | 362 | ||
346 | # | 363 | # |
347 | # Hardware crypto devices | ||
348 | # | ||
349 | |||
350 | # | ||
351 | # Library routines | 364 | # Library routines |
352 | # | 365 | # |
353 | # CONFIG_CRC_CCITT is not set | 366 | # CONFIG_CRC_CCITT is not set |
354 | CONFIG_CRC32=y | 367 | # CONFIG_CRC16 is not set |
368 | # CONFIG_CRC_ITU_T is not set | ||
369 | # CONFIG_CRC32 is not set | ||
370 | # CONFIG_CRC7 is not set | ||
355 | # CONFIG_LIBCRC32C is not set | 371 | # CONFIG_LIBCRC32C is not set |
356 | CONFIG_ZLIB_INFLATE=y | 372 | CONFIG_ZLIB_INFLATE=y |
373 | CONFIG_HAS_IOMEM=y | ||
diff --git a/arch/h8300/kernel/irq.c b/arch/h8300/kernel/irq.c index 5a1b4cfea05b..ef4f0047067d 100644 --- a/arch/h8300/kernel/irq.c +++ b/arch/h8300/kernel/irq.c | |||
@@ -26,7 +26,7 @@ | |||
26 | 26 | ||
27 | extern unsigned long *interrupt_redirect_table; | 27 | extern unsigned long *interrupt_redirect_table; |
28 | extern const int h8300_saved_vectors[]; | 28 | extern const int h8300_saved_vectors[]; |
29 | extern const unsigned long h8300_trap_table[]; | 29 | extern const h8300_vector h8300_trap_table[]; |
30 | int h8300_enable_irq_pin(unsigned int irq); | 30 | int h8300_enable_irq_pin(unsigned int irq); |
31 | void h8300_disable_irq_pin(unsigned int irq); | 31 | void h8300_disable_irq_pin(unsigned int irq); |
32 | 32 | ||
@@ -116,7 +116,7 @@ static void __init setup_vector(void) | |||
116 | { | 116 | { |
117 | int i; | 117 | int i; |
118 | unsigned long *ramvec,*ramvec_p; | 118 | unsigned long *ramvec,*ramvec_p; |
119 | const unsigned long *trap_entry; | 119 | const h8300_vector *trap_entry; |
120 | const int *saved_vector; | 120 | const int *saved_vector; |
121 | 121 | ||
122 | ramvec = get_vector_address(); | 122 | ramvec = get_vector_address(); |
diff --git a/arch/h8300/kernel/signal.c b/arch/h8300/kernel/signal.c index 62ea12d339b9..cf3472f7389b 100644 --- a/arch/h8300/kernel/signal.c +++ b/arch/h8300/kernel/signal.c | |||
@@ -352,7 +352,7 @@ static void setup_frame (int sig, struct k_sigaction *ka, | |||
352 | ret = (unsigned char *)(ka->sa.sa_restorer); | 352 | ret = (unsigned char *)(ka->sa.sa_restorer); |
353 | else { | 353 | else { |
354 | /* sub.l er0,er0; mov.b #__NR_sigreturn,r0l; trapa #0 */ | 354 | /* sub.l er0,er0; mov.b #__NR_sigreturn,r0l; trapa #0 */ |
355 | err != __put_user(0x1a80f800 + (__NR_sigreturn & 0xff), | 355 | err |= __put_user(0x1a80f800 + (__NR_sigreturn & 0xff), |
356 | (unsigned long *)(frame->retcode + 0)); | 356 | (unsigned long *)(frame->retcode + 0)); |
357 | err |= __put_user(0x5700, (unsigned short *)(frame->retcode + 4)); | 357 | err |= __put_user(0x5700, (unsigned short *)(frame->retcode + 4)); |
358 | } | 358 | } |
@@ -428,7 +428,7 @@ static void setup_rt_frame (int sig, struct k_sigaction *ka, siginfo_t *info, | |||
428 | ret = (unsigned char *)(ka->sa.sa_restorer); | 428 | ret = (unsigned char *)(ka->sa.sa_restorer); |
429 | else { | 429 | else { |
430 | /* sub.l er0,er0; mov.b #__NR_sigreturn,r0l; trapa #0 */ | 430 | /* sub.l er0,er0; mov.b #__NR_sigreturn,r0l; trapa #0 */ |
431 | err != __put_user(0x1a80f800 + (__NR_sigreturn & 0xff), | 431 | err |= __put_user(0x1a80f800 + (__NR_sigreturn & 0xff), |
432 | (unsigned long *)(frame->retcode + 0)); | 432 | (unsigned long *)(frame->retcode + 0)); |
433 | err |= __put_user(0x5700, (unsigned short *)(frame->retcode + 4)); | 433 | err |= __put_user(0x5700, (unsigned short *)(frame->retcode + 4)); |
434 | } | 434 | } |
diff --git a/arch/h8300/platform/h8300h/Makefile b/arch/h8300/platform/h8300h/Makefile index c5096369ea50..420f73b0d962 100644 --- a/arch/h8300/platform/h8300h/Makefile +++ b/arch/h8300/platform/h8300h/Makefile | |||
@@ -4,4 +4,4 @@ | |||
4 | # Reuse any files we can from the H8/300H | 4 | # Reuse any files we can from the H8/300H |
5 | # | 5 | # |
6 | 6 | ||
7 | obj-y := irq_pin.o ptrace_h8300h.o | 7 | obj-y := irq.o ptrace_h8300h.o |
diff --git a/arch/h8300/platform/h8300h/irq.c b/arch/h8300/platform/h8300h/irq.c new file mode 100644 index 000000000000..e977345105d7 --- /dev/null +++ b/arch/h8300/platform/h8300h/irq.c | |||
@@ -0,0 +1,82 @@ | |||
1 | /* | ||
2 | * Interrupt handling H8/300H depend. | ||
3 | * Yoshinori Sato <ysato@users.sourceforge.jp> | ||
4 | * | ||
5 | */ | ||
6 | |||
7 | #include <linux/init.h> | ||
8 | #include <linux/errno.h> | ||
9 | |||
10 | #include <asm/ptrace.h> | ||
11 | #include <asm/traps.h> | ||
12 | #include <asm/irq.h> | ||
13 | #include <asm/io.h> | ||
14 | #include <asm/gpio.h> | ||
15 | #include <asm/regs306x.h> | ||
16 | |||
17 | const int __initdata h8300_saved_vectors[] = { | ||
18 | #if defined(CONFIG_GDB_DEBUG) | ||
19 | TRAP3_VEC, /* TRAPA #3 is GDB breakpoint */ | ||
20 | #endif | ||
21 | -1, | ||
22 | }; | ||
23 | |||
24 | const h8300_vector __initdata h8300_trap_table[] = { | ||
25 | 0, 0, 0, 0, 0, 0, 0, 0, | ||
26 | system_call, | ||
27 | 0, | ||
28 | 0, | ||
29 | trace_break, | ||
30 | }; | ||
31 | |||
32 | int h8300_enable_irq_pin(unsigned int irq) | ||
33 | { | ||
34 | int bitmask; | ||
35 | if (irq < EXT_IRQ0 || irq > EXT_IRQ5) | ||
36 | return 0; | ||
37 | |||
38 | /* initialize IRQ pin */ | ||
39 | bitmask = 1 << (irq - EXT_IRQ0); | ||
40 | switch(irq) { | ||
41 | case EXT_IRQ0: | ||
42 | case EXT_IRQ1: | ||
43 | case EXT_IRQ2: | ||
44 | case EXT_IRQ3: | ||
45 | if (H8300_GPIO_RESERVE(H8300_GPIO_P8, bitmask) == 0) | ||
46 | return -EBUSY; | ||
47 | H8300_GPIO_DDR(H8300_GPIO_P8, bitmask, H8300_GPIO_INPUT); | ||
48 | break; | ||
49 | case EXT_IRQ4: | ||
50 | case EXT_IRQ5: | ||
51 | if (H8300_GPIO_RESERVE(H8300_GPIO_P9, bitmask) == 0) | ||
52 | return -EBUSY; | ||
53 | H8300_GPIO_DDR(H8300_GPIO_P9, bitmask, H8300_GPIO_INPUT); | ||
54 | break; | ||
55 | } | ||
56 | |||
57 | return 0; | ||
58 | } | ||
59 | |||
60 | void h8300_disable_irq_pin(unsigned int irq) | ||
61 | { | ||
62 | int bitmask; | ||
63 | if (irq < EXT_IRQ0 || irq > EXT_IRQ5) | ||
64 | return; | ||
65 | |||
66 | /* disable interrupt & release IRQ pin */ | ||
67 | bitmask = 1 << (irq - EXT_IRQ0); | ||
68 | switch(irq) { | ||
69 | case EXT_IRQ0: | ||
70 | case EXT_IRQ1: | ||
71 | case EXT_IRQ2: | ||
72 | case EXT_IRQ3: | ||
73 | *(volatile unsigned char *)IER &= ~bitmask; | ||
74 | H8300_GPIO_FREE(H8300_GPIO_P8, bitmask); | ||
75 | break ; | ||
76 | case EXT_IRQ4: | ||
77 | case EXT_IRQ5: | ||
78 | *(volatile unsigned char *)IER &= ~bitmask; | ||
79 | H8300_GPIO_FREE(H8300_GPIO_P9, bitmask); | ||
80 | break; | ||
81 | } | ||
82 | } | ||
diff --git a/arch/h8300/platform/h8s/ints.c b/arch/h8300/platform/h8s/ints.c deleted file mode 100644 index ac10b9783850..000000000000 --- a/arch/h8300/platform/h8s/ints.c +++ /dev/null | |||
@@ -1,304 +0,0 @@ | |||
1 | /* | ||
2 | * linux/arch/h8300/platform/h8s/ints.c | ||
3 | * | ||
4 | * Yoshinori Sato <ysato@users.sourceforge.jp> | ||
5 | * | ||
6 | * Based on linux/arch/$(ARCH)/platform/$(PLATFORM)/ints.c | ||
7 | * | ||
8 | * This file is subject to the terms and conditions of the GNU General Public | ||
9 | * License. See the file COPYING in the main directory of this archive | ||
10 | * for more details. | ||
11 | * | ||
12 | * Copyright 1996 Roman Zippel | ||
13 | * Copyright 1999 D. Jeff Dionne <jeff@rt-control.com> | ||
14 | */ | ||
15 | |||
16 | #include <linux/module.h> | ||
17 | #include <linux/types.h> | ||
18 | #include <linux/kernel.h> | ||
19 | #include <linux/sched.h> | ||
20 | #include <linux/kernel_stat.h> | ||
21 | #include <linux/seq_file.h> | ||
22 | #include <linux/init.h> | ||
23 | #include <linux/interrupt.h> | ||
24 | #include <linux/bootmem.h> | ||
25 | #include <linux/random.h> | ||
26 | #include <linux/hardirq.h> | ||
27 | |||
28 | #include <asm/system.h> | ||
29 | #include <asm/irq.h> | ||
30 | #include <asm/traps.h> | ||
31 | #include <asm/io.h> | ||
32 | #include <asm/setup.h> | ||
33 | #include <asm/gpio.h> | ||
34 | #include <asm/regs267x.h> | ||
35 | #include <asm/errno.h> | ||
36 | |||
37 | /* | ||
38 | * This structure has only 4 elements for speed reasons | ||
39 | */ | ||
40 | typedef struct irq_handler { | ||
41 | irqreturn_t (*handler)(int, void *, struct pt_regs *); | ||
42 | int flags; | ||
43 | int count; | ||
44 | void *dev_id; | ||
45 | const char *devname; | ||
46 | } irq_handler_t; | ||
47 | |||
48 | static irq_handler_t *irq_list[NR_IRQS]; | ||
49 | |||
50 | /* IRQ pin assignment */ | ||
51 | struct irq_pins { | ||
52 | unsigned char port_no; | ||
53 | unsigned char bit_no; | ||
54 | }; | ||
55 | /* ISTR = 0 */ | ||
56 | static const struct irq_pins irq_assign_table0[16]={ | ||
57 | {H8300_GPIO_P5,H8300_GPIO_B0},{H8300_GPIO_P5,H8300_GPIO_B1}, | ||
58 | {H8300_GPIO_P5,H8300_GPIO_B2},{H8300_GPIO_P5,H8300_GPIO_B3}, | ||
59 | {H8300_GPIO_P5,H8300_GPIO_B4},{H8300_GPIO_P5,H8300_GPIO_B5}, | ||
60 | {H8300_GPIO_P5,H8300_GPIO_B6},{H8300_GPIO_P5,H8300_GPIO_B7}, | ||
61 | {H8300_GPIO_P6,H8300_GPIO_B0},{H8300_GPIO_P6,H8300_GPIO_B1}, | ||
62 | {H8300_GPIO_P6,H8300_GPIO_B2},{H8300_GPIO_P6,H8300_GPIO_B3}, | ||
63 | {H8300_GPIO_P6,H8300_GPIO_B4},{H8300_GPIO_P6,H8300_GPIO_B5}, | ||
64 | {H8300_GPIO_PF,H8300_GPIO_B1},{H8300_GPIO_PF,H8300_GPIO_B2}, | ||
65 | }; | ||
66 | /* ISTR = 1 */ | ||
67 | static const struct irq_pins irq_assign_table1[16]={ | ||
68 | {H8300_GPIO_P8,H8300_GPIO_B0},{H8300_GPIO_P8,H8300_GPIO_B1}, | ||
69 | {H8300_GPIO_P8,H8300_GPIO_B2},{H8300_GPIO_P8,H8300_GPIO_B3}, | ||
70 | {H8300_GPIO_P8,H8300_GPIO_B4},{H8300_GPIO_P8,H8300_GPIO_B5}, | ||
71 | {H8300_GPIO_PH,H8300_GPIO_B2},{H8300_GPIO_PH,H8300_GPIO_B3}, | ||
72 | {H8300_GPIO_P2,H8300_GPIO_B0},{H8300_GPIO_P2,H8300_GPIO_B1}, | ||
73 | {H8300_GPIO_P2,H8300_GPIO_B2},{H8300_GPIO_P2,H8300_GPIO_B3}, | ||
74 | {H8300_GPIO_P2,H8300_GPIO_B4},{H8300_GPIO_P2,H8300_GPIO_B5}, | ||
75 | {H8300_GPIO_P2,H8300_GPIO_B6},{H8300_GPIO_P2,H8300_GPIO_B7}, | ||
76 | }; | ||
77 | |||
78 | static short use_kmalloc = 0; | ||
79 | |||
80 | extern unsigned long *interrupt_redirect_table; | ||
81 | |||
82 | #define CPU_VECTOR ((unsigned long *)0x000000) | ||
83 | #define ADDR_MASK (0xffffff) | ||
84 | |||
85 | static inline unsigned long *get_vector_address(void) | ||
86 | { | ||
87 | volatile unsigned long *rom_vector = CPU_VECTOR; | ||
88 | unsigned long base,tmp; | ||
89 | int vec_no; | ||
90 | |||
91 | base = rom_vector[EXT_IRQ0] & ADDR_MASK; | ||
92 | |||
93 | /* check romvector format */ | ||
94 | for (vec_no = EXT_IRQ1; vec_no <= EXT_IRQ15; vec_no++) { | ||
95 | if ((base+(vec_no - EXT_IRQ0)*4) != (rom_vector[vec_no] & ADDR_MASK)) | ||
96 | return NULL; | ||
97 | } | ||
98 | |||
99 | /* ramvector base address */ | ||
100 | base -= EXT_IRQ0*4; | ||
101 | |||
102 | /* writerble check */ | ||
103 | tmp = ~(*(unsigned long *)base); | ||
104 | (*(unsigned long *)base) = tmp; | ||
105 | if ((*(unsigned long *)base) != tmp) | ||
106 | return NULL; | ||
107 | return (unsigned long *)base; | ||
108 | } | ||
109 | |||
110 | void __init init_IRQ(void) | ||
111 | { | ||
112 | #if defined(CONFIG_RAMKERNEL) | ||
113 | int i; | ||
114 | unsigned long *ramvec,*ramvec_p; | ||
115 | unsigned long break_vec; | ||
116 | |||
117 | ramvec = get_vector_address(); | ||
118 | if (ramvec == NULL) | ||
119 | panic("interrupt vector serup failed."); | ||
120 | else | ||
121 | printk("virtual vector at 0x%08lx\n",(unsigned long)ramvec); | ||
122 | |||
123 | #if defined(CONFIG_GDB_DEBUG) | ||
124 | /* save original break vector */ | ||
125 | break_vec = ramvec[TRAP3_VEC]; | ||
126 | #else | ||
127 | break_vec = VECTOR(trace_break); | ||
128 | #endif | ||
129 | |||
130 | /* create redirect table */ | ||
131 | for (ramvec_p = ramvec, i = 0; i < NR_IRQS; i++) | ||
132 | *ramvec_p++ = REDIRECT(interrupt_entry); | ||
133 | |||
134 | /* set special vector */ | ||
135 | ramvec[TRAP0_VEC] = VECTOR(system_call); | ||
136 | ramvec[TRAP3_VEC] = break_vec; | ||
137 | interrupt_redirect_table = ramvec; | ||
138 | #ifdef DUMP_VECTOR | ||
139 | ramvec_p = ramvec; | ||
140 | for (i = 0; i < NR_IRQS; i++) { | ||
141 | if ((i % 8) == 0) | ||
142 | printk("\n%p: ",ramvec_p); | ||
143 | printk("%p ",*ramvec_p); | ||
144 | ramvec_p++; | ||
145 | } | ||
146 | printk("\n"); | ||
147 | #endif | ||
148 | #endif | ||
149 | } | ||
150 | |||
151 | int request_irq(unsigned int irq, | ||
152 | irqreturn_t (*handler)(int, void *, struct pt_regs *), | ||
153 | unsigned long flags, const char *devname, void *dev_id) | ||
154 | { | ||
155 | unsigned short ptn = 1 << (irq - EXT_IRQ0); | ||
156 | irq_handler_t *irq_handle; | ||
157 | if (irq < 0 || irq >= NR_IRQS) { | ||
158 | printk("Incorrect IRQ %d from %s\n", irq, devname); | ||
159 | return -EINVAL; | ||
160 | } | ||
161 | if (irq_list[irq]) | ||
162 | return -EBUSY; /* already used */ | ||
163 | if (irq >= EXT_IRQ0 && irq <= EXT_IRQ15) { | ||
164 | /* initialize IRQ pin */ | ||
165 | unsigned int port_no,bit_no; | ||
166 | if (*(volatile unsigned short *)ITSR & ptn) { | ||
167 | port_no = irq_assign_table1[irq - EXT_IRQ0].port_no; | ||
168 | bit_no = irq_assign_table1[irq - EXT_IRQ0].bit_no; | ||
169 | } else { | ||
170 | port_no = irq_assign_table0[irq - EXT_IRQ0].port_no; | ||
171 | bit_no = irq_assign_table0[irq - EXT_IRQ0].bit_no; | ||
172 | } | ||
173 | if (H8300_GPIO_RESERVE(port_no, bit_no) == 0) | ||
174 | return -EBUSY; /* pin already use */ | ||
175 | H8300_GPIO_DDR(port_no, bit_no, H8300_GPIO_INPUT); | ||
176 | *(volatile unsigned short *)ISR &= ~ptn; /* ISR clear */ | ||
177 | } | ||
178 | |||
179 | if (use_kmalloc) | ||
180 | irq_handle = kmalloc(sizeof(irq_handler_t), GFP_ATOMIC); | ||
181 | else { | ||
182 | /* use bootmem allocator */ | ||
183 | irq_handle = (irq_handler_t *)alloc_bootmem(sizeof(irq_handler_t)); | ||
184 | irq_handle = (irq_handler_t *)((unsigned long)irq_handle | 0x80000000); | ||
185 | } | ||
186 | |||
187 | if (irq_handle == NULL) | ||
188 | return -ENOMEM; | ||
189 | |||
190 | irq_handle->handler = handler; | ||
191 | irq_handle->flags = flags; | ||
192 | irq_handle->count = 0; | ||
193 | irq_handle->dev_id = dev_id; | ||
194 | irq_handle->devname = devname; | ||
195 | irq_list[irq] = irq_handle; | ||
196 | if (irq_handle->flags & IRQF_SAMPLE_RANDOM) | ||
197 | rand_initialize_irq(irq); | ||
198 | |||
199 | /* enable interrupt */ | ||
200 | /* compatible i386 */ | ||
201 | if (irq >= EXT_IRQ0 && irq <= EXT_IRQ15) | ||
202 | *(volatile unsigned short *)IER |= ptn; | ||
203 | return 0; | ||
204 | } | ||
205 | |||
206 | EXPORT_SYMBOL(request_irq); | ||
207 | |||
208 | void free_irq(unsigned int irq, void *dev_id) | ||
209 | { | ||
210 | if (irq >= NR_IRQS) | ||
211 | return; | ||
212 | if (irq_list[irq]->dev_id != dev_id) | ||
213 | printk("%s: Removing probably wrong IRQ %d from %s\n", | ||
214 | __FUNCTION__, irq, irq_list[irq]->devname); | ||
215 | if (irq >= EXT_IRQ0 && irq <= EXT_IRQ15) { | ||
216 | /* disable interrupt & release IRQ pin */ | ||
217 | unsigned short port_no,bit_no; | ||
218 | *(volatile unsigned short *)ISR &= ~(1 << (irq - EXT_IRQ0)); | ||
219 | *(volatile unsigned short *)IER |= 1 << (irq - EXT_IRQ0); | ||
220 | if (*(volatile unsigned short *)ITSR & (1 << (irq - EXT_IRQ0))) { | ||
221 | port_no = irq_assign_table1[irq - EXT_IRQ0].port_no; | ||
222 | bit_no = irq_assign_table1[irq - EXT_IRQ0].bit_no; | ||
223 | } else { | ||
224 | port_no = irq_assign_table0[irq - EXT_IRQ0].port_no; | ||
225 | bit_no = irq_assign_table0[irq - EXT_IRQ0].bit_no; | ||
226 | } | ||
227 | H8300_GPIO_FREE(port_no, bit_no); | ||
228 | } | ||
229 | if (((unsigned long)irq_list[irq] & 0x80000000) == 0) { | ||
230 | kfree(irq_list[irq]); | ||
231 | irq_list[irq] = NULL; | ||
232 | } | ||
233 | } | ||
234 | |||
235 | EXPORT_SYMBOL(free_irq); | ||
236 | |||
237 | unsigned long probe_irq_on (void) | ||
238 | { | ||
239 | return 0; | ||
240 | } | ||
241 | |||
242 | EXPORT_SYMBOL(probe_irq_on); | ||
243 | |||
244 | int probe_irq_off (unsigned long irqs) | ||
245 | { | ||
246 | return 0; | ||
247 | } | ||
248 | |||
249 | EXPORT_SYMBOL(probe_irq_off); | ||
250 | |||
251 | void enable_irq(unsigned int irq) | ||
252 | { | ||
253 | if (irq >= EXT_IRQ0 && irq <= EXT_IRQ15) | ||
254 | *(volatile unsigned short *)IER |= 1 << (irq - EXT_IRQ0); | ||
255 | } | ||
256 | |||
257 | void disable_irq(unsigned int irq) | ||
258 | { | ||
259 | if (irq >= EXT_IRQ0 && irq <= EXT_IRQ15) | ||
260 | *(volatile unsigned short *)IER &= ~(1 << (irq - EXT_IRQ0)); | ||
261 | } | ||
262 | |||
263 | asmlinkage void process_int(unsigned long vec, struct pt_regs *fp) | ||
264 | { | ||
265 | irq_enter(); | ||
266 | /* ISR clear */ | ||
267 | /* compatible i386 */ | ||
268 | if (vec >= EXT_IRQ0 && vec <= EXT_IRQ15) | ||
269 | *(volatile unsigned short *)ISR &= ~(1 << (vec - EXT_IRQ0)); | ||
270 | if (vec < NR_IRQS) { | ||
271 | if (irq_list[vec]) { | ||
272 | irq_list[vec]->handler(vec, irq_list[vec]->dev_id, fp); | ||
273 | irq_list[vec]->count++; | ||
274 | if (irq_list[vec]->flags & IRQF_SAMPLE_RANDOM) | ||
275 | add_interrupt_randomness(vec); | ||
276 | } | ||
277 | } else { | ||
278 | BUG(); | ||
279 | } | ||
280 | irq_exit(); | ||
281 | } | ||
282 | |||
283 | int show_interrupts(struct seq_file *p, void *v) | ||
284 | { | ||
285 | int i = *(loff_t *) v; | ||
286 | |||
287 | if ((i < NR_IRQS) && (irq_list[i] !=NULL)) { | ||
288 | seq_printf(p, "%3d: %10u ",i,irq_list[i]->count); | ||
289 | seq_printf(p, "%s\n", irq_list[i]->devname); | ||
290 | } | ||
291 | |||
292 | return 0; | ||
293 | } | ||
294 | |||
295 | void init_irq_proc(void) | ||
296 | { | ||
297 | } | ||
298 | |||
299 | static int __init enable_kmalloc(void) | ||
300 | { | ||
301 | use_kmalloc = 1; | ||
302 | return 0; | ||
303 | } | ||
304 | core_initcall(enable_kmalloc); | ||
diff --git a/arch/h8300/platform/h8s/ints_h8s.c b/arch/h8300/platform/h8s/irq.c index faa8a459d952..8182f041f829 100644 --- a/arch/h8300/platform/h8s/ints_h8s.c +++ b/arch/h8300/platform/h8s/irq.c | |||
@@ -27,11 +27,11 @@ const int __initdata h8300_saved_vectors[]={ | |||
27 | }; | 27 | }; |
28 | 28 | ||
29 | /* trap entry table */ | 29 | /* trap entry table */ |
30 | const unsigned long __initdata h8300_trap_table[NR_TRAPS]={ | 30 | const H8300_VECTOR __initdata h8300_trap_table[] = { |
31 | 0,0,0,0,0, | 31 | 0,0,0,0,0, |
32 | (unsigned long)trace_break, /* TRACE */ | 32 | trace_break, /* TRACE */ |
33 | 0,0, | 33 | 0,0, |
34 | (unsigned long)system_call, /* TRAPA #0 */ | 34 | system_call, /* TRAPA #0 */ |
35 | 0,0,0,0,0,0,0 | 35 | 0,0,0,0,0,0,0 |
36 | }; | 36 | }; |
37 | 37 | ||
@@ -50,7 +50,7 @@ static const struct irq_pins irq_assign_table0[16]={ | |||
50 | {H8300_GPIO_P6,H8300_GPIO_B2},{H8300_GPIO_P6,H8300_GPIO_B3}, | 50 | {H8300_GPIO_P6,H8300_GPIO_B2},{H8300_GPIO_P6,H8300_GPIO_B3}, |
51 | {H8300_GPIO_P6,H8300_GPIO_B4},{H8300_GPIO_P6,H8300_GPIO_B5}, | 51 | {H8300_GPIO_P6,H8300_GPIO_B4},{H8300_GPIO_P6,H8300_GPIO_B5}, |
52 | {H8300_GPIO_PF,H8300_GPIO_B1},{H8300_GPIO_PF,H8300_GPIO_B2}, | 52 | {H8300_GPIO_PF,H8300_GPIO_B1},{H8300_GPIO_PF,H8300_GPIO_B2}, |
53 | }; | 53 | }; |
54 | /* ISTR = 1 */ | 54 | /* ISTR = 1 */ |
55 | static const struct irq_pins irq_assign_table1[16]={ | 55 | static const struct irq_pins irq_assign_table1[16]={ |
56 | {H8300_GPIO_P8,H8300_GPIO_B0},{H8300_GPIO_P8,H8300_GPIO_B1}, | 56 | {H8300_GPIO_P8,H8300_GPIO_B0},{H8300_GPIO_P8,H8300_GPIO_B1}, |
diff --git a/arch/mips/bcm47xx/setup.c b/arch/mips/bcm47xx/setup.c index 1b6b0fa5028f..8d36f186890e 100644 --- a/arch/mips/bcm47xx/setup.c +++ b/arch/mips/bcm47xx/setup.c | |||
@@ -92,17 +92,17 @@ static int bcm47xx_get_invariants(struct ssb_bus *bus, | |||
92 | iv->sprom.revision = 3; | 92 | iv->sprom.revision = 3; |
93 | 93 | ||
94 | if (cfe_getenv("et0macaddr", buf, sizeof(buf)) >= 0) | 94 | if (cfe_getenv("et0macaddr", buf, sizeof(buf)) >= 0) |
95 | str2eaddr(buf, iv->sprom.r1.et0mac); | 95 | str2eaddr(buf, iv->sprom.et0mac); |
96 | if (cfe_getenv("et1macaddr", buf, sizeof(buf)) >= 0) | 96 | if (cfe_getenv("et1macaddr", buf, sizeof(buf)) >= 0) |
97 | str2eaddr(buf, iv->sprom.r1.et1mac); | 97 | str2eaddr(buf, iv->sprom.et1mac); |
98 | if (cfe_getenv("et0phyaddr", buf, sizeof(buf)) >= 0) | 98 | if (cfe_getenv("et0phyaddr", buf, sizeof(buf)) >= 0) |
99 | iv->sprom.r1.et0phyaddr = simple_strtoul(buf, NULL, 10); | 99 | iv->sprom.et0phyaddr = simple_strtoul(buf, NULL, 10); |
100 | if (cfe_getenv("et1phyaddr", buf, sizeof(buf)) >= 0) | 100 | if (cfe_getenv("et1phyaddr", buf, sizeof(buf)) >= 0) |
101 | iv->sprom.r1.et1phyaddr = simple_strtoul(buf, NULL, 10); | 101 | iv->sprom.et1phyaddr = simple_strtoul(buf, NULL, 10); |
102 | if (cfe_getenv("et0mdcport", buf, sizeof(buf)) >= 0) | 102 | if (cfe_getenv("et0mdcport", buf, sizeof(buf)) >= 0) |
103 | iv->sprom.r1.et0mdcport = simple_strtoul(buf, NULL, 10); | 103 | iv->sprom.et0mdcport = simple_strtoul(buf, NULL, 10); |
104 | if (cfe_getenv("et1mdcport", buf, sizeof(buf)) >= 0) | 104 | if (cfe_getenv("et1mdcport", buf, sizeof(buf)) >= 0) |
105 | iv->sprom.r1.et1mdcport = simple_strtoul(buf, NULL, 10); | 105 | iv->sprom.et1mdcport = simple_strtoul(buf, NULL, 10); |
106 | 106 | ||
107 | return 0; | 107 | return 0; |
108 | } | 108 | } |
diff --git a/arch/mips/bcm47xx/wgt634u.c b/arch/mips/bcm47xx/wgt634u.c index 5a017eaee712..d1d90c9ef2fa 100644 --- a/arch/mips/bcm47xx/wgt634u.c +++ b/arch/mips/bcm47xx/wgt634u.c | |||
@@ -9,6 +9,7 @@ | |||
9 | #include <linux/platform_device.h> | 9 | #include <linux/platform_device.h> |
10 | #include <linux/module.h> | 10 | #include <linux/module.h> |
11 | #include <linux/leds.h> | 11 | #include <linux/leds.h> |
12 | #include <linux/mtd/physmap.h> | ||
12 | #include <linux/ssb/ssb.h> | 13 | #include <linux/ssb/ssb.h> |
13 | #include <asm/mach-bcm47xx/bcm47xx.h> | 14 | #include <asm/mach-bcm47xx/bcm47xx.h> |
14 | 15 | ||
@@ -43,6 +44,61 @@ static struct platform_device wgt634u_gpio_leds = { | |||
43 | } | 44 | } |
44 | }; | 45 | }; |
45 | 46 | ||
47 | |||
48 | /* 8MiB flash. The struct mtd_partition matches original Netgear WGT634U | ||
49 | firmware. */ | ||
50 | static struct mtd_partition wgt634u_partitions[] = { | ||
51 | { | ||
52 | .name = "cfe", | ||
53 | .offset = 0, | ||
54 | .size = 0x60000, /* 384k */ | ||
55 | .mask_flags = MTD_WRITEABLE /* force read-only */ | ||
56 | }, | ||
57 | { | ||
58 | .name = "config", | ||
59 | .offset = 0x60000, | ||
60 | .size = 0x20000 /* 128k */ | ||
61 | }, | ||
62 | { | ||
63 | .name = "linux", | ||
64 | .offset = 0x80000, | ||
65 | .size = 0x140000 /* 1280k */ | ||
66 | }, | ||
67 | { | ||
68 | .name = "jffs", | ||
69 | .offset = 0x1c0000, | ||
70 | .size = 0x620000 /* 6272k */ | ||
71 | }, | ||
72 | { | ||
73 | .name = "nvram", | ||
74 | .offset = 0x7e0000, | ||
75 | .size = 0x20000 /* 128k */ | ||
76 | }, | ||
77 | }; | ||
78 | |||
79 | static struct physmap_flash_data wgt634u_flash_data = { | ||
80 | .parts = wgt634u_partitions, | ||
81 | .nr_parts = ARRAY_SIZE(wgt634u_partitions) | ||
82 | }; | ||
83 | |||
84 | static struct resource wgt634u_flash_resource = { | ||
85 | .flags = IORESOURCE_MEM, | ||
86 | }; | ||
87 | |||
88 | static struct platform_device wgt634u_flash = { | ||
89 | .name = "physmap-flash", | ||
90 | .id = 0, | ||
91 | .dev = { .platform_data = &wgt634u_flash_data, }, | ||
92 | .resource = &wgt634u_flash_resource, | ||
93 | .num_resources = 1, | ||
94 | }; | ||
95 | |||
96 | /* Platform devices */ | ||
97 | static struct platform_device *wgt634u_devices[] __initdata = { | ||
98 | &wgt634u_flash, | ||
99 | &wgt634u_gpio_leds, | ||
100 | }; | ||
101 | |||
46 | static int __init wgt634u_init(void) | 102 | static int __init wgt634u_init(void) |
47 | { | 103 | { |
48 | /* There is no easy way to detect that we are running on a WGT634U | 104 | /* There is no easy way to detect that we are running on a WGT634U |
@@ -50,13 +106,20 @@ static int __init wgt634u_init(void) | |||
50 | * been allocated ranges 00:09:5b:xx:xx:xx and 00:0f:b5:xx:xx:xx. | 106 | * been allocated ranges 00:09:5b:xx:xx:xx and 00:0f:b5:xx:xx:xx. |
51 | */ | 107 | */ |
52 | 108 | ||
53 | u8 *et0mac = ssb_bcm47xx.sprom.r1.et0mac; | 109 | u8 *et0mac = ssb_bcm47xx.sprom.et0mac; |
54 | 110 | ||
55 | if (et0mac[0] == 0x00 && | 111 | if (et0mac[0] == 0x00 && |
56 | ((et0mac[1] == 0x09 && et0mac[2] == 0x5b) || | 112 | ((et0mac[1] == 0x09 && et0mac[2] == 0x5b) || |
57 | (et0mac[1] == 0x0f && et0mac[2] == 0xb5))) | 113 | (et0mac[1] == 0x0f && et0mac[2] == 0xb5))) { |
58 | return platform_device_register(&wgt634u_gpio_leds); | 114 | struct ssb_mipscore *mcore = &ssb_bcm47xx.mipscore; |
59 | else | 115 | wgt634u_flash_data.width = mcore->flash_buswidth; |
116 | wgt634u_flash_resource.start = mcore->flash_window; | ||
117 | wgt634u_flash_resource.end = mcore->flash_window | ||
118 | + mcore->flash_window_size | ||
119 | - 1; | ||
120 | return platform_add_devices(wgt634u_devices, | ||
121 | ARRAY_SIZE(wgt634u_devices)); | ||
122 | } else | ||
60 | return -ENODEV; | 123 | return -ENODEV; |
61 | } | 124 | } |
62 | 125 | ||
diff --git a/arch/mips/configs/bcm47xx_defconfig b/arch/mips/configs/bcm47xx_defconfig new file mode 100644 index 000000000000..c0e42e74dfbd --- /dev/null +++ b/arch/mips/configs/bcm47xx_defconfig | |||
@@ -0,0 +1,1939 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.25-rc2 | ||
4 | # Mon Feb 18 11:55:24 2008 | ||
5 | # | ||
6 | CONFIG_MIPS=y | ||
7 | |||
8 | # | ||
9 | # Machine selection | ||
10 | # | ||
11 | # CONFIG_MACH_ALCHEMY is not set | ||
12 | # CONFIG_BASLER_EXCITE is not set | ||
13 | CONFIG_BCM47XX=y | ||
14 | # CONFIG_MIPS_COBALT is not set | ||
15 | # CONFIG_MACH_DECSTATION is not set | ||
16 | # CONFIG_MACH_JAZZ is not set | ||
17 | # CONFIG_LASAT is not set | ||
18 | # CONFIG_LEMOTE_FULONG is not set | ||
19 | # CONFIG_MIPS_ATLAS is not set | ||
20 | # CONFIG_MIPS_MALTA is not set | ||
21 | # CONFIG_MIPS_SEAD is not set | ||
22 | # CONFIG_MIPS_SIM is not set | ||
23 | # CONFIG_MARKEINS is not set | ||
24 | # CONFIG_MACH_VR41XX is not set | ||
25 | # CONFIG_PNX8550_JBS is not set | ||
26 | # CONFIG_PNX8550_STB810 is not set | ||
27 | # CONFIG_PMC_MSP is not set | ||
28 | # CONFIG_PMC_YOSEMITE is not set | ||
29 | # CONFIG_SGI_IP22 is not set | ||
30 | # CONFIG_SGI_IP27 is not set | ||
31 | # CONFIG_SGI_IP28 is not set | ||
32 | # CONFIG_SGI_IP32 is not set | ||
33 | # CONFIG_SIBYTE_CRHINE is not set | ||
34 | # CONFIG_SIBYTE_CARMEL is not set | ||
35 | # CONFIG_SIBYTE_CRHONE is not set | ||
36 | # CONFIG_SIBYTE_RHONE is not set | ||
37 | # CONFIG_SIBYTE_SWARM is not set | ||
38 | # CONFIG_SIBYTE_LITTLESUR is not set | ||
39 | # CONFIG_SIBYTE_SENTOSA is not set | ||
40 | # CONFIG_SIBYTE_BIGSUR is not set | ||
41 | # CONFIG_SNI_RM is not set | ||
42 | # CONFIG_TOSHIBA_JMR3927 is not set | ||
43 | # CONFIG_TOSHIBA_RBTX4927 is not set | ||
44 | # CONFIG_TOSHIBA_RBTX4938 is not set | ||
45 | # CONFIG_WR_PPMC is not set | ||
46 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
47 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
48 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
49 | CONFIG_ARCH_SUPPORTS_OPROFILE=y | ||
50 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
51 | CONFIG_GENERIC_HWEIGHT=y | ||
52 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
53 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
54 | CONFIG_GENERIC_TIME=y | ||
55 | CONFIG_GENERIC_CMOS_UPDATE=y | ||
56 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | ||
57 | # CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ is not set | ||
58 | CONFIG_CEVT_R4K=y | ||
59 | CONFIG_CSRC_R4K=y | ||
60 | CONFIG_CFE=y | ||
61 | CONFIG_DMA_NONCOHERENT=y | ||
62 | CONFIG_DMA_NEED_PCI_MAP_STATE=y | ||
63 | CONFIG_EARLY_PRINTK=y | ||
64 | CONFIG_SYS_HAS_EARLY_PRINTK=y | ||
65 | # CONFIG_HOTPLUG_CPU is not set | ||
66 | # CONFIG_NO_IOPORT is not set | ||
67 | CONFIG_GENERIC_GPIO=y | ||
68 | # CONFIG_CPU_BIG_ENDIAN is not set | ||
69 | CONFIG_CPU_LITTLE_ENDIAN=y | ||
70 | CONFIG_SYS_SUPPORTS_LITTLE_ENDIAN=y | ||
71 | CONFIG_IRQ_CPU=y | ||
72 | CONFIG_MIPS_L1_CACHE_SHIFT=5 | ||
73 | |||
74 | # | ||
75 | # CPU selection | ||
76 | # | ||
77 | # CONFIG_CPU_LOONGSON2 is not set | ||
78 | CONFIG_CPU_MIPS32_R1=y | ||
79 | # CONFIG_CPU_MIPS32_R2 is not set | ||
80 | # CONFIG_CPU_MIPS64_R1 is not set | ||
81 | # CONFIG_CPU_MIPS64_R2 is not set | ||
82 | # CONFIG_CPU_R3000 is not set | ||
83 | # CONFIG_CPU_TX39XX is not set | ||
84 | # CONFIG_CPU_VR41XX is not set | ||
85 | # CONFIG_CPU_R4300 is not set | ||
86 | # CONFIG_CPU_R4X00 is not set | ||
87 | # CONFIG_CPU_TX49XX is not set | ||
88 | # CONFIG_CPU_R5000 is not set | ||
89 | # CONFIG_CPU_R5432 is not set | ||
90 | # CONFIG_CPU_R6000 is not set | ||
91 | # CONFIG_CPU_NEVADA is not set | ||
92 | # CONFIG_CPU_R8000 is not set | ||
93 | # CONFIG_CPU_R10000 is not set | ||
94 | # CONFIG_CPU_RM7000 is not set | ||
95 | # CONFIG_CPU_RM9000 is not set | ||
96 | # CONFIG_CPU_SB1 is not set | ||
97 | CONFIG_SYS_HAS_CPU_MIPS32_R1=y | ||
98 | CONFIG_CPU_MIPS32=y | ||
99 | CONFIG_CPU_MIPSR1=y | ||
100 | CONFIG_SYS_SUPPORTS_32BIT_KERNEL=y | ||
101 | CONFIG_CPU_SUPPORTS_32BIT_KERNEL=y | ||
102 | |||
103 | # | ||
104 | # Kernel type | ||
105 | # | ||
106 | CONFIG_32BIT=y | ||
107 | # CONFIG_64BIT is not set | ||
108 | CONFIG_PAGE_SIZE_4KB=y | ||
109 | # CONFIG_PAGE_SIZE_8KB is not set | ||
110 | # CONFIG_PAGE_SIZE_16KB is not set | ||
111 | # CONFIG_PAGE_SIZE_64KB is not set | ||
112 | CONFIG_CPU_HAS_PREFETCH=y | ||
113 | CONFIG_MIPS_MT_DISABLED=y | ||
114 | # CONFIG_MIPS_MT_SMP is not set | ||
115 | # CONFIG_MIPS_MT_SMTC is not set | ||
116 | CONFIG_CPU_HAS_LLSC=y | ||
117 | CONFIG_CPU_HAS_SYNC=y | ||
118 | CONFIG_GENERIC_HARDIRQS=y | ||
119 | CONFIG_GENERIC_IRQ_PROBE=y | ||
120 | CONFIG_CPU_SUPPORTS_HIGHMEM=y | ||
121 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
122 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
123 | CONFIG_SELECT_MEMORY_MODEL=y | ||
124 | CONFIG_FLATMEM_MANUAL=y | ||
125 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
126 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
127 | CONFIG_FLATMEM=y | ||
128 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
129 | # CONFIG_SPARSEMEM_STATIC is not set | ||
130 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
131 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
132 | # CONFIG_RESOURCES_64BIT is not set | ||
133 | CONFIG_ZONE_DMA_FLAG=0 | ||
134 | CONFIG_VIRT_TO_BUS=y | ||
135 | CONFIG_TICK_ONESHOT=y | ||
136 | CONFIG_NO_HZ=y | ||
137 | CONFIG_HIGH_RES_TIMERS=y | ||
138 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
139 | # CONFIG_HZ_48 is not set | ||
140 | # CONFIG_HZ_100 is not set | ||
141 | # CONFIG_HZ_128 is not set | ||
142 | CONFIG_HZ_250=y | ||
143 | # CONFIG_HZ_256 is not set | ||
144 | # CONFIG_HZ_1000 is not set | ||
145 | # CONFIG_HZ_1024 is not set | ||
146 | CONFIG_SYS_SUPPORTS_ARBIT_HZ=y | ||
147 | CONFIG_HZ=250 | ||
148 | CONFIG_PREEMPT_NONE=y | ||
149 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
150 | # CONFIG_PREEMPT is not set | ||
151 | CONFIG_RCU_TRACE=y | ||
152 | CONFIG_KEXEC=y | ||
153 | # CONFIG_SECCOMP is not set | ||
154 | CONFIG_LOCKDEP_SUPPORT=y | ||
155 | CONFIG_STACKTRACE_SUPPORT=y | ||
156 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
157 | |||
158 | # | ||
159 | # General setup | ||
160 | # | ||
161 | CONFIG_EXPERIMENTAL=y | ||
162 | CONFIG_BROKEN_ON_SMP=y | ||
163 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
164 | CONFIG_LOCALVERSION="" | ||
165 | # CONFIG_LOCALVERSION_AUTO is not set | ||
166 | CONFIG_SWAP=y | ||
167 | CONFIG_SYSVIPC=y | ||
168 | CONFIG_SYSVIPC_SYSCTL=y | ||
169 | CONFIG_POSIX_MQUEUE=y | ||
170 | CONFIG_BSD_PROCESS_ACCT=y | ||
171 | CONFIG_BSD_PROCESS_ACCT_V3=y | ||
172 | CONFIG_TASKSTATS=y | ||
173 | CONFIG_TASK_DELAY_ACCT=y | ||
174 | CONFIG_TASK_XACCT=y | ||
175 | CONFIG_TASK_IO_ACCOUNTING=y | ||
176 | CONFIG_AUDIT=y | ||
177 | # CONFIG_IKCONFIG is not set | ||
178 | CONFIG_LOG_BUF_SHIFT=17 | ||
179 | CONFIG_CGROUPS=y | ||
180 | # CONFIG_CGROUP_DEBUG is not set | ||
181 | CONFIG_CGROUP_NS=y | ||
182 | CONFIG_GROUP_SCHED=y | ||
183 | CONFIG_FAIR_GROUP_SCHED=y | ||
184 | # CONFIG_RT_GROUP_SCHED is not set | ||
185 | CONFIG_USER_SCHED=y | ||
186 | # CONFIG_CGROUP_SCHED is not set | ||
187 | CONFIG_CGROUP_CPUACCT=y | ||
188 | # CONFIG_RESOURCE_COUNTERS is not set | ||
189 | CONFIG_SYSFS_DEPRECATED=y | ||
190 | CONFIG_RELAY=y | ||
191 | # CONFIG_NAMESPACES is not set | ||
192 | CONFIG_BLK_DEV_INITRD=y | ||
193 | CONFIG_INITRAMFS_SOURCE="" | ||
194 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
195 | CONFIG_SYSCTL=y | ||
196 | CONFIG_EMBEDDED=y | ||
197 | CONFIG_SYSCTL_SYSCALL=y | ||
198 | CONFIG_KALLSYMS=y | ||
199 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
200 | CONFIG_HOTPLUG=y | ||
201 | CONFIG_PRINTK=y | ||
202 | CONFIG_BUG=y | ||
203 | CONFIG_ELF_CORE=y | ||
204 | CONFIG_COMPAT_BRK=y | ||
205 | CONFIG_BASE_FULL=y | ||
206 | CONFIG_FUTEX=y | ||
207 | CONFIG_ANON_INODES=y | ||
208 | CONFIG_EPOLL=y | ||
209 | CONFIG_SIGNALFD=y | ||
210 | CONFIG_TIMERFD=y | ||
211 | CONFIG_EVENTFD=y | ||
212 | CONFIG_SHMEM=y | ||
213 | CONFIG_VM_EVENT_COUNTERS=y | ||
214 | CONFIG_SLAB=y | ||
215 | # CONFIG_SLUB is not set | ||
216 | # CONFIG_SLOB is not set | ||
217 | # CONFIG_PROFILING is not set | ||
218 | # CONFIG_MARKERS is not set | ||
219 | CONFIG_HAVE_OPROFILE=y | ||
220 | # CONFIG_HAVE_KPROBES is not set | ||
221 | CONFIG_PROC_PAGE_MONITOR=y | ||
222 | CONFIG_SLABINFO=y | ||
223 | CONFIG_RT_MUTEXES=y | ||
224 | # CONFIG_TINY_SHMEM is not set | ||
225 | CONFIG_BASE_SMALL=0 | ||
226 | CONFIG_MODULES=y | ||
227 | CONFIG_MODULE_UNLOAD=y | ||
228 | CONFIG_MODULE_FORCE_UNLOAD=y | ||
229 | CONFIG_MODVERSIONS=y | ||
230 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
231 | CONFIG_KMOD=y | ||
232 | CONFIG_BLOCK=y | ||
233 | CONFIG_LBD=y | ||
234 | CONFIG_BLK_DEV_IO_TRACE=y | ||
235 | CONFIG_LSF=y | ||
236 | # CONFIG_BLK_DEV_BSG is not set | ||
237 | |||
238 | # | ||
239 | # IO Schedulers | ||
240 | # | ||
241 | CONFIG_IOSCHED_NOOP=y | ||
242 | CONFIG_IOSCHED_AS=y | ||
243 | CONFIG_IOSCHED_DEADLINE=y | ||
244 | CONFIG_IOSCHED_CFQ=y | ||
245 | # CONFIG_DEFAULT_AS is not set | ||
246 | # CONFIG_DEFAULT_DEADLINE is not set | ||
247 | CONFIG_DEFAULT_CFQ=y | ||
248 | # CONFIG_DEFAULT_NOOP is not set | ||
249 | CONFIG_DEFAULT_IOSCHED="cfq" | ||
250 | CONFIG_CLASSIC_RCU=y | ||
251 | # CONFIG_PREEMPT_RCU is not set | ||
252 | |||
253 | # | ||
254 | # Bus options (PCI, PCMCIA, EISA, ISA, TC) | ||
255 | # | ||
256 | CONFIG_HW_HAS_PCI=y | ||
257 | CONFIG_PCI=y | ||
258 | CONFIG_PCI_DOMAINS=y | ||
259 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
260 | CONFIG_PCI_LEGACY=y | ||
261 | CONFIG_MMU=y | ||
262 | # CONFIG_PCCARD is not set | ||
263 | # CONFIG_HOTPLUG_PCI is not set | ||
264 | |||
265 | # | ||
266 | # Executable file formats | ||
267 | # | ||
268 | CONFIG_BINFMT_ELF=y | ||
269 | CONFIG_BINFMT_MISC=m | ||
270 | CONFIG_TRAD_SIGNALS=y | ||
271 | |||
272 | # | ||
273 | # Power management options | ||
274 | # | ||
275 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | ||
276 | # CONFIG_PM is not set | ||
277 | |||
278 | # | ||
279 | # Networking | ||
280 | # | ||
281 | CONFIG_NET=y | ||
282 | |||
283 | # | ||
284 | # Networking options | ||
285 | # | ||
286 | CONFIG_PACKET=y | ||
287 | CONFIG_PACKET_MMAP=y | ||
288 | CONFIG_UNIX=y | ||
289 | CONFIG_XFRM=y | ||
290 | CONFIG_XFRM_USER=m | ||
291 | # CONFIG_XFRM_SUB_POLICY is not set | ||
292 | # CONFIG_XFRM_MIGRATE is not set | ||
293 | # CONFIG_XFRM_STATISTICS is not set | ||
294 | CONFIG_NET_KEY=m | ||
295 | # CONFIG_NET_KEY_MIGRATE is not set | ||
296 | CONFIG_INET=y | ||
297 | CONFIG_IP_MULTICAST=y | ||
298 | CONFIG_IP_ADVANCED_ROUTER=y | ||
299 | CONFIG_ASK_IP_FIB_HASH=y | ||
300 | # CONFIG_IP_FIB_TRIE is not set | ||
301 | CONFIG_IP_FIB_HASH=y | ||
302 | CONFIG_IP_MULTIPLE_TABLES=y | ||
303 | CONFIG_IP_ROUTE_MULTIPATH=y | ||
304 | CONFIG_IP_ROUTE_VERBOSE=y | ||
305 | # CONFIG_IP_PNP is not set | ||
306 | CONFIG_NET_IPIP=m | ||
307 | CONFIG_NET_IPGRE=m | ||
308 | CONFIG_NET_IPGRE_BROADCAST=y | ||
309 | CONFIG_IP_MROUTE=y | ||
310 | CONFIG_IP_PIMSM_V1=y | ||
311 | CONFIG_IP_PIMSM_V2=y | ||
312 | # CONFIG_ARPD is not set | ||
313 | CONFIG_SYN_COOKIES=y | ||
314 | CONFIG_INET_AH=m | ||
315 | CONFIG_INET_ESP=m | ||
316 | CONFIG_INET_IPCOMP=m | ||
317 | CONFIG_INET_XFRM_TUNNEL=m | ||
318 | CONFIG_INET_TUNNEL=m | ||
319 | CONFIG_INET_XFRM_MODE_TRANSPORT=m | ||
320 | CONFIG_INET_XFRM_MODE_TUNNEL=m | ||
321 | CONFIG_INET_XFRM_MODE_BEET=m | ||
322 | CONFIG_INET_LRO=m | ||
323 | CONFIG_INET_DIAG=m | ||
324 | CONFIG_INET_TCP_DIAG=m | ||
325 | CONFIG_TCP_CONG_ADVANCED=y | ||
326 | CONFIG_TCP_CONG_BIC=y | ||
327 | CONFIG_TCP_CONG_CUBIC=m | ||
328 | CONFIG_TCP_CONG_WESTWOOD=m | ||
329 | CONFIG_TCP_CONG_HTCP=m | ||
330 | CONFIG_TCP_CONG_HSTCP=m | ||
331 | CONFIG_TCP_CONG_HYBLA=m | ||
332 | CONFIG_TCP_CONG_VEGAS=m | ||
333 | CONFIG_TCP_CONG_SCALABLE=m | ||
334 | CONFIG_TCP_CONG_LP=m | ||
335 | CONFIG_TCP_CONG_VENO=m | ||
336 | CONFIG_TCP_CONG_YEAH=m | ||
337 | CONFIG_TCP_CONG_ILLINOIS=m | ||
338 | CONFIG_DEFAULT_BIC=y | ||
339 | # CONFIG_DEFAULT_CUBIC is not set | ||
340 | # CONFIG_DEFAULT_HTCP is not set | ||
341 | # CONFIG_DEFAULT_VEGAS is not set | ||
342 | # CONFIG_DEFAULT_WESTWOOD is not set | ||
343 | # CONFIG_DEFAULT_RENO is not set | ||
344 | CONFIG_DEFAULT_TCP_CONG="bic" | ||
345 | # CONFIG_TCP_MD5SIG is not set | ||
346 | CONFIG_IP_VS=m | ||
347 | # CONFIG_IP_VS_DEBUG is not set | ||
348 | CONFIG_IP_VS_TAB_BITS=12 | ||
349 | |||
350 | # | ||
351 | # IPVS transport protocol load balancing support | ||
352 | # | ||
353 | CONFIG_IP_VS_PROTO_TCP=y | ||
354 | CONFIG_IP_VS_PROTO_UDP=y | ||
355 | CONFIG_IP_VS_PROTO_ESP=y | ||
356 | CONFIG_IP_VS_PROTO_AH=y | ||
357 | |||
358 | # | ||
359 | # IPVS scheduler | ||
360 | # | ||
361 | CONFIG_IP_VS_RR=m | ||
362 | CONFIG_IP_VS_WRR=m | ||
363 | CONFIG_IP_VS_LC=m | ||
364 | CONFIG_IP_VS_WLC=m | ||
365 | CONFIG_IP_VS_LBLC=m | ||
366 | CONFIG_IP_VS_LBLCR=m | ||
367 | CONFIG_IP_VS_DH=m | ||
368 | CONFIG_IP_VS_SH=m | ||
369 | CONFIG_IP_VS_SED=m | ||
370 | CONFIG_IP_VS_NQ=m | ||
371 | |||
372 | # | ||
373 | # IPVS application helper | ||
374 | # | ||
375 | CONFIG_IP_VS_FTP=m | ||
376 | CONFIG_IPV6=m | ||
377 | CONFIG_IPV6_PRIVACY=y | ||
378 | # CONFIG_IPV6_ROUTER_PREF is not set | ||
379 | # CONFIG_IPV6_OPTIMISTIC_DAD is not set | ||
380 | CONFIG_INET6_AH=m | ||
381 | CONFIG_INET6_ESP=m | ||
382 | CONFIG_INET6_IPCOMP=m | ||
383 | # CONFIG_IPV6_MIP6 is not set | ||
384 | CONFIG_INET6_XFRM_TUNNEL=m | ||
385 | CONFIG_INET6_TUNNEL=m | ||
386 | CONFIG_INET6_XFRM_MODE_TRANSPORT=m | ||
387 | CONFIG_INET6_XFRM_MODE_TUNNEL=m | ||
388 | CONFIG_INET6_XFRM_MODE_BEET=m | ||
389 | CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m | ||
390 | CONFIG_IPV6_SIT=m | ||
391 | CONFIG_IPV6_TUNNEL=m | ||
392 | CONFIG_IPV6_MULTIPLE_TABLES=y | ||
393 | CONFIG_IPV6_SUBTREES=y | ||
394 | CONFIG_NETWORK_SECMARK=y | ||
395 | CONFIG_NETFILTER=y | ||
396 | # CONFIG_NETFILTER_DEBUG is not set | ||
397 | CONFIG_NETFILTER_ADVANCED=y | ||
398 | CONFIG_BRIDGE_NETFILTER=y | ||
399 | |||
400 | # | ||
401 | # Core Netfilter Configuration | ||
402 | # | ||
403 | CONFIG_NETFILTER_NETLINK=m | ||
404 | CONFIG_NETFILTER_NETLINK_QUEUE=m | ||
405 | CONFIG_NETFILTER_NETLINK_LOG=m | ||
406 | CONFIG_NF_CONNTRACK=m | ||
407 | CONFIG_NF_CT_ACCT=y | ||
408 | CONFIG_NF_CONNTRACK_MARK=y | ||
409 | CONFIG_NF_CONNTRACK_SECMARK=y | ||
410 | CONFIG_NF_CONNTRACK_EVENTS=y | ||
411 | CONFIG_NF_CT_PROTO_GRE=m | ||
412 | CONFIG_NF_CT_PROTO_SCTP=m | ||
413 | CONFIG_NF_CT_PROTO_UDPLITE=m | ||
414 | CONFIG_NF_CONNTRACK_AMANDA=m | ||
415 | CONFIG_NF_CONNTRACK_FTP=m | ||
416 | CONFIG_NF_CONNTRACK_H323=m | ||
417 | CONFIG_NF_CONNTRACK_IRC=m | ||
418 | CONFIG_NF_CONNTRACK_NETBIOS_NS=m | ||
419 | CONFIG_NF_CONNTRACK_PPTP=m | ||
420 | CONFIG_NF_CONNTRACK_SANE=m | ||
421 | CONFIG_NF_CONNTRACK_SIP=m | ||
422 | CONFIG_NF_CONNTRACK_TFTP=m | ||
423 | CONFIG_NF_CT_NETLINK=m | ||
424 | CONFIG_NETFILTER_XTABLES=m | ||
425 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m | ||
426 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m | ||
427 | CONFIG_NETFILTER_XT_TARGET_DSCP=m | ||
428 | CONFIG_NETFILTER_XT_TARGET_MARK=m | ||
429 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m | ||
430 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m | ||
431 | CONFIG_NETFILTER_XT_TARGET_NOTRACK=m | ||
432 | # CONFIG_NETFILTER_XT_TARGET_RATEEST is not set | ||
433 | CONFIG_NETFILTER_XT_TARGET_TRACE=m | ||
434 | CONFIG_NETFILTER_XT_TARGET_SECMARK=m | ||
435 | CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m | ||
436 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m | ||
437 | # CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP is not set | ||
438 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m | ||
439 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m | ||
440 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m | ||
441 | CONFIG_NETFILTER_XT_MATCH_CONNMARK=m | ||
442 | CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m | ||
443 | CONFIG_NETFILTER_XT_MATCH_DCCP=m | ||
444 | CONFIG_NETFILTER_XT_MATCH_DSCP=m | ||
445 | CONFIG_NETFILTER_XT_MATCH_ESP=m | ||
446 | CONFIG_NETFILTER_XT_MATCH_HELPER=m | ||
447 | # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set | ||
448 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m | ||
449 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m | ||
450 | CONFIG_NETFILTER_XT_MATCH_MAC=m | ||
451 | CONFIG_NETFILTER_XT_MATCH_MARK=m | ||
452 | # CONFIG_NETFILTER_XT_MATCH_OWNER is not set | ||
453 | CONFIG_NETFILTER_XT_MATCH_POLICY=m | ||
454 | CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m | ||
455 | CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m | ||
456 | CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m | ||
457 | CONFIG_NETFILTER_XT_MATCH_QUOTA=m | ||
458 | # CONFIG_NETFILTER_XT_MATCH_RATEEST is not set | ||
459 | CONFIG_NETFILTER_XT_MATCH_REALM=m | ||
460 | CONFIG_NETFILTER_XT_MATCH_SCTP=m | ||
461 | CONFIG_NETFILTER_XT_MATCH_STATE=m | ||
462 | CONFIG_NETFILTER_XT_MATCH_STATISTIC=m | ||
463 | CONFIG_NETFILTER_XT_MATCH_STRING=m | ||
464 | CONFIG_NETFILTER_XT_MATCH_TCPMSS=m | ||
465 | CONFIG_NETFILTER_XT_MATCH_TIME=m | ||
466 | CONFIG_NETFILTER_XT_MATCH_U32=m | ||
467 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m | ||
468 | |||
469 | # | ||
470 | # IP: Netfilter Configuration | ||
471 | # | ||
472 | CONFIG_NF_CONNTRACK_IPV4=m | ||
473 | CONFIG_NF_CONNTRACK_PROC_COMPAT=y | ||
474 | CONFIG_IP_NF_QUEUE=m | ||
475 | CONFIG_IP_NF_IPTABLES=m | ||
476 | CONFIG_IP_NF_MATCH_RECENT=m | ||
477 | CONFIG_IP_NF_MATCH_ECN=m | ||
478 | CONFIG_IP_NF_MATCH_AH=m | ||
479 | CONFIG_IP_NF_MATCH_TTL=m | ||
480 | CONFIG_IP_NF_MATCH_ADDRTYPE=m | ||
481 | CONFIG_IP_NF_FILTER=m | ||
482 | CONFIG_IP_NF_TARGET_REJECT=m | ||
483 | CONFIG_IP_NF_TARGET_LOG=m | ||
484 | CONFIG_IP_NF_TARGET_ULOG=m | ||
485 | CONFIG_NF_NAT=m | ||
486 | CONFIG_NF_NAT_NEEDED=y | ||
487 | CONFIG_IP_NF_TARGET_MASQUERADE=m | ||
488 | CONFIG_IP_NF_TARGET_REDIRECT=m | ||
489 | CONFIG_IP_NF_TARGET_NETMAP=m | ||
490 | CONFIG_NF_NAT_SNMP_BASIC=m | ||
491 | CONFIG_NF_NAT_PROTO_GRE=m | ||
492 | CONFIG_NF_NAT_FTP=m | ||
493 | CONFIG_NF_NAT_IRC=m | ||
494 | CONFIG_NF_NAT_TFTP=m | ||
495 | CONFIG_NF_NAT_AMANDA=m | ||
496 | CONFIG_NF_NAT_PPTP=m | ||
497 | CONFIG_NF_NAT_H323=m | ||
498 | CONFIG_NF_NAT_SIP=m | ||
499 | CONFIG_IP_NF_MANGLE=m | ||
500 | CONFIG_IP_NF_TARGET_ECN=m | ||
501 | CONFIG_IP_NF_TARGET_TTL=m | ||
502 | CONFIG_IP_NF_TARGET_CLUSTERIP=m | ||
503 | CONFIG_IP_NF_RAW=m | ||
504 | CONFIG_IP_NF_ARPTABLES=m | ||
505 | CONFIG_IP_NF_ARPFILTER=m | ||
506 | CONFIG_IP_NF_ARP_MANGLE=m | ||
507 | |||
508 | # | ||
509 | # IPv6: Netfilter Configuration | ||
510 | # | ||
511 | CONFIG_NF_CONNTRACK_IPV6=m | ||
512 | CONFIG_IP6_NF_QUEUE=m | ||
513 | CONFIG_IP6_NF_IPTABLES=m | ||
514 | CONFIG_IP6_NF_MATCH_RT=m | ||
515 | CONFIG_IP6_NF_MATCH_OPTS=m | ||
516 | CONFIG_IP6_NF_MATCH_FRAG=m | ||
517 | CONFIG_IP6_NF_MATCH_HL=m | ||
518 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m | ||
519 | CONFIG_IP6_NF_MATCH_AH=m | ||
520 | CONFIG_IP6_NF_MATCH_MH=m | ||
521 | CONFIG_IP6_NF_MATCH_EUI64=m | ||
522 | CONFIG_IP6_NF_FILTER=m | ||
523 | CONFIG_IP6_NF_TARGET_LOG=m | ||
524 | CONFIG_IP6_NF_TARGET_REJECT=m | ||
525 | CONFIG_IP6_NF_MANGLE=m | ||
526 | CONFIG_IP6_NF_TARGET_HL=m | ||
527 | CONFIG_IP6_NF_RAW=m | ||
528 | |||
529 | # | ||
530 | # Bridge: Netfilter Configuration | ||
531 | # | ||
532 | CONFIG_BRIDGE_NF_EBTABLES=m | ||
533 | CONFIG_BRIDGE_EBT_BROUTE=m | ||
534 | CONFIG_BRIDGE_EBT_T_FILTER=m | ||
535 | CONFIG_BRIDGE_EBT_T_NAT=m | ||
536 | CONFIG_BRIDGE_EBT_802_3=m | ||
537 | CONFIG_BRIDGE_EBT_AMONG=m | ||
538 | CONFIG_BRIDGE_EBT_ARP=m | ||
539 | CONFIG_BRIDGE_EBT_IP=m | ||
540 | CONFIG_BRIDGE_EBT_LIMIT=m | ||
541 | CONFIG_BRIDGE_EBT_MARK=m | ||
542 | CONFIG_BRIDGE_EBT_PKTTYPE=m | ||
543 | CONFIG_BRIDGE_EBT_STP=m | ||
544 | CONFIG_BRIDGE_EBT_VLAN=m | ||
545 | CONFIG_BRIDGE_EBT_ARPREPLY=m | ||
546 | CONFIG_BRIDGE_EBT_DNAT=m | ||
547 | CONFIG_BRIDGE_EBT_MARK_T=m | ||
548 | CONFIG_BRIDGE_EBT_REDIRECT=m | ||
549 | CONFIG_BRIDGE_EBT_SNAT=m | ||
550 | CONFIG_BRIDGE_EBT_LOG=m | ||
551 | CONFIG_BRIDGE_EBT_ULOG=m | ||
552 | CONFIG_IP_DCCP=m | ||
553 | CONFIG_INET_DCCP_DIAG=m | ||
554 | CONFIG_IP_DCCP_ACKVEC=y | ||
555 | |||
556 | # | ||
557 | # DCCP CCIDs Configuration (EXPERIMENTAL) | ||
558 | # | ||
559 | CONFIG_IP_DCCP_CCID2=m | ||
560 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set | ||
561 | CONFIG_IP_DCCP_CCID3=m | ||
562 | # CONFIG_IP_DCCP_CCID3_DEBUG is not set | ||
563 | CONFIG_IP_DCCP_CCID3_RTO=100 | ||
564 | CONFIG_IP_DCCP_TFRC_LIB=m | ||
565 | CONFIG_IP_SCTP=m | ||
566 | # CONFIG_SCTP_DBG_MSG is not set | ||
567 | # CONFIG_SCTP_DBG_OBJCNT is not set | ||
568 | # CONFIG_SCTP_HMAC_NONE is not set | ||
569 | # CONFIG_SCTP_HMAC_SHA1 is not set | ||
570 | CONFIG_SCTP_HMAC_MD5=y | ||
571 | CONFIG_TIPC=m | ||
572 | CONFIG_TIPC_ADVANCED=y | ||
573 | CONFIG_TIPC_ZONES=3 | ||
574 | CONFIG_TIPC_CLUSTERS=1 | ||
575 | CONFIG_TIPC_NODES=255 | ||
576 | CONFIG_TIPC_SLAVE_NODES=0 | ||
577 | CONFIG_TIPC_PORTS=8191 | ||
578 | CONFIG_TIPC_LOG=0 | ||
579 | # CONFIG_TIPC_DEBUG is not set | ||
580 | CONFIG_ATM=m | ||
581 | CONFIG_ATM_CLIP=m | ||
582 | # CONFIG_ATM_CLIP_NO_ICMP is not set | ||
583 | CONFIG_ATM_LANE=m | ||
584 | CONFIG_ATM_MPOA=m | ||
585 | CONFIG_ATM_BR2684=m | ||
586 | # CONFIG_ATM_BR2684_IPFILTER is not set | ||
587 | CONFIG_BRIDGE=m | ||
588 | CONFIG_VLAN_8021Q=m | ||
589 | # CONFIG_DECNET is not set | ||
590 | CONFIG_LLC=m | ||
591 | # CONFIG_LLC2 is not set | ||
592 | # CONFIG_IPX is not set | ||
593 | # CONFIG_ATALK is not set | ||
594 | # CONFIG_X25 is not set | ||
595 | # CONFIG_LAPB is not set | ||
596 | # CONFIG_ECONET is not set | ||
597 | # CONFIG_WAN_ROUTER is not set | ||
598 | CONFIG_NET_SCHED=y | ||
599 | |||
600 | # | ||
601 | # Queueing/Scheduling | ||
602 | # | ||
603 | CONFIG_NET_SCH_CBQ=m | ||
604 | CONFIG_NET_SCH_HTB=m | ||
605 | CONFIG_NET_SCH_HFSC=m | ||
606 | CONFIG_NET_SCH_ATM=m | ||
607 | CONFIG_NET_SCH_PRIO=m | ||
608 | CONFIG_NET_SCH_RR=m | ||
609 | CONFIG_NET_SCH_RED=m | ||
610 | CONFIG_NET_SCH_SFQ=m | ||
611 | CONFIG_NET_SCH_TEQL=m | ||
612 | CONFIG_NET_SCH_TBF=m | ||
613 | CONFIG_NET_SCH_GRED=m | ||
614 | CONFIG_NET_SCH_DSMARK=m | ||
615 | CONFIG_NET_SCH_NETEM=m | ||
616 | CONFIG_NET_SCH_INGRESS=m | ||
617 | |||
618 | # | ||
619 | # Classification | ||
620 | # | ||
621 | CONFIG_NET_CLS=y | ||
622 | CONFIG_NET_CLS_BASIC=m | ||
623 | CONFIG_NET_CLS_TCINDEX=m | ||
624 | CONFIG_NET_CLS_ROUTE4=m | ||
625 | CONFIG_NET_CLS_ROUTE=y | ||
626 | CONFIG_NET_CLS_FW=m | ||
627 | CONFIG_NET_CLS_U32=m | ||
628 | CONFIG_CLS_U32_PERF=y | ||
629 | CONFIG_CLS_U32_MARK=y | ||
630 | CONFIG_NET_CLS_RSVP=m | ||
631 | CONFIG_NET_CLS_RSVP6=m | ||
632 | # CONFIG_NET_CLS_FLOW is not set | ||
633 | CONFIG_NET_EMATCH=y | ||
634 | CONFIG_NET_EMATCH_STACK=32 | ||
635 | CONFIG_NET_EMATCH_CMP=m | ||
636 | CONFIG_NET_EMATCH_NBYTE=m | ||
637 | CONFIG_NET_EMATCH_U32=m | ||
638 | CONFIG_NET_EMATCH_META=m | ||
639 | CONFIG_NET_EMATCH_TEXT=m | ||
640 | CONFIG_NET_CLS_ACT=y | ||
641 | CONFIG_NET_ACT_POLICE=m | ||
642 | CONFIG_NET_ACT_GACT=m | ||
643 | CONFIG_GACT_PROB=y | ||
644 | CONFIG_NET_ACT_MIRRED=m | ||
645 | CONFIG_NET_ACT_IPT=m | ||
646 | CONFIG_NET_ACT_NAT=m | ||
647 | CONFIG_NET_ACT_PEDIT=m | ||
648 | CONFIG_NET_ACT_SIMP=m | ||
649 | CONFIG_NET_CLS_IND=y | ||
650 | CONFIG_NET_SCH_FIFO=y | ||
651 | |||
652 | # | ||
653 | # Network testing | ||
654 | # | ||
655 | CONFIG_NET_PKTGEN=m | ||
656 | # CONFIG_HAMRADIO is not set | ||
657 | # CONFIG_CAN is not set | ||
658 | CONFIG_IRDA=m | ||
659 | |||
660 | # | ||
661 | # IrDA protocols | ||
662 | # | ||
663 | CONFIG_IRLAN=m | ||
664 | CONFIG_IRNET=m | ||
665 | CONFIG_IRCOMM=m | ||
666 | # CONFIG_IRDA_ULTRA is not set | ||
667 | |||
668 | # | ||
669 | # IrDA options | ||
670 | # | ||
671 | CONFIG_IRDA_CACHE_LAST_LSAP=y | ||
672 | CONFIG_IRDA_FAST_RR=y | ||
673 | # CONFIG_IRDA_DEBUG is not set | ||
674 | |||
675 | # | ||
676 | # Infrared-port device drivers | ||
677 | # | ||
678 | |||
679 | # | ||
680 | # SIR device drivers | ||
681 | # | ||
682 | CONFIG_IRTTY_SIR=m | ||
683 | |||
684 | # | ||
685 | # Dongle support | ||
686 | # | ||
687 | CONFIG_DONGLE=y | ||
688 | CONFIG_ESI_DONGLE=m | ||
689 | CONFIG_ACTISYS_DONGLE=m | ||
690 | CONFIG_TEKRAM_DONGLE=m | ||
691 | CONFIG_TOIM3232_DONGLE=m | ||
692 | CONFIG_LITELINK_DONGLE=m | ||
693 | CONFIG_MA600_DONGLE=m | ||
694 | CONFIG_GIRBIL_DONGLE=m | ||
695 | CONFIG_MCP2120_DONGLE=m | ||
696 | CONFIG_OLD_BELKIN_DONGLE=m | ||
697 | CONFIG_ACT200L_DONGLE=m | ||
698 | CONFIG_KINGSUN_DONGLE=m | ||
699 | CONFIG_KSDAZZLE_DONGLE=m | ||
700 | CONFIG_KS959_DONGLE=m | ||
701 | |||
702 | # | ||
703 | # FIR device drivers | ||
704 | # | ||
705 | CONFIG_USB_IRDA=m | ||
706 | CONFIG_SIGMATEL_FIR=m | ||
707 | CONFIG_TOSHIBA_FIR=m | ||
708 | CONFIG_VLSI_FIR=m | ||
709 | CONFIG_MCS_FIR=m | ||
710 | CONFIG_BT=m | ||
711 | # CONFIG_BT_L2CAP is not set | ||
712 | # CONFIG_BT_SCO is not set | ||
713 | |||
714 | # | ||
715 | # Bluetooth device drivers | ||
716 | # | ||
717 | CONFIG_BT_HCIUSB=m | ||
718 | CONFIG_BT_HCIUSB_SCO=y | ||
719 | CONFIG_BT_HCIUART=m | ||
720 | CONFIG_BT_HCIUART_H4=y | ||
721 | CONFIG_BT_HCIUART_BCSP=y | ||
722 | CONFIG_BT_HCIUART_LL=y | ||
723 | CONFIG_BT_HCIBCM203X=m | ||
724 | CONFIG_BT_HCIBPA10X=m | ||
725 | CONFIG_BT_HCIBFUSB=m | ||
726 | CONFIG_BT_HCIVHCI=m | ||
727 | # CONFIG_AF_RXRPC is not set | ||
728 | CONFIG_FIB_RULES=y | ||
729 | |||
730 | # | ||
731 | # Wireless | ||
732 | # | ||
733 | CONFIG_CFG80211=m | ||
734 | CONFIG_NL80211=y | ||
735 | CONFIG_WIRELESS_EXT=y | ||
736 | CONFIG_MAC80211=m | ||
737 | |||
738 | # | ||
739 | # Rate control algorithm selection | ||
740 | # | ||
741 | CONFIG_MAC80211_RC_DEFAULT_PID=y | ||
742 | # CONFIG_MAC80211_RC_DEFAULT_SIMPLE is not set | ||
743 | # CONFIG_MAC80211_RC_DEFAULT_NONE is not set | ||
744 | |||
745 | # | ||
746 | # Selecting 'y' for an algorithm will | ||
747 | # | ||
748 | |||
749 | # | ||
750 | # build the algorithm into mac80211. | ||
751 | # | ||
752 | CONFIG_MAC80211_RC_DEFAULT="pid" | ||
753 | CONFIG_MAC80211_RC_PID=y | ||
754 | # CONFIG_MAC80211_RC_SIMPLE is not set | ||
755 | CONFIG_MAC80211_LEDS=y | ||
756 | # CONFIG_MAC80211_DEBUGFS is not set | ||
757 | # CONFIG_MAC80211_DEBUG_PACKET_ALIGNMENT is not set | ||
758 | # CONFIG_MAC80211_DEBUG is not set | ||
759 | CONFIG_IEEE80211=m | ||
760 | # CONFIG_IEEE80211_DEBUG is not set | ||
761 | CONFIG_IEEE80211_CRYPT_WEP=m | ||
762 | CONFIG_IEEE80211_CRYPT_CCMP=m | ||
763 | CONFIG_IEEE80211_CRYPT_TKIP=m | ||
764 | CONFIG_IEEE80211_SOFTMAC=m | ||
765 | # CONFIG_IEEE80211_SOFTMAC_DEBUG is not set | ||
766 | CONFIG_RFKILL=m | ||
767 | CONFIG_RFKILL_INPUT=m | ||
768 | CONFIG_RFKILL_LEDS=y | ||
769 | CONFIG_NET_9P=m | ||
770 | CONFIG_NET_9P_FD=m | ||
771 | # CONFIG_NET_9P_DEBUG is not set | ||
772 | |||
773 | # | ||
774 | # Device Drivers | ||
775 | # | ||
776 | |||
777 | # | ||
778 | # Generic Driver Options | ||
779 | # | ||
780 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
781 | CONFIG_STANDALONE=y | ||
782 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
783 | CONFIG_FW_LOADER=m | ||
784 | # CONFIG_SYS_HYPERVISOR is not set | ||
785 | CONFIG_CONNECTOR=m | ||
786 | CONFIG_MTD=y | ||
787 | # CONFIG_MTD_DEBUG is not set | ||
788 | CONFIG_MTD_CONCAT=y | ||
789 | CONFIG_MTD_PARTITIONS=y | ||
790 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
791 | # CONFIG_MTD_CMDLINE_PARTS is not set | ||
792 | |||
793 | # | ||
794 | # User Modules And Translation Layers | ||
795 | # | ||
796 | CONFIG_MTD_CHAR=y | ||
797 | CONFIG_MTD_BLKDEVS=y | ||
798 | CONFIG_MTD_BLOCK=y | ||
799 | # CONFIG_FTL is not set | ||
800 | # CONFIG_NFTL is not set | ||
801 | # CONFIG_INFTL is not set | ||
802 | # CONFIG_RFD_FTL is not set | ||
803 | # CONFIG_SSFDC is not set | ||
804 | # CONFIG_MTD_OOPS is not set | ||
805 | |||
806 | # | ||
807 | # RAM/ROM/Flash chip drivers | ||
808 | # | ||
809 | CONFIG_MTD_CFI=y | ||
810 | # CONFIG_MTD_JEDECPROBE is not set | ||
811 | CONFIG_MTD_GEN_PROBE=y | ||
812 | # CONFIG_MTD_CFI_ADV_OPTIONS is not set | ||
813 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
814 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
815 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
816 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
817 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
818 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
819 | CONFIG_MTD_CFI_I1=y | ||
820 | CONFIG_MTD_CFI_I2=y | ||
821 | # CONFIG_MTD_CFI_I4 is not set | ||
822 | # CONFIG_MTD_CFI_I8 is not set | ||
823 | CONFIG_MTD_CFI_INTELEXT=y | ||
824 | CONFIG_MTD_CFI_AMDSTD=y | ||
825 | CONFIG_MTD_CFI_STAA=y | ||
826 | CONFIG_MTD_CFI_UTIL=y | ||
827 | CONFIG_MTD_RAM=y | ||
828 | CONFIG_MTD_ROM=y | ||
829 | CONFIG_MTD_ABSENT=y | ||
830 | |||
831 | # | ||
832 | # Mapping drivers for chip access | ||
833 | # | ||
834 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | ||
835 | CONFIG_MTD_PHYSMAP=y | ||
836 | CONFIG_MTD_PHYSMAP_START=0x8000000 | ||
837 | CONFIG_MTD_PHYSMAP_LEN=0x0 | ||
838 | CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | ||
839 | # CONFIG_MTD_INTEL_VR_NOR is not set | ||
840 | # CONFIG_MTD_PLATRAM is not set | ||
841 | |||
842 | # | ||
843 | # Self-contained MTD device drivers | ||
844 | # | ||
845 | # CONFIG_MTD_PMC551 is not set | ||
846 | # CONFIG_MTD_SLRAM is not set | ||
847 | # CONFIG_MTD_PHRAM is not set | ||
848 | # CONFIG_MTD_MTDRAM is not set | ||
849 | # CONFIG_MTD_BLOCK2MTD is not set | ||
850 | |||
851 | # | ||
852 | # Disk-On-Chip Device Drivers | ||
853 | # | ||
854 | # CONFIG_MTD_DOC2000 is not set | ||
855 | # CONFIG_MTD_DOC2001 is not set | ||
856 | # CONFIG_MTD_DOC2001PLUS is not set | ||
857 | # CONFIG_MTD_NAND is not set | ||
858 | # CONFIG_MTD_ONENAND is not set | ||
859 | |||
860 | # | ||
861 | # UBI - Unsorted block images | ||
862 | # | ||
863 | # CONFIG_MTD_UBI is not set | ||
864 | # CONFIG_PARPORT is not set | ||
865 | CONFIG_BLK_DEV=y | ||
866 | # CONFIG_BLK_CPQ_DA is not set | ||
867 | # CONFIG_BLK_CPQ_CISS_DA is not set | ||
868 | # CONFIG_BLK_DEV_DAC960 is not set | ||
869 | # CONFIG_BLK_DEV_UMEM is not set | ||
870 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
871 | CONFIG_BLK_DEV_LOOP=m | ||
872 | CONFIG_BLK_DEV_CRYPTOLOOP=m | ||
873 | CONFIG_BLK_DEV_NBD=m | ||
874 | # CONFIG_BLK_DEV_SX8 is not set | ||
875 | # CONFIG_BLK_DEV_UB is not set | ||
876 | CONFIG_BLK_DEV_RAM=y | ||
877 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
878 | CONFIG_BLK_DEV_RAM_SIZE=16384 | ||
879 | # CONFIG_BLK_DEV_XIP is not set | ||
880 | # CONFIG_CDROM_PKTCDVD is not set | ||
881 | CONFIG_ATA_OVER_ETH=m | ||
882 | CONFIG_MISC_DEVICES=y | ||
883 | # CONFIG_PHANTOM is not set | ||
884 | # CONFIG_EEPROM_93CX6 is not set | ||
885 | # CONFIG_SGI_IOC4 is not set | ||
886 | # CONFIG_TIFM_CORE is not set | ||
887 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
888 | CONFIG_HAVE_IDE=y | ||
889 | # CONFIG_IDE is not set | ||
890 | |||
891 | # | ||
892 | # SCSI device support | ||
893 | # | ||
894 | CONFIG_RAID_ATTRS=m | ||
895 | CONFIG_SCSI=y | ||
896 | CONFIG_SCSI_DMA=y | ||
897 | CONFIG_SCSI_TGT=m | ||
898 | # CONFIG_SCSI_NETLINK is not set | ||
899 | CONFIG_SCSI_PROC_FS=y | ||
900 | |||
901 | # | ||
902 | # SCSI support type (disk, tape, CD-ROM) | ||
903 | # | ||
904 | CONFIG_BLK_DEV_SD=y | ||
905 | CONFIG_CHR_DEV_ST=m | ||
906 | CONFIG_CHR_DEV_OSST=m | ||
907 | CONFIG_BLK_DEV_SR=m | ||
908 | CONFIG_BLK_DEV_SR_VENDOR=y | ||
909 | CONFIG_CHR_DEV_SG=m | ||
910 | CONFIG_CHR_DEV_SCH=m | ||
911 | |||
912 | # | ||
913 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
914 | # | ||
915 | CONFIG_SCSI_MULTI_LUN=y | ||
916 | CONFIG_SCSI_CONSTANTS=y | ||
917 | CONFIG_SCSI_LOGGING=y | ||
918 | CONFIG_SCSI_SCAN_ASYNC=y | ||
919 | CONFIG_SCSI_WAIT_SCAN=m | ||
920 | |||
921 | # | ||
922 | # SCSI Transports | ||
923 | # | ||
924 | # CONFIG_SCSI_SPI_ATTRS is not set | ||
925 | # CONFIG_SCSI_FC_ATTRS is not set | ||
926 | CONFIG_SCSI_ISCSI_ATTRS=m | ||
927 | # CONFIG_SCSI_SAS_LIBSAS is not set | ||
928 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
929 | CONFIG_SCSI_LOWLEVEL=y | ||
930 | CONFIG_ISCSI_TCP=m | ||
931 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | ||
932 | # CONFIG_SCSI_3W_9XXX is not set | ||
933 | # CONFIG_SCSI_ACARD is not set | ||
934 | # CONFIG_SCSI_AACRAID is not set | ||
935 | # CONFIG_SCSI_AIC7XXX is not set | ||
936 | # CONFIG_SCSI_AIC7XXX_OLD is not set | ||
937 | # CONFIG_SCSI_AIC79XX is not set | ||
938 | # CONFIG_SCSI_AIC94XX is not set | ||
939 | # CONFIG_SCSI_DPT_I2O is not set | ||
940 | # CONFIG_SCSI_ADVANSYS is not set | ||
941 | # CONFIG_SCSI_ARCMSR is not set | ||
942 | # CONFIG_MEGARAID_NEWGEN is not set | ||
943 | # CONFIG_MEGARAID_LEGACY is not set | ||
944 | # CONFIG_MEGARAID_SAS is not set | ||
945 | # CONFIG_SCSI_HPTIOP is not set | ||
946 | # CONFIG_SCSI_DMX3191D is not set | ||
947 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | ||
948 | # CONFIG_SCSI_IPS is not set | ||
949 | # CONFIG_SCSI_INITIO is not set | ||
950 | # CONFIG_SCSI_INIA100 is not set | ||
951 | # CONFIG_SCSI_STEX is not set | ||
952 | # CONFIG_SCSI_SYM53C8XX_2 is not set | ||
953 | # CONFIG_SCSI_QLOGIC_1280 is not set | ||
954 | # CONFIG_SCSI_QLA_FC is not set | ||
955 | # CONFIG_SCSI_QLA_ISCSI is not set | ||
956 | # CONFIG_SCSI_LPFC is not set | ||
957 | # CONFIG_SCSI_DC395x is not set | ||
958 | # CONFIG_SCSI_DC390T is not set | ||
959 | # CONFIG_SCSI_NSP32 is not set | ||
960 | # CONFIG_SCSI_DEBUG is not set | ||
961 | # CONFIG_SCSI_SRP is not set | ||
962 | # CONFIG_ATA is not set | ||
963 | # CONFIG_MD is not set | ||
964 | # CONFIG_FUSION is not set | ||
965 | |||
966 | # | ||
967 | # IEEE 1394 (FireWire) support | ||
968 | # | ||
969 | # CONFIG_FIREWIRE is not set | ||
970 | # CONFIG_IEEE1394 is not set | ||
971 | # CONFIG_I2O is not set | ||
972 | CONFIG_NETDEVICES=y | ||
973 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
974 | # CONFIG_IFB is not set | ||
975 | CONFIG_DUMMY=m | ||
976 | # CONFIG_BONDING is not set | ||
977 | # CONFIG_MACVLAN is not set | ||
978 | CONFIG_EQUALIZER=m | ||
979 | CONFIG_TUN=m | ||
980 | CONFIG_VETH=m | ||
981 | # CONFIG_ARCNET is not set | ||
982 | CONFIG_PHYLIB=m | ||
983 | |||
984 | # | ||
985 | # MII PHY device drivers | ||
986 | # | ||
987 | CONFIG_MARVELL_PHY=m | ||
988 | CONFIG_DAVICOM_PHY=m | ||
989 | CONFIG_QSEMI_PHY=m | ||
990 | CONFIG_LXT_PHY=m | ||
991 | CONFIG_CICADA_PHY=m | ||
992 | CONFIG_VITESSE_PHY=m | ||
993 | CONFIG_SMSC_PHY=m | ||
994 | CONFIG_BROADCOM_PHY=m | ||
995 | CONFIG_ICPLUS_PHY=m | ||
996 | # CONFIG_REALTEK_PHY is not set | ||
997 | # CONFIG_FIXED_PHY is not set | ||
998 | CONFIG_MDIO_BITBANG=m | ||
999 | CONFIG_NET_ETHERNET=y | ||
1000 | CONFIG_MII=y | ||
1001 | # CONFIG_AX88796 is not set | ||
1002 | # CONFIG_HAPPYMEAL is not set | ||
1003 | # CONFIG_SUNGEM is not set | ||
1004 | # CONFIG_CASSINI is not set | ||
1005 | # CONFIG_NET_VENDOR_3COM is not set | ||
1006 | # CONFIG_DM9000 is not set | ||
1007 | # CONFIG_NET_TULIP is not set | ||
1008 | # CONFIG_HP100 is not set | ||
1009 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
1010 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
1011 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
1012 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
1013 | CONFIG_NET_PCI=y | ||
1014 | # CONFIG_PCNET32 is not set | ||
1015 | # CONFIG_AMD8111_ETH is not set | ||
1016 | # CONFIG_ADAPTEC_STARFIRE is not set | ||
1017 | CONFIG_B44=y | ||
1018 | CONFIG_B44_PCI_AUTOSELECT=y | ||
1019 | CONFIG_B44_PCICORE_AUTOSELECT=y | ||
1020 | CONFIG_B44_PCI=y | ||
1021 | # CONFIG_FORCEDETH is not set | ||
1022 | # CONFIG_TC35815 is not set | ||
1023 | # CONFIG_EEPRO100 is not set | ||
1024 | # CONFIG_E100 is not set | ||
1025 | # CONFIG_FEALNX is not set | ||
1026 | # CONFIG_NATSEMI is not set | ||
1027 | # CONFIG_NE2K_PCI is not set | ||
1028 | # CONFIG_8139CP is not set | ||
1029 | # CONFIG_8139TOO is not set | ||
1030 | # CONFIG_R6040 is not set | ||
1031 | # CONFIG_SIS900 is not set | ||
1032 | # CONFIG_EPIC100 is not set | ||
1033 | # CONFIG_SUNDANCE is not set | ||
1034 | # CONFIG_TLAN is not set | ||
1035 | # CONFIG_VIA_RHINE is not set | ||
1036 | # CONFIG_SC92031 is not set | ||
1037 | # CONFIG_NETDEV_1000 is not set | ||
1038 | # CONFIG_NETDEV_10000 is not set | ||
1039 | # CONFIG_TR is not set | ||
1040 | |||
1041 | # | ||
1042 | # Wireless LAN | ||
1043 | # | ||
1044 | # CONFIG_WLAN_PRE80211 is not set | ||
1045 | CONFIG_WLAN_80211=y | ||
1046 | # CONFIG_IPW2100 is not set | ||
1047 | # CONFIG_IPW2200 is not set | ||
1048 | # CONFIG_LIBERTAS is not set | ||
1049 | # CONFIG_HERMES is not set | ||
1050 | # CONFIG_ATMEL is not set | ||
1051 | # CONFIG_PRISM54 is not set | ||
1052 | # CONFIG_USB_ZD1201 is not set | ||
1053 | # CONFIG_USB_NET_RNDIS_WLAN is not set | ||
1054 | # CONFIG_RTL8180 is not set | ||
1055 | # CONFIG_RTL8187 is not set | ||
1056 | # CONFIG_ADM8211 is not set | ||
1057 | # CONFIG_P54_COMMON is not set | ||
1058 | CONFIG_ATH5K=m | ||
1059 | # CONFIG_IWL4965 is not set | ||
1060 | # CONFIG_IWL3945 is not set | ||
1061 | # CONFIG_HOSTAP is not set | ||
1062 | # CONFIG_BCM43XX is not set | ||
1063 | # CONFIG_B43 is not set | ||
1064 | # CONFIG_B43LEGACY is not set | ||
1065 | CONFIG_ZD1211RW=m | ||
1066 | # CONFIG_ZD1211RW_DEBUG is not set | ||
1067 | # CONFIG_RT2X00 is not set | ||
1068 | |||
1069 | # | ||
1070 | # USB Network Adapters | ||
1071 | # | ||
1072 | CONFIG_USB_CATC=m | ||
1073 | CONFIG_USB_KAWETH=m | ||
1074 | CONFIG_USB_PEGASUS=m | ||
1075 | CONFIG_USB_RTL8150=m | ||
1076 | CONFIG_USB_USBNET=m | ||
1077 | CONFIG_USB_NET_AX8817X=m | ||
1078 | CONFIG_USB_NET_CDCETHER=m | ||
1079 | CONFIG_USB_NET_DM9601=m | ||
1080 | CONFIG_USB_NET_GL620A=m | ||
1081 | CONFIG_USB_NET_NET1080=m | ||
1082 | CONFIG_USB_NET_PLUSB=m | ||
1083 | CONFIG_USB_NET_MCS7830=m | ||
1084 | CONFIG_USB_NET_RNDIS_HOST=m | ||
1085 | CONFIG_USB_NET_CDC_SUBSET=m | ||
1086 | CONFIG_USB_ALI_M5632=y | ||
1087 | CONFIG_USB_AN2720=y | ||
1088 | CONFIG_USB_BELKIN=y | ||
1089 | CONFIG_USB_ARMLINUX=y | ||
1090 | CONFIG_USB_EPSON2888=y | ||
1091 | CONFIG_USB_KC2190=y | ||
1092 | CONFIG_USB_NET_ZAURUS=m | ||
1093 | # CONFIG_WAN is not set | ||
1094 | CONFIG_ATM_DRIVERS=y | ||
1095 | CONFIG_ATM_DUMMY=m | ||
1096 | CONFIG_ATM_TCP=m | ||
1097 | # CONFIG_ATM_LANAI is not set | ||
1098 | # CONFIG_ATM_ENI is not set | ||
1099 | # CONFIG_ATM_FIRESTREAM is not set | ||
1100 | # CONFIG_ATM_ZATM is not set | ||
1101 | # CONFIG_ATM_NICSTAR is not set | ||
1102 | # CONFIG_ATM_IDT77252 is not set | ||
1103 | # CONFIG_ATM_AMBASSADOR is not set | ||
1104 | # CONFIG_ATM_HORIZON is not set | ||
1105 | # CONFIG_ATM_IA is not set | ||
1106 | # CONFIG_ATM_FORE200E_MAYBE is not set | ||
1107 | # CONFIG_ATM_HE is not set | ||
1108 | # CONFIG_FDDI is not set | ||
1109 | # CONFIG_HIPPI is not set | ||
1110 | CONFIG_PPP=m | ||
1111 | # CONFIG_PPP_MULTILINK is not set | ||
1112 | # CONFIG_PPP_FILTER is not set | ||
1113 | CONFIG_PPP_ASYNC=m | ||
1114 | # CONFIG_PPP_SYNC_TTY is not set | ||
1115 | CONFIG_PPP_DEFLATE=m | ||
1116 | CONFIG_PPP_BSDCOMP=m | ||
1117 | CONFIG_PPP_MPPE=m | ||
1118 | CONFIG_PPPOE=m | ||
1119 | CONFIG_PPPOATM=m | ||
1120 | # CONFIG_PPPOL2TP is not set | ||
1121 | CONFIG_SLIP=m | ||
1122 | # CONFIG_SLIP_COMPRESSED is not set | ||
1123 | CONFIG_SLHC=m | ||
1124 | # CONFIG_SLIP_SMART is not set | ||
1125 | # CONFIG_SLIP_MODE_SLIP6 is not set | ||
1126 | # CONFIG_NET_FC is not set | ||
1127 | CONFIG_NETCONSOLE=y | ||
1128 | # CONFIG_NETCONSOLE_DYNAMIC is not set | ||
1129 | CONFIG_NETPOLL=y | ||
1130 | # CONFIG_NETPOLL_TRAP is not set | ||
1131 | CONFIG_NET_POLL_CONTROLLER=y | ||
1132 | # CONFIG_ISDN is not set | ||
1133 | # CONFIG_PHONE is not set | ||
1134 | |||
1135 | # | ||
1136 | # Input device support | ||
1137 | # | ||
1138 | CONFIG_INPUT=y | ||
1139 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
1140 | # CONFIG_INPUT_POLLDEV is not set | ||
1141 | |||
1142 | # | ||
1143 | # Userland interfaces | ||
1144 | # | ||
1145 | CONFIG_INPUT_MOUSEDEV=y | ||
1146 | CONFIG_INPUT_MOUSEDEV_PSAUX=y | ||
1147 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | ||
1148 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | ||
1149 | # CONFIG_INPUT_JOYDEV is not set | ||
1150 | CONFIG_INPUT_EVDEV=m | ||
1151 | # CONFIG_INPUT_EVBUG is not set | ||
1152 | |||
1153 | # | ||
1154 | # Input Device Drivers | ||
1155 | # | ||
1156 | # CONFIG_INPUT_KEYBOARD is not set | ||
1157 | # CONFIG_INPUT_MOUSE is not set | ||
1158 | # CONFIG_INPUT_JOYSTICK is not set | ||
1159 | # CONFIG_INPUT_TABLET is not set | ||
1160 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
1161 | # CONFIG_INPUT_MISC is not set | ||
1162 | |||
1163 | # | ||
1164 | # Hardware I/O ports | ||
1165 | # | ||
1166 | # CONFIG_SERIO is not set | ||
1167 | # CONFIG_GAMEPORT is not set | ||
1168 | |||
1169 | # | ||
1170 | # Character devices | ||
1171 | # | ||
1172 | # CONFIG_VT is not set | ||
1173 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
1174 | # CONFIG_NOZOMI is not set | ||
1175 | |||
1176 | # | ||
1177 | # Serial drivers | ||
1178 | # | ||
1179 | CONFIG_SERIAL_8250=y | ||
1180 | CONFIG_SERIAL_8250_CONSOLE=y | ||
1181 | # CONFIG_SERIAL_8250_PCI is not set | ||
1182 | CONFIG_SERIAL_8250_NR_UARTS=2 | ||
1183 | CONFIG_SERIAL_8250_RUNTIME_UARTS=2 | ||
1184 | # CONFIG_SERIAL_8250_EXTENDED is not set | ||
1185 | |||
1186 | # | ||
1187 | # Non-8250 serial port support | ||
1188 | # | ||
1189 | CONFIG_SERIAL_CORE=y | ||
1190 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
1191 | # CONFIG_SERIAL_JSM is not set | ||
1192 | CONFIG_UNIX98_PTYS=y | ||
1193 | # CONFIG_LEGACY_PTYS is not set | ||
1194 | # CONFIG_IPMI_HANDLER is not set | ||
1195 | # CONFIG_HW_RANDOM is not set | ||
1196 | # CONFIG_RTC is not set | ||
1197 | # CONFIG_R3964 is not set | ||
1198 | # CONFIG_APPLICOM is not set | ||
1199 | # CONFIG_RAW_DRIVER is not set | ||
1200 | # CONFIG_TCG_TPM is not set | ||
1201 | CONFIG_DEVPORT=y | ||
1202 | # CONFIG_I2C is not set | ||
1203 | |||
1204 | # | ||
1205 | # SPI support | ||
1206 | # | ||
1207 | # CONFIG_SPI is not set | ||
1208 | # CONFIG_SPI_MASTER is not set | ||
1209 | CONFIG_W1=m | ||
1210 | CONFIG_W1_CON=y | ||
1211 | |||
1212 | # | ||
1213 | # 1-wire Bus Masters | ||
1214 | # | ||
1215 | CONFIG_W1_MASTER_MATROX=m | ||
1216 | CONFIG_W1_MASTER_DS2490=m | ||
1217 | # CONFIG_W1_MASTER_GPIO is not set | ||
1218 | |||
1219 | # | ||
1220 | # 1-wire Slaves | ||
1221 | # | ||
1222 | CONFIG_W1_SLAVE_THERM=m | ||
1223 | CONFIG_W1_SLAVE_SMEM=m | ||
1224 | CONFIG_W1_SLAVE_DS2433=m | ||
1225 | # CONFIG_W1_SLAVE_DS2433_CRC is not set | ||
1226 | CONFIG_W1_SLAVE_DS2760=m | ||
1227 | # CONFIG_POWER_SUPPLY is not set | ||
1228 | # CONFIG_HWMON is not set | ||
1229 | CONFIG_THERMAL=y | ||
1230 | # CONFIG_WATCHDOG is not set | ||
1231 | |||
1232 | # | ||
1233 | # Sonics Silicon Backplane | ||
1234 | # | ||
1235 | CONFIG_SSB_POSSIBLE=y | ||
1236 | CONFIG_SSB=y | ||
1237 | CONFIG_SSB_PCIHOST_POSSIBLE=y | ||
1238 | CONFIG_SSB_PCIHOST=y | ||
1239 | # CONFIG_SSB_SILENT is not set | ||
1240 | # CONFIG_SSB_DEBUG is not set | ||
1241 | CONFIG_SSB_SERIAL=y | ||
1242 | CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y | ||
1243 | CONFIG_SSB_DRIVER_PCICORE=y | ||
1244 | CONFIG_SSB_PCICORE_HOSTMODE=y | ||
1245 | CONFIG_SSB_DRIVER_MIPS=y | ||
1246 | CONFIG_SSB_DRIVER_EXTIF=y | ||
1247 | |||
1248 | # | ||
1249 | # Multifunction device drivers | ||
1250 | # | ||
1251 | # CONFIG_MFD_SM501 is not set | ||
1252 | |||
1253 | # | ||
1254 | # Multimedia devices | ||
1255 | # | ||
1256 | # CONFIG_VIDEO_DEV is not set | ||
1257 | # CONFIG_DVB_CORE is not set | ||
1258 | CONFIG_DAB=y | ||
1259 | CONFIG_USB_DABUSB=m | ||
1260 | |||
1261 | # | ||
1262 | # Graphics support | ||
1263 | # | ||
1264 | # CONFIG_DRM is not set | ||
1265 | # CONFIG_VGASTATE is not set | ||
1266 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
1267 | # CONFIG_FB is not set | ||
1268 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
1269 | |||
1270 | # | ||
1271 | # Display device support | ||
1272 | # | ||
1273 | CONFIG_DISPLAY_SUPPORT=m | ||
1274 | |||
1275 | # | ||
1276 | # Display hardware drivers | ||
1277 | # | ||
1278 | |||
1279 | # | ||
1280 | # Sound | ||
1281 | # | ||
1282 | CONFIG_SOUND=m | ||
1283 | |||
1284 | # | ||
1285 | # Advanced Linux Sound Architecture | ||
1286 | # | ||
1287 | CONFIG_SND=m | ||
1288 | CONFIG_SND_TIMER=m | ||
1289 | CONFIG_SND_PCM=m | ||
1290 | CONFIG_SND_HWDEP=m | ||
1291 | CONFIG_SND_RAWMIDI=m | ||
1292 | CONFIG_SND_SEQUENCER=m | ||
1293 | CONFIG_SND_SEQ_DUMMY=m | ||
1294 | CONFIG_SND_OSSEMUL=y | ||
1295 | CONFIG_SND_MIXER_OSS=m | ||
1296 | CONFIG_SND_PCM_OSS=m | ||
1297 | CONFIG_SND_PCM_OSS_PLUGINS=y | ||
1298 | CONFIG_SND_SEQUENCER_OSS=y | ||
1299 | # CONFIG_SND_DYNAMIC_MINORS is not set | ||
1300 | CONFIG_SND_SUPPORT_OLD_API=y | ||
1301 | CONFIG_SND_VERBOSE_PROCFS=y | ||
1302 | # CONFIG_SND_VERBOSE_PRINTK is not set | ||
1303 | # CONFIG_SND_DEBUG is not set | ||
1304 | |||
1305 | # | ||
1306 | # Generic devices | ||
1307 | # | ||
1308 | CONFIG_SND_DUMMY=m | ||
1309 | CONFIG_SND_VIRMIDI=m | ||
1310 | # CONFIG_SND_MTPAV is not set | ||
1311 | # CONFIG_SND_SERIAL_U16550 is not set | ||
1312 | # CONFIG_SND_MPU401 is not set | ||
1313 | |||
1314 | # | ||
1315 | # PCI devices | ||
1316 | # | ||
1317 | # CONFIG_SND_AD1889 is not set | ||
1318 | # CONFIG_SND_ALS300 is not set | ||
1319 | # CONFIG_SND_ALI5451 is not set | ||
1320 | # CONFIG_SND_ATIIXP is not set | ||
1321 | # CONFIG_SND_ATIIXP_MODEM is not set | ||
1322 | # CONFIG_SND_AU8810 is not set | ||
1323 | # CONFIG_SND_AU8820 is not set | ||
1324 | # CONFIG_SND_AU8830 is not set | ||
1325 | # CONFIG_SND_AZT3328 is not set | ||
1326 | # CONFIG_SND_BT87X is not set | ||
1327 | # CONFIG_SND_CA0106 is not set | ||
1328 | # CONFIG_SND_CMIPCI is not set | ||
1329 | # CONFIG_SND_OXYGEN is not set | ||
1330 | # CONFIG_SND_CS4281 is not set | ||
1331 | # CONFIG_SND_CS46XX is not set | ||
1332 | # CONFIG_SND_DARLA20 is not set | ||
1333 | # CONFIG_SND_GINA20 is not set | ||
1334 | # CONFIG_SND_LAYLA20 is not set | ||
1335 | # CONFIG_SND_DARLA24 is not set | ||
1336 | # CONFIG_SND_GINA24 is not set | ||
1337 | # CONFIG_SND_LAYLA24 is not set | ||
1338 | # CONFIG_SND_MONA is not set | ||
1339 | # CONFIG_SND_MIA is not set | ||
1340 | # CONFIG_SND_ECHO3G is not set | ||
1341 | # CONFIG_SND_INDIGO is not set | ||
1342 | # CONFIG_SND_INDIGOIO is not set | ||
1343 | # CONFIG_SND_INDIGODJ is not set | ||
1344 | # CONFIG_SND_EMU10K1 is not set | ||
1345 | # CONFIG_SND_EMU10K1X is not set | ||
1346 | # CONFIG_SND_ENS1370 is not set | ||
1347 | # CONFIG_SND_ENS1371 is not set | ||
1348 | # CONFIG_SND_ES1938 is not set | ||
1349 | # CONFIG_SND_ES1968 is not set | ||
1350 | # CONFIG_SND_FM801 is not set | ||
1351 | # CONFIG_SND_HDA_INTEL is not set | ||
1352 | # CONFIG_SND_HDSP is not set | ||
1353 | # CONFIG_SND_HDSPM is not set | ||
1354 | # CONFIG_SND_HIFIER is not set | ||
1355 | # CONFIG_SND_ICE1712 is not set | ||
1356 | # CONFIG_SND_ICE1724 is not set | ||
1357 | # CONFIG_SND_INTEL8X0 is not set | ||
1358 | # CONFIG_SND_INTEL8X0M is not set | ||
1359 | # CONFIG_SND_KORG1212 is not set | ||
1360 | # CONFIG_SND_MAESTRO3 is not set | ||
1361 | # CONFIG_SND_MIXART is not set | ||
1362 | # CONFIG_SND_NM256 is not set | ||
1363 | # CONFIG_SND_PCXHR is not set | ||
1364 | # CONFIG_SND_RIPTIDE is not set | ||
1365 | # CONFIG_SND_RME32 is not set | ||
1366 | # CONFIG_SND_RME96 is not set | ||
1367 | # CONFIG_SND_RME9652 is not set | ||
1368 | # CONFIG_SND_SONICVIBES is not set | ||
1369 | # CONFIG_SND_TRIDENT is not set | ||
1370 | # CONFIG_SND_VIA82XX is not set | ||
1371 | # CONFIG_SND_VIA82XX_MODEM is not set | ||
1372 | # CONFIG_SND_VIRTUOSO is not set | ||
1373 | # CONFIG_SND_VX222 is not set | ||
1374 | # CONFIG_SND_YMFPCI is not set | ||
1375 | |||
1376 | # | ||
1377 | # ALSA MIPS devices | ||
1378 | # | ||
1379 | |||
1380 | # | ||
1381 | # USB devices | ||
1382 | # | ||
1383 | CONFIG_SND_USB_AUDIO=m | ||
1384 | # CONFIG_SND_USB_CAIAQ is not set | ||
1385 | |||
1386 | # | ||
1387 | # System on Chip audio support | ||
1388 | # | ||
1389 | # CONFIG_SND_SOC is not set | ||
1390 | |||
1391 | # | ||
1392 | # SoC Audio support for SuperH | ||
1393 | # | ||
1394 | |||
1395 | # | ||
1396 | # ALSA SoC audio for Freescale SOCs | ||
1397 | # | ||
1398 | |||
1399 | # | ||
1400 | # Open Sound System | ||
1401 | # | ||
1402 | # CONFIG_SOUND_PRIME is not set | ||
1403 | CONFIG_HID_SUPPORT=y | ||
1404 | CONFIG_HID=m | ||
1405 | # CONFIG_HID_DEBUG is not set | ||
1406 | # CONFIG_HIDRAW is not set | ||
1407 | |||
1408 | # | ||
1409 | # USB Input Devices | ||
1410 | # | ||
1411 | CONFIG_USB_HID=m | ||
1412 | # CONFIG_USB_HIDINPUT_POWERBOOK is not set | ||
1413 | # CONFIG_HID_FF is not set | ||
1414 | CONFIG_USB_HIDDEV=y | ||
1415 | |||
1416 | # | ||
1417 | # USB HID Boot Protocol drivers | ||
1418 | # | ||
1419 | # CONFIG_USB_KBD is not set | ||
1420 | # CONFIG_USB_MOUSE is not set | ||
1421 | CONFIG_USB_SUPPORT=y | ||
1422 | CONFIG_USB_ARCH_HAS_HCD=y | ||
1423 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
1424 | CONFIG_USB_ARCH_HAS_EHCI=y | ||
1425 | CONFIG_USB=y | ||
1426 | # CONFIG_USB_DEBUG is not set | ||
1427 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
1428 | |||
1429 | # | ||
1430 | # Miscellaneous USB options | ||
1431 | # | ||
1432 | CONFIG_USB_DEVICEFS=y | ||
1433 | # CONFIG_USB_DEVICE_CLASS is not set | ||
1434 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
1435 | # CONFIG_USB_OTG is not set | ||
1436 | |||
1437 | # | ||
1438 | # USB Host Controller Drivers | ||
1439 | # | ||
1440 | CONFIG_USB_EHCI_HCD=y | ||
1441 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | ||
1442 | CONFIG_USB_EHCI_TT_NEWSCHED=y | ||
1443 | # CONFIG_USB_ISP116X_HCD is not set | ||
1444 | CONFIG_USB_OHCI_HCD=y | ||
1445 | # CONFIG_USB_OHCI_HCD_SSB is not set | ||
1446 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | ||
1447 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set | ||
1448 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
1449 | # CONFIG_USB_UHCI_HCD is not set | ||
1450 | CONFIG_USB_U132_HCD=m | ||
1451 | # CONFIG_USB_SL811_HCD is not set | ||
1452 | CONFIG_USB_R8A66597_HCD=m | ||
1453 | |||
1454 | # | ||
1455 | # USB Device Class drivers | ||
1456 | # | ||
1457 | CONFIG_USB_ACM=m | ||
1458 | CONFIG_USB_PRINTER=m | ||
1459 | |||
1460 | # | ||
1461 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
1462 | # | ||
1463 | |||
1464 | # | ||
1465 | # may also be needed; see USB_STORAGE Help for more information | ||
1466 | # | ||
1467 | CONFIG_USB_STORAGE=y | ||
1468 | # CONFIG_USB_STORAGE_DEBUG is not set | ||
1469 | CONFIG_USB_STORAGE_DATAFAB=y | ||
1470 | CONFIG_USB_STORAGE_FREECOM=y | ||
1471 | # CONFIG_USB_STORAGE_ISD200 is not set | ||
1472 | CONFIG_USB_STORAGE_DPCM=y | ||
1473 | CONFIG_USB_STORAGE_USBAT=y | ||
1474 | CONFIG_USB_STORAGE_SDDR09=y | ||
1475 | CONFIG_USB_STORAGE_SDDR55=y | ||
1476 | CONFIG_USB_STORAGE_JUMPSHOT=y | ||
1477 | CONFIG_USB_STORAGE_ALAUDA=y | ||
1478 | CONFIG_USB_STORAGE_ONETOUCH=y | ||
1479 | CONFIG_USB_STORAGE_KARMA=y | ||
1480 | # CONFIG_USB_LIBUSUAL is not set | ||
1481 | |||
1482 | # | ||
1483 | # USB Imaging devices | ||
1484 | # | ||
1485 | CONFIG_USB_MDC800=m | ||
1486 | CONFIG_USB_MICROTEK=m | ||
1487 | # CONFIG_USB_MON is not set | ||
1488 | |||
1489 | # | ||
1490 | # USB port drivers | ||
1491 | # | ||
1492 | CONFIG_USB_SERIAL=m | ||
1493 | CONFIG_USB_EZUSB=y | ||
1494 | CONFIG_USB_SERIAL_GENERIC=y | ||
1495 | CONFIG_USB_SERIAL_AIRCABLE=m | ||
1496 | CONFIG_USB_SERIAL_AIRPRIME=m | ||
1497 | CONFIG_USB_SERIAL_ARK3116=m | ||
1498 | CONFIG_USB_SERIAL_BELKIN=m | ||
1499 | CONFIG_USB_SERIAL_CH341=m | ||
1500 | # CONFIG_USB_SERIAL_WHITEHEAT is not set | ||
1501 | CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m | ||
1502 | CONFIG_USB_SERIAL_CP2101=m | ||
1503 | CONFIG_USB_SERIAL_CYPRESS_M8=m | ||
1504 | CONFIG_USB_SERIAL_EMPEG=m | ||
1505 | CONFIG_USB_SERIAL_FTDI_SIO=m | ||
1506 | CONFIG_USB_SERIAL_FUNSOFT=m | ||
1507 | CONFIG_USB_SERIAL_VISOR=m | ||
1508 | CONFIG_USB_SERIAL_IPAQ=m | ||
1509 | CONFIG_USB_SERIAL_IR=m | ||
1510 | # CONFIG_USB_SERIAL_EDGEPORT is not set | ||
1511 | # CONFIG_USB_SERIAL_EDGEPORT_TI is not set | ||
1512 | CONFIG_USB_SERIAL_GARMIN=m | ||
1513 | CONFIG_USB_SERIAL_IPW=m | ||
1514 | # CONFIG_USB_SERIAL_IUU is not set | ||
1515 | CONFIG_USB_SERIAL_KEYSPAN_PDA=m | ||
1516 | # CONFIG_USB_SERIAL_KEYSPAN is not set | ||
1517 | CONFIG_USB_SERIAL_KLSI=m | ||
1518 | CONFIG_USB_SERIAL_KOBIL_SCT=m | ||
1519 | CONFIG_USB_SERIAL_MCT_U232=m | ||
1520 | CONFIG_USB_SERIAL_MOS7720=m | ||
1521 | CONFIG_USB_SERIAL_MOS7840=m | ||
1522 | CONFIG_USB_SERIAL_NAVMAN=m | ||
1523 | CONFIG_USB_SERIAL_PL2303=m | ||
1524 | CONFIG_USB_SERIAL_OTI6858=m | ||
1525 | CONFIG_USB_SERIAL_HP4X=m | ||
1526 | CONFIG_USB_SERIAL_SAFE=m | ||
1527 | # CONFIG_USB_SERIAL_SAFE_PADDED is not set | ||
1528 | CONFIG_USB_SERIAL_SIERRAWIRELESS=m | ||
1529 | # CONFIG_USB_SERIAL_TI is not set | ||
1530 | CONFIG_USB_SERIAL_CYBERJACK=m | ||
1531 | CONFIG_USB_SERIAL_XIRCOM=m | ||
1532 | CONFIG_USB_SERIAL_OPTION=m | ||
1533 | CONFIG_USB_SERIAL_OMNINET=m | ||
1534 | CONFIG_USB_SERIAL_DEBUG=m | ||
1535 | |||
1536 | # | ||
1537 | # USB Miscellaneous drivers | ||
1538 | # | ||
1539 | # CONFIG_USB_EMI62 is not set | ||
1540 | # CONFIG_USB_EMI26 is not set | ||
1541 | CONFIG_USB_ADUTUX=m | ||
1542 | CONFIG_USB_AUERSWALD=m | ||
1543 | CONFIG_USB_RIO500=m | ||
1544 | CONFIG_USB_LEGOTOWER=m | ||
1545 | CONFIG_USB_LCD=m | ||
1546 | CONFIG_USB_BERRY_CHARGE=m | ||
1547 | CONFIG_USB_LED=m | ||
1548 | CONFIG_USB_CYPRESS_CY7C63=m | ||
1549 | CONFIG_USB_CYTHERM=m | ||
1550 | CONFIG_USB_PHIDGET=m | ||
1551 | CONFIG_USB_PHIDGETKIT=m | ||
1552 | CONFIG_USB_PHIDGETMOTORCONTROL=m | ||
1553 | CONFIG_USB_PHIDGETSERVO=m | ||
1554 | CONFIG_USB_IDMOUSE=m | ||
1555 | CONFIG_USB_FTDI_ELAN=m | ||
1556 | # CONFIG_USB_APPLEDISPLAY is not set | ||
1557 | CONFIG_USB_SISUSBVGA=m | ||
1558 | CONFIG_USB_LD=m | ||
1559 | CONFIG_USB_TRANCEVIBRATOR=m | ||
1560 | CONFIG_USB_IOWARRIOR=m | ||
1561 | CONFIG_USB_TEST=m | ||
1562 | CONFIG_USB_ATM=m | ||
1563 | CONFIG_USB_SPEEDTOUCH=m | ||
1564 | CONFIG_USB_CXACRU=m | ||
1565 | CONFIG_USB_UEAGLEATM=m | ||
1566 | CONFIG_USB_XUSBATM=m | ||
1567 | CONFIG_USB_GADGET=m | ||
1568 | # CONFIG_USB_GADGET_DEBUG_FILES is not set | ||
1569 | # CONFIG_USB_GADGET_DEBUG_FS is not set | ||
1570 | CONFIG_USB_GADGET_SELECTED=y | ||
1571 | # CONFIG_USB_GADGET_AMD5536UDC is not set | ||
1572 | # CONFIG_USB_GADGET_ATMEL_USBA is not set | ||
1573 | # CONFIG_USB_GADGET_FSL_USB2 is not set | ||
1574 | CONFIG_USB_GADGET_NET2280=y | ||
1575 | CONFIG_USB_NET2280=m | ||
1576 | # CONFIG_USB_GADGET_PXA2XX is not set | ||
1577 | # CONFIG_USB_GADGET_M66592 is not set | ||
1578 | # CONFIG_USB_GADGET_GOKU is not set | ||
1579 | # CONFIG_USB_GADGET_LH7A40X is not set | ||
1580 | # CONFIG_USB_GADGET_OMAP is not set | ||
1581 | # CONFIG_USB_GADGET_S3C2410 is not set | ||
1582 | # CONFIG_USB_GADGET_AT91 is not set | ||
1583 | # CONFIG_USB_GADGET_DUMMY_HCD is not set | ||
1584 | CONFIG_USB_GADGET_DUALSPEED=y | ||
1585 | CONFIG_USB_ZERO=m | ||
1586 | CONFIG_USB_ETH=m | ||
1587 | CONFIG_USB_ETH_RNDIS=y | ||
1588 | CONFIG_USB_GADGETFS=m | ||
1589 | CONFIG_USB_FILE_STORAGE=m | ||
1590 | # CONFIG_USB_FILE_STORAGE_TEST is not set | ||
1591 | CONFIG_USB_G_SERIAL=m | ||
1592 | CONFIG_USB_MIDI_GADGET=m | ||
1593 | # CONFIG_USB_G_PRINTER is not set | ||
1594 | # CONFIG_MMC is not set | ||
1595 | # CONFIG_MEMSTICK is not set | ||
1596 | CONFIG_NEW_LEDS=y | ||
1597 | CONFIG_LEDS_CLASS=y | ||
1598 | |||
1599 | # | ||
1600 | # LED drivers | ||
1601 | # | ||
1602 | CONFIG_LEDS_GPIO=y | ||
1603 | |||
1604 | # | ||
1605 | # LED Triggers | ||
1606 | # | ||
1607 | CONFIG_LEDS_TRIGGERS=y | ||
1608 | CONFIG_LEDS_TRIGGER_TIMER=y | ||
1609 | CONFIG_LEDS_TRIGGER_HEARTBEAT=y | ||
1610 | # CONFIG_INFINIBAND is not set | ||
1611 | CONFIG_RTC_LIB=y | ||
1612 | # CONFIG_RTC_CLASS is not set | ||
1613 | |||
1614 | # | ||
1615 | # Userspace I/O | ||
1616 | # | ||
1617 | # CONFIG_UIO is not set | ||
1618 | |||
1619 | # | ||
1620 | # File systems | ||
1621 | # | ||
1622 | CONFIG_EXT2_FS=y | ||
1623 | CONFIG_EXT2_FS_XATTR=y | ||
1624 | CONFIG_EXT2_FS_POSIX_ACL=y | ||
1625 | CONFIG_EXT2_FS_SECURITY=y | ||
1626 | # CONFIG_EXT2_FS_XIP is not set | ||
1627 | CONFIG_EXT3_FS=y | ||
1628 | CONFIG_EXT3_FS_XATTR=y | ||
1629 | CONFIG_EXT3_FS_POSIX_ACL=y | ||
1630 | CONFIG_EXT3_FS_SECURITY=y | ||
1631 | # CONFIG_EXT4DEV_FS is not set | ||
1632 | CONFIG_JBD=y | ||
1633 | # CONFIG_JBD_DEBUG is not set | ||
1634 | CONFIG_FS_MBCACHE=y | ||
1635 | CONFIG_REISERFS_FS=m | ||
1636 | # CONFIG_REISERFS_CHECK is not set | ||
1637 | # CONFIG_REISERFS_PROC_INFO is not set | ||
1638 | CONFIG_REISERFS_FS_XATTR=y | ||
1639 | CONFIG_REISERFS_FS_POSIX_ACL=y | ||
1640 | CONFIG_REISERFS_FS_SECURITY=y | ||
1641 | CONFIG_JFS_FS=m | ||
1642 | CONFIG_JFS_POSIX_ACL=y | ||
1643 | CONFIG_JFS_SECURITY=y | ||
1644 | # CONFIG_JFS_DEBUG is not set | ||
1645 | # CONFIG_JFS_STATISTICS is not set | ||
1646 | CONFIG_FS_POSIX_ACL=y | ||
1647 | CONFIG_XFS_FS=m | ||
1648 | CONFIG_XFS_QUOTA=y | ||
1649 | CONFIG_XFS_SECURITY=y | ||
1650 | CONFIG_XFS_POSIX_ACL=y | ||
1651 | CONFIG_XFS_RT=y | ||
1652 | CONFIG_GFS2_FS=m | ||
1653 | CONFIG_GFS2_FS_LOCKING_NOLOCK=m | ||
1654 | CONFIG_GFS2_FS_LOCKING_DLM=m | ||
1655 | # CONFIG_OCFS2_FS is not set | ||
1656 | CONFIG_DNOTIFY=y | ||
1657 | CONFIG_INOTIFY=y | ||
1658 | CONFIG_INOTIFY_USER=y | ||
1659 | CONFIG_QUOTA=y | ||
1660 | CONFIG_QUOTA_NETLINK_INTERFACE=y | ||
1661 | CONFIG_PRINT_QUOTA_WARNING=y | ||
1662 | CONFIG_QFMT_V1=m | ||
1663 | CONFIG_QFMT_V2=m | ||
1664 | CONFIG_QUOTACTL=y | ||
1665 | CONFIG_AUTOFS_FS=m | ||
1666 | CONFIG_AUTOFS4_FS=m | ||
1667 | CONFIG_FUSE_FS=m | ||
1668 | CONFIG_GENERIC_ACL=y | ||
1669 | |||
1670 | # | ||
1671 | # CD-ROM/DVD Filesystems | ||
1672 | # | ||
1673 | CONFIG_ISO9660_FS=m | ||
1674 | CONFIG_JOLIET=y | ||
1675 | CONFIG_ZISOFS=y | ||
1676 | CONFIG_UDF_FS=m | ||
1677 | CONFIG_UDF_NLS=y | ||
1678 | |||
1679 | # | ||
1680 | # DOS/FAT/NT Filesystems | ||
1681 | # | ||
1682 | CONFIG_FAT_FS=m | ||
1683 | CONFIG_MSDOS_FS=m | ||
1684 | CONFIG_VFAT_FS=m | ||
1685 | CONFIG_FAT_DEFAULT_CODEPAGE=437 | ||
1686 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | ||
1687 | CONFIG_NTFS_FS=m | ||
1688 | # CONFIG_NTFS_DEBUG is not set | ||
1689 | CONFIG_NTFS_RW=y | ||
1690 | |||
1691 | # | ||
1692 | # Pseudo filesystems | ||
1693 | # | ||
1694 | CONFIG_PROC_FS=y | ||
1695 | CONFIG_PROC_KCORE=y | ||
1696 | CONFIG_PROC_SYSCTL=y | ||
1697 | CONFIG_SYSFS=y | ||
1698 | CONFIG_TMPFS=y | ||
1699 | CONFIG_TMPFS_POSIX_ACL=y | ||
1700 | # CONFIG_HUGETLB_PAGE is not set | ||
1701 | CONFIG_CONFIGFS_FS=m | ||
1702 | |||
1703 | # | ||
1704 | # Miscellaneous filesystems | ||
1705 | # | ||
1706 | CONFIG_ADFS_FS=m | ||
1707 | # CONFIG_ADFS_FS_RW is not set | ||
1708 | CONFIG_AFFS_FS=m | ||
1709 | CONFIG_HFS_FS=m | ||
1710 | CONFIG_HFSPLUS_FS=m | ||
1711 | CONFIG_BEFS_FS=m | ||
1712 | # CONFIG_BEFS_DEBUG is not set | ||
1713 | CONFIG_BFS_FS=m | ||
1714 | CONFIG_EFS_FS=m | ||
1715 | CONFIG_JFFS2_FS=m | ||
1716 | CONFIG_JFFS2_FS_DEBUG=0 | ||
1717 | CONFIG_JFFS2_FS_WRITEBUFFER=y | ||
1718 | # CONFIG_JFFS2_FS_WBUF_VERIFY is not set | ||
1719 | # CONFIG_JFFS2_SUMMARY is not set | ||
1720 | CONFIG_JFFS2_FS_XATTR=y | ||
1721 | CONFIG_JFFS2_FS_POSIX_ACL=y | ||
1722 | CONFIG_JFFS2_FS_SECURITY=y | ||
1723 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set | ||
1724 | CONFIG_JFFS2_ZLIB=y | ||
1725 | # CONFIG_JFFS2_LZO is not set | ||
1726 | CONFIG_JFFS2_RTIME=y | ||
1727 | # CONFIG_JFFS2_RUBIN is not set | ||
1728 | CONFIG_CRAMFS=m | ||
1729 | CONFIG_VXFS_FS=m | ||
1730 | CONFIG_MINIX_FS=m | ||
1731 | CONFIG_HPFS_FS=m | ||
1732 | CONFIG_QNX4FS_FS=m | ||
1733 | CONFIG_ROMFS_FS=m | ||
1734 | CONFIG_SYSV_FS=m | ||
1735 | CONFIG_UFS_FS=m | ||
1736 | # CONFIG_UFS_FS_WRITE is not set | ||
1737 | # CONFIG_UFS_DEBUG is not set | ||
1738 | CONFIG_NETWORK_FILESYSTEMS=y | ||
1739 | CONFIG_NFS_FS=m | ||
1740 | CONFIG_NFS_V3=y | ||
1741 | CONFIG_NFS_V3_ACL=y | ||
1742 | CONFIG_NFS_V4=y | ||
1743 | # CONFIG_NFS_DIRECTIO is not set | ||
1744 | CONFIG_NFSD=m | ||
1745 | CONFIG_NFSD_V2_ACL=y | ||
1746 | CONFIG_NFSD_V3=y | ||
1747 | CONFIG_NFSD_V3_ACL=y | ||
1748 | CONFIG_NFSD_V4=y | ||
1749 | CONFIG_NFSD_TCP=y | ||
1750 | CONFIG_LOCKD=m | ||
1751 | CONFIG_LOCKD_V4=y | ||
1752 | CONFIG_EXPORTFS=m | ||
1753 | CONFIG_NFS_ACL_SUPPORT=m | ||
1754 | CONFIG_NFS_COMMON=y | ||
1755 | CONFIG_SUNRPC=m | ||
1756 | CONFIG_SUNRPC_GSS=m | ||
1757 | CONFIG_SUNRPC_BIND34=y | ||
1758 | CONFIG_RPCSEC_GSS_KRB5=m | ||
1759 | CONFIG_RPCSEC_GSS_SPKM3=m | ||
1760 | # CONFIG_SMB_FS is not set | ||
1761 | CONFIG_CIFS=m | ||
1762 | # CONFIG_CIFS_STATS is not set | ||
1763 | # CONFIG_CIFS_WEAK_PW_HASH is not set | ||
1764 | CONFIG_CIFS_XATTR=y | ||
1765 | CONFIG_CIFS_POSIX=y | ||
1766 | # CONFIG_CIFS_DEBUG2 is not set | ||
1767 | # CONFIG_CIFS_EXPERIMENTAL is not set | ||
1768 | CONFIG_NCP_FS=m | ||
1769 | # CONFIG_NCPFS_PACKET_SIGNING is not set | ||
1770 | # CONFIG_NCPFS_IOCTL_LOCKING is not set | ||
1771 | # CONFIG_NCPFS_STRONG is not set | ||
1772 | CONFIG_NCPFS_NFS_NS=y | ||
1773 | CONFIG_NCPFS_OS2_NS=y | ||
1774 | # CONFIG_NCPFS_SMALLDOS is not set | ||
1775 | CONFIG_NCPFS_NLS=y | ||
1776 | CONFIG_NCPFS_EXTRAS=y | ||
1777 | CONFIG_CODA_FS=m | ||
1778 | # CONFIG_CODA_FS_OLD_API is not set | ||
1779 | # CONFIG_AFS_FS is not set | ||
1780 | CONFIG_9P_FS=m | ||
1781 | |||
1782 | # | ||
1783 | # Partition Types | ||
1784 | # | ||
1785 | CONFIG_PARTITION_ADVANCED=y | ||
1786 | # CONFIG_ACORN_PARTITION is not set | ||
1787 | # CONFIG_OSF_PARTITION is not set | ||
1788 | # CONFIG_AMIGA_PARTITION is not set | ||
1789 | # CONFIG_ATARI_PARTITION is not set | ||
1790 | # CONFIG_MAC_PARTITION is not set | ||
1791 | CONFIG_MSDOS_PARTITION=y | ||
1792 | # CONFIG_BSD_DISKLABEL is not set | ||
1793 | # CONFIG_MINIX_SUBPARTITION is not set | ||
1794 | # CONFIG_SOLARIS_X86_PARTITION is not set | ||
1795 | # CONFIG_UNIXWARE_DISKLABEL is not set | ||
1796 | # CONFIG_LDM_PARTITION is not set | ||
1797 | # CONFIG_SGI_PARTITION is not set | ||
1798 | # CONFIG_ULTRIX_PARTITION is not set | ||
1799 | # CONFIG_SUN_PARTITION is not set | ||
1800 | CONFIG_KARMA_PARTITION=y | ||
1801 | # CONFIG_EFI_PARTITION is not set | ||
1802 | # CONFIG_SYSV68_PARTITION is not set | ||
1803 | CONFIG_NLS=y | ||
1804 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
1805 | CONFIG_NLS_CODEPAGE_437=m | ||
1806 | CONFIG_NLS_CODEPAGE_737=m | ||
1807 | CONFIG_NLS_CODEPAGE_775=m | ||
1808 | CONFIG_NLS_CODEPAGE_850=m | ||
1809 | CONFIG_NLS_CODEPAGE_852=m | ||
1810 | CONFIG_NLS_CODEPAGE_855=m | ||
1811 | CONFIG_NLS_CODEPAGE_857=m | ||
1812 | CONFIG_NLS_CODEPAGE_860=m | ||
1813 | CONFIG_NLS_CODEPAGE_861=m | ||
1814 | CONFIG_NLS_CODEPAGE_862=m | ||
1815 | CONFIG_NLS_CODEPAGE_863=m | ||
1816 | CONFIG_NLS_CODEPAGE_864=m | ||
1817 | CONFIG_NLS_CODEPAGE_865=m | ||
1818 | CONFIG_NLS_CODEPAGE_866=m | ||
1819 | CONFIG_NLS_CODEPAGE_869=m | ||
1820 | CONFIG_NLS_CODEPAGE_936=m | ||
1821 | CONFIG_NLS_CODEPAGE_950=m | ||
1822 | CONFIG_NLS_CODEPAGE_932=m | ||
1823 | CONFIG_NLS_CODEPAGE_949=m | ||
1824 | CONFIG_NLS_CODEPAGE_874=m | ||
1825 | CONFIG_NLS_ISO8859_8=m | ||
1826 | CONFIG_NLS_CODEPAGE_1250=m | ||
1827 | CONFIG_NLS_CODEPAGE_1251=m | ||
1828 | CONFIG_NLS_ASCII=m | ||
1829 | CONFIG_NLS_ISO8859_1=m | ||
1830 | CONFIG_NLS_ISO8859_2=m | ||
1831 | CONFIG_NLS_ISO8859_3=m | ||
1832 | CONFIG_NLS_ISO8859_4=m | ||
1833 | CONFIG_NLS_ISO8859_5=m | ||
1834 | CONFIG_NLS_ISO8859_6=m | ||
1835 | CONFIG_NLS_ISO8859_7=m | ||
1836 | CONFIG_NLS_ISO8859_9=m | ||
1837 | CONFIG_NLS_ISO8859_13=m | ||
1838 | CONFIG_NLS_ISO8859_14=m | ||
1839 | CONFIG_NLS_ISO8859_15=m | ||
1840 | CONFIG_NLS_KOI8_R=m | ||
1841 | CONFIG_NLS_KOI8_U=m | ||
1842 | CONFIG_NLS_UTF8=m | ||
1843 | CONFIG_DLM=m | ||
1844 | CONFIG_DLM_DEBUG=y | ||
1845 | |||
1846 | # | ||
1847 | # Kernel hacking | ||
1848 | # | ||
1849 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
1850 | # CONFIG_PRINTK_TIME is not set | ||
1851 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
1852 | CONFIG_ENABLE_MUST_CHECK=y | ||
1853 | # CONFIG_MAGIC_SYSRQ is not set | ||
1854 | # CONFIG_UNUSED_SYMBOLS is not set | ||
1855 | CONFIG_DEBUG_FS=y | ||
1856 | # CONFIG_HEADERS_CHECK is not set | ||
1857 | # CONFIG_DEBUG_KERNEL is not set | ||
1858 | # CONFIG_SAMPLES is not set | ||
1859 | CONFIG_CMDLINE="" | ||
1860 | |||
1861 | # | ||
1862 | # Security options | ||
1863 | # | ||
1864 | # CONFIG_KEYS is not set | ||
1865 | # CONFIG_SECURITY is not set | ||
1866 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
1867 | CONFIG_CRYPTO=y | ||
1868 | CONFIG_CRYPTO_ALGAPI=y | ||
1869 | CONFIG_CRYPTO_AEAD=m | ||
1870 | CONFIG_CRYPTO_BLKCIPHER=m | ||
1871 | # CONFIG_CRYPTO_SEQIV is not set | ||
1872 | CONFIG_CRYPTO_HASH=y | ||
1873 | CONFIG_CRYPTO_MANAGER=y | ||
1874 | CONFIG_CRYPTO_HMAC=y | ||
1875 | CONFIG_CRYPTO_XCBC=m | ||
1876 | CONFIG_CRYPTO_NULL=m | ||
1877 | CONFIG_CRYPTO_MD4=m | ||
1878 | CONFIG_CRYPTO_MD5=y | ||
1879 | CONFIG_CRYPTO_SHA1=m | ||
1880 | CONFIG_CRYPTO_SHA256=m | ||
1881 | CONFIG_CRYPTO_SHA512=m | ||
1882 | CONFIG_CRYPTO_WP512=m | ||
1883 | CONFIG_CRYPTO_TGR192=m | ||
1884 | CONFIG_CRYPTO_GF128MUL=m | ||
1885 | CONFIG_CRYPTO_ECB=m | ||
1886 | CONFIG_CRYPTO_CBC=m | ||
1887 | CONFIG_CRYPTO_PCBC=m | ||
1888 | CONFIG_CRYPTO_LRW=m | ||
1889 | CONFIG_CRYPTO_XTS=m | ||
1890 | # CONFIG_CRYPTO_CTR is not set | ||
1891 | # CONFIG_CRYPTO_GCM is not set | ||
1892 | # CONFIG_CRYPTO_CCM is not set | ||
1893 | # CONFIG_CRYPTO_CRYPTD is not set | ||
1894 | CONFIG_CRYPTO_DES=m | ||
1895 | CONFIG_CRYPTO_FCRYPT=m | ||
1896 | CONFIG_CRYPTO_BLOWFISH=m | ||
1897 | CONFIG_CRYPTO_TWOFISH=m | ||
1898 | CONFIG_CRYPTO_TWOFISH_COMMON=m | ||
1899 | CONFIG_CRYPTO_SERPENT=m | ||
1900 | CONFIG_CRYPTO_AES=m | ||
1901 | CONFIG_CRYPTO_CAST5=m | ||
1902 | CONFIG_CRYPTO_CAST6=m | ||
1903 | CONFIG_CRYPTO_TEA=m | ||
1904 | CONFIG_CRYPTO_ARC4=m | ||
1905 | CONFIG_CRYPTO_KHAZAD=m | ||
1906 | CONFIG_CRYPTO_ANUBIS=m | ||
1907 | CONFIG_CRYPTO_SEED=m | ||
1908 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1909 | CONFIG_CRYPTO_DEFLATE=m | ||
1910 | CONFIG_CRYPTO_MICHAEL_MIC=m | ||
1911 | CONFIG_CRYPTO_CRC32C=m | ||
1912 | CONFIG_CRYPTO_CAMELLIA=m | ||
1913 | CONFIG_CRYPTO_TEST=m | ||
1914 | CONFIG_CRYPTO_AUTHENC=m | ||
1915 | # CONFIG_CRYPTO_LZO is not set | ||
1916 | CONFIG_CRYPTO_HW=y | ||
1917 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1918 | |||
1919 | # | ||
1920 | # Library routines | ||
1921 | # | ||
1922 | CONFIG_BITREVERSE=y | ||
1923 | CONFIG_CRC_CCITT=m | ||
1924 | CONFIG_CRC16=m | ||
1925 | CONFIG_CRC_ITU_T=m | ||
1926 | CONFIG_CRC32=y | ||
1927 | CONFIG_CRC7=m | ||
1928 | CONFIG_LIBCRC32C=m | ||
1929 | CONFIG_AUDIT_GENERIC=y | ||
1930 | CONFIG_ZLIB_INFLATE=m | ||
1931 | CONFIG_ZLIB_DEFLATE=m | ||
1932 | CONFIG_TEXTSEARCH=y | ||
1933 | CONFIG_TEXTSEARCH_KMP=m | ||
1934 | CONFIG_TEXTSEARCH_BM=m | ||
1935 | CONFIG_TEXTSEARCH_FSM=m | ||
1936 | CONFIG_PLIST=y | ||
1937 | CONFIG_HAS_IOMEM=y | ||
1938 | CONFIG_HAS_IOPORT=y | ||
1939 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/mips/configs/ip28_defconfig b/arch/mips/configs/ip28_defconfig new file mode 100644 index 000000000000..ec188be9a67a --- /dev/null +++ b/arch/mips/configs/ip28_defconfig | |||
@@ -0,0 +1,891 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.25-rc1 | ||
4 | # Mon Feb 11 15:58:54 2008 | ||
5 | # | ||
6 | CONFIG_MIPS=y | ||
7 | |||
8 | # | ||
9 | # Machine selection | ||
10 | # | ||
11 | # CONFIG_MACH_ALCHEMY is not set | ||
12 | # CONFIG_BASLER_EXCITE is not set | ||
13 | # CONFIG_BCM47XX is not set | ||
14 | # CONFIG_MIPS_COBALT is not set | ||
15 | # CONFIG_MACH_DECSTATION is not set | ||
16 | # CONFIG_MACH_JAZZ is not set | ||
17 | # CONFIG_LASAT is not set | ||
18 | # CONFIG_LEMOTE_FULONG is not set | ||
19 | # CONFIG_MIPS_ATLAS is not set | ||
20 | # CONFIG_MIPS_MALTA is not set | ||
21 | # CONFIG_MIPS_SEAD is not set | ||
22 | # CONFIG_MIPS_SIM is not set | ||
23 | # CONFIG_MARKEINS is not set | ||
24 | # CONFIG_MACH_VR41XX is not set | ||
25 | # CONFIG_PNX8550_JBS is not set | ||
26 | # CONFIG_PNX8550_STB810 is not set | ||
27 | # CONFIG_PMC_MSP is not set | ||
28 | # CONFIG_PMC_YOSEMITE is not set | ||
29 | # CONFIG_SGI_IP22 is not set | ||
30 | # CONFIG_SGI_IP27 is not set | ||
31 | CONFIG_SGI_IP28=y | ||
32 | # CONFIG_SGI_IP32 is not set | ||
33 | # CONFIG_SIBYTE_CRHINE is not set | ||
34 | # CONFIG_SIBYTE_CARMEL is not set | ||
35 | # CONFIG_SIBYTE_CRHONE is not set | ||
36 | # CONFIG_SIBYTE_RHONE is not set | ||
37 | # CONFIG_SIBYTE_SWARM is not set | ||
38 | # CONFIG_SIBYTE_LITTLESUR is not set | ||
39 | # CONFIG_SIBYTE_SENTOSA is not set | ||
40 | # CONFIG_SIBYTE_BIGSUR is not set | ||
41 | # CONFIG_SNI_RM is not set | ||
42 | # CONFIG_TOSHIBA_JMR3927 is not set | ||
43 | # CONFIG_TOSHIBA_RBTX4927 is not set | ||
44 | # CONFIG_TOSHIBA_RBTX4938 is not set | ||
45 | # CONFIG_WR_PPMC is not set | ||
46 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
47 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
48 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
49 | CONFIG_ARCH_SUPPORTS_OPROFILE=y | ||
50 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
51 | CONFIG_GENERIC_HWEIGHT=y | ||
52 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
53 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
54 | CONFIG_GENERIC_TIME=y | ||
55 | CONFIG_GENERIC_CMOS_UPDATE=y | ||
56 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | ||
57 | # CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ is not set | ||
58 | CONFIG_ARC=y | ||
59 | CONFIG_CEVT_R4K=y | ||
60 | CONFIG_CSRC_R4K=y | ||
61 | CONFIG_DMA_NONCOHERENT=y | ||
62 | CONFIG_DMA_NEED_PCI_MAP_STATE=y | ||
63 | CONFIG_EARLY_PRINTK=y | ||
64 | CONFIG_SYS_HAS_EARLY_PRINTK=y | ||
65 | # CONFIG_HOTPLUG_CPU is not set | ||
66 | CONFIG_I8259=y | ||
67 | # CONFIG_NO_IOPORT is not set | ||
68 | CONFIG_GENERIC_ISA_DMA=y | ||
69 | CONFIG_GENERIC_ISA_DMA_SUPPORT_BROKEN=y | ||
70 | CONFIG_CPU_BIG_ENDIAN=y | ||
71 | # CONFIG_CPU_LITTLE_ENDIAN is not set | ||
72 | CONFIG_SYS_SUPPORTS_BIG_ENDIAN=y | ||
73 | CONFIG_IRQ_CPU=y | ||
74 | CONFIG_SWAP_IO_SPACE=y | ||
75 | CONFIG_SGI_HAS_DS1286=y | ||
76 | CONFIG_SGI_HAS_INDYDOG=y | ||
77 | CONFIG_SGI_HAS_SEEQ=y | ||
78 | CONFIG_SGI_HAS_WD93=y | ||
79 | CONFIG_SGI_HAS_ZILOG=y | ||
80 | CONFIG_SGI_HAS_I8042=y | ||
81 | CONFIG_DEFAULT_SGI_PARTITION=y | ||
82 | CONFIG_MIPS_L1_CACHE_SHIFT=7 | ||
83 | CONFIG_ARC_CONSOLE=y | ||
84 | CONFIG_ARC_PROMLIB=y | ||
85 | CONFIG_ARC64=y | ||
86 | CONFIG_BOOT_ELF64=y | ||
87 | |||
88 | # | ||
89 | # CPU selection | ||
90 | # | ||
91 | # CONFIG_CPU_LOONGSON2 is not set | ||
92 | # CONFIG_CPU_MIPS32_R1 is not set | ||
93 | # CONFIG_CPU_MIPS32_R2 is not set | ||
94 | # CONFIG_CPU_MIPS64_R1 is not set | ||
95 | # CONFIG_CPU_MIPS64_R2 is not set | ||
96 | # CONFIG_CPU_R3000 is not set | ||
97 | # CONFIG_CPU_TX39XX is not set | ||
98 | # CONFIG_CPU_VR41XX is not set | ||
99 | # CONFIG_CPU_R4300 is not set | ||
100 | # CONFIG_CPU_R4X00 is not set | ||
101 | # CONFIG_CPU_TX49XX is not set | ||
102 | # CONFIG_CPU_R5000 is not set | ||
103 | # CONFIG_CPU_R5432 is not set | ||
104 | # CONFIG_CPU_R6000 is not set | ||
105 | # CONFIG_CPU_NEVADA is not set | ||
106 | # CONFIG_CPU_R8000 is not set | ||
107 | CONFIG_CPU_R10000=y | ||
108 | # CONFIG_CPU_RM7000 is not set | ||
109 | # CONFIG_CPU_RM9000 is not set | ||
110 | # CONFIG_CPU_SB1 is not set | ||
111 | CONFIG_SYS_HAS_CPU_R10000=y | ||
112 | CONFIG_SYS_SUPPORTS_64BIT_KERNEL=y | ||
113 | CONFIG_CPU_SUPPORTS_32BIT_KERNEL=y | ||
114 | CONFIG_CPU_SUPPORTS_64BIT_KERNEL=y | ||
115 | |||
116 | # | ||
117 | # Kernel type | ||
118 | # | ||
119 | # CONFIG_32BIT is not set | ||
120 | CONFIG_64BIT=y | ||
121 | CONFIG_PAGE_SIZE_4KB=y | ||
122 | # CONFIG_PAGE_SIZE_8KB is not set | ||
123 | # CONFIG_PAGE_SIZE_16KB is not set | ||
124 | # CONFIG_PAGE_SIZE_64KB is not set | ||
125 | CONFIG_CPU_HAS_PREFETCH=y | ||
126 | CONFIG_MIPS_MT_DISABLED=y | ||
127 | # CONFIG_MIPS_MT_SMP is not set | ||
128 | # CONFIG_MIPS_MT_SMTC is not set | ||
129 | CONFIG_CPU_HAS_LLSC=y | ||
130 | CONFIG_CPU_HAS_SYNC=y | ||
131 | CONFIG_GENERIC_HARDIRQS=y | ||
132 | CONFIG_GENERIC_IRQ_PROBE=y | ||
133 | CONFIG_CPU_SUPPORTS_HIGHMEM=y | ||
134 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
135 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
136 | CONFIG_SELECT_MEMORY_MODEL=y | ||
137 | CONFIG_FLATMEM_MANUAL=y | ||
138 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
139 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
140 | CONFIG_FLATMEM=y | ||
141 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
142 | # CONFIG_SPARSEMEM_STATIC is not set | ||
143 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
144 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
145 | CONFIG_RESOURCES_64BIT=y | ||
146 | CONFIG_ZONE_DMA_FLAG=0 | ||
147 | CONFIG_VIRT_TO_BUS=y | ||
148 | # CONFIG_TICK_ONESHOT is not set | ||
149 | # CONFIG_NO_HZ is not set | ||
150 | # CONFIG_HIGH_RES_TIMERS is not set | ||
151 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
152 | # CONFIG_HZ_48 is not set | ||
153 | # CONFIG_HZ_100 is not set | ||
154 | # CONFIG_HZ_128 is not set | ||
155 | CONFIG_HZ_250=y | ||
156 | # CONFIG_HZ_256 is not set | ||
157 | # CONFIG_HZ_1000 is not set | ||
158 | # CONFIG_HZ_1024 is not set | ||
159 | CONFIG_SYS_SUPPORTS_ARBIT_HZ=y | ||
160 | CONFIG_HZ=250 | ||
161 | # CONFIG_PREEMPT_NONE is not set | ||
162 | CONFIG_PREEMPT_VOLUNTARY=y | ||
163 | # CONFIG_PREEMPT is not set | ||
164 | # CONFIG_RCU_TRACE is not set | ||
165 | # CONFIG_MIPS_INSANE_LARGE is not set | ||
166 | # CONFIG_KEXEC is not set | ||
167 | CONFIG_SECCOMP=y | ||
168 | CONFIG_LOCKDEP_SUPPORT=y | ||
169 | CONFIG_STACKTRACE_SUPPORT=y | ||
170 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
171 | |||
172 | # | ||
173 | # General setup | ||
174 | # | ||
175 | CONFIG_EXPERIMENTAL=y | ||
176 | CONFIG_BROKEN_ON_SMP=y | ||
177 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
178 | CONFIG_LOCALVERSION="" | ||
179 | CONFIG_LOCALVERSION_AUTO=y | ||
180 | CONFIG_SWAP=y | ||
181 | CONFIG_SYSVIPC=y | ||
182 | CONFIG_SYSVIPC_SYSCTL=y | ||
183 | # CONFIG_POSIX_MQUEUE is not set | ||
184 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
185 | # CONFIG_TASKSTATS is not set | ||
186 | # CONFIG_AUDIT is not set | ||
187 | CONFIG_IKCONFIG=y | ||
188 | CONFIG_IKCONFIG_PROC=y | ||
189 | CONFIG_LOG_BUF_SHIFT=14 | ||
190 | # CONFIG_CGROUPS is not set | ||
191 | CONFIG_FAIR_GROUP_SCHED=y | ||
192 | CONFIG_FAIR_USER_SCHED=y | ||
193 | # CONFIG_FAIR_CGROUP_SCHED is not set | ||
194 | CONFIG_SYSFS_DEPRECATED=y | ||
195 | CONFIG_RELAY=y | ||
196 | # CONFIG_NAMESPACES is not set | ||
197 | # CONFIG_BLK_DEV_INITRD is not set | ||
198 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
199 | CONFIG_SYSCTL=y | ||
200 | CONFIG_EMBEDDED=y | ||
201 | CONFIG_SYSCTL_SYSCALL=y | ||
202 | CONFIG_KALLSYMS=y | ||
203 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
204 | # CONFIG_HOTPLUG is not set | ||
205 | CONFIG_PRINTK=y | ||
206 | CONFIG_BUG=y | ||
207 | CONFIG_ELF_CORE=y | ||
208 | CONFIG_COMPAT_BRK=y | ||
209 | CONFIG_BASE_FULL=y | ||
210 | CONFIG_FUTEX=y | ||
211 | CONFIG_ANON_INODES=y | ||
212 | CONFIG_EPOLL=y | ||
213 | CONFIG_SIGNALFD=y | ||
214 | CONFIG_TIMERFD=y | ||
215 | CONFIG_EVENTFD=y | ||
216 | CONFIG_SHMEM=y | ||
217 | CONFIG_VM_EVENT_COUNTERS=y | ||
218 | CONFIG_SLAB=y | ||
219 | # CONFIG_SLUB is not set | ||
220 | # CONFIG_SLOB is not set | ||
221 | # CONFIG_PROFILING is not set | ||
222 | # CONFIG_MARKERS is not set | ||
223 | CONFIG_HAVE_OPROFILE=y | ||
224 | # CONFIG_HAVE_KPROBES is not set | ||
225 | # CONFIG_PROC_PAGE_MONITOR is not set | ||
226 | CONFIG_SLABINFO=y | ||
227 | CONFIG_RT_MUTEXES=y | ||
228 | # CONFIG_TINY_SHMEM is not set | ||
229 | CONFIG_BASE_SMALL=0 | ||
230 | CONFIG_MODULES=y | ||
231 | CONFIG_MODULE_UNLOAD=y | ||
232 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
233 | CONFIG_MODVERSIONS=y | ||
234 | CONFIG_MODULE_SRCVERSION_ALL=y | ||
235 | CONFIG_KMOD=y | ||
236 | CONFIG_BLOCK=y | ||
237 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
238 | # CONFIG_BLK_DEV_BSG is not set | ||
239 | CONFIG_BLOCK_COMPAT=y | ||
240 | |||
241 | # | ||
242 | # IO Schedulers | ||
243 | # | ||
244 | CONFIG_IOSCHED_NOOP=y | ||
245 | CONFIG_IOSCHED_AS=y | ||
246 | CONFIG_IOSCHED_DEADLINE=y | ||
247 | CONFIG_IOSCHED_CFQ=y | ||
248 | CONFIG_DEFAULT_AS=y | ||
249 | # CONFIG_DEFAULT_DEADLINE is not set | ||
250 | # CONFIG_DEFAULT_CFQ is not set | ||
251 | # CONFIG_DEFAULT_NOOP is not set | ||
252 | CONFIG_DEFAULT_IOSCHED="anticipatory" | ||
253 | CONFIG_CLASSIC_RCU=y | ||
254 | # CONFIG_PREEMPT_RCU is not set | ||
255 | |||
256 | # | ||
257 | # Bus options (PCI, PCMCIA, EISA, ISA, TC) | ||
258 | # | ||
259 | CONFIG_HW_HAS_EISA=y | ||
260 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
261 | CONFIG_ISA=y | ||
262 | CONFIG_EISA=y | ||
263 | CONFIG_EISA_NAMES=y | ||
264 | CONFIG_MMU=y | ||
265 | CONFIG_I8253=y | ||
266 | |||
267 | # | ||
268 | # Executable file formats | ||
269 | # | ||
270 | CONFIG_BINFMT_ELF=y | ||
271 | # CONFIG_BINFMT_MISC is not set | ||
272 | CONFIG_MIPS32_COMPAT=y | ||
273 | CONFIG_COMPAT=y | ||
274 | CONFIG_SYSVIPC_COMPAT=y | ||
275 | CONFIG_MIPS32_O32=y | ||
276 | CONFIG_MIPS32_N32=y | ||
277 | CONFIG_BINFMT_ELF32=y | ||
278 | |||
279 | # | ||
280 | # Power management options | ||
281 | # | ||
282 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | ||
283 | CONFIG_PM=y | ||
284 | # CONFIG_PM_LEGACY is not set | ||
285 | # CONFIG_PM_DEBUG is not set | ||
286 | # CONFIG_SUSPEND is not set | ||
287 | |||
288 | # | ||
289 | # Networking | ||
290 | # | ||
291 | CONFIG_NET=y | ||
292 | |||
293 | # | ||
294 | # Networking options | ||
295 | # | ||
296 | CONFIG_PACKET=y | ||
297 | CONFIG_PACKET_MMAP=y | ||
298 | CONFIG_UNIX=y | ||
299 | CONFIG_XFRM=y | ||
300 | # CONFIG_XFRM_USER is not set | ||
301 | # CONFIG_XFRM_SUB_POLICY is not set | ||
302 | CONFIG_XFRM_MIGRATE=y | ||
303 | # CONFIG_XFRM_STATISTICS is not set | ||
304 | CONFIG_NET_KEY=y | ||
305 | CONFIG_NET_KEY_MIGRATE=y | ||
306 | CONFIG_INET=y | ||
307 | CONFIG_IP_MULTICAST=y | ||
308 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
309 | CONFIG_IP_FIB_HASH=y | ||
310 | CONFIG_IP_PNP=y | ||
311 | CONFIG_IP_PNP_DHCP=y | ||
312 | CONFIG_IP_PNP_BOOTP=y | ||
313 | # CONFIG_IP_PNP_RARP is not set | ||
314 | # CONFIG_NET_IPIP is not set | ||
315 | # CONFIG_NET_IPGRE is not set | ||
316 | # CONFIG_IP_MROUTE is not set | ||
317 | # CONFIG_ARPD is not set | ||
318 | # CONFIG_SYN_COOKIES is not set | ||
319 | # CONFIG_INET_AH is not set | ||
320 | # CONFIG_INET_ESP is not set | ||
321 | # CONFIG_INET_IPCOMP is not set | ||
322 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
323 | # CONFIG_INET_TUNNEL is not set | ||
324 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set | ||
325 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set | ||
326 | # CONFIG_INET_XFRM_MODE_BEET is not set | ||
327 | # CONFIG_INET_LRO is not set | ||
328 | CONFIG_INET_DIAG=y | ||
329 | CONFIG_INET_TCP_DIAG=y | ||
330 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
331 | CONFIG_TCP_CONG_CUBIC=y | ||
332 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
333 | CONFIG_TCP_MD5SIG=y | ||
334 | # CONFIG_IPV6 is not set | ||
335 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
336 | # CONFIG_INET6_TUNNEL is not set | ||
337 | # CONFIG_NETWORK_SECMARK is not set | ||
338 | # CONFIG_NETFILTER is not set | ||
339 | # CONFIG_IP_DCCP is not set | ||
340 | # CONFIG_IP_SCTP is not set | ||
341 | # CONFIG_TIPC is not set | ||
342 | # CONFIG_ATM is not set | ||
343 | # CONFIG_BRIDGE is not set | ||
344 | # CONFIG_VLAN_8021Q is not set | ||
345 | # CONFIG_DECNET is not set | ||
346 | # CONFIG_LLC2 is not set | ||
347 | # CONFIG_IPX is not set | ||
348 | # CONFIG_ATALK is not set | ||
349 | # CONFIG_X25 is not set | ||
350 | # CONFIG_LAPB is not set | ||
351 | # CONFIG_ECONET is not set | ||
352 | # CONFIG_WAN_ROUTER is not set | ||
353 | # CONFIG_NET_SCHED is not set | ||
354 | |||
355 | # | ||
356 | # Network testing | ||
357 | # | ||
358 | # CONFIG_NET_PKTGEN is not set | ||
359 | # CONFIG_HAMRADIO is not set | ||
360 | # CONFIG_CAN is not set | ||
361 | # CONFIG_IRDA is not set | ||
362 | # CONFIG_BT is not set | ||
363 | # CONFIG_AF_RXRPC is not set | ||
364 | |||
365 | # | ||
366 | # Wireless | ||
367 | # | ||
368 | # CONFIG_CFG80211 is not set | ||
369 | # CONFIG_WIRELESS_EXT is not set | ||
370 | # CONFIG_MAC80211 is not set | ||
371 | # CONFIG_IEEE80211 is not set | ||
372 | # CONFIG_RFKILL is not set | ||
373 | # CONFIG_NET_9P is not set | ||
374 | |||
375 | # | ||
376 | # Device Drivers | ||
377 | # | ||
378 | |||
379 | # | ||
380 | # Generic Driver Options | ||
381 | # | ||
382 | CONFIG_STANDALONE=y | ||
383 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
384 | # CONFIG_SYS_HYPERVISOR is not set | ||
385 | # CONFIG_CONNECTOR is not set | ||
386 | # CONFIG_MTD is not set | ||
387 | # CONFIG_PARPORT is not set | ||
388 | # CONFIG_PNP is not set | ||
389 | CONFIG_BLK_DEV=y | ||
390 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
391 | # CONFIG_BLK_DEV_LOOP is not set | ||
392 | # CONFIG_BLK_DEV_NBD is not set | ||
393 | # CONFIG_BLK_DEV_RAM is not set | ||
394 | # CONFIG_CDROM_PKTCDVD is not set | ||
395 | # CONFIG_ATA_OVER_ETH is not set | ||
396 | # CONFIG_MISC_DEVICES is not set | ||
397 | CONFIG_HAVE_IDE=y | ||
398 | # CONFIG_IDE is not set | ||
399 | |||
400 | # | ||
401 | # SCSI device support | ||
402 | # | ||
403 | # CONFIG_RAID_ATTRS is not set | ||
404 | CONFIG_SCSI=y | ||
405 | CONFIG_SCSI_DMA=y | ||
406 | # CONFIG_SCSI_TGT is not set | ||
407 | # CONFIG_SCSI_NETLINK is not set | ||
408 | CONFIG_SCSI_PROC_FS=y | ||
409 | |||
410 | # | ||
411 | # SCSI support type (disk, tape, CD-ROM) | ||
412 | # | ||
413 | CONFIG_BLK_DEV_SD=y | ||
414 | # CONFIG_CHR_DEV_ST is not set | ||
415 | # CONFIG_CHR_DEV_OSST is not set | ||
416 | CONFIG_BLK_DEV_SR=y | ||
417 | # CONFIG_BLK_DEV_SR_VENDOR is not set | ||
418 | # CONFIG_CHR_DEV_SG is not set | ||
419 | # CONFIG_CHR_DEV_SCH is not set | ||
420 | |||
421 | # | ||
422 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
423 | # | ||
424 | # CONFIG_SCSI_MULTI_LUN is not set | ||
425 | CONFIG_SCSI_CONSTANTS=y | ||
426 | # CONFIG_SCSI_LOGGING is not set | ||
427 | # CONFIG_SCSI_SCAN_ASYNC is not set | ||
428 | CONFIG_SCSI_WAIT_SCAN=m | ||
429 | |||
430 | # | ||
431 | # SCSI Transports | ||
432 | # | ||
433 | # CONFIG_SCSI_SPI_ATTRS is not set | ||
434 | # CONFIG_SCSI_FC_ATTRS is not set | ||
435 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
436 | # CONFIG_SCSI_SAS_LIBSAS is not set | ||
437 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
438 | CONFIG_SCSI_LOWLEVEL=y | ||
439 | # CONFIG_ISCSI_TCP is not set | ||
440 | CONFIG_SGIWD93_SCSI=y | ||
441 | # CONFIG_SCSI_AHA1740 is not set | ||
442 | # CONFIG_SCSI_AIC7XXX is not set | ||
443 | # CONFIG_SCSI_AIC7XXX_OLD is not set | ||
444 | # CONFIG_SCSI_ADVANSYS is not set | ||
445 | # CONFIG_SCSI_IN2000 is not set | ||
446 | # CONFIG_SCSI_DTC3280 is not set | ||
447 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | ||
448 | # CONFIG_SCSI_GENERIC_NCR5380 is not set | ||
449 | # CONFIG_SCSI_GENERIC_NCR5380_MMIO is not set | ||
450 | # CONFIG_SCSI_NCR53C406A is not set | ||
451 | # CONFIG_SCSI_PAS16 is not set | ||
452 | # CONFIG_SCSI_QLOGIC_FAS is not set | ||
453 | # CONFIG_SCSI_SIM710 is not set | ||
454 | # CONFIG_SCSI_SYM53C416 is not set | ||
455 | # CONFIG_SCSI_T128 is not set | ||
456 | # CONFIG_SCSI_DEBUG is not set | ||
457 | # CONFIG_ATA is not set | ||
458 | # CONFIG_MD is not set | ||
459 | CONFIG_NETDEVICES=y | ||
460 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
461 | CONFIG_DUMMY=m | ||
462 | # CONFIG_BONDING is not set | ||
463 | # CONFIG_MACVLAN is not set | ||
464 | # CONFIG_EQUALIZER is not set | ||
465 | # CONFIG_TUN is not set | ||
466 | # CONFIG_VETH is not set | ||
467 | # CONFIG_ARCNET is not set | ||
468 | # CONFIG_PHYLIB is not set | ||
469 | CONFIG_NET_ETHERNET=y | ||
470 | # CONFIG_MII is not set | ||
471 | # CONFIG_AX88796 is not set | ||
472 | # CONFIG_NET_VENDOR_3COM is not set | ||
473 | # CONFIG_NET_VENDOR_SMC is not set | ||
474 | # CONFIG_DM9000 is not set | ||
475 | # CONFIG_NET_VENDOR_RACAL is not set | ||
476 | # CONFIG_NET_TULIP is not set | ||
477 | # CONFIG_AT1700 is not set | ||
478 | # CONFIG_DEPCA is not set | ||
479 | # CONFIG_HP100 is not set | ||
480 | # CONFIG_NET_ISA is not set | ||
481 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
482 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
483 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
484 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
485 | # CONFIG_NET_PCI is not set | ||
486 | # CONFIG_B44 is not set | ||
487 | CONFIG_SGISEEQ=y | ||
488 | # CONFIG_NETDEV_1000 is not set | ||
489 | # CONFIG_NETDEV_10000 is not set | ||
490 | # CONFIG_TR is not set | ||
491 | |||
492 | # | ||
493 | # Wireless LAN | ||
494 | # | ||
495 | # CONFIG_WLAN_PRE80211 is not set | ||
496 | # CONFIG_WLAN_80211 is not set | ||
497 | # CONFIG_WAN is not set | ||
498 | # CONFIG_FDDI is not set | ||
499 | # CONFIG_PPP is not set | ||
500 | # CONFIG_SLIP is not set | ||
501 | # CONFIG_NETCONSOLE is not set | ||
502 | # CONFIG_NETPOLL is not set | ||
503 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
504 | # CONFIG_ISDN is not set | ||
505 | # CONFIG_PHONE is not set | ||
506 | |||
507 | # | ||
508 | # Input device support | ||
509 | # | ||
510 | CONFIG_INPUT=y | ||
511 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
512 | # CONFIG_INPUT_POLLDEV is not set | ||
513 | |||
514 | # | ||
515 | # Userland interfaces | ||
516 | # | ||
517 | CONFIG_INPUT_MOUSEDEV=y | ||
518 | CONFIG_INPUT_MOUSEDEV_PSAUX=y | ||
519 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | ||
520 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | ||
521 | # CONFIG_INPUT_JOYDEV is not set | ||
522 | # CONFIG_INPUT_EVDEV is not set | ||
523 | # CONFIG_INPUT_EVBUG is not set | ||
524 | |||
525 | # | ||
526 | # Input Device Drivers | ||
527 | # | ||
528 | CONFIG_INPUT_KEYBOARD=y | ||
529 | CONFIG_KEYBOARD_ATKBD=y | ||
530 | # CONFIG_KEYBOARD_SUNKBD is not set | ||
531 | # CONFIG_KEYBOARD_LKKBD is not set | ||
532 | # CONFIG_KEYBOARD_XTKBD is not set | ||
533 | # CONFIG_KEYBOARD_NEWTON is not set | ||
534 | # CONFIG_KEYBOARD_STOWAWAY is not set | ||
535 | CONFIG_INPUT_MOUSE=y | ||
536 | CONFIG_MOUSE_PS2=y | ||
537 | # CONFIG_MOUSE_PS2_ALPS is not set | ||
538 | CONFIG_MOUSE_PS2_LOGIPS2PP=y | ||
539 | # CONFIG_MOUSE_PS2_SYNAPTICS is not set | ||
540 | # CONFIG_MOUSE_PS2_LIFEBOOK is not set | ||
541 | CONFIG_MOUSE_PS2_TRACKPOINT=y | ||
542 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | ||
543 | # CONFIG_MOUSE_SERIAL is not set | ||
544 | # CONFIG_MOUSE_INPORT is not set | ||
545 | # CONFIG_MOUSE_LOGIBM is not set | ||
546 | # CONFIG_MOUSE_PC110PAD is not set | ||
547 | # CONFIG_MOUSE_VSXXXAA is not set | ||
548 | # CONFIG_INPUT_JOYSTICK is not set | ||
549 | # CONFIG_INPUT_TABLET is not set | ||
550 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
551 | # CONFIG_INPUT_MISC is not set | ||
552 | |||
553 | # | ||
554 | # Hardware I/O ports | ||
555 | # | ||
556 | CONFIG_SERIO=y | ||
557 | CONFIG_SERIO_I8042=y | ||
558 | CONFIG_SERIO_SERPORT=y | ||
559 | CONFIG_SERIO_LIBPS2=y | ||
560 | # CONFIG_SERIO_RAW is not set | ||
561 | # CONFIG_GAMEPORT is not set | ||
562 | |||
563 | # | ||
564 | # Character devices | ||
565 | # | ||
566 | CONFIG_VT=y | ||
567 | CONFIG_VT_CONSOLE=y | ||
568 | CONFIG_HW_CONSOLE=y | ||
569 | CONFIG_VT_HW_CONSOLE_BINDING=y | ||
570 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
571 | |||
572 | # | ||
573 | # Serial drivers | ||
574 | # | ||
575 | # CONFIG_SERIAL_8250 is not set | ||
576 | |||
577 | # | ||
578 | # Non-8250 serial port support | ||
579 | # | ||
580 | CONFIG_SERIAL_IP22_ZILOG=y | ||
581 | CONFIG_SERIAL_IP22_ZILOG_CONSOLE=y | ||
582 | CONFIG_SERIAL_CORE=y | ||
583 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
584 | CONFIG_UNIX98_PTYS=y | ||
585 | CONFIG_LEGACY_PTYS=y | ||
586 | CONFIG_LEGACY_PTY_COUNT=256 | ||
587 | # CONFIG_IPMI_HANDLER is not set | ||
588 | # CONFIG_HW_RANDOM is not set | ||
589 | # CONFIG_RTC is not set | ||
590 | CONFIG_SGI_DS1286=y | ||
591 | # CONFIG_DTLK is not set | ||
592 | # CONFIG_R3964 is not set | ||
593 | # CONFIG_RAW_DRIVER is not set | ||
594 | # CONFIG_TCG_TPM is not set | ||
595 | CONFIG_DEVPORT=y | ||
596 | # CONFIG_I2C is not set | ||
597 | |||
598 | # | ||
599 | # SPI support | ||
600 | # | ||
601 | # CONFIG_SPI is not set | ||
602 | # CONFIG_SPI_MASTER is not set | ||
603 | # CONFIG_W1 is not set | ||
604 | # CONFIG_POWER_SUPPLY is not set | ||
605 | # CONFIG_HWMON is not set | ||
606 | # CONFIG_THERMAL is not set | ||
607 | CONFIG_WATCHDOG=y | ||
608 | # CONFIG_WATCHDOG_NOWAYOUT is not set | ||
609 | |||
610 | # | ||
611 | # Watchdog Device Drivers | ||
612 | # | ||
613 | # CONFIG_SOFT_WATCHDOG is not set | ||
614 | CONFIG_INDYDOG=y | ||
615 | |||
616 | # | ||
617 | # ISA-based Watchdog Cards | ||
618 | # | ||
619 | # CONFIG_PCWATCHDOG is not set | ||
620 | # CONFIG_MIXCOMWD is not set | ||
621 | # CONFIG_WDT is not set | ||
622 | |||
623 | # | ||
624 | # Sonics Silicon Backplane | ||
625 | # | ||
626 | CONFIG_SSB_POSSIBLE=y | ||
627 | # CONFIG_SSB is not set | ||
628 | |||
629 | # | ||
630 | # Multifunction device drivers | ||
631 | # | ||
632 | # CONFIG_MFD_SM501 is not set | ||
633 | |||
634 | # | ||
635 | # Multimedia devices | ||
636 | # | ||
637 | # CONFIG_VIDEO_DEV is not set | ||
638 | # CONFIG_DVB_CORE is not set | ||
639 | # CONFIG_DAB is not set | ||
640 | |||
641 | # | ||
642 | # Graphics support | ||
643 | # | ||
644 | # CONFIG_VGASTATE is not set | ||
645 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
646 | # CONFIG_FB is not set | ||
647 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
648 | |||
649 | # | ||
650 | # Display device support | ||
651 | # | ||
652 | # CONFIG_DISPLAY_SUPPORT is not set | ||
653 | |||
654 | # | ||
655 | # Console display driver support | ||
656 | # | ||
657 | # CONFIG_VGA_CONSOLE is not set | ||
658 | # CONFIG_MDA_CONSOLE is not set | ||
659 | CONFIG_DUMMY_CONSOLE=y | ||
660 | |||
661 | # | ||
662 | # Sound | ||
663 | # | ||
664 | # CONFIG_SOUND is not set | ||
665 | CONFIG_HID_SUPPORT=y | ||
666 | CONFIG_HID=y | ||
667 | # CONFIG_HID_DEBUG is not set | ||
668 | # CONFIG_HIDRAW is not set | ||
669 | CONFIG_USB_SUPPORT=y | ||
670 | # CONFIG_USB_ARCH_HAS_HCD is not set | ||
671 | # CONFIG_USB_ARCH_HAS_OHCI is not set | ||
672 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
673 | |||
674 | # | ||
675 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
676 | # | ||
677 | # CONFIG_USB_GADGET is not set | ||
678 | # CONFIG_MMC is not set | ||
679 | # CONFIG_MEMSTICK is not set | ||
680 | # CONFIG_NEW_LEDS is not set | ||
681 | CONFIG_RTC_LIB=y | ||
682 | # CONFIG_RTC_CLASS is not set | ||
683 | |||
684 | # | ||
685 | # Userspace I/O | ||
686 | # | ||
687 | # CONFIG_UIO is not set | ||
688 | |||
689 | # | ||
690 | # File systems | ||
691 | # | ||
692 | CONFIG_EXT2_FS=y | ||
693 | # CONFIG_EXT2_FS_XATTR is not set | ||
694 | # CONFIG_EXT2_FS_XIP is not set | ||
695 | CONFIG_EXT3_FS=y | ||
696 | CONFIG_EXT3_FS_XATTR=y | ||
697 | CONFIG_EXT3_FS_POSIX_ACL=y | ||
698 | CONFIG_EXT3_FS_SECURITY=y | ||
699 | # CONFIG_EXT4DEV_FS is not set | ||
700 | CONFIG_JBD=y | ||
701 | CONFIG_FS_MBCACHE=y | ||
702 | # CONFIG_REISERFS_FS is not set | ||
703 | # CONFIG_JFS_FS is not set | ||
704 | CONFIG_FS_POSIX_ACL=y | ||
705 | # CONFIG_XFS_FS is not set | ||
706 | # CONFIG_GFS2_FS is not set | ||
707 | # CONFIG_OCFS2_FS is not set | ||
708 | CONFIG_DNOTIFY=y | ||
709 | CONFIG_INOTIFY=y | ||
710 | CONFIG_INOTIFY_USER=y | ||
711 | CONFIG_QUOTA=y | ||
712 | # CONFIG_QUOTA_NETLINK_INTERFACE is not set | ||
713 | CONFIG_PRINT_QUOTA_WARNING=y | ||
714 | # CONFIG_QFMT_V1 is not set | ||
715 | # CONFIG_QFMT_V2 is not set | ||
716 | CONFIG_QUOTACTL=y | ||
717 | # CONFIG_AUTOFS_FS is not set | ||
718 | # CONFIG_AUTOFS4_FS is not set | ||
719 | # CONFIG_FUSE_FS is not set | ||
720 | CONFIG_GENERIC_ACL=y | ||
721 | |||
722 | # | ||
723 | # CD-ROM/DVD Filesystems | ||
724 | # | ||
725 | # CONFIG_ISO9660_FS is not set | ||
726 | # CONFIG_UDF_FS is not set | ||
727 | |||
728 | # | ||
729 | # DOS/FAT/NT Filesystems | ||
730 | # | ||
731 | # CONFIG_MSDOS_FS is not set | ||
732 | # CONFIG_VFAT_FS is not set | ||
733 | # CONFIG_NTFS_FS is not set | ||
734 | |||
735 | # | ||
736 | # Pseudo filesystems | ||
737 | # | ||
738 | CONFIG_PROC_FS=y | ||
739 | CONFIG_PROC_KCORE=y | ||
740 | CONFIG_PROC_SYSCTL=y | ||
741 | CONFIG_SYSFS=y | ||
742 | CONFIG_TMPFS=y | ||
743 | CONFIG_TMPFS_POSIX_ACL=y | ||
744 | # CONFIG_HUGETLB_PAGE is not set | ||
745 | # CONFIG_CONFIGFS_FS is not set | ||
746 | |||
747 | # | ||
748 | # Miscellaneous filesystems | ||
749 | # | ||
750 | # CONFIG_ADFS_FS is not set | ||
751 | # CONFIG_AFFS_FS is not set | ||
752 | # CONFIG_HFS_FS is not set | ||
753 | # CONFIG_HFSPLUS_FS is not set | ||
754 | # CONFIG_BEFS_FS is not set | ||
755 | # CONFIG_BFS_FS is not set | ||
756 | # CONFIG_EFS_FS is not set | ||
757 | # CONFIG_CRAMFS is not set | ||
758 | # CONFIG_VXFS_FS is not set | ||
759 | # CONFIG_MINIX_FS is not set | ||
760 | # CONFIG_HPFS_FS is not set | ||
761 | # CONFIG_QNX4FS_FS is not set | ||
762 | # CONFIG_ROMFS_FS is not set | ||
763 | # CONFIG_SYSV_FS is not set | ||
764 | # CONFIG_UFS_FS is not set | ||
765 | CONFIG_NETWORK_FILESYSTEMS=y | ||
766 | CONFIG_NFS_FS=y | ||
767 | CONFIG_NFS_V3=y | ||
768 | CONFIG_NFS_V3_ACL=y | ||
769 | # CONFIG_NFS_V4 is not set | ||
770 | # CONFIG_NFS_DIRECTIO is not set | ||
771 | # CONFIG_NFSD is not set | ||
772 | CONFIG_ROOT_NFS=y | ||
773 | CONFIG_LOCKD=y | ||
774 | CONFIG_LOCKD_V4=y | ||
775 | CONFIG_NFS_ACL_SUPPORT=y | ||
776 | CONFIG_NFS_COMMON=y | ||
777 | CONFIG_SUNRPC=y | ||
778 | # CONFIG_SUNRPC_BIND34 is not set | ||
779 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
780 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
781 | # CONFIG_SMB_FS is not set | ||
782 | # CONFIG_CIFS is not set | ||
783 | # CONFIG_NCP_FS is not set | ||
784 | # CONFIG_CODA_FS is not set | ||
785 | # CONFIG_AFS_FS is not set | ||
786 | |||
787 | # | ||
788 | # Partition Types | ||
789 | # | ||
790 | CONFIG_PARTITION_ADVANCED=y | ||
791 | # CONFIG_ACORN_PARTITION is not set | ||
792 | # CONFIG_OSF_PARTITION is not set | ||
793 | # CONFIG_AMIGA_PARTITION is not set | ||
794 | # CONFIG_ATARI_PARTITION is not set | ||
795 | # CONFIG_MAC_PARTITION is not set | ||
796 | CONFIG_MSDOS_PARTITION=y | ||
797 | # CONFIG_BSD_DISKLABEL is not set | ||
798 | # CONFIG_MINIX_SUBPARTITION is not set | ||
799 | # CONFIG_SOLARIS_X86_PARTITION is not set | ||
800 | # CONFIG_UNIXWARE_DISKLABEL is not set | ||
801 | # CONFIG_LDM_PARTITION is not set | ||
802 | CONFIG_SGI_PARTITION=y | ||
803 | # CONFIG_ULTRIX_PARTITION is not set | ||
804 | # CONFIG_SUN_PARTITION is not set | ||
805 | # CONFIG_KARMA_PARTITION is not set | ||
806 | # CONFIG_EFI_PARTITION is not set | ||
807 | # CONFIG_SYSV68_PARTITION is not set | ||
808 | # CONFIG_NLS is not set | ||
809 | # CONFIG_DLM is not set | ||
810 | |||
811 | # | ||
812 | # Kernel hacking | ||
813 | # | ||
814 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
815 | # CONFIG_PRINTK_TIME is not set | ||
816 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
817 | CONFIG_ENABLE_MUST_CHECK=y | ||
818 | CONFIG_MAGIC_SYSRQ=y | ||
819 | # CONFIG_UNUSED_SYMBOLS is not set | ||
820 | # CONFIG_DEBUG_FS is not set | ||
821 | # CONFIG_HEADERS_CHECK is not set | ||
822 | # CONFIG_DEBUG_KERNEL is not set | ||
823 | # CONFIG_SAMPLES is not set | ||
824 | CONFIG_CMDLINE="" | ||
825 | |||
826 | # | ||
827 | # Security options | ||
828 | # | ||
829 | # CONFIG_KEYS is not set | ||
830 | # CONFIG_SECURITY is not set | ||
831 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
832 | CONFIG_CRYPTO=y | ||
833 | CONFIG_CRYPTO_ALGAPI=y | ||
834 | # CONFIG_CRYPTO_SEQIV is not set | ||
835 | CONFIG_CRYPTO_MANAGER=y | ||
836 | # CONFIG_CRYPTO_HMAC is not set | ||
837 | # CONFIG_CRYPTO_XCBC is not set | ||
838 | # CONFIG_CRYPTO_NULL is not set | ||
839 | # CONFIG_CRYPTO_MD4 is not set | ||
840 | CONFIG_CRYPTO_MD5=y | ||
841 | # CONFIG_CRYPTO_SHA1 is not set | ||
842 | # CONFIG_CRYPTO_SHA256 is not set | ||
843 | # CONFIG_CRYPTO_SHA512 is not set | ||
844 | # CONFIG_CRYPTO_WP512 is not set | ||
845 | # CONFIG_CRYPTO_TGR192 is not set | ||
846 | # CONFIG_CRYPTO_GF128MUL is not set | ||
847 | # CONFIG_CRYPTO_ECB is not set | ||
848 | # CONFIG_CRYPTO_CBC is not set | ||
849 | # CONFIG_CRYPTO_PCBC is not set | ||
850 | # CONFIG_CRYPTO_LRW is not set | ||
851 | # CONFIG_CRYPTO_XTS is not set | ||
852 | # CONFIG_CRYPTO_CTR is not set | ||
853 | # CONFIG_CRYPTO_GCM is not set | ||
854 | # CONFIG_CRYPTO_CCM is not set | ||
855 | # CONFIG_CRYPTO_CRYPTD is not set | ||
856 | # CONFIG_CRYPTO_DES is not set | ||
857 | # CONFIG_CRYPTO_FCRYPT is not set | ||
858 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
859 | # CONFIG_CRYPTO_TWOFISH is not set | ||
860 | # CONFIG_CRYPTO_SERPENT is not set | ||
861 | # CONFIG_CRYPTO_AES is not set | ||
862 | # CONFIG_CRYPTO_CAST5 is not set | ||
863 | # CONFIG_CRYPTO_CAST6 is not set | ||
864 | # CONFIG_CRYPTO_TEA is not set | ||
865 | # CONFIG_CRYPTO_ARC4 is not set | ||
866 | # CONFIG_CRYPTO_KHAZAD is not set | ||
867 | # CONFIG_CRYPTO_ANUBIS is not set | ||
868 | # CONFIG_CRYPTO_SEED is not set | ||
869 | # CONFIG_CRYPTO_SALSA20 is not set | ||
870 | # CONFIG_CRYPTO_DEFLATE is not set | ||
871 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
872 | # CONFIG_CRYPTO_CRC32C is not set | ||
873 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
874 | # CONFIG_CRYPTO_TEST is not set | ||
875 | # CONFIG_CRYPTO_AUTHENC is not set | ||
876 | # CONFIG_CRYPTO_LZO is not set | ||
877 | # CONFIG_CRYPTO_HW is not set | ||
878 | |||
879 | # | ||
880 | # Library routines | ||
881 | # | ||
882 | # CONFIG_CRC_CCITT is not set | ||
883 | # CONFIG_CRC16 is not set | ||
884 | # CONFIG_CRC_ITU_T is not set | ||
885 | # CONFIG_CRC32 is not set | ||
886 | # CONFIG_CRC7 is not set | ||
887 | # CONFIG_LIBCRC32C is not set | ||
888 | CONFIG_PLIST=y | ||
889 | CONFIG_HAS_IOMEM=y | ||
890 | CONFIG_HAS_IOPORT=y | ||
891 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/mips/configs/qemu_defconfig b/arch/mips/configs/qemu_defconfig deleted file mode 100644 index 72ca147f9422..000000000000 --- a/arch/mips/configs/qemu_defconfig +++ /dev/null | |||
@@ -1,800 +0,0 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.20 | ||
4 | # Tue Feb 20 21:47:39 2007 | ||
5 | # | ||
6 | CONFIG_MIPS=y | ||
7 | |||
8 | # | ||
9 | # Machine selection | ||
10 | # | ||
11 | CONFIG_ZONE_DMA=y | ||
12 | # CONFIG_MIPS_MTX1 is not set | ||
13 | # CONFIG_MIPS_BOSPORUS is not set | ||
14 | # CONFIG_MIPS_PB1000 is not set | ||
15 | # CONFIG_MIPS_PB1100 is not set | ||
16 | # CONFIG_MIPS_PB1500 is not set | ||
17 | # CONFIG_MIPS_PB1550 is not set | ||
18 | # CONFIG_MIPS_PB1200 is not set | ||
19 | # CONFIG_MIPS_DB1000 is not set | ||
20 | # CONFIG_MIPS_DB1100 is not set | ||
21 | # CONFIG_MIPS_DB1500 is not set | ||
22 | # CONFIG_MIPS_DB1550 is not set | ||
23 | # CONFIG_MIPS_DB1200 is not set | ||
24 | # CONFIG_MIPS_MIRAGE is not set | ||
25 | # CONFIG_BASLER_EXCITE is not set | ||
26 | # CONFIG_MIPS_COBALT is not set | ||
27 | # CONFIG_MACH_DECSTATION is not set | ||
28 | # CONFIG_MACH_JAZZ is not set | ||
29 | # CONFIG_MIPS_ATLAS is not set | ||
30 | # CONFIG_MIPS_MALTA is not set | ||
31 | # CONFIG_MIPS_SEAD is not set | ||
32 | # CONFIG_WR_PPMC is not set | ||
33 | # CONFIG_MIPS_SIM is not set | ||
34 | # CONFIG_MOMENCO_JAGUAR_ATX is not set | ||
35 | # CONFIG_MIPS_XXS1500 is not set | ||
36 | # CONFIG_PNX8550_JBS is not set | ||
37 | # CONFIG_PNX8550_STB810 is not set | ||
38 | # CONFIG_MACH_VR41XX is not set | ||
39 | # CONFIG_PMC_YOSEMITE is not set | ||
40 | # CONFIG_MARKEINS is not set | ||
41 | # CONFIG_SGI_IP22 is not set | ||
42 | # CONFIG_SGI_IP27 is not set | ||
43 | # CONFIG_SGI_IP32 is not set | ||
44 | # CONFIG_SIBYTE_BIGSUR is not set | ||
45 | # CONFIG_SIBYTE_SWARM is not set | ||
46 | # CONFIG_SIBYTE_SENTOSA is not set | ||
47 | # CONFIG_SIBYTE_RHONE is not set | ||
48 | # CONFIG_SIBYTE_CARMEL is not set | ||
49 | # CONFIG_SIBYTE_LITTLESUR is not set | ||
50 | # CONFIG_SIBYTE_CRHINE is not set | ||
51 | # CONFIG_SIBYTE_CRHONE is not set | ||
52 | # CONFIG_SNI_RM is not set | ||
53 | # CONFIG_TOSHIBA_JMR3927 is not set | ||
54 | # CONFIG_TOSHIBA_RBTX4927 is not set | ||
55 | # CONFIG_TOSHIBA_RBTX4938 is not set | ||
56 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
57 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
58 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
59 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
60 | CONFIG_GENERIC_HWEIGHT=y | ||
61 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
62 | CONFIG_GENERIC_TIME=y | ||
63 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | ||
64 | CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y | ||
65 | CONFIG_DMA_COHERENT=y | ||
66 | CONFIG_GENERIC_ISA_DMA=y | ||
67 | CONFIG_I8259=y | ||
68 | CONFIG_CPU_BIG_ENDIAN=y | ||
69 | # CONFIG_CPU_LITTLE_ENDIAN is not set | ||
70 | CONFIG_SYS_SUPPORTS_BIG_ENDIAN=y | ||
71 | CONFIG_SYS_SUPPORTS_LITTLE_ENDIAN=y | ||
72 | CONFIG_SWAP_IO_SPACE=y | ||
73 | CONFIG_MIPS_L1_CACHE_SHIFT=5 | ||
74 | CONFIG_HAVE_STD_PC_SERIAL_PORT=y | ||
75 | |||
76 | # | ||
77 | # CPU selection | ||
78 | # | ||
79 | CONFIG_CPU_MIPS32_R1=y | ||
80 | # CONFIG_CPU_MIPS32_R2 is not set | ||
81 | # CONFIG_CPU_MIPS64_R1 is not set | ||
82 | # CONFIG_CPU_MIPS64_R2 is not set | ||
83 | # CONFIG_CPU_R3000 is not set | ||
84 | # CONFIG_CPU_TX39XX is not set | ||
85 | # CONFIG_CPU_VR41XX is not set | ||
86 | # CONFIG_CPU_R4300 is not set | ||
87 | # CONFIG_CPU_R4X00 is not set | ||
88 | # CONFIG_CPU_TX49XX is not set | ||
89 | # CONFIG_CPU_R5000 is not set | ||
90 | # CONFIG_CPU_R5432 is not set | ||
91 | # CONFIG_CPU_R6000 is not set | ||
92 | # CONFIG_CPU_NEVADA is not set | ||
93 | # CONFIG_CPU_R8000 is not set | ||
94 | # CONFIG_CPU_R10000 is not set | ||
95 | # CONFIG_CPU_RM7000 is not set | ||
96 | # CONFIG_CPU_RM9000 is not set | ||
97 | # CONFIG_CPU_SB1 is not set | ||
98 | CONFIG_SYS_HAS_CPU_MIPS32_R1=y | ||
99 | CONFIG_CPU_MIPS32=y | ||
100 | CONFIG_CPU_MIPSR1=y | ||
101 | CONFIG_SYS_SUPPORTS_32BIT_KERNEL=y | ||
102 | CONFIG_CPU_SUPPORTS_32BIT_KERNEL=y | ||
103 | |||
104 | # | ||
105 | # Kernel type | ||
106 | # | ||
107 | CONFIG_32BIT=y | ||
108 | # CONFIG_64BIT is not set | ||
109 | CONFIG_PAGE_SIZE_4KB=y | ||
110 | # CONFIG_PAGE_SIZE_8KB is not set | ||
111 | # CONFIG_PAGE_SIZE_16KB is not set | ||
112 | # CONFIG_PAGE_SIZE_64KB is not set | ||
113 | CONFIG_CPU_HAS_PREFETCH=y | ||
114 | CONFIG_MIPS_MT_DISABLED=y | ||
115 | # CONFIG_MIPS_MT_SMP is not set | ||
116 | # CONFIG_MIPS_MT_SMTC is not set | ||
117 | # CONFIG_MIPS_VPE_LOADER is not set | ||
118 | # CONFIG_64BIT_PHYS_ADDR is not set | ||
119 | CONFIG_CPU_HAS_LLSC=y | ||
120 | CONFIG_CPU_HAS_SYNC=y | ||
121 | CONFIG_GENERIC_HARDIRQS=y | ||
122 | CONFIG_GENERIC_IRQ_PROBE=y | ||
123 | CONFIG_CPU_SUPPORTS_HIGHMEM=y | ||
124 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
125 | CONFIG_ARCH_SPARSEMEM_ENABLE=y | ||
126 | CONFIG_FLATMEM=y | ||
127 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
128 | CONFIG_SPARSEMEM_STATIC=y | ||
129 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
130 | # CONFIG_RESOURCES_64BIT is not set | ||
131 | CONFIG_ZONE_DMA_FLAG=1 | ||
132 | # CONFIG_HZ_48 is not set | ||
133 | CONFIG_HZ_100=y | ||
134 | # CONFIG_HZ_128 is not set | ||
135 | # CONFIG_HZ_250 is not set | ||
136 | # CONFIG_HZ_256 is not set | ||
137 | # CONFIG_HZ_1000 is not set | ||
138 | # CONFIG_HZ_1024 is not set | ||
139 | CONFIG_SYS_SUPPORTS_ARBIT_HZ=y | ||
140 | CONFIG_HZ=100 | ||
141 | CONFIG_PREEMPT_NONE=y | ||
142 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
143 | # CONFIG_PREEMPT is not set | ||
144 | CONFIG_LOCKDEP_SUPPORT=y | ||
145 | CONFIG_STACKTRACE_SUPPORT=y | ||
146 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
147 | |||
148 | # | ||
149 | # Code maturity level options | ||
150 | # | ||
151 | # CONFIG_EXPERIMENTAL is not set | ||
152 | CONFIG_BROKEN_ON_SMP=y | ||
153 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
154 | |||
155 | # | ||
156 | # General setup | ||
157 | # | ||
158 | CONFIG_LOCALVERSION="" | ||
159 | CONFIG_LOCALVERSION_AUTO=y | ||
160 | # CONFIG_SWAP is not set | ||
161 | # CONFIG_SYSVIPC is not set | ||
162 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
163 | # CONFIG_TASKSTATS is not set | ||
164 | # CONFIG_UTS_NS is not set | ||
165 | # CONFIG_AUDIT is not set | ||
166 | # CONFIG_IKCONFIG is not set | ||
167 | CONFIG_SYSFS_DEPRECATED=y | ||
168 | CONFIG_RELAY=y | ||
169 | CONFIG_SYSCTL=y | ||
170 | CONFIG_EMBEDDED=y | ||
171 | CONFIG_SYSCTL_SYSCALL=y | ||
172 | CONFIG_KALLSYMS=y | ||
173 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
174 | # CONFIG_HOTPLUG is not set | ||
175 | CONFIG_PRINTK=y | ||
176 | # CONFIG_BUG is not set | ||
177 | CONFIG_ELF_CORE=y | ||
178 | # CONFIG_BASE_FULL is not set | ||
179 | # CONFIG_FUTEX is not set | ||
180 | # CONFIG_EPOLL is not set | ||
181 | # CONFIG_SHMEM is not set | ||
182 | CONFIG_SLAB=y | ||
183 | CONFIG_VM_EVENT_COUNTERS=y | ||
184 | CONFIG_TINY_SHMEM=y | ||
185 | CONFIG_BASE_SMALL=1 | ||
186 | # CONFIG_SLOB is not set | ||
187 | |||
188 | # | ||
189 | # Loadable module support | ||
190 | # | ||
191 | # CONFIG_MODULES is not set | ||
192 | |||
193 | # | ||
194 | # Block layer | ||
195 | # | ||
196 | CONFIG_BLOCK=y | ||
197 | # CONFIG_LBD is not set | ||
198 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
199 | # CONFIG_LSF is not set | ||
200 | |||
201 | # | ||
202 | # IO Schedulers | ||
203 | # | ||
204 | CONFIG_IOSCHED_NOOP=y | ||
205 | # CONFIG_IOSCHED_AS is not set | ||
206 | # CONFIG_IOSCHED_DEADLINE is not set | ||
207 | # CONFIG_IOSCHED_CFQ is not set | ||
208 | # CONFIG_DEFAULT_AS is not set | ||
209 | # CONFIG_DEFAULT_DEADLINE is not set | ||
210 | # CONFIG_DEFAULT_CFQ is not set | ||
211 | CONFIG_DEFAULT_NOOP=y | ||
212 | CONFIG_DEFAULT_IOSCHED="noop" | ||
213 | |||
214 | # | ||
215 | # Bus options (PCI, PCMCIA, EISA, ISA, TC) | ||
216 | # | ||
217 | CONFIG_ISA=y | ||
218 | CONFIG_MMU=y | ||
219 | CONFIG_PCSPEAKER=y | ||
220 | |||
221 | # | ||
222 | # PCCARD (PCMCIA/CardBus) support | ||
223 | # | ||
224 | |||
225 | # | ||
226 | # PCI Hotplug Support | ||
227 | # | ||
228 | |||
229 | # | ||
230 | # Executable file formats | ||
231 | # | ||
232 | CONFIG_BINFMT_ELF=y | ||
233 | # CONFIG_BINFMT_MISC is not set | ||
234 | CONFIG_TRAD_SIGNALS=y | ||
235 | |||
236 | # | ||
237 | # Power management options | ||
238 | # | ||
239 | CONFIG_PM=y | ||
240 | # CONFIG_PM_LEGACY is not set | ||
241 | # CONFIG_PM_DEBUG is not set | ||
242 | # CONFIG_PM_SYSFS_DEPRECATED is not set | ||
243 | |||
244 | # | ||
245 | # Networking | ||
246 | # | ||
247 | CONFIG_NET=y | ||
248 | |||
249 | # | ||
250 | # Networking options | ||
251 | # | ||
252 | # CONFIG_NETDEBUG is not set | ||
253 | CONFIG_PACKET=y | ||
254 | CONFIG_PACKET_MMAP=y | ||
255 | CONFIG_UNIX=y | ||
256 | CONFIG_XFRM=y | ||
257 | # CONFIG_XFRM_USER is not set | ||
258 | # CONFIG_NET_KEY is not set | ||
259 | CONFIG_INET=y | ||
260 | CONFIG_IP_MULTICAST=y | ||
261 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
262 | CONFIG_IP_FIB_HASH=y | ||
263 | CONFIG_IP_PNP=y | ||
264 | CONFIG_IP_PNP_DHCP=y | ||
265 | CONFIG_IP_PNP_BOOTP=y | ||
266 | # CONFIG_IP_PNP_RARP is not set | ||
267 | # CONFIG_NET_IPIP is not set | ||
268 | # CONFIG_NET_IPGRE is not set | ||
269 | # CONFIG_IP_MROUTE is not set | ||
270 | # CONFIG_SYN_COOKIES is not set | ||
271 | # CONFIG_INET_AH is not set | ||
272 | # CONFIG_INET_ESP is not set | ||
273 | # CONFIG_INET_IPCOMP is not set | ||
274 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
275 | # CONFIG_INET_TUNNEL is not set | ||
276 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
277 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
278 | CONFIG_INET_XFRM_MODE_BEET=y | ||
279 | CONFIG_INET_DIAG=y | ||
280 | CONFIG_INET_TCP_DIAG=y | ||
281 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
282 | CONFIG_TCP_CONG_CUBIC=y | ||
283 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
284 | # CONFIG_IPV6 is not set | ||
285 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
286 | # CONFIG_INET6_TUNNEL is not set | ||
287 | CONFIG_NETWORK_SECMARK=y | ||
288 | # CONFIG_NETFILTER is not set | ||
289 | # CONFIG_BRIDGE is not set | ||
290 | # CONFIG_VLAN_8021Q is not set | ||
291 | # CONFIG_DECNET is not set | ||
292 | # CONFIG_LLC2 is not set | ||
293 | # CONFIG_IPX is not set | ||
294 | # CONFIG_ATALK is not set | ||
295 | |||
296 | # | ||
297 | # QoS and/or fair queueing | ||
298 | # | ||
299 | # CONFIG_NET_SCHED is not set | ||
300 | |||
301 | # | ||
302 | # Network testing | ||
303 | # | ||
304 | # CONFIG_NET_PKTGEN is not set | ||
305 | # CONFIG_HAMRADIO is not set | ||
306 | # CONFIG_IRDA is not set | ||
307 | # CONFIG_BT is not set | ||
308 | # CONFIG_IEEE80211 is not set | ||
309 | |||
310 | # | ||
311 | # Device Drivers | ||
312 | # | ||
313 | |||
314 | # | ||
315 | # Generic Driver Options | ||
316 | # | ||
317 | CONFIG_STANDALONE=y | ||
318 | # CONFIG_PREVENT_FIRMWARE_BUILD is not set | ||
319 | # CONFIG_SYS_HYPERVISOR is not set | ||
320 | |||
321 | # | ||
322 | # Connector - unified userspace <-> kernelspace linker | ||
323 | # | ||
324 | CONFIG_CONNECTOR=y | ||
325 | CONFIG_PROC_EVENTS=y | ||
326 | |||
327 | # | ||
328 | # Memory Technology Devices (MTD) | ||
329 | # | ||
330 | # CONFIG_MTD is not set | ||
331 | |||
332 | # | ||
333 | # Parallel port support | ||
334 | # | ||
335 | # CONFIG_PARPORT is not set | ||
336 | |||
337 | # | ||
338 | # Plug and Play support | ||
339 | # | ||
340 | # CONFIG_PNP is not set | ||
341 | # CONFIG_PNPACPI is not set | ||
342 | |||
343 | # | ||
344 | # Block devices | ||
345 | # | ||
346 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
347 | # CONFIG_BLK_DEV_LOOP is not set | ||
348 | # CONFIG_BLK_DEV_NBD is not set | ||
349 | # CONFIG_BLK_DEV_RAM is not set | ||
350 | # CONFIG_BLK_DEV_INITRD is not set | ||
351 | # CONFIG_CDROM_PKTCDVD is not set | ||
352 | # CONFIG_ATA_OVER_ETH is not set | ||
353 | |||
354 | # | ||
355 | # Misc devices | ||
356 | # | ||
357 | |||
358 | # | ||
359 | # ATA/ATAPI/MFM/RLL support | ||
360 | # | ||
361 | # CONFIG_IDE is not set | ||
362 | |||
363 | # | ||
364 | # SCSI device support | ||
365 | # | ||
366 | # CONFIG_RAID_ATTRS is not set | ||
367 | # CONFIG_SCSI is not set | ||
368 | # CONFIG_SCSI_NETLINK is not set | ||
369 | |||
370 | # | ||
371 | # Serial ATA (prod) and Parallel ATA (experimental) drivers | ||
372 | # | ||
373 | # CONFIG_ATA is not set | ||
374 | |||
375 | # | ||
376 | # Old CD-ROM drivers (not SCSI, not IDE) | ||
377 | # | ||
378 | # CONFIG_CD_NO_IDESCSI is not set | ||
379 | |||
380 | # | ||
381 | # Multi-device support (RAID and LVM) | ||
382 | # | ||
383 | # CONFIG_MD is not set | ||
384 | |||
385 | # | ||
386 | # Fusion MPT device support | ||
387 | # | ||
388 | # CONFIG_FUSION is not set | ||
389 | |||
390 | # | ||
391 | # IEEE 1394 (FireWire) support | ||
392 | # | ||
393 | |||
394 | # | ||
395 | # I2O device support | ||
396 | # | ||
397 | |||
398 | # | ||
399 | # Network device support | ||
400 | # | ||
401 | CONFIG_NETDEVICES=y | ||
402 | # CONFIG_DUMMY is not set | ||
403 | # CONFIG_BONDING is not set | ||
404 | # CONFIG_EQUALIZER is not set | ||
405 | # CONFIG_TUN is not set | ||
406 | |||
407 | # | ||
408 | # ARCnet devices | ||
409 | # | ||
410 | # CONFIG_ARCNET is not set | ||
411 | |||
412 | # | ||
413 | # PHY device support | ||
414 | # | ||
415 | # CONFIG_PHYLIB is not set | ||
416 | |||
417 | # | ||
418 | # Ethernet (10 or 100Mbit) | ||
419 | # | ||
420 | CONFIG_NET_ETHERNET=y | ||
421 | # CONFIG_MII is not set | ||
422 | # CONFIG_NET_VENDOR_3COM is not set | ||
423 | # CONFIG_NET_VENDOR_SMC is not set | ||
424 | # CONFIG_DM9000 is not set | ||
425 | # CONFIG_NET_VENDOR_RACAL is not set | ||
426 | # CONFIG_DEPCA is not set | ||
427 | # CONFIG_HP100 is not set | ||
428 | CONFIG_NET_ISA=y | ||
429 | # CONFIG_E2100 is not set | ||
430 | # CONFIG_EWRK3 is not set | ||
431 | # CONFIG_EEXPRESS is not set | ||
432 | # CONFIG_EEXPRESS_PRO is not set | ||
433 | # CONFIG_HPLAN_PLUS is not set | ||
434 | # CONFIG_HPLAN is not set | ||
435 | # CONFIG_LP486E is not set | ||
436 | # CONFIG_ETH16I is not set | ||
437 | CONFIG_NE2000=y | ||
438 | # CONFIG_NET_PCI is not set | ||
439 | |||
440 | # | ||
441 | # Ethernet (1000 Mbit) | ||
442 | # | ||
443 | |||
444 | # | ||
445 | # Ethernet (10000 Mbit) | ||
446 | # | ||
447 | |||
448 | # | ||
449 | # Token Ring devices | ||
450 | # | ||
451 | # CONFIG_TR is not set | ||
452 | |||
453 | # | ||
454 | # Wireless LAN (non-hamradio) | ||
455 | # | ||
456 | # CONFIG_NET_RADIO is not set | ||
457 | |||
458 | # | ||
459 | # Wan interfaces | ||
460 | # | ||
461 | # CONFIG_WAN is not set | ||
462 | # CONFIG_PPP is not set | ||
463 | # CONFIG_SLIP is not set | ||
464 | # CONFIG_NETPOLL is not set | ||
465 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
466 | |||
467 | # | ||
468 | # ISDN subsystem | ||
469 | # | ||
470 | # CONFIG_ISDN is not set | ||
471 | |||
472 | # | ||
473 | # Telephony Support | ||
474 | # | ||
475 | # CONFIG_PHONE is not set | ||
476 | |||
477 | # | ||
478 | # Input device support | ||
479 | # | ||
480 | CONFIG_INPUT=y | ||
481 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
482 | |||
483 | # | ||
484 | # Userland interfaces | ||
485 | # | ||
486 | # CONFIG_INPUT_MOUSEDEV is not set | ||
487 | # CONFIG_INPUT_JOYDEV is not set | ||
488 | # CONFIG_INPUT_TSDEV is not set | ||
489 | # CONFIG_INPUT_EVDEV is not set | ||
490 | # CONFIG_INPUT_EVBUG is not set | ||
491 | |||
492 | # | ||
493 | # Input Device Drivers | ||
494 | # | ||
495 | # CONFIG_INPUT_KEYBOARD is not set | ||
496 | # CONFIG_INPUT_MOUSE is not set | ||
497 | # CONFIG_INPUT_JOYSTICK is not set | ||
498 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
499 | # CONFIG_INPUT_MISC is not set | ||
500 | |||
501 | # | ||
502 | # Hardware I/O ports | ||
503 | # | ||
504 | # CONFIG_SERIO is not set | ||
505 | # CONFIG_GAMEPORT is not set | ||
506 | |||
507 | # | ||
508 | # Character devices | ||
509 | # | ||
510 | CONFIG_VT=y | ||
511 | CONFIG_VT_CONSOLE=y | ||
512 | CONFIG_HW_CONSOLE=y | ||
513 | CONFIG_VT_HW_CONSOLE_BINDING=y | ||
514 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
515 | |||
516 | # | ||
517 | # Serial drivers | ||
518 | # | ||
519 | CONFIG_SERIAL_8250=y | ||
520 | CONFIG_SERIAL_8250_CONSOLE=y | ||
521 | CONFIG_SERIAL_8250_NR_UARTS=4 | ||
522 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | ||
523 | # CONFIG_SERIAL_8250_EXTENDED is not set | ||
524 | |||
525 | # | ||
526 | # Non-8250 serial port support | ||
527 | # | ||
528 | CONFIG_SERIAL_CORE=y | ||
529 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
530 | CONFIG_UNIX98_PTYS=y | ||
531 | CONFIG_LEGACY_PTYS=y | ||
532 | CONFIG_LEGACY_PTY_COUNT=256 | ||
533 | |||
534 | # | ||
535 | # IPMI | ||
536 | # | ||
537 | # CONFIG_IPMI_HANDLER is not set | ||
538 | |||
539 | # | ||
540 | # Watchdog Cards | ||
541 | # | ||
542 | # CONFIG_WATCHDOG is not set | ||
543 | # CONFIG_HW_RANDOM is not set | ||
544 | # CONFIG_RTC is not set | ||
545 | # CONFIG_GEN_RTC is not set | ||
546 | # CONFIG_DTLK is not set | ||
547 | # CONFIG_R3964 is not set | ||
548 | # CONFIG_RAW_DRIVER is not set | ||
549 | |||
550 | # | ||
551 | # TPM devices | ||
552 | # | ||
553 | |||
554 | # | ||
555 | # I2C support | ||
556 | # | ||
557 | # CONFIG_I2C is not set | ||
558 | |||
559 | # | ||
560 | # SPI support | ||
561 | # | ||
562 | # CONFIG_SPI is not set | ||
563 | # CONFIG_SPI_MASTER is not set | ||
564 | |||
565 | # | ||
566 | # Dallas's 1-wire bus | ||
567 | # | ||
568 | # CONFIG_W1 is not set | ||
569 | |||
570 | # | ||
571 | # Hardware Monitoring support | ||
572 | # | ||
573 | # CONFIG_HWMON is not set | ||
574 | # CONFIG_HWMON_VID is not set | ||
575 | |||
576 | # | ||
577 | # Multimedia devices | ||
578 | # | ||
579 | # CONFIG_VIDEO_DEV is not set | ||
580 | |||
581 | # | ||
582 | # Digital Video Broadcasting Devices | ||
583 | # | ||
584 | # CONFIG_DVB is not set | ||
585 | |||
586 | # | ||
587 | # Graphics support | ||
588 | # | ||
589 | # CONFIG_FIRMWARE_EDID is not set | ||
590 | # CONFIG_FB is not set | ||
591 | |||
592 | # | ||
593 | # Console display driver support | ||
594 | # | ||
595 | CONFIG_VGA_CONSOLE=y | ||
596 | # CONFIG_VGACON_SOFT_SCROLLBACK is not set | ||
597 | # CONFIG_MDA_CONSOLE is not set | ||
598 | CONFIG_DUMMY_CONSOLE=y | ||
599 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
600 | |||
601 | # | ||
602 | # Sound | ||
603 | # | ||
604 | # CONFIG_SOUND is not set | ||
605 | |||
606 | # | ||
607 | # HID Devices | ||
608 | # | ||
609 | CONFIG_HID=y | ||
610 | # CONFIG_HID_DEBUG is not set | ||
611 | |||
612 | # | ||
613 | # USB support | ||
614 | # | ||
615 | # CONFIG_USB_ARCH_HAS_HCD is not set | ||
616 | # CONFIG_USB_ARCH_HAS_OHCI is not set | ||
617 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
618 | |||
619 | # | ||
620 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
621 | # | ||
622 | |||
623 | # | ||
624 | # USB Gadget Support | ||
625 | # | ||
626 | # CONFIG_USB_GADGET is not set | ||
627 | |||
628 | # | ||
629 | # MMC/SD Card support | ||
630 | # | ||
631 | # CONFIG_MMC is not set | ||
632 | |||
633 | # | ||
634 | # LED devices | ||
635 | # | ||
636 | # CONFIG_NEW_LEDS is not set | ||
637 | |||
638 | # | ||
639 | # LED drivers | ||
640 | # | ||
641 | |||
642 | # | ||
643 | # LED Triggers | ||
644 | # | ||
645 | |||
646 | # | ||
647 | # InfiniBand support | ||
648 | # | ||
649 | |||
650 | # | ||
651 | # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) | ||
652 | # | ||
653 | |||
654 | # | ||
655 | # Real Time Clock | ||
656 | # | ||
657 | |||
658 | # | ||
659 | # DMA Engine support | ||
660 | # | ||
661 | # CONFIG_DMA_ENGINE is not set | ||
662 | |||
663 | # | ||
664 | # DMA Clients | ||
665 | # | ||
666 | |||
667 | # | ||
668 | # DMA Devices | ||
669 | # | ||
670 | |||
671 | # | ||
672 | # Auxiliary Display support | ||
673 | # | ||
674 | |||
675 | # | ||
676 | # Virtualization | ||
677 | # | ||
678 | |||
679 | # | ||
680 | # File systems | ||
681 | # | ||
682 | # CONFIG_EXT2_FS is not set | ||
683 | # CONFIG_EXT3_FS is not set | ||
684 | # CONFIG_REISERFS_FS is not set | ||
685 | # CONFIG_JFS_FS is not set | ||
686 | CONFIG_FS_POSIX_ACL=y | ||
687 | # CONFIG_XFS_FS is not set | ||
688 | # CONFIG_OCFS2_FS is not set | ||
689 | # CONFIG_MINIX_FS is not set | ||
690 | # CONFIG_ROMFS_FS is not set | ||
691 | CONFIG_INOTIFY=y | ||
692 | CONFIG_INOTIFY_USER=y | ||
693 | # CONFIG_QUOTA is not set | ||
694 | # CONFIG_DNOTIFY is not set | ||
695 | # CONFIG_AUTOFS_FS is not set | ||
696 | # CONFIG_AUTOFS4_FS is not set | ||
697 | CONFIG_FUSE_FS=y | ||
698 | CONFIG_GENERIC_ACL=y | ||
699 | |||
700 | # | ||
701 | # CD-ROM/DVD Filesystems | ||
702 | # | ||
703 | # CONFIG_ISO9660_FS is not set | ||
704 | # CONFIG_UDF_FS is not set | ||
705 | |||
706 | # | ||
707 | # DOS/FAT/NT Filesystems | ||
708 | # | ||
709 | # CONFIG_MSDOS_FS is not set | ||
710 | # CONFIG_VFAT_FS is not set | ||
711 | # CONFIG_NTFS_FS is not set | ||
712 | |||
713 | # | ||
714 | # Pseudo filesystems | ||
715 | # | ||
716 | CONFIG_PROC_FS=y | ||
717 | CONFIG_PROC_KCORE=y | ||
718 | CONFIG_PROC_SYSCTL=y | ||
719 | CONFIG_SYSFS=y | ||
720 | CONFIG_TMPFS=y | ||
721 | CONFIG_TMPFS_POSIX_ACL=y | ||
722 | # CONFIG_HUGETLB_PAGE is not set | ||
723 | CONFIG_RAMFS=y | ||
724 | |||
725 | # | ||
726 | # Miscellaneous filesystems | ||
727 | # | ||
728 | # CONFIG_HFSPLUS_FS is not set | ||
729 | # CONFIG_CRAMFS is not set | ||
730 | # CONFIG_VXFS_FS is not set | ||
731 | # CONFIG_HPFS_FS is not set | ||
732 | # CONFIG_QNX4FS_FS is not set | ||
733 | # CONFIG_SYSV_FS is not set | ||
734 | # CONFIG_UFS_FS is not set | ||
735 | |||
736 | # | ||
737 | # Network File Systems | ||
738 | # | ||
739 | CONFIG_NFS_FS=y | ||
740 | CONFIG_NFS_V3=y | ||
741 | # CONFIG_NFS_V3_ACL is not set | ||
742 | CONFIG_NFS_DIRECTIO=y | ||
743 | # CONFIG_NFSD is not set | ||
744 | CONFIG_ROOT_NFS=y | ||
745 | CONFIG_LOCKD=y | ||
746 | CONFIG_LOCKD_V4=y | ||
747 | CONFIG_NFS_COMMON=y | ||
748 | CONFIG_SUNRPC=y | ||
749 | # CONFIG_SMB_FS is not set | ||
750 | # CONFIG_CIFS is not set | ||
751 | # CONFIG_NCP_FS is not set | ||
752 | # CONFIG_CODA_FS is not set | ||
753 | |||
754 | # | ||
755 | # Partition Types | ||
756 | # | ||
757 | # CONFIG_PARTITION_ADVANCED is not set | ||
758 | CONFIG_MSDOS_PARTITION=y | ||
759 | |||
760 | # | ||
761 | # Native Language Support | ||
762 | # | ||
763 | # CONFIG_NLS is not set | ||
764 | |||
765 | # | ||
766 | # Kernel hacking | ||
767 | # | ||
768 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
769 | # CONFIG_PRINTK_TIME is not set | ||
770 | CONFIG_ENABLE_MUST_CHECK=y | ||
771 | # CONFIG_MAGIC_SYSRQ is not set | ||
772 | # CONFIG_UNUSED_SYMBOLS is not set | ||
773 | # CONFIG_DEBUG_FS is not set | ||
774 | # CONFIG_HEADERS_CHECK is not set | ||
775 | # CONFIG_DEBUG_KERNEL is not set | ||
776 | CONFIG_LOG_BUF_SHIFT=14 | ||
777 | CONFIG_CROSSCOMPILE=y | ||
778 | CONFIG_CMDLINE="" | ||
779 | |||
780 | # | ||
781 | # Security options | ||
782 | # | ||
783 | # CONFIG_KEYS is not set | ||
784 | # CONFIG_SECURITY is not set | ||
785 | |||
786 | # | ||
787 | # Cryptographic options | ||
788 | # | ||
789 | # CONFIG_CRYPTO is not set | ||
790 | |||
791 | # | ||
792 | # Library routines | ||
793 | # | ||
794 | CONFIG_BITREVERSE=y | ||
795 | # CONFIG_CRC_CCITT is not set | ||
796 | # CONFIG_CRC16 is not set | ||
797 | CONFIG_CRC32=y | ||
798 | # CONFIG_LIBCRC32C is not set | ||
799 | CONFIG_HAS_IOMEM=y | ||
800 | CONFIG_HAS_IOPORT=y | ||
diff --git a/arch/mips/kernel/irq-rm7000.c b/arch/mips/kernel/irq-rm7000.c index 971adf6ef4f4..fb50cc78b28b 100644 --- a/arch/mips/kernel/irq-rm7000.c +++ b/arch/mips/kernel/irq-rm7000.c | |||
@@ -33,6 +33,7 @@ static struct irq_chip rm7k_irq_controller = { | |||
33 | .mask = mask_rm7k_irq, | 33 | .mask = mask_rm7k_irq, |
34 | .mask_ack = mask_rm7k_irq, | 34 | .mask_ack = mask_rm7k_irq, |
35 | .unmask = unmask_rm7k_irq, | 35 | .unmask = unmask_rm7k_irq, |
36 | .eoi = unmask_rm7k_irq | ||
36 | }; | 37 | }; |
37 | 38 | ||
38 | void __init rm7k_cpu_irq_init(void) | 39 | void __init rm7k_cpu_irq_init(void) |
diff --git a/arch/mips/kernel/irq-rm9000.c b/arch/mips/kernel/irq-rm9000.c index 7b04583bd800..ed9febe63d72 100644 --- a/arch/mips/kernel/irq-rm9000.c +++ b/arch/mips/kernel/irq-rm9000.c | |||
@@ -75,6 +75,7 @@ static struct irq_chip rm9k_irq_controller = { | |||
75 | .mask = mask_rm9k_irq, | 75 | .mask = mask_rm9k_irq, |
76 | .mask_ack = mask_rm9k_irq, | 76 | .mask_ack = mask_rm9k_irq, |
77 | .unmask = unmask_rm9k_irq, | 77 | .unmask = unmask_rm9k_irq, |
78 | .eoi = unmask_rm9k_irq | ||
78 | }; | 79 | }; |
79 | 80 | ||
80 | static struct irq_chip rm9k_perfcounter_irq = { | 81 | static struct irq_chip rm9k_perfcounter_irq = { |
diff --git a/arch/mips/kernel/mips-mt-fpaff.c b/arch/mips/kernel/mips-mt-fpaff.c index bb4f00c0cbe9..df4d3f2f740c 100644 --- a/arch/mips/kernel/mips-mt-fpaff.c +++ b/arch/mips/kernel/mips-mt-fpaff.c | |||
@@ -36,7 +36,7 @@ unsigned long mt_fpemul_threshold = 0; | |||
36 | */ | 36 | */ |
37 | static inline struct task_struct *find_process_by_pid(pid_t pid) | 37 | static inline struct task_struct *find_process_by_pid(pid_t pid) |
38 | { | 38 | { |
39 | return pid ? find_task_by_pid(pid) : current; | 39 | return pid ? find_task_by_vpid(pid) : current; |
40 | } | 40 | } |
41 | 41 | ||
42 | 42 | ||
diff --git a/arch/mips/kernel/scall32-o32.S b/arch/mips/kernel/scall32-o32.S index f798139e888e..08a9c5070ea8 100644 --- a/arch/mips/kernel/scall32-o32.S +++ b/arch/mips/kernel/scall32-o32.S | |||
@@ -663,6 +663,9 @@ einval: li v0, -EINVAL | |||
663 | sys sys_ni_syscall 0 | 663 | sys sys_ni_syscall 0 |
664 | sys sys_eventfd 1 | 664 | sys sys_eventfd 1 |
665 | sys sys_fallocate 6 /* 4320 */ | 665 | sys sys_fallocate 6 /* 4320 */ |
666 | sys sys_timerfd_create 2 | ||
667 | sys sys_timerfd_gettime 2 | ||
668 | sys sys_timerfd_settime 4 | ||
666 | .endm | 669 | .endm |
667 | 670 | ||
668 | /* We pre-compute the number of _instruction_ bytes needed to | 671 | /* We pre-compute the number of _instruction_ bytes needed to |
diff --git a/arch/mips/kernel/scall64-64.S b/arch/mips/kernel/scall64-64.S index a626be6baea3..dc597b600c68 100644 --- a/arch/mips/kernel/scall64-64.S +++ b/arch/mips/kernel/scall64-64.S | |||
@@ -478,4 +478,7 @@ sys_call_table: | |||
478 | PTR sys_ni_syscall | 478 | PTR sys_ni_syscall |
479 | PTR sys_eventfd | 479 | PTR sys_eventfd |
480 | PTR sys_fallocate | 480 | PTR sys_fallocate |
481 | PTR sys_timerfd_create /* 5280 */ | ||
482 | PTR sys_timerfd_gettime | ||
483 | PTR sys_timerfd_settime | ||
481 | .size sys_call_table,.-sys_call_table | 484 | .size sys_call_table,.-sys_call_table |
diff --git a/arch/mips/kernel/scall64-n32.S b/arch/mips/kernel/scall64-n32.S index 9d5bcaf1b389..12940eca7893 100644 --- a/arch/mips/kernel/scall64-n32.S +++ b/arch/mips/kernel/scall64-n32.S | |||
@@ -404,4 +404,7 @@ EXPORT(sysn32_call_table) | |||
404 | PTR sys_ni_syscall | 404 | PTR sys_ni_syscall |
405 | PTR sys_eventfd | 405 | PTR sys_eventfd |
406 | PTR sys_fallocate | 406 | PTR sys_fallocate |
407 | PTR sys_timerfd_create | ||
408 | PTR sys_timerfd_gettime /* 5285 */ | ||
409 | PTR sys_timerfd_settime | ||
407 | .size sysn32_call_table,.-sysn32_call_table | 410 | .size sysn32_call_table,.-sysn32_call_table |
diff --git a/arch/mips/kernel/scall64-o32.S b/arch/mips/kernel/scall64-o32.S index fd2019c1ec2d..9a275efb4f04 100644 --- a/arch/mips/kernel/scall64-o32.S +++ b/arch/mips/kernel/scall64-o32.S | |||
@@ -526,4 +526,7 @@ sys_call_table: | |||
526 | PTR sys_ni_syscall | 526 | PTR sys_ni_syscall |
527 | PTR sys_eventfd | 527 | PTR sys_eventfd |
528 | PTR sys32_fallocate /* 4320 */ | 528 | PTR sys32_fallocate /* 4320 */ |
529 | PTR sys_timerfd_create | ||
530 | PTR sys_timerfd_gettime | ||
531 | PTR sys_timerfd_settime | ||
529 | .size sys_call_table,.-sys_call_table | 532 | .size sys_call_table,.-sys_call_table |
diff --git a/arch/mips/kernel/sysirix.c b/arch/mips/kernel/sysirix.c index 672fba84b2cc..c357762b8012 100644 --- a/arch/mips/kernel/sysirix.c +++ b/arch/mips/kernel/sysirix.c | |||
@@ -111,7 +111,7 @@ asmlinkage int irix_prctl(unsigned option, ...) | |||
111 | printk("irix_prctl[%s:%d]: Wants PR_ISBLOCKED\n", | 111 | printk("irix_prctl[%s:%d]: Wants PR_ISBLOCKED\n", |
112 | current->comm, current->pid); | 112 | current->comm, current->pid); |
113 | read_lock(&tasklist_lock); | 113 | read_lock(&tasklist_lock); |
114 | task = find_task_by_pid(va_arg(args, pid_t)); | 114 | task = find_task_by_vpid(va_arg(args, pid_t)); |
115 | error = -ESRCH; | 115 | error = -ESRCH; |
116 | if (error) | 116 | if (error) |
117 | error = (task->run_list.next != NULL); | 117 | error = (task->run_list.next != NULL); |
diff --git a/arch/mips/mm/c-r4k.c b/arch/mips/mm/c-r4k.c index 53ec05267a98..2c4f7e11f0d5 100644 --- a/arch/mips/mm/c-r4k.c +++ b/arch/mips/mm/c-r4k.c | |||
@@ -364,20 +364,23 @@ static inline int has_valid_asid(const struct mm_struct *mm) | |||
364 | static inline void local_r4k_flush_cache_range(void * args) | 364 | static inline void local_r4k_flush_cache_range(void * args) |
365 | { | 365 | { |
366 | struct vm_area_struct *vma = args; | 366 | struct vm_area_struct *vma = args; |
367 | int exec = vma->vm_flags & VM_EXEC; | ||
367 | 368 | ||
368 | if (!(has_valid_asid(vma->vm_mm))) | 369 | if (!(has_valid_asid(vma->vm_mm))) |
369 | return; | 370 | return; |
370 | 371 | ||
371 | r4k_blast_dcache(); | 372 | r4k_blast_dcache(); |
373 | if (exec) | ||
374 | r4k_blast_icache(); | ||
372 | } | 375 | } |
373 | 376 | ||
374 | static void r4k_flush_cache_range(struct vm_area_struct *vma, | 377 | static void r4k_flush_cache_range(struct vm_area_struct *vma, |
375 | unsigned long start, unsigned long end) | 378 | unsigned long start, unsigned long end) |
376 | { | 379 | { |
377 | if (!cpu_has_dc_aliases) | 380 | int exec = vma->vm_flags & VM_EXEC; |
378 | return; | ||
379 | 381 | ||
380 | r4k_on_each_cpu(local_r4k_flush_cache_range, vma, 1, 1); | 382 | if (cpu_has_dc_aliases || (exec && !cpu_has_ic_fills_f_dc)) |
383 | r4k_on_each_cpu(local_r4k_flush_cache_range, vma, 1, 1); | ||
381 | } | 384 | } |
382 | 385 | ||
383 | static inline void local_r4k_flush_cache_mm(void * args) | 386 | static inline void local_r4k_flush_cache_mm(void * args) |
diff --git a/arch/mips/mm/cache.c b/arch/mips/mm/cache.c index 81f30ac2bff9..6a24651971df 100644 --- a/arch/mips/mm/cache.c +++ b/arch/mips/mm/cache.c | |||
@@ -92,12 +92,17 @@ EXPORT_SYMBOL(__flush_dcache_page); | |||
92 | 92 | ||
93 | void __flush_anon_page(struct page *page, unsigned long vmaddr) | 93 | void __flush_anon_page(struct page *page, unsigned long vmaddr) |
94 | { | 94 | { |
95 | if (pages_do_alias((unsigned long)page_address(page), vmaddr)) { | 95 | unsigned long addr = (unsigned long) page_address(page); |
96 | void *kaddr; | ||
97 | 96 | ||
98 | kaddr = kmap_coherent(page, vmaddr); | 97 | if (pages_do_alias(addr, vmaddr)) { |
99 | flush_data_cache_page((unsigned long)kaddr); | 98 | if (page_mapped(page) && !Page_dcache_dirty(page)) { |
100 | kunmap_coherent(); | 99 | void *kaddr; |
100 | |||
101 | kaddr = kmap_coherent(page, vmaddr); | ||
102 | flush_data_cache_page((unsigned long)kaddr); | ||
103 | kunmap_coherent(); | ||
104 | } else | ||
105 | flush_data_cache_page(addr); | ||
101 | } | 106 | } |
102 | } | 107 | } |
103 | 108 | ||
diff --git a/arch/mips/mm/init.c b/arch/mips/mm/init.c index 480dec04f552..c7aed133d11d 100644 --- a/arch/mips/mm/init.c +++ b/arch/mips/mm/init.c | |||
@@ -211,7 +211,8 @@ void copy_user_highpage(struct page *to, struct page *from, | |||
211 | void *vfrom, *vto; | 211 | void *vfrom, *vto; |
212 | 212 | ||
213 | vto = kmap_atomic(to, KM_USER1); | 213 | vto = kmap_atomic(to, KM_USER1); |
214 | if (cpu_has_dc_aliases && page_mapped(from)) { | 214 | if (cpu_has_dc_aliases && |
215 | page_mapped(from) && !Page_dcache_dirty(from)) { | ||
215 | vfrom = kmap_coherent(from, vaddr); | 216 | vfrom = kmap_coherent(from, vaddr); |
216 | copy_page(vto, vfrom); | 217 | copy_page(vto, vfrom); |
217 | kunmap_coherent(); | 218 | kunmap_coherent(); |
@@ -234,7 +235,8 @@ void copy_to_user_page(struct vm_area_struct *vma, | |||
234 | struct page *page, unsigned long vaddr, void *dst, const void *src, | 235 | struct page *page, unsigned long vaddr, void *dst, const void *src, |
235 | unsigned long len) | 236 | unsigned long len) |
236 | { | 237 | { |
237 | if (cpu_has_dc_aliases && page_mapped(page)) { | 238 | if (cpu_has_dc_aliases && |
239 | page_mapped(page) && !Page_dcache_dirty(page)) { | ||
238 | void *vto = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK); | 240 | void *vto = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK); |
239 | memcpy(vto, src, len); | 241 | memcpy(vto, src, len); |
240 | kunmap_coherent(); | 242 | kunmap_coherent(); |
@@ -253,7 +255,8 @@ void copy_from_user_page(struct vm_area_struct *vma, | |||
253 | struct page *page, unsigned long vaddr, void *dst, const void *src, | 255 | struct page *page, unsigned long vaddr, void *dst, const void *src, |
254 | unsigned long len) | 256 | unsigned long len) |
255 | { | 257 | { |
256 | if (cpu_has_dc_aliases && page_mapped(page)) { | 258 | if (cpu_has_dc_aliases && |
259 | page_mapped(page) && !Page_dcache_dirty(page)) { | ||
257 | void *vfrom = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK); | 260 | void *vfrom = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK); |
258 | memcpy(dst, vfrom, len); | 261 | memcpy(dst, vfrom, len); |
259 | kunmap_coherent(); | 262 | kunmap_coherent(); |
diff --git a/arch/mips/mm/pg-sb1.c b/arch/mips/mm/pg-sb1.c index a3e98c243a89..89925ec57d6a 100644 --- a/arch/mips/mm/pg-sb1.c +++ b/arch/mips/mm/pg-sb1.c | |||
@@ -216,7 +216,7 @@ void sb1_dma_init(void) | |||
216 | int i; | 216 | int i; |
217 | 217 | ||
218 | for (i = 0; i < DM_NUM_CHANNELS; i++) { | 218 | for (i = 0; i < DM_NUM_CHANNELS; i++) { |
219 | const u64 base_val = CPHYSADDR(&page_descr[i]) | | 219 | const u64 base_val = CPHYSADDR((unsigned long)&page_descr[i]) | |
220 | V_DM_DSCR_BASE_RINGSZ(1); | 220 | V_DM_DSCR_BASE_RINGSZ(1); |
221 | void *base_reg = IOADDR(A_DM_REGISTER(i, R_DM_DSCR_BASE)); | 221 | void *base_reg = IOADDR(A_DM_REGISTER(i, R_DM_DSCR_BASE)); |
222 | 222 | ||
@@ -228,11 +228,11 @@ void sb1_dma_init(void) | |||
228 | 228 | ||
229 | void clear_page(void *page) | 229 | void clear_page(void *page) |
230 | { | 230 | { |
231 | u64 to_phys = CPHYSADDR(page); | 231 | u64 to_phys = CPHYSADDR((unsigned long)page); |
232 | unsigned int cpu = smp_processor_id(); | 232 | unsigned int cpu = smp_processor_id(); |
233 | 233 | ||
234 | /* if the page is not in KSEG0, use old way */ | 234 | /* if the page is not in KSEG0, use old way */ |
235 | if ((long)KSEGX(page) != (long)CKSEG0) | 235 | if ((long)KSEGX((unsigned long)page) != (long)CKSEG0) |
236 | return clear_page_cpu(page); | 236 | return clear_page_cpu(page); |
237 | 237 | ||
238 | page_descr[cpu].dscr_a = to_phys | M_DM_DSCRA_ZERO_MEM | | 238 | page_descr[cpu].dscr_a = to_phys | M_DM_DSCRA_ZERO_MEM | |
@@ -252,13 +252,13 @@ void clear_page(void *page) | |||
252 | 252 | ||
253 | void copy_page(void *to, void *from) | 253 | void copy_page(void *to, void *from) |
254 | { | 254 | { |
255 | u64 from_phys = CPHYSADDR(from); | 255 | u64 from_phys = CPHYSADDR((unsigned long)from); |
256 | u64 to_phys = CPHYSADDR(to); | 256 | u64 to_phys = CPHYSADDR((unsigned long)to); |
257 | unsigned int cpu = smp_processor_id(); | 257 | unsigned int cpu = smp_processor_id(); |
258 | 258 | ||
259 | /* if any page is not in KSEG0, use old way */ | 259 | /* if any page is not in KSEG0, use old way */ |
260 | if ((long)KSEGX(to) != (long)CKSEG0 | 260 | if ((long)KSEGX((unsigned long)to) != (long)CKSEG0 |
261 | || (long)KSEGX(from) != (long)CKSEG0) | 261 | || (long)KSEGX((unsigned long)from) != (long)CKSEG0) |
262 | return copy_page_cpu(to, from); | 262 | return copy_page_cpu(to, from); |
263 | 263 | ||
264 | page_descr[cpu].dscr_a = to_phys | M_DM_DSCRA_L2C_DEST | | 264 | page_descr[cpu].dscr_a = to_phys | M_DM_DSCRA_L2C_DEST | |
diff --git a/arch/mips/pci/pci.c b/arch/mips/pci/pci.c index 6e6981fd7934..f9471d77c096 100644 --- a/arch/mips/pci/pci.c +++ b/arch/mips/pci/pci.c | |||
@@ -177,8 +177,15 @@ static int pcibios_enable_resources(struct pci_dev *dev, int mask) | |||
177 | continue; | 177 | continue; |
178 | 178 | ||
179 | r = &dev->resource[idx]; | 179 | r = &dev->resource[idx]; |
180 | if (!(r->flags & (IORESOURCE_IO | IORESOURCE_MEM))) | ||
181 | continue; | ||
182 | if ((idx == PCI_ROM_RESOURCE) && | ||
183 | (!(r->flags & IORESOURCE_ROM_ENABLE))) | ||
184 | continue; | ||
180 | if (!r->start && r->end) { | 185 | if (!r->start && r->end) { |
181 | printk(KERN_ERR "PCI: Device %s not available because of resource collisions\n", pci_name(dev)); | 186 | printk(KERN_ERR "PCI: Device %s not available " |
187 | "because of resource collisions\n", | ||
188 | pci_name(dev)); | ||
182 | return -EINVAL; | 189 | return -EINVAL; |
183 | } | 190 | } |
184 | if (r->flags & IORESOURCE_IO) | 191 | if (r->flags & IORESOURCE_IO) |
@@ -186,10 +193,9 @@ static int pcibios_enable_resources(struct pci_dev *dev, int mask) | |||
186 | if (r->flags & IORESOURCE_MEM) | 193 | if (r->flags & IORESOURCE_MEM) |
187 | cmd |= PCI_COMMAND_MEMORY; | 194 | cmd |= PCI_COMMAND_MEMORY; |
188 | } | 195 | } |
189 | if (dev->resource[PCI_ROM_RESOURCE].start) | ||
190 | cmd |= PCI_COMMAND_MEMORY; | ||
191 | if (cmd != old_cmd) { | 196 | if (cmd != old_cmd) { |
192 | printk("PCI: Enabling device %s (%04x -> %04x)\n", pci_name(dev), old_cmd, cmd); | 197 | printk("PCI: Enabling device %s (%04x -> %04x)\n", |
198 | pci_name(dev), old_cmd, cmd); | ||
193 | pci_write_config_word(dev, PCI_COMMAND, cmd); | 199 | pci_write_config_word(dev, PCI_COMMAND, cmd); |
194 | } | 200 | } |
195 | return 0; | 201 | return 0; |
diff --git a/arch/mips/sibyte/bcm1480/smp.c b/arch/mips/sibyte/bcm1480/smp.c index 183c460b9ca1..bd9eeb43ed0e 100644 --- a/arch/mips/sibyte/bcm1480/smp.c +++ b/arch/mips/sibyte/bcm1480/smp.c | |||
@@ -110,7 +110,6 @@ static void __cpuinit bcm1480_smp_finish(void) | |||
110 | 110 | ||
111 | sb1480_clockevent_init(); | 111 | sb1480_clockevent_init(); |
112 | local_irq_enable(); | 112 | local_irq_enable(); |
113 | bcm1480_smp_finish(); | ||
114 | } | 113 | } |
115 | 114 | ||
116 | /* | 115 | /* |
diff --git a/arch/mn10300/Kconfig b/arch/mn10300/Kconfig index eedc3a5e0d9b..6a6409adc564 100644 --- a/arch/mn10300/Kconfig +++ b/arch/mn10300/Kconfig | |||
@@ -63,6 +63,10 @@ config GENERIC_HARDIRQS | |||
63 | config HOTPLUG_CPU | 63 | config HOTPLUG_CPU |
64 | def_bool n | 64 | def_bool n |
65 | 65 | ||
66 | config HZ | ||
67 | int | ||
68 | default 1000 | ||
69 | |||
66 | mainmenu "Matsushita MN10300/AM33 Kernel Configuration" | 70 | mainmenu "Matsushita MN10300/AM33 Kernel Configuration" |
67 | 71 | ||
68 | source "init/Kconfig" | 72 | source "init/Kconfig" |
diff --git a/arch/mn10300/configs/asb2303_defconfig b/arch/mn10300/configs/asb2303_defconfig index ca9876a111d3..3aa8906b3dea 100644 --- a/arch/mn10300/configs/asb2303_defconfig +++ b/arch/mn10300/configs/asb2303_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.24-rc2 | 3 | # Linux kernel version: 2.6.25-rc2 |
4 | # Fri Nov 16 13:36:38 2007 | 4 | # Tue Feb 19 18:52:24 2008 |
5 | # | 5 | # |
6 | CONFIG_MN10300=y | 6 | CONFIG_MN10300=y |
7 | CONFIG_AM33=y | 7 | CONFIG_AM33=y |
@@ -21,6 +21,7 @@ CONFIG_ARCH_HAS_ILOG2_U32=y | |||
21 | # CONFIG_ARCH_SUPPORTS_AOUT is not set | 21 | # CONFIG_ARCH_SUPPORTS_AOUT is not set |
22 | CONFIG_GENERIC_HARDIRQS=y | 22 | CONFIG_GENERIC_HARDIRQS=y |
23 | # CONFIG_HOTPLUG_CPU is not set | 23 | # CONFIG_HOTPLUG_CPU is not set |
24 | CONFIG_HZ=1000 | ||
24 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 25 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
25 | 26 | ||
26 | # | 27 | # |
@@ -38,15 +39,16 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
38 | CONFIG_BSD_PROCESS_ACCT=y | 39 | CONFIG_BSD_PROCESS_ACCT=y |
39 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 40 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
40 | # CONFIG_TASKSTATS is not set | 41 | # CONFIG_TASKSTATS is not set |
41 | # CONFIG_USER_NS is not set | ||
42 | # CONFIG_PID_NS is not set | ||
43 | # CONFIG_AUDIT is not set | 42 | # CONFIG_AUDIT is not set |
44 | # CONFIG_IKCONFIG is not set | 43 | # CONFIG_IKCONFIG is not set |
45 | CONFIG_LOG_BUF_SHIFT=14 | 44 | CONFIG_LOG_BUF_SHIFT=14 |
46 | # CONFIG_CGROUPS is not set | 45 | # CONFIG_CGROUPS is not set |
47 | # CONFIG_FAIR_GROUP_SCHED is not set | 46 | # CONFIG_GROUP_SCHED is not set |
47 | # CONFIG_USER_SCHED is not set | ||
48 | # CONFIG_CGROUP_SCHED is not set | ||
48 | # CONFIG_SYSFS_DEPRECATED is not set | 49 | # CONFIG_SYSFS_DEPRECATED is not set |
49 | # CONFIG_RELAY is not set | 50 | # CONFIG_RELAY is not set |
51 | # CONFIG_NAMESPACES is not set | ||
50 | # CONFIG_BLK_DEV_INITRD is not set | 52 | # CONFIG_BLK_DEV_INITRD is not set |
51 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 53 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
52 | CONFIG_SYSCTL=y | 54 | CONFIG_SYSCTL=y |
@@ -57,22 +59,33 @@ CONFIG_SYSCTL_SYSCALL=y | |||
57 | CONFIG_PRINTK=y | 59 | CONFIG_PRINTK=y |
58 | CONFIG_BUG=y | 60 | CONFIG_BUG=y |
59 | CONFIG_ELF_CORE=y | 61 | CONFIG_ELF_CORE=y |
62 | CONFIG_COMPAT_BRK=y | ||
60 | CONFIG_BASE_FULL=y | 63 | CONFIG_BASE_FULL=y |
61 | CONFIG_FUTEX=y | 64 | CONFIG_FUTEX=y |
62 | CONFIG_ANON_INODES=y | 65 | CONFIG_ANON_INODES=y |
63 | CONFIG_EPOLL=y | 66 | CONFIG_EPOLL=y |
64 | CONFIG_SIGNALFD=y | 67 | CONFIG_SIGNALFD=y |
68 | CONFIG_TIMERFD=y | ||
65 | CONFIG_EVENTFD=y | 69 | CONFIG_EVENTFD=y |
66 | CONFIG_SHMEM=y | 70 | CONFIG_SHMEM=y |
67 | # CONFIG_VM_EVENT_COUNTERS is not set | 71 | # CONFIG_VM_EVENT_COUNTERS is not set |
68 | CONFIG_SLAB=y | 72 | CONFIG_SLAB=y |
69 | # CONFIG_SLUB is not set | 73 | # CONFIG_SLUB is not set |
70 | # CONFIG_SLOB is not set | 74 | # CONFIG_SLOB is not set |
75 | CONFIG_PROFILING=y | ||
76 | # CONFIG_MARKERS is not set | ||
77 | CONFIG_OPROFILE=y | ||
78 | # CONFIG_HAVE_OPROFILE is not set | ||
79 | # CONFIG_HAVE_KPROBES is not set | ||
80 | # CONFIG_PROC_PAGE_MONITOR is not set | ||
81 | CONFIG_SLABINFO=y | ||
71 | CONFIG_RT_MUTEXES=y | 82 | CONFIG_RT_MUTEXES=y |
72 | # CONFIG_TINY_SHMEM is not set | 83 | # CONFIG_TINY_SHMEM is not set |
73 | CONFIG_BASE_SMALL=0 | 84 | CONFIG_BASE_SMALL=0 |
74 | # CONFIG_MODULES is not set | 85 | # CONFIG_MODULES is not set |
75 | # CONFIG_BLOCK is not set | 86 | # CONFIG_BLOCK is not set |
87 | CONFIG_CLASSIC_RCU=y | ||
88 | # CONFIG_PREEMPT_RCU is not set | ||
76 | 89 | ||
77 | # | 90 | # |
78 | # Matsushita MN10300 system setup | 91 | # Matsushita MN10300 system setup |
@@ -206,6 +219,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
206 | # | 219 | # |
207 | # CONFIG_NET_PKTGEN is not set | 220 | # CONFIG_NET_PKTGEN is not set |
208 | # CONFIG_HAMRADIO is not set | 221 | # CONFIG_HAMRADIO is not set |
222 | # CONFIG_CAN is not set | ||
209 | # CONFIG_IRDA is not set | 223 | # CONFIG_IRDA is not set |
210 | # CONFIG_BT is not set | 224 | # CONFIG_BT is not set |
211 | # CONFIG_AF_RXRPC is not set | 225 | # CONFIG_AF_RXRPC is not set |
@@ -311,6 +325,8 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | |||
311 | # CONFIG_PARPORT is not set | 325 | # CONFIG_PARPORT is not set |
312 | CONFIG_MISC_DEVICES=y | 326 | CONFIG_MISC_DEVICES=y |
313 | # CONFIG_EEPROM_93CX6 is not set | 327 | # CONFIG_EEPROM_93CX6 is not set |
328 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
329 | # CONFIG_HAVE_IDE is not set | ||
314 | 330 | ||
315 | # | 331 | # |
316 | # SCSI device support | 332 | # SCSI device support |
@@ -345,7 +361,6 @@ CONFIG_SMC91X=y | |||
345 | # CONFIG_WAN is not set | 361 | # CONFIG_WAN is not set |
346 | # CONFIG_PPP is not set | 362 | # CONFIG_PPP is not set |
347 | # CONFIG_SLIP is not set | 363 | # CONFIG_SLIP is not set |
348 | # CONFIG_SHAPER is not set | ||
349 | # CONFIG_NETCONSOLE is not set | 364 | # CONFIG_NETCONSOLE is not set |
350 | # CONFIG_NETPOLL is not set | 365 | # CONFIG_NETPOLL is not set |
351 | # CONFIG_NET_POLL_CONTROLLER is not set | 366 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -405,6 +420,7 @@ CONFIG_RTC=y | |||
405 | # CONFIG_W1 is not set | 420 | # CONFIG_W1 is not set |
406 | # CONFIG_POWER_SUPPLY is not set | 421 | # CONFIG_POWER_SUPPLY is not set |
407 | # CONFIG_HWMON is not set | 422 | # CONFIG_HWMON is not set |
423 | # CONFIG_THERMAL is not set | ||
408 | # CONFIG_WATCHDOG is not set | 424 | # CONFIG_WATCHDOG is not set |
409 | 425 | ||
410 | # | 426 | # |
@@ -444,6 +460,7 @@ CONFIG_SSB_POSSIBLE=y | |||
444 | # CONFIG_SOUND is not set | 460 | # CONFIG_SOUND is not set |
445 | # CONFIG_USB_SUPPORT is not set | 461 | # CONFIG_USB_SUPPORT is not set |
446 | # CONFIG_MMC is not set | 462 | # CONFIG_MMC is not set |
463 | # CONFIG_MEMSTICK is not set | ||
447 | # CONFIG_NEW_LEDS is not set | 464 | # CONFIG_NEW_LEDS is not set |
448 | # CONFIG_RTC_CLASS is not set | 465 | # CONFIG_RTC_CLASS is not set |
449 | 466 | ||
@@ -455,10 +472,10 @@ CONFIG_SSB_POSSIBLE=y | |||
455 | # | 472 | # |
456 | # File systems | 473 | # File systems |
457 | # | 474 | # |
475 | CONFIG_DNOTIFY=y | ||
458 | CONFIG_INOTIFY=y | 476 | CONFIG_INOTIFY=y |
459 | CONFIG_INOTIFY_USER=y | 477 | CONFIG_INOTIFY_USER=y |
460 | # CONFIG_QUOTA is not set | 478 | # CONFIG_QUOTA is not set |
461 | CONFIG_DNOTIFY=y | ||
462 | # CONFIG_AUTOFS_FS is not set | 479 | # CONFIG_AUTOFS_FS is not set |
463 | # CONFIG_AUTOFS4_FS is not set | 480 | # CONFIG_AUTOFS4_FS is not set |
464 | # CONFIG_FUSE_FS is not set | 481 | # CONFIG_FUSE_FS is not set |
@@ -554,5 +571,3 @@ CONFIG_HAS_DMA=y | |||
554 | # | 571 | # |
555 | # Profiling support | 572 | # Profiling support |
556 | # | 573 | # |
557 | CONFIG_PROFILING=y | ||
558 | CONFIG_OPROFILE=y | ||
diff --git a/arch/mn10300/kernel/gdb-io-ttysm.c b/arch/mn10300/kernel/gdb-io-ttysm.c index c5451592d403..e94c25e8ca05 100644 --- a/arch/mn10300/kernel/gdb-io-ttysm.c +++ b/arch/mn10300/kernel/gdb-io-ttysm.c | |||
@@ -196,6 +196,7 @@ int gdbstub_io_rx_char(unsigned char *_ch, int nonblock) | |||
196 | try_again: | 196 | try_again: |
197 | /* pull chars out of the buffer */ | 197 | /* pull chars out of the buffer */ |
198 | ix = gdbstub_rx_outp; | 198 | ix = gdbstub_rx_outp; |
199 | barrier(); | ||
199 | if (ix == gdbstub_rx_inp) { | 200 | if (ix == gdbstub_rx_inp) { |
200 | if (nonblock) | 201 | if (nonblock) |
201 | return -EAGAIN; | 202 | return -EAGAIN; |
@@ -207,6 +208,7 @@ try_again: | |||
207 | 208 | ||
208 | ch = gdbstub_rx_buffer[ix++]; | 209 | ch = gdbstub_rx_buffer[ix++]; |
209 | st = gdbstub_rx_buffer[ix++]; | 210 | st = gdbstub_rx_buffer[ix++]; |
211 | barrier(); | ||
210 | gdbstub_rx_outp = ix & (PAGE_SIZE - 1); | 212 | gdbstub_rx_outp = ix & (PAGE_SIZE - 1); |
211 | 213 | ||
212 | st &= SC01STR_RXF | SC01STR_RBF | SC01STR_FEF | SC01STR_PEF | | 214 | st &= SC01STR_RXF | SC01STR_RBF | SC01STR_FEF | SC01STR_PEF | |
diff --git a/arch/mn10300/kernel/time.c b/arch/mn10300/kernel/time.c index ff492e3b3457..babb7c2ac377 100644 --- a/arch/mn10300/kernel/time.c +++ b/arch/mn10300/kernel/time.c | |||
@@ -84,11 +84,13 @@ static irqreturn_t timer_interrupt(int irq, void *dev_id) | |||
84 | /* advance the kernel's time tracking system */ | 84 | /* advance the kernel's time tracking system */ |
85 | profile_tick(CPU_PROFILING); | 85 | profile_tick(CPU_PROFILING); |
86 | do_timer(1); | 86 | do_timer(1); |
87 | update_process_times(user_mode(get_irq_regs())); | ||
88 | check_rtc_time(); | 87 | check_rtc_time(); |
89 | } | 88 | } |
90 | 89 | ||
91 | write_sequnlock(&xtime_lock); | 90 | write_sequnlock(&xtime_lock); |
91 | |||
92 | update_process_times(user_mode(get_irq_regs())); | ||
93 | |||
92 | return IRQ_HANDLED; | 94 | return IRQ_HANDLED; |
93 | } | 95 | } |
94 | 96 | ||
diff --git a/arch/mn10300/kernel/traps.c b/arch/mn10300/kernel/traps.c index 8b9dc6d9dcc6..fcb9a03d46a8 100644 --- a/arch/mn10300/kernel/traps.c +++ b/arch/mn10300/kernel/traps.c | |||
@@ -391,7 +391,7 @@ static asmlinkage void unsupported_syscall(struct pt_regs *regs, | |||
391 | if (code == EXCEP_SYSCALL15 && !user_mode(regs)) { | 391 | if (code == EXCEP_SYSCALL15 && !user_mode(regs)) { |
392 | if (report_bug(regs->pc, regs) == BUG_TRAP_TYPE_BUG) { | 392 | if (report_bug(regs->pc, regs) == BUG_TRAP_TYPE_BUG) { |
393 | #ifdef CONFIG_GDBSTUB | 393 | #ifdef CONFIG_GDBSTUB |
394 | __gdbstub_bug_trap(); | 394 | gdbstub_intercept(regs, code); |
395 | #endif | 395 | #endif |
396 | } | 396 | } |
397 | } | 397 | } |
diff --git a/arch/powerpc/Makefile b/arch/powerpc/Makefile index 6845482f0093..1c6ce3536e4c 100644 --- a/arch/powerpc/Makefile +++ b/arch/powerpc/Makefile | |||
@@ -176,7 +176,7 @@ define archhelp | |||
176 | @echo ' *_defconfig - Select default config from arch/$(ARCH)/configs' | 176 | @echo ' *_defconfig - Select default config from arch/$(ARCH)/configs' |
177 | endef | 177 | endef |
178 | 178 | ||
179 | install: vdso_install | 179 | install: |
180 | $(Q)$(MAKE) $(build)=$(boot) install | 180 | $(Q)$(MAKE) $(build)=$(boot) install |
181 | 181 | ||
182 | vdso_install: | 182 | vdso_install: |
diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile index 63d07ccbb9db..e3993a607584 100644 --- a/arch/powerpc/boot/Makefile +++ b/arch/powerpc/boot/Makefile | |||
@@ -35,10 +35,10 @@ endif | |||
35 | 35 | ||
36 | BOOTCFLAGS += -I$(obj) -I$(srctree)/$(obj) -I$(srctree)/$(src)/libfdt | 36 | BOOTCFLAGS += -I$(obj) -I$(srctree)/$(obj) -I$(srctree)/$(src)/libfdt |
37 | 37 | ||
38 | $(obj)/4xx.o: BOOTCFLAGS += -mcpu=440 | 38 | $(obj)/4xx.o: BOOTCFLAGS += -mcpu=405 |
39 | $(obj)/ebony.o: BOOTCFLAGS += -mcpu=440 | 39 | $(obj)/ebony.o: BOOTCFLAGS += -mcpu=405 |
40 | $(obj)/cuboot-taishan.o: BOOTCFLAGS += -mcpu=440 | 40 | $(obj)/cuboot-taishan.o: BOOTCFLAGS += -mcpu=405 |
41 | $(obj)/cuboot-katmai.o: BOOTCFLAGS += -mcpu=440 | 41 | $(obj)/cuboot-katmai.o: BOOTCFLAGS += -mcpu=405 |
42 | $(obj)/treeboot-walnut.o: BOOTCFLAGS += -mcpu=405 | 42 | $(obj)/treeboot-walnut.o: BOOTCFLAGS += -mcpu=405 |
43 | 43 | ||
44 | 44 | ||
diff --git a/arch/powerpc/boot/dts/bamboo.dts b/arch/powerpc/boot/dts/bamboo.dts index 29f1a6f3e373..7dc37c9a7446 100644 --- a/arch/powerpc/boot/dts/bamboo.dts +++ b/arch/powerpc/boot/dts/bamboo.dts | |||
@@ -185,7 +185,6 @@ | |||
185 | }; | 185 | }; |
186 | 186 | ||
187 | IIC0: i2c@ef600700 { | 187 | IIC0: i2c@ef600700 { |
188 | device_type = "i2c"; | ||
189 | compatible = "ibm,iic-440ep", "ibm,iic-440gp", "ibm,iic"; | 188 | compatible = "ibm,iic-440ep", "ibm,iic-440gp", "ibm,iic"; |
190 | reg = <ef600700 14>; | 189 | reg = <ef600700 14>; |
191 | interrupt-parent = <&UIC0>; | 190 | interrupt-parent = <&UIC0>; |
@@ -193,7 +192,6 @@ | |||
193 | }; | 192 | }; |
194 | 193 | ||
195 | IIC1: i2c@ef600800 { | 194 | IIC1: i2c@ef600800 { |
196 | device_type = "i2c"; | ||
197 | compatible = "ibm,iic-440ep", "ibm,iic-440gp", "ibm,iic"; | 195 | compatible = "ibm,iic-440ep", "ibm,iic-440gp", "ibm,iic"; |
198 | reg = <ef600800 14>; | 196 | reg = <ef600800 14>; |
199 | interrupt-parent = <&UIC0>; | 197 | interrupt-parent = <&UIC0>; |
@@ -201,7 +199,6 @@ | |||
201 | }; | 199 | }; |
202 | 200 | ||
203 | ZMII0: emac-zmii@ef600d00 { | 201 | ZMII0: emac-zmii@ef600d00 { |
204 | device_type = "zmii-interface"; | ||
205 | compatible = "ibm,zmii-440ep", "ibm,zmii-440gp", "ibm,zmii"; | 202 | compatible = "ibm,zmii-440ep", "ibm,zmii-440gp", "ibm,zmii"; |
206 | reg = <ef600d00 c>; | 203 | reg = <ef600d00 c>; |
207 | }; | 204 | }; |
diff --git a/arch/powerpc/boot/dts/ebony.dts b/arch/powerpc/boot/dts/ebony.dts index 7aad135a44b0..0b000cb7ed8b 100644 --- a/arch/powerpc/boot/dts/ebony.dts +++ b/arch/powerpc/boot/dts/ebony.dts | |||
@@ -216,7 +216,6 @@ | |||
216 | 216 | ||
217 | IIC0: i2c@40000400 { | 217 | IIC0: i2c@40000400 { |
218 | /* FIXME */ | 218 | /* FIXME */ |
219 | device_type = "i2c"; | ||
220 | compatible = "ibm,iic-440gp", "ibm,iic"; | 219 | compatible = "ibm,iic-440gp", "ibm,iic"; |
221 | reg = <40000400 14>; | 220 | reg = <40000400 14>; |
222 | interrupt-parent = <&UIC0>; | 221 | interrupt-parent = <&UIC0>; |
@@ -224,7 +223,6 @@ | |||
224 | }; | 223 | }; |
225 | IIC1: i2c@40000500 { | 224 | IIC1: i2c@40000500 { |
226 | /* FIXME */ | 225 | /* FIXME */ |
227 | device_type = "i2c"; | ||
228 | compatible = "ibm,iic-440gp", "ibm,iic"; | 226 | compatible = "ibm,iic-440gp", "ibm,iic"; |
229 | reg = <40000500 14>; | 227 | reg = <40000500 14>; |
230 | interrupt-parent = <&UIC0>; | 228 | interrupt-parent = <&UIC0>; |
diff --git a/arch/powerpc/boot/dts/katmai.dts b/arch/powerpc/boot/dts/katmai.dts index 9bdfc0ff3c24..bc32ac7250ec 100644 --- a/arch/powerpc/boot/dts/katmai.dts +++ b/arch/powerpc/boot/dts/katmai.dts | |||
@@ -187,7 +187,6 @@ | |||
187 | }; | 187 | }; |
188 | 188 | ||
189 | IIC0: i2c@10000400 { | 189 | IIC0: i2c@10000400 { |
190 | device_type = "i2c"; | ||
191 | compatible = "ibm,iic-440spe", "ibm,iic-440gp", "ibm,iic"; | 190 | compatible = "ibm,iic-440spe", "ibm,iic-440gp", "ibm,iic"; |
192 | reg = <10000400 14>; | 191 | reg = <10000400 14>; |
193 | interrupt-parent = <&UIC0>; | 192 | interrupt-parent = <&UIC0>; |
@@ -195,7 +194,6 @@ | |||
195 | }; | 194 | }; |
196 | 195 | ||
197 | IIC1: i2c@10000500 { | 196 | IIC1: i2c@10000500 { |
198 | device_type = "i2c"; | ||
199 | compatible = "ibm,iic-440spe", "ibm,iic-440gp", "ibm,iic"; | 197 | compatible = "ibm,iic-440spe", "ibm,iic-440gp", "ibm,iic"; |
200 | reg = <10000500 14>; | 198 | reg = <10000500 14>; |
201 | interrupt-parent = <&UIC0>; | 199 | interrupt-parent = <&UIC0>; |
diff --git a/arch/powerpc/boot/dts/kilauea.dts b/arch/powerpc/boot/dts/kilauea.dts index 67c7ea179a07..8baef61f31cd 100644 --- a/arch/powerpc/boot/dts/kilauea.dts +++ b/arch/powerpc/boot/dts/kilauea.dts | |||
@@ -182,7 +182,6 @@ | |||
182 | }; | 182 | }; |
183 | 183 | ||
184 | IIC0: i2c@ef600400 { | 184 | IIC0: i2c@ef600400 { |
185 | device_type = "i2c"; | ||
186 | compatible = "ibm,iic-405ex", "ibm,iic"; | 185 | compatible = "ibm,iic-405ex", "ibm,iic"; |
187 | reg = <ef600400 14>; | 186 | reg = <ef600400 14>; |
188 | interrupt-parent = <&UIC0>; | 187 | interrupt-parent = <&UIC0>; |
@@ -190,7 +189,6 @@ | |||
190 | }; | 189 | }; |
191 | 190 | ||
192 | IIC1: i2c@ef600500 { | 191 | IIC1: i2c@ef600500 { |
193 | device_type = "i2c"; | ||
194 | compatible = "ibm,iic-405ex", "ibm,iic"; | 192 | compatible = "ibm,iic-405ex", "ibm,iic"; |
195 | reg = <ef600500 14>; | 193 | reg = <ef600500 14>; |
196 | interrupt-parent = <&UIC0>; | 194 | interrupt-parent = <&UIC0>; |
@@ -199,7 +197,6 @@ | |||
199 | 197 | ||
200 | 198 | ||
201 | RGMII0: emac-rgmii@ef600b00 { | 199 | RGMII0: emac-rgmii@ef600b00 { |
202 | device_type = "rgmii-interface"; | ||
203 | compatible = "ibm,rgmii-405ex", "ibm,rgmii"; | 200 | compatible = "ibm,rgmii-405ex", "ibm,rgmii"; |
204 | reg = <ef600b00 104>; | 201 | reg = <ef600b00 104>; |
205 | has-mdio; | 202 | has-mdio; |
diff --git a/arch/powerpc/boot/dts/makalu.dts b/arch/powerpc/boot/dts/makalu.dts index bdd70e4596ae..710c01168179 100644 --- a/arch/powerpc/boot/dts/makalu.dts +++ b/arch/powerpc/boot/dts/makalu.dts | |||
@@ -182,7 +182,6 @@ | |||
182 | }; | 182 | }; |
183 | 183 | ||
184 | IIC0: i2c@ef600400 { | 184 | IIC0: i2c@ef600400 { |
185 | device_type = "i2c"; | ||
186 | compatible = "ibm,iic-405ex", "ibm,iic"; | 185 | compatible = "ibm,iic-405ex", "ibm,iic"; |
187 | reg = <ef600400 14>; | 186 | reg = <ef600400 14>; |
188 | interrupt-parent = <&UIC0>; | 187 | interrupt-parent = <&UIC0>; |
@@ -190,7 +189,6 @@ | |||
190 | }; | 189 | }; |
191 | 190 | ||
192 | IIC1: i2c@ef600500 { | 191 | IIC1: i2c@ef600500 { |
193 | device_type = "i2c"; | ||
194 | compatible = "ibm,iic-405ex", "ibm,iic"; | 192 | compatible = "ibm,iic-405ex", "ibm,iic"; |
195 | reg = <ef600500 14>; | 193 | reg = <ef600500 14>; |
196 | interrupt-parent = <&UIC0>; | 194 | interrupt-parent = <&UIC0>; |
@@ -199,7 +197,6 @@ | |||
199 | 197 | ||
200 | 198 | ||
201 | RGMII0: emac-rgmii@ef600b00 { | 199 | RGMII0: emac-rgmii@ef600b00 { |
202 | device_type = "rgmii-interface"; | ||
203 | compatible = "ibm,rgmii-405ex", "ibm,rgmii"; | 200 | compatible = "ibm,rgmii-405ex", "ibm,rgmii"; |
204 | reg = <ef600b00 104>; | 201 | reg = <ef600b00 104>; |
205 | has-mdio; | 202 | has-mdio; |
diff --git a/arch/powerpc/boot/dts/rainier.dts b/arch/powerpc/boot/dts/rainier.dts index d3c2ac394ce9..f947c75a2e94 100644 --- a/arch/powerpc/boot/dts/rainier.dts +++ b/arch/powerpc/boot/dts/rainier.dts | |||
@@ -229,7 +229,6 @@ | |||
229 | }; | 229 | }; |
230 | 230 | ||
231 | IIC0: i2c@ef600700 { | 231 | IIC0: i2c@ef600700 { |
232 | device_type = "i2c"; | ||
233 | compatible = "ibm,iic-440grx", "ibm,iic"; | 232 | compatible = "ibm,iic-440grx", "ibm,iic"; |
234 | reg = <ef600700 14>; | 233 | reg = <ef600700 14>; |
235 | interrupt-parent = <&UIC0>; | 234 | interrupt-parent = <&UIC0>; |
@@ -237,7 +236,6 @@ | |||
237 | }; | 236 | }; |
238 | 237 | ||
239 | IIC1: i2c@ef600800 { | 238 | IIC1: i2c@ef600800 { |
240 | device_type = "i2c"; | ||
241 | compatible = "ibm,iic-440grx", "ibm,iic"; | 239 | compatible = "ibm,iic-440grx", "ibm,iic"; |
242 | reg = <ef600800 14>; | 240 | reg = <ef600800 14>; |
243 | interrupt-parent = <&UIC0>; | 241 | interrupt-parent = <&UIC0>; |
@@ -245,13 +243,11 @@ | |||
245 | }; | 243 | }; |
246 | 244 | ||
247 | ZMII0: emac-zmii@ef600d00 { | 245 | ZMII0: emac-zmii@ef600d00 { |
248 | device_type = "zmii-interface"; | ||
249 | compatible = "ibm,zmii-440grx", "ibm,zmii"; | 246 | compatible = "ibm,zmii-440grx", "ibm,zmii"; |
250 | reg = <ef600d00 c>; | 247 | reg = <ef600d00 c>; |
251 | }; | 248 | }; |
252 | 249 | ||
253 | RGMII0: emac-rgmii@ef601000 { | 250 | RGMII0: emac-rgmii@ef601000 { |
254 | device_type = "rgmii-interface"; | ||
255 | compatible = "ibm,rgmii-440grx", "ibm,rgmii"; | 251 | compatible = "ibm,rgmii-440grx", "ibm,rgmii"; |
256 | reg = <ef601000 8>; | 252 | reg = <ef601000 8>; |
257 | has-mdio; | 253 | has-mdio; |
diff --git a/arch/powerpc/boot/dts/sequoia.dts b/arch/powerpc/boot/dts/sequoia.dts index 5c13d46f441d..8db9515d7dc3 100644 --- a/arch/powerpc/boot/dts/sequoia.dts +++ b/arch/powerpc/boot/dts/sequoia.dts | |||
@@ -244,7 +244,6 @@ | |||
244 | }; | 244 | }; |
245 | 245 | ||
246 | IIC0: i2c@ef600700 { | 246 | IIC0: i2c@ef600700 { |
247 | device_type = "i2c"; | ||
248 | compatible = "ibm,iic-440epx", "ibm,iic"; | 247 | compatible = "ibm,iic-440epx", "ibm,iic"; |
249 | reg = <ef600700 14>; | 248 | reg = <ef600700 14>; |
250 | interrupt-parent = <&UIC0>; | 249 | interrupt-parent = <&UIC0>; |
@@ -252,7 +251,6 @@ | |||
252 | }; | 251 | }; |
253 | 252 | ||
254 | IIC1: i2c@ef600800 { | 253 | IIC1: i2c@ef600800 { |
255 | device_type = "i2c"; | ||
256 | compatible = "ibm,iic-440epx", "ibm,iic"; | 254 | compatible = "ibm,iic-440epx", "ibm,iic"; |
257 | reg = <ef600800 14>; | 255 | reg = <ef600800 14>; |
258 | interrupt-parent = <&UIC0>; | 256 | interrupt-parent = <&UIC0>; |
@@ -260,13 +258,11 @@ | |||
260 | }; | 258 | }; |
261 | 259 | ||
262 | ZMII0: emac-zmii@ef600d00 { | 260 | ZMII0: emac-zmii@ef600d00 { |
263 | device_type = "zmii-interface"; | ||
264 | compatible = "ibm,zmii-440epx", "ibm,zmii"; | 261 | compatible = "ibm,zmii-440epx", "ibm,zmii"; |
265 | reg = <ef600d00 c>; | 262 | reg = <ef600d00 c>; |
266 | }; | 263 | }; |
267 | 264 | ||
268 | RGMII0: emac-rgmii@ef601000 { | 265 | RGMII0: emac-rgmii@ef601000 { |
269 | device_type = "rgmii-interface"; | ||
270 | compatible = "ibm,rgmii-440epx", "ibm,rgmii"; | 266 | compatible = "ibm,rgmii-440epx", "ibm,rgmii"; |
271 | reg = <ef601000 8>; | 267 | reg = <ef601000 8>; |
272 | has-mdio; | 268 | has-mdio; |
diff --git a/arch/powerpc/boot/dts/taishan.dts b/arch/powerpc/boot/dts/taishan.dts index 0706a4a13b9f..8278068c802c 100644 --- a/arch/powerpc/boot/dts/taishan.dts +++ b/arch/powerpc/boot/dts/taishan.dts | |||
@@ -203,7 +203,6 @@ | |||
203 | 203 | ||
204 | IIC0: i2c@40000400 { | 204 | IIC0: i2c@40000400 { |
205 | /* FIXME */ | 205 | /* FIXME */ |
206 | device_type = "i2c"; | ||
207 | compatible = "ibm,iic-440gp", "ibm,iic"; | 206 | compatible = "ibm,iic-440gp", "ibm,iic"; |
208 | reg = <40000400 14>; | 207 | reg = <40000400 14>; |
209 | interrupt-parent = <&UIC0>; | 208 | interrupt-parent = <&UIC0>; |
@@ -211,7 +210,6 @@ | |||
211 | }; | 210 | }; |
212 | IIC1: i2c@40000500 { | 211 | IIC1: i2c@40000500 { |
213 | /* FIXME */ | 212 | /* FIXME */ |
214 | device_type = "i2c"; | ||
215 | compatible = "ibm,iic-440gp", "ibm,iic"; | 213 | compatible = "ibm,iic-440gp", "ibm,iic"; |
216 | reg = <40000500 14>; | 214 | reg = <40000500 14>; |
217 | interrupt-parent = <&UIC0>; | 215 | interrupt-parent = <&UIC0>; |
@@ -225,13 +223,11 @@ | |||
225 | }; | 223 | }; |
226 | 224 | ||
227 | ZMII0: emac-zmii@40000780 { | 225 | ZMII0: emac-zmii@40000780 { |
228 | device_type = "zgmii-interface"; | ||
229 | compatible = "ibm,zmii-440gx", "ibm,zmii"; | 226 | compatible = "ibm,zmii-440gx", "ibm,zmii"; |
230 | reg = <40000780 c>; | 227 | reg = <40000780 c>; |
231 | }; | 228 | }; |
232 | 229 | ||
233 | RGMII0: emac-rgmii@40000790 { | 230 | RGMII0: emac-rgmii@40000790 { |
234 | device_type = "rgmii-interface"; | ||
235 | compatible = "ibm,rgmii"; | 231 | compatible = "ibm,rgmii"; |
236 | reg = <40000790 8>; | 232 | reg = <40000790 8>; |
237 | }; | 233 | }; |
diff --git a/arch/powerpc/configs/bamboo_defconfig b/arch/powerpc/configs/bamboo_defconfig index 1ed9afc9b281..c44db554cdc6 100644 --- a/arch/powerpc/configs/bamboo_defconfig +++ b/arch/powerpc/configs/bamboo_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc6 | 3 | # Linux kernel version: 2.6.25-rc2 |
4 | # Mon Dec 24 10:49:50 2007 | 4 | # Fri Feb 15 21:36:39 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -30,6 +30,7 @@ CONFIG_GENERIC_TIME=y | |||
30 | CONFIG_GENERIC_TIME_VSYSCALL=y | 30 | CONFIG_GENERIC_TIME_VSYSCALL=y |
31 | CONFIG_GENERIC_CLOCKEVENTS=y | 31 | CONFIG_GENERIC_CLOCKEVENTS=y |
32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 36 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -68,17 +69,18 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
68 | CONFIG_POSIX_MQUEUE=y | 69 | CONFIG_POSIX_MQUEUE=y |
69 | # CONFIG_BSD_PROCESS_ACCT is not set | 70 | # CONFIG_BSD_PROCESS_ACCT is not set |
70 | # CONFIG_TASKSTATS is not set | 71 | # CONFIG_TASKSTATS is not set |
71 | # CONFIG_USER_NS is not set | ||
72 | # CONFIG_PID_NS is not set | ||
73 | # CONFIG_AUDIT is not set | 72 | # CONFIG_AUDIT is not set |
74 | # CONFIG_IKCONFIG is not set | 73 | # CONFIG_IKCONFIG is not set |
75 | CONFIG_LOG_BUF_SHIFT=14 | 74 | CONFIG_LOG_BUF_SHIFT=14 |
76 | # CONFIG_CGROUPS is not set | 75 | # CONFIG_CGROUPS is not set |
76 | CONFIG_GROUP_SCHED=y | ||
77 | CONFIG_FAIR_GROUP_SCHED=y | 77 | CONFIG_FAIR_GROUP_SCHED=y |
78 | CONFIG_FAIR_USER_SCHED=y | 78 | # CONFIG_RT_GROUP_SCHED is not set |
79 | # CONFIG_FAIR_CGROUP_SCHED is not set | 79 | CONFIG_USER_SCHED=y |
80 | # CONFIG_CGROUP_SCHED is not set | ||
80 | CONFIG_SYSFS_DEPRECATED=y | 81 | CONFIG_SYSFS_DEPRECATED=y |
81 | # CONFIG_RELAY is not set | 82 | # CONFIG_RELAY is not set |
83 | # CONFIG_NAMESPACES is not set | ||
82 | CONFIG_BLK_DEV_INITRD=y | 84 | CONFIG_BLK_DEV_INITRD=y |
83 | CONFIG_INITRAMFS_SOURCE="" | 85 | CONFIG_INITRAMFS_SOURCE="" |
84 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 86 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -92,11 +94,13 @@ CONFIG_HOTPLUG=y | |||
92 | CONFIG_PRINTK=y | 94 | CONFIG_PRINTK=y |
93 | CONFIG_BUG=y | 95 | CONFIG_BUG=y |
94 | CONFIG_ELF_CORE=y | 96 | CONFIG_ELF_CORE=y |
97 | CONFIG_COMPAT_BRK=y | ||
95 | CONFIG_BASE_FULL=y | 98 | CONFIG_BASE_FULL=y |
96 | CONFIG_FUTEX=y | 99 | CONFIG_FUTEX=y |
97 | CONFIG_ANON_INODES=y | 100 | CONFIG_ANON_INODES=y |
98 | CONFIG_EPOLL=y | 101 | CONFIG_EPOLL=y |
99 | CONFIG_SIGNALFD=y | 102 | CONFIG_SIGNALFD=y |
103 | CONFIG_TIMERFD=y | ||
100 | CONFIG_EVENTFD=y | 104 | CONFIG_EVENTFD=y |
101 | CONFIG_SHMEM=y | 105 | CONFIG_SHMEM=y |
102 | CONFIG_VM_EVENT_COUNTERS=y | 106 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -104,6 +108,13 @@ CONFIG_SLUB_DEBUG=y | |||
104 | # CONFIG_SLAB is not set | 108 | # CONFIG_SLAB is not set |
105 | CONFIG_SLUB=y | 109 | CONFIG_SLUB=y |
106 | # CONFIG_SLOB is not set | 110 | # CONFIG_SLOB is not set |
111 | # CONFIG_PROFILING is not set | ||
112 | # CONFIG_MARKERS is not set | ||
113 | CONFIG_HAVE_OPROFILE=y | ||
114 | # CONFIG_KPROBES is not set | ||
115 | CONFIG_HAVE_KPROBES=y | ||
116 | CONFIG_PROC_PAGE_MONITOR=y | ||
117 | CONFIG_SLABINFO=y | ||
107 | CONFIG_RT_MUTEXES=y | 118 | CONFIG_RT_MUTEXES=y |
108 | # CONFIG_TINY_SHMEM is not set | 119 | # CONFIG_TINY_SHMEM is not set |
109 | CONFIG_BASE_SMALL=0 | 120 | CONFIG_BASE_SMALL=0 |
@@ -131,13 +142,15 @@ CONFIG_DEFAULT_AS=y | |||
131 | # CONFIG_DEFAULT_CFQ is not set | 142 | # CONFIG_DEFAULT_CFQ is not set |
132 | # CONFIG_DEFAULT_NOOP is not set | 143 | # CONFIG_DEFAULT_NOOP is not set |
133 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 144 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
145 | CONFIG_CLASSIC_RCU=y | ||
146 | # CONFIG_PREEMPT_RCU is not set | ||
134 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 147 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
135 | 148 | ||
136 | # | 149 | # |
137 | # Platform support | 150 | # Platform support |
138 | # | 151 | # |
139 | # CONFIG_PPC_MPC52xx is not set | 152 | # CONFIG_PPC_MPC512x is not set |
140 | # CONFIG_PPC_MPC5200 is not set | 153 | # CONFIG_PPC_MPC5121 is not set |
141 | # CONFIG_PPC_CELL is not set | 154 | # CONFIG_PPC_CELL is not set |
142 | # CONFIG_PPC_CELL_NATIVE is not set | 155 | # CONFIG_PPC_CELL_NATIVE is not set |
143 | # CONFIG_PQ2ADS is not set | 156 | # CONFIG_PQ2ADS is not set |
@@ -147,8 +160,10 @@ CONFIG_BAMBOO=y | |||
147 | # CONFIG_TAISHAN is not set | 160 | # CONFIG_TAISHAN is not set |
148 | # CONFIG_KATMAI is not set | 161 | # CONFIG_KATMAI is not set |
149 | # CONFIG_RAINIER is not set | 162 | # CONFIG_RAINIER is not set |
163 | # CONFIG_WARP is not set | ||
150 | CONFIG_440EP=y | 164 | CONFIG_440EP=y |
151 | CONFIG_IBM440EP_ERR42=y | 165 | CONFIG_IBM440EP_ERR42=y |
166 | # CONFIG_IPIC is not set | ||
152 | # CONFIG_MPIC is not set | 167 | # CONFIG_MPIC is not set |
153 | # CONFIG_MPIC_WEIRD is not set | 168 | # CONFIG_MPIC_WEIRD is not set |
154 | # CONFIG_PPC_I8259 is not set | 169 | # CONFIG_PPC_I8259 is not set |
@@ -159,7 +174,6 @@ CONFIG_IBM440EP_ERR42=y | |||
159 | # CONFIG_PPC_INDIRECT_IO is not set | 174 | # CONFIG_PPC_INDIRECT_IO is not set |
160 | # CONFIG_GENERIC_IOMAP is not set | 175 | # CONFIG_GENERIC_IOMAP is not set |
161 | # CONFIG_CPU_FREQ is not set | 176 | # CONFIG_CPU_FREQ is not set |
162 | # CONFIG_CPM2 is not set | ||
163 | # CONFIG_FSL_ULI1575 is not set | 177 | # CONFIG_FSL_ULI1575 is not set |
164 | 178 | ||
165 | # | 179 | # |
@@ -175,13 +189,18 @@ CONFIG_HZ_250=y | |||
175 | # CONFIG_HZ_300 is not set | 189 | # CONFIG_HZ_300 is not set |
176 | # CONFIG_HZ_1000 is not set | 190 | # CONFIG_HZ_1000 is not set |
177 | CONFIG_HZ=250 | 191 | CONFIG_HZ=250 |
192 | # CONFIG_SCHED_HRTICK is not set | ||
178 | CONFIG_PREEMPT_NONE=y | 193 | CONFIG_PREEMPT_NONE=y |
179 | # CONFIG_PREEMPT_VOLUNTARY is not set | 194 | # CONFIG_PREEMPT_VOLUNTARY is not set |
180 | # CONFIG_PREEMPT is not set | 195 | # CONFIG_PREEMPT is not set |
196 | CONFIG_RCU_TRACE=y | ||
181 | CONFIG_BINFMT_ELF=y | 197 | CONFIG_BINFMT_ELF=y |
182 | # CONFIG_BINFMT_MISC is not set | 198 | # CONFIG_BINFMT_MISC is not set |
183 | # CONFIG_MATH_EMULATION is not set | 199 | # CONFIG_MATH_EMULATION is not set |
200 | # CONFIG_IOMMU_HELPER is not set | ||
184 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 201 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
202 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
203 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
185 | CONFIG_ARCH_FLATMEM_ENABLE=y | 204 | CONFIG_ARCH_FLATMEM_ENABLE=y |
186 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 205 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
187 | CONFIG_SELECT_MEMORY_MODEL=y | 206 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -201,8 +220,6 @@ CONFIG_PROC_DEVICETREE=y | |||
201 | CONFIG_CMDLINE_BOOL=y | 220 | CONFIG_CMDLINE_BOOL=y |
202 | CONFIG_CMDLINE="" | 221 | CONFIG_CMDLINE="" |
203 | CONFIG_SECCOMP=y | 222 | CONFIG_SECCOMP=y |
204 | CONFIG_WANT_DEVICE_TREE=y | ||
205 | CONFIG_DEVICE_TREE="bamboo.dts" | ||
206 | CONFIG_ISA_DMA_API=y | 223 | CONFIG_ISA_DMA_API=y |
207 | 224 | ||
208 | # | 225 | # |
@@ -302,6 +319,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
302 | # | 319 | # |
303 | # CONFIG_NET_PKTGEN is not set | 320 | # CONFIG_NET_PKTGEN is not set |
304 | # CONFIG_HAMRADIO is not set | 321 | # CONFIG_HAMRADIO is not set |
322 | # CONFIG_CAN is not set | ||
305 | # CONFIG_IRDA is not set | 323 | # CONFIG_IRDA is not set |
306 | # CONFIG_BT is not set | 324 | # CONFIG_BT is not set |
307 | # CONFIG_AF_RXRPC is not set | 325 | # CONFIG_AF_RXRPC is not set |
@@ -348,7 +366,7 @@ CONFIG_BLK_DEV=y | |||
348 | CONFIG_BLK_DEV_RAM=y | 366 | CONFIG_BLK_DEV_RAM=y |
349 | CONFIG_BLK_DEV_RAM_COUNT=16 | 367 | CONFIG_BLK_DEV_RAM_COUNT=16 |
350 | CONFIG_BLK_DEV_RAM_SIZE=35000 | 368 | CONFIG_BLK_DEV_RAM_SIZE=35000 |
351 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 369 | # CONFIG_BLK_DEV_XIP is not set |
352 | # CONFIG_CDROM_PKTCDVD is not set | 370 | # CONFIG_CDROM_PKTCDVD is not set |
353 | # CONFIG_ATA_OVER_ETH is not set | 371 | # CONFIG_ATA_OVER_ETH is not set |
354 | # CONFIG_XILINX_SYSACE is not set | 372 | # CONFIG_XILINX_SYSACE is not set |
@@ -357,6 +375,8 @@ CONFIG_MISC_DEVICES=y | |||
357 | # CONFIG_EEPROM_93CX6 is not set | 375 | # CONFIG_EEPROM_93CX6 is not set |
358 | # CONFIG_SGI_IOC4 is not set | 376 | # CONFIG_SGI_IOC4 is not set |
359 | # CONFIG_TIFM_CORE is not set | 377 | # CONFIG_TIFM_CORE is not set |
378 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
379 | CONFIG_HAVE_IDE=y | ||
360 | # CONFIG_IDE is not set | 380 | # CONFIG_IDE is not set |
361 | 381 | ||
362 | # | 382 | # |
@@ -385,7 +405,6 @@ CONFIG_NETDEVICES=y | |||
385 | # CONFIG_EQUALIZER is not set | 405 | # CONFIG_EQUALIZER is not set |
386 | # CONFIG_TUN is not set | 406 | # CONFIG_TUN is not set |
387 | # CONFIG_VETH is not set | 407 | # CONFIG_VETH is not set |
388 | # CONFIG_IP1000 is not set | ||
389 | # CONFIG_ARCNET is not set | 408 | # CONFIG_ARCNET is not set |
390 | # CONFIG_PHYLIB is not set | 409 | # CONFIG_PHYLIB is not set |
391 | CONFIG_NET_ETHERNET=y | 410 | CONFIG_NET_ETHERNET=y |
@@ -414,6 +433,9 @@ CONFIG_NETDEV_1000=y | |||
414 | # CONFIG_DL2K is not set | 433 | # CONFIG_DL2K is not set |
415 | # CONFIG_E1000 is not set | 434 | # CONFIG_E1000 is not set |
416 | # CONFIG_E1000E is not set | 435 | # CONFIG_E1000E is not set |
436 | # CONFIG_E1000E_ENABLED is not set | ||
437 | # CONFIG_IP1000 is not set | ||
438 | # CONFIG_IGB is not set | ||
417 | # CONFIG_NS83820 is not set | 439 | # CONFIG_NS83820 is not set |
418 | # CONFIG_HAMACHI is not set | 440 | # CONFIG_HAMACHI is not set |
419 | # CONFIG_YELLOWFIN is not set | 441 | # CONFIG_YELLOWFIN is not set |
@@ -438,6 +460,7 @@ CONFIG_NETDEV_10000=y | |||
438 | # CONFIG_NIU is not set | 460 | # CONFIG_NIU is not set |
439 | # CONFIG_MLX4_CORE is not set | 461 | # CONFIG_MLX4_CORE is not set |
440 | # CONFIG_TEHUTI is not set | 462 | # CONFIG_TEHUTI is not set |
463 | # CONFIG_BNX2X is not set | ||
441 | # CONFIG_TR is not set | 464 | # CONFIG_TR is not set |
442 | 465 | ||
443 | # | 466 | # |
@@ -450,7 +473,6 @@ CONFIG_NETDEV_10000=y | |||
450 | # CONFIG_HIPPI is not set | 473 | # CONFIG_HIPPI is not set |
451 | # CONFIG_PPP is not set | 474 | # CONFIG_PPP is not set |
452 | # CONFIG_SLIP is not set | 475 | # CONFIG_SLIP is not set |
453 | # CONFIG_SHAPER is not set | ||
454 | # CONFIG_NETCONSOLE is not set | 476 | # CONFIG_NETCONSOLE is not set |
455 | # CONFIG_NETPOLL is not set | 477 | # CONFIG_NETPOLL is not set |
456 | # CONFIG_NET_POLL_CONTROLLER is not set | 478 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -473,6 +495,7 @@ CONFIG_NETDEV_10000=y | |||
473 | # | 495 | # |
474 | # CONFIG_VT is not set | 496 | # CONFIG_VT is not set |
475 | # CONFIG_SERIAL_NONSTANDARD is not set | 497 | # CONFIG_SERIAL_NONSTANDARD is not set |
498 | # CONFIG_NOZOMI is not set | ||
476 | 499 | ||
477 | # | 500 | # |
478 | # Serial drivers | 501 | # Serial drivers |
@@ -518,6 +541,7 @@ CONFIG_DEVPORT=y | |||
518 | # CONFIG_W1 is not set | 541 | # CONFIG_W1 is not set |
519 | # CONFIG_POWER_SUPPLY is not set | 542 | # CONFIG_POWER_SUPPLY is not set |
520 | # CONFIG_HWMON is not set | 543 | # CONFIG_HWMON is not set |
544 | CONFIG_THERMAL=y | ||
521 | # CONFIG_WATCHDOG is not set | 545 | # CONFIG_WATCHDOG is not set |
522 | 546 | ||
523 | # | 547 | # |
@@ -566,12 +590,9 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
566 | # | 590 | # |
567 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 591 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
568 | # | 592 | # |
569 | |||
570 | # | ||
571 | # USB Gadget Support | ||
572 | # | ||
573 | # CONFIG_USB_GADGET is not set | 593 | # CONFIG_USB_GADGET is not set |
574 | # CONFIG_MMC is not set | 594 | # CONFIG_MMC is not set |
595 | # CONFIG_MEMSTICK is not set | ||
575 | # CONFIG_NEW_LEDS is not set | 596 | # CONFIG_NEW_LEDS is not set |
576 | # CONFIG_INFINIBAND is not set | 597 | # CONFIG_INFINIBAND is not set |
577 | # CONFIG_EDAC is not set | 598 | # CONFIG_EDAC is not set |
@@ -596,12 +617,10 @@ CONFIG_EXT2_FS=y | |||
596 | # CONFIG_XFS_FS is not set | 617 | # CONFIG_XFS_FS is not set |
597 | # CONFIG_GFS2_FS is not set | 618 | # CONFIG_GFS2_FS is not set |
598 | # CONFIG_OCFS2_FS is not set | 619 | # CONFIG_OCFS2_FS is not set |
599 | # CONFIG_MINIX_FS is not set | 620 | CONFIG_DNOTIFY=y |
600 | # CONFIG_ROMFS_FS is not set | ||
601 | CONFIG_INOTIFY=y | 621 | CONFIG_INOTIFY=y |
602 | CONFIG_INOTIFY_USER=y | 622 | CONFIG_INOTIFY_USER=y |
603 | # CONFIG_QUOTA is not set | 623 | # CONFIG_QUOTA is not set |
604 | CONFIG_DNOTIFY=y | ||
605 | # CONFIG_AUTOFS_FS is not set | 624 | # CONFIG_AUTOFS_FS is not set |
606 | # CONFIG_AUTOFS4_FS is not set | 625 | # CONFIG_AUTOFS4_FS is not set |
607 | # CONFIG_FUSE_FS is not set | 626 | # CONFIG_FUSE_FS is not set |
@@ -643,8 +662,10 @@ CONFIG_TMPFS=y | |||
643 | # CONFIG_EFS_FS is not set | 662 | # CONFIG_EFS_FS is not set |
644 | CONFIG_CRAMFS=y | 663 | CONFIG_CRAMFS=y |
645 | # CONFIG_VXFS_FS is not set | 664 | # CONFIG_VXFS_FS is not set |
665 | # CONFIG_MINIX_FS is not set | ||
646 | # CONFIG_HPFS_FS is not set | 666 | # CONFIG_HPFS_FS is not set |
647 | # CONFIG_QNX4FS_FS is not set | 667 | # CONFIG_QNX4FS_FS is not set |
668 | # CONFIG_ROMFS_FS is not set | ||
648 | # CONFIG_SYSV_FS is not set | 669 | # CONFIG_SYSV_FS is not set |
649 | # CONFIG_UFS_FS is not set | 670 | # CONFIG_UFS_FS is not set |
650 | CONFIG_NETWORK_FILESYSTEMS=y | 671 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -675,7 +696,6 @@ CONFIG_SUNRPC=y | |||
675 | CONFIG_MSDOS_PARTITION=y | 696 | CONFIG_MSDOS_PARTITION=y |
676 | # CONFIG_NLS is not set | 697 | # CONFIG_NLS is not set |
677 | # CONFIG_DLM is not set | 698 | # CONFIG_DLM is not set |
678 | # CONFIG_UCC_SLOW is not set | ||
679 | 699 | ||
680 | # | 700 | # |
681 | # Library routines | 701 | # Library routines |
@@ -692,10 +712,6 @@ CONFIG_PLIST=y | |||
692 | CONFIG_HAS_IOMEM=y | 712 | CONFIG_HAS_IOMEM=y |
693 | CONFIG_HAS_IOPORT=y | 713 | CONFIG_HAS_IOPORT=y |
694 | CONFIG_HAS_DMA=y | 714 | CONFIG_HAS_DMA=y |
695 | CONFIG_INSTRUMENTATION=y | ||
696 | # CONFIG_PROFILING is not set | ||
697 | # CONFIG_KPROBES is not set | ||
698 | # CONFIG_MARKERS is not set | ||
699 | 715 | ||
700 | # | 716 | # |
701 | # Kernel hacking | 717 | # Kernel hacking |
@@ -705,7 +721,7 @@ CONFIG_ENABLE_WARN_DEPRECATED=y | |||
705 | CONFIG_ENABLE_MUST_CHECK=y | 721 | CONFIG_ENABLE_MUST_CHECK=y |
706 | CONFIG_MAGIC_SYSRQ=y | 722 | CONFIG_MAGIC_SYSRQ=y |
707 | # CONFIG_UNUSED_SYMBOLS is not set | 723 | # CONFIG_UNUSED_SYMBOLS is not set |
708 | # CONFIG_DEBUG_FS is not set | 724 | CONFIG_DEBUG_FS=y |
709 | # CONFIG_HEADERS_CHECK is not set | 725 | # CONFIG_HEADERS_CHECK is not set |
710 | CONFIG_DEBUG_KERNEL=y | 726 | CONFIG_DEBUG_KERNEL=y |
711 | # CONFIG_DEBUG_SHIRQ is not set | 727 | # CONFIG_DEBUG_SHIRQ is not set |
@@ -714,6 +730,7 @@ CONFIG_SCHED_DEBUG=y | |||
714 | # CONFIG_SCHEDSTATS is not set | 730 | # CONFIG_SCHEDSTATS is not set |
715 | # CONFIG_TIMER_STATS is not set | 731 | # CONFIG_TIMER_STATS is not set |
716 | # CONFIG_SLUB_DEBUG_ON is not set | 732 | # CONFIG_SLUB_DEBUG_ON is not set |
733 | # CONFIG_SLUB_STATS is not set | ||
717 | # CONFIG_DEBUG_RT_MUTEXES is not set | 734 | # CONFIG_DEBUG_RT_MUTEXES is not set |
718 | # CONFIG_RT_MUTEX_TESTER is not set | 735 | # CONFIG_RT_MUTEX_TESTER is not set |
719 | # CONFIG_DEBUG_SPINLOCK is not set | 736 | # CONFIG_DEBUG_SPINLOCK is not set |
@@ -726,9 +743,9 @@ CONFIG_SCHED_DEBUG=y | |||
726 | # CONFIG_DEBUG_VM is not set | 743 | # CONFIG_DEBUG_VM is not set |
727 | # CONFIG_DEBUG_LIST is not set | 744 | # CONFIG_DEBUG_LIST is not set |
728 | # CONFIG_DEBUG_SG is not set | 745 | # CONFIG_DEBUG_SG is not set |
729 | CONFIG_FORCED_INLINING=y | ||
730 | # CONFIG_BOOT_PRINTK_DELAY is not set | 746 | # CONFIG_BOOT_PRINTK_DELAY is not set |
731 | # CONFIG_RCU_TORTURE_TEST is not set | 747 | # CONFIG_RCU_TORTURE_TEST is not set |
748 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
732 | # CONFIG_FAULT_INJECTION is not set | 749 | # CONFIG_FAULT_INJECTION is not set |
733 | # CONFIG_SAMPLES is not set | 750 | # CONFIG_SAMPLES is not set |
734 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 751 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
@@ -737,6 +754,7 @@ CONFIG_FORCED_INLINING=y | |||
737 | CONFIG_DEBUGGER=y | 754 | CONFIG_DEBUGGER=y |
738 | # CONFIG_KGDB is not set | 755 | # CONFIG_KGDB is not set |
739 | # CONFIG_XMON is not set | 756 | # CONFIG_XMON is not set |
757 | # CONFIG_VIRQ_DEBUG is not set | ||
740 | # CONFIG_BDI_SWITCH is not set | 758 | # CONFIG_BDI_SWITCH is not set |
741 | # CONFIG_PPC_EARLY_DEBUG is not set | 759 | # CONFIG_PPC_EARLY_DEBUG is not set |
742 | 760 | ||
@@ -749,6 +767,7 @@ CONFIG_DEBUGGER=y | |||
749 | CONFIG_CRYPTO=y | 767 | CONFIG_CRYPTO=y |
750 | CONFIG_CRYPTO_ALGAPI=y | 768 | CONFIG_CRYPTO_ALGAPI=y |
751 | CONFIG_CRYPTO_BLKCIPHER=y | 769 | CONFIG_CRYPTO_BLKCIPHER=y |
770 | # CONFIG_CRYPTO_SEQIV is not set | ||
752 | CONFIG_CRYPTO_MANAGER=y | 771 | CONFIG_CRYPTO_MANAGER=y |
753 | # CONFIG_CRYPTO_HMAC is not set | 772 | # CONFIG_CRYPTO_HMAC is not set |
754 | # CONFIG_CRYPTO_XCBC is not set | 773 | # CONFIG_CRYPTO_XCBC is not set |
@@ -766,6 +785,9 @@ CONFIG_CRYPTO_CBC=y | |||
766 | CONFIG_CRYPTO_PCBC=y | 785 | CONFIG_CRYPTO_PCBC=y |
767 | # CONFIG_CRYPTO_LRW is not set | 786 | # CONFIG_CRYPTO_LRW is not set |
768 | # CONFIG_CRYPTO_XTS is not set | 787 | # CONFIG_CRYPTO_XTS is not set |
788 | # CONFIG_CRYPTO_CTR is not set | ||
789 | # CONFIG_CRYPTO_GCM is not set | ||
790 | # CONFIG_CRYPTO_CCM is not set | ||
769 | # CONFIG_CRYPTO_CRYPTD is not set | 791 | # CONFIG_CRYPTO_CRYPTD is not set |
770 | CONFIG_CRYPTO_DES=y | 792 | CONFIG_CRYPTO_DES=y |
771 | # CONFIG_CRYPTO_FCRYPT is not set | 793 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -780,11 +802,14 @@ CONFIG_CRYPTO_DES=y | |||
780 | # CONFIG_CRYPTO_KHAZAD is not set | 802 | # CONFIG_CRYPTO_KHAZAD is not set |
781 | # CONFIG_CRYPTO_ANUBIS is not set | 803 | # CONFIG_CRYPTO_ANUBIS is not set |
782 | # CONFIG_CRYPTO_SEED is not set | 804 | # CONFIG_CRYPTO_SEED is not set |
805 | # CONFIG_CRYPTO_SALSA20 is not set | ||
783 | # CONFIG_CRYPTO_DEFLATE is not set | 806 | # CONFIG_CRYPTO_DEFLATE is not set |
784 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 807 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
785 | # CONFIG_CRYPTO_CRC32C is not set | 808 | # CONFIG_CRYPTO_CRC32C is not set |
786 | # CONFIG_CRYPTO_CAMELLIA is not set | 809 | # CONFIG_CRYPTO_CAMELLIA is not set |
787 | # CONFIG_CRYPTO_TEST is not set | 810 | # CONFIG_CRYPTO_TEST is not set |
788 | # CONFIG_CRYPTO_AUTHENC is not set | 811 | # CONFIG_CRYPTO_AUTHENC is not set |
812 | # CONFIG_CRYPTO_LZO is not set | ||
789 | CONFIG_CRYPTO_HW=y | 813 | CONFIG_CRYPTO_HW=y |
814 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
790 | # CONFIG_PPC_CLOCK is not set | 815 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/ebony_defconfig b/arch/powerpc/configs/ebony_defconfig index cf860f166659..07c8d4ce175a 100644 --- a/arch/powerpc/configs/ebony_defconfig +++ b/arch/powerpc/configs/ebony_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc6 | 3 | # Linux kernel version: 2.6.25-rc2 |
4 | # Mon Dec 24 11:16:26 2007 | 4 | # Fri Feb 15 21:50:44 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -29,6 +29,7 @@ CONFIG_GENERIC_TIME=y | |||
29 | CONFIG_GENERIC_TIME_VSYSCALL=y | 29 | CONFIG_GENERIC_TIME_VSYSCALL=y |
30 | CONFIG_GENERIC_CLOCKEVENTS=y | 30 | CONFIG_GENERIC_CLOCKEVENTS=y |
31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
32 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
34 | CONFIG_ARCH_HAS_ILOG2_U32=y | 35 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -67,17 +68,18 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
67 | CONFIG_POSIX_MQUEUE=y | 68 | CONFIG_POSIX_MQUEUE=y |
68 | # CONFIG_BSD_PROCESS_ACCT is not set | 69 | # CONFIG_BSD_PROCESS_ACCT is not set |
69 | # CONFIG_TASKSTATS is not set | 70 | # CONFIG_TASKSTATS is not set |
70 | # CONFIG_USER_NS is not set | ||
71 | # CONFIG_PID_NS is not set | ||
72 | # CONFIG_AUDIT is not set | 71 | # CONFIG_AUDIT is not set |
73 | # CONFIG_IKCONFIG is not set | 72 | # CONFIG_IKCONFIG is not set |
74 | CONFIG_LOG_BUF_SHIFT=14 | 73 | CONFIG_LOG_BUF_SHIFT=14 |
75 | # CONFIG_CGROUPS is not set | 74 | # CONFIG_CGROUPS is not set |
75 | CONFIG_GROUP_SCHED=y | ||
76 | CONFIG_FAIR_GROUP_SCHED=y | 76 | CONFIG_FAIR_GROUP_SCHED=y |
77 | CONFIG_FAIR_USER_SCHED=y | 77 | # CONFIG_RT_GROUP_SCHED is not set |
78 | # CONFIG_FAIR_CGROUP_SCHED is not set | 78 | CONFIG_USER_SCHED=y |
79 | # CONFIG_CGROUP_SCHED is not set | ||
79 | CONFIG_SYSFS_DEPRECATED=y | 80 | CONFIG_SYSFS_DEPRECATED=y |
80 | # CONFIG_RELAY is not set | 81 | # CONFIG_RELAY is not set |
82 | # CONFIG_NAMESPACES is not set | ||
81 | CONFIG_BLK_DEV_INITRD=y | 83 | CONFIG_BLK_DEV_INITRD=y |
82 | CONFIG_INITRAMFS_SOURCE="" | 84 | CONFIG_INITRAMFS_SOURCE="" |
83 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 85 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -91,11 +93,13 @@ CONFIG_HOTPLUG=y | |||
91 | CONFIG_PRINTK=y | 93 | CONFIG_PRINTK=y |
92 | CONFIG_BUG=y | 94 | CONFIG_BUG=y |
93 | CONFIG_ELF_CORE=y | 95 | CONFIG_ELF_CORE=y |
96 | CONFIG_COMPAT_BRK=y | ||
94 | CONFIG_BASE_FULL=y | 97 | CONFIG_BASE_FULL=y |
95 | CONFIG_FUTEX=y | 98 | CONFIG_FUTEX=y |
96 | CONFIG_ANON_INODES=y | 99 | CONFIG_ANON_INODES=y |
97 | CONFIG_EPOLL=y | 100 | CONFIG_EPOLL=y |
98 | CONFIG_SIGNALFD=y | 101 | CONFIG_SIGNALFD=y |
102 | CONFIG_TIMERFD=y | ||
99 | CONFIG_EVENTFD=y | 103 | CONFIG_EVENTFD=y |
100 | CONFIG_SHMEM=y | 104 | CONFIG_SHMEM=y |
101 | CONFIG_VM_EVENT_COUNTERS=y | 105 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -103,6 +107,13 @@ CONFIG_SLUB_DEBUG=y | |||
103 | # CONFIG_SLAB is not set | 107 | # CONFIG_SLAB is not set |
104 | CONFIG_SLUB=y | 108 | CONFIG_SLUB=y |
105 | # CONFIG_SLOB is not set | 109 | # CONFIG_SLOB is not set |
110 | # CONFIG_PROFILING is not set | ||
111 | # CONFIG_MARKERS is not set | ||
112 | CONFIG_HAVE_OPROFILE=y | ||
113 | # CONFIG_KPROBES is not set | ||
114 | CONFIG_HAVE_KPROBES=y | ||
115 | CONFIG_PROC_PAGE_MONITOR=y | ||
116 | CONFIG_SLABINFO=y | ||
106 | CONFIG_RT_MUTEXES=y | 117 | CONFIG_RT_MUTEXES=y |
107 | # CONFIG_TINY_SHMEM is not set | 118 | # CONFIG_TINY_SHMEM is not set |
108 | CONFIG_BASE_SMALL=0 | 119 | CONFIG_BASE_SMALL=0 |
@@ -130,13 +141,15 @@ CONFIG_DEFAULT_AS=y | |||
130 | # CONFIG_DEFAULT_CFQ is not set | 141 | # CONFIG_DEFAULT_CFQ is not set |
131 | # CONFIG_DEFAULT_NOOP is not set | 142 | # CONFIG_DEFAULT_NOOP is not set |
132 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 143 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
144 | CONFIG_CLASSIC_RCU=y | ||
145 | # CONFIG_PREEMPT_RCU is not set | ||
133 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 146 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
134 | 147 | ||
135 | # | 148 | # |
136 | # Platform support | 149 | # Platform support |
137 | # | 150 | # |
138 | # CONFIG_PPC_MPC52xx is not set | 151 | # CONFIG_PPC_MPC512x is not set |
139 | # CONFIG_PPC_MPC5200 is not set | 152 | # CONFIG_PPC_MPC5121 is not set |
140 | # CONFIG_PPC_CELL is not set | 153 | # CONFIG_PPC_CELL is not set |
141 | # CONFIG_PPC_CELL_NATIVE is not set | 154 | # CONFIG_PPC_CELL_NATIVE is not set |
142 | # CONFIG_PQ2ADS is not set | 155 | # CONFIG_PQ2ADS is not set |
@@ -146,7 +159,9 @@ CONFIG_EBONY=y | |||
146 | # CONFIG_TAISHAN is not set | 159 | # CONFIG_TAISHAN is not set |
147 | # CONFIG_KATMAI is not set | 160 | # CONFIG_KATMAI is not set |
148 | # CONFIG_RAINIER is not set | 161 | # CONFIG_RAINIER is not set |
162 | # CONFIG_WARP is not set | ||
149 | CONFIG_440GP=y | 163 | CONFIG_440GP=y |
164 | # CONFIG_IPIC is not set | ||
150 | # CONFIG_MPIC is not set | 165 | # CONFIG_MPIC is not set |
151 | # CONFIG_MPIC_WEIRD is not set | 166 | # CONFIG_MPIC_WEIRD is not set |
152 | # CONFIG_PPC_I8259 is not set | 167 | # CONFIG_PPC_I8259 is not set |
@@ -157,8 +172,8 @@ CONFIG_440GP=y | |||
157 | # CONFIG_PPC_INDIRECT_IO is not set | 172 | # CONFIG_PPC_INDIRECT_IO is not set |
158 | # CONFIG_GENERIC_IOMAP is not set | 173 | # CONFIG_GENERIC_IOMAP is not set |
159 | # CONFIG_CPU_FREQ is not set | 174 | # CONFIG_CPU_FREQ is not set |
160 | # CONFIG_CPM2 is not set | ||
161 | # CONFIG_FSL_ULI1575 is not set | 175 | # CONFIG_FSL_ULI1575 is not set |
176 | CONFIG_OF_RTC=y | ||
162 | 177 | ||
163 | # | 178 | # |
164 | # Kernel options | 179 | # Kernel options |
@@ -173,13 +188,18 @@ CONFIG_HZ_250=y | |||
173 | # CONFIG_HZ_300 is not set | 188 | # CONFIG_HZ_300 is not set |
174 | # CONFIG_HZ_1000 is not set | 189 | # CONFIG_HZ_1000 is not set |
175 | CONFIG_HZ=250 | 190 | CONFIG_HZ=250 |
191 | # CONFIG_SCHED_HRTICK is not set | ||
176 | CONFIG_PREEMPT_NONE=y | 192 | CONFIG_PREEMPT_NONE=y |
177 | # CONFIG_PREEMPT_VOLUNTARY is not set | 193 | # CONFIG_PREEMPT_VOLUNTARY is not set |
178 | # CONFIG_PREEMPT is not set | 194 | # CONFIG_PREEMPT is not set |
195 | CONFIG_RCU_TRACE=y | ||
179 | CONFIG_BINFMT_ELF=y | 196 | CONFIG_BINFMT_ELF=y |
180 | # CONFIG_BINFMT_MISC is not set | 197 | # CONFIG_BINFMT_MISC is not set |
181 | CONFIG_MATH_EMULATION=y | 198 | CONFIG_MATH_EMULATION=y |
199 | # CONFIG_IOMMU_HELPER is not set | ||
182 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 200 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
201 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
202 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
183 | CONFIG_ARCH_FLATMEM_ENABLE=y | 203 | CONFIG_ARCH_FLATMEM_ENABLE=y |
184 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 204 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
185 | CONFIG_SELECT_MEMORY_MODEL=y | 205 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -198,8 +218,6 @@ CONFIG_VIRT_TO_BUS=y | |||
198 | CONFIG_PROC_DEVICETREE=y | 218 | CONFIG_PROC_DEVICETREE=y |
199 | # CONFIG_CMDLINE_BOOL is not set | 219 | # CONFIG_CMDLINE_BOOL is not set |
200 | CONFIG_SECCOMP=y | 220 | CONFIG_SECCOMP=y |
201 | CONFIG_WANT_DEVICE_TREE=y | ||
202 | CONFIG_DEVICE_TREE="ebony.dts" | ||
203 | CONFIG_ISA_DMA_API=y | 221 | CONFIG_ISA_DMA_API=y |
204 | 222 | ||
205 | # | 223 | # |
@@ -299,6 +317,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
299 | # | 317 | # |
300 | # CONFIG_NET_PKTGEN is not set | 318 | # CONFIG_NET_PKTGEN is not set |
301 | # CONFIG_HAMRADIO is not set | 319 | # CONFIG_HAMRADIO is not set |
320 | # CONFIG_CAN is not set | ||
302 | # CONFIG_IRDA is not set | 321 | # CONFIG_IRDA is not set |
303 | # CONFIG_BT is not set | 322 | # CONFIG_BT is not set |
304 | # CONFIG_AF_RXRPC is not set | 323 | # CONFIG_AF_RXRPC is not set |
@@ -335,6 +354,7 @@ CONFIG_MTD=y | |||
335 | CONFIG_MTD_PARTITIONS=y | 354 | CONFIG_MTD_PARTITIONS=y |
336 | # CONFIG_MTD_REDBOOT_PARTS is not set | 355 | # CONFIG_MTD_REDBOOT_PARTS is not set |
337 | # CONFIG_MTD_CMDLINE_PARTS is not set | 356 | # CONFIG_MTD_CMDLINE_PARTS is not set |
357 | CONFIG_MTD_OF_PARTS=y | ||
338 | 358 | ||
339 | # | 359 | # |
340 | # User Modules And Translation Layers | 360 | # User Modules And Translation Layers |
@@ -420,7 +440,7 @@ CONFIG_BLK_DEV=y | |||
420 | CONFIG_BLK_DEV_RAM=y | 440 | CONFIG_BLK_DEV_RAM=y |
421 | CONFIG_BLK_DEV_RAM_COUNT=16 | 441 | CONFIG_BLK_DEV_RAM_COUNT=16 |
422 | CONFIG_BLK_DEV_RAM_SIZE=35000 | 442 | CONFIG_BLK_DEV_RAM_SIZE=35000 |
423 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 443 | # CONFIG_BLK_DEV_XIP is not set |
424 | # CONFIG_CDROM_PKTCDVD is not set | 444 | # CONFIG_CDROM_PKTCDVD is not set |
425 | # CONFIG_ATA_OVER_ETH is not set | 445 | # CONFIG_ATA_OVER_ETH is not set |
426 | # CONFIG_XILINX_SYSACE is not set | 446 | # CONFIG_XILINX_SYSACE is not set |
@@ -429,6 +449,8 @@ CONFIG_MISC_DEVICES=y | |||
429 | # CONFIG_EEPROM_93CX6 is not set | 449 | # CONFIG_EEPROM_93CX6 is not set |
430 | # CONFIG_SGI_IOC4 is not set | 450 | # CONFIG_SGI_IOC4 is not set |
431 | # CONFIG_TIFM_CORE is not set | 451 | # CONFIG_TIFM_CORE is not set |
452 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
453 | CONFIG_HAVE_IDE=y | ||
432 | # CONFIG_IDE is not set | 454 | # CONFIG_IDE is not set |
433 | 455 | ||
434 | # | 456 | # |
@@ -457,7 +479,6 @@ CONFIG_NETDEVICES=y | |||
457 | # CONFIG_EQUALIZER is not set | 479 | # CONFIG_EQUALIZER is not set |
458 | # CONFIG_TUN is not set | 480 | # CONFIG_TUN is not set |
459 | # CONFIG_VETH is not set | 481 | # CONFIG_VETH is not set |
460 | # CONFIG_IP1000 is not set | ||
461 | # CONFIG_ARCNET is not set | 482 | # CONFIG_ARCNET is not set |
462 | # CONFIG_PHYLIB is not set | 483 | # CONFIG_PHYLIB is not set |
463 | CONFIG_NET_ETHERNET=y | 484 | CONFIG_NET_ETHERNET=y |
@@ -486,6 +507,9 @@ CONFIG_NETDEV_1000=y | |||
486 | # CONFIG_DL2K is not set | 507 | # CONFIG_DL2K is not set |
487 | # CONFIG_E1000 is not set | 508 | # CONFIG_E1000 is not set |
488 | # CONFIG_E1000E is not set | 509 | # CONFIG_E1000E is not set |
510 | # CONFIG_E1000E_ENABLED is not set | ||
511 | # CONFIG_IP1000 is not set | ||
512 | # CONFIG_IGB is not set | ||
489 | # CONFIG_NS83820 is not set | 513 | # CONFIG_NS83820 is not set |
490 | # CONFIG_HAMACHI is not set | 514 | # CONFIG_HAMACHI is not set |
491 | # CONFIG_YELLOWFIN is not set | 515 | # CONFIG_YELLOWFIN is not set |
@@ -510,6 +534,7 @@ CONFIG_NETDEV_10000=y | |||
510 | # CONFIG_NIU is not set | 534 | # CONFIG_NIU is not set |
511 | # CONFIG_MLX4_CORE is not set | 535 | # CONFIG_MLX4_CORE is not set |
512 | # CONFIG_TEHUTI is not set | 536 | # CONFIG_TEHUTI is not set |
537 | # CONFIG_BNX2X is not set | ||
513 | # CONFIG_TR is not set | 538 | # CONFIG_TR is not set |
514 | 539 | ||
515 | # | 540 | # |
@@ -522,7 +547,6 @@ CONFIG_NETDEV_10000=y | |||
522 | # CONFIG_HIPPI is not set | 547 | # CONFIG_HIPPI is not set |
523 | # CONFIG_PPP is not set | 548 | # CONFIG_PPP is not set |
524 | # CONFIG_SLIP is not set | 549 | # CONFIG_SLIP is not set |
525 | # CONFIG_SHAPER is not set | ||
526 | # CONFIG_NETCONSOLE is not set | 550 | # CONFIG_NETCONSOLE is not set |
527 | # CONFIG_NETPOLL is not set | 551 | # CONFIG_NETPOLL is not set |
528 | # CONFIG_NET_POLL_CONTROLLER is not set | 552 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -545,6 +569,7 @@ CONFIG_NETDEV_10000=y | |||
545 | # | 569 | # |
546 | # CONFIG_VT is not set | 570 | # CONFIG_VT is not set |
547 | # CONFIG_SERIAL_NONSTANDARD is not set | 571 | # CONFIG_SERIAL_NONSTANDARD is not set |
572 | # CONFIG_NOZOMI is not set | ||
548 | 573 | ||
549 | # | 574 | # |
550 | # Serial drivers | 575 | # Serial drivers |
@@ -590,6 +615,7 @@ CONFIG_DEVPORT=y | |||
590 | # CONFIG_W1 is not set | 615 | # CONFIG_W1 is not set |
591 | # CONFIG_POWER_SUPPLY is not set | 616 | # CONFIG_POWER_SUPPLY is not set |
592 | # CONFIG_HWMON is not set | 617 | # CONFIG_HWMON is not set |
618 | CONFIG_THERMAL=y | ||
593 | # CONFIG_WATCHDOG is not set | 619 | # CONFIG_WATCHDOG is not set |
594 | 620 | ||
595 | # | 621 | # |
@@ -638,12 +664,9 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
638 | # | 664 | # |
639 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 665 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
640 | # | 666 | # |
641 | |||
642 | # | ||
643 | # USB Gadget Support | ||
644 | # | ||
645 | # CONFIG_USB_GADGET is not set | 667 | # CONFIG_USB_GADGET is not set |
646 | # CONFIG_MMC is not set | 668 | # CONFIG_MMC is not set |
669 | # CONFIG_MEMSTICK is not set | ||
647 | # CONFIG_NEW_LEDS is not set | 670 | # CONFIG_NEW_LEDS is not set |
648 | # CONFIG_INFINIBAND is not set | 671 | # CONFIG_INFINIBAND is not set |
649 | # CONFIG_EDAC is not set | 672 | # CONFIG_EDAC is not set |
@@ -668,12 +691,10 @@ CONFIG_EXT2_FS=y | |||
668 | # CONFIG_XFS_FS is not set | 691 | # CONFIG_XFS_FS is not set |
669 | # CONFIG_GFS2_FS is not set | 692 | # CONFIG_GFS2_FS is not set |
670 | # CONFIG_OCFS2_FS is not set | 693 | # CONFIG_OCFS2_FS is not set |
671 | # CONFIG_MINIX_FS is not set | 694 | CONFIG_DNOTIFY=y |
672 | # CONFIG_ROMFS_FS is not set | ||
673 | CONFIG_INOTIFY=y | 695 | CONFIG_INOTIFY=y |
674 | CONFIG_INOTIFY_USER=y | 696 | CONFIG_INOTIFY_USER=y |
675 | # CONFIG_QUOTA is not set | 697 | # CONFIG_QUOTA is not set |
676 | CONFIG_DNOTIFY=y | ||
677 | # CONFIG_AUTOFS_FS is not set | 698 | # CONFIG_AUTOFS_FS is not set |
678 | # CONFIG_AUTOFS4_FS is not set | 699 | # CONFIG_AUTOFS4_FS is not set |
679 | # CONFIG_FUSE_FS is not set | 700 | # CONFIG_FUSE_FS is not set |
@@ -726,8 +747,10 @@ CONFIG_JFFS2_RTIME=y | |||
726 | # CONFIG_JFFS2_RUBIN is not set | 747 | # CONFIG_JFFS2_RUBIN is not set |
727 | CONFIG_CRAMFS=y | 748 | CONFIG_CRAMFS=y |
728 | # CONFIG_VXFS_FS is not set | 749 | # CONFIG_VXFS_FS is not set |
750 | # CONFIG_MINIX_FS is not set | ||
729 | # CONFIG_HPFS_FS is not set | 751 | # CONFIG_HPFS_FS is not set |
730 | # CONFIG_QNX4FS_FS is not set | 752 | # CONFIG_QNX4FS_FS is not set |
753 | # CONFIG_ROMFS_FS is not set | ||
731 | # CONFIG_SYSV_FS is not set | 754 | # CONFIG_SYSV_FS is not set |
732 | # CONFIG_UFS_FS is not set | 755 | # CONFIG_UFS_FS is not set |
733 | CONFIG_NETWORK_FILESYSTEMS=y | 756 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -758,7 +781,6 @@ CONFIG_SUNRPC=y | |||
758 | CONFIG_MSDOS_PARTITION=y | 781 | CONFIG_MSDOS_PARTITION=y |
759 | # CONFIG_NLS is not set | 782 | # CONFIG_NLS is not set |
760 | # CONFIG_DLM is not set | 783 | # CONFIG_DLM is not set |
761 | # CONFIG_UCC_SLOW is not set | ||
762 | 784 | ||
763 | # | 785 | # |
764 | # Library routines | 786 | # Library routines |
@@ -776,7 +798,6 @@ CONFIG_PLIST=y | |||
776 | CONFIG_HAS_IOMEM=y | 798 | CONFIG_HAS_IOMEM=y |
777 | CONFIG_HAS_IOPORT=y | 799 | CONFIG_HAS_IOPORT=y |
778 | CONFIG_HAS_DMA=y | 800 | CONFIG_HAS_DMA=y |
779 | # CONFIG_INSTRUMENTATION is not set | ||
780 | 801 | ||
781 | # | 802 | # |
782 | # Kernel hacking | 803 | # Kernel hacking |
@@ -786,7 +807,7 @@ CONFIG_ENABLE_WARN_DEPRECATED=y | |||
786 | CONFIG_ENABLE_MUST_CHECK=y | 807 | CONFIG_ENABLE_MUST_CHECK=y |
787 | CONFIG_MAGIC_SYSRQ=y | 808 | CONFIG_MAGIC_SYSRQ=y |
788 | # CONFIG_UNUSED_SYMBOLS is not set | 809 | # CONFIG_UNUSED_SYMBOLS is not set |
789 | # CONFIG_DEBUG_FS is not set | 810 | CONFIG_DEBUG_FS=y |
790 | # CONFIG_HEADERS_CHECK is not set | 811 | # CONFIG_HEADERS_CHECK is not set |
791 | CONFIG_DEBUG_KERNEL=y | 812 | CONFIG_DEBUG_KERNEL=y |
792 | # CONFIG_DEBUG_SHIRQ is not set | 813 | # CONFIG_DEBUG_SHIRQ is not set |
@@ -795,6 +816,7 @@ CONFIG_SCHED_DEBUG=y | |||
795 | # CONFIG_SCHEDSTATS is not set | 816 | # CONFIG_SCHEDSTATS is not set |
796 | # CONFIG_TIMER_STATS is not set | 817 | # CONFIG_TIMER_STATS is not set |
797 | # CONFIG_SLUB_DEBUG_ON is not set | 818 | # CONFIG_SLUB_DEBUG_ON is not set |
819 | # CONFIG_SLUB_STATS is not set | ||
798 | # CONFIG_DEBUG_RT_MUTEXES is not set | 820 | # CONFIG_DEBUG_RT_MUTEXES is not set |
799 | # CONFIG_RT_MUTEX_TESTER is not set | 821 | # CONFIG_RT_MUTEX_TESTER is not set |
800 | # CONFIG_DEBUG_SPINLOCK is not set | 822 | # CONFIG_DEBUG_SPINLOCK is not set |
@@ -807,15 +829,16 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
807 | # CONFIG_DEBUG_VM is not set | 829 | # CONFIG_DEBUG_VM is not set |
808 | # CONFIG_DEBUG_LIST is not set | 830 | # CONFIG_DEBUG_LIST is not set |
809 | # CONFIG_DEBUG_SG is not set | 831 | # CONFIG_DEBUG_SG is not set |
810 | CONFIG_FORCED_INLINING=y | ||
811 | # CONFIG_BOOT_PRINTK_DELAY is not set | 832 | # CONFIG_BOOT_PRINTK_DELAY is not set |
812 | # CONFIG_RCU_TORTURE_TEST is not set | 833 | # CONFIG_RCU_TORTURE_TEST is not set |
834 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
813 | # CONFIG_FAULT_INJECTION is not set | 835 | # CONFIG_FAULT_INJECTION is not set |
814 | # CONFIG_SAMPLES is not set | 836 | # CONFIG_SAMPLES is not set |
815 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 837 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
816 | # CONFIG_DEBUG_STACK_USAGE is not set | 838 | # CONFIG_DEBUG_STACK_USAGE is not set |
817 | # CONFIG_DEBUG_PAGEALLOC is not set | 839 | # CONFIG_DEBUG_PAGEALLOC is not set |
818 | # CONFIG_DEBUGGER is not set | 840 | # CONFIG_DEBUGGER is not set |
841 | # CONFIG_VIRQ_DEBUG is not set | ||
819 | # CONFIG_BDI_SWITCH is not set | 842 | # CONFIG_BDI_SWITCH is not set |
820 | # CONFIG_PPC_EARLY_DEBUG is not set | 843 | # CONFIG_PPC_EARLY_DEBUG is not set |
821 | 844 | ||
@@ -828,6 +851,7 @@ CONFIG_FORCED_INLINING=y | |||
828 | CONFIG_CRYPTO=y | 851 | CONFIG_CRYPTO=y |
829 | CONFIG_CRYPTO_ALGAPI=y | 852 | CONFIG_CRYPTO_ALGAPI=y |
830 | CONFIG_CRYPTO_BLKCIPHER=y | 853 | CONFIG_CRYPTO_BLKCIPHER=y |
854 | # CONFIG_CRYPTO_SEQIV is not set | ||
831 | CONFIG_CRYPTO_MANAGER=y | 855 | CONFIG_CRYPTO_MANAGER=y |
832 | # CONFIG_CRYPTO_HMAC is not set | 856 | # CONFIG_CRYPTO_HMAC is not set |
833 | # CONFIG_CRYPTO_XCBC is not set | 857 | # CONFIG_CRYPTO_XCBC is not set |
@@ -845,6 +869,9 @@ CONFIG_CRYPTO_CBC=y | |||
845 | CONFIG_CRYPTO_PCBC=y | 869 | CONFIG_CRYPTO_PCBC=y |
846 | # CONFIG_CRYPTO_LRW is not set | 870 | # CONFIG_CRYPTO_LRW is not set |
847 | # CONFIG_CRYPTO_XTS is not set | 871 | # CONFIG_CRYPTO_XTS is not set |
872 | # CONFIG_CRYPTO_CTR is not set | ||
873 | # CONFIG_CRYPTO_GCM is not set | ||
874 | # CONFIG_CRYPTO_CCM is not set | ||
848 | # CONFIG_CRYPTO_CRYPTD is not set | 875 | # CONFIG_CRYPTO_CRYPTD is not set |
849 | CONFIG_CRYPTO_DES=y | 876 | CONFIG_CRYPTO_DES=y |
850 | # CONFIG_CRYPTO_FCRYPT is not set | 877 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -859,11 +886,13 @@ CONFIG_CRYPTO_DES=y | |||
859 | # CONFIG_CRYPTO_KHAZAD is not set | 886 | # CONFIG_CRYPTO_KHAZAD is not set |
860 | # CONFIG_CRYPTO_ANUBIS is not set | 887 | # CONFIG_CRYPTO_ANUBIS is not set |
861 | # CONFIG_CRYPTO_SEED is not set | 888 | # CONFIG_CRYPTO_SEED is not set |
889 | # CONFIG_CRYPTO_SALSA20 is not set | ||
862 | # CONFIG_CRYPTO_DEFLATE is not set | 890 | # CONFIG_CRYPTO_DEFLATE is not set |
863 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 891 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
864 | # CONFIG_CRYPTO_CRC32C is not set | 892 | # CONFIG_CRYPTO_CRC32C is not set |
865 | # CONFIG_CRYPTO_CAMELLIA is not set | 893 | # CONFIG_CRYPTO_CAMELLIA is not set |
866 | # CONFIG_CRYPTO_TEST is not set | 894 | # CONFIG_CRYPTO_TEST is not set |
867 | # CONFIG_CRYPTO_AUTHENC is not set | 895 | # CONFIG_CRYPTO_AUTHENC is not set |
896 | # CONFIG_CRYPTO_LZO is not set | ||
868 | # CONFIG_CRYPTO_HW is not set | 897 | # CONFIG_CRYPTO_HW is not set |
869 | # CONFIG_PPC_CLOCK is not set | 898 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/ep405_defconfig b/arch/powerpc/configs/ep405_defconfig index 3829c9166256..e24240a9a047 100644 --- a/arch/powerpc/configs/ep405_defconfig +++ b/arch/powerpc/configs/ep405_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc6 | 3 | # Linux kernel version: 2.6.25-rc2 |
4 | # Mon Dec 24 11:17:13 2007 | 4 | # Fri Feb 15 21:50:09 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -26,6 +26,7 @@ CONFIG_GENERIC_TIME=y | |||
26 | CONFIG_GENERIC_TIME_VSYSCALL=y | 26 | CONFIG_GENERIC_TIME_VSYSCALL=y |
27 | CONFIG_GENERIC_CLOCKEVENTS=y | 27 | CONFIG_GENERIC_CLOCKEVENTS=y |
28 | CONFIG_GENERIC_HARDIRQS=y | 28 | CONFIG_GENERIC_HARDIRQS=y |
29 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
29 | CONFIG_IRQ_PER_CPU=y | 30 | CONFIG_IRQ_PER_CPU=y |
30 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 31 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
31 | CONFIG_ARCH_HAS_ILOG2_U32=y | 32 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -64,17 +65,18 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
64 | CONFIG_POSIX_MQUEUE=y | 65 | CONFIG_POSIX_MQUEUE=y |
65 | # CONFIG_BSD_PROCESS_ACCT is not set | 66 | # CONFIG_BSD_PROCESS_ACCT is not set |
66 | # CONFIG_TASKSTATS is not set | 67 | # CONFIG_TASKSTATS is not set |
67 | # CONFIG_USER_NS is not set | ||
68 | # CONFIG_PID_NS is not set | ||
69 | # CONFIG_AUDIT is not set | 68 | # CONFIG_AUDIT is not set |
70 | # CONFIG_IKCONFIG is not set | 69 | # CONFIG_IKCONFIG is not set |
71 | CONFIG_LOG_BUF_SHIFT=14 | 70 | CONFIG_LOG_BUF_SHIFT=14 |
72 | # CONFIG_CGROUPS is not set | 71 | # CONFIG_CGROUPS is not set |
72 | CONFIG_GROUP_SCHED=y | ||
73 | CONFIG_FAIR_GROUP_SCHED=y | 73 | CONFIG_FAIR_GROUP_SCHED=y |
74 | CONFIG_FAIR_USER_SCHED=y | 74 | # CONFIG_RT_GROUP_SCHED is not set |
75 | # CONFIG_FAIR_CGROUP_SCHED is not set | 75 | CONFIG_USER_SCHED=y |
76 | # CONFIG_CGROUP_SCHED is not set | ||
76 | CONFIG_SYSFS_DEPRECATED=y | 77 | CONFIG_SYSFS_DEPRECATED=y |
77 | # CONFIG_RELAY is not set | 78 | # CONFIG_RELAY is not set |
79 | # CONFIG_NAMESPACES is not set | ||
78 | CONFIG_BLK_DEV_INITRD=y | 80 | CONFIG_BLK_DEV_INITRD=y |
79 | CONFIG_INITRAMFS_SOURCE="" | 81 | CONFIG_INITRAMFS_SOURCE="" |
80 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 82 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -88,11 +90,13 @@ CONFIG_HOTPLUG=y | |||
88 | CONFIG_PRINTK=y | 90 | CONFIG_PRINTK=y |
89 | CONFIG_BUG=y | 91 | CONFIG_BUG=y |
90 | CONFIG_ELF_CORE=y | 92 | CONFIG_ELF_CORE=y |
93 | CONFIG_COMPAT_BRK=y | ||
91 | CONFIG_BASE_FULL=y | 94 | CONFIG_BASE_FULL=y |
92 | CONFIG_FUTEX=y | 95 | CONFIG_FUTEX=y |
93 | CONFIG_ANON_INODES=y | 96 | CONFIG_ANON_INODES=y |
94 | CONFIG_EPOLL=y | 97 | CONFIG_EPOLL=y |
95 | CONFIG_SIGNALFD=y | 98 | CONFIG_SIGNALFD=y |
99 | CONFIG_TIMERFD=y | ||
96 | CONFIG_EVENTFD=y | 100 | CONFIG_EVENTFD=y |
97 | CONFIG_SHMEM=y | 101 | CONFIG_SHMEM=y |
98 | CONFIG_VM_EVENT_COUNTERS=y | 102 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -100,6 +104,13 @@ CONFIG_SLUB_DEBUG=y | |||
100 | # CONFIG_SLAB is not set | 104 | # CONFIG_SLAB is not set |
101 | CONFIG_SLUB=y | 105 | CONFIG_SLUB=y |
102 | # CONFIG_SLOB is not set | 106 | # CONFIG_SLOB is not set |
107 | # CONFIG_PROFILING is not set | ||
108 | # CONFIG_MARKERS is not set | ||
109 | CONFIG_HAVE_OPROFILE=y | ||
110 | # CONFIG_KPROBES is not set | ||
111 | CONFIG_HAVE_KPROBES=y | ||
112 | CONFIG_PROC_PAGE_MONITOR=y | ||
113 | CONFIG_SLABINFO=y | ||
103 | CONFIG_RT_MUTEXES=y | 114 | CONFIG_RT_MUTEXES=y |
104 | # CONFIG_TINY_SHMEM is not set | 115 | # CONFIG_TINY_SHMEM is not set |
105 | CONFIG_BASE_SMALL=0 | 116 | CONFIG_BASE_SMALL=0 |
@@ -127,13 +138,15 @@ CONFIG_DEFAULT_AS=y | |||
127 | # CONFIG_DEFAULT_CFQ is not set | 138 | # CONFIG_DEFAULT_CFQ is not set |
128 | # CONFIG_DEFAULT_NOOP is not set | 139 | # CONFIG_DEFAULT_NOOP is not set |
129 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 140 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
141 | CONFIG_CLASSIC_RCU=y | ||
142 | # CONFIG_PREEMPT_RCU is not set | ||
130 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 143 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
131 | 144 | ||
132 | # | 145 | # |
133 | # Platform support | 146 | # Platform support |
134 | # | 147 | # |
135 | # CONFIG_PPC_MPC52xx is not set | 148 | # CONFIG_PPC_MPC512x is not set |
136 | # CONFIG_PPC_MPC5200 is not set | 149 | # CONFIG_PPC_MPC5121 is not set |
137 | # CONFIG_PPC_CELL is not set | 150 | # CONFIG_PPC_CELL is not set |
138 | # CONFIG_PPC_CELL_NATIVE is not set | 151 | # CONFIG_PPC_CELL_NATIVE is not set |
139 | # CONFIG_PQ2ADS is not set | 152 | # CONFIG_PQ2ADS is not set |
@@ -145,6 +158,7 @@ CONFIG_EP405=y | |||
145 | CONFIG_405GP=y | 158 | CONFIG_405GP=y |
146 | CONFIG_IBM405_ERR77=y | 159 | CONFIG_IBM405_ERR77=y |
147 | CONFIG_IBM405_ERR51=y | 160 | CONFIG_IBM405_ERR51=y |
161 | # CONFIG_IPIC is not set | ||
148 | # CONFIG_MPIC is not set | 162 | # CONFIG_MPIC is not set |
149 | # CONFIG_MPIC_WEIRD is not set | 163 | # CONFIG_MPIC_WEIRD is not set |
150 | # CONFIG_PPC_I8259 is not set | 164 | # CONFIG_PPC_I8259 is not set |
@@ -155,7 +169,6 @@ CONFIG_IBM405_ERR51=y | |||
155 | # CONFIG_PPC_INDIRECT_IO is not set | 169 | # CONFIG_PPC_INDIRECT_IO is not set |
156 | # CONFIG_GENERIC_IOMAP is not set | 170 | # CONFIG_GENERIC_IOMAP is not set |
157 | # CONFIG_CPU_FREQ is not set | 171 | # CONFIG_CPU_FREQ is not set |
158 | # CONFIG_CPM2 is not set | ||
159 | # CONFIG_FSL_ULI1575 is not set | 172 | # CONFIG_FSL_ULI1575 is not set |
160 | 173 | ||
161 | # | 174 | # |
@@ -171,13 +184,18 @@ CONFIG_HZ_250=y | |||
171 | # CONFIG_HZ_300 is not set | 184 | # CONFIG_HZ_300 is not set |
172 | # CONFIG_HZ_1000 is not set | 185 | # CONFIG_HZ_1000 is not set |
173 | CONFIG_HZ=250 | 186 | CONFIG_HZ=250 |
187 | # CONFIG_SCHED_HRTICK is not set | ||
174 | CONFIG_PREEMPT_NONE=y | 188 | CONFIG_PREEMPT_NONE=y |
175 | # CONFIG_PREEMPT_VOLUNTARY is not set | 189 | # CONFIG_PREEMPT_VOLUNTARY is not set |
176 | # CONFIG_PREEMPT is not set | 190 | # CONFIG_PREEMPT is not set |
191 | CONFIG_RCU_TRACE=y | ||
177 | CONFIG_BINFMT_ELF=y | 192 | CONFIG_BINFMT_ELF=y |
178 | # CONFIG_BINFMT_MISC is not set | 193 | # CONFIG_BINFMT_MISC is not set |
179 | # CONFIG_MATH_EMULATION is not set | 194 | # CONFIG_MATH_EMULATION is not set |
195 | # CONFIG_IOMMU_HELPER is not set | ||
180 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 196 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
197 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
198 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
181 | CONFIG_ARCH_FLATMEM_ENABLE=y | 199 | CONFIG_ARCH_FLATMEM_ENABLE=y |
182 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 200 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
183 | CONFIG_SELECT_MEMORY_MODEL=y | 201 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -196,11 +214,7 @@ CONFIG_VIRT_TO_BUS=y | |||
196 | CONFIG_PROC_DEVICETREE=y | 214 | CONFIG_PROC_DEVICETREE=y |
197 | # CONFIG_CMDLINE_BOOL is not set | 215 | # CONFIG_CMDLINE_BOOL is not set |
198 | # CONFIG_PM is not set | 216 | # CONFIG_PM is not set |
199 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
200 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
201 | CONFIG_SECCOMP=y | 217 | CONFIG_SECCOMP=y |
202 | CONFIG_WANT_DEVICE_TREE=y | ||
203 | CONFIG_DEVICE_TREE="ep405.dts" | ||
204 | CONFIG_ISA_DMA_API=y | 218 | CONFIG_ISA_DMA_API=y |
205 | 219 | ||
206 | # | 220 | # |
@@ -300,6 +314,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
300 | # | 314 | # |
301 | # CONFIG_NET_PKTGEN is not set | 315 | # CONFIG_NET_PKTGEN is not set |
302 | # CONFIG_HAMRADIO is not set | 316 | # CONFIG_HAMRADIO is not set |
317 | # CONFIG_CAN is not set | ||
303 | # CONFIG_IRDA is not set | 318 | # CONFIG_IRDA is not set |
304 | # CONFIG_BT is not set | 319 | # CONFIG_BT is not set |
305 | # CONFIG_AF_RXRPC is not set | 320 | # CONFIG_AF_RXRPC is not set |
@@ -336,6 +351,7 @@ CONFIG_MTD=y | |||
336 | CONFIG_MTD_PARTITIONS=y | 351 | CONFIG_MTD_PARTITIONS=y |
337 | # CONFIG_MTD_REDBOOT_PARTS is not set | 352 | # CONFIG_MTD_REDBOOT_PARTS is not set |
338 | CONFIG_MTD_CMDLINE_PARTS=y | 353 | CONFIG_MTD_CMDLINE_PARTS=y |
354 | CONFIG_MTD_OF_PARTS=y | ||
339 | 355 | ||
340 | # | 356 | # |
341 | # User Modules And Translation Layers | 357 | # User Modules And Translation Layers |
@@ -423,7 +439,7 @@ CONFIG_BLK_DEV=y | |||
423 | CONFIG_BLK_DEV_RAM=y | 439 | CONFIG_BLK_DEV_RAM=y |
424 | CONFIG_BLK_DEV_RAM_COUNT=16 | 440 | CONFIG_BLK_DEV_RAM_COUNT=16 |
425 | CONFIG_BLK_DEV_RAM_SIZE=35000 | 441 | CONFIG_BLK_DEV_RAM_SIZE=35000 |
426 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 442 | # CONFIG_BLK_DEV_XIP is not set |
427 | # CONFIG_CDROM_PKTCDVD is not set | 443 | # CONFIG_CDROM_PKTCDVD is not set |
428 | # CONFIG_ATA_OVER_ETH is not set | 444 | # CONFIG_ATA_OVER_ETH is not set |
429 | # CONFIG_XILINX_SYSACE is not set | 445 | # CONFIG_XILINX_SYSACE is not set |
@@ -432,6 +448,8 @@ CONFIG_MISC_DEVICES=y | |||
432 | # CONFIG_EEPROM_93CX6 is not set | 448 | # CONFIG_EEPROM_93CX6 is not set |
433 | # CONFIG_SGI_IOC4 is not set | 449 | # CONFIG_SGI_IOC4 is not set |
434 | # CONFIG_TIFM_CORE is not set | 450 | # CONFIG_TIFM_CORE is not set |
451 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
452 | CONFIG_HAVE_IDE=y | ||
435 | # CONFIG_IDE is not set | 453 | # CONFIG_IDE is not set |
436 | 454 | ||
437 | # | 455 | # |
@@ -460,7 +478,6 @@ CONFIG_NETDEVICES=y | |||
460 | # CONFIG_EQUALIZER is not set | 478 | # CONFIG_EQUALIZER is not set |
461 | # CONFIG_TUN is not set | 479 | # CONFIG_TUN is not set |
462 | # CONFIG_VETH is not set | 480 | # CONFIG_VETH is not set |
463 | # CONFIG_IP1000 is not set | ||
464 | # CONFIG_ARCNET is not set | 481 | # CONFIG_ARCNET is not set |
465 | # CONFIG_PHYLIB is not set | 482 | # CONFIG_PHYLIB is not set |
466 | CONFIG_NET_ETHERNET=y | 483 | CONFIG_NET_ETHERNET=y |
@@ -489,6 +506,9 @@ CONFIG_NETDEV_1000=y | |||
489 | # CONFIG_DL2K is not set | 506 | # CONFIG_DL2K is not set |
490 | # CONFIG_E1000 is not set | 507 | # CONFIG_E1000 is not set |
491 | # CONFIG_E1000E is not set | 508 | # CONFIG_E1000E is not set |
509 | # CONFIG_E1000E_ENABLED is not set | ||
510 | # CONFIG_IP1000 is not set | ||
511 | # CONFIG_IGB is not set | ||
492 | # CONFIG_NS83820 is not set | 512 | # CONFIG_NS83820 is not set |
493 | # CONFIG_HAMACHI is not set | 513 | # CONFIG_HAMACHI is not set |
494 | # CONFIG_YELLOWFIN is not set | 514 | # CONFIG_YELLOWFIN is not set |
@@ -513,6 +533,7 @@ CONFIG_NETDEV_10000=y | |||
513 | # CONFIG_NIU is not set | 533 | # CONFIG_NIU is not set |
514 | # CONFIG_MLX4_CORE is not set | 534 | # CONFIG_MLX4_CORE is not set |
515 | # CONFIG_TEHUTI is not set | 535 | # CONFIG_TEHUTI is not set |
536 | # CONFIG_BNX2X is not set | ||
516 | # CONFIG_TR is not set | 537 | # CONFIG_TR is not set |
517 | 538 | ||
518 | # | 539 | # |
@@ -534,7 +555,6 @@ CONFIG_NETDEV_10000=y | |||
534 | # CONFIG_HIPPI is not set | 555 | # CONFIG_HIPPI is not set |
535 | # CONFIG_PPP is not set | 556 | # CONFIG_PPP is not set |
536 | # CONFIG_SLIP is not set | 557 | # CONFIG_SLIP is not set |
537 | # CONFIG_SHAPER is not set | ||
538 | # CONFIG_NETCONSOLE is not set | 558 | # CONFIG_NETCONSOLE is not set |
539 | # CONFIG_NETPOLL is not set | 559 | # CONFIG_NETPOLL is not set |
540 | # CONFIG_NET_POLL_CONTROLLER is not set | 560 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -557,6 +577,7 @@ CONFIG_NETDEV_10000=y | |||
557 | # | 577 | # |
558 | # CONFIG_VT is not set | 578 | # CONFIG_VT is not set |
559 | # CONFIG_SERIAL_NONSTANDARD is not set | 579 | # CONFIG_SERIAL_NONSTANDARD is not set |
580 | # CONFIG_NOZOMI is not set | ||
560 | 581 | ||
561 | # | 582 | # |
562 | # Serial drivers | 583 | # Serial drivers |
@@ -602,6 +623,7 @@ CONFIG_DEVPORT=y | |||
602 | # CONFIG_W1 is not set | 623 | # CONFIG_W1 is not set |
603 | # CONFIG_POWER_SUPPLY is not set | 624 | # CONFIG_POWER_SUPPLY is not set |
604 | # CONFIG_HWMON is not set | 625 | # CONFIG_HWMON is not set |
626 | CONFIG_THERMAL=y | ||
605 | # CONFIG_WATCHDOG is not set | 627 | # CONFIG_WATCHDOG is not set |
606 | 628 | ||
607 | # | 629 | # |
@@ -647,6 +669,7 @@ CONFIG_USB_ARCH_HAS_OHCI=y | |||
647 | CONFIG_USB_ARCH_HAS_EHCI=y | 669 | CONFIG_USB_ARCH_HAS_EHCI=y |
648 | CONFIG_USB=y | 670 | CONFIG_USB=y |
649 | # CONFIG_USB_DEBUG is not set | 671 | # CONFIG_USB_DEBUG is not set |
672 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
650 | 673 | ||
651 | # | 674 | # |
652 | # Miscellaneous USB options | 675 | # Miscellaneous USB options |
@@ -697,10 +720,6 @@ CONFIG_USB_MON=y | |||
697 | # | 720 | # |
698 | # USB port drivers | 721 | # USB port drivers |
699 | # | 722 | # |
700 | |||
701 | # | ||
702 | # USB Serial Converter support | ||
703 | # | ||
704 | # CONFIG_USB_SERIAL is not set | 723 | # CONFIG_USB_SERIAL is not set |
705 | 724 | ||
706 | # | 725 | # |
@@ -725,16 +744,9 @@ CONFIG_USB_MON=y | |||
725 | # CONFIG_USB_TRANCEVIBRATOR is not set | 744 | # CONFIG_USB_TRANCEVIBRATOR is not set |
726 | # CONFIG_USB_IOWARRIOR is not set | 745 | # CONFIG_USB_IOWARRIOR is not set |
727 | # CONFIG_USB_TEST is not set | 746 | # CONFIG_USB_TEST is not set |
728 | |||
729 | # | ||
730 | # USB DSL modem support | ||
731 | # | ||
732 | |||
733 | # | ||
734 | # USB Gadget Support | ||
735 | # | ||
736 | # CONFIG_USB_GADGET is not set | 747 | # CONFIG_USB_GADGET is not set |
737 | # CONFIG_MMC is not set | 748 | # CONFIG_MMC is not set |
749 | # CONFIG_MEMSTICK is not set | ||
738 | # CONFIG_NEW_LEDS is not set | 750 | # CONFIG_NEW_LEDS is not set |
739 | # CONFIG_INFINIBAND is not set | 751 | # CONFIG_INFINIBAND is not set |
740 | # CONFIG_EDAC is not set | 752 | # CONFIG_EDAC is not set |
@@ -759,12 +771,10 @@ CONFIG_EXT2_FS=y | |||
759 | # CONFIG_XFS_FS is not set | 771 | # CONFIG_XFS_FS is not set |
760 | # CONFIG_GFS2_FS is not set | 772 | # CONFIG_GFS2_FS is not set |
761 | # CONFIG_OCFS2_FS is not set | 773 | # CONFIG_OCFS2_FS is not set |
762 | # CONFIG_MINIX_FS is not set | 774 | CONFIG_DNOTIFY=y |
763 | # CONFIG_ROMFS_FS is not set | ||
764 | CONFIG_INOTIFY=y | 775 | CONFIG_INOTIFY=y |
765 | CONFIG_INOTIFY_USER=y | 776 | CONFIG_INOTIFY_USER=y |
766 | # CONFIG_QUOTA is not set | 777 | # CONFIG_QUOTA is not set |
767 | CONFIG_DNOTIFY=y | ||
768 | # CONFIG_AUTOFS_FS is not set | 778 | # CONFIG_AUTOFS_FS is not set |
769 | # CONFIG_AUTOFS4_FS is not set | 779 | # CONFIG_AUTOFS4_FS is not set |
770 | # CONFIG_FUSE_FS is not set | 780 | # CONFIG_FUSE_FS is not set |
@@ -807,8 +817,10 @@ CONFIG_TMPFS=y | |||
807 | # CONFIG_JFFS2_FS is not set | 817 | # CONFIG_JFFS2_FS is not set |
808 | CONFIG_CRAMFS=y | 818 | CONFIG_CRAMFS=y |
809 | # CONFIG_VXFS_FS is not set | 819 | # CONFIG_VXFS_FS is not set |
820 | # CONFIG_MINIX_FS is not set | ||
810 | # CONFIG_HPFS_FS is not set | 821 | # CONFIG_HPFS_FS is not set |
811 | # CONFIG_QNX4FS_FS is not set | 822 | # CONFIG_QNX4FS_FS is not set |
823 | # CONFIG_ROMFS_FS is not set | ||
812 | # CONFIG_SYSV_FS is not set | 824 | # CONFIG_SYSV_FS is not set |
813 | # CONFIG_UFS_FS is not set | 825 | # CONFIG_UFS_FS is not set |
814 | CONFIG_NETWORK_FILESYSTEMS=y | 826 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -839,7 +851,6 @@ CONFIG_SUNRPC=y | |||
839 | CONFIG_MSDOS_PARTITION=y | 851 | CONFIG_MSDOS_PARTITION=y |
840 | # CONFIG_NLS is not set | 852 | # CONFIG_NLS is not set |
841 | # CONFIG_DLM is not set | 853 | # CONFIG_DLM is not set |
842 | # CONFIG_UCC_SLOW is not set | ||
843 | 854 | ||
844 | # | 855 | # |
845 | # Library routines | 856 | # Library routines |
@@ -856,10 +867,6 @@ CONFIG_PLIST=y | |||
856 | CONFIG_HAS_IOMEM=y | 867 | CONFIG_HAS_IOMEM=y |
857 | CONFIG_HAS_IOPORT=y | 868 | CONFIG_HAS_IOPORT=y |
858 | CONFIG_HAS_DMA=y | 869 | CONFIG_HAS_DMA=y |
859 | CONFIG_INSTRUMENTATION=y | ||
860 | # CONFIG_PROFILING is not set | ||
861 | # CONFIG_KPROBES is not set | ||
862 | # CONFIG_MARKERS is not set | ||
863 | 870 | ||
864 | # | 871 | # |
865 | # Kernel hacking | 872 | # Kernel hacking |
@@ -869,7 +876,7 @@ CONFIG_ENABLE_WARN_DEPRECATED=y | |||
869 | CONFIG_ENABLE_MUST_CHECK=y | 876 | CONFIG_ENABLE_MUST_CHECK=y |
870 | CONFIG_MAGIC_SYSRQ=y | 877 | CONFIG_MAGIC_SYSRQ=y |
871 | # CONFIG_UNUSED_SYMBOLS is not set | 878 | # CONFIG_UNUSED_SYMBOLS is not set |
872 | # CONFIG_DEBUG_FS is not set | 879 | CONFIG_DEBUG_FS=y |
873 | # CONFIG_HEADERS_CHECK is not set | 880 | # CONFIG_HEADERS_CHECK is not set |
874 | CONFIG_DEBUG_KERNEL=y | 881 | CONFIG_DEBUG_KERNEL=y |
875 | # CONFIG_DEBUG_SHIRQ is not set | 882 | # CONFIG_DEBUG_SHIRQ is not set |
@@ -878,6 +885,7 @@ CONFIG_SCHED_DEBUG=y | |||
878 | # CONFIG_SCHEDSTATS is not set | 885 | # CONFIG_SCHEDSTATS is not set |
879 | # CONFIG_TIMER_STATS is not set | 886 | # CONFIG_TIMER_STATS is not set |
880 | # CONFIG_SLUB_DEBUG_ON is not set | 887 | # CONFIG_SLUB_DEBUG_ON is not set |
888 | # CONFIG_SLUB_STATS is not set | ||
881 | # CONFIG_DEBUG_RT_MUTEXES is not set | 889 | # CONFIG_DEBUG_RT_MUTEXES is not set |
882 | # CONFIG_RT_MUTEX_TESTER is not set | 890 | # CONFIG_RT_MUTEX_TESTER is not set |
883 | # CONFIG_DEBUG_SPINLOCK is not set | 891 | # CONFIG_DEBUG_SPINLOCK is not set |
@@ -890,15 +898,16 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
890 | # CONFIG_DEBUG_VM is not set | 898 | # CONFIG_DEBUG_VM is not set |
891 | # CONFIG_DEBUG_LIST is not set | 899 | # CONFIG_DEBUG_LIST is not set |
892 | # CONFIG_DEBUG_SG is not set | 900 | # CONFIG_DEBUG_SG is not set |
893 | CONFIG_FORCED_INLINING=y | ||
894 | # CONFIG_BOOT_PRINTK_DELAY is not set | 901 | # CONFIG_BOOT_PRINTK_DELAY is not set |
895 | # CONFIG_RCU_TORTURE_TEST is not set | 902 | # CONFIG_RCU_TORTURE_TEST is not set |
903 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
896 | # CONFIG_FAULT_INJECTION is not set | 904 | # CONFIG_FAULT_INJECTION is not set |
897 | # CONFIG_SAMPLES is not set | 905 | # CONFIG_SAMPLES is not set |
898 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 906 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
899 | # CONFIG_DEBUG_STACK_USAGE is not set | 907 | # CONFIG_DEBUG_STACK_USAGE is not set |
900 | # CONFIG_DEBUG_PAGEALLOC is not set | 908 | # CONFIG_DEBUG_PAGEALLOC is not set |
901 | # CONFIG_DEBUGGER is not set | 909 | # CONFIG_DEBUGGER is not set |
910 | # CONFIG_VIRQ_DEBUG is not set | ||
902 | # CONFIG_BDI_SWITCH is not set | 911 | # CONFIG_BDI_SWITCH is not set |
903 | # CONFIG_PPC_EARLY_DEBUG is not set | 912 | # CONFIG_PPC_EARLY_DEBUG is not set |
904 | 913 | ||
@@ -911,6 +920,7 @@ CONFIG_FORCED_INLINING=y | |||
911 | CONFIG_CRYPTO=y | 920 | CONFIG_CRYPTO=y |
912 | CONFIG_CRYPTO_ALGAPI=y | 921 | CONFIG_CRYPTO_ALGAPI=y |
913 | CONFIG_CRYPTO_BLKCIPHER=y | 922 | CONFIG_CRYPTO_BLKCIPHER=y |
923 | # CONFIG_CRYPTO_SEQIV is not set | ||
914 | CONFIG_CRYPTO_MANAGER=y | 924 | CONFIG_CRYPTO_MANAGER=y |
915 | # CONFIG_CRYPTO_HMAC is not set | 925 | # CONFIG_CRYPTO_HMAC is not set |
916 | # CONFIG_CRYPTO_XCBC is not set | 926 | # CONFIG_CRYPTO_XCBC is not set |
@@ -928,6 +938,9 @@ CONFIG_CRYPTO_CBC=y | |||
928 | CONFIG_CRYPTO_PCBC=y | 938 | CONFIG_CRYPTO_PCBC=y |
929 | # CONFIG_CRYPTO_LRW is not set | 939 | # CONFIG_CRYPTO_LRW is not set |
930 | # CONFIG_CRYPTO_XTS is not set | 940 | # CONFIG_CRYPTO_XTS is not set |
941 | # CONFIG_CRYPTO_CTR is not set | ||
942 | # CONFIG_CRYPTO_GCM is not set | ||
943 | # CONFIG_CRYPTO_CCM is not set | ||
931 | # CONFIG_CRYPTO_CRYPTD is not set | 944 | # CONFIG_CRYPTO_CRYPTD is not set |
932 | CONFIG_CRYPTO_DES=y | 945 | CONFIG_CRYPTO_DES=y |
933 | # CONFIG_CRYPTO_FCRYPT is not set | 946 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -942,11 +955,14 @@ CONFIG_CRYPTO_DES=y | |||
942 | # CONFIG_CRYPTO_KHAZAD is not set | 955 | # CONFIG_CRYPTO_KHAZAD is not set |
943 | # CONFIG_CRYPTO_ANUBIS is not set | 956 | # CONFIG_CRYPTO_ANUBIS is not set |
944 | # CONFIG_CRYPTO_SEED is not set | 957 | # CONFIG_CRYPTO_SEED is not set |
958 | # CONFIG_CRYPTO_SALSA20 is not set | ||
945 | # CONFIG_CRYPTO_DEFLATE is not set | 959 | # CONFIG_CRYPTO_DEFLATE is not set |
946 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 960 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
947 | # CONFIG_CRYPTO_CRC32C is not set | 961 | # CONFIG_CRYPTO_CRC32C is not set |
948 | # CONFIG_CRYPTO_CAMELLIA is not set | 962 | # CONFIG_CRYPTO_CAMELLIA is not set |
949 | # CONFIG_CRYPTO_TEST is not set | 963 | # CONFIG_CRYPTO_TEST is not set |
950 | # CONFIG_CRYPTO_AUTHENC is not set | 964 | # CONFIG_CRYPTO_AUTHENC is not set |
965 | # CONFIG_CRYPTO_LZO is not set | ||
951 | CONFIG_CRYPTO_HW=y | 966 | CONFIG_CRYPTO_HW=y |
967 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
952 | # CONFIG_PPC_CLOCK is not set | 968 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/kilauea_defconfig b/arch/powerpc/configs/kilauea_defconfig index 8dca3d451c0e..2f475391f1d1 100644 --- a/arch/powerpc/configs/kilauea_defconfig +++ b/arch/powerpc/configs/kilauea_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc6 | 3 | # Linux kernel version: 2.6.25-rc2 |
4 | # Thu Jan 3 14:21:31 2008 | 4 | # Fri Feb 15 21:51:43 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -26,6 +26,7 @@ CONFIG_GENERIC_TIME=y | |||
26 | CONFIG_GENERIC_TIME_VSYSCALL=y | 26 | CONFIG_GENERIC_TIME_VSYSCALL=y |
27 | CONFIG_GENERIC_CLOCKEVENTS=y | 27 | CONFIG_GENERIC_CLOCKEVENTS=y |
28 | CONFIG_GENERIC_HARDIRQS=y | 28 | CONFIG_GENERIC_HARDIRQS=y |
29 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
29 | CONFIG_IRQ_PER_CPU=y | 30 | CONFIG_IRQ_PER_CPU=y |
30 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 31 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
31 | CONFIG_ARCH_HAS_ILOG2_U32=y | 32 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -64,15 +65,18 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
64 | CONFIG_POSIX_MQUEUE=y | 65 | CONFIG_POSIX_MQUEUE=y |
65 | # CONFIG_BSD_PROCESS_ACCT is not set | 66 | # CONFIG_BSD_PROCESS_ACCT is not set |
66 | # CONFIG_TASKSTATS is not set | 67 | # CONFIG_TASKSTATS is not set |
67 | # CONFIG_USER_NS is not set | ||
68 | # CONFIG_PID_NS is not set | ||
69 | # CONFIG_AUDIT is not set | 68 | # CONFIG_AUDIT is not set |
70 | # CONFIG_IKCONFIG is not set | 69 | # CONFIG_IKCONFIG is not set |
71 | CONFIG_LOG_BUF_SHIFT=14 | 70 | CONFIG_LOG_BUF_SHIFT=14 |
72 | # CONFIG_CGROUPS is not set | 71 | # CONFIG_CGROUPS is not set |
72 | CONFIG_GROUP_SCHED=y | ||
73 | # CONFIG_FAIR_GROUP_SCHED is not set | 73 | # CONFIG_FAIR_GROUP_SCHED is not set |
74 | # CONFIG_RT_GROUP_SCHED is not set | ||
75 | CONFIG_USER_SCHED=y | ||
76 | # CONFIG_CGROUP_SCHED is not set | ||
74 | CONFIG_SYSFS_DEPRECATED=y | 77 | CONFIG_SYSFS_DEPRECATED=y |
75 | # CONFIG_RELAY is not set | 78 | # CONFIG_RELAY is not set |
79 | # CONFIG_NAMESPACES is not set | ||
76 | CONFIG_BLK_DEV_INITRD=y | 80 | CONFIG_BLK_DEV_INITRD=y |
77 | CONFIG_INITRAMFS_SOURCE="" | 81 | CONFIG_INITRAMFS_SOURCE="" |
78 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 82 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -86,11 +90,13 @@ CONFIG_HOTPLUG=y | |||
86 | CONFIG_PRINTK=y | 90 | CONFIG_PRINTK=y |
87 | CONFIG_BUG=y | 91 | CONFIG_BUG=y |
88 | CONFIG_ELF_CORE=y | 92 | CONFIG_ELF_CORE=y |
93 | CONFIG_COMPAT_BRK=y | ||
89 | CONFIG_BASE_FULL=y | 94 | CONFIG_BASE_FULL=y |
90 | CONFIG_FUTEX=y | 95 | CONFIG_FUTEX=y |
91 | CONFIG_ANON_INODES=y | 96 | CONFIG_ANON_INODES=y |
92 | CONFIG_EPOLL=y | 97 | CONFIG_EPOLL=y |
93 | CONFIG_SIGNALFD=y | 98 | CONFIG_SIGNALFD=y |
99 | CONFIG_TIMERFD=y | ||
94 | CONFIG_EVENTFD=y | 100 | CONFIG_EVENTFD=y |
95 | CONFIG_SHMEM=y | 101 | CONFIG_SHMEM=y |
96 | CONFIG_VM_EVENT_COUNTERS=y | 102 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -98,6 +104,13 @@ CONFIG_SLUB_DEBUG=y | |||
98 | # CONFIG_SLAB is not set | 104 | # CONFIG_SLAB is not set |
99 | CONFIG_SLUB=y | 105 | CONFIG_SLUB=y |
100 | # CONFIG_SLOB is not set | 106 | # CONFIG_SLOB is not set |
107 | # CONFIG_PROFILING is not set | ||
108 | # CONFIG_MARKERS is not set | ||
109 | CONFIG_HAVE_OPROFILE=y | ||
110 | # CONFIG_KPROBES is not set | ||
111 | CONFIG_HAVE_KPROBES=y | ||
112 | CONFIG_PROC_PAGE_MONITOR=y | ||
113 | CONFIG_SLABINFO=y | ||
101 | CONFIG_RT_MUTEXES=y | 114 | CONFIG_RT_MUTEXES=y |
102 | # CONFIG_TINY_SHMEM is not set | 115 | # CONFIG_TINY_SHMEM is not set |
103 | CONFIG_BASE_SMALL=0 | 116 | CONFIG_BASE_SMALL=0 |
@@ -125,13 +138,15 @@ CONFIG_DEFAULT_AS=y | |||
125 | # CONFIG_DEFAULT_CFQ is not set | 138 | # CONFIG_DEFAULT_CFQ is not set |
126 | # CONFIG_DEFAULT_NOOP is not set | 139 | # CONFIG_DEFAULT_NOOP is not set |
127 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 140 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
141 | CONFIG_CLASSIC_RCU=y | ||
142 | # CONFIG_PREEMPT_RCU is not set | ||
128 | CONFIG_PPC4xx_PCI_EXPRESS=y | 143 | CONFIG_PPC4xx_PCI_EXPRESS=y |
129 | 144 | ||
130 | # | 145 | # |
131 | # Platform support | 146 | # Platform support |
132 | # | 147 | # |
133 | # CONFIG_PPC_MPC52xx is not set | 148 | # CONFIG_PPC_MPC512x is not set |
134 | # CONFIG_PPC_MPC5200 is not set | 149 | # CONFIG_PPC_MPC5121 is not set |
135 | # CONFIG_PPC_CELL is not set | 150 | # CONFIG_PPC_CELL is not set |
136 | # CONFIG_PPC_CELL_NATIVE is not set | 151 | # CONFIG_PPC_CELL_NATIVE is not set |
137 | # CONFIG_PQ2ADS is not set | 152 | # CONFIG_PQ2ADS is not set |
@@ -141,6 +156,7 @@ CONFIG_KILAUEA=y | |||
141 | # CONFIG_WALNUT is not set | 156 | # CONFIG_WALNUT is not set |
142 | # CONFIG_XILINX_VIRTEX_GENERIC_BOARD is not set | 157 | # CONFIG_XILINX_VIRTEX_GENERIC_BOARD is not set |
143 | CONFIG_405EX=y | 158 | CONFIG_405EX=y |
159 | # CONFIG_IPIC is not set | ||
144 | # CONFIG_MPIC is not set | 160 | # CONFIG_MPIC is not set |
145 | # CONFIG_MPIC_WEIRD is not set | 161 | # CONFIG_MPIC_WEIRD is not set |
146 | # CONFIG_PPC_I8259 is not set | 162 | # CONFIG_PPC_I8259 is not set |
@@ -151,7 +167,6 @@ CONFIG_405EX=y | |||
151 | # CONFIG_PPC_INDIRECT_IO is not set | 167 | # CONFIG_PPC_INDIRECT_IO is not set |
152 | # CONFIG_GENERIC_IOMAP is not set | 168 | # CONFIG_GENERIC_IOMAP is not set |
153 | # CONFIG_CPU_FREQ is not set | 169 | # CONFIG_CPU_FREQ is not set |
154 | # CONFIG_CPM2 is not set | ||
155 | # CONFIG_FSL_ULI1575 is not set | 170 | # CONFIG_FSL_ULI1575 is not set |
156 | 171 | ||
157 | # | 172 | # |
@@ -167,13 +182,18 @@ CONFIG_HZ_250=y | |||
167 | # CONFIG_HZ_300 is not set | 182 | # CONFIG_HZ_300 is not set |
168 | # CONFIG_HZ_1000 is not set | 183 | # CONFIG_HZ_1000 is not set |
169 | CONFIG_HZ=250 | 184 | CONFIG_HZ=250 |
185 | # CONFIG_SCHED_HRTICK is not set | ||
170 | CONFIG_PREEMPT_NONE=y | 186 | CONFIG_PREEMPT_NONE=y |
171 | # CONFIG_PREEMPT_VOLUNTARY is not set | 187 | # CONFIG_PREEMPT_VOLUNTARY is not set |
172 | # CONFIG_PREEMPT is not set | 188 | # CONFIG_PREEMPT is not set |
189 | CONFIG_RCU_TRACE=y | ||
173 | CONFIG_BINFMT_ELF=y | 190 | CONFIG_BINFMT_ELF=y |
174 | # CONFIG_BINFMT_MISC is not set | 191 | # CONFIG_BINFMT_MISC is not set |
175 | # CONFIG_MATH_EMULATION is not set | 192 | # CONFIG_MATH_EMULATION is not set |
193 | # CONFIG_IOMMU_HELPER is not set | ||
176 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 194 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
195 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
196 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
177 | CONFIG_ARCH_FLATMEM_ENABLE=y | 197 | CONFIG_ARCH_FLATMEM_ENABLE=y |
178 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 198 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
179 | CONFIG_SELECT_MEMORY_MODEL=y | 199 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -192,11 +212,7 @@ CONFIG_VIRT_TO_BUS=y | |||
192 | CONFIG_PROC_DEVICETREE=y | 212 | CONFIG_PROC_DEVICETREE=y |
193 | # CONFIG_CMDLINE_BOOL is not set | 213 | # CONFIG_CMDLINE_BOOL is not set |
194 | # CONFIG_PM is not set | 214 | # CONFIG_PM is not set |
195 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
196 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
197 | CONFIG_SECCOMP=y | 215 | CONFIG_SECCOMP=y |
198 | CONFIG_WANT_DEVICE_TREE=y | ||
199 | CONFIG_DEVICE_TREE="kilauea.dts" | ||
200 | CONFIG_ISA_DMA_API=y | 216 | CONFIG_ISA_DMA_API=y |
201 | 217 | ||
202 | # | 218 | # |
@@ -296,6 +312,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
296 | # | 312 | # |
297 | # CONFIG_NET_PKTGEN is not set | 313 | # CONFIG_NET_PKTGEN is not set |
298 | # CONFIG_HAMRADIO is not set | 314 | # CONFIG_HAMRADIO is not set |
315 | # CONFIG_CAN is not set | ||
299 | # CONFIG_IRDA is not set | 316 | # CONFIG_IRDA is not set |
300 | # CONFIG_BT is not set | 317 | # CONFIG_BT is not set |
301 | # CONFIG_AF_RXRPC is not set | 318 | # CONFIG_AF_RXRPC is not set |
@@ -332,6 +349,7 @@ CONFIG_MTD=y | |||
332 | CONFIG_MTD_PARTITIONS=y | 349 | CONFIG_MTD_PARTITIONS=y |
333 | # CONFIG_MTD_REDBOOT_PARTS is not set | 350 | # CONFIG_MTD_REDBOOT_PARTS is not set |
334 | CONFIG_MTD_CMDLINE_PARTS=y | 351 | CONFIG_MTD_CMDLINE_PARTS=y |
352 | CONFIG_MTD_OF_PARTS=y | ||
335 | 353 | ||
336 | # | 354 | # |
337 | # User Modules And Translation Layers | 355 | # User Modules And Translation Layers |
@@ -418,11 +436,12 @@ CONFIG_BLK_DEV=y | |||
418 | CONFIG_BLK_DEV_RAM=y | 436 | CONFIG_BLK_DEV_RAM=y |
419 | CONFIG_BLK_DEV_RAM_COUNT=16 | 437 | CONFIG_BLK_DEV_RAM_COUNT=16 |
420 | CONFIG_BLK_DEV_RAM_SIZE=35000 | 438 | CONFIG_BLK_DEV_RAM_SIZE=35000 |
421 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 439 | # CONFIG_BLK_DEV_XIP is not set |
422 | # CONFIG_CDROM_PKTCDVD is not set | 440 | # CONFIG_CDROM_PKTCDVD is not set |
423 | # CONFIG_ATA_OVER_ETH is not set | 441 | # CONFIG_ATA_OVER_ETH is not set |
424 | # CONFIG_XILINX_SYSACE is not set | 442 | # CONFIG_XILINX_SYSACE is not set |
425 | # CONFIG_MISC_DEVICES is not set | 443 | # CONFIG_MISC_DEVICES is not set |
444 | CONFIG_HAVE_IDE=y | ||
426 | # CONFIG_IDE is not set | 445 | # CONFIG_IDE is not set |
427 | 446 | ||
428 | # | 447 | # |
@@ -451,7 +470,6 @@ CONFIG_NETDEVICES=y | |||
451 | # CONFIG_EQUALIZER is not set | 470 | # CONFIG_EQUALIZER is not set |
452 | # CONFIG_TUN is not set | 471 | # CONFIG_TUN is not set |
453 | # CONFIG_VETH is not set | 472 | # CONFIG_VETH is not set |
454 | # CONFIG_IP1000 is not set | ||
455 | # CONFIG_ARCNET is not set | 473 | # CONFIG_ARCNET is not set |
456 | # CONFIG_PHYLIB is not set | 474 | # CONFIG_PHYLIB is not set |
457 | CONFIG_NET_ETHERNET=y | 475 | CONFIG_NET_ETHERNET=y |
@@ -489,7 +507,6 @@ CONFIG_IBM_NEW_EMAC_EMAC4=y | |||
489 | # CONFIG_HIPPI is not set | 507 | # CONFIG_HIPPI is not set |
490 | # CONFIG_PPP is not set | 508 | # CONFIG_PPP is not set |
491 | # CONFIG_SLIP is not set | 509 | # CONFIG_SLIP is not set |
492 | # CONFIG_SHAPER is not set | ||
493 | # CONFIG_NETCONSOLE is not set | 510 | # CONFIG_NETCONSOLE is not set |
494 | # CONFIG_NETPOLL is not set | 511 | # CONFIG_NETPOLL is not set |
495 | # CONFIG_NET_POLL_CONTROLLER is not set | 512 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -512,6 +529,7 @@ CONFIG_IBM_NEW_EMAC_EMAC4=y | |||
512 | # | 529 | # |
513 | # CONFIG_VT is not set | 530 | # CONFIG_VT is not set |
514 | # CONFIG_SERIAL_NONSTANDARD is not set | 531 | # CONFIG_SERIAL_NONSTANDARD is not set |
532 | # CONFIG_NOZOMI is not set | ||
515 | 533 | ||
516 | # | 534 | # |
517 | # Serial drivers | 535 | # Serial drivers |
@@ -557,6 +575,7 @@ CONFIG_DEVPORT=y | |||
557 | # CONFIG_W1 is not set | 575 | # CONFIG_W1 is not set |
558 | # CONFIG_POWER_SUPPLY is not set | 576 | # CONFIG_POWER_SUPPLY is not set |
559 | # CONFIG_HWMON is not set | 577 | # CONFIG_HWMON is not set |
578 | CONFIG_THERMAL=y | ||
560 | # CONFIG_WATCHDOG is not set | 579 | # CONFIG_WATCHDOG is not set |
561 | 580 | ||
562 | # | 581 | # |
@@ -598,6 +617,7 @@ CONFIG_SSB_POSSIBLE=y | |||
598 | # CONFIG_SOUND is not set | 617 | # CONFIG_SOUND is not set |
599 | # CONFIG_USB_SUPPORT is not set | 618 | # CONFIG_USB_SUPPORT is not set |
600 | # CONFIG_MMC is not set | 619 | # CONFIG_MMC is not set |
620 | # CONFIG_MEMSTICK is not set | ||
601 | # CONFIG_NEW_LEDS is not set | 621 | # CONFIG_NEW_LEDS is not set |
602 | # CONFIG_INFINIBAND is not set | 622 | # CONFIG_INFINIBAND is not set |
603 | # CONFIG_EDAC is not set | 623 | # CONFIG_EDAC is not set |
@@ -622,12 +642,10 @@ CONFIG_EXT2_FS=y | |||
622 | # CONFIG_XFS_FS is not set | 642 | # CONFIG_XFS_FS is not set |
623 | # CONFIG_GFS2_FS is not set | 643 | # CONFIG_GFS2_FS is not set |
624 | # CONFIG_OCFS2_FS is not set | 644 | # CONFIG_OCFS2_FS is not set |
625 | # CONFIG_MINIX_FS is not set | 645 | CONFIG_DNOTIFY=y |
626 | # CONFIG_ROMFS_FS is not set | ||
627 | CONFIG_INOTIFY=y | 646 | CONFIG_INOTIFY=y |
628 | CONFIG_INOTIFY_USER=y | 647 | CONFIG_INOTIFY_USER=y |
629 | # CONFIG_QUOTA is not set | 648 | # CONFIG_QUOTA is not set |
630 | CONFIG_DNOTIFY=y | ||
631 | # CONFIG_AUTOFS_FS is not set | 649 | # CONFIG_AUTOFS_FS is not set |
632 | # CONFIG_AUTOFS4_FS is not set | 650 | # CONFIG_AUTOFS4_FS is not set |
633 | # CONFIG_FUSE_FS is not set | 651 | # CONFIG_FUSE_FS is not set |
@@ -670,8 +688,10 @@ CONFIG_TMPFS=y | |||
670 | # CONFIG_JFFS2_FS is not set | 688 | # CONFIG_JFFS2_FS is not set |
671 | CONFIG_CRAMFS=y | 689 | CONFIG_CRAMFS=y |
672 | # CONFIG_VXFS_FS is not set | 690 | # CONFIG_VXFS_FS is not set |
691 | # CONFIG_MINIX_FS is not set | ||
673 | # CONFIG_HPFS_FS is not set | 692 | # CONFIG_HPFS_FS is not set |
674 | # CONFIG_QNX4FS_FS is not set | 693 | # CONFIG_QNX4FS_FS is not set |
694 | # CONFIG_ROMFS_FS is not set | ||
675 | # CONFIG_SYSV_FS is not set | 695 | # CONFIG_SYSV_FS is not set |
676 | # CONFIG_UFS_FS is not set | 696 | # CONFIG_UFS_FS is not set |
677 | CONFIG_NETWORK_FILESYSTEMS=y | 697 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -702,7 +722,6 @@ CONFIG_SUNRPC=y | |||
702 | CONFIG_MSDOS_PARTITION=y | 722 | CONFIG_MSDOS_PARTITION=y |
703 | # CONFIG_NLS is not set | 723 | # CONFIG_NLS is not set |
704 | # CONFIG_DLM is not set | 724 | # CONFIG_DLM is not set |
705 | # CONFIG_UCC_SLOW is not set | ||
706 | 725 | ||
707 | # | 726 | # |
708 | # Library routines | 727 | # Library routines |
@@ -719,7 +738,6 @@ CONFIG_PLIST=y | |||
719 | CONFIG_HAS_IOMEM=y | 738 | CONFIG_HAS_IOMEM=y |
720 | CONFIG_HAS_IOPORT=y | 739 | CONFIG_HAS_IOPORT=y |
721 | CONFIG_HAS_DMA=y | 740 | CONFIG_HAS_DMA=y |
722 | # CONFIG_INSTRUMENTATION is not set | ||
723 | 741 | ||
724 | # | 742 | # |
725 | # Kernel hacking | 743 | # Kernel hacking |
@@ -729,7 +747,7 @@ CONFIG_ENABLE_WARN_DEPRECATED=y | |||
729 | CONFIG_ENABLE_MUST_CHECK=y | 747 | CONFIG_ENABLE_MUST_CHECK=y |
730 | CONFIG_MAGIC_SYSRQ=y | 748 | CONFIG_MAGIC_SYSRQ=y |
731 | # CONFIG_UNUSED_SYMBOLS is not set | 749 | # CONFIG_UNUSED_SYMBOLS is not set |
732 | # CONFIG_DEBUG_FS is not set | 750 | CONFIG_DEBUG_FS=y |
733 | # CONFIG_HEADERS_CHECK is not set | 751 | # CONFIG_HEADERS_CHECK is not set |
734 | CONFIG_DEBUG_KERNEL=y | 752 | CONFIG_DEBUG_KERNEL=y |
735 | # CONFIG_DEBUG_SHIRQ is not set | 753 | # CONFIG_DEBUG_SHIRQ is not set |
@@ -738,6 +756,7 @@ CONFIG_SCHED_DEBUG=y | |||
738 | # CONFIG_SCHEDSTATS is not set | 756 | # CONFIG_SCHEDSTATS is not set |
739 | # CONFIG_TIMER_STATS is not set | 757 | # CONFIG_TIMER_STATS is not set |
740 | # CONFIG_SLUB_DEBUG_ON is not set | 758 | # CONFIG_SLUB_DEBUG_ON is not set |
759 | # CONFIG_SLUB_STATS is not set | ||
741 | # CONFIG_DEBUG_RT_MUTEXES is not set | 760 | # CONFIG_DEBUG_RT_MUTEXES is not set |
742 | # CONFIG_RT_MUTEX_TESTER is not set | 761 | # CONFIG_RT_MUTEX_TESTER is not set |
743 | # CONFIG_DEBUG_SPINLOCK is not set | 762 | # CONFIG_DEBUG_SPINLOCK is not set |
@@ -750,15 +769,16 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
750 | # CONFIG_DEBUG_VM is not set | 769 | # CONFIG_DEBUG_VM is not set |
751 | # CONFIG_DEBUG_LIST is not set | 770 | # CONFIG_DEBUG_LIST is not set |
752 | # CONFIG_DEBUG_SG is not set | 771 | # CONFIG_DEBUG_SG is not set |
753 | CONFIG_FORCED_INLINING=y | ||
754 | # CONFIG_BOOT_PRINTK_DELAY is not set | 772 | # CONFIG_BOOT_PRINTK_DELAY is not set |
755 | # CONFIG_RCU_TORTURE_TEST is not set | 773 | # CONFIG_RCU_TORTURE_TEST is not set |
774 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
756 | # CONFIG_FAULT_INJECTION is not set | 775 | # CONFIG_FAULT_INJECTION is not set |
757 | # CONFIG_SAMPLES is not set | 776 | # CONFIG_SAMPLES is not set |
758 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 777 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
759 | # CONFIG_DEBUG_STACK_USAGE is not set | 778 | # CONFIG_DEBUG_STACK_USAGE is not set |
760 | # CONFIG_DEBUG_PAGEALLOC is not set | 779 | # CONFIG_DEBUG_PAGEALLOC is not set |
761 | # CONFIG_DEBUGGER is not set | 780 | # CONFIG_DEBUGGER is not set |
781 | # CONFIG_VIRQ_DEBUG is not set | ||
762 | # CONFIG_BDI_SWITCH is not set | 782 | # CONFIG_BDI_SWITCH is not set |
763 | # CONFIG_PPC_EARLY_DEBUG is not set | 783 | # CONFIG_PPC_EARLY_DEBUG is not set |
764 | 784 | ||
@@ -771,6 +791,7 @@ CONFIG_FORCED_INLINING=y | |||
771 | CONFIG_CRYPTO=y | 791 | CONFIG_CRYPTO=y |
772 | CONFIG_CRYPTO_ALGAPI=y | 792 | CONFIG_CRYPTO_ALGAPI=y |
773 | CONFIG_CRYPTO_BLKCIPHER=y | 793 | CONFIG_CRYPTO_BLKCIPHER=y |
794 | # CONFIG_CRYPTO_SEQIV is not set | ||
774 | CONFIG_CRYPTO_MANAGER=y | 795 | CONFIG_CRYPTO_MANAGER=y |
775 | # CONFIG_CRYPTO_HMAC is not set | 796 | # CONFIG_CRYPTO_HMAC is not set |
776 | # CONFIG_CRYPTO_XCBC is not set | 797 | # CONFIG_CRYPTO_XCBC is not set |
@@ -788,6 +809,9 @@ CONFIG_CRYPTO_CBC=y | |||
788 | CONFIG_CRYPTO_PCBC=y | 809 | CONFIG_CRYPTO_PCBC=y |
789 | # CONFIG_CRYPTO_LRW is not set | 810 | # CONFIG_CRYPTO_LRW is not set |
790 | # CONFIG_CRYPTO_XTS is not set | 811 | # CONFIG_CRYPTO_XTS is not set |
812 | # CONFIG_CRYPTO_CTR is not set | ||
813 | # CONFIG_CRYPTO_GCM is not set | ||
814 | # CONFIG_CRYPTO_CCM is not set | ||
791 | # CONFIG_CRYPTO_CRYPTD is not set | 815 | # CONFIG_CRYPTO_CRYPTD is not set |
792 | CONFIG_CRYPTO_DES=y | 816 | CONFIG_CRYPTO_DES=y |
793 | # CONFIG_CRYPTO_FCRYPT is not set | 817 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -802,11 +826,14 @@ CONFIG_CRYPTO_DES=y | |||
802 | # CONFIG_CRYPTO_KHAZAD is not set | 826 | # CONFIG_CRYPTO_KHAZAD is not set |
803 | # CONFIG_CRYPTO_ANUBIS is not set | 827 | # CONFIG_CRYPTO_ANUBIS is not set |
804 | # CONFIG_CRYPTO_SEED is not set | 828 | # CONFIG_CRYPTO_SEED is not set |
829 | # CONFIG_CRYPTO_SALSA20 is not set | ||
805 | # CONFIG_CRYPTO_DEFLATE is not set | 830 | # CONFIG_CRYPTO_DEFLATE is not set |
806 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 831 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
807 | # CONFIG_CRYPTO_CRC32C is not set | 832 | # CONFIG_CRYPTO_CRC32C is not set |
808 | # CONFIG_CRYPTO_CAMELLIA is not set | 833 | # CONFIG_CRYPTO_CAMELLIA is not set |
809 | # CONFIG_CRYPTO_TEST is not set | 834 | # CONFIG_CRYPTO_TEST is not set |
810 | # CONFIG_CRYPTO_AUTHENC is not set | 835 | # CONFIG_CRYPTO_AUTHENC is not set |
836 | # CONFIG_CRYPTO_LZO is not set | ||
811 | CONFIG_CRYPTO_HW=y | 837 | CONFIG_CRYPTO_HW=y |
838 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
812 | # CONFIG_PPC_CLOCK is not set | 839 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/makalu_defconfig b/arch/powerpc/configs/makalu_defconfig index c5db0265e5d8..9ef4d8a312c8 100644 --- a/arch/powerpc/configs/makalu_defconfig +++ b/arch/powerpc/configs/makalu_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc6 | 3 | # Linux kernel version: 2.6.25-rc2 |
4 | # Mon Dec 24 11:18:32 2007 | 4 | # Fri Feb 15 21:52:30 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -26,6 +26,7 @@ CONFIG_GENERIC_TIME=y | |||
26 | CONFIG_GENERIC_TIME_VSYSCALL=y | 26 | CONFIG_GENERIC_TIME_VSYSCALL=y |
27 | CONFIG_GENERIC_CLOCKEVENTS=y | 27 | CONFIG_GENERIC_CLOCKEVENTS=y |
28 | CONFIG_GENERIC_HARDIRQS=y | 28 | CONFIG_GENERIC_HARDIRQS=y |
29 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
29 | CONFIG_IRQ_PER_CPU=y | 30 | CONFIG_IRQ_PER_CPU=y |
30 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 31 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
31 | CONFIG_ARCH_HAS_ILOG2_U32=y | 32 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -64,15 +65,18 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
64 | CONFIG_POSIX_MQUEUE=y | 65 | CONFIG_POSIX_MQUEUE=y |
65 | # CONFIG_BSD_PROCESS_ACCT is not set | 66 | # CONFIG_BSD_PROCESS_ACCT is not set |
66 | # CONFIG_TASKSTATS is not set | 67 | # CONFIG_TASKSTATS is not set |
67 | # CONFIG_USER_NS is not set | ||
68 | # CONFIG_PID_NS is not set | ||
69 | # CONFIG_AUDIT is not set | 68 | # CONFIG_AUDIT is not set |
70 | # CONFIG_IKCONFIG is not set | 69 | # CONFIG_IKCONFIG is not set |
71 | CONFIG_LOG_BUF_SHIFT=14 | 70 | CONFIG_LOG_BUF_SHIFT=14 |
72 | # CONFIG_CGROUPS is not set | 71 | # CONFIG_CGROUPS is not set |
72 | CONFIG_GROUP_SCHED=y | ||
73 | # CONFIG_FAIR_GROUP_SCHED is not set | 73 | # CONFIG_FAIR_GROUP_SCHED is not set |
74 | # CONFIG_RT_GROUP_SCHED is not set | ||
75 | CONFIG_USER_SCHED=y | ||
76 | # CONFIG_CGROUP_SCHED is not set | ||
74 | CONFIG_SYSFS_DEPRECATED=y | 77 | CONFIG_SYSFS_DEPRECATED=y |
75 | # CONFIG_RELAY is not set | 78 | # CONFIG_RELAY is not set |
79 | # CONFIG_NAMESPACES is not set | ||
76 | CONFIG_BLK_DEV_INITRD=y | 80 | CONFIG_BLK_DEV_INITRD=y |
77 | CONFIG_INITRAMFS_SOURCE="" | 81 | CONFIG_INITRAMFS_SOURCE="" |
78 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 82 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -86,11 +90,13 @@ CONFIG_HOTPLUG=y | |||
86 | CONFIG_PRINTK=y | 90 | CONFIG_PRINTK=y |
87 | CONFIG_BUG=y | 91 | CONFIG_BUG=y |
88 | CONFIG_ELF_CORE=y | 92 | CONFIG_ELF_CORE=y |
93 | CONFIG_COMPAT_BRK=y | ||
89 | CONFIG_BASE_FULL=y | 94 | CONFIG_BASE_FULL=y |
90 | CONFIG_FUTEX=y | 95 | CONFIG_FUTEX=y |
91 | CONFIG_ANON_INODES=y | 96 | CONFIG_ANON_INODES=y |
92 | CONFIG_EPOLL=y | 97 | CONFIG_EPOLL=y |
93 | CONFIG_SIGNALFD=y | 98 | CONFIG_SIGNALFD=y |
99 | CONFIG_TIMERFD=y | ||
94 | CONFIG_EVENTFD=y | 100 | CONFIG_EVENTFD=y |
95 | CONFIG_SHMEM=y | 101 | CONFIG_SHMEM=y |
96 | CONFIG_VM_EVENT_COUNTERS=y | 102 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -98,6 +104,13 @@ CONFIG_SLUB_DEBUG=y | |||
98 | # CONFIG_SLAB is not set | 104 | # CONFIG_SLAB is not set |
99 | CONFIG_SLUB=y | 105 | CONFIG_SLUB=y |
100 | # CONFIG_SLOB is not set | 106 | # CONFIG_SLOB is not set |
107 | # CONFIG_PROFILING is not set | ||
108 | # CONFIG_MARKERS is not set | ||
109 | CONFIG_HAVE_OPROFILE=y | ||
110 | # CONFIG_KPROBES is not set | ||
111 | CONFIG_HAVE_KPROBES=y | ||
112 | CONFIG_PROC_PAGE_MONITOR=y | ||
113 | CONFIG_SLABINFO=y | ||
101 | CONFIG_RT_MUTEXES=y | 114 | CONFIG_RT_MUTEXES=y |
102 | # CONFIG_TINY_SHMEM is not set | 115 | # CONFIG_TINY_SHMEM is not set |
103 | CONFIG_BASE_SMALL=0 | 116 | CONFIG_BASE_SMALL=0 |
@@ -125,13 +138,15 @@ CONFIG_DEFAULT_AS=y | |||
125 | # CONFIG_DEFAULT_CFQ is not set | 138 | # CONFIG_DEFAULT_CFQ is not set |
126 | # CONFIG_DEFAULT_NOOP is not set | 139 | # CONFIG_DEFAULT_NOOP is not set |
127 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 140 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
141 | CONFIG_CLASSIC_RCU=y | ||
142 | # CONFIG_PREEMPT_RCU is not set | ||
128 | CONFIG_PPC4xx_PCI_EXPRESS=y | 143 | CONFIG_PPC4xx_PCI_EXPRESS=y |
129 | 144 | ||
130 | # | 145 | # |
131 | # Platform support | 146 | # Platform support |
132 | # | 147 | # |
133 | # CONFIG_PPC_MPC52xx is not set | 148 | # CONFIG_PPC_MPC512x is not set |
134 | # CONFIG_PPC_MPC5200 is not set | 149 | # CONFIG_PPC_MPC5121 is not set |
135 | # CONFIG_PPC_CELL is not set | 150 | # CONFIG_PPC_CELL is not set |
136 | # CONFIG_PPC_CELL_NATIVE is not set | 151 | # CONFIG_PPC_CELL_NATIVE is not set |
137 | # CONFIG_PQ2ADS is not set | 152 | # CONFIG_PQ2ADS is not set |
@@ -141,6 +156,7 @@ CONFIG_MAKALU=y | |||
141 | # CONFIG_WALNUT is not set | 156 | # CONFIG_WALNUT is not set |
142 | # CONFIG_XILINX_VIRTEX_GENERIC_BOARD is not set | 157 | # CONFIG_XILINX_VIRTEX_GENERIC_BOARD is not set |
143 | CONFIG_405EX=y | 158 | CONFIG_405EX=y |
159 | # CONFIG_IPIC is not set | ||
144 | # CONFIG_MPIC is not set | 160 | # CONFIG_MPIC is not set |
145 | # CONFIG_MPIC_WEIRD is not set | 161 | # CONFIG_MPIC_WEIRD is not set |
146 | # CONFIG_PPC_I8259 is not set | 162 | # CONFIG_PPC_I8259 is not set |
@@ -151,7 +167,6 @@ CONFIG_405EX=y | |||
151 | # CONFIG_PPC_INDIRECT_IO is not set | 167 | # CONFIG_PPC_INDIRECT_IO is not set |
152 | # CONFIG_GENERIC_IOMAP is not set | 168 | # CONFIG_GENERIC_IOMAP is not set |
153 | # CONFIG_CPU_FREQ is not set | 169 | # CONFIG_CPU_FREQ is not set |
154 | # CONFIG_CPM2 is not set | ||
155 | # CONFIG_FSL_ULI1575 is not set | 170 | # CONFIG_FSL_ULI1575 is not set |
156 | 171 | ||
157 | # | 172 | # |
@@ -167,13 +182,18 @@ CONFIG_HZ_250=y | |||
167 | # CONFIG_HZ_300 is not set | 182 | # CONFIG_HZ_300 is not set |
168 | # CONFIG_HZ_1000 is not set | 183 | # CONFIG_HZ_1000 is not set |
169 | CONFIG_HZ=250 | 184 | CONFIG_HZ=250 |
185 | # CONFIG_SCHED_HRTICK is not set | ||
170 | CONFIG_PREEMPT_NONE=y | 186 | CONFIG_PREEMPT_NONE=y |
171 | # CONFIG_PREEMPT_VOLUNTARY is not set | 187 | # CONFIG_PREEMPT_VOLUNTARY is not set |
172 | # CONFIG_PREEMPT is not set | 188 | # CONFIG_PREEMPT is not set |
189 | CONFIG_RCU_TRACE=y | ||
173 | CONFIG_BINFMT_ELF=y | 190 | CONFIG_BINFMT_ELF=y |
174 | # CONFIG_BINFMT_MISC is not set | 191 | # CONFIG_BINFMT_MISC is not set |
175 | # CONFIG_MATH_EMULATION is not set | 192 | # CONFIG_MATH_EMULATION is not set |
193 | # CONFIG_IOMMU_HELPER is not set | ||
176 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 194 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
195 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
196 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
177 | CONFIG_ARCH_FLATMEM_ENABLE=y | 197 | CONFIG_ARCH_FLATMEM_ENABLE=y |
178 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 198 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
179 | CONFIG_SELECT_MEMORY_MODEL=y | 199 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -192,11 +212,7 @@ CONFIG_VIRT_TO_BUS=y | |||
192 | CONFIG_PROC_DEVICETREE=y | 212 | CONFIG_PROC_DEVICETREE=y |
193 | # CONFIG_CMDLINE_BOOL is not set | 213 | # CONFIG_CMDLINE_BOOL is not set |
194 | # CONFIG_PM is not set | 214 | # CONFIG_PM is not set |
195 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
196 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
197 | CONFIG_SECCOMP=y | 215 | CONFIG_SECCOMP=y |
198 | CONFIG_WANT_DEVICE_TREE=y | ||
199 | CONFIG_DEVICE_TREE="kilauea.dts" | ||
200 | CONFIG_ISA_DMA_API=y | 216 | CONFIG_ISA_DMA_API=y |
201 | 217 | ||
202 | # | 218 | # |
@@ -296,6 +312,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
296 | # | 312 | # |
297 | # CONFIG_NET_PKTGEN is not set | 313 | # CONFIG_NET_PKTGEN is not set |
298 | # CONFIG_HAMRADIO is not set | 314 | # CONFIG_HAMRADIO is not set |
315 | # CONFIG_CAN is not set | ||
299 | # CONFIG_IRDA is not set | 316 | # CONFIG_IRDA is not set |
300 | # CONFIG_BT is not set | 317 | # CONFIG_BT is not set |
301 | # CONFIG_AF_RXRPC is not set | 318 | # CONFIG_AF_RXRPC is not set |
@@ -332,6 +349,7 @@ CONFIG_MTD=y | |||
332 | CONFIG_MTD_PARTITIONS=y | 349 | CONFIG_MTD_PARTITIONS=y |
333 | # CONFIG_MTD_REDBOOT_PARTS is not set | 350 | # CONFIG_MTD_REDBOOT_PARTS is not set |
334 | CONFIG_MTD_CMDLINE_PARTS=y | 351 | CONFIG_MTD_CMDLINE_PARTS=y |
352 | CONFIG_MTD_OF_PARTS=y | ||
335 | 353 | ||
336 | # | 354 | # |
337 | # User Modules And Translation Layers | 355 | # User Modules And Translation Layers |
@@ -418,11 +436,12 @@ CONFIG_BLK_DEV=y | |||
418 | CONFIG_BLK_DEV_RAM=y | 436 | CONFIG_BLK_DEV_RAM=y |
419 | CONFIG_BLK_DEV_RAM_COUNT=16 | 437 | CONFIG_BLK_DEV_RAM_COUNT=16 |
420 | CONFIG_BLK_DEV_RAM_SIZE=35000 | 438 | CONFIG_BLK_DEV_RAM_SIZE=35000 |
421 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 439 | # CONFIG_BLK_DEV_XIP is not set |
422 | # CONFIG_CDROM_PKTCDVD is not set | 440 | # CONFIG_CDROM_PKTCDVD is not set |
423 | # CONFIG_ATA_OVER_ETH is not set | 441 | # CONFIG_ATA_OVER_ETH is not set |
424 | # CONFIG_XILINX_SYSACE is not set | 442 | # CONFIG_XILINX_SYSACE is not set |
425 | # CONFIG_MISC_DEVICES is not set | 443 | # CONFIG_MISC_DEVICES is not set |
444 | CONFIG_HAVE_IDE=y | ||
426 | # CONFIG_IDE is not set | 445 | # CONFIG_IDE is not set |
427 | 446 | ||
428 | # | 447 | # |
@@ -451,7 +470,6 @@ CONFIG_NETDEVICES=y | |||
451 | # CONFIG_EQUALIZER is not set | 470 | # CONFIG_EQUALIZER is not set |
452 | # CONFIG_TUN is not set | 471 | # CONFIG_TUN is not set |
453 | # CONFIG_VETH is not set | 472 | # CONFIG_VETH is not set |
454 | # CONFIG_IP1000 is not set | ||
455 | # CONFIG_ARCNET is not set | 473 | # CONFIG_ARCNET is not set |
456 | # CONFIG_PHYLIB is not set | 474 | # CONFIG_PHYLIB is not set |
457 | CONFIG_NET_ETHERNET=y | 475 | CONFIG_NET_ETHERNET=y |
@@ -489,7 +507,6 @@ CONFIG_IBM_NEW_EMAC_EMAC4=y | |||
489 | # CONFIG_HIPPI is not set | 507 | # CONFIG_HIPPI is not set |
490 | # CONFIG_PPP is not set | 508 | # CONFIG_PPP is not set |
491 | # CONFIG_SLIP is not set | 509 | # CONFIG_SLIP is not set |
492 | # CONFIG_SHAPER is not set | ||
493 | # CONFIG_NETCONSOLE is not set | 510 | # CONFIG_NETCONSOLE is not set |
494 | # CONFIG_NETPOLL is not set | 511 | # CONFIG_NETPOLL is not set |
495 | # CONFIG_NET_POLL_CONTROLLER is not set | 512 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -512,6 +529,7 @@ CONFIG_IBM_NEW_EMAC_EMAC4=y | |||
512 | # | 529 | # |
513 | # CONFIG_VT is not set | 530 | # CONFIG_VT is not set |
514 | # CONFIG_SERIAL_NONSTANDARD is not set | 531 | # CONFIG_SERIAL_NONSTANDARD is not set |
532 | # CONFIG_NOZOMI is not set | ||
515 | 533 | ||
516 | # | 534 | # |
517 | # Serial drivers | 535 | # Serial drivers |
@@ -557,6 +575,7 @@ CONFIG_DEVPORT=y | |||
557 | # CONFIG_W1 is not set | 575 | # CONFIG_W1 is not set |
558 | # CONFIG_POWER_SUPPLY is not set | 576 | # CONFIG_POWER_SUPPLY is not set |
559 | # CONFIG_HWMON is not set | 577 | # CONFIG_HWMON is not set |
578 | CONFIG_THERMAL=y | ||
560 | # CONFIG_WATCHDOG is not set | 579 | # CONFIG_WATCHDOG is not set |
561 | 580 | ||
562 | # | 581 | # |
@@ -598,6 +617,7 @@ CONFIG_SSB_POSSIBLE=y | |||
598 | # CONFIG_SOUND is not set | 617 | # CONFIG_SOUND is not set |
599 | # CONFIG_USB_SUPPORT is not set | 618 | # CONFIG_USB_SUPPORT is not set |
600 | # CONFIG_MMC is not set | 619 | # CONFIG_MMC is not set |
620 | # CONFIG_MEMSTICK is not set | ||
601 | # CONFIG_NEW_LEDS is not set | 621 | # CONFIG_NEW_LEDS is not set |
602 | # CONFIG_INFINIBAND is not set | 622 | # CONFIG_INFINIBAND is not set |
603 | # CONFIG_EDAC is not set | 623 | # CONFIG_EDAC is not set |
@@ -622,12 +642,10 @@ CONFIG_EXT2_FS=y | |||
622 | # CONFIG_XFS_FS is not set | 642 | # CONFIG_XFS_FS is not set |
623 | # CONFIG_GFS2_FS is not set | 643 | # CONFIG_GFS2_FS is not set |
624 | # CONFIG_OCFS2_FS is not set | 644 | # CONFIG_OCFS2_FS is not set |
625 | # CONFIG_MINIX_FS is not set | 645 | CONFIG_DNOTIFY=y |
626 | # CONFIG_ROMFS_FS is not set | ||
627 | CONFIG_INOTIFY=y | 646 | CONFIG_INOTIFY=y |
628 | CONFIG_INOTIFY_USER=y | 647 | CONFIG_INOTIFY_USER=y |
629 | # CONFIG_QUOTA is not set | 648 | # CONFIG_QUOTA is not set |
630 | CONFIG_DNOTIFY=y | ||
631 | # CONFIG_AUTOFS_FS is not set | 649 | # CONFIG_AUTOFS_FS is not set |
632 | # CONFIG_AUTOFS4_FS is not set | 650 | # CONFIG_AUTOFS4_FS is not set |
633 | # CONFIG_FUSE_FS is not set | 651 | # CONFIG_FUSE_FS is not set |
@@ -670,8 +688,10 @@ CONFIG_TMPFS=y | |||
670 | # CONFIG_JFFS2_FS is not set | 688 | # CONFIG_JFFS2_FS is not set |
671 | CONFIG_CRAMFS=y | 689 | CONFIG_CRAMFS=y |
672 | # CONFIG_VXFS_FS is not set | 690 | # CONFIG_VXFS_FS is not set |
691 | # CONFIG_MINIX_FS is not set | ||
673 | # CONFIG_HPFS_FS is not set | 692 | # CONFIG_HPFS_FS is not set |
674 | # CONFIG_QNX4FS_FS is not set | 693 | # CONFIG_QNX4FS_FS is not set |
694 | # CONFIG_ROMFS_FS is not set | ||
675 | # CONFIG_SYSV_FS is not set | 695 | # CONFIG_SYSV_FS is not set |
676 | # CONFIG_UFS_FS is not set | 696 | # CONFIG_UFS_FS is not set |
677 | CONFIG_NETWORK_FILESYSTEMS=y | 697 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -702,7 +722,6 @@ CONFIG_SUNRPC=y | |||
702 | CONFIG_MSDOS_PARTITION=y | 722 | CONFIG_MSDOS_PARTITION=y |
703 | # CONFIG_NLS is not set | 723 | # CONFIG_NLS is not set |
704 | # CONFIG_DLM is not set | 724 | # CONFIG_DLM is not set |
705 | # CONFIG_UCC_SLOW is not set | ||
706 | 725 | ||
707 | # | 726 | # |
708 | # Library routines | 727 | # Library routines |
@@ -719,7 +738,6 @@ CONFIG_PLIST=y | |||
719 | CONFIG_HAS_IOMEM=y | 738 | CONFIG_HAS_IOMEM=y |
720 | CONFIG_HAS_IOPORT=y | 739 | CONFIG_HAS_IOPORT=y |
721 | CONFIG_HAS_DMA=y | 740 | CONFIG_HAS_DMA=y |
722 | # CONFIG_INSTRUMENTATION is not set | ||
723 | 741 | ||
724 | # | 742 | # |
725 | # Kernel hacking | 743 | # Kernel hacking |
@@ -729,7 +747,7 @@ CONFIG_ENABLE_WARN_DEPRECATED=y | |||
729 | CONFIG_ENABLE_MUST_CHECK=y | 747 | CONFIG_ENABLE_MUST_CHECK=y |
730 | CONFIG_MAGIC_SYSRQ=y | 748 | CONFIG_MAGIC_SYSRQ=y |
731 | # CONFIG_UNUSED_SYMBOLS is not set | 749 | # CONFIG_UNUSED_SYMBOLS is not set |
732 | # CONFIG_DEBUG_FS is not set | 750 | CONFIG_DEBUG_FS=y |
733 | # CONFIG_HEADERS_CHECK is not set | 751 | # CONFIG_HEADERS_CHECK is not set |
734 | CONFIG_DEBUG_KERNEL=y | 752 | CONFIG_DEBUG_KERNEL=y |
735 | # CONFIG_DEBUG_SHIRQ is not set | 753 | # CONFIG_DEBUG_SHIRQ is not set |
@@ -738,6 +756,7 @@ CONFIG_SCHED_DEBUG=y | |||
738 | # CONFIG_SCHEDSTATS is not set | 756 | # CONFIG_SCHEDSTATS is not set |
739 | # CONFIG_TIMER_STATS is not set | 757 | # CONFIG_TIMER_STATS is not set |
740 | # CONFIG_SLUB_DEBUG_ON is not set | 758 | # CONFIG_SLUB_DEBUG_ON is not set |
759 | # CONFIG_SLUB_STATS is not set | ||
741 | # CONFIG_DEBUG_RT_MUTEXES is not set | 760 | # CONFIG_DEBUG_RT_MUTEXES is not set |
742 | # CONFIG_RT_MUTEX_TESTER is not set | 761 | # CONFIG_RT_MUTEX_TESTER is not set |
743 | # CONFIG_DEBUG_SPINLOCK is not set | 762 | # CONFIG_DEBUG_SPINLOCK is not set |
@@ -750,15 +769,16 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
750 | # CONFIG_DEBUG_VM is not set | 769 | # CONFIG_DEBUG_VM is not set |
751 | # CONFIG_DEBUG_LIST is not set | 770 | # CONFIG_DEBUG_LIST is not set |
752 | # CONFIG_DEBUG_SG is not set | 771 | # CONFIG_DEBUG_SG is not set |
753 | CONFIG_FORCED_INLINING=y | ||
754 | # CONFIG_BOOT_PRINTK_DELAY is not set | 772 | # CONFIG_BOOT_PRINTK_DELAY is not set |
755 | # CONFIG_RCU_TORTURE_TEST is not set | 773 | # CONFIG_RCU_TORTURE_TEST is not set |
774 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
756 | # CONFIG_FAULT_INJECTION is not set | 775 | # CONFIG_FAULT_INJECTION is not set |
757 | # CONFIG_SAMPLES is not set | 776 | # CONFIG_SAMPLES is not set |
758 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 777 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
759 | # CONFIG_DEBUG_STACK_USAGE is not set | 778 | # CONFIG_DEBUG_STACK_USAGE is not set |
760 | # CONFIG_DEBUG_PAGEALLOC is not set | 779 | # CONFIG_DEBUG_PAGEALLOC is not set |
761 | # CONFIG_DEBUGGER is not set | 780 | # CONFIG_DEBUGGER is not set |
781 | # CONFIG_VIRQ_DEBUG is not set | ||
762 | # CONFIG_BDI_SWITCH is not set | 782 | # CONFIG_BDI_SWITCH is not set |
763 | # CONFIG_PPC_EARLY_DEBUG is not set | 783 | # CONFIG_PPC_EARLY_DEBUG is not set |
764 | 784 | ||
@@ -771,6 +791,7 @@ CONFIG_FORCED_INLINING=y | |||
771 | CONFIG_CRYPTO=y | 791 | CONFIG_CRYPTO=y |
772 | CONFIG_CRYPTO_ALGAPI=y | 792 | CONFIG_CRYPTO_ALGAPI=y |
773 | CONFIG_CRYPTO_BLKCIPHER=y | 793 | CONFIG_CRYPTO_BLKCIPHER=y |
794 | # CONFIG_CRYPTO_SEQIV is not set | ||
774 | CONFIG_CRYPTO_MANAGER=y | 795 | CONFIG_CRYPTO_MANAGER=y |
775 | # CONFIG_CRYPTO_HMAC is not set | 796 | # CONFIG_CRYPTO_HMAC is not set |
776 | # CONFIG_CRYPTO_XCBC is not set | 797 | # CONFIG_CRYPTO_XCBC is not set |
@@ -788,6 +809,9 @@ CONFIG_CRYPTO_CBC=y | |||
788 | CONFIG_CRYPTO_PCBC=y | 809 | CONFIG_CRYPTO_PCBC=y |
789 | # CONFIG_CRYPTO_LRW is not set | 810 | # CONFIG_CRYPTO_LRW is not set |
790 | # CONFIG_CRYPTO_XTS is not set | 811 | # CONFIG_CRYPTO_XTS is not set |
812 | # CONFIG_CRYPTO_CTR is not set | ||
813 | # CONFIG_CRYPTO_GCM is not set | ||
814 | # CONFIG_CRYPTO_CCM is not set | ||
791 | # CONFIG_CRYPTO_CRYPTD is not set | 815 | # CONFIG_CRYPTO_CRYPTD is not set |
792 | CONFIG_CRYPTO_DES=y | 816 | CONFIG_CRYPTO_DES=y |
793 | # CONFIG_CRYPTO_FCRYPT is not set | 817 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -802,11 +826,14 @@ CONFIG_CRYPTO_DES=y | |||
802 | # CONFIG_CRYPTO_KHAZAD is not set | 826 | # CONFIG_CRYPTO_KHAZAD is not set |
803 | # CONFIG_CRYPTO_ANUBIS is not set | 827 | # CONFIG_CRYPTO_ANUBIS is not set |
804 | # CONFIG_CRYPTO_SEED is not set | 828 | # CONFIG_CRYPTO_SEED is not set |
829 | # CONFIG_CRYPTO_SALSA20 is not set | ||
805 | # CONFIG_CRYPTO_DEFLATE is not set | 830 | # CONFIG_CRYPTO_DEFLATE is not set |
806 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 831 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
807 | # CONFIG_CRYPTO_CRC32C is not set | 832 | # CONFIG_CRYPTO_CRC32C is not set |
808 | # CONFIG_CRYPTO_CAMELLIA is not set | 833 | # CONFIG_CRYPTO_CAMELLIA is not set |
809 | # CONFIG_CRYPTO_TEST is not set | 834 | # CONFIG_CRYPTO_TEST is not set |
810 | # CONFIG_CRYPTO_AUTHENC is not set | 835 | # CONFIG_CRYPTO_AUTHENC is not set |
836 | # CONFIG_CRYPTO_LZO is not set | ||
811 | CONFIG_CRYPTO_HW=y | 837 | CONFIG_CRYPTO_HW=y |
838 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
812 | # CONFIG_PPC_CLOCK is not set | 839 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/ppc44x_defconfig b/arch/powerpc/configs/ppc44x_defconfig new file mode 100644 index 000000000000..57bd775ef777 --- /dev/null +++ b/arch/powerpc/configs/ppc44x_defconfig | |||
@@ -0,0 +1,904 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.25-rc2 | ||
4 | # Fri Feb 15 21:57:35 2008 | ||
5 | # | ||
6 | # CONFIG_PPC64 is not set | ||
7 | |||
8 | # | ||
9 | # Processor support | ||
10 | # | ||
11 | # CONFIG_6xx is not set | ||
12 | # CONFIG_PPC_85xx is not set | ||
13 | # CONFIG_PPC_8xx is not set | ||
14 | # CONFIG_40x is not set | ||
15 | CONFIG_44x=y | ||
16 | # CONFIG_E200 is not set | ||
17 | CONFIG_PPC_FPU=y | ||
18 | CONFIG_4xx=y | ||
19 | CONFIG_BOOKE=y | ||
20 | CONFIG_PTE_64BIT=y | ||
21 | CONFIG_PHYS_64BIT=y | ||
22 | # CONFIG_PPC_MM_SLICES is not set | ||
23 | CONFIG_NOT_COHERENT_CACHE=y | ||
24 | CONFIG_PPC32=y | ||
25 | CONFIG_WORD_SIZE=32 | ||
26 | CONFIG_PPC_MERGE=y | ||
27 | CONFIG_MMU=y | ||
28 | CONFIG_GENERIC_CMOS_UPDATE=y | ||
29 | CONFIG_GENERIC_TIME=y | ||
30 | CONFIG_GENERIC_TIME_VSYSCALL=y | ||
31 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
32 | CONFIG_GENERIC_HARDIRQS=y | ||
33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
34 | CONFIG_IRQ_PER_CPU=y | ||
35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | ||
36 | CONFIG_ARCH_HAS_ILOG2_U32=y | ||
37 | CONFIG_GENERIC_HWEIGHT=y | ||
38 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
39 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
40 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set | ||
41 | CONFIG_PPC=y | ||
42 | CONFIG_EARLY_PRINTK=y | ||
43 | CONFIG_GENERIC_NVRAM=y | ||
44 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | ||
45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | ||
46 | CONFIG_PPC_OF=y | ||
47 | CONFIG_OF=y | ||
48 | CONFIG_PPC_UDBG_16550=y | ||
49 | # CONFIG_GENERIC_TBSYNC is not set | ||
50 | CONFIG_AUDIT_ARCH=y | ||
51 | CONFIG_GENERIC_BUG=y | ||
52 | # CONFIG_DEFAULT_UIMAGE is not set | ||
53 | CONFIG_PPC_DCR_NATIVE=y | ||
54 | # CONFIG_PPC_DCR_MMIO is not set | ||
55 | CONFIG_PPC_DCR=y | ||
56 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
57 | |||
58 | # | ||
59 | # General setup | ||
60 | # | ||
61 | CONFIG_EXPERIMENTAL=y | ||
62 | CONFIG_BROKEN_ON_SMP=y | ||
63 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
64 | CONFIG_LOCALVERSION="" | ||
65 | CONFIG_LOCALVERSION_AUTO=y | ||
66 | CONFIG_SWAP=y | ||
67 | CONFIG_SYSVIPC=y | ||
68 | CONFIG_SYSVIPC_SYSCTL=y | ||
69 | CONFIG_POSIX_MQUEUE=y | ||
70 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
71 | # CONFIG_TASKSTATS is not set | ||
72 | # CONFIG_AUDIT is not set | ||
73 | # CONFIG_IKCONFIG is not set | ||
74 | CONFIG_LOG_BUF_SHIFT=14 | ||
75 | # CONFIG_CGROUPS is not set | ||
76 | CONFIG_GROUP_SCHED=y | ||
77 | CONFIG_FAIR_GROUP_SCHED=y | ||
78 | # CONFIG_RT_GROUP_SCHED is not set | ||
79 | CONFIG_USER_SCHED=y | ||
80 | # CONFIG_CGROUP_SCHED is not set | ||
81 | CONFIG_SYSFS_DEPRECATED=y | ||
82 | # CONFIG_RELAY is not set | ||
83 | # CONFIG_NAMESPACES is not set | ||
84 | CONFIG_BLK_DEV_INITRD=y | ||
85 | CONFIG_INITRAMFS_SOURCE="" | ||
86 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
87 | CONFIG_SYSCTL=y | ||
88 | CONFIG_EMBEDDED=y | ||
89 | CONFIG_SYSCTL_SYSCALL=y | ||
90 | CONFIG_KALLSYMS=y | ||
91 | CONFIG_KALLSYMS_ALL=y | ||
92 | CONFIG_KALLSYMS_EXTRA_PASS=y | ||
93 | CONFIG_HOTPLUG=y | ||
94 | CONFIG_PRINTK=y | ||
95 | CONFIG_BUG=y | ||
96 | CONFIG_ELF_CORE=y | ||
97 | CONFIG_COMPAT_BRK=y | ||
98 | CONFIG_BASE_FULL=y | ||
99 | CONFIG_FUTEX=y | ||
100 | CONFIG_ANON_INODES=y | ||
101 | CONFIG_EPOLL=y | ||
102 | CONFIG_SIGNALFD=y | ||
103 | CONFIG_TIMERFD=y | ||
104 | CONFIG_EVENTFD=y | ||
105 | CONFIG_SHMEM=y | ||
106 | CONFIG_VM_EVENT_COUNTERS=y | ||
107 | CONFIG_SLUB_DEBUG=y | ||
108 | # CONFIG_SLAB is not set | ||
109 | CONFIG_SLUB=y | ||
110 | # CONFIG_SLOB is not set | ||
111 | # CONFIG_PROFILING is not set | ||
112 | # CONFIG_MARKERS is not set | ||
113 | CONFIG_HAVE_OPROFILE=y | ||
114 | # CONFIG_KPROBES is not set | ||
115 | CONFIG_HAVE_KPROBES=y | ||
116 | CONFIG_PROC_PAGE_MONITOR=y | ||
117 | CONFIG_SLABINFO=y | ||
118 | CONFIG_RT_MUTEXES=y | ||
119 | # CONFIG_TINY_SHMEM is not set | ||
120 | CONFIG_BASE_SMALL=0 | ||
121 | CONFIG_MODULES=y | ||
122 | CONFIG_MODULE_UNLOAD=y | ||
123 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
124 | # CONFIG_MODVERSIONS is not set | ||
125 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
126 | CONFIG_KMOD=y | ||
127 | CONFIG_BLOCK=y | ||
128 | CONFIG_LBD=y | ||
129 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
130 | # CONFIG_LSF is not set | ||
131 | # CONFIG_BLK_DEV_BSG is not set | ||
132 | |||
133 | # | ||
134 | # IO Schedulers | ||
135 | # | ||
136 | CONFIG_IOSCHED_NOOP=y | ||
137 | CONFIG_IOSCHED_AS=y | ||
138 | CONFIG_IOSCHED_DEADLINE=y | ||
139 | CONFIG_IOSCHED_CFQ=y | ||
140 | CONFIG_DEFAULT_AS=y | ||
141 | # CONFIG_DEFAULT_DEADLINE is not set | ||
142 | # CONFIG_DEFAULT_CFQ is not set | ||
143 | # CONFIG_DEFAULT_NOOP is not set | ||
144 | CONFIG_DEFAULT_IOSCHED="anticipatory" | ||
145 | CONFIG_CLASSIC_RCU=y | ||
146 | # CONFIG_PREEMPT_RCU is not set | ||
147 | CONFIG_PPC4xx_PCI_EXPRESS=y | ||
148 | |||
149 | # | ||
150 | # Platform support | ||
151 | # | ||
152 | # CONFIG_PPC_MPC512x is not set | ||
153 | # CONFIG_PPC_MPC5121 is not set | ||
154 | # CONFIG_PPC_CELL is not set | ||
155 | # CONFIG_PPC_CELL_NATIVE is not set | ||
156 | # CONFIG_PQ2ADS is not set | ||
157 | CONFIG_BAMBOO=y | ||
158 | CONFIG_EBONY=y | ||
159 | CONFIG_SEQUOIA=y | ||
160 | CONFIG_TAISHAN=y | ||
161 | CONFIG_KATMAI=y | ||
162 | CONFIG_RAINIER=y | ||
163 | CONFIG_WARP=y | ||
164 | CONFIG_440EP=y | ||
165 | CONFIG_440EPX=y | ||
166 | CONFIG_440GRX=y | ||
167 | CONFIG_440GP=y | ||
168 | CONFIG_440GX=y | ||
169 | CONFIG_440SPe=y | ||
170 | CONFIG_IBM440EP_ERR42=y | ||
171 | # CONFIG_IPIC is not set | ||
172 | # CONFIG_MPIC is not set | ||
173 | # CONFIG_MPIC_WEIRD is not set | ||
174 | # CONFIG_PPC_I8259 is not set | ||
175 | # CONFIG_PPC_RTAS is not set | ||
176 | # CONFIG_MMIO_NVRAM is not set | ||
177 | # CONFIG_PPC_MPC106 is not set | ||
178 | # CONFIG_PPC_970_NAP is not set | ||
179 | # CONFIG_PPC_INDIRECT_IO is not set | ||
180 | # CONFIG_GENERIC_IOMAP is not set | ||
181 | # CONFIG_CPU_FREQ is not set | ||
182 | # CONFIG_FSL_ULI1575 is not set | ||
183 | CONFIG_OF_RTC=y | ||
184 | |||
185 | # | ||
186 | # Kernel options | ||
187 | # | ||
188 | # CONFIG_HIGHMEM is not set | ||
189 | # CONFIG_TICK_ONESHOT is not set | ||
190 | # CONFIG_NO_HZ is not set | ||
191 | # CONFIG_HIGH_RES_TIMERS is not set | ||
192 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
193 | # CONFIG_HZ_100 is not set | ||
194 | CONFIG_HZ_250=y | ||
195 | # CONFIG_HZ_300 is not set | ||
196 | # CONFIG_HZ_1000 is not set | ||
197 | CONFIG_HZ=250 | ||
198 | # CONFIG_SCHED_HRTICK is not set | ||
199 | CONFIG_PREEMPT_NONE=y | ||
200 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
201 | # CONFIG_PREEMPT is not set | ||
202 | # CONFIG_RCU_TRACE is not set | ||
203 | CONFIG_BINFMT_ELF=y | ||
204 | # CONFIG_BINFMT_MISC is not set | ||
205 | CONFIG_MATH_EMULATION=y | ||
206 | # CONFIG_IOMMU_HELPER is not set | ||
207 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | ||
208 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
209 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
210 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
211 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
212 | CONFIG_SELECT_MEMORY_MODEL=y | ||
213 | CONFIG_FLATMEM_MANUAL=y | ||
214 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
215 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
216 | CONFIG_FLATMEM=y | ||
217 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
218 | # CONFIG_SPARSEMEM_STATIC is not set | ||
219 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
220 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
221 | CONFIG_RESOURCES_64BIT=y | ||
222 | CONFIG_ZONE_DMA_FLAG=1 | ||
223 | CONFIG_BOUNCE=y | ||
224 | CONFIG_VIRT_TO_BUS=y | ||
225 | CONFIG_PROC_DEVICETREE=y | ||
226 | # CONFIG_CMDLINE_BOOL is not set | ||
227 | CONFIG_SECCOMP=y | ||
228 | CONFIG_ISA_DMA_API=y | ||
229 | |||
230 | # | ||
231 | # Bus options | ||
232 | # | ||
233 | CONFIG_ZONE_DMA=y | ||
234 | CONFIG_PPC_INDIRECT_PCI=y | ||
235 | CONFIG_PCI=y | ||
236 | CONFIG_PCI_DOMAINS=y | ||
237 | CONFIG_PCI_SYSCALL=y | ||
238 | # CONFIG_PCIEPORTBUS is not set | ||
239 | CONFIG_ARCH_SUPPORTS_MSI=y | ||
240 | # CONFIG_PCI_MSI is not set | ||
241 | CONFIG_PCI_LEGACY=y | ||
242 | # CONFIG_PCI_DEBUG is not set | ||
243 | # CONFIG_PCCARD is not set | ||
244 | # CONFIG_HOTPLUG_PCI is not set | ||
245 | |||
246 | # | ||
247 | # Advanced setup | ||
248 | # | ||
249 | # CONFIG_ADVANCED_OPTIONS is not set | ||
250 | |||
251 | # | ||
252 | # Default settings for advanced configuration options are used | ||
253 | # | ||
254 | CONFIG_HIGHMEM_START=0xfe000000 | ||
255 | CONFIG_LOWMEM_SIZE=0x30000000 | ||
256 | CONFIG_KERNEL_START=0xc0000000 | ||
257 | CONFIG_TASK_SIZE=0xc0000000 | ||
258 | CONFIG_CONSISTENT_START=0xff100000 | ||
259 | CONFIG_CONSISTENT_SIZE=0x00200000 | ||
260 | CONFIG_BOOT_LOAD=0x01000000 | ||
261 | |||
262 | # | ||
263 | # Networking | ||
264 | # | ||
265 | CONFIG_NET=y | ||
266 | |||
267 | # | ||
268 | # Networking options | ||
269 | # | ||
270 | CONFIG_PACKET=y | ||
271 | # CONFIG_PACKET_MMAP is not set | ||
272 | CONFIG_UNIX=y | ||
273 | # CONFIG_NET_KEY is not set | ||
274 | CONFIG_INET=y | ||
275 | # CONFIG_IP_MULTICAST is not set | ||
276 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
277 | CONFIG_IP_FIB_HASH=y | ||
278 | CONFIG_IP_PNP=y | ||
279 | CONFIG_IP_PNP_DHCP=y | ||
280 | CONFIG_IP_PNP_BOOTP=y | ||
281 | # CONFIG_IP_PNP_RARP is not set | ||
282 | # CONFIG_NET_IPIP is not set | ||
283 | # CONFIG_NET_IPGRE is not set | ||
284 | # CONFIG_ARPD is not set | ||
285 | # CONFIG_SYN_COOKIES is not set | ||
286 | # CONFIG_INET_AH is not set | ||
287 | # CONFIG_INET_ESP is not set | ||
288 | # CONFIG_INET_IPCOMP is not set | ||
289 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
290 | # CONFIG_INET_TUNNEL is not set | ||
291 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set | ||
292 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set | ||
293 | # CONFIG_INET_XFRM_MODE_BEET is not set | ||
294 | # CONFIG_INET_LRO is not set | ||
295 | CONFIG_INET_DIAG=y | ||
296 | CONFIG_INET_TCP_DIAG=y | ||
297 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
298 | CONFIG_TCP_CONG_CUBIC=y | ||
299 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
300 | # CONFIG_TCP_MD5SIG is not set | ||
301 | # CONFIG_IPV6 is not set | ||
302 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
303 | # CONFIG_INET6_TUNNEL is not set | ||
304 | # CONFIG_NETWORK_SECMARK is not set | ||
305 | # CONFIG_NETFILTER is not set | ||
306 | # CONFIG_IP_DCCP is not set | ||
307 | # CONFIG_IP_SCTP is not set | ||
308 | # CONFIG_TIPC is not set | ||
309 | # CONFIG_ATM is not set | ||
310 | # CONFIG_BRIDGE is not set | ||
311 | # CONFIG_VLAN_8021Q is not set | ||
312 | # CONFIG_DECNET is not set | ||
313 | # CONFIG_LLC2 is not set | ||
314 | # CONFIG_IPX is not set | ||
315 | # CONFIG_ATALK is not set | ||
316 | # CONFIG_X25 is not set | ||
317 | # CONFIG_LAPB is not set | ||
318 | # CONFIG_ECONET is not set | ||
319 | # CONFIG_WAN_ROUTER is not set | ||
320 | # CONFIG_NET_SCHED is not set | ||
321 | |||
322 | # | ||
323 | # Network testing | ||
324 | # | ||
325 | # CONFIG_NET_PKTGEN is not set | ||
326 | # CONFIG_HAMRADIO is not set | ||
327 | # CONFIG_CAN is not set | ||
328 | # CONFIG_IRDA is not set | ||
329 | # CONFIG_BT is not set | ||
330 | # CONFIG_AF_RXRPC is not set | ||
331 | |||
332 | # | ||
333 | # Wireless | ||
334 | # | ||
335 | # CONFIG_CFG80211 is not set | ||
336 | # CONFIG_WIRELESS_EXT is not set | ||
337 | # CONFIG_MAC80211 is not set | ||
338 | # CONFIG_IEEE80211 is not set | ||
339 | # CONFIG_RFKILL is not set | ||
340 | # CONFIG_NET_9P is not set | ||
341 | |||
342 | # | ||
343 | # Device Drivers | ||
344 | # | ||
345 | |||
346 | # | ||
347 | # Generic Driver Options | ||
348 | # | ||
349 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
350 | CONFIG_STANDALONE=y | ||
351 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
352 | CONFIG_FW_LOADER=y | ||
353 | # CONFIG_DEBUG_DRIVER is not set | ||
354 | # CONFIG_DEBUG_DEVRES is not set | ||
355 | # CONFIG_SYS_HYPERVISOR is not set | ||
356 | CONFIG_CONNECTOR=y | ||
357 | CONFIG_PROC_EVENTS=y | ||
358 | CONFIG_MTD=y | ||
359 | # CONFIG_MTD_DEBUG is not set | ||
360 | # CONFIG_MTD_CONCAT is not set | ||
361 | CONFIG_MTD_PARTITIONS=y | ||
362 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
363 | # CONFIG_MTD_CMDLINE_PARTS is not set | ||
364 | CONFIG_MTD_OF_PARTS=y | ||
365 | |||
366 | # | ||
367 | # User Modules And Translation Layers | ||
368 | # | ||
369 | CONFIG_MTD_CHAR=y | ||
370 | CONFIG_MTD_BLKDEVS=y | ||
371 | CONFIG_MTD_BLOCK=y | ||
372 | # CONFIG_FTL is not set | ||
373 | # CONFIG_NFTL is not set | ||
374 | # CONFIG_INFTL is not set | ||
375 | # CONFIG_RFD_FTL is not set | ||
376 | # CONFIG_SSFDC is not set | ||
377 | # CONFIG_MTD_OOPS is not set | ||
378 | |||
379 | # | ||
380 | # RAM/ROM/Flash chip drivers | ||
381 | # | ||
382 | CONFIG_MTD_CFI=y | ||
383 | CONFIG_MTD_JEDECPROBE=y | ||
384 | CONFIG_MTD_GEN_PROBE=y | ||
385 | # CONFIG_MTD_CFI_ADV_OPTIONS is not set | ||
386 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
387 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
388 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
389 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
390 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
391 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
392 | CONFIG_MTD_CFI_I1=y | ||
393 | CONFIG_MTD_CFI_I2=y | ||
394 | # CONFIG_MTD_CFI_I4 is not set | ||
395 | # CONFIG_MTD_CFI_I8 is not set | ||
396 | # CONFIG_MTD_CFI_INTELEXT is not set | ||
397 | CONFIG_MTD_CFI_AMDSTD=y | ||
398 | # CONFIG_MTD_CFI_STAA is not set | ||
399 | CONFIG_MTD_CFI_UTIL=y | ||
400 | # CONFIG_MTD_RAM is not set | ||
401 | # CONFIG_MTD_ROM is not set | ||
402 | # CONFIG_MTD_ABSENT is not set | ||
403 | |||
404 | # | ||
405 | # Mapping drivers for chip access | ||
406 | # | ||
407 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | ||
408 | # CONFIG_MTD_PHYSMAP is not set | ||
409 | CONFIG_MTD_PHYSMAP_OF=y | ||
410 | # CONFIG_MTD_INTEL_VR_NOR is not set | ||
411 | # CONFIG_MTD_PLATRAM is not set | ||
412 | |||
413 | # | ||
414 | # Self-contained MTD device drivers | ||
415 | # | ||
416 | # CONFIG_MTD_PMC551 is not set | ||
417 | # CONFIG_MTD_SLRAM is not set | ||
418 | # CONFIG_MTD_PHRAM is not set | ||
419 | # CONFIG_MTD_MTDRAM is not set | ||
420 | # CONFIG_MTD_BLOCK2MTD is not set | ||
421 | |||
422 | # | ||
423 | # Disk-On-Chip Device Drivers | ||
424 | # | ||
425 | # CONFIG_MTD_DOC2000 is not set | ||
426 | # CONFIG_MTD_DOC2001 is not set | ||
427 | # CONFIG_MTD_DOC2001PLUS is not set | ||
428 | # CONFIG_MTD_NAND is not set | ||
429 | # CONFIG_MTD_ONENAND is not set | ||
430 | |||
431 | # | ||
432 | # UBI - Unsorted block images | ||
433 | # | ||
434 | # CONFIG_MTD_UBI is not set | ||
435 | CONFIG_OF_DEVICE=y | ||
436 | # CONFIG_PARPORT is not set | ||
437 | CONFIG_BLK_DEV=y | ||
438 | # CONFIG_BLK_DEV_FD is not set | ||
439 | # CONFIG_BLK_CPQ_DA is not set | ||
440 | # CONFIG_BLK_CPQ_CISS_DA is not set | ||
441 | # CONFIG_BLK_DEV_DAC960 is not set | ||
442 | # CONFIG_BLK_DEV_UMEM is not set | ||
443 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
444 | # CONFIG_BLK_DEV_LOOP is not set | ||
445 | # CONFIG_BLK_DEV_NBD is not set | ||
446 | # CONFIG_BLK_DEV_SX8 is not set | ||
447 | CONFIG_BLK_DEV_RAM=y | ||
448 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
449 | CONFIG_BLK_DEV_RAM_SIZE=35000 | ||
450 | # CONFIG_BLK_DEV_XIP is not set | ||
451 | # CONFIG_CDROM_PKTCDVD is not set | ||
452 | # CONFIG_ATA_OVER_ETH is not set | ||
453 | # CONFIG_XILINX_SYSACE is not set | ||
454 | CONFIG_MISC_DEVICES=y | ||
455 | # CONFIG_PHANTOM is not set | ||
456 | # CONFIG_EEPROM_93CX6 is not set | ||
457 | # CONFIG_SGI_IOC4 is not set | ||
458 | # CONFIG_TIFM_CORE is not set | ||
459 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
460 | CONFIG_HAVE_IDE=y | ||
461 | # CONFIG_IDE is not set | ||
462 | |||
463 | # | ||
464 | # SCSI device support | ||
465 | # | ||
466 | # CONFIG_RAID_ATTRS is not set | ||
467 | # CONFIG_SCSI is not set | ||
468 | # CONFIG_SCSI_DMA is not set | ||
469 | # CONFIG_SCSI_NETLINK is not set | ||
470 | # CONFIG_ATA is not set | ||
471 | # CONFIG_MD is not set | ||
472 | # CONFIG_FUSION is not set | ||
473 | |||
474 | # | ||
475 | # IEEE 1394 (FireWire) support | ||
476 | # | ||
477 | # CONFIG_FIREWIRE is not set | ||
478 | # CONFIG_IEEE1394 is not set | ||
479 | # CONFIG_I2O is not set | ||
480 | # CONFIG_MACINTOSH_DRIVERS is not set | ||
481 | CONFIG_NETDEVICES=y | ||
482 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
483 | # CONFIG_DUMMY is not set | ||
484 | # CONFIG_BONDING is not set | ||
485 | # CONFIG_MACVLAN is not set | ||
486 | # CONFIG_EQUALIZER is not set | ||
487 | # CONFIG_TUN is not set | ||
488 | # CONFIG_VETH is not set | ||
489 | # CONFIG_ARCNET is not set | ||
490 | # CONFIG_PHYLIB is not set | ||
491 | CONFIG_NET_ETHERNET=y | ||
492 | # CONFIG_MII is not set | ||
493 | # CONFIG_HAPPYMEAL is not set | ||
494 | # CONFIG_SUNGEM is not set | ||
495 | # CONFIG_CASSINI is not set | ||
496 | # CONFIG_NET_VENDOR_3COM is not set | ||
497 | # CONFIG_NET_TULIP is not set | ||
498 | # CONFIG_HP100 is not set | ||
499 | CONFIG_IBM_NEW_EMAC=y | ||
500 | CONFIG_IBM_NEW_EMAC_RXB=128 | ||
501 | CONFIG_IBM_NEW_EMAC_TXB=64 | ||
502 | CONFIG_IBM_NEW_EMAC_POLL_WEIGHT=32 | ||
503 | CONFIG_IBM_NEW_EMAC_RX_COPY_THRESHOLD=256 | ||
504 | CONFIG_IBM_NEW_EMAC_RX_SKB_HEADROOM=0 | ||
505 | # CONFIG_IBM_NEW_EMAC_DEBUG is not set | ||
506 | CONFIG_IBM_NEW_EMAC_ZMII=y | ||
507 | CONFIG_IBM_NEW_EMAC_RGMII=y | ||
508 | CONFIG_IBM_NEW_EMAC_TAH=y | ||
509 | CONFIG_IBM_NEW_EMAC_EMAC4=y | ||
510 | # CONFIG_NET_PCI is not set | ||
511 | # CONFIG_B44 is not set | ||
512 | CONFIG_NETDEV_1000=y | ||
513 | # CONFIG_ACENIC is not set | ||
514 | # CONFIG_DL2K is not set | ||
515 | # CONFIG_E1000 is not set | ||
516 | # CONFIG_E1000E is not set | ||
517 | # CONFIG_E1000E_ENABLED is not set | ||
518 | # CONFIG_IP1000 is not set | ||
519 | # CONFIG_IGB is not set | ||
520 | # CONFIG_NS83820 is not set | ||
521 | # CONFIG_HAMACHI is not set | ||
522 | # CONFIG_YELLOWFIN is not set | ||
523 | # CONFIG_R8169 is not set | ||
524 | # CONFIG_SIS190 is not set | ||
525 | # CONFIG_SKGE is not set | ||
526 | # CONFIG_SKY2 is not set | ||
527 | # CONFIG_SK98LIN is not set | ||
528 | # CONFIG_VIA_VELOCITY is not set | ||
529 | # CONFIG_TIGON3 is not set | ||
530 | # CONFIG_BNX2 is not set | ||
531 | # CONFIG_QLA3XXX is not set | ||
532 | # CONFIG_ATL1 is not set | ||
533 | CONFIG_NETDEV_10000=y | ||
534 | # CONFIG_CHELSIO_T1 is not set | ||
535 | # CONFIG_CHELSIO_T3 is not set | ||
536 | # CONFIG_IXGBE is not set | ||
537 | # CONFIG_IXGB is not set | ||
538 | # CONFIG_S2IO is not set | ||
539 | # CONFIG_MYRI10GE is not set | ||
540 | # CONFIG_NETXEN_NIC is not set | ||
541 | # CONFIG_NIU is not set | ||
542 | # CONFIG_MLX4_CORE is not set | ||
543 | # CONFIG_TEHUTI is not set | ||
544 | # CONFIG_BNX2X is not set | ||
545 | # CONFIG_TR is not set | ||
546 | |||
547 | # | ||
548 | # Wireless LAN | ||
549 | # | ||
550 | # CONFIG_WLAN_PRE80211 is not set | ||
551 | # CONFIG_WLAN_80211 is not set | ||
552 | # CONFIG_WAN is not set | ||
553 | # CONFIG_FDDI is not set | ||
554 | # CONFIG_HIPPI is not set | ||
555 | # CONFIG_PPP is not set | ||
556 | # CONFIG_SLIP is not set | ||
557 | # CONFIG_NETCONSOLE is not set | ||
558 | # CONFIG_NETPOLL is not set | ||
559 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
560 | # CONFIG_ISDN is not set | ||
561 | # CONFIG_PHONE is not set | ||
562 | |||
563 | # | ||
564 | # Input device support | ||
565 | # | ||
566 | # CONFIG_INPUT is not set | ||
567 | |||
568 | # | ||
569 | # Hardware I/O ports | ||
570 | # | ||
571 | # CONFIG_SERIO is not set | ||
572 | # CONFIG_GAMEPORT is not set | ||
573 | |||
574 | # | ||
575 | # Character devices | ||
576 | # | ||
577 | # CONFIG_VT is not set | ||
578 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
579 | # CONFIG_NOZOMI is not set | ||
580 | |||
581 | # | ||
582 | # Serial drivers | ||
583 | # | ||
584 | CONFIG_SERIAL_8250=y | ||
585 | CONFIG_SERIAL_8250_CONSOLE=y | ||
586 | # CONFIG_SERIAL_8250_PCI is not set | ||
587 | CONFIG_SERIAL_8250_NR_UARTS=4 | ||
588 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | ||
589 | CONFIG_SERIAL_8250_EXTENDED=y | ||
590 | # CONFIG_SERIAL_8250_MANY_PORTS is not set | ||
591 | CONFIG_SERIAL_8250_SHARE_IRQ=y | ||
592 | # CONFIG_SERIAL_8250_DETECT_IRQ is not set | ||
593 | # CONFIG_SERIAL_8250_RSA is not set | ||
594 | |||
595 | # | ||
596 | # Non-8250 serial port support | ||
597 | # | ||
598 | # CONFIG_SERIAL_UARTLITE is not set | ||
599 | CONFIG_SERIAL_CORE=y | ||
600 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
601 | # CONFIG_SERIAL_JSM is not set | ||
602 | CONFIG_SERIAL_OF_PLATFORM=y | ||
603 | CONFIG_UNIX98_PTYS=y | ||
604 | CONFIG_LEGACY_PTYS=y | ||
605 | CONFIG_LEGACY_PTY_COUNT=256 | ||
606 | # CONFIG_IPMI_HANDLER is not set | ||
607 | # CONFIG_HW_RANDOM is not set | ||
608 | # CONFIG_NVRAM is not set | ||
609 | # CONFIG_GEN_RTC is not set | ||
610 | # CONFIG_R3964 is not set | ||
611 | # CONFIG_APPLICOM is not set | ||
612 | # CONFIG_RAW_DRIVER is not set | ||
613 | # CONFIG_TCG_TPM is not set | ||
614 | CONFIG_DEVPORT=y | ||
615 | # CONFIG_I2C is not set | ||
616 | |||
617 | # | ||
618 | # SPI support | ||
619 | # | ||
620 | # CONFIG_SPI is not set | ||
621 | # CONFIG_SPI_MASTER is not set | ||
622 | # CONFIG_W1 is not set | ||
623 | # CONFIG_POWER_SUPPLY is not set | ||
624 | # CONFIG_HWMON is not set | ||
625 | # CONFIG_THERMAL is not set | ||
626 | # CONFIG_WATCHDOG is not set | ||
627 | |||
628 | # | ||
629 | # Sonics Silicon Backplane | ||
630 | # | ||
631 | CONFIG_SSB_POSSIBLE=y | ||
632 | # CONFIG_SSB is not set | ||
633 | |||
634 | # | ||
635 | # Multifunction device drivers | ||
636 | # | ||
637 | # CONFIG_MFD_SM501 is not set | ||
638 | |||
639 | # | ||
640 | # Multimedia devices | ||
641 | # | ||
642 | # CONFIG_VIDEO_DEV is not set | ||
643 | # CONFIG_DVB_CORE is not set | ||
644 | # CONFIG_DAB is not set | ||
645 | |||
646 | # | ||
647 | # Graphics support | ||
648 | # | ||
649 | # CONFIG_AGP is not set | ||
650 | # CONFIG_DRM is not set | ||
651 | # CONFIG_VGASTATE is not set | ||
652 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
653 | # CONFIG_FB is not set | ||
654 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
655 | |||
656 | # | ||
657 | # Display device support | ||
658 | # | ||
659 | # CONFIG_DISPLAY_SUPPORT is not set | ||
660 | |||
661 | # | ||
662 | # Sound | ||
663 | # | ||
664 | # CONFIG_SOUND is not set | ||
665 | CONFIG_USB_SUPPORT=y | ||
666 | CONFIG_USB_ARCH_HAS_HCD=y | ||
667 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
668 | CONFIG_USB_ARCH_HAS_EHCI=y | ||
669 | # CONFIG_USB is not set | ||
670 | |||
671 | # | ||
672 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
673 | # | ||
674 | # CONFIG_USB_GADGET is not set | ||
675 | # CONFIG_MMC is not set | ||
676 | # CONFIG_MEMSTICK is not set | ||
677 | # CONFIG_NEW_LEDS is not set | ||
678 | # CONFIG_INFINIBAND is not set | ||
679 | # CONFIG_EDAC is not set | ||
680 | # CONFIG_RTC_CLASS is not set | ||
681 | |||
682 | # | ||
683 | # Userspace I/O | ||
684 | # | ||
685 | # CONFIG_UIO is not set | ||
686 | |||
687 | # | ||
688 | # File systems | ||
689 | # | ||
690 | CONFIG_EXT2_FS=y | ||
691 | # CONFIG_EXT2_FS_XATTR is not set | ||
692 | # CONFIG_EXT2_FS_XIP is not set | ||
693 | # CONFIG_EXT3_FS is not set | ||
694 | # CONFIG_EXT4DEV_FS is not set | ||
695 | # CONFIG_REISERFS_FS is not set | ||
696 | # CONFIG_JFS_FS is not set | ||
697 | # CONFIG_FS_POSIX_ACL is not set | ||
698 | # CONFIG_XFS_FS is not set | ||
699 | # CONFIG_GFS2_FS is not set | ||
700 | # CONFIG_OCFS2_FS is not set | ||
701 | CONFIG_DNOTIFY=y | ||
702 | CONFIG_INOTIFY=y | ||
703 | CONFIG_INOTIFY_USER=y | ||
704 | # CONFIG_QUOTA is not set | ||
705 | # CONFIG_AUTOFS_FS is not set | ||
706 | # CONFIG_AUTOFS4_FS is not set | ||
707 | # CONFIG_FUSE_FS is not set | ||
708 | |||
709 | # | ||
710 | # CD-ROM/DVD Filesystems | ||
711 | # | ||
712 | # CONFIG_ISO9660_FS is not set | ||
713 | # CONFIG_UDF_FS is not set | ||
714 | |||
715 | # | ||
716 | # DOS/FAT/NT Filesystems | ||
717 | # | ||
718 | # CONFIG_MSDOS_FS is not set | ||
719 | # CONFIG_VFAT_FS is not set | ||
720 | # CONFIG_NTFS_FS is not set | ||
721 | |||
722 | # | ||
723 | # Pseudo filesystems | ||
724 | # | ||
725 | CONFIG_PROC_FS=y | ||
726 | CONFIG_PROC_KCORE=y | ||
727 | CONFIG_PROC_SYSCTL=y | ||
728 | CONFIG_SYSFS=y | ||
729 | CONFIG_TMPFS=y | ||
730 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
731 | # CONFIG_HUGETLB_PAGE is not set | ||
732 | # CONFIG_CONFIGFS_FS is not set | ||
733 | |||
734 | # | ||
735 | # Miscellaneous filesystems | ||
736 | # | ||
737 | # CONFIG_ADFS_FS is not set | ||
738 | # CONFIG_AFFS_FS is not set | ||
739 | # CONFIG_HFS_FS is not set | ||
740 | # CONFIG_HFSPLUS_FS is not set | ||
741 | # CONFIG_BEFS_FS is not set | ||
742 | # CONFIG_BFS_FS is not set | ||
743 | # CONFIG_EFS_FS is not set | ||
744 | CONFIG_JFFS2_FS=y | ||
745 | CONFIG_JFFS2_FS_DEBUG=0 | ||
746 | CONFIG_JFFS2_FS_WRITEBUFFER=y | ||
747 | # CONFIG_JFFS2_FS_WBUF_VERIFY is not set | ||
748 | # CONFIG_JFFS2_SUMMARY is not set | ||
749 | # CONFIG_JFFS2_FS_XATTR is not set | ||
750 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set | ||
751 | CONFIG_JFFS2_ZLIB=y | ||
752 | # CONFIG_JFFS2_LZO is not set | ||
753 | CONFIG_JFFS2_RTIME=y | ||
754 | # CONFIG_JFFS2_RUBIN is not set | ||
755 | CONFIG_CRAMFS=y | ||
756 | # CONFIG_VXFS_FS is not set | ||
757 | # CONFIG_MINIX_FS is not set | ||
758 | # CONFIG_HPFS_FS is not set | ||
759 | # CONFIG_QNX4FS_FS is not set | ||
760 | # CONFIG_ROMFS_FS is not set | ||
761 | # CONFIG_SYSV_FS is not set | ||
762 | # CONFIG_UFS_FS is not set | ||
763 | CONFIG_NETWORK_FILESYSTEMS=y | ||
764 | CONFIG_NFS_FS=y | ||
765 | CONFIG_NFS_V3=y | ||
766 | # CONFIG_NFS_V3_ACL is not set | ||
767 | # CONFIG_NFS_V4 is not set | ||
768 | # CONFIG_NFS_DIRECTIO is not set | ||
769 | # CONFIG_NFSD is not set | ||
770 | CONFIG_ROOT_NFS=y | ||
771 | CONFIG_LOCKD=y | ||
772 | CONFIG_LOCKD_V4=y | ||
773 | CONFIG_NFS_COMMON=y | ||
774 | CONFIG_SUNRPC=y | ||
775 | # CONFIG_SUNRPC_BIND34 is not set | ||
776 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
777 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
778 | # CONFIG_SMB_FS is not set | ||
779 | # CONFIG_CIFS is not set | ||
780 | # CONFIG_NCP_FS is not set | ||
781 | # CONFIG_CODA_FS is not set | ||
782 | # CONFIG_AFS_FS is not set | ||
783 | |||
784 | # | ||
785 | # Partition Types | ||
786 | # | ||
787 | # CONFIG_PARTITION_ADVANCED is not set | ||
788 | CONFIG_MSDOS_PARTITION=y | ||
789 | # CONFIG_NLS is not set | ||
790 | # CONFIG_DLM is not set | ||
791 | |||
792 | # | ||
793 | # Library routines | ||
794 | # | ||
795 | CONFIG_BITREVERSE=y | ||
796 | # CONFIG_CRC_CCITT is not set | ||
797 | # CONFIG_CRC16 is not set | ||
798 | # CONFIG_CRC_ITU_T is not set | ||
799 | CONFIG_CRC32=y | ||
800 | # CONFIG_CRC7 is not set | ||
801 | # CONFIG_LIBCRC32C is not set | ||
802 | CONFIG_ZLIB_INFLATE=y | ||
803 | CONFIG_ZLIB_DEFLATE=y | ||
804 | CONFIG_PLIST=y | ||
805 | CONFIG_HAS_IOMEM=y | ||
806 | CONFIG_HAS_IOPORT=y | ||
807 | CONFIG_HAS_DMA=y | ||
808 | |||
809 | # | ||
810 | # Kernel hacking | ||
811 | # | ||
812 | # CONFIG_PRINTK_TIME is not set | ||
813 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
814 | CONFIG_ENABLE_MUST_CHECK=y | ||
815 | CONFIG_MAGIC_SYSRQ=y | ||
816 | # CONFIG_UNUSED_SYMBOLS is not set | ||
817 | # CONFIG_DEBUG_FS is not set | ||
818 | # CONFIG_HEADERS_CHECK is not set | ||
819 | CONFIG_DEBUG_KERNEL=y | ||
820 | # CONFIG_DEBUG_SHIRQ is not set | ||
821 | CONFIG_DETECT_SOFTLOCKUP=y | ||
822 | CONFIG_SCHED_DEBUG=y | ||
823 | # CONFIG_SCHEDSTATS is not set | ||
824 | # CONFIG_TIMER_STATS is not set | ||
825 | # CONFIG_SLUB_DEBUG_ON is not set | ||
826 | # CONFIG_SLUB_STATS is not set | ||
827 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
828 | # CONFIG_RT_MUTEX_TESTER is not set | ||
829 | # CONFIG_DEBUG_SPINLOCK is not set | ||
830 | # CONFIG_DEBUG_MUTEXES is not set | ||
831 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
832 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
833 | # CONFIG_DEBUG_KOBJECT is not set | ||
834 | CONFIG_DEBUG_BUGVERBOSE=y | ||
835 | # CONFIG_DEBUG_INFO is not set | ||
836 | # CONFIG_DEBUG_VM is not set | ||
837 | # CONFIG_DEBUG_LIST is not set | ||
838 | # CONFIG_DEBUG_SG is not set | ||
839 | # CONFIG_BOOT_PRINTK_DELAY is not set | ||
840 | # CONFIG_RCU_TORTURE_TEST is not set | ||
841 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
842 | # CONFIG_FAULT_INJECTION is not set | ||
843 | # CONFIG_SAMPLES is not set | ||
844 | # CONFIG_DEBUG_STACKOVERFLOW is not set | ||
845 | # CONFIG_DEBUG_STACK_USAGE is not set | ||
846 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
847 | # CONFIG_DEBUGGER is not set | ||
848 | # CONFIG_BDI_SWITCH is not set | ||
849 | # CONFIG_PPC_EARLY_DEBUG is not set | ||
850 | |||
851 | # | ||
852 | # Security options | ||
853 | # | ||
854 | # CONFIG_KEYS is not set | ||
855 | # CONFIG_SECURITY is not set | ||
856 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
857 | CONFIG_CRYPTO=y | ||
858 | CONFIG_CRYPTO_ALGAPI=y | ||
859 | CONFIG_CRYPTO_BLKCIPHER=y | ||
860 | # CONFIG_CRYPTO_SEQIV is not set | ||
861 | CONFIG_CRYPTO_MANAGER=y | ||
862 | # CONFIG_CRYPTO_HMAC is not set | ||
863 | # CONFIG_CRYPTO_XCBC is not set | ||
864 | # CONFIG_CRYPTO_NULL is not set | ||
865 | # CONFIG_CRYPTO_MD4 is not set | ||
866 | CONFIG_CRYPTO_MD5=y | ||
867 | # CONFIG_CRYPTO_SHA1 is not set | ||
868 | # CONFIG_CRYPTO_SHA256 is not set | ||
869 | # CONFIG_CRYPTO_SHA512 is not set | ||
870 | # CONFIG_CRYPTO_WP512 is not set | ||
871 | # CONFIG_CRYPTO_TGR192 is not set | ||
872 | # CONFIG_CRYPTO_GF128MUL is not set | ||
873 | CONFIG_CRYPTO_ECB=y | ||
874 | CONFIG_CRYPTO_CBC=y | ||
875 | CONFIG_CRYPTO_PCBC=y | ||
876 | # CONFIG_CRYPTO_LRW is not set | ||
877 | # CONFIG_CRYPTO_XTS is not set | ||
878 | # CONFIG_CRYPTO_CTR is not set | ||
879 | # CONFIG_CRYPTO_GCM is not set | ||
880 | # CONFIG_CRYPTO_CCM is not set | ||
881 | # CONFIG_CRYPTO_CRYPTD is not set | ||
882 | CONFIG_CRYPTO_DES=y | ||
883 | # CONFIG_CRYPTO_FCRYPT is not set | ||
884 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
885 | # CONFIG_CRYPTO_TWOFISH is not set | ||
886 | # CONFIG_CRYPTO_SERPENT is not set | ||
887 | # CONFIG_CRYPTO_AES is not set | ||
888 | # CONFIG_CRYPTO_CAST5 is not set | ||
889 | # CONFIG_CRYPTO_CAST6 is not set | ||
890 | # CONFIG_CRYPTO_TEA is not set | ||
891 | # CONFIG_CRYPTO_ARC4 is not set | ||
892 | # CONFIG_CRYPTO_KHAZAD is not set | ||
893 | # CONFIG_CRYPTO_ANUBIS is not set | ||
894 | # CONFIG_CRYPTO_SEED is not set | ||
895 | # CONFIG_CRYPTO_SALSA20 is not set | ||
896 | # CONFIG_CRYPTO_DEFLATE is not set | ||
897 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
898 | # CONFIG_CRYPTO_CRC32C is not set | ||
899 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
900 | # CONFIG_CRYPTO_TEST is not set | ||
901 | # CONFIG_CRYPTO_AUTHENC is not set | ||
902 | # CONFIG_CRYPTO_LZO is not set | ||
903 | # CONFIG_CRYPTO_HW is not set | ||
904 | # CONFIG_PPC_CLOCK is not set | ||
diff --git a/arch/powerpc/configs/rainier_defconfig b/arch/powerpc/configs/rainier_defconfig index 7b95001a22a8..dec18ca73519 100644 --- a/arch/powerpc/configs/rainier_defconfig +++ b/arch/powerpc/configs/rainier_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc6 | 3 | # Linux kernel version: 2.6.25-rc2 |
4 | # Mon Dec 24 11:22:40 2007 | 4 | # Fri Feb 15 21:53:10 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -29,6 +29,7 @@ CONFIG_GENERIC_TIME=y | |||
29 | CONFIG_GENERIC_TIME_VSYSCALL=y | 29 | CONFIG_GENERIC_TIME_VSYSCALL=y |
30 | CONFIG_GENERIC_CLOCKEVENTS=y | 30 | CONFIG_GENERIC_CLOCKEVENTS=y |
31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
32 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
34 | CONFIG_ARCH_HAS_ILOG2_U32=y | 35 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -67,17 +68,18 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
67 | CONFIG_POSIX_MQUEUE=y | 68 | CONFIG_POSIX_MQUEUE=y |
68 | # CONFIG_BSD_PROCESS_ACCT is not set | 69 | # CONFIG_BSD_PROCESS_ACCT is not set |
69 | # CONFIG_TASKSTATS is not set | 70 | # CONFIG_TASKSTATS is not set |
70 | # CONFIG_USER_NS is not set | ||
71 | # CONFIG_PID_NS is not set | ||
72 | # CONFIG_AUDIT is not set | 71 | # CONFIG_AUDIT is not set |
73 | # CONFIG_IKCONFIG is not set | 72 | # CONFIG_IKCONFIG is not set |
74 | CONFIG_LOG_BUF_SHIFT=14 | 73 | CONFIG_LOG_BUF_SHIFT=14 |
75 | # CONFIG_CGROUPS is not set | 74 | # CONFIG_CGROUPS is not set |
75 | CONFIG_GROUP_SCHED=y | ||
76 | CONFIG_FAIR_GROUP_SCHED=y | 76 | CONFIG_FAIR_GROUP_SCHED=y |
77 | CONFIG_FAIR_USER_SCHED=y | 77 | # CONFIG_RT_GROUP_SCHED is not set |
78 | # CONFIG_FAIR_CGROUP_SCHED is not set | 78 | CONFIG_USER_SCHED=y |
79 | # CONFIG_CGROUP_SCHED is not set | ||
79 | CONFIG_SYSFS_DEPRECATED=y | 80 | CONFIG_SYSFS_DEPRECATED=y |
80 | # CONFIG_RELAY is not set | 81 | # CONFIG_RELAY is not set |
82 | # CONFIG_NAMESPACES is not set | ||
81 | CONFIG_BLK_DEV_INITRD=y | 83 | CONFIG_BLK_DEV_INITRD=y |
82 | CONFIG_INITRAMFS_SOURCE="" | 84 | CONFIG_INITRAMFS_SOURCE="" |
83 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 85 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -91,11 +93,13 @@ CONFIG_HOTPLUG=y | |||
91 | CONFIG_PRINTK=y | 93 | CONFIG_PRINTK=y |
92 | CONFIG_BUG=y | 94 | CONFIG_BUG=y |
93 | CONFIG_ELF_CORE=y | 95 | CONFIG_ELF_CORE=y |
96 | CONFIG_COMPAT_BRK=y | ||
94 | CONFIG_BASE_FULL=y | 97 | CONFIG_BASE_FULL=y |
95 | CONFIG_FUTEX=y | 98 | CONFIG_FUTEX=y |
96 | CONFIG_ANON_INODES=y | 99 | CONFIG_ANON_INODES=y |
97 | CONFIG_EPOLL=y | 100 | CONFIG_EPOLL=y |
98 | CONFIG_SIGNALFD=y | 101 | CONFIG_SIGNALFD=y |
102 | CONFIG_TIMERFD=y | ||
99 | CONFIG_EVENTFD=y | 103 | CONFIG_EVENTFD=y |
100 | CONFIG_SHMEM=y | 104 | CONFIG_SHMEM=y |
101 | CONFIG_VM_EVENT_COUNTERS=y | 105 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -103,6 +107,13 @@ CONFIG_SLUB_DEBUG=y | |||
103 | # CONFIG_SLAB is not set | 107 | # CONFIG_SLAB is not set |
104 | CONFIG_SLUB=y | 108 | CONFIG_SLUB=y |
105 | # CONFIG_SLOB is not set | 109 | # CONFIG_SLOB is not set |
110 | # CONFIG_PROFILING is not set | ||
111 | # CONFIG_MARKERS is not set | ||
112 | CONFIG_HAVE_OPROFILE=y | ||
113 | # CONFIG_KPROBES is not set | ||
114 | CONFIG_HAVE_KPROBES=y | ||
115 | CONFIG_PROC_PAGE_MONITOR=y | ||
116 | CONFIG_SLABINFO=y | ||
106 | CONFIG_RT_MUTEXES=y | 117 | CONFIG_RT_MUTEXES=y |
107 | # CONFIG_TINY_SHMEM is not set | 118 | # CONFIG_TINY_SHMEM is not set |
108 | CONFIG_BASE_SMALL=0 | 119 | CONFIG_BASE_SMALL=0 |
@@ -130,13 +141,15 @@ CONFIG_DEFAULT_AS=y | |||
130 | # CONFIG_DEFAULT_CFQ is not set | 141 | # CONFIG_DEFAULT_CFQ is not set |
131 | # CONFIG_DEFAULT_NOOP is not set | 142 | # CONFIG_DEFAULT_NOOP is not set |
132 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 143 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
144 | CONFIG_CLASSIC_RCU=y | ||
145 | # CONFIG_PREEMPT_RCU is not set | ||
133 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 146 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
134 | 147 | ||
135 | # | 148 | # |
136 | # Platform support | 149 | # Platform support |
137 | # | 150 | # |
138 | # CONFIG_PPC_MPC52xx is not set | 151 | # CONFIG_PPC_MPC512x is not set |
139 | # CONFIG_PPC_MPC5200 is not set | 152 | # CONFIG_PPC_MPC5121 is not set |
140 | # CONFIG_PPC_CELL is not set | 153 | # CONFIG_PPC_CELL is not set |
141 | # CONFIG_PPC_CELL_NATIVE is not set | 154 | # CONFIG_PPC_CELL_NATIVE is not set |
142 | # CONFIG_PQ2ADS is not set | 155 | # CONFIG_PQ2ADS is not set |
@@ -146,7 +159,9 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
146 | # CONFIG_TAISHAN is not set | 159 | # CONFIG_TAISHAN is not set |
147 | # CONFIG_KATMAI is not set | 160 | # CONFIG_KATMAI is not set |
148 | CONFIG_RAINIER=y | 161 | CONFIG_RAINIER=y |
162 | # CONFIG_WARP is not set | ||
149 | CONFIG_440GRX=y | 163 | CONFIG_440GRX=y |
164 | # CONFIG_IPIC is not set | ||
150 | # CONFIG_MPIC is not set | 165 | # CONFIG_MPIC is not set |
151 | # CONFIG_MPIC_WEIRD is not set | 166 | # CONFIG_MPIC_WEIRD is not set |
152 | # CONFIG_PPC_I8259 is not set | 167 | # CONFIG_PPC_I8259 is not set |
@@ -157,7 +172,6 @@ CONFIG_440GRX=y | |||
157 | # CONFIG_PPC_INDIRECT_IO is not set | 172 | # CONFIG_PPC_INDIRECT_IO is not set |
158 | # CONFIG_GENERIC_IOMAP is not set | 173 | # CONFIG_GENERIC_IOMAP is not set |
159 | # CONFIG_CPU_FREQ is not set | 174 | # CONFIG_CPU_FREQ is not set |
160 | # CONFIG_CPM2 is not set | ||
161 | # CONFIG_FSL_ULI1575 is not set | 175 | # CONFIG_FSL_ULI1575 is not set |
162 | 176 | ||
163 | # | 177 | # |
@@ -173,13 +187,18 @@ CONFIG_HZ_250=y | |||
173 | # CONFIG_HZ_300 is not set | 187 | # CONFIG_HZ_300 is not set |
174 | # CONFIG_HZ_1000 is not set | 188 | # CONFIG_HZ_1000 is not set |
175 | CONFIG_HZ=250 | 189 | CONFIG_HZ=250 |
190 | # CONFIG_SCHED_HRTICK is not set | ||
176 | CONFIG_PREEMPT_NONE=y | 191 | CONFIG_PREEMPT_NONE=y |
177 | # CONFIG_PREEMPT_VOLUNTARY is not set | 192 | # CONFIG_PREEMPT_VOLUNTARY is not set |
178 | # CONFIG_PREEMPT is not set | 193 | # CONFIG_PREEMPT is not set |
194 | CONFIG_RCU_TRACE=y | ||
179 | CONFIG_BINFMT_ELF=y | 195 | CONFIG_BINFMT_ELF=y |
180 | # CONFIG_BINFMT_MISC is not set | 196 | # CONFIG_BINFMT_MISC is not set |
181 | CONFIG_MATH_EMULATION=y | 197 | CONFIG_MATH_EMULATION=y |
198 | # CONFIG_IOMMU_HELPER is not set | ||
182 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 199 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
200 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
201 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
183 | CONFIG_ARCH_FLATMEM_ENABLE=y | 202 | CONFIG_ARCH_FLATMEM_ENABLE=y |
184 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 203 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
185 | CONFIG_SELECT_MEMORY_MODEL=y | 204 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -199,8 +218,6 @@ CONFIG_PROC_DEVICETREE=y | |||
199 | CONFIG_CMDLINE_BOOL=y | 218 | CONFIG_CMDLINE_BOOL=y |
200 | CONFIG_CMDLINE="" | 219 | CONFIG_CMDLINE="" |
201 | CONFIG_SECCOMP=y | 220 | CONFIG_SECCOMP=y |
202 | CONFIG_WANT_DEVICE_TREE=y | ||
203 | CONFIG_DEVICE_TREE="rainier.dts" | ||
204 | CONFIG_ISA_DMA_API=y | 221 | CONFIG_ISA_DMA_API=y |
205 | 222 | ||
206 | # | 223 | # |
@@ -300,6 +317,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
300 | # | 317 | # |
301 | # CONFIG_NET_PKTGEN is not set | 318 | # CONFIG_NET_PKTGEN is not set |
302 | # CONFIG_HAMRADIO is not set | 319 | # CONFIG_HAMRADIO is not set |
320 | # CONFIG_CAN is not set | ||
303 | # CONFIG_IRDA is not set | 321 | # CONFIG_IRDA is not set |
304 | # CONFIG_BT is not set | 322 | # CONFIG_BT is not set |
305 | # CONFIG_AF_RXRPC is not set | 323 | # CONFIG_AF_RXRPC is not set |
@@ -336,6 +354,7 @@ CONFIG_MTD=y | |||
336 | CONFIG_MTD_PARTITIONS=y | 354 | CONFIG_MTD_PARTITIONS=y |
337 | # CONFIG_MTD_REDBOOT_PARTS is not set | 355 | # CONFIG_MTD_REDBOOT_PARTS is not set |
338 | CONFIG_MTD_CMDLINE_PARTS=y | 356 | CONFIG_MTD_CMDLINE_PARTS=y |
357 | CONFIG_MTD_OF_PARTS=y | ||
339 | 358 | ||
340 | # | 359 | # |
341 | # User Modules And Translation Layers | 360 | # User Modules And Translation Layers |
@@ -422,7 +441,7 @@ CONFIG_BLK_DEV=y | |||
422 | CONFIG_BLK_DEV_RAM=y | 441 | CONFIG_BLK_DEV_RAM=y |
423 | CONFIG_BLK_DEV_RAM_COUNT=16 | 442 | CONFIG_BLK_DEV_RAM_COUNT=16 |
424 | CONFIG_BLK_DEV_RAM_SIZE=35000 | 443 | CONFIG_BLK_DEV_RAM_SIZE=35000 |
425 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 444 | # CONFIG_BLK_DEV_XIP is not set |
426 | # CONFIG_CDROM_PKTCDVD is not set | 445 | # CONFIG_CDROM_PKTCDVD is not set |
427 | # CONFIG_ATA_OVER_ETH is not set | 446 | # CONFIG_ATA_OVER_ETH is not set |
428 | # CONFIG_XILINX_SYSACE is not set | 447 | # CONFIG_XILINX_SYSACE is not set |
@@ -431,6 +450,8 @@ CONFIG_MISC_DEVICES=y | |||
431 | # CONFIG_EEPROM_93CX6 is not set | 450 | # CONFIG_EEPROM_93CX6 is not set |
432 | # CONFIG_SGI_IOC4 is not set | 451 | # CONFIG_SGI_IOC4 is not set |
433 | # CONFIG_TIFM_CORE is not set | 452 | # CONFIG_TIFM_CORE is not set |
453 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
454 | CONFIG_HAVE_IDE=y | ||
434 | # CONFIG_IDE is not set | 455 | # CONFIG_IDE is not set |
435 | 456 | ||
436 | # | 457 | # |
@@ -461,7 +482,6 @@ CONFIG_NETDEVICES=y | |||
461 | # CONFIG_EQUALIZER is not set | 482 | # CONFIG_EQUALIZER is not set |
462 | # CONFIG_TUN is not set | 483 | # CONFIG_TUN is not set |
463 | # CONFIG_VETH is not set | 484 | # CONFIG_VETH is not set |
464 | # CONFIG_IP1000 is not set | ||
465 | # CONFIG_ARCNET is not set | 485 | # CONFIG_ARCNET is not set |
466 | # CONFIG_NET_ETHERNET is not set | 486 | # CONFIG_NET_ETHERNET is not set |
467 | CONFIG_IBM_NEW_EMAC_ZMII=y | 487 | CONFIG_IBM_NEW_EMAC_ZMII=y |
@@ -472,6 +492,9 @@ CONFIG_NETDEV_1000=y | |||
472 | # CONFIG_DL2K is not set | 492 | # CONFIG_DL2K is not set |
473 | # CONFIG_E1000 is not set | 493 | # CONFIG_E1000 is not set |
474 | # CONFIG_E1000E is not set | 494 | # CONFIG_E1000E is not set |
495 | # CONFIG_E1000E_ENABLED is not set | ||
496 | # CONFIG_IP1000 is not set | ||
497 | # CONFIG_IGB is not set | ||
475 | # CONFIG_NS83820 is not set | 498 | # CONFIG_NS83820 is not set |
476 | # CONFIG_HAMACHI is not set | 499 | # CONFIG_HAMACHI is not set |
477 | # CONFIG_YELLOWFIN is not set | 500 | # CONFIG_YELLOWFIN is not set |
@@ -496,6 +519,7 @@ CONFIG_NETDEV_10000=y | |||
496 | # CONFIG_NIU is not set | 519 | # CONFIG_NIU is not set |
497 | # CONFIG_MLX4_CORE is not set | 520 | # CONFIG_MLX4_CORE is not set |
498 | # CONFIG_TEHUTI is not set | 521 | # CONFIG_TEHUTI is not set |
522 | # CONFIG_BNX2X is not set | ||
499 | # CONFIG_TR is not set | 523 | # CONFIG_TR is not set |
500 | 524 | ||
501 | # | 525 | # |
@@ -508,7 +532,6 @@ CONFIG_NETDEV_10000=y | |||
508 | # CONFIG_HIPPI is not set | 532 | # CONFIG_HIPPI is not set |
509 | # CONFIG_PPP is not set | 533 | # CONFIG_PPP is not set |
510 | # CONFIG_SLIP is not set | 534 | # CONFIG_SLIP is not set |
511 | # CONFIG_SHAPER is not set | ||
512 | # CONFIG_NETCONSOLE is not set | 535 | # CONFIG_NETCONSOLE is not set |
513 | # CONFIG_NETPOLL is not set | 536 | # CONFIG_NETPOLL is not set |
514 | # CONFIG_NET_POLL_CONTROLLER is not set | 537 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -531,6 +554,7 @@ CONFIG_NETDEV_10000=y | |||
531 | # | 554 | # |
532 | # CONFIG_VT is not set | 555 | # CONFIG_VT is not set |
533 | # CONFIG_SERIAL_NONSTANDARD is not set | 556 | # CONFIG_SERIAL_NONSTANDARD is not set |
557 | # CONFIG_NOZOMI is not set | ||
534 | 558 | ||
535 | # | 559 | # |
536 | # Serial drivers | 560 | # Serial drivers |
@@ -576,6 +600,7 @@ CONFIG_DEVPORT=y | |||
576 | # CONFIG_W1 is not set | 600 | # CONFIG_W1 is not set |
577 | # CONFIG_POWER_SUPPLY is not set | 601 | # CONFIG_POWER_SUPPLY is not set |
578 | # CONFIG_HWMON is not set | 602 | # CONFIG_HWMON is not set |
603 | CONFIG_THERMAL=y | ||
579 | # CONFIG_WATCHDOG is not set | 604 | # CONFIG_WATCHDOG is not set |
580 | 605 | ||
581 | # | 606 | # |
@@ -624,12 +649,9 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
624 | # | 649 | # |
625 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 650 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
626 | # | 651 | # |
627 | |||
628 | # | ||
629 | # USB Gadget Support | ||
630 | # | ||
631 | # CONFIG_USB_GADGET is not set | 652 | # CONFIG_USB_GADGET is not set |
632 | # CONFIG_MMC is not set | 653 | # CONFIG_MMC is not set |
654 | # CONFIG_MEMSTICK is not set | ||
633 | # CONFIG_NEW_LEDS is not set | 655 | # CONFIG_NEW_LEDS is not set |
634 | # CONFIG_INFINIBAND is not set | 656 | # CONFIG_INFINIBAND is not set |
635 | # CONFIG_EDAC is not set | 657 | # CONFIG_EDAC is not set |
@@ -654,12 +676,10 @@ CONFIG_EXT2_FS=y | |||
654 | # CONFIG_XFS_FS is not set | 676 | # CONFIG_XFS_FS is not set |
655 | # CONFIG_GFS2_FS is not set | 677 | # CONFIG_GFS2_FS is not set |
656 | # CONFIG_OCFS2_FS is not set | 678 | # CONFIG_OCFS2_FS is not set |
657 | # CONFIG_MINIX_FS is not set | 679 | CONFIG_DNOTIFY=y |
658 | # CONFIG_ROMFS_FS is not set | ||
659 | CONFIG_INOTIFY=y | 680 | CONFIG_INOTIFY=y |
660 | CONFIG_INOTIFY_USER=y | 681 | CONFIG_INOTIFY_USER=y |
661 | # CONFIG_QUOTA is not set | 682 | # CONFIG_QUOTA is not set |
662 | CONFIG_DNOTIFY=y | ||
663 | # CONFIG_AUTOFS_FS is not set | 683 | # CONFIG_AUTOFS_FS is not set |
664 | # CONFIG_AUTOFS4_FS is not set | 684 | # CONFIG_AUTOFS4_FS is not set |
665 | # CONFIG_FUSE_FS is not set | 685 | # CONFIG_FUSE_FS is not set |
@@ -712,8 +732,10 @@ CONFIG_JFFS2_RTIME=y | |||
712 | # CONFIG_JFFS2_RUBIN is not set | 732 | # CONFIG_JFFS2_RUBIN is not set |
713 | CONFIG_CRAMFS=y | 733 | CONFIG_CRAMFS=y |
714 | # CONFIG_VXFS_FS is not set | 734 | # CONFIG_VXFS_FS is not set |
735 | # CONFIG_MINIX_FS is not set | ||
715 | # CONFIG_HPFS_FS is not set | 736 | # CONFIG_HPFS_FS is not set |
716 | # CONFIG_QNX4FS_FS is not set | 737 | # CONFIG_QNX4FS_FS is not set |
738 | # CONFIG_ROMFS_FS is not set | ||
717 | # CONFIG_SYSV_FS is not set | 739 | # CONFIG_SYSV_FS is not set |
718 | # CONFIG_UFS_FS is not set | 740 | # CONFIG_UFS_FS is not set |
719 | CONFIG_NETWORK_FILESYSTEMS=y | 741 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -744,7 +766,6 @@ CONFIG_SUNRPC=y | |||
744 | CONFIG_MSDOS_PARTITION=y | 766 | CONFIG_MSDOS_PARTITION=y |
745 | # CONFIG_NLS is not set | 767 | # CONFIG_NLS is not set |
746 | # CONFIG_DLM is not set | 768 | # CONFIG_DLM is not set |
747 | # CONFIG_UCC_SLOW is not set | ||
748 | 769 | ||
749 | # | 770 | # |
750 | # Library routines | 771 | # Library routines |
@@ -762,10 +783,6 @@ CONFIG_PLIST=y | |||
762 | CONFIG_HAS_IOMEM=y | 783 | CONFIG_HAS_IOMEM=y |
763 | CONFIG_HAS_IOPORT=y | 784 | CONFIG_HAS_IOPORT=y |
764 | CONFIG_HAS_DMA=y | 785 | CONFIG_HAS_DMA=y |
765 | CONFIG_INSTRUMENTATION=y | ||
766 | # CONFIG_PROFILING is not set | ||
767 | # CONFIG_KPROBES is not set | ||
768 | # CONFIG_MARKERS is not set | ||
769 | 786 | ||
770 | # | 787 | # |
771 | # Kernel hacking | 788 | # Kernel hacking |
@@ -775,7 +792,7 @@ CONFIG_ENABLE_WARN_DEPRECATED=y | |||
775 | CONFIG_ENABLE_MUST_CHECK=y | 792 | CONFIG_ENABLE_MUST_CHECK=y |
776 | CONFIG_MAGIC_SYSRQ=y | 793 | CONFIG_MAGIC_SYSRQ=y |
777 | # CONFIG_UNUSED_SYMBOLS is not set | 794 | # CONFIG_UNUSED_SYMBOLS is not set |
778 | # CONFIG_DEBUG_FS is not set | 795 | CONFIG_DEBUG_FS=y |
779 | # CONFIG_HEADERS_CHECK is not set | 796 | # CONFIG_HEADERS_CHECK is not set |
780 | CONFIG_DEBUG_KERNEL=y | 797 | CONFIG_DEBUG_KERNEL=y |
781 | # CONFIG_DEBUG_SHIRQ is not set | 798 | # CONFIG_DEBUG_SHIRQ is not set |
@@ -784,6 +801,7 @@ CONFIG_SCHED_DEBUG=y | |||
784 | # CONFIG_SCHEDSTATS is not set | 801 | # CONFIG_SCHEDSTATS is not set |
785 | # CONFIG_TIMER_STATS is not set | 802 | # CONFIG_TIMER_STATS is not set |
786 | # CONFIG_SLUB_DEBUG_ON is not set | 803 | # CONFIG_SLUB_DEBUG_ON is not set |
804 | # CONFIG_SLUB_STATS is not set | ||
787 | # CONFIG_DEBUG_RT_MUTEXES is not set | 805 | # CONFIG_DEBUG_RT_MUTEXES is not set |
788 | # CONFIG_RT_MUTEX_TESTER is not set | 806 | # CONFIG_RT_MUTEX_TESTER is not set |
789 | # CONFIG_DEBUG_SPINLOCK is not set | 807 | # CONFIG_DEBUG_SPINLOCK is not set |
@@ -796,9 +814,9 @@ CONFIG_SCHED_DEBUG=y | |||
796 | # CONFIG_DEBUG_VM is not set | 814 | # CONFIG_DEBUG_VM is not set |
797 | # CONFIG_DEBUG_LIST is not set | 815 | # CONFIG_DEBUG_LIST is not set |
798 | # CONFIG_DEBUG_SG is not set | 816 | # CONFIG_DEBUG_SG is not set |
799 | CONFIG_FORCED_INLINING=y | ||
800 | # CONFIG_BOOT_PRINTK_DELAY is not set | 817 | # CONFIG_BOOT_PRINTK_DELAY is not set |
801 | # CONFIG_RCU_TORTURE_TEST is not set | 818 | # CONFIG_RCU_TORTURE_TEST is not set |
819 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
802 | # CONFIG_FAULT_INJECTION is not set | 820 | # CONFIG_FAULT_INJECTION is not set |
803 | # CONFIG_SAMPLES is not set | 821 | # CONFIG_SAMPLES is not set |
804 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 822 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
@@ -807,6 +825,7 @@ CONFIG_FORCED_INLINING=y | |||
807 | CONFIG_DEBUGGER=y | 825 | CONFIG_DEBUGGER=y |
808 | # CONFIG_KGDB is not set | 826 | # CONFIG_KGDB is not set |
809 | # CONFIG_XMON is not set | 827 | # CONFIG_XMON is not set |
828 | # CONFIG_VIRQ_DEBUG is not set | ||
810 | # CONFIG_BDI_SWITCH is not set | 829 | # CONFIG_BDI_SWITCH is not set |
811 | CONFIG_PPC_EARLY_DEBUG=y | 830 | CONFIG_PPC_EARLY_DEBUG=y |
812 | # CONFIG_PPC_EARLY_DEBUG_LPAR is not set | 831 | # CONFIG_PPC_EARLY_DEBUG_LPAR is not set |
@@ -832,6 +851,7 @@ CONFIG_PPC_EARLY_DEBUG_44x_PHYSHIGH=0x1 | |||
832 | CONFIG_CRYPTO=y | 851 | CONFIG_CRYPTO=y |
833 | CONFIG_CRYPTO_ALGAPI=y | 852 | CONFIG_CRYPTO_ALGAPI=y |
834 | CONFIG_CRYPTO_BLKCIPHER=y | 853 | CONFIG_CRYPTO_BLKCIPHER=y |
854 | # CONFIG_CRYPTO_SEQIV is not set | ||
835 | CONFIG_CRYPTO_MANAGER=y | 855 | CONFIG_CRYPTO_MANAGER=y |
836 | # CONFIG_CRYPTO_HMAC is not set | 856 | # CONFIG_CRYPTO_HMAC is not set |
837 | # CONFIG_CRYPTO_XCBC is not set | 857 | # CONFIG_CRYPTO_XCBC is not set |
@@ -849,6 +869,9 @@ CONFIG_CRYPTO_CBC=y | |||
849 | CONFIG_CRYPTO_PCBC=y | 869 | CONFIG_CRYPTO_PCBC=y |
850 | # CONFIG_CRYPTO_LRW is not set | 870 | # CONFIG_CRYPTO_LRW is not set |
851 | # CONFIG_CRYPTO_XTS is not set | 871 | # CONFIG_CRYPTO_XTS is not set |
872 | # CONFIG_CRYPTO_CTR is not set | ||
873 | # CONFIG_CRYPTO_GCM is not set | ||
874 | # CONFIG_CRYPTO_CCM is not set | ||
852 | # CONFIG_CRYPTO_CRYPTD is not set | 875 | # CONFIG_CRYPTO_CRYPTD is not set |
853 | CONFIG_CRYPTO_DES=y | 876 | CONFIG_CRYPTO_DES=y |
854 | # CONFIG_CRYPTO_FCRYPT is not set | 877 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -863,11 +886,14 @@ CONFIG_CRYPTO_DES=y | |||
863 | # CONFIG_CRYPTO_KHAZAD is not set | 886 | # CONFIG_CRYPTO_KHAZAD is not set |
864 | # CONFIG_CRYPTO_ANUBIS is not set | 887 | # CONFIG_CRYPTO_ANUBIS is not set |
865 | # CONFIG_CRYPTO_SEED is not set | 888 | # CONFIG_CRYPTO_SEED is not set |
889 | # CONFIG_CRYPTO_SALSA20 is not set | ||
866 | # CONFIG_CRYPTO_DEFLATE is not set | 890 | # CONFIG_CRYPTO_DEFLATE is not set |
867 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 891 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
868 | # CONFIG_CRYPTO_CRC32C is not set | 892 | # CONFIG_CRYPTO_CRC32C is not set |
869 | # CONFIG_CRYPTO_CAMELLIA is not set | 893 | # CONFIG_CRYPTO_CAMELLIA is not set |
870 | # CONFIG_CRYPTO_TEST is not set | 894 | # CONFIG_CRYPTO_TEST is not set |
871 | # CONFIG_CRYPTO_AUTHENC is not set | 895 | # CONFIG_CRYPTO_AUTHENC is not set |
896 | # CONFIG_CRYPTO_LZO is not set | ||
872 | CONFIG_CRYPTO_HW=y | 897 | CONFIG_CRYPTO_HW=y |
898 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
873 | # CONFIG_PPC_CLOCK is not set | 899 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/sequoia_defconfig b/arch/powerpc/configs/sequoia_defconfig index abbfed6582e1..dd5d6303c396 100644 --- a/arch/powerpc/configs/sequoia_defconfig +++ b/arch/powerpc/configs/sequoia_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc6 | 3 | # Linux kernel version: 2.6.25-rc2 |
4 | # Mon Dec 24 11:23:22 2007 | 4 | # Fri Feb 15 21:53:46 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -30,6 +30,7 @@ CONFIG_GENERIC_TIME=y | |||
30 | CONFIG_GENERIC_TIME_VSYSCALL=y | 30 | CONFIG_GENERIC_TIME_VSYSCALL=y |
31 | CONFIG_GENERIC_CLOCKEVENTS=y | 31 | CONFIG_GENERIC_CLOCKEVENTS=y |
32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 36 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -68,15 +69,18 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
68 | CONFIG_POSIX_MQUEUE=y | 69 | CONFIG_POSIX_MQUEUE=y |
69 | # CONFIG_BSD_PROCESS_ACCT is not set | 70 | # CONFIG_BSD_PROCESS_ACCT is not set |
70 | # CONFIG_TASKSTATS is not set | 71 | # CONFIG_TASKSTATS is not set |
71 | # CONFIG_USER_NS is not set | ||
72 | # CONFIG_PID_NS is not set | ||
73 | # CONFIG_AUDIT is not set | 72 | # CONFIG_AUDIT is not set |
74 | # CONFIG_IKCONFIG is not set | 73 | # CONFIG_IKCONFIG is not set |
75 | CONFIG_LOG_BUF_SHIFT=14 | 74 | CONFIG_LOG_BUF_SHIFT=14 |
76 | # CONFIG_CGROUPS is not set | 75 | # CONFIG_CGROUPS is not set |
76 | CONFIG_GROUP_SCHED=y | ||
77 | # CONFIG_FAIR_GROUP_SCHED is not set | 77 | # CONFIG_FAIR_GROUP_SCHED is not set |
78 | # CONFIG_RT_GROUP_SCHED is not set | ||
79 | CONFIG_USER_SCHED=y | ||
80 | # CONFIG_CGROUP_SCHED is not set | ||
78 | CONFIG_SYSFS_DEPRECATED=y | 81 | CONFIG_SYSFS_DEPRECATED=y |
79 | # CONFIG_RELAY is not set | 82 | # CONFIG_RELAY is not set |
83 | # CONFIG_NAMESPACES is not set | ||
80 | CONFIG_BLK_DEV_INITRD=y | 84 | CONFIG_BLK_DEV_INITRD=y |
81 | CONFIG_INITRAMFS_SOURCE="" | 85 | CONFIG_INITRAMFS_SOURCE="" |
82 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 86 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -90,11 +94,13 @@ CONFIG_HOTPLUG=y | |||
90 | CONFIG_PRINTK=y | 94 | CONFIG_PRINTK=y |
91 | CONFIG_BUG=y | 95 | CONFIG_BUG=y |
92 | CONFIG_ELF_CORE=y | 96 | CONFIG_ELF_CORE=y |
97 | CONFIG_COMPAT_BRK=y | ||
93 | CONFIG_BASE_FULL=y | 98 | CONFIG_BASE_FULL=y |
94 | CONFIG_FUTEX=y | 99 | CONFIG_FUTEX=y |
95 | CONFIG_ANON_INODES=y | 100 | CONFIG_ANON_INODES=y |
96 | CONFIG_EPOLL=y | 101 | CONFIG_EPOLL=y |
97 | CONFIG_SIGNALFD=y | 102 | CONFIG_SIGNALFD=y |
103 | CONFIG_TIMERFD=y | ||
98 | CONFIG_EVENTFD=y | 104 | CONFIG_EVENTFD=y |
99 | CONFIG_SHMEM=y | 105 | CONFIG_SHMEM=y |
100 | CONFIG_VM_EVENT_COUNTERS=y | 106 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -102,6 +108,13 @@ CONFIG_SLUB_DEBUG=y | |||
102 | # CONFIG_SLAB is not set | 108 | # CONFIG_SLAB is not set |
103 | CONFIG_SLUB=y | 109 | CONFIG_SLUB=y |
104 | # CONFIG_SLOB is not set | 110 | # CONFIG_SLOB is not set |
111 | # CONFIG_PROFILING is not set | ||
112 | # CONFIG_MARKERS is not set | ||
113 | CONFIG_HAVE_OPROFILE=y | ||
114 | # CONFIG_KPROBES is not set | ||
115 | CONFIG_HAVE_KPROBES=y | ||
116 | CONFIG_PROC_PAGE_MONITOR=y | ||
117 | CONFIG_SLABINFO=y | ||
105 | CONFIG_RT_MUTEXES=y | 118 | CONFIG_RT_MUTEXES=y |
106 | # CONFIG_TINY_SHMEM is not set | 119 | # CONFIG_TINY_SHMEM is not set |
107 | CONFIG_BASE_SMALL=0 | 120 | CONFIG_BASE_SMALL=0 |
@@ -129,13 +142,15 @@ CONFIG_DEFAULT_AS=y | |||
129 | # CONFIG_DEFAULT_CFQ is not set | 142 | # CONFIG_DEFAULT_CFQ is not set |
130 | # CONFIG_DEFAULT_NOOP is not set | 143 | # CONFIG_DEFAULT_NOOP is not set |
131 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 144 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
145 | CONFIG_CLASSIC_RCU=y | ||
146 | # CONFIG_PREEMPT_RCU is not set | ||
132 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 147 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
133 | 148 | ||
134 | # | 149 | # |
135 | # Platform support | 150 | # Platform support |
136 | # | 151 | # |
137 | # CONFIG_PPC_MPC52xx is not set | 152 | # CONFIG_PPC_MPC512x is not set |
138 | # CONFIG_PPC_MPC5200 is not set | 153 | # CONFIG_PPC_MPC5121 is not set |
139 | # CONFIG_PPC_CELL is not set | 154 | # CONFIG_PPC_CELL is not set |
140 | # CONFIG_PPC_CELL_NATIVE is not set | 155 | # CONFIG_PPC_CELL_NATIVE is not set |
141 | # CONFIG_PQ2ADS is not set | 156 | # CONFIG_PQ2ADS is not set |
@@ -145,7 +160,9 @@ CONFIG_SEQUOIA=y | |||
145 | # CONFIG_TAISHAN is not set | 160 | # CONFIG_TAISHAN is not set |
146 | # CONFIG_KATMAI is not set | 161 | # CONFIG_KATMAI is not set |
147 | # CONFIG_RAINIER is not set | 162 | # CONFIG_RAINIER is not set |
163 | # CONFIG_WARP is not set | ||
148 | CONFIG_440EPX=y | 164 | CONFIG_440EPX=y |
165 | # CONFIG_IPIC is not set | ||
149 | # CONFIG_MPIC is not set | 166 | # CONFIG_MPIC is not set |
150 | # CONFIG_MPIC_WEIRD is not set | 167 | # CONFIG_MPIC_WEIRD is not set |
151 | # CONFIG_PPC_I8259 is not set | 168 | # CONFIG_PPC_I8259 is not set |
@@ -156,7 +173,6 @@ CONFIG_440EPX=y | |||
156 | # CONFIG_PPC_INDIRECT_IO is not set | 173 | # CONFIG_PPC_INDIRECT_IO is not set |
157 | # CONFIG_GENERIC_IOMAP is not set | 174 | # CONFIG_GENERIC_IOMAP is not set |
158 | # CONFIG_CPU_FREQ is not set | 175 | # CONFIG_CPU_FREQ is not set |
159 | # CONFIG_CPM2 is not set | ||
160 | # CONFIG_FSL_ULI1575 is not set | 176 | # CONFIG_FSL_ULI1575 is not set |
161 | 177 | ||
162 | # | 178 | # |
@@ -172,13 +188,18 @@ CONFIG_HZ_250=y | |||
172 | # CONFIG_HZ_300 is not set | 188 | # CONFIG_HZ_300 is not set |
173 | # CONFIG_HZ_1000 is not set | 189 | # CONFIG_HZ_1000 is not set |
174 | CONFIG_HZ=250 | 190 | CONFIG_HZ=250 |
191 | # CONFIG_SCHED_HRTICK is not set | ||
175 | CONFIG_PREEMPT_NONE=y | 192 | CONFIG_PREEMPT_NONE=y |
176 | # CONFIG_PREEMPT_VOLUNTARY is not set | 193 | # CONFIG_PREEMPT_VOLUNTARY is not set |
177 | # CONFIG_PREEMPT is not set | 194 | # CONFIG_PREEMPT is not set |
195 | CONFIG_RCU_TRACE=y | ||
178 | CONFIG_BINFMT_ELF=y | 196 | CONFIG_BINFMT_ELF=y |
179 | # CONFIG_BINFMT_MISC is not set | 197 | # CONFIG_BINFMT_MISC is not set |
180 | # CONFIG_MATH_EMULATION is not set | 198 | # CONFIG_MATH_EMULATION is not set |
199 | # CONFIG_IOMMU_HELPER is not set | ||
181 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 200 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
201 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
202 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
182 | CONFIG_ARCH_FLATMEM_ENABLE=y | 203 | CONFIG_ARCH_FLATMEM_ENABLE=y |
183 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 204 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
184 | CONFIG_SELECT_MEMORY_MODEL=y | 205 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -198,8 +219,6 @@ CONFIG_PROC_DEVICETREE=y | |||
198 | CONFIG_CMDLINE_BOOL=y | 219 | CONFIG_CMDLINE_BOOL=y |
199 | CONFIG_CMDLINE="" | 220 | CONFIG_CMDLINE="" |
200 | CONFIG_SECCOMP=y | 221 | CONFIG_SECCOMP=y |
201 | CONFIG_WANT_DEVICE_TREE=y | ||
202 | CONFIG_DEVICE_TREE="sequoia.dts" | ||
203 | CONFIG_ISA_DMA_API=y | 222 | CONFIG_ISA_DMA_API=y |
204 | 223 | ||
205 | # | 224 | # |
@@ -299,6 +318,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
299 | # | 318 | # |
300 | # CONFIG_NET_PKTGEN is not set | 319 | # CONFIG_NET_PKTGEN is not set |
301 | # CONFIG_HAMRADIO is not set | 320 | # CONFIG_HAMRADIO is not set |
321 | # CONFIG_CAN is not set | ||
302 | # CONFIG_IRDA is not set | 322 | # CONFIG_IRDA is not set |
303 | # CONFIG_BT is not set | 323 | # CONFIG_BT is not set |
304 | # CONFIG_AF_RXRPC is not set | 324 | # CONFIG_AF_RXRPC is not set |
@@ -335,6 +355,7 @@ CONFIG_MTD=y | |||
335 | CONFIG_MTD_PARTITIONS=y | 355 | CONFIG_MTD_PARTITIONS=y |
336 | # CONFIG_MTD_REDBOOT_PARTS is not set | 356 | # CONFIG_MTD_REDBOOT_PARTS is not set |
337 | CONFIG_MTD_CMDLINE_PARTS=y | 357 | CONFIG_MTD_CMDLINE_PARTS=y |
358 | CONFIG_MTD_OF_PARTS=y | ||
338 | 359 | ||
339 | # | 360 | # |
340 | # User Modules And Translation Layers | 361 | # User Modules And Translation Layers |
@@ -421,7 +442,7 @@ CONFIG_BLK_DEV=y | |||
421 | CONFIG_BLK_DEV_RAM=y | 442 | CONFIG_BLK_DEV_RAM=y |
422 | CONFIG_BLK_DEV_RAM_COUNT=16 | 443 | CONFIG_BLK_DEV_RAM_COUNT=16 |
423 | CONFIG_BLK_DEV_RAM_SIZE=35000 | 444 | CONFIG_BLK_DEV_RAM_SIZE=35000 |
424 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 445 | # CONFIG_BLK_DEV_XIP is not set |
425 | # CONFIG_CDROM_PKTCDVD is not set | 446 | # CONFIG_CDROM_PKTCDVD is not set |
426 | # CONFIG_ATA_OVER_ETH is not set | 447 | # CONFIG_ATA_OVER_ETH is not set |
427 | # CONFIG_XILINX_SYSACE is not set | 448 | # CONFIG_XILINX_SYSACE is not set |
@@ -430,6 +451,8 @@ CONFIG_MISC_DEVICES=y | |||
430 | # CONFIG_EEPROM_93CX6 is not set | 451 | # CONFIG_EEPROM_93CX6 is not set |
431 | # CONFIG_SGI_IOC4 is not set | 452 | # CONFIG_SGI_IOC4 is not set |
432 | # CONFIG_TIFM_CORE is not set | 453 | # CONFIG_TIFM_CORE is not set |
454 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
455 | CONFIG_HAVE_IDE=y | ||
433 | # CONFIG_IDE is not set | 456 | # CONFIG_IDE is not set |
434 | 457 | ||
435 | # | 458 | # |
@@ -458,7 +481,6 @@ CONFIG_NETDEVICES=y | |||
458 | # CONFIG_EQUALIZER is not set | 481 | # CONFIG_EQUALIZER is not set |
459 | # CONFIG_TUN is not set | 482 | # CONFIG_TUN is not set |
460 | # CONFIG_VETH is not set | 483 | # CONFIG_VETH is not set |
461 | # CONFIG_IP1000 is not set | ||
462 | # CONFIG_ARCNET is not set | 484 | # CONFIG_ARCNET is not set |
463 | # CONFIG_PHYLIB is not set | 485 | # CONFIG_PHYLIB is not set |
464 | CONFIG_NET_ETHERNET=y | 486 | CONFIG_NET_ETHERNET=y |
@@ -487,6 +509,9 @@ CONFIG_NETDEV_1000=y | |||
487 | # CONFIG_DL2K is not set | 509 | # CONFIG_DL2K is not set |
488 | # CONFIG_E1000 is not set | 510 | # CONFIG_E1000 is not set |
489 | # CONFIG_E1000E is not set | 511 | # CONFIG_E1000E is not set |
512 | # CONFIG_E1000E_ENABLED is not set | ||
513 | # CONFIG_IP1000 is not set | ||
514 | # CONFIG_IGB is not set | ||
490 | # CONFIG_NS83820 is not set | 515 | # CONFIG_NS83820 is not set |
491 | # CONFIG_HAMACHI is not set | 516 | # CONFIG_HAMACHI is not set |
492 | # CONFIG_YELLOWFIN is not set | 517 | # CONFIG_YELLOWFIN is not set |
@@ -511,6 +536,7 @@ CONFIG_NETDEV_10000=y | |||
511 | # CONFIG_NIU is not set | 536 | # CONFIG_NIU is not set |
512 | # CONFIG_MLX4_CORE is not set | 537 | # CONFIG_MLX4_CORE is not set |
513 | # CONFIG_TEHUTI is not set | 538 | # CONFIG_TEHUTI is not set |
539 | # CONFIG_BNX2X is not set | ||
514 | # CONFIG_TR is not set | 540 | # CONFIG_TR is not set |
515 | 541 | ||
516 | # | 542 | # |
@@ -523,7 +549,6 @@ CONFIG_NETDEV_10000=y | |||
523 | # CONFIG_HIPPI is not set | 549 | # CONFIG_HIPPI is not set |
524 | # CONFIG_PPP is not set | 550 | # CONFIG_PPP is not set |
525 | # CONFIG_SLIP is not set | 551 | # CONFIG_SLIP is not set |
526 | # CONFIG_SHAPER is not set | ||
527 | # CONFIG_NETCONSOLE is not set | 552 | # CONFIG_NETCONSOLE is not set |
528 | # CONFIG_NETPOLL is not set | 553 | # CONFIG_NETPOLL is not set |
529 | # CONFIG_NET_POLL_CONTROLLER is not set | 554 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -546,6 +571,7 @@ CONFIG_NETDEV_10000=y | |||
546 | # | 571 | # |
547 | # CONFIG_VT is not set | 572 | # CONFIG_VT is not set |
548 | # CONFIG_SERIAL_NONSTANDARD is not set | 573 | # CONFIG_SERIAL_NONSTANDARD is not set |
574 | # CONFIG_NOZOMI is not set | ||
549 | 575 | ||
550 | # | 576 | # |
551 | # Serial drivers | 577 | # Serial drivers |
@@ -591,6 +617,7 @@ CONFIG_DEVPORT=y | |||
591 | # CONFIG_W1 is not set | 617 | # CONFIG_W1 is not set |
592 | # CONFIG_POWER_SUPPLY is not set | 618 | # CONFIG_POWER_SUPPLY is not set |
593 | # CONFIG_HWMON is not set | 619 | # CONFIG_HWMON is not set |
620 | CONFIG_THERMAL=y | ||
594 | # CONFIG_WATCHDOG is not set | 621 | # CONFIG_WATCHDOG is not set |
595 | 622 | ||
596 | # | 623 | # |
@@ -639,12 +666,9 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
639 | # | 666 | # |
640 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 667 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
641 | # | 668 | # |
642 | |||
643 | # | ||
644 | # USB Gadget Support | ||
645 | # | ||
646 | # CONFIG_USB_GADGET is not set | 669 | # CONFIG_USB_GADGET is not set |
647 | # CONFIG_MMC is not set | 670 | # CONFIG_MMC is not set |
671 | # CONFIG_MEMSTICK is not set | ||
648 | # CONFIG_NEW_LEDS is not set | 672 | # CONFIG_NEW_LEDS is not set |
649 | # CONFIG_INFINIBAND is not set | 673 | # CONFIG_INFINIBAND is not set |
650 | # CONFIG_EDAC is not set | 674 | # CONFIG_EDAC is not set |
@@ -669,12 +693,10 @@ CONFIG_EXT2_FS=y | |||
669 | # CONFIG_XFS_FS is not set | 693 | # CONFIG_XFS_FS is not set |
670 | # CONFIG_GFS2_FS is not set | 694 | # CONFIG_GFS2_FS is not set |
671 | # CONFIG_OCFS2_FS is not set | 695 | # CONFIG_OCFS2_FS is not set |
672 | # CONFIG_MINIX_FS is not set | 696 | CONFIG_DNOTIFY=y |
673 | # CONFIG_ROMFS_FS is not set | ||
674 | CONFIG_INOTIFY=y | 697 | CONFIG_INOTIFY=y |
675 | CONFIG_INOTIFY_USER=y | 698 | CONFIG_INOTIFY_USER=y |
676 | # CONFIG_QUOTA is not set | 699 | # CONFIG_QUOTA is not set |
677 | CONFIG_DNOTIFY=y | ||
678 | # CONFIG_AUTOFS_FS is not set | 700 | # CONFIG_AUTOFS_FS is not set |
679 | # CONFIG_AUTOFS4_FS is not set | 701 | # CONFIG_AUTOFS4_FS is not set |
680 | # CONFIG_FUSE_FS is not set | 702 | # CONFIG_FUSE_FS is not set |
@@ -727,8 +749,10 @@ CONFIG_JFFS2_RTIME=y | |||
727 | # CONFIG_JFFS2_RUBIN is not set | 749 | # CONFIG_JFFS2_RUBIN is not set |
728 | CONFIG_CRAMFS=y | 750 | CONFIG_CRAMFS=y |
729 | # CONFIG_VXFS_FS is not set | 751 | # CONFIG_VXFS_FS is not set |
752 | # CONFIG_MINIX_FS is not set | ||
730 | # CONFIG_HPFS_FS is not set | 753 | # CONFIG_HPFS_FS is not set |
731 | # CONFIG_QNX4FS_FS is not set | 754 | # CONFIG_QNX4FS_FS is not set |
755 | # CONFIG_ROMFS_FS is not set | ||
732 | # CONFIG_SYSV_FS is not set | 756 | # CONFIG_SYSV_FS is not set |
733 | # CONFIG_UFS_FS is not set | 757 | # CONFIG_UFS_FS is not set |
734 | CONFIG_NETWORK_FILESYSTEMS=y | 758 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -759,7 +783,6 @@ CONFIG_SUNRPC=y | |||
759 | CONFIG_MSDOS_PARTITION=y | 783 | CONFIG_MSDOS_PARTITION=y |
760 | # CONFIG_NLS is not set | 784 | # CONFIG_NLS is not set |
761 | # CONFIG_DLM is not set | 785 | # CONFIG_DLM is not set |
762 | # CONFIG_UCC_SLOW is not set | ||
763 | 786 | ||
764 | # | 787 | # |
765 | # Library routines | 788 | # Library routines |
@@ -777,7 +800,6 @@ CONFIG_PLIST=y | |||
777 | CONFIG_HAS_IOMEM=y | 800 | CONFIG_HAS_IOMEM=y |
778 | CONFIG_HAS_IOPORT=y | 801 | CONFIG_HAS_IOPORT=y |
779 | CONFIG_HAS_DMA=y | 802 | CONFIG_HAS_DMA=y |
780 | # CONFIG_INSTRUMENTATION is not set | ||
781 | 803 | ||
782 | # | 804 | # |
783 | # Kernel hacking | 805 | # Kernel hacking |
@@ -787,7 +809,7 @@ CONFIG_ENABLE_WARN_DEPRECATED=y | |||
787 | CONFIG_ENABLE_MUST_CHECK=y | 809 | CONFIG_ENABLE_MUST_CHECK=y |
788 | CONFIG_MAGIC_SYSRQ=y | 810 | CONFIG_MAGIC_SYSRQ=y |
789 | # CONFIG_UNUSED_SYMBOLS is not set | 811 | # CONFIG_UNUSED_SYMBOLS is not set |
790 | # CONFIG_DEBUG_FS is not set | 812 | CONFIG_DEBUG_FS=y |
791 | # CONFIG_HEADERS_CHECK is not set | 813 | # CONFIG_HEADERS_CHECK is not set |
792 | CONFIG_DEBUG_KERNEL=y | 814 | CONFIG_DEBUG_KERNEL=y |
793 | # CONFIG_DEBUG_SHIRQ is not set | 815 | # CONFIG_DEBUG_SHIRQ is not set |
@@ -796,6 +818,7 @@ CONFIG_SCHED_DEBUG=y | |||
796 | # CONFIG_SCHEDSTATS is not set | 818 | # CONFIG_SCHEDSTATS is not set |
797 | # CONFIG_TIMER_STATS is not set | 819 | # CONFIG_TIMER_STATS is not set |
798 | # CONFIG_SLUB_DEBUG_ON is not set | 820 | # CONFIG_SLUB_DEBUG_ON is not set |
821 | # CONFIG_SLUB_STATS is not set | ||
799 | # CONFIG_DEBUG_RT_MUTEXES is not set | 822 | # CONFIG_DEBUG_RT_MUTEXES is not set |
800 | # CONFIG_RT_MUTEX_TESTER is not set | 823 | # CONFIG_RT_MUTEX_TESTER is not set |
801 | # CONFIG_DEBUG_SPINLOCK is not set | 824 | # CONFIG_DEBUG_SPINLOCK is not set |
@@ -808,9 +831,9 @@ CONFIG_SCHED_DEBUG=y | |||
808 | # CONFIG_DEBUG_VM is not set | 831 | # CONFIG_DEBUG_VM is not set |
809 | # CONFIG_DEBUG_LIST is not set | 832 | # CONFIG_DEBUG_LIST is not set |
810 | # CONFIG_DEBUG_SG is not set | 833 | # CONFIG_DEBUG_SG is not set |
811 | CONFIG_FORCED_INLINING=y | ||
812 | # CONFIG_BOOT_PRINTK_DELAY is not set | 834 | # CONFIG_BOOT_PRINTK_DELAY is not set |
813 | # CONFIG_RCU_TORTURE_TEST is not set | 835 | # CONFIG_RCU_TORTURE_TEST is not set |
836 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
814 | # CONFIG_FAULT_INJECTION is not set | 837 | # CONFIG_FAULT_INJECTION is not set |
815 | # CONFIG_SAMPLES is not set | 838 | # CONFIG_SAMPLES is not set |
816 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 839 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
@@ -819,6 +842,7 @@ CONFIG_FORCED_INLINING=y | |||
819 | CONFIG_DEBUGGER=y | 842 | CONFIG_DEBUGGER=y |
820 | # CONFIG_KGDB is not set | 843 | # CONFIG_KGDB is not set |
821 | # CONFIG_XMON is not set | 844 | # CONFIG_XMON is not set |
845 | # CONFIG_VIRQ_DEBUG is not set | ||
822 | # CONFIG_BDI_SWITCH is not set | 846 | # CONFIG_BDI_SWITCH is not set |
823 | CONFIG_PPC_EARLY_DEBUG=y | 847 | CONFIG_PPC_EARLY_DEBUG=y |
824 | # CONFIG_PPC_EARLY_DEBUG_LPAR is not set | 848 | # CONFIG_PPC_EARLY_DEBUG_LPAR is not set |
@@ -844,6 +868,7 @@ CONFIG_PPC_EARLY_DEBUG_44x_PHYSHIGH=0x1 | |||
844 | CONFIG_CRYPTO=y | 868 | CONFIG_CRYPTO=y |
845 | CONFIG_CRYPTO_ALGAPI=y | 869 | CONFIG_CRYPTO_ALGAPI=y |
846 | CONFIG_CRYPTO_BLKCIPHER=y | 870 | CONFIG_CRYPTO_BLKCIPHER=y |
871 | # CONFIG_CRYPTO_SEQIV is not set | ||
847 | CONFIG_CRYPTO_MANAGER=y | 872 | CONFIG_CRYPTO_MANAGER=y |
848 | # CONFIG_CRYPTO_HMAC is not set | 873 | # CONFIG_CRYPTO_HMAC is not set |
849 | # CONFIG_CRYPTO_XCBC is not set | 874 | # CONFIG_CRYPTO_XCBC is not set |
@@ -861,6 +886,9 @@ CONFIG_CRYPTO_CBC=y | |||
861 | CONFIG_CRYPTO_PCBC=y | 886 | CONFIG_CRYPTO_PCBC=y |
862 | # CONFIG_CRYPTO_LRW is not set | 887 | # CONFIG_CRYPTO_LRW is not set |
863 | # CONFIG_CRYPTO_XTS is not set | 888 | # CONFIG_CRYPTO_XTS is not set |
889 | # CONFIG_CRYPTO_CTR is not set | ||
890 | # CONFIG_CRYPTO_GCM is not set | ||
891 | # CONFIG_CRYPTO_CCM is not set | ||
864 | # CONFIG_CRYPTO_CRYPTD is not set | 892 | # CONFIG_CRYPTO_CRYPTD is not set |
865 | CONFIG_CRYPTO_DES=y | 893 | CONFIG_CRYPTO_DES=y |
866 | # CONFIG_CRYPTO_FCRYPT is not set | 894 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -875,11 +903,14 @@ CONFIG_CRYPTO_DES=y | |||
875 | # CONFIG_CRYPTO_KHAZAD is not set | 903 | # CONFIG_CRYPTO_KHAZAD is not set |
876 | # CONFIG_CRYPTO_ANUBIS is not set | 904 | # CONFIG_CRYPTO_ANUBIS is not set |
877 | # CONFIG_CRYPTO_SEED is not set | 905 | # CONFIG_CRYPTO_SEED is not set |
906 | # CONFIG_CRYPTO_SALSA20 is not set | ||
878 | # CONFIG_CRYPTO_DEFLATE is not set | 907 | # CONFIG_CRYPTO_DEFLATE is not set |
879 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 908 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
880 | # CONFIG_CRYPTO_CRC32C is not set | 909 | # CONFIG_CRYPTO_CRC32C is not set |
881 | # CONFIG_CRYPTO_CAMELLIA is not set | 910 | # CONFIG_CRYPTO_CAMELLIA is not set |
882 | # CONFIG_CRYPTO_TEST is not set | 911 | # CONFIG_CRYPTO_TEST is not set |
883 | # CONFIG_CRYPTO_AUTHENC is not set | 912 | # CONFIG_CRYPTO_AUTHENC is not set |
913 | # CONFIG_CRYPTO_LZO is not set | ||
884 | CONFIG_CRYPTO_HW=y | 914 | CONFIG_CRYPTO_HW=y |
915 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
885 | # CONFIG_PPC_CLOCK is not set | 916 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/taishan_defconfig b/arch/powerpc/configs/taishan_defconfig index ade84b92877e..087aedce1338 100644 --- a/arch/powerpc/configs/taishan_defconfig +++ b/arch/powerpc/configs/taishan_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc6 | 3 | # Linux kernel version: 2.6.25-rc2 |
4 | # Mon Dec 24 11:23:39 2007 | 4 | # Fri Feb 15 21:40:44 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -29,6 +29,7 @@ CONFIG_GENERIC_TIME=y | |||
29 | CONFIG_GENERIC_TIME_VSYSCALL=y | 29 | CONFIG_GENERIC_TIME_VSYSCALL=y |
30 | CONFIG_GENERIC_CLOCKEVENTS=y | 30 | CONFIG_GENERIC_CLOCKEVENTS=y |
31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
32 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
34 | CONFIG_ARCH_HAS_ILOG2_U32=y | 35 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -67,17 +68,18 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
67 | CONFIG_POSIX_MQUEUE=y | 68 | CONFIG_POSIX_MQUEUE=y |
68 | # CONFIG_BSD_PROCESS_ACCT is not set | 69 | # CONFIG_BSD_PROCESS_ACCT is not set |
69 | # CONFIG_TASKSTATS is not set | 70 | # CONFIG_TASKSTATS is not set |
70 | # CONFIG_USER_NS is not set | ||
71 | # CONFIG_PID_NS is not set | ||
72 | # CONFIG_AUDIT is not set | 71 | # CONFIG_AUDIT is not set |
73 | # CONFIG_IKCONFIG is not set | 72 | # CONFIG_IKCONFIG is not set |
74 | CONFIG_LOG_BUF_SHIFT=14 | 73 | CONFIG_LOG_BUF_SHIFT=14 |
75 | # CONFIG_CGROUPS is not set | 74 | # CONFIG_CGROUPS is not set |
75 | CONFIG_GROUP_SCHED=y | ||
76 | CONFIG_FAIR_GROUP_SCHED=y | 76 | CONFIG_FAIR_GROUP_SCHED=y |
77 | CONFIG_FAIR_USER_SCHED=y | 77 | # CONFIG_RT_GROUP_SCHED is not set |
78 | # CONFIG_FAIR_CGROUP_SCHED is not set | 78 | CONFIG_USER_SCHED=y |
79 | # CONFIG_CGROUP_SCHED is not set | ||
79 | CONFIG_SYSFS_DEPRECATED=y | 80 | CONFIG_SYSFS_DEPRECATED=y |
80 | # CONFIG_RELAY is not set | 81 | # CONFIG_RELAY is not set |
82 | # CONFIG_NAMESPACES is not set | ||
81 | CONFIG_BLK_DEV_INITRD=y | 83 | CONFIG_BLK_DEV_INITRD=y |
82 | CONFIG_INITRAMFS_SOURCE="" | 84 | CONFIG_INITRAMFS_SOURCE="" |
83 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 85 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -91,11 +93,13 @@ CONFIG_HOTPLUG=y | |||
91 | CONFIG_PRINTK=y | 93 | CONFIG_PRINTK=y |
92 | CONFIG_BUG=y | 94 | CONFIG_BUG=y |
93 | CONFIG_ELF_CORE=y | 95 | CONFIG_ELF_CORE=y |
96 | CONFIG_COMPAT_BRK=y | ||
94 | CONFIG_BASE_FULL=y | 97 | CONFIG_BASE_FULL=y |
95 | CONFIG_FUTEX=y | 98 | CONFIG_FUTEX=y |
96 | CONFIG_ANON_INODES=y | 99 | CONFIG_ANON_INODES=y |
97 | CONFIG_EPOLL=y | 100 | CONFIG_EPOLL=y |
98 | CONFIG_SIGNALFD=y | 101 | CONFIG_SIGNALFD=y |
102 | CONFIG_TIMERFD=y | ||
99 | CONFIG_EVENTFD=y | 103 | CONFIG_EVENTFD=y |
100 | CONFIG_SHMEM=y | 104 | CONFIG_SHMEM=y |
101 | CONFIG_VM_EVENT_COUNTERS=y | 105 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -103,6 +107,13 @@ CONFIG_SLUB_DEBUG=y | |||
103 | # CONFIG_SLAB is not set | 107 | # CONFIG_SLAB is not set |
104 | CONFIG_SLUB=y | 108 | CONFIG_SLUB=y |
105 | # CONFIG_SLOB is not set | 109 | # CONFIG_SLOB is not set |
110 | # CONFIG_PROFILING is not set | ||
111 | # CONFIG_MARKERS is not set | ||
112 | CONFIG_HAVE_OPROFILE=y | ||
113 | # CONFIG_KPROBES is not set | ||
114 | CONFIG_HAVE_KPROBES=y | ||
115 | CONFIG_PROC_PAGE_MONITOR=y | ||
116 | CONFIG_SLABINFO=y | ||
106 | CONFIG_RT_MUTEXES=y | 117 | CONFIG_RT_MUTEXES=y |
107 | # CONFIG_TINY_SHMEM is not set | 118 | # CONFIG_TINY_SHMEM is not set |
108 | CONFIG_BASE_SMALL=0 | 119 | CONFIG_BASE_SMALL=0 |
@@ -130,13 +141,15 @@ CONFIG_DEFAULT_AS=y | |||
130 | # CONFIG_DEFAULT_CFQ is not set | 141 | # CONFIG_DEFAULT_CFQ is not set |
131 | # CONFIG_DEFAULT_NOOP is not set | 142 | # CONFIG_DEFAULT_NOOP is not set |
132 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 143 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
144 | CONFIG_CLASSIC_RCU=y | ||
145 | # CONFIG_PREEMPT_RCU is not set | ||
133 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 146 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
134 | 147 | ||
135 | # | 148 | # |
136 | # Platform support | 149 | # Platform support |
137 | # | 150 | # |
138 | # CONFIG_PPC_MPC52xx is not set | 151 | # CONFIG_PPC_MPC512x is not set |
139 | # CONFIG_PPC_MPC5200 is not set | 152 | # CONFIG_PPC_MPC5121 is not set |
140 | # CONFIG_PPC_CELL is not set | 153 | # CONFIG_PPC_CELL is not set |
141 | # CONFIG_PPC_CELL_NATIVE is not set | 154 | # CONFIG_PPC_CELL_NATIVE is not set |
142 | # CONFIG_PQ2ADS is not set | 155 | # CONFIG_PQ2ADS is not set |
@@ -146,7 +159,9 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
146 | CONFIG_TAISHAN=y | 159 | CONFIG_TAISHAN=y |
147 | # CONFIG_KATMAI is not set | 160 | # CONFIG_KATMAI is not set |
148 | # CONFIG_RAINIER is not set | 161 | # CONFIG_RAINIER is not set |
162 | # CONFIG_WARP is not set | ||
149 | CONFIG_440GX=y | 163 | CONFIG_440GX=y |
164 | # CONFIG_IPIC is not set | ||
150 | # CONFIG_MPIC is not set | 165 | # CONFIG_MPIC is not set |
151 | # CONFIG_MPIC_WEIRD is not set | 166 | # CONFIG_MPIC_WEIRD is not set |
152 | # CONFIG_PPC_I8259 is not set | 167 | # CONFIG_PPC_I8259 is not set |
@@ -157,7 +172,6 @@ CONFIG_440GX=y | |||
157 | # CONFIG_PPC_INDIRECT_IO is not set | 172 | # CONFIG_PPC_INDIRECT_IO is not set |
158 | # CONFIG_GENERIC_IOMAP is not set | 173 | # CONFIG_GENERIC_IOMAP is not set |
159 | # CONFIG_CPU_FREQ is not set | 174 | # CONFIG_CPU_FREQ is not set |
160 | # CONFIG_CPM2 is not set | ||
161 | # CONFIG_FSL_ULI1575 is not set | 175 | # CONFIG_FSL_ULI1575 is not set |
162 | 176 | ||
163 | # | 177 | # |
@@ -173,13 +187,18 @@ CONFIG_HZ_250=y | |||
173 | # CONFIG_HZ_300 is not set | 187 | # CONFIG_HZ_300 is not set |
174 | # CONFIG_HZ_1000 is not set | 188 | # CONFIG_HZ_1000 is not set |
175 | CONFIG_HZ=250 | 189 | CONFIG_HZ=250 |
190 | # CONFIG_SCHED_HRTICK is not set | ||
176 | CONFIG_PREEMPT_NONE=y | 191 | CONFIG_PREEMPT_NONE=y |
177 | # CONFIG_PREEMPT_VOLUNTARY is not set | 192 | # CONFIG_PREEMPT_VOLUNTARY is not set |
178 | # CONFIG_PREEMPT is not set | 193 | # CONFIG_PREEMPT is not set |
194 | CONFIG_RCU_TRACE=y | ||
179 | CONFIG_BINFMT_ELF=y | 195 | CONFIG_BINFMT_ELF=y |
180 | # CONFIG_BINFMT_MISC is not set | 196 | # CONFIG_BINFMT_MISC is not set |
181 | # CONFIG_MATH_EMULATION is not set | 197 | # CONFIG_MATH_EMULATION is not set |
198 | # CONFIG_IOMMU_HELPER is not set | ||
182 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 199 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
200 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
201 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
183 | CONFIG_ARCH_FLATMEM_ENABLE=y | 202 | CONFIG_ARCH_FLATMEM_ENABLE=y |
184 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 203 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
185 | CONFIG_SELECT_MEMORY_MODEL=y | 204 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -199,8 +218,6 @@ CONFIG_PROC_DEVICETREE=y | |||
199 | CONFIG_CMDLINE_BOOL=y | 218 | CONFIG_CMDLINE_BOOL=y |
200 | CONFIG_CMDLINE="" | 219 | CONFIG_CMDLINE="" |
201 | CONFIG_SECCOMP=y | 220 | CONFIG_SECCOMP=y |
202 | CONFIG_WANT_DEVICE_TREE=y | ||
203 | CONFIG_DEVICE_TREE="taishan.dts" | ||
204 | CONFIG_ISA_DMA_API=y | 221 | CONFIG_ISA_DMA_API=y |
205 | 222 | ||
206 | # | 223 | # |
@@ -300,6 +317,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
300 | # | 317 | # |
301 | # CONFIG_NET_PKTGEN is not set | 318 | # CONFIG_NET_PKTGEN is not set |
302 | # CONFIG_HAMRADIO is not set | 319 | # CONFIG_HAMRADIO is not set |
320 | # CONFIG_CAN is not set | ||
303 | # CONFIG_IRDA is not set | 321 | # CONFIG_IRDA is not set |
304 | # CONFIG_BT is not set | 322 | # CONFIG_BT is not set |
305 | # CONFIG_AF_RXRPC is not set | 323 | # CONFIG_AF_RXRPC is not set |
@@ -346,7 +364,7 @@ CONFIG_BLK_DEV=y | |||
346 | CONFIG_BLK_DEV_RAM=y | 364 | CONFIG_BLK_DEV_RAM=y |
347 | CONFIG_BLK_DEV_RAM_COUNT=16 | 365 | CONFIG_BLK_DEV_RAM_COUNT=16 |
348 | CONFIG_BLK_DEV_RAM_SIZE=35000 | 366 | CONFIG_BLK_DEV_RAM_SIZE=35000 |
349 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 367 | # CONFIG_BLK_DEV_XIP is not set |
350 | # CONFIG_CDROM_PKTCDVD is not set | 368 | # CONFIG_CDROM_PKTCDVD is not set |
351 | # CONFIG_ATA_OVER_ETH is not set | 369 | # CONFIG_ATA_OVER_ETH is not set |
352 | # CONFIG_XILINX_SYSACE is not set | 370 | # CONFIG_XILINX_SYSACE is not set |
@@ -355,6 +373,8 @@ CONFIG_MISC_DEVICES=y | |||
355 | # CONFIG_EEPROM_93CX6 is not set | 373 | # CONFIG_EEPROM_93CX6 is not set |
356 | # CONFIG_SGI_IOC4 is not set | 374 | # CONFIG_SGI_IOC4 is not set |
357 | # CONFIG_TIFM_CORE is not set | 375 | # CONFIG_TIFM_CORE is not set |
376 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
377 | CONFIG_HAVE_IDE=y | ||
358 | # CONFIG_IDE is not set | 378 | # CONFIG_IDE is not set |
359 | 379 | ||
360 | # | 380 | # |
@@ -385,7 +405,6 @@ CONFIG_NETDEVICES=y | |||
385 | # CONFIG_EQUALIZER is not set | 405 | # CONFIG_EQUALIZER is not set |
386 | # CONFIG_TUN is not set | 406 | # CONFIG_TUN is not set |
387 | # CONFIG_VETH is not set | 407 | # CONFIG_VETH is not set |
388 | # CONFIG_IP1000 is not set | ||
389 | # CONFIG_ARCNET is not set | 408 | # CONFIG_ARCNET is not set |
390 | # CONFIG_PHYLIB is not set | 409 | # CONFIG_PHYLIB is not set |
391 | CONFIG_NET_ETHERNET=y | 410 | CONFIG_NET_ETHERNET=y |
@@ -414,6 +433,9 @@ CONFIG_NETDEV_1000=y | |||
414 | # CONFIG_DL2K is not set | 433 | # CONFIG_DL2K is not set |
415 | # CONFIG_E1000 is not set | 434 | # CONFIG_E1000 is not set |
416 | # CONFIG_E1000E is not set | 435 | # CONFIG_E1000E is not set |
436 | # CONFIG_E1000E_ENABLED is not set | ||
437 | # CONFIG_IP1000 is not set | ||
438 | # CONFIG_IGB is not set | ||
417 | # CONFIG_NS83820 is not set | 439 | # CONFIG_NS83820 is not set |
418 | # CONFIG_HAMACHI is not set | 440 | # CONFIG_HAMACHI is not set |
419 | # CONFIG_YELLOWFIN is not set | 441 | # CONFIG_YELLOWFIN is not set |
@@ -438,6 +460,7 @@ CONFIG_NETDEV_10000=y | |||
438 | # CONFIG_NIU is not set | 460 | # CONFIG_NIU is not set |
439 | # CONFIG_MLX4_CORE is not set | 461 | # CONFIG_MLX4_CORE is not set |
440 | # CONFIG_TEHUTI is not set | 462 | # CONFIG_TEHUTI is not set |
463 | # CONFIG_BNX2X is not set | ||
441 | # CONFIG_TR is not set | 464 | # CONFIG_TR is not set |
442 | 465 | ||
443 | # | 466 | # |
@@ -450,7 +473,6 @@ CONFIG_NETDEV_10000=y | |||
450 | # CONFIG_HIPPI is not set | 473 | # CONFIG_HIPPI is not set |
451 | # CONFIG_PPP is not set | 474 | # CONFIG_PPP is not set |
452 | # CONFIG_SLIP is not set | 475 | # CONFIG_SLIP is not set |
453 | # CONFIG_SHAPER is not set | ||
454 | # CONFIG_NETCONSOLE is not set | 476 | # CONFIG_NETCONSOLE is not set |
455 | # CONFIG_NETPOLL is not set | 477 | # CONFIG_NETPOLL is not set |
456 | # CONFIG_NET_POLL_CONTROLLER is not set | 478 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -473,6 +495,7 @@ CONFIG_NETDEV_10000=y | |||
473 | # | 495 | # |
474 | # CONFIG_VT is not set | 496 | # CONFIG_VT is not set |
475 | # CONFIG_SERIAL_NONSTANDARD is not set | 497 | # CONFIG_SERIAL_NONSTANDARD is not set |
498 | # CONFIG_NOZOMI is not set | ||
476 | 499 | ||
477 | # | 500 | # |
478 | # Serial drivers | 501 | # Serial drivers |
@@ -518,6 +541,7 @@ CONFIG_DEVPORT=y | |||
518 | # CONFIG_W1 is not set | 541 | # CONFIG_W1 is not set |
519 | # CONFIG_POWER_SUPPLY is not set | 542 | # CONFIG_POWER_SUPPLY is not set |
520 | # CONFIG_HWMON is not set | 543 | # CONFIG_HWMON is not set |
544 | CONFIG_THERMAL=y | ||
521 | # CONFIG_WATCHDOG is not set | 545 | # CONFIG_WATCHDOG is not set |
522 | 546 | ||
523 | # | 547 | # |
@@ -566,12 +590,9 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
566 | # | 590 | # |
567 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 591 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
568 | # | 592 | # |
569 | |||
570 | # | ||
571 | # USB Gadget Support | ||
572 | # | ||
573 | # CONFIG_USB_GADGET is not set | 593 | # CONFIG_USB_GADGET is not set |
574 | # CONFIG_MMC is not set | 594 | # CONFIG_MMC is not set |
595 | # CONFIG_MEMSTICK is not set | ||
575 | # CONFIG_NEW_LEDS is not set | 596 | # CONFIG_NEW_LEDS is not set |
576 | # CONFIG_INFINIBAND is not set | 597 | # CONFIG_INFINIBAND is not set |
577 | # CONFIG_EDAC is not set | 598 | # CONFIG_EDAC is not set |
@@ -596,12 +617,10 @@ CONFIG_EXT2_FS=y | |||
596 | # CONFIG_XFS_FS is not set | 617 | # CONFIG_XFS_FS is not set |
597 | # CONFIG_GFS2_FS is not set | 618 | # CONFIG_GFS2_FS is not set |
598 | # CONFIG_OCFS2_FS is not set | 619 | # CONFIG_OCFS2_FS is not set |
599 | # CONFIG_MINIX_FS is not set | 620 | CONFIG_DNOTIFY=y |
600 | # CONFIG_ROMFS_FS is not set | ||
601 | CONFIG_INOTIFY=y | 621 | CONFIG_INOTIFY=y |
602 | CONFIG_INOTIFY_USER=y | 622 | CONFIG_INOTIFY_USER=y |
603 | # CONFIG_QUOTA is not set | 623 | # CONFIG_QUOTA is not set |
604 | CONFIG_DNOTIFY=y | ||
605 | # CONFIG_AUTOFS_FS is not set | 624 | # CONFIG_AUTOFS_FS is not set |
606 | # CONFIG_AUTOFS4_FS is not set | 625 | # CONFIG_AUTOFS4_FS is not set |
607 | # CONFIG_FUSE_FS is not set | 626 | # CONFIG_FUSE_FS is not set |
@@ -643,8 +662,10 @@ CONFIG_TMPFS=y | |||
643 | # CONFIG_EFS_FS is not set | 662 | # CONFIG_EFS_FS is not set |
644 | CONFIG_CRAMFS=y | 663 | CONFIG_CRAMFS=y |
645 | # CONFIG_VXFS_FS is not set | 664 | # CONFIG_VXFS_FS is not set |
665 | # CONFIG_MINIX_FS is not set | ||
646 | # CONFIG_HPFS_FS is not set | 666 | # CONFIG_HPFS_FS is not set |
647 | # CONFIG_QNX4FS_FS is not set | 667 | # CONFIG_QNX4FS_FS is not set |
668 | # CONFIG_ROMFS_FS is not set | ||
648 | # CONFIG_SYSV_FS is not set | 669 | # CONFIG_SYSV_FS is not set |
649 | # CONFIG_UFS_FS is not set | 670 | # CONFIG_UFS_FS is not set |
650 | CONFIG_NETWORK_FILESYSTEMS=y | 671 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -675,7 +696,6 @@ CONFIG_SUNRPC=y | |||
675 | CONFIG_MSDOS_PARTITION=y | 696 | CONFIG_MSDOS_PARTITION=y |
676 | # CONFIG_NLS is not set | 697 | # CONFIG_NLS is not set |
677 | # CONFIG_DLM is not set | 698 | # CONFIG_DLM is not set |
678 | # CONFIG_UCC_SLOW is not set | ||
679 | 699 | ||
680 | # | 700 | # |
681 | # Library routines | 701 | # Library routines |
@@ -692,10 +712,6 @@ CONFIG_PLIST=y | |||
692 | CONFIG_HAS_IOMEM=y | 712 | CONFIG_HAS_IOMEM=y |
693 | CONFIG_HAS_IOPORT=y | 713 | CONFIG_HAS_IOPORT=y |
694 | CONFIG_HAS_DMA=y | 714 | CONFIG_HAS_DMA=y |
695 | CONFIG_INSTRUMENTATION=y | ||
696 | # CONFIG_PROFILING is not set | ||
697 | # CONFIG_KPROBES is not set | ||
698 | # CONFIG_MARKERS is not set | ||
699 | 715 | ||
700 | # | 716 | # |
701 | # Kernel hacking | 717 | # Kernel hacking |
@@ -705,7 +721,7 @@ CONFIG_ENABLE_WARN_DEPRECATED=y | |||
705 | CONFIG_ENABLE_MUST_CHECK=y | 721 | CONFIG_ENABLE_MUST_CHECK=y |
706 | CONFIG_MAGIC_SYSRQ=y | 722 | CONFIG_MAGIC_SYSRQ=y |
707 | # CONFIG_UNUSED_SYMBOLS is not set | 723 | # CONFIG_UNUSED_SYMBOLS is not set |
708 | # CONFIG_DEBUG_FS is not set | 724 | CONFIG_DEBUG_FS=y |
709 | # CONFIG_HEADERS_CHECK is not set | 725 | # CONFIG_HEADERS_CHECK is not set |
710 | CONFIG_DEBUG_KERNEL=y | 726 | CONFIG_DEBUG_KERNEL=y |
711 | # CONFIG_DEBUG_SHIRQ is not set | 727 | # CONFIG_DEBUG_SHIRQ is not set |
@@ -714,6 +730,7 @@ CONFIG_SCHED_DEBUG=y | |||
714 | # CONFIG_SCHEDSTATS is not set | 730 | # CONFIG_SCHEDSTATS is not set |
715 | # CONFIG_TIMER_STATS is not set | 731 | # CONFIG_TIMER_STATS is not set |
716 | # CONFIG_SLUB_DEBUG_ON is not set | 732 | # CONFIG_SLUB_DEBUG_ON is not set |
733 | # CONFIG_SLUB_STATS is not set | ||
717 | # CONFIG_DEBUG_RT_MUTEXES is not set | 734 | # CONFIG_DEBUG_RT_MUTEXES is not set |
718 | # CONFIG_RT_MUTEX_TESTER is not set | 735 | # CONFIG_RT_MUTEX_TESTER is not set |
719 | # CONFIG_DEBUG_SPINLOCK is not set | 736 | # CONFIG_DEBUG_SPINLOCK is not set |
@@ -726,9 +743,9 @@ CONFIG_SCHED_DEBUG=y | |||
726 | # CONFIG_DEBUG_VM is not set | 743 | # CONFIG_DEBUG_VM is not set |
727 | # CONFIG_DEBUG_LIST is not set | 744 | # CONFIG_DEBUG_LIST is not set |
728 | # CONFIG_DEBUG_SG is not set | 745 | # CONFIG_DEBUG_SG is not set |
729 | CONFIG_FORCED_INLINING=y | ||
730 | # CONFIG_BOOT_PRINTK_DELAY is not set | 746 | # CONFIG_BOOT_PRINTK_DELAY is not set |
731 | # CONFIG_RCU_TORTURE_TEST is not set | 747 | # CONFIG_RCU_TORTURE_TEST is not set |
748 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
732 | # CONFIG_FAULT_INJECTION is not set | 749 | # CONFIG_FAULT_INJECTION is not set |
733 | # CONFIG_SAMPLES is not set | 750 | # CONFIG_SAMPLES is not set |
734 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 751 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
@@ -737,6 +754,7 @@ CONFIG_FORCED_INLINING=y | |||
737 | CONFIG_DEBUGGER=y | 754 | CONFIG_DEBUGGER=y |
738 | # CONFIG_KGDB is not set | 755 | # CONFIG_KGDB is not set |
739 | # CONFIG_XMON is not set | 756 | # CONFIG_XMON is not set |
757 | # CONFIG_VIRQ_DEBUG is not set | ||
740 | # CONFIG_BDI_SWITCH is not set | 758 | # CONFIG_BDI_SWITCH is not set |
741 | # CONFIG_PPC_EARLY_DEBUG is not set | 759 | # CONFIG_PPC_EARLY_DEBUG is not set |
742 | 760 | ||
@@ -749,6 +767,7 @@ CONFIG_DEBUGGER=y | |||
749 | CONFIG_CRYPTO=y | 767 | CONFIG_CRYPTO=y |
750 | CONFIG_CRYPTO_ALGAPI=y | 768 | CONFIG_CRYPTO_ALGAPI=y |
751 | CONFIG_CRYPTO_BLKCIPHER=y | 769 | CONFIG_CRYPTO_BLKCIPHER=y |
770 | # CONFIG_CRYPTO_SEQIV is not set | ||
752 | CONFIG_CRYPTO_MANAGER=y | 771 | CONFIG_CRYPTO_MANAGER=y |
753 | # CONFIG_CRYPTO_HMAC is not set | 772 | # CONFIG_CRYPTO_HMAC is not set |
754 | # CONFIG_CRYPTO_XCBC is not set | 773 | # CONFIG_CRYPTO_XCBC is not set |
@@ -766,6 +785,9 @@ CONFIG_CRYPTO_CBC=y | |||
766 | CONFIG_CRYPTO_PCBC=y | 785 | CONFIG_CRYPTO_PCBC=y |
767 | # CONFIG_CRYPTO_LRW is not set | 786 | # CONFIG_CRYPTO_LRW is not set |
768 | # CONFIG_CRYPTO_XTS is not set | 787 | # CONFIG_CRYPTO_XTS is not set |
788 | # CONFIG_CRYPTO_CTR is not set | ||
789 | # CONFIG_CRYPTO_GCM is not set | ||
790 | # CONFIG_CRYPTO_CCM is not set | ||
769 | # CONFIG_CRYPTO_CRYPTD is not set | 791 | # CONFIG_CRYPTO_CRYPTD is not set |
770 | CONFIG_CRYPTO_DES=y | 792 | CONFIG_CRYPTO_DES=y |
771 | # CONFIG_CRYPTO_FCRYPT is not set | 793 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -780,11 +802,14 @@ CONFIG_CRYPTO_DES=y | |||
780 | # CONFIG_CRYPTO_KHAZAD is not set | 802 | # CONFIG_CRYPTO_KHAZAD is not set |
781 | # CONFIG_CRYPTO_ANUBIS is not set | 803 | # CONFIG_CRYPTO_ANUBIS is not set |
782 | # CONFIG_CRYPTO_SEED is not set | 804 | # CONFIG_CRYPTO_SEED is not set |
805 | # CONFIG_CRYPTO_SALSA20 is not set | ||
783 | # CONFIG_CRYPTO_DEFLATE is not set | 806 | # CONFIG_CRYPTO_DEFLATE is not set |
784 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 807 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
785 | # CONFIG_CRYPTO_CRC32C is not set | 808 | # CONFIG_CRYPTO_CRC32C is not set |
786 | # CONFIG_CRYPTO_CAMELLIA is not set | 809 | # CONFIG_CRYPTO_CAMELLIA is not set |
787 | # CONFIG_CRYPTO_TEST is not set | 810 | # CONFIG_CRYPTO_TEST is not set |
788 | # CONFIG_CRYPTO_AUTHENC is not set | 811 | # CONFIG_CRYPTO_AUTHENC is not set |
812 | # CONFIG_CRYPTO_LZO is not set | ||
789 | CONFIG_CRYPTO_HW=y | 813 | CONFIG_CRYPTO_HW=y |
814 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
790 | # CONFIG_PPC_CLOCK is not set | 815 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/walnut_defconfig b/arch/powerpc/configs/walnut_defconfig index e431128e8e9e..3b2689e5002a 100644 --- a/arch/powerpc/configs/walnut_defconfig +++ b/arch/powerpc/configs/walnut_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc6 | 3 | # Linux kernel version: 2.6.25-rc2 |
4 | # Mon Dec 24 11:23:58 2007 | 4 | # Fri Feb 15 21:54:12 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -26,6 +26,7 @@ CONFIG_GENERIC_TIME=y | |||
26 | CONFIG_GENERIC_TIME_VSYSCALL=y | 26 | CONFIG_GENERIC_TIME_VSYSCALL=y |
27 | CONFIG_GENERIC_CLOCKEVENTS=y | 27 | CONFIG_GENERIC_CLOCKEVENTS=y |
28 | CONFIG_GENERIC_HARDIRQS=y | 28 | CONFIG_GENERIC_HARDIRQS=y |
29 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
29 | CONFIG_IRQ_PER_CPU=y | 30 | CONFIG_IRQ_PER_CPU=y |
30 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 31 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
31 | CONFIG_ARCH_HAS_ILOG2_U32=y | 32 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -64,17 +65,18 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
64 | CONFIG_POSIX_MQUEUE=y | 65 | CONFIG_POSIX_MQUEUE=y |
65 | # CONFIG_BSD_PROCESS_ACCT is not set | 66 | # CONFIG_BSD_PROCESS_ACCT is not set |
66 | # CONFIG_TASKSTATS is not set | 67 | # CONFIG_TASKSTATS is not set |
67 | # CONFIG_USER_NS is not set | ||
68 | # CONFIG_PID_NS is not set | ||
69 | # CONFIG_AUDIT is not set | 68 | # CONFIG_AUDIT is not set |
70 | # CONFIG_IKCONFIG is not set | 69 | # CONFIG_IKCONFIG is not set |
71 | CONFIG_LOG_BUF_SHIFT=14 | 70 | CONFIG_LOG_BUF_SHIFT=14 |
72 | # CONFIG_CGROUPS is not set | 71 | # CONFIG_CGROUPS is not set |
72 | CONFIG_GROUP_SCHED=y | ||
73 | CONFIG_FAIR_GROUP_SCHED=y | 73 | CONFIG_FAIR_GROUP_SCHED=y |
74 | CONFIG_FAIR_USER_SCHED=y | 74 | # CONFIG_RT_GROUP_SCHED is not set |
75 | # CONFIG_FAIR_CGROUP_SCHED is not set | 75 | CONFIG_USER_SCHED=y |
76 | # CONFIG_CGROUP_SCHED is not set | ||
76 | CONFIG_SYSFS_DEPRECATED=y | 77 | CONFIG_SYSFS_DEPRECATED=y |
77 | # CONFIG_RELAY is not set | 78 | # CONFIG_RELAY is not set |
79 | # CONFIG_NAMESPACES is not set | ||
78 | CONFIG_BLK_DEV_INITRD=y | 80 | CONFIG_BLK_DEV_INITRD=y |
79 | CONFIG_INITRAMFS_SOURCE="" | 81 | CONFIG_INITRAMFS_SOURCE="" |
80 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 82 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -88,11 +90,13 @@ CONFIG_HOTPLUG=y | |||
88 | CONFIG_PRINTK=y | 90 | CONFIG_PRINTK=y |
89 | CONFIG_BUG=y | 91 | CONFIG_BUG=y |
90 | CONFIG_ELF_CORE=y | 92 | CONFIG_ELF_CORE=y |
93 | CONFIG_COMPAT_BRK=y | ||
91 | CONFIG_BASE_FULL=y | 94 | CONFIG_BASE_FULL=y |
92 | CONFIG_FUTEX=y | 95 | CONFIG_FUTEX=y |
93 | CONFIG_ANON_INODES=y | 96 | CONFIG_ANON_INODES=y |
94 | CONFIG_EPOLL=y | 97 | CONFIG_EPOLL=y |
95 | CONFIG_SIGNALFD=y | 98 | CONFIG_SIGNALFD=y |
99 | CONFIG_TIMERFD=y | ||
96 | CONFIG_EVENTFD=y | 100 | CONFIG_EVENTFD=y |
97 | CONFIG_SHMEM=y | 101 | CONFIG_SHMEM=y |
98 | CONFIG_VM_EVENT_COUNTERS=y | 102 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -100,6 +104,13 @@ CONFIG_SLUB_DEBUG=y | |||
100 | # CONFIG_SLAB is not set | 104 | # CONFIG_SLAB is not set |
101 | CONFIG_SLUB=y | 105 | CONFIG_SLUB=y |
102 | # CONFIG_SLOB is not set | 106 | # CONFIG_SLOB is not set |
107 | # CONFIG_PROFILING is not set | ||
108 | # CONFIG_MARKERS is not set | ||
109 | CONFIG_HAVE_OPROFILE=y | ||
110 | # CONFIG_KPROBES is not set | ||
111 | CONFIG_HAVE_KPROBES=y | ||
112 | CONFIG_PROC_PAGE_MONITOR=y | ||
113 | CONFIG_SLABINFO=y | ||
103 | CONFIG_RT_MUTEXES=y | 114 | CONFIG_RT_MUTEXES=y |
104 | # CONFIG_TINY_SHMEM is not set | 115 | # CONFIG_TINY_SHMEM is not set |
105 | CONFIG_BASE_SMALL=0 | 116 | CONFIG_BASE_SMALL=0 |
@@ -127,13 +138,15 @@ CONFIG_DEFAULT_AS=y | |||
127 | # CONFIG_DEFAULT_CFQ is not set | 138 | # CONFIG_DEFAULT_CFQ is not set |
128 | # CONFIG_DEFAULT_NOOP is not set | 139 | # CONFIG_DEFAULT_NOOP is not set |
129 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 140 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
141 | CONFIG_CLASSIC_RCU=y | ||
142 | # CONFIG_PREEMPT_RCU is not set | ||
130 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 143 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
131 | 144 | ||
132 | # | 145 | # |
133 | # Platform support | 146 | # Platform support |
134 | # | 147 | # |
135 | # CONFIG_PPC_MPC52xx is not set | 148 | # CONFIG_PPC_MPC512x is not set |
136 | # CONFIG_PPC_MPC5200 is not set | 149 | # CONFIG_PPC_MPC5121 is not set |
137 | # CONFIG_PPC_CELL is not set | 150 | # CONFIG_PPC_CELL is not set |
138 | # CONFIG_PPC_CELL_NATIVE is not set | 151 | # CONFIG_PPC_CELL_NATIVE is not set |
139 | # CONFIG_PQ2ADS is not set | 152 | # CONFIG_PQ2ADS is not set |
@@ -145,6 +158,7 @@ CONFIG_WALNUT=y | |||
145 | CONFIG_405GP=y | 158 | CONFIG_405GP=y |
146 | CONFIG_IBM405_ERR77=y | 159 | CONFIG_IBM405_ERR77=y |
147 | CONFIG_IBM405_ERR51=y | 160 | CONFIG_IBM405_ERR51=y |
161 | # CONFIG_IPIC is not set | ||
148 | # CONFIG_MPIC is not set | 162 | # CONFIG_MPIC is not set |
149 | # CONFIG_MPIC_WEIRD is not set | 163 | # CONFIG_MPIC_WEIRD is not set |
150 | # CONFIG_PPC_I8259 is not set | 164 | # CONFIG_PPC_I8259 is not set |
@@ -155,8 +169,8 @@ CONFIG_IBM405_ERR51=y | |||
155 | # CONFIG_PPC_INDIRECT_IO is not set | 169 | # CONFIG_PPC_INDIRECT_IO is not set |
156 | # CONFIG_GENERIC_IOMAP is not set | 170 | # CONFIG_GENERIC_IOMAP is not set |
157 | # CONFIG_CPU_FREQ is not set | 171 | # CONFIG_CPU_FREQ is not set |
158 | # CONFIG_CPM2 is not set | ||
159 | # CONFIG_FSL_ULI1575 is not set | 172 | # CONFIG_FSL_ULI1575 is not set |
173 | CONFIG_OF_RTC=y | ||
160 | 174 | ||
161 | # | 175 | # |
162 | # Kernel options | 176 | # Kernel options |
@@ -171,13 +185,18 @@ CONFIG_HZ_250=y | |||
171 | # CONFIG_HZ_300 is not set | 185 | # CONFIG_HZ_300 is not set |
172 | # CONFIG_HZ_1000 is not set | 186 | # CONFIG_HZ_1000 is not set |
173 | CONFIG_HZ=250 | 187 | CONFIG_HZ=250 |
188 | # CONFIG_SCHED_HRTICK is not set | ||
174 | CONFIG_PREEMPT_NONE=y | 189 | CONFIG_PREEMPT_NONE=y |
175 | # CONFIG_PREEMPT_VOLUNTARY is not set | 190 | # CONFIG_PREEMPT_VOLUNTARY is not set |
176 | # CONFIG_PREEMPT is not set | 191 | # CONFIG_PREEMPT is not set |
192 | CONFIG_RCU_TRACE=y | ||
177 | CONFIG_BINFMT_ELF=y | 193 | CONFIG_BINFMT_ELF=y |
178 | # CONFIG_BINFMT_MISC is not set | 194 | # CONFIG_BINFMT_MISC is not set |
179 | # CONFIG_MATH_EMULATION is not set | 195 | # CONFIG_MATH_EMULATION is not set |
196 | # CONFIG_IOMMU_HELPER is not set | ||
180 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 197 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
198 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
199 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
181 | CONFIG_ARCH_FLATMEM_ENABLE=y | 200 | CONFIG_ARCH_FLATMEM_ENABLE=y |
182 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 201 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
183 | CONFIG_SELECT_MEMORY_MODEL=y | 202 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -196,11 +215,7 @@ CONFIG_VIRT_TO_BUS=y | |||
196 | CONFIG_PROC_DEVICETREE=y | 215 | CONFIG_PROC_DEVICETREE=y |
197 | # CONFIG_CMDLINE_BOOL is not set | 216 | # CONFIG_CMDLINE_BOOL is not set |
198 | # CONFIG_PM is not set | 217 | # CONFIG_PM is not set |
199 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
200 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
201 | CONFIG_SECCOMP=y | 218 | CONFIG_SECCOMP=y |
202 | CONFIG_WANT_DEVICE_TREE=y | ||
203 | CONFIG_DEVICE_TREE="walnut.dts" | ||
204 | CONFIG_ISA_DMA_API=y | 219 | CONFIG_ISA_DMA_API=y |
205 | 220 | ||
206 | # | 221 | # |
@@ -300,6 +315,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
300 | # | 315 | # |
301 | # CONFIG_NET_PKTGEN is not set | 316 | # CONFIG_NET_PKTGEN is not set |
302 | # CONFIG_HAMRADIO is not set | 317 | # CONFIG_HAMRADIO is not set |
318 | # CONFIG_CAN is not set | ||
303 | # CONFIG_IRDA is not set | 319 | # CONFIG_IRDA is not set |
304 | # CONFIG_BT is not set | 320 | # CONFIG_BT is not set |
305 | # CONFIG_AF_RXRPC is not set | 321 | # CONFIG_AF_RXRPC is not set |
@@ -336,6 +352,7 @@ CONFIG_MTD=y | |||
336 | CONFIG_MTD_PARTITIONS=y | 352 | CONFIG_MTD_PARTITIONS=y |
337 | # CONFIG_MTD_REDBOOT_PARTS is not set | 353 | # CONFIG_MTD_REDBOOT_PARTS is not set |
338 | CONFIG_MTD_CMDLINE_PARTS=y | 354 | CONFIG_MTD_CMDLINE_PARTS=y |
355 | CONFIG_MTD_OF_PARTS=y | ||
339 | 356 | ||
340 | # | 357 | # |
341 | # User Modules And Translation Layers | 358 | # User Modules And Translation Layers |
@@ -422,7 +439,7 @@ CONFIG_BLK_DEV=y | |||
422 | CONFIG_BLK_DEV_RAM=y | 439 | CONFIG_BLK_DEV_RAM=y |
423 | CONFIG_BLK_DEV_RAM_COUNT=16 | 440 | CONFIG_BLK_DEV_RAM_COUNT=16 |
424 | CONFIG_BLK_DEV_RAM_SIZE=35000 | 441 | CONFIG_BLK_DEV_RAM_SIZE=35000 |
425 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 442 | # CONFIG_BLK_DEV_XIP is not set |
426 | # CONFIG_CDROM_PKTCDVD is not set | 443 | # CONFIG_CDROM_PKTCDVD is not set |
427 | # CONFIG_ATA_OVER_ETH is not set | 444 | # CONFIG_ATA_OVER_ETH is not set |
428 | # CONFIG_XILINX_SYSACE is not set | 445 | # CONFIG_XILINX_SYSACE is not set |
@@ -431,6 +448,8 @@ CONFIG_MISC_DEVICES=y | |||
431 | # CONFIG_EEPROM_93CX6 is not set | 448 | # CONFIG_EEPROM_93CX6 is not set |
432 | # CONFIG_SGI_IOC4 is not set | 449 | # CONFIG_SGI_IOC4 is not set |
433 | # CONFIG_TIFM_CORE is not set | 450 | # CONFIG_TIFM_CORE is not set |
451 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
452 | CONFIG_HAVE_IDE=y | ||
434 | # CONFIG_IDE is not set | 453 | # CONFIG_IDE is not set |
435 | 454 | ||
436 | # | 455 | # |
@@ -459,7 +478,6 @@ CONFIG_NETDEVICES=y | |||
459 | # CONFIG_EQUALIZER is not set | 478 | # CONFIG_EQUALIZER is not set |
460 | # CONFIG_TUN is not set | 479 | # CONFIG_TUN is not set |
461 | # CONFIG_VETH is not set | 480 | # CONFIG_VETH is not set |
462 | # CONFIG_IP1000 is not set | ||
463 | # CONFIG_ARCNET is not set | 481 | # CONFIG_ARCNET is not set |
464 | # CONFIG_PHYLIB is not set | 482 | # CONFIG_PHYLIB is not set |
465 | CONFIG_NET_ETHERNET=y | 483 | CONFIG_NET_ETHERNET=y |
@@ -488,6 +506,9 @@ CONFIG_NETDEV_1000=y | |||
488 | # CONFIG_DL2K is not set | 506 | # CONFIG_DL2K is not set |
489 | # CONFIG_E1000 is not set | 507 | # CONFIG_E1000 is not set |
490 | # CONFIG_E1000E is not set | 508 | # CONFIG_E1000E is not set |
509 | # CONFIG_E1000E_ENABLED is not set | ||
510 | # CONFIG_IP1000 is not set | ||
511 | # CONFIG_IGB is not set | ||
491 | # CONFIG_NS83820 is not set | 512 | # CONFIG_NS83820 is not set |
492 | # CONFIG_HAMACHI is not set | 513 | # CONFIG_HAMACHI is not set |
493 | # CONFIG_YELLOWFIN is not set | 514 | # CONFIG_YELLOWFIN is not set |
@@ -512,6 +533,7 @@ CONFIG_NETDEV_10000=y | |||
512 | # CONFIG_NIU is not set | 533 | # CONFIG_NIU is not set |
513 | # CONFIG_MLX4_CORE is not set | 534 | # CONFIG_MLX4_CORE is not set |
514 | # CONFIG_TEHUTI is not set | 535 | # CONFIG_TEHUTI is not set |
536 | # CONFIG_BNX2X is not set | ||
515 | # CONFIG_TR is not set | 537 | # CONFIG_TR is not set |
516 | 538 | ||
517 | # | 539 | # |
@@ -524,7 +546,6 @@ CONFIG_NETDEV_10000=y | |||
524 | # CONFIG_HIPPI is not set | 546 | # CONFIG_HIPPI is not set |
525 | # CONFIG_PPP is not set | 547 | # CONFIG_PPP is not set |
526 | # CONFIG_SLIP is not set | 548 | # CONFIG_SLIP is not set |
527 | # CONFIG_SHAPER is not set | ||
528 | # CONFIG_NETCONSOLE is not set | 549 | # CONFIG_NETCONSOLE is not set |
529 | # CONFIG_NETPOLL is not set | 550 | # CONFIG_NETPOLL is not set |
530 | # CONFIG_NET_POLL_CONTROLLER is not set | 551 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -547,6 +568,7 @@ CONFIG_NETDEV_10000=y | |||
547 | # | 568 | # |
548 | # CONFIG_VT is not set | 569 | # CONFIG_VT is not set |
549 | # CONFIG_SERIAL_NONSTANDARD is not set | 570 | # CONFIG_SERIAL_NONSTANDARD is not set |
571 | # CONFIG_NOZOMI is not set | ||
550 | 572 | ||
551 | # | 573 | # |
552 | # Serial drivers | 574 | # Serial drivers |
@@ -592,6 +614,7 @@ CONFIG_DEVPORT=y | |||
592 | # CONFIG_W1 is not set | 614 | # CONFIG_W1 is not set |
593 | # CONFIG_POWER_SUPPLY is not set | 615 | # CONFIG_POWER_SUPPLY is not set |
594 | # CONFIG_HWMON is not set | 616 | # CONFIG_HWMON is not set |
617 | CONFIG_THERMAL=y | ||
595 | # CONFIG_WATCHDOG is not set | 618 | # CONFIG_WATCHDOG is not set |
596 | 619 | ||
597 | # | 620 | # |
@@ -640,12 +663,9 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
640 | # | 663 | # |
641 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 664 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
642 | # | 665 | # |
643 | |||
644 | # | ||
645 | # USB Gadget Support | ||
646 | # | ||
647 | # CONFIG_USB_GADGET is not set | 666 | # CONFIG_USB_GADGET is not set |
648 | # CONFIG_MMC is not set | 667 | # CONFIG_MMC is not set |
668 | # CONFIG_MEMSTICK is not set | ||
649 | # CONFIG_NEW_LEDS is not set | 669 | # CONFIG_NEW_LEDS is not set |
650 | # CONFIG_INFINIBAND is not set | 670 | # CONFIG_INFINIBAND is not set |
651 | # CONFIG_EDAC is not set | 671 | # CONFIG_EDAC is not set |
@@ -670,12 +690,10 @@ CONFIG_EXT2_FS=y | |||
670 | # CONFIG_XFS_FS is not set | 690 | # CONFIG_XFS_FS is not set |
671 | # CONFIG_GFS2_FS is not set | 691 | # CONFIG_GFS2_FS is not set |
672 | # CONFIG_OCFS2_FS is not set | 692 | # CONFIG_OCFS2_FS is not set |
673 | # CONFIG_MINIX_FS is not set | 693 | CONFIG_DNOTIFY=y |
674 | # CONFIG_ROMFS_FS is not set | ||
675 | CONFIG_INOTIFY=y | 694 | CONFIG_INOTIFY=y |
676 | CONFIG_INOTIFY_USER=y | 695 | CONFIG_INOTIFY_USER=y |
677 | # CONFIG_QUOTA is not set | 696 | # CONFIG_QUOTA is not set |
678 | CONFIG_DNOTIFY=y | ||
679 | # CONFIG_AUTOFS_FS is not set | 697 | # CONFIG_AUTOFS_FS is not set |
680 | # CONFIG_AUTOFS4_FS is not set | 698 | # CONFIG_AUTOFS4_FS is not set |
681 | # CONFIG_FUSE_FS is not set | 699 | # CONFIG_FUSE_FS is not set |
@@ -718,8 +736,10 @@ CONFIG_TMPFS=y | |||
718 | # CONFIG_JFFS2_FS is not set | 736 | # CONFIG_JFFS2_FS is not set |
719 | CONFIG_CRAMFS=y | 737 | CONFIG_CRAMFS=y |
720 | # CONFIG_VXFS_FS is not set | 738 | # CONFIG_VXFS_FS is not set |
739 | # CONFIG_MINIX_FS is not set | ||
721 | # CONFIG_HPFS_FS is not set | 740 | # CONFIG_HPFS_FS is not set |
722 | # CONFIG_QNX4FS_FS is not set | 741 | # CONFIG_QNX4FS_FS is not set |
742 | # CONFIG_ROMFS_FS is not set | ||
723 | # CONFIG_SYSV_FS is not set | 743 | # CONFIG_SYSV_FS is not set |
724 | # CONFIG_UFS_FS is not set | 744 | # CONFIG_UFS_FS is not set |
725 | CONFIG_NETWORK_FILESYSTEMS=y | 745 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -750,7 +770,6 @@ CONFIG_SUNRPC=y | |||
750 | CONFIG_MSDOS_PARTITION=y | 770 | CONFIG_MSDOS_PARTITION=y |
751 | # CONFIG_NLS is not set | 771 | # CONFIG_NLS is not set |
752 | # CONFIG_DLM is not set | 772 | # CONFIG_DLM is not set |
753 | # CONFIG_UCC_SLOW is not set | ||
754 | 773 | ||
755 | # | 774 | # |
756 | # Library routines | 775 | # Library routines |
@@ -767,7 +786,6 @@ CONFIG_PLIST=y | |||
767 | CONFIG_HAS_IOMEM=y | 786 | CONFIG_HAS_IOMEM=y |
768 | CONFIG_HAS_IOPORT=y | 787 | CONFIG_HAS_IOPORT=y |
769 | CONFIG_HAS_DMA=y | 788 | CONFIG_HAS_DMA=y |
770 | # CONFIG_INSTRUMENTATION is not set | ||
771 | 789 | ||
772 | # | 790 | # |
773 | # Kernel hacking | 791 | # Kernel hacking |
@@ -777,7 +795,7 @@ CONFIG_ENABLE_WARN_DEPRECATED=y | |||
777 | CONFIG_ENABLE_MUST_CHECK=y | 795 | CONFIG_ENABLE_MUST_CHECK=y |
778 | CONFIG_MAGIC_SYSRQ=y | 796 | CONFIG_MAGIC_SYSRQ=y |
779 | # CONFIG_UNUSED_SYMBOLS is not set | 797 | # CONFIG_UNUSED_SYMBOLS is not set |
780 | # CONFIG_DEBUG_FS is not set | 798 | CONFIG_DEBUG_FS=y |
781 | # CONFIG_HEADERS_CHECK is not set | 799 | # CONFIG_HEADERS_CHECK is not set |
782 | CONFIG_DEBUG_KERNEL=y | 800 | CONFIG_DEBUG_KERNEL=y |
783 | # CONFIG_DEBUG_SHIRQ is not set | 801 | # CONFIG_DEBUG_SHIRQ is not set |
@@ -786,6 +804,7 @@ CONFIG_SCHED_DEBUG=y | |||
786 | # CONFIG_SCHEDSTATS is not set | 804 | # CONFIG_SCHEDSTATS is not set |
787 | # CONFIG_TIMER_STATS is not set | 805 | # CONFIG_TIMER_STATS is not set |
788 | # CONFIG_SLUB_DEBUG_ON is not set | 806 | # CONFIG_SLUB_DEBUG_ON is not set |
807 | # CONFIG_SLUB_STATS is not set | ||
789 | # CONFIG_DEBUG_RT_MUTEXES is not set | 808 | # CONFIG_DEBUG_RT_MUTEXES is not set |
790 | # CONFIG_RT_MUTEX_TESTER is not set | 809 | # CONFIG_RT_MUTEX_TESTER is not set |
791 | # CONFIG_DEBUG_SPINLOCK is not set | 810 | # CONFIG_DEBUG_SPINLOCK is not set |
@@ -798,15 +817,16 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
798 | # CONFIG_DEBUG_VM is not set | 817 | # CONFIG_DEBUG_VM is not set |
799 | # CONFIG_DEBUG_LIST is not set | 818 | # CONFIG_DEBUG_LIST is not set |
800 | # CONFIG_DEBUG_SG is not set | 819 | # CONFIG_DEBUG_SG is not set |
801 | CONFIG_FORCED_INLINING=y | ||
802 | # CONFIG_BOOT_PRINTK_DELAY is not set | 820 | # CONFIG_BOOT_PRINTK_DELAY is not set |
803 | # CONFIG_RCU_TORTURE_TEST is not set | 821 | # CONFIG_RCU_TORTURE_TEST is not set |
822 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
804 | # CONFIG_FAULT_INJECTION is not set | 823 | # CONFIG_FAULT_INJECTION is not set |
805 | # CONFIG_SAMPLES is not set | 824 | # CONFIG_SAMPLES is not set |
806 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 825 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
807 | # CONFIG_DEBUG_STACK_USAGE is not set | 826 | # CONFIG_DEBUG_STACK_USAGE is not set |
808 | # CONFIG_DEBUG_PAGEALLOC is not set | 827 | # CONFIG_DEBUG_PAGEALLOC is not set |
809 | # CONFIG_DEBUGGER is not set | 828 | # CONFIG_DEBUGGER is not set |
829 | # CONFIG_VIRQ_DEBUG is not set | ||
810 | # CONFIG_BDI_SWITCH is not set | 830 | # CONFIG_BDI_SWITCH is not set |
811 | # CONFIG_PPC_EARLY_DEBUG is not set | 831 | # CONFIG_PPC_EARLY_DEBUG is not set |
812 | 832 | ||
@@ -819,6 +839,7 @@ CONFIG_FORCED_INLINING=y | |||
819 | CONFIG_CRYPTO=y | 839 | CONFIG_CRYPTO=y |
820 | CONFIG_CRYPTO_ALGAPI=y | 840 | CONFIG_CRYPTO_ALGAPI=y |
821 | CONFIG_CRYPTO_BLKCIPHER=y | 841 | CONFIG_CRYPTO_BLKCIPHER=y |
842 | # CONFIG_CRYPTO_SEQIV is not set | ||
822 | CONFIG_CRYPTO_MANAGER=y | 843 | CONFIG_CRYPTO_MANAGER=y |
823 | # CONFIG_CRYPTO_HMAC is not set | 844 | # CONFIG_CRYPTO_HMAC is not set |
824 | # CONFIG_CRYPTO_XCBC is not set | 845 | # CONFIG_CRYPTO_XCBC is not set |
@@ -836,6 +857,9 @@ CONFIG_CRYPTO_CBC=y | |||
836 | CONFIG_CRYPTO_PCBC=y | 857 | CONFIG_CRYPTO_PCBC=y |
837 | # CONFIG_CRYPTO_LRW is not set | 858 | # CONFIG_CRYPTO_LRW is not set |
838 | # CONFIG_CRYPTO_XTS is not set | 859 | # CONFIG_CRYPTO_XTS is not set |
860 | # CONFIG_CRYPTO_CTR is not set | ||
861 | # CONFIG_CRYPTO_GCM is not set | ||
862 | # CONFIG_CRYPTO_CCM is not set | ||
839 | # CONFIG_CRYPTO_CRYPTD is not set | 863 | # CONFIG_CRYPTO_CRYPTD is not set |
840 | CONFIG_CRYPTO_DES=y | 864 | CONFIG_CRYPTO_DES=y |
841 | # CONFIG_CRYPTO_FCRYPT is not set | 865 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -850,11 +874,14 @@ CONFIG_CRYPTO_DES=y | |||
850 | # CONFIG_CRYPTO_KHAZAD is not set | 874 | # CONFIG_CRYPTO_KHAZAD is not set |
851 | # CONFIG_CRYPTO_ANUBIS is not set | 875 | # CONFIG_CRYPTO_ANUBIS is not set |
852 | # CONFIG_CRYPTO_SEED is not set | 876 | # CONFIG_CRYPTO_SEED is not set |
877 | # CONFIG_CRYPTO_SALSA20 is not set | ||
853 | # CONFIG_CRYPTO_DEFLATE is not set | 878 | # CONFIG_CRYPTO_DEFLATE is not set |
854 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 879 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
855 | # CONFIG_CRYPTO_CRC32C is not set | 880 | # CONFIG_CRYPTO_CRC32C is not set |
856 | # CONFIG_CRYPTO_CAMELLIA is not set | 881 | # CONFIG_CRYPTO_CAMELLIA is not set |
857 | # CONFIG_CRYPTO_TEST is not set | 882 | # CONFIG_CRYPTO_TEST is not set |
858 | # CONFIG_CRYPTO_AUTHENC is not set | 883 | # CONFIG_CRYPTO_AUTHENC is not set |
884 | # CONFIG_CRYPTO_LZO is not set | ||
859 | CONFIG_CRYPTO_HW=y | 885 | CONFIG_CRYPTO_HW=y |
886 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
860 | # CONFIG_PPC_CLOCK is not set | 887 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/warp_defconfig b/arch/powerpc/configs/warp_defconfig index 312557b5df53..2313c3e8ef61 100644 --- a/arch/powerpc/configs/warp_defconfig +++ b/arch/powerpc/configs/warp_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc6 | 3 | # Linux kernel version: 2.6.25-rc2 |
4 | # Tue Jan 8 12:23:23 2008 | 4 | # Fri Feb 15 21:54:43 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -30,6 +30,7 @@ CONFIG_GENERIC_TIME=y | |||
30 | CONFIG_GENERIC_TIME_VSYSCALL=y | 30 | CONFIG_GENERIC_TIME_VSYSCALL=y |
31 | CONFIG_GENERIC_CLOCKEVENTS=y | 31 | CONFIG_GENERIC_CLOCKEVENTS=y |
32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 36 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -68,17 +69,18 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
68 | # CONFIG_POSIX_MQUEUE is not set | 69 | # CONFIG_POSIX_MQUEUE is not set |
69 | # CONFIG_BSD_PROCESS_ACCT is not set | 70 | # CONFIG_BSD_PROCESS_ACCT is not set |
70 | # CONFIG_TASKSTATS is not set | 71 | # CONFIG_TASKSTATS is not set |
71 | # CONFIG_USER_NS is not set | ||
72 | # CONFIG_PID_NS is not set | ||
73 | # CONFIG_AUDIT is not set | 72 | # CONFIG_AUDIT is not set |
74 | # CONFIG_IKCONFIG is not set | 73 | # CONFIG_IKCONFIG is not set |
75 | CONFIG_LOG_BUF_SHIFT=14 | 74 | CONFIG_LOG_BUF_SHIFT=14 |
76 | # CONFIG_CGROUPS is not set | 75 | # CONFIG_CGROUPS is not set |
76 | CONFIG_GROUP_SCHED=y | ||
77 | CONFIG_FAIR_GROUP_SCHED=y | 77 | CONFIG_FAIR_GROUP_SCHED=y |
78 | CONFIG_FAIR_USER_SCHED=y | 78 | # CONFIG_RT_GROUP_SCHED is not set |
79 | # CONFIG_FAIR_CGROUP_SCHED is not set | 79 | CONFIG_USER_SCHED=y |
80 | # CONFIG_CGROUP_SCHED is not set | ||
80 | CONFIG_SYSFS_DEPRECATED=y | 81 | CONFIG_SYSFS_DEPRECATED=y |
81 | # CONFIG_RELAY is not set | 82 | # CONFIG_RELAY is not set |
83 | # CONFIG_NAMESPACES is not set | ||
82 | CONFIG_BLK_DEV_INITRD=y | 84 | CONFIG_BLK_DEV_INITRD=y |
83 | CONFIG_INITRAMFS_SOURCE="" | 85 | CONFIG_INITRAMFS_SOURCE="" |
84 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 86 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -92,17 +94,26 @@ CONFIG_KALLSYMS=y | |||
92 | CONFIG_PRINTK=y | 94 | CONFIG_PRINTK=y |
93 | CONFIG_BUG=y | 95 | CONFIG_BUG=y |
94 | CONFIG_ELF_CORE=y | 96 | CONFIG_ELF_CORE=y |
97 | CONFIG_COMPAT_BRK=y | ||
95 | CONFIG_BASE_FULL=y | 98 | CONFIG_BASE_FULL=y |
96 | CONFIG_FUTEX=y | 99 | CONFIG_FUTEX=y |
97 | CONFIG_ANON_INODES=y | 100 | CONFIG_ANON_INODES=y |
98 | CONFIG_EPOLL=y | 101 | CONFIG_EPOLL=y |
99 | CONFIG_SIGNALFD=y | 102 | CONFIG_SIGNALFD=y |
103 | CONFIG_TIMERFD=y | ||
100 | CONFIG_EVENTFD=y | 104 | CONFIG_EVENTFD=y |
101 | CONFIG_SHMEM=y | 105 | CONFIG_SHMEM=y |
102 | CONFIG_VM_EVENT_COUNTERS=y | 106 | CONFIG_VM_EVENT_COUNTERS=y |
103 | CONFIG_SLAB=y | 107 | CONFIG_SLAB=y |
104 | # CONFIG_SLUB is not set | 108 | # CONFIG_SLUB is not set |
105 | # CONFIG_SLOB is not set | 109 | # CONFIG_SLOB is not set |
110 | # CONFIG_PROFILING is not set | ||
111 | # CONFIG_MARKERS is not set | ||
112 | CONFIG_HAVE_OPROFILE=y | ||
113 | # CONFIG_KPROBES is not set | ||
114 | CONFIG_HAVE_KPROBES=y | ||
115 | CONFIG_PROC_PAGE_MONITOR=y | ||
116 | CONFIG_SLABINFO=y | ||
106 | CONFIG_RT_MUTEXES=y | 117 | CONFIG_RT_MUTEXES=y |
107 | # CONFIG_TINY_SHMEM is not set | 118 | # CONFIG_TINY_SHMEM is not set |
108 | CONFIG_BASE_SMALL=0 | 119 | CONFIG_BASE_SMALL=0 |
@@ -130,12 +141,14 @@ CONFIG_DEFAULT_AS=y | |||
130 | # CONFIG_DEFAULT_CFQ is not set | 141 | # CONFIG_DEFAULT_CFQ is not set |
131 | # CONFIG_DEFAULT_NOOP is not set | 142 | # CONFIG_DEFAULT_NOOP is not set |
132 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 143 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
144 | CONFIG_CLASSIC_RCU=y | ||
145 | # CONFIG_PREEMPT_RCU is not set | ||
133 | 146 | ||
134 | # | 147 | # |
135 | # Platform support | 148 | # Platform support |
136 | # | 149 | # |
137 | # CONFIG_PPC_MPC52xx is not set | 150 | # CONFIG_PPC_MPC512x is not set |
138 | # CONFIG_PPC_MPC5200 is not set | 151 | # CONFIG_PPC_MPC5121 is not set |
139 | # CONFIG_PPC_CELL is not set | 152 | # CONFIG_PPC_CELL is not set |
140 | # CONFIG_PPC_CELL_NATIVE is not set | 153 | # CONFIG_PPC_CELL_NATIVE is not set |
141 | # CONFIG_PQ2ADS is not set | 154 | # CONFIG_PQ2ADS is not set |
@@ -148,6 +161,7 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
148 | CONFIG_WARP=y | 161 | CONFIG_WARP=y |
149 | CONFIG_440EP=y | 162 | CONFIG_440EP=y |
150 | CONFIG_IBM440EP_ERR42=y | 163 | CONFIG_IBM440EP_ERR42=y |
164 | # CONFIG_IPIC is not set | ||
151 | # CONFIG_MPIC is not set | 165 | # CONFIG_MPIC is not set |
152 | # CONFIG_MPIC_WEIRD is not set | 166 | # CONFIG_MPIC_WEIRD is not set |
153 | # CONFIG_PPC_I8259 is not set | 167 | # CONFIG_PPC_I8259 is not set |
@@ -158,7 +172,6 @@ CONFIG_IBM440EP_ERR42=y | |||
158 | # CONFIG_PPC_INDIRECT_IO is not set | 172 | # CONFIG_PPC_INDIRECT_IO is not set |
159 | # CONFIG_GENERIC_IOMAP is not set | 173 | # CONFIG_GENERIC_IOMAP is not set |
160 | # CONFIG_CPU_FREQ is not set | 174 | # CONFIG_CPU_FREQ is not set |
161 | # CONFIG_CPM2 is not set | ||
162 | # CONFIG_FSL_ULI1575 is not set | 175 | # CONFIG_FSL_ULI1575 is not set |
163 | 176 | ||
164 | # | 177 | # |
@@ -174,13 +187,18 @@ CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | |||
174 | # CONFIG_HZ_300 is not set | 187 | # CONFIG_HZ_300 is not set |
175 | CONFIG_HZ_1000=y | 188 | CONFIG_HZ_1000=y |
176 | CONFIG_HZ=1000 | 189 | CONFIG_HZ=1000 |
190 | # CONFIG_SCHED_HRTICK is not set | ||
177 | CONFIG_PREEMPT_NONE=y | 191 | CONFIG_PREEMPT_NONE=y |
178 | # CONFIG_PREEMPT_VOLUNTARY is not set | 192 | # CONFIG_PREEMPT_VOLUNTARY is not set |
179 | # CONFIG_PREEMPT is not set | 193 | # CONFIG_PREEMPT is not set |
194 | CONFIG_RCU_TRACE=y | ||
180 | CONFIG_BINFMT_ELF=y | 195 | CONFIG_BINFMT_ELF=y |
181 | # CONFIG_BINFMT_MISC is not set | 196 | # CONFIG_BINFMT_MISC is not set |
182 | # CONFIG_MATH_EMULATION is not set | 197 | # CONFIG_MATH_EMULATION is not set |
198 | # CONFIG_IOMMU_HELPER is not set | ||
183 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 199 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
200 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
201 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
184 | CONFIG_ARCH_FLATMEM_ENABLE=y | 202 | CONFIG_ARCH_FLATMEM_ENABLE=y |
185 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 203 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
186 | CONFIG_SELECT_MEMORY_MODEL=y | 204 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -200,8 +218,6 @@ CONFIG_PROC_DEVICETREE=y | |||
200 | CONFIG_CMDLINE_BOOL=y | 218 | CONFIG_CMDLINE_BOOL=y |
201 | CONFIG_CMDLINE="ip=on" | 219 | CONFIG_CMDLINE="ip=on" |
202 | CONFIG_SECCOMP=y | 220 | CONFIG_SECCOMP=y |
203 | CONFIG_WANT_DEVICE_TREE=y | ||
204 | CONFIG_DEVICE_TREE="warp.dts" | ||
205 | CONFIG_ISA_DMA_API=y | 221 | CONFIG_ISA_DMA_API=y |
206 | 222 | ||
207 | # | 223 | # |
@@ -244,6 +260,7 @@ CONFIG_XFRM=y | |||
244 | # CONFIG_XFRM_USER is not set | 260 | # CONFIG_XFRM_USER is not set |
245 | # CONFIG_XFRM_SUB_POLICY is not set | 261 | # CONFIG_XFRM_SUB_POLICY is not set |
246 | # CONFIG_XFRM_MIGRATE is not set | 262 | # CONFIG_XFRM_MIGRATE is not set |
263 | # CONFIG_XFRM_STATISTICS is not set | ||
247 | # CONFIG_NET_KEY is not set | 264 | # CONFIG_NET_KEY is not set |
248 | CONFIG_INET=y | 265 | CONFIG_INET=y |
249 | # CONFIG_IP_MULTICAST is not set | 266 | # CONFIG_IP_MULTICAST is not set |
@@ -279,12 +296,13 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
279 | # CONFIG_NETWORK_SECMARK is not set | 296 | # CONFIG_NETWORK_SECMARK is not set |
280 | CONFIG_NETFILTER=y | 297 | CONFIG_NETFILTER=y |
281 | # CONFIG_NETFILTER_DEBUG is not set | 298 | # CONFIG_NETFILTER_DEBUG is not set |
299 | CONFIG_NETFILTER_ADVANCED=y | ||
282 | 300 | ||
283 | # | 301 | # |
284 | # Core Netfilter Configuration | 302 | # Core Netfilter Configuration |
285 | # | 303 | # |
286 | # CONFIG_NETFILTER_NETLINK is not set | 304 | # CONFIG_NETFILTER_NETLINK_QUEUE is not set |
287 | # CONFIG_NF_CONNTRACK_ENABLED is not set | 305 | # CONFIG_NETFILTER_NETLINK_LOG is not set |
288 | # CONFIG_NF_CONNTRACK is not set | 306 | # CONFIG_NF_CONNTRACK is not set |
289 | # CONFIG_NETFILTER_XTABLES is not set | 307 | # CONFIG_NETFILTER_XTABLES is not set |
290 | 308 | ||
@@ -315,6 +333,7 @@ CONFIG_VLAN_8021Q=y | |||
315 | # | 333 | # |
316 | # CONFIG_NET_PKTGEN is not set | 334 | # CONFIG_NET_PKTGEN is not set |
317 | # CONFIG_HAMRADIO is not set | 335 | # CONFIG_HAMRADIO is not set |
336 | # CONFIG_CAN is not set | ||
318 | # CONFIG_IRDA is not set | 337 | # CONFIG_IRDA is not set |
319 | # CONFIG_BT is not set | 338 | # CONFIG_BT is not set |
320 | # CONFIG_AF_RXRPC is not set | 339 | # CONFIG_AF_RXRPC is not set |
@@ -348,6 +367,7 @@ CONFIG_MTD=y | |||
348 | CONFIG_MTD_PARTITIONS=y | 367 | CONFIG_MTD_PARTITIONS=y |
349 | # CONFIG_MTD_REDBOOT_PARTS is not set | 368 | # CONFIG_MTD_REDBOOT_PARTS is not set |
350 | # CONFIG_MTD_CMDLINE_PARTS is not set | 369 | # CONFIG_MTD_CMDLINE_PARTS is not set |
370 | CONFIG_MTD_OF_PARTS=y | ||
351 | 371 | ||
352 | # | 372 | # |
353 | # User Modules And Translation Layers | 373 | # User Modules And Translation Layers |
@@ -414,11 +434,11 @@ CONFIG_MTD_NAND=y | |||
414 | CONFIG_MTD_NAND_ECC_SMC=y | 434 | CONFIG_MTD_NAND_ECC_SMC=y |
415 | # CONFIG_MTD_NAND_MUSEUM_IDS is not set | 435 | # CONFIG_MTD_NAND_MUSEUM_IDS is not set |
416 | CONFIG_MTD_NAND_IDS=y | 436 | CONFIG_MTD_NAND_IDS=y |
417 | CONFIG_MTD_NAND_NDFC=y | ||
418 | # CONFIG_MTD_NAND_DISKONCHIP is not set | 437 | # CONFIG_MTD_NAND_DISKONCHIP is not set |
419 | # CONFIG_MTD_NAND_NANDSIM is not set | 438 | # CONFIG_MTD_NAND_NANDSIM is not set |
420 | # CONFIG_MTD_NAND_PLATFORM is not set | 439 | # CONFIG_MTD_NAND_PLATFORM is not set |
421 | # CONFIG_MTD_ALAUDA is not set | 440 | # CONFIG_MTD_ALAUDA is not set |
441 | # CONFIG_MTD_NAND_FSL_ELBC is not set | ||
422 | # CONFIG_MTD_ONENAND is not set | 442 | # CONFIG_MTD_ONENAND is not set |
423 | 443 | ||
424 | # | 444 | # |
@@ -436,12 +456,14 @@ CONFIG_BLK_DEV=y | |||
436 | CONFIG_BLK_DEV_RAM=y | 456 | CONFIG_BLK_DEV_RAM=y |
437 | CONFIG_BLK_DEV_RAM_COUNT=16 | 457 | CONFIG_BLK_DEV_RAM_COUNT=16 |
438 | CONFIG_BLK_DEV_RAM_SIZE=4096 | 458 | CONFIG_BLK_DEV_RAM_SIZE=4096 |
439 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 459 | # CONFIG_BLK_DEV_XIP is not set |
440 | # CONFIG_CDROM_PKTCDVD is not set | 460 | # CONFIG_CDROM_PKTCDVD is not set |
441 | # CONFIG_ATA_OVER_ETH is not set | 461 | # CONFIG_ATA_OVER_ETH is not set |
442 | # CONFIG_XILINX_SYSACE is not set | 462 | # CONFIG_XILINX_SYSACE is not set |
443 | CONFIG_MISC_DEVICES=y | 463 | CONFIG_MISC_DEVICES=y |
444 | # CONFIG_EEPROM_93CX6 is not set | 464 | # CONFIG_EEPROM_93CX6 is not set |
465 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
466 | CONFIG_HAVE_IDE=y | ||
445 | # CONFIG_IDE is not set | 467 | # CONFIG_IDE is not set |
446 | 468 | ||
447 | # | 469 | # |
@@ -471,7 +493,7 @@ CONFIG_BLK_DEV_SD=y | |||
471 | # CONFIG_SCSI_CONSTANTS is not set | 493 | # CONFIG_SCSI_CONSTANTS is not set |
472 | # CONFIG_SCSI_LOGGING is not set | 494 | # CONFIG_SCSI_LOGGING is not set |
473 | # CONFIG_SCSI_SCAN_ASYNC is not set | 495 | # CONFIG_SCSI_SCAN_ASYNC is not set |
474 | # CONFIG_SCSI_WAIT_SCAN is not set | 496 | CONFIG_SCSI_WAIT_SCAN=m |
475 | 497 | ||
476 | # | 498 | # |
477 | # SCSI Transports | 499 | # SCSI Transports |
@@ -528,7 +550,6 @@ CONFIG_IBM_NEW_EMAC_ZMII=y | |||
528 | # CONFIG_WAN is not set | 550 | # CONFIG_WAN is not set |
529 | # CONFIG_PPP is not set | 551 | # CONFIG_PPP is not set |
530 | # CONFIG_SLIP is not set | 552 | # CONFIG_SLIP is not set |
531 | # CONFIG_SHAPER is not set | ||
532 | # CONFIG_NETCONSOLE is not set | 553 | # CONFIG_NETCONSOLE is not set |
533 | # CONFIG_NETPOLL is not set | 554 | # CONFIG_NETPOLL is not set |
534 | # CONFIG_NET_POLL_CONTROLLER is not set | 555 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -596,7 +617,6 @@ CONFIG_I2C_BOARDINFO=y | |||
596 | # | 617 | # |
597 | # I2C Hardware Bus support | 618 | # I2C Hardware Bus support |
598 | # | 619 | # |
599 | CONFIG_I2C_IBM_IIC=y | ||
600 | # CONFIG_I2C_MPC is not set | 620 | # CONFIG_I2C_MPC is not set |
601 | # CONFIG_I2C_OCORES is not set | 621 | # CONFIG_I2C_OCORES is not set |
602 | # CONFIG_I2C_PARPORT_LIGHT is not set | 622 | # CONFIG_I2C_PARPORT_LIGHT is not set |
@@ -608,14 +628,12 @@ CONFIG_I2C_IBM_IIC=y | |||
608 | # | 628 | # |
609 | # Miscellaneous I2C Chip support | 629 | # Miscellaneous I2C Chip support |
610 | # | 630 | # |
611 | # CONFIG_SENSORS_DS1337 is not set | ||
612 | # CONFIG_SENSORS_DS1374 is not set | ||
613 | # CONFIG_DS1682 is not set | 631 | # CONFIG_DS1682 is not set |
614 | CONFIG_SENSORS_EEPROM=y | 632 | CONFIG_SENSORS_EEPROM=y |
615 | # CONFIG_SENSORS_PCF8574 is not set | 633 | # CONFIG_SENSORS_PCF8574 is not set |
616 | # CONFIG_SENSORS_PCA9539 is not set | 634 | # CONFIG_PCF8575 is not set |
617 | # CONFIG_SENSORS_PCF8591 is not set | 635 | # CONFIG_SENSORS_PCF8591 is not set |
618 | # CONFIG_SENSORS_M41T00 is not set | 636 | # CONFIG_TPS65010 is not set |
619 | # CONFIG_SENSORS_MAX6875 is not set | 637 | # CONFIG_SENSORS_MAX6875 is not set |
620 | # CONFIG_SENSORS_TSL2550 is not set | 638 | # CONFIG_SENSORS_TSL2550 is not set |
621 | # CONFIG_I2C_DEBUG_CORE is not set | 639 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -632,7 +650,6 @@ CONFIG_SENSORS_EEPROM=y | |||
632 | # CONFIG_POWER_SUPPLY is not set | 650 | # CONFIG_POWER_SUPPLY is not set |
633 | CONFIG_HWMON=y | 651 | CONFIG_HWMON=y |
634 | # CONFIG_HWMON_VID is not set | 652 | # CONFIG_HWMON_VID is not set |
635 | CONFIG_SENSORS_AD7414=y | ||
636 | # CONFIG_SENSORS_AD7418 is not set | 653 | # CONFIG_SENSORS_AD7418 is not set |
637 | # CONFIG_SENSORS_ADM1021 is not set | 654 | # CONFIG_SENSORS_ADM1021 is not set |
638 | # CONFIG_SENSORS_ADM1025 is not set | 655 | # CONFIG_SENSORS_ADM1025 is not set |
@@ -668,6 +685,7 @@ CONFIG_SENSORS_AD7414=y | |||
668 | # CONFIG_SENSORS_SMSC47M1 is not set | 685 | # CONFIG_SENSORS_SMSC47M1 is not set |
669 | # CONFIG_SENSORS_SMSC47M192 is not set | 686 | # CONFIG_SENSORS_SMSC47M192 is not set |
670 | # CONFIG_SENSORS_SMSC47B397 is not set | 687 | # CONFIG_SENSORS_SMSC47B397 is not set |
688 | # CONFIG_SENSORS_ADS7828 is not set | ||
671 | # CONFIG_SENSORS_THMC50 is not set | 689 | # CONFIG_SENSORS_THMC50 is not set |
672 | # CONFIG_SENSORS_VT1211 is not set | 690 | # CONFIG_SENSORS_VT1211 is not set |
673 | # CONFIG_SENSORS_W83781D is not set | 691 | # CONFIG_SENSORS_W83781D is not set |
@@ -675,9 +693,11 @@ CONFIG_SENSORS_AD7414=y | |||
675 | # CONFIG_SENSORS_W83792D is not set | 693 | # CONFIG_SENSORS_W83792D is not set |
676 | # CONFIG_SENSORS_W83793 is not set | 694 | # CONFIG_SENSORS_W83793 is not set |
677 | # CONFIG_SENSORS_W83L785TS is not set | 695 | # CONFIG_SENSORS_W83L785TS is not set |
696 | # CONFIG_SENSORS_W83L786NG is not set | ||
678 | # CONFIG_SENSORS_W83627HF is not set | 697 | # CONFIG_SENSORS_W83627HF is not set |
679 | # CONFIG_SENSORS_W83627EHF is not set | 698 | # CONFIG_SENSORS_W83627EHF is not set |
680 | # CONFIG_HWMON_DEBUG_CHIP is not set | 699 | # CONFIG_HWMON_DEBUG_CHIP is not set |
700 | CONFIG_THERMAL=y | ||
681 | # CONFIG_WATCHDOG is not set | 701 | # CONFIG_WATCHDOG is not set |
682 | 702 | ||
683 | # | 703 | # |
@@ -721,6 +741,7 @@ CONFIG_USB_ARCH_HAS_OHCI=y | |||
721 | # CONFIG_USB_ARCH_HAS_EHCI is not set | 741 | # CONFIG_USB_ARCH_HAS_EHCI is not set |
722 | CONFIG_USB=y | 742 | CONFIG_USB=y |
723 | # CONFIG_USB_DEBUG is not set | 743 | # CONFIG_USB_DEBUG is not set |
744 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
724 | 745 | ||
725 | # | 746 | # |
726 | # Miscellaneous USB options | 747 | # Miscellaneous USB options |
@@ -781,10 +802,6 @@ CONFIG_USB_MON=y | |||
781 | # | 802 | # |
782 | # USB port drivers | 803 | # USB port drivers |
783 | # | 804 | # |
784 | |||
785 | # | ||
786 | # USB Serial Converter support | ||
787 | # | ||
788 | # CONFIG_USB_SERIAL is not set | 805 | # CONFIG_USB_SERIAL is not set |
789 | 806 | ||
790 | # | 807 | # |
@@ -808,14 +825,6 @@ CONFIG_USB_MON=y | |||
808 | # CONFIG_USB_LD is not set | 825 | # CONFIG_USB_LD is not set |
809 | # CONFIG_USB_TRANCEVIBRATOR is not set | 826 | # CONFIG_USB_TRANCEVIBRATOR is not set |
810 | # CONFIG_USB_IOWARRIOR is not set | 827 | # CONFIG_USB_IOWARRIOR is not set |
811 | |||
812 | # | ||
813 | # USB DSL modem support | ||
814 | # | ||
815 | |||
816 | # | ||
817 | # USB Gadget Support | ||
818 | # | ||
819 | # CONFIG_USB_GADGET is not set | 828 | # CONFIG_USB_GADGET is not set |
820 | CONFIG_MMC=m | 829 | CONFIG_MMC=m |
821 | # CONFIG_MMC_DEBUG is not set | 830 | # CONFIG_MMC_DEBUG is not set |
@@ -832,6 +841,7 @@ CONFIG_MMC_BLOCK_BOUNCE=y | |||
832 | # MMC/SD Host Controller Drivers | 841 | # MMC/SD Host Controller Drivers |
833 | # | 842 | # |
834 | # CONFIG_MMC_WBSD is not set | 843 | # CONFIG_MMC_WBSD is not set |
844 | # CONFIG_MEMSTICK is not set | ||
835 | # CONFIG_NEW_LEDS is not set | 845 | # CONFIG_NEW_LEDS is not set |
836 | # CONFIG_EDAC is not set | 846 | # CONFIG_EDAC is not set |
837 | # CONFIG_RTC_CLASS is not set | 847 | # CONFIG_RTC_CLASS is not set |
@@ -855,12 +865,10 @@ CONFIG_EXT2_FS=y | |||
855 | # CONFIG_XFS_FS is not set | 865 | # CONFIG_XFS_FS is not set |
856 | # CONFIG_GFS2_FS is not set | 866 | # CONFIG_GFS2_FS is not set |
857 | # CONFIG_OCFS2_FS is not set | 867 | # CONFIG_OCFS2_FS is not set |
858 | # CONFIG_MINIX_FS is not set | 868 | CONFIG_DNOTIFY=y |
859 | # CONFIG_ROMFS_FS is not set | ||
860 | CONFIG_INOTIFY=y | 869 | CONFIG_INOTIFY=y |
861 | CONFIG_INOTIFY_USER=y | 870 | CONFIG_INOTIFY_USER=y |
862 | # CONFIG_QUOTA is not set | 871 | # CONFIG_QUOTA is not set |
863 | CONFIG_DNOTIFY=y | ||
864 | # CONFIG_AUTOFS_FS is not set | 872 | # CONFIG_AUTOFS_FS is not set |
865 | # CONFIG_AUTOFS4_FS is not set | 873 | # CONFIG_AUTOFS4_FS is not set |
866 | # CONFIG_FUSE_FS is not set | 874 | # CONFIG_FUSE_FS is not set |
@@ -915,8 +923,10 @@ CONFIG_JFFS2_RTIME=y | |||
915 | # CONFIG_JFFS2_RUBIN is not set | 923 | # CONFIG_JFFS2_RUBIN is not set |
916 | CONFIG_CRAMFS=y | 924 | CONFIG_CRAMFS=y |
917 | # CONFIG_VXFS_FS is not set | 925 | # CONFIG_VXFS_FS is not set |
926 | # CONFIG_MINIX_FS is not set | ||
918 | # CONFIG_HPFS_FS is not set | 927 | # CONFIG_HPFS_FS is not set |
919 | # CONFIG_QNX4FS_FS is not set | 928 | # CONFIG_QNX4FS_FS is not set |
929 | # CONFIG_ROMFS_FS is not set | ||
920 | # CONFIG_SYSV_FS is not set | 930 | # CONFIG_SYSV_FS is not set |
921 | # CONFIG_UFS_FS is not set | 931 | # CONFIG_UFS_FS is not set |
922 | CONFIG_NETWORK_FILESYSTEMS=y | 932 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -986,7 +996,6 @@ CONFIG_NLS_ISO8859_15=y | |||
986 | # CONFIG_NLS_KOI8_U is not set | 996 | # CONFIG_NLS_KOI8_U is not set |
987 | CONFIG_NLS_UTF8=y | 997 | CONFIG_NLS_UTF8=y |
988 | # CONFIG_DLM is not set | 998 | # CONFIG_DLM is not set |
989 | # CONFIG_UCC_SLOW is not set | ||
990 | 999 | ||
991 | # | 1000 | # |
992 | # Library routines | 1001 | # Library routines |
@@ -1004,7 +1013,6 @@ CONFIG_PLIST=y | |||
1004 | CONFIG_HAS_IOMEM=y | 1013 | CONFIG_HAS_IOMEM=y |
1005 | CONFIG_HAS_IOPORT=y | 1014 | CONFIG_HAS_IOPORT=y |
1006 | CONFIG_HAS_DMA=y | 1015 | CONFIG_HAS_DMA=y |
1007 | # CONFIG_INSTRUMENTATION is not set | ||
1008 | 1016 | ||
1009 | # | 1017 | # |
1010 | # Kernel hacking | 1018 | # Kernel hacking |
@@ -1014,7 +1022,7 @@ CONFIG_ENABLE_WARN_DEPRECATED=y | |||
1014 | CONFIG_ENABLE_MUST_CHECK=y | 1022 | CONFIG_ENABLE_MUST_CHECK=y |
1015 | CONFIG_MAGIC_SYSRQ=y | 1023 | CONFIG_MAGIC_SYSRQ=y |
1016 | # CONFIG_UNUSED_SYMBOLS is not set | 1024 | # CONFIG_UNUSED_SYMBOLS is not set |
1017 | # CONFIG_DEBUG_FS is not set | 1025 | CONFIG_DEBUG_FS=y |
1018 | # CONFIG_HEADERS_CHECK is not set | 1026 | # CONFIG_HEADERS_CHECK is not set |
1019 | CONFIG_DEBUG_KERNEL=y | 1027 | CONFIG_DEBUG_KERNEL=y |
1020 | # CONFIG_DEBUG_SHIRQ is not set | 1028 | # CONFIG_DEBUG_SHIRQ is not set |
@@ -1035,15 +1043,16 @@ CONFIG_DEBUG_INFO=y | |||
1035 | # CONFIG_DEBUG_VM is not set | 1043 | # CONFIG_DEBUG_VM is not set |
1036 | # CONFIG_DEBUG_LIST is not set | 1044 | # CONFIG_DEBUG_LIST is not set |
1037 | # CONFIG_DEBUG_SG is not set | 1045 | # CONFIG_DEBUG_SG is not set |
1038 | CONFIG_FORCED_INLINING=y | ||
1039 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1046 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1040 | # CONFIG_RCU_TORTURE_TEST is not set | 1047 | # CONFIG_RCU_TORTURE_TEST is not set |
1048 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
1041 | # CONFIG_FAULT_INJECTION is not set | 1049 | # CONFIG_FAULT_INJECTION is not set |
1042 | # CONFIG_SAMPLES is not set | 1050 | # CONFIG_SAMPLES is not set |
1043 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1051 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1044 | # CONFIG_DEBUG_STACK_USAGE is not set | 1052 | # CONFIG_DEBUG_STACK_USAGE is not set |
1045 | # CONFIG_DEBUG_PAGEALLOC is not set | 1053 | # CONFIG_DEBUG_PAGEALLOC is not set |
1046 | # CONFIG_DEBUGGER is not set | 1054 | # CONFIG_DEBUGGER is not set |
1055 | # CONFIG_VIRQ_DEBUG is not set | ||
1047 | CONFIG_BDI_SWITCH=y | 1056 | CONFIG_BDI_SWITCH=y |
1048 | # CONFIG_PPC_EARLY_DEBUG is not set | 1057 | # CONFIG_PPC_EARLY_DEBUG is not set |
1049 | 1058 | ||
@@ -1053,5 +1062,49 @@ CONFIG_BDI_SWITCH=y | |||
1053 | # CONFIG_KEYS is not set | 1062 | # CONFIG_KEYS is not set |
1054 | # CONFIG_SECURITY is not set | 1063 | # CONFIG_SECURITY is not set |
1055 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1064 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
1056 | # CONFIG_CRYPTO is not set | 1065 | CONFIG_CRYPTO=y |
1066 | # CONFIG_CRYPTO_SEQIV is not set | ||
1067 | # CONFIG_CRYPTO_MANAGER is not set | ||
1068 | # CONFIG_CRYPTO_HMAC is not set | ||
1069 | # CONFIG_CRYPTO_XCBC is not set | ||
1070 | # CONFIG_CRYPTO_NULL is not set | ||
1071 | # CONFIG_CRYPTO_MD4 is not set | ||
1072 | # CONFIG_CRYPTO_MD5 is not set | ||
1073 | # CONFIG_CRYPTO_SHA1 is not set | ||
1074 | # CONFIG_CRYPTO_SHA256 is not set | ||
1075 | # CONFIG_CRYPTO_SHA512 is not set | ||
1076 | # CONFIG_CRYPTO_WP512 is not set | ||
1077 | # CONFIG_CRYPTO_TGR192 is not set | ||
1078 | # CONFIG_CRYPTO_GF128MUL is not set | ||
1079 | # CONFIG_CRYPTO_ECB is not set | ||
1080 | # CONFIG_CRYPTO_CBC is not set | ||
1081 | # CONFIG_CRYPTO_PCBC is not set | ||
1082 | # CONFIG_CRYPTO_LRW is not set | ||
1083 | # CONFIG_CRYPTO_XTS is not set | ||
1084 | # CONFIG_CRYPTO_CTR is not set | ||
1085 | # CONFIG_CRYPTO_GCM is not set | ||
1086 | # CONFIG_CRYPTO_CCM is not set | ||
1087 | # CONFIG_CRYPTO_CRYPTD is not set | ||
1088 | # CONFIG_CRYPTO_DES is not set | ||
1089 | # CONFIG_CRYPTO_FCRYPT is not set | ||
1090 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
1091 | # CONFIG_CRYPTO_TWOFISH is not set | ||
1092 | # CONFIG_CRYPTO_SERPENT is not set | ||
1093 | # CONFIG_CRYPTO_AES is not set | ||
1094 | # CONFIG_CRYPTO_CAST5 is not set | ||
1095 | # CONFIG_CRYPTO_CAST6 is not set | ||
1096 | # CONFIG_CRYPTO_TEA is not set | ||
1097 | # CONFIG_CRYPTO_ARC4 is not set | ||
1098 | # CONFIG_CRYPTO_KHAZAD is not set | ||
1099 | # CONFIG_CRYPTO_ANUBIS is not set | ||
1100 | # CONFIG_CRYPTO_SEED is not set | ||
1101 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1102 | # CONFIG_CRYPTO_DEFLATE is not set | ||
1103 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
1104 | # CONFIG_CRYPTO_CRC32C is not set | ||
1105 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
1106 | # CONFIG_CRYPTO_TEST is not set | ||
1107 | # CONFIG_CRYPTO_AUTHENC is not set | ||
1108 | # CONFIG_CRYPTO_LZO is not set | ||
1109 | CONFIG_CRYPTO_HW=y | ||
1057 | # CONFIG_PPC_CLOCK is not set | 1110 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/kernel/kprobes.c b/arch/powerpc/kernel/kprobes.c index 5338e4855712..c176c513566b 100644 --- a/arch/powerpc/kernel/kprobes.c +++ b/arch/powerpc/kernel/kprobes.c | |||
@@ -274,7 +274,7 @@ no_kprobe: | |||
274 | * - When the probed function returns, this probe | 274 | * - When the probed function returns, this probe |
275 | * causes the handlers to fire | 275 | * causes the handlers to fire |
276 | */ | 276 | */ |
277 | void kretprobe_trampoline_holder(void) | 277 | static void __used kretprobe_trampoline_holder(void) |
278 | { | 278 | { |
279 | asm volatile(".global kretprobe_trampoline\n" | 279 | asm volatile(".global kretprobe_trampoline\n" |
280 | "kretprobe_trampoline:\n" | 280 | "kretprobe_trampoline:\n" |
@@ -284,7 +284,8 @@ void kretprobe_trampoline_holder(void) | |||
284 | /* | 284 | /* |
285 | * Called when the probe at kretprobe trampoline is hit | 285 | * Called when the probe at kretprobe trampoline is hit |
286 | */ | 286 | */ |
287 | int __kprobes trampoline_probe_handler(struct kprobe *p, struct pt_regs *regs) | 287 | static int __kprobes trampoline_probe_handler(struct kprobe *p, |
288 | struct pt_regs *regs) | ||
288 | { | 289 | { |
289 | struct kretprobe_instance *ri = NULL; | 290 | struct kretprobe_instance *ri = NULL; |
290 | struct hlist_head *head, empty_rp; | 291 | struct hlist_head *head, empty_rp; |
@@ -517,12 +518,12 @@ int __kprobes setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs) | |||
517 | return 1; | 518 | return 1; |
518 | } | 519 | } |
519 | 520 | ||
520 | void __kprobes jprobe_return(void) | 521 | void __used __kprobes jprobe_return(void) |
521 | { | 522 | { |
522 | asm volatile("trap" ::: "memory"); | 523 | asm volatile("trap" ::: "memory"); |
523 | } | 524 | } |
524 | 525 | ||
525 | void __kprobes jprobe_return_end(void) | 526 | static void __used __kprobes jprobe_return_end(void) |
526 | { | 527 | { |
527 | }; | 528 | }; |
528 | 529 | ||
diff --git a/arch/powerpc/kernel/prom.c b/arch/powerpc/kernel/prom.c index 8b5efbce8d90..eac97f48b9b8 100644 --- a/arch/powerpc/kernel/prom.c +++ b/arch/powerpc/kernel/prom.c | |||
@@ -865,12 +865,12 @@ static int __init early_init_dt_scan_root(unsigned long node, | |||
865 | return 1; | 865 | return 1; |
866 | } | 866 | } |
867 | 867 | ||
868 | static unsigned long __init dt_mem_next_cell(int s, cell_t **cellp) | 868 | static u64 __init dt_mem_next_cell(int s, cell_t **cellp) |
869 | { | 869 | { |
870 | cell_t *p = *cellp; | 870 | cell_t *p = *cellp; |
871 | 871 | ||
872 | *cellp = p + s; | 872 | *cellp = p + s; |
873 | return of_read_ulong(p, s); | 873 | return of_read_number(p, s); |
874 | } | 874 | } |
875 | 875 | ||
876 | #ifdef CONFIG_PPC_PSERIES | 876 | #ifdef CONFIG_PPC_PSERIES |
@@ -883,8 +883,8 @@ static unsigned long __init dt_mem_next_cell(int s, cell_t **cellp) | |||
883 | static int __init early_init_dt_scan_drconf_memory(unsigned long node) | 883 | static int __init early_init_dt_scan_drconf_memory(unsigned long node) |
884 | { | 884 | { |
885 | cell_t *dm, *ls; | 885 | cell_t *dm, *ls; |
886 | unsigned long l, n; | 886 | unsigned long l, n, flags; |
887 | unsigned long base, size, lmb_size, flags; | 887 | u64 base, size, lmb_size; |
888 | 888 | ||
889 | ls = (cell_t *)of_get_flat_dt_prop(node, "ibm,lmb-size", &l); | 889 | ls = (cell_t *)of_get_flat_dt_prop(node, "ibm,lmb-size", &l); |
890 | if (ls == NULL || l < dt_root_size_cells * sizeof(cell_t)) | 890 | if (ls == NULL || l < dt_root_size_cells * sizeof(cell_t)) |
@@ -959,14 +959,15 @@ static int __init early_init_dt_scan_memory(unsigned long node, | |||
959 | uname, l, reg[0], reg[1], reg[2], reg[3]); | 959 | uname, l, reg[0], reg[1], reg[2], reg[3]); |
960 | 960 | ||
961 | while ((endp - reg) >= (dt_root_addr_cells + dt_root_size_cells)) { | 961 | while ((endp - reg) >= (dt_root_addr_cells + dt_root_size_cells)) { |
962 | unsigned long base, size; | 962 | u64 base, size; |
963 | 963 | ||
964 | base = dt_mem_next_cell(dt_root_addr_cells, ®); | 964 | base = dt_mem_next_cell(dt_root_addr_cells, ®); |
965 | size = dt_mem_next_cell(dt_root_size_cells, ®); | 965 | size = dt_mem_next_cell(dt_root_size_cells, ®); |
966 | 966 | ||
967 | if (size == 0) | 967 | if (size == 0) |
968 | continue; | 968 | continue; |
969 | DBG(" - %lx , %lx\n", base, size); | 969 | DBG(" - %llx , %llx\n", (unsigned long long)base, |
970 | (unsigned long long)size); | ||
970 | #ifdef CONFIG_PPC64 | 971 | #ifdef CONFIG_PPC64 |
971 | if (iommu_is_off) { | 972 | if (iommu_is_off) { |
972 | if (base >= 0x80000000ul) | 973 | if (base >= 0x80000000ul) |
diff --git a/arch/powerpc/platforms/44x/Kconfig b/arch/powerpc/platforms/44x/Kconfig index c062c4cbbed5..1bfb2191010a 100644 --- a/arch/powerpc/platforms/44x/Kconfig +++ b/arch/powerpc/platforms/44x/Kconfig | |||
@@ -61,7 +61,7 @@ config WARP | |||
61 | select 440EP | 61 | select 440EP |
62 | help | 62 | help |
63 | This option enables support for the PIKA Warp(tm) Appliance. The Warp | 63 | This option enables support for the PIKA Warp(tm) Appliance. The Warp |
64 | is a small computer replacement with up to 9 ports of FXO/FXS plus VOIP | 64 | is a small computer replacement with up to 9 ports of FXO/FXS plus VOIP |
65 | stations and trunks. | 65 | stations and trunks. |
66 | 66 | ||
67 | See http://www.pikatechnologies.com/ and follow the "PIKA for Computer | 67 | See http://www.pikatechnologies.com/ and follow the "PIKA for Computer |
@@ -110,17 +110,17 @@ config 440GP | |||
110 | 110 | ||
111 | config 440GX | 111 | config 440GX |
112 | bool | 112 | bool |
113 | select IBM_NEW_EMAC_EMAC4 | 113 | select IBM_NEW_EMAC_EMAC4 |
114 | select IBM_NEW_EMAC_RGMII | 114 | select IBM_NEW_EMAC_RGMII |
115 | select IBM_NEW_EMAC_ZMII #test only | 115 | select IBM_NEW_EMAC_ZMII #test only |
116 | select IBM_NEW_EMAC_TAH #test only | 116 | select IBM_NEW_EMAC_TAH #test only |
117 | 117 | ||
118 | config 440SP | 118 | config 440SP |
119 | bool | 119 | bool |
120 | 120 | ||
121 | config 440SPe | 121 | config 440SPe |
122 | select IBM_NEW_EMAC_EMAC4 | ||
123 | bool | 122 | bool |
123 | select IBM_NEW_EMAC_EMAC4 | ||
124 | 124 | ||
125 | # 44x errata/workaround config symbols, selected by the CPU models above | 125 | # 44x errata/workaround config symbols, selected by the CPU models above |
126 | config IBM440EP_ERR42 | 126 | config IBM440EP_ERR42 |
diff --git a/arch/powerpc/platforms/cell/spu_base.c b/arch/powerpc/platforms/cell/spu_base.c index e45cfa84911f..87eb07f94c5f 100644 --- a/arch/powerpc/platforms/cell/spu_base.c +++ b/arch/powerpc/platforms/cell/spu_base.c | |||
@@ -160,13 +160,6 @@ static int __spu_trap_data_seg(struct spu *spu, unsigned long ea) | |||
160 | 160 | ||
161 | pr_debug("%s\n", __FUNCTION__); | 161 | pr_debug("%s\n", __FUNCTION__); |
162 | 162 | ||
163 | if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) { | ||
164 | /* SLBs are pre-loaded for context switch, so | ||
165 | * we should never get here! | ||
166 | */ | ||
167 | printk("%s: invalid access during switch!\n", __func__); | ||
168 | return 1; | ||
169 | } | ||
170 | slb.esid = (ea & ESID_MASK) | SLB_ESID_V; | 163 | slb.esid = (ea & ESID_MASK) | SLB_ESID_V; |
171 | 164 | ||
172 | switch(REGION_ID(ea)) { | 165 | switch(REGION_ID(ea)) { |
@@ -226,11 +219,6 @@ static int __spu_trap_data_map(struct spu *spu, unsigned long ea, u64 dsisr) | |||
226 | return 0; | 219 | return 0; |
227 | } | 220 | } |
228 | 221 | ||
229 | if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) { | ||
230 | printk("%s: invalid access during switch!\n", __func__); | ||
231 | return 1; | ||
232 | } | ||
233 | |||
234 | spu->class_0_pending = 0; | 222 | spu->class_0_pending = 0; |
235 | spu->dar = ea; | 223 | spu->dar = ea; |
236 | spu->dsisr = dsisr; | 224 | spu->dsisr = dsisr; |
diff --git a/arch/powerpc/platforms/cell/spufs/run.c b/arch/powerpc/platforms/cell/spufs/run.c index fca22e18069a..6221968c2a3c 100644 --- a/arch/powerpc/platforms/cell/spufs/run.c +++ b/arch/powerpc/platforms/cell/spufs/run.c | |||
@@ -234,6 +234,7 @@ static int spu_run_fini(struct spu_context *ctx, u32 *npc, | |||
234 | *npc = ctx->ops->npc_read(ctx); | 234 | *npc = ctx->ops->npc_read(ctx); |
235 | 235 | ||
236 | spuctx_switch_state(ctx, SPU_UTIL_IDLE_LOADED); | 236 | spuctx_switch_state(ctx, SPU_UTIL_IDLE_LOADED); |
237 | ctx->policy = SCHED_IDLE; | ||
237 | spu_release(ctx); | 238 | spu_release(ctx); |
238 | 239 | ||
239 | if (signal_pending(current)) | 240 | if (signal_pending(current)) |
diff --git a/arch/powerpc/platforms/cell/spufs/sched.c b/arch/powerpc/platforms/cell/spufs/sched.c index 5915343e2599..3a5972117de7 100644 --- a/arch/powerpc/platforms/cell/spufs/sched.c +++ b/arch/powerpc/platforms/cell/spufs/sched.c | |||
@@ -856,21 +856,18 @@ static noinline void spusched_tick(struct spu_context *ctx) | |||
856 | { | 856 | { |
857 | struct spu_context *new = NULL; | 857 | struct spu_context *new = NULL; |
858 | struct spu *spu = NULL; | 858 | struct spu *spu = NULL; |
859 | u32 status; | ||
860 | 859 | ||
861 | if (spu_acquire(ctx)) | 860 | if (spu_acquire(ctx)) |
862 | BUG(); /* a kernel thread never has signals pending */ | 861 | BUG(); /* a kernel thread never has signals pending */ |
863 | 862 | ||
864 | if (ctx->state != SPU_STATE_RUNNABLE) | 863 | if (ctx->state != SPU_STATE_RUNNABLE) |
865 | goto out; | 864 | goto out; |
866 | if (spu_stopped(ctx, &status)) | ||
867 | goto out; | ||
868 | if (ctx->flags & SPU_CREATE_NOSCHED) | 865 | if (ctx->flags & SPU_CREATE_NOSCHED) |
869 | goto out; | 866 | goto out; |
870 | if (ctx->policy == SCHED_FIFO) | 867 | if (ctx->policy == SCHED_FIFO) |
871 | goto out; | 868 | goto out; |
872 | 869 | ||
873 | if (--ctx->time_slice) | 870 | if (--ctx->time_slice && ctx->policy != SCHED_IDLE) |
874 | goto out; | 871 | goto out; |
875 | 872 | ||
876 | spu = ctx->spu; | 873 | spu = ctx->spu; |
@@ -880,7 +877,8 @@ static noinline void spusched_tick(struct spu_context *ctx) | |||
880 | new = grab_runnable_context(ctx->prio + 1, spu->node); | 877 | new = grab_runnable_context(ctx->prio + 1, spu->node); |
881 | if (new) { | 878 | if (new) { |
882 | spu_unschedule(spu, ctx); | 879 | spu_unschedule(spu, ctx); |
883 | spu_add_to_rq(ctx); | 880 | if (ctx->policy != SCHED_IDLE) |
881 | spu_add_to_rq(ctx); | ||
884 | } else { | 882 | } else { |
885 | spu_context_nospu_trace(spusched_tick__newslice, ctx); | 883 | spu_context_nospu_trace(spusched_tick__newslice, ctx); |
886 | ctx->time_slice++; | 884 | ctx->time_slice++; |
diff --git a/arch/powerpc/platforms/cell/spufs/switch.c b/arch/powerpc/platforms/cell/spufs/switch.c index 6063c88c26d2..6f5886c7b1f9 100644 --- a/arch/powerpc/platforms/cell/spufs/switch.c +++ b/arch/powerpc/platforms/cell/spufs/switch.c | |||
@@ -720,8 +720,9 @@ static inline void set_switch_active(struct spu_state *csa, struct spu *spu) | |||
720 | * Restore, Step 23. | 720 | * Restore, Step 23. |
721 | * Change the software context switch pending flag | 721 | * Change the software context switch pending flag |
722 | * to context switch active. | 722 | * to context switch active. |
723 | * | ||
724 | * This implementation does not uses a switch active flag. | ||
723 | */ | 725 | */ |
724 | set_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags); | ||
725 | clear_bit(SPU_CONTEXT_SWITCH_PENDING, &spu->flags); | 726 | clear_bit(SPU_CONTEXT_SWITCH_PENDING, &spu->flags); |
726 | mb(); | 727 | mb(); |
727 | } | 728 | } |
@@ -1739,9 +1740,8 @@ static inline void reset_switch_active(struct spu_state *csa, struct spu *spu) | |||
1739 | { | 1740 | { |
1740 | /* Restore, Step 74: | 1741 | /* Restore, Step 74: |
1741 | * Reset the "context switch active" flag. | 1742 | * Reset the "context switch active" flag. |
1743 | * Not performed by this implementation. | ||
1742 | */ | 1744 | */ |
1743 | clear_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags); | ||
1744 | mb(); | ||
1745 | } | 1745 | } |
1746 | 1746 | ||
1747 | static inline void reenable_interrupts(struct spu_state *csa, struct spu *spu) | 1747 | static inline void reenable_interrupts(struct spu_state *csa, struct spu *spu) |
diff --git a/arch/powerpc/platforms/pasemi/Makefile b/arch/powerpc/platforms/pasemi/Makefile index 8f52d7515793..ce6d789e0741 100644 --- a/arch/powerpc/platforms/pasemi/Makefile +++ b/arch/powerpc/platforms/pasemi/Makefile | |||
@@ -1,3 +1,3 @@ | |||
1 | obj-y += setup.o pci.o time.o idle.o powersave.o iommu.o dma_lib.o | 1 | obj-y += setup.o pci.o time.o idle.o powersave.o iommu.o dma_lib.o misc.o |
2 | obj-$(CONFIG_PPC_PASEMI_MDIO) += gpio_mdio.o | 2 | obj-$(CONFIG_PPC_PASEMI_MDIO) += gpio_mdio.o |
3 | obj-$(CONFIG_PPC_PASEMI_CPUFREQ) += cpufreq.o | 3 | obj-$(CONFIG_PPC_PASEMI_CPUFREQ) += cpufreq.o |
diff --git a/arch/powerpc/platforms/pasemi/misc.c b/arch/powerpc/platforms/pasemi/misc.c new file mode 100644 index 000000000000..ded7d152d00c --- /dev/null +++ b/arch/powerpc/platforms/pasemi/misc.c | |||
@@ -0,0 +1,97 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007 PA Semi, Inc | ||
3 | * | ||
4 | * Parts based on arch/powerpc/sysdev/fsl_soc.c: | ||
5 | * | ||
6 | * 2006 (c) MontaVista Software, Inc. | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify it | ||
9 | * under the terms of the GNU General Public License as published by the | ||
10 | * Free Software Foundation; either version 2 of the License, or (at your | ||
11 | * option) any later version. | ||
12 | */ | ||
13 | |||
14 | #include <linux/errno.h> | ||
15 | #include <linux/kernel.h> | ||
16 | #include <linux/pci.h> | ||
17 | #include <linux/of.h> | ||
18 | #include <linux/i2c.h> | ||
19 | |||
20 | #ifdef CONFIG_I2C_BOARDINFO | ||
21 | /* The below is from fsl_soc.c. It's copied because since there are no | ||
22 | * official bus bindings at this time it doesn't make sense to share across | ||
23 | * the platforms, even though they happen to be common. | ||
24 | */ | ||
25 | struct i2c_driver_device { | ||
26 | char *of_device; | ||
27 | char *i2c_driver; | ||
28 | char *i2c_type; | ||
29 | }; | ||
30 | |||
31 | static struct i2c_driver_device i2c_devices[] __initdata = { | ||
32 | {"dallas,ds1338", "rtc-ds1307", "ds1338"}, | ||
33 | }; | ||
34 | |||
35 | static int __init find_i2c_driver(struct device_node *node, | ||
36 | struct i2c_board_info *info) | ||
37 | { | ||
38 | int i; | ||
39 | |||
40 | for (i = 0; i < ARRAY_SIZE(i2c_devices); i++) { | ||
41 | if (!of_device_is_compatible(node, i2c_devices[i].of_device)) | ||
42 | continue; | ||
43 | if (strlcpy(info->driver_name, i2c_devices[i].i2c_driver, | ||
44 | KOBJ_NAME_LEN) >= KOBJ_NAME_LEN || | ||
45 | strlcpy(info->type, i2c_devices[i].i2c_type, | ||
46 | I2C_NAME_SIZE) >= I2C_NAME_SIZE) | ||
47 | return -ENOMEM; | ||
48 | return 0; | ||
49 | } | ||
50 | return -ENODEV; | ||
51 | } | ||
52 | |||
53 | static int __init pasemi_register_i2c_devices(void) | ||
54 | { | ||
55 | struct pci_dev *pdev; | ||
56 | struct device_node *adap_node; | ||
57 | struct device_node *node; | ||
58 | |||
59 | pdev = NULL; | ||
60 | while ((pdev = pci_get_device(PCI_VENDOR_ID_PASEMI, 0xa003, pdev))) { | ||
61 | adap_node = pci_device_to_OF_node(pdev); | ||
62 | |||
63 | if (!adap_node) | ||
64 | continue; | ||
65 | |||
66 | node = NULL; | ||
67 | while ((node = of_get_next_child(adap_node, node))) { | ||
68 | struct i2c_board_info info = {}; | ||
69 | const u32 *addr; | ||
70 | int len; | ||
71 | |||
72 | addr = of_get_property(node, "reg", &len); | ||
73 | if (!addr || len < sizeof(int) || | ||
74 | *addr > (1 << 10) - 1) { | ||
75 | printk(KERN_WARNING | ||
76 | "pasemi_register_i2c_devices: " | ||
77 | "invalid i2c device entry\n"); | ||
78 | continue; | ||
79 | } | ||
80 | |||
81 | info.irq = irq_of_parse_and_map(node, 0); | ||
82 | if (info.irq == NO_IRQ) | ||
83 | info.irq = -1; | ||
84 | |||
85 | if (find_i2c_driver(node, &info) < 0) | ||
86 | continue; | ||
87 | |||
88 | info.addr = *addr; | ||
89 | |||
90 | i2c_register_board_info(PCI_FUNC(pdev->devfn), &info, | ||
91 | 1); | ||
92 | } | ||
93 | } | ||
94 | return 0; | ||
95 | } | ||
96 | device_initcall(pasemi_register_i2c_devices); | ||
97 | #endif | ||
diff --git a/arch/powerpc/platforms/pseries/power.c b/arch/powerpc/platforms/pseries/power.c index e95fc1594c84..6d6266236446 100644 --- a/arch/powerpc/platforms/pseries/power.c +++ b/arch/powerpc/platforms/pseries/power.c | |||
@@ -75,7 +75,7 @@ core_initcall(pm_init); | |||
75 | #else | 75 | #else |
76 | static int __init apo_pm_init(void) | 76 | static int __init apo_pm_init(void) |
77 | { | 77 | { |
78 | return (sysfs_create_file(power_kobj, &auto_poweron_attr)); | 78 | return (sysfs_create_file(power_kobj, &auto_poweron_attr.attr)); |
79 | } | 79 | } |
80 | __initcall(apo_pm_init); | 80 | __initcall(apo_pm_init); |
81 | #endif | 81 | #endif |
diff --git a/arch/powerpc/sysdev/mpic_pasemi_msi.c b/arch/powerpc/sysdev/mpic_pasemi_msi.c index d6bfda30ac87..33cbfb22ce3e 100644 --- a/arch/powerpc/sysdev/mpic_pasemi_msi.c +++ b/arch/powerpc/sysdev/mpic_pasemi_msi.c | |||
@@ -95,7 +95,6 @@ static int pasemi_msi_setup_msi_irqs(struct pci_dev *pdev, int nvec, int type) | |||
95 | unsigned int virq; | 95 | unsigned int virq; |
96 | struct msi_desc *entry; | 96 | struct msi_desc *entry; |
97 | struct msi_msg msg; | 97 | struct msi_msg msg; |
98 | u64 addr; | ||
99 | 98 | ||
100 | pr_debug("pasemi_msi_setup_msi_irqs, pdev %p nvec %d type %d\n", | 99 | pr_debug("pasemi_msi_setup_msi_irqs, pdev %p nvec %d type %d\n", |
101 | pdev, nvec, type); | 100 | pdev, nvec, type); |
@@ -132,8 +131,8 @@ static int pasemi_msi_setup_msi_irqs(struct pci_dev *pdev, int nvec, int type) | |||
132 | set_irq_chip(virq, &mpic_pasemi_msi_chip); | 131 | set_irq_chip(virq, &mpic_pasemi_msi_chip); |
133 | set_irq_type(virq, IRQ_TYPE_EDGE_RISING); | 132 | set_irq_type(virq, IRQ_TYPE_EDGE_RISING); |
134 | 133 | ||
135 | pr_debug("pasemi_msi: allocated virq 0x%x (hw 0x%lx) addr 0x%lx\n", | 134 | pr_debug("pasemi_msi: allocated virq 0x%x (hw 0x%lx) addr 0x%x\n", |
136 | virq, hwirq, addr); | 135 | virq, hwirq, msg.address_lo); |
137 | 136 | ||
138 | /* Likewise, the device writes [0...511] into the target | 137 | /* Likewise, the device writes [0...511] into the target |
139 | * register to generate MSI [512...1023] | 138 | * register to generate MSI [512...1023] |
diff --git a/arch/ppc/platforms/4xx/ibm440ep.c b/arch/ppc/platforms/4xx/ibm440ep.c index 1fed6638c81f..0de91532aabb 100644 --- a/arch/ppc/platforms/4xx/ibm440ep.c +++ b/arch/ppc/platforms/4xx/ibm440ep.c | |||
@@ -172,11 +172,11 @@ struct ocp_def core_ocp[] = { | |||
172 | /* Polarity and triggering settings for internal interrupt sources */ | 172 | /* Polarity and triggering settings for internal interrupt sources */ |
173 | struct ppc4xx_uic_settings ppc4xx_core_uic_cfg[] __initdata = { | 173 | struct ppc4xx_uic_settings ppc4xx_core_uic_cfg[] __initdata = { |
174 | { .polarity = 0xffbffe03, | 174 | { .polarity = 0xffbffe03, |
175 | .triggering = 0xfffffe00, | 175 | .triggering = 0x00000000, |
176 | .ext_irq_mask = 0x000001fc, /* IRQ0 - IRQ6 */ | 176 | .ext_irq_mask = 0x000001fc, /* IRQ0 - IRQ6 */ |
177 | }, | 177 | }, |
178 | { .polarity = 0xffffc6ef, | 178 | { .polarity = 0xffffc6af, |
179 | .triggering = 0xffffc7ff, | 179 | .triggering = 0x06000140, |
180 | .ext_irq_mask = 0x00003800, /* IRQ7 - IRQ9 */ | 180 | .ext_irq_mask = 0x00003800, /* IRQ7 - IRQ9 */ |
181 | }, | 181 | }, |
182 | }; | 182 | }; |
diff --git a/arch/s390/Kconfig b/arch/s390/Kconfig index 92a4f7b4323a..b21444b681b6 100644 --- a/arch/s390/Kconfig +++ b/arch/s390/Kconfig | |||
@@ -100,7 +100,8 @@ config NR_CPUS | |||
100 | int "Maximum number of CPUs (2-64)" | 100 | int "Maximum number of CPUs (2-64)" |
101 | range 2 64 | 101 | range 2 64 |
102 | depends on SMP | 102 | depends on SMP |
103 | default "32" | 103 | default "32" if !64BIT |
104 | default "64" if 64BIT | ||
104 | help | 105 | help |
105 | This allows you to specify the maximum number of CPUs which this | 106 | This allows you to specify the maximum number of CPUs which this |
106 | kernel will support. The maximum supported value is 64 and the | 107 | kernel will support. The maximum supported value is 64 and the |
diff --git a/arch/s390/kernel/process.c b/arch/s390/kernel/process.c index a6a4729e0e94..1c59ec161cf8 100644 --- a/arch/s390/kernel/process.c +++ b/arch/s390/kernel/process.c | |||
@@ -114,24 +114,27 @@ extern void s390_handle_mcck(void); | |||
114 | static void default_idle(void) | 114 | static void default_idle(void) |
115 | { | 115 | { |
116 | int cpu, rc; | 116 | int cpu, rc; |
117 | int nr_calls = 0; | ||
118 | void *hcpu; | ||
117 | #ifdef CONFIG_SMP | 119 | #ifdef CONFIG_SMP |
118 | struct s390_idle_data *idle; | 120 | struct s390_idle_data *idle; |
119 | #endif | 121 | #endif |
120 | 122 | ||
121 | /* CPU is going idle. */ | 123 | /* CPU is going idle. */ |
122 | cpu = smp_processor_id(); | 124 | cpu = smp_processor_id(); |
123 | 125 | hcpu = (void *)(long)cpu; | |
124 | local_irq_disable(); | 126 | local_irq_disable(); |
125 | if (need_resched()) { | 127 | if (need_resched()) { |
126 | local_irq_enable(); | 128 | local_irq_enable(); |
127 | return; | 129 | return; |
128 | } | 130 | } |
129 | 131 | ||
130 | rc = atomic_notifier_call_chain(&idle_chain, | 132 | rc = __atomic_notifier_call_chain(&idle_chain, S390_CPU_IDLE, hcpu, -1, |
131 | S390_CPU_IDLE, (void *)(long) cpu); | 133 | &nr_calls); |
132 | if (rc != NOTIFY_OK && rc != NOTIFY_DONE) | 134 | if (rc == NOTIFY_BAD) { |
133 | BUG(); | 135 | nr_calls--; |
134 | if (rc != NOTIFY_OK) { | 136 | __atomic_notifier_call_chain(&idle_chain, S390_CPU_NOT_IDLE, |
137 | hcpu, nr_calls, NULL); | ||
135 | local_irq_enable(); | 138 | local_irq_enable(); |
136 | return; | 139 | return; |
137 | } | 140 | } |
diff --git a/arch/s390/kernel/smp.c b/arch/s390/kernel/smp.c index 85060659fb12..818bd09c0260 100644 --- a/arch/s390/kernel/smp.c +++ b/arch/s390/kernel/smp.c | |||
@@ -626,13 +626,17 @@ static int __cpuinit smp_alloc_lowcore(int cpu) | |||
626 | if (!lowcore) | 626 | if (!lowcore) |
627 | return -ENOMEM; | 627 | return -ENOMEM; |
628 | async_stack = __get_free_pages(GFP_KERNEL, ASYNC_ORDER); | 628 | async_stack = __get_free_pages(GFP_KERNEL, ASYNC_ORDER); |
629 | if (!async_stack) | ||
630 | goto out_async_stack; | ||
631 | panic_stack = __get_free_page(GFP_KERNEL); | 629 | panic_stack = __get_free_page(GFP_KERNEL); |
632 | if (!panic_stack) | 630 | if (!panic_stack || !async_stack) |
633 | goto out_panic_stack; | 631 | goto out; |
634 | 632 | /* | |
635 | *lowcore = S390_lowcore; | 633 | * Only need to copy the first 512 bytes from address 0. But since |
634 | * the compiler emits a warning if src == NULL for memcpy use copy_page | ||
635 | * instead. Copies more than needed but this code is not performance | ||
636 | * critical. | ||
637 | */ | ||
638 | copy_page(lowcore, &S390_lowcore); | ||
639 | memset((void *)lowcore + 512, 0, sizeof(*lowcore) - 512); | ||
636 | lowcore->async_stack = async_stack + ASYNC_SIZE; | 640 | lowcore->async_stack = async_stack + ASYNC_SIZE; |
637 | lowcore->panic_stack = panic_stack + PAGE_SIZE; | 641 | lowcore->panic_stack = panic_stack + PAGE_SIZE; |
638 | 642 | ||
@@ -653,9 +657,8 @@ static int __cpuinit smp_alloc_lowcore(int cpu) | |||
653 | out_save_area: | 657 | out_save_area: |
654 | free_page(panic_stack); | 658 | free_page(panic_stack); |
655 | #endif | 659 | #endif |
656 | out_panic_stack: | 660 | out: |
657 | free_pages(async_stack, ASYNC_ORDER); | 661 | free_pages(async_stack, ASYNC_ORDER); |
658 | out_async_stack: | ||
659 | free_pages((unsigned long) lowcore, lc_order); | 662 | free_pages((unsigned long) lowcore, lc_order); |
660 | return -ENOMEM; | 663 | return -ENOMEM; |
661 | } | 664 | } |
@@ -719,8 +722,8 @@ int __cpuinit __cpu_up(unsigned int cpu) | |||
719 | cpu_lowcore->percpu_offset = __per_cpu_offset[cpu]; | 722 | cpu_lowcore->percpu_offset = __per_cpu_offset[cpu]; |
720 | cpu_lowcore->current_task = (unsigned long) idle; | 723 | cpu_lowcore->current_task = (unsigned long) idle; |
721 | cpu_lowcore->cpu_data.cpu_nr = cpu; | 724 | cpu_lowcore->cpu_data.cpu_nr = cpu; |
722 | cpu_lowcore->softirq_pending = 0; | 725 | cpu_lowcore->kernel_asce = S390_lowcore.kernel_asce; |
723 | cpu_lowcore->ext_call_fast = 0; | 726 | cpu_lowcore->ipl_device = S390_lowcore.ipl_device; |
724 | eieio(); | 727 | eieio(); |
725 | 728 | ||
726 | while (signal_processor(cpu, sigp_restart) == sigp_busy) | 729 | while (signal_processor(cpu, sigp_restart) == sigp_busy) |
@@ -797,23 +800,43 @@ void cpu_die(void) | |||
797 | 800 | ||
798 | void __init smp_prepare_cpus(unsigned int max_cpus) | 801 | void __init smp_prepare_cpus(unsigned int max_cpus) |
799 | { | 802 | { |
803 | #ifndef CONFIG_64BIT | ||
804 | unsigned long save_area = 0; | ||
805 | #endif | ||
806 | unsigned long async_stack, panic_stack; | ||
807 | struct _lowcore *lowcore; | ||
800 | unsigned int cpu; | 808 | unsigned int cpu; |
809 | int lc_order; | ||
801 | 810 | ||
802 | smp_detect_cpus(); | 811 | smp_detect_cpus(); |
803 | 812 | ||
804 | /* request the 0x1201 emergency signal external interrupt */ | 813 | /* request the 0x1201 emergency signal external interrupt */ |
805 | if (register_external_interrupt(0x1201, do_ext_call_interrupt) != 0) | 814 | if (register_external_interrupt(0x1201, do_ext_call_interrupt) != 0) |
806 | panic("Couldn't request external interrupt 0x1201"); | 815 | panic("Couldn't request external interrupt 0x1201"); |
807 | memset(lowcore_ptr, 0, sizeof(lowcore_ptr)); | ||
808 | print_cpu_info(&S390_lowcore.cpu_data); | 816 | print_cpu_info(&S390_lowcore.cpu_data); |
809 | smp_alloc_lowcore(smp_processor_id()); | ||
810 | 817 | ||
818 | /* Reallocate current lowcore, but keep its contents. */ | ||
819 | lc_order = sizeof(long) == 8 ? 1 : 0; | ||
820 | lowcore = (void *) __get_free_pages(GFP_KERNEL | GFP_DMA, lc_order); | ||
821 | panic_stack = __get_free_page(GFP_KERNEL); | ||
822 | async_stack = __get_free_pages(GFP_KERNEL, ASYNC_ORDER); | ||
811 | #ifndef CONFIG_64BIT | 823 | #ifndef CONFIG_64BIT |
812 | if (MACHINE_HAS_IEEE) | 824 | if (MACHINE_HAS_IEEE) |
813 | ctl_set_bit(14, 29); /* enable extended save area */ | 825 | save_area = get_zeroed_page(GFP_KERNEL); |
814 | #endif | 826 | #endif |
815 | set_prefix((u32)(unsigned long) lowcore_ptr[smp_processor_id()]); | 827 | local_irq_disable(); |
816 | 828 | local_mcck_disable(); | |
829 | lowcore_ptr[smp_processor_id()] = lowcore; | ||
830 | *lowcore = S390_lowcore; | ||
831 | lowcore->panic_stack = panic_stack + PAGE_SIZE; | ||
832 | lowcore->async_stack = async_stack + ASYNC_SIZE; | ||
833 | #ifndef CONFIG_64BIT | ||
834 | if (MACHINE_HAS_IEEE) | ||
835 | lowcore->extended_save_area_addr = (u32) save_area; | ||
836 | #endif | ||
837 | set_prefix((u32)(unsigned long) lowcore); | ||
838 | local_mcck_enable(); | ||
839 | local_irq_enable(); | ||
817 | for_each_possible_cpu(cpu) | 840 | for_each_possible_cpu(cpu) |
818 | if (cpu != smp_processor_id()) | 841 | if (cpu != smp_processor_id()) |
819 | smp_create_idle(cpu); | 842 | smp_create_idle(cpu); |
diff --git a/arch/s390/kernel/time.c b/arch/s390/kernel/time.c index 3bbac1293be4..76a5dd1b4ce9 100644 --- a/arch/s390/kernel/time.c +++ b/arch/s390/kernel/time.c | |||
@@ -744,7 +744,6 @@ static void etr_adjust_time(unsigned long long clock, unsigned long long delay) | |||
744 | } | 744 | } |
745 | } | 745 | } |
746 | 746 | ||
747 | #ifdef CONFIG_SMP | ||
748 | static void etr_sync_cpu_start(void *dummy) | 747 | static void etr_sync_cpu_start(void *dummy) |
749 | { | 748 | { |
750 | int *in_sync = dummy; | 749 | int *in_sync = dummy; |
@@ -777,7 +776,6 @@ static void etr_sync_cpu_start(void *dummy) | |||
777 | static void etr_sync_cpu_end(void *dummy) | 776 | static void etr_sync_cpu_end(void *dummy) |
778 | { | 777 | { |
779 | } | 778 | } |
780 | #endif /* CONFIG_SMP */ | ||
781 | 779 | ||
782 | /* | 780 | /* |
783 | * Sync the TOD clock using the port refered to by aibp. This port | 781 | * Sync the TOD clock using the port refered to by aibp. This port |
diff --git a/arch/s390/lib/uaccess_std.c b/arch/s390/lib/uaccess_std.c index 28c4500a58d0..d2ffbadb51a7 100644 --- a/arch/s390/lib/uaccess_std.c +++ b/arch/s390/lib/uaccess_std.c | |||
@@ -293,10 +293,10 @@ int futex_atomic_cmpxchg_std(int __user *uaddr, int oldval, int newval) | |||
293 | 293 | ||
294 | asm volatile( | 294 | asm volatile( |
295 | " sacf 256\n" | 295 | " sacf 256\n" |
296 | " cs %1,%4,0(%5)\n" | 296 | "0: cs %1,%4,0(%5)\n" |
297 | "0: lr %0,%1\n" | 297 | "1: lr %0,%1\n" |
298 | "1: sacf 0\n" | 298 | "2: sacf 0\n" |
299 | EX_TABLE(0b,1b) | 299 | EX_TABLE(0b,2b) EX_TABLE(1b,2b) |
300 | : "=d" (ret), "+d" (oldval), "=m" (*uaddr) | 300 | : "=d" (ret), "+d" (oldval), "=m" (*uaddr) |
301 | : "0" (-EFAULT), "d" (newval), "a" (uaddr), "m" (*uaddr) | 301 | : "0" (-EFAULT), "d" (newval), "a" (uaddr), "m" (*uaddr) |
302 | : "cc", "memory" ); | 302 | : "cc", "memory" ); |
diff --git a/arch/sparc/kernel/process.c b/arch/sparc/kernel/process.c index 19186ce8850d..0bd69d0b5cd7 100644 --- a/arch/sparc/kernel/process.c +++ b/arch/sparc/kernel/process.c | |||
@@ -141,16 +141,12 @@ void cpu_idle(void) | |||
141 | 141 | ||
142 | extern char reboot_command []; | 142 | extern char reboot_command []; |
143 | 143 | ||
144 | extern void (*prom_palette)(int); | ||
145 | |||
146 | /* XXX cli/sti -> local_irq_xxx here, check this works once SMP is fixed. */ | 144 | /* XXX cli/sti -> local_irq_xxx here, check this works once SMP is fixed. */ |
147 | void machine_halt(void) | 145 | void machine_halt(void) |
148 | { | 146 | { |
149 | local_irq_enable(); | 147 | local_irq_enable(); |
150 | mdelay(8); | 148 | mdelay(8); |
151 | local_irq_disable(); | 149 | local_irq_disable(); |
152 | if (prom_palette) | ||
153 | prom_palette (1); | ||
154 | prom_halt(); | 150 | prom_halt(); |
155 | panic("Halt failed!"); | 151 | panic("Halt failed!"); |
156 | } | 152 | } |
@@ -165,8 +161,6 @@ void machine_restart(char * cmd) | |||
165 | 161 | ||
166 | p = strchr (reboot_command, '\n'); | 162 | p = strchr (reboot_command, '\n'); |
167 | if (p) *p = 0; | 163 | if (p) *p = 0; |
168 | if (prom_palette) | ||
169 | prom_palette (1); | ||
170 | if (cmd) | 164 | if (cmd) |
171 | prom_reboot(cmd); | 165 | prom_reboot(cmd); |
172 | if (*reboot_command) | 166 | if (*reboot_command) |
diff --git a/arch/sparc/kernel/setup.c b/arch/sparc/kernel/setup.c index 3cf78f160846..3c13137685da 100644 --- a/arch/sparc/kernel/setup.c +++ b/arch/sparc/kernel/setup.c | |||
@@ -65,7 +65,6 @@ struct screen_info screen_info = { | |||
65 | */ | 65 | */ |
66 | 66 | ||
67 | extern unsigned long trapbase; | 67 | extern unsigned long trapbase; |
68 | void (*prom_palette)(int); | ||
69 | 68 | ||
70 | /* Pretty sick eh? */ | 69 | /* Pretty sick eh? */ |
71 | void prom_sync_me(void) | 70 | void prom_sync_me(void) |
@@ -80,8 +79,6 @@ void prom_sync_me(void) | |||
80 | "nop\n\t" | 79 | "nop\n\t" |
81 | "nop\n\t" : : "r" (&trapbase)); | 80 | "nop\n\t" : : "r" (&trapbase)); |
82 | 81 | ||
83 | if (prom_palette) | ||
84 | prom_palette(1); | ||
85 | prom_printf("PROM SYNC COMMAND...\n"); | 82 | prom_printf("PROM SYNC COMMAND...\n"); |
86 | show_free_areas(); | 83 | show_free_areas(); |
87 | if(current->pid != 0) { | 84 | if(current->pid != 0) { |
@@ -191,7 +188,6 @@ extern int prom_probe_memory(void); | |||
191 | extern void sun4c_probe_vac(void); | 188 | extern void sun4c_probe_vac(void); |
192 | extern char cputypval; | 189 | extern char cputypval; |
193 | extern unsigned long start, end; | 190 | extern unsigned long start, end; |
194 | extern void panic_setup(char *, int *); | ||
195 | 191 | ||
196 | extern unsigned short root_flags; | 192 | extern unsigned short root_flags; |
197 | extern unsigned short root_dev; | 193 | extern unsigned short root_dev; |
diff --git a/arch/sparc/mm/sun4c.c b/arch/sparc/mm/sun4c.c index c0442e8c4b15..2375fe9dc312 100644 --- a/arch/sparc/mm/sun4c.c +++ b/arch/sparc/mm/sun4c.c | |||
@@ -1941,9 +1941,7 @@ static pte_t *sun4c_pte_alloc_one_kernel(struct mm_struct *mm, unsigned long add | |||
1941 | if ((pte = sun4c_pte_alloc_one_fast(mm, address)) != NULL) | 1941 | if ((pte = sun4c_pte_alloc_one_fast(mm, address)) != NULL) |
1942 | return pte; | 1942 | return pte; |
1943 | 1943 | ||
1944 | pte = (pte_t *)__get_free_page(GFP_KERNEL|__GFP_REPEAT); | 1944 | pte = (pte_t *)get_zeroed_page(GFP_KERNEL|__GFP_REPEAT); |
1945 | if (pte) | ||
1946 | memset(pte, 0, PAGE_SIZE); | ||
1947 | return pte; | 1945 | return pte; |
1948 | } | 1946 | } |
1949 | 1947 | ||
diff --git a/arch/sparc/prom/misc.c b/arch/sparc/prom/misc.c index 37cff5f54704..d9fb3af41c1f 100644 --- a/arch/sparc/prom/misc.c +++ b/arch/sparc/prom/misc.c | |||
@@ -45,9 +45,6 @@ prom_feval(char *fstring) | |||
45 | spin_unlock_irqrestore(&prom_lock, flags); | 45 | spin_unlock_irqrestore(&prom_lock, flags); |
46 | } | 46 | } |
47 | 47 | ||
48 | /* We want to do this more nicely some day. */ | ||
49 | extern void (*prom_palette)(int); | ||
50 | |||
51 | /* Drop into the prom, with the chance to continue with the 'go' | 48 | /* Drop into the prom, with the chance to continue with the 'go' |
52 | * prom command. | 49 | * prom command. |
53 | */ | 50 | */ |
@@ -58,8 +55,6 @@ prom_cmdline(void) | |||
58 | extern void install_linux_ticker(void); | 55 | extern void install_linux_ticker(void); |
59 | unsigned long flags; | 56 | unsigned long flags; |
60 | 57 | ||
61 | if (prom_palette) | ||
62 | prom_palette (1); | ||
63 | spin_lock_irqsave(&prom_lock, flags); | 58 | spin_lock_irqsave(&prom_lock, flags); |
64 | install_obp_ticker(); | 59 | install_obp_ticker(); |
65 | (*(romvec->pv_abort))(); | 60 | (*(romvec->pv_abort))(); |
@@ -69,8 +64,6 @@ prom_cmdline(void) | |||
69 | #ifdef CONFIG_SUN_AUXIO | 64 | #ifdef CONFIG_SUN_AUXIO |
70 | set_auxio(AUXIO_LED, 0); | 65 | set_auxio(AUXIO_LED, 0); |
71 | #endif | 66 | #endif |
72 | if (prom_palette) | ||
73 | prom_palette (0); | ||
74 | } | 67 | } |
75 | 68 | ||
76 | /* Drop into the prom, but completely terminate the program. | 69 | /* Drop into the prom, but completely terminate the program. |
diff --git a/arch/sparc64/Kconfig.debug b/arch/sparc64/Kconfig.debug index a5faa3683bd6..6a4d28a4076d 100644 --- a/arch/sparc64/Kconfig.debug +++ b/arch/sparc64/Kconfig.debug | |||
@@ -23,10 +23,6 @@ config STACK_DEBUG | |||
23 | depends on DEBUG_KERNEL | 23 | depends on DEBUG_KERNEL |
24 | bool "Stack Overflow Detection Support" | 24 | bool "Stack Overflow Detection Support" |
25 | 25 | ||
26 | config DEBUG_BOOTMEM | ||
27 | depends on DEBUG_KERNEL | ||
28 | bool "Debug BOOTMEM initialization" | ||
29 | |||
30 | config DEBUG_PAGEALLOC | 26 | config DEBUG_PAGEALLOC |
31 | bool "Debug page memory allocations" | 27 | bool "Debug page memory allocations" |
32 | depends on DEBUG_KERNEL && !HIBERNATION | 28 | depends on DEBUG_KERNEL && !HIBERNATION |
diff --git a/arch/sparc64/Makefile b/arch/sparc64/Makefile index 01159cb5f16d..f0c22f826982 100644 --- a/arch/sparc64/Makefile +++ b/arch/sparc64/Makefile | |||
@@ -12,39 +12,13 @@ CHECKFLAGS += -D__sparc__ -D__sparc_v9__ -m64 | |||
12 | 12 | ||
13 | CPPFLAGS_vmlinux.lds += -Usparc | 13 | CPPFLAGS_vmlinux.lds += -Usparc |
14 | 14 | ||
15 | CC := $(shell if $(CC) -m64 -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo $(CC); else echo sparc64-linux-gcc; fi ) | ||
16 | |||
17 | NEW_GCC := $(call cc-option-yn, -m64 -mcmodel=medlow) | ||
18 | NEW_GAS := $(shell if $(LD) -V 2>&1 | grep 'elf64_sparc' > /dev/null; then echo y; else echo n; fi) | ||
19 | UNDECLARED_REGS := $(shell if $(CC) -c -x assembler /dev/null -Wa,--help | grep undeclared-regs > /dev/null; then echo y; else echo n; fi; ) | ||
20 | |||
21 | ifneq ($(NEW_GAS),y) | ||
22 | AS = sparc64-linux-as | ||
23 | LD = sparc64-linux-ld | ||
24 | NM = sparc64-linux-nm | ||
25 | AR = sparc64-linux-ar | ||
26 | RANLIB = sparc64-linux-ranlib | ||
27 | else | ||
28 | AS := $(AS) -64 | ||
29 | LDFLAGS := -m elf64_sparc | 15 | LDFLAGS := -m elf64_sparc |
30 | endif | ||
31 | 16 | ||
32 | ifneq ($(UNDECLARED_REGS),y) | 17 | KBUILD_CFLAGS += -m64 -pipe -mno-fpu -mcpu=ultrasparc -mcmodel=medlow \ |
33 | CC_UNDECL = | 18 | -ffixed-g4 -ffixed-g5 -fcall-used-g7 -Wno-sign-compare \ |
34 | else | 19 | -Wa,--undeclared-regs |
35 | CC_UNDECL = -Wa,--undeclared-regs | 20 | KBUILD_CFLAGS += $(call cc-option,-mtune=ultrasparc3) |
36 | AS := $(AS) --undeclared-regs | 21 | KBUILD_AFLAGS += -m64 -mcpu=ultrasparc -Wa,--undeclared-regs |
37 | endif | ||
38 | |||
39 | ifneq ($(NEW_GCC),y) | ||
40 | KBUILD_CFLAGS += -pipe -mno-fpu -mtune=ultrasparc -mmedlow \ | ||
41 | -ffixed-g4 -ffixed-g5 -fcall-used-g7 -Wno-sign-compare | ||
42 | else | ||
43 | KBUILD_CFLAGS += -m64 -pipe -mno-fpu -mcpu=ultrasparc -mcmodel=medlow \ | ||
44 | -ffixed-g4 -ffixed-g5 -fcall-used-g7 -Wno-sign-compare \ | ||
45 | $(CC_UNDECL) | ||
46 | KBUILD_AFLAGS += -m64 -mcpu=ultrasparc $(CC_UNDECL) | ||
47 | endif | ||
48 | 22 | ||
49 | ifeq ($(CONFIG_MCOUNT),y) | 23 | ifeq ($(CONFIG_MCOUNT),y) |
50 | KBUILD_CFLAGS += -pg | 24 | KBUILD_CFLAGS += -pg |
diff --git a/arch/sparc64/defconfig b/arch/sparc64/defconfig index 833d74b2b192..250958d1e3cb 100644 --- a/arch/sparc64/defconfig +++ b/arch/sparc64/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.24 | 3 | # Linux kernel version: 2.6.25-rc1 |
4 | # Tue Feb 5 17:28:19 2008 | 4 | # Sun Feb 17 22:44:12 2008 |
5 | # | 5 | # |
6 | CONFIG_SPARC=y | 6 | CONFIG_SPARC=y |
7 | CONFIG_SPARC64=y | 7 | CONFIG_SPARC64=y |
@@ -10,6 +10,7 @@ CONFIG_GENERIC_CMOS_UPDATE=y | |||
10 | CONFIG_GENERIC_CLOCKEVENTS=y | 10 | CONFIG_GENERIC_CLOCKEVENTS=y |
11 | CONFIG_64BIT=y | 11 | CONFIG_64BIT=y |
12 | CONFIG_MMU=y | 12 | CONFIG_MMU=y |
13 | CONFIG_IOMMU_HELPER=y | ||
13 | CONFIG_QUICKLIST=y | 14 | CONFIG_QUICKLIST=y |
14 | CONFIG_STACKTRACE_SUPPORT=y | 15 | CONFIG_STACKTRACE_SUPPORT=y |
15 | CONFIG_LOCKDEP_SUPPORT=y | 16 | CONFIG_LOCKDEP_SUPPORT=y |
@@ -21,6 +22,7 @@ CONFIG_HAVE_SETUP_PER_CPU_AREA=y | |||
21 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 22 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
22 | CONFIG_OF=y | 23 | CONFIG_OF=y |
23 | CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y | 24 | CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y |
25 | CONFIG_ARCH_SUPPORTS_AOUT=y | ||
24 | CONFIG_SPARC64_PAGE_SIZE_8KB=y | 26 | CONFIG_SPARC64_PAGE_SIZE_8KB=y |
25 | # CONFIG_SPARC64_PAGE_SIZE_64KB is not set | 27 | # CONFIG_SPARC64_PAGE_SIZE_64KB is not set |
26 | # CONFIG_SPARC64_PAGE_SIZE_512KB is not set | 28 | # CONFIG_SPARC64_PAGE_SIZE_512KB is not set |
@@ -49,8 +51,6 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
49 | CONFIG_POSIX_MQUEUE=y | 51 | CONFIG_POSIX_MQUEUE=y |
50 | # CONFIG_BSD_PROCESS_ACCT is not set | 52 | # CONFIG_BSD_PROCESS_ACCT is not set |
51 | # CONFIG_TASKSTATS is not set | 53 | # CONFIG_TASKSTATS is not set |
52 | # CONFIG_USER_NS is not set | ||
53 | # CONFIG_PID_NS is not set | ||
54 | # CONFIG_AUDIT is not set | 54 | # CONFIG_AUDIT is not set |
55 | # CONFIG_IKCONFIG is not set | 55 | # CONFIG_IKCONFIG is not set |
56 | CONFIG_LOG_BUF_SHIFT=18 | 56 | CONFIG_LOG_BUF_SHIFT=18 |
@@ -60,6 +60,11 @@ CONFIG_FAIR_USER_SCHED=y | |||
60 | # CONFIG_FAIR_CGROUP_SCHED is not set | 60 | # CONFIG_FAIR_CGROUP_SCHED is not set |
61 | CONFIG_SYSFS_DEPRECATED=y | 61 | CONFIG_SYSFS_DEPRECATED=y |
62 | CONFIG_RELAY=y | 62 | CONFIG_RELAY=y |
63 | CONFIG_NAMESPACES=y | ||
64 | # CONFIG_UTS_NS is not set | ||
65 | # CONFIG_IPC_NS is not set | ||
66 | # CONFIG_USER_NS is not set | ||
67 | # CONFIG_PID_NS is not set | ||
63 | CONFIG_BLK_DEV_INITRD=y | 68 | CONFIG_BLK_DEV_INITRD=y |
64 | CONFIG_INITRAMFS_SOURCE="" | 69 | CONFIG_INITRAMFS_SOURCE="" |
65 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 70 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
@@ -74,6 +79,7 @@ CONFIG_HOTPLUG=y | |||
74 | CONFIG_PRINTK=y | 79 | CONFIG_PRINTK=y |
75 | CONFIG_BUG=y | 80 | CONFIG_BUG=y |
76 | CONFIG_ELF_CORE=y | 81 | CONFIG_ELF_CORE=y |
82 | # CONFIG_COMPAT_BRK is not set | ||
77 | CONFIG_BASE_FULL=y | 83 | CONFIG_BASE_FULL=y |
78 | CONFIG_FUTEX=y | 84 | CONFIG_FUTEX=y |
79 | CONFIG_ANON_INODES=y | 85 | CONFIG_ANON_INODES=y |
@@ -176,13 +182,13 @@ CONFIG_PCI_MSI=y | |||
176 | CONFIG_SUN_OPENPROMFS=m | 182 | CONFIG_SUN_OPENPROMFS=m |
177 | CONFIG_SPARC32_COMPAT=y | 183 | CONFIG_SPARC32_COMPAT=y |
178 | CONFIG_COMPAT=y | 184 | CONFIG_COMPAT=y |
179 | CONFIG_BINFMT_ELF32=y | ||
180 | # CONFIG_BINFMT_AOUT32 is not set | 185 | # CONFIG_BINFMT_AOUT32 is not set |
181 | 186 | ||
182 | # | 187 | # |
183 | # Executable file formats | 188 | # Executable file formats |
184 | # | 189 | # |
185 | CONFIG_BINFMT_ELF=y | 190 | CONFIG_BINFMT_ELF=y |
191 | CONFIG_COMPAT_BINFMT_ELF=y | ||
186 | CONFIG_BINFMT_MISC=m | 192 | CONFIG_BINFMT_MISC=m |
187 | CONFIG_SOLARIS_EMUL=y | 193 | CONFIG_SOLARIS_EMUL=y |
188 | CONFIG_SCHED_SMT=y | 194 | CONFIG_SCHED_SMT=y |
@@ -354,6 +360,8 @@ CONFIG_MISC_DEVICES=y | |||
354 | # CONFIG_EEPROM_93CX6 is not set | 360 | # CONFIG_EEPROM_93CX6 is not set |
355 | # CONFIG_SGI_IOC4 is not set | 361 | # CONFIG_SGI_IOC4 is not set |
356 | # CONFIG_TIFM_CORE is not set | 362 | # CONFIG_TIFM_CORE is not set |
363 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
364 | CONFIG_HAVE_IDE=y | ||
357 | CONFIG_IDE=y | 365 | CONFIG_IDE=y |
358 | CONFIG_BLK_DEV_IDE=y | 366 | CONFIG_BLK_DEV_IDE=y |
359 | 367 | ||
@@ -376,6 +384,7 @@ CONFIG_IDE_PROC_FS=y | |||
376 | # | 384 | # |
377 | CONFIG_IDE_GENERIC=y | 385 | CONFIG_IDE_GENERIC=y |
378 | # CONFIG_BLK_DEV_PLATFORM is not set | 386 | # CONFIG_BLK_DEV_PLATFORM is not set |
387 | CONFIG_BLK_DEV_IDEDMA_SFF=y | ||
379 | 388 | ||
380 | # | 389 | # |
381 | # PCI IDE chipsets support | 390 | # PCI IDE chipsets support |
@@ -775,7 +784,6 @@ CONFIG_I2C_ALGOBIT=y | |||
775 | # CONFIG_SENSORS_EEPROM is not set | 784 | # CONFIG_SENSORS_EEPROM is not set |
776 | # CONFIG_SENSORS_PCF8574 is not set | 785 | # CONFIG_SENSORS_PCF8574 is not set |
777 | # CONFIG_PCF8575 is not set | 786 | # CONFIG_PCF8575 is not set |
778 | # CONFIG_SENSORS_PCA9539 is not set | ||
779 | # CONFIG_SENSORS_PCF8591 is not set | 787 | # CONFIG_SENSORS_PCF8591 is not set |
780 | # CONFIG_TPS65010 is not set | 788 | # CONFIG_TPS65010 is not set |
781 | # CONFIG_SENSORS_MAX6875 is not set | 789 | # CONFIG_SENSORS_MAX6875 is not set |
@@ -831,6 +839,7 @@ CONFIG_HWMON=y | |||
831 | # CONFIG_SENSORS_SMSC47M1 is not set | 839 | # CONFIG_SENSORS_SMSC47M1 is not set |
832 | # CONFIG_SENSORS_SMSC47M192 is not set | 840 | # CONFIG_SENSORS_SMSC47M192 is not set |
833 | # CONFIG_SENSORS_SMSC47B397 is not set | 841 | # CONFIG_SENSORS_SMSC47B397 is not set |
842 | # CONFIG_SENSORS_ADS7828 is not set | ||
834 | # CONFIG_SENSORS_THMC50 is not set | 843 | # CONFIG_SENSORS_THMC50 is not set |
835 | # CONFIG_SENSORS_VIA686A is not set | 844 | # CONFIG_SENSORS_VIA686A is not set |
836 | # CONFIG_SENSORS_VT1211 is not set | 845 | # CONFIG_SENSORS_VT1211 is not set |
@@ -840,9 +849,11 @@ CONFIG_HWMON=y | |||
840 | # CONFIG_SENSORS_W83792D is not set | 849 | # CONFIG_SENSORS_W83792D is not set |
841 | # CONFIG_SENSORS_W83793 is not set | 850 | # CONFIG_SENSORS_W83793 is not set |
842 | # CONFIG_SENSORS_W83L785TS is not set | 851 | # CONFIG_SENSORS_W83L785TS is not set |
852 | # CONFIG_SENSORS_W83L786NG is not set | ||
843 | # CONFIG_SENSORS_W83627HF is not set | 853 | # CONFIG_SENSORS_W83627HF is not set |
844 | # CONFIG_SENSORS_W83627EHF is not set | 854 | # CONFIG_SENSORS_W83627EHF is not set |
845 | # CONFIG_HWMON_DEBUG_CHIP is not set | 855 | # CONFIG_HWMON_DEBUG_CHIP is not set |
856 | # CONFIG_THERMAL is not set | ||
846 | # CONFIG_WATCHDOG is not set | 857 | # CONFIG_WATCHDOG is not set |
847 | 858 | ||
848 | # | 859 | # |
@@ -1201,6 +1212,7 @@ CONFIG_USB_STORAGE=m | |||
1201 | # CONFIG_USB_TEST is not set | 1212 | # CONFIG_USB_TEST is not set |
1202 | # CONFIG_USB_GADGET is not set | 1213 | # CONFIG_USB_GADGET is not set |
1203 | # CONFIG_MMC is not set | 1214 | # CONFIG_MMC is not set |
1215 | # CONFIG_MEMSTICK is not set | ||
1204 | # CONFIG_NEW_LEDS is not set | 1216 | # CONFIG_NEW_LEDS is not set |
1205 | # CONFIG_INFINIBAND is not set | 1217 | # CONFIG_INFINIBAND is not set |
1206 | # CONFIG_RTC_CLASS is not set | 1218 | # CONFIG_RTC_CLASS is not set |
@@ -1242,12 +1254,10 @@ CONFIG_FS_POSIX_ACL=y | |||
1242 | # CONFIG_XFS_FS is not set | 1254 | # CONFIG_XFS_FS is not set |
1243 | # CONFIG_GFS2_FS is not set | 1255 | # CONFIG_GFS2_FS is not set |
1244 | # CONFIG_OCFS2_FS is not set | 1256 | # CONFIG_OCFS2_FS is not set |
1245 | # CONFIG_MINIX_FS is not set | 1257 | CONFIG_DNOTIFY=y |
1246 | # CONFIG_ROMFS_FS is not set | ||
1247 | CONFIG_INOTIFY=y | 1258 | CONFIG_INOTIFY=y |
1248 | CONFIG_INOTIFY_USER=y | 1259 | CONFIG_INOTIFY_USER=y |
1249 | # CONFIG_QUOTA is not set | 1260 | # CONFIG_QUOTA is not set |
1250 | CONFIG_DNOTIFY=y | ||
1251 | # CONFIG_AUTOFS_FS is not set | 1261 | # CONFIG_AUTOFS_FS is not set |
1252 | # CONFIG_AUTOFS4_FS is not set | 1262 | # CONFIG_AUTOFS4_FS is not set |
1253 | # CONFIG_FUSE_FS is not set | 1263 | # CONFIG_FUSE_FS is not set |
@@ -1291,8 +1301,10 @@ CONFIG_HUGETLB_PAGE=y | |||
1291 | # CONFIG_EFS_FS is not set | 1301 | # CONFIG_EFS_FS is not set |
1292 | # CONFIG_CRAMFS is not set | 1302 | # CONFIG_CRAMFS is not set |
1293 | # CONFIG_VXFS_FS is not set | 1303 | # CONFIG_VXFS_FS is not set |
1304 | # CONFIG_MINIX_FS is not set | ||
1294 | # CONFIG_HPFS_FS is not set | 1305 | # CONFIG_HPFS_FS is not set |
1295 | # CONFIG_QNX4FS_FS is not set | 1306 | # CONFIG_QNX4FS_FS is not set |
1307 | # CONFIG_ROMFS_FS is not set | ||
1296 | # CONFIG_SYSV_FS is not set | 1308 | # CONFIG_SYSV_FS is not set |
1297 | # CONFIG_UFS_FS is not set | 1309 | # CONFIG_UFS_FS is not set |
1298 | CONFIG_NETWORK_FILESYSTEMS=y | 1310 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -1370,6 +1382,7 @@ CONFIG_DETECT_SOFTLOCKUP=y | |||
1370 | CONFIG_SCHEDSTATS=y | 1382 | CONFIG_SCHEDSTATS=y |
1371 | # CONFIG_TIMER_STATS is not set | 1383 | # CONFIG_TIMER_STATS is not set |
1372 | # CONFIG_SLUB_DEBUG_ON is not set | 1384 | # CONFIG_SLUB_DEBUG_ON is not set |
1385 | # CONFIG_SLUB_STATS is not set | ||
1373 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1386 | # CONFIG_DEBUG_RT_MUTEXES is not set |
1374 | # CONFIG_RT_MUTEX_TESTER is not set | 1387 | # CONFIG_RT_MUTEX_TESTER is not set |
1375 | # CONFIG_DEBUG_SPINLOCK is not set | 1388 | # CONFIG_DEBUG_SPINLOCK is not set |
@@ -1385,7 +1398,6 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
1385 | # CONFIG_DEBUG_VM is not set | 1398 | # CONFIG_DEBUG_VM is not set |
1386 | # CONFIG_DEBUG_LIST is not set | 1399 | # CONFIG_DEBUG_LIST is not set |
1387 | # CONFIG_DEBUG_SG is not set | 1400 | # CONFIG_DEBUG_SG is not set |
1388 | CONFIG_FORCED_INLINING=y | ||
1389 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1401 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1390 | # CONFIG_RCU_TORTURE_TEST is not set | 1402 | # CONFIG_RCU_TORTURE_TEST is not set |
1391 | # CONFIG_KPROBES_SANITY_TEST is not set | 1403 | # CONFIG_KPROBES_SANITY_TEST is not set |
@@ -1396,7 +1408,6 @@ CONFIG_FORCED_INLINING=y | |||
1396 | # CONFIG_DEBUG_STACK_USAGE is not set | 1408 | # CONFIG_DEBUG_STACK_USAGE is not set |
1397 | # CONFIG_DEBUG_DCFLUSH is not set | 1409 | # CONFIG_DEBUG_DCFLUSH is not set |
1398 | # CONFIG_STACK_DEBUG is not set | 1410 | # CONFIG_STACK_DEBUG is not set |
1399 | # CONFIG_DEBUG_BOOTMEM is not set | ||
1400 | # CONFIG_DEBUG_PAGEALLOC is not set | 1411 | # CONFIG_DEBUG_PAGEALLOC is not set |
1401 | 1412 | ||
1402 | # | 1413 | # |
diff --git a/arch/sparc64/kernel/hvtramp.S b/arch/sparc64/kernel/hvtramp.S index b692e044a463..0236c43772fa 100644 --- a/arch/sparc64/kernel/hvtramp.S +++ b/arch/sparc64/kernel/hvtramp.S | |||
@@ -3,6 +3,8 @@ | |||
3 | * Copyright (C) 2007 David S. Miller <davem@davemloft.net> | 3 | * Copyright (C) 2007 David S. Miller <davem@davemloft.net> |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include <linux/init.h> | ||
7 | |||
6 | #include <asm/thread_info.h> | 8 | #include <asm/thread_info.h> |
7 | #include <asm/hypervisor.h> | 9 | #include <asm/hypervisor.h> |
8 | #include <asm/scratchpad.h> | 10 | #include <asm/scratchpad.h> |
@@ -13,7 +15,7 @@ | |||
13 | #include <asm/head.h> | 15 | #include <asm/head.h> |
14 | #include <asm/asi.h> | 16 | #include <asm/asi.h> |
15 | 17 | ||
16 | .text | 18 | __CPUINIT |
17 | .align 8 | 19 | .align 8 |
18 | .globl hv_cpu_startup, hv_cpu_startup_end | 20 | .globl hv_cpu_startup, hv_cpu_startup_end |
19 | 21 | ||
diff --git a/arch/sparc64/kernel/iommu.c b/arch/sparc64/kernel/iommu.c index d3276ebcfb47..fbaab3497bfd 100644 --- a/arch/sparc64/kernel/iommu.c +++ b/arch/sparc64/kernel/iommu.c | |||
@@ -134,7 +134,8 @@ unsigned long iommu_range_alloc(struct device *dev, | |||
134 | else | 134 | else |
135 | boundary_size = ALIGN(1UL << 32, 1 << IO_PAGE_SHIFT); | 135 | boundary_size = ALIGN(1UL << 32, 1 << IO_PAGE_SHIFT); |
136 | 136 | ||
137 | n = iommu_area_alloc(arena->map, limit, start, npages, 0, | 137 | n = iommu_area_alloc(arena->map, limit, start, npages, |
138 | iommu->page_table_map_base >> IO_PAGE_SHIFT, | ||
138 | boundary_size >> IO_PAGE_SHIFT, 0); | 139 | boundary_size >> IO_PAGE_SHIFT, 0); |
139 | if (n == -1) { | 140 | if (n == -1) { |
140 | if (likely(pass < 1)) { | 141 | if (likely(pass < 1)) { |
@@ -200,12 +201,11 @@ int iommu_table_init(struct iommu *iommu, int tsbsize, | |||
200 | /* Allocate and initialize the dummy page which we | 201 | /* Allocate and initialize the dummy page which we |
201 | * set inactive IO PTEs to point to. | 202 | * set inactive IO PTEs to point to. |
202 | */ | 203 | */ |
203 | iommu->dummy_page = __get_free_pages(GFP_KERNEL, 0); | 204 | iommu->dummy_page = get_zeroed_page(GFP_KERNEL); |
204 | if (!iommu->dummy_page) { | 205 | if (!iommu->dummy_page) { |
205 | printk(KERN_ERR "IOMMU: Error, gfp(dummy_page) failed.\n"); | 206 | printk(KERN_ERR "IOMMU: Error, gfp(dummy_page) failed.\n"); |
206 | goto out_free_map; | 207 | goto out_free_map; |
207 | } | 208 | } |
208 | memset((void *)iommu->dummy_page, 0, PAGE_SIZE); | ||
209 | iommu->dummy_page_pa = (unsigned long) __pa(iommu->dummy_page); | 209 | iommu->dummy_page_pa = (unsigned long) __pa(iommu->dummy_page); |
210 | 210 | ||
211 | /* Now allocate and setup the IOMMU page table itself. */ | 211 | /* Now allocate and setup the IOMMU page table itself. */ |
diff --git a/arch/sparc64/kernel/kprobes.c b/arch/sparc64/kernel/kprobes.c index 34fc3ddd5002..f43b5d755354 100644 --- a/arch/sparc64/kernel/kprobes.c +++ b/arch/sparc64/kernel/kprobes.c | |||
@@ -465,8 +465,6 @@ void __kprobes jprobe_return(void) | |||
465 | 465 | ||
466 | extern void jprobe_return_trap_instruction(void); | 466 | extern void jprobe_return_trap_instruction(void); |
467 | 467 | ||
468 | extern void __show_regs(struct pt_regs * regs); | ||
469 | |||
470 | int __kprobes longjmp_break_handler(struct kprobe *p, struct pt_regs *regs) | 468 | int __kprobes longjmp_break_handler(struct kprobe *p, struct pt_regs *regs) |
471 | { | 469 | { |
472 | u32 *addr = (u32 *) regs->tpc; | 470 | u32 *addr = (u32 *) regs->tpc; |
diff --git a/arch/sparc64/kernel/pci.c b/arch/sparc64/kernel/pci.c index a61c38fe75ea..545356b00e2e 100644 --- a/arch/sparc64/kernel/pci.c +++ b/arch/sparc64/kernel/pci.c | |||
@@ -225,20 +225,6 @@ static int __init pci_controller_init(const char *model_name, int namelen, struc | |||
225 | return 0; | 225 | return 0; |
226 | } | 226 | } |
227 | 227 | ||
228 | static int __init pci_is_controller(const char *model_name, int namelen, struct device_node *dp) | ||
229 | { | ||
230 | int i; | ||
231 | |||
232 | for (i = 0; i < PCI_NUM_CONTROLLER_TYPES; i++) { | ||
233 | if (!strncmp(model_name, | ||
234 | pci_controller_table[i].model_name, | ||
235 | namelen)) { | ||
236 | return 1; | ||
237 | } | ||
238 | } | ||
239 | return 0; | ||
240 | } | ||
241 | |||
242 | static int __init pci_controller_scan(int (*handler)(const char *, int, struct device_node *)) | 228 | static int __init pci_controller_scan(int (*handler)(const char *, int, struct device_node *)) |
243 | { | 229 | { |
244 | struct device_node *dp; | 230 | struct device_node *dp; |
@@ -273,13 +259,6 @@ static int __init pci_controller_scan(int (*handler)(const char *, int, struct d | |||
273 | return count; | 259 | return count; |
274 | } | 260 | } |
275 | 261 | ||
276 | |||
277 | /* Is there some PCI controller in the system? */ | ||
278 | int __init pcic_present(void) | ||
279 | { | ||
280 | return pci_controller_scan(pci_is_controller); | ||
281 | } | ||
282 | |||
283 | /* Find each controller in the system, attach and initialize | 262 | /* Find each controller in the system, attach and initialize |
284 | * software state structure for each and link into the | 263 | * software state structure for each and link into the |
285 | * pci_pbm_root. Setup the controller enough such | 264 | * pci_pbm_root. Setup the controller enough such |
diff --git a/arch/sparc64/kernel/power.c b/arch/sparc64/kernel/power.c index 850cdffdd69c..eae8ca2a6ba5 100644 --- a/arch/sparc64/kernel/power.c +++ b/arch/sparc64/kernel/power.c | |||
@@ -20,6 +20,7 @@ | |||
20 | #include <asm/of_device.h> | 20 | #include <asm/of_device.h> |
21 | #include <asm/io.h> | 21 | #include <asm/io.h> |
22 | #include <asm/sstate.h> | 22 | #include <asm/sstate.h> |
23 | #include <asm/reboot.h> | ||
23 | 24 | ||
24 | #include <linux/unistd.h> | 25 | #include <linux/unistd.h> |
25 | 26 | ||
@@ -39,8 +40,6 @@ static irqreturn_t power_handler(int irq, void *dev_id) | |||
39 | return IRQ_HANDLED; | 40 | return IRQ_HANDLED; |
40 | } | 41 | } |
41 | 42 | ||
42 | extern void machine_halt(void); | ||
43 | extern void machine_alt_power_off(void); | ||
44 | static void (*poweroff_method)(void) = machine_alt_power_off; | 43 | static void (*poweroff_method)(void) = machine_alt_power_off; |
45 | 44 | ||
46 | void machine_power_off(void) | 45 | void machine_power_off(void) |
diff --git a/arch/sparc64/kernel/process.c b/arch/sparc64/kernel/process.c index 1b2379174988..2aafce7dfc0e 100644 --- a/arch/sparc64/kernel/process.c +++ b/arch/sparc64/kernel/process.c | |||
@@ -30,6 +30,7 @@ | |||
30 | #include <linux/tick.h> | 30 | #include <linux/tick.h> |
31 | #include <linux/init.h> | 31 | #include <linux/init.h> |
32 | #include <linux/cpu.h> | 32 | #include <linux/cpu.h> |
33 | #include <linux/elfcore.h> | ||
33 | 34 | ||
34 | #include <asm/oplib.h> | 35 | #include <asm/oplib.h> |
35 | #include <asm/uaccess.h> | 36 | #include <asm/uaccess.h> |
@@ -47,6 +48,8 @@ | |||
47 | #include <asm/unistd.h> | 48 | #include <asm/unistd.h> |
48 | #include <asm/hypervisor.h> | 49 | #include <asm/hypervisor.h> |
49 | #include <asm/sstate.h> | 50 | #include <asm/sstate.h> |
51 | #include <asm/reboot.h> | ||
52 | #include <asm/syscalls.h> | ||
50 | 53 | ||
51 | /* #define VERBOSE_SHOWREGS */ | 54 | /* #define VERBOSE_SHOWREGS */ |
52 | 55 | ||
@@ -113,16 +116,9 @@ void cpu_idle(void) | |||
113 | 116 | ||
114 | extern char reboot_command []; | 117 | extern char reboot_command []; |
115 | 118 | ||
116 | extern void (*prom_palette)(int); | ||
117 | extern void (*prom_keyboard)(void); | ||
118 | |||
119 | void machine_halt(void) | 119 | void machine_halt(void) |
120 | { | 120 | { |
121 | sstate_halt(); | 121 | sstate_halt(); |
122 | if (prom_palette) | ||
123 | prom_palette (1); | ||
124 | if (prom_keyboard) | ||
125 | prom_keyboard(); | ||
126 | prom_halt(); | 122 | prom_halt(); |
127 | panic("Halt failed!"); | 123 | panic("Halt failed!"); |
128 | } | 124 | } |
@@ -130,10 +126,6 @@ void machine_halt(void) | |||
130 | void machine_alt_power_off(void) | 126 | void machine_alt_power_off(void) |
131 | { | 127 | { |
132 | sstate_poweroff(); | 128 | sstate_poweroff(); |
133 | if (prom_palette) | ||
134 | prom_palette(1); | ||
135 | if (prom_keyboard) | ||
136 | prom_keyboard(); | ||
137 | prom_halt_power_off(); | 129 | prom_halt_power_off(); |
138 | panic("Power-off failed!"); | 130 | panic("Power-off failed!"); |
139 | } | 131 | } |
@@ -145,10 +137,6 @@ void machine_restart(char * cmd) | |||
145 | sstate_reboot(); | 137 | sstate_reboot(); |
146 | p = strchr (reboot_command, '\n'); | 138 | p = strchr (reboot_command, '\n'); |
147 | if (p) *p = 0; | 139 | if (p) *p = 0; |
148 | if (prom_palette) | ||
149 | prom_palette (1); | ||
150 | if (prom_keyboard) | ||
151 | prom_keyboard(); | ||
152 | if (cmd) | 140 | if (cmd) |
153 | prom_reboot(cmd); | 141 | prom_reboot(cmd); |
154 | if (*reboot_command) | 142 | if (*reboot_command) |
@@ -226,62 +214,6 @@ static void show_regwindow(struct pt_regs *regs) | |||
226 | print_symbol("I7: <%s>\n", rwk->ins[7]); | 214 | print_symbol("I7: <%s>\n", rwk->ins[7]); |
227 | } | 215 | } |
228 | 216 | ||
229 | void show_stackframe(struct sparc_stackf *sf) | ||
230 | { | ||
231 | unsigned long size; | ||
232 | unsigned long *stk; | ||
233 | int i; | ||
234 | |||
235 | printk("l0: %016lx l1: %016lx l2: %016lx l3: %016lx\n" | ||
236 | "l4: %016lx l5: %016lx l6: %016lx l7: %016lx\n", | ||
237 | sf->locals[0], sf->locals[1], sf->locals[2], sf->locals[3], | ||
238 | sf->locals[4], sf->locals[5], sf->locals[6], sf->locals[7]); | ||
239 | printk("i0: %016lx i1: %016lx i2: %016lx i3: %016lx\n" | ||
240 | "i4: %016lx i5: %016lx fp: %016lx ret_pc: %016lx\n", | ||
241 | sf->ins[0], sf->ins[1], sf->ins[2], sf->ins[3], | ||
242 | sf->ins[4], sf->ins[5], (unsigned long)sf->fp, sf->callers_pc); | ||
243 | printk("sp: %016lx x0: %016lx x1: %016lx x2: %016lx\n" | ||
244 | "x3: %016lx x4: %016lx x5: %016lx xx: %016lx\n", | ||
245 | (unsigned long)sf->structptr, sf->xargs[0], sf->xargs[1], | ||
246 | sf->xargs[2], sf->xargs[3], sf->xargs[4], sf->xargs[5], | ||
247 | sf->xxargs[0]); | ||
248 | size = ((unsigned long)sf->fp) - ((unsigned long)sf); | ||
249 | size -= STACKFRAME_SZ; | ||
250 | stk = (unsigned long *)((unsigned long)sf + STACKFRAME_SZ); | ||
251 | i = 0; | ||
252 | do { | ||
253 | printk("s%d: %016lx\n", i++, *stk++); | ||
254 | } while ((size -= sizeof(unsigned long))); | ||
255 | } | ||
256 | |||
257 | void show_stackframe32(struct sparc_stackf32 *sf) | ||
258 | { | ||
259 | unsigned long size; | ||
260 | unsigned *stk; | ||
261 | int i; | ||
262 | |||
263 | printk("l0: %08x l1: %08x l2: %08x l3: %08x\n", | ||
264 | sf->locals[0], sf->locals[1], sf->locals[2], sf->locals[3]); | ||
265 | printk("l4: %08x l5: %08x l6: %08x l7: %08x\n", | ||
266 | sf->locals[4], sf->locals[5], sf->locals[6], sf->locals[7]); | ||
267 | printk("i0: %08x i1: %08x i2: %08x i3: %08x\n", | ||
268 | sf->ins[0], sf->ins[1], sf->ins[2], sf->ins[3]); | ||
269 | printk("i4: %08x i5: %08x fp: %08x ret_pc: %08x\n", | ||
270 | sf->ins[4], sf->ins[5], sf->fp, sf->callers_pc); | ||
271 | printk("sp: %08x x0: %08x x1: %08x x2: %08x\n" | ||
272 | "x3: %08x x4: %08x x5: %08x xx: %08x\n", | ||
273 | sf->structptr, sf->xargs[0], sf->xargs[1], | ||
274 | sf->xargs[2], sf->xargs[3], sf->xargs[4], sf->xargs[5], | ||
275 | sf->xxargs[0]); | ||
276 | size = ((unsigned long)sf->fp) - ((unsigned long)sf); | ||
277 | size -= STACKFRAME32_SZ; | ||
278 | stk = (unsigned *)((unsigned long)sf + STACKFRAME32_SZ); | ||
279 | i = 0; | ||
280 | do { | ||
281 | printk("s%d: %08x\n", i++, *stk++); | ||
282 | } while ((size -= sizeof(unsigned))); | ||
283 | } | ||
284 | |||
285 | #ifdef CONFIG_SMP | 217 | #ifdef CONFIG_SMP |
286 | static DEFINE_SPINLOCK(regdump_lock); | 218 | static DEFINE_SPINLOCK(regdump_lock); |
287 | #endif | 219 | #endif |
@@ -369,24 +301,6 @@ void show_regs(struct pt_regs *regs) | |||
369 | #endif | 301 | #endif |
370 | } | 302 | } |
371 | 303 | ||
372 | void show_regs32(struct pt_regs32 *regs) | ||
373 | { | ||
374 | printk("PSR: %08x PC: %08x NPC: %08x Y: %08x %s\n", regs->psr, | ||
375 | regs->pc, regs->npc, regs->y, print_tainted()); | ||
376 | printk("g0: %08x g1: %08x g2: %08x g3: %08x ", | ||
377 | regs->u_regs[0], regs->u_regs[1], regs->u_regs[2], | ||
378 | regs->u_regs[3]); | ||
379 | printk("g4: %08x g5: %08x g6: %08x g7: %08x\n", | ||
380 | regs->u_regs[4], regs->u_regs[5], regs->u_regs[6], | ||
381 | regs->u_regs[7]); | ||
382 | printk("o0: %08x o1: %08x o2: %08x o3: %08x ", | ||
383 | regs->u_regs[8], regs->u_regs[9], regs->u_regs[10], | ||
384 | regs->u_regs[11]); | ||
385 | printk("o4: %08x o5: %08x sp: %08x ret_pc: %08x\n", | ||
386 | regs->u_regs[12], regs->u_regs[13], regs->u_regs[14], | ||
387 | regs->u_regs[15]); | ||
388 | } | ||
389 | |||
390 | unsigned long thread_saved_pc(struct task_struct *tsk) | 304 | unsigned long thread_saved_pc(struct task_struct *tsk) |
391 | { | 305 | { |
392 | struct thread_info *ti = task_thread_info(tsk); | 306 | struct thread_info *ti = task_thread_info(tsk); |
diff --git a/arch/sparc64/kernel/prom.c b/arch/sparc64/kernel/prom.c index a246e962e5a7..68964ddcde1e 100644 --- a/arch/sparc64/kernel/prom.c +++ b/arch/sparc64/kernel/prom.c | |||
@@ -1716,7 +1716,6 @@ static void __init of_console_init(void) | |||
1716 | 1716 | ||
1717 | of_console_device = dp; | 1717 | of_console_device = dp; |
1718 | 1718 | ||
1719 | prom_printf(msg, of_console_path); | ||
1720 | printk(msg, of_console_path); | 1719 | printk(msg, of_console_path); |
1721 | } | 1720 | } |
1722 | 1721 | ||
diff --git a/arch/sparc64/kernel/setup.c b/arch/sparc64/kernel/setup.c index 5964d8653ade..d036dbe72864 100644 --- a/arch/sparc64/kernel/setup.c +++ b/arch/sparc64/kernel/setup.c | |||
@@ -68,33 +68,22 @@ struct screen_info screen_info = { | |||
68 | 16 /* orig-video-points */ | 68 | 16 /* orig-video-points */ |
69 | }; | 69 | }; |
70 | 70 | ||
71 | void (*prom_palette)(int); | ||
72 | void (*prom_keyboard)(void); | ||
73 | |||
74 | static void | 71 | static void |
75 | prom_console_write(struct console *con, const char *s, unsigned n) | 72 | prom_console_write(struct console *con, const char *s, unsigned n) |
76 | { | 73 | { |
77 | prom_write(s, n); | 74 | prom_write(s, n); |
78 | } | 75 | } |
79 | 76 | ||
80 | unsigned int boot_flags = 0; | ||
81 | #define BOOTME_DEBUG 0x1 | ||
82 | |||
83 | /* Exported for mm/init.c:paging_init. */ | 77 | /* Exported for mm/init.c:paging_init. */ |
84 | unsigned long cmdline_memory_size = 0; | 78 | unsigned long cmdline_memory_size = 0; |
85 | 79 | ||
86 | static struct console prom_debug_console = { | 80 | static struct console prom_early_console = { |
87 | .name = "debug", | 81 | .name = "earlyprom", |
88 | .write = prom_console_write, | 82 | .write = prom_console_write, |
89 | .flags = CON_PRINTBUFFER, | 83 | .flags = CON_PRINTBUFFER | CON_BOOT, |
90 | .index = -1, | 84 | .index = -1, |
91 | }; | 85 | }; |
92 | 86 | ||
93 | /* XXX Implement this at some point... */ | ||
94 | void kernel_enter_debugger(void) | ||
95 | { | ||
96 | } | ||
97 | |||
98 | /* | 87 | /* |
99 | * Process kernel command line switches that are specific to the | 88 | * Process kernel command line switches that are specific to the |
100 | * SPARC or that require special low-level processing. | 89 | * SPARC or that require special low-level processing. |
@@ -103,8 +92,6 @@ static void __init process_switch(char c) | |||
103 | { | 92 | { |
104 | switch (c) { | 93 | switch (c) { |
105 | case 'd': | 94 | case 'd': |
106 | boot_flags |= BOOTME_DEBUG; | ||
107 | break; | ||
108 | case 's': | 95 | case 's': |
109 | break; | 96 | break; |
110 | case 'h': | 97 | case 'h': |
@@ -112,8 +99,7 @@ static void __init process_switch(char c) | |||
112 | prom_halt(); | 99 | prom_halt(); |
113 | break; | 100 | break; |
114 | case 'p': | 101 | case 'p': |
115 | /* Use PROM debug console. */ | 102 | /* Just ignore, this behavior is now the default. */ |
116 | register_console(&prom_debug_console); | ||
117 | break; | 103 | break; |
118 | case 'P': | 104 | case 'P': |
119 | /* Force UltraSPARC-III P-Cache on. */ | 105 | /* Force UltraSPARC-III P-Cache on. */ |
@@ -168,8 +154,6 @@ static void __init boot_flags_init(char *commands) | |||
168 | } | 154 | } |
169 | } | 155 | } |
170 | 156 | ||
171 | extern void panic_setup(char *, int *); | ||
172 | |||
173 | extern unsigned short root_flags; | 157 | extern unsigned short root_flags; |
174 | extern unsigned short root_dev; | 158 | extern unsigned short root_dev; |
175 | extern unsigned short ram_flags; | 159 | extern unsigned short ram_flags; |
@@ -296,6 +280,9 @@ void __init setup_arch(char **cmdline_p) | |||
296 | *cmdline_p = prom_getbootargs(); | 280 | *cmdline_p = prom_getbootargs(); |
297 | strcpy(boot_command_line, *cmdline_p); | 281 | strcpy(boot_command_line, *cmdline_p); |
298 | 282 | ||
283 | boot_flags_init(*cmdline_p); | ||
284 | register_console(&prom_early_console); | ||
285 | |||
299 | if (tlb_type == hypervisor) | 286 | if (tlb_type == hypervisor) |
300 | printk("ARCH: SUN4V\n"); | 287 | printk("ARCH: SUN4V\n"); |
301 | else | 288 | else |
@@ -307,8 +294,6 @@ void __init setup_arch(char **cmdline_p) | |||
307 | conswitchp = &prom_con; | 294 | conswitchp = &prom_con; |
308 | #endif | 295 | #endif |
309 | 296 | ||
310 | boot_flags_init(*cmdline_p); | ||
311 | |||
312 | idprom_init(); | 297 | idprom_init(); |
313 | 298 | ||
314 | if (!root_flags) | 299 | if (!root_flags) |
diff --git a/arch/sparc64/kernel/smp.c b/arch/sparc64/kernel/smp.c index a8052b76df41..cc454731d879 100644 --- a/arch/sparc64/kernel/smp.c +++ b/arch/sparc64/kernel/smp.c | |||
@@ -86,7 +86,7 @@ extern void setup_sparc64_timer(void); | |||
86 | 86 | ||
87 | static volatile unsigned long callin_flag = 0; | 87 | static volatile unsigned long callin_flag = 0; |
88 | 88 | ||
89 | void __devinit smp_callin(void) | 89 | void __cpuinit smp_callin(void) |
90 | { | 90 | { |
91 | int cpuid = hard_smp_processor_id(); | 91 | int cpuid = hard_smp_processor_id(); |
92 | 92 | ||
diff --git a/arch/sparc64/kernel/sparc64_ksyms.c b/arch/sparc64/kernel/sparc64_ksyms.c index 68db08930399..51fa773f38c9 100644 --- a/arch/sparc64/kernel/sparc64_ksyms.c +++ b/arch/sparc64/kernel/sparc64_ksyms.c | |||
@@ -85,7 +85,6 @@ extern int (*handle_mathemu)(struct pt_regs *, struct fpustate *); | |||
85 | extern long sparc32_open(const char __user * filename, int flags, int mode); | 85 | extern long sparc32_open(const char __user * filename, int flags, int mode); |
86 | extern int io_remap_pfn_range(struct vm_area_struct *vma, unsigned long from, | 86 | extern int io_remap_pfn_range(struct vm_area_struct *vma, unsigned long from, |
87 | unsigned long pfn, unsigned long size, pgprot_t prot); | 87 | unsigned long pfn, unsigned long size, pgprot_t prot); |
88 | extern void (*prom_palette)(int); | ||
89 | 88 | ||
90 | extern int __ashrdi3(int, int); | 89 | extern int __ashrdi3(int, int); |
91 | 90 | ||
@@ -355,5 +354,3 @@ EXPORT_SYMBOL(xor_niagara_2); | |||
355 | EXPORT_SYMBOL(xor_niagara_3); | 354 | EXPORT_SYMBOL(xor_niagara_3); |
356 | EXPORT_SYMBOL(xor_niagara_4); | 355 | EXPORT_SYMBOL(xor_niagara_4); |
357 | EXPORT_SYMBOL(xor_niagara_5); | 356 | EXPORT_SYMBOL(xor_niagara_5); |
358 | |||
359 | EXPORT_SYMBOL(prom_palette); | ||
diff --git a/arch/sparc64/kernel/trampoline.S b/arch/sparc64/kernel/trampoline.S index 04e81dda13d0..4ae2e525d68b 100644 --- a/arch/sparc64/kernel/trampoline.S +++ b/arch/sparc64/kernel/trampoline.S | |||
@@ -4,6 +4,8 @@ | |||
4 | * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu) | 4 | * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu) |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #include <linux/init.h> | ||
8 | |||
7 | #include <asm/head.h> | 9 | #include <asm/head.h> |
8 | #include <asm/asi.h> | 10 | #include <asm/asi.h> |
9 | #include <asm/lsu.h> | 11 | #include <asm/lsu.h> |
@@ -36,7 +38,7 @@ dtlb_load: | |||
36 | tramp_stack: | 38 | tramp_stack: |
37 | .skip TRAMP_STACK_SIZE | 39 | .skip TRAMP_STACK_SIZE |
38 | 40 | ||
39 | .text | 41 | __CPUINIT |
40 | .align 8 | 42 | .align 8 |
41 | .globl sparc64_cpu_startup, sparc64_cpu_startup_end | 43 | .globl sparc64_cpu_startup, sparc64_cpu_startup_end |
42 | sparc64_cpu_startup: | 44 | sparc64_cpu_startup: |
diff --git a/arch/sparc64/kernel/traps.c b/arch/sparc64/kernel/traps.c index 2b6abf633343..007f5317c0de 100644 --- a/arch/sparc64/kernel/traps.c +++ b/arch/sparc64/kernel/traps.c | |||
@@ -1791,8 +1791,6 @@ static const char *sun4v_err_type_to_str(u32 type) | |||
1791 | }; | 1791 | }; |
1792 | } | 1792 | } |
1793 | 1793 | ||
1794 | extern void __show_regs(struct pt_regs * regs); | ||
1795 | |||
1796 | static void sun4v_log_error(struct pt_regs *regs, struct sun4v_error_entry *ent, int cpu, const char *pfx, atomic_t *ocnt) | 1794 | static void sun4v_log_error(struct pt_regs *regs, struct sun4v_error_entry *ent, int cpu, const char *pfx, atomic_t *ocnt) |
1797 | { | 1795 | { |
1798 | int cnt; | 1796 | int cnt; |
diff --git a/arch/sparc64/kernel/unaligned.c b/arch/sparc64/kernel/unaligned.c index dc7bf1b6321c..1a511e9f0d3e 100644 --- a/arch/sparc64/kernel/unaligned.c +++ b/arch/sparc64/kernel/unaligned.c | |||
@@ -7,6 +7,7 @@ | |||
7 | */ | 7 | */ |
8 | 8 | ||
9 | 9 | ||
10 | #include <linux/jiffies.h> | ||
10 | #include <linux/kernel.h> | 11 | #include <linux/kernel.h> |
11 | #include <linux/sched.h> | 12 | #include <linux/sched.h> |
12 | #include <linux/mm.h> | 13 | #include <linux/mm.h> |
@@ -283,7 +284,7 @@ static void log_unaligned(struct pt_regs *regs) | |||
283 | { | 284 | { |
284 | static unsigned long count, last_time; | 285 | static unsigned long count, last_time; |
285 | 286 | ||
286 | if (jiffies - last_time > 5 * HZ) | 287 | if (time_after(jiffies, last_time + 5 * HZ)) |
287 | count = 0; | 288 | count = 0; |
288 | if (count < 5) { | 289 | if (count < 5) { |
289 | last_time = jiffies; | 290 | last_time = jiffies; |
diff --git a/arch/sparc64/mm/init.c b/arch/sparc64/mm/init.c index e726c45645ff..9e6bca266d88 100644 --- a/arch/sparc64/mm/init.c +++ b/arch/sparc64/mm/init.c | |||
@@ -618,9 +618,9 @@ static void __init inherit_prom_mappings(void) | |||
618 | read_obp_translations(); | 618 | read_obp_translations(); |
619 | 619 | ||
620 | /* Now fixup OBP's idea about where we really are mapped. */ | 620 | /* Now fixup OBP's idea about where we really are mapped. */ |
621 | prom_printf("Remapping the kernel... "); | 621 | printk("Remapping the kernel... "); |
622 | remap_kernel(); | 622 | remap_kernel(); |
623 | prom_printf("done.\n"); | 623 | printk("done.\n"); |
624 | } | 624 | } |
625 | 625 | ||
626 | void prom_world(int enter) | 626 | void prom_world(int enter) |
@@ -739,11 +739,6 @@ static unsigned long __init choose_bootmap_pfn(unsigned long start_pfn, | |||
739 | avoid_end = PAGE_ALIGN(initrd_end); | 739 | avoid_end = PAGE_ALIGN(initrd_end); |
740 | #endif | 740 | #endif |
741 | 741 | ||
742 | #ifdef CONFIG_DEBUG_BOOTMEM | ||
743 | prom_printf("choose_bootmap_pfn: kern[%lx:%lx] avoid[%lx:%lx]\n", | ||
744 | kern_base, PAGE_ALIGN(kern_base + kern_size), | ||
745 | avoid_start, avoid_end); | ||
746 | #endif | ||
747 | for (i = 0; i < pavail_ents; i++) { | 742 | for (i = 0; i < pavail_ents; i++) { |
748 | unsigned long start, end; | 743 | unsigned long start, end; |
749 | 744 | ||
@@ -777,10 +772,6 @@ static unsigned long __init choose_bootmap_pfn(unsigned long start_pfn, | |||
777 | } | 772 | } |
778 | 773 | ||
779 | /* OK, it doesn't overlap anything, use it. */ | 774 | /* OK, it doesn't overlap anything, use it. */ |
780 | #ifdef CONFIG_DEBUG_BOOTMEM | ||
781 | prom_printf("choose_bootmap_pfn: Using %lx [%lx]\n", | ||
782 | start >> PAGE_SHIFT, start); | ||
783 | #endif | ||
784 | return start >> PAGE_SHIFT; | 775 | return start >> PAGE_SHIFT; |
785 | } | 776 | } |
786 | } | 777 | } |
@@ -920,10 +911,6 @@ static unsigned long __init bootmem_init(unsigned long *pages_avail, | |||
920 | unsigned long bootmap_pfn, bytes_avail, size; | 911 | unsigned long bootmap_pfn, bytes_avail, size; |
921 | int i; | 912 | int i; |
922 | 913 | ||
923 | #ifdef CONFIG_DEBUG_BOOTMEM | ||
924 | prom_printf("bootmem_init: Scan pavail, "); | ||
925 | #endif | ||
926 | |||
927 | bytes_avail = 0UL; | 914 | bytes_avail = 0UL; |
928 | for (i = 0; i < pavail_ents; i++) { | 915 | for (i = 0; i < pavail_ents; i++) { |
929 | end_of_phys_memory = pavail[i].phys_addr + | 916 | end_of_phys_memory = pavail[i].phys_addr + |
@@ -970,33 +957,20 @@ static unsigned long __init bootmem_init(unsigned long *pages_avail, | |||
970 | 957 | ||
971 | bootmap_pfn = choose_bootmap_pfn(min_low_pfn, end_pfn); | 958 | bootmap_pfn = choose_bootmap_pfn(min_low_pfn, end_pfn); |
972 | 959 | ||
973 | #ifdef CONFIG_DEBUG_BOOTMEM | ||
974 | prom_printf("init_bootmem(min[%lx], bootmap[%lx], max[%lx])\n", | ||
975 | min_low_pfn, bootmap_pfn, max_low_pfn); | ||
976 | #endif | ||
977 | bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap_pfn, | 960 | bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap_pfn, |
978 | min_low_pfn, end_pfn); | 961 | min_low_pfn, end_pfn); |
979 | 962 | ||
980 | /* Now register the available physical memory with the | 963 | /* Now register the available physical memory with the |
981 | * allocator. | 964 | * allocator. |
982 | */ | 965 | */ |
983 | for (i = 0; i < pavail_ents; i++) { | 966 | for (i = 0; i < pavail_ents; i++) |
984 | #ifdef CONFIG_DEBUG_BOOTMEM | ||
985 | prom_printf("free_bootmem(pavail:%d): base[%lx] size[%lx]\n", | ||
986 | i, pavail[i].phys_addr, pavail[i].reg_size); | ||
987 | #endif | ||
988 | free_bootmem(pavail[i].phys_addr, pavail[i].reg_size); | 967 | free_bootmem(pavail[i].phys_addr, pavail[i].reg_size); |
989 | } | ||
990 | 968 | ||
991 | #ifdef CONFIG_BLK_DEV_INITRD | 969 | #ifdef CONFIG_BLK_DEV_INITRD |
992 | if (initrd_start) { | 970 | if (initrd_start) { |
993 | size = initrd_end - initrd_start; | 971 | size = initrd_end - initrd_start; |
994 | 972 | ||
995 | /* Reserve the initrd image area. */ | 973 | /* Reserve the initrd image area. */ |
996 | #ifdef CONFIG_DEBUG_BOOTMEM | ||
997 | prom_printf("reserve_bootmem(initrd): base[%llx] size[%lx]\n", | ||
998 | initrd_start, initrd_end); | ||
999 | #endif | ||
1000 | reserve_bootmem(initrd_start, size, BOOTMEM_DEFAULT); | 974 | reserve_bootmem(initrd_start, size, BOOTMEM_DEFAULT); |
1001 | 975 | ||
1002 | initrd_start += PAGE_OFFSET; | 976 | initrd_start += PAGE_OFFSET; |
@@ -1004,9 +978,6 @@ static unsigned long __init bootmem_init(unsigned long *pages_avail, | |||
1004 | } | 978 | } |
1005 | #endif | 979 | #endif |
1006 | /* Reserve the kernel text/data/bss. */ | 980 | /* Reserve the kernel text/data/bss. */ |
1007 | #ifdef CONFIG_DEBUG_BOOTMEM | ||
1008 | prom_printf("reserve_bootmem(kernel): base[%lx] size[%lx]\n", kern_base, kern_size); | ||
1009 | #endif | ||
1010 | reserve_bootmem(kern_base, kern_size, BOOTMEM_DEFAULT); | 981 | reserve_bootmem(kern_base, kern_size, BOOTMEM_DEFAULT); |
1011 | *pages_avail -= PAGE_ALIGN(kern_size) >> PAGE_SHIFT; | 982 | *pages_avail -= PAGE_ALIGN(kern_size) >> PAGE_SHIFT; |
1012 | 983 | ||
@@ -1020,10 +991,6 @@ static unsigned long __init bootmem_init(unsigned long *pages_avail, | |||
1020 | * in free_all_bootmem. | 991 | * in free_all_bootmem. |
1021 | */ | 992 | */ |
1022 | size = bootmap_size; | 993 | size = bootmap_size; |
1023 | #ifdef CONFIG_DEBUG_BOOTMEM | ||
1024 | prom_printf("reserve_bootmem(bootmap): base[%lx] size[%lx]\n", | ||
1025 | (bootmap_pfn << PAGE_SHIFT), size); | ||
1026 | #endif | ||
1027 | reserve_bootmem((bootmap_pfn << PAGE_SHIFT), size, BOOTMEM_DEFAULT); | 994 | reserve_bootmem((bootmap_pfn << PAGE_SHIFT), size, BOOTMEM_DEFAULT); |
1028 | 995 | ||
1029 | for (i = 0; i < pavail_ents; i++) { | 996 | for (i = 0; i < pavail_ents; i++) { |
@@ -1031,10 +998,6 @@ static unsigned long __init bootmem_init(unsigned long *pages_avail, | |||
1031 | 998 | ||
1032 | start_pfn = pavail[i].phys_addr >> PAGE_SHIFT; | 999 | start_pfn = pavail[i].phys_addr >> PAGE_SHIFT; |
1033 | end_pfn = (start_pfn + (pavail[i].reg_size >> PAGE_SHIFT)); | 1000 | end_pfn = (start_pfn + (pavail[i].reg_size >> PAGE_SHIFT)); |
1034 | #ifdef CONFIG_DEBUG_BOOTMEM | ||
1035 | prom_printf("memory_present(0, %lx, %lx)\n", | ||
1036 | start_pfn, end_pfn); | ||
1037 | #endif | ||
1038 | memory_present(0, start_pfn, end_pfn); | 1001 | memory_present(0, start_pfn, end_pfn); |
1039 | } | 1002 | } |
1040 | 1003 | ||
@@ -1451,7 +1414,7 @@ void __init paging_init(void) | |||
1451 | zholes_size); | 1414 | zholes_size); |
1452 | } | 1415 | } |
1453 | 1416 | ||
1454 | prom_printf("Booting Linux...\n"); | 1417 | printk("Booting Linux...\n"); |
1455 | 1418 | ||
1456 | central_probe(); | 1419 | central_probe(); |
1457 | cpu_probe(); | 1420 | cpu_probe(); |
@@ -1549,10 +1512,6 @@ void __init mem_init(void) | |||
1549 | 1512 | ||
1550 | high_memory = __va(last_valid_pfn << PAGE_SHIFT); | 1513 | high_memory = __va(last_valid_pfn << PAGE_SHIFT); |
1551 | 1514 | ||
1552 | #ifdef CONFIG_DEBUG_BOOTMEM | ||
1553 | prom_printf("mem_init: Calling free_all_bootmem().\n"); | ||
1554 | #endif | ||
1555 | |||
1556 | /* We subtract one to account for the mem_map_zero page | 1515 | /* We subtract one to account for the mem_map_zero page |
1557 | * allocated below. | 1516 | * allocated below. |
1558 | */ | 1517 | */ |
diff --git a/arch/sparc64/prom/misc.c b/arch/sparc64/prom/misc.c index bbec7522826c..47a877a15abd 100644 --- a/arch/sparc64/prom/misc.c +++ b/arch/sparc64/prom/misc.c | |||
@@ -55,9 +55,6 @@ void prom_feval(const char *fstring) | |||
55 | P1275_INOUT(1, 1), fstring); | 55 | P1275_INOUT(1, 1), fstring); |
56 | } | 56 | } |
57 | 57 | ||
58 | /* We want to do this more nicely some day. */ | ||
59 | extern void (*prom_palette)(int); | ||
60 | |||
61 | #ifdef CONFIG_SMP | 58 | #ifdef CONFIG_SMP |
62 | extern void smp_capture(void); | 59 | extern void smp_capture(void); |
63 | extern void smp_release(void); | 60 | extern void smp_release(void); |
@@ -72,9 +69,6 @@ void prom_cmdline(void) | |||
72 | 69 | ||
73 | local_irq_save(flags); | 70 | local_irq_save(flags); |
74 | 71 | ||
75 | if (prom_palette) | ||
76 | prom_palette(1); | ||
77 | |||
78 | #ifdef CONFIG_SMP | 72 | #ifdef CONFIG_SMP |
79 | smp_capture(); | 73 | smp_capture(); |
80 | #endif | 74 | #endif |
@@ -85,9 +79,6 @@ void prom_cmdline(void) | |||
85 | smp_release(); | 79 | smp_release(); |
86 | #endif | 80 | #endif |
87 | 81 | ||
88 | if (prom_palette) | ||
89 | prom_palette(0); | ||
90 | |||
91 | local_irq_restore(flags); | 82 | local_irq_restore(flags); |
92 | } | 83 | } |
93 | 84 | ||
diff --git a/arch/um/defconfig b/arch/um/defconfig index 59215bc264ef..6bd456f96f90 100644 --- a/arch/um/defconfig +++ b/arch/um/defconfig | |||
@@ -1,13 +1,22 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.17-rc3 | 3 | # Linux kernel version: 2.6.24 |
4 | # Fri Apr 28 09:31:20 2006 | 4 | # Thu Feb 7 11:48:55 2008 |
5 | # | 5 | # |
6 | CONFIG_DEFCONFIG_LIST="arch/$ARCH/defconfig" | ||
6 | CONFIG_GENERIC_HARDIRQS=y | 7 | CONFIG_GENERIC_HARDIRQS=y |
7 | CONFIG_UML=y | 8 | CONFIG_UML=y |
8 | CONFIG_MMU=y | 9 | CONFIG_MMU=y |
10 | CONFIG_NO_IOMEM=y | ||
11 | # CONFIG_TRACE_IRQFLAGS_SUPPORT is not set | ||
12 | CONFIG_LOCKDEP_SUPPORT=y | ||
13 | # CONFIG_STACKTRACE_SUPPORT is not set | ||
9 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 14 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
15 | CONFIG_GENERIC_BUG=y | ||
16 | CONFIG_GENERIC_TIME=y | ||
17 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
10 | CONFIG_IRQ_RELEASE_METHOD=y | 18 | CONFIG_IRQ_RELEASE_METHOD=y |
19 | CONFIG_HZ=100 | ||
11 | 20 | ||
12 | # | 21 | # |
13 | # UML-specific options | 22 | # UML-specific options |
@@ -40,11 +49,13 @@ CONFIG_M686=y | |||
40 | # CONFIG_MCYRIXIII is not set | 49 | # CONFIG_MCYRIXIII is not set |
41 | # CONFIG_MVIAC3_2 is not set | 50 | # CONFIG_MVIAC3_2 is not set |
42 | # CONFIG_MVIAC7 is not set | 51 | # CONFIG_MVIAC7 is not set |
52 | # CONFIG_MPSC is not set | ||
53 | # CONFIG_MCORE2 is not set | ||
54 | # CONFIG_GENERIC_CPU is not set | ||
43 | # CONFIG_X86_GENERIC is not set | 55 | # CONFIG_X86_GENERIC is not set |
44 | CONFIG_X86_CMPXCHG=y | 56 | CONFIG_X86_CMPXCHG=y |
45 | CONFIG_X86_XADD=y | ||
46 | CONFIG_X86_L1_CACHE_SHIFT=5 | 57 | CONFIG_X86_L1_CACHE_SHIFT=5 |
47 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 58 | CONFIG_X86_XADD=y |
48 | CONFIG_X86_PPRO_FENCE=y | 59 | CONFIG_X86_PPRO_FENCE=y |
49 | CONFIG_X86_WP_WORKS_OK=y | 60 | CONFIG_X86_WP_WORKS_OK=y |
50 | CONFIG_X86_INVLPG=y | 61 | CONFIG_X86_INVLPG=y |
@@ -53,7 +64,12 @@ CONFIG_X86_POPAD_OK=y | |||
53 | CONFIG_X86_GOOD_APIC=y | 64 | CONFIG_X86_GOOD_APIC=y |
54 | CONFIG_X86_USE_PPRO_CHECKSUM=y | 65 | CONFIG_X86_USE_PPRO_CHECKSUM=y |
55 | CONFIG_X86_TSC=y | 66 | CONFIG_X86_TSC=y |
67 | CONFIG_X86_CMOV=y | ||
68 | CONFIG_X86_MINIMUM_CPU_FAMILY=4 | ||
69 | CONFIG_X86_DEBUGCTLMSR=y | ||
56 | CONFIG_UML_X86=y | 70 | CONFIG_UML_X86=y |
71 | CONFIG_X86_32=y | ||
72 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | ||
57 | # CONFIG_64BIT is not set | 73 | # CONFIG_64BIT is not set |
58 | CONFIG_SEMAPHORE_SLEEPERS=y | 74 | CONFIG_SEMAPHORE_SLEEPERS=y |
59 | # CONFIG_3_LEVEL_PGTABLES is not set | 75 | # CONFIG_3_LEVEL_PGTABLES is not set |
@@ -67,13 +83,18 @@ CONFIG_FLATMEM_MANUAL=y | |||
67 | CONFIG_FLATMEM=y | 83 | CONFIG_FLATMEM=y |
68 | CONFIG_FLAT_NODE_MEM_MAP=y | 84 | CONFIG_FLAT_NODE_MEM_MAP=y |
69 | # CONFIG_SPARSEMEM_STATIC is not set | 85 | # CONFIG_SPARSEMEM_STATIC is not set |
86 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
70 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 87 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
88 | # CONFIG_RESOURCES_64BIT is not set | ||
89 | CONFIG_ZONE_DMA_FLAG=0 | ||
90 | CONFIG_VIRT_TO_BUS=y | ||
71 | CONFIG_TICK_ONESHOT=y | 91 | CONFIG_TICK_ONESHOT=y |
72 | CONFIG_NO_HZ=y | 92 | CONFIG_NO_HZ=y |
73 | CONFIG_HIGH_RES_TIMERS=y | 93 | CONFIG_HIGH_RES_TIMERS=y |
94 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
74 | CONFIG_LD_SCRIPT_DYN=y | 95 | CONFIG_LD_SCRIPT_DYN=y |
75 | CONFIG_NET=y | ||
76 | CONFIG_BINFMT_ELF=y | 96 | CONFIG_BINFMT_ELF=y |
97 | # CONFIG_BINFMT_AOUT is not set | ||
77 | CONFIG_BINFMT_MISC=m | 98 | CONFIG_BINFMT_MISC=m |
78 | CONFIG_HOSTFS=y | 99 | CONFIG_HOSTFS=y |
79 | # CONFIG_HPPFS is not set | 100 | # CONFIG_HPPFS is not set |
@@ -83,31 +104,38 @@ CONFIG_MAGIC_SYSRQ=y | |||
83 | CONFIG_KERNEL_STACK_ORDER=0 | 104 | CONFIG_KERNEL_STACK_ORDER=0 |
84 | 105 | ||
85 | # | 106 | # |
86 | # Code maturity level options | 107 | # General setup |
87 | # | 108 | # |
88 | CONFIG_EXPERIMENTAL=y | 109 | CONFIG_EXPERIMENTAL=y |
89 | CONFIG_BROKEN_ON_SMP=y | 110 | CONFIG_BROKEN_ON_SMP=y |
90 | CONFIG_INIT_ENV_ARG_LIMIT=32 | 111 | CONFIG_INIT_ENV_ARG_LIMIT=128 |
91 | |||
92 | # | ||
93 | # General setup | ||
94 | # | ||
95 | CONFIG_LOCALVERSION="" | 112 | CONFIG_LOCALVERSION="" |
96 | CONFIG_LOCALVERSION_AUTO=y | 113 | CONFIG_LOCALVERSION_AUTO=y |
97 | CONFIG_SWAP=y | 114 | CONFIG_SWAP=y |
98 | CONFIG_SYSVIPC=y | 115 | CONFIG_SYSVIPC=y |
116 | CONFIG_SYSVIPC_SYSCTL=y | ||
99 | CONFIG_POSIX_MQUEUE=y | 117 | CONFIG_POSIX_MQUEUE=y |
100 | CONFIG_BSD_PROCESS_ACCT=y | 118 | CONFIG_BSD_PROCESS_ACCT=y |
101 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 119 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
102 | CONFIG_SYSCTL=y | 120 | # CONFIG_TASKSTATS is not set |
121 | # CONFIG_USER_NS is not set | ||
122 | # CONFIG_PID_NS is not set | ||
103 | # CONFIG_AUDIT is not set | 123 | # CONFIG_AUDIT is not set |
104 | CONFIG_IKCONFIG=y | 124 | CONFIG_IKCONFIG=y |
105 | CONFIG_IKCONFIG_PROC=y | 125 | CONFIG_IKCONFIG_PROC=y |
126 | CONFIG_LOG_BUF_SHIFT=14 | ||
127 | # CONFIG_CGROUPS is not set | ||
128 | CONFIG_FAIR_GROUP_SCHED=y | ||
129 | CONFIG_FAIR_USER_SCHED=y | ||
130 | # CONFIG_FAIR_CGROUP_SCHED is not set | ||
131 | CONFIG_SYSFS_DEPRECATED=y | ||
106 | # CONFIG_RELAY is not set | 132 | # CONFIG_RELAY is not set |
107 | CONFIG_INITRAMFS_SOURCE="" | 133 | # CONFIG_BLK_DEV_INITRD is not set |
108 | CONFIG_UID16=y | ||
109 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 134 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
135 | CONFIG_SYSCTL=y | ||
110 | # CONFIG_EMBEDDED is not set | 136 | # CONFIG_EMBEDDED is not set |
137 | CONFIG_UID16=y | ||
138 | CONFIG_SYSCTL_SYSCALL=y | ||
111 | CONFIG_KALLSYMS=y | 139 | CONFIG_KALLSYMS=y |
112 | # CONFIG_KALLSYMS_ALL is not set | 140 | # CONFIG_KALLSYMS_ALL is not set |
113 | CONFIG_KALLSYMS_EXTRA_PASS=y | 141 | CONFIG_KALLSYMS_EXTRA_PASS=y |
@@ -117,29 +145,36 @@ CONFIG_BUG=y | |||
117 | CONFIG_ELF_CORE=y | 145 | CONFIG_ELF_CORE=y |
118 | CONFIG_BASE_FULL=y | 146 | CONFIG_BASE_FULL=y |
119 | CONFIG_FUTEX=y | 147 | CONFIG_FUTEX=y |
148 | CONFIG_ANON_INODES=y | ||
120 | CONFIG_EPOLL=y | 149 | CONFIG_EPOLL=y |
150 | CONFIG_SIGNALFD=y | ||
151 | CONFIG_TIMERFD=y | ||
152 | CONFIG_EVENTFD=y | ||
121 | CONFIG_SHMEM=y | 153 | CONFIG_SHMEM=y |
154 | CONFIG_VM_EVENT_COUNTERS=y | ||
122 | CONFIG_SLAB=y | 155 | CONFIG_SLAB=y |
156 | # CONFIG_SLUB is not set | ||
157 | # CONFIG_SLOB is not set | ||
158 | # CONFIG_PROFILING is not set | ||
159 | # CONFIG_MARKERS is not set | ||
160 | # CONFIG_HAVE_OPROFILE is not set | ||
161 | # CONFIG_HAVE_KPROBES is not set | ||
162 | CONFIG_PROC_PAGE_MONITOR=y | ||
163 | CONFIG_SLABINFO=y | ||
164 | CONFIG_RT_MUTEXES=y | ||
123 | # CONFIG_TINY_SHMEM is not set | 165 | # CONFIG_TINY_SHMEM is not set |
124 | CONFIG_BASE_SMALL=0 | 166 | CONFIG_BASE_SMALL=0 |
125 | # CONFIG_SLOB is not set | ||
126 | |||
127 | # | ||
128 | # Loadable module support | ||
129 | # | ||
130 | CONFIG_MODULES=y | 167 | CONFIG_MODULES=y |
131 | CONFIG_MODULE_UNLOAD=y | 168 | CONFIG_MODULE_UNLOAD=y |
132 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 169 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
133 | # CONFIG_MODVERSIONS is not set | 170 | # CONFIG_MODVERSIONS is not set |
134 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 171 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
135 | CONFIG_KMOD=y | 172 | CONFIG_KMOD=y |
136 | 173 | CONFIG_BLOCK=y | |
137 | # | ||
138 | # Block layer | ||
139 | # | ||
140 | # CONFIG_LBD is not set | 174 | # CONFIG_LBD is not set |
141 | # CONFIG_BLK_DEV_IO_TRACE is not set | 175 | # CONFIG_BLK_DEV_IO_TRACE is not set |
142 | # CONFIG_LSF is not set | 176 | # CONFIG_LSF is not set |
177 | # CONFIG_BLK_DEV_BSG is not set | ||
143 | 178 | ||
144 | # | 179 | # |
145 | # IO Schedulers | 180 | # IO Schedulers |
@@ -153,19 +188,16 @@ CONFIG_DEFAULT_AS=y | |||
153 | # CONFIG_DEFAULT_CFQ is not set | 188 | # CONFIG_DEFAULT_CFQ is not set |
154 | # CONFIG_DEFAULT_NOOP is not set | 189 | # CONFIG_DEFAULT_NOOP is not set |
155 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 190 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
156 | 191 | CONFIG_CLASSIC_RCU=y | |
157 | # | 192 | # CONFIG_PREEMPT_RCU is not set |
158 | # Block devices | 193 | CONFIG_BLK_DEV=y |
159 | # | ||
160 | CONFIG_BLK_DEV_UBD=y | 194 | CONFIG_BLK_DEV_UBD=y |
161 | # CONFIG_BLK_DEV_UBD_SYNC is not set | 195 | # CONFIG_BLK_DEV_UBD_SYNC is not set |
162 | CONFIG_BLK_DEV_COW_COMMON=y | 196 | CONFIG_BLK_DEV_COW_COMMON=y |
163 | # CONFIG_MMAPPER is not set | ||
164 | CONFIG_BLK_DEV_LOOP=m | 197 | CONFIG_BLK_DEV_LOOP=m |
165 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | 198 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set |
166 | CONFIG_BLK_DEV_NBD=m | 199 | CONFIG_BLK_DEV_NBD=m |
167 | # CONFIG_BLK_DEV_RAM is not set | 200 | # CONFIG_BLK_DEV_RAM is not set |
168 | # CONFIG_BLK_DEV_INITRD is not set | ||
169 | # CONFIG_ATA_OVER_ETH is not set | 201 | # CONFIG_ATA_OVER_ETH is not set |
170 | 202 | ||
171 | # | 203 | # |
@@ -185,32 +217,43 @@ CONFIG_CON_CHAN="xterm" | |||
185 | CONFIG_SSL_CHAN="pts" | 217 | CONFIG_SSL_CHAN="pts" |
186 | CONFIG_UNIX98_PTYS=y | 218 | CONFIG_UNIX98_PTYS=y |
187 | CONFIG_LEGACY_PTYS=y | 219 | CONFIG_LEGACY_PTYS=y |
220 | # CONFIG_RAW_DRIVER is not set | ||
188 | CONFIG_LEGACY_PTY_COUNT=32 | 221 | CONFIG_LEGACY_PTY_COUNT=32 |
189 | # CONFIG_WATCHDOG is not set | 222 | # CONFIG_WATCHDOG is not set |
190 | CONFIG_UML_SOUND=m | 223 | CONFIG_UML_SOUND=m |
191 | CONFIG_SOUND=m | 224 | CONFIG_SOUND=m |
192 | CONFIG_HOSTAUDIO=m | 225 | CONFIG_HOSTAUDIO=m |
226 | # CONFIG_HW_RANDOM is not set | ||
193 | CONFIG_UML_RANDOM=y | 227 | CONFIG_UML_RANDOM=y |
228 | # CONFIG_MMAPPER is not set | ||
194 | 229 | ||
195 | # | 230 | # |
196 | # Generic Driver Options | 231 | # Generic Driver Options |
197 | # | 232 | # |
233 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
198 | CONFIG_STANDALONE=y | 234 | CONFIG_STANDALONE=y |
199 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 235 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
200 | # CONFIG_FW_LOADER is not set | 236 | # CONFIG_FW_LOADER is not set |
201 | # CONFIG_DEBUG_DRIVER is not set | 237 | # CONFIG_DEBUG_DRIVER is not set |
238 | # CONFIG_DEBUG_DEVRES is not set | ||
239 | # CONFIG_SYS_HYPERVISOR is not set | ||
202 | 240 | ||
203 | # | 241 | # |
204 | # Networking | 242 | # Networking |
205 | # | 243 | # |
244 | CONFIG_NET=y | ||
206 | 245 | ||
207 | # | 246 | # |
208 | # Networking options | 247 | # Networking options |
209 | # | 248 | # |
210 | # CONFIG_NETDEBUG is not set | ||
211 | CONFIG_PACKET=y | 249 | CONFIG_PACKET=y |
212 | CONFIG_PACKET_MMAP=y | 250 | CONFIG_PACKET_MMAP=y |
213 | CONFIG_UNIX=y | 251 | CONFIG_UNIX=y |
252 | CONFIG_XFRM=y | ||
253 | # CONFIG_XFRM_USER is not set | ||
254 | # CONFIG_XFRM_SUB_POLICY is not set | ||
255 | # CONFIG_XFRM_MIGRATE is not set | ||
256 | # CONFIG_XFRM_STATISTICS is not set | ||
214 | # CONFIG_NET_KEY is not set | 257 | # CONFIG_NET_KEY is not set |
215 | CONFIG_INET=y | 258 | CONFIG_INET=y |
216 | # CONFIG_IP_MULTICAST is not set | 259 | # CONFIG_IP_MULTICAST is not set |
@@ -226,28 +269,23 @@ CONFIG_IP_FIB_HASH=y | |||
226 | # CONFIG_INET_IPCOMP is not set | 269 | # CONFIG_INET_IPCOMP is not set |
227 | # CONFIG_INET_XFRM_TUNNEL is not set | 270 | # CONFIG_INET_XFRM_TUNNEL is not set |
228 | # CONFIG_INET_TUNNEL is not set | 271 | # CONFIG_INET_TUNNEL is not set |
272 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
273 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
274 | CONFIG_INET_XFRM_MODE_BEET=y | ||
275 | # CONFIG_INET_LRO is not set | ||
229 | CONFIG_INET_DIAG=y | 276 | CONFIG_INET_DIAG=y |
230 | CONFIG_INET_TCP_DIAG=y | 277 | CONFIG_INET_TCP_DIAG=y |
231 | # CONFIG_TCP_CONG_ADVANCED is not set | 278 | # CONFIG_TCP_CONG_ADVANCED is not set |
232 | CONFIG_TCP_CONG_BIC=y | 279 | CONFIG_TCP_CONG_CUBIC=y |
280 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
281 | # CONFIG_TCP_MD5SIG is not set | ||
233 | # CONFIG_IPV6 is not set | 282 | # CONFIG_IPV6 is not set |
234 | # CONFIG_INET6_XFRM_TUNNEL is not set | 283 | # CONFIG_INET6_XFRM_TUNNEL is not set |
235 | # CONFIG_INET6_TUNNEL is not set | 284 | # CONFIG_INET6_TUNNEL is not set |
285 | # CONFIG_NETWORK_SECMARK is not set | ||
236 | # CONFIG_NETFILTER is not set | 286 | # CONFIG_NETFILTER is not set |
237 | |||
238 | # | ||
239 | # DCCP Configuration (EXPERIMENTAL) | ||
240 | # | ||
241 | # CONFIG_IP_DCCP is not set | 287 | # CONFIG_IP_DCCP is not set |
242 | |||
243 | # | ||
244 | # SCTP Configuration (EXPERIMENTAL) | ||
245 | # | ||
246 | # CONFIG_IP_SCTP is not set | 288 | # CONFIG_IP_SCTP is not set |
247 | |||
248 | # | ||
249 | # TIPC Configuration (EXPERIMENTAL) | ||
250 | # | ||
251 | # CONFIG_TIPC is not set | 289 | # CONFIG_TIPC is not set |
252 | # CONFIG_ATM is not set | 290 | # CONFIG_ATM is not set |
253 | # CONFIG_BRIDGE is not set | 291 | # CONFIG_BRIDGE is not set |
@@ -258,13 +296,8 @@ CONFIG_TCP_CONG_BIC=y | |||
258 | # CONFIG_ATALK is not set | 296 | # CONFIG_ATALK is not set |
259 | # CONFIG_X25 is not set | 297 | # CONFIG_X25 is not set |
260 | # CONFIG_LAPB is not set | 298 | # CONFIG_LAPB is not set |
261 | # CONFIG_NET_DIVERT is not set | ||
262 | # CONFIG_ECONET is not set | 299 | # CONFIG_ECONET is not set |
263 | # CONFIG_WAN_ROUTER is not set | 300 | # CONFIG_WAN_ROUTER is not set |
264 | |||
265 | # | ||
266 | # QoS and/or fair queueing | ||
267 | # | ||
268 | # CONFIG_NET_SCHED is not set | 301 | # CONFIG_NET_SCHED is not set |
269 | 302 | ||
270 | # | 303 | # |
@@ -272,9 +305,20 @@ CONFIG_TCP_CONG_BIC=y | |||
272 | # | 305 | # |
273 | # CONFIG_NET_PKTGEN is not set | 306 | # CONFIG_NET_PKTGEN is not set |
274 | # CONFIG_HAMRADIO is not set | 307 | # CONFIG_HAMRADIO is not set |
308 | # CONFIG_CAN is not set | ||
275 | # CONFIG_IRDA is not set | 309 | # CONFIG_IRDA is not set |
276 | # CONFIG_BT is not set | 310 | # CONFIG_BT is not set |
311 | # CONFIG_AF_RXRPC is not set | ||
312 | |||
313 | # | ||
314 | # Wireless | ||
315 | # | ||
316 | # CONFIG_CFG80211 is not set | ||
317 | # CONFIG_WIRELESS_EXT is not set | ||
318 | # CONFIG_MAC80211 is not set | ||
277 | # CONFIG_IEEE80211 is not set | 319 | # CONFIG_IEEE80211 is not set |
320 | # CONFIG_RFKILL is not set | ||
321 | # CONFIG_NET_9P is not set | ||
278 | 322 | ||
279 | # | 323 | # |
280 | # UML Network Devices | 324 | # UML Network Devices |
@@ -284,31 +328,24 @@ CONFIG_UML_NET_ETHERTAP=y | |||
284 | CONFIG_UML_NET_TUNTAP=y | 328 | CONFIG_UML_NET_TUNTAP=y |
285 | CONFIG_UML_NET_SLIP=y | 329 | CONFIG_UML_NET_SLIP=y |
286 | CONFIG_UML_NET_DAEMON=y | 330 | CONFIG_UML_NET_DAEMON=y |
331 | # CONFIG_UML_NET_VDE is not set | ||
287 | CONFIG_UML_NET_MCAST=y | 332 | CONFIG_UML_NET_MCAST=y |
288 | # CONFIG_UML_NET_PCAP is not set | 333 | # CONFIG_UML_NET_PCAP is not set |
289 | CONFIG_UML_NET_SLIRP=y | 334 | CONFIG_UML_NET_SLIRP=y |
290 | |||
291 | # | ||
292 | # Network device support | ||
293 | # | ||
294 | CONFIG_NETDEVICES=y | 335 | CONFIG_NETDEVICES=y |
336 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
295 | CONFIG_DUMMY=m | 337 | CONFIG_DUMMY=m |
296 | # CONFIG_BONDING is not set | 338 | # CONFIG_BONDING is not set |
339 | # CONFIG_MACVLAN is not set | ||
297 | # CONFIG_EQUALIZER is not set | 340 | # CONFIG_EQUALIZER is not set |
298 | CONFIG_TUN=m | 341 | CONFIG_TUN=m |
342 | # CONFIG_VETH is not set | ||
299 | 343 | ||
300 | # | 344 | # |
301 | # PHY device support | 345 | # Wireless LAN |
302 | # | ||
303 | |||
304 | # | ||
305 | # Wireless LAN (non-hamradio) | ||
306 | # | ||
307 | # CONFIG_NET_RADIO is not set | ||
308 | |||
309 | # | ||
310 | # Wan interfaces | ||
311 | # | 346 | # |
347 | # CONFIG_WLAN_PRE80211 is not set | ||
348 | # CONFIG_WLAN_80211 is not set | ||
312 | # CONFIG_WAN is not set | 349 | # CONFIG_WAN is not set |
313 | CONFIG_PPP=m | 350 | CONFIG_PPP=m |
314 | # CONFIG_PPP_MULTILINK is not set | 351 | # CONFIG_PPP_MULTILINK is not set |
@@ -319,18 +356,15 @@ CONFIG_PPP=m | |||
319 | # CONFIG_PPP_BSDCOMP is not set | 356 | # CONFIG_PPP_BSDCOMP is not set |
320 | # CONFIG_PPP_MPPE is not set | 357 | # CONFIG_PPP_MPPE is not set |
321 | # CONFIG_PPPOE is not set | 358 | # CONFIG_PPPOE is not set |
359 | # CONFIG_PPPOL2TP is not set | ||
322 | CONFIG_SLIP=m | 360 | CONFIG_SLIP=m |
323 | # CONFIG_SLIP_COMPRESSED is not set | 361 | # CONFIG_SLIP_COMPRESSED is not set |
362 | CONFIG_SLHC=m | ||
324 | # CONFIG_SLIP_SMART is not set | 363 | # CONFIG_SLIP_SMART is not set |
325 | # CONFIG_SLIP_MODE_SLIP6 is not set | 364 | # CONFIG_SLIP_MODE_SLIP6 is not set |
326 | # CONFIG_SHAPER is not set | ||
327 | # CONFIG_NETCONSOLE is not set | 365 | # CONFIG_NETCONSOLE is not set |
328 | # CONFIG_NETPOLL is not set | 366 | # CONFIG_NETPOLL is not set |
329 | # CONFIG_NET_POLL_CONTROLLER is not set | 367 | # CONFIG_NET_POLL_CONTROLLER is not set |
330 | |||
331 | # | ||
332 | # Connector - unified userspace <-> kernelspace linker | ||
333 | # | ||
334 | # CONFIG_CONNECTOR is not set | 368 | # CONFIG_CONNECTOR is not set |
335 | 369 | ||
336 | # | 370 | # |
@@ -341,8 +375,8 @@ CONFIG_EXT2_FS=y | |||
341 | # CONFIG_EXT2_FS_XIP is not set | 375 | # CONFIG_EXT2_FS_XIP is not set |
342 | CONFIG_EXT3_FS=y | 376 | CONFIG_EXT3_FS=y |
343 | # CONFIG_EXT3_FS_XATTR is not set | 377 | # CONFIG_EXT3_FS_XATTR is not set |
378 | # CONFIG_EXT4DEV_FS is not set | ||
344 | CONFIG_JBD=y | 379 | CONFIG_JBD=y |
345 | # CONFIG_JBD_DEBUG is not set | ||
346 | CONFIG_REISERFS_FS=y | 380 | CONFIG_REISERFS_FS=y |
347 | # CONFIG_REISERFS_CHECK is not set | 381 | # CONFIG_REISERFS_CHECK is not set |
348 | # CONFIG_REISERFS_PROC_INFO is not set | 382 | # CONFIG_REISERFS_PROC_INFO is not set |
@@ -350,11 +384,15 @@ CONFIG_REISERFS_FS=y | |||
350 | # CONFIG_JFS_FS is not set | 384 | # CONFIG_JFS_FS is not set |
351 | # CONFIG_FS_POSIX_ACL is not set | 385 | # CONFIG_FS_POSIX_ACL is not set |
352 | # CONFIG_XFS_FS is not set | 386 | # CONFIG_XFS_FS is not set |
387 | # CONFIG_GFS2_FS is not set | ||
353 | # CONFIG_OCFS2_FS is not set | 388 | # CONFIG_OCFS2_FS is not set |
354 | # CONFIG_MINIX_FS is not set | 389 | # CONFIG_MINIX_FS is not set |
355 | # CONFIG_ROMFS_FS is not set | 390 | # CONFIG_ROMFS_FS is not set |
356 | CONFIG_INOTIFY=y | 391 | CONFIG_INOTIFY=y |
392 | CONFIG_INOTIFY_USER=y | ||
357 | CONFIG_QUOTA=y | 393 | CONFIG_QUOTA=y |
394 | # CONFIG_QUOTA_NETLINK_INTERFACE is not set | ||
395 | CONFIG_PRINT_QUOTA_WARNING=y | ||
358 | # CONFIG_QFMT_V1 is not set | 396 | # CONFIG_QFMT_V1 is not set |
359 | # CONFIG_QFMT_V2 is not set | 397 | # CONFIG_QFMT_V2 is not set |
360 | CONFIG_QUOTACTL=y | 398 | CONFIG_QUOTACTL=y |
@@ -383,10 +421,11 @@ CONFIG_JOLIET=y | |||
383 | # | 421 | # |
384 | CONFIG_PROC_FS=y | 422 | CONFIG_PROC_FS=y |
385 | CONFIG_PROC_KCORE=y | 423 | CONFIG_PROC_KCORE=y |
424 | CONFIG_PROC_SYSCTL=y | ||
386 | CONFIG_SYSFS=y | 425 | CONFIG_SYSFS=y |
387 | CONFIG_TMPFS=y | 426 | CONFIG_TMPFS=y |
427 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
388 | # CONFIG_HUGETLB_PAGE is not set | 428 | # CONFIG_HUGETLB_PAGE is not set |
389 | CONFIG_RAMFS=y | ||
390 | # CONFIG_CONFIGFS_FS is not set | 429 | # CONFIG_CONFIGFS_FS is not set |
391 | 430 | ||
392 | # | 431 | # |
@@ -405,10 +444,7 @@ CONFIG_RAMFS=y | |||
405 | # CONFIG_QNX4FS_FS is not set | 444 | # CONFIG_QNX4FS_FS is not set |
406 | # CONFIG_SYSV_FS is not set | 445 | # CONFIG_SYSV_FS is not set |
407 | # CONFIG_UFS_FS is not set | 446 | # CONFIG_UFS_FS is not set |
408 | 447 | CONFIG_NETWORK_FILESYSTEMS=y | |
409 | # | ||
410 | # Network File Systems | ||
411 | # | ||
412 | # CONFIG_NFS_FS is not set | 448 | # CONFIG_NFS_FS is not set |
413 | # CONFIG_NFSD is not set | 449 | # CONFIG_NFSD is not set |
414 | # CONFIG_SMB_FS is not set | 450 | # CONFIG_SMB_FS is not set |
@@ -416,17 +452,12 @@ CONFIG_RAMFS=y | |||
416 | # CONFIG_NCP_FS is not set | 452 | # CONFIG_NCP_FS is not set |
417 | # CONFIG_CODA_FS is not set | 453 | # CONFIG_CODA_FS is not set |
418 | # CONFIG_AFS_FS is not set | 454 | # CONFIG_AFS_FS is not set |
419 | # CONFIG_9P_FS is not set | ||
420 | 455 | ||
421 | # | 456 | # |
422 | # Partition Types | 457 | # Partition Types |
423 | # | 458 | # |
424 | # CONFIG_PARTITION_ADVANCED is not set | 459 | # CONFIG_PARTITION_ADVANCED is not set |
425 | CONFIG_MSDOS_PARTITION=y | 460 | CONFIG_MSDOS_PARTITION=y |
426 | |||
427 | # | ||
428 | # Native Language Support | ||
429 | # | ||
430 | CONFIG_NLS=y | 461 | CONFIG_NLS=y |
431 | CONFIG_NLS_DEFAULT="iso8859-1" | 462 | CONFIG_NLS_DEFAULT="iso8859-1" |
432 | # CONFIG_NLS_CODEPAGE_437 is not set | 463 | # CONFIG_NLS_CODEPAGE_437 is not set |
@@ -467,33 +498,83 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
467 | # CONFIG_NLS_KOI8_R is not set | 498 | # CONFIG_NLS_KOI8_R is not set |
468 | # CONFIG_NLS_KOI8_U is not set | 499 | # CONFIG_NLS_KOI8_U is not set |
469 | # CONFIG_NLS_UTF8 is not set | 500 | # CONFIG_NLS_UTF8 is not set |
501 | # CONFIG_DLM is not set | ||
470 | 502 | ||
471 | # | 503 | # |
472 | # Security options | 504 | # Security options |
473 | # | 505 | # |
474 | # CONFIG_KEYS is not set | 506 | # CONFIG_KEYS is not set |
475 | # CONFIG_SECURITY is not set | 507 | # CONFIG_SECURITY is not set |
476 | 508 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | |
477 | # | 509 | CONFIG_CRYPTO=y |
478 | # Cryptographic options | 510 | # CONFIG_CRYPTO_SEQIV is not set |
479 | # | 511 | # CONFIG_CRYPTO_MANAGER is not set |
480 | # CONFIG_CRYPTO is not set | 512 | # CONFIG_CRYPTO_HMAC is not set |
481 | 513 | # CONFIG_CRYPTO_XCBC is not set | |
482 | # | 514 | # CONFIG_CRYPTO_NULL is not set |
483 | # Hardware crypto devices | 515 | # CONFIG_CRYPTO_MD4 is not set |
484 | # | 516 | # CONFIG_CRYPTO_MD5 is not set |
517 | # CONFIG_CRYPTO_SHA1 is not set | ||
518 | # CONFIG_CRYPTO_SHA256 is not set | ||
519 | # CONFIG_CRYPTO_SHA512 is not set | ||
520 | # CONFIG_CRYPTO_WP512 is not set | ||
521 | # CONFIG_CRYPTO_TGR192 is not set | ||
522 | # CONFIG_CRYPTO_GF128MUL is not set | ||
523 | # CONFIG_CRYPTO_ECB is not set | ||
524 | # CONFIG_CRYPTO_CBC is not set | ||
525 | # CONFIG_CRYPTO_PCBC is not set | ||
526 | # CONFIG_CRYPTO_LRW is not set | ||
527 | # CONFIG_CRYPTO_XTS is not set | ||
528 | # CONFIG_CRYPTO_CTR is not set | ||
529 | # CONFIG_CRYPTO_GCM is not set | ||
530 | # CONFIG_CRYPTO_CCM is not set | ||
531 | # CONFIG_CRYPTO_CRYPTD is not set | ||
532 | # CONFIG_CRYPTO_DES is not set | ||
533 | # CONFIG_CRYPTO_FCRYPT is not set | ||
534 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
535 | # CONFIG_CRYPTO_TWOFISH is not set | ||
536 | # CONFIG_CRYPTO_TWOFISH_586 is not set | ||
537 | # CONFIG_CRYPTO_SERPENT is not set | ||
538 | # CONFIG_CRYPTO_AES is not set | ||
539 | # CONFIG_CRYPTO_AES_586 is not set | ||
540 | # CONFIG_CRYPTO_CAST5 is not set | ||
541 | # CONFIG_CRYPTO_CAST6 is not set | ||
542 | # CONFIG_CRYPTO_TEA is not set | ||
543 | # CONFIG_CRYPTO_ARC4 is not set | ||
544 | # CONFIG_CRYPTO_KHAZAD is not set | ||
545 | # CONFIG_CRYPTO_ANUBIS is not set | ||
546 | # CONFIG_CRYPTO_SEED is not set | ||
547 | # CONFIG_CRYPTO_SALSA20 is not set | ||
548 | # CONFIG_CRYPTO_SALSA20_586 is not set | ||
549 | # CONFIG_CRYPTO_DEFLATE is not set | ||
550 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
551 | # CONFIG_CRYPTO_CRC32C is not set | ||
552 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
553 | # CONFIG_CRYPTO_TEST is not set | ||
554 | # CONFIG_CRYPTO_AUTHENC is not set | ||
555 | # CONFIG_CRYPTO_LZO is not set | ||
556 | CONFIG_CRYPTO_HW=y | ||
485 | 557 | ||
486 | # | 558 | # |
487 | # Library routines | 559 | # Library routines |
488 | # | 560 | # |
561 | CONFIG_BITREVERSE=m | ||
489 | # CONFIG_CRC_CCITT is not set | 562 | # CONFIG_CRC_CCITT is not set |
490 | # CONFIG_CRC16 is not set | 563 | # CONFIG_CRC16 is not set |
564 | # CONFIG_CRC_ITU_T is not set | ||
491 | CONFIG_CRC32=m | 565 | CONFIG_CRC32=m |
566 | # CONFIG_CRC7 is not set | ||
492 | # CONFIG_LIBCRC32C is not set | 567 | # CONFIG_LIBCRC32C is not set |
568 | CONFIG_PLIST=y | ||
569 | CONFIG_HAS_DMA=y | ||
493 | 570 | ||
494 | # | 571 | # |
495 | # Multi-device support (RAID and LVM) | 572 | # SCSI device support |
496 | # | 573 | # |
574 | # CONFIG_RAID_ATTRS is not set | ||
575 | # CONFIG_SCSI is not set | ||
576 | # CONFIG_SCSI_DMA is not set | ||
577 | # CONFIG_SCSI_NETLINK is not set | ||
497 | # CONFIG_MD is not set | 578 | # CONFIG_MD is not set |
498 | # CONFIG_INPUT is not set | 579 | # CONFIG_INPUT is not set |
499 | 580 | ||
@@ -501,23 +582,36 @@ CONFIG_CRC32=m | |||
501 | # Kernel hacking | 582 | # Kernel hacking |
502 | # | 583 | # |
503 | # CONFIG_PRINTK_TIME is not set | 584 | # CONFIG_PRINTK_TIME is not set |
585 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
586 | CONFIG_ENABLE_MUST_CHECK=y | ||
587 | # CONFIG_UNUSED_SYMBOLS is not set | ||
588 | # CONFIG_DEBUG_FS is not set | ||
504 | CONFIG_DEBUG_KERNEL=y | 589 | CONFIG_DEBUG_KERNEL=y |
505 | CONFIG_LOG_BUF_SHIFT=14 | 590 | # CONFIG_DEBUG_SHIRQ is not set |
506 | CONFIG_DETECT_SOFTLOCKUP=y | 591 | CONFIG_DETECT_SOFTLOCKUP=y |
592 | CONFIG_SCHED_DEBUG=y | ||
507 | # CONFIG_SCHEDSTATS is not set | 593 | # CONFIG_SCHEDSTATS is not set |
594 | # CONFIG_TIMER_STATS is not set | ||
508 | # CONFIG_DEBUG_SLAB is not set | 595 | # CONFIG_DEBUG_SLAB is not set |
509 | # CONFIG_DEBUG_SLAB_LEAK is not set | 596 | # CONFIG_DEBUG_RT_MUTEXES is not set |
510 | # CONFIG_DEBUG_MUTEXES is not set | 597 | # CONFIG_RT_MUTEX_TESTER is not set |
511 | # CONFIG_DEBUG_SPINLOCK is not set | 598 | # CONFIG_DEBUG_SPINLOCK is not set |
599 | # CONFIG_DEBUG_MUTEXES is not set | ||
512 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | 600 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set |
601 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
513 | # CONFIG_DEBUG_KOBJECT is not set | 602 | # CONFIG_DEBUG_KOBJECT is not set |
603 | CONFIG_DEBUG_BUGVERBOSE=y | ||
514 | CONFIG_DEBUG_INFO=y | 604 | CONFIG_DEBUG_INFO=y |
515 | # CONFIG_DEBUG_FS is not set | ||
516 | # CONFIG_DEBUG_VM is not set | 605 | # CONFIG_DEBUG_VM is not set |
606 | # CONFIG_DEBUG_LIST is not set | ||
607 | # CONFIG_DEBUG_SG is not set | ||
517 | CONFIG_FRAME_POINTER=y | 608 | CONFIG_FRAME_POINTER=y |
518 | # CONFIG_UNWIND_INFO is not set | ||
519 | CONFIG_FORCED_INLINING=y | 609 | CONFIG_FORCED_INLINING=y |
610 | # CONFIG_BOOT_PRINTK_DELAY is not set | ||
520 | # CONFIG_RCU_TORTURE_TEST is not set | 611 | # CONFIG_RCU_TORTURE_TEST is not set |
612 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
613 | # CONFIG_FAULT_INJECTION is not set | ||
614 | # CONFIG_SAMPLES is not set | ||
521 | # CONFIG_GPROF is not set | 615 | # CONFIG_GPROF is not set |
522 | # CONFIG_GCOV is not set | 616 | # CONFIG_GCOV is not set |
523 | # CONFIG_DEBUG_STACK_USAGE is not set | 617 | # CONFIG_DEBUG_STACK_USAGE is not set |
diff --git a/arch/um/drivers/harddog_user.c b/arch/um/drivers/harddog_user.c index 448ba59207a1..b56f8e0196a9 100644 --- a/arch/um/drivers/harddog_user.c +++ b/arch/um/drivers/harddog_user.c | |||
@@ -79,14 +79,14 @@ int start_watchdog(int *in_fd_ret, int *out_fd_ret, char *sock) | |||
79 | n = read(in_fds[0], &c, sizeof(c)); | 79 | n = read(in_fds[0], &c, sizeof(c)); |
80 | if (n == 0) { | 80 | if (n == 0) { |
81 | printk("harddog_open - EOF on watchdog pipe\n"); | 81 | printk("harddog_open - EOF on watchdog pipe\n"); |
82 | helper_wait(pid, 1, NULL); | 82 | helper_wait(pid); |
83 | err = -EIO; | 83 | err = -EIO; |
84 | goto out_close_out; | 84 | goto out_close_out; |
85 | } | 85 | } |
86 | else if (n < 0) { | 86 | else if (n < 0) { |
87 | printk("harddog_open - read of watchdog pipe failed, " | 87 | printk("harddog_open - read of watchdog pipe failed, " |
88 | "err = %d\n", errno); | 88 | "err = %d\n", errno); |
89 | helper_wait(pid, 1, NULL); | 89 | helper_wait(pid); |
90 | err = n; | 90 | err = n; |
91 | goto out_close_out; | 91 | goto out_close_out; |
92 | } | 92 | } |
diff --git a/arch/um/include/registers.h b/arch/um/include/registers.h index 9ea1ae3c8f46..b0b4589e0ebc 100644 --- a/arch/um/include/registers.h +++ b/arch/um/include/registers.h | |||
@@ -18,5 +18,7 @@ extern int restore_registers(int pid, struct uml_pt_regs *regs); | |||
18 | extern int init_registers(int pid); | 18 | extern int init_registers(int pid); |
19 | extern void get_safe_registers(unsigned long *regs); | 19 | extern void get_safe_registers(unsigned long *regs); |
20 | extern unsigned long get_thread_reg(int reg, jmp_buf *buf); | 20 | extern unsigned long get_thread_reg(int reg, jmp_buf *buf); |
21 | extern int get_fp_registers(int pid, unsigned long *regs); | ||
22 | extern int put_fp_registers(int pid, unsigned long *regs); | ||
21 | 23 | ||
22 | #endif | 24 | #endif |
diff --git a/arch/um/include/sysdep-i386/ptrace_user.h b/arch/um/include/sysdep-i386/ptrace_user.h index 899aa4b2a78d..75650723c38f 100644 --- a/arch/um/include/sysdep-i386/ptrace_user.h +++ b/arch/um/include/sysdep-i386/ptrace_user.h | |||
@@ -9,6 +9,7 @@ | |||
9 | #include <sys/ptrace.h> | 9 | #include <sys/ptrace.h> |
10 | #include <linux/ptrace.h> | 10 | #include <linux/ptrace.h> |
11 | #include <asm/ptrace.h> | 11 | #include <asm/ptrace.h> |
12 | #include "user_constants.h" | ||
12 | 13 | ||
13 | #define PT_OFFSET(r) ((r) * sizeof(long)) | 14 | #define PT_OFFSET(r) ((r) * sizeof(long)) |
14 | 15 | ||
@@ -40,6 +41,8 @@ | |||
40 | #define PT_SP_OFFSET PT_OFFSET(UESP) | 41 | #define PT_SP_OFFSET PT_OFFSET(UESP) |
41 | #define PT_SP(regs) ((regs)[UESP]) | 42 | #define PT_SP(regs) ((regs)[UESP]) |
42 | 43 | ||
44 | #define FP_SIZE ((HOST_XFP_SIZE > HOST_FP_SIZE) ? HOST_XFP_SIZE : HOST_FP_SIZE) | ||
45 | |||
43 | #ifndef FRAME_SIZE | 46 | #ifndef FRAME_SIZE |
44 | #define FRAME_SIZE (17) | 47 | #define FRAME_SIZE (17) |
45 | #endif | 48 | #endif |
diff --git a/arch/um/include/sysdep-x86_64/ptrace_user.h b/arch/um/include/sysdep-x86_64/ptrace_user.h index 4cd61a852fab..45c0bd881cb3 100644 --- a/arch/um/include/sysdep-x86_64/ptrace_user.h +++ b/arch/um/include/sysdep-x86_64/ptrace_user.h | |||
@@ -12,6 +12,7 @@ | |||
12 | #include <linux/ptrace.h> | 12 | #include <linux/ptrace.h> |
13 | #include <asm/ptrace.h> | 13 | #include <asm/ptrace.h> |
14 | #undef __FRAME_OFFSETS | 14 | #undef __FRAME_OFFSETS |
15 | #include "user_constants.h" | ||
15 | 16 | ||
16 | #define PT_INDEX(off) ((off) / sizeof(unsigned long)) | 17 | #define PT_INDEX(off) ((off) / sizeof(unsigned long)) |
17 | 18 | ||
@@ -69,6 +70,8 @@ | |||
69 | #define REGS_IP_INDEX PT_INDEX(RIP) | 70 | #define REGS_IP_INDEX PT_INDEX(RIP) |
70 | #define REGS_SP_INDEX PT_INDEX(RSP) | 71 | #define REGS_SP_INDEX PT_INDEX(RSP) |
71 | 72 | ||
73 | #define FP_SIZE (HOST_FP_SIZE) | ||
74 | |||
72 | #endif | 75 | #endif |
73 | 76 | ||
74 | /* | 77 | /* |
diff --git a/arch/um/kernel/initrd.c b/arch/um/kernel/initrd.c index fa015565001b..d386c75c88eb 100644 --- a/arch/um/kernel/initrd.c +++ b/arch/um/kernel/initrd.c | |||
@@ -32,7 +32,7 @@ static int __init read_initrd(void) | |||
32 | * ask for no memory. | 32 | * ask for no memory. |
33 | */ | 33 | */ |
34 | if (size == 0) { | 34 | if (size == 0) { |
35 | printk(KERN_ERR "\"%\" is a zero-size initrd\n"); | 35 | printk(KERN_ERR "\"%s\" is a zero-size initrd\n", initrd); |
36 | return 0; | 36 | return 0; |
37 | } | 37 | } |
38 | 38 | ||
diff --git a/arch/um/kernel/mem.c b/arch/um/kernel/mem.c index 2627ce82e918..2eea1ff235e6 100644 --- a/arch/um/kernel/mem.c +++ b/arch/um/kernel/mem.c | |||
@@ -299,7 +299,7 @@ void show_mem(void) | |||
299 | { | 299 | { |
300 | int pfn, total = 0, reserved = 0; | 300 | int pfn, total = 0, reserved = 0; |
301 | int shared = 0, cached = 0; | 301 | int shared = 0, cached = 0; |
302 | int highmem = 0; | 302 | int high_mem = 0; |
303 | struct page *page; | 303 | struct page *page; |
304 | 304 | ||
305 | printk(KERN_INFO "Mem-info:\n"); | 305 | printk(KERN_INFO "Mem-info:\n"); |
@@ -311,7 +311,7 @@ void show_mem(void) | |||
311 | page = pfn_to_page(pfn); | 311 | page = pfn_to_page(pfn); |
312 | total++; | 312 | total++; |
313 | if (PageHighMem(page)) | 313 | if (PageHighMem(page)) |
314 | highmem++; | 314 | high_mem++; |
315 | if (PageReserved(page)) | 315 | if (PageReserved(page)) |
316 | reserved++; | 316 | reserved++; |
317 | else if (PageSwapCache(page)) | 317 | else if (PageSwapCache(page)) |
@@ -320,7 +320,7 @@ void show_mem(void) | |||
320 | shared += page_count(page) - 1; | 320 | shared += page_count(page) - 1; |
321 | } | 321 | } |
322 | printk(KERN_INFO "%d pages of RAM\n", total); | 322 | printk(KERN_INFO "%d pages of RAM\n", total); |
323 | printk(KERN_INFO "%d pages of HIGHMEM\n", highmem); | 323 | printk(KERN_INFO "%d pages of HIGHMEM\n", high_mem); |
324 | printk(KERN_INFO "%d reserved pages\n", reserved); | 324 | printk(KERN_INFO "%d reserved pages\n", reserved); |
325 | printk(KERN_INFO "%d pages shared\n", shared); | 325 | printk(KERN_INFO "%d pages shared\n", shared); |
326 | printk(KERN_INFO "%d pages swap cached\n", cached); | 326 | printk(KERN_INFO "%d pages swap cached\n", cached); |
diff --git a/arch/um/os-Linux/skas/process.c b/arch/um/os-Linux/skas/process.c index b14829469fae..1e8cba6550a9 100644 --- a/arch/um/os-Linux/skas/process.c +++ b/arch/um/os-Linux/skas/process.c | |||
@@ -115,6 +115,14 @@ void get_skas_faultinfo(int pid, struct faultinfo * fi) | |||
115 | sizeof(struct ptrace_faultinfo)); | 115 | sizeof(struct ptrace_faultinfo)); |
116 | } | 116 | } |
117 | else { | 117 | else { |
118 | unsigned long fpregs[FP_SIZE]; | ||
119 | |||
120 | err = get_fp_registers(pid, fpregs); | ||
121 | if (err < 0) { | ||
122 | printk(UM_KERN_ERR "save_fp_registers returned %d\n", | ||
123 | err); | ||
124 | fatal_sigsegv(); | ||
125 | } | ||
118 | err = ptrace(PTRACE_CONT, pid, 0, SIGSEGV); | 126 | err = ptrace(PTRACE_CONT, pid, 0, SIGSEGV); |
119 | if (err) { | 127 | if (err) { |
120 | printk(UM_KERN_ERR "Failed to continue stub, pid = %d, " | 128 | printk(UM_KERN_ERR "Failed to continue stub, pid = %d, " |
@@ -128,6 +136,13 @@ void get_skas_faultinfo(int pid, struct faultinfo * fi) | |||
128 | * the stub stack page. We just have to copy it. | 136 | * the stub stack page. We just have to copy it. |
129 | */ | 137 | */ |
130 | memcpy(fi, (void *)current_stub_stack(), sizeof(*fi)); | 138 | memcpy(fi, (void *)current_stub_stack(), sizeof(*fi)); |
139 | |||
140 | err = put_fp_registers(pid, fpregs); | ||
141 | if (err < 0) { | ||
142 | printk(UM_KERN_ERR "put_fp_registers returned %d\n", | ||
143 | err); | ||
144 | fatal_sigsegv(); | ||
145 | } | ||
131 | } | 146 | } |
132 | } | 147 | } |
133 | 148 | ||
diff --git a/arch/um/os-Linux/sys-i386/registers.c b/arch/um/os-Linux/sys-i386/registers.c index f74d853a0ee0..b613473b3ec1 100644 --- a/arch/um/os-Linux/sys-i386/registers.c +++ b/arch/um/os-Linux/sys-i386/registers.c | |||
@@ -56,6 +56,22 @@ unsigned long get_thread_reg(int reg, jmp_buf *buf) | |||
56 | 56 | ||
57 | int have_fpx_regs = 1; | 57 | int have_fpx_regs = 1; |
58 | 58 | ||
59 | int get_fp_registers(int pid, unsigned long *regs) | ||
60 | { | ||
61 | if (have_fpx_regs) | ||
62 | return save_fpx_registers(pid, regs); | ||
63 | else | ||
64 | return save_fp_registers(pid, regs); | ||
65 | } | ||
66 | |||
67 | int put_fp_registers(int pid, unsigned long *regs) | ||
68 | { | ||
69 | if (have_fpx_regs) | ||
70 | return restore_fpx_registers(pid, regs); | ||
71 | else | ||
72 | return restore_fp_registers(pid, regs); | ||
73 | } | ||
74 | |||
59 | void arch_init_registers(int pid) | 75 | void arch_init_registers(int pid) |
60 | { | 76 | { |
61 | unsigned long fpx_regs[HOST_XFP_SIZE]; | 77 | unsigned long fpx_regs[HOST_XFP_SIZE]; |
diff --git a/arch/um/os-Linux/sys-x86_64/registers.c b/arch/um/os-Linux/sys-x86_64/registers.c index a375853337a7..594d97ad02b3 100644 --- a/arch/um/os-Linux/sys-x86_64/registers.c +++ b/arch/um/os-Linux/sys-x86_64/registers.c | |||
@@ -40,3 +40,13 @@ unsigned long get_thread_reg(int reg, jmp_buf *buf) | |||
40 | return 0; | 40 | return 0; |
41 | } | 41 | } |
42 | } | 42 | } |
43 | |||
44 | int get_fp_registers(int pid, unsigned long *regs) | ||
45 | { | ||
46 | return save_fp_registers(pid, regs); | ||
47 | } | ||
48 | |||
49 | int put_fp_registers(int pid, unsigned long *regs) | ||
50 | { | ||
51 | return restore_fp_registers(pid, regs); | ||
52 | } | ||
diff --git a/arch/um/sys-i386/user-offsets.c b/arch/um/sys-i386/user-offsets.c index 514241526a1b..39bd32bf84f0 100644 --- a/arch/um/sys-i386/user-offsets.c +++ b/arch/um/sys-i386/user-offsets.c | |||
@@ -17,36 +17,9 @@ | |||
17 | 17 | ||
18 | void foo(void) | 18 | void foo(void) |
19 | { | 19 | { |
20 | OFFSET(HOST_SC_IP, sigcontext, eip); | ||
21 | OFFSET(HOST_SC_SP, sigcontext, esp); | ||
22 | OFFSET(HOST_SC_FS, sigcontext, fs); | ||
23 | OFFSET(HOST_SC_GS, sigcontext, gs); | ||
24 | OFFSET(HOST_SC_DS, sigcontext, ds); | ||
25 | OFFSET(HOST_SC_ES, sigcontext, es); | ||
26 | OFFSET(HOST_SC_SS, sigcontext, ss); | ||
27 | OFFSET(HOST_SC_CS, sigcontext, cs); | ||
28 | OFFSET(HOST_SC_EFLAGS, sigcontext, eflags); | ||
29 | OFFSET(HOST_SC_EAX, sigcontext, eax); | ||
30 | OFFSET(HOST_SC_EBX, sigcontext, ebx); | ||
31 | OFFSET(HOST_SC_ECX, sigcontext, ecx); | ||
32 | OFFSET(HOST_SC_EDX, sigcontext, edx); | ||
33 | OFFSET(HOST_SC_EDI, sigcontext, edi); | ||
34 | OFFSET(HOST_SC_ESI, sigcontext, esi); | ||
35 | OFFSET(HOST_SC_EBP, sigcontext, ebp); | ||
36 | OFFSET(HOST_SC_TRAPNO, sigcontext, trapno); | 20 | OFFSET(HOST_SC_TRAPNO, sigcontext, trapno); |
37 | OFFSET(HOST_SC_ERR, sigcontext, err); | 21 | OFFSET(HOST_SC_ERR, sigcontext, err); |
38 | OFFSET(HOST_SC_CR2, sigcontext, cr2); | 22 | OFFSET(HOST_SC_CR2, sigcontext, cr2); |
39 | OFFSET(HOST_SC_FPSTATE, sigcontext, fpstate); | ||
40 | OFFSET(HOST_SC_SIGMASK, sigcontext, oldmask); | ||
41 | OFFSET(HOST_SC_FP_CW, _fpstate, cw); | ||
42 | OFFSET(HOST_SC_FP_SW, _fpstate, sw); | ||
43 | OFFSET(HOST_SC_FP_TAG, _fpstate, tag); | ||
44 | OFFSET(HOST_SC_FP_IPOFF, _fpstate, ipoff); | ||
45 | OFFSET(HOST_SC_FP_CSSEL, _fpstate, cssel); | ||
46 | OFFSET(HOST_SC_FP_DATAOFF, _fpstate, dataoff); | ||
47 | OFFSET(HOST_SC_FP_DATASEL, _fpstate, datasel); | ||
48 | OFFSET(HOST_SC_FP_ST, _fpstate, _st); | ||
49 | OFFSET(HOST_SC_FXSR_ENV, _fpstate, _fxsr_env); | ||
50 | 23 | ||
51 | DEFINE_LONGS(HOST_FP_SIZE, sizeof(struct user_fpregs_struct)); | 24 | DEFINE_LONGS(HOST_FP_SIZE, sizeof(struct user_fpregs_struct)); |
52 | DEFINE_LONGS(HOST_XFP_SIZE, sizeof(struct user_fpxregs_struct)); | 25 | DEFINE_LONGS(HOST_XFP_SIZE, sizeof(struct user_fpxregs_struct)); |
diff --git a/arch/um/sys-x86_64/user-offsets.c b/arch/um/sys-x86_64/user-offsets.c index f1ef2a8dfbc6..2f3443c6e859 100644 --- a/arch/um/sys-x86_64/user-offsets.c +++ b/arch/um/sys-x86_64/user-offsets.c | |||
@@ -19,37 +19,9 @@ | |||
19 | 19 | ||
20 | void foo(void) | 20 | void foo(void) |
21 | { | 21 | { |
22 | OFFSET(HOST_SC_RBX, sigcontext, rbx); | ||
23 | OFFSET(HOST_SC_RCX, sigcontext, rcx); | ||
24 | OFFSET(HOST_SC_RDX, sigcontext, rdx); | ||
25 | OFFSET(HOST_SC_RSI, sigcontext, rsi); | ||
26 | OFFSET(HOST_SC_RDI, sigcontext, rdi); | ||
27 | OFFSET(HOST_SC_RBP, sigcontext, rbp); | ||
28 | OFFSET(HOST_SC_RAX, sigcontext, rax); | ||
29 | OFFSET(HOST_SC_R8, sigcontext, r8); | ||
30 | OFFSET(HOST_SC_R9, sigcontext, r9); | ||
31 | OFFSET(HOST_SC_R10, sigcontext, r10); | ||
32 | OFFSET(HOST_SC_R11, sigcontext, r11); | ||
33 | OFFSET(HOST_SC_R12, sigcontext, r12); | ||
34 | OFFSET(HOST_SC_R13, sigcontext, r13); | ||
35 | OFFSET(HOST_SC_R14, sigcontext, r14); | ||
36 | OFFSET(HOST_SC_R15, sigcontext, r15); | ||
37 | OFFSET(HOST_SC_IP, sigcontext, rip); | ||
38 | OFFSET(HOST_SC_SP, sigcontext, rsp); | ||
39 | OFFSET(HOST_SC_CR2, sigcontext, cr2); | 22 | OFFSET(HOST_SC_CR2, sigcontext, cr2); |
40 | OFFSET(HOST_SC_ERR, sigcontext, err); | 23 | OFFSET(HOST_SC_ERR, sigcontext, err); |
41 | OFFSET(HOST_SC_TRAPNO, sigcontext, trapno); | 24 | OFFSET(HOST_SC_TRAPNO, sigcontext, trapno); |
42 | OFFSET(HOST_SC_CS, sigcontext, cs); | ||
43 | OFFSET(HOST_SC_FS, sigcontext, fs); | ||
44 | OFFSET(HOST_SC_GS, sigcontext, gs); | ||
45 | OFFSET(HOST_SC_EFLAGS, sigcontext, eflags); | ||
46 | OFFSET(HOST_SC_SIGMASK, sigcontext, oldmask); | ||
47 | #if 0 | ||
48 | OFFSET(HOST_SC_ORIG_RAX, sigcontext, orig_rax); | ||
49 | OFFSET(HOST_SC_DS, sigcontext, ds); | ||
50 | OFFSET(HOST_SC_ES, sigcontext, es); | ||
51 | OFFSET(HOST_SC_SS, sigcontext, ss); | ||
52 | #endif | ||
53 | 25 | ||
54 | DEFINE(HOST_FP_SIZE, sizeof(struct _fpstate) / sizeof(unsigned long)); | 26 | DEFINE(HOST_FP_SIZE, sizeof(struct _fpstate) / sizeof(unsigned long)); |
55 | DEFINE(HOST_XFP_SIZE, 0); | 27 | DEFINE(HOST_XFP_SIZE, 0); |
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 3be2305709b7..4a88cf7695b4 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig | |||
@@ -1054,7 +1054,7 @@ config SECCOMP | |||
1054 | 1054 | ||
1055 | config CC_STACKPROTECTOR | 1055 | config CC_STACKPROTECTOR |
1056 | bool "Enable -fstack-protector buffer overflow detection (EXPERIMENTAL)" | 1056 | bool "Enable -fstack-protector buffer overflow detection (EXPERIMENTAL)" |
1057 | depends on X86_64 && EXPERIMENTAL | 1057 | depends on X86_64 && EXPERIMENTAL && BROKEN |
1058 | help | 1058 | help |
1059 | This option turns on the -fstack-protector GCC feature. This | 1059 | This option turns on the -fstack-protector GCC feature. This |
1060 | feature puts, at the beginning of critical functions, a canary | 1060 | feature puts, at the beginning of critical functions, a canary |
diff --git a/arch/x86/Kconfig.debug b/arch/x86/Kconfig.debug index 864affc9a7b0..702eb39901ca 100644 --- a/arch/x86/Kconfig.debug +++ b/arch/x86/Kconfig.debug | |||
@@ -156,7 +156,7 @@ config IO_DELAY_TYPE_NONE | |||
156 | 156 | ||
157 | choice | 157 | choice |
158 | prompt "IO delay type" | 158 | prompt "IO delay type" |
159 | default IO_DELAY_0XED | 159 | default IO_DELAY_0X80 |
160 | 160 | ||
161 | config IO_DELAY_0X80 | 161 | config IO_DELAY_0X80 |
162 | bool "port 0x80 based port-IO delay [recommended]" | 162 | bool "port 0x80 based port-IO delay [recommended]" |
diff --git a/arch/x86/Makefile b/arch/x86/Makefile index 204af43535c5..f1e739a43d41 100644 --- a/arch/x86/Makefile +++ b/arch/x86/Makefile | |||
@@ -229,7 +229,7 @@ zdisk bzdisk: vmlinux | |||
229 | fdimage fdimage144 fdimage288 isoimage: vmlinux | 229 | fdimage fdimage144 fdimage288 isoimage: vmlinux |
230 | $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) $@ | 230 | $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) $@ |
231 | 231 | ||
232 | install: vdso_install | 232 | install: |
233 | $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) install | 233 | $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) install |
234 | 234 | ||
235 | PHONY += vdso_install | 235 | PHONY += vdso_install |
diff --git a/arch/x86/kernel/Makefile b/arch/x86/kernel/Makefile index 76ec0f8f138a..4eb5ce841106 100644 --- a/arch/x86/kernel/Makefile +++ b/arch/x86/kernel/Makefile | |||
@@ -6,7 +6,15 @@ extra-y := head_$(BITS).o init_task.o vmlinux.lds | |||
6 | extra-$(CONFIG_X86_64) += head64.o | 6 | extra-$(CONFIG_X86_64) += head64.o |
7 | 7 | ||
8 | CPPFLAGS_vmlinux.lds += -U$(UTS_MACHINE) | 8 | CPPFLAGS_vmlinux.lds += -U$(UTS_MACHINE) |
9 | CFLAGS_vsyscall_64.o := $(PROFILING) -g0 | 9 | |
10 | # | ||
11 | # vsyscalls (which work on the user stack) should have | ||
12 | # no stack-protector checks: | ||
13 | # | ||
14 | nostackp := $(call cc-option, -fno-stack-protector) | ||
15 | CFLAGS_vsyscall_64.o := $(PROFILING) -g0 $(nostackp) | ||
16 | CFLAGS_hpet.o := $(nostackp) | ||
17 | CFLAGS_tsc_64.o := $(nostackp) | ||
10 | 18 | ||
11 | obj-y := process_$(BITS).o signal_$(BITS).o entry_$(BITS).o | 19 | obj-y := process_$(BITS).o signal_$(BITS).o entry_$(BITS).o |
12 | obj-y += traps_$(BITS).o irq_$(BITS).o | 20 | obj-y += traps_$(BITS).o irq_$(BITS).o |
diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c index 680b7300a489..2cdc9de9371d 100644 --- a/arch/x86/kernel/acpi/boot.c +++ b/arch/x86/kernel/acpi/boot.c | |||
@@ -72,7 +72,8 @@ static inline int acpi_madt_oem_check(char *oem_id, char *oem_table_id) { return | |||
72 | #define PREFIX "ACPI: " | 72 | #define PREFIX "ACPI: " |
73 | 73 | ||
74 | int acpi_noirq; /* skip ACPI IRQ initialization */ | 74 | int acpi_noirq; /* skip ACPI IRQ initialization */ |
75 | int acpi_pci_disabled __initdata; /* skip ACPI PCI scan and IRQ initialization */ | 75 | int acpi_pci_disabled; /* skip ACPI PCI scan and IRQ initialization */ |
76 | EXPORT_SYMBOL(acpi_pci_disabled); | ||
76 | int acpi_ht __initdata = 1; /* enable HT */ | 77 | int acpi_ht __initdata = 1; /* enable HT */ |
77 | 78 | ||
78 | int acpi_lapic; | 79 | int acpi_lapic; |
diff --git a/arch/x86/kernel/asm-offsets_32.c b/arch/x86/kernel/asm-offsets_32.c index afd84463b712..a33d53017997 100644 --- a/arch/x86/kernel/asm-offsets_32.c +++ b/arch/x86/kernel/asm-offsets_32.c | |||
@@ -20,10 +20,8 @@ | |||
20 | 20 | ||
21 | #include <xen/interface/xen.h> | 21 | #include <xen/interface/xen.h> |
22 | 22 | ||
23 | #ifdef CONFIG_LGUEST_GUEST | ||
24 | #include <linux/lguest.h> | 23 | #include <linux/lguest.h> |
25 | #include "../../../drivers/lguest/lg.h" | 24 | #include "../../../drivers/lguest/lg.h" |
26 | #endif | ||
27 | 25 | ||
28 | #define DEFINE(sym, val) \ | 26 | #define DEFINE(sym, val) \ |
29 | asm volatile("\n->" #sym " %0 " #val : : "i" (val)) | 27 | asm volatile("\n->" #sym " %0 " #val : : "i" (val)) |
@@ -134,6 +132,10 @@ void foo(void) | |||
134 | BLANK(); | 132 | BLANK(); |
135 | OFFSET(LGUEST_DATA_irq_enabled, lguest_data, irq_enabled); | 133 | OFFSET(LGUEST_DATA_irq_enabled, lguest_data, irq_enabled); |
136 | OFFSET(LGUEST_DATA_pgdir, lguest_data, pgdir); | 134 | OFFSET(LGUEST_DATA_pgdir, lguest_data, pgdir); |
135 | #endif | ||
136 | |||
137 | #ifdef CONFIG_LGUEST | ||
138 | BLANK(); | ||
137 | OFFSET(LGUEST_PAGES_host_gdt_desc, lguest_pages, state.host_gdt_desc); | 139 | OFFSET(LGUEST_PAGES_host_gdt_desc, lguest_pages, state.host_gdt_desc); |
138 | OFFSET(LGUEST_PAGES_host_idt_desc, lguest_pages, state.host_idt_desc); | 140 | OFFSET(LGUEST_PAGES_host_idt_desc, lguest_pages, state.host_idt_desc); |
139 | OFFSET(LGUEST_PAGES_host_cr3, lguest_pages, state.host_cr3); | 141 | OFFSET(LGUEST_PAGES_host_cr3, lguest_pages, state.host_cr3); |
diff --git a/arch/x86/kernel/cpu/bugs.c b/arch/x86/kernel/cpu/bugs.c index 9b95edcfc6ae..027e5c003b16 100644 --- a/arch/x86/kernel/cpu/bugs.c +++ b/arch/x86/kernel/cpu/bugs.c | |||
@@ -25,14 +25,6 @@ static int __init no_halt(char *s) | |||
25 | 25 | ||
26 | __setup("no-hlt", no_halt); | 26 | __setup("no-hlt", no_halt); |
27 | 27 | ||
28 | static int __init mca_pentium(char *s) | ||
29 | { | ||
30 | mca_pentium_flag = 1; | ||
31 | return 1; | ||
32 | } | ||
33 | |||
34 | __setup("mca-pentium", mca_pentium); | ||
35 | |||
36 | static int __init no_387(char *s) | 28 | static int __init no_387(char *s) |
37 | { | 29 | { |
38 | boot_cpu_data.hard_math = 0; | 30 | boot_cpu_data.hard_math = 0; |
diff --git a/arch/x86/kernel/efi.c b/arch/x86/kernel/efi.c index 0c0eeb163d90..759e02bec070 100644 --- a/arch/x86/kernel/efi.c +++ b/arch/x86/kernel/efi.c | |||
@@ -54,7 +54,7 @@ EXPORT_SYMBOL(efi); | |||
54 | 54 | ||
55 | struct efi_memory_map memmap; | 55 | struct efi_memory_map memmap; |
56 | 56 | ||
57 | struct efi efi_phys __initdata; | 57 | static struct efi efi_phys __initdata; |
58 | static efi_system_table_t efi_systab __initdata; | 58 | static efi_system_table_t efi_systab __initdata; |
59 | 59 | ||
60 | static int __init setup_noefi(char *arg) | 60 | static int __init setup_noefi(char *arg) |
diff --git a/arch/x86/kernel/efi_32.c b/arch/x86/kernel/efi_32.c index cb91f985b4a1..5d23d85624d4 100644 --- a/arch/x86/kernel/efi_32.c +++ b/arch/x86/kernel/efi_32.c | |||
@@ -28,6 +28,7 @@ | |||
28 | #include <asm/page.h> | 28 | #include <asm/page.h> |
29 | #include <asm/pgtable.h> | 29 | #include <asm/pgtable.h> |
30 | #include <asm/tlbflush.h> | 30 | #include <asm/tlbflush.h> |
31 | #include <asm/efi.h> | ||
31 | 32 | ||
32 | /* | 33 | /* |
33 | * To make EFI call EFI runtime service in physical addressing mode we need | 34 | * To make EFI call EFI runtime service in physical addressing mode we need |
diff --git a/arch/x86/kernel/entry_32.S b/arch/x86/kernel/entry_32.S index 824e21b80aad..4b87c32b639f 100644 --- a/arch/x86/kernel/entry_32.S +++ b/arch/x86/kernel/entry_32.S | |||
@@ -409,7 +409,7 @@ restore_nocheck_notrace: | |||
409 | RESTORE_REGS | 409 | RESTORE_REGS |
410 | addl $4, %esp # skip orig_eax/error_code | 410 | addl $4, %esp # skip orig_eax/error_code |
411 | CFI_ADJUST_CFA_OFFSET -4 | 411 | CFI_ADJUST_CFA_OFFSET -4 |
412 | ENTRY(irq_return) | 412 | irq_return: |
413 | INTERRUPT_RETURN | 413 | INTERRUPT_RETURN |
414 | .section .fixup,"ax" | 414 | .section .fixup,"ax" |
415 | iret_exc: | 415 | iret_exc: |
diff --git a/arch/x86/kernel/entry_64.S b/arch/x86/kernel/entry_64.S index 6be39a387c5a..2ad9a1bc6a73 100644 --- a/arch/x86/kernel/entry_64.S +++ b/arch/x86/kernel/entry_64.S | |||
@@ -583,7 +583,7 @@ retint_restore_args: /* return to kernel space */ | |||
583 | restore_args: | 583 | restore_args: |
584 | RESTORE_ARGS 0,8,0 | 584 | RESTORE_ARGS 0,8,0 |
585 | 585 | ||
586 | ENTRY(irq_return) | 586 | irq_return: |
587 | INTERRUPT_RETURN | 587 | INTERRUPT_RETURN |
588 | 588 | ||
589 | .section __ex_table, "a" | 589 | .section __ex_table, "a" |
diff --git a/arch/x86/kernel/head64.c b/arch/x86/kernel/head64.c index 24dbf56928d7..ad2440832de0 100644 --- a/arch/x86/kernel/head64.c +++ b/arch/x86/kernel/head64.c | |||
@@ -88,6 +88,9 @@ void __init x86_64_start_kernel(char * real_mode_data) | |||
88 | /* Make NULL pointers segfault */ | 88 | /* Make NULL pointers segfault */ |
89 | zap_identity_mappings(); | 89 | zap_identity_mappings(); |
90 | 90 | ||
91 | /* Cleanup the over mapped high alias */ | ||
92 | cleanup_highmap(); | ||
93 | |||
91 | for (i = 0; i < IDT_ENTRIES; i++) { | 94 | for (i = 0; i < IDT_ENTRIES; i++) { |
92 | #ifdef CONFIG_EARLY_PRINTK | 95 | #ifdef CONFIG_EARLY_PRINTK |
93 | set_intr_gate(i, &early_idt_handlers[i]); | 96 | set_intr_gate(i, &early_idt_handlers[i]); |
diff --git a/arch/x86/kernel/head_32.S b/arch/x86/kernel/head_32.S index 74ef4a41f224..25eb98540a41 100644 --- a/arch/x86/kernel/head_32.S +++ b/arch/x86/kernel/head_32.S | |||
@@ -612,7 +612,7 @@ ENTRY(swapper_pg_pmd) | |||
612 | ENTRY(swapper_pg_dir) | 612 | ENTRY(swapper_pg_dir) |
613 | .fill 1024,4,0 | 613 | .fill 1024,4,0 |
614 | #endif | 614 | #endif |
615 | ENTRY(swapper_pg_fixmap) | 615 | swapper_pg_fixmap: |
616 | .fill 1024,4,0 | 616 | .fill 1024,4,0 |
617 | ENTRY(empty_zero_page) | 617 | ENTRY(empty_zero_page) |
618 | .fill 4096,1,0 | 618 | .fill 4096,1,0 |
diff --git a/arch/x86/kernel/head_64.S b/arch/x86/kernel/head_64.S index 09b38d539b09..eb415043a929 100644 --- a/arch/x86/kernel/head_64.S +++ b/arch/x86/kernel/head_64.S | |||
@@ -107,8 +107,13 @@ startup_64: | |||
107 | movq %rdx, 0(%rbx, %rax, 8) | 107 | movq %rdx, 0(%rbx, %rax, 8) |
108 | ident_complete: | 108 | ident_complete: |
109 | 109 | ||
110 | /* Fixup the kernel text+data virtual addresses | 110 | /* |
111 | * Fixup the kernel text+data virtual addresses. Note that | ||
112 | * we might write invalid pmds, when the kernel is relocated | ||
113 | * cleanup_highmap() fixes this up along with the mappings | ||
114 | * beyond _end. | ||
111 | */ | 115 | */ |
116 | |||
112 | leaq level2_kernel_pgt(%rip), %rdi | 117 | leaq level2_kernel_pgt(%rip), %rdi |
113 | leaq 4096(%rdi), %r8 | 118 | leaq 4096(%rdi), %r8 |
114 | /* See if it is a valid page table entry */ | 119 | /* See if it is a valid page table entry */ |
@@ -250,7 +255,7 @@ ENTRY(secondary_startup_64) | |||
250 | lretq | 255 | lretq |
251 | 256 | ||
252 | /* SMP bootup changes these two */ | 257 | /* SMP bootup changes these two */ |
253 | __CPUINITDATA | 258 | __REFDATA |
254 | .align 8 | 259 | .align 8 |
255 | ENTRY(initial_code) | 260 | ENTRY(initial_code) |
256 | .quad x86_64_start_kernel | 261 | .quad x86_64_start_kernel |
diff --git a/arch/x86/kernel/i387.c b/arch/x86/kernel/i387.c index 26719bd2c77c..763dfc407232 100644 --- a/arch/x86/kernel/i387.c +++ b/arch/x86/kernel/i387.c | |||
@@ -39,7 +39,7 @@ | |||
39 | #define HAVE_HWFP 1 | 39 | #define HAVE_HWFP 1 |
40 | #endif | 40 | #endif |
41 | 41 | ||
42 | unsigned int mxcsr_feature_mask __read_mostly = 0xffffffffu; | 42 | static unsigned int mxcsr_feature_mask __read_mostly = 0xffffffffu; |
43 | 43 | ||
44 | void mxcsr_feature_mask_init(void) | 44 | void mxcsr_feature_mask_init(void) |
45 | { | 45 | { |
diff --git a/arch/x86/kernel/i8259_32.c b/arch/x86/kernel/i8259_32.c index 2d25b77102fe..fe631967d625 100644 --- a/arch/x86/kernel/i8259_32.c +++ b/arch/x86/kernel/i8259_32.c | |||
@@ -26,8 +26,6 @@ | |||
26 | * present in the majority of PC/AT boxes. | 26 | * present in the majority of PC/AT boxes. |
27 | * plus some generic x86 specific things if generic specifics makes | 27 | * plus some generic x86 specific things if generic specifics makes |
28 | * any sense at all. | 28 | * any sense at all. |
29 | * this file should become arch/i386/kernel/irq.c when the old irq.c | ||
30 | * moves to arch independent land | ||
31 | */ | 29 | */ |
32 | 30 | ||
33 | static int i8259A_auto_eoi; | 31 | static int i8259A_auto_eoi; |
@@ -362,23 +360,12 @@ void __init init_ISA_irqs (void) | |||
362 | #endif | 360 | #endif |
363 | init_8259A(0); | 361 | init_8259A(0); |
364 | 362 | ||
365 | for (i = 0; i < NR_IRQS; i++) { | 363 | /* |
366 | irq_desc[i].status = IRQ_DISABLED; | 364 | * 16 old-style INTA-cycle interrupts: |
367 | irq_desc[i].action = NULL; | 365 | */ |
368 | irq_desc[i].depth = 1; | 366 | for (i = 0; i < 16; i++) { |
369 | 367 | set_irq_chip_and_handler_name(i, &i8259A_chip, | |
370 | if (i < 16) { | 368 | handle_level_irq, "XT"); |
371 | /* | ||
372 | * 16 old-style INTA-cycle interrupts: | ||
373 | */ | ||
374 | set_irq_chip_and_handler_name(i, &i8259A_chip, | ||
375 | handle_level_irq, "XT"); | ||
376 | } else { | ||
377 | /* | ||
378 | * 'high' PCI IRQs filled in on demand | ||
379 | */ | ||
380 | irq_desc[i].chip = &no_irq_chip; | ||
381 | } | ||
382 | } | 369 | } |
383 | } | 370 | } |
384 | 371 | ||
diff --git a/arch/x86/kernel/io_delay.c b/arch/x86/kernel/io_delay.c index bd49321034db..c706a3061553 100644 --- a/arch/x86/kernel/io_delay.c +++ b/arch/x86/kernel/io_delay.c | |||
@@ -13,7 +13,6 @@ | |||
13 | #include <asm/io.h> | 13 | #include <asm/io.h> |
14 | 14 | ||
15 | int io_delay_type __read_mostly = CONFIG_DEFAULT_IO_DELAY_TYPE; | 15 | int io_delay_type __read_mostly = CONFIG_DEFAULT_IO_DELAY_TYPE; |
16 | EXPORT_SYMBOL_GPL(io_delay_type); | ||
17 | 16 | ||
18 | static int __initdata io_delay_override; | 17 | static int __initdata io_delay_override; |
19 | 18 | ||
diff --git a/arch/x86/kernel/kprobes.c b/arch/x86/kernel/kprobes.c index a99e764fd66a..34a591283f5d 100644 --- a/arch/x86/kernel/kprobes.c +++ b/arch/x86/kernel/kprobes.c | |||
@@ -581,7 +581,7 @@ static int __kprobes kprobe_handler(struct pt_regs *regs) | |||
581 | * When a retprobed function returns, this code saves registers and | 581 | * When a retprobed function returns, this code saves registers and |
582 | * calls trampoline_handler() runs, which calls the kretprobe's handler. | 582 | * calls trampoline_handler() runs, which calls the kretprobe's handler. |
583 | */ | 583 | */ |
584 | void __kprobes kretprobe_trampoline_holder(void) | 584 | static void __used __kprobes kretprobe_trampoline_holder(void) |
585 | { | 585 | { |
586 | asm volatile ( | 586 | asm volatile ( |
587 | ".global kretprobe_trampoline\n" | 587 | ".global kretprobe_trampoline\n" |
@@ -673,7 +673,7 @@ void __kprobes kretprobe_trampoline_holder(void) | |||
673 | /* | 673 | /* |
674 | * Called from kretprobe_trampoline | 674 | * Called from kretprobe_trampoline |
675 | */ | 675 | */ |
676 | void * __kprobes trampoline_handler(struct pt_regs *regs) | 676 | static __used __kprobes void *trampoline_handler(struct pt_regs *regs) |
677 | { | 677 | { |
678 | struct kretprobe_instance *ri = NULL; | 678 | struct kretprobe_instance *ri = NULL; |
679 | struct hlist_head *head, empty_rp; | 679 | struct hlist_head *head, empty_rp; |
diff --git a/arch/x86/kernel/nmi_32.c b/arch/x86/kernel/nmi_32.c index edd413650b3b..6a0aa7038685 100644 --- a/arch/x86/kernel/nmi_32.c +++ b/arch/x86/kernel/nmi_32.c | |||
@@ -46,9 +46,6 @@ static unsigned int nmi_hz = HZ; | |||
46 | 46 | ||
47 | static DEFINE_PER_CPU(short, wd_enabled); | 47 | static DEFINE_PER_CPU(short, wd_enabled); |
48 | 48 | ||
49 | /* local prototypes */ | ||
50 | static int unknown_nmi_panic_callback(struct pt_regs *regs, int cpu); | ||
51 | |||
52 | static int endflag __initdata = 0; | 49 | static int endflag __initdata = 0; |
53 | 50 | ||
54 | #ifdef CONFIG_SMP | 51 | #ifdef CONFIG_SMP |
@@ -391,15 +388,6 @@ __kprobes int nmi_watchdog_tick(struct pt_regs * regs, unsigned reason) | |||
391 | return rc; | 388 | return rc; |
392 | } | 389 | } |
393 | 390 | ||
394 | int do_nmi_callback(struct pt_regs * regs, int cpu) | ||
395 | { | ||
396 | #ifdef CONFIG_SYSCTL | ||
397 | if (unknown_nmi_panic) | ||
398 | return unknown_nmi_panic_callback(regs, cpu); | ||
399 | #endif | ||
400 | return 0; | ||
401 | } | ||
402 | |||
403 | #ifdef CONFIG_SYSCTL | 391 | #ifdef CONFIG_SYSCTL |
404 | 392 | ||
405 | static int unknown_nmi_panic_callback(struct pt_regs *regs, int cpu) | 393 | static int unknown_nmi_panic_callback(struct pt_regs *regs, int cpu) |
@@ -453,6 +441,15 @@ int proc_nmi_enabled(struct ctl_table *table, int write, struct file *file, | |||
453 | 441 | ||
454 | #endif | 442 | #endif |
455 | 443 | ||
444 | int do_nmi_callback(struct pt_regs *regs, int cpu) | ||
445 | { | ||
446 | #ifdef CONFIG_SYSCTL | ||
447 | if (unknown_nmi_panic) | ||
448 | return unknown_nmi_panic_callback(regs, cpu); | ||
449 | #endif | ||
450 | return 0; | ||
451 | } | ||
452 | |||
456 | void __trigger_all_cpu_backtrace(void) | 453 | void __trigger_all_cpu_backtrace(void) |
457 | { | 454 | { |
458 | int i; | 455 | int i; |
diff --git a/arch/x86/kernel/nmi_64.c b/arch/x86/kernel/nmi_64.c index fb99484d21cf..9a4fde74bee1 100644 --- a/arch/x86/kernel/nmi_64.c +++ b/arch/x86/kernel/nmi_64.c | |||
@@ -46,9 +46,6 @@ static unsigned int nmi_hz = HZ; | |||
46 | 46 | ||
47 | static DEFINE_PER_CPU(short, wd_enabled); | 47 | static DEFINE_PER_CPU(short, wd_enabled); |
48 | 48 | ||
49 | /* local prototypes */ | ||
50 | static int unknown_nmi_panic_callback(struct pt_regs *regs, int cpu); | ||
51 | |||
52 | /* Run after command line and cpu_init init, but before all other checks */ | 49 | /* Run after command line and cpu_init init, but before all other checks */ |
53 | void nmi_watchdog_default(void) | 50 | void nmi_watchdog_default(void) |
54 | { | 51 | { |
@@ -394,15 +391,6 @@ asmlinkage __kprobes void do_nmi(struct pt_regs * regs, long error_code) | |||
394 | nmi_exit(); | 391 | nmi_exit(); |
395 | } | 392 | } |
396 | 393 | ||
397 | int do_nmi_callback(struct pt_regs * regs, int cpu) | ||
398 | { | ||
399 | #ifdef CONFIG_SYSCTL | ||
400 | if (unknown_nmi_panic) | ||
401 | return unknown_nmi_panic_callback(regs, cpu); | ||
402 | #endif | ||
403 | return 0; | ||
404 | } | ||
405 | |||
406 | void stop_nmi(void) | 394 | void stop_nmi(void) |
407 | { | 395 | { |
408 | acpi_nmi_disable(); | 396 | acpi_nmi_disable(); |
@@ -464,6 +452,15 @@ int proc_nmi_enabled(struct ctl_table *table, int write, struct file *file, | |||
464 | 452 | ||
465 | #endif | 453 | #endif |
466 | 454 | ||
455 | int do_nmi_callback(struct pt_regs *regs, int cpu) | ||
456 | { | ||
457 | #ifdef CONFIG_SYSCTL | ||
458 | if (unknown_nmi_panic) | ||
459 | return unknown_nmi_panic_callback(regs, cpu); | ||
460 | #endif | ||
461 | return 0; | ||
462 | } | ||
463 | |||
467 | void __trigger_all_cpu_backtrace(void) | 464 | void __trigger_all_cpu_backtrace(void) |
468 | { | 465 | { |
469 | int i; | 466 | int i; |
diff --git a/arch/x86/kernel/ptrace.c b/arch/x86/kernel/ptrace.c index 702c33efea84..d862e396b099 100644 --- a/arch/x86/kernel/ptrace.c +++ b/arch/x86/kernel/ptrace.c | |||
@@ -1160,7 +1160,7 @@ static int genregs32_set(struct task_struct *target, | |||
1160 | if (kbuf) { | 1160 | if (kbuf) { |
1161 | const compat_ulong_t *k = kbuf; | 1161 | const compat_ulong_t *k = kbuf; |
1162 | while (count > 0 && !ret) { | 1162 | while (count > 0 && !ret) { |
1163 | ret = putreg(target, pos, *k++); | 1163 | ret = putreg32(target, pos, *k++); |
1164 | count -= sizeof(*k); | 1164 | count -= sizeof(*k); |
1165 | pos += sizeof(*k); | 1165 | pos += sizeof(*k); |
1166 | } | 1166 | } |
@@ -1171,7 +1171,7 @@ static int genregs32_set(struct task_struct *target, | |||
1171 | ret = __get_user(word, u++); | 1171 | ret = __get_user(word, u++); |
1172 | if (ret) | 1172 | if (ret) |
1173 | break; | 1173 | break; |
1174 | ret = putreg(target, pos, word); | 1174 | ret = putreg32(target, pos, word); |
1175 | count -= sizeof(*u); | 1175 | count -= sizeof(*u); |
1176 | pos += sizeof(*u); | 1176 | pos += sizeof(*u); |
1177 | } | 1177 | } |
diff --git a/arch/x86/kernel/setup_32.c b/arch/x86/kernel/setup_32.c index 691ab4cb167b..a1d7071a51c9 100644 --- a/arch/x86/kernel/setup_32.c +++ b/arch/x86/kernel/setup_32.c | |||
@@ -164,7 +164,6 @@ unsigned long mmu_cr4_features = X86_CR4_PAE; | |||
164 | unsigned int machine_id; | 164 | unsigned int machine_id; |
165 | unsigned int machine_submodel_id; | 165 | unsigned int machine_submodel_id; |
166 | unsigned int BIOS_revision; | 166 | unsigned int BIOS_revision; |
167 | unsigned int mca_pentium_flag; | ||
168 | 167 | ||
169 | /* Boot loader ID as an integer, for the benefit of proc_dointvec */ | 168 | /* Boot loader ID as an integer, for the benefit of proc_dointvec */ |
170 | int bootloader_type; | 169 | int bootloader_type; |
diff --git a/arch/x86/kernel/setup_64.c b/arch/x86/kernel/setup_64.c index c0d8208af12a..6fd804f07821 100644 --- a/arch/x86/kernel/setup_64.c +++ b/arch/x86/kernel/setup_64.c | |||
@@ -518,7 +518,7 @@ static void __cpuinit display_cacheinfo(struct cpuinfo_x86 *c) | |||
518 | } | 518 | } |
519 | 519 | ||
520 | #ifdef CONFIG_NUMA | 520 | #ifdef CONFIG_NUMA |
521 | static int nearby_node(int apicid) | 521 | static int __cpuinit nearby_node(int apicid) |
522 | { | 522 | { |
523 | int i, node; | 523 | int i, node; |
524 | 524 | ||
@@ -791,7 +791,7 @@ static int __cpuinit intel_num_cpu_cores(struct cpuinfo_x86 *c) | |||
791 | return 1; | 791 | return 1; |
792 | } | 792 | } |
793 | 793 | ||
794 | static void srat_detect_node(void) | 794 | static void __cpuinit srat_detect_node(void) |
795 | { | 795 | { |
796 | #ifdef CONFIG_NUMA | 796 | #ifdef CONFIG_NUMA |
797 | unsigned node; | 797 | unsigned node; |
@@ -1046,7 +1046,7 @@ __setup("noclflush", setup_noclflush); | |||
1046 | void __cpuinit print_cpu_info(struct cpuinfo_x86 *c) | 1046 | void __cpuinit print_cpu_info(struct cpuinfo_x86 *c) |
1047 | { | 1047 | { |
1048 | if (c->x86_model_id[0]) | 1048 | if (c->x86_model_id[0]) |
1049 | printk(KERN_INFO "%s", c->x86_model_id); | 1049 | printk(KERN_CONT "%s", c->x86_model_id); |
1050 | 1050 | ||
1051 | if (c->x86_mask || c->cpuid_level >= 0) | 1051 | if (c->x86_mask || c->cpuid_level >= 0) |
1052 | printk(KERN_CONT " stepping %02x\n", c->x86_mask); | 1052 | printk(KERN_CONT " stepping %02x\n", c->x86_mask); |
diff --git a/arch/x86/kernel/topology.c b/arch/x86/kernel/topology.c index a40051b71d9b..0fcc95a354f7 100644 --- a/arch/x86/kernel/topology.c +++ b/arch/x86/kernel/topology.c | |||
@@ -34,7 +34,7 @@ | |||
34 | static DEFINE_PER_CPU(struct x86_cpu, cpu_devices); | 34 | static DEFINE_PER_CPU(struct x86_cpu, cpu_devices); |
35 | 35 | ||
36 | #ifdef CONFIG_HOTPLUG_CPU | 36 | #ifdef CONFIG_HOTPLUG_CPU |
37 | int arch_register_cpu(int num) | 37 | int __ref arch_register_cpu(int num) |
38 | { | 38 | { |
39 | /* | 39 | /* |
40 | * CPU0 cannot be offlined due to several | 40 | * CPU0 cannot be offlined due to several |
diff --git a/arch/x86/kernel/vmlinux_32.lds.S b/arch/x86/kernel/vmlinux_32.lds.S index f1148ac8abe3..2ffa9656fe7a 100644 --- a/arch/x86/kernel/vmlinux_32.lds.S +++ b/arch/x86/kernel/vmlinux_32.lds.S | |||
@@ -38,7 +38,7 @@ SECTIONS | |||
38 | 38 | ||
39 | /* read-only */ | 39 | /* read-only */ |
40 | .text : AT(ADDR(.text) - LOAD_OFFSET) { | 40 | .text : AT(ADDR(.text) - LOAD_OFFSET) { |
41 | . = ALIGN(4096); /* not really needed, already page aligned */ | 41 | . = ALIGN(PAGE_SIZE); /* not really needed, already page aligned */ |
42 | *(.text.page_aligned) | 42 | *(.text.page_aligned) |
43 | TEXT_TEXT | 43 | TEXT_TEXT |
44 | SCHED_TEXT | 44 | SCHED_TEXT |
@@ -70,21 +70,21 @@ SECTIONS | |||
70 | RODATA | 70 | RODATA |
71 | 71 | ||
72 | /* writeable */ | 72 | /* writeable */ |
73 | . = ALIGN(4096); | 73 | . = ALIGN(PAGE_SIZE); |
74 | .data : AT(ADDR(.data) - LOAD_OFFSET) { /* Data */ | 74 | .data : AT(ADDR(.data) - LOAD_OFFSET) { /* Data */ |
75 | DATA_DATA | 75 | DATA_DATA |
76 | CONSTRUCTORS | 76 | CONSTRUCTORS |
77 | } :data | 77 | } :data |
78 | 78 | ||
79 | . = ALIGN(4096); | 79 | . = ALIGN(PAGE_SIZE); |
80 | .data_nosave : AT(ADDR(.data_nosave) - LOAD_OFFSET) { | 80 | .data_nosave : AT(ADDR(.data_nosave) - LOAD_OFFSET) { |
81 | __nosave_begin = .; | 81 | __nosave_begin = .; |
82 | *(.data.nosave) | 82 | *(.data.nosave) |
83 | . = ALIGN(4096); | 83 | . = ALIGN(PAGE_SIZE); |
84 | __nosave_end = .; | 84 | __nosave_end = .; |
85 | } | 85 | } |
86 | 86 | ||
87 | . = ALIGN(4096); | 87 | . = ALIGN(PAGE_SIZE); |
88 | .data.page_aligned : AT(ADDR(.data.page_aligned) - LOAD_OFFSET) { | 88 | .data.page_aligned : AT(ADDR(.data.page_aligned) - LOAD_OFFSET) { |
89 | *(.data.page_aligned) | 89 | *(.data.page_aligned) |
90 | *(.data.idt) | 90 | *(.data.idt) |
@@ -108,7 +108,7 @@ SECTIONS | |||
108 | } | 108 | } |
109 | 109 | ||
110 | /* might get freed after init */ | 110 | /* might get freed after init */ |
111 | . = ALIGN(4096); | 111 | . = ALIGN(PAGE_SIZE); |
112 | .smp_locks : AT(ADDR(.smp_locks) - LOAD_OFFSET) { | 112 | .smp_locks : AT(ADDR(.smp_locks) - LOAD_OFFSET) { |
113 | __smp_locks = .; | 113 | __smp_locks = .; |
114 | *(.smp_locks) | 114 | *(.smp_locks) |
@@ -120,10 +120,10 @@ SECTIONS | |||
120 | * after boot. Always make sure that ALIGN() directive is present after | 120 | * after boot. Always make sure that ALIGN() directive is present after |
121 | * the section which contains __smp_alt_end. | 121 | * the section which contains __smp_alt_end. |
122 | */ | 122 | */ |
123 | . = ALIGN(4096); | 123 | . = ALIGN(PAGE_SIZE); |
124 | 124 | ||
125 | /* will be freed after init */ | 125 | /* will be freed after init */ |
126 | . = ALIGN(4096); /* Init code and data */ | 126 | . = ALIGN(PAGE_SIZE); /* Init code and data */ |
127 | .init.text : AT(ADDR(.init.text) - LOAD_OFFSET) { | 127 | .init.text : AT(ADDR(.init.text) - LOAD_OFFSET) { |
128 | __init_begin = .; | 128 | __init_begin = .; |
129 | _sinittext = .; | 129 | _sinittext = .; |
@@ -174,23 +174,23 @@ SECTIONS | |||
174 | EXIT_DATA | 174 | EXIT_DATA |
175 | } | 175 | } |
176 | #if defined(CONFIG_BLK_DEV_INITRD) | 176 | #if defined(CONFIG_BLK_DEV_INITRD) |
177 | . = ALIGN(4096); | 177 | . = ALIGN(PAGE_SIZE); |
178 | .init.ramfs : AT(ADDR(.init.ramfs) - LOAD_OFFSET) { | 178 | .init.ramfs : AT(ADDR(.init.ramfs) - LOAD_OFFSET) { |
179 | __initramfs_start = .; | 179 | __initramfs_start = .; |
180 | *(.init.ramfs) | 180 | *(.init.ramfs) |
181 | __initramfs_end = .; | 181 | __initramfs_end = .; |
182 | } | 182 | } |
183 | #endif | 183 | #endif |
184 | . = ALIGN(4096); | 184 | . = ALIGN(PAGE_SIZE); |
185 | .data.percpu : AT(ADDR(.data.percpu) - LOAD_OFFSET) { | 185 | .data.percpu : AT(ADDR(.data.percpu) - LOAD_OFFSET) { |
186 | __per_cpu_start = .; | 186 | __per_cpu_start = .; |
187 | *(.data.percpu) | 187 | *(.data.percpu) |
188 | *(.data.percpu.shared_aligned) | 188 | *(.data.percpu.shared_aligned) |
189 | __per_cpu_end = .; | 189 | __per_cpu_end = .; |
190 | } | 190 | } |
191 | . = ALIGN(4096); | 191 | . = ALIGN(PAGE_SIZE); |
192 | /* freed after init ends here */ | 192 | /* freed after init ends here */ |
193 | 193 | ||
194 | .bss : AT(ADDR(.bss) - LOAD_OFFSET) { | 194 | .bss : AT(ADDR(.bss) - LOAD_OFFSET) { |
195 | __init_end = .; | 195 | __init_end = .; |
196 | __bss_start = .; /* BSS */ | 196 | __bss_start = .; /* BSS */ |
@@ -200,7 +200,7 @@ SECTIONS | |||
200 | __bss_stop = .; | 200 | __bss_stop = .; |
201 | _end = . ; | 201 | _end = . ; |
202 | /* This is where the kernel creates the early boot page tables */ | 202 | /* This is where the kernel creates the early boot page tables */ |
203 | . = ALIGN(4096); | 203 | . = ALIGN(PAGE_SIZE); |
204 | pg0 = . ; | 204 | pg0 = . ; |
205 | } | 205 | } |
206 | 206 | ||
diff --git a/arch/x86/kernel/vmlinux_64.lds.S b/arch/x86/kernel/vmlinux_64.lds.S index 0992b9946c6f..fab132299735 100644 --- a/arch/x86/kernel/vmlinux_64.lds.S +++ b/arch/x86/kernel/vmlinux_64.lds.S | |||
@@ -37,7 +37,7 @@ SECTIONS | |||
37 | KPROBES_TEXT | 37 | KPROBES_TEXT |
38 | *(.fixup) | 38 | *(.fixup) |
39 | *(.gnu.warning) | 39 | *(.gnu.warning) |
40 | _etext = .; /* End of text section */ | 40 | _etext = .; /* End of text section */ |
41 | } :text = 0x9090 | 41 | } :text = 0x9090 |
42 | 42 | ||
43 | . = ALIGN(16); /* Exception table */ | 43 | . = ALIGN(16); /* Exception table */ |
@@ -60,7 +60,7 @@ SECTIONS | |||
60 | __tracedata_end = .; | 60 | __tracedata_end = .; |
61 | } | 61 | } |
62 | 62 | ||
63 | . = ALIGN(PAGE_SIZE); /* Align data segment to page size boundary */ | 63 | . = ALIGN(PAGE_SIZE); /* Align data segment to page size boundary */ |
64 | /* Data */ | 64 | /* Data */ |
65 | .data : AT(ADDR(.data) - LOAD_OFFSET) { | 65 | .data : AT(ADDR(.data) - LOAD_OFFSET) { |
66 | DATA_DATA | 66 | DATA_DATA |
@@ -119,7 +119,7 @@ SECTIONS | |||
119 | .vsyscall_3 ADDR(.vsyscall_0) + 3072: AT(VLOAD(.vsyscall_3)) | 119 | .vsyscall_3 ADDR(.vsyscall_0) + 3072: AT(VLOAD(.vsyscall_3)) |
120 | { *(.vsyscall_3) } | 120 | { *(.vsyscall_3) } |
121 | 121 | ||
122 | . = VSYSCALL_VIRT_ADDR + 4096; | 122 | . = VSYSCALL_VIRT_ADDR + PAGE_SIZE; |
123 | 123 | ||
124 | #undef VSYSCALL_ADDR | 124 | #undef VSYSCALL_ADDR |
125 | #undef VSYSCALL_PHYS_ADDR | 125 | #undef VSYSCALL_PHYS_ADDR |
@@ -129,28 +129,28 @@ SECTIONS | |||
129 | #undef VVIRT_OFFSET | 129 | #undef VVIRT_OFFSET |
130 | #undef VVIRT | 130 | #undef VVIRT |
131 | 131 | ||
132 | . = ALIGN(8192); /* init_task */ | 132 | . = ALIGN(THREAD_SIZE); /* init_task */ |
133 | .data.init_task : AT(ADDR(.data.init_task) - LOAD_OFFSET) { | 133 | .data.init_task : AT(ADDR(.data.init_task) - LOAD_OFFSET) { |
134 | *(.data.init_task) | 134 | *(.data.init_task) |
135 | }:data.init | 135 | }:data.init |
136 | 136 | ||
137 | . = ALIGN(4096); | 137 | . = ALIGN(PAGE_SIZE); |
138 | .data.page_aligned : AT(ADDR(.data.page_aligned) - LOAD_OFFSET) { | 138 | .data.page_aligned : AT(ADDR(.data.page_aligned) - LOAD_OFFSET) { |
139 | *(.data.page_aligned) | 139 | *(.data.page_aligned) |
140 | } | 140 | } |
141 | 141 | ||
142 | /* might get freed after init */ | 142 | /* might get freed after init */ |
143 | . = ALIGN(4096); | 143 | . = ALIGN(PAGE_SIZE); |
144 | __smp_alt_begin = .; | 144 | __smp_alt_begin = .; |
145 | __smp_locks = .; | 145 | __smp_locks = .; |
146 | .smp_locks : AT(ADDR(.smp_locks) - LOAD_OFFSET) { | 146 | .smp_locks : AT(ADDR(.smp_locks) - LOAD_OFFSET) { |
147 | *(.smp_locks) | 147 | *(.smp_locks) |
148 | } | 148 | } |
149 | __smp_locks_end = .; | 149 | __smp_locks_end = .; |
150 | . = ALIGN(4096); | 150 | . = ALIGN(PAGE_SIZE); |
151 | __smp_alt_end = .; | 151 | __smp_alt_end = .; |
152 | 152 | ||
153 | . = ALIGN(4096); /* Init code and data */ | 153 | . = ALIGN(PAGE_SIZE); /* Init code and data */ |
154 | __init_begin = .; | 154 | __init_begin = .; |
155 | .init.text : AT(ADDR(.init.text) - LOAD_OFFSET) { | 155 | .init.text : AT(ADDR(.init.text) - LOAD_OFFSET) { |
156 | _sinittext = .; | 156 | _sinittext = .; |
@@ -191,7 +191,7 @@ SECTIONS | |||
191 | .altinstructions : AT(ADDR(.altinstructions) - LOAD_OFFSET) { | 191 | .altinstructions : AT(ADDR(.altinstructions) - LOAD_OFFSET) { |
192 | *(.altinstructions) | 192 | *(.altinstructions) |
193 | } | 193 | } |
194 | __alt_instructions_end = .; | 194 | __alt_instructions_end = .; |
195 | .altinstr_replacement : AT(ADDR(.altinstr_replacement) - LOAD_OFFSET) { | 195 | .altinstr_replacement : AT(ADDR(.altinstr_replacement) - LOAD_OFFSET) { |
196 | *(.altinstr_replacement) | 196 | *(.altinstr_replacement) |
197 | } | 197 | } |
@@ -207,25 +207,25 @@ SECTIONS | |||
207 | /* vdso blob that is mapped into user space */ | 207 | /* vdso blob that is mapped into user space */ |
208 | vdso_start = . ; | 208 | vdso_start = . ; |
209 | .vdso : AT(ADDR(.vdso) - LOAD_OFFSET) { *(.vdso) } | 209 | .vdso : AT(ADDR(.vdso) - LOAD_OFFSET) { *(.vdso) } |
210 | . = ALIGN(4096); | 210 | . = ALIGN(PAGE_SIZE); |
211 | vdso_end = .; | 211 | vdso_end = .; |
212 | 212 | ||
213 | #ifdef CONFIG_BLK_DEV_INITRD | 213 | #ifdef CONFIG_BLK_DEV_INITRD |
214 | . = ALIGN(4096); | 214 | . = ALIGN(PAGE_SIZE); |
215 | __initramfs_start = .; | 215 | __initramfs_start = .; |
216 | .init.ramfs : AT(ADDR(.init.ramfs) - LOAD_OFFSET) { *(.init.ramfs) } | 216 | .init.ramfs : AT(ADDR(.init.ramfs) - LOAD_OFFSET) { *(.init.ramfs) } |
217 | __initramfs_end = .; | 217 | __initramfs_end = .; |
218 | #endif | 218 | #endif |
219 | 219 | ||
220 | PERCPU(4096) | 220 | PERCPU(PAGE_SIZE) |
221 | 221 | ||
222 | . = ALIGN(4096); | 222 | . = ALIGN(PAGE_SIZE); |
223 | __init_end = .; | 223 | __init_end = .; |
224 | 224 | ||
225 | . = ALIGN(4096); | 225 | . = ALIGN(PAGE_SIZE); |
226 | __nosave_begin = .; | 226 | __nosave_begin = .; |
227 | .data_nosave : AT(ADDR(.data_nosave) - LOAD_OFFSET) { *(.data.nosave) } | 227 | .data_nosave : AT(ADDR(.data_nosave) - LOAD_OFFSET) { *(.data.nosave) } |
228 | . = ALIGN(4096); | 228 | . = ALIGN(PAGE_SIZE); |
229 | __nosave_end = .; | 229 | __nosave_end = .; |
230 | 230 | ||
231 | __bss_start = .; /* BSS */ | 231 | __bss_start = .; /* BSS */ |
diff --git a/arch/x86/lib/csum-wrappers_64.c b/arch/x86/lib/csum-wrappers_64.c index fd42a4a095fc..459b58a8a15c 100644 --- a/arch/x86/lib/csum-wrappers_64.c +++ b/arch/x86/lib/csum-wrappers_64.c | |||
@@ -1,117 +1,129 @@ | |||
1 | /* Copyright 2002,2003 Andi Kleen, SuSE Labs. | 1 | /* |
2 | * Copyright 2002, 2003 Andi Kleen, SuSE Labs. | ||
2 | * Subject to the GNU Public License v.2 | 3 | * Subject to the GNU Public License v.2 |
3 | * | 4 | * |
4 | * Wrappers of assembly checksum functions for x86-64. | 5 | * Wrappers of assembly checksum functions for x86-64. |
5 | */ | 6 | */ |
6 | |||
7 | #include <asm/checksum.h> | 7 | #include <asm/checksum.h> |
8 | #include <linux/module.h> | 8 | #include <linux/module.h> |
9 | 9 | ||
10 | /** | 10 | /** |
11 | * csum_partial_copy_from_user - Copy and checksum from user space. | 11 | * csum_partial_copy_from_user - Copy and checksum from user space. |
12 | * @src: source address (user space) | 12 | * @src: source address (user space) |
13 | * @dst: destination address | 13 | * @dst: destination address |
14 | * @len: number of bytes to be copied. | 14 | * @len: number of bytes to be copied. |
15 | * @isum: initial sum that is added into the result (32bit unfolded) | 15 | * @isum: initial sum that is added into the result (32bit unfolded) |
16 | * @errp: set to -EFAULT for an bad source address. | 16 | * @errp: set to -EFAULT for an bad source address. |
17 | * | 17 | * |
18 | * Returns an 32bit unfolded checksum of the buffer. | 18 | * Returns an 32bit unfolded checksum of the buffer. |
19 | * src and dst are best aligned to 64bits. | 19 | * src and dst are best aligned to 64bits. |
20 | */ | 20 | */ |
21 | __wsum | 21 | __wsum |
22 | csum_partial_copy_from_user(const void __user *src, void *dst, | 22 | csum_partial_copy_from_user(const void __user *src, void *dst, |
23 | int len, __wsum isum, int *errp) | 23 | int len, __wsum isum, int *errp) |
24 | { | 24 | { |
25 | might_sleep(); | 25 | might_sleep(); |
26 | *errp = 0; | 26 | *errp = 0; |
27 | if (likely(access_ok(VERIFY_READ,src, len))) { | 27 | |
28 | /* Why 6, not 7? To handle odd addresses aligned we | 28 | if (!likely(access_ok(VERIFY_READ, src, len))) |
29 | would need to do considerable complications to fix the | 29 | goto out_err; |
30 | checksum which is defined as an 16bit accumulator. The | 30 | |
31 | fix alignment code is primarily for performance | 31 | /* |
32 | compatibility with 32bit and that will handle odd | 32 | * Why 6, not 7? To handle odd addresses aligned we |
33 | addresses slowly too. */ | 33 | * would need to do considerable complications to fix the |
34 | if (unlikely((unsigned long)src & 6)) { | 34 | * checksum which is defined as an 16bit accumulator. The |
35 | while (((unsigned long)src & 6) && len >= 2) { | 35 | * fix alignment code is primarily for performance |
36 | __u16 val16; | 36 | * compatibility with 32bit and that will handle odd |
37 | *errp = __get_user(val16, (const __u16 __user *)src); | 37 | * addresses slowly too. |
38 | if (*errp) | 38 | */ |
39 | return isum; | 39 | if (unlikely((unsigned long)src & 6)) { |
40 | *(__u16 *)dst = val16; | 40 | while (((unsigned long)src & 6) && len >= 2) { |
41 | isum = (__force __wsum)add32_with_carry( | 41 | __u16 val16; |
42 | (__force unsigned)isum, val16); | 42 | |
43 | src += 2; | 43 | *errp = __get_user(val16, (const __u16 __user *)src); |
44 | dst += 2; | 44 | if (*errp) |
45 | len -= 2; | 45 | return isum; |
46 | } | 46 | |
47 | *(__u16 *)dst = val16; | ||
48 | isum = (__force __wsum)add32_with_carry( | ||
49 | (__force unsigned)isum, val16); | ||
50 | src += 2; | ||
51 | dst += 2; | ||
52 | len -= 2; | ||
47 | } | 53 | } |
48 | isum = csum_partial_copy_generic((__force const void *)src, | 54 | } |
49 | dst, len, isum, errp, NULL); | 55 | isum = csum_partial_copy_generic((__force const void *)src, |
50 | if (likely(*errp == 0)) | 56 | dst, len, isum, errp, NULL); |
51 | return isum; | 57 | if (unlikely(*errp)) |
52 | } | 58 | goto out_err; |
59 | |||
60 | return isum; | ||
61 | |||
62 | out_err: | ||
53 | *errp = -EFAULT; | 63 | *errp = -EFAULT; |
54 | memset(dst,0,len); | 64 | memset(dst, 0, len); |
55 | return isum; | ||
56 | } | ||
57 | 65 | ||
66 | return isum; | ||
67 | } | ||
58 | EXPORT_SYMBOL(csum_partial_copy_from_user); | 68 | EXPORT_SYMBOL(csum_partial_copy_from_user); |
59 | 69 | ||
60 | /** | 70 | /** |
61 | * csum_partial_copy_to_user - Copy and checksum to user space. | 71 | * csum_partial_copy_to_user - Copy and checksum to user space. |
62 | * @src: source address | 72 | * @src: source address |
63 | * @dst: destination address (user space) | 73 | * @dst: destination address (user space) |
64 | * @len: number of bytes to be copied. | 74 | * @len: number of bytes to be copied. |
65 | * @isum: initial sum that is added into the result (32bit unfolded) | 75 | * @isum: initial sum that is added into the result (32bit unfolded) |
66 | * @errp: set to -EFAULT for an bad destination address. | 76 | * @errp: set to -EFAULT for an bad destination address. |
67 | * | 77 | * |
68 | * Returns an 32bit unfolded checksum of the buffer. | 78 | * Returns an 32bit unfolded checksum of the buffer. |
69 | * src and dst are best aligned to 64bits. | 79 | * src and dst are best aligned to 64bits. |
70 | */ | 80 | */ |
71 | __wsum | 81 | __wsum |
72 | csum_partial_copy_to_user(const void *src, void __user *dst, | 82 | csum_partial_copy_to_user(const void *src, void __user *dst, |
73 | int len, __wsum isum, int *errp) | 83 | int len, __wsum isum, int *errp) |
74 | { | 84 | { |
75 | might_sleep(); | 85 | might_sleep(); |
86 | |||
76 | if (unlikely(!access_ok(VERIFY_WRITE, dst, len))) { | 87 | if (unlikely(!access_ok(VERIFY_WRITE, dst, len))) { |
77 | *errp = -EFAULT; | 88 | *errp = -EFAULT; |
78 | return 0; | 89 | return 0; |
79 | } | 90 | } |
80 | 91 | ||
81 | if (unlikely((unsigned long)dst & 6)) { | 92 | if (unlikely((unsigned long)dst & 6)) { |
82 | while (((unsigned long)dst & 6) && len >= 2) { | 93 | while (((unsigned long)dst & 6) && len >= 2) { |
83 | __u16 val16 = *(__u16 *)src; | 94 | __u16 val16 = *(__u16 *)src; |
95 | |||
84 | isum = (__force __wsum)add32_with_carry( | 96 | isum = (__force __wsum)add32_with_carry( |
85 | (__force unsigned)isum, val16); | 97 | (__force unsigned)isum, val16); |
86 | *errp = __put_user(val16, (__u16 __user *)dst); | 98 | *errp = __put_user(val16, (__u16 __user *)dst); |
87 | if (*errp) | 99 | if (*errp) |
88 | return isum; | 100 | return isum; |
89 | src += 2; | 101 | src += 2; |
90 | dst += 2; | 102 | dst += 2; |
91 | len -= 2; | 103 | len -= 2; |
92 | } | 104 | } |
93 | } | 105 | } |
94 | 106 | ||
95 | *errp = 0; | 107 | *errp = 0; |
96 | return csum_partial_copy_generic(src, (void __force *)dst,len,isum,NULL,errp); | 108 | return csum_partial_copy_generic(src, (void __force *)dst, |
97 | } | 109 | len, isum, NULL, errp); |
98 | 110 | } | |
99 | EXPORT_SYMBOL(csum_partial_copy_to_user); | 111 | EXPORT_SYMBOL(csum_partial_copy_to_user); |
100 | 112 | ||
101 | /** | 113 | /** |
102 | * csum_partial_copy_nocheck - Copy and checksum. | 114 | * csum_partial_copy_nocheck - Copy and checksum. |
103 | * @src: source address | 115 | * @src: source address |
104 | * @dst: destination address | 116 | * @dst: destination address |
105 | * @len: number of bytes to be copied. | 117 | * @len: number of bytes to be copied. |
106 | * @isum: initial sum that is added into the result (32bit unfolded) | 118 | * @isum: initial sum that is added into the result (32bit unfolded) |
107 | * | 119 | * |
108 | * Returns an 32bit unfolded checksum of the buffer. | 120 | * Returns an 32bit unfolded checksum of the buffer. |
109 | */ | 121 | */ |
110 | __wsum | 122 | __wsum |
111 | csum_partial_copy_nocheck(const void *src, void *dst, int len, __wsum sum) | 123 | csum_partial_copy_nocheck(const void *src, void *dst, int len, __wsum sum) |
112 | { | 124 | { |
113 | return csum_partial_copy_generic(src,dst,len,sum,NULL,NULL); | 125 | return csum_partial_copy_generic(src, dst, len, sum, NULL, NULL); |
114 | } | 126 | } |
115 | EXPORT_SYMBOL(csum_partial_copy_nocheck); | 127 | EXPORT_SYMBOL(csum_partial_copy_nocheck); |
116 | 128 | ||
117 | __sum16 csum_ipv6_magic(const struct in6_addr *saddr, | 129 | __sum16 csum_ipv6_magic(const struct in6_addr *saddr, |
@@ -119,17 +131,20 @@ __sum16 csum_ipv6_magic(const struct in6_addr *saddr, | |||
119 | __u32 len, unsigned short proto, __wsum sum) | 131 | __u32 len, unsigned short proto, __wsum sum) |
120 | { | 132 | { |
121 | __u64 rest, sum64; | 133 | __u64 rest, sum64; |
122 | 134 | ||
123 | rest = (__force __u64)htonl(len) + (__force __u64)htons(proto) + | 135 | rest = (__force __u64)htonl(len) + (__force __u64)htons(proto) + |
124 | (__force __u64)sum; | 136 | (__force __u64)sum; |
125 | asm(" addq (%[saddr]),%[sum]\n" | ||
126 | " adcq 8(%[saddr]),%[sum]\n" | ||
127 | " adcq (%[daddr]),%[sum]\n" | ||
128 | " adcq 8(%[daddr]),%[sum]\n" | ||
129 | " adcq $0,%[sum]\n" | ||
130 | : [sum] "=r" (sum64) | ||
131 | : "[sum]" (rest),[saddr] "r" (saddr), [daddr] "r" (daddr)); | ||
132 | return csum_fold((__force __wsum)add32_with_carry(sum64 & 0xffffffff, sum64>>32)); | ||
133 | } | ||
134 | 137 | ||
138 | asm(" addq (%[saddr]),%[sum]\n" | ||
139 | " adcq 8(%[saddr]),%[sum]\n" | ||
140 | " adcq (%[daddr]),%[sum]\n" | ||
141 | " adcq 8(%[daddr]),%[sum]\n" | ||
142 | " adcq $0,%[sum]\n" | ||
143 | |||
144 | : [sum] "=r" (sum64) | ||
145 | : "[sum]" (rest), [saddr] "r" (saddr), [daddr] "r" (daddr)); | ||
146 | |||
147 | return csum_fold( | ||
148 | (__force __wsum)add32_with_carry(sum64 & 0xffffffff, sum64>>32)); | ||
149 | } | ||
135 | EXPORT_SYMBOL(csum_ipv6_magic); | 150 | EXPORT_SYMBOL(csum_ipv6_magic); |
diff --git a/arch/x86/lib/io_64.c b/arch/x86/lib/io_64.c index 87b4a4e18039..3f1eb59b5f08 100644 --- a/arch/x86/lib/io_64.c +++ b/arch/x86/lib/io_64.c | |||
@@ -1,23 +1,25 @@ | |||
1 | #include <linux/string.h> | 1 | #include <linux/string.h> |
2 | #include <asm/io.h> | ||
3 | #include <linux/module.h> | 2 | #include <linux/module.h> |
3 | #include <asm/io.h> | ||
4 | 4 | ||
5 | void __memcpy_toio(unsigned long dst,const void*src,unsigned len) | 5 | void __memcpy_toio(unsigned long dst, const void *src, unsigned len) |
6 | { | 6 | { |
7 | __inline_memcpy((void *) dst,src,len); | 7 | __inline_memcpy((void *)dst, src, len); |
8 | } | 8 | } |
9 | EXPORT_SYMBOL(__memcpy_toio); | 9 | EXPORT_SYMBOL(__memcpy_toio); |
10 | 10 | ||
11 | void __memcpy_fromio(void *dst,unsigned long src,unsigned len) | 11 | void __memcpy_fromio(void *dst, unsigned long src, unsigned len) |
12 | { | 12 | { |
13 | __inline_memcpy(dst,(const void *) src,len); | 13 | __inline_memcpy(dst, (const void *)src, len); |
14 | } | 14 | } |
15 | EXPORT_SYMBOL(__memcpy_fromio); | 15 | EXPORT_SYMBOL(__memcpy_fromio); |
16 | 16 | ||
17 | void memset_io(volatile void __iomem *a, int b, size_t c) | 17 | void memset_io(volatile void __iomem *a, int b, size_t c) |
18 | { | 18 | { |
19 | /* XXX: memset can mangle the IO patterns quite a bit. | 19 | /* |
20 | perhaps it would be better to use a dumb one */ | 20 | * TODO: memset can mangle the IO patterns quite a bit. |
21 | memset((void *)a,b,c); | 21 | * perhaps it would be better to use a dumb one: |
22 | */ | ||
23 | memset((void *)a, b, c); | ||
22 | } | 24 | } |
23 | EXPORT_SYMBOL(memset_io); | 25 | EXPORT_SYMBOL(memset_io); |
diff --git a/arch/x86/mm/init_64.c b/arch/x86/mm/init_64.c index a4a9cccdd4f2..bb652f5a93fb 100644 --- a/arch/x86/mm/init_64.c +++ b/arch/x86/mm/init_64.c | |||
@@ -171,6 +171,33 @@ set_pte_phys(unsigned long vaddr, unsigned long phys, pgprot_t prot) | |||
171 | __flush_tlb_one(vaddr); | 171 | __flush_tlb_one(vaddr); |
172 | } | 172 | } |
173 | 173 | ||
174 | /* | ||
175 | * The head.S code sets up the kernel high mapping from: | ||
176 | * __START_KERNEL_map to __START_KERNEL_map + KERNEL_TEXT_SIZE | ||
177 | * | ||
178 | * phys_addr holds the negative offset to the kernel, which is added | ||
179 | * to the compile time generated pmds. This results in invalid pmds up | ||
180 | * to the point where we hit the physaddr 0 mapping. | ||
181 | * | ||
182 | * We limit the mappings to the region from _text to _end. _end is | ||
183 | * rounded up to the 2MB boundary. This catches the invalid pmds as | ||
184 | * well, as they are located before _text: | ||
185 | */ | ||
186 | void __init cleanup_highmap(void) | ||
187 | { | ||
188 | unsigned long vaddr = __START_KERNEL_map; | ||
189 | unsigned long end = round_up((unsigned long)_end, PMD_SIZE) - 1; | ||
190 | pmd_t *pmd = level2_kernel_pgt; | ||
191 | pmd_t *last_pmd = pmd + PTRS_PER_PMD; | ||
192 | |||
193 | for (; pmd < last_pmd; pmd++, vaddr += PMD_SIZE) { | ||
194 | if (!pmd_present(*pmd)) | ||
195 | continue; | ||
196 | if (vaddr < (unsigned long) _text || vaddr > end) | ||
197 | set_pmd(pmd, __pmd(0)); | ||
198 | } | ||
199 | } | ||
200 | |||
174 | /* NOTE: this is meant to be run only at boot */ | 201 | /* NOTE: this is meant to be run only at boot */ |
175 | void __init | 202 | void __init |
176 | __set_fixmap(enum fixed_addresses idx, unsigned long phys, pgprot_t prot) | 203 | __set_fixmap(enum fixed_addresses idx, unsigned long phys, pgprot_t prot) |
diff --git a/arch/x86/mm/ioremap.c b/arch/x86/mm/ioremap.c index 9f42d7e9c158..882328efc3db 100644 --- a/arch/x86/mm/ioremap.c +++ b/arch/x86/mm/ioremap.c | |||
@@ -42,6 +42,22 @@ int page_is_ram(unsigned long pagenr) | |||
42 | unsigned long addr, end; | 42 | unsigned long addr, end; |
43 | int i; | 43 | int i; |
44 | 44 | ||
45 | /* | ||
46 | * A special case is the first 4Kb of memory; | ||
47 | * This is a BIOS owned area, not kernel ram, but generally | ||
48 | * not listed as such in the E820 table. | ||
49 | */ | ||
50 | if (pagenr == 0) | ||
51 | return 0; | ||
52 | |||
53 | /* | ||
54 | * Second special case: Some BIOSen report the PC BIOS | ||
55 | * area (640->1Mb) as ram even though it is not. | ||
56 | */ | ||
57 | if (pagenr >= (BIOS_BEGIN >> PAGE_SHIFT) && | ||
58 | pagenr < (BIOS_END >> PAGE_SHIFT)) | ||
59 | return 0; | ||
60 | |||
45 | for (i = 0; i < e820.nr_map; i++) { | 61 | for (i = 0; i < e820.nr_map; i++) { |
46 | /* | 62 | /* |
47 | * Not usable memory: | 63 | * Not usable memory: |
@@ -51,14 +67,6 @@ int page_is_ram(unsigned long pagenr) | |||
51 | addr = (e820.map[i].addr + PAGE_SIZE-1) >> PAGE_SHIFT; | 67 | addr = (e820.map[i].addr + PAGE_SIZE-1) >> PAGE_SHIFT; |
52 | end = (e820.map[i].addr + e820.map[i].size) >> PAGE_SHIFT; | 68 | end = (e820.map[i].addr + e820.map[i].size) >> PAGE_SHIFT; |
53 | 69 | ||
54 | /* | ||
55 | * Sanity check: Some BIOSen report areas as RAM that | ||
56 | * are not. Notably the 640->1Mb area, which is the | ||
57 | * PCI BIOS area. | ||
58 | */ | ||
59 | if (addr >= (BIOS_BEGIN >> PAGE_SHIFT) && | ||
60 | end < (BIOS_END >> PAGE_SHIFT)) | ||
61 | continue; | ||
62 | 70 | ||
63 | if ((pagenr >= addr) && (pagenr < end)) | 71 | if ((pagenr >= addr) && (pagenr < end)) |
64 | return 1; | 72 | return 1; |
@@ -126,6 +134,8 @@ static void __iomem *__ioremap(unsigned long phys_addr, unsigned long size, | |||
126 | return NULL; | 134 | return NULL; |
127 | } | 135 | } |
128 | 136 | ||
137 | WARN_ON_ONCE(page_is_ram(pfn)); | ||
138 | |||
129 | switch (mode) { | 139 | switch (mode) { |
130 | case IOR_MODE_UNCACHED: | 140 | case IOR_MODE_UNCACHED: |
131 | default: | 141 | default: |
diff --git a/arch/x86/mm/numa_64.c b/arch/x86/mm/numa_64.c index 1aecc658cd7d..59898fb0a4aa 100644 --- a/arch/x86/mm/numa_64.c +++ b/arch/x86/mm/numa_64.c | |||
@@ -494,11 +494,13 @@ void __init numa_initmem_init(unsigned long start_pfn, unsigned long end_pfn) | |||
494 | int i; | 494 | int i; |
495 | 495 | ||
496 | nodes_clear(node_possible_map); | 496 | nodes_clear(node_possible_map); |
497 | nodes_clear(node_online_map); | ||
497 | 498 | ||
498 | #ifdef CONFIG_NUMA_EMU | 499 | #ifdef CONFIG_NUMA_EMU |
499 | if (cmdline && !numa_emulation(start_pfn, end_pfn)) | 500 | if (cmdline && !numa_emulation(start_pfn, end_pfn)) |
500 | return; | 501 | return; |
501 | nodes_clear(node_possible_map); | 502 | nodes_clear(node_possible_map); |
503 | nodes_clear(node_online_map); | ||
502 | #endif | 504 | #endif |
503 | 505 | ||
504 | #ifdef CONFIG_ACPI_NUMA | 506 | #ifdef CONFIG_ACPI_NUMA |
@@ -506,6 +508,7 @@ void __init numa_initmem_init(unsigned long start_pfn, unsigned long end_pfn) | |||
506 | end_pfn << PAGE_SHIFT)) | 508 | end_pfn << PAGE_SHIFT)) |
507 | return; | 509 | return; |
508 | nodes_clear(node_possible_map); | 510 | nodes_clear(node_possible_map); |
511 | nodes_clear(node_online_map); | ||
509 | #endif | 512 | #endif |
510 | 513 | ||
511 | #ifdef CONFIG_K8_NUMA | 514 | #ifdef CONFIG_K8_NUMA |
@@ -513,6 +516,7 @@ void __init numa_initmem_init(unsigned long start_pfn, unsigned long end_pfn) | |||
513 | end_pfn<<PAGE_SHIFT)) | 516 | end_pfn<<PAGE_SHIFT)) |
514 | return; | 517 | return; |
515 | nodes_clear(node_possible_map); | 518 | nodes_clear(node_possible_map); |
519 | nodes_clear(node_online_map); | ||
516 | #endif | 520 | #endif |
517 | printk(KERN_INFO "%s\n", | 521 | printk(KERN_INFO "%s\n", |
518 | numa_off ? "NUMA turned off" : "No NUMA configuration found"); | 522 | numa_off ? "NUMA turned off" : "No NUMA configuration found"); |
@@ -524,7 +528,6 @@ void __init numa_initmem_init(unsigned long start_pfn, unsigned long end_pfn) | |||
524 | memnode_shift = 63; | 528 | memnode_shift = 63; |
525 | memnodemap = memnode.embedded_map; | 529 | memnodemap = memnode.embedded_map; |
526 | memnodemap[0] = 0; | 530 | memnodemap[0] = 0; |
527 | nodes_clear(node_online_map); | ||
528 | node_set_online(0); | 531 | node_set_online(0); |
529 | node_set(0, node_possible_map); | 532 | node_set(0, node_possible_map); |
530 | for (i = 0; i < NR_CPUS; i++) | 533 | for (i = 0; i < NR_CPUS; i++) |
diff --git a/arch/x86/mm/pageattr.c b/arch/x86/mm/pageattr.c index 4119379f80ff..464d8fc21ce6 100644 --- a/arch/x86/mm/pageattr.c +++ b/arch/x86/mm/pageattr.c | |||
@@ -16,6 +16,7 @@ | |||
16 | #include <asm/sections.h> | 16 | #include <asm/sections.h> |
17 | #include <asm/uaccess.h> | 17 | #include <asm/uaccess.h> |
18 | #include <asm/pgalloc.h> | 18 | #include <asm/pgalloc.h> |
19 | #include <asm/proto.h> | ||
19 | 20 | ||
20 | /* | 21 | /* |
21 | * The current flushing context - we pass it instead of 5 arguments: | 22 | * The current flushing context - we pass it instead of 5 arguments: |
@@ -26,8 +27,23 @@ struct cpa_data { | |||
26 | pgprot_t mask_clr; | 27 | pgprot_t mask_clr; |
27 | int numpages; | 28 | int numpages; |
28 | int flushtlb; | 29 | int flushtlb; |
30 | unsigned long pfn; | ||
29 | }; | 31 | }; |
30 | 32 | ||
33 | #ifdef CONFIG_X86_64 | ||
34 | |||
35 | static inline unsigned long highmap_start_pfn(void) | ||
36 | { | ||
37 | return __pa(_text) >> PAGE_SHIFT; | ||
38 | } | ||
39 | |||
40 | static inline unsigned long highmap_end_pfn(void) | ||
41 | { | ||
42 | return __pa(round_up((unsigned long)_end, PMD_SIZE)) >> PAGE_SHIFT; | ||
43 | } | ||
44 | |||
45 | #endif | ||
46 | |||
31 | static inline int | 47 | static inline int |
32 | within(unsigned long addr, unsigned long start, unsigned long end) | 48 | within(unsigned long addr, unsigned long start, unsigned long end) |
33 | { | 49 | { |
@@ -123,29 +139,14 @@ static void cpa_flush_range(unsigned long start, int numpages, int cache) | |||
123 | } | 139 | } |
124 | } | 140 | } |
125 | 141 | ||
126 | #define HIGH_MAP_START __START_KERNEL_map | ||
127 | #define HIGH_MAP_END (__START_KERNEL_map + KERNEL_TEXT_SIZE) | ||
128 | |||
129 | |||
130 | /* | ||
131 | * Converts a virtual address to a X86-64 highmap address | ||
132 | */ | ||
133 | static unsigned long virt_to_highmap(void *address) | ||
134 | { | ||
135 | #ifdef CONFIG_X86_64 | ||
136 | return __pa((unsigned long)address) + HIGH_MAP_START - phys_base; | ||
137 | #else | ||
138 | return (unsigned long)address; | ||
139 | #endif | ||
140 | } | ||
141 | |||
142 | /* | 142 | /* |
143 | * Certain areas of memory on x86 require very specific protection flags, | 143 | * Certain areas of memory on x86 require very specific protection flags, |
144 | * for example the BIOS area or kernel text. Callers don't always get this | 144 | * for example the BIOS area or kernel text. Callers don't always get this |
145 | * right (again, ioremap() on BIOS memory is not uncommon) so this function | 145 | * right (again, ioremap() on BIOS memory is not uncommon) so this function |
146 | * checks and fixes these known static required protection bits. | 146 | * checks and fixes these known static required protection bits. |
147 | */ | 147 | */ |
148 | static inline pgprot_t static_protections(pgprot_t prot, unsigned long address) | 148 | static inline pgprot_t static_protections(pgprot_t prot, unsigned long address, |
149 | unsigned long pfn) | ||
149 | { | 150 | { |
150 | pgprot_t forbidden = __pgprot(0); | 151 | pgprot_t forbidden = __pgprot(0); |
151 | 152 | ||
@@ -153,30 +154,23 @@ static inline pgprot_t static_protections(pgprot_t prot, unsigned long address) | |||
153 | * The BIOS area between 640k and 1Mb needs to be executable for | 154 | * The BIOS area between 640k and 1Mb needs to be executable for |
154 | * PCI BIOS based config access (CONFIG_PCI_GOBIOS) support. | 155 | * PCI BIOS based config access (CONFIG_PCI_GOBIOS) support. |
155 | */ | 156 | */ |
156 | if (within(__pa(address), BIOS_BEGIN, BIOS_END)) | 157 | if (within(pfn, BIOS_BEGIN >> PAGE_SHIFT, BIOS_END >> PAGE_SHIFT)) |
157 | pgprot_val(forbidden) |= _PAGE_NX; | 158 | pgprot_val(forbidden) |= _PAGE_NX; |
158 | 159 | ||
159 | /* | 160 | /* |
160 | * The kernel text needs to be executable for obvious reasons | 161 | * The kernel text needs to be executable for obvious reasons |
161 | * Does not cover __inittext since that is gone later on | 162 | * Does not cover __inittext since that is gone later on. On |
163 | * 64bit we do not enforce !NX on the low mapping | ||
162 | */ | 164 | */ |
163 | if (within(address, (unsigned long)_text, (unsigned long)_etext)) | 165 | if (within(address, (unsigned long)_text, (unsigned long)_etext)) |
164 | pgprot_val(forbidden) |= _PAGE_NX; | 166 | pgprot_val(forbidden) |= _PAGE_NX; |
165 | /* | ||
166 | * Do the same for the x86-64 high kernel mapping | ||
167 | */ | ||
168 | if (within(address, virt_to_highmap(_text), virt_to_highmap(_etext))) | ||
169 | pgprot_val(forbidden) |= _PAGE_NX; | ||
170 | 167 | ||
171 | /* The .rodata section needs to be read-only */ | ||
172 | if (within(address, (unsigned long)__start_rodata, | ||
173 | (unsigned long)__end_rodata)) | ||
174 | pgprot_val(forbidden) |= _PAGE_RW; | ||
175 | /* | 168 | /* |
176 | * Do the same for the x86-64 high kernel mapping | 169 | * The .rodata section needs to be read-only. Using the pfn |
170 | * catches all aliases. | ||
177 | */ | 171 | */ |
178 | if (within(address, virt_to_highmap(__start_rodata), | 172 | if (within(pfn, __pa((unsigned long)__start_rodata) >> PAGE_SHIFT, |
179 | virt_to_highmap(__end_rodata))) | 173 | __pa((unsigned long)__end_rodata) >> PAGE_SHIFT)) |
180 | pgprot_val(forbidden) |= _PAGE_RW; | 174 | pgprot_val(forbidden) |= _PAGE_RW; |
181 | 175 | ||
182 | prot = __pgprot(pgprot_val(prot) & ~pgprot_val(forbidden)); | 176 | prot = __pgprot(pgprot_val(prot) & ~pgprot_val(forbidden)); |
@@ -253,7 +247,7 @@ static int | |||
253 | try_preserve_large_page(pte_t *kpte, unsigned long address, | 247 | try_preserve_large_page(pte_t *kpte, unsigned long address, |
254 | struct cpa_data *cpa) | 248 | struct cpa_data *cpa) |
255 | { | 249 | { |
256 | unsigned long nextpage_addr, numpages, pmask, psize, flags, addr; | 250 | unsigned long nextpage_addr, numpages, pmask, psize, flags, addr, pfn; |
257 | pte_t new_pte, old_pte, *tmp; | 251 | pte_t new_pte, old_pte, *tmp; |
258 | pgprot_t old_prot, new_prot; | 252 | pgprot_t old_prot, new_prot; |
259 | int i, do_split = 1; | 253 | int i, do_split = 1; |
@@ -301,7 +295,15 @@ try_preserve_large_page(pte_t *kpte, unsigned long address, | |||
301 | 295 | ||
302 | pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr); | 296 | pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr); |
303 | pgprot_val(new_prot) |= pgprot_val(cpa->mask_set); | 297 | pgprot_val(new_prot) |= pgprot_val(cpa->mask_set); |
304 | new_prot = static_protections(new_prot, address); | 298 | |
299 | /* | ||
300 | * old_pte points to the large page base address. So we need | ||
301 | * to add the offset of the virtual address: | ||
302 | */ | ||
303 | pfn = pte_pfn(old_pte) + ((address & (psize - 1)) >> PAGE_SHIFT); | ||
304 | cpa->pfn = pfn; | ||
305 | |||
306 | new_prot = static_protections(new_prot, address, pfn); | ||
305 | 307 | ||
306 | /* | 308 | /* |
307 | * We need to check the full range, whether | 309 | * We need to check the full range, whether |
@@ -309,8 +311,9 @@ try_preserve_large_page(pte_t *kpte, unsigned long address, | |||
309 | * the pages in the range we try to preserve: | 311 | * the pages in the range we try to preserve: |
310 | */ | 312 | */ |
311 | addr = address + PAGE_SIZE; | 313 | addr = address + PAGE_SIZE; |
312 | for (i = 1; i < cpa->numpages; i++, addr += PAGE_SIZE) { | 314 | pfn++; |
313 | pgprot_t chk_prot = static_protections(new_prot, addr); | 315 | for (i = 1; i < cpa->numpages; i++, addr += PAGE_SIZE, pfn++) { |
316 | pgprot_t chk_prot = static_protections(new_prot, addr, pfn); | ||
314 | 317 | ||
315 | if (pgprot_val(chk_prot) != pgprot_val(new_prot)) | 318 | if (pgprot_val(chk_prot) != pgprot_val(new_prot)) |
316 | goto out_unlock; | 319 | goto out_unlock; |
@@ -505,46 +508,46 @@ out_unlock: | |||
505 | return 0; | 508 | return 0; |
506 | } | 509 | } |
507 | 510 | ||
508 | static int __change_page_attr(unsigned long address, struct cpa_data *cpa) | 511 | static int __change_page_attr(struct cpa_data *cpa, int primary) |
509 | { | 512 | { |
513 | unsigned long address = cpa->vaddr; | ||
510 | int do_split, err; | 514 | int do_split, err; |
511 | unsigned int level; | 515 | unsigned int level; |
512 | struct page *kpte_page; | 516 | pte_t *kpte, old_pte; |
513 | pte_t *kpte; | ||
514 | 517 | ||
515 | repeat: | 518 | repeat: |
516 | kpte = lookup_address(address, &level); | 519 | kpte = lookup_address(address, &level); |
517 | if (!kpte) | 520 | if (!kpte) |
518 | return -EINVAL; | 521 | return primary ? -EINVAL : 0; |
519 | 522 | ||
520 | kpte_page = virt_to_page(kpte); | 523 | old_pte = *kpte; |
521 | BUG_ON(PageLRU(kpte_page)); | 524 | if (!pte_val(old_pte)) { |
522 | BUG_ON(PageCompound(kpte_page)); | 525 | if (!primary) |
526 | return 0; | ||
527 | printk(KERN_WARNING "CPA: called for zero pte. " | ||
528 | "vaddr = %lx cpa->vaddr = %lx\n", address, | ||
529 | cpa->vaddr); | ||
530 | WARN_ON(1); | ||
531 | return -EINVAL; | ||
532 | } | ||
523 | 533 | ||
524 | if (level == PG_LEVEL_4K) { | 534 | if (level == PG_LEVEL_4K) { |
525 | pte_t new_pte, old_pte = *kpte; | 535 | pte_t new_pte; |
526 | pgprot_t new_prot = pte_pgprot(old_pte); | 536 | pgprot_t new_prot = pte_pgprot(old_pte); |
527 | 537 | unsigned long pfn = pte_pfn(old_pte); | |
528 | if(!pte_val(old_pte)) { | ||
529 | printk(KERN_WARNING "CPA: called for zero pte. " | ||
530 | "vaddr = %lx cpa->vaddr = %lx\n", address, | ||
531 | cpa->vaddr); | ||
532 | WARN_ON(1); | ||
533 | return -EINVAL; | ||
534 | } | ||
535 | 538 | ||
536 | pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr); | 539 | pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr); |
537 | pgprot_val(new_prot) |= pgprot_val(cpa->mask_set); | 540 | pgprot_val(new_prot) |= pgprot_val(cpa->mask_set); |
538 | 541 | ||
539 | new_prot = static_protections(new_prot, address); | 542 | new_prot = static_protections(new_prot, address, pfn); |
540 | 543 | ||
541 | /* | 544 | /* |
542 | * We need to keep the pfn from the existing PTE, | 545 | * We need to keep the pfn from the existing PTE, |
543 | * after all we're only going to change it's attributes | 546 | * after all we're only going to change it's attributes |
544 | * not the memory it points to | 547 | * not the memory it points to |
545 | */ | 548 | */ |
546 | new_pte = pfn_pte(pte_pfn(old_pte), canon_pgprot(new_prot)); | 549 | new_pte = pfn_pte(pfn, canon_pgprot(new_prot)); |
547 | 550 | cpa->pfn = pfn; | |
548 | /* | 551 | /* |
549 | * Do we really change anything ? | 552 | * Do we really change anything ? |
550 | */ | 553 | */ |
@@ -581,67 +584,59 @@ repeat: | |||
581 | return err; | 584 | return err; |
582 | } | 585 | } |
583 | 586 | ||
584 | /** | 587 | static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias); |
585 | * change_page_attr_addr - Change page table attributes in linear mapping | 588 | |
586 | * @address: Virtual address in linear mapping. | 589 | static int cpa_process_alias(struct cpa_data *cpa) |
587 | * @prot: New page table attribute (PAGE_*) | ||
588 | * | ||
589 | * Change page attributes of a page in the direct mapping. This is a variant | ||
590 | * of change_page_attr() that also works on memory holes that do not have | ||
591 | * mem_map entry (pfn_valid() is false). | ||
592 | * | ||
593 | * See change_page_attr() documentation for more details. | ||
594 | * | ||
595 | * Modules and drivers should use the set_memory_* APIs instead. | ||
596 | */ | ||
597 | static int change_page_attr_addr(struct cpa_data *cpa) | ||
598 | { | 590 | { |
599 | int err; | 591 | struct cpa_data alias_cpa; |
600 | unsigned long address = cpa->vaddr; | 592 | int ret = 0; |
601 | 593 | ||
602 | #ifdef CONFIG_X86_64 | 594 | if (cpa->pfn > max_pfn_mapped) |
603 | unsigned long phys_addr = __pa(address); | 595 | return 0; |
604 | 596 | ||
605 | /* | 597 | /* |
606 | * If we are inside the high mapped kernel range, then we | 598 | * No need to redo, when the primary call touched the direct |
607 | * fixup the low mapping first. __va() returns the virtual | 599 | * mapping already: |
608 | * address in the linear mapping: | ||
609 | */ | 600 | */ |
610 | if (within(address, HIGH_MAP_START, HIGH_MAP_END)) | 601 | if (!within(cpa->vaddr, PAGE_OFFSET, |
611 | address = (unsigned long) __va(phys_addr); | 602 | PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT))) { |
612 | #endif | ||
613 | 603 | ||
614 | err = __change_page_attr(address, cpa); | 604 | alias_cpa = *cpa; |
615 | if (err) | 605 | alias_cpa.vaddr = (unsigned long) __va(cpa->pfn << PAGE_SHIFT); |
616 | return err; | 606 | |
607 | ret = __change_page_attr_set_clr(&alias_cpa, 0); | ||
608 | } | ||
617 | 609 | ||
618 | #ifdef CONFIG_X86_64 | 610 | #ifdef CONFIG_X86_64 |
611 | if (ret) | ||
612 | return ret; | ||
613 | /* | ||
614 | * No need to redo, when the primary call touched the high | ||
615 | * mapping already: | ||
616 | */ | ||
617 | if (within(cpa->vaddr, (unsigned long) _text, (unsigned long) _end)) | ||
618 | return 0; | ||
619 | |||
619 | /* | 620 | /* |
620 | * If the physical address is inside the kernel map, we need | 621 | * If the physical address is inside the kernel map, we need |
621 | * to touch the high mapped kernel as well: | 622 | * to touch the high mapped kernel as well: |
622 | */ | 623 | */ |
623 | if (within(phys_addr, 0, KERNEL_TEXT_SIZE)) { | 624 | if (!within(cpa->pfn, highmap_start_pfn(), highmap_end_pfn())) |
624 | /* | 625 | return 0; |
625 | * Calc the high mapping address. See __phys_addr() | ||
626 | * for the non obvious details. | ||
627 | * | ||
628 | * Note that NX and other required permissions are | ||
629 | * checked in static_protections(). | ||
630 | */ | ||
631 | address = phys_addr + HIGH_MAP_START - phys_base; | ||
632 | 626 | ||
633 | /* | 627 | alias_cpa = *cpa; |
634 | * Our high aliases are imprecise, because we check | 628 | alias_cpa.vaddr = |
635 | * everything between 0 and KERNEL_TEXT_SIZE, so do | 629 | (cpa->pfn << PAGE_SHIFT) + __START_KERNEL_map - phys_base; |
636 | * not propagate lookup failures back to users: | 630 | |
637 | */ | 631 | /* |
638 | __change_page_attr(address, cpa); | 632 | * The high mapping range is imprecise, so ignore the return value. |
639 | } | 633 | */ |
634 | __change_page_attr_set_clr(&alias_cpa, 0); | ||
640 | #endif | 635 | #endif |
641 | return err; | 636 | return ret; |
642 | } | 637 | } |
643 | 638 | ||
644 | static int __change_page_attr_set_clr(struct cpa_data *cpa) | 639 | static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias) |
645 | { | 640 | { |
646 | int ret, numpages = cpa->numpages; | 641 | int ret, numpages = cpa->numpages; |
647 | 642 | ||
@@ -651,10 +646,17 @@ static int __change_page_attr_set_clr(struct cpa_data *cpa) | |||
651 | * preservation check. | 646 | * preservation check. |
652 | */ | 647 | */ |
653 | cpa->numpages = numpages; | 648 | cpa->numpages = numpages; |
654 | ret = change_page_attr_addr(cpa); | 649 | |
650 | ret = __change_page_attr(cpa, checkalias); | ||
655 | if (ret) | 651 | if (ret) |
656 | return ret; | 652 | return ret; |
657 | 653 | ||
654 | if (checkalias) { | ||
655 | ret = cpa_process_alias(cpa); | ||
656 | if (ret) | ||
657 | return ret; | ||
658 | } | ||
659 | |||
658 | /* | 660 | /* |
659 | * Adjust the number of pages with the result of the | 661 | * Adjust the number of pages with the result of the |
660 | * CPA operation. Either a large page has been | 662 | * CPA operation. Either a large page has been |
@@ -677,7 +679,7 @@ static int change_page_attr_set_clr(unsigned long addr, int numpages, | |||
677 | pgprot_t mask_set, pgprot_t mask_clr) | 679 | pgprot_t mask_set, pgprot_t mask_clr) |
678 | { | 680 | { |
679 | struct cpa_data cpa; | 681 | struct cpa_data cpa; |
680 | int ret, cache; | 682 | int ret, cache, checkalias; |
681 | 683 | ||
682 | /* | 684 | /* |
683 | * Check, if we are requested to change a not supported | 685 | * Check, if we are requested to change a not supported |
@@ -703,7 +705,10 @@ static int change_page_attr_set_clr(unsigned long addr, int numpages, | |||
703 | cpa.mask_clr = mask_clr; | 705 | cpa.mask_clr = mask_clr; |
704 | cpa.flushtlb = 0; | 706 | cpa.flushtlb = 0; |
705 | 707 | ||
706 | ret = __change_page_attr_set_clr(&cpa); | 708 | /* No alias checking for _NX bit modifications */ |
709 | checkalias = (pgprot_val(mask_set) | pgprot_val(mask_clr)) != _PAGE_NX; | ||
710 | |||
711 | ret = __change_page_attr_set_clr(&cpa, checkalias); | ||
707 | 712 | ||
708 | /* | 713 | /* |
709 | * Check whether we really changed something: | 714 | * Check whether we really changed something: |
@@ -841,7 +846,7 @@ static int __set_pages_p(struct page *page, int numpages) | |||
841 | .mask_set = __pgprot(_PAGE_PRESENT | _PAGE_RW), | 846 | .mask_set = __pgprot(_PAGE_PRESENT | _PAGE_RW), |
842 | .mask_clr = __pgprot(0)}; | 847 | .mask_clr = __pgprot(0)}; |
843 | 848 | ||
844 | return __change_page_attr_set_clr(&cpa); | 849 | return __change_page_attr_set_clr(&cpa, 1); |
845 | } | 850 | } |
846 | 851 | ||
847 | static int __set_pages_np(struct page *page, int numpages) | 852 | static int __set_pages_np(struct page *page, int numpages) |
@@ -851,7 +856,7 @@ static int __set_pages_np(struct page *page, int numpages) | |||
851 | .mask_set = __pgprot(0), | 856 | .mask_set = __pgprot(0), |
852 | .mask_clr = __pgprot(_PAGE_PRESENT | _PAGE_RW)}; | 857 | .mask_clr = __pgprot(_PAGE_PRESENT | _PAGE_RW)}; |
853 | 858 | ||
854 | return __change_page_attr_set_clr(&cpa); | 859 | return __change_page_attr_set_clr(&cpa, 1); |
855 | } | 860 | } |
856 | 861 | ||
857 | void kernel_map_pages(struct page *page, int numpages, int enable) | 862 | void kernel_map_pages(struct page *page, int numpages, int enable) |
@@ -894,7 +899,24 @@ void kernel_map_pages(struct page *page, int numpages, int enable) | |||
894 | */ | 899 | */ |
895 | cpa_fill_pool(); | 900 | cpa_fill_pool(); |
896 | } | 901 | } |
897 | #endif | 902 | |
903 | #ifdef CONFIG_HIBERNATION | ||
904 | |||
905 | bool kernel_page_present(struct page *page) | ||
906 | { | ||
907 | unsigned int level; | ||
908 | pte_t *pte; | ||
909 | |||
910 | if (PageHighMem(page)) | ||
911 | return false; | ||
912 | |||
913 | pte = lookup_address((unsigned long)page_address(page), &level); | ||
914 | return (pte_val(*pte) & _PAGE_PRESENT); | ||
915 | } | ||
916 | |||
917 | #endif /* CONFIG_HIBERNATION */ | ||
918 | |||
919 | #endif /* CONFIG_DEBUG_PAGEALLOC */ | ||
898 | 920 | ||
899 | /* | 921 | /* |
900 | * The testcases use internal knowledge of the implementation that shouldn't | 922 | * The testcases use internal knowledge of the implementation that shouldn't |
diff --git a/arch/x86/mm/srat_64.c b/arch/x86/mm/srat_64.c index ecd91ea8a8ae..845001c617cc 100644 --- a/arch/x86/mm/srat_64.c +++ b/arch/x86/mm/srat_64.c | |||
@@ -166,7 +166,8 @@ static inline int save_add_info(void) {return 0;} | |||
166 | * Both SPARSE and RESERVE need nodes_add information. | 166 | * Both SPARSE and RESERVE need nodes_add information. |
167 | * This code supports one contiguous hot add area per node. | 167 | * This code supports one contiguous hot add area per node. |
168 | */ | 168 | */ |
169 | static int reserve_hotadd(int node, unsigned long start, unsigned long end) | 169 | static int __init |
170 | reserve_hotadd(int node, unsigned long start, unsigned long end) | ||
170 | { | 171 | { |
171 | unsigned long s_pfn = start >> PAGE_SHIFT; | 172 | unsigned long s_pfn = start >> PAGE_SHIFT; |
172 | unsigned long e_pfn = end >> PAGE_SHIFT; | 173 | unsigned long e_pfn = end >> PAGE_SHIFT; |
diff --git a/arch/x86/pci/common.c b/arch/x86/pci/common.c index b7c67a187b6b..7b6e3bb9b28c 100644 --- a/arch/x86/pci/common.c +++ b/arch/x86/pci/common.c | |||
@@ -541,7 +541,7 @@ void pcibios_disable_device (struct pci_dev *dev) | |||
541 | pcibios_disable_irq(dev); | 541 | pcibios_disable_irq(dev); |
542 | } | 542 | } |
543 | 543 | ||
544 | struct pci_bus *pci_scan_bus_with_sysdata(int busno) | 544 | struct pci_bus *__devinit pci_scan_bus_with_sysdata(int busno) |
545 | { | 545 | { |
546 | struct pci_bus *bus = NULL; | 546 | struct pci_bus *bus = NULL; |
547 | struct pci_sysdata *sd; | 547 | struct pci_sysdata *sd; |
diff --git a/arch/x86/pci/irq.c b/arch/x86/pci/irq.c index ed07ce6c171b..a8715861877e 100644 --- a/arch/x86/pci/irq.c +++ b/arch/x86/pci/irq.c | |||
@@ -583,6 +583,10 @@ static __init int intel_router_probe(struct irq_router *r, struct pci_dev *route | |||
583 | case PCI_DEVICE_ID_INTEL_ICH9_4: | 583 | case PCI_DEVICE_ID_INTEL_ICH9_4: |
584 | case PCI_DEVICE_ID_INTEL_ICH9_5: | 584 | case PCI_DEVICE_ID_INTEL_ICH9_5: |
585 | case PCI_DEVICE_ID_INTEL_TOLAPAI_0: | 585 | case PCI_DEVICE_ID_INTEL_TOLAPAI_0: |
586 | case PCI_DEVICE_ID_INTEL_ICH10_0: | ||
587 | case PCI_DEVICE_ID_INTEL_ICH10_1: | ||
588 | case PCI_DEVICE_ID_INTEL_ICH10_2: | ||
589 | case PCI_DEVICE_ID_INTEL_ICH10_3: | ||
586 | r->name = "PIIX/ICH"; | 590 | r->name = "PIIX/ICH"; |
587 | r->get = pirq_piix_get; | 591 | r->get = pirq_piix_get; |
588 | r->set = pirq_piix_set; | 592 | r->set = pirq_piix_set; |
diff --git a/arch/x86/power/hibernate_asm_64.S b/arch/x86/power/hibernate_asm_64.S index 1deb3244b99b..000415947d93 100644 --- a/arch/x86/power/hibernate_asm_64.S +++ b/arch/x86/power/hibernate_asm_64.S | |||
@@ -20,6 +20,7 @@ | |||
20 | #include <asm/segment.h> | 20 | #include <asm/segment.h> |
21 | #include <asm/page.h> | 21 | #include <asm/page.h> |
22 | #include <asm/asm-offsets.h> | 22 | #include <asm/asm-offsets.h> |
23 | #include <asm/processor-flags.h> | ||
23 | 24 | ||
24 | ENTRY(swsusp_arch_suspend) | 25 | ENTRY(swsusp_arch_suspend) |
25 | movq $saved_context, %rax | 26 | movq $saved_context, %rax |
@@ -60,7 +61,7 @@ ENTRY(restore_image) | |||
60 | /* Flush TLB */ | 61 | /* Flush TLB */ |
61 | movq mmu_cr4_features(%rip), %rax | 62 | movq mmu_cr4_features(%rip), %rax |
62 | movq %rax, %rdx | 63 | movq %rax, %rdx |
63 | andq $~(1<<7), %rdx # PGE | 64 | andq $~(X86_CR4_PGE), %rdx |
64 | movq %rdx, %cr4; # turn off PGE | 65 | movq %rdx, %cr4; # turn off PGE |
65 | movq %cr3, %rcx; # flush TLB | 66 | movq %cr3, %rcx; # flush TLB |
66 | movq %rcx, %cr3; | 67 | movq %rcx, %cr3; |
@@ -112,7 +113,7 @@ ENTRY(restore_registers) | |||
112 | /* Flush TLB, including "global" things (vmalloc) */ | 113 | /* Flush TLB, including "global" things (vmalloc) */ |
113 | movq mmu_cr4_features(%rip), %rax | 114 | movq mmu_cr4_features(%rip), %rax |
114 | movq %rax, %rdx | 115 | movq %rax, %rdx |
115 | andq $~(1<<7), %rdx; # PGE | 116 | andq $~(X86_CR4_PGE), %rdx |
116 | movq %rdx, %cr4; # turn off PGE | 117 | movq %rdx, %cr4; # turn off PGE |
117 | movq %cr3, %rcx; # flush TLB | 118 | movq %cr3, %rcx; # flush TLB |
118 | movq %rcx, %cr3 | 119 | movq %rcx, %cr3 |
diff --git a/arch/xtensa/Makefile b/arch/xtensa/Makefile index 56685a883347..4bd1e14c6b90 100644 --- a/arch/xtensa/Makefile +++ b/arch/xtensa/Makefile | |||
@@ -59,7 +59,7 @@ LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name) | |||
59 | head-y := arch/xtensa/kernel/head.o | 59 | head-y := arch/xtensa/kernel/head.o |
60 | core-y += arch/xtensa/kernel/ arch/xtensa/mm/ | 60 | core-y += arch/xtensa/kernel/ arch/xtensa/mm/ |
61 | ifneq ($(PLATFORM),) | 61 | ifneq ($(PLATFORM),) |
62 | core-y += arch/xtensa/platform-$(PLATFORM)/ | 62 | core-y += arch/xtensa/platforms/$(PLATFORM)/ |
63 | endif | 63 | endif |
64 | libs-y += arch/xtensa/lib/ $(LIBGCC) | 64 | libs-y += arch/xtensa/lib/ $(LIBGCC) |
65 | 65 | ||
diff --git a/arch/xtensa/boot/boot-elf/Makefile b/arch/xtensa/boot/boot-elf/Makefile index 734db7f76583..08e8814f8c71 100644 --- a/arch/xtensa/boot/boot-elf/Makefile +++ b/arch/xtensa/boot/boot-elf/Makefile | |||
@@ -14,25 +14,26 @@ OBJCOPY_ARGS := -O elf32-xtensa-le | |||
14 | endif | 14 | endif |
15 | 15 | ||
16 | export OBJCOPY_ARGS | 16 | export OBJCOPY_ARGS |
17 | export CPPFLAGS_boot.lds += -P -C | ||
17 | 18 | ||
18 | boot-y := bootstrap.o | 19 | boot-y := bootstrap.o |
19 | 20 | ||
20 | OBJS := $(addprefix $(obj)/,$(boot-y)) | 21 | OBJS := $(addprefix $(obj)/,$(boot-y)) |
21 | 22 | ||
22 | Image: vmlinux $(OBJS) | 23 | Image: vmlinux $(OBJS) arch/$(ARCH)/boot/boot-elf/boot.lds |
23 | $(OBJCOPY) --strip-all -R .comment -R .xt.insn -O binary \ | 24 | $(OBJCOPY) --strip-all -R .comment -R .note.gnu.build-id -O binary \ |
24 | vmlinux vmlinux.tmp | 25 | vmlinux vmlinux.tmp |
25 | $(OBJCOPY) $(OBJCOPY_ARGS) -R .comment \ | 26 | $(OBJCOPY) $(OBJCOPY_ARGS) -R .comment \ |
26 | --add-section image=vmlinux.tmp \ | 27 | --add-section image=vmlinux.tmp \ |
27 | --set-section-flags image=contents,alloc,load,load,data \ | 28 | --set-section-flags image=contents,alloc,load,load,data \ |
28 | $(OBJS) $@.tmp | 29 | $(OBJS) $@.tmp |
29 | $(LD) $(LDFLAGS) $(LDFLAGS_vmlinux) \ | 30 | $(LD) $(LDFLAGS) $(LDFLAGS_vmlinux) \ |
30 | -T $(srctree)/arch/$(ARCH)/boot/boot-elf/boot.ld \ | 31 | -T arch/$(ARCH)/boot/boot-elf/boot.lds \ |
31 | -o arch/$(ARCH)/boot/$@.elf $@.tmp | 32 | -o arch/$(ARCH)/boot/$@.elf $@.tmp |
32 | rm -f $@.tmp vmlinux.tmp | 33 | rm -f $@.tmp vmlinux.tmp |
33 | 34 | ||
34 | Image.initrd: vmlinux $(OBJS) | 35 | Image.initrd: vmlinux $(OBJS) |
35 | $(OBJCOPY) --strip-all -R .comment -R .xt.insn -O binary \ | 36 | $(OBJCOPY) --strip-all -R .comment -R .note.gnu.build-id -O binary \ |
36 | --add-section .initrd=arch/$(ARCH)/boot/ramdisk \ | 37 | --add-section .initrd=arch/$(ARCH)/boot/ramdisk \ |
37 | --set-section-flags .initrd=contents,alloc,load,load,data \ | 38 | --set-section-flags .initrd=contents,alloc,load,load,data \ |
38 | vmlinux vmlinux.tmp | 39 | vmlinux vmlinux.tmp |
diff --git a/arch/xtensa/boot/boot-elf/boot.ld b/arch/xtensa/boot/boot-elf/boot.lds.S index 4ab06a0a7a6b..849dfcafd518 100644 --- a/arch/xtensa/boot/boot-elf/boot.ld +++ b/arch/xtensa/boot/boot-elf/boot.lds.S | |||
@@ -1,4 +1,6 @@ | |||
1 | #include <asm/variant/core.h> | ||
1 | OUTPUT_ARCH(xtensa) | 2 | OUTPUT_ARCH(xtensa) |
3 | ENTRY(_ResetVector) | ||
2 | 4 | ||
3 | SECTIONS | 5 | SECTIONS |
4 | { | 6 | { |
@@ -61,7 +63,7 @@ SECTIONS | |||
61 | _end = .; | 63 | _end = .; |
62 | _param_start = .; | 64 | _param_start = .; |
63 | 65 | ||
64 | .ResetVector.text 0xfe000020 : | 66 | .ResetVector.text XCHAL_RESET_VECTOR_VADDR : |
65 | { | 67 | { |
66 | *(.ResetVector.text) | 68 | *(.ResetVector.text) |
67 | } | 69 | } |
diff --git a/arch/xtensa/boot/boot-redboot/Makefile b/arch/xtensa/boot/boot-redboot/Makefile index 74d15d08077b..872029b84435 100644 --- a/arch/xtensa/boot/boot-redboot/Makefile +++ b/arch/xtensa/boot/boot-redboot/Makefile | |||
@@ -22,7 +22,7 @@ LIBS := arch/xtensa/boot/lib/lib.a arch/xtensa/lib/lib.a | |||
22 | LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name) | 22 | LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name) |
23 | 23 | ||
24 | zImage: vmlinux $(OBJS) $(LIBS) | 24 | zImage: vmlinux $(OBJS) $(LIBS) |
25 | $(OBJCOPY) --strip-all -R .comment -R .xt.insn -O binary \ | 25 | $(OBJCOPY) --strip-all -R .comment -R .note.gnu.build-id -O binary \ |
26 | vmlinux vmlinux.tmp | 26 | vmlinux vmlinux.tmp |
27 | gzip -vf9 vmlinux.tmp | 27 | gzip -vf9 vmlinux.tmp |
28 | $(OBJCOPY) $(OBJCOPY_ARGS) -R .comment \ | 28 | $(OBJCOPY) $(OBJCOPY_ARGS) -R .comment \ |
diff --git a/arch/xtensa/boot/boot-redboot/boot.ld b/arch/xtensa/boot/boot-redboot/boot.ld index 65b726410e8a..774db20d11f7 100644 --- a/arch/xtensa/boot/boot-redboot/boot.ld +++ b/arch/xtensa/boot/boot-redboot/boot.ld | |||
@@ -2,7 +2,7 @@ OUTPUT_ARCH(xtensa) | |||
2 | 2 | ||
3 | SECTIONS | 3 | SECTIONS |
4 | { | 4 | { |
5 | .start 0xD0200000 : { *(.start) } | 5 | .start 0xD1000000 : { *(.start) } |
6 | 6 | ||
7 | .text : | 7 | .text : |
8 | { | 8 | { |
diff --git a/arch/xtensa/kernel/asm-offsets.c b/arch/xtensa/kernel/asm-offsets.c index d5ffe7b6443e..ef63adadf7f4 100644 --- a/arch/xtensa/kernel/asm-offsets.c +++ b/arch/xtensa/kernel/asm-offsets.c | |||
@@ -21,7 +21,6 @@ | |||
21 | #include <linux/mm.h> | 21 | #include <linux/mm.h> |
22 | 22 | ||
23 | #include <asm/ptrace.h> | 23 | #include <asm/ptrace.h> |
24 | #include <asm/processor.h> | ||
25 | #include <asm/uaccess.h> | 24 | #include <asm/uaccess.h> |
26 | 25 | ||
27 | #define DEFINE(sym, val) asm volatile("\n->" #sym " %0 " #val : : "i" (val)) | 26 | #define DEFINE(sym, val) asm volatile("\n->" #sym " %0 " #val : : "i" (val)) |
@@ -64,6 +63,8 @@ int main(void) | |||
64 | DEFINE(PT_SIZE, sizeof(struct pt_regs)); | 63 | DEFINE(PT_SIZE, sizeof(struct pt_regs)); |
65 | DEFINE(PT_AREG_END, offsetof (struct pt_regs, areg[XCHAL_NUM_AREGS])); | 64 | DEFINE(PT_AREG_END, offsetof (struct pt_regs, areg[XCHAL_NUM_AREGS])); |
66 | DEFINE(PT_USER_SIZE, offsetof(struct pt_regs, areg[XCHAL_NUM_AREGS])); | 65 | DEFINE(PT_USER_SIZE, offsetof(struct pt_regs, areg[XCHAL_NUM_AREGS])); |
66 | DEFINE(PT_XTREGS_OPT, offsetof(struct pt_regs, xtregs_opt)); | ||
67 | DEFINE(XTREGS_OPT_SIZE, sizeof(xtregs_opt_t)); | ||
67 | 68 | ||
68 | /* struct task_struct */ | 69 | /* struct task_struct */ |
69 | DEFINE(TASK_PTRACE, offsetof (struct task_struct, ptrace)); | 70 | DEFINE(TASK_PTRACE, offsetof (struct task_struct, ptrace)); |
@@ -77,7 +78,19 @@ int main(void) | |||
77 | /* struct thread_info (offset from start_struct) */ | 78 | /* struct thread_info (offset from start_struct) */ |
78 | DEFINE(THREAD_RA, offsetof (struct task_struct, thread.ra)); | 79 | DEFINE(THREAD_RA, offsetof (struct task_struct, thread.ra)); |
79 | DEFINE(THREAD_SP, offsetof (struct task_struct, thread.sp)); | 80 | DEFINE(THREAD_SP, offsetof (struct task_struct, thread.sp)); |
80 | DEFINE(THREAD_CP_SAVE, offsetof (struct task_struct, thread.cp_save)); | 81 | DEFINE(THREAD_CPENABLE, offsetof (struct thread_info, cpenable)); |
82 | #if XTENSA_HAVE_COPROCESSORS | ||
83 | DEFINE(THREAD_XTREGS_CP0, offsetof (struct thread_info, xtregs_cp)); | ||
84 | DEFINE(THREAD_XTREGS_CP1, offsetof (struct thread_info, xtregs_cp)); | ||
85 | DEFINE(THREAD_XTREGS_CP2, offsetof (struct thread_info, xtregs_cp)); | ||
86 | DEFINE(THREAD_XTREGS_CP3, offsetof (struct thread_info, xtregs_cp)); | ||
87 | DEFINE(THREAD_XTREGS_CP4, offsetof (struct thread_info, xtregs_cp)); | ||
88 | DEFINE(THREAD_XTREGS_CP5, offsetof (struct thread_info, xtregs_cp)); | ||
89 | DEFINE(THREAD_XTREGS_CP6, offsetof (struct thread_info, xtregs_cp)); | ||
90 | DEFINE(THREAD_XTREGS_CP7, offsetof (struct thread_info, xtregs_cp)); | ||
91 | #endif | ||
92 | DEFINE(THREAD_XTREGS_USER, offsetof (struct thread_info, xtregs_user)); | ||
93 | DEFINE(XTREGS_USER_SIZE, sizeof(xtregs_user_t)); | ||
81 | DEFINE(THREAD_CURRENT_DS, offsetof (struct task_struct, thread.current_ds)); | 94 | DEFINE(THREAD_CURRENT_DS, offsetof (struct task_struct, thread.current_ds)); |
82 | 95 | ||
83 | /* struct mm_struct */ | 96 | /* struct mm_struct */ |
diff --git a/arch/xtensa/kernel/coprocessor.S b/arch/xtensa/kernel/coprocessor.S index 01bcb9fcfcbd..2bc1e145c0a4 100644 --- a/arch/xtensa/kernel/coprocessor.S +++ b/arch/xtensa/kernel/coprocessor.S | |||
@@ -8,193 +8,328 @@ | |||
8 | * License. See the file "COPYING" in the main directory of this archive | 8 | * License. See the file "COPYING" in the main directory of this archive |
9 | * for more details. | 9 | * for more details. |
10 | * | 10 | * |
11 | * Copyright (C) 2003 - 2005 Tensilica Inc. | 11 | * Copyright (C) 2003 - 2007 Tensilica Inc. |
12 | * | ||
13 | * Marc Gauthier <marc@tensilica.com> <marc@alumni.uwaterloo.ca> | ||
14 | */ | 12 | */ |
15 | 13 | ||
16 | /* | ||
17 | * This module contains a table that describes the layout of the various | ||
18 | * custom registers and states associated with each coprocessor, as well | ||
19 | * as those not associated with any coprocessor ("extra state"). | ||
20 | * This table is included with core dumps and is available via the ptrace | ||
21 | * interface, allowing the layout of such register/state information to | ||
22 | * be modified in the kernel without affecting the debugger. Each | ||
23 | * register or state is identified using a 32-bit "libdb target number" | ||
24 | * assigned when the Xtensa processor is generated. | ||
25 | */ | ||
26 | 14 | ||
27 | #include <linux/linkage.h> | 15 | #include <linux/linkage.h> |
16 | #include <asm/asm-offsets.h> | ||
28 | #include <asm/processor.h> | 17 | #include <asm/processor.h> |
18 | #include <asm/coprocessor.h> | ||
19 | #include <asm/thread_info.h> | ||
20 | #include <asm/uaccess.h> | ||
21 | #include <asm/unistd.h> | ||
22 | #include <asm/ptrace.h> | ||
23 | #include <asm/current.h> | ||
24 | #include <asm/pgtable.h> | ||
25 | #include <asm/page.h> | ||
26 | #include <asm/signal.h> | ||
27 | #include <asm/tlbflush.h> | ||
29 | 28 | ||
30 | #if XCHAL_HAVE_CP | 29 | /* |
30 | * Entry condition: | ||
31 | * | ||
32 | * a0: trashed, original value saved on stack (PT_AREG0) | ||
33 | * a1: a1 | ||
34 | * a2: new stack pointer, original in DEPC | ||
35 | * a3: dispatch table | ||
36 | * depc: a2, original value saved on stack (PT_DEPC) | ||
37 | * excsave_1: a3 | ||
38 | * | ||
39 | * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC | ||
40 | * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception | ||
41 | */ | ||
31 | 42 | ||
32 | #define CP_LAST ((XCHAL_CP_MAX - 1) * COPROCESSOR_INFO_SIZE) | 43 | /* IO protection is currently unsupported. */ |
33 | 44 | ||
34 | ENTRY(release_coprocessors) | 45 | ENTRY(fast_io_protect) |
46 | wsr a0, EXCSAVE_1 | ||
47 | movi a0, unrecoverable_exception | ||
48 | callx0 a0 | ||
35 | 49 | ||
36 | entry a1, 16 | 50 | #if XTENSA_HAVE_COPROCESSORS |
37 | # a2: task | ||
38 | movi a3, 1 << XCHAL_CP_MAX # a3: coprocessor-bit | ||
39 | movi a4, coprocessor_info+CP_LAST # a4: owner-table | ||
40 | # a5: tmp | ||
41 | movi a6, 0 # a6: 0 | ||
42 | rsil a7, LOCKLEVEL # a7: PS | ||
43 | 51 | ||
44 | 1: /* Check if task is coprocessor owner of coprocessor[i]. */ | 52 | /* |
53 | * Macros for lazy context switch. | ||
54 | */ | ||
45 | 55 | ||
46 | l32i a5, a4, COPROCESSOR_INFO_OWNER | 56 | #define SAVE_CP_REGS(x) \ |
47 | srli a3, a3, 1 | 57 | .align 4; \ |
48 | beqz a3, 1f | 58 | .Lsave_cp_regs_cp##x: \ |
49 | addi a4, a4, -8 | 59 | .if XTENSA_HAVE_COPROCESSOR(x); \ |
50 | beq a2, a5, 1b | 60 | xchal_cp##x##_store a2 a4 a5 a6 a7; \ |
61 | .endif; \ | ||
62 | jx a0 | ||
51 | 63 | ||
52 | /* Found an entry: Clear entry CPENABLE bit to disable CP. */ | 64 | #define SAVE_CP_REGS_TAB(x) \ |
65 | .if XTENSA_HAVE_COPROCESSOR(x); \ | ||
66 | .long .Lsave_cp_regs_cp##x - .Lsave_cp_regs_jump_table; \ | ||
67 | .else; \ | ||
68 | .long 0; \ | ||
69 | .endif; \ | ||
70 | .long THREAD_XTREGS_CP##x | ||
53 | 71 | ||
54 | rsr a5, CPENABLE | ||
55 | s32i a6, a4, COPROCESSOR_INFO_OWNER | ||
56 | xor a5, a3, a5 | ||
57 | wsr a5, CPENABLE | ||
58 | 72 | ||
59 | bnez a3, 1b | 73 | #define LOAD_CP_REGS(x) \ |
74 | .align 4; \ | ||
75 | .Lload_cp_regs_cp##x: \ | ||
76 | .if XTENSA_HAVE_COPROCESSOR(x); \ | ||
77 | xchal_cp##x##_load a2 a4 a5 a6 a7; \ | ||
78 | .endif; \ | ||
79 | jx a0 | ||
60 | 80 | ||
61 | 1: wsr a7, PS | 81 | #define LOAD_CP_REGS_TAB(x) \ |
62 | rsync | 82 | .if XTENSA_HAVE_COPROCESSOR(x); \ |
63 | retw | 83 | .long .Lload_cp_regs_cp##x - .Lload_cp_regs_jump_table; \ |
84 | .else; \ | ||
85 | .long 0; \ | ||
86 | .endif; \ | ||
87 | .long THREAD_XTREGS_CP##x | ||
64 | 88 | ||
89 | SAVE_CP_REGS(0) | ||
90 | SAVE_CP_REGS(1) | ||
91 | SAVE_CP_REGS(2) | ||
92 | SAVE_CP_REGS(3) | ||
93 | SAVE_CP_REGS(4) | ||
94 | SAVE_CP_REGS(5) | ||
95 | SAVE_CP_REGS(6) | ||
96 | SAVE_CP_REGS(7) | ||
65 | 97 | ||
66 | ENTRY(disable_coprocessor) | 98 | LOAD_CP_REGS(0) |
67 | entry sp, 16 | 99 | LOAD_CP_REGS(1) |
68 | rsil a7, LOCKLEVEL | 100 | LOAD_CP_REGS(2) |
69 | rsr a3, CPENABLE | 101 | LOAD_CP_REGS(3) |
70 | movi a4, 1 | 102 | LOAD_CP_REGS(4) |
71 | ssl a2 | 103 | LOAD_CP_REGS(5) |
72 | sll a4, a4 | 104 | LOAD_CP_REGS(6) |
73 | and a4, a3, a4 | 105 | LOAD_CP_REGS(7) |
74 | xor a3, a3, a4 | ||
75 | wsr a3, CPENABLE | ||
76 | wsr a7, PS | ||
77 | rsync | ||
78 | retw | ||
79 | 106 | ||
80 | ENTRY(enable_coprocessor) | 107 | .align 4 |
81 | entry sp, 16 | 108 | .Lsave_cp_regs_jump_table: |
82 | rsil a7, LOCKLEVEL | 109 | SAVE_CP_REGS_TAB(0) |
83 | rsr a3, CPENABLE | 110 | SAVE_CP_REGS_TAB(1) |
84 | movi a4, 1 | 111 | SAVE_CP_REGS_TAB(2) |
85 | ssl a2 | 112 | SAVE_CP_REGS_TAB(3) |
86 | sll a4, a4 | 113 | SAVE_CP_REGS_TAB(4) |
87 | or a3, a3, a4 | 114 | SAVE_CP_REGS_TAB(5) |
88 | wsr a3, CPENABLE | 115 | SAVE_CP_REGS_TAB(6) |
89 | wsr a7, PS | 116 | SAVE_CP_REGS_TAB(7) |
90 | rsync | ||
91 | retw | ||
92 | 117 | ||
118 | .Lload_cp_regs_jump_table: | ||
119 | LOAD_CP_REGS_TAB(0) | ||
120 | LOAD_CP_REGS_TAB(1) | ||
121 | LOAD_CP_REGS_TAB(2) | ||
122 | LOAD_CP_REGS_TAB(3) | ||
123 | LOAD_CP_REGS_TAB(4) | ||
124 | LOAD_CP_REGS_TAB(5) | ||
125 | LOAD_CP_REGS_TAB(6) | ||
126 | LOAD_CP_REGS_TAB(7) | ||
93 | 127 | ||
94 | ENTRY(save_coprocessor_extra) | 128 | /* |
95 | entry sp, 16 | 129 | * coprocessor_save(buffer, index) |
96 | xchal_extra_store_funcbody | 130 | * a2 a3 |
97 | retw | 131 | * coprocessor_load(buffer, index) |
132 | * a2 a3 | ||
133 | * | ||
134 | * Save or load coprocessor registers for coprocessor 'index'. | ||
135 | * The register values are saved to or loaded from them 'buffer' address. | ||
136 | * | ||
137 | * Note that these functions don't update the coprocessor_owner information! | ||
138 | * | ||
139 | */ | ||
98 | 140 | ||
99 | ENTRY(restore_coprocessor_extra) | 141 | ENTRY(coprocessor_save) |
100 | entry sp, 16 | 142 | entry a1, 32 |
101 | xchal_extra_load_funcbody | 143 | s32i a0, a1, 0 |
144 | movi a0, .Lsave_cp_regs_jump_table | ||
145 | addx8 a3, a3, a0 | ||
146 | l32i a3, a3, 0 | ||
147 | beqz a3, 1f | ||
148 | add a0, a0, a3 | ||
149 | callx0 a0 | ||
150 | 1: l32i a0, a1, 0 | ||
102 | retw | 151 | retw |
103 | 152 | ||
104 | ENTRY(save_coprocessor_registers) | 153 | ENTRY(coprocessor_load) |
105 | entry sp, 16 | 154 | entry a1, 32 |
106 | xchal_cpi_store_funcbody | 155 | s32i a0, a1, 0 |
156 | movi a0, .Lload_cp_regs_jump_table | ||
157 | addx4 a3, a3, a0 | ||
158 | l32i a3, a3, 0 | ||
159 | beqz a3, 1f | ||
160 | add a0, a0, a3 | ||
161 | callx0 a0 | ||
162 | 1: l32i a0, a1, 0 | ||
107 | retw | 163 | retw |
108 | 164 | ||
109 | ENTRY(restore_coprocessor_registers) | 165 | /* |
110 | entry sp, 16 | 166 | * coprocessor_flush(struct task_info*, index) |
111 | xchal_cpi_load_funcbody | 167 | * a2 a3 |
168 | * coprocessor_restore(struct task_info*, index) | ||
169 | * a2 a3 | ||
170 | * | ||
171 | * Save or load coprocessor registers for coprocessor 'index'. | ||
172 | * The register values are saved to or loaded from the coprocessor area | ||
173 | * inside the task_info structure. | ||
174 | * | ||
175 | * Note that these functions don't update the coprocessor_owner information! | ||
176 | * | ||
177 | */ | ||
178 | |||
179 | |||
180 | ENTRY(coprocessor_flush) | ||
181 | entry a1, 32 | ||
182 | s32i a0, a1, 0 | ||
183 | movi a0, .Lsave_cp_regs_jump_table | ||
184 | addx8 a3, a3, a0 | ||
185 | l32i a4, a3, 4 | ||
186 | l32i a3, a3, 0 | ||
187 | add a2, a2, a4 | ||
188 | beqz a3, 1f | ||
189 | add a0, a0, a3 | ||
190 | callx0 a0 | ||
191 | 1: l32i a0, a1, 0 | ||
112 | retw | 192 | retw |
113 | 193 | ||
194 | ENTRY(coprocessor_restore) | ||
195 | entry a1, 32 | ||
196 | s32i a0, a1, 0 | ||
197 | movi a0, .Lload_cp_regs_jump_table | ||
198 | addx4 a3, a3, a0 | ||
199 | l32i a4, a3, 4 | ||
200 | l32i a3, a3, 0 | ||
201 | add a2, a2, a4 | ||
202 | beqz a3, 1f | ||
203 | add a0, a0, a3 | ||
204 | callx0 a0 | ||
205 | 1: l32i a0, a1, 0 | ||
206 | retw | ||
114 | 207 | ||
115 | /* | 208 | /* |
116 | * The Xtensa compile-time HAL (core.h) XCHAL_*_SA_CONTENTS_LIBDB macros | 209 | * Entry condition: |
117 | * describe the contents of coprocessor & extra save areas in terms of | ||
118 | * undefined CONTENTS_LIBDB_{SREG,UREG,REGF} macros. We define these | ||
119 | * latter macros here; they expand into a table of the format we want. | ||
120 | * The general format is: | ||
121 | * | 210 | * |
122 | * CONTENTS_LIBDB_SREG(libdbnum, offset, size, align, rsv1, name, sregnum, | 211 | * a0: trashed, original value saved on stack (PT_AREG0) |
123 | * bitmask, rsv2, rsv3) | 212 | * a1: a1 |
124 | * CONTENTS_LIBDB_UREG(libdbnum, offset, size, align, rsv1, name, uregnum, | 213 | * a2: new stack pointer, original in DEPC |
125 | * bitmask, rsv2, rsv3) | 214 | * a3: dispatch table |
126 | * CONTENTS_LIBDB_REGF(libdbnum, offset, size, align, rsv1, name, index, | 215 | * depc: a2, original value saved on stack (PT_DEPC) |
127 | * numentries, contentsize, regname_base, | 216 | * excsave_1: a3 |
128 | * regfile_name, rsv2, rsv3) | ||
129 | * | 217 | * |
130 | * For this table, we only care about the <libdbnum>, <offset> and <size> | 218 | * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC |
131 | * fields. | 219 | * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception |
132 | */ | 220 | */ |
133 | 221 | ||
134 | /* Map all XCHAL CONTENTS macros to the reg_entry asm macro defined below: */ | 222 | ENTRY(fast_coprocessor_double) |
135 | 223 | wsr a0, EXCSAVE_1 | |
136 | #define CONTENTS_LIBDB_SREG(libdbnum,offset,size,align,rsv1,name,sregnum, \ | 224 | movi a0, unrecoverable_exception |
137 | bitmask, rsv2, rsv3) \ | 225 | callx0 a0 |
138 | reg_entry libdbnum, offset, size ; | ||
139 | #define CONTENTS_LIBDB_UREG(libdbnum,offset,size,align,rsv1,name,uregnum, \ | ||
140 | bitmask, rsv2, rsv3) \ | ||
141 | reg_entry libdbnum, offset, size ; | ||
142 | #define CONTENTS_LIBDB_REGF(libdbnum, offset, size, align, rsv1, name, index, \ | ||
143 | numentries, contentsize, regname_base, \ | ||
144 | regfile_name, rsv2, rsv3) \ | ||
145 | reg_entry libdbnum, offset, size ; | ||
146 | |||
147 | /* A single table entry: */ | ||
148 | .macro reg_entry libdbnum, offset, size | ||
149 | .ifne (__last_offset-(__last_group_offset+\offset)) | ||
150 | /* padding entry */ | ||
151 | .word (0xFC000000+__last_offset-(__last_group_offset+\offset)) | ||
152 | .endif | ||
153 | .word \libdbnum /* actual entry */ | ||
154 | .set __last_offset, __last_group_offset+\offset+\size | ||
155 | .endm /* reg_entry */ | ||
156 | |||
157 | |||
158 | /* Table entry that marks the beginning of a group (coprocessor or "extra"): */ | ||
159 | .macro reg_group cpnum, num_entries, align | ||
160 | .set __last_group_offset, (__last_offset + \align- 1) & -\align | ||
161 | .ifne \num_entries | ||
162 | .word 0xFD000000+(\cpnum<<16)+\num_entries | ||
163 | .endif | ||
164 | .endm /* reg_group */ | ||
165 | 226 | ||
166 | /* | ||
167 | * Register info tables. | ||
168 | */ | ||
169 | 227 | ||
170 | .section .rodata, "a" | 228 | ENTRY(fast_coprocessor) |
171 | .globl _xtensa_reginfo_tables | 229 | |
172 | .globl _xtensa_reginfo_table_size | 230 | /* Save remaining registers a1-a3 and SAR */ |
173 | .align 4 | 231 | |
174 | _xtensa_reginfo_table_size: | 232 | xsr a3, EXCSAVE_1 |
175 | .word _xtensa_reginfo_table_end - _xtensa_reginfo_tables | 233 | s32i a3, a2, PT_AREG3 |
176 | 234 | rsr a3, SAR | |
177 | _xtensa_reginfo_tables: | 235 | s32i a1, a2, PT_AREG1 |
178 | .set __last_offset, 0 | 236 | s32i a3, a2, PT_SAR |
179 | reg_group 0xFF, XCHAL_EXTRA_SA_CONTENTS_LIBDB_NUM, XCHAL_EXTRA_SA_ALIGN | 237 | mov a1, a2 |
180 | XCHAL_EXTRA_SA_CONTENTS_LIBDB | 238 | rsr a2, DEPC |
181 | reg_group 0, XCHAL_CP0_SA_CONTENTS_LIBDB_NUM, XCHAL_CP0_SA_ALIGN | 239 | s32i a2, a1, PT_AREG2 |
182 | XCHAL_CP0_SA_CONTENTS_LIBDB | 240 | |
183 | reg_group 1, XCHAL_CP1_SA_CONTENTS_LIBDB_NUM, XCHAL_CP1_SA_ALIGN | 241 | /* |
184 | XCHAL_CP1_SA_CONTENTS_LIBDB | 242 | * The hal macros require up to 4 temporary registers. We use a3..a6. |
185 | reg_group 2, XCHAL_CP2_SA_CONTENTS_LIBDB_NUM, XCHAL_CP2_SA_ALIGN | 243 | */ |
186 | XCHAL_CP2_SA_CONTENTS_LIBDB | 244 | |
187 | reg_group 3, XCHAL_CP3_SA_CONTENTS_LIBDB_NUM, XCHAL_CP3_SA_ALIGN | 245 | s32i a4, a1, PT_AREG4 |
188 | XCHAL_CP3_SA_CONTENTS_LIBDB | 246 | s32i a5, a1, PT_AREG5 |
189 | reg_group 4, XCHAL_CP4_SA_CONTENTS_LIBDB_NUM, XCHAL_CP4_SA_ALIGN | 247 | s32i a6, a1, PT_AREG6 |
190 | XCHAL_CP4_SA_CONTENTS_LIBDB | 248 | |
191 | reg_group 5, XCHAL_CP5_SA_CONTENTS_LIBDB_NUM, XCHAL_CP5_SA_ALIGN | 249 | /* Find coprocessor number. Subtract first CP EXCCAUSE from EXCCAUSE */ |
192 | XCHAL_CP5_SA_CONTENTS_LIBDB | 250 | |
193 | reg_group 6, XCHAL_CP6_SA_CONTENTS_LIBDB_NUM, XCHAL_CP6_SA_ALIGN | 251 | rsr a3, EXCCAUSE |
194 | XCHAL_CP6_SA_CONTENTS_LIBDB | 252 | addi a3, a3, -EXCCAUSE_COPROCESSOR0_DISABLED |
195 | reg_group 7, XCHAL_CP7_SA_CONTENTS_LIBDB_NUM, XCHAL_CP7_SA_ALIGN | 253 | |
196 | XCHAL_CP7_SA_CONTENTS_LIBDB | 254 | /* Set corresponding CPENABLE bit -> (sar:cp-index, a3: 1<<cp-index)*/ |
197 | .word 0xFC000000 /* invalid register number,marks end of table*/ | 255 | |
198 | _xtensa_reginfo_table_end: | 256 | ssl a3 # SAR: 32 - coprocessor_number |
199 | #endif | 257 | movi a2, 1 |
258 | rsr a0, CPENABLE | ||
259 | sll a2, a2 | ||
260 | or a0, a0, a2 | ||
261 | wsr a0, CPENABLE | ||
262 | rsync | ||
263 | |||
264 | /* Retrieve previous owner. (a3 still holds CP number) */ | ||
265 | |||
266 | movi a0, coprocessor_owner # list of owners | ||
267 | addx4 a0, a3, a0 # entry for CP | ||
268 | l32i a4, a0, 0 | ||
269 | |||
270 | beqz a4, 1f # skip 'save' if no previous owner | ||
271 | |||
272 | /* Disable coprocessor for previous owner. (a2 = 1 << CP number) */ | ||
273 | |||
274 | l32i a5, a4, THREAD_CPENABLE | ||
275 | xor a5, a5, a2 # (1 << cp-id) still in a2 | ||
276 | s32i a5, a4, THREAD_CPENABLE | ||
277 | |||
278 | /* | ||
279 | * Get context save area and 'call' save routine. | ||
280 | * (a4 still holds previous owner (thread_info), a3 CP number) | ||
281 | */ | ||
282 | |||
283 | movi a5, .Lsave_cp_regs_jump_table | ||
284 | movi a0, 2f # a0: 'return' address | ||
285 | addx8 a3, a3, a5 # a3: coprocessor number | ||
286 | l32i a2, a3, 4 # a2: xtregs offset | ||
287 | l32i a3, a3, 0 # a3: jump offset | ||
288 | add a2, a2, a4 | ||
289 | add a4, a3, a5 # a4: address of save routine | ||
290 | jx a4 | ||
291 | |||
292 | /* Note that only a0 and a1 were preserved. */ | ||
293 | |||
294 | 2: rsr a3, EXCCAUSE | ||
295 | addi a3, a3, -EXCCAUSE_COPROCESSOR0_DISABLED | ||
296 | movi a0, coprocessor_owner | ||
297 | addx4 a0, a3, a0 | ||
298 | |||
299 | /* Set new 'owner' (a0 points to the CP owner, a3 contains the CP nr) */ | ||
300 | |||
301 | 1: GET_THREAD_INFO (a4, a1) | ||
302 | s32i a4, a0, 0 | ||
303 | |||
304 | /* Get context save area and 'call' load routine. */ | ||
305 | |||
306 | movi a5, .Lload_cp_regs_jump_table | ||
307 | movi a0, 1f | ||
308 | addx8 a3, a3, a5 | ||
309 | l32i a2, a3, 4 # a2: xtregs offset | ||
310 | l32i a3, a3, 0 # a3: jump offset | ||
311 | add a2, a2, a4 | ||
312 | add a4, a3, a5 | ||
313 | jx a4 | ||
314 | |||
315 | /* Restore all registers and return from exception handler. */ | ||
316 | |||
317 | 1: l32i a6, a1, PT_AREG6 | ||
318 | l32i a5, a1, PT_AREG5 | ||
319 | l32i a4, a1, PT_AREG4 | ||
320 | |||
321 | l32i a0, a1, PT_SAR | ||
322 | l32i a3, a1, PT_AREG3 | ||
323 | l32i a2, a1, PT_AREG2 | ||
324 | wsr a0, SAR | ||
325 | l32i a0, a1, PT_AREG0 | ||
326 | l32i a1, a1, PT_AREG1 | ||
327 | |||
328 | rfe | ||
329 | |||
330 | .data | ||
331 | ENTRY(coprocessor_owner) | ||
332 | .fill XCHAL_CP_MAX, 4, 0 | ||
333 | |||
334 | #endif /* XTENSA_HAVE_COPROCESSORS */ | ||
200 | 335 | ||
diff --git a/arch/xtensa/kernel/entry.S b/arch/xtensa/kernel/entry.S index 91a689eca43d..dfd35dcc1cb5 100644 --- a/arch/xtensa/kernel/entry.S +++ b/arch/xtensa/kernel/entry.S | |||
@@ -25,10 +25,10 @@ | |||
25 | #include <asm/page.h> | 25 | #include <asm/page.h> |
26 | #include <asm/signal.h> | 26 | #include <asm/signal.h> |
27 | #include <asm/tlbflush.h> | 27 | #include <asm/tlbflush.h> |
28 | #include <asm/variant/tie-asm.h> | ||
28 | 29 | ||
29 | /* Unimplemented features. */ | 30 | /* Unimplemented features. */ |
30 | 31 | ||
31 | #undef SIGNAL_HANDLING_IN_DOUBLE_EXCEPTION | ||
32 | #undef KERNEL_STACK_OVERFLOW_CHECK | 32 | #undef KERNEL_STACK_OVERFLOW_CHECK |
33 | #undef PREEMPTIBLE_KERNEL | 33 | #undef PREEMPTIBLE_KERNEL |
34 | #undef ALLOCA_EXCEPTION_IN_IRAM | 34 | #undef ALLOCA_EXCEPTION_IN_IRAM |
@@ -214,19 +214,7 @@ _user_exception: | |||
214 | 214 | ||
215 | /* We are back to the original stack pointer (a1) */ | 215 | /* We are back to the original stack pointer (a1) */ |
216 | 216 | ||
217 | 2: | 217 | 2: /* Now, jump to the common exception handler. */ |
218 | #if XCHAL_EXTRA_SA_SIZE | ||
219 | |||
220 | /* For user exceptions, save the extra state into the user's TCB. | ||
221 | * Note: We must assume that xchal_extra_store_funcbody destroys a2..a15 | ||
222 | */ | ||
223 | |||
224 | GET_CURRENT(a2,a1) | ||
225 | addi a2, a2, THREAD_CP_SAVE | ||
226 | xchal_extra_store_funcbody | ||
227 | #endif | ||
228 | |||
229 | /* Now, jump to the common exception handler. */ | ||
230 | 218 | ||
231 | j common_exception | 219 | j common_exception |
232 | 220 | ||
@@ -382,6 +370,10 @@ common_exception: | |||
382 | s32i a2, a1, PT_LBEG | 370 | s32i a2, a1, PT_LBEG |
383 | s32i a3, a1, PT_LEND | 371 | s32i a3, a1, PT_LEND |
384 | 372 | ||
373 | /* Save optional registers. */ | ||
374 | |||
375 | save_xtregs_opt a1 a2 a4 a5 a6 a7 PT_XTREGS_OPT | ||
376 | |||
385 | /* Go to second-level dispatcher. Set up parameters to pass to the | 377 | /* Go to second-level dispatcher. Set up parameters to pass to the |
386 | * exception handler and call the exception handler. | 378 | * exception handler and call the exception handler. |
387 | */ | 379 | */ |
@@ -403,74 +395,49 @@ common_exception_return: | |||
403 | /* Jump if we are returning from kernel exceptions. */ | 395 | /* Jump if we are returning from kernel exceptions. */ |
404 | 396 | ||
405 | 1: l32i a3, a1, PT_PS | 397 | 1: l32i a3, a1, PT_PS |
406 | _bbsi.l a3, PS_UM_BIT, 2f | 398 | _bbci.l a3, PS_UM_BIT, 4f |
407 | j kernel_exception_exit | ||
408 | 399 | ||
409 | /* Specific to a user exception exit: | 400 | /* Specific to a user exception exit: |
410 | * We need to check some flags for signal handling and rescheduling, | 401 | * We need to check some flags for signal handling and rescheduling, |
411 | * and have to restore WB and WS, extra states, and all registers | 402 | * and have to restore WB and WS, extra states, and all registers |
412 | * in the register file that were in use in the user task. | 403 | * in the register file that were in use in the user task. |
413 | */ | 404 | * Note that we don't disable interrupts here. |
414 | |||
415 | 2: wsr a3, PS /* disable interrupts */ | ||
416 | |||
417 | /* Check for signals (keep interrupts disabled while we read TI_FLAGS) | ||
418 | * Note: PS.INTLEVEL = 0, PS.EXCM = 1 | ||
419 | */ | 405 | */ |
420 | 406 | ||
421 | GET_THREAD_INFO(a2,a1) | 407 | GET_THREAD_INFO(a2,a1) |
422 | l32i a4, a2, TI_FLAGS | 408 | l32i a4, a2, TI_FLAGS |
423 | 409 | ||
424 | /* Enable interrupts again. | ||
425 | * Note: When we get here, we certainly have handled any interrupts. | ||
426 | * (Hint: There is only one user exception frame on stack) | ||
427 | */ | ||
428 | |||
429 | movi a3, 1 << PS_WOE_BIT | ||
430 | |||
431 | _bbsi.l a4, TIF_NEED_RESCHED, 3f | 410 | _bbsi.l a4, TIF_NEED_RESCHED, 3f |
432 | _bbci.l a4, TIF_SIGPENDING, 4f | 411 | _bbci.l a4, TIF_SIGPENDING, 4f |
433 | 412 | ||
434 | #ifndef SIGNAL_HANDLING_IN_DOUBLE_EXCEPTION | ||
435 | l32i a4, a1, PT_DEPC | 413 | l32i a4, a1, PT_DEPC |
436 | bgeui a4, VALID_DOUBLE_EXCEPTION_ADDRESS, 4f | 414 | bgeui a4, VALID_DOUBLE_EXCEPTION_ADDRESS, 4f |
437 | #endif | ||
438 | 415 | ||
439 | /* Reenable interrupts and call do_signal() */ | 416 | /* Call do_signal() */ |
440 | 417 | ||
441 | wsr a3, PS | ||
442 | movi a4, do_signal # int do_signal(struct pt_regs*, sigset_t*) | 418 | movi a4, do_signal # int do_signal(struct pt_regs*, sigset_t*) |
443 | mov a6, a1 | 419 | mov a6, a1 |
444 | movi a7, 0 | 420 | movi a7, 0 |
445 | callx4 a4 | 421 | callx4 a4 |
446 | j 1b | 422 | j 1b |
447 | 423 | ||
448 | 3: /* Reenable interrupts and reschedule */ | 424 | 3: /* Reschedule */ |
449 | 425 | ||
450 | wsr a3, PS | ||
451 | movi a4, schedule # void schedule (void) | 426 | movi a4, schedule # void schedule (void) |
452 | callx4 a4 | 427 | callx4 a4 |
453 | j 1b | 428 | j 1b |
454 | 429 | ||
455 | /* Restore the state of the task and return from the exception. */ | 430 | 4: /* Restore optional registers. */ |
456 | |||
457 | 4: /* a2 holds GET_CURRENT(a2,a1) */ | ||
458 | |||
459 | #if XCHAL_EXTRA_SA_SIZE | ||
460 | 431 | ||
461 | /* For user exceptions, restore the extra state from the user's TCB. */ | 432 | load_xtregs_opt a1 a2 a4 a5 a6 a7 PT_XTREGS_OPT |
462 | 433 | ||
463 | /* Note: a2 still contains GET_CURRENT(a2,a1) */ | 434 | wsr a3, PS /* disable interrupts */ |
464 | addi a2, a2, THREAD_CP_SAVE | ||
465 | xchal_extra_load_funcbody | ||
466 | 435 | ||
467 | /* We must assume that xchal_extra_store_funcbody destroys | 436 | _bbci.l a3, PS_UM_BIT, kernel_exception_exit |
468 | * registers a2..a15. FIXME, this list can eventually be | ||
469 | * reduced once real register requirements of the macro are | ||
470 | * finalized. */ | ||
471 | 437 | ||
472 | #endif /* XCHAL_EXTRA_SA_SIZE */ | 438 | user_exception_exit: |
473 | 439 | ||
440 | /* Restore the state of the task and return from the exception. */ | ||
474 | 441 | ||
475 | /* Switch to the user thread WINDOWBASE. Save SP temporarily in DEPC */ | 442 | /* Switch to the user thread WINDOWBASE. Save SP temporarily in DEPC */ |
476 | 443 | ||
@@ -536,10 +503,6 @@ common_exception_return: | |||
536 | 503 | ||
537 | kernel_exception_exit: | 504 | kernel_exception_exit: |
538 | 505 | ||
539 | /* Disable interrupts (a3 holds PT_PS) */ | ||
540 | |||
541 | wsr a3, PS | ||
542 | |||
543 | #ifdef PREEMPTIBLE_KERNEL | 506 | #ifdef PREEMPTIBLE_KERNEL |
544 | 507 | ||
545 | #ifdef CONFIG_PREEMPT | 508 | #ifdef CONFIG_PREEMPT |
@@ -618,6 +581,8 @@ kernel_exception_exit: | |||
618 | 581 | ||
619 | common_exception_exit: | 582 | common_exception_exit: |
620 | 583 | ||
584 | /* Restore address registers. */ | ||
585 | |||
621 | _bbsi.l a2, 1, 1f | 586 | _bbsi.l a2, 1, 1f |
622 | l32i a4, a1, PT_AREG4 | 587 | l32i a4, a1, PT_AREG4 |
623 | l32i a5, a1, PT_AREG5 | 588 | l32i a5, a1, PT_AREG5 |
@@ -1150,7 +1115,6 @@ CATCH | |||
1150 | * excsave_1: a3 | 1115 | * excsave_1: a3 |
1151 | * | 1116 | * |
1152 | * Note: We assume the stack pointer is EXC_TABLE_KSTK in the fixup handler. | 1117 | * Note: We assume the stack pointer is EXC_TABLE_KSTK in the fixup handler. |
1153 | * Note: We don't need to save a2 in depc (return value) | ||
1154 | */ | 1118 | */ |
1155 | 1119 | ||
1156 | ENTRY(fast_syscall_spill_registers) | 1120 | ENTRY(fast_syscall_spill_registers) |
@@ -1166,29 +1130,31 @@ ENTRY(fast_syscall_spill_registers) | |||
1166 | 1130 | ||
1167 | rsr a0, SAR | 1131 | rsr a0, SAR |
1168 | xsr a3, EXCSAVE_1 # restore a3 and excsave_1 | 1132 | xsr a3, EXCSAVE_1 # restore a3 and excsave_1 |
1169 | s32i a0, a2, PT_AREG4 # store SAR to PT_AREG4 | ||
1170 | s32i a3, a2, PT_AREG3 | 1133 | s32i a3, a2, PT_AREG3 |
1134 | s32i a4, a2, PT_AREG4 | ||
1135 | s32i a0, a2, PT_AREG5 # store SAR to PT_AREG5 | ||
1171 | 1136 | ||
1172 | /* The spill routine might clobber a7, a11, and a15. */ | 1137 | /* The spill routine might clobber a7, a11, and a15. */ |
1173 | 1138 | ||
1174 | s32i a7, a2, PT_AREG5 | 1139 | s32i a7, a2, PT_AREG7 |
1175 | s32i a11, a2, PT_AREG6 | 1140 | s32i a11, a2, PT_AREG11 |
1176 | s32i a15, a2, PT_AREG7 | 1141 | s32i a15, a2, PT_AREG15 |
1177 | 1142 | ||
1178 | call0 _spill_registers # destroys a3, DEPC, and SAR | 1143 | call0 _spill_registers # destroys a3, a4, and SAR |
1179 | 1144 | ||
1180 | /* Advance PC, restore registers and SAR, and return from exception. */ | 1145 | /* Advance PC, restore registers and SAR, and return from exception. */ |
1181 | 1146 | ||
1182 | l32i a3, a2, PT_AREG4 | 1147 | l32i a3, a2, PT_AREG5 |
1148 | l32i a4, a2, PT_AREG4 | ||
1183 | l32i a0, a2, PT_AREG0 | 1149 | l32i a0, a2, PT_AREG0 |
1184 | wsr a3, SAR | 1150 | wsr a3, SAR |
1185 | l32i a3, a2, PT_AREG3 | 1151 | l32i a3, a2, PT_AREG3 |
1186 | 1152 | ||
1187 | /* Restore clobbered registers. */ | 1153 | /* Restore clobbered registers. */ |
1188 | 1154 | ||
1189 | l32i a7, a2, PT_AREG5 | 1155 | l32i a7, a2, PT_AREG7 |
1190 | l32i a11, a2, PT_AREG6 | 1156 | l32i a11, a2, PT_AREG11 |
1191 | l32i a15, a2, PT_AREG7 | 1157 | l32i a15, a2, PT_AREG15 |
1192 | 1158 | ||
1193 | movi a2, 0 | 1159 | movi a2, 0 |
1194 | rfe | 1160 | rfe |
@@ -1247,16 +1213,6 @@ fast_syscall_spill_registers_fixup: | |||
1247 | * Note: This frame might be the same as above. | 1213 | * Note: This frame might be the same as above. |
1248 | */ | 1214 | */ |
1249 | 1215 | ||
1250 | #ifdef SIGNAL_HANDLING_IN_DOUBLE_EXCEPTION | ||
1251 | /* Restore registers we precautiously saved. | ||
1252 | * We have the value of the 'right' a3 | ||
1253 | */ | ||
1254 | |||
1255 | l32i a7, a2, PT_AREG5 | ||
1256 | l32i a11, a2, PT_AREG6 | ||
1257 | l32i a15, a2, PT_AREG7 | ||
1258 | #endif | ||
1259 | |||
1260 | /* Setup stack pointer. */ | 1216 | /* Setup stack pointer. */ |
1261 | 1217 | ||
1262 | addi a2, a2, -PT_USER_SIZE | 1218 | addi a2, a2, -PT_USER_SIZE |
@@ -1271,9 +1227,9 @@ fast_syscall_spill_registers_fixup: | |||
1271 | 1227 | ||
1272 | movi a3, exc_table | 1228 | movi a3, exc_table |
1273 | rsr a0, EXCCAUSE | 1229 | rsr a0, EXCCAUSE |
1274 | addx4 a0, a0, a3 # find entry in table | 1230 | addx4 a0, a0, a3 # find entry in table |
1275 | l32i a0, a0, EXC_TABLE_FAST_USER # load handler | 1231 | l32i a0, a0, EXC_TABLE_FAST_USER # load handler |
1276 | jx a0 | 1232 | jx a0 |
1277 | 1233 | ||
1278 | fast_syscall_spill_registers_fixup_return: | 1234 | fast_syscall_spill_registers_fixup_return: |
1279 | 1235 | ||
@@ -1290,14 +1246,6 @@ fast_syscall_spill_registers_fixup_return: | |||
1290 | s32i a2, a3, EXC_TABLE_PARAM | 1246 | s32i a2, a3, EXC_TABLE_PARAM |
1291 | l32i a2, a3, EXC_TABLE_KSTK | 1247 | l32i a2, a3, EXC_TABLE_KSTK |
1292 | 1248 | ||
1293 | #ifdef SIGNAL_HANDLING_IN_DOUBLE_EXCEPTION | ||
1294 | /* Save registers again that might be clobbered. */ | ||
1295 | |||
1296 | s32i a7, a2, PT_AREG5 | ||
1297 | s32i a11, a2, PT_AREG6 | ||
1298 | s32i a15, a2, PT_AREG7 | ||
1299 | #endif | ||
1300 | |||
1301 | /* Load WB at the time the exception occurred. */ | 1249 | /* Load WB at the time the exception occurred. */ |
1302 | 1250 | ||
1303 | rsr a3, SAR # WB is still in SAR | 1251 | rsr a3, SAR # WB is still in SAR |
@@ -1319,7 +1267,7 @@ fast_syscall_spill_registers_fixup_return: | |||
1319 | * This is not a real function. The following conditions must be met: | 1267 | * This is not a real function. The following conditions must be met: |
1320 | * | 1268 | * |
1321 | * - must be called with call0. | 1269 | * - must be called with call0. |
1322 | * - uses DEPC, a3 and SAR. | 1270 | * - uses a3, a4 and SAR. |
1323 | * - the last 'valid' register of each frame are clobbered. | 1271 | * - the last 'valid' register of each frame are clobbered. |
1324 | * - the caller must have registered a fixup handler | 1272 | * - the caller must have registered a fixup handler |
1325 | * (or be inside a critical section) | 1273 | * (or be inside a critical section) |
@@ -1331,41 +1279,39 @@ ENTRY(_spill_registers) | |||
1331 | /* | 1279 | /* |
1332 | * Rotate ws so that the current windowbase is at bit 0. | 1280 | * Rotate ws so that the current windowbase is at bit 0. |
1333 | * Assume ws = xxxwww1yy (www1 current window frame). | 1281 | * Assume ws = xxxwww1yy (www1 current window frame). |
1334 | * Rotate ws right so that a2 = yyxxxwww1. | 1282 | * Rotate ws right so that a4 = yyxxxwww1. |
1335 | */ | 1283 | */ |
1336 | 1284 | ||
1337 | wsr a2, DEPC # preserve a2 | 1285 | rsr a4, WINDOWBASE |
1338 | rsr a2, WINDOWBASE | 1286 | rsr a3, WINDOWSTART # a3 = xxxwww1yy |
1339 | rsr a3, WINDOWSTART | 1287 | ssr a4 # holds WB |
1340 | ssr a2 # holds WB | 1288 | slli a4, a3, WSBITS |
1341 | slli a2, a3, WSBITS | 1289 | or a3, a3, a4 # a3 = xxxwww1yyxxxwww1yy |
1342 | or a3, a3, a2 # a2 = xxxwww1yyxxxwww1yy | 1290 | srl a3, a3 # a3 = 00xxxwww1yyxxxwww1 |
1343 | srl a3, a3 | ||
1344 | 1291 | ||
1345 | /* We are done if there are no more than the current register frame. */ | 1292 | /* We are done if there are no more than the current register frame. */ |
1346 | 1293 | ||
1347 | extui a3, a3, 1, WSBITS-2 # a3 = 0yyxxxwww | 1294 | extui a3, a3, 1, WSBITS-1 # a3 = 0yyxxxwww |
1348 | movi a2, (1 << (WSBITS-1)) | 1295 | movi a4, (1 << (WSBITS-1)) |
1349 | _beqz a3, .Lnospill # only one active frame? jump | 1296 | _beqz a3, .Lnospill # only one active frame? jump |
1350 | 1297 | ||
1351 | /* We want 1 at the top, so that we return to the current windowbase */ | 1298 | /* We want 1 at the top, so that we return to the current windowbase */ |
1352 | 1299 | ||
1353 | or a3, a3, a2 # 1yyxxxwww | 1300 | or a3, a3, a4 # 1yyxxxwww |
1354 | 1301 | ||
1355 | /* Skip empty frames - get 'oldest' WINDOWSTART-bit. */ | 1302 | /* Skip empty frames - get 'oldest' WINDOWSTART-bit. */ |
1356 | 1303 | ||
1357 | wsr a3, WINDOWSTART # save shifted windowstart | 1304 | wsr a3, WINDOWSTART # save shifted windowstart |
1358 | neg a2, a3 | 1305 | neg a4, a3 |
1359 | and a3, a2, a3 # first bit set from right: 000010000 | 1306 | and a3, a4, a3 # first bit set from right: 000010000 |
1360 | 1307 | ||
1361 | ffs_ws a2, a3 # a2: shifts to skip empty frames | 1308 | ffs_ws a4, a3 # a4: shifts to skip empty frames |
1362 | movi a3, WSBITS | 1309 | movi a3, WSBITS |
1363 | sub a2, a3, a2 # WSBITS-a2:number of 0-bits from right | 1310 | sub a4, a3, a4 # WSBITS-a4:number of 0-bits from right |
1364 | ssr a2 # save in SAR for later. | 1311 | ssr a4 # save in SAR for later. |
1365 | 1312 | ||
1366 | rsr a3, WINDOWBASE | 1313 | rsr a3, WINDOWBASE |
1367 | add a3, a3, a2 | 1314 | add a3, a3, a4 |
1368 | rsr a2, DEPC # restore a2 | ||
1369 | wsr a3, WINDOWBASE | 1315 | wsr a3, WINDOWBASE |
1370 | rsync | 1316 | rsync |
1371 | 1317 | ||
@@ -1394,6 +1340,9 @@ ENTRY(_spill_registers) | |||
1394 | l32e a4, a1, -16 | 1340 | l32e a4, a1, -16 |
1395 | j .Lc12c | 1341 | j .Lc12c |
1396 | 1342 | ||
1343 | .Lnospill: | ||
1344 | ret | ||
1345 | |||
1397 | .Lloop: _bbsi.l a3, 1, .Lc4 | 1346 | .Lloop: _bbsi.l a3, 1, .Lc4 |
1398 | _bbci.l a3, 2, .Lc12 | 1347 | _bbci.l a3, 2, .Lc12 |
1399 | 1348 | ||
@@ -1419,9 +1368,7 @@ ENTRY(_spill_registers) | |||
1419 | movi a3, 1 | 1368 | movi a3, 1 |
1420 | sll a3, a3 | 1369 | sll a3, a3 |
1421 | wsr a3, WINDOWSTART | 1370 | wsr a3, WINDOWSTART |
1422 | 1371 | ret | |
1423 | .Lnospill: | ||
1424 | jx a0 | ||
1425 | 1372 | ||
1426 | .Lc4: s32e a4, a9, -16 | 1373 | .Lc4: s32e a4, a9, -16 |
1427 | s32e a5, a9, -12 | 1374 | s32e a5, a9, -12 |
@@ -1830,154 +1777,6 @@ ENTRY(fast_store_prohibited) | |||
1830 | 1: j _user_exception | 1777 | 1: j _user_exception |
1831 | 1778 | ||
1832 | 1779 | ||
1833 | #if XCHAL_EXTRA_SA_SIZE | ||
1834 | |||
1835 | #warning fast_coprocessor untested | ||
1836 | |||
1837 | /* | ||
1838 | * Entry condition: | ||
1839 | * | ||
1840 | * a0: trashed, original value saved on stack (PT_AREG0) | ||
1841 | * a1: a1 | ||
1842 | * a2: new stack pointer, original in DEPC | ||
1843 | * a3: dispatch table | ||
1844 | * depc: a2, original value saved on stack (PT_DEPC) | ||
1845 | * excsave_1: a3 | ||
1846 | * | ||
1847 | * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC | ||
1848 | * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception | ||
1849 | */ | ||
1850 | |||
1851 | ENTRY(fast_coprocessor_double) | ||
1852 | wsr a0, EXCSAVE_1 | ||
1853 | movi a0, unrecoverable_exception | ||
1854 | callx0 a0 | ||
1855 | |||
1856 | ENTRY(fast_coprocessor) | ||
1857 | |||
1858 | /* Fatal if we are in a double exception. */ | ||
1859 | |||
1860 | l32i a0, a2, PT_DEPC | ||
1861 | _bgeui a0, VALID_DOUBLE_EXCEPTION_ADDRESS, fast_coprocessor_double | ||
1862 | |||
1863 | /* Save some registers a1, a3, a4, SAR */ | ||
1864 | |||
1865 | xsr a3, EXCSAVE_1 | ||
1866 | s32i a3, a2, PT_AREG3 | ||
1867 | rsr a3, SAR | ||
1868 | s32i a4, a2, PT_AREG4 | ||
1869 | s32i a1, a2, PT_AREG1 | ||
1870 | s32i a5, a1, PT_AREG5 | ||
1871 | s32i a3, a2, PT_SAR | ||
1872 | mov a1, a2 | ||
1873 | |||
1874 | /* Currently, the HAL macros only guarantee saving a0 and a1. | ||
1875 | * These can and will be refined in the future, but for now, | ||
1876 | * just save the remaining registers of a2...a15. | ||
1877 | */ | ||
1878 | s32i a6, a1, PT_AREG6 | ||
1879 | s32i a7, a1, PT_AREG7 | ||
1880 | s32i a8, a1, PT_AREG8 | ||
1881 | s32i a9, a1, PT_AREG9 | ||
1882 | s32i a10, a1, PT_AREG10 | ||
1883 | s32i a11, a1, PT_AREG11 | ||
1884 | s32i a12, a1, PT_AREG12 | ||
1885 | s32i a13, a1, PT_AREG13 | ||
1886 | s32i a14, a1, PT_AREG14 | ||
1887 | s32i a15, a1, PT_AREG15 | ||
1888 | |||
1889 | /* Find coprocessor number. Subtract first CP EXCCAUSE from EXCCAUSE */ | ||
1890 | |||
1891 | rsr a0, EXCCAUSE | ||
1892 | addi a3, a0, -XCHAL_EXCCAUSE_COPROCESSOR0_DISABLED | ||
1893 | |||
1894 | /* Set corresponding CPENABLE bit */ | ||
1895 | |||
1896 | movi a4, 1 | ||
1897 | ssl a3 # SAR: 32 - coprocessor_number | ||
1898 | rsr a5, CPENABLE | ||
1899 | sll a4, a4 | ||
1900 | or a4, a5, a4 | ||
1901 | wsr a4, CPENABLE | ||
1902 | rsync | ||
1903 | movi a5, coprocessor_info # list of owner and offset into cp_save | ||
1904 | addx8 a0, a4, a5 # entry for CP | ||
1905 | |||
1906 | bne a4, a5, .Lload # bit wasn't set before, cp not in use | ||
1907 | |||
1908 | /* Now compare the current task with the owner of the coprocessor. | ||
1909 | * If they are the same, there is no reason to save or restore any | ||
1910 | * coprocessor state. Having already enabled the coprocessor, | ||
1911 | * branch ahead to return. | ||
1912 | */ | ||
1913 | GET_CURRENT(a5,a1) | ||
1914 | l32i a4, a0, COPROCESSOR_INFO_OWNER # a4: current owner for this CP | ||
1915 | beq a4, a5, .Ldone | ||
1916 | |||
1917 | /* Find location to dump current coprocessor state: | ||
1918 | * task_struct->task_cp_save_offset + coprocessor_offset[coprocessor] | ||
1919 | * | ||
1920 | * Note: a0 pointer to the entry in the coprocessor owner table, | ||
1921 | * a3 coprocessor number, | ||
1922 | * a4 current owner of coprocessor. | ||
1923 | */ | ||
1924 | l32i a5, a0, COPROCESSOR_INFO_OFFSET | ||
1925 | addi a2, a4, THREAD_CP_SAVE | ||
1926 | add a2, a2, a5 | ||
1927 | |||
1928 | /* Store current coprocessor states. (a5 still has CP number) */ | ||
1929 | |||
1930 | xchal_cpi_store_funcbody | ||
1931 | |||
1932 | /* The macro might have destroyed a3 (coprocessor number), but | ||
1933 | * SAR still has 32 - coprocessor_number! | ||
1934 | */ | ||
1935 | movi a3, 32 | ||
1936 | rsr a4, SAR | ||
1937 | sub a3, a3, a4 | ||
1938 | |||
1939 | .Lload: /* A new task now owns the corpocessors. Save its TCB pointer into | ||
1940 | * the coprocessor owner table. | ||
1941 | * | ||
1942 | * Note: a0 pointer to the entry in the coprocessor owner table, | ||
1943 | * a3 coprocessor number. | ||
1944 | */ | ||
1945 | GET_CURRENT(a4,a1) | ||
1946 | s32i a4, a0, 0 | ||
1947 | |||
1948 | /* Find location from where to restore the current coprocessor state.*/ | ||
1949 | |||
1950 | l32i a5, a0, COPROCESSOR_INFO_OFFSET | ||
1951 | addi a2, a4, THREAD_CP_SAVE | ||
1952 | add a2, a2, a4 | ||
1953 | |||
1954 | xchal_cpi_load_funcbody | ||
1955 | |||
1956 | /* We must assume that the xchal_cpi_store_funcbody macro destroyed | ||
1957 | * registers a2..a15. | ||
1958 | */ | ||
1959 | |||
1960 | .Ldone: l32i a15, a1, PT_AREG15 | ||
1961 | l32i a14, a1, PT_AREG14 | ||
1962 | l32i a13, a1, PT_AREG13 | ||
1963 | l32i a12, a1, PT_AREG12 | ||
1964 | l32i a11, a1, PT_AREG11 | ||
1965 | l32i a10, a1, PT_AREG10 | ||
1966 | l32i a9, a1, PT_AREG9 | ||
1967 | l32i a8, a1, PT_AREG8 | ||
1968 | l32i a7, a1, PT_AREG7 | ||
1969 | l32i a6, a1, PT_AREG6 | ||
1970 | l32i a5, a1, PT_AREG5 | ||
1971 | l32i a4, a1, PT_AREG4 | ||
1972 | l32i a3, a1, PT_AREG3 | ||
1973 | l32i a2, a1, PT_AREG2 | ||
1974 | l32i a0, a1, PT_AREG0 | ||
1975 | l32i a1, a1, PT_AREG1 | ||
1976 | |||
1977 | rfe | ||
1978 | |||
1979 | #endif /* XCHAL_EXTRA_SA_SIZE */ | ||
1980 | |||
1981 | /* | 1780 | /* |
1982 | * System Calls. | 1781 | * System Calls. |
1983 | * | 1782 | * |
@@ -2086,20 +1885,36 @@ ENTRY(_switch_to) | |||
2086 | 1885 | ||
2087 | entry a1, 16 | 1886 | entry a1, 16 |
2088 | 1887 | ||
2089 | mov a4, a3 # preserve a3 | 1888 | mov a12, a2 # preserve 'prev' (a2) |
1889 | mov a13, a3 # and 'next' (a3) | ||
1890 | |||
1891 | l32i a4, a2, TASK_THREAD_INFO | ||
1892 | l32i a5, a3, TASK_THREAD_INFO | ||
1893 | |||
1894 | save_xtregs_user a4 a6 a8 a9 a10 a11 THREAD_XTREGS_USER | ||
2090 | 1895 | ||
2091 | s32i a0, a2, THREAD_RA # save return address | 1896 | s32i a0, a12, THREAD_RA # save return address |
2092 | s32i a1, a2, THREAD_SP # save stack pointer | 1897 | s32i a1, a12, THREAD_SP # save stack pointer |
2093 | 1898 | ||
2094 | /* Disable ints while we manipulate the stack pointer; spill regs. */ | 1899 | /* Disable ints while we manipulate the stack pointer. */ |
2095 | 1900 | ||
2096 | movi a5, (1 << PS_EXCM_BIT) | LOCKLEVEL | 1901 | movi a14, (1 << PS_EXCM_BIT) | LOCKLEVEL |
2097 | xsr a5, PS | 1902 | xsr a14, PS |
2098 | rsr a3, EXCSAVE_1 | 1903 | rsr a3, EXCSAVE_1 |
2099 | rsync | 1904 | rsync |
2100 | s32i a3, a3, EXC_TABLE_FIXUP /* enter critical section */ | 1905 | s32i a3, a3, EXC_TABLE_FIXUP /* enter critical section */ |
2101 | 1906 | ||
2102 | call0 _spill_registers | 1907 | /* Switch CPENABLE */ |
1908 | |||
1909 | #if (XTENSA_HAVE_COPROCESSORS || XTENSA_HAVE_IO_PORTS) | ||
1910 | l32i a3, a5, THREAD_CPENABLE | ||
1911 | xsr a3, CPENABLE | ||
1912 | s32i a3, a4, THREAD_CPENABLE | ||
1913 | #endif | ||
1914 | |||
1915 | /* Flush register file. */ | ||
1916 | |||
1917 | call0 _spill_registers # destroys a3, a4, and SAR | ||
2103 | 1918 | ||
2104 | /* Set kernel stack (and leave critical section) | 1919 | /* Set kernel stack (and leave critical section) |
2105 | * Note: It's save to set it here. The stack will not be overwritten | 1920 | * Note: It's save to set it here. The stack will not be overwritten |
@@ -2107,19 +1922,21 @@ ENTRY(_switch_to) | |||
2107 | * we return from kernel space. | 1922 | * we return from kernel space. |
2108 | */ | 1923 | */ |
2109 | 1924 | ||
2110 | l32i a0, a4, TASK_THREAD_INFO | ||
2111 | rsr a3, EXCSAVE_1 # exc_table | 1925 | rsr a3, EXCSAVE_1 # exc_table |
2112 | movi a1, 0 | 1926 | movi a6, 0 |
2113 | addi a0, a0, PT_REGS_OFFSET | 1927 | addi a7, a5, PT_REGS_OFFSET |
2114 | s32i a1, a3, EXC_TABLE_FIXUP | 1928 | s32i a6, a3, EXC_TABLE_FIXUP |
2115 | s32i a0, a3, EXC_TABLE_KSTK | 1929 | s32i a7, a3, EXC_TABLE_KSTK |
2116 | 1930 | ||
2117 | /* restore context of the task that 'next' addresses */ | 1931 | /* restore context of the task that 'next' addresses */ |
2118 | 1932 | ||
2119 | l32i a0, a4, THREAD_RA /* restore return address */ | 1933 | l32i a0, a13, THREAD_RA # restore return address |
2120 | l32i a1, a4, THREAD_SP /* restore stack pointer */ | 1934 | l32i a1, a13, THREAD_SP # restore stack pointer |
1935 | |||
1936 | load_xtregs_user a5 a6 a8 a9 a10 a11 THREAD_XTREGS_USER | ||
2121 | 1937 | ||
2122 | wsr a5, PS | 1938 | wsr a14, PS |
1939 | mov a2, a12 # return 'prev' | ||
2123 | rsync | 1940 | rsync |
2124 | 1941 | ||
2125 | retw | 1942 | retw |
diff --git a/arch/xtensa/kernel/module.c b/arch/xtensa/kernel/module.c index ddf14dcf2ad9..3981a466c779 100644 --- a/arch/xtensa/kernel/module.c +++ b/arch/xtensa/kernel/module.c | |||
@@ -28,7 +28,7 @@ void *module_alloc(unsigned long size) | |||
28 | { | 28 | { |
29 | if (size == 0) | 29 | if (size == 0) |
30 | return NULL; | 30 | return NULL; |
31 | return vmalloc(size); | 31 | return vmalloc_exec(size); |
32 | } | 32 | } |
33 | 33 | ||
34 | void module_free(struct module *mod, void *module_region) | 34 | void module_free(struct module *mod, void *module_region) |
diff --git a/arch/xtensa/kernel/process.c b/arch/xtensa/kernel/process.c index f53d7bd9dfb2..9185597eb6a0 100644 --- a/arch/xtensa/kernel/process.c +++ b/arch/xtensa/kernel/process.c | |||
@@ -52,6 +52,55 @@ void (*pm_power_off)(void) = NULL; | |||
52 | EXPORT_SYMBOL(pm_power_off); | 52 | EXPORT_SYMBOL(pm_power_off); |
53 | 53 | ||
54 | 54 | ||
55 | #if XTENSA_HAVE_COPROCESSORS | ||
56 | |||
57 | void coprocessor_release_all(struct thread_info *ti) | ||
58 | { | ||
59 | unsigned long cpenable; | ||
60 | int i; | ||
61 | |||
62 | /* Make sure we don't switch tasks during this operation. */ | ||
63 | |||
64 | preempt_disable(); | ||
65 | |||
66 | /* Walk through all cp owners and release it for the requested one. */ | ||
67 | |||
68 | cpenable = ti->cpenable; | ||
69 | |||
70 | for (i = 0; i < XCHAL_CP_MAX; i++) { | ||
71 | if (coprocessor_owner[i] == ti) { | ||
72 | coprocessor_owner[i] = 0; | ||
73 | cpenable &= ~(1 << i); | ||
74 | } | ||
75 | } | ||
76 | |||
77 | ti->cpenable = cpenable; | ||
78 | coprocessor_clear_cpenable(); | ||
79 | |||
80 | preempt_enable(); | ||
81 | } | ||
82 | |||
83 | void coprocessor_flush_all(struct thread_info *ti) | ||
84 | { | ||
85 | unsigned long cpenable; | ||
86 | int i; | ||
87 | |||
88 | preempt_disable(); | ||
89 | |||
90 | cpenable = ti->cpenable; | ||
91 | |||
92 | for (i = 0; i < XCHAL_CP_MAX; i++) { | ||
93 | if ((cpenable & 1) != 0 && coprocessor_owner[i] == ti) | ||
94 | coprocessor_flush(ti, i); | ||
95 | cpenable >>= 1; | ||
96 | } | ||
97 | |||
98 | preempt_enable(); | ||
99 | } | ||
100 | |||
101 | #endif | ||
102 | |||
103 | |||
55 | /* | 104 | /* |
56 | * Powermanagement idle function, if any is provided by the platform. | 105 | * Powermanagement idle function, if any is provided by the platform. |
57 | */ | 106 | */ |
@@ -71,15 +120,36 @@ void cpu_idle(void) | |||
71 | } | 120 | } |
72 | 121 | ||
73 | /* | 122 | /* |
74 | * Free current thread data structures etc.. | 123 | * This is called when the thread calls exit(). |
75 | */ | 124 | */ |
76 | |||
77 | void exit_thread(void) | 125 | void exit_thread(void) |
78 | { | 126 | { |
127 | #if XTENSA_HAVE_COPROCESSORS | ||
128 | coprocessor_release_all(current_thread_info()); | ||
129 | #endif | ||
79 | } | 130 | } |
80 | 131 | ||
132 | /* | ||
133 | * Flush thread state. This is called when a thread does an execve() | ||
134 | * Note that we flush coprocessor registers for the case execve fails. | ||
135 | */ | ||
81 | void flush_thread(void) | 136 | void flush_thread(void) |
82 | { | 137 | { |
138 | #if XTENSA_HAVE_COPROCESSORS | ||
139 | struct thread_info *ti = current_thread_info(); | ||
140 | coprocessor_flush_all(ti); | ||
141 | coprocessor_release_all(ti); | ||
142 | #endif | ||
143 | } | ||
144 | |||
145 | /* | ||
146 | * This is called before the thread is copied. | ||
147 | */ | ||
148 | void prepare_to_copy(struct task_struct *tsk) | ||
149 | { | ||
150 | #if XTENSA_HAVE_COPROCESSORS | ||
151 | coprocessor_flush_all(task_thread_info(tsk)); | ||
152 | #endif | ||
83 | } | 153 | } |
84 | 154 | ||
85 | /* | 155 | /* |
@@ -107,6 +177,7 @@ int copy_thread(int nr, unsigned long clone_flags, unsigned long usp, | |||
107 | struct task_struct * p, struct pt_regs * regs) | 177 | struct task_struct * p, struct pt_regs * regs) |
108 | { | 178 | { |
109 | struct pt_regs *childregs; | 179 | struct pt_regs *childregs; |
180 | struct thread_info *ti; | ||
110 | unsigned long tos; | 181 | unsigned long tos; |
111 | int user_mode = user_mode(regs); | 182 | int user_mode = user_mode(regs); |
112 | 183 | ||
@@ -128,13 +199,14 @@ int copy_thread(int nr, unsigned long clone_flags, unsigned long usp, | |||
128 | p->set_child_tid = p->clear_child_tid = NULL; | 199 | p->set_child_tid = p->clear_child_tid = NULL; |
129 | p->thread.ra = MAKE_RA_FOR_CALL((unsigned long)ret_from_fork, 0x1); | 200 | p->thread.ra = MAKE_RA_FOR_CALL((unsigned long)ret_from_fork, 0x1); |
130 | p->thread.sp = (unsigned long)childregs; | 201 | p->thread.sp = (unsigned long)childregs; |
202 | |||
131 | if (user_mode(regs)) { | 203 | if (user_mode(regs)) { |
132 | 204 | ||
133 | int len = childregs->wmask & ~0xf; | 205 | int len = childregs->wmask & ~0xf; |
134 | childregs->areg[1] = usp; | 206 | childregs->areg[1] = usp; |
135 | memcpy(&childregs->areg[XCHAL_NUM_AREGS - len/4], | 207 | memcpy(&childregs->areg[XCHAL_NUM_AREGS - len/4], |
136 | ®s->areg[XCHAL_NUM_AREGS - len/4], len); | 208 | ®s->areg[XCHAL_NUM_AREGS - len/4], len); |
137 | 209 | // FIXME: we need to set THREADPTR in thread_info... | |
138 | if (clone_flags & CLONE_SETTLS) | 210 | if (clone_flags & CLONE_SETTLS) |
139 | childregs->areg[2] = childregs->areg[6]; | 211 | childregs->areg[2] = childregs->areg[6]; |
140 | 212 | ||
@@ -142,6 +214,12 @@ int copy_thread(int nr, unsigned long clone_flags, unsigned long usp, | |||
142 | /* In kernel space, we start a new thread with a new stack. */ | 214 | /* In kernel space, we start a new thread with a new stack. */ |
143 | childregs->wmask = 1; | 215 | childregs->wmask = 1; |
144 | } | 216 | } |
217 | |||
218 | #if (XTENSA_HAVE_COPROCESSORS || XTENSA_HAVE_IO_PORTS) | ||
219 | ti = task_thread_info(p); | ||
220 | ti->cpenable = 0; | ||
221 | #endif | ||
222 | |||
145 | return 0; | 223 | return 0; |
146 | } | 224 | } |
147 | 225 | ||
@@ -179,10 +257,6 @@ unsigned long get_wchan(struct task_struct *p) | |||
179 | } | 257 | } |
180 | 258 | ||
181 | /* | 259 | /* |
182 | * do_copy_regs() gathers information from 'struct pt_regs' and | ||
183 | * 'current->thread.areg[]' to fill in the xtensa_gregset_t | ||
184 | * structure. | ||
185 | * | ||
186 | * xtensa_gregset_t and 'struct pt_regs' are vastly different formats | 260 | * xtensa_gregset_t and 'struct pt_regs' are vastly different formats |
187 | * of processor registers. Besides different ordering, | 261 | * of processor registers. Besides different ordering, |
188 | * xtensa_gregset_t contains non-live register information that | 262 | * xtensa_gregset_t contains non-live register information that |
@@ -191,18 +265,19 @@ unsigned long get_wchan(struct task_struct *p) | |||
191 | * | 265 | * |
192 | */ | 266 | */ |
193 | 267 | ||
194 | void do_copy_regs (xtensa_gregset_t *elfregs, struct pt_regs *regs, | 268 | void xtensa_elf_core_copy_regs (xtensa_gregset_t *elfregs, struct pt_regs *regs) |
195 | struct task_struct *tsk) | ||
196 | { | 269 | { |
197 | int i, n, wb_offset; | 270 | unsigned long wb, ws, wm; |
271 | int live, last; | ||
198 | 272 | ||
199 | elfregs->xchal_config_id0 = XCHAL_HW_CONFIGID0; | 273 | wb = regs->windowbase; |
200 | elfregs->xchal_config_id1 = XCHAL_HW_CONFIGID1; | 274 | ws = regs->windowstart; |
275 | wm = regs->wmask; | ||
276 | ws = ((ws >> wb) | (ws << (WSBITS - wb))) & ((1 << WSBITS) - 1); | ||
201 | 277 | ||
202 | __asm__ __volatile__ ("rsr %0, 176\n" : "=a" (i)); | 278 | /* Don't leak any random bits. */ |
203 | elfregs->cpux = i; | 279 | |
204 | __asm__ __volatile__ ("rsr %0, 208\n" : "=a" (i)); | 280 | memset(elfregs, 0, sizeof (elfregs)); |
205 | elfregs->cpuy = i; | ||
206 | 281 | ||
207 | /* Note: PS.EXCM is not set while user task is running; its | 282 | /* Note: PS.EXCM is not set while user task is running; its |
208 | * being set in regs->ps is for exception handling convenience. | 283 | * being set in regs->ps is for exception handling convenience. |
@@ -210,204 +285,22 @@ void do_copy_regs (xtensa_gregset_t *elfregs, struct pt_regs *regs, | |||
210 | 285 | ||
211 | elfregs->pc = regs->pc; | 286 | elfregs->pc = regs->pc; |
212 | elfregs->ps = (regs->ps & ~(1 << PS_EXCM_BIT)); | 287 | elfregs->ps = (regs->ps & ~(1 << PS_EXCM_BIT)); |
213 | elfregs->exccause = regs->exccause; | ||
214 | elfregs->excvaddr = regs->excvaddr; | ||
215 | elfregs->windowbase = regs->windowbase; | ||
216 | elfregs->windowstart = regs->windowstart; | ||
217 | elfregs->lbeg = regs->lbeg; | 288 | elfregs->lbeg = regs->lbeg; |
218 | elfregs->lend = regs->lend; | 289 | elfregs->lend = regs->lend; |
219 | elfregs->lcount = regs->lcount; | 290 | elfregs->lcount = regs->lcount; |
220 | elfregs->sar = regs->sar; | 291 | elfregs->sar = regs->sar; |
221 | elfregs->syscall = regs->syscall; | 292 | elfregs->windowstart = ws; |
222 | |||
223 | /* Copy register file. | ||
224 | * The layout looks like this: | ||
225 | * | ||
226 | * | a0 ... a15 | Z ... Z | arX ... arY | | ||
227 | * current window unused saved frames | ||
228 | */ | ||
229 | |||
230 | memset (elfregs->ar, 0, sizeof(elfregs->ar)); | ||
231 | 293 | ||
232 | wb_offset = regs->windowbase * 4; | 294 | live = (wm & 2) ? 4 : (wm & 4) ? 8 : (wm & 8) ? 12 : 16; |
233 | n = (regs->wmask&1)? 4 : (regs->wmask&2)? 8 : (regs->wmask&4)? 12 : 16; | 295 | last = XCHAL_NUM_AREGS - (wm >> 4) * 4; |
234 | 296 | memcpy(elfregs->a, regs->areg, live * 4); | |
235 | for (i = 0; i < n; i++) | 297 | memcpy(elfregs->a + last, regs->areg + last, (wm >> 4) * 16); |
236 | elfregs->ar[(wb_offset + i) % XCHAL_NUM_AREGS] = regs->areg[i]; | ||
237 | |||
238 | n = (regs->wmask >> 4) * 4; | ||
239 | |||
240 | for (i = XCHAL_NUM_AREGS - n; n > 0; i++, n--) | ||
241 | elfregs->ar[(wb_offset + i) % XCHAL_NUM_AREGS] = regs->areg[i]; | ||
242 | } | 298 | } |
243 | 299 | ||
244 | void xtensa_elf_core_copy_regs (xtensa_gregset_t *elfregs, struct pt_regs *regs) | 300 | int dump_fpu(void) |
245 | { | 301 | { |
246 | do_copy_regs ((xtensa_gregset_t *)elfregs, regs, current); | ||
247 | } | ||
248 | |||
249 | |||
250 | /* The inverse of do_copy_regs(). No error or sanity checking. */ | ||
251 | |||
252 | void do_restore_regs (xtensa_gregset_t *elfregs, struct pt_regs *regs, | ||
253 | struct task_struct *tsk) | ||
254 | { | ||
255 | int i, n, wb_offset; | ||
256 | |||
257 | /* Note: PS.EXCM is not set while user task is running; it | ||
258 | * needs to be set in regs->ps is for exception handling convenience. | ||
259 | */ | ||
260 | |||
261 | regs->pc = elfregs->pc; | ||
262 | regs->ps = (elfregs->ps | (1 << PS_EXCM_BIT)); | ||
263 | regs->exccause = elfregs->exccause; | ||
264 | regs->excvaddr = elfregs->excvaddr; | ||
265 | regs->windowbase = elfregs->windowbase; | ||
266 | regs->windowstart = elfregs->windowstart; | ||
267 | regs->lbeg = elfregs->lbeg; | ||
268 | regs->lend = elfregs->lend; | ||
269 | regs->lcount = elfregs->lcount; | ||
270 | regs->sar = elfregs->sar; | ||
271 | regs->syscall = elfregs->syscall; | ||
272 | |||
273 | /* Clear everything. */ | ||
274 | |||
275 | memset (regs->areg, 0, sizeof(regs->areg)); | ||
276 | |||
277 | /* Copy regs from live window frame. */ | ||
278 | |||
279 | wb_offset = regs->windowbase * 4; | ||
280 | n = (regs->wmask&1)? 4 : (regs->wmask&2)? 8 : (regs->wmask&4)? 12 : 16; | ||
281 | |||
282 | for (i = 0; i < n; i++) | ||
283 | regs->areg[(wb_offset+i) % XCHAL_NUM_AREGS] = elfregs->ar[i]; | ||
284 | |||
285 | n = (regs->wmask >> 4) * 4; | ||
286 | |||
287 | for (i = XCHAL_NUM_AREGS - n; n > 0; i++, n--) | ||
288 | regs->areg[(wb_offset+i) % XCHAL_NUM_AREGS] = elfregs->ar[i]; | ||
289 | } | ||
290 | |||
291 | /* | ||
292 | * do_save_fpregs() gathers information from 'struct pt_regs' and | ||
293 | * 'current->thread' to fill in the elf_fpregset_t structure. | ||
294 | * | ||
295 | * Core files and ptrace use elf_fpregset_t. | ||
296 | */ | ||
297 | |||
298 | void do_save_fpregs (elf_fpregset_t *fpregs, struct pt_regs *regs, | ||
299 | struct task_struct *tsk) | ||
300 | { | ||
301 | #if XCHAL_HAVE_CP | ||
302 | |||
303 | extern unsigned char _xtensa_reginfo_tables[]; | ||
304 | extern unsigned _xtensa_reginfo_table_size; | ||
305 | int i; | ||
306 | unsigned long flags; | ||
307 | |||
308 | /* Before dumping coprocessor state from memory, | ||
309 | * ensure any live coprocessor contents for this | ||
310 | * task are first saved to memory: | ||
311 | */ | ||
312 | local_irq_save(flags); | ||
313 | |||
314 | for (i = 0; i < XCHAL_CP_MAX; i++) { | ||
315 | if (tsk == coprocessor_info[i].owner) { | ||
316 | enable_coprocessor(i); | ||
317 | save_coprocessor_registers( | ||
318 | tsk->thread.cp_save+coprocessor_info[i].offset,i); | ||
319 | disable_coprocessor(i); | ||
320 | } | ||
321 | } | ||
322 | |||
323 | local_irq_restore(flags); | ||
324 | |||
325 | /* Now dump coprocessor & extra state: */ | ||
326 | memcpy((unsigned char*)fpregs, | ||
327 | _xtensa_reginfo_tables, _xtensa_reginfo_table_size); | ||
328 | memcpy((unsigned char*)fpregs + _xtensa_reginfo_table_size, | ||
329 | tsk->thread.cp_save, XTENSA_CP_EXTRA_SIZE); | ||
330 | #endif | ||
331 | } | ||
332 | |||
333 | /* | ||
334 | * The inverse of do_save_fpregs(). | ||
335 | * Copies coprocessor and extra state from fpregs into regs and tsk->thread. | ||
336 | * Returns 0 on success, non-zero if layout doesn't match. | ||
337 | */ | ||
338 | |||
339 | int do_restore_fpregs (elf_fpregset_t *fpregs, struct pt_regs *regs, | ||
340 | struct task_struct *tsk) | ||
341 | { | ||
342 | #if XCHAL_HAVE_CP | ||
343 | |||
344 | extern unsigned char _xtensa_reginfo_tables[]; | ||
345 | extern unsigned _xtensa_reginfo_table_size; | ||
346 | int i; | ||
347 | unsigned long flags; | ||
348 | |||
349 | /* Make sure save area layouts match. | ||
350 | * FIXME: in the future we could allow restoring from | ||
351 | * a different layout of the same registers, by comparing | ||
352 | * fpregs' table with _xtensa_reginfo_tables and matching | ||
353 | * entries and copying registers one at a time. | ||
354 | * Not too sure yet whether that's very useful. | ||
355 | */ | ||
356 | |||
357 | if( memcmp((unsigned char*)fpregs, | ||
358 | _xtensa_reginfo_tables, _xtensa_reginfo_table_size) ) { | ||
359 | return -1; | ||
360 | } | ||
361 | |||
362 | /* Before restoring coprocessor state from memory, | ||
363 | * ensure any live coprocessor contents for this | ||
364 | * task are first invalidated. | ||
365 | */ | ||
366 | |||
367 | local_irq_save(flags); | ||
368 | |||
369 | for (i = 0; i < XCHAL_CP_MAX; i++) { | ||
370 | if (tsk == coprocessor_info[i].owner) { | ||
371 | enable_coprocessor(i); | ||
372 | save_coprocessor_registers( | ||
373 | tsk->thread.cp_save+coprocessor_info[i].offset,i); | ||
374 | coprocessor_info[i].owner = 0; | ||
375 | disable_coprocessor(i); | ||
376 | } | ||
377 | } | ||
378 | |||
379 | local_irq_restore(flags); | ||
380 | |||
381 | /* Now restore coprocessor & extra state: */ | ||
382 | |||
383 | memcpy(tsk->thread.cp_save, | ||
384 | (unsigned char*)fpregs + _xtensa_reginfo_table_size, | ||
385 | XTENSA_CP_EXTRA_SIZE); | ||
386 | #endif | ||
387 | return 0; | 302 | return 0; |
388 | } | 303 | } |
389 | /* | ||
390 | * Fill in the CP structure for a core dump for a particular task. | ||
391 | */ | ||
392 | |||
393 | int | ||
394 | dump_task_fpu(struct pt_regs *regs, struct task_struct *task, elf_fpregset_t *r) | ||
395 | { | ||
396 | return 0; /* no coprocessors active on this processor */ | ||
397 | } | ||
398 | |||
399 | /* | ||
400 | * Fill in the CP structure for a core dump. | ||
401 | * This includes any FPU coprocessor. | ||
402 | * Here, we dump all coprocessors, and other ("extra") custom state. | ||
403 | * | ||
404 | * This function is called by elf_core_dump() in fs/binfmt_elf.c | ||
405 | * (in which case 'regs' comes from calls to do_coredump, see signals.c). | ||
406 | */ | ||
407 | int dump_fpu(struct pt_regs *regs, elf_fpregset_t *r) | ||
408 | { | ||
409 | return dump_task_fpu(regs, current, r); | ||
410 | } | ||
411 | 304 | ||
412 | asmlinkage | 305 | asmlinkage |
413 | long xtensa_clone(unsigned long clone_flags, unsigned long newsp, | 306 | long xtensa_clone(unsigned long clone_flags, unsigned long newsp, |
@@ -421,8 +314,8 @@ long xtensa_clone(unsigned long clone_flags, unsigned long newsp, | |||
421 | } | 314 | } |
422 | 315 | ||
423 | /* | 316 | /* |
424 | * * xtensa_execve() executes a new program. | 317 | * xtensa_execve() executes a new program. |
425 | * */ | 318 | */ |
426 | 319 | ||
427 | asmlinkage | 320 | asmlinkage |
428 | long xtensa_execve(char __user *name, char __user * __user *argv, | 321 | long xtensa_execve(char __user *name, char __user * __user *argv, |
@@ -437,7 +330,6 @@ long xtensa_execve(char __user *name, char __user * __user *argv, | |||
437 | error = PTR_ERR(filename); | 330 | error = PTR_ERR(filename); |
438 | if (IS_ERR(filename)) | 331 | if (IS_ERR(filename)) |
439 | goto out; | 332 | goto out; |
440 | // FIXME: release coprocessor?? | ||
441 | error = do_execve(filename, argv, envp, regs); | 333 | error = do_execve(filename, argv, envp, regs); |
442 | if (error == 0) { | 334 | if (error == 0) { |
443 | task_lock(current); | 335 | task_lock(current); |
diff --git a/arch/xtensa/kernel/ptrace.c b/arch/xtensa/kernel/ptrace.c index 5533c7850d53..9486882ef0af 100644 --- a/arch/xtensa/kernel/ptrace.c +++ b/arch/xtensa/kernel/ptrace.c | |||
@@ -4,7 +4,7 @@ | |||
4 | * License. See the file "COPYING" in the main directory of this archive | 4 | * License. See the file "COPYING" in the main directory of this archive |
5 | * for more details. | 5 | * for more details. |
6 | * | 6 | * |
7 | * Copyright (C) 2001 - 2005 Tensilica Inc. | 7 | * Copyright (C) 2001 - 2007 Tensilica Inc. |
8 | * | 8 | * |
9 | * Joe Taylor <joe@tensilica.com, joetylr@yahoo.com> | 9 | * Joe Taylor <joe@tensilica.com, joetylr@yahoo.com> |
10 | * Chris Zankel <chris@zankel.net> | 10 | * Chris Zankel <chris@zankel.net> |
@@ -28,14 +28,10 @@ | |||
28 | #include <asm/uaccess.h> | 28 | #include <asm/uaccess.h> |
29 | #include <asm/ptrace.h> | 29 | #include <asm/ptrace.h> |
30 | #include <asm/elf.h> | 30 | #include <asm/elf.h> |
31 | 31 | #include <asm/coprocessor.h> | |
32 | #define TEST_KERNEL // verify kernel operations FIXME: remove | ||
33 | |||
34 | 32 | ||
35 | /* | 33 | /* |
36 | * Called by kernel/ptrace.c when detaching.. | 34 | * Called by kernel/ptrace.c when detaching to disable single stepping. |
37 | * | ||
38 | * Make sure single step bits etc are not set. | ||
39 | */ | 35 | */ |
40 | 36 | ||
41 | void ptrace_disable(struct task_struct *child) | 37 | void ptrace_disable(struct task_struct *child) |
@@ -43,136 +39,237 @@ void ptrace_disable(struct task_struct *child) | |||
43 | /* Nothing to do.. */ | 39 | /* Nothing to do.. */ |
44 | } | 40 | } |
45 | 41 | ||
46 | long arch_ptrace(struct task_struct *child, long request, long addr, long data) | 42 | int ptrace_getregs(struct task_struct *child, void __user *uregs) |
47 | { | 43 | { |
48 | int ret = -EPERM; | 44 | struct pt_regs *regs = task_pt_regs(child); |
45 | xtensa_gregset_t __user *gregset = uregs; | ||
46 | unsigned long wm = regs->wmask; | ||
47 | unsigned long wb = regs->windowbase; | ||
48 | int live, i; | ||
49 | |||
50 | if (!access_ok(VERIFY_WRITE, uregs, sizeof(xtensa_gregset_t))) | ||
51 | return -EIO; | ||
52 | |||
53 | __put_user(regs->pc, &gregset->pc); | ||
54 | __put_user(regs->ps & ~(1 << PS_EXCM_BIT), &gregset->ps); | ||
55 | __put_user(regs->lbeg, &gregset->lbeg); | ||
56 | __put_user(regs->lend, &gregset->lend); | ||
57 | __put_user(regs->lcount, &gregset->lcount); | ||
58 | __put_user(regs->windowstart, &gregset->windowstart); | ||
59 | __put_user(regs->windowbase, &gregset->windowbase); | ||
60 | |||
61 | live = (wm & 2) ? 4 : (wm & 4) ? 8 : (wm & 8) ? 12 : 16; | ||
62 | |||
63 | for (i = 0; i < live; i++) | ||
64 | __put_user(regs->areg[i],gregset->a+((wb*4+i)%XCHAL_NUM_AREGS)); | ||
65 | for (i = XCHAL_NUM_AREGS - (wm >> 4) * 4; i < XCHAL_NUM_AREGS; i++) | ||
66 | __put_user(regs->areg[i],gregset->a+((wb*4+i)%XCHAL_NUM_AREGS)); | ||
67 | |||
68 | return 0; | ||
69 | } | ||
49 | 70 | ||
50 | switch (request) { | 71 | int ptrace_setregs(struct task_struct *child, void __user *uregs) |
51 | case PTRACE_PEEKTEXT: /* read word at location addr. */ | 72 | { |
52 | case PTRACE_PEEKDATA: | 73 | struct pt_regs *regs = task_pt_regs(child); |
53 | ret = generic_ptrace_peekdata(child, addr, data); | 74 | xtensa_gregset_t *gregset = uregs; |
54 | goto out; | 75 | const unsigned long ps_mask = PS_CALLINC_MASK | PS_OWB_MASK; |
76 | unsigned long ps; | ||
77 | unsigned long wb; | ||
55 | 78 | ||
56 | /* Read the word at location addr in the USER area. */ | 79 | if (!access_ok(VERIFY_WRITE, uregs, sizeof(xtensa_gregset_t))) |
80 | return -EIO; | ||
57 | 81 | ||
58 | case PTRACE_PEEKUSR: | 82 | __get_user(regs->pc, &gregset->pc); |
59 | { | 83 | __get_user(ps, &gregset->ps); |
60 | struct pt_regs *regs; | 84 | __get_user(regs->lbeg, &gregset->lbeg); |
61 | unsigned long tmp; | 85 | __get_user(regs->lend, &gregset->lend); |
86 | __get_user(regs->lcount, &gregset->lcount); | ||
87 | __get_user(regs->windowstart, &gregset->windowstart); | ||
88 | __get_user(wb, &gregset->windowbase); | ||
89 | |||
90 | regs->ps = (regs->ps & ~ps_mask) | (ps & ps_mask) | (1 << PS_EXCM_BIT); | ||
91 | |||
92 | if (wb >= XCHAL_NUM_AREGS / 4) | ||
93 | return -EFAULT; | ||
94 | |||
95 | regs->windowbase = wb; | ||
96 | |||
97 | if (wb != 0 && __copy_from_user(regs->areg + XCHAL_NUM_AREGS - wb * 4, | ||
98 | gregset->a, wb * 16)) | ||
99 | return -EFAULT; | ||
100 | |||
101 | if (__copy_from_user(regs->areg, gregset->a + wb*4, (WSBITS-wb) * 16)) | ||
102 | return -EFAULT; | ||
103 | |||
104 | return 0; | ||
105 | } | ||
106 | |||
107 | |||
108 | int ptrace_getxregs(struct task_struct *child, void __user *uregs) | ||
109 | { | ||
110 | struct pt_regs *regs = task_pt_regs(child); | ||
111 | struct thread_info *ti = task_thread_info(child); | ||
112 | elf_xtregs_t __user *xtregs = uregs; | ||
113 | int ret = 0; | ||
114 | |||
115 | if (!access_ok(VERIFY_WRITE, uregs, sizeof(elf_xtregs_t))) | ||
116 | return -EIO; | ||
117 | |||
118 | #if XTENSA_HAVE_COPROCESSORS | ||
119 | /* Flush all coprocessor registers to memory. */ | ||
120 | coprocessor_flush_all(ti); | ||
121 | ret |= __copy_to_user(&xtregs->cp0, &ti->xtregs_cp, | ||
122 | sizeof(xtregs_coprocessor_t)); | ||
123 | #endif | ||
124 | ret |= __copy_to_user(&xtregs->opt, ®s->xtregs_opt, | ||
125 | sizeof(xtregs->opt)); | ||
126 | ret |= __copy_to_user(&xtregs->user,&ti->xtregs_user, | ||
127 | sizeof(xtregs->user)); | ||
128 | |||
129 | return ret ? -EFAULT : 0; | ||
130 | } | ||
131 | |||
132 | int ptrace_setxregs(struct task_struct *child, void __user *uregs) | ||
133 | { | ||
134 | struct thread_info *ti = task_thread_info(child); | ||
135 | struct pt_regs *regs = task_pt_regs(child); | ||
136 | elf_xtregs_t *xtregs = uregs; | ||
137 | int ret = 0; | ||
138 | |||
139 | #if XTENSA_HAVE_COPROCESSORS | ||
140 | /* Flush all coprocessors before we overwrite them. */ | ||
141 | coprocessor_flush_all(ti); | ||
142 | coprocessor_release_all(ti); | ||
143 | |||
144 | ret |= __copy_from_user(&ti->xtregs_cp, &xtregs->cp0, | ||
145 | sizeof(xtregs_coprocessor_t)); | ||
146 | #endif | ||
147 | ret |= __copy_from_user(®s->xtregs_opt, &xtregs->opt, | ||
148 | sizeof(xtregs->opt)); | ||
149 | ret |= __copy_from_user(&ti->xtregs_user, &xtregs->user, | ||
150 | sizeof(xtregs->user)); | ||
151 | |||
152 | return ret ? -EFAULT : 0; | ||
153 | } | ||
154 | |||
155 | int ptrace_peekusr(struct task_struct *child, long regno, long __user *ret) | ||
156 | { | ||
157 | struct pt_regs *regs; | ||
158 | unsigned long tmp; | ||
62 | 159 | ||
63 | regs = task_pt_regs(child); | 160 | regs = task_pt_regs(child); |
64 | tmp = 0; /* Default return value. */ | 161 | tmp = 0; /* Default return value. */ |
65 | 162 | ||
66 | switch(addr) { | 163 | switch(regno) { |
67 | 164 | ||
68 | case REG_AR_BASE ... REG_AR_BASE + XCHAL_NUM_AREGS - 1: | 165 | case REG_AR_BASE ... REG_AR_BASE + XCHAL_NUM_AREGS - 1: |
69 | { | 166 | tmp = regs->areg[regno - REG_AR_BASE]; |
70 | int ar = addr - REG_AR_BASE - regs->windowbase * 4; | ||
71 | ar &= (XCHAL_NUM_AREGS - 1); | ||
72 | if (ar < 16 && ar + (regs->wmask >> 4) * 4 >= 0) | ||
73 | tmp = regs->areg[ar]; | ||
74 | else | ||
75 | ret = -EIO; | ||
76 | break; | 167 | break; |
77 | } | 168 | |
78 | case REG_A_BASE ... REG_A_BASE + 15: | 169 | case REG_A_BASE ... REG_A_BASE + 15: |
79 | tmp = regs->areg[addr - REG_A_BASE]; | 170 | tmp = regs->areg[regno - REG_A_BASE]; |
80 | break; | 171 | break; |
172 | |||
81 | case REG_PC: | 173 | case REG_PC: |
82 | tmp = regs->pc; | 174 | tmp = regs->pc; |
83 | break; | 175 | break; |
176 | |||
84 | case REG_PS: | 177 | case REG_PS: |
85 | /* Note: PS.EXCM is not set while user task is running; | 178 | /* Note: PS.EXCM is not set while user task is running; |
86 | * its being set in regs is for exception handling | 179 | * its being set in regs is for exception handling |
87 | * convenience. */ | 180 | * convenience. */ |
88 | tmp = (regs->ps & ~(1 << PS_EXCM_BIT)); | 181 | tmp = (regs->ps & ~(1 << PS_EXCM_BIT)); |
89 | break; | 182 | break; |
183 | |||
90 | case REG_WB: | 184 | case REG_WB: |
91 | tmp = regs->windowbase; | 185 | break; /* tmp = 0 */ |
92 | break; | 186 | |
93 | case REG_WS: | 187 | case REG_WS: |
94 | tmp = regs->windowstart; | 188 | { |
189 | unsigned long wb = regs->windowbase; | ||
190 | unsigned long ws = regs->windowstart; | ||
191 | tmp = ((ws>>wb) | (ws<<(WSBITS-wb))) & ((1<<WSBITS)-1); | ||
95 | break; | 192 | break; |
193 | } | ||
96 | case REG_LBEG: | 194 | case REG_LBEG: |
97 | tmp = regs->lbeg; | 195 | tmp = regs->lbeg; |
98 | break; | 196 | break; |
197 | |||
99 | case REG_LEND: | 198 | case REG_LEND: |
100 | tmp = regs->lend; | 199 | tmp = regs->lend; |
101 | break; | 200 | break; |
201 | |||
102 | case REG_LCOUNT: | 202 | case REG_LCOUNT: |
103 | tmp = regs->lcount; | 203 | tmp = regs->lcount; |
104 | break; | 204 | break; |
205 | |||
105 | case REG_SAR: | 206 | case REG_SAR: |
106 | tmp = regs->sar; | 207 | tmp = regs->sar; |
107 | break; | 208 | break; |
108 | case REG_DEPC: | 209 | |
109 | tmp = regs->depc; | ||
110 | break; | ||
111 | case REG_EXCCAUSE: | ||
112 | tmp = regs->exccause; | ||
113 | break; | ||
114 | case REG_EXCVADDR: | ||
115 | tmp = regs->excvaddr; | ||
116 | break; | ||
117 | case SYSCALL_NR: | 210 | case SYSCALL_NR: |
118 | tmp = regs->syscall; | 211 | tmp = regs->syscall; |
119 | break; | 212 | break; |
120 | default: | ||
121 | tmp = 0; | ||
122 | ret = -EIO; | ||
123 | goto out; | ||
124 | } | ||
125 | ret = put_user(tmp, (unsigned long *) data); | ||
126 | goto out; | ||
127 | } | ||
128 | 213 | ||
129 | case PTRACE_POKETEXT: /* write the word at location addr. */ | 214 | default: |
130 | case PTRACE_POKEDATA: | 215 | return -EIO; |
131 | ret = generic_ptrace_pokedata(child, addr, data); | 216 | } |
132 | goto out; | 217 | return put_user(tmp, ret); |
218 | } | ||
133 | 219 | ||
134 | case PTRACE_POKEUSR: | 220 | int ptrace_pokeusr(struct task_struct *child, long regno, long val) |
135 | { | 221 | { |
136 | struct pt_regs *regs; | 222 | struct pt_regs *regs; |
137 | regs = task_pt_regs(child); | 223 | regs = task_pt_regs(child); |
138 | 224 | ||
139 | switch (addr) { | 225 | switch (regno) { |
140 | case REG_AR_BASE ... REG_AR_BASE + XCHAL_NUM_AREGS - 1: | 226 | case REG_AR_BASE ... REG_AR_BASE + XCHAL_NUM_AREGS - 1: |
141 | { | 227 | regs->areg[regno - REG_AR_BASE] = val; |
142 | int ar = addr - REG_AR_BASE - regs->windowbase * 4; | ||
143 | if (ar < 16 && ar + (regs->wmask >> 4) * 4 >= 0) | ||
144 | regs->areg[ar & (XCHAL_NUM_AREGS - 1)] = data; | ||
145 | else | ||
146 | ret = -EIO; | ||
147 | break; | 228 | break; |
148 | } | 229 | |
149 | case REG_A_BASE ... REG_A_BASE + 15: | 230 | case REG_A_BASE ... REG_A_BASE + 15: |
150 | regs->areg[addr - REG_A_BASE] = data; | 231 | regs->areg[regno - REG_A_BASE] = val; |
151 | break; | 232 | break; |
233 | |||
152 | case REG_PC: | 234 | case REG_PC: |
153 | regs->pc = data; | 235 | regs->pc = val; |
154 | break; | 236 | break; |
237 | |||
155 | case SYSCALL_NR: | 238 | case SYSCALL_NR: |
156 | regs->syscall = data; | 239 | regs->syscall = val; |
157 | break; | ||
158 | #ifdef TEST_KERNEL | ||
159 | case REG_WB: | ||
160 | regs->windowbase = data; | ||
161 | break; | ||
162 | case REG_WS: | ||
163 | regs->windowstart = data; | ||
164 | break; | 240 | break; |
165 | #endif | ||
166 | 241 | ||
167 | default: | 242 | default: |
168 | /* The rest are not allowed. */ | 243 | return -EIO; |
169 | ret = -EIO; | 244 | } |
170 | break; | 245 | return 0; |
171 | } | 246 | } |
247 | |||
248 | long arch_ptrace(struct task_struct *child, long request, long addr, long data) | ||
249 | { | ||
250 | int ret = -EPERM; | ||
251 | |||
252 | switch (request) { | ||
253 | case PTRACE_PEEKTEXT: /* read word at location addr. */ | ||
254 | case PTRACE_PEEKDATA: | ||
255 | ret = generic_ptrace_peekdata(child, addr, data); | ||
256 | break; | ||
257 | |||
258 | case PTRACE_PEEKUSR: /* read register specified by addr. */ | ||
259 | ret = ptrace_peekusr(child, addr, (void __user *) data); | ||
260 | break; | ||
261 | |||
262 | case PTRACE_POKETEXT: /* write the word at location addr. */ | ||
263 | case PTRACE_POKEDATA: | ||
264 | ret = generic_ptrace_pokedata(child, addr, data); | ||
265 | break; | ||
266 | |||
267 | case PTRACE_POKEUSR: /* write register specified by addr. */ | ||
268 | ret = ptrace_pokeusr(child, addr, data); | ||
172 | break; | 269 | break; |
173 | } | ||
174 | 270 | ||
175 | /* continue and stop at next (return from) syscall */ | 271 | /* continue and stop at next (return from) syscall */ |
272 | |||
176 | case PTRACE_SYSCALL: | 273 | case PTRACE_SYSCALL: |
177 | case PTRACE_CONT: /* restart after signal. */ | 274 | case PTRACE_CONT: /* restart after signal. */ |
178 | { | 275 | { |
@@ -217,98 +314,26 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data) | |||
217 | break; | 314 | break; |
218 | 315 | ||
219 | case PTRACE_GETREGS: | 316 | case PTRACE_GETREGS: |
220 | { | 317 | ret = ptrace_getregs(child, (void __user *) data); |
221 | /* 'data' points to user memory in which to write. | ||
222 | * Mainly due to the non-live register values, we | ||
223 | * reformat the register values into something more | ||
224 | * standard. For convenience, we use the handy | ||
225 | * elf_gregset_t format. */ | ||
226 | |||
227 | xtensa_gregset_t format; | ||
228 | struct pt_regs *regs = task_pt_regs(child); | ||
229 | |||
230 | do_copy_regs (&format, regs, child); | ||
231 | |||
232 | /* Now, copy to user space nice and easy... */ | ||
233 | ret = 0; | ||
234 | if (copy_to_user((void *)data, &format, sizeof(elf_gregset_t))) | ||
235 | ret = -EFAULT; | ||
236 | break; | 318 | break; |
237 | } | ||
238 | 319 | ||
239 | case PTRACE_SETREGS: | 320 | case PTRACE_SETREGS: |
240 | { | 321 | ret = ptrace_setregs(child, (void __user *) data); |
241 | /* 'data' points to user memory that contains the new | ||
242 | * values in the elf_gregset_t format. */ | ||
243 | |||
244 | xtensa_gregset_t format; | ||
245 | struct pt_regs *regs = task_pt_regs(child); | ||
246 | |||
247 | if (copy_from_user(&format,(void *)data,sizeof(elf_gregset_t))){ | ||
248 | ret = -EFAULT; | ||
249 | break; | ||
250 | } | ||
251 | |||
252 | /* FIXME: Perhaps we want some sanity checks on | ||
253 | * these user-space values? See ARM version. Are | ||
254 | * debuggers a security concern? */ | ||
255 | |||
256 | do_restore_regs (&format, regs, child); | ||
257 | |||
258 | ret = 0; | ||
259 | break; | ||
260 | } | ||
261 | |||
262 | case PTRACE_GETFPREGS: | ||
263 | { | ||
264 | /* 'data' points to user memory in which to write. | ||
265 | * For convenience, we use the handy | ||
266 | * elf_fpregset_t format. */ | ||
267 | |||
268 | elf_fpregset_t fpregs; | ||
269 | struct pt_regs *regs = task_pt_regs(child); | ||
270 | |||
271 | do_save_fpregs (&fpregs, regs, child); | ||
272 | |||
273 | /* Now, copy to user space nice and easy... */ | ||
274 | ret = 0; | ||
275 | if (copy_to_user((void *)data, &fpregs, sizeof(elf_fpregset_t))) | ||
276 | ret = -EFAULT; | ||
277 | |||
278 | break; | 322 | break; |
279 | } | ||
280 | |||
281 | case PTRACE_SETFPREGS: | ||
282 | { | ||
283 | /* 'data' points to user memory that contains the new | ||
284 | * values in the elf_fpregset_t format. | ||
285 | */ | ||
286 | elf_fpregset_t fpregs; | ||
287 | struct pt_regs *regs = task_pt_regs(child); | ||
288 | 323 | ||
289 | ret = 0; | 324 | case PTRACE_GETXTREGS: |
290 | if (copy_from_user(&fpregs, (void *)data, sizeof(elf_fpregset_t))) { | 325 | ret = ptrace_getxregs(child, (void __user *) data); |
291 | ret = -EFAULT; | ||
292 | break; | ||
293 | } | ||
294 | |||
295 | if (do_restore_fpregs (&fpregs, regs, child)) | ||
296 | ret = -EIO; | ||
297 | break; | 326 | break; |
298 | } | ||
299 | 327 | ||
300 | case PTRACE_GETFPREGSIZE: | 328 | case PTRACE_SETXTREGS: |
301 | /* 'data' points to 'unsigned long' set to the size | 329 | ret = ptrace_setxregs(child, (void __user *) data); |
302 | * of elf_fpregset_t | ||
303 | */ | ||
304 | ret = put_user(sizeof(elf_fpregset_t), (unsigned long *) data); | ||
305 | break; | 330 | break; |
306 | 331 | ||
307 | default: | 332 | default: |
308 | ret = ptrace_request(child, request, addr, data); | 333 | ret = ptrace_request(child, request, addr, data); |
309 | goto out; | 334 | break; |
310 | } | 335 | } |
311 | out: | 336 | |
312 | return ret; | 337 | return ret; |
313 | } | 338 | } |
314 | 339 | ||
diff --git a/arch/xtensa/kernel/setup.c b/arch/xtensa/kernel/setup.c index b80f2cb1b4fb..5e6d75c9f92b 100644 --- a/arch/xtensa/kernel/setup.c +++ b/arch/xtensa/kernel/setup.c | |||
@@ -60,11 +60,6 @@ struct ide_ops *ide_ops; | |||
60 | extern struct rtc_ops no_rtc_ops; | 60 | extern struct rtc_ops no_rtc_ops; |
61 | struct rtc_ops *rtc_ops; | 61 | struct rtc_ops *rtc_ops; |
62 | 62 | ||
63 | #ifdef CONFIG_PC_KEYB | ||
64 | extern struct kbd_ops no_kbd_ops; | ||
65 | struct kbd_ops *kbd_ops; | ||
66 | #endif | ||
67 | |||
68 | #ifdef CONFIG_BLK_DEV_INITRD | 63 | #ifdef CONFIG_BLK_DEV_INITRD |
69 | extern void *initrd_start; | 64 | extern void *initrd_start; |
70 | extern void *initrd_end; | 65 | extern void *initrd_end; |
diff --git a/arch/xtensa/kernel/signal.c b/arch/xtensa/kernel/signal.c index 033aae0336d2..f2220b5bdce6 100644 --- a/arch/xtensa/kernel/signal.c +++ b/arch/xtensa/kernel/signal.c | |||
@@ -35,13 +35,17 @@ asmlinkage int do_signal(struct pt_regs *regs, sigset_t *oldset); | |||
35 | 35 | ||
36 | extern struct task_struct *coproc_owners[]; | 36 | extern struct task_struct *coproc_owners[]; |
37 | 37 | ||
38 | extern void release_all_cp (struct task_struct *); | ||
39 | |||
40 | struct rt_sigframe | 38 | struct rt_sigframe |
41 | { | 39 | { |
42 | struct siginfo info; | 40 | struct siginfo info; |
43 | struct ucontext uc; | 41 | struct ucontext uc; |
44 | cp_state_t cpstate; | 42 | struct { |
43 | xtregs_opt_t opt; | ||
44 | xtregs_user_t user; | ||
45 | #if XTENSA_HAVE_COPROCESSORS | ||
46 | xtregs_coprocessor_t cp; | ||
47 | #endif | ||
48 | } xtregs; | ||
45 | unsigned char retcode[6]; | 49 | unsigned char retcode[6]; |
46 | unsigned int window[4]; | 50 | unsigned int window[4]; |
47 | }; | 51 | }; |
@@ -49,8 +53,6 @@ struct rt_sigframe | |||
49 | /* | 53 | /* |
50 | * Flush register windows stored in pt_regs to stack. | 54 | * Flush register windows stored in pt_regs to stack. |
51 | * Returns 1 for errors. | 55 | * Returns 1 for errors. |
52 | * | ||
53 | * Note that windowbase, windowstart, and wmask are not updated! | ||
54 | */ | 56 | */ |
55 | 57 | ||
56 | int | 58 | int |
@@ -116,6 +118,9 @@ flush_window_regs_user(struct pt_regs *regs) | |||
116 | base += inc; | 118 | base += inc; |
117 | } | 119 | } |
118 | 120 | ||
121 | regs->wmask = 1; | ||
122 | regs->windowstart = 1 << wb; | ||
123 | |||
119 | return 0; | 124 | return 0; |
120 | 125 | ||
121 | errout: | 126 | errout: |
@@ -131,9 +136,10 @@ errout: | |||
131 | */ | 136 | */ |
132 | 137 | ||
133 | static int | 138 | static int |
134 | setup_sigcontext(struct sigcontext __user *sc, cp_state_t *cpstate, | 139 | setup_sigcontext(struct rt_sigframe __user *frame, struct pt_regs *regs) |
135 | struct pt_regs *regs, unsigned long mask) | ||
136 | { | 140 | { |
141 | struct sigcontext __user *sc = &frame->uc.uc_mcontext; | ||
142 | struct thread_info *ti = current_thread_info(); | ||
137 | int err = 0; | 143 | int err = 0; |
138 | 144 | ||
139 | #define COPY(x) err |= __put_user(regs->x, &sc->sc_##x) | 145 | #define COPY(x) err |= __put_user(regs->x, &sc->sc_##x) |
@@ -147,23 +153,32 @@ setup_sigcontext(struct sigcontext __user *sc, cp_state_t *cpstate, | |||
147 | 153 | ||
148 | err |= flush_window_regs_user(regs); | 154 | err |= flush_window_regs_user(regs); |
149 | err |= __copy_to_user (sc->sc_a, regs->areg, 16 * 4); | 155 | err |= __copy_to_user (sc->sc_a, regs->areg, 16 * 4); |
156 | err |= __put_user(0, &sc->sc_xtregs); | ||
150 | 157 | ||
151 | // err |= __copy_to_user (sc->sc_a, regs->areg, XCHAL_NUM_AREGS * 4) | 158 | if (err) |
159 | return err; | ||
152 | 160 | ||
153 | #if XCHAL_HAVE_CP | 161 | #if XTENSA_HAVE_COPROCESSORS |
154 | # error Coprocessors unsupported | 162 | coprocessor_flush_all(ti); |
155 | err |= save_cpextra(cpstate); | 163 | coprocessor_release_all(ti); |
156 | err |= __put_user(err ? NULL : cpstate, &sc->sc_cpstate); | 164 | err |= __copy_to_user(&frame->xtregs.cp, &ti->xtregs_cp, |
165 | sizeof (frame->xtregs.cp)); | ||
157 | #endif | 166 | #endif |
158 | /* non-iBCS2 extensions.. */ | 167 | err |= __copy_to_user(&frame->xtregs.opt, ®s->xtregs_opt, |
159 | err |= __put_user(mask, &sc->oldmask); | 168 | sizeof (xtregs_opt_t)); |
169 | err |= __copy_to_user(&frame->xtregs.user, &ti->xtregs_user, | ||
170 | sizeof (xtregs_user_t)); | ||
171 | |||
172 | err |= __put_user(err ? NULL : &frame->xtregs, &sc->sc_xtregs); | ||
160 | 173 | ||
161 | return err; | 174 | return err; |
162 | } | 175 | } |
163 | 176 | ||
164 | static int | 177 | static int |
165 | restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc) | 178 | restore_sigcontext(struct pt_regs *regs, struct rt_sigframe __user *frame) |
166 | { | 179 | { |
180 | struct sigcontext __user *sc = &frame->uc.uc_mcontext; | ||
181 | struct thread_info *ti = current_thread_info(); | ||
167 | unsigned int err = 0; | 182 | unsigned int err = 0; |
168 | unsigned long ps; | 183 | unsigned long ps; |
169 | 184 | ||
@@ -181,6 +196,8 @@ restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc) | |||
181 | regs->windowbase = 0; | 196 | regs->windowbase = 0; |
182 | regs->windowstart = 1; | 197 | regs->windowstart = 1; |
183 | 198 | ||
199 | regs->syscall = -1; /* disable syscall checks */ | ||
200 | |||
184 | /* For PS, restore only PS.CALLINC. | 201 | /* For PS, restore only PS.CALLINC. |
185 | * Assume that all other bits are either the same as for the signal | 202 | * Assume that all other bits are either the same as for the signal |
186 | * handler, or the user mode value doesn't matter (e.g. PS.OWB). | 203 | * handler, or the user mode value doesn't matter (e.g. PS.OWB). |
@@ -196,8 +213,9 @@ restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc) | |||
196 | 213 | ||
197 | err |= __copy_from_user(regs->areg, sc->sc_a, 16 * 4); | 214 | err |= __copy_from_user(regs->areg, sc->sc_a, 16 * 4); |
198 | 215 | ||
199 | #if XCHAL_HAVE_CP | 216 | if (err) |
200 | # error Coprocessors unsupported | 217 | return err; |
218 | |||
201 | /* The signal handler may have used coprocessors in which | 219 | /* The signal handler may have used coprocessors in which |
202 | * case they are still enabled. We disable them to force a | 220 | * case they are still enabled. We disable them to force a |
203 | * reloading of the original task's CP state by the lazy | 221 | * reloading of the original task's CP state by the lazy |
@@ -205,20 +223,20 @@ restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc) | |||
205 | * Also, we essentially discard any coprocessor state that the | 223 | * Also, we essentially discard any coprocessor state that the |
206 | * signal handler created. */ | 224 | * signal handler created. */ |
207 | 225 | ||
208 | if (!err) { | 226 | #if XTENSA_HAVE_COPROCESSORS |
209 | struct task_struct *tsk = current; | 227 | coprocessor_release_all(ti); |
210 | release_all_cp(tsk); | 228 | err |= __copy_from_user(&ti->xtregs_cp, &frame->xtregs.cp, |
211 | err |= __copy_from_user(tsk->thread.cpextra, sc->sc_cpstate, | 229 | sizeof (frame->xtregs.cp)); |
212 | XTENSA_CP_EXTRA_SIZE); | ||
213 | } | ||
214 | #endif | 230 | #endif |
231 | err |= __copy_from_user(&ti->xtregs_user, &frame->xtregs.user, | ||
232 | sizeof (xtregs_user_t)); | ||
233 | err |= __copy_from_user(®s->xtregs_opt, &frame->xtregs.opt, | ||
234 | sizeof (xtregs_opt_t)); | ||
215 | 235 | ||
216 | regs->syscall = -1; /* disable syscall checks */ | ||
217 | return err; | 236 | return err; |
218 | } | 237 | } |
219 | 238 | ||
220 | 239 | ||
221 | |||
222 | /* | 240 | /* |
223 | * Do a signal return; undo the signal stack. | 241 | * Do a signal return; undo the signal stack. |
224 | */ | 242 | */ |
@@ -247,7 +265,7 @@ asmlinkage long xtensa_rt_sigreturn(long a0, long a1, long a2, long a3, | |||
247 | recalc_sigpending(); | 265 | recalc_sigpending(); |
248 | spin_unlock_irq(¤t->sighand->siglock); | 266 | spin_unlock_irq(¤t->sighand->siglock); |
249 | 267 | ||
250 | if (restore_sigcontext(regs, &frame->uc.uc_mcontext)) | 268 | if (restore_sigcontext(regs, frame)) |
251 | goto badframe; | 269 | goto badframe; |
252 | 270 | ||
253 | ret = regs->areg[2]; | 271 | ret = regs->areg[2]; |
@@ -360,18 +378,22 @@ static void setup_frame(int sig, struct k_sigaction *ka, siginfo_t *info, | |||
360 | err |= __put_user(sas_ss_flags(regs->areg[1]), | 378 | err |= __put_user(sas_ss_flags(regs->areg[1]), |
361 | &frame->uc.uc_stack.ss_flags); | 379 | &frame->uc.uc_stack.ss_flags); |
362 | err |= __put_user(current->sas_ss_size, &frame->uc.uc_stack.ss_size); | 380 | err |= __put_user(current->sas_ss_size, &frame->uc.uc_stack.ss_size); |
363 | err |= setup_sigcontext(&frame->uc.uc_mcontext, &frame->cpstate, | 381 | err |= setup_sigcontext(frame, regs); |
364 | regs, set->sig[0]); | ||
365 | err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set)); | 382 | err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set)); |
366 | 383 | ||
367 | /* Create sys_rt_sigreturn syscall in stack frame */ | 384 | if (ka->sa.sa_flags & SA_RESTORER) { |
385 | ra = (unsigned long)ka->sa.sa_restorer; | ||
386 | } else { | ||
368 | 387 | ||
369 | err |= gen_return_code(frame->retcode); | 388 | /* Create sys_rt_sigreturn syscall in stack frame */ |
370 | 389 | ||
371 | if (err) { | 390 | err |= gen_return_code(frame->retcode); |
372 | goto give_sigsegv; | 391 | |
392 | if (err) { | ||
393 | goto give_sigsegv; | ||
394 | } | ||
395 | ra = (unsigned long) frame->retcode; | ||
373 | } | 396 | } |
374 | |||
375 | 397 | ||
376 | /* | 398 | /* |
377 | * Create signal handler execution context. | 399 | * Create signal handler execution context. |
@@ -385,7 +407,6 @@ static void setup_frame(int sig, struct k_sigaction *ka, siginfo_t *info, | |||
385 | /* Set up a stack frame for a call4 | 407 | /* Set up a stack frame for a call4 |
386 | * Note: PS.CALLINC is set to one by start_thread | 408 | * Note: PS.CALLINC is set to one by start_thread |
387 | */ | 409 | */ |
388 | ra = (unsigned long) frame->retcode; | ||
389 | regs->areg[4] = (((unsigned long) ra) & 0x3fffffff) | 0x40000000; | 410 | regs->areg[4] = (((unsigned long) ra) & 0x3fffffff) | 0x40000000; |
390 | regs->areg[6] = (unsigned long) signal; | 411 | regs->areg[6] = (unsigned long) signal; |
391 | regs->areg[7] = (unsigned long) &frame->info; | 412 | regs->areg[7] = (unsigned long) &frame->info; |
diff --git a/arch/xtensa/kernel/traps.c b/arch/xtensa/kernel/traps.c index 397bcd6ad08d..c7a021d9f696 100644 --- a/arch/xtensa/kernel/traps.c +++ b/arch/xtensa/kernel/traps.c | |||
@@ -118,28 +118,28 @@ static dispatch_init_table_t __initdata dispatch_init_table[] = { | |||
118 | { EXCCAUSE_STORE_CACHE_ATTRIBUTE, 0, do_page_fault }, | 118 | { EXCCAUSE_STORE_CACHE_ATTRIBUTE, 0, do_page_fault }, |
119 | { EXCCAUSE_LOAD_CACHE_ATTRIBUTE, 0, do_page_fault }, | 119 | { EXCCAUSE_LOAD_CACHE_ATTRIBUTE, 0, do_page_fault }, |
120 | /* XCCHAL_EXCCAUSE_FLOATING_POINT unhandled */ | 120 | /* XCCHAL_EXCCAUSE_FLOATING_POINT unhandled */ |
121 | #if (XCHAL_CP_MASK & 1) | 121 | #if XTENSA_HAVE_COPROCESSOR(0) |
122 | COPROCESSOR(0), | 122 | COPROCESSOR(0), |
123 | #endif | 123 | #endif |
124 | #if (XCHAL_CP_MASK & 2) | 124 | #if XTENSA_HAVE_COPROCESSOR(1) |
125 | COPROCESSOR(1), | 125 | COPROCESSOR(1), |
126 | #endif | 126 | #endif |
127 | #if (XCHAL_CP_MASK & 4) | 127 | #if XTENSA_HAVE_COPROCESSOR(2) |
128 | COPROCESSOR(2), | 128 | COPROCESSOR(2), |
129 | #endif | 129 | #endif |
130 | #if (XCHAL_CP_MASK & 8) | 130 | #if XTENSA_HAVE_COPROCESSOR(3) |
131 | COPROCESSOR(3), | 131 | COPROCESSOR(3), |
132 | #endif | 132 | #endif |
133 | #if (XCHAL_CP_MASK & 16) | 133 | #if XTENSA_HAVE_COPROCESSOR(4) |
134 | COPROCESSOR(4), | 134 | COPROCESSOR(4), |
135 | #endif | 135 | #endif |
136 | #if (XCHAL_CP_MASK & 32) | 136 | #if XTENSA_HAVE_COPROCESSOR(5) |
137 | COPROCESSOR(5), | 137 | COPROCESSOR(5), |
138 | #endif | 138 | #endif |
139 | #if (XCHAL_CP_MASK & 64) | 139 | #if XTENSA_HAVE_COPROCESSOR(6) |
140 | COPROCESSOR(6), | 140 | COPROCESSOR(6), |
141 | #endif | 141 | #endif |
142 | #if (XCHAL_CP_MASK & 128) | 142 | #if XTENSA_HAVE_COPROCESSOR(7) |
143 | COPROCESSOR(7), | 143 | COPROCESSOR(7), |
144 | #endif | 144 | #endif |
145 | { EXCCAUSE_MAPPED_DEBUG, 0, do_debug }, | 145 | { EXCCAUSE_MAPPED_DEBUG, 0, do_debug }, |
@@ -349,9 +349,7 @@ void show_regs(struct pt_regs * regs) | |||
349 | 349 | ||
350 | wmask = regs->wmask & ~1; | 350 | wmask = regs->wmask & ~1; |
351 | 351 | ||
352 | for (i = 0; i < 32; i++) { | 352 | for (i = 0; i < 16; i++) { |
353 | if (wmask & (1 << (i / 4))) | ||
354 | break; | ||
355 | if ((i % 8) == 0) | 353 | if ((i % 8) == 0) |
356 | printk ("\n" KERN_INFO "a%02d: ", i); | 354 | printk ("\n" KERN_INFO "a%02d: ", i); |
357 | printk("%08lx ", regs->areg[i]); | 355 | printk("%08lx ", regs->areg[i]); |
diff --git a/arch/xtensa/kernel/vmlinux.lds.S b/arch/xtensa/kernel/vmlinux.lds.S index 7d0f55a4982d..51f4fb6f16f9 100644 --- a/arch/xtensa/kernel/vmlinux.lds.S +++ b/arch/xtensa/kernel/vmlinux.lds.S | |||
@@ -136,7 +136,9 @@ SECTIONS | |||
136 | __init_begin = .; | 136 | __init_begin = .; |
137 | .init.text : { | 137 | .init.text : { |
138 | _sinittext = .; | 138 | _sinittext = .; |
139 | *(.init.literal) INIT_TEXT | 139 | *(.init.literal) *(.cpuinit.literal) |
140 | *(.devinit.literal) *(.meminit.literal) | ||
141 | INIT_TEXT | ||
140 | _einittext = .; | 142 | _einittext = .; |
141 | } | 143 | } |
142 | 144 | ||
@@ -161,6 +163,8 @@ SECTIONS | |||
161 | .DoubleExceptionVector.literal); | 163 | .DoubleExceptionVector.literal); |
162 | RELOCATE_ENTRY(_DoubleExceptionVector_text, | 164 | RELOCATE_ENTRY(_DoubleExceptionVector_text, |
163 | .DoubleExceptionVector.text); | 165 | .DoubleExceptionVector.text); |
166 | RELOCATE_ENTRY(_DebugInterruptVector_text, | ||
167 | .DebugInterruptVector.text); | ||
164 | 168 | ||
165 | __boot_reloc_table_end = ABSOLUTE(.) ; | 169 | __boot_reloc_table_end = ABSOLUTE(.) ; |
166 | } | 170 | } |
diff --git a/arch/xtensa/mm/cache.c b/arch/xtensa/mm/cache.c index 9a1fa9478ae7..3ba990c67676 100644 --- a/arch/xtensa/mm/cache.c +++ b/arch/xtensa/mm/cache.c | |||
@@ -25,7 +25,6 @@ | |||
25 | #include <linux/swap.h> | 25 | #include <linux/swap.h> |
26 | #include <linux/pagemap.h> | 26 | #include <linux/pagemap.h> |
27 | 27 | ||
28 | #include <asm/pgtable.h> | ||
29 | #include <asm/bootparam.h> | 28 | #include <asm/bootparam.h> |
30 | #include <asm/mmu_context.h> | 29 | #include <asm/mmu_context.h> |
31 | #include <asm/tlb.h> | 30 | #include <asm/tlb.h> |
@@ -181,9 +180,9 @@ update_mmu_cache(struct vm_area_struct * vma, unsigned long addr, pte_t pte) | |||
181 | #else | 180 | #else |
182 | if (!PageReserved(page) && !test_bit(PG_arch_1, &page->flags) | 181 | if (!PageReserved(page) && !test_bit(PG_arch_1, &page->flags) |
183 | && (vma->vm_flags & VM_EXEC) != 0) { | 182 | && (vma->vm_flags & VM_EXEC) != 0) { |
184 | unsigned long vaddr = addr & PAGE_MASK; | 183 | unsigned long paddr = (unsigned long) page_address(page); |
185 | __flush_dcache_page(vaddr); | 184 | __flush_dcache_page(paddr); |
186 | __invalidate_icache_page(vaddr); | 185 | __invalidate_icache_page(paddr); |
187 | set_bit(PG_arch_1, &page->flags); | 186 | set_bit(PG_arch_1, &page->flags); |
188 | } | 187 | } |
189 | #endif | 188 | #endif |
diff --git a/arch/xtensa/mm/init.c b/arch/xtensa/mm/init.c index b3086f34a8e7..81d0560eaea2 100644 --- a/arch/xtensa/mm/init.c +++ b/arch/xtensa/mm/init.c | |||
@@ -309,7 +309,7 @@ void show_mem(void) | |||
309 | 309 | ||
310 | struct kmem_cache *pgtable_cache __read_mostly; | 310 | struct kmem_cache *pgtable_cache __read_mostly; |
311 | 311 | ||
312 | static void pgd_ctor(void *addr, struct kmem_cache *cache, unsigned long flags) | 312 | static void pgd_ctor(struct kmem_cache *cache, void* addr) |
313 | { | 313 | { |
314 | pte_t* ptep = (pte_t*)addr; | 314 | pte_t* ptep = (pte_t*)addr; |
315 | int i; | 315 | int i; |
diff --git a/arch/xtensa/mm/misc.S b/arch/xtensa/mm/misc.S index e1f880368e32..c885664211d1 100644 --- a/arch/xtensa/mm/misc.S +++ b/arch/xtensa/mm/misc.S | |||
@@ -295,7 +295,7 @@ ENTRY(__tlbtemp_mapping_itlb) | |||
295 | ENTRY(__invalidate_icache_page_alias) | 295 | ENTRY(__invalidate_icache_page_alias) |
296 | entry sp, 16 | 296 | entry sp, 16 |
297 | 297 | ||
298 | addi a6, a3, (PAGE_KERNEL | _PAGE_HW_WRITE) | 298 | addi a6, a3, (PAGE_KERNEL_EXEC | _PAGE_HW_WRITE) |
299 | mov a4, a2 | 299 | mov a4, a2 |
300 | witlb a6, a2 | 300 | witlb a6, a2 |
301 | isync | 301 | isync |
diff --git a/arch/xtensa/platform-iss/Makefile b/arch/xtensa/platforms/iss/Makefile index af96e314d71f..af96e314d71f 100644 --- a/arch/xtensa/platform-iss/Makefile +++ b/arch/xtensa/platforms/iss/Makefile | |||
diff --git a/arch/xtensa/platform-iss/console.c b/arch/xtensa/platforms/iss/console.c index 854677d0c3f6..9141e3690731 100644 --- a/arch/xtensa/platform-iss/console.c +++ b/arch/xtensa/platforms/iss/console.c | |||
@@ -43,6 +43,7 @@ static DEFINE_SPINLOCK(timer_lock); | |||
43 | 43 | ||
44 | int errno; | 44 | int errno; |
45 | 45 | ||
46 | static int __simc (int a, int b, int c, int d, int e, int f) __attribute__((__noinline__)); | ||
46 | static int __simc (int a, int b, int c, int d, int e, int f) | 47 | static int __simc (int a, int b, int c, int d, int e, int f) |
47 | { | 48 | { |
48 | int ret; | 49 | int ret; |
diff --git a/arch/xtensa/platform-iss/io.c b/arch/xtensa/platforms/iss/io.c index 5b161a5cb65f..5b161a5cb65f 100644 --- a/arch/xtensa/platform-iss/io.c +++ b/arch/xtensa/platforms/iss/io.c | |||
diff --git a/arch/xtensa/platform-iss/network.c b/arch/xtensa/platforms/iss/network.c index f21b9b0899a8..a2e252217428 100644 --- a/arch/xtensa/platform-iss/network.c +++ b/arch/xtensa/platforms/iss/network.c | |||
@@ -31,7 +31,6 @@ | |||
31 | #include <linux/bootmem.h> | 31 | #include <linux/bootmem.h> |
32 | #include <linux/ethtool.h> | 32 | #include <linux/ethtool.h> |
33 | #include <linux/rtnetlink.h> | 33 | #include <linux/rtnetlink.h> |
34 | #include <linux/timer.h> | ||
35 | #include <linux/platform_device.h> | 34 | #include <linux/platform_device.h> |
36 | 35 | ||
37 | #include <asm/platform/simcall.h> | 36 | #include <asm/platform/simcall.h> |
@@ -108,6 +107,7 @@ struct iss_net_private { | |||
108 | 107 | ||
109 | static int errno; | 108 | static int errno; |
110 | 109 | ||
110 | static int __simc (int a, int b, int c, int d, int e, int f) __attribute__((__noinline__)); | ||
111 | static int __simc (int a, int b, int c, int d, int e, int f) | 111 | static int __simc (int a, int b, int c, int d, int e, int f) |
112 | { | 112 | { |
113 | int ret; | 113 | int ret; |
diff --git a/arch/xtensa/platform-iss/setup.c b/arch/xtensa/platforms/iss/setup.c index f60c8cf6dfbe..f60c8cf6dfbe 100644 --- a/arch/xtensa/platform-iss/setup.c +++ b/arch/xtensa/platforms/iss/setup.c | |||