diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-04 19:27:50 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-04 19:27:50 -0500 |
commit | 602d4a7e2f4b843d1a67375d4d7104073495b758 (patch) | |
tree | 0b9f184e54fa693c27bd5986c114bdcf6949f788 /arch | |
parent | 0bbacc402e67abca8794a8401c1621dc0c0202e9 (diff) | |
parent | c51e3a417bb0f295e13a5bad86302b5212eafdf3 (diff) |
Merge master.kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc-merge
Diffstat (limited to 'arch')
104 files changed, 7146 insertions, 1128 deletions
diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig index 967ecf92d6a7..f4e25c648fbb 100644 --- a/arch/powerpc/Kconfig +++ b/arch/powerpc/Kconfig | |||
@@ -300,6 +300,7 @@ config PPC_PMAC64 | |||
300 | bool | 300 | bool |
301 | depends on PPC_PMAC && POWER4 | 301 | depends on PPC_PMAC && POWER4 |
302 | select U3_DART | 302 | select U3_DART |
303 | select GENERIC_TBSYNC | ||
303 | default y | 304 | default y |
304 | 305 | ||
305 | config PPC_PREP | 306 | config PPC_PREP |
@@ -314,15 +315,17 @@ config PPC_MAPLE | |||
314 | bool " Maple 970FX Evaluation Board" | 315 | bool " Maple 970FX Evaluation Board" |
315 | select U3_DART | 316 | select U3_DART |
316 | select MPIC_BROKEN_U3 | 317 | select MPIC_BROKEN_U3 |
318 | select GENERIC_TBSYNC | ||
317 | default n | 319 | default n |
318 | help | 320 | help |
319 | This option enables support for the Maple 970FX Evaluation Board. | 321 | This option enables support for the Maple 970FX Evaluation Board. |
320 | For more informations, refer to <http://www.970eval.com> | 322 | For more informations, refer to <http://www.970eval.com> |
321 | 323 | ||
322 | config PPC_BPA | 324 | config PPC_CELL |
323 | bool " Broadband Processor Architecture" | 325 | bool " Cell Broadband Processor Architecture" |
324 | depends on PPC_MULTIPLATFORM && PPC64 | 326 | depends on PPC_MULTIPLATFORM && PPC64 |
325 | select PPC_RTAS | 327 | select PPC_RTAS |
328 | select MMIO_NVRAM | ||
326 | 329 | ||
327 | config PPC_OF | 330 | config PPC_OF |
328 | bool | 331 | bool |
@@ -353,13 +356,26 @@ config RTAS_ERROR_LOGGING | |||
353 | depends on PPC_RTAS | 356 | depends on PPC_RTAS |
354 | default n | 357 | default n |
355 | 358 | ||
359 | config RTAS_PROC | ||
360 | bool "Proc interface to RTAS" | ||
361 | depends on PPC_RTAS | ||
362 | default y | ||
363 | |||
364 | config RTAS_FLASH | ||
365 | tristate "Firmware flash interface" | ||
366 | depends on PPC64 && RTAS_PROC | ||
367 | |||
368 | config MMIO_NVRAM | ||
369 | bool | ||
370 | default n | ||
371 | |||
356 | config MPIC_BROKEN_U3 | 372 | config MPIC_BROKEN_U3 |
357 | bool | 373 | bool |
358 | depends on PPC_MAPLE | 374 | depends on PPC_MAPLE |
359 | default y | 375 | default y |
360 | 376 | ||
361 | config BPA_IIC | 377 | config CELL_IIC |
362 | depends on PPC_BPA | 378 | depends on PPC_CELL |
363 | bool | 379 | bool |
364 | default y | 380 | default y |
365 | 381 | ||
@@ -372,6 +388,11 @@ config PPC_MPC106 | |||
372 | bool | 388 | bool |
373 | default n | 389 | default n |
374 | 390 | ||
391 | config GENERIC_TBSYNC | ||
392 | bool | ||
393 | default y if CONFIG_PPC32 && CONFIG_SMP | ||
394 | default n | ||
395 | |||
375 | source "drivers/cpufreq/Kconfig" | 396 | source "drivers/cpufreq/Kconfig" |
376 | 397 | ||
377 | config CPU_FREQ_PMAC | 398 | config CPU_FREQ_PMAC |
diff --git a/arch/powerpc/Makefile b/arch/powerpc/Makefile index 2f4cce06a7e5..5bc11bd36c1f 100644 --- a/arch/powerpc/Makefile +++ b/arch/powerpc/Makefile | |||
@@ -12,9 +12,6 @@ | |||
12 | # Rewritten by Cort Dougan and Paul Mackerras | 12 | # Rewritten by Cort Dougan and Paul Mackerras |
13 | # | 13 | # |
14 | 14 | ||
15 | # This must match PAGE_OFFSET in include/asm-powerpc/page.h. | ||
16 | KERNELLOAD := $(CONFIG_KERNEL_START) | ||
17 | |||
18 | HAS_BIARCH := $(call cc-option-yn, -m32) | 15 | HAS_BIARCH := $(call cc-option-yn, -m32) |
19 | 16 | ||
20 | ifeq ($(CONFIG_PPC64),y) | 17 | ifeq ($(CONFIG_PPC64),y) |
@@ -59,7 +56,7 @@ override LD += -m elf$(SZ)ppc | |||
59 | override CC += -m$(SZ) | 56 | override CC += -m$(SZ) |
60 | endif | 57 | endif |
61 | 58 | ||
62 | LDFLAGS_vmlinux := -Ttext $(KERNELLOAD) -Bstatic -e $(KERNELLOAD) | 59 | LDFLAGS_vmlinux := -Bstatic |
63 | 60 | ||
64 | # The -Iarch/$(ARCH)/include is temporary while we are merging | 61 | # The -Iarch/$(ARCH)/include is temporary while we are merging |
65 | CPPFLAGS += -Iarch/$(ARCH) -Iarch/$(ARCH)/include | 62 | CPPFLAGS += -Iarch/$(ARCH) -Iarch/$(ARCH)/include |
diff --git a/arch/powerpc/configs/cell_defconfig b/arch/powerpc/configs/cell_defconfig new file mode 100644 index 000000000000..67ffecbc05cb --- /dev/null +++ b/arch/powerpc/configs/cell_defconfig | |||
@@ -0,0 +1,1024 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.14-rc4 | ||
4 | # Thu Oct 20 08:29:10 2005 | ||
5 | # | ||
6 | CONFIG_64BIT=y | ||
7 | CONFIG_MMU=y | ||
8 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | ||
9 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
10 | CONFIG_GENERIC_ISA_DMA=y | ||
11 | CONFIG_EARLY_PRINTK=y | ||
12 | CONFIG_COMPAT=y | ||
13 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | ||
14 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | ||
15 | CONFIG_FORCE_MAX_ZONEORDER=13 | ||
16 | |||
17 | # | ||
18 | # Code maturity level options | ||
19 | # | ||
20 | CONFIG_EXPERIMENTAL=y | ||
21 | CONFIG_CLEAN_COMPILE=y | ||
22 | CONFIG_LOCK_KERNEL=y | ||
23 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
24 | |||
25 | # | ||
26 | # General setup | ||
27 | # | ||
28 | CONFIG_LOCALVERSION="" | ||
29 | CONFIG_LOCALVERSION_AUTO=y | ||
30 | CONFIG_SWAP=y | ||
31 | CONFIG_SYSVIPC=y | ||
32 | # CONFIG_POSIX_MQUEUE is not set | ||
33 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
34 | CONFIG_SYSCTL=y | ||
35 | # CONFIG_AUDIT is not set | ||
36 | CONFIG_HOTPLUG=y | ||
37 | CONFIG_KOBJECT_UEVENT=y | ||
38 | # CONFIG_IKCONFIG is not set | ||
39 | # CONFIG_CPUSETS is not set | ||
40 | CONFIG_INITRAMFS_SOURCE="" | ||
41 | # CONFIG_EMBEDDED is not set | ||
42 | CONFIG_KALLSYMS=y | ||
43 | # CONFIG_KALLSYMS_ALL is not set | ||
44 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
45 | CONFIG_PRINTK=y | ||
46 | CONFIG_BUG=y | ||
47 | CONFIG_BASE_FULL=y | ||
48 | CONFIG_FUTEX=y | ||
49 | CONFIG_EPOLL=y | ||
50 | CONFIG_SHMEM=y | ||
51 | CONFIG_CC_ALIGN_FUNCTIONS=0 | ||
52 | CONFIG_CC_ALIGN_LABELS=0 | ||
53 | CONFIG_CC_ALIGN_LOOPS=0 | ||
54 | CONFIG_CC_ALIGN_JUMPS=0 | ||
55 | # CONFIG_TINY_SHMEM is not set | ||
56 | CONFIG_BASE_SMALL=0 | ||
57 | |||
58 | # | ||
59 | # Loadable module support | ||
60 | # | ||
61 | CONFIG_MODULES=y | ||
62 | CONFIG_MODULE_UNLOAD=y | ||
63 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
64 | CONFIG_OBSOLETE_MODPARM=y | ||
65 | # CONFIG_MODVERSIONS is not set | ||
66 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
67 | # CONFIG_KMOD is not set | ||
68 | CONFIG_STOP_MACHINE=y | ||
69 | CONFIG_SYSVIPC_COMPAT=y | ||
70 | |||
71 | # | ||
72 | # Platform support | ||
73 | # | ||
74 | # CONFIG_PPC_ISERIES is not set | ||
75 | CONFIG_PPC_MULTIPLATFORM=y | ||
76 | # CONFIG_PPC_PSERIES is not set | ||
77 | CONFIG_PPC_BPA=y | ||
78 | # CONFIG_PPC_PMAC is not set | ||
79 | # CONFIG_PPC_MAPLE is not set | ||
80 | CONFIG_PPC=y | ||
81 | CONFIG_PPC64=y | ||
82 | CONFIG_PPC_OF=y | ||
83 | CONFIG_BPA_IIC=y | ||
84 | CONFIG_ALTIVEC=y | ||
85 | CONFIG_KEXEC=y | ||
86 | # CONFIG_U3_DART is not set | ||
87 | # CONFIG_BOOTX_TEXT is not set | ||
88 | # CONFIG_POWER4_ONLY is not set | ||
89 | # CONFIG_IOMMU_VMERGE is not set | ||
90 | CONFIG_SMP=y | ||
91 | CONFIG_NR_CPUS=4 | ||
92 | CONFIG_ARCH_SELECT_MEMORY_MODEL=y | ||
93 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
94 | CONFIG_SELECT_MEMORY_MODEL=y | ||
95 | CONFIG_FLATMEM_MANUAL=y | ||
96 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
97 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
98 | CONFIG_FLATMEM=y | ||
99 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
100 | # CONFIG_SPARSEMEM_STATIC is not set | ||
101 | # CONFIG_NUMA is not set | ||
102 | CONFIG_SCHED_SMT=y | ||
103 | CONFIG_PREEMPT_NONE=y | ||
104 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
105 | # CONFIG_PREEMPT is not set | ||
106 | CONFIG_PREEMPT_BKL=y | ||
107 | # CONFIG_HZ_100 is not set | ||
108 | CONFIG_HZ_250=y | ||
109 | # CONFIG_HZ_1000 is not set | ||
110 | CONFIG_HZ=250 | ||
111 | CONFIG_GENERIC_HARDIRQS=y | ||
112 | CONFIG_PPC_RTAS=y | ||
113 | CONFIG_RTAS_PROC=y | ||
114 | CONFIG_RTAS_FLASH=y | ||
115 | CONFIG_SECCOMP=y | ||
116 | CONFIG_BINFMT_ELF=y | ||
117 | # CONFIG_BINFMT_MISC is not set | ||
118 | CONFIG_PROC_DEVICETREE=y | ||
119 | # CONFIG_CMDLINE_BOOL is not set | ||
120 | CONFIG_ISA_DMA_API=y | ||
121 | |||
122 | # | ||
123 | # Bus Options | ||
124 | # | ||
125 | CONFIG_PCI=y | ||
126 | CONFIG_PCI_DOMAINS=y | ||
127 | CONFIG_PCI_LEGACY_PROC=y | ||
128 | # CONFIG_PCI_DEBUG is not set | ||
129 | |||
130 | # | ||
131 | # PCCARD (PCMCIA/CardBus) support | ||
132 | # | ||
133 | # CONFIG_PCCARD is not set | ||
134 | |||
135 | # | ||
136 | # PCI Hotplug Support | ||
137 | # | ||
138 | # CONFIG_HOTPLUG_PCI is not set | ||
139 | |||
140 | # | ||
141 | # Networking | ||
142 | # | ||
143 | CONFIG_NET=y | ||
144 | |||
145 | # | ||
146 | # Networking options | ||
147 | # | ||
148 | CONFIG_PACKET=y | ||
149 | # CONFIG_PACKET_MMAP is not set | ||
150 | CONFIG_UNIX=y | ||
151 | CONFIG_XFRM=y | ||
152 | # CONFIG_XFRM_USER is not set | ||
153 | # CONFIG_NET_KEY is not set | ||
154 | CONFIG_INET=y | ||
155 | CONFIG_IP_MULTICAST=y | ||
156 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
157 | CONFIG_IP_FIB_HASH=y | ||
158 | # CONFIG_IP_PNP is not set | ||
159 | CONFIG_NET_IPIP=y | ||
160 | # CONFIG_NET_IPGRE is not set | ||
161 | # CONFIG_IP_MROUTE is not set | ||
162 | # CONFIG_ARPD is not set | ||
163 | CONFIG_SYN_COOKIES=y | ||
164 | # CONFIG_INET_AH is not set | ||
165 | # CONFIG_INET_ESP is not set | ||
166 | # CONFIG_INET_IPCOMP is not set | ||
167 | CONFIG_INET_TUNNEL=y | ||
168 | CONFIG_INET_DIAG=y | ||
169 | CONFIG_INET_TCP_DIAG=y | ||
170 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
171 | CONFIG_TCP_CONG_BIC=y | ||
172 | |||
173 | # | ||
174 | # IP: Virtual Server Configuration | ||
175 | # | ||
176 | # CONFIG_IP_VS is not set | ||
177 | CONFIG_IPV6=y | ||
178 | # CONFIG_IPV6_PRIVACY is not set | ||
179 | CONFIG_INET6_AH=m | ||
180 | CONFIG_INET6_ESP=m | ||
181 | CONFIG_INET6_IPCOMP=m | ||
182 | CONFIG_INET6_TUNNEL=m | ||
183 | CONFIG_IPV6_TUNNEL=m | ||
184 | CONFIG_NETFILTER=y | ||
185 | # CONFIG_NETFILTER_DEBUG is not set | ||
186 | # CONFIG_NETFILTER_NETLINK is not set | ||
187 | |||
188 | # | ||
189 | # IP: Netfilter Configuration | ||
190 | # | ||
191 | CONFIG_IP_NF_CONNTRACK=y | ||
192 | # CONFIG_IP_NF_CT_ACCT is not set | ||
193 | # CONFIG_IP_NF_CONNTRACK_MARK is not set | ||
194 | # CONFIG_IP_NF_CONNTRACK_EVENTS is not set | ||
195 | CONFIG_IP_NF_CT_PROTO_SCTP=y | ||
196 | CONFIG_IP_NF_FTP=m | ||
197 | CONFIG_IP_NF_IRC=m | ||
198 | # CONFIG_IP_NF_NETBIOS_NS is not set | ||
199 | CONFIG_IP_NF_TFTP=m | ||
200 | CONFIG_IP_NF_AMANDA=m | ||
201 | # CONFIG_IP_NF_PPTP is not set | ||
202 | CONFIG_IP_NF_QUEUE=m | ||
203 | CONFIG_IP_NF_IPTABLES=m | ||
204 | CONFIG_IP_NF_MATCH_LIMIT=m | ||
205 | CONFIG_IP_NF_MATCH_IPRANGE=m | ||
206 | CONFIG_IP_NF_MATCH_MAC=m | ||
207 | CONFIG_IP_NF_MATCH_PKTTYPE=m | ||
208 | CONFIG_IP_NF_MATCH_MARK=m | ||
209 | CONFIG_IP_NF_MATCH_MULTIPORT=m | ||
210 | CONFIG_IP_NF_MATCH_TOS=m | ||
211 | CONFIG_IP_NF_MATCH_RECENT=m | ||
212 | CONFIG_IP_NF_MATCH_ECN=m | ||
213 | CONFIG_IP_NF_MATCH_DSCP=m | ||
214 | CONFIG_IP_NF_MATCH_AH_ESP=m | ||
215 | CONFIG_IP_NF_MATCH_LENGTH=m | ||
216 | CONFIG_IP_NF_MATCH_TTL=m | ||
217 | CONFIG_IP_NF_MATCH_TCPMSS=m | ||
218 | CONFIG_IP_NF_MATCH_HELPER=m | ||
219 | CONFIG_IP_NF_MATCH_STATE=m | ||
220 | CONFIG_IP_NF_MATCH_CONNTRACK=m | ||
221 | CONFIG_IP_NF_MATCH_OWNER=m | ||
222 | CONFIG_IP_NF_MATCH_ADDRTYPE=m | ||
223 | CONFIG_IP_NF_MATCH_REALM=m | ||
224 | CONFIG_IP_NF_MATCH_SCTP=m | ||
225 | # CONFIG_IP_NF_MATCH_DCCP is not set | ||
226 | CONFIG_IP_NF_MATCH_COMMENT=m | ||
227 | CONFIG_IP_NF_MATCH_HASHLIMIT=m | ||
228 | CONFIG_IP_NF_MATCH_STRING=m | ||
229 | CONFIG_IP_NF_FILTER=m | ||
230 | CONFIG_IP_NF_TARGET_REJECT=m | ||
231 | CONFIG_IP_NF_TARGET_LOG=m | ||
232 | CONFIG_IP_NF_TARGET_ULOG=m | ||
233 | CONFIG_IP_NF_TARGET_TCPMSS=m | ||
234 | CONFIG_IP_NF_TARGET_NFQUEUE=m | ||
235 | CONFIG_IP_NF_NAT=m | ||
236 | CONFIG_IP_NF_NAT_NEEDED=y | ||
237 | CONFIG_IP_NF_TARGET_MASQUERADE=m | ||
238 | CONFIG_IP_NF_TARGET_REDIRECT=m | ||
239 | CONFIG_IP_NF_TARGET_NETMAP=m | ||
240 | CONFIG_IP_NF_TARGET_SAME=m | ||
241 | CONFIG_IP_NF_NAT_SNMP_BASIC=m | ||
242 | CONFIG_IP_NF_NAT_IRC=m | ||
243 | CONFIG_IP_NF_NAT_FTP=m | ||
244 | CONFIG_IP_NF_NAT_TFTP=m | ||
245 | CONFIG_IP_NF_NAT_AMANDA=m | ||
246 | CONFIG_IP_NF_MANGLE=m | ||
247 | CONFIG_IP_NF_TARGET_TOS=m | ||
248 | CONFIG_IP_NF_TARGET_ECN=m | ||
249 | CONFIG_IP_NF_TARGET_DSCP=m | ||
250 | CONFIG_IP_NF_TARGET_MARK=m | ||
251 | CONFIG_IP_NF_TARGET_CLASSIFY=m | ||
252 | CONFIG_IP_NF_TARGET_TTL=m | ||
253 | CONFIG_IP_NF_RAW=m | ||
254 | CONFIG_IP_NF_TARGET_NOTRACK=m | ||
255 | CONFIG_IP_NF_ARPTABLES=m | ||
256 | CONFIG_IP_NF_ARPFILTER=m | ||
257 | CONFIG_IP_NF_ARP_MANGLE=m | ||
258 | |||
259 | # | ||
260 | # IPv6: Netfilter Configuration (EXPERIMENTAL) | ||
261 | # | ||
262 | # CONFIG_IP6_NF_QUEUE is not set | ||
263 | # CONFIG_IP6_NF_IPTABLES is not set | ||
264 | # CONFIG_IP6_NF_TARGET_NFQUEUE is not set | ||
265 | |||
266 | # | ||
267 | # DCCP Configuration (EXPERIMENTAL) | ||
268 | # | ||
269 | # CONFIG_IP_DCCP is not set | ||
270 | |||
271 | # | ||
272 | # SCTP Configuration (EXPERIMENTAL) | ||
273 | # | ||
274 | # CONFIG_IP_SCTP is not set | ||
275 | # CONFIG_ATM is not set | ||
276 | # CONFIG_BRIDGE is not set | ||
277 | # CONFIG_VLAN_8021Q is not set | ||
278 | # CONFIG_DECNET is not set | ||
279 | # CONFIG_LLC2 is not set | ||
280 | # CONFIG_IPX is not set | ||
281 | # CONFIG_ATALK is not set | ||
282 | # CONFIG_X25 is not set | ||
283 | # CONFIG_LAPB is not set | ||
284 | # CONFIG_NET_DIVERT is not set | ||
285 | # CONFIG_ECONET is not set | ||
286 | # CONFIG_WAN_ROUTER is not set | ||
287 | # CONFIG_NET_SCHED is not set | ||
288 | CONFIG_NET_CLS_ROUTE=y | ||
289 | |||
290 | # | ||
291 | # Network testing | ||
292 | # | ||
293 | # CONFIG_NET_PKTGEN is not set | ||
294 | # CONFIG_HAMRADIO is not set | ||
295 | # CONFIG_IRDA is not set | ||
296 | # CONFIG_BT is not set | ||
297 | # CONFIG_IEEE80211 is not set | ||
298 | |||
299 | # | ||
300 | # Device Drivers | ||
301 | # | ||
302 | |||
303 | # | ||
304 | # Generic Driver Options | ||
305 | # | ||
306 | CONFIG_STANDALONE=y | ||
307 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
308 | CONFIG_FW_LOADER=y | ||
309 | # CONFIG_DEBUG_DRIVER is not set | ||
310 | |||
311 | # | ||
312 | # Connector - unified userspace <-> kernelspace linker | ||
313 | # | ||
314 | # CONFIG_CONNECTOR is not set | ||
315 | |||
316 | # | ||
317 | # Memory Technology Devices (MTD) | ||
318 | # | ||
319 | # CONFIG_MTD is not set | ||
320 | |||
321 | # | ||
322 | # Parallel port support | ||
323 | # | ||
324 | # CONFIG_PARPORT is not set | ||
325 | |||
326 | # | ||
327 | # Plug and Play support | ||
328 | # | ||
329 | |||
330 | # | ||
331 | # Block devices | ||
332 | # | ||
333 | # CONFIG_BLK_DEV_FD is not set | ||
334 | # CONFIG_BLK_CPQ_DA is not set | ||
335 | # CONFIG_BLK_CPQ_CISS_DA is not set | ||
336 | # CONFIG_BLK_DEV_DAC960 is not set | ||
337 | # CONFIG_BLK_DEV_UMEM is not set | ||
338 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
339 | CONFIG_BLK_DEV_LOOP=y | ||
340 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | ||
341 | CONFIG_BLK_DEV_NBD=y | ||
342 | # CONFIG_BLK_DEV_SX8 is not set | ||
343 | CONFIG_BLK_DEV_RAM=y | ||
344 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
345 | CONFIG_BLK_DEV_RAM_SIZE=131072 | ||
346 | CONFIG_BLK_DEV_INITRD=y | ||
347 | # CONFIG_CDROM_PKTCDVD is not set | ||
348 | |||
349 | # | ||
350 | # IO Schedulers | ||
351 | # | ||
352 | CONFIG_IOSCHED_NOOP=y | ||
353 | CONFIG_IOSCHED_AS=y | ||
354 | CONFIG_IOSCHED_DEADLINE=y | ||
355 | CONFIG_IOSCHED_CFQ=y | ||
356 | # CONFIG_ATA_OVER_ETH is not set | ||
357 | |||
358 | # | ||
359 | # ATA/ATAPI/MFM/RLL support | ||
360 | # | ||
361 | CONFIG_IDE=y | ||
362 | CONFIG_BLK_DEV_IDE=y | ||
363 | |||
364 | # | ||
365 | # Please see Documentation/ide.txt for help/info on IDE drives | ||
366 | # | ||
367 | # CONFIG_BLK_DEV_IDE_SATA is not set | ||
368 | CONFIG_BLK_DEV_IDEDISK=y | ||
369 | CONFIG_IDEDISK_MULTI_MODE=y | ||
370 | # CONFIG_BLK_DEV_IDECD is not set | ||
371 | # CONFIG_BLK_DEV_IDETAPE is not set | ||
372 | # CONFIG_BLK_DEV_IDEFLOPPY is not set | ||
373 | # CONFIG_IDE_TASK_IOCTL is not set | ||
374 | |||
375 | # | ||
376 | # IDE chipset support/bugfixes | ||
377 | # | ||
378 | CONFIG_IDE_GENERIC=y | ||
379 | CONFIG_BLK_DEV_IDEPCI=y | ||
380 | CONFIG_IDEPCI_SHARE_IRQ=y | ||
381 | # CONFIG_BLK_DEV_OFFBOARD is not set | ||
382 | CONFIG_BLK_DEV_GENERIC=y | ||
383 | # CONFIG_BLK_DEV_OPTI621 is not set | ||
384 | # CONFIG_BLK_DEV_SL82C105 is not set | ||
385 | CONFIG_BLK_DEV_IDEDMA_PCI=y | ||
386 | # CONFIG_BLK_DEV_IDEDMA_FORCED is not set | ||
387 | CONFIG_IDEDMA_PCI_AUTO=y | ||
388 | # CONFIG_IDEDMA_ONLYDISK is not set | ||
389 | CONFIG_BLK_DEV_AEC62XX=y | ||
390 | # CONFIG_BLK_DEV_ALI15X3 is not set | ||
391 | # CONFIG_BLK_DEV_AMD74XX is not set | ||
392 | # CONFIG_BLK_DEV_CMD64X is not set | ||
393 | # CONFIG_BLK_DEV_TRIFLEX is not set | ||
394 | # CONFIG_BLK_DEV_CY82C693 is not set | ||
395 | # CONFIG_BLK_DEV_CS5520 is not set | ||
396 | # CONFIG_BLK_DEV_CS5530 is not set | ||
397 | # CONFIG_BLK_DEV_HPT34X is not set | ||
398 | # CONFIG_BLK_DEV_HPT366 is not set | ||
399 | # CONFIG_BLK_DEV_SC1200 is not set | ||
400 | # CONFIG_BLK_DEV_PIIX is not set | ||
401 | # CONFIG_BLK_DEV_IT821X is not set | ||
402 | # CONFIG_BLK_DEV_NS87415 is not set | ||
403 | # CONFIG_BLK_DEV_PDC202XX_OLD is not set | ||
404 | # CONFIG_BLK_DEV_PDC202XX_NEW is not set | ||
405 | # CONFIG_BLK_DEV_SVWKS is not set | ||
406 | CONFIG_BLK_DEV_SIIMAGE=y | ||
407 | # CONFIG_BLK_DEV_SLC90E66 is not set | ||
408 | # CONFIG_BLK_DEV_TRM290 is not set | ||
409 | # CONFIG_BLK_DEV_VIA82CXXX is not set | ||
410 | # CONFIG_IDE_ARM is not set | ||
411 | CONFIG_BLK_DEV_IDEDMA=y | ||
412 | # CONFIG_IDEDMA_IVB is not set | ||
413 | CONFIG_IDEDMA_AUTO=y | ||
414 | # CONFIG_BLK_DEV_HD is not set | ||
415 | |||
416 | # | ||
417 | # SCSI device support | ||
418 | # | ||
419 | # CONFIG_RAID_ATTRS is not set | ||
420 | # CONFIG_SCSI is not set | ||
421 | |||
422 | # | ||
423 | # Multi-device support (RAID and LVM) | ||
424 | # | ||
425 | # CONFIG_MD is not set | ||
426 | |||
427 | # | ||
428 | # Fusion MPT device support | ||
429 | # | ||
430 | # CONFIG_FUSION is not set | ||
431 | |||
432 | # | ||
433 | # IEEE 1394 (FireWire) support | ||
434 | # | ||
435 | # CONFIG_IEEE1394 is not set | ||
436 | |||
437 | # | ||
438 | # I2O device support | ||
439 | # | ||
440 | # CONFIG_I2O is not set | ||
441 | |||
442 | # | ||
443 | # Macintosh device drivers | ||
444 | # | ||
445 | |||
446 | # | ||
447 | # Network device support | ||
448 | # | ||
449 | CONFIG_NETDEVICES=y | ||
450 | # CONFIG_DUMMY is not set | ||
451 | # CONFIG_BONDING is not set | ||
452 | # CONFIG_EQUALIZER is not set | ||
453 | # CONFIG_TUN is not set | ||
454 | |||
455 | # | ||
456 | # ARCnet devices | ||
457 | # | ||
458 | # CONFIG_ARCNET is not set | ||
459 | |||
460 | # | ||
461 | # PHY device support | ||
462 | # | ||
463 | # CONFIG_PHYLIB is not set | ||
464 | |||
465 | # | ||
466 | # Ethernet (10 or 100Mbit) | ||
467 | # | ||
468 | CONFIG_NET_ETHERNET=y | ||
469 | CONFIG_MII=y | ||
470 | # CONFIG_HAPPYMEAL is not set | ||
471 | # CONFIG_SUNGEM is not set | ||
472 | # CONFIG_CASSINI is not set | ||
473 | # CONFIG_NET_VENDOR_3COM is not set | ||
474 | |||
475 | # | ||
476 | # Tulip family network device support | ||
477 | # | ||
478 | # CONFIG_NET_TULIP is not set | ||
479 | # CONFIG_HP100 is not set | ||
480 | # CONFIG_NET_PCI is not set | ||
481 | |||
482 | # | ||
483 | # Ethernet (1000 Mbit) | ||
484 | # | ||
485 | # CONFIG_ACENIC is not set | ||
486 | # CONFIG_DL2K is not set | ||
487 | CONFIG_E1000=m | ||
488 | # CONFIG_E1000_NAPI is not set | ||
489 | # CONFIG_NS83820 is not set | ||
490 | # CONFIG_HAMACHI is not set | ||
491 | # CONFIG_YELLOWFIN is not set | ||
492 | # CONFIG_R8169 is not set | ||
493 | # CONFIG_SIS190 is not set | ||
494 | CONFIG_SKGE=m | ||
495 | # CONFIG_SK98LIN is not set | ||
496 | # CONFIG_TIGON3 is not set | ||
497 | # CONFIG_BNX2 is not set | ||
498 | # CONFIG_SPIDER_NET is not set | ||
499 | # CONFIG_MV643XX_ETH is not set | ||
500 | |||
501 | # | ||
502 | # Ethernet (10000 Mbit) | ||
503 | # | ||
504 | # CONFIG_CHELSIO_T1 is not set | ||
505 | # CONFIG_IXGB is not set | ||
506 | # CONFIG_S2IO is not set | ||
507 | |||
508 | # | ||
509 | # Token Ring devices | ||
510 | # | ||
511 | # CONFIG_TR is not set | ||
512 | |||
513 | # | ||
514 | # Wireless LAN (non-hamradio) | ||
515 | # | ||
516 | # CONFIG_NET_RADIO is not set | ||
517 | |||
518 | # | ||
519 | # Wan interfaces | ||
520 | # | ||
521 | # CONFIG_WAN is not set | ||
522 | # CONFIG_FDDI is not set | ||
523 | # CONFIG_HIPPI is not set | ||
524 | # CONFIG_PPP is not set | ||
525 | # CONFIG_SLIP is not set | ||
526 | # CONFIG_SHAPER is not set | ||
527 | # CONFIG_NETCONSOLE is not set | ||
528 | # CONFIG_NETPOLL is not set | ||
529 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
530 | |||
531 | # | ||
532 | # ISDN subsystem | ||
533 | # | ||
534 | # CONFIG_ISDN is not set | ||
535 | |||
536 | # | ||
537 | # Telephony Support | ||
538 | # | ||
539 | # CONFIG_PHONE is not set | ||
540 | |||
541 | # | ||
542 | # Input device support | ||
543 | # | ||
544 | CONFIG_INPUT=y | ||
545 | |||
546 | # | ||
547 | # Userland interfaces | ||
548 | # | ||
549 | CONFIG_INPUT_MOUSEDEV=y | ||
550 | # CONFIG_INPUT_MOUSEDEV_PSAUX is not set | ||
551 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | ||
552 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | ||
553 | # CONFIG_INPUT_JOYDEV is not set | ||
554 | # CONFIG_INPUT_TSDEV is not set | ||
555 | # CONFIG_INPUT_EVDEV is not set | ||
556 | # CONFIG_INPUT_EVBUG is not set | ||
557 | |||
558 | # | ||
559 | # Input Device Drivers | ||
560 | # | ||
561 | # CONFIG_INPUT_KEYBOARD is not set | ||
562 | # CONFIG_INPUT_MOUSE is not set | ||
563 | # CONFIG_INPUT_JOYSTICK is not set | ||
564 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
565 | # CONFIG_INPUT_MISC is not set | ||
566 | |||
567 | # | ||
568 | # Hardware I/O ports | ||
569 | # | ||
570 | CONFIG_SERIO=y | ||
571 | # CONFIG_SERIO_I8042 is not set | ||
572 | CONFIG_SERIO_SERPORT=y | ||
573 | # CONFIG_SERIO_PCIPS2 is not set | ||
574 | # CONFIG_SERIO_RAW is not set | ||
575 | # CONFIG_GAMEPORT is not set | ||
576 | |||
577 | # | ||
578 | # Character devices | ||
579 | # | ||
580 | CONFIG_VT=y | ||
581 | CONFIG_VT_CONSOLE=y | ||
582 | CONFIG_HW_CONSOLE=y | ||
583 | CONFIG_SERIAL_NONSTANDARD=y | ||
584 | # CONFIG_ROCKETPORT is not set | ||
585 | # CONFIG_CYCLADES is not set | ||
586 | # CONFIG_DIGIEPCA is not set | ||
587 | # CONFIG_MOXA_SMARTIO is not set | ||
588 | # CONFIG_ISI is not set | ||
589 | # CONFIG_SYNCLINK is not set | ||
590 | # CONFIG_SYNCLINKMP is not set | ||
591 | # CONFIG_N_HDLC is not set | ||
592 | # CONFIG_SPECIALIX is not set | ||
593 | # CONFIG_SX is not set | ||
594 | # CONFIG_STALDRV is not set | ||
595 | |||
596 | # | ||
597 | # Serial drivers | ||
598 | # | ||
599 | CONFIG_SERIAL_8250=y | ||
600 | CONFIG_SERIAL_8250_CONSOLE=y | ||
601 | CONFIG_SERIAL_8250_NR_UARTS=4 | ||
602 | # CONFIG_SERIAL_8250_EXTENDED is not set | ||
603 | |||
604 | # | ||
605 | # Non-8250 serial port support | ||
606 | # | ||
607 | CONFIG_SERIAL_CORE=y | ||
608 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
609 | # CONFIG_SERIAL_JSM is not set | ||
610 | CONFIG_UNIX98_PTYS=y | ||
611 | # CONFIG_LEGACY_PTYS is not set | ||
612 | |||
613 | # | ||
614 | # IPMI | ||
615 | # | ||
616 | # CONFIG_IPMI_HANDLER is not set | ||
617 | |||
618 | # | ||
619 | # Watchdog Cards | ||
620 | # | ||
621 | CONFIG_WATCHDOG=y | ||
622 | # CONFIG_WATCHDOG_NOWAYOUT is not set | ||
623 | |||
624 | # | ||
625 | # Watchdog Device Drivers | ||
626 | # | ||
627 | # CONFIG_SOFT_WATCHDOG is not set | ||
628 | CONFIG_WATCHDOG_RTAS=y | ||
629 | |||
630 | # | ||
631 | # PCI-based Watchdog Cards | ||
632 | # | ||
633 | # CONFIG_PCIPCWATCHDOG is not set | ||
634 | # CONFIG_WDTPCI is not set | ||
635 | # CONFIG_RTC is not set | ||
636 | # CONFIG_DTLK is not set | ||
637 | # CONFIG_R3964 is not set | ||
638 | # CONFIG_APPLICOM is not set | ||
639 | |||
640 | # | ||
641 | # Ftape, the floppy tape device driver | ||
642 | # | ||
643 | # CONFIG_AGP is not set | ||
644 | # CONFIG_DRM is not set | ||
645 | # CONFIG_RAW_DRIVER is not set | ||
646 | # CONFIG_HANGCHECK_TIMER is not set | ||
647 | |||
648 | # | ||
649 | # TPM devices | ||
650 | # | ||
651 | # CONFIG_TCG_TPM is not set | ||
652 | |||
653 | # | ||
654 | # I2C support | ||
655 | # | ||
656 | CONFIG_I2C=y | ||
657 | # CONFIG_I2C_CHARDEV is not set | ||
658 | |||
659 | # | ||
660 | # I2C Algorithms | ||
661 | # | ||
662 | CONFIG_I2C_ALGOBIT=y | ||
663 | # CONFIG_I2C_ALGOPCF is not set | ||
664 | # CONFIG_I2C_ALGOPCA is not set | ||
665 | |||
666 | # | ||
667 | # I2C Hardware Bus support | ||
668 | # | ||
669 | # CONFIG_I2C_ALI1535 is not set | ||
670 | # CONFIG_I2C_ALI1563 is not set | ||
671 | # CONFIG_I2C_ALI15X3 is not set | ||
672 | # CONFIG_I2C_AMD756 is not set | ||
673 | # CONFIG_I2C_AMD8111 is not set | ||
674 | # CONFIG_I2C_I801 is not set | ||
675 | # CONFIG_I2C_I810 is not set | ||
676 | # CONFIG_I2C_PIIX4 is not set | ||
677 | # CONFIG_I2C_NFORCE2 is not set | ||
678 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
679 | # CONFIG_I2C_PROSAVAGE is not set | ||
680 | # CONFIG_I2C_SAVAGE4 is not set | ||
681 | # CONFIG_SCx200_ACB is not set | ||
682 | # CONFIG_I2C_SIS5595 is not set | ||
683 | # CONFIG_I2C_SIS630 is not set | ||
684 | # CONFIG_I2C_SIS96X is not set | ||
685 | # CONFIG_I2C_STUB is not set | ||
686 | # CONFIG_I2C_VIA is not set | ||
687 | # CONFIG_I2C_VIAPRO is not set | ||
688 | # CONFIG_I2C_VOODOO3 is not set | ||
689 | # CONFIG_I2C_PCA_ISA is not set | ||
690 | |||
691 | # | ||
692 | # Miscellaneous I2C Chip support | ||
693 | # | ||
694 | # CONFIG_SENSORS_DS1337 is not set | ||
695 | # CONFIG_SENSORS_DS1374 is not set | ||
696 | # CONFIG_SENSORS_EEPROM is not set | ||
697 | # CONFIG_SENSORS_PCF8574 is not set | ||
698 | # CONFIG_SENSORS_PCA9539 is not set | ||
699 | # CONFIG_SENSORS_PCF8591 is not set | ||
700 | # CONFIG_SENSORS_RTC8564 is not set | ||
701 | # CONFIG_SENSORS_MAX6875 is not set | ||
702 | # CONFIG_I2C_DEBUG_CORE is not set | ||
703 | # CONFIG_I2C_DEBUG_ALGO is not set | ||
704 | # CONFIG_I2C_DEBUG_BUS is not set | ||
705 | # CONFIG_I2C_DEBUG_CHIP is not set | ||
706 | |||
707 | # | ||
708 | # Dallas's 1-wire bus | ||
709 | # | ||
710 | # CONFIG_W1 is not set | ||
711 | |||
712 | # | ||
713 | # Hardware Monitoring support | ||
714 | # | ||
715 | # CONFIG_HWMON is not set | ||
716 | # CONFIG_HWMON_VID is not set | ||
717 | |||
718 | # | ||
719 | # Misc devices | ||
720 | # | ||
721 | |||
722 | # | ||
723 | # Multimedia Capabilities Port drivers | ||
724 | # | ||
725 | |||
726 | # | ||
727 | # Multimedia devices | ||
728 | # | ||
729 | # CONFIG_VIDEO_DEV is not set | ||
730 | |||
731 | # | ||
732 | # Digital Video Broadcasting Devices | ||
733 | # | ||
734 | # CONFIG_DVB is not set | ||
735 | |||
736 | # | ||
737 | # Graphics support | ||
738 | # | ||
739 | # CONFIG_FB is not set | ||
740 | |||
741 | # | ||
742 | # Console display driver support | ||
743 | # | ||
744 | # CONFIG_VGA_CONSOLE is not set | ||
745 | CONFIG_DUMMY_CONSOLE=y | ||
746 | |||
747 | # | ||
748 | # Sound | ||
749 | # | ||
750 | # CONFIG_SOUND is not set | ||
751 | |||
752 | # | ||
753 | # USB support | ||
754 | # | ||
755 | CONFIG_USB_ARCH_HAS_HCD=y | ||
756 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
757 | # CONFIG_USB is not set | ||
758 | |||
759 | # | ||
760 | # USB Gadget Support | ||
761 | # | ||
762 | # CONFIG_USB_GADGET is not set | ||
763 | |||
764 | # | ||
765 | # MMC/SD Card support | ||
766 | # | ||
767 | # CONFIG_MMC is not set | ||
768 | |||
769 | # | ||
770 | # InfiniBand support | ||
771 | # | ||
772 | # CONFIG_INFINIBAND is not set | ||
773 | |||
774 | # | ||
775 | # SN Devices | ||
776 | # | ||
777 | |||
778 | # | ||
779 | # File systems | ||
780 | # | ||
781 | CONFIG_EXT2_FS=y | ||
782 | # CONFIG_EXT2_FS_XATTR is not set | ||
783 | # CONFIG_EXT2_FS_XIP is not set | ||
784 | CONFIG_EXT3_FS=y | ||
785 | CONFIG_EXT3_FS_XATTR=y | ||
786 | # CONFIG_EXT3_FS_POSIX_ACL is not set | ||
787 | # CONFIG_EXT3_FS_SECURITY is not set | ||
788 | CONFIG_JBD=y | ||
789 | # CONFIG_JBD_DEBUG is not set | ||
790 | CONFIG_FS_MBCACHE=y | ||
791 | # CONFIG_REISERFS_FS is not set | ||
792 | # CONFIG_JFS_FS is not set | ||
793 | CONFIG_FS_POSIX_ACL=y | ||
794 | # CONFIG_XFS_FS is not set | ||
795 | # CONFIG_MINIX_FS is not set | ||
796 | # CONFIG_ROMFS_FS is not set | ||
797 | CONFIG_INOTIFY=y | ||
798 | # CONFIG_QUOTA is not set | ||
799 | CONFIG_DNOTIFY=y | ||
800 | # CONFIG_AUTOFS_FS is not set | ||
801 | # CONFIG_AUTOFS4_FS is not set | ||
802 | # CONFIG_FUSE_FS is not set | ||
803 | |||
804 | # | ||
805 | # CD-ROM/DVD Filesystems | ||
806 | # | ||
807 | CONFIG_ISO9660_FS=m | ||
808 | CONFIG_JOLIET=y | ||
809 | # CONFIG_ZISOFS is not set | ||
810 | CONFIG_UDF_FS=m | ||
811 | CONFIG_UDF_NLS=y | ||
812 | |||
813 | # | ||
814 | # DOS/FAT/NT Filesystems | ||
815 | # | ||
816 | CONFIG_FAT_FS=m | ||
817 | CONFIG_MSDOS_FS=m | ||
818 | CONFIG_VFAT_FS=m | ||
819 | CONFIG_FAT_DEFAULT_CODEPAGE=437 | ||
820 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | ||
821 | # CONFIG_NTFS_FS is not set | ||
822 | |||
823 | # | ||
824 | # Pseudo filesystems | ||
825 | # | ||
826 | CONFIG_PROC_FS=y | ||
827 | CONFIG_PROC_KCORE=y | ||
828 | CONFIG_SYSFS=y | ||
829 | CONFIG_TMPFS=y | ||
830 | CONFIG_HUGETLBFS=y | ||
831 | CONFIG_HUGETLB_PAGE=y | ||
832 | CONFIG_RAMFS=y | ||
833 | # CONFIG_RELAYFS_FS is not set | ||
834 | |||
835 | # | ||
836 | # Miscellaneous filesystems | ||
837 | # | ||
838 | # CONFIG_ADFS_FS is not set | ||
839 | # CONFIG_AFFS_FS is not set | ||
840 | # CONFIG_HFS_FS is not set | ||
841 | # CONFIG_HFSPLUS_FS is not set | ||
842 | # CONFIG_BEFS_FS is not set | ||
843 | # CONFIG_BFS_FS is not set | ||
844 | # CONFIG_EFS_FS is not set | ||
845 | # CONFIG_CRAMFS is not set | ||
846 | # CONFIG_VXFS_FS is not set | ||
847 | # CONFIG_HPFS_FS is not set | ||
848 | # CONFIG_QNX4FS_FS is not set | ||
849 | # CONFIG_SYSV_FS is not set | ||
850 | # CONFIG_UFS_FS is not set | ||
851 | |||
852 | # | ||
853 | # Network File Systems | ||
854 | # | ||
855 | CONFIG_NFS_FS=m | ||
856 | CONFIG_NFS_V3=y | ||
857 | CONFIG_NFS_V3_ACL=y | ||
858 | # CONFIG_NFS_V4 is not set | ||
859 | # CONFIG_NFS_DIRECTIO is not set | ||
860 | CONFIG_NFSD=m | ||
861 | CONFIG_NFSD_V2_ACL=y | ||
862 | CONFIG_NFSD_V3=y | ||
863 | CONFIG_NFSD_V3_ACL=y | ||
864 | # CONFIG_NFSD_V4 is not set | ||
865 | CONFIG_NFSD_TCP=y | ||
866 | CONFIG_LOCKD=m | ||
867 | CONFIG_LOCKD_V4=y | ||
868 | CONFIG_EXPORTFS=m | ||
869 | CONFIG_NFS_ACL_SUPPORT=m | ||
870 | CONFIG_NFS_COMMON=y | ||
871 | CONFIG_SUNRPC=m | ||
872 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
873 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
874 | # CONFIG_SMB_FS is not set | ||
875 | # CONFIG_CIFS is not set | ||
876 | # CONFIG_NCP_FS is not set | ||
877 | # CONFIG_CODA_FS is not set | ||
878 | # CONFIG_AFS_FS is not set | ||
879 | # CONFIG_9P_FS is not set | ||
880 | |||
881 | # | ||
882 | # Partition Types | ||
883 | # | ||
884 | CONFIG_PARTITION_ADVANCED=y | ||
885 | # CONFIG_ACORN_PARTITION is not set | ||
886 | # CONFIG_OSF_PARTITION is not set | ||
887 | # CONFIG_AMIGA_PARTITION is not set | ||
888 | # CONFIG_ATARI_PARTITION is not set | ||
889 | # CONFIG_MAC_PARTITION is not set | ||
890 | CONFIG_MSDOS_PARTITION=y | ||
891 | # CONFIG_BSD_DISKLABEL is not set | ||
892 | # CONFIG_MINIX_SUBPARTITION is not set | ||
893 | # CONFIG_SOLARIS_X86_PARTITION is not set | ||
894 | # CONFIG_UNIXWARE_DISKLABEL is not set | ||
895 | # CONFIG_LDM_PARTITION is not set | ||
896 | # CONFIG_SGI_PARTITION is not set | ||
897 | # CONFIG_ULTRIX_PARTITION is not set | ||
898 | # CONFIG_SUN_PARTITION is not set | ||
899 | CONFIG_EFI_PARTITION=y | ||
900 | |||
901 | # | ||
902 | # Native Language Support | ||
903 | # | ||
904 | CONFIG_NLS=m | ||
905 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
906 | # CONFIG_NLS_CODEPAGE_437 is not set | ||
907 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
908 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
909 | # CONFIG_NLS_CODEPAGE_850 is not set | ||
910 | # CONFIG_NLS_CODEPAGE_852 is not set | ||
911 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
912 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
913 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
914 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
915 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
916 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
917 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
918 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
919 | # CONFIG_NLS_CODEPAGE_866 is not set | ||
920 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
921 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
922 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
923 | # CONFIG_NLS_CODEPAGE_932 is not set | ||
924 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
925 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
926 | # CONFIG_NLS_ISO8859_8 is not set | ||
927 | # CONFIG_NLS_CODEPAGE_1250 is not set | ||
928 | # CONFIG_NLS_CODEPAGE_1251 is not set | ||
929 | # CONFIG_NLS_ASCII is not set | ||
930 | CONFIG_NLS_ISO8859_1=m | ||
931 | CONFIG_NLS_ISO8859_2=m | ||
932 | CONFIG_NLS_ISO8859_3=m | ||
933 | CONFIG_NLS_ISO8859_4=m | ||
934 | CONFIG_NLS_ISO8859_5=m | ||
935 | CONFIG_NLS_ISO8859_6=m | ||
936 | CONFIG_NLS_ISO8859_7=m | ||
937 | CONFIG_NLS_ISO8859_9=m | ||
938 | CONFIG_NLS_ISO8859_13=m | ||
939 | CONFIG_NLS_ISO8859_14=m | ||
940 | CONFIG_NLS_ISO8859_15=m | ||
941 | # CONFIG_NLS_KOI8_R is not set | ||
942 | # CONFIG_NLS_KOI8_U is not set | ||
943 | # CONFIG_NLS_UTF8 is not set | ||
944 | |||
945 | # | ||
946 | # Profiling support | ||
947 | # | ||
948 | # CONFIG_PROFILING is not set | ||
949 | |||
950 | # | ||
951 | # Kernel hacking | ||
952 | # | ||
953 | # CONFIG_PRINTK_TIME is not set | ||
954 | CONFIG_DEBUG_KERNEL=y | ||
955 | CONFIG_MAGIC_SYSRQ=y | ||
956 | CONFIG_LOG_BUF_SHIFT=15 | ||
957 | CONFIG_DETECT_SOFTLOCKUP=y | ||
958 | # CONFIG_SCHEDSTATS is not set | ||
959 | # CONFIG_DEBUG_SLAB is not set | ||
960 | # CONFIG_DEBUG_SPINLOCK is not set | ||
961 | CONFIG_DEBUG_SPINLOCK_SLEEP=y | ||
962 | # CONFIG_DEBUG_KOBJECT is not set | ||
963 | # CONFIG_DEBUG_INFO is not set | ||
964 | CONFIG_DEBUG_FS=y | ||
965 | # CONFIG_DEBUG_STACKOVERFLOW is not set | ||
966 | # CONFIG_KPROBES is not set | ||
967 | # CONFIG_DEBUG_STACK_USAGE is not set | ||
968 | CONFIG_DEBUGGER=y | ||
969 | # CONFIG_XMON is not set | ||
970 | # CONFIG_PPCDBG is not set | ||
971 | CONFIG_IRQSTACKS=y | ||
972 | |||
973 | # | ||
974 | # Security options | ||
975 | # | ||
976 | # CONFIG_KEYS is not set | ||
977 | # CONFIG_SECURITY is not set | ||
978 | |||
979 | # | ||
980 | # Cryptographic options | ||
981 | # | ||
982 | CONFIG_CRYPTO=y | ||
983 | CONFIG_CRYPTO_HMAC=y | ||
984 | # CONFIG_CRYPTO_NULL is not set | ||
985 | # CONFIG_CRYPTO_MD4 is not set | ||
986 | CONFIG_CRYPTO_MD5=m | ||
987 | CONFIG_CRYPTO_SHA1=m | ||
988 | # CONFIG_CRYPTO_SHA256 is not set | ||
989 | # CONFIG_CRYPTO_SHA512 is not set | ||
990 | # CONFIG_CRYPTO_WP512 is not set | ||
991 | # CONFIG_CRYPTO_TGR192 is not set | ||
992 | CONFIG_CRYPTO_DES=m | ||
993 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
994 | # CONFIG_CRYPTO_TWOFISH is not set | ||
995 | # CONFIG_CRYPTO_SERPENT is not set | ||
996 | # CONFIG_CRYPTO_AES is not set | ||
997 | # CONFIG_CRYPTO_CAST5 is not set | ||
998 | # CONFIG_CRYPTO_CAST6 is not set | ||
999 | # CONFIG_CRYPTO_TEA is not set | ||
1000 | # CONFIG_CRYPTO_ARC4 is not set | ||
1001 | # CONFIG_CRYPTO_KHAZAD is not set | ||
1002 | # CONFIG_CRYPTO_ANUBIS is not set | ||
1003 | CONFIG_CRYPTO_DEFLATE=m | ||
1004 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
1005 | # CONFIG_CRYPTO_CRC32C is not set | ||
1006 | # CONFIG_CRYPTO_TEST is not set | ||
1007 | |||
1008 | # | ||
1009 | # Hardware crypto devices | ||
1010 | # | ||
1011 | |||
1012 | # | ||
1013 | # Library routines | ||
1014 | # | ||
1015 | # CONFIG_CRC_CCITT is not set | ||
1016 | # CONFIG_CRC16 is not set | ||
1017 | CONFIG_CRC32=y | ||
1018 | # CONFIG_LIBCRC32C is not set | ||
1019 | CONFIG_ZLIB_INFLATE=m | ||
1020 | CONFIG_ZLIB_DEFLATE=m | ||
1021 | CONFIG_TEXTSEARCH=y | ||
1022 | CONFIG_TEXTSEARCH_KMP=m | ||
1023 | CONFIG_TEXTSEARCH_BM=m | ||
1024 | CONFIG_TEXTSEARCH_FSM=m | ||
diff --git a/arch/powerpc/configs/g5_defconfig b/arch/powerpc/configs/g5_defconfig new file mode 100644 index 000000000000..6323065fbf2c --- /dev/null +++ b/arch/powerpc/configs/g5_defconfig | |||
@@ -0,0 +1,1392 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.14-rc4 | ||
4 | # Thu Oct 20 08:30:23 2005 | ||
5 | # | ||
6 | CONFIG_64BIT=y | ||
7 | CONFIG_MMU=y | ||
8 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | ||
9 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
10 | CONFIG_GENERIC_ISA_DMA=y | ||
11 | CONFIG_EARLY_PRINTK=y | ||
12 | CONFIG_COMPAT=y | ||
13 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | ||
14 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | ||
15 | CONFIG_FORCE_MAX_ZONEORDER=13 | ||
16 | |||
17 | # | ||
18 | # Code maturity level options | ||
19 | # | ||
20 | CONFIG_EXPERIMENTAL=y | ||
21 | CONFIG_CLEAN_COMPILE=y | ||
22 | CONFIG_LOCK_KERNEL=y | ||
23 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
24 | |||
25 | # | ||
26 | # General setup | ||
27 | # | ||
28 | CONFIG_LOCALVERSION="" | ||
29 | CONFIG_LOCALVERSION_AUTO=y | ||
30 | CONFIG_SWAP=y | ||
31 | CONFIG_SYSVIPC=y | ||
32 | CONFIG_POSIX_MQUEUE=y | ||
33 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
34 | CONFIG_SYSCTL=y | ||
35 | # CONFIG_AUDIT is not set | ||
36 | CONFIG_HOTPLUG=y | ||
37 | CONFIG_KOBJECT_UEVENT=y | ||
38 | CONFIG_IKCONFIG=y | ||
39 | CONFIG_IKCONFIG_PROC=y | ||
40 | # CONFIG_CPUSETS is not set | ||
41 | CONFIG_INITRAMFS_SOURCE="" | ||
42 | # CONFIG_EMBEDDED is not set | ||
43 | CONFIG_KALLSYMS=y | ||
44 | # CONFIG_KALLSYMS_ALL is not set | ||
45 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
46 | CONFIG_PRINTK=y | ||
47 | CONFIG_BUG=y | ||
48 | CONFIG_BASE_FULL=y | ||
49 | CONFIG_FUTEX=y | ||
50 | CONFIG_EPOLL=y | ||
51 | CONFIG_SHMEM=y | ||
52 | CONFIG_CC_ALIGN_FUNCTIONS=0 | ||
53 | CONFIG_CC_ALIGN_LABELS=0 | ||
54 | CONFIG_CC_ALIGN_LOOPS=0 | ||
55 | CONFIG_CC_ALIGN_JUMPS=0 | ||
56 | # CONFIG_TINY_SHMEM is not set | ||
57 | CONFIG_BASE_SMALL=0 | ||
58 | |||
59 | # | ||
60 | # Loadable module support | ||
61 | # | ||
62 | CONFIG_MODULES=y | ||
63 | CONFIG_MODULE_UNLOAD=y | ||
64 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
65 | CONFIG_OBSOLETE_MODPARM=y | ||
66 | CONFIG_MODVERSIONS=y | ||
67 | CONFIG_MODULE_SRCVERSION_ALL=y | ||
68 | CONFIG_KMOD=y | ||
69 | CONFIG_STOP_MACHINE=y | ||
70 | CONFIG_SYSVIPC_COMPAT=y | ||
71 | |||
72 | # | ||
73 | # Platform support | ||
74 | # | ||
75 | # CONFIG_PPC_ISERIES is not set | ||
76 | CONFIG_PPC_MULTIPLATFORM=y | ||
77 | # CONFIG_PPC_PSERIES is not set | ||
78 | # CONFIG_PPC_BPA is not set | ||
79 | CONFIG_PPC_PMAC=y | ||
80 | # CONFIG_PPC_MAPLE is not set | ||
81 | CONFIG_PPC=y | ||
82 | CONFIG_PPC64=y | ||
83 | CONFIG_PPC_OF=y | ||
84 | CONFIG_MPIC=y | ||
85 | CONFIG_ALTIVEC=y | ||
86 | CONFIG_KEXEC=y | ||
87 | CONFIG_U3_DART=y | ||
88 | CONFIG_PPC_PMAC64=y | ||
89 | CONFIG_BOOTX_TEXT=y | ||
90 | CONFIG_POWER4_ONLY=y | ||
91 | CONFIG_IOMMU_VMERGE=y | ||
92 | CONFIG_SMP=y | ||
93 | CONFIG_NR_CPUS=2 | ||
94 | CONFIG_ARCH_SELECT_MEMORY_MODEL=y | ||
95 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
96 | CONFIG_SELECT_MEMORY_MODEL=y | ||
97 | CONFIG_FLATMEM_MANUAL=y | ||
98 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
99 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
100 | CONFIG_FLATMEM=y | ||
101 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
102 | # CONFIG_SPARSEMEM_STATIC is not set | ||
103 | # CONFIG_NUMA is not set | ||
104 | # CONFIG_SCHED_SMT is not set | ||
105 | CONFIG_PREEMPT_NONE=y | ||
106 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
107 | # CONFIG_PREEMPT is not set | ||
108 | # CONFIG_PREEMPT_BKL is not set | ||
109 | # CONFIG_HZ_100 is not set | ||
110 | CONFIG_HZ_250=y | ||
111 | # CONFIG_HZ_1000 is not set | ||
112 | CONFIG_HZ=250 | ||
113 | CONFIG_GENERIC_HARDIRQS=y | ||
114 | CONFIG_SECCOMP=y | ||
115 | CONFIG_BINFMT_ELF=y | ||
116 | # CONFIG_BINFMT_MISC is not set | ||
117 | # CONFIG_HOTPLUG_CPU is not set | ||
118 | CONFIG_PROC_DEVICETREE=y | ||
119 | # CONFIG_CMDLINE_BOOL is not set | ||
120 | CONFIG_ISA_DMA_API=y | ||
121 | |||
122 | # | ||
123 | # Bus Options | ||
124 | # | ||
125 | CONFIG_PCI=y | ||
126 | CONFIG_PCI_DOMAINS=y | ||
127 | CONFIG_PCI_LEGACY_PROC=y | ||
128 | # CONFIG_PCI_DEBUG is not set | ||
129 | |||
130 | # | ||
131 | # PCCARD (PCMCIA/CardBus) support | ||
132 | # | ||
133 | # CONFIG_PCCARD is not set | ||
134 | |||
135 | # | ||
136 | # PCI Hotplug Support | ||
137 | # | ||
138 | # CONFIG_HOTPLUG_PCI is not set | ||
139 | |||
140 | # | ||
141 | # Networking | ||
142 | # | ||
143 | CONFIG_NET=y | ||
144 | |||
145 | # | ||
146 | # Networking options | ||
147 | # | ||
148 | CONFIG_PACKET=y | ||
149 | # CONFIG_PACKET_MMAP is not set | ||
150 | CONFIG_UNIX=y | ||
151 | CONFIG_XFRM=y | ||
152 | CONFIG_XFRM_USER=m | ||
153 | CONFIG_NET_KEY=m | ||
154 | CONFIG_INET=y | ||
155 | CONFIG_IP_MULTICAST=y | ||
156 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
157 | CONFIG_IP_FIB_HASH=y | ||
158 | # CONFIG_IP_PNP is not set | ||
159 | CONFIG_NET_IPIP=y | ||
160 | # CONFIG_NET_IPGRE is not set | ||
161 | # CONFIG_IP_MROUTE is not set | ||
162 | # CONFIG_ARPD is not set | ||
163 | CONFIG_SYN_COOKIES=y | ||
164 | CONFIG_INET_AH=m | ||
165 | CONFIG_INET_ESP=m | ||
166 | CONFIG_INET_IPCOMP=m | ||
167 | CONFIG_INET_TUNNEL=y | ||
168 | CONFIG_INET_DIAG=y | ||
169 | CONFIG_INET_TCP_DIAG=y | ||
170 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
171 | CONFIG_TCP_CONG_BIC=y | ||
172 | |||
173 | # | ||
174 | # IP: Virtual Server Configuration | ||
175 | # | ||
176 | # CONFIG_IP_VS is not set | ||
177 | # CONFIG_IPV6 is not set | ||
178 | CONFIG_NETFILTER=y | ||
179 | # CONFIG_NETFILTER_DEBUG is not set | ||
180 | # CONFIG_NETFILTER_NETLINK is not set | ||
181 | |||
182 | # | ||
183 | # IP: Netfilter Configuration | ||
184 | # | ||
185 | CONFIG_IP_NF_CONNTRACK=m | ||
186 | CONFIG_IP_NF_CT_ACCT=y | ||
187 | CONFIG_IP_NF_CONNTRACK_MARK=y | ||
188 | CONFIG_IP_NF_CONNTRACK_EVENTS=y | ||
189 | CONFIG_IP_NF_CT_PROTO_SCTP=m | ||
190 | CONFIG_IP_NF_FTP=m | ||
191 | CONFIG_IP_NF_IRC=m | ||
192 | # CONFIG_IP_NF_NETBIOS_NS is not set | ||
193 | CONFIG_IP_NF_TFTP=m | ||
194 | CONFIG_IP_NF_AMANDA=m | ||
195 | # CONFIG_IP_NF_PPTP is not set | ||
196 | CONFIG_IP_NF_QUEUE=m | ||
197 | CONFIG_IP_NF_IPTABLES=m | ||
198 | CONFIG_IP_NF_MATCH_LIMIT=m | ||
199 | CONFIG_IP_NF_MATCH_IPRANGE=m | ||
200 | CONFIG_IP_NF_MATCH_MAC=m | ||
201 | CONFIG_IP_NF_MATCH_PKTTYPE=m | ||
202 | CONFIG_IP_NF_MATCH_MARK=m | ||
203 | CONFIG_IP_NF_MATCH_MULTIPORT=m | ||
204 | CONFIG_IP_NF_MATCH_TOS=m | ||
205 | CONFIG_IP_NF_MATCH_RECENT=m | ||
206 | CONFIG_IP_NF_MATCH_ECN=m | ||
207 | CONFIG_IP_NF_MATCH_DSCP=m | ||
208 | CONFIG_IP_NF_MATCH_AH_ESP=m | ||
209 | CONFIG_IP_NF_MATCH_LENGTH=m | ||
210 | CONFIG_IP_NF_MATCH_TTL=m | ||
211 | CONFIG_IP_NF_MATCH_TCPMSS=m | ||
212 | CONFIG_IP_NF_MATCH_HELPER=m | ||
213 | CONFIG_IP_NF_MATCH_STATE=m | ||
214 | CONFIG_IP_NF_MATCH_CONNTRACK=m | ||
215 | CONFIG_IP_NF_MATCH_OWNER=m | ||
216 | CONFIG_IP_NF_MATCH_ADDRTYPE=m | ||
217 | CONFIG_IP_NF_MATCH_REALM=m | ||
218 | CONFIG_IP_NF_MATCH_SCTP=m | ||
219 | # CONFIG_IP_NF_MATCH_DCCP is not set | ||
220 | CONFIG_IP_NF_MATCH_COMMENT=m | ||
221 | CONFIG_IP_NF_MATCH_CONNMARK=m | ||
222 | CONFIG_IP_NF_MATCH_CONNBYTES=m | ||
223 | CONFIG_IP_NF_MATCH_HASHLIMIT=m | ||
224 | CONFIG_IP_NF_MATCH_STRING=m | ||
225 | CONFIG_IP_NF_FILTER=m | ||
226 | CONFIG_IP_NF_TARGET_REJECT=m | ||
227 | CONFIG_IP_NF_TARGET_LOG=m | ||
228 | CONFIG_IP_NF_TARGET_ULOG=m | ||
229 | CONFIG_IP_NF_TARGET_TCPMSS=m | ||
230 | CONFIG_IP_NF_TARGET_NFQUEUE=m | ||
231 | CONFIG_IP_NF_NAT=m | ||
232 | CONFIG_IP_NF_NAT_NEEDED=y | ||
233 | CONFIG_IP_NF_TARGET_MASQUERADE=m | ||
234 | CONFIG_IP_NF_TARGET_REDIRECT=m | ||
235 | CONFIG_IP_NF_TARGET_NETMAP=m | ||
236 | CONFIG_IP_NF_TARGET_SAME=m | ||
237 | CONFIG_IP_NF_NAT_SNMP_BASIC=m | ||
238 | CONFIG_IP_NF_NAT_IRC=m | ||
239 | CONFIG_IP_NF_NAT_FTP=m | ||
240 | CONFIG_IP_NF_NAT_TFTP=m | ||
241 | CONFIG_IP_NF_NAT_AMANDA=m | ||
242 | CONFIG_IP_NF_MANGLE=m | ||
243 | CONFIG_IP_NF_TARGET_TOS=m | ||
244 | CONFIG_IP_NF_TARGET_ECN=m | ||
245 | CONFIG_IP_NF_TARGET_DSCP=m | ||
246 | CONFIG_IP_NF_TARGET_MARK=m | ||
247 | CONFIG_IP_NF_TARGET_CLASSIFY=m | ||
248 | CONFIG_IP_NF_TARGET_TTL=m | ||
249 | CONFIG_IP_NF_TARGET_CONNMARK=m | ||
250 | CONFIG_IP_NF_TARGET_CLUSTERIP=m | ||
251 | CONFIG_IP_NF_RAW=m | ||
252 | CONFIG_IP_NF_TARGET_NOTRACK=m | ||
253 | CONFIG_IP_NF_ARPTABLES=m | ||
254 | CONFIG_IP_NF_ARPFILTER=m | ||
255 | CONFIG_IP_NF_ARP_MANGLE=m | ||
256 | |||
257 | # | ||
258 | # DCCP Configuration (EXPERIMENTAL) | ||
259 | # | ||
260 | # CONFIG_IP_DCCP is not set | ||
261 | |||
262 | # | ||
263 | # SCTP Configuration (EXPERIMENTAL) | ||
264 | # | ||
265 | # CONFIG_IP_SCTP is not set | ||
266 | # CONFIG_ATM is not set | ||
267 | # CONFIG_BRIDGE is not set | ||
268 | # CONFIG_VLAN_8021Q is not set | ||
269 | # CONFIG_DECNET is not set | ||
270 | CONFIG_LLC=y | ||
271 | # CONFIG_LLC2 is not set | ||
272 | # CONFIG_IPX is not set | ||
273 | # CONFIG_ATALK is not set | ||
274 | # CONFIG_X25 is not set | ||
275 | # CONFIG_LAPB is not set | ||
276 | # CONFIG_NET_DIVERT is not set | ||
277 | # CONFIG_ECONET is not set | ||
278 | # CONFIG_WAN_ROUTER is not set | ||
279 | # CONFIG_NET_SCHED is not set | ||
280 | CONFIG_NET_CLS_ROUTE=y | ||
281 | |||
282 | # | ||
283 | # Network testing | ||
284 | # | ||
285 | # CONFIG_NET_PKTGEN is not set | ||
286 | # CONFIG_HAMRADIO is not set | ||
287 | # CONFIG_IRDA is not set | ||
288 | # CONFIG_BT is not set | ||
289 | # CONFIG_IEEE80211 is not set | ||
290 | |||
291 | # | ||
292 | # Device Drivers | ||
293 | # | ||
294 | |||
295 | # | ||
296 | # Generic Driver Options | ||
297 | # | ||
298 | CONFIG_STANDALONE=y | ||
299 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
300 | CONFIG_FW_LOADER=y | ||
301 | # CONFIG_DEBUG_DRIVER is not set | ||
302 | |||
303 | # | ||
304 | # Connector - unified userspace <-> kernelspace linker | ||
305 | # | ||
306 | # CONFIG_CONNECTOR is not set | ||
307 | |||
308 | # | ||
309 | # Memory Technology Devices (MTD) | ||
310 | # | ||
311 | # CONFIG_MTD is not set | ||
312 | |||
313 | # | ||
314 | # Parallel port support | ||
315 | # | ||
316 | # CONFIG_PARPORT is not set | ||
317 | |||
318 | # | ||
319 | # Plug and Play support | ||
320 | # | ||
321 | |||
322 | # | ||
323 | # Block devices | ||
324 | # | ||
325 | # CONFIG_BLK_DEV_FD is not set | ||
326 | # CONFIG_BLK_CPQ_DA is not set | ||
327 | # CONFIG_BLK_CPQ_CISS_DA is not set | ||
328 | # CONFIG_BLK_DEV_DAC960 is not set | ||
329 | # CONFIG_BLK_DEV_UMEM is not set | ||
330 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
331 | CONFIG_BLK_DEV_LOOP=y | ||
332 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | ||
333 | CONFIG_BLK_DEV_NBD=m | ||
334 | # CONFIG_BLK_DEV_SX8 is not set | ||
335 | # CONFIG_BLK_DEV_UB is not set | ||
336 | CONFIG_BLK_DEV_RAM=y | ||
337 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
338 | CONFIG_BLK_DEV_RAM_SIZE=65536 | ||
339 | CONFIG_BLK_DEV_INITRD=y | ||
340 | CONFIG_CDROM_PKTCDVD=m | ||
341 | CONFIG_CDROM_PKTCDVD_BUFFERS=8 | ||
342 | # CONFIG_CDROM_PKTCDVD_WCACHE is not set | ||
343 | |||
344 | # | ||
345 | # IO Schedulers | ||
346 | # | ||
347 | CONFIG_IOSCHED_NOOP=y | ||
348 | CONFIG_IOSCHED_AS=y | ||
349 | CONFIG_IOSCHED_DEADLINE=y | ||
350 | CONFIG_IOSCHED_CFQ=y | ||
351 | # CONFIG_ATA_OVER_ETH is not set | ||
352 | |||
353 | # | ||
354 | # ATA/ATAPI/MFM/RLL support | ||
355 | # | ||
356 | CONFIG_IDE=y | ||
357 | CONFIG_BLK_DEV_IDE=y | ||
358 | |||
359 | # | ||
360 | # Please see Documentation/ide.txt for help/info on IDE drives | ||
361 | # | ||
362 | # CONFIG_BLK_DEV_IDE_SATA is not set | ||
363 | CONFIG_BLK_DEV_IDEDISK=y | ||
364 | # CONFIG_IDEDISK_MULTI_MODE is not set | ||
365 | CONFIG_BLK_DEV_IDECD=y | ||
366 | # CONFIG_BLK_DEV_IDETAPE is not set | ||
367 | # CONFIG_BLK_DEV_IDEFLOPPY is not set | ||
368 | # CONFIG_BLK_DEV_IDESCSI is not set | ||
369 | # CONFIG_IDE_TASK_IOCTL is not set | ||
370 | |||
371 | # | ||
372 | # IDE chipset support/bugfixes | ||
373 | # | ||
374 | CONFIG_IDE_GENERIC=y | ||
375 | CONFIG_BLK_DEV_IDEPCI=y | ||
376 | # CONFIG_IDEPCI_SHARE_IRQ is not set | ||
377 | # CONFIG_BLK_DEV_OFFBOARD is not set | ||
378 | # CONFIG_BLK_DEV_GENERIC is not set | ||
379 | # CONFIG_BLK_DEV_OPTI621 is not set | ||
380 | # CONFIG_BLK_DEV_SL82C105 is not set | ||
381 | CONFIG_BLK_DEV_IDEDMA_PCI=y | ||
382 | # CONFIG_BLK_DEV_IDEDMA_FORCED is not set | ||
383 | CONFIG_IDEDMA_PCI_AUTO=y | ||
384 | # CONFIG_IDEDMA_ONLYDISK is not set | ||
385 | # CONFIG_BLK_DEV_AEC62XX is not set | ||
386 | # CONFIG_BLK_DEV_ALI15X3 is not set | ||
387 | # CONFIG_BLK_DEV_AMD74XX is not set | ||
388 | # CONFIG_BLK_DEV_CMD64X is not set | ||
389 | # CONFIG_BLK_DEV_TRIFLEX is not set | ||
390 | # CONFIG_BLK_DEV_CY82C693 is not set | ||
391 | # CONFIG_BLK_DEV_CS5520 is not set | ||
392 | # CONFIG_BLK_DEV_CS5530 is not set | ||
393 | # CONFIG_BLK_DEV_HPT34X is not set | ||
394 | # CONFIG_BLK_DEV_HPT366 is not set | ||
395 | # CONFIG_BLK_DEV_SC1200 is not set | ||
396 | # CONFIG_BLK_DEV_PIIX is not set | ||
397 | # CONFIG_BLK_DEV_IT821X is not set | ||
398 | # CONFIG_BLK_DEV_NS87415 is not set | ||
399 | # CONFIG_BLK_DEV_PDC202XX_OLD is not set | ||
400 | # CONFIG_BLK_DEV_PDC202XX_NEW is not set | ||
401 | # CONFIG_BLK_DEV_SVWKS is not set | ||
402 | # CONFIG_BLK_DEV_SIIMAGE is not set | ||
403 | # CONFIG_BLK_DEV_SLC90E66 is not set | ||
404 | # CONFIG_BLK_DEV_TRM290 is not set | ||
405 | # CONFIG_BLK_DEV_VIA82CXXX is not set | ||
406 | CONFIG_BLK_DEV_IDE_PMAC=y | ||
407 | CONFIG_BLK_DEV_IDE_PMAC_ATA100FIRST=y | ||
408 | CONFIG_BLK_DEV_IDEDMA_PMAC=y | ||
409 | # CONFIG_BLK_DEV_IDE_PMAC_BLINK is not set | ||
410 | # CONFIG_IDE_ARM is not set | ||
411 | CONFIG_BLK_DEV_IDEDMA=y | ||
412 | # CONFIG_IDEDMA_IVB is not set | ||
413 | CONFIG_IDEDMA_AUTO=y | ||
414 | # CONFIG_BLK_DEV_HD is not set | ||
415 | |||
416 | # | ||
417 | # SCSI device support | ||
418 | # | ||
419 | # CONFIG_RAID_ATTRS is not set | ||
420 | CONFIG_SCSI=y | ||
421 | CONFIG_SCSI_PROC_FS=y | ||
422 | |||
423 | # | ||
424 | # SCSI support type (disk, tape, CD-ROM) | ||
425 | # | ||
426 | CONFIG_BLK_DEV_SD=y | ||
427 | CONFIG_CHR_DEV_ST=y | ||
428 | # CONFIG_CHR_DEV_OSST is not set | ||
429 | CONFIG_BLK_DEV_SR=y | ||
430 | CONFIG_BLK_DEV_SR_VENDOR=y | ||
431 | CONFIG_CHR_DEV_SG=y | ||
432 | # CONFIG_CHR_DEV_SCH is not set | ||
433 | |||
434 | # | ||
435 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
436 | # | ||
437 | CONFIG_SCSI_MULTI_LUN=y | ||
438 | CONFIG_SCSI_CONSTANTS=y | ||
439 | # CONFIG_SCSI_LOGGING is not set | ||
440 | |||
441 | # | ||
442 | # SCSI Transport Attributes | ||
443 | # | ||
444 | CONFIG_SCSI_SPI_ATTRS=y | ||
445 | # CONFIG_SCSI_FC_ATTRS is not set | ||
446 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
447 | # CONFIG_SCSI_SAS_ATTRS is not set | ||
448 | |||
449 | # | ||
450 | # SCSI low-level drivers | ||
451 | # | ||
452 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | ||
453 | # CONFIG_SCSI_3W_9XXX is not set | ||
454 | # CONFIG_SCSI_ACARD is not set | ||
455 | # CONFIG_SCSI_AACRAID is not set | ||
456 | # CONFIG_SCSI_AIC7XXX is not set | ||
457 | # CONFIG_SCSI_AIC7XXX_OLD is not set | ||
458 | # CONFIG_SCSI_AIC79XX is not set | ||
459 | # CONFIG_MEGARAID_NEWGEN is not set | ||
460 | # CONFIG_MEGARAID_LEGACY is not set | ||
461 | # CONFIG_MEGARAID_SAS is not set | ||
462 | CONFIG_SCSI_SATA=y | ||
463 | # CONFIG_SCSI_SATA_AHCI is not set | ||
464 | CONFIG_SCSI_SATA_SVW=y | ||
465 | # CONFIG_SCSI_ATA_PIIX is not set | ||
466 | # CONFIG_SCSI_SATA_MV is not set | ||
467 | # CONFIG_SCSI_SATA_NV is not set | ||
468 | # CONFIG_SCSI_SATA_PROMISE is not set | ||
469 | # CONFIG_SCSI_SATA_QSTOR is not set | ||
470 | # CONFIG_SCSI_SATA_SX4 is not set | ||
471 | # CONFIG_SCSI_SATA_SIL is not set | ||
472 | # CONFIG_SCSI_SATA_SIS is not set | ||
473 | # CONFIG_SCSI_SATA_ULI is not set | ||
474 | # CONFIG_SCSI_SATA_VIA is not set | ||
475 | # CONFIG_SCSI_SATA_VITESSE is not set | ||
476 | # CONFIG_SCSI_BUSLOGIC is not set | ||
477 | # CONFIG_SCSI_DMX3191D is not set | ||
478 | # CONFIG_SCSI_EATA is not set | ||
479 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | ||
480 | # CONFIG_SCSI_GDTH is not set | ||
481 | # CONFIG_SCSI_IPS is not set | ||
482 | # CONFIG_SCSI_INITIO is not set | ||
483 | # CONFIG_SCSI_INIA100 is not set | ||
484 | # CONFIG_SCSI_SYM53C8XX_2 is not set | ||
485 | # CONFIG_SCSI_IPR is not set | ||
486 | # CONFIG_SCSI_QLOGIC_FC is not set | ||
487 | # CONFIG_SCSI_QLOGIC_1280 is not set | ||
488 | CONFIG_SCSI_QLA2XXX=y | ||
489 | # CONFIG_SCSI_QLA21XX is not set | ||
490 | # CONFIG_SCSI_QLA22XX is not set | ||
491 | # CONFIG_SCSI_QLA2300 is not set | ||
492 | # CONFIG_SCSI_QLA2322 is not set | ||
493 | # CONFIG_SCSI_QLA6312 is not set | ||
494 | # CONFIG_SCSI_QLA24XX is not set | ||
495 | # CONFIG_SCSI_LPFC is not set | ||
496 | # CONFIG_SCSI_DC395x is not set | ||
497 | # CONFIG_SCSI_DC390T is not set | ||
498 | # CONFIG_SCSI_DEBUG is not set | ||
499 | |||
500 | # | ||
501 | # Multi-device support (RAID and LVM) | ||
502 | # | ||
503 | CONFIG_MD=y | ||
504 | CONFIG_BLK_DEV_MD=y | ||
505 | CONFIG_MD_LINEAR=y | ||
506 | CONFIG_MD_RAID0=y | ||
507 | CONFIG_MD_RAID1=y | ||
508 | CONFIG_MD_RAID10=m | ||
509 | CONFIG_MD_RAID5=y | ||
510 | CONFIG_MD_RAID6=m | ||
511 | CONFIG_MD_MULTIPATH=m | ||
512 | CONFIG_MD_FAULTY=m | ||
513 | CONFIG_BLK_DEV_DM=y | ||
514 | CONFIG_DM_CRYPT=m | ||
515 | CONFIG_DM_SNAPSHOT=m | ||
516 | CONFIG_DM_MIRROR=m | ||
517 | CONFIG_DM_ZERO=m | ||
518 | # CONFIG_DM_MULTIPATH is not set | ||
519 | |||
520 | # | ||
521 | # Fusion MPT device support | ||
522 | # | ||
523 | # CONFIG_FUSION is not set | ||
524 | # CONFIG_FUSION_SPI is not set | ||
525 | # CONFIG_FUSION_FC is not set | ||
526 | # CONFIG_FUSION_SAS is not set | ||
527 | |||
528 | # | ||
529 | # IEEE 1394 (FireWire) support | ||
530 | # | ||
531 | CONFIG_IEEE1394=y | ||
532 | |||
533 | # | ||
534 | # Subsystem Options | ||
535 | # | ||
536 | # CONFIG_IEEE1394_VERBOSEDEBUG is not set | ||
537 | CONFIG_IEEE1394_OUI_DB=y | ||
538 | CONFIG_IEEE1394_EXTRA_CONFIG_ROMS=y | ||
539 | CONFIG_IEEE1394_CONFIG_ROM_IP1394=y | ||
540 | # CONFIG_IEEE1394_EXPORT_FULL_API is not set | ||
541 | |||
542 | # | ||
543 | # Device Drivers | ||
544 | # | ||
545 | # CONFIG_IEEE1394_PCILYNX is not set | ||
546 | CONFIG_IEEE1394_OHCI1394=y | ||
547 | |||
548 | # | ||
549 | # Protocol Drivers | ||
550 | # | ||
551 | CONFIG_IEEE1394_VIDEO1394=m | ||
552 | CONFIG_IEEE1394_SBP2=m | ||
553 | # CONFIG_IEEE1394_SBP2_PHYS_DMA is not set | ||
554 | CONFIG_IEEE1394_ETH1394=m | ||
555 | CONFIG_IEEE1394_DV1394=m | ||
556 | CONFIG_IEEE1394_RAWIO=y | ||
557 | # CONFIG_IEEE1394_CMP is not set | ||
558 | |||
559 | # | ||
560 | # I2O device support | ||
561 | # | ||
562 | # CONFIG_I2O is not set | ||
563 | |||
564 | # | ||
565 | # Macintosh device drivers | ||
566 | # | ||
567 | CONFIG_ADB_PMU=y | ||
568 | CONFIG_PMAC_SMU=y | ||
569 | CONFIG_THERM_PM72=y | ||
570 | |||
571 | # | ||
572 | # Network device support | ||
573 | # | ||
574 | CONFIG_NETDEVICES=y | ||
575 | CONFIG_DUMMY=m | ||
576 | CONFIG_BONDING=m | ||
577 | # CONFIG_EQUALIZER is not set | ||
578 | CONFIG_TUN=m | ||
579 | |||
580 | # | ||
581 | # ARCnet devices | ||
582 | # | ||
583 | # CONFIG_ARCNET is not set | ||
584 | |||
585 | # | ||
586 | # PHY device support | ||
587 | # | ||
588 | # CONFIG_PHYLIB is not set | ||
589 | |||
590 | # | ||
591 | # Ethernet (10 or 100Mbit) | ||
592 | # | ||
593 | CONFIG_NET_ETHERNET=y | ||
594 | CONFIG_MII=y | ||
595 | # CONFIG_HAPPYMEAL is not set | ||
596 | CONFIG_SUNGEM=y | ||
597 | # CONFIG_CASSINI is not set | ||
598 | # CONFIG_NET_VENDOR_3COM is not set | ||
599 | |||
600 | # | ||
601 | # Tulip family network device support | ||
602 | # | ||
603 | # CONFIG_NET_TULIP is not set | ||
604 | # CONFIG_HP100 is not set | ||
605 | # CONFIG_NET_PCI is not set | ||
606 | |||
607 | # | ||
608 | # Ethernet (1000 Mbit) | ||
609 | # | ||
610 | CONFIG_ACENIC=y | ||
611 | CONFIG_ACENIC_OMIT_TIGON_I=y | ||
612 | # CONFIG_DL2K is not set | ||
613 | CONFIG_E1000=y | ||
614 | # CONFIG_E1000_NAPI is not set | ||
615 | # CONFIG_NS83820 is not set | ||
616 | # CONFIG_HAMACHI is not set | ||
617 | # CONFIG_YELLOWFIN is not set | ||
618 | # CONFIG_R8169 is not set | ||
619 | # CONFIG_SIS190 is not set | ||
620 | # CONFIG_SKGE is not set | ||
621 | # CONFIG_SK98LIN is not set | ||
622 | CONFIG_TIGON3=m | ||
623 | # CONFIG_BNX2 is not set | ||
624 | # CONFIG_MV643XX_ETH is not set | ||
625 | |||
626 | # | ||
627 | # Ethernet (10000 Mbit) | ||
628 | # | ||
629 | # CONFIG_CHELSIO_T1 is not set | ||
630 | # CONFIG_IXGB is not set | ||
631 | # CONFIG_S2IO is not set | ||
632 | |||
633 | # | ||
634 | # Token Ring devices | ||
635 | # | ||
636 | CONFIG_TR=y | ||
637 | CONFIG_IBMOL=y | ||
638 | # CONFIG_3C359 is not set | ||
639 | # CONFIG_TMS380TR is not set | ||
640 | |||
641 | # | ||
642 | # Wireless LAN (non-hamradio) | ||
643 | # | ||
644 | # CONFIG_NET_RADIO is not set | ||
645 | |||
646 | # | ||
647 | # Wan interfaces | ||
648 | # | ||
649 | # CONFIG_WAN is not set | ||
650 | # CONFIG_FDDI is not set | ||
651 | # CONFIG_HIPPI is not set | ||
652 | CONFIG_PPP=m | ||
653 | # CONFIG_PPP_MULTILINK is not set | ||
654 | # CONFIG_PPP_FILTER is not set | ||
655 | CONFIG_PPP_ASYNC=m | ||
656 | CONFIG_PPP_SYNC_TTY=m | ||
657 | CONFIG_PPP_DEFLATE=m | ||
658 | CONFIG_PPP_BSDCOMP=m | ||
659 | CONFIG_PPPOE=m | ||
660 | # CONFIG_SLIP is not set | ||
661 | # CONFIG_NET_FC is not set | ||
662 | # CONFIG_SHAPER is not set | ||
663 | # CONFIG_NETCONSOLE is not set | ||
664 | # CONFIG_NETPOLL is not set | ||
665 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
666 | |||
667 | # | ||
668 | # ISDN subsystem | ||
669 | # | ||
670 | # CONFIG_ISDN is not set | ||
671 | |||
672 | # | ||
673 | # Telephony Support | ||
674 | # | ||
675 | # CONFIG_PHONE is not set | ||
676 | |||
677 | # | ||
678 | # Input device support | ||
679 | # | ||
680 | CONFIG_INPUT=y | ||
681 | |||
682 | # | ||
683 | # Userland interfaces | ||
684 | # | ||
685 | CONFIG_INPUT_MOUSEDEV=y | ||
686 | # CONFIG_INPUT_MOUSEDEV_PSAUX is not set | ||
687 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | ||
688 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | ||
689 | CONFIG_INPUT_JOYDEV=m | ||
690 | # CONFIG_INPUT_TSDEV is not set | ||
691 | CONFIG_INPUT_EVDEV=y | ||
692 | # CONFIG_INPUT_EVBUG is not set | ||
693 | |||
694 | # | ||
695 | # Input Device Drivers | ||
696 | # | ||
697 | CONFIG_INPUT_KEYBOARD=y | ||
698 | # CONFIG_KEYBOARD_ATKBD is not set | ||
699 | # CONFIG_KEYBOARD_SUNKBD is not set | ||
700 | # CONFIG_KEYBOARD_LKKBD is not set | ||
701 | # CONFIG_KEYBOARD_XTKBD is not set | ||
702 | # CONFIG_KEYBOARD_NEWTON is not set | ||
703 | CONFIG_INPUT_MOUSE=y | ||
704 | # CONFIG_MOUSE_PS2 is not set | ||
705 | # CONFIG_MOUSE_SERIAL is not set | ||
706 | # CONFIG_MOUSE_VSXXXAA is not set | ||
707 | # CONFIG_INPUT_JOYSTICK is not set | ||
708 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
709 | # CONFIG_INPUT_MISC is not set | ||
710 | |||
711 | # | ||
712 | # Hardware I/O ports | ||
713 | # | ||
714 | CONFIG_SERIO=y | ||
715 | # CONFIG_SERIO_I8042 is not set | ||
716 | # CONFIG_SERIO_SERPORT is not set | ||
717 | # CONFIG_SERIO_PCIPS2 is not set | ||
718 | # CONFIG_SERIO_RAW is not set | ||
719 | # CONFIG_GAMEPORT is not set | ||
720 | |||
721 | # | ||
722 | # Character devices | ||
723 | # | ||
724 | CONFIG_VT=y | ||
725 | CONFIG_VT_CONSOLE=y | ||
726 | CONFIG_HW_CONSOLE=y | ||
727 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
728 | |||
729 | # | ||
730 | # Serial drivers | ||
731 | # | ||
732 | # CONFIG_SERIAL_8250 is not set | ||
733 | |||
734 | # | ||
735 | # Non-8250 serial port support | ||
736 | # | ||
737 | # CONFIG_SERIAL_PMACZILOG is not set | ||
738 | # CONFIG_SERIAL_JSM is not set | ||
739 | CONFIG_UNIX98_PTYS=y | ||
740 | CONFIG_LEGACY_PTYS=y | ||
741 | CONFIG_LEGACY_PTY_COUNT=256 | ||
742 | |||
743 | # | ||
744 | # IPMI | ||
745 | # | ||
746 | # CONFIG_IPMI_HANDLER is not set | ||
747 | |||
748 | # | ||
749 | # Watchdog Cards | ||
750 | # | ||
751 | # CONFIG_WATCHDOG is not set | ||
752 | # CONFIG_RTC is not set | ||
753 | # CONFIG_DTLK is not set | ||
754 | # CONFIG_R3964 is not set | ||
755 | # CONFIG_APPLICOM is not set | ||
756 | |||
757 | # | ||
758 | # Ftape, the floppy tape device driver | ||
759 | # | ||
760 | CONFIG_AGP=m | ||
761 | CONFIG_AGP_UNINORTH=m | ||
762 | # CONFIG_DRM is not set | ||
763 | CONFIG_RAW_DRIVER=y | ||
764 | CONFIG_MAX_RAW_DEVS=256 | ||
765 | # CONFIG_HANGCHECK_TIMER is not set | ||
766 | |||
767 | # | ||
768 | # TPM devices | ||
769 | # | ||
770 | # CONFIG_TCG_TPM is not set | ||
771 | |||
772 | # | ||
773 | # I2C support | ||
774 | # | ||
775 | CONFIG_I2C=y | ||
776 | CONFIG_I2C_CHARDEV=y | ||
777 | |||
778 | # | ||
779 | # I2C Algorithms | ||
780 | # | ||
781 | CONFIG_I2C_ALGOBIT=y | ||
782 | # CONFIG_I2C_ALGOPCF is not set | ||
783 | # CONFIG_I2C_ALGOPCA is not set | ||
784 | |||
785 | # | ||
786 | # I2C Hardware Bus support | ||
787 | # | ||
788 | # CONFIG_I2C_ALI1535 is not set | ||
789 | # CONFIG_I2C_ALI1563 is not set | ||
790 | # CONFIG_I2C_ALI15X3 is not set | ||
791 | # CONFIG_I2C_AMD756 is not set | ||
792 | # CONFIG_I2C_AMD8111 is not set | ||
793 | # CONFIG_I2C_I801 is not set | ||
794 | # CONFIG_I2C_I810 is not set | ||
795 | # CONFIG_I2C_PIIX4 is not set | ||
796 | CONFIG_I2C_KEYWEST=y | ||
797 | CONFIG_I2C_PMAC_SMU=y | ||
798 | # CONFIG_I2C_NFORCE2 is not set | ||
799 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
800 | # CONFIG_I2C_PROSAVAGE is not set | ||
801 | # CONFIG_I2C_SAVAGE4 is not set | ||
802 | # CONFIG_SCx200_ACB is not set | ||
803 | # CONFIG_I2C_SIS5595 is not set | ||
804 | # CONFIG_I2C_SIS630 is not set | ||
805 | # CONFIG_I2C_SIS96X is not set | ||
806 | # CONFIG_I2C_STUB is not set | ||
807 | # CONFIG_I2C_VIA is not set | ||
808 | # CONFIG_I2C_VIAPRO is not set | ||
809 | # CONFIG_I2C_VOODOO3 is not set | ||
810 | # CONFIG_I2C_PCA_ISA is not set | ||
811 | |||
812 | # | ||
813 | # Miscellaneous I2C Chip support | ||
814 | # | ||
815 | # CONFIG_SENSORS_DS1337 is not set | ||
816 | # CONFIG_SENSORS_DS1374 is not set | ||
817 | # CONFIG_SENSORS_EEPROM is not set | ||
818 | # CONFIG_SENSORS_PCF8574 is not set | ||
819 | # CONFIG_SENSORS_PCA9539 is not set | ||
820 | # CONFIG_SENSORS_PCF8591 is not set | ||
821 | # CONFIG_SENSORS_RTC8564 is not set | ||
822 | # CONFIG_SENSORS_MAX6875 is not set | ||
823 | # CONFIG_I2C_DEBUG_CORE is not set | ||
824 | # CONFIG_I2C_DEBUG_ALGO is not set | ||
825 | # CONFIG_I2C_DEBUG_BUS is not set | ||
826 | # CONFIG_I2C_DEBUG_CHIP is not set | ||
827 | |||
828 | # | ||
829 | # Dallas's 1-wire bus | ||
830 | # | ||
831 | # CONFIG_W1 is not set | ||
832 | |||
833 | # | ||
834 | # Hardware Monitoring support | ||
835 | # | ||
836 | # CONFIG_HWMON is not set | ||
837 | # CONFIG_HWMON_VID is not set | ||
838 | |||
839 | # | ||
840 | # Misc devices | ||
841 | # | ||
842 | |||
843 | # | ||
844 | # Multimedia Capabilities Port drivers | ||
845 | # | ||
846 | |||
847 | # | ||
848 | # Multimedia devices | ||
849 | # | ||
850 | # CONFIG_VIDEO_DEV is not set | ||
851 | |||
852 | # | ||
853 | # Digital Video Broadcasting Devices | ||
854 | # | ||
855 | # CONFIG_DVB is not set | ||
856 | |||
857 | # | ||
858 | # Graphics support | ||
859 | # | ||
860 | CONFIG_FB=y | ||
861 | CONFIG_FB_CFB_FILLRECT=y | ||
862 | CONFIG_FB_CFB_COPYAREA=y | ||
863 | CONFIG_FB_CFB_IMAGEBLIT=y | ||
864 | CONFIG_FB_SOFT_CURSOR=y | ||
865 | CONFIG_FB_MACMODES=y | ||
866 | CONFIG_FB_MODE_HELPERS=y | ||
867 | CONFIG_FB_TILEBLITTING=y | ||
868 | # CONFIG_FB_CIRRUS is not set | ||
869 | # CONFIG_FB_PM2 is not set | ||
870 | # CONFIG_FB_CYBER2000 is not set | ||
871 | CONFIG_FB_OF=y | ||
872 | # CONFIG_FB_CONTROL is not set | ||
873 | # CONFIG_FB_PLATINUM is not set | ||
874 | # CONFIG_FB_VALKYRIE is not set | ||
875 | # CONFIG_FB_CT65550 is not set | ||
876 | # CONFIG_FB_ASILIANT is not set | ||
877 | # CONFIG_FB_IMSTT is not set | ||
878 | # CONFIG_FB_VGA16 is not set | ||
879 | # CONFIG_FB_NVIDIA is not set | ||
880 | CONFIG_FB_RIVA=y | ||
881 | # CONFIG_FB_RIVA_I2C is not set | ||
882 | # CONFIG_FB_RIVA_DEBUG is not set | ||
883 | # CONFIG_FB_MATROX is not set | ||
884 | # CONFIG_FB_RADEON_OLD is not set | ||
885 | CONFIG_FB_RADEON=y | ||
886 | CONFIG_FB_RADEON_I2C=y | ||
887 | # CONFIG_FB_RADEON_DEBUG is not set | ||
888 | # CONFIG_FB_ATY128 is not set | ||
889 | # CONFIG_FB_ATY is not set | ||
890 | # CONFIG_FB_SAVAGE is not set | ||
891 | # CONFIG_FB_SIS is not set | ||
892 | # CONFIG_FB_NEOMAGIC is not set | ||
893 | # CONFIG_FB_KYRO is not set | ||
894 | # CONFIG_FB_3DFX is not set | ||
895 | # CONFIG_FB_VOODOO1 is not set | ||
896 | # CONFIG_FB_CYBLA is not set | ||
897 | # CONFIG_FB_TRIDENT is not set | ||
898 | # CONFIG_FB_S1D13XXX is not set | ||
899 | # CONFIG_FB_VIRTUAL is not set | ||
900 | |||
901 | # | ||
902 | # Console display driver support | ||
903 | # | ||
904 | # CONFIG_VGA_CONSOLE is not set | ||
905 | CONFIG_DUMMY_CONSOLE=y | ||
906 | CONFIG_FRAMEBUFFER_CONSOLE=y | ||
907 | # CONFIG_FONTS is not set | ||
908 | CONFIG_FONT_8x8=y | ||
909 | CONFIG_FONT_8x16=y | ||
910 | |||
911 | # | ||
912 | # Logo configuration | ||
913 | # | ||
914 | CONFIG_LOGO=y | ||
915 | CONFIG_LOGO_LINUX_MONO=y | ||
916 | CONFIG_LOGO_LINUX_VGA16=y | ||
917 | CONFIG_LOGO_LINUX_CLUT224=y | ||
918 | CONFIG_BACKLIGHT_LCD_SUPPORT=y | ||
919 | CONFIG_BACKLIGHT_CLASS_DEVICE=m | ||
920 | CONFIG_BACKLIGHT_DEVICE=y | ||
921 | CONFIG_LCD_CLASS_DEVICE=m | ||
922 | CONFIG_LCD_DEVICE=y | ||
923 | |||
924 | # | ||
925 | # Sound | ||
926 | # | ||
927 | # CONFIG_SOUND is not set | ||
928 | |||
929 | # | ||
930 | # USB support | ||
931 | # | ||
932 | CONFIG_USB_ARCH_HAS_HCD=y | ||
933 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
934 | CONFIG_USB=y | ||
935 | # CONFIG_USB_DEBUG is not set | ||
936 | |||
937 | # | ||
938 | # Miscellaneous USB options | ||
939 | # | ||
940 | CONFIG_USB_DEVICEFS=y | ||
941 | # CONFIG_USB_BANDWIDTH is not set | ||
942 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
943 | # CONFIG_USB_OTG is not set | ||
944 | |||
945 | # | ||
946 | # USB Host Controller Drivers | ||
947 | # | ||
948 | CONFIG_USB_EHCI_HCD=y | ||
949 | # CONFIG_USB_EHCI_SPLIT_ISO is not set | ||
950 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | ||
951 | # CONFIG_USB_ISP116X_HCD is not set | ||
952 | CONFIG_USB_OHCI_HCD=y | ||
953 | # CONFIG_USB_OHCI_BIG_ENDIAN is not set | ||
954 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
955 | # CONFIG_USB_UHCI_HCD is not set | ||
956 | # CONFIG_USB_SL811_HCD is not set | ||
957 | |||
958 | # | ||
959 | # USB Device Class drivers | ||
960 | # | ||
961 | # CONFIG_USB_BLUETOOTH_TTY is not set | ||
962 | CONFIG_USB_ACM=m | ||
963 | CONFIG_USB_PRINTER=y | ||
964 | |||
965 | # | ||
966 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' may also be needed; see USB_STORAGE Help for more information | ||
967 | # | ||
968 | CONFIG_USB_STORAGE=y | ||
969 | # CONFIG_USB_STORAGE_DEBUG is not set | ||
970 | CONFIG_USB_STORAGE_DATAFAB=y | ||
971 | CONFIG_USB_STORAGE_FREECOM=y | ||
972 | CONFIG_USB_STORAGE_ISD200=y | ||
973 | CONFIG_USB_STORAGE_DPCM=y | ||
974 | # CONFIG_USB_STORAGE_USBAT is not set | ||
975 | CONFIG_USB_STORAGE_SDDR09=y | ||
976 | CONFIG_USB_STORAGE_SDDR55=y | ||
977 | CONFIG_USB_STORAGE_JUMPSHOT=y | ||
978 | # CONFIG_USB_STORAGE_ONETOUCH is not set | ||
979 | |||
980 | # | ||
981 | # USB Input Devices | ||
982 | # | ||
983 | CONFIG_USB_HID=y | ||
984 | CONFIG_USB_HIDINPUT=y | ||
985 | CONFIG_HID_FF=y | ||
986 | CONFIG_HID_PID=y | ||
987 | CONFIG_LOGITECH_FF=y | ||
988 | CONFIG_THRUSTMASTER_FF=y | ||
989 | CONFIG_USB_HIDDEV=y | ||
990 | # CONFIG_USB_AIPTEK is not set | ||
991 | # CONFIG_USB_WACOM is not set | ||
992 | # CONFIG_USB_ACECAD is not set | ||
993 | # CONFIG_USB_KBTAB is not set | ||
994 | # CONFIG_USB_POWERMATE is not set | ||
995 | # CONFIG_USB_MTOUCH is not set | ||
996 | # CONFIG_USB_ITMTOUCH is not set | ||
997 | # CONFIG_USB_EGALAX is not set | ||
998 | # CONFIG_USB_YEALINK is not set | ||
999 | # CONFIG_USB_XPAD is not set | ||
1000 | # CONFIG_USB_ATI_REMOTE is not set | ||
1001 | # CONFIG_USB_KEYSPAN_REMOTE is not set | ||
1002 | # CONFIG_USB_APPLETOUCH is not set | ||
1003 | |||
1004 | # | ||
1005 | # USB Imaging devices | ||
1006 | # | ||
1007 | # CONFIG_USB_MDC800 is not set | ||
1008 | # CONFIG_USB_MICROTEK is not set | ||
1009 | |||
1010 | # | ||
1011 | # USB Multimedia devices | ||
1012 | # | ||
1013 | # CONFIG_USB_DABUSB is not set | ||
1014 | |||
1015 | # | ||
1016 | # Video4Linux support is needed for USB Multimedia device support | ||
1017 | # | ||
1018 | |||
1019 | # | ||
1020 | # USB Network Adapters | ||
1021 | # | ||
1022 | CONFIG_USB_CATC=m | ||
1023 | CONFIG_USB_KAWETH=m | ||
1024 | CONFIG_USB_PEGASUS=m | ||
1025 | CONFIG_USB_RTL8150=m | ||
1026 | CONFIG_USB_USBNET=m | ||
1027 | # CONFIG_USB_NET_AX8817X is not set | ||
1028 | CONFIG_USB_NET_CDCETHER=m | ||
1029 | # CONFIG_USB_NET_GL620A is not set | ||
1030 | # CONFIG_USB_NET_NET1080 is not set | ||
1031 | # CONFIG_USB_NET_PLUSB is not set | ||
1032 | # CONFIG_USB_NET_RNDIS_HOST is not set | ||
1033 | # CONFIG_USB_NET_CDC_SUBSET is not set | ||
1034 | # CONFIG_USB_NET_ZAURUS is not set | ||
1035 | CONFIG_USB_MON=y | ||
1036 | |||
1037 | # | ||
1038 | # USB port drivers | ||
1039 | # | ||
1040 | |||
1041 | # | ||
1042 | # USB Serial Converter support | ||
1043 | # | ||
1044 | CONFIG_USB_SERIAL=m | ||
1045 | CONFIG_USB_SERIAL_GENERIC=y | ||
1046 | # CONFIG_USB_SERIAL_AIRPRIME is not set | ||
1047 | CONFIG_USB_SERIAL_BELKIN=m | ||
1048 | CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m | ||
1049 | # CONFIG_USB_SERIAL_CP2101 is not set | ||
1050 | CONFIG_USB_SERIAL_CYPRESS_M8=m | ||
1051 | CONFIG_USB_SERIAL_EMPEG=m | ||
1052 | CONFIG_USB_SERIAL_FTDI_SIO=m | ||
1053 | CONFIG_USB_SERIAL_VISOR=m | ||
1054 | CONFIG_USB_SERIAL_IPAQ=m | ||
1055 | CONFIG_USB_SERIAL_IR=m | ||
1056 | CONFIG_USB_SERIAL_EDGEPORT=m | ||
1057 | CONFIG_USB_SERIAL_EDGEPORT_TI=m | ||
1058 | CONFIG_USB_SERIAL_GARMIN=m | ||
1059 | CONFIG_USB_SERIAL_IPW=m | ||
1060 | CONFIG_USB_SERIAL_KEYSPAN_PDA=m | ||
1061 | CONFIG_USB_SERIAL_KEYSPAN=m | ||
1062 | CONFIG_USB_SERIAL_KEYSPAN_MPR=y | ||
1063 | CONFIG_USB_SERIAL_KEYSPAN_USA28=y | ||
1064 | CONFIG_USB_SERIAL_KEYSPAN_USA28X=y | ||
1065 | CONFIG_USB_SERIAL_KEYSPAN_USA28XA=y | ||
1066 | CONFIG_USB_SERIAL_KEYSPAN_USA28XB=y | ||
1067 | CONFIG_USB_SERIAL_KEYSPAN_USA19=y | ||
1068 | CONFIG_USB_SERIAL_KEYSPAN_USA18X=y | ||
1069 | CONFIG_USB_SERIAL_KEYSPAN_USA19W=y | ||
1070 | CONFIG_USB_SERIAL_KEYSPAN_USA19QW=y | ||
1071 | CONFIG_USB_SERIAL_KEYSPAN_USA19QI=y | ||
1072 | CONFIG_USB_SERIAL_KEYSPAN_USA49W=y | ||
1073 | CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y | ||
1074 | CONFIG_USB_SERIAL_KLSI=m | ||
1075 | CONFIG_USB_SERIAL_KOBIL_SCT=m | ||
1076 | CONFIG_USB_SERIAL_MCT_U232=m | ||
1077 | CONFIG_USB_SERIAL_PL2303=m | ||
1078 | # CONFIG_USB_SERIAL_HP4X is not set | ||
1079 | CONFIG_USB_SERIAL_SAFE=m | ||
1080 | CONFIG_USB_SERIAL_SAFE_PADDED=y | ||
1081 | CONFIG_USB_SERIAL_TI=m | ||
1082 | CONFIG_USB_SERIAL_CYBERJACK=m | ||
1083 | CONFIG_USB_SERIAL_XIRCOM=m | ||
1084 | CONFIG_USB_SERIAL_OMNINET=m | ||
1085 | CONFIG_USB_EZUSB=y | ||
1086 | |||
1087 | # | ||
1088 | # USB Miscellaneous drivers | ||
1089 | # | ||
1090 | # CONFIG_USB_EMI62 is not set | ||
1091 | # CONFIG_USB_EMI26 is not set | ||
1092 | # CONFIG_USB_AUERSWALD is not set | ||
1093 | # CONFIG_USB_RIO500 is not set | ||
1094 | # CONFIG_USB_LEGOTOWER is not set | ||
1095 | # CONFIG_USB_LCD is not set | ||
1096 | # CONFIG_USB_LED is not set | ||
1097 | # CONFIG_USB_CYTHERM is not set | ||
1098 | # CONFIG_USB_PHIDGETKIT is not set | ||
1099 | # CONFIG_USB_PHIDGETSERVO is not set | ||
1100 | # CONFIG_USB_IDMOUSE is not set | ||
1101 | # CONFIG_USB_SISUSBVGA is not set | ||
1102 | # CONFIG_USB_LD is not set | ||
1103 | # CONFIG_USB_TEST is not set | ||
1104 | |||
1105 | # | ||
1106 | # USB DSL modem support | ||
1107 | # | ||
1108 | |||
1109 | # | ||
1110 | # USB Gadget Support | ||
1111 | # | ||
1112 | # CONFIG_USB_GADGET is not set | ||
1113 | |||
1114 | # | ||
1115 | # MMC/SD Card support | ||
1116 | # | ||
1117 | # CONFIG_MMC is not set | ||
1118 | |||
1119 | # | ||
1120 | # InfiniBand support | ||
1121 | # | ||
1122 | # CONFIG_INFINIBAND is not set | ||
1123 | |||
1124 | # | ||
1125 | # SN Devices | ||
1126 | # | ||
1127 | |||
1128 | # | ||
1129 | # File systems | ||
1130 | # | ||
1131 | CONFIG_EXT2_FS=y | ||
1132 | CONFIG_EXT2_FS_XATTR=y | ||
1133 | CONFIG_EXT2_FS_POSIX_ACL=y | ||
1134 | CONFIG_EXT2_FS_SECURITY=y | ||
1135 | CONFIG_EXT2_FS_XIP=y | ||
1136 | CONFIG_FS_XIP=y | ||
1137 | CONFIG_EXT3_FS=y | ||
1138 | CONFIG_EXT3_FS_XATTR=y | ||
1139 | CONFIG_EXT3_FS_POSIX_ACL=y | ||
1140 | CONFIG_EXT3_FS_SECURITY=y | ||
1141 | CONFIG_JBD=y | ||
1142 | # CONFIG_JBD_DEBUG is not set | ||
1143 | CONFIG_FS_MBCACHE=y | ||
1144 | CONFIG_REISERFS_FS=y | ||
1145 | # CONFIG_REISERFS_CHECK is not set | ||
1146 | # CONFIG_REISERFS_PROC_INFO is not set | ||
1147 | CONFIG_REISERFS_FS_XATTR=y | ||
1148 | CONFIG_REISERFS_FS_POSIX_ACL=y | ||
1149 | CONFIG_REISERFS_FS_SECURITY=y | ||
1150 | # CONFIG_JFS_FS is not set | ||
1151 | CONFIG_FS_POSIX_ACL=y | ||
1152 | CONFIG_XFS_FS=m | ||
1153 | CONFIG_XFS_EXPORT=y | ||
1154 | # CONFIG_XFS_QUOTA is not set | ||
1155 | CONFIG_XFS_SECURITY=y | ||
1156 | CONFIG_XFS_POSIX_ACL=y | ||
1157 | # CONFIG_XFS_RT is not set | ||
1158 | # CONFIG_MINIX_FS is not set | ||
1159 | # CONFIG_ROMFS_FS is not set | ||
1160 | CONFIG_INOTIFY=y | ||
1161 | # CONFIG_QUOTA is not set | ||
1162 | CONFIG_DNOTIFY=y | ||
1163 | CONFIG_AUTOFS_FS=m | ||
1164 | # CONFIG_AUTOFS4_FS is not set | ||
1165 | # CONFIG_FUSE_FS is not set | ||
1166 | |||
1167 | # | ||
1168 | # CD-ROM/DVD Filesystems | ||
1169 | # | ||
1170 | CONFIG_ISO9660_FS=y | ||
1171 | CONFIG_JOLIET=y | ||
1172 | CONFIG_ZISOFS=y | ||
1173 | CONFIG_ZISOFS_FS=y | ||
1174 | CONFIG_UDF_FS=m | ||
1175 | CONFIG_UDF_NLS=y | ||
1176 | |||
1177 | # | ||
1178 | # DOS/FAT/NT Filesystems | ||
1179 | # | ||
1180 | CONFIG_FAT_FS=y | ||
1181 | CONFIG_MSDOS_FS=y | ||
1182 | CONFIG_VFAT_FS=y | ||
1183 | CONFIG_FAT_DEFAULT_CODEPAGE=437 | ||
1184 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | ||
1185 | # CONFIG_NTFS_FS is not set | ||
1186 | |||
1187 | # | ||
1188 | # Pseudo filesystems | ||
1189 | # | ||
1190 | CONFIG_PROC_FS=y | ||
1191 | CONFIG_PROC_KCORE=y | ||
1192 | CONFIG_SYSFS=y | ||
1193 | CONFIG_TMPFS=y | ||
1194 | CONFIG_HUGETLBFS=y | ||
1195 | CONFIG_HUGETLB_PAGE=y | ||
1196 | CONFIG_RAMFS=y | ||
1197 | # CONFIG_RELAYFS_FS is not set | ||
1198 | |||
1199 | # | ||
1200 | # Miscellaneous filesystems | ||
1201 | # | ||
1202 | # CONFIG_ADFS_FS is not set | ||
1203 | # CONFIG_AFFS_FS is not set | ||
1204 | CONFIG_HFS_FS=m | ||
1205 | CONFIG_HFSPLUS_FS=m | ||
1206 | # CONFIG_BEFS_FS is not set | ||
1207 | # CONFIG_BFS_FS is not set | ||
1208 | # CONFIG_EFS_FS is not set | ||
1209 | CONFIG_CRAMFS=y | ||
1210 | # CONFIG_VXFS_FS is not set | ||
1211 | # CONFIG_HPFS_FS is not set | ||
1212 | # CONFIG_QNX4FS_FS is not set | ||
1213 | # CONFIG_SYSV_FS is not set | ||
1214 | # CONFIG_UFS_FS is not set | ||
1215 | |||
1216 | # | ||
1217 | # Network File Systems | ||
1218 | # | ||
1219 | CONFIG_NFS_FS=y | ||
1220 | CONFIG_NFS_V3=y | ||
1221 | CONFIG_NFS_V3_ACL=y | ||
1222 | CONFIG_NFS_V4=y | ||
1223 | # CONFIG_NFS_DIRECTIO is not set | ||
1224 | CONFIG_NFSD=y | ||
1225 | CONFIG_NFSD_V2_ACL=y | ||
1226 | CONFIG_NFSD_V3=y | ||
1227 | CONFIG_NFSD_V3_ACL=y | ||
1228 | CONFIG_NFSD_V4=y | ||
1229 | CONFIG_NFSD_TCP=y | ||
1230 | CONFIG_LOCKD=y | ||
1231 | CONFIG_LOCKD_V4=y | ||
1232 | CONFIG_EXPORTFS=y | ||
1233 | CONFIG_NFS_ACL_SUPPORT=y | ||
1234 | CONFIG_NFS_COMMON=y | ||
1235 | CONFIG_SUNRPC=y | ||
1236 | CONFIG_SUNRPC_GSS=y | ||
1237 | CONFIG_RPCSEC_GSS_KRB5=y | ||
1238 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
1239 | # CONFIG_SMB_FS is not set | ||
1240 | CONFIG_CIFS=m | ||
1241 | # CONFIG_CIFS_STATS is not set | ||
1242 | # CONFIG_CIFS_XATTR is not set | ||
1243 | # CONFIG_CIFS_EXPERIMENTAL is not set | ||
1244 | # CONFIG_NCP_FS is not set | ||
1245 | # CONFIG_CODA_FS is not set | ||
1246 | # CONFIG_AFS_FS is not set | ||
1247 | # CONFIG_9P_FS is not set | ||
1248 | |||
1249 | # | ||
1250 | # Partition Types | ||
1251 | # | ||
1252 | CONFIG_PARTITION_ADVANCED=y | ||
1253 | # CONFIG_ACORN_PARTITION is not set | ||
1254 | # CONFIG_OSF_PARTITION is not set | ||
1255 | # CONFIG_AMIGA_PARTITION is not set | ||
1256 | # CONFIG_ATARI_PARTITION is not set | ||
1257 | CONFIG_MAC_PARTITION=y | ||
1258 | CONFIG_MSDOS_PARTITION=y | ||
1259 | # CONFIG_BSD_DISKLABEL is not set | ||
1260 | # CONFIG_MINIX_SUBPARTITION is not set | ||
1261 | # CONFIG_SOLARIS_X86_PARTITION is not set | ||
1262 | # CONFIG_UNIXWARE_DISKLABEL is not set | ||
1263 | # CONFIG_LDM_PARTITION is not set | ||
1264 | # CONFIG_SGI_PARTITION is not set | ||
1265 | # CONFIG_ULTRIX_PARTITION is not set | ||
1266 | # CONFIG_SUN_PARTITION is not set | ||
1267 | # CONFIG_EFI_PARTITION is not set | ||
1268 | |||
1269 | # | ||
1270 | # Native Language Support | ||
1271 | # | ||
1272 | CONFIG_NLS=y | ||
1273 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
1274 | CONFIG_NLS_CODEPAGE_437=y | ||
1275 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
1276 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
1277 | # CONFIG_NLS_CODEPAGE_850 is not set | ||
1278 | # CONFIG_NLS_CODEPAGE_852 is not set | ||
1279 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
1280 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
1281 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
1282 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
1283 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
1284 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
1285 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
1286 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
1287 | # CONFIG_NLS_CODEPAGE_866 is not set | ||
1288 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
1289 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
1290 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
1291 | # CONFIG_NLS_CODEPAGE_932 is not set | ||
1292 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
1293 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
1294 | # CONFIG_NLS_ISO8859_8 is not set | ||
1295 | CONFIG_NLS_CODEPAGE_1250=y | ||
1296 | CONFIG_NLS_CODEPAGE_1251=y | ||
1297 | CONFIG_NLS_ASCII=y | ||
1298 | CONFIG_NLS_ISO8859_1=y | ||
1299 | # CONFIG_NLS_ISO8859_2 is not set | ||
1300 | # CONFIG_NLS_ISO8859_3 is not set | ||
1301 | # CONFIG_NLS_ISO8859_4 is not set | ||
1302 | # CONFIG_NLS_ISO8859_5 is not set | ||
1303 | # CONFIG_NLS_ISO8859_6 is not set | ||
1304 | # CONFIG_NLS_ISO8859_7 is not set | ||
1305 | # CONFIG_NLS_ISO8859_9 is not set | ||
1306 | # CONFIG_NLS_ISO8859_13 is not set | ||
1307 | # CONFIG_NLS_ISO8859_14 is not set | ||
1308 | CONFIG_NLS_ISO8859_15=y | ||
1309 | # CONFIG_NLS_KOI8_R is not set | ||
1310 | # CONFIG_NLS_KOI8_U is not set | ||
1311 | CONFIG_NLS_UTF8=y | ||
1312 | |||
1313 | # | ||
1314 | # Profiling support | ||
1315 | # | ||
1316 | CONFIG_PROFILING=y | ||
1317 | CONFIG_OPROFILE=y | ||
1318 | |||
1319 | # | ||
1320 | # Kernel hacking | ||
1321 | # | ||
1322 | # CONFIG_PRINTK_TIME is not set | ||
1323 | CONFIG_DEBUG_KERNEL=y | ||
1324 | CONFIG_MAGIC_SYSRQ=y | ||
1325 | CONFIG_LOG_BUF_SHIFT=17 | ||
1326 | CONFIG_DETECT_SOFTLOCKUP=y | ||
1327 | # CONFIG_SCHEDSTATS is not set | ||
1328 | # CONFIG_DEBUG_SLAB is not set | ||
1329 | # CONFIG_DEBUG_SPINLOCK is not set | ||
1330 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
1331 | # CONFIG_DEBUG_KOBJECT is not set | ||
1332 | # CONFIG_DEBUG_INFO is not set | ||
1333 | CONFIG_DEBUG_FS=y | ||
1334 | # CONFIG_DEBUG_STACKOVERFLOW is not set | ||
1335 | # CONFIG_KPROBES is not set | ||
1336 | # CONFIG_DEBUG_STACK_USAGE is not set | ||
1337 | # CONFIG_DEBUGGER is not set | ||
1338 | # CONFIG_PPCDBG is not set | ||
1339 | CONFIG_IRQSTACKS=y | ||
1340 | |||
1341 | # | ||
1342 | # Security options | ||
1343 | # | ||
1344 | # CONFIG_KEYS is not set | ||
1345 | # CONFIG_SECURITY is not set | ||
1346 | |||
1347 | # | ||
1348 | # Cryptographic options | ||
1349 | # | ||
1350 | CONFIG_CRYPTO=y | ||
1351 | CONFIG_CRYPTO_HMAC=y | ||
1352 | CONFIG_CRYPTO_NULL=m | ||
1353 | CONFIG_CRYPTO_MD4=m | ||
1354 | CONFIG_CRYPTO_MD5=y | ||
1355 | CONFIG_CRYPTO_SHA1=m | ||
1356 | CONFIG_CRYPTO_SHA256=m | ||
1357 | CONFIG_CRYPTO_SHA512=m | ||
1358 | CONFIG_CRYPTO_WP512=m | ||
1359 | # CONFIG_CRYPTO_TGR192 is not set | ||
1360 | CONFIG_CRYPTO_DES=y | ||
1361 | CONFIG_CRYPTO_BLOWFISH=m | ||
1362 | CONFIG_CRYPTO_TWOFISH=m | ||
1363 | CONFIG_CRYPTO_SERPENT=m | ||
1364 | CONFIG_CRYPTO_AES=m | ||
1365 | CONFIG_CRYPTO_CAST5=m | ||
1366 | CONFIG_CRYPTO_CAST6=m | ||
1367 | CONFIG_CRYPTO_TEA=m | ||
1368 | CONFIG_CRYPTO_ARC4=m | ||
1369 | CONFIG_CRYPTO_KHAZAD=m | ||
1370 | CONFIG_CRYPTO_ANUBIS=m | ||
1371 | CONFIG_CRYPTO_DEFLATE=m | ||
1372 | CONFIG_CRYPTO_MICHAEL_MIC=m | ||
1373 | CONFIG_CRYPTO_CRC32C=m | ||
1374 | CONFIG_CRYPTO_TEST=m | ||
1375 | |||
1376 | # | ||
1377 | # Hardware crypto devices | ||
1378 | # | ||
1379 | |||
1380 | # | ||
1381 | # Library routines | ||
1382 | # | ||
1383 | CONFIG_CRC_CCITT=m | ||
1384 | # CONFIG_CRC16 is not set | ||
1385 | CONFIG_CRC32=y | ||
1386 | CONFIG_LIBCRC32C=m | ||
1387 | CONFIG_ZLIB_INFLATE=y | ||
1388 | CONFIG_ZLIB_DEFLATE=m | ||
1389 | CONFIG_TEXTSEARCH=y | ||
1390 | CONFIG_TEXTSEARCH_KMP=m | ||
1391 | CONFIG_TEXTSEARCH_BM=m | ||
1392 | CONFIG_TEXTSEARCH_FSM=m | ||
diff --git a/arch/powerpc/configs/iseries_defconfig b/arch/powerpc/configs/iseries_defconfig new file mode 100644 index 000000000000..62e92c7e9e27 --- /dev/null +++ b/arch/powerpc/configs/iseries_defconfig | |||
@@ -0,0 +1,998 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.14-rc4 | ||
4 | # Thu Oct 20 08:30:56 2005 | ||
5 | # | ||
6 | CONFIG_64BIT=y | ||
7 | CONFIG_MMU=y | ||
8 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | ||
9 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
10 | CONFIG_GENERIC_ISA_DMA=y | ||
11 | CONFIG_EARLY_PRINTK=y | ||
12 | CONFIG_COMPAT=y | ||
13 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | ||
14 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | ||
15 | CONFIG_FORCE_MAX_ZONEORDER=13 | ||
16 | |||
17 | # | ||
18 | # Code maturity level options | ||
19 | # | ||
20 | CONFIG_EXPERIMENTAL=y | ||
21 | CONFIG_CLEAN_COMPILE=y | ||
22 | CONFIG_LOCK_KERNEL=y | ||
23 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
24 | |||
25 | # | ||
26 | # General setup | ||
27 | # | ||
28 | CONFIG_LOCALVERSION="" | ||
29 | CONFIG_LOCALVERSION_AUTO=y | ||
30 | CONFIG_SWAP=y | ||
31 | CONFIG_SYSVIPC=y | ||
32 | CONFIG_POSIX_MQUEUE=y | ||
33 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
34 | CONFIG_SYSCTL=y | ||
35 | CONFIG_AUDIT=y | ||
36 | CONFIG_AUDITSYSCALL=y | ||
37 | CONFIG_HOTPLUG=y | ||
38 | CONFIG_KOBJECT_UEVENT=y | ||
39 | CONFIG_IKCONFIG=y | ||
40 | CONFIG_IKCONFIG_PROC=y | ||
41 | # CONFIG_CPUSETS is not set | ||
42 | CONFIG_INITRAMFS_SOURCE="" | ||
43 | # CONFIG_EMBEDDED is not set | ||
44 | CONFIG_KALLSYMS=y | ||
45 | # CONFIG_KALLSYMS_ALL is not set | ||
46 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
47 | CONFIG_PRINTK=y | ||
48 | CONFIG_BUG=y | ||
49 | CONFIG_BASE_FULL=y | ||
50 | CONFIG_FUTEX=y | ||
51 | CONFIG_EPOLL=y | ||
52 | CONFIG_SHMEM=y | ||
53 | CONFIG_CC_ALIGN_FUNCTIONS=0 | ||
54 | CONFIG_CC_ALIGN_LABELS=0 | ||
55 | CONFIG_CC_ALIGN_LOOPS=0 | ||
56 | CONFIG_CC_ALIGN_JUMPS=0 | ||
57 | # CONFIG_TINY_SHMEM is not set | ||
58 | CONFIG_BASE_SMALL=0 | ||
59 | |||
60 | # | ||
61 | # Loadable module support | ||
62 | # | ||
63 | CONFIG_MODULES=y | ||
64 | CONFIG_MODULE_UNLOAD=y | ||
65 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
66 | CONFIG_OBSOLETE_MODPARM=y | ||
67 | CONFIG_MODVERSIONS=y | ||
68 | CONFIG_MODULE_SRCVERSION_ALL=y | ||
69 | CONFIG_KMOD=y | ||
70 | CONFIG_STOP_MACHINE=y | ||
71 | CONFIG_SYSVIPC_COMPAT=y | ||
72 | |||
73 | # | ||
74 | # Platform support | ||
75 | # | ||
76 | CONFIG_PPC_ISERIES=y | ||
77 | # CONFIG_PPC_MULTIPLATFORM is not set | ||
78 | CONFIG_PPC=y | ||
79 | CONFIG_PPC64=y | ||
80 | CONFIG_IBMVIO=y | ||
81 | # CONFIG_POWER4_ONLY is not set | ||
82 | CONFIG_IOMMU_VMERGE=y | ||
83 | CONFIG_SMP=y | ||
84 | CONFIG_NR_CPUS=32 | ||
85 | CONFIG_ARCH_SELECT_MEMORY_MODEL=y | ||
86 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
87 | CONFIG_SELECT_MEMORY_MODEL=y | ||
88 | CONFIG_FLATMEM_MANUAL=y | ||
89 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
90 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
91 | CONFIG_FLATMEM=y | ||
92 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
93 | # CONFIG_SPARSEMEM_STATIC is not set | ||
94 | # CONFIG_NUMA is not set | ||
95 | # CONFIG_SCHED_SMT is not set | ||
96 | CONFIG_PREEMPT_NONE=y | ||
97 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
98 | # CONFIG_PREEMPT is not set | ||
99 | # CONFIG_PREEMPT_BKL is not set | ||
100 | # CONFIG_HZ_100 is not set | ||
101 | CONFIG_HZ_250=y | ||
102 | # CONFIG_HZ_1000 is not set | ||
103 | CONFIG_HZ=250 | ||
104 | CONFIG_GENERIC_HARDIRQS=y | ||
105 | CONFIG_LPARCFG=y | ||
106 | CONFIG_SECCOMP=y | ||
107 | CONFIG_BINFMT_ELF=y | ||
108 | # CONFIG_BINFMT_MISC is not set | ||
109 | CONFIG_ISA_DMA_API=y | ||
110 | |||
111 | # | ||
112 | # Bus Options | ||
113 | # | ||
114 | CONFIG_PCI=y | ||
115 | CONFIG_PCI_DOMAINS=y | ||
116 | CONFIG_PCI_LEGACY_PROC=y | ||
117 | # CONFIG_PCI_DEBUG is not set | ||
118 | |||
119 | # | ||
120 | # PCCARD (PCMCIA/CardBus) support | ||
121 | # | ||
122 | # CONFIG_PCCARD is not set | ||
123 | |||
124 | # | ||
125 | # PCI Hotplug Support | ||
126 | # | ||
127 | # CONFIG_HOTPLUG_PCI is not set | ||
128 | |||
129 | # | ||
130 | # Networking | ||
131 | # | ||
132 | CONFIG_NET=y | ||
133 | |||
134 | # | ||
135 | # Networking options | ||
136 | # | ||
137 | CONFIG_PACKET=y | ||
138 | # CONFIG_PACKET_MMAP is not set | ||
139 | CONFIG_UNIX=y | ||
140 | CONFIG_XFRM=y | ||
141 | CONFIG_XFRM_USER=m | ||
142 | CONFIG_NET_KEY=m | ||
143 | CONFIG_INET=y | ||
144 | CONFIG_IP_MULTICAST=y | ||
145 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
146 | CONFIG_IP_FIB_HASH=y | ||
147 | # CONFIG_IP_PNP is not set | ||
148 | CONFIG_NET_IPIP=y | ||
149 | # CONFIG_NET_IPGRE is not set | ||
150 | # CONFIG_IP_MROUTE is not set | ||
151 | # CONFIG_ARPD is not set | ||
152 | CONFIG_SYN_COOKIES=y | ||
153 | CONFIG_INET_AH=m | ||
154 | CONFIG_INET_ESP=m | ||
155 | CONFIG_INET_IPCOMP=m | ||
156 | CONFIG_INET_TUNNEL=y | ||
157 | CONFIG_INET_DIAG=y | ||
158 | CONFIG_INET_TCP_DIAG=y | ||
159 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
160 | CONFIG_TCP_CONG_BIC=y | ||
161 | |||
162 | # | ||
163 | # IP: Virtual Server Configuration | ||
164 | # | ||
165 | # CONFIG_IP_VS is not set | ||
166 | # CONFIG_IPV6 is not set | ||
167 | CONFIG_NETFILTER=y | ||
168 | # CONFIG_NETFILTER_DEBUG is not set | ||
169 | # CONFIG_NETFILTER_NETLINK is not set | ||
170 | |||
171 | # | ||
172 | # IP: Netfilter Configuration | ||
173 | # | ||
174 | CONFIG_IP_NF_CONNTRACK=m | ||
175 | CONFIG_IP_NF_CT_ACCT=y | ||
176 | CONFIG_IP_NF_CONNTRACK_MARK=y | ||
177 | CONFIG_IP_NF_CONNTRACK_EVENTS=y | ||
178 | CONFIG_IP_NF_CT_PROTO_SCTP=m | ||
179 | CONFIG_IP_NF_FTP=m | ||
180 | CONFIG_IP_NF_IRC=m | ||
181 | # CONFIG_IP_NF_NETBIOS_NS is not set | ||
182 | CONFIG_IP_NF_TFTP=m | ||
183 | CONFIG_IP_NF_AMANDA=m | ||
184 | # CONFIG_IP_NF_PPTP is not set | ||
185 | CONFIG_IP_NF_QUEUE=m | ||
186 | CONFIG_IP_NF_IPTABLES=m | ||
187 | CONFIG_IP_NF_MATCH_LIMIT=m | ||
188 | CONFIG_IP_NF_MATCH_IPRANGE=m | ||
189 | CONFIG_IP_NF_MATCH_MAC=m | ||
190 | CONFIG_IP_NF_MATCH_PKTTYPE=m | ||
191 | CONFIG_IP_NF_MATCH_MARK=m | ||
192 | CONFIG_IP_NF_MATCH_MULTIPORT=m | ||
193 | CONFIG_IP_NF_MATCH_TOS=m | ||
194 | CONFIG_IP_NF_MATCH_RECENT=m | ||
195 | CONFIG_IP_NF_MATCH_ECN=m | ||
196 | CONFIG_IP_NF_MATCH_DSCP=m | ||
197 | CONFIG_IP_NF_MATCH_AH_ESP=m | ||
198 | CONFIG_IP_NF_MATCH_LENGTH=m | ||
199 | CONFIG_IP_NF_MATCH_TTL=m | ||
200 | CONFIG_IP_NF_MATCH_TCPMSS=m | ||
201 | CONFIG_IP_NF_MATCH_HELPER=m | ||
202 | CONFIG_IP_NF_MATCH_STATE=m | ||
203 | CONFIG_IP_NF_MATCH_CONNTRACK=m | ||
204 | CONFIG_IP_NF_MATCH_OWNER=m | ||
205 | CONFIG_IP_NF_MATCH_ADDRTYPE=m | ||
206 | CONFIG_IP_NF_MATCH_REALM=m | ||
207 | CONFIG_IP_NF_MATCH_SCTP=m | ||
208 | # CONFIG_IP_NF_MATCH_DCCP is not set | ||
209 | CONFIG_IP_NF_MATCH_COMMENT=m | ||
210 | CONFIG_IP_NF_MATCH_CONNMARK=m | ||
211 | CONFIG_IP_NF_MATCH_CONNBYTES=m | ||
212 | CONFIG_IP_NF_MATCH_HASHLIMIT=m | ||
213 | CONFIG_IP_NF_MATCH_STRING=m | ||
214 | CONFIG_IP_NF_FILTER=m | ||
215 | CONFIG_IP_NF_TARGET_REJECT=m | ||
216 | CONFIG_IP_NF_TARGET_LOG=m | ||
217 | CONFIG_IP_NF_TARGET_ULOG=m | ||
218 | CONFIG_IP_NF_TARGET_TCPMSS=m | ||
219 | CONFIG_IP_NF_TARGET_NFQUEUE=m | ||
220 | CONFIG_IP_NF_NAT=m | ||
221 | CONFIG_IP_NF_NAT_NEEDED=y | ||
222 | CONFIG_IP_NF_TARGET_MASQUERADE=m | ||
223 | CONFIG_IP_NF_TARGET_REDIRECT=m | ||
224 | CONFIG_IP_NF_TARGET_NETMAP=m | ||
225 | CONFIG_IP_NF_TARGET_SAME=m | ||
226 | CONFIG_IP_NF_NAT_SNMP_BASIC=m | ||
227 | CONFIG_IP_NF_NAT_IRC=m | ||
228 | CONFIG_IP_NF_NAT_FTP=m | ||
229 | CONFIG_IP_NF_NAT_TFTP=m | ||
230 | CONFIG_IP_NF_NAT_AMANDA=m | ||
231 | CONFIG_IP_NF_MANGLE=m | ||
232 | CONFIG_IP_NF_TARGET_TOS=m | ||
233 | CONFIG_IP_NF_TARGET_ECN=m | ||
234 | CONFIG_IP_NF_TARGET_DSCP=m | ||
235 | CONFIG_IP_NF_TARGET_MARK=m | ||
236 | CONFIG_IP_NF_TARGET_CLASSIFY=m | ||
237 | CONFIG_IP_NF_TARGET_TTL=m | ||
238 | CONFIG_IP_NF_TARGET_CONNMARK=m | ||
239 | CONFIG_IP_NF_TARGET_CLUSTERIP=m | ||
240 | CONFIG_IP_NF_RAW=m | ||
241 | CONFIG_IP_NF_TARGET_NOTRACK=m | ||
242 | CONFIG_IP_NF_ARPTABLES=m | ||
243 | CONFIG_IP_NF_ARPFILTER=m | ||
244 | CONFIG_IP_NF_ARP_MANGLE=m | ||
245 | |||
246 | # | ||
247 | # DCCP Configuration (EXPERIMENTAL) | ||
248 | # | ||
249 | # CONFIG_IP_DCCP is not set | ||
250 | |||
251 | # | ||
252 | # SCTP Configuration (EXPERIMENTAL) | ||
253 | # | ||
254 | # CONFIG_IP_SCTP is not set | ||
255 | # CONFIG_ATM is not set | ||
256 | # CONFIG_BRIDGE is not set | ||
257 | # CONFIG_VLAN_8021Q is not set | ||
258 | # CONFIG_DECNET is not set | ||
259 | CONFIG_LLC=y | ||
260 | # CONFIG_LLC2 is not set | ||
261 | # CONFIG_IPX is not set | ||
262 | # CONFIG_ATALK is not set | ||
263 | # CONFIG_X25 is not set | ||
264 | # CONFIG_LAPB is not set | ||
265 | # CONFIG_NET_DIVERT is not set | ||
266 | # CONFIG_ECONET is not set | ||
267 | # CONFIG_WAN_ROUTER is not set | ||
268 | # CONFIG_NET_SCHED is not set | ||
269 | CONFIG_NET_CLS_ROUTE=y | ||
270 | |||
271 | # | ||
272 | # Network testing | ||
273 | # | ||
274 | # CONFIG_NET_PKTGEN is not set | ||
275 | # CONFIG_HAMRADIO is not set | ||
276 | # CONFIG_IRDA is not set | ||
277 | # CONFIG_BT is not set | ||
278 | # CONFIG_IEEE80211 is not set | ||
279 | |||
280 | # | ||
281 | # Device Drivers | ||
282 | # | ||
283 | |||
284 | # | ||
285 | # Generic Driver Options | ||
286 | # | ||
287 | CONFIG_STANDALONE=y | ||
288 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
289 | CONFIG_FW_LOADER=m | ||
290 | # CONFIG_DEBUG_DRIVER is not set | ||
291 | |||
292 | # | ||
293 | # Connector - unified userspace <-> kernelspace linker | ||
294 | # | ||
295 | # CONFIG_CONNECTOR is not set | ||
296 | |||
297 | # | ||
298 | # Memory Technology Devices (MTD) | ||
299 | # | ||
300 | # CONFIG_MTD is not set | ||
301 | |||
302 | # | ||
303 | # Parallel port support | ||
304 | # | ||
305 | # CONFIG_PARPORT is not set | ||
306 | |||
307 | # | ||
308 | # Plug and Play support | ||
309 | # | ||
310 | |||
311 | # | ||
312 | # Block devices | ||
313 | # | ||
314 | # CONFIG_BLK_DEV_FD is not set | ||
315 | # CONFIG_BLK_CPQ_DA is not set | ||
316 | # CONFIG_BLK_CPQ_CISS_DA is not set | ||
317 | # CONFIG_BLK_DEV_DAC960 is not set | ||
318 | # CONFIG_BLK_DEV_UMEM is not set | ||
319 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
320 | CONFIG_BLK_DEV_LOOP=y | ||
321 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | ||
322 | CONFIG_BLK_DEV_NBD=m | ||
323 | # CONFIG_BLK_DEV_SX8 is not set | ||
324 | CONFIG_BLK_DEV_RAM=y | ||
325 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
326 | CONFIG_BLK_DEV_RAM_SIZE=65536 | ||
327 | CONFIG_BLK_DEV_INITRD=y | ||
328 | # CONFIG_CDROM_PKTCDVD is not set | ||
329 | |||
330 | # | ||
331 | # IO Schedulers | ||
332 | # | ||
333 | CONFIG_IOSCHED_NOOP=y | ||
334 | CONFIG_IOSCHED_AS=y | ||
335 | CONFIG_IOSCHED_DEADLINE=y | ||
336 | CONFIG_IOSCHED_CFQ=y | ||
337 | # CONFIG_ATA_OVER_ETH is not set | ||
338 | |||
339 | # | ||
340 | # ATA/ATAPI/MFM/RLL support | ||
341 | # | ||
342 | # CONFIG_IDE is not set | ||
343 | |||
344 | # | ||
345 | # SCSI device support | ||
346 | # | ||
347 | # CONFIG_RAID_ATTRS is not set | ||
348 | CONFIG_SCSI=y | ||
349 | CONFIG_SCSI_PROC_FS=y | ||
350 | |||
351 | # | ||
352 | # SCSI support type (disk, tape, CD-ROM) | ||
353 | # | ||
354 | CONFIG_BLK_DEV_SD=y | ||
355 | CONFIG_CHR_DEV_ST=y | ||
356 | # CONFIG_CHR_DEV_OSST is not set | ||
357 | CONFIG_BLK_DEV_SR=y | ||
358 | CONFIG_BLK_DEV_SR_VENDOR=y | ||
359 | CONFIG_CHR_DEV_SG=y | ||
360 | # CONFIG_CHR_DEV_SCH is not set | ||
361 | |||
362 | # | ||
363 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
364 | # | ||
365 | CONFIG_SCSI_MULTI_LUN=y | ||
366 | CONFIG_SCSI_CONSTANTS=y | ||
367 | # CONFIG_SCSI_LOGGING is not set | ||
368 | |||
369 | # | ||
370 | # SCSI Transport Attributes | ||
371 | # | ||
372 | CONFIG_SCSI_SPI_ATTRS=y | ||
373 | CONFIG_SCSI_FC_ATTRS=y | ||
374 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
375 | # CONFIG_SCSI_SAS_ATTRS is not set | ||
376 | |||
377 | # | ||
378 | # SCSI low-level drivers | ||
379 | # | ||
380 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | ||
381 | # CONFIG_SCSI_3W_9XXX is not set | ||
382 | # CONFIG_SCSI_ACARD is not set | ||
383 | # CONFIG_SCSI_AACRAID is not set | ||
384 | # CONFIG_SCSI_AIC7XXX is not set | ||
385 | # CONFIG_SCSI_AIC7XXX_OLD is not set | ||
386 | # CONFIG_SCSI_AIC79XX is not set | ||
387 | # CONFIG_MEGARAID_NEWGEN is not set | ||
388 | # CONFIG_MEGARAID_LEGACY is not set | ||
389 | # CONFIG_MEGARAID_SAS is not set | ||
390 | # CONFIG_SCSI_SATA is not set | ||
391 | # CONFIG_SCSI_BUSLOGIC is not set | ||
392 | # CONFIG_SCSI_DMX3191D is not set | ||
393 | # CONFIG_SCSI_EATA is not set | ||
394 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | ||
395 | # CONFIG_SCSI_GDTH is not set | ||
396 | # CONFIG_SCSI_IPS is not set | ||
397 | CONFIG_SCSI_IBMVSCSI=m | ||
398 | # CONFIG_SCSI_INITIO is not set | ||
399 | # CONFIG_SCSI_INIA100 is not set | ||
400 | # CONFIG_SCSI_SYM53C8XX_2 is not set | ||
401 | # CONFIG_SCSI_IPR is not set | ||
402 | # CONFIG_SCSI_QLOGIC_FC is not set | ||
403 | # CONFIG_SCSI_QLOGIC_1280 is not set | ||
404 | CONFIG_SCSI_QLA2XXX=y | ||
405 | # CONFIG_SCSI_QLA21XX is not set | ||
406 | # CONFIG_SCSI_QLA22XX is not set | ||
407 | # CONFIG_SCSI_QLA2300 is not set | ||
408 | # CONFIG_SCSI_QLA2322 is not set | ||
409 | # CONFIG_SCSI_QLA6312 is not set | ||
410 | # CONFIG_SCSI_QLA24XX is not set | ||
411 | # CONFIG_SCSI_LPFC is not set | ||
412 | # CONFIG_SCSI_DC395x is not set | ||
413 | # CONFIG_SCSI_DC390T is not set | ||
414 | # CONFIG_SCSI_DEBUG is not set | ||
415 | |||
416 | # | ||
417 | # Multi-device support (RAID and LVM) | ||
418 | # | ||
419 | CONFIG_MD=y | ||
420 | CONFIG_BLK_DEV_MD=y | ||
421 | CONFIG_MD_LINEAR=y | ||
422 | CONFIG_MD_RAID0=y | ||
423 | CONFIG_MD_RAID1=y | ||
424 | CONFIG_MD_RAID10=m | ||
425 | CONFIG_MD_RAID5=y | ||
426 | CONFIG_MD_RAID6=m | ||
427 | CONFIG_MD_MULTIPATH=m | ||
428 | CONFIG_MD_FAULTY=m | ||
429 | CONFIG_BLK_DEV_DM=y | ||
430 | CONFIG_DM_CRYPT=m | ||
431 | CONFIG_DM_SNAPSHOT=m | ||
432 | CONFIG_DM_MIRROR=m | ||
433 | CONFIG_DM_ZERO=m | ||
434 | # CONFIG_DM_MULTIPATH is not set | ||
435 | |||
436 | # | ||
437 | # Fusion MPT device support | ||
438 | # | ||
439 | # CONFIG_FUSION is not set | ||
440 | # CONFIG_FUSION_SPI is not set | ||
441 | # CONFIG_FUSION_FC is not set | ||
442 | # CONFIG_FUSION_SAS is not set | ||
443 | |||
444 | # | ||
445 | # IEEE 1394 (FireWire) support | ||
446 | # | ||
447 | # CONFIG_IEEE1394 is not set | ||
448 | |||
449 | # | ||
450 | # I2O device support | ||
451 | # | ||
452 | # CONFIG_I2O is not set | ||
453 | |||
454 | # | ||
455 | # Macintosh device drivers | ||
456 | # | ||
457 | |||
458 | # | ||
459 | # Network device support | ||
460 | # | ||
461 | CONFIG_NETDEVICES=y | ||
462 | CONFIG_DUMMY=m | ||
463 | CONFIG_BONDING=m | ||
464 | # CONFIG_EQUALIZER is not set | ||
465 | CONFIG_TUN=m | ||
466 | |||
467 | # | ||
468 | # ARCnet devices | ||
469 | # | ||
470 | # CONFIG_ARCNET is not set | ||
471 | |||
472 | # | ||
473 | # PHY device support | ||
474 | # | ||
475 | # CONFIG_PHYLIB is not set | ||
476 | |||
477 | # | ||
478 | # Ethernet (10 or 100Mbit) | ||
479 | # | ||
480 | CONFIG_NET_ETHERNET=y | ||
481 | CONFIG_MII=y | ||
482 | # CONFIG_HAPPYMEAL is not set | ||
483 | # CONFIG_SUNGEM is not set | ||
484 | # CONFIG_CASSINI is not set | ||
485 | # CONFIG_NET_VENDOR_3COM is not set | ||
486 | |||
487 | # | ||
488 | # Tulip family network device support | ||
489 | # | ||
490 | # CONFIG_NET_TULIP is not set | ||
491 | # CONFIG_HP100 is not set | ||
492 | CONFIG_NET_PCI=y | ||
493 | CONFIG_PCNET32=y | ||
494 | # CONFIG_AMD8111_ETH is not set | ||
495 | # CONFIG_ADAPTEC_STARFIRE is not set | ||
496 | # CONFIG_B44 is not set | ||
497 | # CONFIG_FORCEDETH is not set | ||
498 | # CONFIG_DGRS is not set | ||
499 | # CONFIG_EEPRO100 is not set | ||
500 | CONFIG_E100=y | ||
501 | # CONFIG_FEALNX is not set | ||
502 | # CONFIG_NATSEMI is not set | ||
503 | # CONFIG_NE2K_PCI is not set | ||
504 | # CONFIG_8139CP is not set | ||
505 | # CONFIG_8139TOO is not set | ||
506 | # CONFIG_SIS900 is not set | ||
507 | # CONFIG_EPIC100 is not set | ||
508 | # CONFIG_SUNDANCE is not set | ||
509 | # CONFIG_VIA_RHINE is not set | ||
510 | |||
511 | # | ||
512 | # Ethernet (1000 Mbit) | ||
513 | # | ||
514 | CONFIG_ACENIC=m | ||
515 | # CONFIG_ACENIC_OMIT_TIGON_I is not set | ||
516 | # CONFIG_DL2K is not set | ||
517 | CONFIG_E1000=m | ||
518 | # CONFIG_E1000_NAPI is not set | ||
519 | # CONFIG_NS83820 is not set | ||
520 | # CONFIG_HAMACHI is not set | ||
521 | # CONFIG_YELLOWFIN is not set | ||
522 | # CONFIG_R8169 is not set | ||
523 | # CONFIG_SIS190 is not set | ||
524 | # CONFIG_SKGE is not set | ||
525 | # CONFIG_SK98LIN is not set | ||
526 | # CONFIG_VIA_VELOCITY is not set | ||
527 | # CONFIG_TIGON3 is not set | ||
528 | # CONFIG_BNX2 is not set | ||
529 | |||
530 | # | ||
531 | # Ethernet (10000 Mbit) | ||
532 | # | ||
533 | # CONFIG_CHELSIO_T1 is not set | ||
534 | # CONFIG_IXGB is not set | ||
535 | # CONFIG_S2IO is not set | ||
536 | |||
537 | # | ||
538 | # Token Ring devices | ||
539 | # | ||
540 | CONFIG_TR=y | ||
541 | CONFIG_IBMOL=y | ||
542 | # CONFIG_3C359 is not set | ||
543 | # CONFIG_TMS380TR is not set | ||
544 | |||
545 | # | ||
546 | # Wireless LAN (non-hamradio) | ||
547 | # | ||
548 | # CONFIG_NET_RADIO is not set | ||
549 | |||
550 | # | ||
551 | # Wan interfaces | ||
552 | # | ||
553 | # CONFIG_WAN is not set | ||
554 | CONFIG_ISERIES_VETH=y | ||
555 | # CONFIG_FDDI is not set | ||
556 | # CONFIG_HIPPI is not set | ||
557 | CONFIG_PPP=m | ||
558 | # CONFIG_PPP_MULTILINK is not set | ||
559 | # CONFIG_PPP_FILTER is not set | ||
560 | CONFIG_PPP_ASYNC=m | ||
561 | CONFIG_PPP_SYNC_TTY=m | ||
562 | CONFIG_PPP_DEFLATE=m | ||
563 | CONFIG_PPP_BSDCOMP=m | ||
564 | CONFIG_PPPOE=m | ||
565 | # CONFIG_SLIP is not set | ||
566 | # CONFIG_NET_FC is not set | ||
567 | # CONFIG_SHAPER is not set | ||
568 | CONFIG_NETCONSOLE=y | ||
569 | CONFIG_NETPOLL=y | ||
570 | CONFIG_NETPOLL_RX=y | ||
571 | CONFIG_NETPOLL_TRAP=y | ||
572 | CONFIG_NET_POLL_CONTROLLER=y | ||
573 | |||
574 | # | ||
575 | # ISDN subsystem | ||
576 | # | ||
577 | # CONFIG_ISDN is not set | ||
578 | |||
579 | # | ||
580 | # Telephony Support | ||
581 | # | ||
582 | # CONFIG_PHONE is not set | ||
583 | |||
584 | # | ||
585 | # Input device support | ||
586 | # | ||
587 | CONFIG_INPUT=y | ||
588 | |||
589 | # | ||
590 | # Userland interfaces | ||
591 | # | ||
592 | CONFIG_INPUT_MOUSEDEV=y | ||
593 | # CONFIG_INPUT_MOUSEDEV_PSAUX is not set | ||
594 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | ||
595 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | ||
596 | # CONFIG_INPUT_JOYDEV is not set | ||
597 | # CONFIG_INPUT_TSDEV is not set | ||
598 | # CONFIG_INPUT_EVDEV is not set | ||
599 | # CONFIG_INPUT_EVBUG is not set | ||
600 | |||
601 | # | ||
602 | # Input Device Drivers | ||
603 | # | ||
604 | # CONFIG_INPUT_KEYBOARD is not set | ||
605 | # CONFIG_INPUT_MOUSE is not set | ||
606 | # CONFIG_INPUT_JOYSTICK is not set | ||
607 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
608 | # CONFIG_INPUT_MISC is not set | ||
609 | |||
610 | # | ||
611 | # Hardware I/O ports | ||
612 | # | ||
613 | # CONFIG_SERIO is not set | ||
614 | # CONFIG_GAMEPORT is not set | ||
615 | |||
616 | # | ||
617 | # Character devices | ||
618 | # | ||
619 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
620 | |||
621 | # | ||
622 | # Serial drivers | ||
623 | # | ||
624 | # CONFIG_SERIAL_8250 is not set | ||
625 | |||
626 | # | ||
627 | # Non-8250 serial port support | ||
628 | # | ||
629 | CONFIG_SERIAL_CORE=m | ||
630 | CONFIG_SERIAL_ICOM=m | ||
631 | # CONFIG_SERIAL_JSM is not set | ||
632 | CONFIG_UNIX98_PTYS=y | ||
633 | CONFIG_LEGACY_PTYS=y | ||
634 | CONFIG_LEGACY_PTY_COUNT=256 | ||
635 | |||
636 | # | ||
637 | # IPMI | ||
638 | # | ||
639 | # CONFIG_IPMI_HANDLER is not set | ||
640 | |||
641 | # | ||
642 | # Watchdog Cards | ||
643 | # | ||
644 | # CONFIG_WATCHDOG is not set | ||
645 | # CONFIG_RTC is not set | ||
646 | # CONFIG_DTLK is not set | ||
647 | # CONFIG_R3964 is not set | ||
648 | # CONFIG_APPLICOM is not set | ||
649 | |||
650 | # | ||
651 | # Ftape, the floppy tape device driver | ||
652 | # | ||
653 | # CONFIG_AGP is not set | ||
654 | # CONFIG_DRM is not set | ||
655 | CONFIG_RAW_DRIVER=y | ||
656 | CONFIG_MAX_RAW_DEVS=256 | ||
657 | # CONFIG_HANGCHECK_TIMER is not set | ||
658 | |||
659 | # | ||
660 | # TPM devices | ||
661 | # | ||
662 | # CONFIG_TCG_TPM is not set | ||
663 | |||
664 | # | ||
665 | # I2C support | ||
666 | # | ||
667 | # CONFIG_I2C is not set | ||
668 | |||
669 | # | ||
670 | # Dallas's 1-wire bus | ||
671 | # | ||
672 | # CONFIG_W1 is not set | ||
673 | |||
674 | # | ||
675 | # Hardware Monitoring support | ||
676 | # | ||
677 | # CONFIG_HWMON is not set | ||
678 | # CONFIG_HWMON_VID is not set | ||
679 | |||
680 | # | ||
681 | # Misc devices | ||
682 | # | ||
683 | |||
684 | # | ||
685 | # Multimedia Capabilities Port drivers | ||
686 | # | ||
687 | |||
688 | # | ||
689 | # Multimedia devices | ||
690 | # | ||
691 | # CONFIG_VIDEO_DEV is not set | ||
692 | |||
693 | # | ||
694 | # Digital Video Broadcasting Devices | ||
695 | # | ||
696 | # CONFIG_DVB is not set | ||
697 | |||
698 | # | ||
699 | # Graphics support | ||
700 | # | ||
701 | # CONFIG_FB is not set | ||
702 | |||
703 | # | ||
704 | # Sound | ||
705 | # | ||
706 | # CONFIG_SOUND is not set | ||
707 | |||
708 | # | ||
709 | # USB support | ||
710 | # | ||
711 | CONFIG_USB_ARCH_HAS_HCD=y | ||
712 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
713 | # CONFIG_USB is not set | ||
714 | |||
715 | # | ||
716 | # USB Gadget Support | ||
717 | # | ||
718 | # CONFIG_USB_GADGET is not set | ||
719 | |||
720 | # | ||
721 | # MMC/SD Card support | ||
722 | # | ||
723 | # CONFIG_MMC is not set | ||
724 | |||
725 | # | ||
726 | # InfiniBand support | ||
727 | # | ||
728 | # CONFIG_INFINIBAND is not set | ||
729 | |||
730 | # | ||
731 | # SN Devices | ||
732 | # | ||
733 | |||
734 | # | ||
735 | # File systems | ||
736 | # | ||
737 | CONFIG_EXT2_FS=y | ||
738 | CONFIG_EXT2_FS_XATTR=y | ||
739 | CONFIG_EXT2_FS_POSIX_ACL=y | ||
740 | CONFIG_EXT2_FS_SECURITY=y | ||
741 | CONFIG_EXT2_FS_XIP=y | ||
742 | CONFIG_FS_XIP=y | ||
743 | CONFIG_EXT3_FS=y | ||
744 | CONFIG_EXT3_FS_XATTR=y | ||
745 | CONFIG_EXT3_FS_POSIX_ACL=y | ||
746 | CONFIG_EXT3_FS_SECURITY=y | ||
747 | CONFIG_JBD=y | ||
748 | # CONFIG_JBD_DEBUG is not set | ||
749 | CONFIG_FS_MBCACHE=y | ||
750 | CONFIG_REISERFS_FS=y | ||
751 | # CONFIG_REISERFS_CHECK is not set | ||
752 | # CONFIG_REISERFS_PROC_INFO is not set | ||
753 | CONFIG_REISERFS_FS_XATTR=y | ||
754 | CONFIG_REISERFS_FS_POSIX_ACL=y | ||
755 | CONFIG_REISERFS_FS_SECURITY=y | ||
756 | CONFIG_JFS_FS=m | ||
757 | CONFIG_JFS_POSIX_ACL=y | ||
758 | CONFIG_JFS_SECURITY=y | ||
759 | # CONFIG_JFS_DEBUG is not set | ||
760 | # CONFIG_JFS_STATISTICS is not set | ||
761 | CONFIG_FS_POSIX_ACL=y | ||
762 | CONFIG_XFS_FS=m | ||
763 | CONFIG_XFS_EXPORT=y | ||
764 | # CONFIG_XFS_QUOTA is not set | ||
765 | CONFIG_XFS_SECURITY=y | ||
766 | CONFIG_XFS_POSIX_ACL=y | ||
767 | # CONFIG_XFS_RT is not set | ||
768 | # CONFIG_MINIX_FS is not set | ||
769 | # CONFIG_ROMFS_FS is not set | ||
770 | CONFIG_INOTIFY=y | ||
771 | # CONFIG_QUOTA is not set | ||
772 | CONFIG_DNOTIFY=y | ||
773 | CONFIG_AUTOFS_FS=m | ||
774 | # CONFIG_AUTOFS4_FS is not set | ||
775 | # CONFIG_FUSE_FS is not set | ||
776 | |||
777 | # | ||
778 | # CD-ROM/DVD Filesystems | ||
779 | # | ||
780 | CONFIG_ISO9660_FS=y | ||
781 | CONFIG_JOLIET=y | ||
782 | CONFIG_ZISOFS=y | ||
783 | CONFIG_ZISOFS_FS=y | ||
784 | CONFIG_UDF_FS=m | ||
785 | CONFIG_UDF_NLS=y | ||
786 | |||
787 | # | ||
788 | # DOS/FAT/NT Filesystems | ||
789 | # | ||
790 | CONFIG_FAT_FS=y | ||
791 | CONFIG_MSDOS_FS=y | ||
792 | CONFIG_VFAT_FS=y | ||
793 | CONFIG_FAT_DEFAULT_CODEPAGE=437 | ||
794 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | ||
795 | # CONFIG_NTFS_FS is not set | ||
796 | |||
797 | # | ||
798 | # Pseudo filesystems | ||
799 | # | ||
800 | CONFIG_PROC_FS=y | ||
801 | CONFIG_PROC_KCORE=y | ||
802 | CONFIG_SYSFS=y | ||
803 | CONFIG_TMPFS=y | ||
804 | # CONFIG_HUGETLBFS is not set | ||
805 | # CONFIG_HUGETLB_PAGE is not set | ||
806 | CONFIG_RAMFS=y | ||
807 | # CONFIG_RELAYFS_FS is not set | ||
808 | |||
809 | # | ||
810 | # Miscellaneous filesystems | ||
811 | # | ||
812 | # CONFIG_ADFS_FS is not set | ||
813 | # CONFIG_AFFS_FS is not set | ||
814 | # CONFIG_HFS_FS is not set | ||
815 | # CONFIG_HFSPLUS_FS is not set | ||
816 | # CONFIG_BEFS_FS is not set | ||
817 | # CONFIG_BFS_FS is not set | ||
818 | # CONFIG_EFS_FS is not set | ||
819 | CONFIG_CRAMFS=y | ||
820 | # CONFIG_VXFS_FS is not set | ||
821 | # CONFIG_HPFS_FS is not set | ||
822 | # CONFIG_QNX4FS_FS is not set | ||
823 | # CONFIG_SYSV_FS is not set | ||
824 | # CONFIG_UFS_FS is not set | ||
825 | |||
826 | # | ||
827 | # Network File Systems | ||
828 | # | ||
829 | CONFIG_NFS_FS=y | ||
830 | CONFIG_NFS_V3=y | ||
831 | CONFIG_NFS_V3_ACL=y | ||
832 | CONFIG_NFS_V4=y | ||
833 | # CONFIG_NFS_DIRECTIO is not set | ||
834 | CONFIG_NFSD=m | ||
835 | CONFIG_NFSD_V2_ACL=y | ||
836 | CONFIG_NFSD_V3=y | ||
837 | CONFIG_NFSD_V3_ACL=y | ||
838 | CONFIG_NFSD_V4=y | ||
839 | CONFIG_NFSD_TCP=y | ||
840 | CONFIG_LOCKD=y | ||
841 | CONFIG_LOCKD_V4=y | ||
842 | CONFIG_EXPORTFS=m | ||
843 | CONFIG_NFS_ACL_SUPPORT=y | ||
844 | CONFIG_NFS_COMMON=y | ||
845 | CONFIG_SUNRPC=y | ||
846 | CONFIG_SUNRPC_GSS=y | ||
847 | CONFIG_RPCSEC_GSS_KRB5=y | ||
848 | CONFIG_RPCSEC_GSS_SPKM3=m | ||
849 | # CONFIG_SMB_FS is not set | ||
850 | CONFIG_CIFS=m | ||
851 | # CONFIG_CIFS_STATS is not set | ||
852 | CONFIG_CIFS_XATTR=y | ||
853 | CONFIG_CIFS_POSIX=y | ||
854 | # CONFIG_CIFS_EXPERIMENTAL is not set | ||
855 | # CONFIG_NCP_FS is not set | ||
856 | # CONFIG_CODA_FS is not set | ||
857 | # CONFIG_AFS_FS is not set | ||
858 | # CONFIG_9P_FS is not set | ||
859 | |||
860 | # | ||
861 | # Partition Types | ||
862 | # | ||
863 | # CONFIG_PARTITION_ADVANCED is not set | ||
864 | CONFIG_MSDOS_PARTITION=y | ||
865 | |||
866 | # | ||
867 | # Native Language Support | ||
868 | # | ||
869 | CONFIG_NLS=y | ||
870 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
871 | CONFIG_NLS_CODEPAGE_437=y | ||
872 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
873 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
874 | # CONFIG_NLS_CODEPAGE_850 is not set | ||
875 | # CONFIG_NLS_CODEPAGE_852 is not set | ||
876 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
877 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
878 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
879 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
880 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
881 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
882 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
883 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
884 | # CONFIG_NLS_CODEPAGE_866 is not set | ||
885 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
886 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
887 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
888 | # CONFIG_NLS_CODEPAGE_932 is not set | ||
889 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
890 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
891 | # CONFIG_NLS_ISO8859_8 is not set | ||
892 | # CONFIG_NLS_CODEPAGE_1250 is not set | ||
893 | # CONFIG_NLS_CODEPAGE_1251 is not set | ||
894 | CONFIG_NLS_ASCII=y | ||
895 | CONFIG_NLS_ISO8859_1=y | ||
896 | # CONFIG_NLS_ISO8859_2 is not set | ||
897 | # CONFIG_NLS_ISO8859_3 is not set | ||
898 | # CONFIG_NLS_ISO8859_4 is not set | ||
899 | # CONFIG_NLS_ISO8859_5 is not set | ||
900 | # CONFIG_NLS_ISO8859_6 is not set | ||
901 | # CONFIG_NLS_ISO8859_7 is not set | ||
902 | # CONFIG_NLS_ISO8859_9 is not set | ||
903 | # CONFIG_NLS_ISO8859_13 is not set | ||
904 | # CONFIG_NLS_ISO8859_14 is not set | ||
905 | # CONFIG_NLS_ISO8859_15 is not set | ||
906 | # CONFIG_NLS_KOI8_R is not set | ||
907 | # CONFIG_NLS_KOI8_U is not set | ||
908 | # CONFIG_NLS_UTF8 is not set | ||
909 | |||
910 | # | ||
911 | # iSeries device drivers | ||
912 | # | ||
913 | CONFIG_VIOCONS=y | ||
914 | CONFIG_VIODASD=y | ||
915 | CONFIG_VIOCD=m | ||
916 | CONFIG_VIOTAPE=m | ||
917 | CONFIG_VIOPATH=y | ||
918 | |||
919 | # | ||
920 | # Profiling support | ||
921 | # | ||
922 | CONFIG_PROFILING=y | ||
923 | CONFIG_OPROFILE=y | ||
924 | |||
925 | # | ||
926 | # Kernel hacking | ||
927 | # | ||
928 | # CONFIG_PRINTK_TIME is not set | ||
929 | CONFIG_DEBUG_KERNEL=y | ||
930 | CONFIG_MAGIC_SYSRQ=y | ||
931 | CONFIG_LOG_BUF_SHIFT=17 | ||
932 | CONFIG_DETECT_SOFTLOCKUP=y | ||
933 | # CONFIG_SCHEDSTATS is not set | ||
934 | # CONFIG_DEBUG_SLAB is not set | ||
935 | # CONFIG_DEBUG_SPINLOCK is not set | ||
936 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
937 | # CONFIG_DEBUG_KOBJECT is not set | ||
938 | # CONFIG_DEBUG_INFO is not set | ||
939 | CONFIG_DEBUG_FS=y | ||
940 | CONFIG_DEBUG_STACKOVERFLOW=y | ||
941 | # CONFIG_KPROBES is not set | ||
942 | CONFIG_DEBUG_STACK_USAGE=y | ||
943 | # CONFIG_DEBUGGER is not set | ||
944 | # CONFIG_PPCDBG is not set | ||
945 | CONFIG_IRQSTACKS=y | ||
946 | |||
947 | # | ||
948 | # Security options | ||
949 | # | ||
950 | # CONFIG_KEYS is not set | ||
951 | # CONFIG_SECURITY is not set | ||
952 | |||
953 | # | ||
954 | # Cryptographic options | ||
955 | # | ||
956 | CONFIG_CRYPTO=y | ||
957 | CONFIG_CRYPTO_HMAC=y | ||
958 | CONFIG_CRYPTO_NULL=m | ||
959 | CONFIG_CRYPTO_MD4=m | ||
960 | CONFIG_CRYPTO_MD5=y | ||
961 | CONFIG_CRYPTO_SHA1=m | ||
962 | CONFIG_CRYPTO_SHA256=m | ||
963 | CONFIG_CRYPTO_SHA512=m | ||
964 | CONFIG_CRYPTO_WP512=m | ||
965 | CONFIG_CRYPTO_TGR192=m | ||
966 | CONFIG_CRYPTO_DES=y | ||
967 | CONFIG_CRYPTO_BLOWFISH=m | ||
968 | CONFIG_CRYPTO_TWOFISH=m | ||
969 | CONFIG_CRYPTO_SERPENT=m | ||
970 | CONFIG_CRYPTO_AES=m | ||
971 | CONFIG_CRYPTO_CAST5=m | ||
972 | CONFIG_CRYPTO_CAST6=m | ||
973 | CONFIG_CRYPTO_TEA=m | ||
974 | CONFIG_CRYPTO_ARC4=m | ||
975 | CONFIG_CRYPTO_KHAZAD=m | ||
976 | CONFIG_CRYPTO_ANUBIS=m | ||
977 | CONFIG_CRYPTO_DEFLATE=m | ||
978 | CONFIG_CRYPTO_MICHAEL_MIC=m | ||
979 | CONFIG_CRYPTO_CRC32C=m | ||
980 | CONFIG_CRYPTO_TEST=m | ||
981 | |||
982 | # | ||
983 | # Hardware crypto devices | ||
984 | # | ||
985 | |||
986 | # | ||
987 | # Library routines | ||
988 | # | ||
989 | CONFIG_CRC_CCITT=m | ||
990 | # CONFIG_CRC16 is not set | ||
991 | CONFIG_CRC32=y | ||
992 | CONFIG_LIBCRC32C=m | ||
993 | CONFIG_ZLIB_INFLATE=y | ||
994 | CONFIG_ZLIB_DEFLATE=m | ||
995 | CONFIG_TEXTSEARCH=y | ||
996 | CONFIG_TEXTSEARCH_KMP=m | ||
997 | CONFIG_TEXTSEARCH_BM=m | ||
998 | CONFIG_TEXTSEARCH_FSM=m | ||
diff --git a/arch/powerpc/configs/maple_defconfig b/arch/powerpc/configs/maple_defconfig new file mode 100644 index 000000000000..7b480f3d1406 --- /dev/null +++ b/arch/powerpc/configs/maple_defconfig | |||
@@ -0,0 +1,1062 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.14-rc4 | ||
4 | # Thu Oct 20 08:31:24 2005 | ||
5 | # | ||
6 | CONFIG_64BIT=y | ||
7 | CONFIG_MMU=y | ||
8 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | ||
9 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
10 | CONFIG_GENERIC_ISA_DMA=y | ||
11 | CONFIG_EARLY_PRINTK=y | ||
12 | CONFIG_COMPAT=y | ||
13 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | ||
14 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | ||
15 | CONFIG_FORCE_MAX_ZONEORDER=13 | ||
16 | |||
17 | # | ||
18 | # Code maturity level options | ||
19 | # | ||
20 | CONFIG_EXPERIMENTAL=y | ||
21 | CONFIG_CLEAN_COMPILE=y | ||
22 | CONFIG_LOCK_KERNEL=y | ||
23 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
24 | |||
25 | # | ||
26 | # General setup | ||
27 | # | ||
28 | CONFIG_LOCALVERSION="" | ||
29 | CONFIG_LOCALVERSION_AUTO=y | ||
30 | CONFIG_SWAP=y | ||
31 | CONFIG_SYSVIPC=y | ||
32 | CONFIG_POSIX_MQUEUE=y | ||
33 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
34 | CONFIG_SYSCTL=y | ||
35 | # CONFIG_AUDIT is not set | ||
36 | # CONFIG_HOTPLUG is not set | ||
37 | CONFIG_KOBJECT_UEVENT=y | ||
38 | CONFIG_IKCONFIG=y | ||
39 | CONFIG_IKCONFIG_PROC=y | ||
40 | # CONFIG_CPUSETS is not set | ||
41 | CONFIG_INITRAMFS_SOURCE="" | ||
42 | # CONFIG_EMBEDDED is not set | ||
43 | CONFIG_KALLSYMS=y | ||
44 | CONFIG_KALLSYMS_ALL=y | ||
45 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
46 | CONFIG_PRINTK=y | ||
47 | CONFIG_BUG=y | ||
48 | CONFIG_BASE_FULL=y | ||
49 | CONFIG_FUTEX=y | ||
50 | CONFIG_EPOLL=y | ||
51 | CONFIG_SHMEM=y | ||
52 | CONFIG_CC_ALIGN_FUNCTIONS=0 | ||
53 | CONFIG_CC_ALIGN_LABELS=0 | ||
54 | CONFIG_CC_ALIGN_LOOPS=0 | ||
55 | CONFIG_CC_ALIGN_JUMPS=0 | ||
56 | # CONFIG_TINY_SHMEM is not set | ||
57 | CONFIG_BASE_SMALL=0 | ||
58 | |||
59 | # | ||
60 | # Loadable module support | ||
61 | # | ||
62 | CONFIG_MODULES=y | ||
63 | CONFIG_MODULE_UNLOAD=y | ||
64 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
65 | CONFIG_OBSOLETE_MODPARM=y | ||
66 | CONFIG_MODVERSIONS=y | ||
67 | CONFIG_MODULE_SRCVERSION_ALL=y | ||
68 | CONFIG_KMOD=y | ||
69 | CONFIG_STOP_MACHINE=y | ||
70 | CONFIG_SYSVIPC_COMPAT=y | ||
71 | |||
72 | # | ||
73 | # Platform support | ||
74 | # | ||
75 | # CONFIG_PPC_ISERIES is not set | ||
76 | CONFIG_PPC_MULTIPLATFORM=y | ||
77 | # CONFIG_PPC_PSERIES is not set | ||
78 | # CONFIG_PPC_BPA is not set | ||
79 | # CONFIG_PPC_PMAC is not set | ||
80 | CONFIG_PPC_MAPLE=y | ||
81 | CONFIG_PPC=y | ||
82 | CONFIG_PPC64=y | ||
83 | CONFIG_PPC_OF=y | ||
84 | CONFIG_MPIC=y | ||
85 | # CONFIG_ALTIVEC is not set | ||
86 | CONFIG_KEXEC=y | ||
87 | CONFIG_U3_DART=y | ||
88 | CONFIG_MPIC_BROKEN_U3=y | ||
89 | CONFIG_BOOTX_TEXT=y | ||
90 | CONFIG_POWER4_ONLY=y | ||
91 | CONFIG_IOMMU_VMERGE=y | ||
92 | CONFIG_SMP=y | ||
93 | CONFIG_NR_CPUS=2 | ||
94 | CONFIG_ARCH_SELECT_MEMORY_MODEL=y | ||
95 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
96 | CONFIG_SELECT_MEMORY_MODEL=y | ||
97 | CONFIG_FLATMEM_MANUAL=y | ||
98 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
99 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
100 | CONFIG_FLATMEM=y | ||
101 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
102 | # CONFIG_SPARSEMEM_STATIC is not set | ||
103 | # CONFIG_NUMA is not set | ||
104 | # CONFIG_SCHED_SMT is not set | ||
105 | CONFIG_PREEMPT_NONE=y | ||
106 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
107 | # CONFIG_PREEMPT is not set | ||
108 | # CONFIG_PREEMPT_BKL is not set | ||
109 | # CONFIG_HZ_100 is not set | ||
110 | CONFIG_HZ_250=y | ||
111 | # CONFIG_HZ_1000 is not set | ||
112 | CONFIG_HZ=250 | ||
113 | CONFIG_GENERIC_HARDIRQS=y | ||
114 | CONFIG_SECCOMP=y | ||
115 | CONFIG_BINFMT_ELF=y | ||
116 | # CONFIG_BINFMT_MISC is not set | ||
117 | CONFIG_PROC_DEVICETREE=y | ||
118 | # CONFIG_CMDLINE_BOOL is not set | ||
119 | CONFIG_ISA_DMA_API=y | ||
120 | |||
121 | # | ||
122 | # Bus Options | ||
123 | # | ||
124 | CONFIG_PCI=y | ||
125 | CONFIG_PCI_DOMAINS=y | ||
126 | CONFIG_PCI_LEGACY_PROC=y | ||
127 | # CONFIG_PCI_DEBUG is not set | ||
128 | |||
129 | # | ||
130 | # PCCARD (PCMCIA/CardBus) support | ||
131 | # | ||
132 | # CONFIG_PCCARD is not set | ||
133 | |||
134 | # | ||
135 | # PCI Hotplug Support | ||
136 | # | ||
137 | # CONFIG_HOTPLUG_PCI is not set | ||
138 | |||
139 | # | ||
140 | # Networking | ||
141 | # | ||
142 | CONFIG_NET=y | ||
143 | |||
144 | # | ||
145 | # Networking options | ||
146 | # | ||
147 | CONFIG_PACKET=y | ||
148 | CONFIG_PACKET_MMAP=y | ||
149 | CONFIG_UNIX=y | ||
150 | # CONFIG_NET_KEY is not set | ||
151 | CONFIG_INET=y | ||
152 | CONFIG_IP_MULTICAST=y | ||
153 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
154 | CONFIG_IP_FIB_HASH=y | ||
155 | CONFIG_IP_PNP=y | ||
156 | CONFIG_IP_PNP_DHCP=y | ||
157 | # CONFIG_IP_PNP_BOOTP is not set | ||
158 | # CONFIG_IP_PNP_RARP is not set | ||
159 | # CONFIG_NET_IPIP is not set | ||
160 | # CONFIG_NET_IPGRE is not set | ||
161 | # CONFIG_IP_MROUTE is not set | ||
162 | # CONFIG_ARPD is not set | ||
163 | # CONFIG_SYN_COOKIES is not set | ||
164 | # CONFIG_INET_AH is not set | ||
165 | # CONFIG_INET_ESP is not set | ||
166 | # CONFIG_INET_IPCOMP is not set | ||
167 | # CONFIG_INET_TUNNEL is not set | ||
168 | CONFIG_INET_DIAG=y | ||
169 | CONFIG_INET_TCP_DIAG=y | ||
170 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
171 | CONFIG_TCP_CONG_BIC=y | ||
172 | # CONFIG_IPV6 is not set | ||
173 | # CONFIG_NETFILTER is not set | ||
174 | |||
175 | # | ||
176 | # DCCP Configuration (EXPERIMENTAL) | ||
177 | # | ||
178 | # CONFIG_IP_DCCP is not set | ||
179 | |||
180 | # | ||
181 | # SCTP Configuration (EXPERIMENTAL) | ||
182 | # | ||
183 | # CONFIG_IP_SCTP is not set | ||
184 | # CONFIG_ATM is not set | ||
185 | # CONFIG_BRIDGE is not set | ||
186 | # CONFIG_VLAN_8021Q is not set | ||
187 | # CONFIG_DECNET is not set | ||
188 | # CONFIG_LLC2 is not set | ||
189 | # CONFIG_IPX is not set | ||
190 | # CONFIG_ATALK is not set | ||
191 | # CONFIG_X25 is not set | ||
192 | # CONFIG_LAPB is not set | ||
193 | # CONFIG_NET_DIVERT is not set | ||
194 | # CONFIG_ECONET is not set | ||
195 | # CONFIG_WAN_ROUTER is not set | ||
196 | # CONFIG_NET_SCHED is not set | ||
197 | # CONFIG_NET_CLS_ROUTE is not set | ||
198 | |||
199 | # | ||
200 | # Network testing | ||
201 | # | ||
202 | # CONFIG_NET_PKTGEN is not set | ||
203 | # CONFIG_HAMRADIO is not set | ||
204 | # CONFIG_IRDA is not set | ||
205 | # CONFIG_BT is not set | ||
206 | # CONFIG_IEEE80211 is not set | ||
207 | |||
208 | # | ||
209 | # Device Drivers | ||
210 | # | ||
211 | |||
212 | # | ||
213 | # Generic Driver Options | ||
214 | # | ||
215 | CONFIG_STANDALONE=y | ||
216 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
217 | # CONFIG_FW_LOADER is not set | ||
218 | # CONFIG_DEBUG_DRIVER is not set | ||
219 | |||
220 | # | ||
221 | # Connector - unified userspace <-> kernelspace linker | ||
222 | # | ||
223 | # CONFIG_CONNECTOR is not set | ||
224 | |||
225 | # | ||
226 | # Memory Technology Devices (MTD) | ||
227 | # | ||
228 | # CONFIG_MTD is not set | ||
229 | |||
230 | # | ||
231 | # Parallel port support | ||
232 | # | ||
233 | # CONFIG_PARPORT is not set | ||
234 | |||
235 | # | ||
236 | # Plug and Play support | ||
237 | # | ||
238 | |||
239 | # | ||
240 | # Block devices | ||
241 | # | ||
242 | # CONFIG_BLK_DEV_FD is not set | ||
243 | # CONFIG_BLK_CPQ_DA is not set | ||
244 | # CONFIG_BLK_CPQ_CISS_DA is not set | ||
245 | # CONFIG_BLK_DEV_DAC960 is not set | ||
246 | # CONFIG_BLK_DEV_UMEM is not set | ||
247 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
248 | # CONFIG_BLK_DEV_LOOP is not set | ||
249 | # CONFIG_BLK_DEV_NBD is not set | ||
250 | # CONFIG_BLK_DEV_SX8 is not set | ||
251 | # CONFIG_BLK_DEV_UB is not set | ||
252 | CONFIG_BLK_DEV_RAM=y | ||
253 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
254 | CONFIG_BLK_DEV_RAM_SIZE=8192 | ||
255 | # CONFIG_BLK_DEV_INITRD is not set | ||
256 | # CONFIG_CDROM_PKTCDVD is not set | ||
257 | |||
258 | # | ||
259 | # IO Schedulers | ||
260 | # | ||
261 | CONFIG_IOSCHED_NOOP=y | ||
262 | CONFIG_IOSCHED_AS=y | ||
263 | CONFIG_IOSCHED_DEADLINE=y | ||
264 | CONFIG_IOSCHED_CFQ=y | ||
265 | # CONFIG_ATA_OVER_ETH is not set | ||
266 | |||
267 | # | ||
268 | # ATA/ATAPI/MFM/RLL support | ||
269 | # | ||
270 | CONFIG_IDE=y | ||
271 | CONFIG_BLK_DEV_IDE=y | ||
272 | |||
273 | # | ||
274 | # Please see Documentation/ide.txt for help/info on IDE drives | ||
275 | # | ||
276 | # CONFIG_BLK_DEV_IDE_SATA is not set | ||
277 | CONFIG_BLK_DEV_IDEDISK=y | ||
278 | # CONFIG_IDEDISK_MULTI_MODE is not set | ||
279 | CONFIG_BLK_DEV_IDECD=y | ||
280 | # CONFIG_BLK_DEV_IDETAPE is not set | ||
281 | # CONFIG_BLK_DEV_IDEFLOPPY is not set | ||
282 | CONFIG_IDE_TASK_IOCTL=y | ||
283 | |||
284 | # | ||
285 | # IDE chipset support/bugfixes | ||
286 | # | ||
287 | CONFIG_IDE_GENERIC=y | ||
288 | CONFIG_BLK_DEV_IDEPCI=y | ||
289 | CONFIG_IDEPCI_SHARE_IRQ=y | ||
290 | # CONFIG_BLK_DEV_OFFBOARD is not set | ||
291 | CONFIG_BLK_DEV_GENERIC=y | ||
292 | # CONFIG_BLK_DEV_OPTI621 is not set | ||
293 | # CONFIG_BLK_DEV_SL82C105 is not set | ||
294 | CONFIG_BLK_DEV_IDEDMA_PCI=y | ||
295 | # CONFIG_BLK_DEV_IDEDMA_FORCED is not set | ||
296 | CONFIG_IDEDMA_PCI_AUTO=y | ||
297 | # CONFIG_IDEDMA_ONLYDISK is not set | ||
298 | # CONFIG_BLK_DEV_AEC62XX is not set | ||
299 | # CONFIG_BLK_DEV_ALI15X3 is not set | ||
300 | CONFIG_BLK_DEV_AMD74XX=y | ||
301 | # CONFIG_BLK_DEV_CMD64X is not set | ||
302 | # CONFIG_BLK_DEV_TRIFLEX is not set | ||
303 | # CONFIG_BLK_DEV_CY82C693 is not set | ||
304 | # CONFIG_BLK_DEV_CS5520 is not set | ||
305 | # CONFIG_BLK_DEV_CS5530 is not set | ||
306 | # CONFIG_BLK_DEV_HPT34X is not set | ||
307 | # CONFIG_BLK_DEV_HPT366 is not set | ||
308 | # CONFIG_BLK_DEV_SC1200 is not set | ||
309 | # CONFIG_BLK_DEV_PIIX is not set | ||
310 | # CONFIG_BLK_DEV_IT821X is not set | ||
311 | # CONFIG_BLK_DEV_NS87415 is not set | ||
312 | # CONFIG_BLK_DEV_PDC202XX_OLD is not set | ||
313 | # CONFIG_BLK_DEV_PDC202XX_NEW is not set | ||
314 | # CONFIG_BLK_DEV_SVWKS is not set | ||
315 | # CONFIG_BLK_DEV_SIIMAGE is not set | ||
316 | # CONFIG_BLK_DEV_SLC90E66 is not set | ||
317 | # CONFIG_BLK_DEV_TRM290 is not set | ||
318 | # CONFIG_BLK_DEV_VIA82CXXX is not set | ||
319 | # CONFIG_IDE_ARM is not set | ||
320 | CONFIG_BLK_DEV_IDEDMA=y | ||
321 | # CONFIG_IDEDMA_IVB is not set | ||
322 | CONFIG_IDEDMA_AUTO=y | ||
323 | # CONFIG_BLK_DEV_HD is not set | ||
324 | |||
325 | # | ||
326 | # SCSI device support | ||
327 | # | ||
328 | # CONFIG_RAID_ATTRS is not set | ||
329 | # CONFIG_SCSI is not set | ||
330 | |||
331 | # | ||
332 | # Multi-device support (RAID and LVM) | ||
333 | # | ||
334 | # CONFIG_MD is not set | ||
335 | |||
336 | # | ||
337 | # Fusion MPT device support | ||
338 | # | ||
339 | # CONFIG_FUSION is not set | ||
340 | |||
341 | # | ||
342 | # IEEE 1394 (FireWire) support | ||
343 | # | ||
344 | # CONFIG_IEEE1394 is not set | ||
345 | |||
346 | # | ||
347 | # I2O device support | ||
348 | # | ||
349 | # CONFIG_I2O is not set | ||
350 | |||
351 | # | ||
352 | # Macintosh device drivers | ||
353 | # | ||
354 | |||
355 | # | ||
356 | # Network device support | ||
357 | # | ||
358 | CONFIG_NETDEVICES=y | ||
359 | # CONFIG_DUMMY is not set | ||
360 | # CONFIG_BONDING is not set | ||
361 | # CONFIG_EQUALIZER is not set | ||
362 | # CONFIG_TUN is not set | ||
363 | |||
364 | # | ||
365 | # ARCnet devices | ||
366 | # | ||
367 | # CONFIG_ARCNET is not set | ||
368 | |||
369 | # | ||
370 | # PHY device support | ||
371 | # | ||
372 | # CONFIG_PHYLIB is not set | ||
373 | |||
374 | # | ||
375 | # Ethernet (10 or 100Mbit) | ||
376 | # | ||
377 | CONFIG_NET_ETHERNET=y | ||
378 | CONFIG_MII=y | ||
379 | # CONFIG_HAPPYMEAL is not set | ||
380 | # CONFIG_SUNGEM is not set | ||
381 | # CONFIG_CASSINI is not set | ||
382 | # CONFIG_NET_VENDOR_3COM is not set | ||
383 | |||
384 | # | ||
385 | # Tulip family network device support | ||
386 | # | ||
387 | # CONFIG_NET_TULIP is not set | ||
388 | # CONFIG_HP100 is not set | ||
389 | CONFIG_NET_PCI=y | ||
390 | # CONFIG_PCNET32 is not set | ||
391 | CONFIG_AMD8111_ETH=y | ||
392 | # CONFIG_AMD8111E_NAPI is not set | ||
393 | # CONFIG_ADAPTEC_STARFIRE is not set | ||
394 | # CONFIG_B44 is not set | ||
395 | # CONFIG_FORCEDETH is not set | ||
396 | # CONFIG_DGRS is not set | ||
397 | # CONFIG_EEPRO100 is not set | ||
398 | # CONFIG_E100 is not set | ||
399 | # CONFIG_FEALNX is not set | ||
400 | # CONFIG_NATSEMI is not set | ||
401 | # CONFIG_NE2K_PCI is not set | ||
402 | # CONFIG_8139CP is not set | ||
403 | # CONFIG_8139TOO is not set | ||
404 | # CONFIG_SIS900 is not set | ||
405 | # CONFIG_EPIC100 is not set | ||
406 | # CONFIG_SUNDANCE is not set | ||
407 | # CONFIG_VIA_RHINE is not set | ||
408 | |||
409 | # | ||
410 | # Ethernet (1000 Mbit) | ||
411 | # | ||
412 | # CONFIG_ACENIC is not set | ||
413 | # CONFIG_DL2K is not set | ||
414 | CONFIG_E1000=y | ||
415 | # CONFIG_E1000_NAPI is not set | ||
416 | # CONFIG_NS83820 is not set | ||
417 | # CONFIG_HAMACHI is not set | ||
418 | # CONFIG_YELLOWFIN is not set | ||
419 | # CONFIG_R8169 is not set | ||
420 | # CONFIG_SIS190 is not set | ||
421 | # CONFIG_SKGE is not set | ||
422 | # CONFIG_SK98LIN is not set | ||
423 | # CONFIG_VIA_VELOCITY is not set | ||
424 | # CONFIG_TIGON3 is not set | ||
425 | # CONFIG_BNX2 is not set | ||
426 | # CONFIG_MV643XX_ETH is not set | ||
427 | |||
428 | # | ||
429 | # Ethernet (10000 Mbit) | ||
430 | # | ||
431 | # CONFIG_CHELSIO_T1 is not set | ||
432 | # CONFIG_IXGB is not set | ||
433 | # CONFIG_S2IO is not set | ||
434 | |||
435 | # | ||
436 | # Token Ring devices | ||
437 | # | ||
438 | # CONFIG_TR is not set | ||
439 | |||
440 | # | ||
441 | # Wireless LAN (non-hamradio) | ||
442 | # | ||
443 | # CONFIG_NET_RADIO is not set | ||
444 | |||
445 | # | ||
446 | # Wan interfaces | ||
447 | # | ||
448 | # CONFIG_WAN is not set | ||
449 | # CONFIG_FDDI is not set | ||
450 | # CONFIG_HIPPI is not set | ||
451 | # CONFIG_PPP is not set | ||
452 | # CONFIG_SLIP is not set | ||
453 | # CONFIG_SHAPER is not set | ||
454 | # CONFIG_NETCONSOLE is not set | ||
455 | # CONFIG_NETPOLL is not set | ||
456 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
457 | |||
458 | # | ||
459 | # ISDN subsystem | ||
460 | # | ||
461 | # CONFIG_ISDN is not set | ||
462 | |||
463 | # | ||
464 | # Telephony Support | ||
465 | # | ||
466 | # CONFIG_PHONE is not set | ||
467 | |||
468 | # | ||
469 | # Input device support | ||
470 | # | ||
471 | CONFIG_INPUT=y | ||
472 | |||
473 | # | ||
474 | # Userland interfaces | ||
475 | # | ||
476 | CONFIG_INPUT_MOUSEDEV=y | ||
477 | # CONFIG_INPUT_MOUSEDEV_PSAUX is not set | ||
478 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1600 | ||
479 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=1200 | ||
480 | # CONFIG_INPUT_JOYDEV is not set | ||
481 | # CONFIG_INPUT_TSDEV is not set | ||
482 | # CONFIG_INPUT_EVDEV is not set | ||
483 | # CONFIG_INPUT_EVBUG is not set | ||
484 | |||
485 | # | ||
486 | # Input Device Drivers | ||
487 | # | ||
488 | # CONFIG_INPUT_KEYBOARD is not set | ||
489 | # CONFIG_INPUT_MOUSE is not set | ||
490 | # CONFIG_INPUT_JOYSTICK is not set | ||
491 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
492 | # CONFIG_INPUT_MISC is not set | ||
493 | |||
494 | # | ||
495 | # Hardware I/O ports | ||
496 | # | ||
497 | # CONFIG_SERIO is not set | ||
498 | # CONFIG_GAMEPORT is not set | ||
499 | |||
500 | # | ||
501 | # Character devices | ||
502 | # | ||
503 | CONFIG_VT=y | ||
504 | CONFIG_VT_CONSOLE=y | ||
505 | CONFIG_HW_CONSOLE=y | ||
506 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
507 | |||
508 | # | ||
509 | # Serial drivers | ||
510 | # | ||
511 | CONFIG_SERIAL_8250=y | ||
512 | CONFIG_SERIAL_8250_CONSOLE=y | ||
513 | CONFIG_SERIAL_8250_NR_UARTS=4 | ||
514 | # CONFIG_SERIAL_8250_EXTENDED is not set | ||
515 | |||
516 | # | ||
517 | # Non-8250 serial port support | ||
518 | # | ||
519 | CONFIG_SERIAL_CORE=y | ||
520 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
521 | # CONFIG_SERIAL_JSM is not set | ||
522 | CONFIG_UNIX98_PTYS=y | ||
523 | CONFIG_LEGACY_PTYS=y | ||
524 | CONFIG_LEGACY_PTY_COUNT=256 | ||
525 | |||
526 | # | ||
527 | # IPMI | ||
528 | # | ||
529 | # CONFIG_IPMI_HANDLER is not set | ||
530 | |||
531 | # | ||
532 | # Watchdog Cards | ||
533 | # | ||
534 | # CONFIG_WATCHDOG is not set | ||
535 | # CONFIG_RTC is not set | ||
536 | # CONFIG_DTLK is not set | ||
537 | # CONFIG_R3964 is not set | ||
538 | # CONFIG_APPLICOM is not set | ||
539 | |||
540 | # | ||
541 | # Ftape, the floppy tape device driver | ||
542 | # | ||
543 | # CONFIG_AGP is not set | ||
544 | # CONFIG_DRM is not set | ||
545 | # CONFIG_RAW_DRIVER is not set | ||
546 | # CONFIG_HANGCHECK_TIMER is not set | ||
547 | |||
548 | # | ||
549 | # TPM devices | ||
550 | # | ||
551 | # CONFIG_TCG_TPM is not set | ||
552 | |||
553 | # | ||
554 | # I2C support | ||
555 | # | ||
556 | CONFIG_I2C=y | ||
557 | CONFIG_I2C_CHARDEV=y | ||
558 | |||
559 | # | ||
560 | # I2C Algorithms | ||
561 | # | ||
562 | CONFIG_I2C_ALGOBIT=y | ||
563 | # CONFIG_I2C_ALGOPCF is not set | ||
564 | # CONFIG_I2C_ALGOPCA is not set | ||
565 | |||
566 | # | ||
567 | # I2C Hardware Bus support | ||
568 | # | ||
569 | # CONFIG_I2C_ALI1535 is not set | ||
570 | # CONFIG_I2C_ALI1563 is not set | ||
571 | # CONFIG_I2C_ALI15X3 is not set | ||
572 | # CONFIG_I2C_AMD756 is not set | ||
573 | CONFIG_I2C_AMD8111=y | ||
574 | # CONFIG_I2C_I801 is not set | ||
575 | # CONFIG_I2C_I810 is not set | ||
576 | # CONFIG_I2C_PIIX4 is not set | ||
577 | # CONFIG_I2C_NFORCE2 is not set | ||
578 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
579 | # CONFIG_I2C_PROSAVAGE is not set | ||
580 | # CONFIG_I2C_SAVAGE4 is not set | ||
581 | # CONFIG_SCx200_ACB is not set | ||
582 | # CONFIG_I2C_SIS5595 is not set | ||
583 | # CONFIG_I2C_SIS630 is not set | ||
584 | # CONFIG_I2C_SIS96X is not set | ||
585 | # CONFIG_I2C_STUB is not set | ||
586 | # CONFIG_I2C_VIA is not set | ||
587 | # CONFIG_I2C_VIAPRO is not set | ||
588 | # CONFIG_I2C_VOODOO3 is not set | ||
589 | # CONFIG_I2C_PCA_ISA is not set | ||
590 | |||
591 | # | ||
592 | # Miscellaneous I2C Chip support | ||
593 | # | ||
594 | # CONFIG_SENSORS_DS1337 is not set | ||
595 | # CONFIG_SENSORS_DS1374 is not set | ||
596 | # CONFIG_SENSORS_EEPROM is not set | ||
597 | # CONFIG_SENSORS_PCF8574 is not set | ||
598 | # CONFIG_SENSORS_PCA9539 is not set | ||
599 | # CONFIG_SENSORS_PCF8591 is not set | ||
600 | # CONFIG_SENSORS_RTC8564 is not set | ||
601 | # CONFIG_SENSORS_MAX6875 is not set | ||
602 | # CONFIG_I2C_DEBUG_CORE is not set | ||
603 | # CONFIG_I2C_DEBUG_ALGO is not set | ||
604 | # CONFIG_I2C_DEBUG_BUS is not set | ||
605 | # CONFIG_I2C_DEBUG_CHIP is not set | ||
606 | |||
607 | # | ||
608 | # Dallas's 1-wire bus | ||
609 | # | ||
610 | # CONFIG_W1 is not set | ||
611 | |||
612 | # | ||
613 | # Hardware Monitoring support | ||
614 | # | ||
615 | # CONFIG_HWMON is not set | ||
616 | # CONFIG_HWMON_VID is not set | ||
617 | |||
618 | # | ||
619 | # Misc devices | ||
620 | # | ||
621 | |||
622 | # | ||
623 | # Multimedia Capabilities Port drivers | ||
624 | # | ||
625 | |||
626 | # | ||
627 | # Multimedia devices | ||
628 | # | ||
629 | # CONFIG_VIDEO_DEV is not set | ||
630 | |||
631 | # | ||
632 | # Digital Video Broadcasting Devices | ||
633 | # | ||
634 | # CONFIG_DVB is not set | ||
635 | |||
636 | # | ||
637 | # Graphics support | ||
638 | # | ||
639 | # CONFIG_FB is not set | ||
640 | |||
641 | # | ||
642 | # Console display driver support | ||
643 | # | ||
644 | # CONFIG_VGA_CONSOLE is not set | ||
645 | CONFIG_DUMMY_CONSOLE=y | ||
646 | |||
647 | # | ||
648 | # Sound | ||
649 | # | ||
650 | # CONFIG_SOUND is not set | ||
651 | |||
652 | # | ||
653 | # USB support | ||
654 | # | ||
655 | CONFIG_USB_ARCH_HAS_HCD=y | ||
656 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
657 | CONFIG_USB=y | ||
658 | # CONFIG_USB_DEBUG is not set | ||
659 | |||
660 | # | ||
661 | # Miscellaneous USB options | ||
662 | # | ||
663 | CONFIG_USB_DEVICEFS=y | ||
664 | # CONFIG_USB_BANDWIDTH is not set | ||
665 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
666 | # CONFIG_USB_OTG is not set | ||
667 | |||
668 | # | ||
669 | # USB Host Controller Drivers | ||
670 | # | ||
671 | CONFIG_USB_EHCI_HCD=y | ||
672 | CONFIG_USB_EHCI_SPLIT_ISO=y | ||
673 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | ||
674 | # CONFIG_USB_ISP116X_HCD is not set | ||
675 | CONFIG_USB_OHCI_HCD=y | ||
676 | # CONFIG_USB_OHCI_BIG_ENDIAN is not set | ||
677 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
678 | CONFIG_USB_UHCI_HCD=y | ||
679 | # CONFIG_USB_SL811_HCD is not set | ||
680 | |||
681 | # | ||
682 | # USB Device Class drivers | ||
683 | # | ||
684 | # CONFIG_USB_BLUETOOTH_TTY is not set | ||
685 | # CONFIG_USB_ACM is not set | ||
686 | # CONFIG_USB_PRINTER is not set | ||
687 | |||
688 | # | ||
689 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' may also be needed; see USB_STORAGE Help for more information | ||
690 | # | ||
691 | # CONFIG_USB_STORAGE is not set | ||
692 | |||
693 | # | ||
694 | # USB Input Devices | ||
695 | # | ||
696 | CONFIG_USB_HID=y | ||
697 | CONFIG_USB_HIDINPUT=y | ||
698 | # CONFIG_HID_FF is not set | ||
699 | # CONFIG_USB_HIDDEV is not set | ||
700 | # CONFIG_USB_AIPTEK is not set | ||
701 | # CONFIG_USB_WACOM is not set | ||
702 | # CONFIG_USB_ACECAD is not set | ||
703 | # CONFIG_USB_KBTAB is not set | ||
704 | # CONFIG_USB_POWERMATE is not set | ||
705 | # CONFIG_USB_MTOUCH is not set | ||
706 | # CONFIG_USB_ITMTOUCH is not set | ||
707 | # CONFIG_USB_EGALAX is not set | ||
708 | # CONFIG_USB_YEALINK is not set | ||
709 | # CONFIG_USB_XPAD is not set | ||
710 | # CONFIG_USB_ATI_REMOTE is not set | ||
711 | # CONFIG_USB_KEYSPAN_REMOTE is not set | ||
712 | # CONFIG_USB_APPLETOUCH is not set | ||
713 | |||
714 | # | ||
715 | # USB Imaging devices | ||
716 | # | ||
717 | # CONFIG_USB_MDC800 is not set | ||
718 | |||
719 | # | ||
720 | # USB Multimedia devices | ||
721 | # | ||
722 | # CONFIG_USB_DABUSB is not set | ||
723 | |||
724 | # | ||
725 | # Video4Linux support is needed for USB Multimedia device support | ||
726 | # | ||
727 | |||
728 | # | ||
729 | # USB Network Adapters | ||
730 | # | ||
731 | # CONFIG_USB_CATC is not set | ||
732 | # CONFIG_USB_KAWETH is not set | ||
733 | CONFIG_USB_PEGASUS=y | ||
734 | # CONFIG_USB_RTL8150 is not set | ||
735 | # CONFIG_USB_USBNET is not set | ||
736 | CONFIG_USB_MON=y | ||
737 | |||
738 | # | ||
739 | # USB port drivers | ||
740 | # | ||
741 | |||
742 | # | ||
743 | # USB Serial Converter support | ||
744 | # | ||
745 | CONFIG_USB_SERIAL=y | ||
746 | # CONFIG_USB_SERIAL_CONSOLE is not set | ||
747 | CONFIG_USB_SERIAL_GENERIC=y | ||
748 | # CONFIG_USB_SERIAL_AIRPRIME is not set | ||
749 | # CONFIG_USB_SERIAL_BELKIN is not set | ||
750 | # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set | ||
751 | # CONFIG_USB_SERIAL_CP2101 is not set | ||
752 | CONFIG_USB_SERIAL_CYPRESS_M8=m | ||
753 | # CONFIG_USB_SERIAL_EMPEG is not set | ||
754 | # CONFIG_USB_SERIAL_FTDI_SIO is not set | ||
755 | # CONFIG_USB_SERIAL_VISOR is not set | ||
756 | # CONFIG_USB_SERIAL_IPAQ is not set | ||
757 | # CONFIG_USB_SERIAL_IR is not set | ||
758 | # CONFIG_USB_SERIAL_EDGEPORT is not set | ||
759 | # CONFIG_USB_SERIAL_EDGEPORT_TI is not set | ||
760 | CONFIG_USB_SERIAL_GARMIN=m | ||
761 | CONFIG_USB_SERIAL_IPW=m | ||
762 | # CONFIG_USB_SERIAL_KEYSPAN_PDA is not set | ||
763 | CONFIG_USB_SERIAL_KEYSPAN=y | ||
764 | CONFIG_USB_SERIAL_KEYSPAN_MPR=y | ||
765 | CONFIG_USB_SERIAL_KEYSPAN_USA28=y | ||
766 | CONFIG_USB_SERIAL_KEYSPAN_USA28X=y | ||
767 | CONFIG_USB_SERIAL_KEYSPAN_USA28XA=y | ||
768 | CONFIG_USB_SERIAL_KEYSPAN_USA28XB=y | ||
769 | CONFIG_USB_SERIAL_KEYSPAN_USA19=y | ||
770 | CONFIG_USB_SERIAL_KEYSPAN_USA18X=y | ||
771 | CONFIG_USB_SERIAL_KEYSPAN_USA19W=y | ||
772 | CONFIG_USB_SERIAL_KEYSPAN_USA19QW=y | ||
773 | CONFIG_USB_SERIAL_KEYSPAN_USA19QI=y | ||
774 | CONFIG_USB_SERIAL_KEYSPAN_USA49W=y | ||
775 | CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y | ||
776 | # CONFIG_USB_SERIAL_KLSI is not set | ||
777 | # CONFIG_USB_SERIAL_KOBIL_SCT is not set | ||
778 | # CONFIG_USB_SERIAL_MCT_U232 is not set | ||
779 | # CONFIG_USB_SERIAL_PL2303 is not set | ||
780 | # CONFIG_USB_SERIAL_HP4X is not set | ||
781 | # CONFIG_USB_SERIAL_SAFE is not set | ||
782 | CONFIG_USB_SERIAL_TI=m | ||
783 | # CONFIG_USB_SERIAL_CYBERJACK is not set | ||
784 | # CONFIG_USB_SERIAL_XIRCOM is not set | ||
785 | # CONFIG_USB_SERIAL_OMNINET is not set | ||
786 | CONFIG_USB_EZUSB=y | ||
787 | |||
788 | # | ||
789 | # USB Miscellaneous drivers | ||
790 | # | ||
791 | # CONFIG_USB_EMI62 is not set | ||
792 | # CONFIG_USB_EMI26 is not set | ||
793 | # CONFIG_USB_AUERSWALD is not set | ||
794 | # CONFIG_USB_RIO500 is not set | ||
795 | # CONFIG_USB_LEGOTOWER is not set | ||
796 | # CONFIG_USB_LCD is not set | ||
797 | # CONFIG_USB_LED is not set | ||
798 | # CONFIG_USB_CYTHERM is not set | ||
799 | # CONFIG_USB_PHIDGETKIT is not set | ||
800 | # CONFIG_USB_PHIDGETSERVO is not set | ||
801 | # CONFIG_USB_IDMOUSE is not set | ||
802 | # CONFIG_USB_SISUSBVGA is not set | ||
803 | # CONFIG_USB_LD is not set | ||
804 | # CONFIG_USB_TEST is not set | ||
805 | |||
806 | # | ||
807 | # USB DSL modem support | ||
808 | # | ||
809 | |||
810 | # | ||
811 | # USB Gadget Support | ||
812 | # | ||
813 | # CONFIG_USB_GADGET is not set | ||
814 | |||
815 | # | ||
816 | # MMC/SD Card support | ||
817 | # | ||
818 | # CONFIG_MMC is not set | ||
819 | |||
820 | # | ||
821 | # InfiniBand support | ||
822 | # | ||
823 | # CONFIG_INFINIBAND is not set | ||
824 | |||
825 | # | ||
826 | # SN Devices | ||
827 | # | ||
828 | |||
829 | # | ||
830 | # File systems | ||
831 | # | ||
832 | CONFIG_EXT2_FS=y | ||
833 | # CONFIG_EXT2_FS_XATTR is not set | ||
834 | CONFIG_EXT2_FS_XIP=y | ||
835 | CONFIG_FS_XIP=y | ||
836 | CONFIG_EXT3_FS=y | ||
837 | # CONFIG_EXT3_FS_XATTR is not set | ||
838 | CONFIG_JBD=y | ||
839 | # CONFIG_JBD_DEBUG is not set | ||
840 | # CONFIG_REISERFS_FS is not set | ||
841 | # CONFIG_JFS_FS is not set | ||
842 | CONFIG_FS_POSIX_ACL=y | ||
843 | # CONFIG_XFS_FS is not set | ||
844 | # CONFIG_MINIX_FS is not set | ||
845 | # CONFIG_ROMFS_FS is not set | ||
846 | CONFIG_INOTIFY=y | ||
847 | # CONFIG_QUOTA is not set | ||
848 | CONFIG_DNOTIFY=y | ||
849 | # CONFIG_AUTOFS_FS is not set | ||
850 | # CONFIG_AUTOFS4_FS is not set | ||
851 | # CONFIG_FUSE_FS is not set | ||
852 | |||
853 | # | ||
854 | # CD-ROM/DVD Filesystems | ||
855 | # | ||
856 | # CONFIG_ISO9660_FS is not set | ||
857 | # CONFIG_UDF_FS is not set | ||
858 | |||
859 | # | ||
860 | # DOS/FAT/NT Filesystems | ||
861 | # | ||
862 | CONFIG_FAT_FS=y | ||
863 | CONFIG_MSDOS_FS=y | ||
864 | CONFIG_VFAT_FS=y | ||
865 | CONFIG_FAT_DEFAULT_CODEPAGE=437 | ||
866 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | ||
867 | # CONFIG_NTFS_FS is not set | ||
868 | |||
869 | # | ||
870 | # Pseudo filesystems | ||
871 | # | ||
872 | CONFIG_PROC_FS=y | ||
873 | CONFIG_PROC_KCORE=y | ||
874 | CONFIG_SYSFS=y | ||
875 | CONFIG_TMPFS=y | ||
876 | CONFIG_HUGETLBFS=y | ||
877 | CONFIG_HUGETLB_PAGE=y | ||
878 | CONFIG_RAMFS=y | ||
879 | # CONFIG_RELAYFS_FS is not set | ||
880 | |||
881 | # | ||
882 | # Miscellaneous filesystems | ||
883 | # | ||
884 | # CONFIG_ADFS_FS is not set | ||
885 | # CONFIG_AFFS_FS is not set | ||
886 | # CONFIG_HFS_FS is not set | ||
887 | # CONFIG_HFSPLUS_FS is not set | ||
888 | # CONFIG_BEFS_FS is not set | ||
889 | # CONFIG_BFS_FS is not set | ||
890 | # CONFIG_EFS_FS is not set | ||
891 | CONFIG_CRAMFS=y | ||
892 | # CONFIG_VXFS_FS is not set | ||
893 | # CONFIG_HPFS_FS is not set | ||
894 | # CONFIG_QNX4FS_FS is not set | ||
895 | # CONFIG_SYSV_FS is not set | ||
896 | # CONFIG_UFS_FS is not set | ||
897 | |||
898 | # | ||
899 | # Network File Systems | ||
900 | # | ||
901 | CONFIG_NFS_FS=y | ||
902 | CONFIG_NFS_V3=y | ||
903 | CONFIG_NFS_V3_ACL=y | ||
904 | CONFIG_NFS_V4=y | ||
905 | # CONFIG_NFS_DIRECTIO is not set | ||
906 | # CONFIG_NFSD is not set | ||
907 | CONFIG_ROOT_NFS=y | ||
908 | CONFIG_LOCKD=y | ||
909 | CONFIG_LOCKD_V4=y | ||
910 | CONFIG_NFS_ACL_SUPPORT=y | ||
911 | CONFIG_NFS_COMMON=y | ||
912 | CONFIG_SUNRPC=y | ||
913 | CONFIG_SUNRPC_GSS=y | ||
914 | CONFIG_RPCSEC_GSS_KRB5=y | ||
915 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
916 | # CONFIG_SMB_FS is not set | ||
917 | # CONFIG_CIFS is not set | ||
918 | # CONFIG_NCP_FS is not set | ||
919 | # CONFIG_CODA_FS is not set | ||
920 | # CONFIG_AFS_FS is not set | ||
921 | # CONFIG_9P_FS is not set | ||
922 | |||
923 | # | ||
924 | # Partition Types | ||
925 | # | ||
926 | CONFIG_PARTITION_ADVANCED=y | ||
927 | # CONFIG_ACORN_PARTITION is not set | ||
928 | # CONFIG_OSF_PARTITION is not set | ||
929 | # CONFIG_AMIGA_PARTITION is not set | ||
930 | # CONFIG_ATARI_PARTITION is not set | ||
931 | CONFIG_MAC_PARTITION=y | ||
932 | CONFIG_MSDOS_PARTITION=y | ||
933 | # CONFIG_BSD_DISKLABEL is not set | ||
934 | # CONFIG_MINIX_SUBPARTITION is not set | ||
935 | # CONFIG_SOLARIS_X86_PARTITION is not set | ||
936 | # CONFIG_UNIXWARE_DISKLABEL is not set | ||
937 | # CONFIG_LDM_PARTITION is not set | ||
938 | # CONFIG_SGI_PARTITION is not set | ||
939 | # CONFIG_ULTRIX_PARTITION is not set | ||
940 | # CONFIG_SUN_PARTITION is not set | ||
941 | # CONFIG_EFI_PARTITION is not set | ||
942 | |||
943 | # | ||
944 | # Native Language Support | ||
945 | # | ||
946 | CONFIG_NLS=y | ||
947 | CONFIG_NLS_DEFAULT="utf-8" | ||
948 | # CONFIG_NLS_CODEPAGE_437 is not set | ||
949 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
950 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
951 | # CONFIG_NLS_CODEPAGE_850 is not set | ||
952 | # CONFIG_NLS_CODEPAGE_852 is not set | ||
953 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
954 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
955 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
956 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
957 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
958 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
959 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
960 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
961 | # CONFIG_NLS_CODEPAGE_866 is not set | ||
962 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
963 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
964 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
965 | # CONFIG_NLS_CODEPAGE_932 is not set | ||
966 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
967 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
968 | # CONFIG_NLS_ISO8859_8 is not set | ||
969 | # CONFIG_NLS_CODEPAGE_1250 is not set | ||
970 | # CONFIG_NLS_CODEPAGE_1251 is not set | ||
971 | # CONFIG_NLS_ASCII is not set | ||
972 | # CONFIG_NLS_ISO8859_1 is not set | ||
973 | # CONFIG_NLS_ISO8859_2 is not set | ||
974 | # CONFIG_NLS_ISO8859_3 is not set | ||
975 | # CONFIG_NLS_ISO8859_4 is not set | ||
976 | # CONFIG_NLS_ISO8859_5 is not set | ||
977 | # CONFIG_NLS_ISO8859_6 is not set | ||
978 | # CONFIG_NLS_ISO8859_7 is not set | ||
979 | # CONFIG_NLS_ISO8859_9 is not set | ||
980 | # CONFIG_NLS_ISO8859_13 is not set | ||
981 | # CONFIG_NLS_ISO8859_14 is not set | ||
982 | # CONFIG_NLS_ISO8859_15 is not set | ||
983 | # CONFIG_NLS_KOI8_R is not set | ||
984 | # CONFIG_NLS_KOI8_U is not set | ||
985 | CONFIG_NLS_UTF8=y | ||
986 | |||
987 | # | ||
988 | # Profiling support | ||
989 | # | ||
990 | # CONFIG_PROFILING is not set | ||
991 | |||
992 | # | ||
993 | # Kernel hacking | ||
994 | # | ||
995 | # CONFIG_PRINTK_TIME is not set | ||
996 | CONFIG_DEBUG_KERNEL=y | ||
997 | CONFIG_MAGIC_SYSRQ=y | ||
998 | CONFIG_LOG_BUF_SHIFT=17 | ||
999 | CONFIG_DETECT_SOFTLOCKUP=y | ||
1000 | # CONFIG_SCHEDSTATS is not set | ||
1001 | CONFIG_DEBUG_SLAB=y | ||
1002 | # CONFIG_DEBUG_SPINLOCK is not set | ||
1003 | CONFIG_DEBUG_SPINLOCK_SLEEP=y | ||
1004 | # CONFIG_DEBUG_KOBJECT is not set | ||
1005 | # CONFIG_DEBUG_INFO is not set | ||
1006 | CONFIG_DEBUG_FS=y | ||
1007 | CONFIG_DEBUG_STACKOVERFLOW=y | ||
1008 | # CONFIG_KPROBES is not set | ||
1009 | CONFIG_DEBUG_STACK_USAGE=y | ||
1010 | CONFIG_DEBUGGER=y | ||
1011 | CONFIG_XMON=y | ||
1012 | CONFIG_XMON_DEFAULT=y | ||
1013 | # CONFIG_PPCDBG is not set | ||
1014 | # CONFIG_IRQSTACKS is not set | ||
1015 | |||
1016 | # | ||
1017 | # Security options | ||
1018 | # | ||
1019 | # CONFIG_KEYS is not set | ||
1020 | # CONFIG_SECURITY is not set | ||
1021 | |||
1022 | # | ||
1023 | # Cryptographic options | ||
1024 | # | ||
1025 | CONFIG_CRYPTO=y | ||
1026 | # CONFIG_CRYPTO_HMAC is not set | ||
1027 | # CONFIG_CRYPTO_NULL is not set | ||
1028 | # CONFIG_CRYPTO_MD4 is not set | ||
1029 | CONFIG_CRYPTO_MD5=y | ||
1030 | # CONFIG_CRYPTO_SHA1 is not set | ||
1031 | # CONFIG_CRYPTO_SHA256 is not set | ||
1032 | # CONFIG_CRYPTO_SHA512 is not set | ||
1033 | # CONFIG_CRYPTO_WP512 is not set | ||
1034 | # CONFIG_CRYPTO_TGR192 is not set | ||
1035 | CONFIG_CRYPTO_DES=y | ||
1036 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
1037 | # CONFIG_CRYPTO_TWOFISH is not set | ||
1038 | # CONFIG_CRYPTO_SERPENT is not set | ||
1039 | # CONFIG_CRYPTO_AES is not set | ||
1040 | # CONFIG_CRYPTO_CAST5 is not set | ||
1041 | # CONFIG_CRYPTO_CAST6 is not set | ||
1042 | # CONFIG_CRYPTO_TEA is not set | ||
1043 | # CONFIG_CRYPTO_ARC4 is not set | ||
1044 | # CONFIG_CRYPTO_KHAZAD is not set | ||
1045 | # CONFIG_CRYPTO_ANUBIS is not set | ||
1046 | # CONFIG_CRYPTO_DEFLATE is not set | ||
1047 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
1048 | # CONFIG_CRYPTO_CRC32C is not set | ||
1049 | # CONFIG_CRYPTO_TEST is not set | ||
1050 | |||
1051 | # | ||
1052 | # Hardware crypto devices | ||
1053 | # | ||
1054 | |||
1055 | # | ||
1056 | # Library routines | ||
1057 | # | ||
1058 | CONFIG_CRC_CCITT=y | ||
1059 | # CONFIG_CRC16 is not set | ||
1060 | CONFIG_CRC32=y | ||
1061 | # CONFIG_LIBCRC32C is not set | ||
1062 | CONFIG_ZLIB_INFLATE=y | ||
diff --git a/arch/powerpc/configs/pseries_defconfig b/arch/powerpc/configs/pseries_defconfig new file mode 100644 index 000000000000..9f09dff9e11a --- /dev/null +++ b/arch/powerpc/configs/pseries_defconfig | |||
@@ -0,0 +1,1371 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.14-rc4 | ||
4 | # Thu Oct 20 08:32:17 2005 | ||
5 | # | ||
6 | CONFIG_64BIT=y | ||
7 | CONFIG_MMU=y | ||
8 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | ||
9 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
10 | CONFIG_GENERIC_ISA_DMA=y | ||
11 | CONFIG_EARLY_PRINTK=y | ||
12 | CONFIG_COMPAT=y | ||
13 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | ||
14 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | ||
15 | CONFIG_FORCE_MAX_ZONEORDER=13 | ||
16 | |||
17 | # | ||
18 | # Code maturity level options | ||
19 | # | ||
20 | CONFIG_EXPERIMENTAL=y | ||
21 | CONFIG_CLEAN_COMPILE=y | ||
22 | CONFIG_LOCK_KERNEL=y | ||
23 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
24 | |||
25 | # | ||
26 | # General setup | ||
27 | # | ||
28 | CONFIG_LOCALVERSION="" | ||
29 | CONFIG_LOCALVERSION_AUTO=y | ||
30 | CONFIG_SWAP=y | ||
31 | CONFIG_SYSVIPC=y | ||
32 | CONFIG_POSIX_MQUEUE=y | ||
33 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
34 | CONFIG_SYSCTL=y | ||
35 | CONFIG_AUDIT=y | ||
36 | CONFIG_AUDITSYSCALL=y | ||
37 | CONFIG_HOTPLUG=y | ||
38 | CONFIG_KOBJECT_UEVENT=y | ||
39 | CONFIG_IKCONFIG=y | ||
40 | CONFIG_IKCONFIG_PROC=y | ||
41 | CONFIG_CPUSETS=y | ||
42 | CONFIG_INITRAMFS_SOURCE="" | ||
43 | # CONFIG_EMBEDDED is not set | ||
44 | CONFIG_KALLSYMS=y | ||
45 | CONFIG_KALLSYMS_ALL=y | ||
46 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
47 | CONFIG_PRINTK=y | ||
48 | CONFIG_BUG=y | ||
49 | CONFIG_BASE_FULL=y | ||
50 | CONFIG_FUTEX=y | ||
51 | CONFIG_EPOLL=y | ||
52 | CONFIG_SHMEM=y | ||
53 | CONFIG_CC_ALIGN_FUNCTIONS=0 | ||
54 | CONFIG_CC_ALIGN_LABELS=0 | ||
55 | CONFIG_CC_ALIGN_LOOPS=0 | ||
56 | CONFIG_CC_ALIGN_JUMPS=0 | ||
57 | # CONFIG_TINY_SHMEM is not set | ||
58 | CONFIG_BASE_SMALL=0 | ||
59 | |||
60 | # | ||
61 | # Loadable module support | ||
62 | # | ||
63 | CONFIG_MODULES=y | ||
64 | CONFIG_MODULE_UNLOAD=y | ||
65 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
66 | CONFIG_OBSOLETE_MODPARM=y | ||
67 | CONFIG_MODVERSIONS=y | ||
68 | CONFIG_MODULE_SRCVERSION_ALL=y | ||
69 | CONFIG_KMOD=y | ||
70 | CONFIG_STOP_MACHINE=y | ||
71 | CONFIG_SYSVIPC_COMPAT=y | ||
72 | |||
73 | # | ||
74 | # Platform support | ||
75 | # | ||
76 | # CONFIG_PPC_ISERIES is not set | ||
77 | CONFIG_PPC_MULTIPLATFORM=y | ||
78 | CONFIG_PPC_PSERIES=y | ||
79 | # CONFIG_PPC_BPA is not set | ||
80 | # CONFIG_PPC_PMAC is not set | ||
81 | # CONFIG_PPC_MAPLE is not set | ||
82 | CONFIG_PPC=y | ||
83 | CONFIG_PPC64=y | ||
84 | CONFIG_PPC_OF=y | ||
85 | CONFIG_XICS=y | ||
86 | CONFIG_MPIC=y | ||
87 | CONFIG_ALTIVEC=y | ||
88 | CONFIG_PPC_SPLPAR=y | ||
89 | CONFIG_KEXEC=y | ||
90 | CONFIG_IBMVIO=y | ||
91 | # CONFIG_U3_DART is not set | ||
92 | # CONFIG_BOOTX_TEXT is not set | ||
93 | # CONFIG_POWER4_ONLY is not set | ||
94 | CONFIG_IOMMU_VMERGE=y | ||
95 | CONFIG_SMP=y | ||
96 | CONFIG_NR_CPUS=128 | ||
97 | CONFIG_ARCH_SELECT_MEMORY_MODEL=y | ||
98 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
99 | CONFIG_ARCH_DISCONTIGMEM_ENABLE=y | ||
100 | CONFIG_ARCH_DISCONTIGMEM_DEFAULT=y | ||
101 | CONFIG_ARCH_SPARSEMEM_ENABLE=y | ||
102 | CONFIG_SELECT_MEMORY_MODEL=y | ||
103 | # CONFIG_FLATMEM_MANUAL is not set | ||
104 | CONFIG_DISCONTIGMEM_MANUAL=y | ||
105 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
106 | CONFIG_DISCONTIGMEM=y | ||
107 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
108 | CONFIG_NEED_MULTIPLE_NODES=y | ||
109 | # CONFIG_SPARSEMEM_STATIC is not set | ||
110 | CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID=y | ||
111 | CONFIG_NODES_SPAN_OTHER_NODES=y | ||
112 | CONFIG_NUMA=y | ||
113 | CONFIG_SCHED_SMT=y | ||
114 | CONFIG_PREEMPT_NONE=y | ||
115 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
116 | # CONFIG_PREEMPT is not set | ||
117 | # CONFIG_PREEMPT_BKL is not set | ||
118 | # CONFIG_HZ_100 is not set | ||
119 | CONFIG_HZ_250=y | ||
120 | # CONFIG_HZ_1000 is not set | ||
121 | CONFIG_HZ=250 | ||
122 | CONFIG_EEH=y | ||
123 | CONFIG_GENERIC_HARDIRQS=y | ||
124 | CONFIG_PPC_RTAS=y | ||
125 | CONFIG_RTAS_PROC=y | ||
126 | CONFIG_RTAS_FLASH=m | ||
127 | CONFIG_SCANLOG=m | ||
128 | CONFIG_LPARCFG=y | ||
129 | CONFIG_SECCOMP=y | ||
130 | CONFIG_BINFMT_ELF=y | ||
131 | # CONFIG_BINFMT_MISC is not set | ||
132 | CONFIG_HOTPLUG_CPU=y | ||
133 | CONFIG_PROC_DEVICETREE=y | ||
134 | # CONFIG_CMDLINE_BOOL is not set | ||
135 | CONFIG_ISA_DMA_API=y | ||
136 | |||
137 | # | ||
138 | # Bus Options | ||
139 | # | ||
140 | CONFIG_PCI=y | ||
141 | CONFIG_PCI_DOMAINS=y | ||
142 | CONFIG_PCI_LEGACY_PROC=y | ||
143 | # CONFIG_PCI_DEBUG is not set | ||
144 | |||
145 | # | ||
146 | # PCCARD (PCMCIA/CardBus) support | ||
147 | # | ||
148 | # CONFIG_PCCARD is not set | ||
149 | |||
150 | # | ||
151 | # PCI Hotplug Support | ||
152 | # | ||
153 | CONFIG_HOTPLUG_PCI=m | ||
154 | # CONFIG_HOTPLUG_PCI_FAKE is not set | ||
155 | # CONFIG_HOTPLUG_PCI_CPCI is not set | ||
156 | # CONFIG_HOTPLUG_PCI_SHPC is not set | ||
157 | CONFIG_HOTPLUG_PCI_RPA=m | ||
158 | CONFIG_HOTPLUG_PCI_RPA_DLPAR=m | ||
159 | |||
160 | # | ||
161 | # Networking | ||
162 | # | ||
163 | CONFIG_NET=y | ||
164 | |||
165 | # | ||
166 | # Networking options | ||
167 | # | ||
168 | CONFIG_PACKET=y | ||
169 | # CONFIG_PACKET_MMAP is not set | ||
170 | CONFIG_UNIX=y | ||
171 | CONFIG_XFRM=y | ||
172 | CONFIG_XFRM_USER=m | ||
173 | CONFIG_NET_KEY=m | ||
174 | CONFIG_INET=y | ||
175 | CONFIG_IP_MULTICAST=y | ||
176 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
177 | CONFIG_IP_FIB_HASH=y | ||
178 | # CONFIG_IP_PNP is not set | ||
179 | CONFIG_NET_IPIP=y | ||
180 | # CONFIG_NET_IPGRE is not set | ||
181 | # CONFIG_IP_MROUTE is not set | ||
182 | # CONFIG_ARPD is not set | ||
183 | CONFIG_SYN_COOKIES=y | ||
184 | CONFIG_INET_AH=m | ||
185 | CONFIG_INET_ESP=m | ||
186 | CONFIG_INET_IPCOMP=m | ||
187 | CONFIG_INET_TUNNEL=y | ||
188 | CONFIG_INET_DIAG=y | ||
189 | CONFIG_INET_TCP_DIAG=y | ||
190 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
191 | CONFIG_TCP_CONG_BIC=y | ||
192 | |||
193 | # | ||
194 | # IP: Virtual Server Configuration | ||
195 | # | ||
196 | # CONFIG_IP_VS is not set | ||
197 | # CONFIG_IPV6 is not set | ||
198 | CONFIG_NETFILTER=y | ||
199 | # CONFIG_NETFILTER_DEBUG is not set | ||
200 | CONFIG_NETFILTER_NETLINK=y | ||
201 | CONFIG_NETFILTER_NETLINK_QUEUE=m | ||
202 | CONFIG_NETFILTER_NETLINK_LOG=m | ||
203 | |||
204 | # | ||
205 | # IP: Netfilter Configuration | ||
206 | # | ||
207 | CONFIG_IP_NF_CONNTRACK=m | ||
208 | CONFIG_IP_NF_CT_ACCT=y | ||
209 | CONFIG_IP_NF_CONNTRACK_MARK=y | ||
210 | CONFIG_IP_NF_CONNTRACK_EVENTS=y | ||
211 | CONFIG_IP_NF_CONNTRACK_NETLINK=m | ||
212 | CONFIG_IP_NF_CT_PROTO_SCTP=m | ||
213 | CONFIG_IP_NF_FTP=m | ||
214 | CONFIG_IP_NF_IRC=m | ||
215 | # CONFIG_IP_NF_NETBIOS_NS is not set | ||
216 | CONFIG_IP_NF_TFTP=m | ||
217 | CONFIG_IP_NF_AMANDA=m | ||
218 | # CONFIG_IP_NF_PPTP is not set | ||
219 | CONFIG_IP_NF_QUEUE=m | ||
220 | CONFIG_IP_NF_IPTABLES=m | ||
221 | CONFIG_IP_NF_MATCH_LIMIT=m | ||
222 | CONFIG_IP_NF_MATCH_IPRANGE=m | ||
223 | CONFIG_IP_NF_MATCH_MAC=m | ||
224 | CONFIG_IP_NF_MATCH_PKTTYPE=m | ||
225 | CONFIG_IP_NF_MATCH_MARK=m | ||
226 | CONFIG_IP_NF_MATCH_MULTIPORT=m | ||
227 | CONFIG_IP_NF_MATCH_TOS=m | ||
228 | CONFIG_IP_NF_MATCH_RECENT=m | ||
229 | CONFIG_IP_NF_MATCH_ECN=m | ||
230 | CONFIG_IP_NF_MATCH_DSCP=m | ||
231 | CONFIG_IP_NF_MATCH_AH_ESP=m | ||
232 | CONFIG_IP_NF_MATCH_LENGTH=m | ||
233 | CONFIG_IP_NF_MATCH_TTL=m | ||
234 | CONFIG_IP_NF_MATCH_TCPMSS=m | ||
235 | CONFIG_IP_NF_MATCH_HELPER=m | ||
236 | CONFIG_IP_NF_MATCH_STATE=m | ||
237 | CONFIG_IP_NF_MATCH_CONNTRACK=m | ||
238 | CONFIG_IP_NF_MATCH_OWNER=m | ||
239 | CONFIG_IP_NF_MATCH_ADDRTYPE=m | ||
240 | CONFIG_IP_NF_MATCH_REALM=m | ||
241 | CONFIG_IP_NF_MATCH_SCTP=m | ||
242 | # CONFIG_IP_NF_MATCH_DCCP is not set | ||
243 | CONFIG_IP_NF_MATCH_COMMENT=m | ||
244 | CONFIG_IP_NF_MATCH_CONNMARK=m | ||
245 | CONFIG_IP_NF_MATCH_CONNBYTES=m | ||
246 | CONFIG_IP_NF_MATCH_HASHLIMIT=m | ||
247 | CONFIG_IP_NF_MATCH_STRING=m | ||
248 | CONFIG_IP_NF_FILTER=m | ||
249 | CONFIG_IP_NF_TARGET_REJECT=m | ||
250 | CONFIG_IP_NF_TARGET_LOG=m | ||
251 | CONFIG_IP_NF_TARGET_ULOG=m | ||
252 | CONFIG_IP_NF_TARGET_TCPMSS=m | ||
253 | CONFIG_IP_NF_TARGET_NFQUEUE=m | ||
254 | CONFIG_IP_NF_NAT=m | ||
255 | CONFIG_IP_NF_NAT_NEEDED=y | ||
256 | CONFIG_IP_NF_TARGET_MASQUERADE=m | ||
257 | CONFIG_IP_NF_TARGET_REDIRECT=m | ||
258 | CONFIG_IP_NF_TARGET_NETMAP=m | ||
259 | CONFIG_IP_NF_TARGET_SAME=m | ||
260 | CONFIG_IP_NF_NAT_SNMP_BASIC=m | ||
261 | CONFIG_IP_NF_NAT_IRC=m | ||
262 | CONFIG_IP_NF_NAT_FTP=m | ||
263 | CONFIG_IP_NF_NAT_TFTP=m | ||
264 | CONFIG_IP_NF_NAT_AMANDA=m | ||
265 | CONFIG_IP_NF_MANGLE=m | ||
266 | CONFIG_IP_NF_TARGET_TOS=m | ||
267 | CONFIG_IP_NF_TARGET_ECN=m | ||
268 | CONFIG_IP_NF_TARGET_DSCP=m | ||
269 | CONFIG_IP_NF_TARGET_MARK=m | ||
270 | CONFIG_IP_NF_TARGET_CLASSIFY=m | ||
271 | CONFIG_IP_NF_TARGET_TTL=m | ||
272 | CONFIG_IP_NF_TARGET_CONNMARK=m | ||
273 | CONFIG_IP_NF_TARGET_CLUSTERIP=m | ||
274 | CONFIG_IP_NF_RAW=m | ||
275 | CONFIG_IP_NF_TARGET_NOTRACK=m | ||
276 | CONFIG_IP_NF_ARPTABLES=m | ||
277 | CONFIG_IP_NF_ARPFILTER=m | ||
278 | CONFIG_IP_NF_ARP_MANGLE=m | ||
279 | |||
280 | # | ||
281 | # DCCP Configuration (EXPERIMENTAL) | ||
282 | # | ||
283 | # CONFIG_IP_DCCP is not set | ||
284 | |||
285 | # | ||
286 | # SCTP Configuration (EXPERIMENTAL) | ||
287 | # | ||
288 | # CONFIG_IP_SCTP is not set | ||
289 | # CONFIG_ATM is not set | ||
290 | # CONFIG_BRIDGE is not set | ||
291 | # CONFIG_VLAN_8021Q is not set | ||
292 | # CONFIG_DECNET is not set | ||
293 | CONFIG_LLC=y | ||
294 | # CONFIG_LLC2 is not set | ||
295 | # CONFIG_IPX is not set | ||
296 | # CONFIG_ATALK is not set | ||
297 | # CONFIG_X25 is not set | ||
298 | # CONFIG_LAPB is not set | ||
299 | # CONFIG_NET_DIVERT is not set | ||
300 | # CONFIG_ECONET is not set | ||
301 | # CONFIG_WAN_ROUTER is not set | ||
302 | # CONFIG_NET_SCHED is not set | ||
303 | CONFIG_NET_CLS_ROUTE=y | ||
304 | |||
305 | # | ||
306 | # Network testing | ||
307 | # | ||
308 | # CONFIG_NET_PKTGEN is not set | ||
309 | # CONFIG_HAMRADIO is not set | ||
310 | # CONFIG_IRDA is not set | ||
311 | # CONFIG_BT is not set | ||
312 | # CONFIG_IEEE80211 is not set | ||
313 | |||
314 | # | ||
315 | # Device Drivers | ||
316 | # | ||
317 | |||
318 | # | ||
319 | # Generic Driver Options | ||
320 | # | ||
321 | CONFIG_STANDALONE=y | ||
322 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
323 | CONFIG_FW_LOADER=y | ||
324 | # CONFIG_DEBUG_DRIVER is not set | ||
325 | |||
326 | # | ||
327 | # Connector - unified userspace <-> kernelspace linker | ||
328 | # | ||
329 | # CONFIG_CONNECTOR is not set | ||
330 | |||
331 | # | ||
332 | # Memory Technology Devices (MTD) | ||
333 | # | ||
334 | # CONFIG_MTD is not set | ||
335 | |||
336 | # | ||
337 | # Parallel port support | ||
338 | # | ||
339 | CONFIG_PARPORT=m | ||
340 | CONFIG_PARPORT_PC=m | ||
341 | # CONFIG_PARPORT_SERIAL is not set | ||
342 | # CONFIG_PARPORT_PC_FIFO is not set | ||
343 | # CONFIG_PARPORT_PC_SUPERIO is not set | ||
344 | # CONFIG_PARPORT_GSC is not set | ||
345 | # CONFIG_PARPORT_1284 is not set | ||
346 | |||
347 | # | ||
348 | # Plug and Play support | ||
349 | # | ||
350 | |||
351 | # | ||
352 | # Block devices | ||
353 | # | ||
354 | CONFIG_BLK_DEV_FD=m | ||
355 | # CONFIG_PARIDE is not set | ||
356 | # CONFIG_BLK_CPQ_DA is not set | ||
357 | # CONFIG_BLK_CPQ_CISS_DA is not set | ||
358 | # CONFIG_BLK_DEV_DAC960 is not set | ||
359 | # CONFIG_BLK_DEV_UMEM is not set | ||
360 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
361 | CONFIG_BLK_DEV_LOOP=y | ||
362 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | ||
363 | CONFIG_BLK_DEV_NBD=m | ||
364 | # CONFIG_BLK_DEV_SX8 is not set | ||
365 | # CONFIG_BLK_DEV_UB is not set | ||
366 | CONFIG_BLK_DEV_RAM=y | ||
367 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
368 | CONFIG_BLK_DEV_RAM_SIZE=65536 | ||
369 | CONFIG_BLK_DEV_INITRD=y | ||
370 | # CONFIG_CDROM_PKTCDVD is not set | ||
371 | |||
372 | # | ||
373 | # IO Schedulers | ||
374 | # | ||
375 | CONFIG_IOSCHED_NOOP=y | ||
376 | CONFIG_IOSCHED_AS=y | ||
377 | CONFIG_IOSCHED_DEADLINE=y | ||
378 | CONFIG_IOSCHED_CFQ=y | ||
379 | # CONFIG_ATA_OVER_ETH is not set | ||
380 | |||
381 | # | ||
382 | # ATA/ATAPI/MFM/RLL support | ||
383 | # | ||
384 | CONFIG_IDE=y | ||
385 | CONFIG_BLK_DEV_IDE=y | ||
386 | |||
387 | # | ||
388 | # Please see Documentation/ide.txt for help/info on IDE drives | ||
389 | # | ||
390 | # CONFIG_BLK_DEV_IDE_SATA is not set | ||
391 | CONFIG_BLK_DEV_IDEDISK=y | ||
392 | # CONFIG_IDEDISK_MULTI_MODE is not set | ||
393 | CONFIG_BLK_DEV_IDECD=y | ||
394 | # CONFIG_BLK_DEV_IDETAPE is not set | ||
395 | # CONFIG_BLK_DEV_IDEFLOPPY is not set | ||
396 | # CONFIG_BLK_DEV_IDESCSI is not set | ||
397 | # CONFIG_IDE_TASK_IOCTL is not set | ||
398 | |||
399 | # | ||
400 | # IDE chipset support/bugfixes | ||
401 | # | ||
402 | CONFIG_IDE_GENERIC=y | ||
403 | CONFIG_BLK_DEV_IDEPCI=y | ||
404 | CONFIG_IDEPCI_SHARE_IRQ=y | ||
405 | # CONFIG_BLK_DEV_OFFBOARD is not set | ||
406 | CONFIG_BLK_DEV_GENERIC=y | ||
407 | # CONFIG_BLK_DEV_OPTI621 is not set | ||
408 | CONFIG_BLK_DEV_SL82C105=y | ||
409 | CONFIG_BLK_DEV_IDEDMA_PCI=y | ||
410 | # CONFIG_BLK_DEV_IDEDMA_FORCED is not set | ||
411 | CONFIG_IDEDMA_PCI_AUTO=y | ||
412 | # CONFIG_IDEDMA_ONLYDISK is not set | ||
413 | # CONFIG_BLK_DEV_AEC62XX is not set | ||
414 | # CONFIG_BLK_DEV_ALI15X3 is not set | ||
415 | CONFIG_BLK_DEV_AMD74XX=y | ||
416 | # CONFIG_BLK_DEV_CMD64X is not set | ||
417 | # CONFIG_BLK_DEV_TRIFLEX is not set | ||
418 | # CONFIG_BLK_DEV_CY82C693 is not set | ||
419 | # CONFIG_BLK_DEV_CS5520 is not set | ||
420 | # CONFIG_BLK_DEV_CS5530 is not set | ||
421 | # CONFIG_BLK_DEV_HPT34X is not set | ||
422 | # CONFIG_BLK_DEV_HPT366 is not set | ||
423 | # CONFIG_BLK_DEV_SC1200 is not set | ||
424 | # CONFIG_BLK_DEV_PIIX is not set | ||
425 | # CONFIG_BLK_DEV_IT821X is not set | ||
426 | # CONFIG_BLK_DEV_NS87415 is not set | ||
427 | # CONFIG_BLK_DEV_PDC202XX_OLD is not set | ||
428 | # CONFIG_BLK_DEV_PDC202XX_NEW is not set | ||
429 | # CONFIG_BLK_DEV_SVWKS is not set | ||
430 | # CONFIG_BLK_DEV_SIIMAGE is not set | ||
431 | # CONFIG_BLK_DEV_SLC90E66 is not set | ||
432 | # CONFIG_BLK_DEV_TRM290 is not set | ||
433 | # CONFIG_BLK_DEV_VIA82CXXX is not set | ||
434 | # CONFIG_IDE_ARM is not set | ||
435 | CONFIG_BLK_DEV_IDEDMA=y | ||
436 | # CONFIG_IDEDMA_IVB is not set | ||
437 | CONFIG_IDEDMA_AUTO=y | ||
438 | # CONFIG_BLK_DEV_HD is not set | ||
439 | |||
440 | # | ||
441 | # SCSI device support | ||
442 | # | ||
443 | # CONFIG_RAID_ATTRS is not set | ||
444 | CONFIG_SCSI=y | ||
445 | CONFIG_SCSI_PROC_FS=y | ||
446 | |||
447 | # | ||
448 | # SCSI support type (disk, tape, CD-ROM) | ||
449 | # | ||
450 | CONFIG_BLK_DEV_SD=y | ||
451 | CONFIG_CHR_DEV_ST=y | ||
452 | # CONFIG_CHR_DEV_OSST is not set | ||
453 | CONFIG_BLK_DEV_SR=y | ||
454 | CONFIG_BLK_DEV_SR_VENDOR=y | ||
455 | CONFIG_CHR_DEV_SG=y | ||
456 | # CONFIG_CHR_DEV_SCH is not set | ||
457 | |||
458 | # | ||
459 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
460 | # | ||
461 | CONFIG_SCSI_MULTI_LUN=y | ||
462 | CONFIG_SCSI_CONSTANTS=y | ||
463 | # CONFIG_SCSI_LOGGING is not set | ||
464 | |||
465 | # | ||
466 | # SCSI Transport Attributes | ||
467 | # | ||
468 | CONFIG_SCSI_SPI_ATTRS=y | ||
469 | CONFIG_SCSI_FC_ATTRS=y | ||
470 | CONFIG_SCSI_ISCSI_ATTRS=m | ||
471 | # CONFIG_SCSI_SAS_ATTRS is not set | ||
472 | |||
473 | # | ||
474 | # SCSI low-level drivers | ||
475 | # | ||
476 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | ||
477 | # CONFIG_SCSI_3W_9XXX is not set | ||
478 | # CONFIG_SCSI_ACARD is not set | ||
479 | # CONFIG_SCSI_AACRAID is not set | ||
480 | # CONFIG_SCSI_AIC7XXX is not set | ||
481 | # CONFIG_SCSI_AIC7XXX_OLD is not set | ||
482 | # CONFIG_SCSI_AIC79XX is not set | ||
483 | # CONFIG_MEGARAID_NEWGEN is not set | ||
484 | # CONFIG_MEGARAID_LEGACY is not set | ||
485 | # CONFIG_MEGARAID_SAS is not set | ||
486 | # CONFIG_SCSI_SATA is not set | ||
487 | # CONFIG_SCSI_BUSLOGIC is not set | ||
488 | # CONFIG_SCSI_DMX3191D is not set | ||
489 | # CONFIG_SCSI_EATA is not set | ||
490 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | ||
491 | # CONFIG_SCSI_GDTH is not set | ||
492 | # CONFIG_SCSI_IPS is not set | ||
493 | CONFIG_SCSI_IBMVSCSI=y | ||
494 | # CONFIG_SCSI_INITIO is not set | ||
495 | # CONFIG_SCSI_INIA100 is not set | ||
496 | # CONFIG_SCSI_PPA is not set | ||
497 | # CONFIG_SCSI_IMM is not set | ||
498 | CONFIG_SCSI_SYM53C8XX_2=y | ||
499 | CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=0 | ||
500 | CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 | ||
501 | CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 | ||
502 | # CONFIG_SCSI_SYM53C8XX_IOMAPPED is not set | ||
503 | CONFIG_SCSI_IPR=y | ||
504 | CONFIG_SCSI_IPR_TRACE=y | ||
505 | CONFIG_SCSI_IPR_DUMP=y | ||
506 | # CONFIG_SCSI_QLOGIC_FC is not set | ||
507 | # CONFIG_SCSI_QLOGIC_1280 is not set | ||
508 | CONFIG_SCSI_QLA2XXX=y | ||
509 | CONFIG_SCSI_QLA21XX=m | ||
510 | CONFIG_SCSI_QLA22XX=m | ||
511 | CONFIG_SCSI_QLA2300=m | ||
512 | CONFIG_SCSI_QLA2322=m | ||
513 | CONFIG_SCSI_QLA6312=m | ||
514 | CONFIG_SCSI_QLA24XX=m | ||
515 | CONFIG_SCSI_LPFC=m | ||
516 | # CONFIG_SCSI_DC395x is not set | ||
517 | # CONFIG_SCSI_DC390T is not set | ||
518 | # CONFIG_SCSI_DEBUG is not set | ||
519 | |||
520 | # | ||
521 | # Multi-device support (RAID and LVM) | ||
522 | # | ||
523 | CONFIG_MD=y | ||
524 | CONFIG_BLK_DEV_MD=y | ||
525 | CONFIG_MD_LINEAR=y | ||
526 | CONFIG_MD_RAID0=y | ||
527 | CONFIG_MD_RAID1=y | ||
528 | CONFIG_MD_RAID10=m | ||
529 | CONFIG_MD_RAID5=y | ||
530 | CONFIG_MD_RAID6=m | ||
531 | CONFIG_MD_MULTIPATH=m | ||
532 | CONFIG_MD_FAULTY=m | ||
533 | CONFIG_BLK_DEV_DM=y | ||
534 | CONFIG_DM_CRYPT=m | ||
535 | CONFIG_DM_SNAPSHOT=m | ||
536 | CONFIG_DM_MIRROR=m | ||
537 | CONFIG_DM_ZERO=m | ||
538 | CONFIG_DM_MULTIPATH=m | ||
539 | CONFIG_DM_MULTIPATH_EMC=m | ||
540 | |||
541 | # | ||
542 | # Fusion MPT device support | ||
543 | # | ||
544 | # CONFIG_FUSION is not set | ||
545 | # CONFIG_FUSION_SPI is not set | ||
546 | # CONFIG_FUSION_FC is not set | ||
547 | # CONFIG_FUSION_SAS is not set | ||
548 | |||
549 | # | ||
550 | # IEEE 1394 (FireWire) support | ||
551 | # | ||
552 | # CONFIG_IEEE1394 is not set | ||
553 | |||
554 | # | ||
555 | # I2O device support | ||
556 | # | ||
557 | # CONFIG_I2O is not set | ||
558 | |||
559 | # | ||
560 | # Macintosh device drivers | ||
561 | # | ||
562 | |||
563 | # | ||
564 | # Network device support | ||
565 | # | ||
566 | CONFIG_NETDEVICES=y | ||
567 | CONFIG_DUMMY=m | ||
568 | CONFIG_BONDING=m | ||
569 | # CONFIG_EQUALIZER is not set | ||
570 | CONFIG_TUN=m | ||
571 | |||
572 | # | ||
573 | # ARCnet devices | ||
574 | # | ||
575 | # CONFIG_ARCNET is not set | ||
576 | |||
577 | # | ||
578 | # PHY device support | ||
579 | # | ||
580 | # CONFIG_PHYLIB is not set | ||
581 | |||
582 | # | ||
583 | # Ethernet (10 or 100Mbit) | ||
584 | # | ||
585 | CONFIG_NET_ETHERNET=y | ||
586 | CONFIG_MII=y | ||
587 | # CONFIG_HAPPYMEAL is not set | ||
588 | # CONFIG_SUNGEM is not set | ||
589 | # CONFIG_CASSINI is not set | ||
590 | CONFIG_NET_VENDOR_3COM=y | ||
591 | CONFIG_VORTEX=y | ||
592 | # CONFIG_TYPHOON is not set | ||
593 | |||
594 | # | ||
595 | # Tulip family network device support | ||
596 | # | ||
597 | # CONFIG_NET_TULIP is not set | ||
598 | # CONFIG_HP100 is not set | ||
599 | CONFIG_IBMVETH=y | ||
600 | CONFIG_NET_PCI=y | ||
601 | CONFIG_PCNET32=y | ||
602 | # CONFIG_AMD8111_ETH is not set | ||
603 | # CONFIG_ADAPTEC_STARFIRE is not set | ||
604 | # CONFIG_B44 is not set | ||
605 | # CONFIG_FORCEDETH is not set | ||
606 | # CONFIG_DGRS is not set | ||
607 | # CONFIG_EEPRO100 is not set | ||
608 | CONFIG_E100=y | ||
609 | # CONFIG_FEALNX is not set | ||
610 | # CONFIG_NATSEMI is not set | ||
611 | # CONFIG_NE2K_PCI is not set | ||
612 | # CONFIG_8139CP is not set | ||
613 | # CONFIG_8139TOO is not set | ||
614 | # CONFIG_SIS900 is not set | ||
615 | # CONFIG_EPIC100 is not set | ||
616 | # CONFIG_SUNDANCE is not set | ||
617 | # CONFIG_VIA_RHINE is not set | ||
618 | # CONFIG_NET_POCKET is not set | ||
619 | |||
620 | # | ||
621 | # Ethernet (1000 Mbit) | ||
622 | # | ||
623 | CONFIG_ACENIC=y | ||
624 | CONFIG_ACENIC_OMIT_TIGON_I=y | ||
625 | # CONFIG_DL2K is not set | ||
626 | CONFIG_E1000=y | ||
627 | # CONFIG_E1000_NAPI is not set | ||
628 | # CONFIG_NS83820 is not set | ||
629 | # CONFIG_HAMACHI is not set | ||
630 | # CONFIG_YELLOWFIN is not set | ||
631 | # CONFIG_R8169 is not set | ||
632 | # CONFIG_SIS190 is not set | ||
633 | # CONFIG_SKGE is not set | ||
634 | # CONFIG_SK98LIN is not set | ||
635 | # CONFIG_VIA_VELOCITY is not set | ||
636 | CONFIG_TIGON3=y | ||
637 | # CONFIG_BNX2 is not set | ||
638 | # CONFIG_MV643XX_ETH is not set | ||
639 | |||
640 | # | ||
641 | # Ethernet (10000 Mbit) | ||
642 | # | ||
643 | # CONFIG_CHELSIO_T1 is not set | ||
644 | CONFIG_IXGB=m | ||
645 | # CONFIG_IXGB_NAPI is not set | ||
646 | CONFIG_S2IO=m | ||
647 | # CONFIG_S2IO_NAPI is not set | ||
648 | # CONFIG_2BUFF_MODE is not set | ||
649 | |||
650 | # | ||
651 | # Token Ring devices | ||
652 | # | ||
653 | CONFIG_TR=y | ||
654 | CONFIG_IBMOL=y | ||
655 | # CONFIG_3C359 is not set | ||
656 | # CONFIG_TMS380TR is not set | ||
657 | |||
658 | # | ||
659 | # Wireless LAN (non-hamradio) | ||
660 | # | ||
661 | # CONFIG_NET_RADIO is not set | ||
662 | |||
663 | # | ||
664 | # Wan interfaces | ||
665 | # | ||
666 | # CONFIG_WAN is not set | ||
667 | # CONFIG_FDDI is not set | ||
668 | # CONFIG_HIPPI is not set | ||
669 | # CONFIG_PLIP is not set | ||
670 | CONFIG_PPP=m | ||
671 | # CONFIG_PPP_MULTILINK is not set | ||
672 | # CONFIG_PPP_FILTER is not set | ||
673 | CONFIG_PPP_ASYNC=m | ||
674 | CONFIG_PPP_SYNC_TTY=m | ||
675 | CONFIG_PPP_DEFLATE=m | ||
676 | CONFIG_PPP_BSDCOMP=m | ||
677 | CONFIG_PPPOE=m | ||
678 | # CONFIG_SLIP is not set | ||
679 | # CONFIG_NET_FC is not set | ||
680 | # CONFIG_SHAPER is not set | ||
681 | CONFIG_NETCONSOLE=y | ||
682 | CONFIG_NETPOLL=y | ||
683 | CONFIG_NETPOLL_RX=y | ||
684 | CONFIG_NETPOLL_TRAP=y | ||
685 | CONFIG_NET_POLL_CONTROLLER=y | ||
686 | |||
687 | # | ||
688 | # ISDN subsystem | ||
689 | # | ||
690 | # CONFIG_ISDN is not set | ||
691 | |||
692 | # | ||
693 | # Telephony Support | ||
694 | # | ||
695 | # CONFIG_PHONE is not set | ||
696 | |||
697 | # | ||
698 | # Input device support | ||
699 | # | ||
700 | CONFIG_INPUT=y | ||
701 | |||
702 | # | ||
703 | # Userland interfaces | ||
704 | # | ||
705 | CONFIG_INPUT_MOUSEDEV=y | ||
706 | # CONFIG_INPUT_MOUSEDEV_PSAUX is not set | ||
707 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | ||
708 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | ||
709 | # CONFIG_INPUT_JOYDEV is not set | ||
710 | # CONFIG_INPUT_TSDEV is not set | ||
711 | # CONFIG_INPUT_EVDEV is not set | ||
712 | # CONFIG_INPUT_EVBUG is not set | ||
713 | |||
714 | # | ||
715 | # Input Device Drivers | ||
716 | # | ||
717 | CONFIG_INPUT_KEYBOARD=y | ||
718 | CONFIG_KEYBOARD_ATKBD=y | ||
719 | # CONFIG_KEYBOARD_SUNKBD is not set | ||
720 | # CONFIG_KEYBOARD_LKKBD is not set | ||
721 | # CONFIG_KEYBOARD_XTKBD is not set | ||
722 | # CONFIG_KEYBOARD_NEWTON is not set | ||
723 | CONFIG_INPUT_MOUSE=y | ||
724 | CONFIG_MOUSE_PS2=y | ||
725 | # CONFIG_MOUSE_SERIAL is not set | ||
726 | # CONFIG_MOUSE_VSXXXAA is not set | ||
727 | # CONFIG_INPUT_JOYSTICK is not set | ||
728 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
729 | CONFIG_INPUT_MISC=y | ||
730 | CONFIG_INPUT_PCSPKR=m | ||
731 | # CONFIG_INPUT_UINPUT is not set | ||
732 | |||
733 | # | ||
734 | # Hardware I/O ports | ||
735 | # | ||
736 | CONFIG_SERIO=y | ||
737 | CONFIG_SERIO_I8042=y | ||
738 | # CONFIG_SERIO_SERPORT is not set | ||
739 | # CONFIG_SERIO_PARKBD is not set | ||
740 | # CONFIG_SERIO_PCIPS2 is not set | ||
741 | CONFIG_SERIO_LIBPS2=y | ||
742 | # CONFIG_SERIO_RAW is not set | ||
743 | # CONFIG_GAMEPORT is not set | ||
744 | |||
745 | # | ||
746 | # Character devices | ||
747 | # | ||
748 | CONFIG_VT=y | ||
749 | CONFIG_VT_CONSOLE=y | ||
750 | CONFIG_HW_CONSOLE=y | ||
751 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
752 | |||
753 | # | ||
754 | # Serial drivers | ||
755 | # | ||
756 | CONFIG_SERIAL_8250=y | ||
757 | CONFIG_SERIAL_8250_CONSOLE=y | ||
758 | CONFIG_SERIAL_8250_NR_UARTS=4 | ||
759 | # CONFIG_SERIAL_8250_EXTENDED is not set | ||
760 | |||
761 | # | ||
762 | # Non-8250 serial port support | ||
763 | # | ||
764 | CONFIG_SERIAL_CORE=y | ||
765 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
766 | CONFIG_SERIAL_ICOM=m | ||
767 | # CONFIG_SERIAL_JSM is not set | ||
768 | CONFIG_UNIX98_PTYS=y | ||
769 | CONFIG_LEGACY_PTYS=y | ||
770 | CONFIG_LEGACY_PTY_COUNT=256 | ||
771 | # CONFIG_PRINTER is not set | ||
772 | # CONFIG_PPDEV is not set | ||
773 | # CONFIG_TIPAR is not set | ||
774 | CONFIG_HVC_CONSOLE=y | ||
775 | CONFIG_HVCS=m | ||
776 | |||
777 | # | ||
778 | # IPMI | ||
779 | # | ||
780 | # CONFIG_IPMI_HANDLER is not set | ||
781 | |||
782 | # | ||
783 | # Watchdog Cards | ||
784 | # | ||
785 | # CONFIG_WATCHDOG is not set | ||
786 | # CONFIG_RTC is not set | ||
787 | # CONFIG_DTLK is not set | ||
788 | # CONFIG_R3964 is not set | ||
789 | # CONFIG_APPLICOM is not set | ||
790 | |||
791 | # | ||
792 | # Ftape, the floppy tape device driver | ||
793 | # | ||
794 | # CONFIG_AGP is not set | ||
795 | # CONFIG_DRM is not set | ||
796 | CONFIG_RAW_DRIVER=y | ||
797 | CONFIG_MAX_RAW_DEVS=1024 | ||
798 | # CONFIG_HANGCHECK_TIMER is not set | ||
799 | |||
800 | # | ||
801 | # TPM devices | ||
802 | # | ||
803 | # CONFIG_TCG_TPM is not set | ||
804 | |||
805 | # | ||
806 | # I2C support | ||
807 | # | ||
808 | CONFIG_I2C=y | ||
809 | # CONFIG_I2C_CHARDEV is not set | ||
810 | |||
811 | # | ||
812 | # I2C Algorithms | ||
813 | # | ||
814 | CONFIG_I2C_ALGOBIT=y | ||
815 | # CONFIG_I2C_ALGOPCF is not set | ||
816 | # CONFIG_I2C_ALGOPCA is not set | ||
817 | |||
818 | # | ||
819 | # I2C Hardware Bus support | ||
820 | # | ||
821 | # CONFIG_I2C_ALI1535 is not set | ||
822 | # CONFIG_I2C_ALI1563 is not set | ||
823 | # CONFIG_I2C_ALI15X3 is not set | ||
824 | # CONFIG_I2C_AMD756 is not set | ||
825 | # CONFIG_I2C_AMD8111 is not set | ||
826 | # CONFIG_I2C_I801 is not set | ||
827 | # CONFIG_I2C_I810 is not set | ||
828 | # CONFIG_I2C_PIIX4 is not set | ||
829 | # CONFIG_I2C_NFORCE2 is not set | ||
830 | # CONFIG_I2C_PARPORT is not set | ||
831 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
832 | # CONFIG_I2C_PROSAVAGE is not set | ||
833 | # CONFIG_I2C_SAVAGE4 is not set | ||
834 | # CONFIG_SCx200_ACB is not set | ||
835 | # CONFIG_I2C_SIS5595 is not set | ||
836 | # CONFIG_I2C_SIS630 is not set | ||
837 | # CONFIG_I2C_SIS96X is not set | ||
838 | # CONFIG_I2C_STUB is not set | ||
839 | # CONFIG_I2C_VIA is not set | ||
840 | # CONFIG_I2C_VIAPRO is not set | ||
841 | # CONFIG_I2C_VOODOO3 is not set | ||
842 | # CONFIG_I2C_PCA_ISA is not set | ||
843 | |||
844 | # | ||
845 | # Miscellaneous I2C Chip support | ||
846 | # | ||
847 | # CONFIG_SENSORS_DS1337 is not set | ||
848 | # CONFIG_SENSORS_DS1374 is not set | ||
849 | # CONFIG_SENSORS_EEPROM is not set | ||
850 | # CONFIG_SENSORS_PCF8574 is not set | ||
851 | # CONFIG_SENSORS_PCA9539 is not set | ||
852 | # CONFIG_SENSORS_PCF8591 is not set | ||
853 | # CONFIG_SENSORS_RTC8564 is not set | ||
854 | # CONFIG_SENSORS_MAX6875 is not set | ||
855 | # CONFIG_I2C_DEBUG_CORE is not set | ||
856 | # CONFIG_I2C_DEBUG_ALGO is not set | ||
857 | # CONFIG_I2C_DEBUG_BUS is not set | ||
858 | # CONFIG_I2C_DEBUG_CHIP is not set | ||
859 | |||
860 | # | ||
861 | # Dallas's 1-wire bus | ||
862 | # | ||
863 | # CONFIG_W1 is not set | ||
864 | |||
865 | # | ||
866 | # Hardware Monitoring support | ||
867 | # | ||
868 | # CONFIG_HWMON is not set | ||
869 | # CONFIG_HWMON_VID is not set | ||
870 | |||
871 | # | ||
872 | # Misc devices | ||
873 | # | ||
874 | |||
875 | # | ||
876 | # Multimedia Capabilities Port drivers | ||
877 | # | ||
878 | |||
879 | # | ||
880 | # Multimedia devices | ||
881 | # | ||
882 | # CONFIG_VIDEO_DEV is not set | ||
883 | |||
884 | # | ||
885 | # Digital Video Broadcasting Devices | ||
886 | # | ||
887 | # CONFIG_DVB is not set | ||
888 | |||
889 | # | ||
890 | # Graphics support | ||
891 | # | ||
892 | CONFIG_FB=y | ||
893 | CONFIG_FB_CFB_FILLRECT=y | ||
894 | CONFIG_FB_CFB_COPYAREA=y | ||
895 | CONFIG_FB_CFB_IMAGEBLIT=y | ||
896 | CONFIG_FB_SOFT_CURSOR=y | ||
897 | CONFIG_FB_MACMODES=y | ||
898 | CONFIG_FB_MODE_HELPERS=y | ||
899 | CONFIG_FB_TILEBLITTING=y | ||
900 | # CONFIG_FB_CIRRUS is not set | ||
901 | # CONFIG_FB_PM2 is not set | ||
902 | # CONFIG_FB_CYBER2000 is not set | ||
903 | CONFIG_FB_OF=y | ||
904 | # CONFIG_FB_CT65550 is not set | ||
905 | # CONFIG_FB_ASILIANT is not set | ||
906 | # CONFIG_FB_IMSTT is not set | ||
907 | # CONFIG_FB_VGA16 is not set | ||
908 | # CONFIG_FB_NVIDIA is not set | ||
909 | # CONFIG_FB_RIVA is not set | ||
910 | CONFIG_FB_MATROX=y | ||
911 | CONFIG_FB_MATROX_MILLENIUM=y | ||
912 | CONFIG_FB_MATROX_MYSTIQUE=y | ||
913 | CONFIG_FB_MATROX_G=y | ||
914 | # CONFIG_FB_MATROX_I2C is not set | ||
915 | CONFIG_FB_MATROX_MULTIHEAD=y | ||
916 | # CONFIG_FB_RADEON_OLD is not set | ||
917 | CONFIG_FB_RADEON=y | ||
918 | CONFIG_FB_RADEON_I2C=y | ||
919 | # CONFIG_FB_RADEON_DEBUG is not set | ||
920 | # CONFIG_FB_ATY128 is not set | ||
921 | # CONFIG_FB_ATY is not set | ||
922 | # CONFIG_FB_SAVAGE is not set | ||
923 | # CONFIG_FB_SIS is not set | ||
924 | # CONFIG_FB_NEOMAGIC is not set | ||
925 | # CONFIG_FB_KYRO is not set | ||
926 | # CONFIG_FB_3DFX is not set | ||
927 | # CONFIG_FB_VOODOO1 is not set | ||
928 | # CONFIG_FB_CYBLA is not set | ||
929 | # CONFIG_FB_TRIDENT is not set | ||
930 | # CONFIG_FB_S1D13XXX is not set | ||
931 | # CONFIG_FB_VIRTUAL is not set | ||
932 | |||
933 | # | ||
934 | # Console display driver support | ||
935 | # | ||
936 | # CONFIG_VGA_CONSOLE is not set | ||
937 | CONFIG_DUMMY_CONSOLE=y | ||
938 | CONFIG_FRAMEBUFFER_CONSOLE=y | ||
939 | # CONFIG_FONTS is not set | ||
940 | CONFIG_FONT_8x8=y | ||
941 | CONFIG_FONT_8x16=y | ||
942 | |||
943 | # | ||
944 | # Logo configuration | ||
945 | # | ||
946 | CONFIG_LOGO=y | ||
947 | CONFIG_LOGO_LINUX_MONO=y | ||
948 | CONFIG_LOGO_LINUX_VGA16=y | ||
949 | CONFIG_LOGO_LINUX_CLUT224=y | ||
950 | CONFIG_BACKLIGHT_LCD_SUPPORT=y | ||
951 | CONFIG_BACKLIGHT_CLASS_DEVICE=m | ||
952 | CONFIG_BACKLIGHT_DEVICE=y | ||
953 | CONFIG_LCD_CLASS_DEVICE=m | ||
954 | CONFIG_LCD_DEVICE=y | ||
955 | |||
956 | # | ||
957 | # Sound | ||
958 | # | ||
959 | # CONFIG_SOUND is not set | ||
960 | |||
961 | # | ||
962 | # USB support | ||
963 | # | ||
964 | CONFIG_USB_ARCH_HAS_HCD=y | ||
965 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
966 | CONFIG_USB=y | ||
967 | # CONFIG_USB_DEBUG is not set | ||
968 | |||
969 | # | ||
970 | # Miscellaneous USB options | ||
971 | # | ||
972 | CONFIG_USB_DEVICEFS=y | ||
973 | # CONFIG_USB_BANDWIDTH is not set | ||
974 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
975 | # CONFIG_USB_OTG is not set | ||
976 | |||
977 | # | ||
978 | # USB Host Controller Drivers | ||
979 | # | ||
980 | CONFIG_USB_EHCI_HCD=y | ||
981 | # CONFIG_USB_EHCI_SPLIT_ISO is not set | ||
982 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | ||
983 | # CONFIG_USB_ISP116X_HCD is not set | ||
984 | CONFIG_USB_OHCI_HCD=y | ||
985 | # CONFIG_USB_OHCI_BIG_ENDIAN is not set | ||
986 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
987 | # CONFIG_USB_UHCI_HCD is not set | ||
988 | # CONFIG_USB_SL811_HCD is not set | ||
989 | |||
990 | # | ||
991 | # USB Device Class drivers | ||
992 | # | ||
993 | # CONFIG_USB_BLUETOOTH_TTY is not set | ||
994 | # CONFIG_USB_ACM is not set | ||
995 | # CONFIG_USB_PRINTER is not set | ||
996 | |||
997 | # | ||
998 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' may also be needed; see USB_STORAGE Help for more information | ||
999 | # | ||
1000 | CONFIG_USB_STORAGE=y | ||
1001 | # CONFIG_USB_STORAGE_DEBUG is not set | ||
1002 | # CONFIG_USB_STORAGE_DATAFAB is not set | ||
1003 | # CONFIG_USB_STORAGE_FREECOM is not set | ||
1004 | # CONFIG_USB_STORAGE_ISD200 is not set | ||
1005 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1006 | # CONFIG_USB_STORAGE_USBAT is not set | ||
1007 | # CONFIG_USB_STORAGE_SDDR09 is not set | ||
1008 | # CONFIG_USB_STORAGE_SDDR55 is not set | ||
1009 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | ||
1010 | |||
1011 | # | ||
1012 | # USB Input Devices | ||
1013 | # | ||
1014 | CONFIG_USB_HID=y | ||
1015 | CONFIG_USB_HIDINPUT=y | ||
1016 | # CONFIG_HID_FF is not set | ||
1017 | CONFIG_USB_HIDDEV=y | ||
1018 | # CONFIG_USB_AIPTEK is not set | ||
1019 | # CONFIG_USB_WACOM is not set | ||
1020 | # CONFIG_USB_ACECAD is not set | ||
1021 | # CONFIG_USB_KBTAB is not set | ||
1022 | # CONFIG_USB_POWERMATE is not set | ||
1023 | # CONFIG_USB_MTOUCH is not set | ||
1024 | # CONFIG_USB_ITMTOUCH is not set | ||
1025 | # CONFIG_USB_EGALAX is not set | ||
1026 | # CONFIG_USB_YEALINK is not set | ||
1027 | # CONFIG_USB_XPAD is not set | ||
1028 | # CONFIG_USB_ATI_REMOTE is not set | ||
1029 | # CONFIG_USB_KEYSPAN_REMOTE is not set | ||
1030 | # CONFIG_USB_APPLETOUCH is not set | ||
1031 | |||
1032 | # | ||
1033 | # USB Imaging devices | ||
1034 | # | ||
1035 | # CONFIG_USB_MDC800 is not set | ||
1036 | # CONFIG_USB_MICROTEK is not set | ||
1037 | |||
1038 | # | ||
1039 | # USB Multimedia devices | ||
1040 | # | ||
1041 | # CONFIG_USB_DABUSB is not set | ||
1042 | |||
1043 | # | ||
1044 | # Video4Linux support is needed for USB Multimedia device support | ||
1045 | # | ||
1046 | |||
1047 | # | ||
1048 | # USB Network Adapters | ||
1049 | # | ||
1050 | # CONFIG_USB_CATC is not set | ||
1051 | # CONFIG_USB_KAWETH is not set | ||
1052 | # CONFIG_USB_PEGASUS is not set | ||
1053 | # CONFIG_USB_RTL8150 is not set | ||
1054 | # CONFIG_USB_USBNET is not set | ||
1055 | CONFIG_USB_MON=y | ||
1056 | |||
1057 | # | ||
1058 | # USB port drivers | ||
1059 | # | ||
1060 | # CONFIG_USB_USS720 is not set | ||
1061 | |||
1062 | # | ||
1063 | # USB Serial Converter support | ||
1064 | # | ||
1065 | # CONFIG_USB_SERIAL is not set | ||
1066 | |||
1067 | # | ||
1068 | # USB Miscellaneous drivers | ||
1069 | # | ||
1070 | # CONFIG_USB_EMI62 is not set | ||
1071 | # CONFIG_USB_EMI26 is not set | ||
1072 | # CONFIG_USB_AUERSWALD is not set | ||
1073 | # CONFIG_USB_RIO500 is not set | ||
1074 | # CONFIG_USB_LEGOTOWER is not set | ||
1075 | # CONFIG_USB_LCD is not set | ||
1076 | # CONFIG_USB_LED is not set | ||
1077 | # CONFIG_USB_CYTHERM is not set | ||
1078 | # CONFIG_USB_PHIDGETKIT is not set | ||
1079 | # CONFIG_USB_PHIDGETSERVO is not set | ||
1080 | # CONFIG_USB_IDMOUSE is not set | ||
1081 | # CONFIG_USB_SISUSBVGA is not set | ||
1082 | # CONFIG_USB_LD is not set | ||
1083 | # CONFIG_USB_TEST is not set | ||
1084 | |||
1085 | # | ||
1086 | # USB DSL modem support | ||
1087 | # | ||
1088 | |||
1089 | # | ||
1090 | # USB Gadget Support | ||
1091 | # | ||
1092 | # CONFIG_USB_GADGET is not set | ||
1093 | |||
1094 | # | ||
1095 | # MMC/SD Card support | ||
1096 | # | ||
1097 | # CONFIG_MMC is not set | ||
1098 | |||
1099 | # | ||
1100 | # InfiniBand support | ||
1101 | # | ||
1102 | CONFIG_INFINIBAND=m | ||
1103 | # CONFIG_INFINIBAND_USER_MAD is not set | ||
1104 | # CONFIG_INFINIBAND_USER_ACCESS is not set | ||
1105 | CONFIG_INFINIBAND_MTHCA=m | ||
1106 | # CONFIG_INFINIBAND_MTHCA_DEBUG is not set | ||
1107 | CONFIG_INFINIBAND_IPOIB=m | ||
1108 | # CONFIG_INFINIBAND_IPOIB_DEBUG is not set | ||
1109 | |||
1110 | # | ||
1111 | # SN Devices | ||
1112 | # | ||
1113 | |||
1114 | # | ||
1115 | # File systems | ||
1116 | # | ||
1117 | CONFIG_EXT2_FS=y | ||
1118 | CONFIG_EXT2_FS_XATTR=y | ||
1119 | CONFIG_EXT2_FS_POSIX_ACL=y | ||
1120 | CONFIG_EXT2_FS_SECURITY=y | ||
1121 | CONFIG_EXT2_FS_XIP=y | ||
1122 | CONFIG_FS_XIP=y | ||
1123 | CONFIG_EXT3_FS=y | ||
1124 | CONFIG_EXT3_FS_XATTR=y | ||
1125 | CONFIG_EXT3_FS_POSIX_ACL=y | ||
1126 | CONFIG_EXT3_FS_SECURITY=y | ||
1127 | CONFIG_JBD=y | ||
1128 | # CONFIG_JBD_DEBUG is not set | ||
1129 | CONFIG_FS_MBCACHE=y | ||
1130 | CONFIG_REISERFS_FS=y | ||
1131 | # CONFIG_REISERFS_CHECK is not set | ||
1132 | # CONFIG_REISERFS_PROC_INFO is not set | ||
1133 | CONFIG_REISERFS_FS_XATTR=y | ||
1134 | CONFIG_REISERFS_FS_POSIX_ACL=y | ||
1135 | CONFIG_REISERFS_FS_SECURITY=y | ||
1136 | CONFIG_JFS_FS=m | ||
1137 | CONFIG_JFS_POSIX_ACL=y | ||
1138 | CONFIG_JFS_SECURITY=y | ||
1139 | # CONFIG_JFS_DEBUG is not set | ||
1140 | # CONFIG_JFS_STATISTICS is not set | ||
1141 | CONFIG_FS_POSIX_ACL=y | ||
1142 | CONFIG_XFS_FS=m | ||
1143 | CONFIG_XFS_EXPORT=y | ||
1144 | # CONFIG_XFS_QUOTA is not set | ||
1145 | CONFIG_XFS_SECURITY=y | ||
1146 | CONFIG_XFS_POSIX_ACL=y | ||
1147 | # CONFIG_XFS_RT is not set | ||
1148 | # CONFIG_MINIX_FS is not set | ||
1149 | # CONFIG_ROMFS_FS is not set | ||
1150 | CONFIG_INOTIFY=y | ||
1151 | # CONFIG_QUOTA is not set | ||
1152 | CONFIG_DNOTIFY=y | ||
1153 | CONFIG_AUTOFS_FS=m | ||
1154 | # CONFIG_AUTOFS4_FS is not set | ||
1155 | # CONFIG_FUSE_FS is not set | ||
1156 | |||
1157 | # | ||
1158 | # CD-ROM/DVD Filesystems | ||
1159 | # | ||
1160 | CONFIG_ISO9660_FS=y | ||
1161 | CONFIG_JOLIET=y | ||
1162 | CONFIG_ZISOFS=y | ||
1163 | CONFIG_ZISOFS_FS=y | ||
1164 | CONFIG_UDF_FS=m | ||
1165 | CONFIG_UDF_NLS=y | ||
1166 | |||
1167 | # | ||
1168 | # DOS/FAT/NT Filesystems | ||
1169 | # | ||
1170 | CONFIG_FAT_FS=y | ||
1171 | CONFIG_MSDOS_FS=y | ||
1172 | CONFIG_VFAT_FS=y | ||
1173 | CONFIG_FAT_DEFAULT_CODEPAGE=437 | ||
1174 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | ||
1175 | # CONFIG_NTFS_FS is not set | ||
1176 | |||
1177 | # | ||
1178 | # Pseudo filesystems | ||
1179 | # | ||
1180 | CONFIG_PROC_FS=y | ||
1181 | CONFIG_PROC_KCORE=y | ||
1182 | CONFIG_SYSFS=y | ||
1183 | CONFIG_TMPFS=y | ||
1184 | CONFIG_HUGETLBFS=y | ||
1185 | CONFIG_HUGETLB_PAGE=y | ||
1186 | CONFIG_RAMFS=y | ||
1187 | # CONFIG_RELAYFS_FS is not set | ||
1188 | |||
1189 | # | ||
1190 | # Miscellaneous filesystems | ||
1191 | # | ||
1192 | # CONFIG_ADFS_FS is not set | ||
1193 | # CONFIG_AFFS_FS is not set | ||
1194 | # CONFIG_HFS_FS is not set | ||
1195 | # CONFIG_HFSPLUS_FS is not set | ||
1196 | # CONFIG_BEFS_FS is not set | ||
1197 | # CONFIG_BFS_FS is not set | ||
1198 | # CONFIG_EFS_FS is not set | ||
1199 | CONFIG_CRAMFS=y | ||
1200 | # CONFIG_VXFS_FS is not set | ||
1201 | # CONFIG_HPFS_FS is not set | ||
1202 | # CONFIG_QNX4FS_FS is not set | ||
1203 | # CONFIG_SYSV_FS is not set | ||
1204 | # CONFIG_UFS_FS is not set | ||
1205 | |||
1206 | # | ||
1207 | # Network File Systems | ||
1208 | # | ||
1209 | CONFIG_NFS_FS=y | ||
1210 | CONFIG_NFS_V3=y | ||
1211 | CONFIG_NFS_V3_ACL=y | ||
1212 | CONFIG_NFS_V4=y | ||
1213 | # CONFIG_NFS_DIRECTIO is not set | ||
1214 | CONFIG_NFSD=y | ||
1215 | CONFIG_NFSD_V2_ACL=y | ||
1216 | CONFIG_NFSD_V3=y | ||
1217 | CONFIG_NFSD_V3_ACL=y | ||
1218 | CONFIG_NFSD_V4=y | ||
1219 | CONFIG_NFSD_TCP=y | ||
1220 | CONFIG_LOCKD=y | ||
1221 | CONFIG_LOCKD_V4=y | ||
1222 | CONFIG_EXPORTFS=y | ||
1223 | CONFIG_NFS_ACL_SUPPORT=y | ||
1224 | CONFIG_NFS_COMMON=y | ||
1225 | CONFIG_SUNRPC=y | ||
1226 | CONFIG_SUNRPC_GSS=y | ||
1227 | CONFIG_RPCSEC_GSS_KRB5=y | ||
1228 | CONFIG_RPCSEC_GSS_SPKM3=m | ||
1229 | # CONFIG_SMB_FS is not set | ||
1230 | CONFIG_CIFS=m | ||
1231 | # CONFIG_CIFS_STATS is not set | ||
1232 | CONFIG_CIFS_XATTR=y | ||
1233 | CONFIG_CIFS_POSIX=y | ||
1234 | # CONFIG_CIFS_EXPERIMENTAL is not set | ||
1235 | # CONFIG_NCP_FS is not set | ||
1236 | # CONFIG_CODA_FS is not set | ||
1237 | # CONFIG_AFS_FS is not set | ||
1238 | # CONFIG_9P_FS is not set | ||
1239 | |||
1240 | # | ||
1241 | # Partition Types | ||
1242 | # | ||
1243 | # CONFIG_PARTITION_ADVANCED is not set | ||
1244 | CONFIG_MSDOS_PARTITION=y | ||
1245 | |||
1246 | # | ||
1247 | # Native Language Support | ||
1248 | # | ||
1249 | CONFIG_NLS=y | ||
1250 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
1251 | CONFIG_NLS_CODEPAGE_437=y | ||
1252 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
1253 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
1254 | # CONFIG_NLS_CODEPAGE_850 is not set | ||
1255 | # CONFIG_NLS_CODEPAGE_852 is not set | ||
1256 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
1257 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
1258 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
1259 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
1260 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
1261 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
1262 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
1263 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
1264 | # CONFIG_NLS_CODEPAGE_866 is not set | ||
1265 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
1266 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
1267 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
1268 | # CONFIG_NLS_CODEPAGE_932 is not set | ||
1269 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
1270 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
1271 | # CONFIG_NLS_ISO8859_8 is not set | ||
1272 | # CONFIG_NLS_CODEPAGE_1250 is not set | ||
1273 | # CONFIG_NLS_CODEPAGE_1251 is not set | ||
1274 | CONFIG_NLS_ASCII=y | ||
1275 | CONFIG_NLS_ISO8859_1=y | ||
1276 | # CONFIG_NLS_ISO8859_2 is not set | ||
1277 | # CONFIG_NLS_ISO8859_3 is not set | ||
1278 | # CONFIG_NLS_ISO8859_4 is not set | ||
1279 | # CONFIG_NLS_ISO8859_5 is not set | ||
1280 | # CONFIG_NLS_ISO8859_6 is not set | ||
1281 | # CONFIG_NLS_ISO8859_7 is not set | ||
1282 | # CONFIG_NLS_ISO8859_9 is not set | ||
1283 | # CONFIG_NLS_ISO8859_13 is not set | ||
1284 | # CONFIG_NLS_ISO8859_14 is not set | ||
1285 | # CONFIG_NLS_ISO8859_15 is not set | ||
1286 | # CONFIG_NLS_KOI8_R is not set | ||
1287 | # CONFIG_NLS_KOI8_U is not set | ||
1288 | # CONFIG_NLS_UTF8 is not set | ||
1289 | |||
1290 | # | ||
1291 | # Profiling support | ||
1292 | # | ||
1293 | CONFIG_PROFILING=y | ||
1294 | CONFIG_OPROFILE=y | ||
1295 | |||
1296 | # | ||
1297 | # Kernel hacking | ||
1298 | # | ||
1299 | # CONFIG_PRINTK_TIME is not set | ||
1300 | CONFIG_DEBUG_KERNEL=y | ||
1301 | CONFIG_MAGIC_SYSRQ=y | ||
1302 | CONFIG_LOG_BUF_SHIFT=17 | ||
1303 | CONFIG_DETECT_SOFTLOCKUP=y | ||
1304 | # CONFIG_SCHEDSTATS is not set | ||
1305 | # CONFIG_DEBUG_SLAB is not set | ||
1306 | # CONFIG_DEBUG_SPINLOCK is not set | ||
1307 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
1308 | # CONFIG_DEBUG_KOBJECT is not set | ||
1309 | # CONFIG_DEBUG_INFO is not set | ||
1310 | CONFIG_DEBUG_FS=y | ||
1311 | CONFIG_DEBUG_STACKOVERFLOW=y | ||
1312 | # CONFIG_KPROBES is not set | ||
1313 | CONFIG_DEBUG_STACK_USAGE=y | ||
1314 | CONFIG_DEBUGGER=y | ||
1315 | CONFIG_XMON=y | ||
1316 | CONFIG_XMON_DEFAULT=y | ||
1317 | # CONFIG_PPCDBG is not set | ||
1318 | CONFIG_IRQSTACKS=y | ||
1319 | |||
1320 | # | ||
1321 | # Security options | ||
1322 | # | ||
1323 | # CONFIG_KEYS is not set | ||
1324 | # CONFIG_SECURITY is not set | ||
1325 | |||
1326 | # | ||
1327 | # Cryptographic options | ||
1328 | # | ||
1329 | CONFIG_CRYPTO=y | ||
1330 | CONFIG_CRYPTO_HMAC=y | ||
1331 | CONFIG_CRYPTO_NULL=m | ||
1332 | CONFIG_CRYPTO_MD4=m | ||
1333 | CONFIG_CRYPTO_MD5=y | ||
1334 | CONFIG_CRYPTO_SHA1=m | ||
1335 | CONFIG_CRYPTO_SHA256=m | ||
1336 | CONFIG_CRYPTO_SHA512=m | ||
1337 | CONFIG_CRYPTO_WP512=m | ||
1338 | CONFIG_CRYPTO_TGR192=m | ||
1339 | CONFIG_CRYPTO_DES=y | ||
1340 | CONFIG_CRYPTO_BLOWFISH=m | ||
1341 | CONFIG_CRYPTO_TWOFISH=m | ||
1342 | CONFIG_CRYPTO_SERPENT=m | ||
1343 | CONFIG_CRYPTO_AES=m | ||
1344 | CONFIG_CRYPTO_CAST5=m | ||
1345 | CONFIG_CRYPTO_CAST6=m | ||
1346 | CONFIG_CRYPTO_TEA=m | ||
1347 | CONFIG_CRYPTO_ARC4=m | ||
1348 | CONFIG_CRYPTO_KHAZAD=m | ||
1349 | CONFIG_CRYPTO_ANUBIS=m | ||
1350 | CONFIG_CRYPTO_DEFLATE=m | ||
1351 | CONFIG_CRYPTO_MICHAEL_MIC=m | ||
1352 | CONFIG_CRYPTO_CRC32C=m | ||
1353 | CONFIG_CRYPTO_TEST=m | ||
1354 | |||
1355 | # | ||
1356 | # Hardware crypto devices | ||
1357 | # | ||
1358 | |||
1359 | # | ||
1360 | # Library routines | ||
1361 | # | ||
1362 | CONFIG_CRC_CCITT=m | ||
1363 | # CONFIG_CRC16 is not set | ||
1364 | CONFIG_CRC32=y | ||
1365 | CONFIG_LIBCRC32C=m | ||
1366 | CONFIG_ZLIB_INFLATE=y | ||
1367 | CONFIG_ZLIB_DEFLATE=m | ||
1368 | CONFIG_TEXTSEARCH=y | ||
1369 | CONFIG_TEXTSEARCH_KMP=m | ||
1370 | CONFIG_TEXTSEARCH_BM=m | ||
1371 | CONFIG_TEXTSEARCH_FSM=m | ||
diff --git a/arch/powerpc/kernel/Makefile b/arch/powerpc/kernel/Makefile index 572d4f5eaacb..b3ae2993efb8 100644 --- a/arch/powerpc/kernel/Makefile +++ b/arch/powerpc/kernel/Makefile | |||
@@ -13,12 +13,15 @@ endif | |||
13 | obj-y := semaphore.o cputable.o ptrace.o syscalls.o \ | 13 | obj-y := semaphore.o cputable.o ptrace.o syscalls.o \ |
14 | signal_32.o pmc.o | 14 | signal_32.o pmc.o |
15 | obj-$(CONFIG_PPC64) += setup_64.o binfmt_elf32.o sys_ppc32.o \ | 15 | obj-$(CONFIG_PPC64) += setup_64.o binfmt_elf32.o sys_ppc32.o \ |
16 | ptrace32.o systbl.o | 16 | signal_64.o ptrace32.o systbl.o |
17 | obj-$(CONFIG_ALTIVEC) += vecemu.o vector.o | 17 | obj-$(CONFIG_ALTIVEC) += vecemu.o vector.o |
18 | obj-$(CONFIG_POWER4) += idle_power4.o | 18 | obj-$(CONFIG_POWER4) += idle_power4.o |
19 | obj-$(CONFIG_PPC_OF) += of_device.o | 19 | obj-$(CONFIG_PPC_OF) += of_device.o |
20 | obj-$(CONFIG_PPC_RTAS) += rtas.o | 20 | obj-$(CONFIG_PPC_RTAS) += rtas.o |
21 | obj-$(CONFIG_RTAS_FLASH) += rtas_flash.o | ||
22 | obj-$(CONFIG_RTAS_PROC) += rtas-proc.o | ||
21 | obj-$(CONFIG_IBMVIO) += vio.o | 23 | obj-$(CONFIG_IBMVIO) += vio.o |
24 | obj-$(CONFIG_GENERIC_TBSYNC) += smp-tbsync.o | ||
22 | 25 | ||
23 | ifeq ($(CONFIG_PPC_MERGE),y) | 26 | ifeq ($(CONFIG_PPC_MERGE),y) |
24 | 27 | ||
@@ -38,6 +41,7 @@ obj-$(CONFIG_PPC_OF) += prom_init.o | |||
38 | obj-$(CONFIG_MODULES) += ppc_ksyms.o | 41 | obj-$(CONFIG_MODULES) += ppc_ksyms.o |
39 | obj-$(CONFIG_BOOTX_TEXT) += btext.o | 42 | obj-$(CONFIG_BOOTX_TEXT) += btext.o |
40 | obj-$(CONFIG_6xx) += idle_6xx.o | 43 | obj-$(CONFIG_6xx) += idle_6xx.o |
44 | obj-$(CONFIG_SMP) += smp.o | ||
41 | 45 | ||
42 | ifeq ($(CONFIG_PPC_ISERIES),y) | 46 | ifeq ($(CONFIG_PPC_ISERIES),y) |
43 | $(obj)/head_64.o: $(obj)/lparmap.s | 47 | $(obj)/head_64.o: $(obj)/lparmap.s |
@@ -46,8 +50,9 @@ endif | |||
46 | 50 | ||
47 | else | 51 | else |
48 | # stuff used from here for ARCH=ppc or ARCH=ppc64 | 52 | # stuff used from here for ARCH=ppc or ARCH=ppc64 |
53 | smpobj-$(CONFIG_SMP) += smp.o | ||
49 | obj-$(CONFIG_PPC64) += traps.o process.o init_task.o time.o \ | 54 | obj-$(CONFIG_PPC64) += traps.o process.o init_task.o time.o \ |
50 | setup-common.o | 55 | setup-common.o $(smpobj-y) |
51 | 56 | ||
52 | 57 | ||
53 | endif | 58 | endif |
diff --git a/arch/powerpc/kernel/asm-offsets.c b/arch/powerpc/kernel/asm-offsets.c index 330cd783206f..bc5a3689cc05 100644 --- a/arch/powerpc/kernel/asm-offsets.c +++ b/arch/powerpc/kernel/asm-offsets.c | |||
@@ -40,7 +40,7 @@ | |||
40 | #ifdef CONFIG_PPC64 | 40 | #ifdef CONFIG_PPC64 |
41 | #include <asm/paca.h> | 41 | #include <asm/paca.h> |
42 | #include <asm/lppaca.h> | 42 | #include <asm/lppaca.h> |
43 | #include <asm/iSeries/HvLpEvent.h> | 43 | #include <asm/iseries/hv_lp_event.h> |
44 | #include <asm/cache.h> | 44 | #include <asm/cache.h> |
45 | #include <asm/systemcfg.h> | 45 | #include <asm/systemcfg.h> |
46 | #include <asm/compat.h> | 46 | #include <asm/compat.h> |
diff --git a/arch/powerpc/kernel/head_64.S b/arch/powerpc/kernel/head_64.S index 147215a0d6c0..45d81976987f 100644 --- a/arch/powerpc/kernel/head_64.S +++ b/arch/powerpc/kernel/head_64.S | |||
@@ -35,7 +35,7 @@ | |||
35 | #include <asm/cputable.h> | 35 | #include <asm/cputable.h> |
36 | #include <asm/setup.h> | 36 | #include <asm/setup.h> |
37 | #include <asm/hvcall.h> | 37 | #include <asm/hvcall.h> |
38 | #include <asm/iSeries/LparMap.h> | 38 | #include <asm/iseries/lpar_map.h> |
39 | #include <asm/thread_info.h> | 39 | #include <asm/thread_info.h> |
40 | 40 | ||
41 | #ifdef CONFIG_PPC_ISERIES | 41 | #ifdef CONFIG_PPC_ISERIES |
@@ -1914,24 +1914,6 @@ _GLOBAL(hmt_start_secondary) | |||
1914 | blr | 1914 | blr |
1915 | #endif | 1915 | #endif |
1916 | 1916 | ||
1917 | #if defined(CONFIG_KEXEC) || defined(CONFIG_SMP) | ||
1918 | _GLOBAL(smp_release_cpus) | ||
1919 | /* All secondary cpus are spinning on a common | ||
1920 | * spinloop, release them all now so they can start | ||
1921 | * to spin on their individual paca spinloops. | ||
1922 | * For non SMP kernels, the secondary cpus never | ||
1923 | * get out of the common spinloop. | ||
1924 | * XXX This does nothing useful on iSeries, secondaries are | ||
1925 | * already waiting on their paca. | ||
1926 | */ | ||
1927 | li r3,1 | ||
1928 | LOADADDR(r5,__secondary_hold_spinloop) | ||
1929 | std r3,0(r5) | ||
1930 | sync | ||
1931 | blr | ||
1932 | #endif /* CONFIG_SMP */ | ||
1933 | |||
1934 | |||
1935 | /* | 1917 | /* |
1936 | * We put a few things here that have to be page-aligned. | 1918 | * We put a few things here that have to be page-aligned. |
1937 | * This stuff goes at the beginning of the bss, which is page-aligned. | 1919 | * This stuff goes at the beginning of the bss, which is page-aligned. |
diff --git a/arch/powerpc/kernel/lparmap.c b/arch/powerpc/kernel/lparmap.c index b81de286df5e..eded971d1bf9 100644 --- a/arch/powerpc/kernel/lparmap.c +++ b/arch/powerpc/kernel/lparmap.c | |||
@@ -8,7 +8,7 @@ | |||
8 | */ | 8 | */ |
9 | #include <asm/mmu.h> | 9 | #include <asm/mmu.h> |
10 | #include <asm/page.h> | 10 | #include <asm/page.h> |
11 | #include <asm/iSeries/LparMap.h> | 11 | #include <asm/iseries/lpar_map.h> |
12 | 12 | ||
13 | const struct LparMap __attribute__((__section__(".text"))) xLparMap = { | 13 | const struct LparMap __attribute__((__section__(".text"))) xLparMap = { |
14 | .xNumberEsids = HvEsidsToMap, | 14 | .xNumberEsids = HvEsidsToMap, |
diff --git a/arch/powerpc/kernel/ppc32.h b/arch/powerpc/kernel/ppc32.h new file mode 100644 index 000000000000..90e562771791 --- /dev/null +++ b/arch/powerpc/kernel/ppc32.h | |||
@@ -0,0 +1,138 @@ | |||
1 | #ifndef _PPC64_PPC32_H | ||
2 | #define _PPC64_PPC32_H | ||
3 | |||
4 | #include <linux/compat.h> | ||
5 | #include <asm/siginfo.h> | ||
6 | #include <asm/signal.h> | ||
7 | |||
8 | /* | ||
9 | * Data types and macros for providing 32b PowerPC support. | ||
10 | * | ||
11 | * This program is free software; you can redistribute it and/or | ||
12 | * modify it under the terms of the GNU General Public License | ||
13 | * as published by the Free Software Foundation; either version | ||
14 | * 2 of the License, or (at your option) any later version. | ||
15 | */ | ||
16 | |||
17 | /* These are here to support 32-bit syscalls on a 64-bit kernel. */ | ||
18 | |||
19 | typedef struct compat_siginfo { | ||
20 | int si_signo; | ||
21 | int si_errno; | ||
22 | int si_code; | ||
23 | |||
24 | union { | ||
25 | int _pad[SI_PAD_SIZE32]; | ||
26 | |||
27 | /* kill() */ | ||
28 | struct { | ||
29 | compat_pid_t _pid; /* sender's pid */ | ||
30 | compat_uid_t _uid; /* sender's uid */ | ||
31 | } _kill; | ||
32 | |||
33 | /* POSIX.1b timers */ | ||
34 | struct { | ||
35 | compat_timer_t _tid; /* timer id */ | ||
36 | int _overrun; /* overrun count */ | ||
37 | compat_sigval_t _sigval; /* same as below */ | ||
38 | int _sys_private; /* not to be passed to user */ | ||
39 | } _timer; | ||
40 | |||
41 | /* POSIX.1b signals */ | ||
42 | struct { | ||
43 | compat_pid_t _pid; /* sender's pid */ | ||
44 | compat_uid_t _uid; /* sender's uid */ | ||
45 | compat_sigval_t _sigval; | ||
46 | } _rt; | ||
47 | |||
48 | /* SIGCHLD */ | ||
49 | struct { | ||
50 | compat_pid_t _pid; /* which child */ | ||
51 | compat_uid_t _uid; /* sender's uid */ | ||
52 | int _status; /* exit code */ | ||
53 | compat_clock_t _utime; | ||
54 | compat_clock_t _stime; | ||
55 | } _sigchld; | ||
56 | |||
57 | /* SIGILL, SIGFPE, SIGSEGV, SIGBUS, SIGEMT */ | ||
58 | struct { | ||
59 | unsigned int _addr; /* faulting insn/memory ref. */ | ||
60 | } _sigfault; | ||
61 | |||
62 | /* SIGPOLL */ | ||
63 | struct { | ||
64 | int _band; /* POLL_IN, POLL_OUT, POLL_MSG */ | ||
65 | int _fd; | ||
66 | } _sigpoll; | ||
67 | } _sifields; | ||
68 | } compat_siginfo_t; | ||
69 | |||
70 | #define __old_sigaction32 old_sigaction32 | ||
71 | |||
72 | struct __old_sigaction32 { | ||
73 | compat_uptr_t sa_handler; | ||
74 | compat_old_sigset_t sa_mask; | ||
75 | unsigned int sa_flags; | ||
76 | compat_uptr_t sa_restorer; /* not used by Linux/SPARC yet */ | ||
77 | }; | ||
78 | |||
79 | |||
80 | |||
81 | struct sigaction32 { | ||
82 | compat_uptr_t sa_handler; /* Really a pointer, but need to deal with 32 bits */ | ||
83 | unsigned int sa_flags; | ||
84 | compat_uptr_t sa_restorer; /* Another 32 bit pointer */ | ||
85 | compat_sigset_t sa_mask; /* A 32 bit mask */ | ||
86 | }; | ||
87 | |||
88 | typedef struct sigaltstack_32 { | ||
89 | unsigned int ss_sp; | ||
90 | int ss_flags; | ||
91 | compat_size_t ss_size; | ||
92 | } stack_32_t; | ||
93 | |||
94 | struct pt_regs32 { | ||
95 | unsigned int gpr[32]; | ||
96 | unsigned int nip; | ||
97 | unsigned int msr; | ||
98 | unsigned int orig_gpr3; /* Used for restarting system calls */ | ||
99 | unsigned int ctr; | ||
100 | unsigned int link; | ||
101 | unsigned int xer; | ||
102 | unsigned int ccr; | ||
103 | unsigned int mq; /* 601 only (not used at present) */ | ||
104 | unsigned int trap; /* Reason for being here */ | ||
105 | unsigned int dar; /* Fault registers */ | ||
106 | unsigned int dsisr; | ||
107 | unsigned int result; /* Result of a system call */ | ||
108 | }; | ||
109 | |||
110 | struct sigcontext32 { | ||
111 | unsigned int _unused[4]; | ||
112 | int signal; | ||
113 | compat_uptr_t handler; | ||
114 | unsigned int oldmask; | ||
115 | compat_uptr_t regs; /* 4 byte pointer to the pt_regs32 structure. */ | ||
116 | }; | ||
117 | |||
118 | struct mcontext32 { | ||
119 | elf_gregset_t32 mc_gregs; | ||
120 | elf_fpregset_t mc_fregs; | ||
121 | unsigned int mc_pad[2]; | ||
122 | elf_vrregset_t32 mc_vregs __attribute__((__aligned__(16))); | ||
123 | }; | ||
124 | |||
125 | struct ucontext32 { | ||
126 | unsigned int uc_flags; | ||
127 | unsigned int uc_link; | ||
128 | stack_32_t uc_stack; | ||
129 | int uc_pad[7]; | ||
130 | compat_uptr_t uc_regs; /* points to uc_mcontext field */ | ||
131 | compat_sigset_t uc_sigmask; /* mask last for extensibility */ | ||
132 | /* glibc has 1024-bit signal masks, ours are 64-bit */ | ||
133 | int uc_maskext[30]; | ||
134 | int uc_pad2[3]; | ||
135 | struct mcontext32 uc_mcontext; | ||
136 | }; | ||
137 | |||
138 | #endif /* _PPC64_PPC32_H */ | ||
diff --git a/arch/powerpc/kernel/ppc_ksyms.c b/arch/powerpc/kernel/ppc_ksyms.c index 8bc540337ba0..47d6f7e2ea9f 100644 --- a/arch/powerpc/kernel/ppc_ksyms.c +++ b/arch/powerpc/kernel/ppc_ksyms.c | |||
@@ -81,15 +81,6 @@ EXPORT_SYMBOL(_prep_type); | |||
81 | EXPORT_SYMBOL(ucSystemType); | 81 | EXPORT_SYMBOL(ucSystemType); |
82 | #endif | 82 | #endif |
83 | 83 | ||
84 | #if !defined(__INLINE_BITOPS) | ||
85 | EXPORT_SYMBOL(set_bit); | ||
86 | EXPORT_SYMBOL(clear_bit); | ||
87 | EXPORT_SYMBOL(change_bit); | ||
88 | EXPORT_SYMBOL(test_and_set_bit); | ||
89 | EXPORT_SYMBOL(test_and_clear_bit); | ||
90 | EXPORT_SYMBOL(test_and_change_bit); | ||
91 | #endif /* __INLINE_BITOPS */ | ||
92 | |||
93 | EXPORT_SYMBOL(strcpy); | 84 | EXPORT_SYMBOL(strcpy); |
94 | EXPORT_SYMBOL(strncpy); | 85 | EXPORT_SYMBOL(strncpy); |
95 | EXPORT_SYMBOL(strcat); | 86 | EXPORT_SYMBOL(strcat); |
diff --git a/arch/powerpc/kernel/process.c b/arch/powerpc/kernel/process.c index 8f85dabe4df3..96843211cc5c 100644 --- a/arch/powerpc/kernel/process.c +++ b/arch/powerpc/kernel/process.c | |||
@@ -48,8 +48,8 @@ | |||
48 | #include <asm/prom.h> | 48 | #include <asm/prom.h> |
49 | #ifdef CONFIG_PPC64 | 49 | #ifdef CONFIG_PPC64 |
50 | #include <asm/firmware.h> | 50 | #include <asm/firmware.h> |
51 | #include <asm/plpar_wrappers.h> | ||
52 | #include <asm/time.h> | 51 | #include <asm/time.h> |
52 | #include <asm/machdep.h> | ||
53 | #endif | 53 | #endif |
54 | 54 | ||
55 | extern unsigned long _get_SP(void); | 55 | extern unsigned long _get_SP(void); |
@@ -201,27 +201,15 @@ int dump_spe(struct pt_regs *regs, elf_vrregset_t *evrregs) | |||
201 | } | 201 | } |
202 | #endif /* CONFIG_SPE */ | 202 | #endif /* CONFIG_SPE */ |
203 | 203 | ||
204 | static void set_dabr_spr(unsigned long val) | ||
205 | { | ||
206 | mtspr(SPRN_DABR, val); | ||
207 | } | ||
208 | |||
209 | int set_dabr(unsigned long dabr) | 204 | int set_dabr(unsigned long dabr) |
210 | { | 205 | { |
211 | int ret = 0; | ||
212 | |||
213 | #ifdef CONFIG_PPC64 | 206 | #ifdef CONFIG_PPC64 |
214 | if (firmware_has_feature(FW_FEATURE_XDABR)) { | 207 | if (ppc_md.set_dabr) |
215 | /* We want to catch accesses from kernel and userspace */ | 208 | return ppc_md.set_dabr(dabr); |
216 | unsigned long flags = H_DABRX_KERNEL|H_DABRX_USER; | ||
217 | ret = plpar_set_xdabr(dabr, flags); | ||
218 | } else if (firmware_has_feature(FW_FEATURE_DABR)) { | ||
219 | ret = plpar_set_dabr(dabr); | ||
220 | } else | ||
221 | #endif | 209 | #endif |
222 | set_dabr_spr(dabr); | ||
223 | 210 | ||
224 | return ret; | 211 | mtspr(SPRN_DABR, dabr); |
212 | return 0; | ||
225 | } | 213 | } |
226 | 214 | ||
227 | #ifdef CONFIG_PPC64 | 215 | #ifdef CONFIG_PPC64 |
diff --git a/arch/powerpc/kernel/prom.c b/arch/powerpc/kernel/prom.c index 2eccd0e159e3..eec2da695508 100644 --- a/arch/powerpc/kernel/prom.c +++ b/arch/powerpc/kernel/prom.c | |||
@@ -1285,7 +1285,7 @@ static int __init early_init_dt_scan_memory(unsigned long node, | |||
1285 | 1285 | ||
1286 | endp = reg + (l / sizeof(cell_t)); | 1286 | endp = reg + (l / sizeof(cell_t)); |
1287 | 1287 | ||
1288 | DBG("memory scan node %s ..., reg size %ld, data: %x %x %x %x, ...\n", | 1288 | DBG("memory scan node %s, reg size %ld, data: %x %x %x %x,\n", |
1289 | uname, l, reg[0], reg[1], reg[2], reg[3]); | 1289 | uname, l, reg[0], reg[1], reg[2], reg[3]); |
1290 | 1290 | ||
1291 | while ((endp - reg) >= (dt_root_addr_cells + dt_root_size_cells)) { | 1291 | while ((endp - reg) >= (dt_root_addr_cells + dt_root_size_cells)) { |
diff --git a/arch/powerpc/kernel/prom_init.c b/arch/powerpc/kernel/prom_init.c index 9750b3cd8ecd..c758b6624d7b 100644 --- a/arch/powerpc/kernel/prom_init.c +++ b/arch/powerpc/kernel/prom_init.c | |||
@@ -2000,7 +2000,7 @@ unsigned long __init prom_init(unsigned long r3, unsigned long r4, | |||
2000 | #endif | 2000 | #endif |
2001 | 2001 | ||
2002 | /* | 2002 | /* |
2003 | * On pSeries and BPA, copy the CPU hold code | 2003 | * Copy the CPU hold code |
2004 | */ | 2004 | */ |
2005 | if (RELOC(of_platform) != PLATFORM_POWERMAC) | 2005 | if (RELOC(of_platform) != PLATFORM_POWERMAC) |
2006 | copy_and_flush(0, KERNELBASE + offset, 0x100, 0); | 2006 | copy_and_flush(0, KERNELBASE + offset, 0x100, 0); |
diff --git a/arch/ppc64/kernel/rtas-proc.c b/arch/powerpc/kernel/rtas-proc.c index 5bdd5b079d96..5bdd5b079d96 100644 --- a/arch/ppc64/kernel/rtas-proc.c +++ b/arch/powerpc/kernel/rtas-proc.c | |||
diff --git a/arch/powerpc/kernel/rtas.c b/arch/powerpc/kernel/rtas.c index 4d22eeeeb91d..b7fc2d884950 100644 --- a/arch/powerpc/kernel/rtas.c +++ b/arch/powerpc/kernel/rtas.c | |||
@@ -43,6 +43,13 @@ char rtas_data_buf[RTAS_DATA_BUF_SIZE] __cacheline_aligned; | |||
43 | unsigned long rtas_rmo_buf; | 43 | unsigned long rtas_rmo_buf; |
44 | 44 | ||
45 | /* | 45 | /* |
46 | * If non-NULL, this gets called when the kernel terminates. | ||
47 | * This is done like this so rtas_flash can be a module. | ||
48 | */ | ||
49 | void (*rtas_flash_term_hook)(int); | ||
50 | EXPORT_SYMBOL(rtas_flash_term_hook); | ||
51 | |||
52 | /* | ||
46 | * call_rtas_display_status and call_rtas_display_status_delay | 53 | * call_rtas_display_status and call_rtas_display_status_delay |
47 | * are designed only for very early low-level debugging, which | 54 | * are designed only for very early low-level debugging, which |
48 | * is why the token is hard-coded to 10. | 55 | * is why the token is hard-coded to 10. |
@@ -206,6 +213,7 @@ void rtas_progress(char *s, unsigned short hex) | |||
206 | 213 | ||
207 | spin_unlock(&progress_lock); | 214 | spin_unlock(&progress_lock); |
208 | } | 215 | } |
216 | EXPORT_SYMBOL(rtas_progress); /* needed by rtas_flash module */ | ||
209 | 217 | ||
210 | int rtas_token(const char *service) | 218 | int rtas_token(const char *service) |
211 | { | 219 | { |
@@ -492,6 +500,8 @@ int rtas_set_indicator(int indicator, int index, int new_value) | |||
492 | 500 | ||
493 | void rtas_restart(char *cmd) | 501 | void rtas_restart(char *cmd) |
494 | { | 502 | { |
503 | if (rtas_flash_term_hook) | ||
504 | rtas_flash_term_hook(SYS_RESTART); | ||
495 | printk("RTAS system-reboot returned %d\n", | 505 | printk("RTAS system-reboot returned %d\n", |
496 | rtas_call(rtas_token("system-reboot"), 0, 1, NULL)); | 506 | rtas_call(rtas_token("system-reboot"), 0, 1, NULL)); |
497 | for (;;); | 507 | for (;;); |
@@ -499,6 +509,8 @@ void rtas_restart(char *cmd) | |||
499 | 509 | ||
500 | void rtas_power_off(void) | 510 | void rtas_power_off(void) |
501 | { | 511 | { |
512 | if (rtas_flash_term_hook) | ||
513 | rtas_flash_term_hook(SYS_POWER_OFF); | ||
502 | /* allow power on only with power button press */ | 514 | /* allow power on only with power button press */ |
503 | printk("RTAS power-off returned %d\n", | 515 | printk("RTAS power-off returned %d\n", |
504 | rtas_call(rtas_token("power-off"), 2, 1, NULL, -1, -1)); | 516 | rtas_call(rtas_token("power-off"), 2, 1, NULL, -1, -1)); |
@@ -507,7 +519,12 @@ void rtas_power_off(void) | |||
507 | 519 | ||
508 | void rtas_halt(void) | 520 | void rtas_halt(void) |
509 | { | 521 | { |
510 | rtas_power_off(); | 522 | if (rtas_flash_term_hook) |
523 | rtas_flash_term_hook(SYS_HALT); | ||
524 | /* allow power on only with power button press */ | ||
525 | printk("RTAS power-off returned %d\n", | ||
526 | rtas_call(rtas_token("power-off"), 2, 1, NULL, -1, -1)); | ||
527 | for (;;); | ||
511 | } | 528 | } |
512 | 529 | ||
513 | /* Must be in the RMO region, so we place it here */ | 530 | /* Must be in the RMO region, so we place it here */ |
diff --git a/arch/ppc64/kernel/rtas_flash.c b/arch/powerpc/kernel/rtas_flash.c index 923e2e201a70..50500093c97f 100644 --- a/arch/ppc64/kernel/rtas_flash.c +++ b/arch/powerpc/kernel/rtas_flash.c | |||
@@ -19,6 +19,7 @@ | |||
19 | #include <asm/delay.h> | 19 | #include <asm/delay.h> |
20 | #include <asm/uaccess.h> | 20 | #include <asm/uaccess.h> |
21 | #include <asm/rtas.h> | 21 | #include <asm/rtas.h> |
22 | #include <asm/abs_addr.h> | ||
22 | 23 | ||
23 | #define MODULE_VERS "1.0" | 24 | #define MODULE_VERS "1.0" |
24 | #define MODULE_NAME "rtas_flash" | 25 | #define MODULE_NAME "rtas_flash" |
@@ -71,10 +72,36 @@ | |||
71 | #define VALIDATE_BUF_SIZE 4096 | 72 | #define VALIDATE_BUF_SIZE 4096 |
72 | #define RTAS_MSG_MAXLEN 64 | 73 | #define RTAS_MSG_MAXLEN 64 |
73 | 74 | ||
75 | struct flash_block { | ||
76 | char *data; | ||
77 | unsigned long length; | ||
78 | }; | ||
79 | |||
80 | /* This struct is very similar but not identical to | ||
81 | * that needed by the rtas flash update. | ||
82 | * All we need to do for rtas is rewrite num_blocks | ||
83 | * into a version/length and translate the pointers | ||
84 | * to absolute. | ||
85 | */ | ||
86 | #define FLASH_BLOCKS_PER_NODE ((PAGE_SIZE - 16) / sizeof(struct flash_block)) | ||
87 | struct flash_block_list { | ||
88 | unsigned long num_blocks; | ||
89 | struct flash_block_list *next; | ||
90 | struct flash_block blocks[FLASH_BLOCKS_PER_NODE]; | ||
91 | }; | ||
92 | struct flash_block_list_header { /* just the header of flash_block_list */ | ||
93 | unsigned long num_blocks; | ||
94 | struct flash_block_list *next; | ||
95 | }; | ||
96 | |||
97 | static struct flash_block_list_header rtas_firmware_flash_list = {0, NULL}; | ||
98 | |||
99 | #define FLASH_BLOCK_LIST_VERSION (1UL) | ||
100 | |||
74 | /* Local copy of the flash block list. | 101 | /* Local copy of the flash block list. |
75 | * We only allow one open of the flash proc file and create this | 102 | * We only allow one open of the flash proc file and create this |
76 | * list as we go. This list will be put in the kernel's | 103 | * list as we go. This list will be put in the |
77 | * rtas_firmware_flash_list global var once it is fully read. | 104 | * rtas_firmware_flash_list var once it is fully read. |
78 | * | 105 | * |
79 | * For convenience as we build the list we use virtual addrs, | 106 | * For convenience as we build the list we use virtual addrs, |
80 | * we do not fill in the version number, and the length field | 107 | * we do not fill in the version number, and the length field |
@@ -562,6 +589,86 @@ static int validate_flash_release(struct inode *inode, struct file *file) | |||
562 | return 0; | 589 | return 0; |
563 | } | 590 | } |
564 | 591 | ||
592 | static void rtas_flash_firmware(int reboot_type) | ||
593 | { | ||
594 | unsigned long image_size; | ||
595 | struct flash_block_list *f, *next, *flist; | ||
596 | unsigned long rtas_block_list; | ||
597 | int i, status, update_token; | ||
598 | |||
599 | if (rtas_firmware_flash_list.next == NULL) | ||
600 | return; /* nothing to do */ | ||
601 | |||
602 | if (reboot_type != SYS_RESTART) { | ||
603 | printk(KERN_ALERT "FLASH: firmware flash requires a reboot\n"); | ||
604 | printk(KERN_ALERT "FLASH: the firmware image will NOT be flashed\n"); | ||
605 | return; | ||
606 | } | ||
607 | |||
608 | update_token = rtas_token("ibm,update-flash-64-and-reboot"); | ||
609 | if (update_token == RTAS_UNKNOWN_SERVICE) { | ||
610 | printk(KERN_ALERT "FLASH: ibm,update-flash-64-and-reboot " | ||
611 | "is not available -- not a service partition?\n"); | ||
612 | printk(KERN_ALERT "FLASH: firmware will not be flashed\n"); | ||
613 | return; | ||
614 | } | ||
615 | |||
616 | /* NOTE: the "first" block list is a global var with no data | ||
617 | * blocks in the kernel data segment. We do this because | ||
618 | * we want to ensure this block_list addr is under 4GB. | ||
619 | */ | ||
620 | rtas_firmware_flash_list.num_blocks = 0; | ||
621 | flist = (struct flash_block_list *)&rtas_firmware_flash_list; | ||
622 | rtas_block_list = virt_to_abs(flist); | ||
623 | if (rtas_block_list >= 4UL*1024*1024*1024) { | ||
624 | printk(KERN_ALERT "FLASH: kernel bug...flash list header addr above 4GB\n"); | ||
625 | return; | ||
626 | } | ||
627 | |||
628 | printk(KERN_ALERT "FLASH: preparing saved firmware image for flash\n"); | ||
629 | /* Update the block_list in place. */ | ||
630 | image_size = 0; | ||
631 | for (f = flist; f; f = next) { | ||
632 | /* Translate data addrs to absolute */ | ||
633 | for (i = 0; i < f->num_blocks; i++) { | ||
634 | f->blocks[i].data = (char *)virt_to_abs(f->blocks[i].data); | ||
635 | image_size += f->blocks[i].length; | ||
636 | } | ||
637 | next = f->next; | ||
638 | /* Don't translate NULL pointer for last entry */ | ||
639 | if (f->next) | ||
640 | f->next = (struct flash_block_list *)virt_to_abs(f->next); | ||
641 | else | ||
642 | f->next = NULL; | ||
643 | /* make num_blocks into the version/length field */ | ||
644 | f->num_blocks = (FLASH_BLOCK_LIST_VERSION << 56) | ((f->num_blocks+1)*16); | ||
645 | } | ||
646 | |||
647 | printk(KERN_ALERT "FLASH: flash image is %ld bytes\n", image_size); | ||
648 | printk(KERN_ALERT "FLASH: performing flash and reboot\n"); | ||
649 | rtas_progress("Flashing \n", 0x0); | ||
650 | rtas_progress("Please Wait... ", 0x0); | ||
651 | printk(KERN_ALERT "FLASH: this will take several minutes. Do not power off!\n"); | ||
652 | status = rtas_call(update_token, 1, 1, NULL, rtas_block_list); | ||
653 | switch (status) { /* should only get "bad" status */ | ||
654 | case 0: | ||
655 | printk(KERN_ALERT "FLASH: success\n"); | ||
656 | break; | ||
657 | case -1: | ||
658 | printk(KERN_ALERT "FLASH: hardware error. Firmware may not be not flashed\n"); | ||
659 | break; | ||
660 | case -3: | ||
661 | printk(KERN_ALERT "FLASH: image is corrupt or not correct for this platform. Firmware not flashed\n"); | ||
662 | break; | ||
663 | case -4: | ||
664 | printk(KERN_ALERT "FLASH: flash failed when partially complete. System may not reboot\n"); | ||
665 | break; | ||
666 | default: | ||
667 | printk(KERN_ALERT "FLASH: unknown flash return code %d\n", status); | ||
668 | break; | ||
669 | } | ||
670 | } | ||
671 | |||
565 | static void remove_flash_pde(struct proc_dir_entry *dp) | 672 | static void remove_flash_pde(struct proc_dir_entry *dp) |
566 | { | 673 | { |
567 | if (dp) { | 674 | if (dp) { |
@@ -701,6 +808,7 @@ int __init rtas_flash_init(void) | |||
701 | if (rc != 0) | 808 | if (rc != 0) |
702 | goto cleanup; | 809 | goto cleanup; |
703 | 810 | ||
811 | rtas_flash_term_hook = rtas_flash_firmware; | ||
704 | return 0; | 812 | return 0; |
705 | 813 | ||
706 | cleanup: | 814 | cleanup: |
@@ -714,6 +822,7 @@ cleanup: | |||
714 | 822 | ||
715 | void __exit rtas_flash_cleanup(void) | 823 | void __exit rtas_flash_cleanup(void) |
716 | { | 824 | { |
825 | rtas_flash_term_hook = NULL; | ||
717 | remove_flash_pde(firmware_flash_pde); | 826 | remove_flash_pde(firmware_flash_pde); |
718 | remove_flash_pde(firmware_update_pde); | 827 | remove_flash_pde(firmware_update_pde); |
719 | remove_flash_pde(validate_pde); | 828 | remove_flash_pde(validate_pde); |
diff --git a/arch/powerpc/kernel/setup-common.c b/arch/powerpc/kernel/setup-common.c index 1292460fcde2..d43fa8c0e5ac 100644 --- a/arch/powerpc/kernel/setup-common.c +++ b/arch/powerpc/kernel/setup-common.c | |||
@@ -170,12 +170,8 @@ static int show_cpuinfo(struct seq_file *m, void *v) | |||
170 | } | 170 | } |
171 | 171 | ||
172 | #ifdef CONFIG_SMP | 172 | #ifdef CONFIG_SMP |
173 | #ifdef CONFIG_PPC64 /* XXX for now */ | ||
174 | pvr = per_cpu(pvr, cpu_id); | 173 | pvr = per_cpu(pvr, cpu_id); |
175 | #else | 174 | #else |
176 | pvr = cpu_data[cpu_id].pvr; | ||
177 | #endif | ||
178 | #else | ||
179 | pvr = mfspr(SPRN_PVR); | 175 | pvr = mfspr(SPRN_PVR); |
180 | #endif | 176 | #endif |
181 | maj = (pvr >> 8) & 0xFF; | 177 | maj = (pvr >> 8) & 0xFF; |
@@ -201,11 +197,11 @@ static int show_cpuinfo(struct seq_file *m, void *v) | |||
201 | #ifdef CONFIG_TAU_AVERAGE | 197 | #ifdef CONFIG_TAU_AVERAGE |
202 | /* more straightforward, but potentially misleading */ | 198 | /* more straightforward, but potentially misleading */ |
203 | seq_printf(m, "temperature \t: %u C (uncalibrated)\n", | 199 | seq_printf(m, "temperature \t: %u C (uncalibrated)\n", |
204 | cpu_temp(i)); | 200 | cpu_temp(cpu_id)); |
205 | #else | 201 | #else |
206 | /* show the actual temp sensor range */ | 202 | /* show the actual temp sensor range */ |
207 | u32 temp; | 203 | u32 temp; |
208 | temp = cpu_temp_both(i); | 204 | temp = cpu_temp_both(cpu_id); |
209 | seq_printf(m, "temperature \t: %u-%u C (uncalibrated)\n", | 205 | seq_printf(m, "temperature \t: %u-%u C (uncalibrated)\n", |
210 | temp & 0xff, temp >> 16); | 206 | temp & 0xff, temp >> 16); |
211 | #endif | 207 | #endif |
@@ -408,3 +404,118 @@ static int __init set_preferred_console(void) | |||
408 | } | 404 | } |
409 | console_initcall(set_preferred_console); | 405 | console_initcall(set_preferred_console); |
410 | #endif /* CONFIG_PPC_MULTIPLATFORM */ | 406 | #endif /* CONFIG_PPC_MULTIPLATFORM */ |
407 | |||
408 | #ifdef CONFIG_SMP | ||
409 | |||
410 | /** | ||
411 | * setup_cpu_maps - initialize the following cpu maps: | ||
412 | * cpu_possible_map | ||
413 | * cpu_present_map | ||
414 | * cpu_sibling_map | ||
415 | * | ||
416 | * Having the possible map set up early allows us to restrict allocations | ||
417 | * of things like irqstacks to num_possible_cpus() rather than NR_CPUS. | ||
418 | * | ||
419 | * We do not initialize the online map here; cpus set their own bits in | ||
420 | * cpu_online_map as they come up. | ||
421 | * | ||
422 | * This function is valid only for Open Firmware systems. finish_device_tree | ||
423 | * must be called before using this. | ||
424 | * | ||
425 | * While we're here, we may as well set the "physical" cpu ids in the paca. | ||
426 | */ | ||
427 | void __init smp_setup_cpu_maps(void) | ||
428 | { | ||
429 | struct device_node *dn = NULL; | ||
430 | int cpu = 0; | ||
431 | int swap_cpuid = 0; | ||
432 | |||
433 | while ((dn = of_find_node_by_type(dn, "cpu")) && cpu < NR_CPUS) { | ||
434 | int *intserv; | ||
435 | int j, len = sizeof(u32), nthreads = 1; | ||
436 | |||
437 | intserv = (int *)get_property(dn, "ibm,ppc-interrupt-server#s", | ||
438 | &len); | ||
439 | if (intserv) | ||
440 | nthreads = len / sizeof(int); | ||
441 | else { | ||
442 | intserv = (int *) get_property(dn, "reg", NULL); | ||
443 | if (!intserv) | ||
444 | intserv = &cpu; /* assume logical == phys */ | ||
445 | } | ||
446 | |||
447 | for (j = 0; j < nthreads && cpu < NR_CPUS; j++) { | ||
448 | cpu_set(cpu, cpu_present_map); | ||
449 | set_hard_smp_processor_id(cpu, intserv[j]); | ||
450 | |||
451 | if (intserv[j] == boot_cpuid_phys) | ||
452 | swap_cpuid = cpu; | ||
453 | cpu_set(cpu, cpu_possible_map); | ||
454 | cpu++; | ||
455 | } | ||
456 | } | ||
457 | |||
458 | /* Swap CPU id 0 with boot_cpuid_phys, so we can always assume that | ||
459 | * boot cpu is logical 0. | ||
460 | */ | ||
461 | if (boot_cpuid_phys != get_hard_smp_processor_id(0)) { | ||
462 | u32 tmp; | ||
463 | tmp = get_hard_smp_processor_id(0); | ||
464 | set_hard_smp_processor_id(0, boot_cpuid_phys); | ||
465 | set_hard_smp_processor_id(swap_cpuid, tmp); | ||
466 | } | ||
467 | |||
468 | #ifdef CONFIG_PPC64 | ||
469 | /* | ||
470 | * On pSeries LPAR, we need to know how many cpus | ||
471 | * could possibly be added to this partition. | ||
472 | */ | ||
473 | if (systemcfg->platform == PLATFORM_PSERIES_LPAR && | ||
474 | (dn = of_find_node_by_path("/rtas"))) { | ||
475 | int num_addr_cell, num_size_cell, maxcpus; | ||
476 | unsigned int *ireg; | ||
477 | |||
478 | num_addr_cell = prom_n_addr_cells(dn); | ||
479 | num_size_cell = prom_n_size_cells(dn); | ||
480 | |||
481 | ireg = (unsigned int *) | ||
482 | get_property(dn, "ibm,lrdr-capacity", NULL); | ||
483 | |||
484 | if (!ireg) | ||
485 | goto out; | ||
486 | |||
487 | maxcpus = ireg[num_addr_cell + num_size_cell]; | ||
488 | |||
489 | /* Double maxcpus for processors which have SMT capability */ | ||
490 | if (cpu_has_feature(CPU_FTR_SMT)) | ||
491 | maxcpus *= 2; | ||
492 | |||
493 | if (maxcpus > NR_CPUS) { | ||
494 | printk(KERN_WARNING | ||
495 | "Partition configured for %d cpus, " | ||
496 | "operating system maximum is %d.\n", | ||
497 | maxcpus, NR_CPUS); | ||
498 | maxcpus = NR_CPUS; | ||
499 | } else | ||
500 | printk(KERN_INFO "Partition configured for %d cpus.\n", | ||
501 | maxcpus); | ||
502 | |||
503 | for (cpu = 0; cpu < maxcpus; cpu++) | ||
504 | cpu_set(cpu, cpu_possible_map); | ||
505 | out: | ||
506 | of_node_put(dn); | ||
507 | } | ||
508 | |||
509 | /* | ||
510 | * Do the sibling map; assume only two threads per processor. | ||
511 | */ | ||
512 | for_each_cpu(cpu) { | ||
513 | cpu_set(cpu, cpu_sibling_map[cpu]); | ||
514 | if (cpu_has_feature(CPU_FTR_SMT)) | ||
515 | cpu_set(cpu ^ 0x1, cpu_sibling_map[cpu]); | ||
516 | } | ||
517 | |||
518 | systemcfg->processorCount = num_present_cpus(); | ||
519 | #endif /* CONFIG_PPC64 */ | ||
520 | } | ||
521 | #endif /* CONFIG_SMP */ | ||
diff --git a/arch/powerpc/kernel/setup_32.c b/arch/powerpc/kernel/setup_32.c index 9680ae99b084..b45eedbb4b3a 100644 --- a/arch/powerpc/kernel/setup_32.c +++ b/arch/powerpc/kernel/setup_32.c | |||
@@ -288,6 +288,8 @@ void __init setup_arch(char **cmdline_p) | |||
288 | unflatten_device_tree(); | 288 | unflatten_device_tree(); |
289 | finish_device_tree(); | 289 | finish_device_tree(); |
290 | 290 | ||
291 | smp_setup_cpu_maps(); | ||
292 | |||
291 | #ifdef CONFIG_BOOTX_TEXT | 293 | #ifdef CONFIG_BOOTX_TEXT |
292 | init_boot_display(); | 294 | init_boot_display(); |
293 | #endif | 295 | #endif |
diff --git a/arch/powerpc/kernel/setup_64.c b/arch/powerpc/kernel/setup_64.c index 40c48100bf1b..6b52cce872be 100644 --- a/arch/powerpc/kernel/setup_64.c +++ b/arch/powerpc/kernel/setup_64.c | |||
@@ -56,7 +56,7 @@ | |||
56 | #include <asm/page.h> | 56 | #include <asm/page.h> |
57 | #include <asm/mmu.h> | 57 | #include <asm/mmu.h> |
58 | #include <asm/lmb.h> | 58 | #include <asm/lmb.h> |
59 | #include <asm/iSeries/ItLpNaca.h> | 59 | #include <asm/iseries/it_lp_naca.h> |
60 | #include <asm/firmware.h> | 60 | #include <asm/firmware.h> |
61 | #include <asm/systemcfg.h> | 61 | #include <asm/systemcfg.h> |
62 | #include <asm/xmon.h> | 62 | #include <asm/xmon.h> |
@@ -103,8 +103,6 @@ extern void htab_initialize(void); | |||
103 | extern void early_init_devtree(void *flat_dt); | 103 | extern void early_init_devtree(void *flat_dt); |
104 | extern void unflatten_device_tree(void); | 104 | extern void unflatten_device_tree(void); |
105 | 105 | ||
106 | extern void smp_release_cpus(void); | ||
107 | |||
108 | int have_of = 1; | 106 | int have_of = 1; |
109 | int boot_cpuid = 0; | 107 | int boot_cpuid = 0; |
110 | int boot_cpuid_phys = 0; | 108 | int boot_cpuid_phys = 0; |
@@ -183,120 +181,14 @@ static int __init early_smt_enabled(char *p) | |||
183 | } | 181 | } |
184 | early_param("smt-enabled", early_smt_enabled); | 182 | early_param("smt-enabled", early_smt_enabled); |
185 | 183 | ||
186 | /** | 184 | #else |
187 | * setup_cpu_maps - initialize the following cpu maps: | 185 | #define check_smt_enabled() |
188 | * cpu_possible_map | ||
189 | * cpu_present_map | ||
190 | * cpu_sibling_map | ||
191 | * | ||
192 | * Having the possible map set up early allows us to restrict allocations | ||
193 | * of things like irqstacks to num_possible_cpus() rather than NR_CPUS. | ||
194 | * | ||
195 | * We do not initialize the online map here; cpus set their own bits in | ||
196 | * cpu_online_map as they come up. | ||
197 | * | ||
198 | * This function is valid only for Open Firmware systems. finish_device_tree | ||
199 | * must be called before using this. | ||
200 | * | ||
201 | * While we're here, we may as well set the "physical" cpu ids in the paca. | ||
202 | */ | ||
203 | static void __init setup_cpu_maps(void) | ||
204 | { | ||
205 | struct device_node *dn = NULL; | ||
206 | int cpu = 0; | ||
207 | int swap_cpuid = 0; | ||
208 | |||
209 | check_smt_enabled(); | ||
210 | |||
211 | while ((dn = of_find_node_by_type(dn, "cpu")) && cpu < NR_CPUS) { | ||
212 | u32 *intserv; | ||
213 | int j, len = sizeof(u32), nthreads; | ||
214 | |||
215 | intserv = (u32 *)get_property(dn, "ibm,ppc-interrupt-server#s", | ||
216 | &len); | ||
217 | if (!intserv) | ||
218 | intserv = (u32 *)get_property(dn, "reg", NULL); | ||
219 | |||
220 | nthreads = len / sizeof(u32); | ||
221 | |||
222 | for (j = 0; j < nthreads && cpu < NR_CPUS; j++) { | ||
223 | cpu_set(cpu, cpu_present_map); | ||
224 | set_hard_smp_processor_id(cpu, intserv[j]); | ||
225 | |||
226 | if (intserv[j] == boot_cpuid_phys) | ||
227 | swap_cpuid = cpu; | ||
228 | cpu_set(cpu, cpu_possible_map); | ||
229 | cpu++; | ||
230 | } | ||
231 | } | ||
232 | |||
233 | /* Swap CPU id 0 with boot_cpuid_phys, so we can always assume that | ||
234 | * boot cpu is logical 0. | ||
235 | */ | ||
236 | if (boot_cpuid_phys != get_hard_smp_processor_id(0)) { | ||
237 | u32 tmp; | ||
238 | tmp = get_hard_smp_processor_id(0); | ||
239 | set_hard_smp_processor_id(0, boot_cpuid_phys); | ||
240 | set_hard_smp_processor_id(swap_cpuid, tmp); | ||
241 | } | ||
242 | |||
243 | /* | ||
244 | * On pSeries LPAR, we need to know how many cpus | ||
245 | * could possibly be added to this partition. | ||
246 | */ | ||
247 | if (systemcfg->platform == PLATFORM_PSERIES_LPAR && | ||
248 | (dn = of_find_node_by_path("/rtas"))) { | ||
249 | int num_addr_cell, num_size_cell, maxcpus; | ||
250 | unsigned int *ireg; | ||
251 | |||
252 | num_addr_cell = prom_n_addr_cells(dn); | ||
253 | num_size_cell = prom_n_size_cells(dn); | ||
254 | |||
255 | ireg = (unsigned int *) | ||
256 | get_property(dn, "ibm,lrdr-capacity", NULL); | ||
257 | |||
258 | if (!ireg) | ||
259 | goto out; | ||
260 | |||
261 | maxcpus = ireg[num_addr_cell + num_size_cell]; | ||
262 | |||
263 | /* Double maxcpus for processors which have SMT capability */ | ||
264 | if (cpu_has_feature(CPU_FTR_SMT)) | ||
265 | maxcpus *= 2; | ||
266 | |||
267 | if (maxcpus > NR_CPUS) { | ||
268 | printk(KERN_WARNING | ||
269 | "Partition configured for %d cpus, " | ||
270 | "operating system maximum is %d.\n", | ||
271 | maxcpus, NR_CPUS); | ||
272 | maxcpus = NR_CPUS; | ||
273 | } else | ||
274 | printk(KERN_INFO "Partition configured for %d cpus.\n", | ||
275 | maxcpus); | ||
276 | |||
277 | for (cpu = 0; cpu < maxcpus; cpu++) | ||
278 | cpu_set(cpu, cpu_possible_map); | ||
279 | out: | ||
280 | of_node_put(dn); | ||
281 | } | ||
282 | |||
283 | /* | ||
284 | * Do the sibling map; assume only two threads per processor. | ||
285 | */ | ||
286 | for_each_cpu(cpu) { | ||
287 | cpu_set(cpu, cpu_sibling_map[cpu]); | ||
288 | if (cpu_has_feature(CPU_FTR_SMT)) | ||
289 | cpu_set(cpu ^ 0x1, cpu_sibling_map[cpu]); | ||
290 | } | ||
291 | |||
292 | systemcfg->processorCount = num_present_cpus(); | ||
293 | } | ||
294 | #endif /* CONFIG_SMP */ | 186 | #endif /* CONFIG_SMP */ |
295 | 187 | ||
296 | extern struct machdep_calls pSeries_md; | 188 | extern struct machdep_calls pSeries_md; |
297 | extern struct machdep_calls pmac_md; | 189 | extern struct machdep_calls pmac_md; |
298 | extern struct machdep_calls maple_md; | 190 | extern struct machdep_calls maple_md; |
299 | extern struct machdep_calls bpa_md; | 191 | extern struct machdep_calls cell_md; |
300 | extern struct machdep_calls iseries_md; | 192 | extern struct machdep_calls iseries_md; |
301 | 193 | ||
302 | /* Ultimately, stuff them in an elf section like initcalls... */ | 194 | /* Ultimately, stuff them in an elf section like initcalls... */ |
@@ -310,8 +202,8 @@ static struct machdep_calls __initdata *machines[] = { | |||
310 | #ifdef CONFIG_PPC_MAPLE | 202 | #ifdef CONFIG_PPC_MAPLE |
311 | &maple_md, | 203 | &maple_md, |
312 | #endif /* CONFIG_PPC_MAPLE */ | 204 | #endif /* CONFIG_PPC_MAPLE */ |
313 | #ifdef CONFIG_PPC_BPA | 205 | #ifdef CONFIG_PPC_CELL |
314 | &bpa_md, | 206 | &cell_md, |
315 | #endif | 207 | #endif |
316 | #ifdef CONFIG_PPC_ISERIES | 208 | #ifdef CONFIG_PPC_ISERIES |
317 | &iseries_md, | 209 | &iseries_md, |
@@ -400,6 +292,29 @@ void __init early_setup(unsigned long dt_ptr) | |||
400 | } | 292 | } |
401 | 293 | ||
402 | 294 | ||
295 | #if defined(CONFIG_SMP) || defined(CONFIG_KEXEC) | ||
296 | void smp_release_cpus(void) | ||
297 | { | ||
298 | extern unsigned long __secondary_hold_spinloop; | ||
299 | |||
300 | DBG(" -> smp_release_cpus()\n"); | ||
301 | |||
302 | /* All secondary cpus are spinning on a common spinloop, release them | ||
303 | * all now so they can start to spin on their individual paca | ||
304 | * spinloops. For non SMP kernels, the secondary cpus never get out | ||
305 | * of the common spinloop. | ||
306 | * This is useless but harmless on iSeries, secondaries are already | ||
307 | * waiting on their paca spinloops. */ | ||
308 | |||
309 | __secondary_hold_spinloop = 1; | ||
310 | mb(); | ||
311 | |||
312 | DBG(" <- smp_release_cpus()\n"); | ||
313 | } | ||
314 | #else | ||
315 | #define smp_release_cpus() | ||
316 | #endif /* CONFIG_SMP || CONFIG_KEXEC */ | ||
317 | |||
403 | /* | 318 | /* |
404 | * Initialize some remaining members of the ppc64_caches and systemcfg structures | 319 | * Initialize some remaining members of the ppc64_caches and systemcfg structures |
405 | * (at least until we get rid of them completely). This is mostly some | 320 | * (at least until we get rid of them completely). This is mostly some |
@@ -589,17 +504,13 @@ void __init setup_system(void) | |||
589 | 504 | ||
590 | parse_early_param(); | 505 | parse_early_param(); |
591 | 506 | ||
592 | #ifdef CONFIG_SMP | 507 | check_smt_enabled(); |
593 | /* | 508 | smp_setup_cpu_maps(); |
594 | * iSeries has already initialized the cpu maps at this point. | ||
595 | */ | ||
596 | setup_cpu_maps(); | ||
597 | 509 | ||
598 | /* Release secondary cpus out of their spinloops at 0x60 now that | 510 | /* Release secondary cpus out of their spinloops at 0x60 now that |
599 | * we can map physical -> logical CPU ids | 511 | * we can map physical -> logical CPU ids |
600 | */ | 512 | */ |
601 | smp_release_cpus(); | 513 | smp_release_cpus(); |
602 | #endif | ||
603 | 514 | ||
604 | printk("Starting Linux PPC64 %s\n", system_utsname.version); | 515 | printk("Starting Linux PPC64 %s\n", system_utsname.version); |
605 | 516 | ||
@@ -631,23 +542,6 @@ static int ppc64_panic_event(struct notifier_block *this, | |||
631 | return NOTIFY_DONE; | 542 | return NOTIFY_DONE; |
632 | } | 543 | } |
633 | 544 | ||
634 | #ifdef CONFIG_PPC_ISERIES | ||
635 | /* | ||
636 | * On iSeries we just parse the mem=X option from the command line. | ||
637 | * On pSeries it's a bit more complicated, see prom_init_mem() | ||
638 | */ | ||
639 | static int __init early_parsemem(char *p) | ||
640 | { | ||
641 | if (!p) | ||
642 | return 0; | ||
643 | |||
644 | memory_limit = ALIGN(memparse(p, &p), PAGE_SIZE); | ||
645 | |||
646 | return 0; | ||
647 | } | ||
648 | early_param("mem", early_parsemem); | ||
649 | #endif /* CONFIG_PPC_ISERIES */ | ||
650 | |||
651 | #ifdef CONFIG_IRQSTACKS | 545 | #ifdef CONFIG_IRQSTACKS |
652 | static void __init irqstack_early_init(void) | 546 | static void __init irqstack_early_init(void) |
653 | { | 547 | { |
diff --git a/arch/powerpc/kernel/signal_32.c b/arch/powerpc/kernel/signal_32.c index 444c3e81884c..876c57c11365 100644 --- a/arch/powerpc/kernel/signal_32.c +++ b/arch/powerpc/kernel/signal_32.c | |||
@@ -43,7 +43,7 @@ | |||
43 | #include <asm/uaccess.h> | 43 | #include <asm/uaccess.h> |
44 | #include <asm/cacheflush.h> | 44 | #include <asm/cacheflush.h> |
45 | #ifdef CONFIG_PPC64 | 45 | #ifdef CONFIG_PPC64 |
46 | #include <asm/ppc32.h> | 46 | #include "ppc32.h" |
47 | #include <asm/ppcdebug.h> | 47 | #include <asm/ppcdebug.h> |
48 | #include <asm/unistd.h> | 48 | #include <asm/unistd.h> |
49 | #include <asm/vdso.h> | 49 | #include <asm/vdso.h> |
diff --git a/arch/ppc64/kernel/signal.c b/arch/powerpc/kernel/signal_64.c index ec9d0984b6a0..ec9d0984b6a0 100644 --- a/arch/ppc64/kernel/signal.c +++ b/arch/powerpc/kernel/signal_64.c | |||
diff --git a/arch/ppc64/kernel/smp-tbsync.c b/arch/powerpc/kernel/smp-tbsync.c index 7d8ec9996b3e..9adef3bddad4 100644 --- a/arch/ppc64/kernel/smp-tbsync.c +++ b/arch/powerpc/kernel/smp-tbsync.c | |||
@@ -22,11 +22,11 @@ enum { | |||
22 | }; | 22 | }; |
23 | 23 | ||
24 | static struct { | 24 | static struct { |
25 | volatile long tb; | 25 | volatile u64 tb; |
26 | volatile long mark; | 26 | volatile u64 mark; |
27 | volatile int cmd; | 27 | volatile int cmd; |
28 | volatile int handshake; | 28 | volatile int handshake; |
29 | int filler[3]; | 29 | int filler[2]; |
30 | 30 | ||
31 | volatile int ack; | 31 | volatile int ack; |
32 | int filler2[7]; | 32 | int filler2[7]; |
@@ -36,89 +36,80 @@ static struct { | |||
36 | 36 | ||
37 | static volatile int running; | 37 | static volatile int running; |
38 | 38 | ||
39 | static void __devinit | 39 | static void __devinit enter_contest(u64 mark, long add) |
40 | enter_contest( long mark, long add ) | ||
41 | { | 40 | { |
42 | while( (long)(mftb() - mark) < 0 ) | 41 | while (get_tb() < mark) |
43 | tbsync->race_result = add; | 42 | tbsync->race_result = add; |
44 | } | 43 | } |
45 | 44 | ||
46 | void __devinit | 45 | void __devinit smp_generic_take_timebase(void) |
47 | smp_generic_take_timebase( void ) | ||
48 | { | 46 | { |
49 | int cmd; | 47 | int cmd; |
50 | long tb; | 48 | u64 tb; |
51 | 49 | ||
52 | local_irq_disable(); | 50 | local_irq_disable(); |
53 | while( !running ) | 51 | while (!running) |
54 | ; | 52 | barrier(); |
55 | rmb(); | 53 | rmb(); |
56 | 54 | ||
57 | for( ;; ) { | 55 | for (;;) { |
58 | tbsync->ack = 1; | 56 | tbsync->ack = 1; |
59 | while( !tbsync->handshake ) | 57 | while (!tbsync->handshake) |
60 | ; | 58 | barrier(); |
61 | rmb(); | 59 | rmb(); |
62 | 60 | ||
63 | cmd = tbsync->cmd; | 61 | cmd = tbsync->cmd; |
64 | tb = tbsync->tb; | 62 | tb = tbsync->tb; |
63 | mb(); | ||
65 | tbsync->ack = 0; | 64 | tbsync->ack = 0; |
66 | if( cmd == kExit ) | 65 | if (cmd == kExit) |
67 | return; | 66 | break; |
68 | 67 | ||
69 | if( cmd == kSetAndTest ) { | 68 | while (tbsync->handshake) |
70 | while( tbsync->handshake ) | 69 | barrier(); |
71 | ; | 70 | if (cmd == kSetAndTest) |
72 | asm volatile ("mttbl %0" :: "r" (tb & 0xfffffffful) ); | 71 | set_tb(tb >> 32, tb & 0xfffffffful); |
73 | asm volatile ("mttbu %0" :: "r" (tb >> 32) ); | 72 | enter_contest(tbsync->mark, -1); |
74 | } else { | ||
75 | while( tbsync->handshake ) | ||
76 | ; | ||
77 | } | ||
78 | enter_contest( tbsync->mark, -1 ); | ||
79 | } | 73 | } |
80 | local_irq_enable(); | 74 | local_irq_enable(); |
81 | } | 75 | } |
82 | 76 | ||
83 | static int __devinit | 77 | static int __devinit start_contest(int cmd, long offset, int num) |
84 | start_contest( int cmd, long offset, long num ) | ||
85 | { | 78 | { |
86 | int i, score=0; | 79 | int i, score=0; |
87 | long tb, mark; | 80 | u64 tb; |
81 | long mark; | ||
88 | 82 | ||
89 | tbsync->cmd = cmd; | 83 | tbsync->cmd = cmd; |
90 | 84 | ||
91 | local_irq_disable(); | 85 | local_irq_disable(); |
92 | for( i=-3; i<num; ) { | 86 | for (i = -3; i < num; ) { |
93 | tb = (long)mftb() + 400; | 87 | tb = get_tb() + 400; |
94 | tbsync->tb = tb + offset; | 88 | tbsync->tb = tb + offset; |
95 | tbsync->mark = mark = tb + 400; | 89 | tbsync->mark = mark = tb + 400; |
96 | 90 | ||
97 | wmb(); | 91 | wmb(); |
98 | 92 | ||
99 | tbsync->handshake = 1; | 93 | tbsync->handshake = 1; |
100 | while( tbsync->ack ) | 94 | while (tbsync->ack) |
101 | ; | 95 | barrier(); |
102 | 96 | ||
103 | while( (long)(mftb() - tb) <= 0 ) | 97 | while (get_tb() <= tb) |
104 | ; | 98 | barrier(); |
105 | tbsync->handshake = 0; | 99 | tbsync->handshake = 0; |
106 | enter_contest( mark, 1 ); | 100 | enter_contest(mark, 1); |
107 | 101 | ||
108 | while( !tbsync->ack ) | 102 | while (!tbsync->ack) |
109 | ; | 103 | barrier(); |
110 | 104 | ||
111 | if ((tbsync->tb ^ (long)mftb()) & 0x8000000000000000ul) | 105 | if (i++ > 0) |
112 | continue; | ||
113 | if( i++ > 0 ) | ||
114 | score += tbsync->race_result; | 106 | score += tbsync->race_result; |
115 | } | 107 | } |
116 | local_irq_enable(); | 108 | local_irq_enable(); |
117 | return score; | 109 | return score; |
118 | } | 110 | } |
119 | 111 | ||
120 | void __devinit | 112 | void __devinit smp_generic_give_timebase(void) |
121 | smp_generic_give_timebase( void ) | ||
122 | { | 113 | { |
123 | int i, score, score2, old, min=0, max=5000, offset=1000; | 114 | int i, score, score2, old, min=0, max=5000, offset=1000; |
124 | 115 | ||
@@ -130,14 +121,14 @@ smp_generic_give_timebase( void ) | |||
130 | mb(); | 121 | mb(); |
131 | running = 1; | 122 | running = 1; |
132 | 123 | ||
133 | while( !tbsync->ack ) | 124 | while (!tbsync->ack) |
134 | ; | 125 | barrier(); |
135 | 126 | ||
136 | printk("Got ack\n"); | 127 | printk("Got ack\n"); |
137 | 128 | ||
138 | /* binary search */ | 129 | /* binary search */ |
139 | for( old=-1 ; old != offset ; offset=(min+max)/2 ) { | 130 | for (old = -1; old != offset ; offset = (min+max) / 2) { |
140 | score = start_contest( kSetAndTest, offset, NUM_ITER ); | 131 | score = start_contest(kSetAndTest, offset, NUM_ITER); |
141 | 132 | ||
142 | printk("score %d, offset %d\n", score, offset ); | 133 | printk("score %d, offset %d\n", score, offset ); |
143 | 134 | ||
@@ -147,21 +138,22 @@ smp_generic_give_timebase( void ) | |||
147 | min = offset; | 138 | min = offset; |
148 | old = offset; | 139 | old = offset; |
149 | } | 140 | } |
150 | score = start_contest( kSetAndTest, min, NUM_ITER ); | 141 | score = start_contest(kSetAndTest, min, NUM_ITER); |
151 | score2 = start_contest( kSetAndTest, max, NUM_ITER ); | 142 | score2 = start_contest(kSetAndTest, max, NUM_ITER); |
152 | 143 | ||
153 | printk( "Min %d (score %d), Max %d (score %d)\n", min, score, max, score2 ); | 144 | printk("Min %d (score %d), Max %d (score %d)\n", |
154 | score = abs( score ); | 145 | min, score, max, score2); |
155 | score2 = abs( score2 ); | 146 | score = abs(score); |
147 | score2 = abs(score2); | ||
156 | offset = (score < score2) ? min : max; | 148 | offset = (score < score2) ? min : max; |
157 | 149 | ||
158 | /* guard against inaccurate mttb */ | 150 | /* guard against inaccurate mttb */ |
159 | for( i=0; i<10; i++ ) { | 151 | for (i = 0; i < 10; i++) { |
160 | start_contest( kSetAndTest, offset, NUM_ITER/10 ); | 152 | start_contest(kSetAndTest, offset, NUM_ITER/10); |
161 | 153 | ||
162 | if( (score2=start_contest(kTest, offset, NUM_ITER)) < 0 ) | 154 | if ((score2 = start_contest(kTest, offset, NUM_ITER)) < 0) |
163 | score2 = -score2; | 155 | score2 = -score2; |
164 | if( score2 <= score || score2 < 20 ) | 156 | if (score2 <= score || score2 < 20) |
165 | break; | 157 | break; |
166 | } | 158 | } |
167 | printk("Final offset: %d (%d/%d)\n", offset, score2, NUM_ITER ); | 159 | printk("Final offset: %d (%d/%d)\n", offset, score2, NUM_ITER ); |
@@ -170,10 +162,10 @@ smp_generic_give_timebase( void ) | |||
170 | tbsync->cmd = kExit; | 162 | tbsync->cmd = kExit; |
171 | wmb(); | 163 | wmb(); |
172 | tbsync->handshake = 1; | 164 | tbsync->handshake = 1; |
173 | while( tbsync->ack ) | 165 | while (tbsync->ack) |
174 | ; | 166 | barrier(); |
175 | tbsync->handshake = 0; | 167 | tbsync->handshake = 0; |
176 | kfree( tbsync ); | 168 | kfree(tbsync); |
177 | tbsync = NULL; | 169 | tbsync = NULL; |
178 | running = 0; | 170 | running = 0; |
179 | } | 171 | } |
diff --git a/arch/ppc64/kernel/smp.c b/arch/powerpc/kernel/smp.c index 017c12919832..1794a694a928 100644 --- a/arch/ppc64/kernel/smp.c +++ b/arch/powerpc/kernel/smp.c | |||
@@ -39,13 +39,18 @@ | |||
39 | #include <asm/pgtable.h> | 39 | #include <asm/pgtable.h> |
40 | #include <asm/prom.h> | 40 | #include <asm/prom.h> |
41 | #include <asm/smp.h> | 41 | #include <asm/smp.h> |
42 | #include <asm/paca.h> | ||
43 | #include <asm/time.h> | 42 | #include <asm/time.h> |
43 | #include <asm/xmon.h> | ||
44 | #include <asm/machdep.h> | 44 | #include <asm/machdep.h> |
45 | #include <asm/cputable.h> | 45 | #include <asm/cputable.h> |
46 | #include <asm/system.h> | 46 | #include <asm/system.h> |
47 | #include <asm/abs_addr.h> | ||
48 | #include <asm/mpic.h> | 47 | #include <asm/mpic.h> |
48 | #ifdef CONFIG_PPC64 | ||
49 | #include <asm/paca.h> | ||
50 | #endif | ||
51 | |||
52 | int smp_hw_index[NR_CPUS]; | ||
53 | struct thread_info *secondary_ti; | ||
49 | 54 | ||
50 | #ifdef DEBUG | 55 | #ifdef DEBUG |
51 | #define DBG(fmt...) udbg_printf(fmt) | 56 | #define DBG(fmt...) udbg_printf(fmt) |
@@ -60,6 +65,7 @@ cpumask_t cpu_sibling_map[NR_CPUS] = { [0 ... NR_CPUS-1] = CPU_MASK_NONE }; | |||
60 | EXPORT_SYMBOL(cpu_online_map); | 65 | EXPORT_SYMBOL(cpu_online_map); |
61 | EXPORT_SYMBOL(cpu_possible_map); | 66 | EXPORT_SYMBOL(cpu_possible_map); |
62 | 67 | ||
68 | /* SMP operations for this machine */ | ||
63 | struct smp_ops_t *smp_ops; | 69 | struct smp_ops_t *smp_ops; |
64 | 70 | ||
65 | static volatile unsigned int cpu_callin_map[NR_CPUS]; | 71 | static volatile unsigned int cpu_callin_map[NR_CPUS]; |
@@ -89,7 +95,9 @@ void __devinit smp_mpic_setup_cpu(int cpu) | |||
89 | { | 95 | { |
90 | mpic_setup_this_cpu(); | 96 | mpic_setup_this_cpu(); |
91 | } | 97 | } |
98 | #endif /* CONFIG_MPIC */ | ||
92 | 99 | ||
100 | #ifdef CONFIG_PPC64 | ||
93 | void __devinit smp_generic_kick_cpu(int nr) | 101 | void __devinit smp_generic_kick_cpu(int nr) |
94 | { | 102 | { |
95 | BUG_ON(nr < 0 || nr >= NR_CPUS); | 103 | BUG_ON(nr < 0 || nr >= NR_CPUS); |
@@ -102,8 +110,7 @@ void __devinit smp_generic_kick_cpu(int nr) | |||
102 | paca[nr].cpu_start = 1; | 110 | paca[nr].cpu_start = 1; |
103 | smp_mb(); | 111 | smp_mb(); |
104 | } | 112 | } |
105 | 113 | #endif | |
106 | #endif /* CONFIG_MPIC */ | ||
107 | 114 | ||
108 | void smp_message_recv(int msg, struct pt_regs *regs) | 115 | void smp_message_recv(int msg, struct pt_regs *regs) |
109 | { | 116 | { |
@@ -111,15 +118,10 @@ void smp_message_recv(int msg, struct pt_regs *regs) | |||
111 | case PPC_MSG_CALL_FUNCTION: | 118 | case PPC_MSG_CALL_FUNCTION: |
112 | smp_call_function_interrupt(); | 119 | smp_call_function_interrupt(); |
113 | break; | 120 | break; |
114 | case PPC_MSG_RESCHEDULE: | 121 | case PPC_MSG_RESCHEDULE: |
115 | /* XXX Do we have to do this? */ | 122 | /* XXX Do we have to do this? */ |
116 | set_need_resched(); | 123 | set_need_resched(); |
117 | break; | 124 | break; |
118 | #if 0 | ||
119 | case PPC_MSG_MIGRATE_TASK: | ||
120 | /* spare */ | ||
121 | break; | ||
122 | #endif | ||
123 | #ifdef CONFIG_DEBUGGER | 125 | #ifdef CONFIG_DEBUGGER |
124 | case PPC_MSG_DEBUGGER_BREAK: | 126 | case PPC_MSG_DEBUGGER_BREAK: |
125 | debugger_ipi(regs); | 127 | debugger_ipi(regs); |
@@ -171,8 +173,8 @@ static struct call_data_struct { | |||
171 | int wait; | 173 | int wait; |
172 | } *call_data; | 174 | } *call_data; |
173 | 175 | ||
174 | /* delay of at least 8 seconds on 1GHz cpu */ | 176 | /* delay of at least 8 seconds */ |
175 | #define SMP_CALL_TIMEOUT (1UL << (30 + 3)) | 177 | #define SMP_CALL_TIMEOUT 8 |
176 | 178 | ||
177 | /* | 179 | /* |
178 | * This function sends a 'generic call function' IPI to all other CPUs | 180 | * This function sends a 'generic call function' IPI to all other CPUs |
@@ -194,7 +196,7 @@ int smp_call_function (void (*func) (void *info), void *info, int nonatomic, | |||
194 | { | 196 | { |
195 | struct call_data_struct data; | 197 | struct call_data_struct data; |
196 | int ret = -1, cpus; | 198 | int ret = -1, cpus; |
197 | unsigned long timeout; | 199 | u64 timeout; |
198 | 200 | ||
199 | /* Can deadlock when called with interrupts disabled */ | 201 | /* Can deadlock when called with interrupts disabled */ |
200 | WARN_ON(irqs_disabled()); | 202 | WARN_ON(irqs_disabled()); |
@@ -220,11 +222,12 @@ int smp_call_function (void (*func) (void *info), void *info, int nonatomic, | |||
220 | /* Send a message to all other CPUs and wait for them to respond */ | 222 | /* Send a message to all other CPUs and wait for them to respond */ |
221 | smp_ops->message_pass(MSG_ALL_BUT_SELF, PPC_MSG_CALL_FUNCTION); | 223 | smp_ops->message_pass(MSG_ALL_BUT_SELF, PPC_MSG_CALL_FUNCTION); |
222 | 224 | ||
225 | timeout = get_tb() + (u64) SMP_CALL_TIMEOUT * tb_ticks_per_sec; | ||
226 | |||
223 | /* Wait for response */ | 227 | /* Wait for response */ |
224 | timeout = SMP_CALL_TIMEOUT; | ||
225 | while (atomic_read(&data.started) != cpus) { | 228 | while (atomic_read(&data.started) != cpus) { |
226 | HMT_low(); | 229 | HMT_low(); |
227 | if (--timeout == 0) { | 230 | if (get_tb() >= timeout) { |
228 | printk("smp_call_function on cpu %d: other cpus not " | 231 | printk("smp_call_function on cpu %d: other cpus not " |
229 | "responding (%d)\n", smp_processor_id(), | 232 | "responding (%d)\n", smp_processor_id(), |
230 | atomic_read(&data.started)); | 233 | atomic_read(&data.started)); |
@@ -234,10 +237,9 @@ int smp_call_function (void (*func) (void *info), void *info, int nonatomic, | |||
234 | } | 237 | } |
235 | 238 | ||
236 | if (wait) { | 239 | if (wait) { |
237 | timeout = SMP_CALL_TIMEOUT; | ||
238 | while (atomic_read(&data.finished) != cpus) { | 240 | while (atomic_read(&data.finished) != cpus) { |
239 | HMT_low(); | 241 | HMT_low(); |
240 | if (--timeout == 0) { | 242 | if (get_tb() >= timeout) { |
241 | printk("smp_call_function on cpu %d: other " | 243 | printk("smp_call_function on cpu %d: other " |
242 | "cpus not finishing (%d/%d)\n", | 244 | "cpus not finishing (%d/%d)\n", |
243 | smp_processor_id(), | 245 | smp_processor_id(), |
@@ -251,7 +253,7 @@ int smp_call_function (void (*func) (void *info), void *info, int nonatomic, | |||
251 | 253 | ||
252 | ret = 0; | 254 | ret = 0; |
253 | 255 | ||
254 | out: | 256 | out: |
255 | call_data = NULL; | 257 | call_data = NULL; |
256 | HMT_medium(); | 258 | HMT_medium(); |
257 | spin_unlock(&call_lock); | 259 | spin_unlock(&call_lock); |
@@ -313,8 +315,11 @@ static void __init smp_create_idle(unsigned int cpu) | |||
313 | p = fork_idle(cpu); | 315 | p = fork_idle(cpu); |
314 | if (IS_ERR(p)) | 316 | if (IS_ERR(p)) |
315 | panic("failed fork for CPU %u: %li", cpu, PTR_ERR(p)); | 317 | panic("failed fork for CPU %u: %li", cpu, PTR_ERR(p)); |
318 | #ifdef CONFIG_PPC64 | ||
316 | paca[cpu].__current = p; | 319 | paca[cpu].__current = p; |
320 | #endif | ||
317 | current_set[cpu] = p->thread_info; | 321 | current_set[cpu] = p->thread_info; |
322 | p->thread_info->cpu = cpu; | ||
318 | } | 323 | } |
319 | 324 | ||
320 | void __init smp_prepare_cpus(unsigned int max_cpus) | 325 | void __init smp_prepare_cpus(unsigned int max_cpus) |
@@ -333,18 +338,6 @@ void __init smp_prepare_cpus(unsigned int max_cpus) | |||
333 | smp_store_cpu_info(boot_cpuid); | 338 | smp_store_cpu_info(boot_cpuid); |
334 | cpu_callin_map[boot_cpuid] = 1; | 339 | cpu_callin_map[boot_cpuid] = 1; |
335 | 340 | ||
336 | #ifndef CONFIG_PPC_ISERIES | ||
337 | paca[boot_cpuid].next_jiffy_update_tb = tb_last_stamp = get_tb(); | ||
338 | |||
339 | /* | ||
340 | * Should update do_gtod.stamp_xsec. | ||
341 | * For now we leave it which means the time can be some | ||
342 | * number of msecs off until someone does a settimeofday() | ||
343 | */ | ||
344 | do_gtod.varp->tb_orig_stamp = tb_last_stamp; | ||
345 | systemcfg->tb_orig_stamp = tb_last_stamp; | ||
346 | #endif | ||
347 | |||
348 | max_cpus = smp_ops->probe(); | 341 | max_cpus = smp_ops->probe(); |
349 | 342 | ||
350 | smp_space_timers(max_cpus); | 343 | smp_space_timers(max_cpus); |
@@ -359,8 +352,9 @@ void __devinit smp_prepare_boot_cpu(void) | |||
359 | BUG_ON(smp_processor_id() != boot_cpuid); | 352 | BUG_ON(smp_processor_id() != boot_cpuid); |
360 | 353 | ||
361 | cpu_set(boot_cpuid, cpu_online_map); | 354 | cpu_set(boot_cpuid, cpu_online_map); |
362 | 355 | #ifdef CONFIG_PPC64 | |
363 | paca[boot_cpuid].__current = current; | 356 | paca[boot_cpuid].__current = current; |
357 | #endif | ||
364 | current_set[boot_cpuid] = current->thread_info; | 358 | current_set[boot_cpuid] = current->thread_info; |
365 | } | 359 | } |
366 | 360 | ||
@@ -444,13 +438,16 @@ int __devinit __cpu_up(unsigned int cpu) | |||
444 | { | 438 | { |
445 | int c; | 439 | int c; |
446 | 440 | ||
441 | secondary_ti = current_set[cpu]; | ||
447 | if (!cpu_enable(cpu)) | 442 | if (!cpu_enable(cpu)) |
448 | return 0; | 443 | return 0; |
449 | 444 | ||
450 | if (smp_ops->cpu_bootable && !smp_ops->cpu_bootable(cpu)) | 445 | if (smp_ops->cpu_bootable && !smp_ops->cpu_bootable(cpu)) |
451 | return -EINVAL; | 446 | return -EINVAL; |
452 | 447 | ||
448 | #ifdef CONFIG_PPC64 | ||
453 | paca[cpu].default_decr = tb_ticks_per_jiffy; | 449 | paca[cpu].default_decr = tb_ticks_per_jiffy; |
450 | #endif | ||
454 | 451 | ||
455 | /* Make sure callin-map entry is 0 (can be leftover a CPU | 452 | /* Make sure callin-map entry is 0 (can be leftover a CPU |
456 | * hotplug | 453 | * hotplug |
@@ -513,7 +510,7 @@ int __devinit start_secondary(void *unused) | |||
513 | current->active_mm = &init_mm; | 510 | current->active_mm = &init_mm; |
514 | 511 | ||
515 | smp_store_cpu_info(cpu); | 512 | smp_store_cpu_info(cpu); |
516 | set_dec(paca[cpu].default_decr); | 513 | set_dec(tb_ticks_per_jiffy); |
517 | cpu_callin_map[cpu] = 1; | 514 | cpu_callin_map[cpu] = 1; |
518 | 515 | ||
519 | smp_ops->setup_cpu(cpu); | 516 | smp_ops->setup_cpu(cpu); |
diff --git a/arch/powerpc/kernel/time.c b/arch/powerpc/kernel/time.c index 23436b6c1881..6996a593dcb3 100644 --- a/arch/powerpc/kernel/time.c +++ b/arch/powerpc/kernel/time.c | |||
@@ -66,8 +66,8 @@ | |||
66 | #include <asm/firmware.h> | 66 | #include <asm/firmware.h> |
67 | #endif | 67 | #endif |
68 | #ifdef CONFIG_PPC_ISERIES | 68 | #ifdef CONFIG_PPC_ISERIES |
69 | #include <asm/iSeries/ItLpQueue.h> | 69 | #include <asm/iseries/it_lp_queue.h> |
70 | #include <asm/iSeries/HvCallXm.h> | 70 | #include <asm/iseries/hv_call_xm.h> |
71 | #endif | 71 | #endif |
72 | 72 | ||
73 | /* keep track of when we need to update the rtc */ | 73 | /* keep track of when we need to update the rtc */ |
diff --git a/arch/powerpc/kernel/traps.c b/arch/powerpc/kernel/traps.c index 5d638ecddbd0..07e5ee40b870 100644 --- a/arch/powerpc/kernel/traps.c +++ b/arch/powerpc/kernel/traps.c | |||
@@ -147,8 +147,8 @@ int die(const char *str, struct pt_regs *regs, long err) | |||
147 | printk("POWERMAC "); | 147 | printk("POWERMAC "); |
148 | nl = 1; | 148 | nl = 1; |
149 | break; | 149 | break; |
150 | case PLATFORM_BPA: | 150 | case PLATFORM_CELL: |
151 | printk("BPA "); | 151 | printk("CELL "); |
152 | nl = 1; | 152 | nl = 1; |
153 | break; | 153 | break; |
154 | } | 154 | } |
@@ -749,22 +749,22 @@ static int check_bug_trap(struct pt_regs *regs) | |||
749 | if (bug->line & BUG_WARNING_TRAP) { | 749 | if (bug->line & BUG_WARNING_TRAP) { |
750 | /* this is a WARN_ON rather than BUG/BUG_ON */ | 750 | /* this is a WARN_ON rather than BUG/BUG_ON */ |
751 | #ifdef CONFIG_XMON | 751 | #ifdef CONFIG_XMON |
752 | xmon_printf(KERN_ERR "Badness in %s at %s:%d\n", | 752 | xmon_printf(KERN_ERR "Badness in %s at %s:%ld\n", |
753 | bug->function, bug->file, | 753 | bug->function, bug->file, |
754 | bug->line & ~BUG_WARNING_TRAP); | 754 | bug->line & ~BUG_WARNING_TRAP); |
755 | #endif /* CONFIG_XMON */ | 755 | #endif /* CONFIG_XMON */ |
756 | printk(KERN_ERR "Badness in %s at %s:%d\n", | 756 | printk(KERN_ERR "Badness in %s at %s:%ld\n", |
757 | bug->function, bug->file, | 757 | bug->function, bug->file, |
758 | bug->line & ~BUG_WARNING_TRAP); | 758 | bug->line & ~BUG_WARNING_TRAP); |
759 | dump_stack(); | 759 | dump_stack(); |
760 | return 1; | 760 | return 1; |
761 | } | 761 | } |
762 | #ifdef CONFIG_XMON | 762 | #ifdef CONFIG_XMON |
763 | xmon_printf(KERN_CRIT "kernel BUG in %s at %s:%d!\n", | 763 | xmon_printf(KERN_CRIT "kernel BUG in %s at %s:%ld!\n", |
764 | bug->function, bug->file, bug->line); | 764 | bug->function, bug->file, bug->line); |
765 | xmon(regs); | 765 | xmon(regs); |
766 | #endif /* CONFIG_XMON */ | 766 | #endif /* CONFIG_XMON */ |
767 | printk(KERN_CRIT "kernel BUG in %s at %s:%d!\n", | 767 | printk(KERN_CRIT "kernel BUG in %s at %s:%ld!\n", |
768 | bug->function, bug->file, bug->line); | 768 | bug->function, bug->file, bug->line); |
769 | 769 | ||
770 | return 0; | 770 | return 0; |
diff --git a/arch/powerpc/kernel/vmlinux.lds.S b/arch/powerpc/kernel/vmlinux.lds.S index d4dfcfbce272..7fa7b15fd8e6 100644 --- a/arch/powerpc/kernel/vmlinux.lds.S +++ b/arch/powerpc/kernel/vmlinux.lds.S | |||
@@ -3,9 +3,12 @@ | |||
3 | #include <asm/page.h> | 3 | #include <asm/page.h> |
4 | #else | 4 | #else |
5 | #define PAGE_SIZE 4096 | 5 | #define PAGE_SIZE 4096 |
6 | #define KERNELBASE CONFIG_KERNEL_START | ||
6 | #endif | 7 | #endif |
7 | #include <asm-generic/vmlinux.lds.h> | 8 | #include <asm-generic/vmlinux.lds.h> |
8 | 9 | ||
10 | ENTRY(_stext) | ||
11 | |||
9 | #ifdef CONFIG_PPC64 | 12 | #ifdef CONFIG_PPC64 |
10 | OUTPUT_ARCH(powerpc:common64) | 13 | OUTPUT_ARCH(powerpc:common64) |
11 | jiffies = jiffies_64; | 14 | jiffies = jiffies_64; |
@@ -21,33 +24,9 @@ SECTIONS | |||
21 | *(.exit.data) | 24 | *(.exit.data) |
22 | } | 25 | } |
23 | 26 | ||
27 | . = KERNELBASE; | ||
24 | 28 | ||
25 | /* Read-only sections, merged into text segment: */ | 29 | /* Read-only sections, merged into text segment: */ |
26 | #ifdef CONFIG_PPC32 | ||
27 | . = + SIZEOF_HEADERS; | ||
28 | .interp : { *(.interp) } | ||
29 | .hash : { *(.hash) } | ||
30 | .dynsym : { *(.dynsym) } | ||
31 | .dynstr : { *(.dynstr) } | ||
32 | .rel.text : { *(.rel.text) } | ||
33 | .rela.text : { *(.rela.text) } | ||
34 | .rel.data : { *(.rel.data) } | ||
35 | .rela.data : { *(.rela.data) } | ||
36 | .rel.rodata : { *(.rel.rodata) } | ||
37 | .rela.rodata : { *(.rela.rodata) } | ||
38 | .rel.got : { *(.rel.got) } | ||
39 | .rela.got : { *(.rela.got) } | ||
40 | .rel.ctors : { *(.rel.ctors) } | ||
41 | .rela.ctors : { *(.rela.ctors) } | ||
42 | .rel.dtors : { *(.rel.dtors) } | ||
43 | .rela.dtors : { *(.rela.dtors) } | ||
44 | .rel.bss : { *(.rel.bss) } | ||
45 | .rela.bss : { *(.rela.bss) } | ||
46 | .rel.plt : { *(.rel.plt) } | ||
47 | .rela.plt : { *(.rela.plt) } | ||
48 | /* .init : { *(.init) } =0*/ | ||
49 | .plt : { *(.plt) } | ||
50 | #endif | ||
51 | .text : { | 30 | .text : { |
52 | *(.text .text.*) | 31 | *(.text .text.*) |
53 | SCHED_TEXT | 32 | SCHED_TEXT |
diff --git a/arch/powerpc/lib/Makefile b/arch/powerpc/lib/Makefile index e6b2be3bcec1..34f5c2e074c9 100644 --- a/arch/powerpc/lib/Makefile +++ b/arch/powerpc/lib/Makefile | |||
@@ -3,13 +3,14 @@ | |||
3 | # | 3 | # |
4 | 4 | ||
5 | ifeq ($(CONFIG_PPC_MERGE),y) | 5 | ifeq ($(CONFIG_PPC_MERGE),y) |
6 | obj-y := string.o | 6 | obj-y := string.o strcase.o |
7 | obj-$(CONFIG_PPC32) += div64.o copy_32.o checksum_32.o | ||
7 | endif | 8 | endif |
8 | 9 | ||
9 | obj-y += strcase.o | 10 | obj-y += bitops.o |
10 | obj-$(CONFIG_PPC32) += div64.o copy_32.o checksum_32.o | ||
11 | obj-$(CONFIG_PPC64) += checksum_64.o copypage_64.o copyuser_64.o \ | 11 | obj-$(CONFIG_PPC64) += checksum_64.o copypage_64.o copyuser_64.o \ |
12 | memcpy_64.o usercopy_64.o mem_64.o | 12 | memcpy_64.o usercopy_64.o mem_64.o string.o \ |
13 | strcase.o | ||
13 | obj-$(CONFIG_PPC_ISERIES) += e2a.o | 14 | obj-$(CONFIG_PPC_ISERIES) += e2a.o |
14 | obj-$(CONFIG_XMON) += sstep.o | 15 | obj-$(CONFIG_XMON) += sstep.o |
15 | 16 | ||
diff --git a/arch/ppc64/kernel/bitops.c b/arch/powerpc/lib/bitops.c index ae329e8b4acb..b67ce3004ebf 100644 --- a/arch/ppc64/kernel/bitops.c +++ b/arch/powerpc/lib/bitops.c | |||
@@ -1,93 +1,97 @@ | |||
1 | /* | 1 | #include <linux/types.h> |
2 | * These are too big to be inlined. | ||
3 | */ | ||
4 | |||
5 | #include <linux/kernel.h> | ||
6 | #include <linux/module.h> | 2 | #include <linux/module.h> |
7 | #include <linux/bitops.h> | ||
8 | #include <asm/byteorder.h> | 3 | #include <asm/byteorder.h> |
4 | #include <asm/bitops.h> | ||
9 | 5 | ||
10 | unsigned long find_next_zero_bit(const unsigned long *addr, unsigned long size, | 6 | /** |
11 | unsigned long offset) | 7 | * find_next_bit - find the next set bit in a memory region |
8 | * @addr: The address to base the search on | ||
9 | * @offset: The bitnumber to start searching at | ||
10 | * @size: The maximum size to search | ||
11 | */ | ||
12 | unsigned long find_next_bit(const unsigned long *addr, unsigned long size, | ||
13 | unsigned long offset) | ||
12 | { | 14 | { |
13 | const unsigned long *p = addr + (offset >> 6); | 15 | const unsigned long *p = addr + BITOP_WORD(offset); |
14 | unsigned long result = offset & ~63UL; | 16 | unsigned long result = offset & ~(BITS_PER_LONG-1); |
15 | unsigned long tmp; | 17 | unsigned long tmp; |
16 | 18 | ||
17 | if (offset >= size) | 19 | if (offset >= size) |
18 | return size; | 20 | return size; |
19 | size -= result; | 21 | size -= result; |
20 | offset &= 63UL; | 22 | offset %= BITS_PER_LONG; |
21 | if (offset) { | 23 | if (offset) { |
22 | tmp = *(p++); | 24 | tmp = *(p++); |
23 | tmp |= ~0UL >> (64 - offset); | 25 | tmp &= (~0UL << offset); |
24 | if (size < 64) | 26 | if (size < BITS_PER_LONG) |
25 | goto found_first; | 27 | goto found_first; |
26 | if (~tmp) | 28 | if (tmp) |
27 | goto found_middle; | 29 | goto found_middle; |
28 | size -= 64; | 30 | size -= BITS_PER_LONG; |
29 | result += 64; | 31 | result += BITS_PER_LONG; |
30 | } | 32 | } |
31 | while (size & ~63UL) { | 33 | while (size & ~(BITS_PER_LONG-1)) { |
32 | if (~(tmp = *(p++))) | 34 | if ((tmp = *(p++))) |
33 | goto found_middle; | 35 | goto found_middle; |
34 | result += 64; | 36 | result += BITS_PER_LONG; |
35 | size -= 64; | 37 | size -= BITS_PER_LONG; |
36 | } | 38 | } |
37 | if (!size) | 39 | if (!size) |
38 | return result; | 40 | return result; |
39 | tmp = *p; | 41 | tmp = *p; |
40 | 42 | ||
41 | found_first: | 43 | found_first: |
42 | tmp |= ~0UL << size; | 44 | tmp &= (~0UL >> (64 - size)); |
43 | if (tmp == ~0UL) /* Are any bits zero? */ | 45 | if (tmp == 0UL) /* Are any bits set? */ |
44 | return result + size; /* Nope. */ | 46 | return result + size; /* Nope. */ |
45 | found_middle: | 47 | found_middle: |
46 | return result + ffz(tmp); | 48 | return result + __ffs(tmp); |
47 | } | 49 | } |
50 | EXPORT_SYMBOL(find_next_bit); | ||
48 | 51 | ||
49 | EXPORT_SYMBOL(find_next_zero_bit); | 52 | /* |
50 | 53 | * This implementation of find_{first,next}_zero_bit was stolen from | |
51 | unsigned long find_next_bit(const unsigned long *addr, unsigned long size, | 54 | * Linus' asm-alpha/bitops.h. |
52 | unsigned long offset) | 55 | */ |
56 | unsigned long find_next_zero_bit(const unsigned long *addr, unsigned long size, | ||
57 | unsigned long offset) | ||
53 | { | 58 | { |
54 | const unsigned long *p = addr + (offset >> 6); | 59 | const unsigned long *p = addr + BITOP_WORD(offset); |
55 | unsigned long result = offset & ~63UL; | 60 | unsigned long result = offset & ~(BITS_PER_LONG-1); |
56 | unsigned long tmp; | 61 | unsigned long tmp; |
57 | 62 | ||
58 | if (offset >= size) | 63 | if (offset >= size) |
59 | return size; | 64 | return size; |
60 | size -= result; | 65 | size -= result; |
61 | offset &= 63UL; | 66 | offset %= BITS_PER_LONG; |
62 | if (offset) { | 67 | if (offset) { |
63 | tmp = *(p++); | 68 | tmp = *(p++); |
64 | tmp &= (~0UL << offset); | 69 | tmp |= ~0UL >> (BITS_PER_LONG - offset); |
65 | if (size < 64) | 70 | if (size < BITS_PER_LONG) |
66 | goto found_first; | 71 | goto found_first; |
67 | if (tmp) | 72 | if (~tmp) |
68 | goto found_middle; | 73 | goto found_middle; |
69 | size -= 64; | 74 | size -= BITS_PER_LONG; |
70 | result += 64; | 75 | result += BITS_PER_LONG; |
71 | } | 76 | } |
72 | while (size & ~63UL) { | 77 | while (size & ~(BITS_PER_LONG-1)) { |
73 | if ((tmp = *(p++))) | 78 | if (~(tmp = *(p++))) |
74 | goto found_middle; | 79 | goto found_middle; |
75 | result += 64; | 80 | result += BITS_PER_LONG; |
76 | size -= 64; | 81 | size -= BITS_PER_LONG; |
77 | } | 82 | } |
78 | if (!size) | 83 | if (!size) |
79 | return result; | 84 | return result; |
80 | tmp = *p; | 85 | tmp = *p; |
81 | 86 | ||
82 | found_first: | 87 | found_first: |
83 | tmp &= (~0UL >> (64 - size)); | 88 | tmp |= ~0UL << size; |
84 | if (tmp == 0UL) /* Are any bits set? */ | 89 | if (tmp == ~0UL) /* Are any bits zero? */ |
85 | return result + size; /* Nope. */ | 90 | return result + size; /* Nope. */ |
86 | found_middle: | 91 | found_middle: |
87 | return result + __ffs(tmp); | 92 | return result + ffz(tmp); |
88 | } | 93 | } |
89 | 94 | EXPORT_SYMBOL(find_next_zero_bit); | |
90 | EXPORT_SYMBOL(find_next_bit); | ||
91 | 95 | ||
92 | static inline unsigned int ext2_ilog2(unsigned int x) | 96 | static inline unsigned int ext2_ilog2(unsigned int x) |
93 | { | 97 | { |
@@ -106,8 +110,8 @@ static inline unsigned int ext2_ffz(unsigned int x) | |||
106 | return rc; | 110 | return rc; |
107 | } | 111 | } |
108 | 112 | ||
109 | unsigned long find_next_zero_le_bit(const unsigned long *addr, unsigned long size, | 113 | unsigned long find_next_zero_le_bit(const unsigned long *addr, |
110 | unsigned long offset) | 114 | unsigned long size, unsigned long offset) |
111 | { | 115 | { |
112 | const unsigned int *p = ((const unsigned int *)addr) + (offset >> 5); | 116 | const unsigned int *p = ((const unsigned int *)addr) + (offset >> 5); |
113 | unsigned int result = offset & ~31; | 117 | unsigned int result = offset & ~31; |
@@ -143,5 +147,4 @@ found_first: | |||
143 | found_middle: | 147 | found_middle: |
144 | return result + ext2_ffz(tmp); | 148 | return result + ext2_ffz(tmp); |
145 | } | 149 | } |
146 | |||
147 | EXPORT_SYMBOL(find_next_zero_le_bit); | 150 | EXPORT_SYMBOL(find_next_zero_le_bit); |
diff --git a/arch/powerpc/lib/locks.c b/arch/powerpc/lib/locks.c index 3794715b2972..2a912f411eb4 100644 --- a/arch/powerpc/lib/locks.c +++ b/arch/powerpc/lib/locks.c | |||
@@ -22,7 +22,7 @@ | |||
22 | /* waiting for a spinlock... */ | 22 | /* waiting for a spinlock... */ |
23 | #if defined(CONFIG_PPC_SPLPAR) || defined(CONFIG_PPC_ISERIES) | 23 | #if defined(CONFIG_PPC_SPLPAR) || defined(CONFIG_PPC_ISERIES) |
24 | #include <asm/hvcall.h> | 24 | #include <asm/hvcall.h> |
25 | #include <asm/iSeries/HvCall.h> | 25 | #include <asm/iseries/hv_call.h> |
26 | 26 | ||
27 | void __spin_yield(raw_spinlock_t *lock) | 27 | void __spin_yield(raw_spinlock_t *lock) |
28 | { | 28 | { |
diff --git a/arch/powerpc/platforms/Makefile b/arch/powerpc/platforms/Makefile index 172c0db63504..8836b3a00668 100644 --- a/arch/powerpc/platforms/Makefile +++ b/arch/powerpc/platforms/Makefile | |||
@@ -11,3 +11,4 @@ obj-$(CONFIG_85xx) += 85xx/ | |||
11 | obj-$(CONFIG_PPC_PSERIES) += pseries/ | 11 | obj-$(CONFIG_PPC_PSERIES) += pseries/ |
12 | obj-$(CONFIG_PPC_ISERIES) += iseries/ | 12 | obj-$(CONFIG_PPC_ISERIES) += iseries/ |
13 | obj-$(CONFIG_PPC_MAPLE) += maple/ | 13 | obj-$(CONFIG_PPC_MAPLE) += maple/ |
14 | obj-$(CONFIG_PPC_CELL) += cell/ | ||
diff --git a/arch/powerpc/platforms/cell/Makefile b/arch/powerpc/platforms/cell/Makefile new file mode 100644 index 000000000000..55e094b96bc0 --- /dev/null +++ b/arch/powerpc/platforms/cell/Makefile | |||
@@ -0,0 +1,2 @@ | |||
1 | obj-y += interrupt.o iommu.o setup.o spider-pic.o | ||
2 | obj-$(CONFIG_SMP) += smp.o | ||
diff --git a/arch/ppc64/kernel/bpa_iic.c b/arch/powerpc/platforms/cell/interrupt.c index 0aaa878e19d3..7fbe78a9327d 100644 --- a/arch/ppc64/kernel/bpa_iic.c +++ b/arch/powerpc/platforms/cell/interrupt.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * BPA Internal Interrupt Controller | 2 | * Cell Internal Interrupt Controller |
3 | * | 3 | * |
4 | * (C) Copyright IBM Deutschland Entwicklung GmbH 2005 | 4 | * (C) Copyright IBM Deutschland Entwicklung GmbH 2005 |
5 | * | 5 | * |
@@ -31,7 +31,7 @@ | |||
31 | #include <asm/prom.h> | 31 | #include <asm/prom.h> |
32 | #include <asm/ptrace.h> | 32 | #include <asm/ptrace.h> |
33 | 33 | ||
34 | #include "bpa_iic.h" | 34 | #include "interrupt.h" |
35 | 35 | ||
36 | struct iic_pending_bits { | 36 | struct iic_pending_bits { |
37 | u32 data; | 37 | u32 data; |
@@ -89,7 +89,7 @@ static void iic_end(unsigned int irq) | |||
89 | } | 89 | } |
90 | 90 | ||
91 | static struct hw_interrupt_type iic_pic = { | 91 | static struct hw_interrupt_type iic_pic = { |
92 | .typename = " BPA-IIC ", | 92 | .typename = " CELL-IIC ", |
93 | .startup = iic_startup, | 93 | .startup = iic_startup, |
94 | .enable = iic_enable, | 94 | .enable = iic_enable, |
95 | .disable = iic_disable, | 95 | .disable = iic_disable, |
@@ -106,7 +106,7 @@ static int iic_external_get_irq(struct iic_pending_bits pending) | |||
106 | irq = -1; | 106 | irq = -1; |
107 | 107 | ||
108 | /* | 108 | /* |
109 | * This mapping is specific to the Broadband | 109 | * This mapping is specific to the Cell Broadband |
110 | * Engine. We might need to get the numbers | 110 | * Engine. We might need to get the numbers |
111 | * from the device tree to support future CPUs. | 111 | * from the device tree to support future CPUs. |
112 | */ | 112 | */ |
diff --git a/arch/ppc64/kernel/bpa_iic.h b/arch/powerpc/platforms/cell/interrupt.h index 6833c3022166..37d58e6fd0c6 100644 --- a/arch/ppc64/kernel/bpa_iic.h +++ b/arch/powerpc/platforms/cell/interrupt.h | |||
@@ -1,5 +1,5 @@ | |||
1 | #ifndef ASM_BPA_IIC_H | 1 | #ifndef ASM_CELL_PIC_H |
2 | #define ASM_BPA_IIC_H | 2 | #define ASM_CELL_PIC_H |
3 | #ifdef __KERNEL__ | 3 | #ifdef __KERNEL__ |
4 | /* | 4 | /* |
5 | * Mapping of IIC pending bits into per-node | 5 | * Mapping of IIC pending bits into per-node |
@@ -21,7 +21,7 @@ | |||
21 | * + node number | 21 | * + node number |
22 | * * don't care | 22 | * * don't care |
23 | * | 23 | * |
24 | * A node consists of a Broadband Engine and an optional | 24 | * A node consists of a Cell Broadband Engine and an optional |
25 | * south bridge device providing a maximum of 64 IRQs. | 25 | * south bridge device providing a maximum of 64 IRQs. |
26 | * The south bridge may be connected to either IOIF0 | 26 | * The south bridge may be connected to either IOIF0 |
27 | * or IOIF1. | 27 | * or IOIF1. |
@@ -59,4 +59,4 @@ extern void spider_init_IRQ(void); | |||
59 | extern int spider_get_irq(unsigned long int_pending); | 59 | extern int spider_get_irq(unsigned long int_pending); |
60 | 60 | ||
61 | #endif | 61 | #endif |
62 | #endif /* ASM_BPA_IIC_H */ | 62 | #endif /* ASM_CELL_PIC_H */ |
diff --git a/arch/ppc64/kernel/bpa_iommu.c b/arch/powerpc/platforms/cell/iommu.c index da1b4b7a3269..74f999b4ac9e 100644 --- a/arch/ppc64/kernel/bpa_iommu.c +++ b/arch/powerpc/platforms/cell/iommu.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * IOMMU implementation for Broadband Processor Architecture | 2 | * IOMMU implementation for Cell Broadband Processor Architecture |
3 | * We just establish a linear mapping at boot by setting all the | 3 | * We just establish a linear mapping at boot by setting all the |
4 | * IOPT cache entries in the CPU. | 4 | * IOPT cache entries in the CPU. |
5 | * The mapping functions should be identical to pci_direct_iommu, | 5 | * The mapping functions should be identical to pci_direct_iommu, |
@@ -41,7 +41,7 @@ | |||
41 | #include <asm/system.h> | 41 | #include <asm/system.h> |
42 | #include <asm/ppc-pci.h> | 42 | #include <asm/ppc-pci.h> |
43 | 43 | ||
44 | #include "bpa_iommu.h" | 44 | #include "iommu.h" |
45 | 45 | ||
46 | static inline unsigned long | 46 | static inline unsigned long |
47 | get_iopt_entry(unsigned long real_address, unsigned long ioid, | 47 | get_iopt_entry(unsigned long real_address, unsigned long ioid, |
@@ -276,7 +276,7 @@ static void iommu_dev_setup_null(struct pci_dev *d) { } | |||
276 | * for each DMA window used by any device. For now, we | 276 | * for each DMA window used by any device. For now, we |
277 | * happen to know that there is only one DMA window in use, | 277 | * happen to know that there is only one DMA window in use, |
278 | * starting at iopt_phys_offset. */ | 278 | * starting at iopt_phys_offset. */ |
279 | static void bpa_map_iommu(void) | 279 | static void cell_map_iommu(void) |
280 | { | 280 | { |
281 | unsigned long address; | 281 | unsigned long address; |
282 | void __iomem *base; | 282 | void __iomem *base; |
@@ -309,7 +309,7 @@ static void bpa_map_iommu(void) | |||
309 | } | 309 | } |
310 | 310 | ||
311 | 311 | ||
312 | static void *bpa_alloc_coherent(struct device *hwdev, size_t size, | 312 | static void *cell_alloc_coherent(struct device *hwdev, size_t size, |
313 | dma_addr_t *dma_handle, gfp_t flag) | 313 | dma_addr_t *dma_handle, gfp_t flag) |
314 | { | 314 | { |
315 | void *ret; | 315 | void *ret; |
@@ -317,65 +317,65 @@ static void *bpa_alloc_coherent(struct device *hwdev, size_t size, | |||
317 | ret = (void *)__get_free_pages(flag, get_order(size)); | 317 | ret = (void *)__get_free_pages(flag, get_order(size)); |
318 | if (ret != NULL) { | 318 | if (ret != NULL) { |
319 | memset(ret, 0, size); | 319 | memset(ret, 0, size); |
320 | *dma_handle = virt_to_abs(ret) | BPA_DMA_VALID; | 320 | *dma_handle = virt_to_abs(ret) | CELL_DMA_VALID; |
321 | } | 321 | } |
322 | return ret; | 322 | return ret; |
323 | } | 323 | } |
324 | 324 | ||
325 | static void bpa_free_coherent(struct device *hwdev, size_t size, | 325 | static void cell_free_coherent(struct device *hwdev, size_t size, |
326 | void *vaddr, dma_addr_t dma_handle) | 326 | void *vaddr, dma_addr_t dma_handle) |
327 | { | 327 | { |
328 | free_pages((unsigned long)vaddr, get_order(size)); | 328 | free_pages((unsigned long)vaddr, get_order(size)); |
329 | } | 329 | } |
330 | 330 | ||
331 | static dma_addr_t bpa_map_single(struct device *hwdev, void *ptr, | 331 | static dma_addr_t cell_map_single(struct device *hwdev, void *ptr, |
332 | size_t size, enum dma_data_direction direction) | 332 | size_t size, enum dma_data_direction direction) |
333 | { | 333 | { |
334 | return virt_to_abs(ptr) | BPA_DMA_VALID; | 334 | return virt_to_abs(ptr) | CELL_DMA_VALID; |
335 | } | 335 | } |
336 | 336 | ||
337 | static void bpa_unmap_single(struct device *hwdev, dma_addr_t dma_addr, | 337 | static void cell_unmap_single(struct device *hwdev, dma_addr_t dma_addr, |
338 | size_t size, enum dma_data_direction direction) | 338 | size_t size, enum dma_data_direction direction) |
339 | { | 339 | { |
340 | } | 340 | } |
341 | 341 | ||
342 | static int bpa_map_sg(struct device *hwdev, struct scatterlist *sg, | 342 | static int cell_map_sg(struct device *hwdev, struct scatterlist *sg, |
343 | int nents, enum dma_data_direction direction) | 343 | int nents, enum dma_data_direction direction) |
344 | { | 344 | { |
345 | int i; | 345 | int i; |
346 | 346 | ||
347 | for (i = 0; i < nents; i++, sg++) { | 347 | for (i = 0; i < nents; i++, sg++) { |
348 | sg->dma_address = (page_to_phys(sg->page) + sg->offset) | 348 | sg->dma_address = (page_to_phys(sg->page) + sg->offset) |
349 | | BPA_DMA_VALID; | 349 | | CELL_DMA_VALID; |
350 | sg->dma_length = sg->length; | 350 | sg->dma_length = sg->length; |
351 | } | 351 | } |
352 | 352 | ||
353 | return nents; | 353 | return nents; |
354 | } | 354 | } |
355 | 355 | ||
356 | static void bpa_unmap_sg(struct device *hwdev, struct scatterlist *sg, | 356 | static void cell_unmap_sg(struct device *hwdev, struct scatterlist *sg, |
357 | int nents, enum dma_data_direction direction) | 357 | int nents, enum dma_data_direction direction) |
358 | { | 358 | { |
359 | } | 359 | } |
360 | 360 | ||
361 | static int bpa_dma_supported(struct device *dev, u64 mask) | 361 | static int cell_dma_supported(struct device *dev, u64 mask) |
362 | { | 362 | { |
363 | return mask < 0x100000000ull; | 363 | return mask < 0x100000000ull; |
364 | } | 364 | } |
365 | 365 | ||
366 | void bpa_init_iommu(void) | 366 | void cell_init_iommu(void) |
367 | { | 367 | { |
368 | bpa_map_iommu(); | 368 | cell_map_iommu(); |
369 | 369 | ||
370 | /* Direct I/O, IOMMU off */ | 370 | /* Direct I/O, IOMMU off */ |
371 | ppc_md.iommu_dev_setup = iommu_dev_setup_null; | 371 | ppc_md.iommu_dev_setup = iommu_dev_setup_null; |
372 | ppc_md.iommu_bus_setup = iommu_bus_setup_null; | 372 | ppc_md.iommu_bus_setup = iommu_bus_setup_null; |
373 | 373 | ||
374 | pci_dma_ops.alloc_coherent = bpa_alloc_coherent; | 374 | pci_dma_ops.alloc_coherent = cell_alloc_coherent; |
375 | pci_dma_ops.free_coherent = bpa_free_coherent; | 375 | pci_dma_ops.free_coherent = cell_free_coherent; |
376 | pci_dma_ops.map_single = bpa_map_single; | 376 | pci_dma_ops.map_single = cell_map_single; |
377 | pci_dma_ops.unmap_single = bpa_unmap_single; | 377 | pci_dma_ops.unmap_single = cell_unmap_single; |
378 | pci_dma_ops.map_sg = bpa_map_sg; | 378 | pci_dma_ops.map_sg = cell_map_sg; |
379 | pci_dma_ops.unmap_sg = bpa_unmap_sg; | 379 | pci_dma_ops.unmap_sg = cell_unmap_sg; |
380 | pci_dma_ops.dma_supported = bpa_dma_supported; | 380 | pci_dma_ops.dma_supported = cell_dma_supported; |
381 | } | 381 | } |
diff --git a/arch/ppc64/kernel/bpa_iommu.h b/arch/powerpc/platforms/cell/iommu.h index e547d77dfa04..490d77abfe85 100644 --- a/arch/ppc64/kernel/bpa_iommu.h +++ b/arch/powerpc/platforms/cell/iommu.h | |||
@@ -1,5 +1,5 @@ | |||
1 | #ifndef BPA_IOMMU_H | 1 | #ifndef CELL_IOMMU_H |
2 | #define BPA_IOMMU_H | 2 | #define CELL_IOMMU_H |
3 | 3 | ||
4 | /* some constants */ | 4 | /* some constants */ |
5 | enum { | 5 | enum { |
@@ -55,11 +55,11 @@ enum { | |||
55 | 55 | ||
56 | /* The high bit needs to be set on every DMA address, | 56 | /* The high bit needs to be set on every DMA address, |
57 | only 2GB are addressable */ | 57 | only 2GB are addressable */ |
58 | BPA_DMA_VALID = 0x80000000, | 58 | CELL_DMA_VALID = 0x80000000, |
59 | BPA_DMA_MASK = 0x7fffffff, | 59 | CELL_DMA_MASK = 0x7fffffff, |
60 | }; | 60 | }; |
61 | 61 | ||
62 | 62 | ||
63 | void bpa_init_iommu(void); | 63 | void cell_init_iommu(void); |
64 | 64 | ||
65 | #endif | 65 | #endif |
diff --git a/arch/ppc64/kernel/bpa_setup.c b/arch/powerpc/platforms/cell/setup.c index c2dc8f282eb8..9a495634d0c2 100644 --- a/arch/ppc64/kernel/bpa_setup.c +++ b/arch/powerpc/platforms/cell/setup.c | |||
@@ -1,11 +1,11 @@ | |||
1 | /* | 1 | /* |
2 | * linux/arch/ppc/kernel/bpa_setup.c | 2 | * linux/arch/powerpc/platforms/cell/cell_setup.c |
3 | * | 3 | * |
4 | * Copyright (C) 1995 Linus Torvalds | 4 | * Copyright (C) 1995 Linus Torvalds |
5 | * Adapted from 'alpha' version by Gary Thomas | 5 | * Adapted from 'alpha' version by Gary Thomas |
6 | * Modified by Cort Dougan (cort@cs.nmt.edu) | 6 | * Modified by Cort Dougan (cort@cs.nmt.edu) |
7 | * Modified by PPC64 Team, IBM Corp | 7 | * Modified by PPC64 Team, IBM Corp |
8 | * Modified by BPA Team, IBM Deutschland Entwicklung GmbH | 8 | * Modified by Cell Team, IBM Deutschland Entwicklung GmbH |
9 | * | 9 | * |
10 | * This program is free software; you can redistribute it and/or | 10 | * This program is free software; you can redistribute it and/or |
11 | * modify it under the terms of the GNU General Public License | 11 | * modify it under the terms of the GNU General Public License |
@@ -46,8 +46,8 @@ | |||
46 | #include <asm/ppc-pci.h> | 46 | #include <asm/ppc-pci.h> |
47 | #include <asm/irq.h> | 47 | #include <asm/irq.h> |
48 | 48 | ||
49 | #include "bpa_iic.h" | 49 | #include "interrupt.h" |
50 | #include "bpa_iommu.h" | 50 | #include "iommu.h" |
51 | 51 | ||
52 | #ifdef DEBUG | 52 | #ifdef DEBUG |
53 | #define DBG(fmt...) udbg_printf(fmt) | 53 | #define DBG(fmt...) udbg_printf(fmt) |
@@ -55,7 +55,7 @@ | |||
55 | #define DBG(fmt...) | 55 | #define DBG(fmt...) |
56 | #endif | 56 | #endif |
57 | 57 | ||
58 | void bpa_show_cpuinfo(struct seq_file *m) | 58 | void cell_show_cpuinfo(struct seq_file *m) |
59 | { | 59 | { |
60 | struct device_node *root; | 60 | struct device_node *root; |
61 | const char *model = ""; | 61 | const char *model = ""; |
@@ -63,22 +63,22 @@ void bpa_show_cpuinfo(struct seq_file *m) | |||
63 | root = of_find_node_by_path("/"); | 63 | root = of_find_node_by_path("/"); |
64 | if (root) | 64 | if (root) |
65 | model = get_property(root, "model", NULL); | 65 | model = get_property(root, "model", NULL); |
66 | seq_printf(m, "machine\t\t: BPA %s\n", model); | 66 | seq_printf(m, "machine\t\t: CHRP %s\n", model); |
67 | of_node_put(root); | 67 | of_node_put(root); |
68 | } | 68 | } |
69 | 69 | ||
70 | static void bpa_progress(char *s, unsigned short hex) | 70 | static void cell_progress(char *s, unsigned short hex) |
71 | { | 71 | { |
72 | printk("*** %04x : %s\n", hex, s ? s : ""); | 72 | printk("*** %04x : %s\n", hex, s ? s : ""); |
73 | } | 73 | } |
74 | 74 | ||
75 | static void __init bpa_setup_arch(void) | 75 | static void __init cell_setup_arch(void) |
76 | { | 76 | { |
77 | ppc_md.init_IRQ = iic_init_IRQ; | 77 | ppc_md.init_IRQ = iic_init_IRQ; |
78 | ppc_md.get_irq = iic_get_irq; | 78 | ppc_md.get_irq = iic_get_irq; |
79 | 79 | ||
80 | #ifdef CONFIG_SMP | 80 | #ifdef CONFIG_SMP |
81 | smp_init_pSeries(); | 81 | smp_init_cell(); |
82 | #endif | 82 | #endif |
83 | 83 | ||
84 | /* init to some ~sane value until calibrate_delay() runs */ | 84 | /* init to some ~sane value until calibrate_delay() runs */ |
@@ -97,39 +97,39 @@ static void __init bpa_setup_arch(void) | |||
97 | conswitchp = &dummy_con; | 97 | conswitchp = &dummy_con; |
98 | #endif | 98 | #endif |
99 | 99 | ||
100 | bpa_nvram_init(); | 100 | mmio_nvram_init(); |
101 | } | 101 | } |
102 | 102 | ||
103 | /* | 103 | /* |
104 | * Early initialization. Relocation is on but do not reference unbolted pages | 104 | * Early initialization. Relocation is on but do not reference unbolted pages |
105 | */ | 105 | */ |
106 | static void __init bpa_init_early(void) | 106 | static void __init cell_init_early(void) |
107 | { | 107 | { |
108 | DBG(" -> bpa_init_early()\n"); | 108 | DBG(" -> cell_init_early()\n"); |
109 | 109 | ||
110 | hpte_init_native(); | 110 | hpte_init_native(); |
111 | 111 | ||
112 | bpa_init_iommu(); | 112 | cell_init_iommu(); |
113 | 113 | ||
114 | ppc64_interrupt_controller = IC_BPA_IIC; | 114 | ppc64_interrupt_controller = IC_CELL_PIC; |
115 | 115 | ||
116 | DBG(" <- bpa_init_early()\n"); | 116 | DBG(" <- cell_init_early()\n"); |
117 | } | 117 | } |
118 | 118 | ||
119 | 119 | ||
120 | static int __init bpa_probe(int platform) | 120 | static int __init cell_probe(int platform) |
121 | { | 121 | { |
122 | if (platform != PLATFORM_BPA) | 122 | if (platform != PLATFORM_CELL) |
123 | return 0; | 123 | return 0; |
124 | 124 | ||
125 | return 1; | 125 | return 1; |
126 | } | 126 | } |
127 | 127 | ||
128 | struct machdep_calls __initdata bpa_md = { | 128 | struct machdep_calls __initdata cell_md = { |
129 | .probe = bpa_probe, | 129 | .probe = cell_probe, |
130 | .setup_arch = bpa_setup_arch, | 130 | .setup_arch = cell_setup_arch, |
131 | .init_early = bpa_init_early, | 131 | .init_early = cell_init_early, |
132 | .show_cpuinfo = bpa_show_cpuinfo, | 132 | .show_cpuinfo = cell_show_cpuinfo, |
133 | .restart = rtas_restart, | 133 | .restart = rtas_restart, |
134 | .power_off = rtas_power_off, | 134 | .power_off = rtas_power_off, |
135 | .halt = rtas_halt, | 135 | .halt = rtas_halt, |
@@ -137,5 +137,5 @@ struct machdep_calls __initdata bpa_md = { | |||
137 | .get_rtc_time = rtas_get_rtc_time, | 137 | .get_rtc_time = rtas_get_rtc_time, |
138 | .set_rtc_time = rtas_set_rtc_time, | 138 | .set_rtc_time = rtas_set_rtc_time, |
139 | .calibrate_decr = generic_calibrate_decr, | 139 | .calibrate_decr = generic_calibrate_decr, |
140 | .progress = bpa_progress, | 140 | .progress = cell_progress, |
141 | }; | 141 | }; |
diff --git a/arch/powerpc/platforms/cell/smp.c b/arch/powerpc/platforms/cell/smp.c new file mode 100644 index 000000000000..de96eadf419d --- /dev/null +++ b/arch/powerpc/platforms/cell/smp.c | |||
@@ -0,0 +1,230 @@ | |||
1 | /* | ||
2 | * SMP support for BPA machines. | ||
3 | * | ||
4 | * Dave Engebretsen, Peter Bergner, and | ||
5 | * Mike Corrigan {engebret|bergner|mikec}@us.ibm.com | ||
6 | * | ||
7 | * Plus various changes from other IBM teams... | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or | ||
10 | * modify it under the terms of the GNU General Public License | ||
11 | * as published by the Free Software Foundation; either version | ||
12 | * 2 of the License, or (at your option) any later version. | ||
13 | */ | ||
14 | |||
15 | #undef DEBUG | ||
16 | |||
17 | #include <linux/config.h> | ||
18 | #include <linux/kernel.h> | ||
19 | #include <linux/module.h> | ||
20 | #include <linux/sched.h> | ||
21 | #include <linux/smp.h> | ||
22 | #include <linux/interrupt.h> | ||
23 | #include <linux/delay.h> | ||
24 | #include <linux/init.h> | ||
25 | #include <linux/spinlock.h> | ||
26 | #include <linux/cache.h> | ||
27 | #include <linux/err.h> | ||
28 | #include <linux/sysdev.h> | ||
29 | #include <linux/cpu.h> | ||
30 | |||
31 | #include <asm/ptrace.h> | ||
32 | #include <asm/atomic.h> | ||
33 | #include <asm/irq.h> | ||
34 | #include <asm/page.h> | ||
35 | #include <asm/pgtable.h> | ||
36 | #include <asm/io.h> | ||
37 | #include <asm/prom.h> | ||
38 | #include <asm/smp.h> | ||
39 | #include <asm/paca.h> | ||
40 | #include <asm/time.h> | ||
41 | #include <asm/machdep.h> | ||
42 | #include <asm/cputable.h> | ||
43 | #include <asm/firmware.h> | ||
44 | #include <asm/system.h> | ||
45 | #include <asm/rtas.h> | ||
46 | |||
47 | #include "interrupt.h" | ||
48 | |||
49 | #ifdef DEBUG | ||
50 | #define DBG(fmt...) udbg_printf(fmt) | ||
51 | #else | ||
52 | #define DBG(fmt...) | ||
53 | #endif | ||
54 | |||
55 | /* | ||
56 | * The primary thread of each non-boot processor is recorded here before | ||
57 | * smp init. | ||
58 | */ | ||
59 | static cpumask_t of_spin_map; | ||
60 | |||
61 | extern void pSeries_secondary_smp_init(unsigned long); | ||
62 | |||
63 | /** | ||
64 | * smp_startup_cpu() - start the given cpu | ||
65 | * | ||
66 | * At boot time, there is nothing to do for primary threads which were | ||
67 | * started from Open Firmware. For anything else, call RTAS with the | ||
68 | * appropriate start location. | ||
69 | * | ||
70 | * Returns: | ||
71 | * 0 - failure | ||
72 | * 1 - success | ||
73 | */ | ||
74 | static inline int __devinit smp_startup_cpu(unsigned int lcpu) | ||
75 | { | ||
76 | int status; | ||
77 | unsigned long start_here = __pa((u32)*((unsigned long *) | ||
78 | pSeries_secondary_smp_init)); | ||
79 | unsigned int pcpu; | ||
80 | int start_cpu; | ||
81 | |||
82 | if (cpu_isset(lcpu, of_spin_map)) | ||
83 | /* Already started by OF and sitting in spin loop */ | ||
84 | return 1; | ||
85 | |||
86 | pcpu = get_hard_smp_processor_id(lcpu); | ||
87 | |||
88 | /* Fixup atomic count: it exited inside IRQ handler. */ | ||
89 | paca[lcpu].__current->thread_info->preempt_count = 0; | ||
90 | |||
91 | /* | ||
92 | * If the RTAS start-cpu token does not exist then presume the | ||
93 | * cpu is already spinning. | ||
94 | */ | ||
95 | start_cpu = rtas_token("start-cpu"); | ||
96 | if (start_cpu == RTAS_UNKNOWN_SERVICE) | ||
97 | return 1; | ||
98 | |||
99 | status = rtas_call(start_cpu, 3, 1, NULL, pcpu, start_here, lcpu); | ||
100 | if (status != 0) { | ||
101 | printk(KERN_ERR "start-cpu failed: %i\n", status); | ||
102 | return 0; | ||
103 | } | ||
104 | |||
105 | return 1; | ||
106 | } | ||
107 | |||
108 | static void smp_iic_message_pass(int target, int msg) | ||
109 | { | ||
110 | unsigned int i; | ||
111 | |||
112 | if (target < NR_CPUS) { | ||
113 | iic_cause_IPI(target, msg); | ||
114 | } else { | ||
115 | for_each_online_cpu(i) { | ||
116 | if (target == MSG_ALL_BUT_SELF | ||
117 | && i == smp_processor_id()) | ||
118 | continue; | ||
119 | iic_cause_IPI(i, msg); | ||
120 | } | ||
121 | } | ||
122 | } | ||
123 | |||
124 | static int __init smp_iic_probe(void) | ||
125 | { | ||
126 | iic_request_IPIs(); | ||
127 | |||
128 | return cpus_weight(cpu_possible_map); | ||
129 | } | ||
130 | |||
131 | static void __devinit smp_iic_setup_cpu(int cpu) | ||
132 | { | ||
133 | if (cpu != boot_cpuid) | ||
134 | iic_setup_cpu(); | ||
135 | } | ||
136 | |||
137 | static DEFINE_SPINLOCK(timebase_lock); | ||
138 | static unsigned long timebase = 0; | ||
139 | |||
140 | static void __devinit cell_give_timebase(void) | ||
141 | { | ||
142 | spin_lock(&timebase_lock); | ||
143 | rtas_call(rtas_token("freeze-time-base"), 0, 1, NULL); | ||
144 | timebase = get_tb(); | ||
145 | spin_unlock(&timebase_lock); | ||
146 | |||
147 | while (timebase) | ||
148 | barrier(); | ||
149 | rtas_call(rtas_token("thaw-time-base"), 0, 1, NULL); | ||
150 | } | ||
151 | |||
152 | static void __devinit cell_take_timebase(void) | ||
153 | { | ||
154 | while (!timebase) | ||
155 | barrier(); | ||
156 | spin_lock(&timebase_lock); | ||
157 | set_tb(timebase >> 32, timebase & 0xffffffff); | ||
158 | timebase = 0; | ||
159 | spin_unlock(&timebase_lock); | ||
160 | } | ||
161 | |||
162 | static void __devinit smp_cell_kick_cpu(int nr) | ||
163 | { | ||
164 | BUG_ON(nr < 0 || nr >= NR_CPUS); | ||
165 | |||
166 | if (!smp_startup_cpu(nr)) | ||
167 | return; | ||
168 | |||
169 | /* | ||
170 | * The processor is currently spinning, waiting for the | ||
171 | * cpu_start field to become non-zero After we set cpu_start, | ||
172 | * the processor will continue on to secondary_start | ||
173 | */ | ||
174 | paca[nr].cpu_start = 1; | ||
175 | } | ||
176 | |||
177 | static int smp_cell_cpu_bootable(unsigned int nr) | ||
178 | { | ||
179 | /* Special case - we inhibit secondary thread startup | ||
180 | * during boot if the user requests it. Odd-numbered | ||
181 | * cpus are assumed to be secondary threads. | ||
182 | */ | ||
183 | if (system_state < SYSTEM_RUNNING && | ||
184 | cpu_has_feature(CPU_FTR_SMT) && | ||
185 | !smt_enabled_at_boot && nr % 2 != 0) | ||
186 | return 0; | ||
187 | |||
188 | return 1; | ||
189 | } | ||
190 | static struct smp_ops_t bpa_iic_smp_ops = { | ||
191 | .message_pass = smp_iic_message_pass, | ||
192 | .probe = smp_iic_probe, | ||
193 | .kick_cpu = smp_cell_kick_cpu, | ||
194 | .setup_cpu = smp_iic_setup_cpu, | ||
195 | .cpu_bootable = smp_cell_cpu_bootable, | ||
196 | }; | ||
197 | |||
198 | /* This is called very early */ | ||
199 | void __init smp_init_cell(void) | ||
200 | { | ||
201 | int i; | ||
202 | |||
203 | DBG(" -> smp_init_cell()\n"); | ||
204 | |||
205 | smp_ops = &bpa_iic_smp_ops; | ||
206 | |||
207 | /* Mark threads which are still spinning in hold loops. */ | ||
208 | if (cpu_has_feature(CPU_FTR_SMT)) { | ||
209 | for_each_present_cpu(i) { | ||
210 | if (i % 2 == 0) | ||
211 | /* | ||
212 | * Even-numbered logical cpus correspond to | ||
213 | * primary threads. | ||
214 | */ | ||
215 | cpu_set(i, of_spin_map); | ||
216 | } | ||
217 | } else { | ||
218 | of_spin_map = cpu_present_map; | ||
219 | } | ||
220 | |||
221 | cpu_clear(boot_cpuid, of_spin_map); | ||
222 | |||
223 | /* Non-lpar has additional take/give timebase */ | ||
224 | if (rtas_token("freeze-time-base") != RTAS_UNKNOWN_SERVICE) { | ||
225 | smp_ops->give_timebase = cell_give_timebase; | ||
226 | smp_ops->take_timebase = cell_take_timebase; | ||
227 | } | ||
228 | |||
229 | DBG(" <- smp_init_cell()\n"); | ||
230 | } | ||
diff --git a/arch/ppc64/kernel/spider-pic.c b/arch/powerpc/platforms/cell/spider-pic.c index d5c9a02fb119..e74132188bdf 100644 --- a/arch/ppc64/kernel/spider-pic.c +++ b/arch/powerpc/platforms/cell/spider-pic.c | |||
@@ -27,7 +27,7 @@ | |||
27 | #include <asm/prom.h> | 27 | #include <asm/prom.h> |
28 | #include <asm/io.h> | 28 | #include <asm/io.h> |
29 | 29 | ||
30 | #include "bpa_iic.h" | 30 | #include "interrupt.h" |
31 | 31 | ||
32 | /* register layout taken from Spider spec, table 7.4-4 */ | 32 | /* register layout taken from Spider spec, table 7.4-4 */ |
33 | enum { | 33 | enum { |
diff --git a/arch/powerpc/platforms/chrp/nvram.c b/arch/powerpc/platforms/chrp/nvram.c index 4ac7125aa09c..150f67d6f90c 100644 --- a/arch/powerpc/platforms/chrp/nvram.c +++ b/arch/powerpc/platforms/chrp/nvram.c | |||
@@ -17,6 +17,7 @@ | |||
17 | #include <asm/uaccess.h> | 17 | #include <asm/uaccess.h> |
18 | #include <asm/prom.h> | 18 | #include <asm/prom.h> |
19 | #include <asm/machdep.h> | 19 | #include <asm/machdep.h> |
20 | #include <asm/rtas.h> | ||
20 | #include "chrp.h" | 21 | #include "chrp.h" |
21 | 22 | ||
22 | static unsigned int nvram_size; | 23 | static unsigned int nvram_size; |
@@ -25,7 +26,8 @@ static DEFINE_SPINLOCK(nvram_lock); | |||
25 | 26 | ||
26 | static unsigned char chrp_nvram_read(int addr) | 27 | static unsigned char chrp_nvram_read(int addr) |
27 | { | 28 | { |
28 | unsigned long done, flags; | 29 | unsigned int done; |
30 | unsigned long flags; | ||
29 | unsigned char ret; | 31 | unsigned char ret; |
30 | 32 | ||
31 | if (addr >= nvram_size) { | 33 | if (addr >= nvram_size) { |
@@ -34,7 +36,8 @@ static unsigned char chrp_nvram_read(int addr) | |||
34 | return 0xff; | 36 | return 0xff; |
35 | } | 37 | } |
36 | spin_lock_irqsave(&nvram_lock, flags); | 38 | spin_lock_irqsave(&nvram_lock, flags); |
37 | if ((call_rtas("nvram-fetch", 3, 2, &done, addr, __pa(nvram_buf), 1) != 0) || 1 != done) | 39 | if ((rtas_call(rtas_token("nvram-fetch"), 3, 2, &done, addr, |
40 | __pa(nvram_buf), 1) != 0) || 1 != done) | ||
38 | ret = 0xff; | 41 | ret = 0xff; |
39 | else | 42 | else |
40 | ret = nvram_buf[0]; | 43 | ret = nvram_buf[0]; |
@@ -45,7 +48,8 @@ static unsigned char chrp_nvram_read(int addr) | |||
45 | 48 | ||
46 | static void chrp_nvram_write(int addr, unsigned char val) | 49 | static void chrp_nvram_write(int addr, unsigned char val) |
47 | { | 50 | { |
48 | unsigned long done, flags; | 51 | unsigned int done; |
52 | unsigned long flags; | ||
49 | 53 | ||
50 | if (addr >= nvram_size) { | 54 | if (addr >= nvram_size) { |
51 | printk(KERN_DEBUG "%s: write addr %d > nvram_size %u\n", | 55 | printk(KERN_DEBUG "%s: write addr %d > nvram_size %u\n", |
@@ -54,7 +58,8 @@ static void chrp_nvram_write(int addr, unsigned char val) | |||
54 | } | 58 | } |
55 | spin_lock_irqsave(&nvram_lock, flags); | 59 | spin_lock_irqsave(&nvram_lock, flags); |
56 | nvram_buf[0] = val; | 60 | nvram_buf[0] = val; |
57 | if ((call_rtas("nvram-store", 3, 2, &done, addr, __pa(nvram_buf), 1) != 0) || 1 != done) | 61 | if ((rtas_call(rtas_token("nvram-store"), 3, 2, &done, addr, |
62 | __pa(nvram_buf), 1) != 0) || 1 != done) | ||
58 | printk(KERN_DEBUG "rtas IO error storing 0x%02x at %d", val, addr); | 63 | printk(KERN_DEBUG "rtas IO error storing 0x%02x at %d", val, addr); |
59 | spin_unlock_irqrestore(&nvram_lock, flags); | 64 | spin_unlock_irqrestore(&nvram_lock, flags); |
60 | } | 65 | } |
diff --git a/arch/powerpc/platforms/chrp/pegasos_eth.c b/arch/powerpc/platforms/chrp/pegasos_eth.c index a9052305c35d..29c86781c493 100644 --- a/arch/powerpc/platforms/chrp/pegasos_eth.c +++ b/arch/powerpc/platforms/chrp/pegasos_eth.c | |||
@@ -14,6 +14,7 @@ | |||
14 | #include <linux/init.h> | 14 | #include <linux/init.h> |
15 | #include <linux/ioport.h> | 15 | #include <linux/ioport.h> |
16 | #include <linux/device.h> | 16 | #include <linux/device.h> |
17 | #include <linux/platform_device.h> | ||
17 | #include <linux/mv643xx.h> | 18 | #include <linux/mv643xx.h> |
18 | #include <linux/pci.h> | 19 | #include <linux/pci.h> |
19 | 20 | ||
diff --git a/arch/powerpc/platforms/chrp/smp.c b/arch/powerpc/platforms/chrp/smp.c index 31ee49c25014..bb2315997d45 100644 --- a/arch/powerpc/platforms/chrp/smp.c +++ b/arch/powerpc/platforms/chrp/smp.c | |||
@@ -35,43 +35,6 @@ | |||
35 | #include <asm/smp.h> | 35 | #include <asm/smp.h> |
36 | #include <asm/mpic.h> | 36 | #include <asm/mpic.h> |
37 | 37 | ||
38 | extern unsigned long smp_chrp_cpu_nr; | ||
39 | |||
40 | static int __init smp_chrp_probe(void) | ||
41 | { | ||
42 | struct device_node *cpus = NULL; | ||
43 | unsigned int *reg; | ||
44 | int reglen; | ||
45 | int ncpus = 0; | ||
46 | int cpuid; | ||
47 | unsigned int phys; | ||
48 | |||
49 | /* Count CPUs in the device-tree */ | ||
50 | cpuid = 1; /* the boot cpu is logical cpu 0 */ | ||
51 | while ((cpus = of_find_node_by_type(cpus, "cpu")) != NULL) { | ||
52 | phys = ncpus; | ||
53 | reg = (unsigned int *) get_property(cpus, "reg", ®len); | ||
54 | if (reg && reglen >= sizeof(unsigned int)) | ||
55 | /* hmmm, not having a reg property would be bad */ | ||
56 | phys = *reg; | ||
57 | if (phys != boot_cpuid_phys) { | ||
58 | set_hard_smp_processor_id(cpuid, phys); | ||
59 | ++cpuid; | ||
60 | } | ||
61 | ++ncpus; | ||
62 | } | ||
63 | |||
64 | printk(KERN_INFO "CHRP SMP probe found %d cpus\n", ncpus); | ||
65 | |||
66 | /* Nothing more to do if less than 2 of them */ | ||
67 | if (ncpus <= 1) | ||
68 | return 1; | ||
69 | |||
70 | mpic_request_ipis(); | ||
71 | |||
72 | return ncpus; | ||
73 | } | ||
74 | |||
75 | static void __devinit smp_chrp_kick_cpu(int nr) | 38 | static void __devinit smp_chrp_kick_cpu(int nr) |
76 | { | 39 | { |
77 | *(unsigned long *)KERNELBASE = nr; | 40 | *(unsigned long *)KERNELBASE = nr; |
@@ -114,7 +77,7 @@ void __devinit smp_chrp_take_timebase(void) | |||
114 | /* CHRP with openpic */ | 77 | /* CHRP with openpic */ |
115 | struct smp_ops_t chrp_smp_ops = { | 78 | struct smp_ops_t chrp_smp_ops = { |
116 | .message_pass = smp_mpic_message_pass, | 79 | .message_pass = smp_mpic_message_pass, |
117 | .probe = smp_chrp_probe, | 80 | .probe = smp_mpic_probe, |
118 | .kick_cpu = smp_chrp_kick_cpu, | 81 | .kick_cpu = smp_chrp_kick_cpu, |
119 | .setup_cpu = smp_chrp_setup_cpu, | 82 | .setup_cpu = smp_chrp_setup_cpu, |
120 | .give_timebase = smp_chrp_give_timebase, | 83 | .give_timebase = smp_chrp_give_timebase, |
diff --git a/arch/powerpc/platforms/iseries/call_hpt.h b/arch/powerpc/platforms/iseries/call_hpt.h index 321f3bb7a8f5..a843b0f87b72 100644 --- a/arch/powerpc/platforms/iseries/call_hpt.h +++ b/arch/powerpc/platforms/iseries/call_hpt.h | |||
@@ -23,8 +23,8 @@ | |||
23 | * drive the hypervisor from the OS. | 23 | * drive the hypervisor from the OS. |
24 | */ | 24 | */ |
25 | 25 | ||
26 | #include <asm/iSeries/HvCallSc.h> | 26 | #include <asm/iseries/hv_call_sc.h> |
27 | #include <asm/iSeries/HvTypes.h> | 27 | #include <asm/iseries/hv_types.h> |
28 | #include <asm/mmu.h> | 28 | #include <asm/mmu.h> |
29 | 29 | ||
30 | #define HvCallHptGetHptAddress HvCallHpt + 0 | 30 | #define HvCallHptGetHptAddress HvCallHpt + 0 |
diff --git a/arch/powerpc/platforms/iseries/call_pci.h b/arch/powerpc/platforms/iseries/call_pci.h index a86e065b9577..59d4e0ad5cf3 100644 --- a/arch/powerpc/platforms/iseries/call_pci.h +++ b/arch/powerpc/platforms/iseries/call_pci.h | |||
@@ -25,8 +25,8 @@ | |||
25 | #ifndef _PLATFORMS_ISERIES_CALL_PCI_H | 25 | #ifndef _PLATFORMS_ISERIES_CALL_PCI_H |
26 | #define _PLATFORMS_ISERIES_CALL_PCI_H | 26 | #define _PLATFORMS_ISERIES_CALL_PCI_H |
27 | 27 | ||
28 | #include <asm/iSeries/HvCallSc.h> | 28 | #include <asm/iseries/hv_call_sc.h> |
29 | #include <asm/iSeries/HvTypes.h> | 29 | #include <asm/iseries/hv_types.h> |
30 | 30 | ||
31 | /* | 31 | /* |
32 | * DSA == Direct Select Address | 32 | * DSA == Direct Select Address |
diff --git a/arch/powerpc/platforms/iseries/call_sm.h b/arch/powerpc/platforms/iseries/call_sm.h index ef223166cf22..c7e251619f48 100644 --- a/arch/powerpc/platforms/iseries/call_sm.h +++ b/arch/powerpc/platforms/iseries/call_sm.h | |||
@@ -23,8 +23,8 @@ | |||
23 | * drive the hypervisor from the OS. | 23 | * drive the hypervisor from the OS. |
24 | */ | 24 | */ |
25 | 25 | ||
26 | #include <asm/iSeries/HvCallSc.h> | 26 | #include <asm/iseries/hv_call_sc.h> |
27 | #include <asm/iSeries/HvTypes.h> | 27 | #include <asm/iseries/hv_types.h> |
28 | 28 | ||
29 | #define HvCallSmGet64BitsOfAccessMap HvCallSm + 11 | 29 | #define HvCallSmGet64BitsOfAccessMap HvCallSm + 11 |
30 | 30 | ||
diff --git a/arch/powerpc/platforms/iseries/hvlog.c b/arch/powerpc/platforms/iseries/hvlog.c index f61e2e9ac9ec..62ec73479687 100644 --- a/arch/powerpc/platforms/iseries/hvlog.c +++ b/arch/powerpc/platforms/iseries/hvlog.c | |||
@@ -9,9 +9,9 @@ | |||
9 | 9 | ||
10 | #include <asm/page.h> | 10 | #include <asm/page.h> |
11 | #include <asm/abs_addr.h> | 11 | #include <asm/abs_addr.h> |
12 | #include <asm/iSeries/HvCall.h> | 12 | #include <asm/iseries/hv_call.h> |
13 | #include <asm/iSeries/HvCallSc.h> | 13 | #include <asm/iseries/hv_call_sc.h> |
14 | #include <asm/iSeries/HvTypes.h> | 14 | #include <asm/iseries/hv_types.h> |
15 | 15 | ||
16 | 16 | ||
17 | void HvCall_writeLogBuffer(const void *buffer, u64 len) | 17 | void HvCall_writeLogBuffer(const void *buffer, u64 len) |
diff --git a/arch/powerpc/platforms/iseries/hvlpconfig.c b/arch/powerpc/platforms/iseries/hvlpconfig.c index dc28621aea0d..663a1affb4bb 100644 --- a/arch/powerpc/platforms/iseries/hvlpconfig.c +++ b/arch/powerpc/platforms/iseries/hvlpconfig.c | |||
@@ -17,7 +17,7 @@ | |||
17 | */ | 17 | */ |
18 | 18 | ||
19 | #include <linux/module.h> | 19 | #include <linux/module.h> |
20 | #include <asm/iSeries/HvLpConfig.h> | 20 | #include <asm/iseries/hv_lp_config.h> |
21 | 21 | ||
22 | HvLpIndex HvLpConfig_getLpIndex_outline(void) | 22 | HvLpIndex HvLpConfig_getLpIndex_outline(void) |
23 | { | 23 | { |
diff --git a/arch/powerpc/platforms/iseries/iommu.c b/arch/powerpc/platforms/iseries/iommu.c index 1db26d8be640..1a6845b5c5a4 100644 --- a/arch/powerpc/platforms/iseries/iommu.c +++ b/arch/powerpc/platforms/iseries/iommu.c | |||
@@ -32,7 +32,7 @@ | |||
32 | #include <asm/machdep.h> | 32 | #include <asm/machdep.h> |
33 | #include <asm/abs_addr.h> | 33 | #include <asm/abs_addr.h> |
34 | #include <asm/pci-bridge.h> | 34 | #include <asm/pci-bridge.h> |
35 | #include <asm/iSeries/HvCallXm.h> | 35 | #include <asm/iseries/hv_call_xm.h> |
36 | 36 | ||
37 | extern struct list_head iSeries_Global_Device_List; | 37 | extern struct list_head iSeries_Global_Device_List; |
38 | 38 | ||
diff --git a/arch/powerpc/platforms/iseries/irq.c b/arch/powerpc/platforms/iseries/irq.c index 937ac99b9d33..c1135912cc05 100644 --- a/arch/powerpc/platforms/iseries/irq.c +++ b/arch/powerpc/platforms/iseries/irq.c | |||
@@ -36,9 +36,9 @@ | |||
36 | #include <linux/spinlock.h> | 36 | #include <linux/spinlock.h> |
37 | 37 | ||
38 | #include <asm/ppcdebug.h> | 38 | #include <asm/ppcdebug.h> |
39 | #include <asm/iSeries/HvTypes.h> | 39 | #include <asm/iseries/hv_types.h> |
40 | #include <asm/iSeries/HvLpEvent.h> | 40 | #include <asm/iseries/hv_lp_event.h> |
41 | #include <asm/iSeries/HvCallXm.h> | 41 | #include <asm/iseries/hv_call_xm.h> |
42 | 42 | ||
43 | #include "irq.h" | 43 | #include "irq.h" |
44 | #include "call_pci.h" | 44 | #include "call_pci.h" |
diff --git a/arch/powerpc/platforms/iseries/ksyms.c b/arch/powerpc/platforms/iseries/ksyms.c index f271b3539721..a2200842f4e5 100644 --- a/arch/powerpc/platforms/iseries/ksyms.c +++ b/arch/powerpc/platforms/iseries/ksyms.c | |||
@@ -9,7 +9,7 @@ | |||
9 | #include <linux/module.h> | 9 | #include <linux/module.h> |
10 | 10 | ||
11 | #include <asm/hw_irq.h> | 11 | #include <asm/hw_irq.h> |
12 | #include <asm/iSeries/HvCallSc.h> | 12 | #include <asm/iseries/hv_call_sc.h> |
13 | 13 | ||
14 | EXPORT_SYMBOL(HvCall0); | 14 | EXPORT_SYMBOL(HvCall0); |
15 | EXPORT_SYMBOL(HvCall1); | 15 | EXPORT_SYMBOL(HvCall1); |
diff --git a/arch/powerpc/platforms/iseries/lpardata.c b/arch/powerpc/platforms/iseries/lpardata.c index ed2ffee6f731..bb8c91537f35 100644 --- a/arch/powerpc/platforms/iseries/lpardata.c +++ b/arch/powerpc/platforms/iseries/lpardata.c | |||
@@ -13,16 +13,16 @@ | |||
13 | #include <linux/bitops.h> | 13 | #include <linux/bitops.h> |
14 | #include <asm/processor.h> | 14 | #include <asm/processor.h> |
15 | #include <asm/ptrace.h> | 15 | #include <asm/ptrace.h> |
16 | #include <asm/naca.h> | ||
17 | #include <asm/abs_addr.h> | 16 | #include <asm/abs_addr.h> |
18 | #include <asm/iSeries/ItLpNaca.h> | 17 | #include <asm/iseries/it_lp_naca.h> |
19 | #include <asm/lppaca.h> | 18 | #include <asm/lppaca.h> |
20 | #include <asm/iSeries/ItLpRegSave.h> | 19 | #include <asm/iseries/it_lp_reg_save.h> |
21 | #include <asm/paca.h> | 20 | #include <asm/paca.h> |
22 | #include <asm/iSeries/LparMap.h> | 21 | #include <asm/iseries/lpar_map.h> |
23 | #include <asm/iSeries/ItExtVpdPanel.h> | 22 | #include <asm/iseries/it_exp_vpd_panel.h> |
24 | #include <asm/iSeries/ItLpQueue.h> | 23 | #include <asm/iseries/it_lp_queue.h> |
25 | 24 | ||
25 | #include "naca.h" | ||
26 | #include "vpd_areas.h" | 26 | #include "vpd_areas.h" |
27 | #include "spcomm_area.h" | 27 | #include "spcomm_area.h" |
28 | #include "ipl_parms.h" | 28 | #include "ipl_parms.h" |
diff --git a/arch/powerpc/platforms/iseries/lpevents.c b/arch/powerpc/platforms/iseries/lpevents.c index 54c7753dbe05..e9fb98bf895f 100644 --- a/arch/powerpc/platforms/iseries/lpevents.c +++ b/arch/powerpc/platforms/iseries/lpevents.c | |||
@@ -17,10 +17,10 @@ | |||
17 | 17 | ||
18 | #include <asm/system.h> | 18 | #include <asm/system.h> |
19 | #include <asm/paca.h> | 19 | #include <asm/paca.h> |
20 | #include <asm/iSeries/ItLpQueue.h> | 20 | #include <asm/iseries/it_lp_queue.h> |
21 | #include <asm/iSeries/HvLpEvent.h> | 21 | #include <asm/iseries/hv_lp_event.h> |
22 | #include <asm/iSeries/HvCallEvent.h> | 22 | #include <asm/iseries/hv_call_event.h> |
23 | #include <asm/iSeries/ItLpNaca.h> | 23 | #include <asm/iseries/it_lp_naca.h> |
24 | 24 | ||
25 | /* | 25 | /* |
26 | * The LpQueue is used to pass event data from the hypervisor to | 26 | * The LpQueue is used to pass event data from the hypervisor to |
diff --git a/arch/powerpc/platforms/iseries/mf.c b/arch/powerpc/platforms/iseries/mf.c index e5de31aa0015..49e7e4b85847 100644 --- a/arch/powerpc/platforms/iseries/mf.c +++ b/arch/powerpc/platforms/iseries/mf.c | |||
@@ -38,10 +38,10 @@ | |||
38 | #include <asm/uaccess.h> | 38 | #include <asm/uaccess.h> |
39 | #include <asm/paca.h> | 39 | #include <asm/paca.h> |
40 | #include <asm/abs_addr.h> | 40 | #include <asm/abs_addr.h> |
41 | #include <asm/iSeries/vio.h> | 41 | #include <asm/iseries/vio.h> |
42 | #include <asm/iSeries/mf.h> | 42 | #include <asm/iseries/mf.h> |
43 | #include <asm/iSeries/HvLpConfig.h> | 43 | #include <asm/iseries/hv_lp_config.h> |
44 | #include <asm/iSeries/ItLpQueue.h> | 44 | #include <asm/iseries/it_lp_queue.h> |
45 | 45 | ||
46 | #include "setup.h" | 46 | #include "setup.h" |
47 | 47 | ||
diff --git a/arch/powerpc/platforms/iseries/naca.h b/arch/powerpc/platforms/iseries/naca.h new file mode 100644 index 000000000000..ab2372eb8d2e --- /dev/null +++ b/arch/powerpc/platforms/iseries/naca.h | |||
@@ -0,0 +1,24 @@ | |||
1 | #ifndef _PLATFORMS_ISERIES_NACA_H | ||
2 | #define _PLATFORMS_ISERIES_NACA_H | ||
3 | |||
4 | /* | ||
5 | * c 2001 PPC 64 Team, IBM Corp | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or | ||
8 | * modify it under the terms of the GNU General Public License | ||
9 | * as published by the Free Software Foundation; either version | ||
10 | * 2 of the License, or (at your option) any later version. | ||
11 | */ | ||
12 | |||
13 | #include <asm/types.h> | ||
14 | |||
15 | struct naca_struct { | ||
16 | /* Kernel only data - undefined for user space */ | ||
17 | void *xItVpdAreas; /* VPD Data 0x00 */ | ||
18 | void *xRamDisk; /* iSeries ramdisk 0x08 */ | ||
19 | u64 xRamDiskSize; /* In pages 0x10 */ | ||
20 | }; | ||
21 | |||
22 | extern struct naca_struct naca; | ||
23 | |||
24 | #endif /* _PLATFORMS_ISERIES_NACA_H */ | ||
diff --git a/arch/powerpc/platforms/iseries/pci.c b/arch/powerpc/platforms/iseries/pci.c index 959e59fd9c11..7d7d5884343f 100644 --- a/arch/powerpc/platforms/iseries/pci.c +++ b/arch/powerpc/platforms/iseries/pci.c | |||
@@ -36,8 +36,8 @@ | |||
36 | #include <asm/iommu.h> | 36 | #include <asm/iommu.h> |
37 | #include <asm/abs_addr.h> | 37 | #include <asm/abs_addr.h> |
38 | 38 | ||
39 | #include <asm/iSeries/HvCallXm.h> | 39 | #include <asm/iseries/hv_call_xm.h> |
40 | #include <asm/iSeries/mf.h> | 40 | #include <asm/iseries/mf.h> |
41 | 41 | ||
42 | #include <asm/ppc-pci.h> | 42 | #include <asm/ppc-pci.h> |
43 | 43 | ||
diff --git a/arch/powerpc/platforms/iseries/proc.c b/arch/powerpc/platforms/iseries/proc.c index 6f1929cac66b..e68b6b5fa89f 100644 --- a/arch/powerpc/platforms/iseries/proc.c +++ b/arch/powerpc/platforms/iseries/proc.c | |||
@@ -24,8 +24,8 @@ | |||
24 | #include <asm/processor.h> | 24 | #include <asm/processor.h> |
25 | #include <asm/time.h> | 25 | #include <asm/time.h> |
26 | #include <asm/lppaca.h> | 26 | #include <asm/lppaca.h> |
27 | #include <asm/iSeries/ItLpQueue.h> | 27 | #include <asm/iseries/it_lp_queue.h> |
28 | #include <asm/iSeries/HvCallXm.h> | 28 | #include <asm/iseries/hv_call_xm.h> |
29 | 29 | ||
30 | #include "processor_vpd.h" | 30 | #include "processor_vpd.h" |
31 | #include "main_store.h" | 31 | #include "main_store.h" |
diff --git a/arch/powerpc/platforms/iseries/release_data.h b/arch/powerpc/platforms/iseries/release_data.h index c68b9c3e5caf..66189fd2e32d 100644 --- a/arch/powerpc/platforms/iseries/release_data.h +++ b/arch/powerpc/platforms/iseries/release_data.h | |||
@@ -24,7 +24,7 @@ | |||
24 | * address of the OS's NACA). | 24 | * address of the OS's NACA). |
25 | */ | 25 | */ |
26 | #include <asm/types.h> | 26 | #include <asm/types.h> |
27 | #include <asm/naca.h> | 27 | #include "naca.h" |
28 | 28 | ||
29 | /* | 29 | /* |
30 | * When we IPL a secondary partition, we will check if if the | 30 | * When we IPL a secondary partition, we will check if if the |
diff --git a/arch/powerpc/platforms/iseries/setup.c b/arch/powerpc/platforms/iseries/setup.c index 1544c6f10a38..fda712b42168 100644 --- a/arch/powerpc/platforms/iseries/setup.c +++ b/arch/powerpc/platforms/iseries/setup.c | |||
@@ -27,6 +27,7 @@ | |||
27 | #include <linux/kdev_t.h> | 27 | #include <linux/kdev_t.h> |
28 | #include <linux/major.h> | 28 | #include <linux/major.h> |
29 | #include <linux/root_dev.h> | 29 | #include <linux/root_dev.h> |
30 | #include <linux/kernel.h> | ||
30 | 31 | ||
31 | #include <asm/processor.h> | 32 | #include <asm/processor.h> |
32 | #include <asm/machdep.h> | 33 | #include <asm/machdep.h> |
@@ -40,19 +41,19 @@ | |||
40 | #include <asm/firmware.h> | 41 | #include <asm/firmware.h> |
41 | 42 | ||
42 | #include <asm/time.h> | 43 | #include <asm/time.h> |
43 | #include <asm/naca.h> | ||
44 | #include <asm/paca.h> | 44 | #include <asm/paca.h> |
45 | #include <asm/cache.h> | 45 | #include <asm/cache.h> |
46 | #include <asm/sections.h> | 46 | #include <asm/sections.h> |
47 | #include <asm/abs_addr.h> | 47 | #include <asm/abs_addr.h> |
48 | #include <asm/iSeries/HvLpConfig.h> | 48 | #include <asm/iseries/hv_lp_config.h> |
49 | #include <asm/iSeries/HvCallEvent.h> | 49 | #include <asm/iseries/hv_call_event.h> |
50 | #include <asm/iSeries/HvCallXm.h> | 50 | #include <asm/iseries/hv_call_xm.h> |
51 | #include <asm/iSeries/ItLpQueue.h> | 51 | #include <asm/iseries/it_lp_queue.h> |
52 | #include <asm/iSeries/mf.h> | 52 | #include <asm/iseries/mf.h> |
53 | #include <asm/iSeries/HvLpEvent.h> | 53 | #include <asm/iseries/hv_lp_event.h> |
54 | #include <asm/iSeries/LparMap.h> | 54 | #include <asm/iseries/lpar_map.h> |
55 | 55 | ||
56 | #include "naca.h" | ||
56 | #include "setup.h" | 57 | #include "setup.h" |
57 | #include "irq.h" | 58 | #include "irq.h" |
58 | #include "vpd_areas.h" | 59 | #include "vpd_areas.h" |
@@ -94,6 +95,8 @@ extern unsigned long iSeries_recal_titan; | |||
94 | 95 | ||
95 | static int mf_initialized; | 96 | static int mf_initialized; |
96 | 97 | ||
98 | static unsigned long cmd_mem_limit; | ||
99 | |||
97 | struct MemoryBlock { | 100 | struct MemoryBlock { |
98 | unsigned long absStart; | 101 | unsigned long absStart; |
99 | unsigned long absEnd; | 102 | unsigned long absEnd; |
@@ -341,23 +344,6 @@ static void __init iSeries_init_early(void) | |||
341 | */ | 344 | */ |
342 | iommu_init_early_iSeries(); | 345 | iommu_init_early_iSeries(); |
343 | 346 | ||
344 | iSeries_get_cmdline(); | ||
345 | |||
346 | /* Save unparsed command line copy for /proc/cmdline */ | ||
347 | strlcpy(saved_command_line, cmd_line, COMMAND_LINE_SIZE); | ||
348 | |||
349 | /* Parse early parameters, in particular mem=x */ | ||
350 | parse_early_param(); | ||
351 | |||
352 | if (memory_limit) { | ||
353 | if (memory_limit < systemcfg->physicalMemorySize) | ||
354 | systemcfg->physicalMemorySize = memory_limit; | ||
355 | else { | ||
356 | printk("Ignoring mem=%lu >= ram_top.\n", memory_limit); | ||
357 | memory_limit = 0; | ||
358 | } | ||
359 | } | ||
360 | |||
361 | /* Initialize machine-dependency vectors */ | 347 | /* Initialize machine-dependency vectors */ |
362 | #ifdef CONFIG_SMP | 348 | #ifdef CONFIG_SMP |
363 | smp_init_iSeries(); | 349 | smp_init_iSeries(); |
@@ -971,6 +957,8 @@ void build_flat_dt(struct iseries_flat_dt *dt) | |||
971 | /* /chosen */ | 957 | /* /chosen */ |
972 | dt_start_node(dt, "chosen"); | 958 | dt_start_node(dt, "chosen"); |
973 | dt_prop_u32(dt, "linux,platform", PLATFORM_ISERIES_LPAR); | 959 | dt_prop_u32(dt, "linux,platform", PLATFORM_ISERIES_LPAR); |
960 | if (cmd_mem_limit) | ||
961 | dt_prop_u64(dt, "linux,memory-limit", cmd_mem_limit); | ||
974 | dt_end_node(dt); | 962 | dt_end_node(dt); |
975 | 963 | ||
976 | dt_cpus(dt); | 964 | dt_cpus(dt); |
@@ -990,7 +978,27 @@ void * __init iSeries_early_setup(void) | |||
990 | */ | 978 | */ |
991 | build_iSeries_Memory_Map(); | 979 | build_iSeries_Memory_Map(); |
992 | 980 | ||
981 | iSeries_get_cmdline(); | ||
982 | |||
983 | /* Save unparsed command line copy for /proc/cmdline */ | ||
984 | strlcpy(saved_command_line, cmd_line, COMMAND_LINE_SIZE); | ||
985 | |||
986 | /* Parse early parameters, in particular mem=x */ | ||
987 | parse_early_param(); | ||
988 | |||
993 | build_flat_dt(&iseries_dt); | 989 | build_flat_dt(&iseries_dt); |
994 | 990 | ||
995 | return (void *) __pa(&iseries_dt); | 991 | return (void *) __pa(&iseries_dt); |
996 | } | 992 | } |
993 | |||
994 | /* | ||
995 | * On iSeries we just parse the mem=X option from the command line. | ||
996 | * On pSeries it's a bit more complicated, see prom_init_mem() | ||
997 | */ | ||
998 | static int __init early_parsemem(char *p) | ||
999 | { | ||
1000 | if (p) | ||
1001 | cmd_mem_limit = ALIGN(memparse(p, &p), PAGE_SIZE); | ||
1002 | return 0; | ||
1003 | } | ||
1004 | early_param("mem", early_parsemem); | ||
diff --git a/arch/powerpc/platforms/iseries/smp.c b/arch/powerpc/platforms/iseries/smp.c index f720916682f6..3336bad67724 100644 --- a/arch/powerpc/platforms/iseries/smp.c +++ b/arch/powerpc/platforms/iseries/smp.c | |||
@@ -38,7 +38,7 @@ | |||
38 | #include <asm/io.h> | 38 | #include <asm/io.h> |
39 | #include <asm/smp.h> | 39 | #include <asm/smp.h> |
40 | #include <asm/paca.h> | 40 | #include <asm/paca.h> |
41 | #include <asm/iSeries/HvCall.h> | 41 | #include <asm/iseries/hv_call.h> |
42 | #include <asm/time.h> | 42 | #include <asm/time.h> |
43 | #include <asm/ppcdebug.h> | 43 | #include <asm/ppcdebug.h> |
44 | #include <asm/machdep.h> | 44 | #include <asm/machdep.h> |
diff --git a/arch/powerpc/platforms/iseries/vio.c b/arch/powerpc/platforms/iseries/vio.c index c0f7d2e9153f..c27a66876c2c 100644 --- a/arch/powerpc/platforms/iseries/vio.c +++ b/arch/powerpc/platforms/iseries/vio.c | |||
@@ -17,10 +17,10 @@ | |||
17 | #include <asm/tce.h> | 17 | #include <asm/tce.h> |
18 | #include <asm/abs_addr.h> | 18 | #include <asm/abs_addr.h> |
19 | #include <asm/page.h> | 19 | #include <asm/page.h> |
20 | #include <asm/iSeries/vio.h> | 20 | #include <asm/iseries/vio.h> |
21 | #include <asm/iSeries/HvTypes.h> | 21 | #include <asm/iseries/hv_types.h> |
22 | #include <asm/iSeries/HvLpConfig.h> | 22 | #include <asm/iseries/hv_lp_config.h> |
23 | #include <asm/iSeries/HvCallXm.h> | 23 | #include <asm/iseries/hv_call_xm.h> |
24 | 24 | ||
25 | struct device *iSeries_vio_dev = &vio_bus_device.dev; | 25 | struct device *iSeries_vio_dev = &vio_bus_device.dev; |
26 | EXPORT_SYMBOL(iSeries_vio_dev); | 26 | EXPORT_SYMBOL(iSeries_vio_dev); |
diff --git a/arch/powerpc/platforms/iseries/viopath.c b/arch/powerpc/platforms/iseries/viopath.c index c0c767bd37f1..fe97bfbf7463 100644 --- a/arch/powerpc/platforms/iseries/viopath.c +++ b/arch/powerpc/platforms/iseries/viopath.c | |||
@@ -41,12 +41,12 @@ | |||
41 | 41 | ||
42 | #include <asm/system.h> | 42 | #include <asm/system.h> |
43 | #include <asm/uaccess.h> | 43 | #include <asm/uaccess.h> |
44 | #include <asm/iSeries/HvTypes.h> | 44 | #include <asm/iseries/hv_types.h> |
45 | #include <asm/iSeries/ItExtVpdPanel.h> | 45 | #include <asm/iseries/it_exp_vpd_panel.h> |
46 | #include <asm/iSeries/HvLpEvent.h> | 46 | #include <asm/iseries/hv_lp_event.h> |
47 | #include <asm/iSeries/HvLpConfig.h> | 47 | #include <asm/iseries/hv_lp_config.h> |
48 | #include <asm/iSeries/mf.h> | 48 | #include <asm/iseries/mf.h> |
49 | #include <asm/iSeries/vio.h> | 49 | #include <asm/iseries/vio.h> |
50 | 50 | ||
51 | /* Status of the path to each other partition in the system. | 51 | /* Status of the path to each other partition in the system. |
52 | * This is overkill, since we will only ever establish connections | 52 | * This is overkill, since we will only ever establish connections |
diff --git a/arch/powerpc/platforms/iseries/vpdinfo.c b/arch/powerpc/platforms/iseries/vpdinfo.c index 9c318849dee7..23a6d1e5b429 100644 --- a/arch/powerpc/platforms/iseries/vpdinfo.c +++ b/arch/powerpc/platforms/iseries/vpdinfo.c | |||
@@ -32,7 +32,7 @@ | |||
32 | #include <asm/resource.h> | 32 | #include <asm/resource.h> |
33 | #include <asm/abs_addr.h> | 33 | #include <asm/abs_addr.h> |
34 | #include <asm/pci-bridge.h> | 34 | #include <asm/pci-bridge.h> |
35 | #include <asm/iSeries/HvTypes.h> | 35 | #include <asm/iseries/hv_types.h> |
36 | 36 | ||
37 | #include "pci.h" | 37 | #include "pci.h" |
38 | #include "call_pci.h" | 38 | #include "call_pci.h" |
diff --git a/arch/powerpc/platforms/powermac/pic.c b/arch/powerpc/platforms/powermac/pic.c index 0037a8c8c81f..83a49e80ac29 100644 --- a/arch/powerpc/platforms/powermac/pic.c +++ b/arch/powerpc/platforms/powermac/pic.c | |||
@@ -576,7 +576,7 @@ void __init pmac_pic_init(void) | |||
576 | #endif /* CONFIG_PPC32 */ | 576 | #endif /* CONFIG_PPC32 */ |
577 | } | 577 | } |
578 | 578 | ||
579 | #ifdef CONFIG_PM | 579 | #if defined(CONFIG_PM) && defined(CONFIG_PPC32) |
580 | /* | 580 | /* |
581 | * These procedures are used in implementing sleep on the powerbooks. | 581 | * These procedures are used in implementing sleep on the powerbooks. |
582 | * sleep_save_intrs() saves the states of all interrupt enables | 582 | * sleep_save_intrs() saves the states of all interrupt enables |
@@ -643,7 +643,7 @@ static int pmacpic_resume(struct sys_device *sysdev) | |||
643 | return 0; | 643 | return 0; |
644 | } | 644 | } |
645 | 645 | ||
646 | #endif /* CONFIG_PM */ | 646 | #endif /* CONFIG_PM && CONFIG_PPC32 */ |
647 | 647 | ||
648 | static struct sysdev_class pmacpic_sysclass = { | 648 | static struct sysdev_class pmacpic_sysclass = { |
649 | set_kset_name("pmac_pic"), | 649 | set_kset_name("pmac_pic"), |
@@ -655,10 +655,10 @@ static struct sys_device device_pmacpic = { | |||
655 | }; | 655 | }; |
656 | 656 | ||
657 | static struct sysdev_driver driver_pmacpic = { | 657 | static struct sysdev_driver driver_pmacpic = { |
658 | #ifdef CONFIG_PM | 658 | #if defined(CONFIG_PM) && defined(CONFIG_PPC32) |
659 | .suspend = &pmacpic_suspend, | 659 | .suspend = &pmacpic_suspend, |
660 | .resume = &pmacpic_resume, | 660 | .resume = &pmacpic_resume, |
661 | #endif /* CONFIG_PM */ | 661 | #endif /* CONFIG_PM && CONFIG_PPC32 */ |
662 | }; | 662 | }; |
663 | 663 | ||
664 | static int __init init_pmacpic_sysfs(void) | 664 | static int __init init_pmacpic_sysfs(void) |
diff --git a/arch/powerpc/platforms/powermac/setup.c b/arch/powerpc/platforms/powermac/setup.c index 6f62af597291..80b58c1ec412 100644 --- a/arch/powerpc/platforms/powermac/setup.c +++ b/arch/powerpc/platforms/powermac/setup.c | |||
@@ -75,6 +75,7 @@ | |||
75 | #include <asm/smu.h> | 75 | #include <asm/smu.h> |
76 | #include <asm/pmc.h> | 76 | #include <asm/pmc.h> |
77 | #include <asm/mpic.h> | 77 | #include <asm/mpic.h> |
78 | #include <asm/lmb.h> | ||
78 | 79 | ||
79 | #include "pmac.h" | 80 | #include "pmac.h" |
80 | 81 | ||
@@ -350,7 +351,7 @@ void __init pmac_setup_arch(void) | |||
350 | find_via_pmu(); | 351 | find_via_pmu(); |
351 | smu_init(); | 352 | smu_init(); |
352 | 353 | ||
353 | #ifdef CONFIG_NVRAM | 354 | #if defined(CONFIG_NVRAM) || defined(CONFIG_PPC64) |
354 | pmac_nvram_init(); | 355 | pmac_nvram_init(); |
355 | #endif | 356 | #endif |
356 | 357 | ||
diff --git a/arch/powerpc/platforms/pseries/Kconfig b/arch/powerpc/platforms/pseries/Kconfig index 2d57f588151d..e3fc3407bb1f 100644 --- a/arch/powerpc/platforms/pseries/Kconfig +++ b/arch/powerpc/platforms/pseries/Kconfig | |||
@@ -21,15 +21,6 @@ config EEH | |||
21 | depends on PPC_PSERIES | 21 | depends on PPC_PSERIES |
22 | default y if !EMBEDDED | 22 | default y if !EMBEDDED |
23 | 23 | ||
24 | config RTAS_PROC | ||
25 | bool "Proc interface to RTAS" | ||
26 | depends on PPC_RTAS | ||
27 | default y | ||
28 | |||
29 | config RTAS_FLASH | ||
30 | tristate "Firmware flash interface" | ||
31 | depends on PPC64 && RTAS_PROC | ||
32 | |||
33 | config SCANLOG | 24 | config SCANLOG |
34 | tristate "Scanlog dump interface" | 25 | tristate "Scanlog dump interface" |
35 | depends on RTAS_PROC && PPC_PSERIES | 26 | depends on RTAS_PROC && PPC_PSERIES |
diff --git a/arch/powerpc/platforms/pseries/Makefile b/arch/powerpc/platforms/pseries/Makefile index 5ef494e3a70f..b9938fece781 100644 --- a/arch/powerpc/platforms/pseries/Makefile +++ b/arch/powerpc/platforms/pseries/Makefile | |||
@@ -1,5 +1,5 @@ | |||
1 | obj-y := pci.o lpar.o hvCall.o nvram.o reconfig.o \ | 1 | obj-y := pci.o lpar.o hvCall.o nvram.o reconfig.o \ |
2 | setup.o iommu.o rtas-fw.o ras.o | 2 | setup.o iommu.o ras.o rtasd.o |
3 | obj-$(CONFIG_SMP) += smp.o | 3 | obj-$(CONFIG_SMP) += smp.o |
4 | obj-$(CONFIG_IBMVIO) += vio.o | 4 | obj-$(CONFIG_IBMVIO) += vio.o |
5 | obj-$(CONFIG_XICS) += xics.o | 5 | obj-$(CONFIG_XICS) += xics.o |
diff --git a/arch/powerpc/platforms/pseries/iommu.c b/arch/powerpc/platforms/pseries/iommu.c index 9e90d41131d8..513e27231493 100644 --- a/arch/powerpc/platforms/pseries/iommu.c +++ b/arch/powerpc/platforms/pseries/iommu.c | |||
@@ -42,13 +42,14 @@ | |||
42 | #include <asm/pci-bridge.h> | 42 | #include <asm/pci-bridge.h> |
43 | #include <asm/machdep.h> | 43 | #include <asm/machdep.h> |
44 | #include <asm/abs_addr.h> | 44 | #include <asm/abs_addr.h> |
45 | #include <asm/plpar_wrappers.h> | ||
46 | #include <asm/pSeries_reconfig.h> | 45 | #include <asm/pSeries_reconfig.h> |
47 | #include <asm/systemcfg.h> | 46 | #include <asm/systemcfg.h> |
48 | #include <asm/firmware.h> | 47 | #include <asm/firmware.h> |
49 | #include <asm/tce.h> | 48 | #include <asm/tce.h> |
50 | #include <asm/ppc-pci.h> | 49 | #include <asm/ppc-pci.h> |
51 | 50 | ||
51 | #include "plpar_wrappers.h" | ||
52 | |||
52 | #define DBG(fmt...) | 53 | #define DBG(fmt...) |
53 | 54 | ||
54 | extern int is_python(struct device_node *); | 55 | extern int is_python(struct device_node *); |
@@ -498,7 +499,7 @@ static int iommu_reconfig_notifier(struct notifier_block *nb, unsigned long acti | |||
498 | 499 | ||
499 | switch (action) { | 500 | switch (action) { |
500 | case PSERIES_RECONFIG_REMOVE: | 501 | case PSERIES_RECONFIG_REMOVE: |
501 | if (pci->iommu_table && | 502 | if (pci && pci->iommu_table && |
502 | get_property(np, "ibm,dma-window", NULL)) | 503 | get_property(np, "ibm,dma-window", NULL)) |
503 | iommu_free_table(np); | 504 | iommu_free_table(np); |
504 | break; | 505 | break; |
diff --git a/arch/powerpc/platforms/pseries/lpar.c b/arch/powerpc/platforms/pseries/lpar.c index 268d8362dde7..e384a5a91796 100644 --- a/arch/powerpc/platforms/pseries/lpar.c +++ b/arch/powerpc/platforms/pseries/lpar.c | |||
@@ -38,7 +38,8 @@ | |||
38 | #include <asm/prom.h> | 38 | #include <asm/prom.h> |
39 | #include <asm/abs_addr.h> | 39 | #include <asm/abs_addr.h> |
40 | #include <asm/cputable.h> | 40 | #include <asm/cputable.h> |
41 | #include <asm/plpar_wrappers.h> | 41 | |
42 | #include "plpar_wrappers.h" | ||
42 | 43 | ||
43 | #ifdef DEBUG | 44 | #ifdef DEBUG |
44 | #define DBG(fmt...) udbg_printf(fmt) | 45 | #define DBG(fmt...) udbg_printf(fmt) |
@@ -260,22 +261,18 @@ out: | |||
260 | void vpa_init(int cpu) | 261 | void vpa_init(int cpu) |
261 | { | 262 | { |
262 | int hwcpu = get_hard_smp_processor_id(cpu); | 263 | int hwcpu = get_hard_smp_processor_id(cpu); |
263 | unsigned long vpa = (unsigned long)&(paca[cpu].lppaca); | 264 | unsigned long vpa = __pa(&paca[cpu].lppaca); |
264 | long ret; | 265 | long ret; |
265 | unsigned long flags; | ||
266 | |||
267 | /* Register the Virtual Processor Area (VPA) */ | ||
268 | flags = 1UL << (63 - 18); | ||
269 | 266 | ||
270 | if (cpu_has_feature(CPU_FTR_ALTIVEC)) | 267 | if (cpu_has_feature(CPU_FTR_ALTIVEC)) |
271 | paca[cpu].lppaca.vmxregs_in_use = 1; | 268 | paca[cpu].lppaca.vmxregs_in_use = 1; |
272 | 269 | ||
273 | ret = register_vpa(flags, hwcpu, __pa(vpa)); | 270 | ret = register_vpa(hwcpu, vpa); |
274 | 271 | ||
275 | if (ret) | 272 | if (ret) |
276 | printk(KERN_ERR "WARNING: vpa_init: VPA registration for " | 273 | printk(KERN_ERR "WARNING: vpa_init: VPA registration for " |
277 | "cpu %d (hw %d) of area %lx returns %ld\n", | 274 | "cpu %d (hw %d) of area %lx returns %ld\n", |
278 | cpu, hwcpu, __pa(vpa), ret); | 275 | cpu, hwcpu, vpa, ret); |
279 | } | 276 | } |
280 | 277 | ||
281 | long pSeries_lpar_hpte_insert(unsigned long hpte_group, | 278 | long pSeries_lpar_hpte_insert(unsigned long hpte_group, |
diff --git a/arch/powerpc/platforms/pseries/plpar_wrappers.h b/arch/powerpc/platforms/pseries/plpar_wrappers.h new file mode 100644 index 000000000000..382f8c5b0e7c --- /dev/null +++ b/arch/powerpc/platforms/pseries/plpar_wrappers.h | |||
@@ -0,0 +1,120 @@ | |||
1 | #ifndef _PSERIES_PLPAR_WRAPPERS_H | ||
2 | #define _PSERIES_PLPAR_WRAPPERS_H | ||
3 | |||
4 | #include <asm/hvcall.h> | ||
5 | |||
6 | static inline long poll_pending(void) | ||
7 | { | ||
8 | unsigned long dummy; | ||
9 | return plpar_hcall(H_POLL_PENDING, 0, 0, 0, 0, &dummy, &dummy, &dummy); | ||
10 | } | ||
11 | |||
12 | static inline long prod_processor(void) | ||
13 | { | ||
14 | plpar_hcall_norets(H_PROD); | ||
15 | return 0; | ||
16 | } | ||
17 | |||
18 | static inline long cede_processor(void) | ||
19 | { | ||
20 | plpar_hcall_norets(H_CEDE); | ||
21 | return 0; | ||
22 | } | ||
23 | |||
24 | static inline long vpa_call(unsigned long flags, unsigned long cpu, | ||
25 | unsigned long vpa) | ||
26 | { | ||
27 | /* flags are in bits 16-18 (counting from most significant bit) */ | ||
28 | flags = flags << (63 - 18); | ||
29 | |||
30 | return plpar_hcall_norets(H_REGISTER_VPA, flags, cpu, vpa); | ||
31 | } | ||
32 | |||
33 | static inline long unregister_vpa(unsigned long cpu, unsigned long vpa) | ||
34 | { | ||
35 | return vpa_call(0x5, cpu, vpa); | ||
36 | } | ||
37 | |||
38 | static inline long register_vpa(unsigned long cpu, unsigned long vpa) | ||
39 | { | ||
40 | return vpa_call(0x1, cpu, vpa); | ||
41 | } | ||
42 | |||
43 | extern void vpa_init(int cpu); | ||
44 | |||
45 | static inline long plpar_pte_remove(unsigned long flags, unsigned long ptex, | ||
46 | unsigned long avpn, unsigned long *old_pteh_ret, | ||
47 | unsigned long *old_ptel_ret) | ||
48 | { | ||
49 | unsigned long dummy; | ||
50 | return plpar_hcall(H_REMOVE, flags, ptex, avpn, 0, old_pteh_ret, | ||
51 | old_ptel_ret, &dummy); | ||
52 | } | ||
53 | |||
54 | static inline long plpar_pte_read(unsigned long flags, unsigned long ptex, | ||
55 | unsigned long *old_pteh_ret, unsigned long *old_ptel_ret) | ||
56 | { | ||
57 | unsigned long dummy; | ||
58 | return plpar_hcall(H_READ, flags, ptex, 0, 0, old_pteh_ret, | ||
59 | old_ptel_ret, &dummy); | ||
60 | } | ||
61 | |||
62 | static inline long plpar_pte_protect(unsigned long flags, unsigned long ptex, | ||
63 | unsigned long avpn) | ||
64 | { | ||
65 | return plpar_hcall_norets(H_PROTECT, flags, ptex, avpn); | ||
66 | } | ||
67 | |||
68 | static inline long plpar_tce_get(unsigned long liobn, unsigned long ioba, | ||
69 | unsigned long *tce_ret) | ||
70 | { | ||
71 | unsigned long dummy; | ||
72 | return plpar_hcall(H_GET_TCE, liobn, ioba, 0, 0, tce_ret, &dummy, | ||
73 | &dummy); | ||
74 | } | ||
75 | |||
76 | static inline long plpar_tce_put(unsigned long liobn, unsigned long ioba, | ||
77 | unsigned long tceval) | ||
78 | { | ||
79 | return plpar_hcall_norets(H_PUT_TCE, liobn, ioba, tceval); | ||
80 | } | ||
81 | |||
82 | static inline long plpar_tce_put_indirect(unsigned long liobn, | ||
83 | unsigned long ioba, unsigned long page, unsigned long count) | ||
84 | { | ||
85 | return plpar_hcall_norets(H_PUT_TCE_INDIRECT, liobn, ioba, page, count); | ||
86 | } | ||
87 | |||
88 | static inline long plpar_tce_stuff(unsigned long liobn, unsigned long ioba, | ||
89 | unsigned long tceval, unsigned long count) | ||
90 | { | ||
91 | return plpar_hcall_norets(H_STUFF_TCE, liobn, ioba, tceval, count); | ||
92 | } | ||
93 | |||
94 | static inline long plpar_get_term_char(unsigned long termno, | ||
95 | unsigned long *len_ret, char *buf_ret) | ||
96 | { | ||
97 | unsigned long *lbuf = (unsigned long *)buf_ret; /* TODO: alignment? */ | ||
98 | return plpar_hcall(H_GET_TERM_CHAR, termno, 0, 0, 0, len_ret, | ||
99 | lbuf + 0, lbuf + 1); | ||
100 | } | ||
101 | |||
102 | static inline long plpar_put_term_char(unsigned long termno, unsigned long len, | ||
103 | const char *buffer) | ||
104 | { | ||
105 | unsigned long *lbuf = (unsigned long *)buffer; /* TODO: alignment? */ | ||
106 | return plpar_hcall_norets(H_PUT_TERM_CHAR, termno, len, lbuf[0], | ||
107 | lbuf[1]); | ||
108 | } | ||
109 | |||
110 | static inline long plpar_set_xdabr(unsigned long address, unsigned long flags) | ||
111 | { | ||
112 | return plpar_hcall_norets(H_SET_XDABR, address, flags); | ||
113 | } | ||
114 | |||
115 | static inline long plpar_set_dabr(unsigned long val) | ||
116 | { | ||
117 | return plpar_hcall_norets(H_SET_DABR, val); | ||
118 | } | ||
119 | |||
120 | #endif /* _PSERIES_PLPAR_WRAPPERS_H */ | ||
diff --git a/arch/powerpc/platforms/pseries/rtas-fw.c b/arch/powerpc/platforms/pseries/rtas-fw.c deleted file mode 100644 index 15d81d758ca0..000000000000 --- a/arch/powerpc/platforms/pseries/rtas-fw.c +++ /dev/null | |||
@@ -1,138 +0,0 @@ | |||
1 | /* | ||
2 | * | ||
3 | * Procedures for firmware flash updates on pSeries systems. | ||
4 | * | ||
5 | * Peter Bergner, IBM March 2001. | ||
6 | * Copyright (C) 2001 IBM. | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or | ||
9 | * modify it under the terms of the GNU General Public License | ||
10 | * as published by the Free Software Foundation; either version | ||
11 | * 2 of the License, or (at your option) any later version. | ||
12 | */ | ||
13 | |||
14 | #include <stdarg.h> | ||
15 | #include <linux/kernel.h> | ||
16 | #include <linux/types.h> | ||
17 | #include <linux/spinlock.h> | ||
18 | #include <linux/module.h> | ||
19 | #include <linux/init.h> | ||
20 | |||
21 | #include <asm/prom.h> | ||
22 | #include <asm/rtas.h> | ||
23 | #include <asm/semaphore.h> | ||
24 | #include <asm/machdep.h> | ||
25 | #include <asm/page.h> | ||
26 | #include <asm/param.h> | ||
27 | #include <asm/system.h> | ||
28 | #include <asm/abs_addr.h> | ||
29 | #include <asm/udbg.h> | ||
30 | #include <asm/delay.h> | ||
31 | #include <asm/uaccess.h> | ||
32 | #include <asm/systemcfg.h> | ||
33 | |||
34 | #include "rtas-fw.h" | ||
35 | |||
36 | struct flash_block_list_header rtas_firmware_flash_list = {0, NULL}; | ||
37 | |||
38 | #define FLASH_BLOCK_LIST_VERSION (1UL) | ||
39 | |||
40 | static void rtas_flash_firmware(void) | ||
41 | { | ||
42 | unsigned long image_size; | ||
43 | struct flash_block_list *f, *next, *flist; | ||
44 | unsigned long rtas_block_list; | ||
45 | int i, status, update_token; | ||
46 | |||
47 | update_token = rtas_token("ibm,update-flash-64-and-reboot"); | ||
48 | if (update_token == RTAS_UNKNOWN_SERVICE) { | ||
49 | printk(KERN_ALERT "FLASH: ibm,update-flash-64-and-reboot is not available -- not a service partition?\n"); | ||
50 | printk(KERN_ALERT "FLASH: firmware will not be flashed\n"); | ||
51 | return; | ||
52 | } | ||
53 | |||
54 | /* NOTE: the "first" block list is a global var with no data | ||
55 | * blocks in the kernel data segment. We do this because | ||
56 | * we want to ensure this block_list addr is under 4GB. | ||
57 | */ | ||
58 | rtas_firmware_flash_list.num_blocks = 0; | ||
59 | flist = (struct flash_block_list *)&rtas_firmware_flash_list; | ||
60 | rtas_block_list = virt_to_abs(flist); | ||
61 | if (rtas_block_list >= 4UL*1024*1024*1024) { | ||
62 | printk(KERN_ALERT "FLASH: kernel bug...flash list header addr above 4GB\n"); | ||
63 | return; | ||
64 | } | ||
65 | |||
66 | printk(KERN_ALERT "FLASH: preparing saved firmware image for flash\n"); | ||
67 | /* Update the block_list in place. */ | ||
68 | image_size = 0; | ||
69 | for (f = flist; f; f = next) { | ||
70 | /* Translate data addrs to absolute */ | ||
71 | for (i = 0; i < f->num_blocks; i++) { | ||
72 | f->blocks[i].data = (char *)virt_to_abs(f->blocks[i].data); | ||
73 | image_size += f->blocks[i].length; | ||
74 | } | ||
75 | next = f->next; | ||
76 | /* Don't translate NULL pointer for last entry */ | ||
77 | if (f->next) | ||
78 | f->next = (struct flash_block_list *)virt_to_abs(f->next); | ||
79 | else | ||
80 | f->next = NULL; | ||
81 | /* make num_blocks into the version/length field */ | ||
82 | f->num_blocks = (FLASH_BLOCK_LIST_VERSION << 56) | ((f->num_blocks+1)*16); | ||
83 | } | ||
84 | |||
85 | printk(KERN_ALERT "FLASH: flash image is %ld bytes\n", image_size); | ||
86 | printk(KERN_ALERT "FLASH: performing flash and reboot\n"); | ||
87 | rtas_progress("Flashing \n", 0x0); | ||
88 | rtas_progress("Please Wait... ", 0x0); | ||
89 | printk(KERN_ALERT "FLASH: this will take several minutes. Do not power off!\n"); | ||
90 | status = rtas_call(update_token, 1, 1, NULL, rtas_block_list); | ||
91 | switch (status) { /* should only get "bad" status */ | ||
92 | case 0: | ||
93 | printk(KERN_ALERT "FLASH: success\n"); | ||
94 | break; | ||
95 | case -1: | ||
96 | printk(KERN_ALERT "FLASH: hardware error. Firmware may not be not flashed\n"); | ||
97 | break; | ||
98 | case -3: | ||
99 | printk(KERN_ALERT "FLASH: image is corrupt or not correct for this platform. Firmware not flashed\n"); | ||
100 | break; | ||
101 | case -4: | ||
102 | printk(KERN_ALERT "FLASH: flash failed when partially complete. System may not reboot\n"); | ||
103 | break; | ||
104 | default: | ||
105 | printk(KERN_ALERT "FLASH: unknown flash return code %d\n", status); | ||
106 | break; | ||
107 | } | ||
108 | } | ||
109 | |||
110 | void rtas_flash_bypass_warning(void) | ||
111 | { | ||
112 | printk(KERN_ALERT "FLASH: firmware flash requires a reboot\n"); | ||
113 | printk(KERN_ALERT "FLASH: the firmware image will NOT be flashed\n"); | ||
114 | } | ||
115 | |||
116 | |||
117 | void rtas_fw_restart(char *cmd) | ||
118 | { | ||
119 | if (rtas_firmware_flash_list.next) | ||
120 | rtas_flash_firmware(); | ||
121 | rtas_restart(cmd); | ||
122 | } | ||
123 | |||
124 | void rtas_fw_power_off(void) | ||
125 | { | ||
126 | if (rtas_firmware_flash_list.next) | ||
127 | rtas_flash_bypass_warning(); | ||
128 | rtas_power_off(); | ||
129 | } | ||
130 | |||
131 | void rtas_fw_halt(void) | ||
132 | { | ||
133 | if (rtas_firmware_flash_list.next) | ||
134 | rtas_flash_bypass_warning(); | ||
135 | rtas_halt(); | ||
136 | } | ||
137 | |||
138 | EXPORT_SYMBOL(rtas_firmware_flash_list); | ||
diff --git a/arch/powerpc/platforms/pseries/rtas-fw.h b/arch/powerpc/platforms/pseries/rtas-fw.h deleted file mode 100644 index e70fa69974a3..000000000000 --- a/arch/powerpc/platforms/pseries/rtas-fw.h +++ /dev/null | |||
@@ -1,3 +0,0 @@ | |||
1 | void rtas_fw_restart(char *cmd); | ||
2 | void rtas_fw_power_off(void); | ||
3 | void rtas_fw_halt(void); | ||
diff --git a/arch/ppc64/kernel/rtasd.c b/arch/powerpc/platforms/pseries/rtasd.c index e26b0420b6dd..e26b0420b6dd 100644 --- a/arch/ppc64/kernel/rtasd.c +++ b/arch/powerpc/platforms/pseries/rtasd.c | |||
diff --git a/arch/powerpc/platforms/pseries/setup.c b/arch/powerpc/platforms/pseries/setup.c index 10cb0f2d9b5b..65bee939eecc 100644 --- a/arch/powerpc/platforms/pseries/setup.c +++ b/arch/powerpc/platforms/pseries/setup.c | |||
@@ -58,7 +58,6 @@ | |||
58 | #include <asm/irq.h> | 58 | #include <asm/irq.h> |
59 | #include <asm/time.h> | 59 | #include <asm/time.h> |
60 | #include <asm/nvram.h> | 60 | #include <asm/nvram.h> |
61 | #include <asm/plpar_wrappers.h> | ||
62 | #include "xics.h" | 61 | #include "xics.h" |
63 | #include <asm/firmware.h> | 62 | #include <asm/firmware.h> |
64 | #include <asm/pmc.h> | 63 | #include <asm/pmc.h> |
@@ -67,7 +66,7 @@ | |||
67 | #include <asm/i8259.h> | 66 | #include <asm/i8259.h> |
68 | #include <asm/udbg.h> | 67 | #include <asm/udbg.h> |
69 | 68 | ||
70 | #include "rtas-fw.h" | 69 | #include "plpar_wrappers.h" |
71 | 70 | ||
72 | #ifdef DEBUG | 71 | #ifdef DEBUG |
73 | #define DBG(fmt...) udbg_printf(fmt) | 72 | #define DBG(fmt...) udbg_printf(fmt) |
@@ -352,6 +351,16 @@ static void pSeries_mach_cpu_die(void) | |||
352 | for(;;); | 351 | for(;;); |
353 | } | 352 | } |
354 | 353 | ||
354 | static int pseries_set_dabr(unsigned long dabr) | ||
355 | { | ||
356 | if (firmware_has_feature(FW_FEATURE_XDABR)) { | ||
357 | /* We want to catch accesses from kernel and userspace */ | ||
358 | return plpar_set_xdabr(dabr, H_DABRX_KERNEL | H_DABRX_USER); | ||
359 | } | ||
360 | |||
361 | return plpar_set_dabr(dabr); | ||
362 | } | ||
363 | |||
355 | 364 | ||
356 | /* | 365 | /* |
357 | * Early initialization. Relocation is on but do not reference unbolted pages | 366 | * Early initialization. Relocation is on but do not reference unbolted pages |
@@ -387,6 +396,8 @@ static void __init pSeries_init_early(void) | |||
387 | DBG("Hello World !\n"); | 396 | DBG("Hello World !\n"); |
388 | } | 397 | } |
389 | 398 | ||
399 | if (firmware_has_feature(FW_FEATURE_XDABR | FW_FEATURE_DABR)) | ||
400 | ppc_md.set_dabr = pseries_set_dabr; | ||
390 | 401 | ||
391 | iommu_init_early_pSeries(); | 402 | iommu_init_early_pSeries(); |
392 | 403 | ||
@@ -591,9 +602,9 @@ struct machdep_calls __initdata pSeries_md = { | |||
591 | .pcibios_fixup = pSeries_final_fixup, | 602 | .pcibios_fixup = pSeries_final_fixup, |
592 | .pci_probe_mode = pSeries_pci_probe_mode, | 603 | .pci_probe_mode = pSeries_pci_probe_mode, |
593 | .irq_bus_setup = pSeries_irq_bus_setup, | 604 | .irq_bus_setup = pSeries_irq_bus_setup, |
594 | .restart = rtas_fw_restart, | 605 | .restart = rtas_restart, |
595 | .power_off = rtas_fw_power_off, | 606 | .power_off = rtas_power_off, |
596 | .halt = rtas_fw_halt, | 607 | .halt = rtas_halt, |
597 | .panic = rtas_os_term, | 608 | .panic = rtas_os_term, |
598 | .cpu_die = pSeries_mach_cpu_die, | 609 | .cpu_die = pSeries_mach_cpu_die, |
599 | .get_boot_time = rtas_get_boot_time, | 610 | .get_boot_time = rtas_get_boot_time, |
diff --git a/arch/powerpc/platforms/pseries/smp.c b/arch/powerpc/platforms/pseries/smp.c index 9c9458ddfc25..7a243e8ccd7e 100644 --- a/arch/powerpc/platforms/pseries/smp.c +++ b/arch/powerpc/platforms/pseries/smp.c | |||
@@ -44,10 +44,11 @@ | |||
44 | #include <asm/firmware.h> | 44 | #include <asm/firmware.h> |
45 | #include <asm/system.h> | 45 | #include <asm/system.h> |
46 | #include <asm/rtas.h> | 46 | #include <asm/rtas.h> |
47 | #include <asm/plpar_wrappers.h> | ||
48 | #include <asm/pSeries_reconfig.h> | 47 | #include <asm/pSeries_reconfig.h> |
49 | #include <asm/mpic.h> | 48 | #include <asm/mpic.h> |
50 | 49 | ||
50 | #include "plpar_wrappers.h" | ||
51 | |||
51 | #ifdef DEBUG | 52 | #ifdef DEBUG |
52 | #define DBG(fmt...) udbg_printf(fmt) | 53 | #define DBG(fmt...) udbg_printf(fmt) |
53 | #else | 54 | #else |
diff --git a/arch/powerpc/sysdev/Makefile b/arch/powerpc/sysdev/Makefile index 8acd21dee05d..6b7efcfc352a 100644 --- a/arch/powerpc/sysdev/Makefile +++ b/arch/powerpc/sysdev/Makefile | |||
@@ -5,3 +5,4 @@ obj-$(CONFIG_PPC_MPC106) += grackle.o | |||
5 | obj-$(CONFIG_BOOKE) += dcr.o | 5 | obj-$(CONFIG_BOOKE) += dcr.o |
6 | obj-$(CONFIG_40x) += dcr.o | 6 | obj-$(CONFIG_40x) += dcr.o |
7 | obj-$(CONFIG_U3_DART) += u3_iommu.o | 7 | obj-$(CONFIG_U3_DART) += u3_iommu.o |
8 | obj-$(CONFIG_MMIO_NVRAM) += mmio_nvram.o | ||
diff --git a/arch/powerpc/sysdev/dart.h b/arch/powerpc/sysdev/dart.h new file mode 100644 index 000000000000..ea8f0d9eed8a --- /dev/null +++ b/arch/powerpc/sysdev/dart.h | |||
@@ -0,0 +1,59 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2004 Olof Johansson <olof@austin.ibm.com>, IBM Corporation | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License as published by | ||
6 | * the Free Software Foundation; either version 2 of the License, or | ||
7 | * (at your option) any later version. | ||
8 | * | ||
9 | * This program is distributed in the hope that it will be useful, | ||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | * GNU General Public License for more details. | ||
13 | * | ||
14 | * You should have received a copy of the GNU General Public License | ||
15 | * along with this program; if not, write to the Free Software | ||
16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
17 | */ | ||
18 | |||
19 | #ifndef _POWERPC_SYSDEV_DART_H | ||
20 | #define _POWERPC_SYSDEV_DART_H | ||
21 | |||
22 | |||
23 | /* physical base of DART registers */ | ||
24 | #define DART_BASE 0xf8033000UL | ||
25 | |||
26 | /* Offset from base to control register */ | ||
27 | #define DARTCNTL 0 | ||
28 | /* Offset from base to exception register */ | ||
29 | #define DARTEXCP 0x10 | ||
30 | /* Offset from base to TLB tag registers */ | ||
31 | #define DARTTAG 0x1000 | ||
32 | |||
33 | |||
34 | /* Control Register fields */ | ||
35 | |||
36 | /* base address of table (pfn) */ | ||
37 | #define DARTCNTL_BASE_MASK 0xfffff | ||
38 | #define DARTCNTL_BASE_SHIFT 12 | ||
39 | |||
40 | #define DARTCNTL_FLUSHTLB 0x400 | ||
41 | #define DARTCNTL_ENABLE 0x200 | ||
42 | |||
43 | /* size of table in pages */ | ||
44 | #define DARTCNTL_SIZE_MASK 0x1ff | ||
45 | #define DARTCNTL_SIZE_SHIFT 0 | ||
46 | |||
47 | |||
48 | /* DART table fields */ | ||
49 | |||
50 | #define DARTMAP_VALID 0x80000000 | ||
51 | #define DARTMAP_RPNMASK 0x00ffffff | ||
52 | |||
53 | |||
54 | #define DART_PAGE_SHIFT 12 | ||
55 | #define DART_PAGE_SIZE (1 << DART_PAGE_SHIFT) | ||
56 | #define DART_PAGE_FACTOR (PAGE_SHIFT - DART_PAGE_SHIFT) | ||
57 | |||
58 | |||
59 | #endif /* _POWERPC_SYSDEV_DART_H */ | ||
diff --git a/arch/ppc64/kernel/bpa_nvram.c b/arch/powerpc/sysdev/mmio_nvram.c index 06a119cfceb5..74e0d31a3559 100644 --- a/arch/ppc64/kernel/bpa_nvram.c +++ b/arch/powerpc/sysdev/mmio_nvram.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * NVRAM for CPBW | 2 | * memory mapped NVRAM |
3 | * | 3 | * |
4 | * (C) Copyright IBM Corp. 2005 | 4 | * (C) Copyright IBM Corp. 2005 |
5 | * | 5 | * |
@@ -30,54 +30,54 @@ | |||
30 | #include <asm/nvram.h> | 30 | #include <asm/nvram.h> |
31 | #include <asm/prom.h> | 31 | #include <asm/prom.h> |
32 | 32 | ||
33 | static void __iomem *bpa_nvram_start; | 33 | static void __iomem *mmio_nvram_start; |
34 | static long bpa_nvram_len; | 34 | static long mmio_nvram_len; |
35 | static spinlock_t bpa_nvram_lock = SPIN_LOCK_UNLOCKED; | 35 | static spinlock_t mmio_nvram_lock = SPIN_LOCK_UNLOCKED; |
36 | 36 | ||
37 | static ssize_t bpa_nvram_read(char *buf, size_t count, loff_t *index) | 37 | static ssize_t mmio_nvram_read(char *buf, size_t count, loff_t *index) |
38 | { | 38 | { |
39 | unsigned long flags; | 39 | unsigned long flags; |
40 | 40 | ||
41 | if (*index >= bpa_nvram_len) | 41 | if (*index >= mmio_nvram_len) |
42 | return 0; | 42 | return 0; |
43 | if (*index + count > bpa_nvram_len) | 43 | if (*index + count > mmio_nvram_len) |
44 | count = bpa_nvram_len - *index; | 44 | count = mmio_nvram_len - *index; |
45 | 45 | ||
46 | spin_lock_irqsave(&bpa_nvram_lock, flags); | 46 | spin_lock_irqsave(&mmio_nvram_lock, flags); |
47 | 47 | ||
48 | memcpy_fromio(buf, bpa_nvram_start + *index, count); | 48 | memcpy_fromio(buf, mmio_nvram_start + *index, count); |
49 | 49 | ||
50 | spin_unlock_irqrestore(&bpa_nvram_lock, flags); | 50 | spin_unlock_irqrestore(&mmio_nvram_lock, flags); |
51 | 51 | ||
52 | *index += count; | 52 | *index += count; |
53 | return count; | 53 | return count; |
54 | } | 54 | } |
55 | 55 | ||
56 | static ssize_t bpa_nvram_write(char *buf, size_t count, loff_t *index) | 56 | static ssize_t mmio_nvram_write(char *buf, size_t count, loff_t *index) |
57 | { | 57 | { |
58 | unsigned long flags; | 58 | unsigned long flags; |
59 | 59 | ||
60 | if (*index >= bpa_nvram_len) | 60 | if (*index >= mmio_nvram_len) |
61 | return 0; | 61 | return 0; |
62 | if (*index + count > bpa_nvram_len) | 62 | if (*index + count > mmio_nvram_len) |
63 | count = bpa_nvram_len - *index; | 63 | count = mmio_nvram_len - *index; |
64 | 64 | ||
65 | spin_lock_irqsave(&bpa_nvram_lock, flags); | 65 | spin_lock_irqsave(&mmio_nvram_lock, flags); |
66 | 66 | ||
67 | memcpy_toio(bpa_nvram_start + *index, buf, count); | 67 | memcpy_toio(mmio_nvram_start + *index, buf, count); |
68 | 68 | ||
69 | spin_unlock_irqrestore(&bpa_nvram_lock, flags); | 69 | spin_unlock_irqrestore(&mmio_nvram_lock, flags); |
70 | 70 | ||
71 | *index += count; | 71 | *index += count; |
72 | return count; | 72 | return count; |
73 | } | 73 | } |
74 | 74 | ||
75 | static ssize_t bpa_nvram_get_size(void) | 75 | static ssize_t mmio_nvram_get_size(void) |
76 | { | 76 | { |
77 | return bpa_nvram_len; | 77 | return mmio_nvram_len; |
78 | } | 78 | } |
79 | 79 | ||
80 | int __init bpa_nvram_init(void) | 80 | int __init mmio_nvram_init(void) |
81 | { | 81 | { |
82 | struct device_node *nvram_node; | 82 | struct device_node *nvram_node; |
83 | unsigned long *buffer; | 83 | unsigned long *buffer; |
@@ -97,20 +97,20 @@ int __init bpa_nvram_init(void) | |||
97 | 97 | ||
98 | ret = -ENODEV; | 98 | ret = -ENODEV; |
99 | nvram_addr = buffer[0]; | 99 | nvram_addr = buffer[0]; |
100 | bpa_nvram_len = buffer[1]; | 100 | mmio_nvram_len = buffer[1]; |
101 | if ( (!bpa_nvram_len) || (!nvram_addr) ) | 101 | if ( (!mmio_nvram_len) || (!nvram_addr) ) |
102 | goto out; | 102 | goto out; |
103 | 103 | ||
104 | bpa_nvram_start = ioremap(nvram_addr, bpa_nvram_len); | 104 | mmio_nvram_start = ioremap(nvram_addr, mmio_nvram_len); |
105 | if (!bpa_nvram_start) | 105 | if (!mmio_nvram_start) |
106 | goto out; | 106 | goto out; |
107 | 107 | ||
108 | printk(KERN_INFO "BPA NVRAM, %luk mapped to %p\n", | 108 | printk(KERN_INFO "mmio NVRAM, %luk mapped to %p\n", |
109 | bpa_nvram_len >> 10, bpa_nvram_start); | 109 | mmio_nvram_len >> 10, mmio_nvram_start); |
110 | 110 | ||
111 | ppc_md.nvram_read = bpa_nvram_read; | 111 | ppc_md.nvram_read = mmio_nvram_read; |
112 | ppc_md.nvram_write = bpa_nvram_write; | 112 | ppc_md.nvram_write = mmio_nvram_write; |
113 | ppc_md.nvram_size = bpa_nvram_get_size; | 113 | ppc_md.nvram_size = mmio_nvram_get_size; |
114 | 114 | ||
115 | out: | 115 | out: |
116 | of_node_put(nvram_node); | 116 | of_node_put(nvram_node); |
diff --git a/arch/powerpc/sysdev/u3_iommu.c b/arch/powerpc/sysdev/u3_iommu.c index fba871a1bda5..607722178c1a 100644 --- a/arch/powerpc/sysdev/u3_iommu.c +++ b/arch/powerpc/sysdev/u3_iommu.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * arch/ppc64/kernel/u3_iommu.c | 2 | * arch/powerpc/sysdev/u3_iommu.c |
3 | * | 3 | * |
4 | * Copyright (C) 2004 Olof Johansson <olof@austin.ibm.com>, IBM Corporation | 4 | * Copyright (C) 2004 Olof Johansson <olof@austin.ibm.com>, IBM Corporation |
5 | * | 5 | * |
@@ -44,9 +44,10 @@ | |||
44 | #include <asm/abs_addr.h> | 44 | #include <asm/abs_addr.h> |
45 | #include <asm/cacheflush.h> | 45 | #include <asm/cacheflush.h> |
46 | #include <asm/lmb.h> | 46 | #include <asm/lmb.h> |
47 | #include <asm/dart.h> | ||
48 | #include <asm/ppc-pci.h> | 47 | #include <asm/ppc-pci.h> |
49 | 48 | ||
49 | #include "dart.h" | ||
50 | |||
50 | extern int iommu_force_on; | 51 | extern int iommu_force_on; |
51 | 52 | ||
52 | /* Physical base address and size of the DART table */ | 53 | /* Physical base address and size of the DART table */ |
diff --git a/arch/ppc/8xx_io/commproc.c b/arch/ppc/8xx_io/commproc.c index b42789f8eb76..579cd40258b9 100644 --- a/arch/ppc/8xx_io/commproc.c +++ b/arch/ppc/8xx_io/commproc.c | |||
@@ -388,9 +388,8 @@ void m8xx_cpm_dpinit(void) | |||
388 | 388 | ||
389 | /* | 389 | /* |
390 | * Allocate the requested size worth of DP memory. | 390 | * Allocate the requested size worth of DP memory. |
391 | * This function used to return an index into the DPRAM area. | 391 | * This function returns an offset into the DPRAM area. |
392 | * Now it returns the actuall physical address of that area. | 392 | * Use cpm_dpram_addr() to get the virtual address of the area. |
393 | * use m8xx_cpm_dpram_offset() to get the index | ||
394 | */ | 393 | */ |
395 | uint cpm_dpalloc(uint size, uint align) | 394 | uint cpm_dpalloc(uint size, uint align) |
396 | { | 395 | { |
diff --git a/arch/ppc/Makefile b/arch/ppc/Makefile index 94d5716fa7c3..e719a4933af1 100644 --- a/arch/ppc/Makefile +++ b/arch/ppc/Makefile | |||
@@ -66,7 +66,8 @@ head-$(CONFIG_PPC_FPU) += arch/powerpc/kernel/fpu.o | |||
66 | core-y += arch/ppc/kernel/ arch/powerpc/kernel/ \ | 66 | core-y += arch/ppc/kernel/ arch/powerpc/kernel/ \ |
67 | arch/ppc/platforms/ \ | 67 | arch/ppc/platforms/ \ |
68 | arch/ppc/mm/ arch/ppc/lib/ \ | 68 | arch/ppc/mm/ arch/ppc/lib/ \ |
69 | arch/ppc/syslib/ arch/powerpc/sysdev/ | 69 | arch/ppc/syslib/ arch/powerpc/sysdev/ \ |
70 | arch/powerpc/lib/ | ||
70 | core-$(CONFIG_4xx) += arch/ppc/platforms/4xx/ | 71 | core-$(CONFIG_4xx) += arch/ppc/platforms/4xx/ |
71 | core-$(CONFIG_83xx) += arch/ppc/platforms/83xx/ | 72 | core-$(CONFIG_83xx) += arch/ppc/platforms/83xx/ |
72 | core-$(CONFIG_85xx) += arch/ppc/platforms/85xx/ | 73 | core-$(CONFIG_85xx) += arch/ppc/platforms/85xx/ |
diff --git a/arch/ppc/kernel/Makefile b/arch/ppc/kernel/Makefile index b35346df1e37..c610ca933a25 100644 --- a/arch/ppc/kernel/Makefile +++ b/arch/ppc/kernel/Makefile | |||
@@ -45,7 +45,6 @@ obj-$(CONFIG_MODULES) += module.o | |||
45 | obj-$(CONFIG_NOT_COHERENT_CACHE) += dma-mapping.o | 45 | obj-$(CONFIG_NOT_COHERENT_CACHE) += dma-mapping.o |
46 | obj-$(CONFIG_PCI) += pci.o | 46 | obj-$(CONFIG_PCI) += pci.o |
47 | obj-$(CONFIG_KGDB) += ppc-stub.o | 47 | obj-$(CONFIG_KGDB) += ppc-stub.o |
48 | obj-$(CONFIG_SMP) += smp.o smp-tbsync.o | ||
49 | obj-$(CONFIG_TAU) += temp.o | 48 | obj-$(CONFIG_TAU) += temp.o |
50 | ifndef CONFIG_E200 | 49 | ifndef CONFIG_E200 |
51 | obj-$(CONFIG_FSL_BOOKE) += perfmon_fsl_booke.o | 50 | obj-$(CONFIG_FSL_BOOKE) += perfmon_fsl_booke.o |
diff --git a/arch/ppc/kernel/bitops.c b/arch/ppc/kernel/bitops.c deleted file mode 100644 index 7f53d193968b..000000000000 --- a/arch/ppc/kernel/bitops.c +++ /dev/null | |||
@@ -1,126 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (C) 1996 Paul Mackerras. | ||
3 | */ | ||
4 | |||
5 | #include <linux/kernel.h> | ||
6 | #include <linux/bitops.h> | ||
7 | |||
8 | /* | ||
9 | * If the bitops are not inlined in bitops.h, they are defined here. | ||
10 | * -- paulus | ||
11 | */ | ||
12 | #if !__INLINE_BITOPS | ||
13 | void set_bit(int nr, volatile void * addr) | ||
14 | { | ||
15 | unsigned long old; | ||
16 | unsigned long mask = 1 << (nr & 0x1f); | ||
17 | unsigned long *p = ((unsigned long *)addr) + (nr >> 5); | ||
18 | |||
19 | __asm__ __volatile__(SMP_WMB "\n\ | ||
20 | 1: lwarx %0,0,%3 \n\ | ||
21 | or %0,%0,%2 \n" | ||
22 | PPC405_ERR77(0,%3) | ||
23 | " stwcx. %0,0,%3 \n\ | ||
24 | bne 1b" | ||
25 | SMP_MB | ||
26 | : "=&r" (old), "=m" (*p) | ||
27 | : "r" (mask), "r" (p), "m" (*p) | ||
28 | : "cc" ); | ||
29 | } | ||
30 | |||
31 | void clear_bit(int nr, volatile void *addr) | ||
32 | { | ||
33 | unsigned long old; | ||
34 | unsigned long mask = 1 << (nr & 0x1f); | ||
35 | unsigned long *p = ((unsigned long *)addr) + (nr >> 5); | ||
36 | |||
37 | __asm__ __volatile__(SMP_WMB "\n\ | ||
38 | 1: lwarx %0,0,%3 \n\ | ||
39 | andc %0,%0,%2 \n" | ||
40 | PPC405_ERR77(0,%3) | ||
41 | " stwcx. %0,0,%3 \n\ | ||
42 | bne 1b" | ||
43 | SMP_MB | ||
44 | : "=&r" (old), "=m" (*p) | ||
45 | : "r" (mask), "r" (p), "m" (*p) | ||
46 | : "cc"); | ||
47 | } | ||
48 | |||
49 | void change_bit(int nr, volatile void *addr) | ||
50 | { | ||
51 | unsigned long old; | ||
52 | unsigned long mask = 1 << (nr & 0x1f); | ||
53 | unsigned long *p = ((unsigned long *)addr) + (nr >> 5); | ||
54 | |||
55 | __asm__ __volatile__(SMP_WMB "\n\ | ||
56 | 1: lwarx %0,0,%3 \n\ | ||
57 | xor %0,%0,%2 \n" | ||
58 | PPC405_ERR77(0,%3) | ||
59 | " stwcx. %0,0,%3 \n\ | ||
60 | bne 1b" | ||
61 | SMP_MB | ||
62 | : "=&r" (old), "=m" (*p) | ||
63 | : "r" (mask), "r" (p), "m" (*p) | ||
64 | : "cc"); | ||
65 | } | ||
66 | |||
67 | int test_and_set_bit(int nr, volatile void *addr) | ||
68 | { | ||
69 | unsigned int old, t; | ||
70 | unsigned int mask = 1 << (nr & 0x1f); | ||
71 | volatile unsigned int *p = ((volatile unsigned int *)addr) + (nr >> 5); | ||
72 | |||
73 | __asm__ __volatile__(SMP_WMB "\n\ | ||
74 | 1: lwarx %0,0,%4 \n\ | ||
75 | or %1,%0,%3 \n" | ||
76 | PPC405_ERR77(0,%4) | ||
77 | " stwcx. %1,0,%4 \n\ | ||
78 | bne 1b" | ||
79 | SMP_MB | ||
80 | : "=&r" (old), "=&r" (t), "=m" (*p) | ||
81 | : "r" (mask), "r" (p), "m" (*p) | ||
82 | : "cc"); | ||
83 | |||
84 | return (old & mask) != 0; | ||
85 | } | ||
86 | |||
87 | int test_and_clear_bit(int nr, volatile void *addr) | ||
88 | { | ||
89 | unsigned int old, t; | ||
90 | unsigned int mask = 1 << (nr & 0x1f); | ||
91 | volatile unsigned int *p = ((volatile unsigned int *)addr) + (nr >> 5); | ||
92 | |||
93 | __asm__ __volatile__(SMP_WMB "\n\ | ||
94 | 1: lwarx %0,0,%4 \n\ | ||
95 | andc %1,%0,%3 \n" | ||
96 | PPC405_ERR77(0,%4) | ||
97 | " stwcx. %1,0,%4 \n\ | ||
98 | bne 1b" | ||
99 | SMP_MB | ||
100 | : "=&r" (old), "=&r" (t), "=m" (*p) | ||
101 | : "r" (mask), "r" (p), "m" (*p) | ||
102 | : "cc"); | ||
103 | |||
104 | return (old & mask) != 0; | ||
105 | } | ||
106 | |||
107 | int test_and_change_bit(int nr, volatile void *addr) | ||
108 | { | ||
109 | unsigned int old, t; | ||
110 | unsigned int mask = 1 << (nr & 0x1f); | ||
111 | volatile unsigned int *p = ((volatile unsigned int *)addr) + (nr >> 5); | ||
112 | |||
113 | __asm__ __volatile__(SMP_WMB "\n\ | ||
114 | 1: lwarx %0,0,%4 \n\ | ||
115 | xor %1,%0,%3 \n" | ||
116 | PPC405_ERR77(0,%4) | ||
117 | " stwcx. %1,0,%4 \n\ | ||
118 | bne 1b" | ||
119 | SMP_MB | ||
120 | : "=&r" (old), "=&r" (t), "=m" (*p) | ||
121 | : "r" (mask), "r" (p), "m" (*p) | ||
122 | : "cc"); | ||
123 | |||
124 | return (old & mask) != 0; | ||
125 | } | ||
126 | #endif /* !__INLINE_BITOPS */ | ||
diff --git a/arch/ppc/kernel/irq.c b/arch/ppc/kernel/irq.c index 772e428aaa59..fbb2b9f8922c 100644 --- a/arch/ppc/kernel/irq.c +++ b/arch/ppc/kernel/irq.c | |||
@@ -126,7 +126,7 @@ skip: | |||
126 | seq_puts(p, " PowerPC Thermal Assist (cpu temp)\n"); | 126 | seq_puts(p, " PowerPC Thermal Assist (cpu temp)\n"); |
127 | } | 127 | } |
128 | #endif | 128 | #endif |
129 | #ifdef CONFIG_SMP | 129 | #if defined(CONFIG_SMP) && !defined(CONFIG_PPC_MERGE) |
130 | /* should this be per processor send/receive? */ | 130 | /* should this be per processor send/receive? */ |
131 | seq_printf(p, "IPI (recv/sent): %10u/%u\n", | 131 | seq_printf(p, "IPI (recv/sent): %10u/%u\n", |
132 | atomic_read(&ipi_recv), atomic_read(&ipi_sent)); | 132 | atomic_read(&ipi_recv), atomic_read(&ipi_sent)); |
diff --git a/arch/ppc/kernel/machine_kexec.c b/arch/ppc/kernel/machine_kexec.c index a72787747df7..a882b0dbe8de 100644 --- a/arch/ppc/kernel/machine_kexec.c +++ b/arch/ppc/kernel/machine_kexec.c | |||
@@ -32,7 +32,7 @@ const extern unsigned int relocate_new_kernel_size; | |||
32 | * Provide a dummy crash_notes definition while crash dump arrives to ppc. | 32 | * Provide a dummy crash_notes definition while crash dump arrives to ppc. |
33 | * This prevents breakage of crash_notes attribute in kernel/ksysfs.c. | 33 | * This prevents breakage of crash_notes attribute in kernel/ksysfs.c. |
34 | */ | 34 | */ |
35 | void *crash_notes = NULL; | 35 | note_buf_t crash_notes[NR_CPUS]; |
36 | 36 | ||
37 | void machine_shutdown(void) | 37 | void machine_shutdown(void) |
38 | { | 38 | { |
diff --git a/arch/ppc/kernel/ppc_ksyms.c b/arch/ppc/kernel/ppc_ksyms.c index ae24196d78f6..e0ca61b37f4f 100644 --- a/arch/ppc/kernel/ppc_ksyms.c +++ b/arch/ppc/kernel/ppc_ksyms.c | |||
@@ -131,6 +131,11 @@ EXPORT_SYMBOL(outw); | |||
131 | EXPORT_SYMBOL(outl); | 131 | EXPORT_SYMBOL(outl); |
132 | EXPORT_SYMBOL(outsl);*/ | 132 | EXPORT_SYMBOL(outsl);*/ |
133 | 133 | ||
134 | EXPORT_SYMBOL(__ide_mm_insl); | ||
135 | EXPORT_SYMBOL(__ide_mm_outsw); | ||
136 | EXPORT_SYMBOL(__ide_mm_insw); | ||
137 | EXPORT_SYMBOL(__ide_mm_outsl); | ||
138 | |||
134 | EXPORT_SYMBOL(_insb); | 139 | EXPORT_SYMBOL(_insb); |
135 | EXPORT_SYMBOL(_outsb); | 140 | EXPORT_SYMBOL(_outsb); |
136 | EXPORT_SYMBOL(_insw); | 141 | EXPORT_SYMBOL(_insw); |
diff --git a/arch/ppc/kernel/traps.c b/arch/ppc/kernel/traps.c index f265b81e7008..16adde6b429d 100644 --- a/arch/ppc/kernel/traps.c +++ b/arch/ppc/kernel/traps.c | |||
@@ -606,22 +606,22 @@ int check_bug_trap(struct pt_regs *regs) | |||
606 | if (bug->line & BUG_WARNING_TRAP) { | 606 | if (bug->line & BUG_WARNING_TRAP) { |
607 | /* this is a WARN_ON rather than BUG/BUG_ON */ | 607 | /* this is a WARN_ON rather than BUG/BUG_ON */ |
608 | #ifdef CONFIG_XMON | 608 | #ifdef CONFIG_XMON |
609 | xmon_printf(KERN_ERR "Badness in %s at %s:%d\n", | 609 | xmon_printf(KERN_ERR "Badness in %s at %s:%ld\n", |
610 | bug->function, bug->file, | 610 | bug->function, bug->file, |
611 | bug->line & ~BUG_WARNING_TRAP); | 611 | bug->line & ~BUG_WARNING_TRAP); |
612 | #endif /* CONFIG_XMON */ | 612 | #endif /* CONFIG_XMON */ |
613 | printk(KERN_ERR "Badness in %s at %s:%d\n", | 613 | printk(KERN_ERR "Badness in %s at %s:%ld\n", |
614 | bug->function, bug->file, | 614 | bug->function, bug->file, |
615 | bug->line & ~BUG_WARNING_TRAP); | 615 | bug->line & ~BUG_WARNING_TRAP); |
616 | dump_stack(); | 616 | dump_stack(); |
617 | return 1; | 617 | return 1; |
618 | } | 618 | } |
619 | #ifdef CONFIG_XMON | 619 | #ifdef CONFIG_XMON |
620 | xmon_printf(KERN_CRIT "kernel BUG in %s at %s:%d!\n", | 620 | xmon_printf(KERN_CRIT "kernel BUG in %s at %s:%ld!\n", |
621 | bug->function, bug->file, bug->line); | 621 | bug->function, bug->file, bug->line); |
622 | xmon(regs); | 622 | xmon(regs); |
623 | #endif /* CONFIG_XMON */ | 623 | #endif /* CONFIG_XMON */ |
624 | printk(KERN_CRIT "kernel BUG in %s at %s:%d!\n", | 624 | printk(KERN_CRIT "kernel BUG in %s at %s:%ld!\n", |
625 | bug->function, bug->file, bug->line); | 625 | bug->function, bug->file, bug->line); |
626 | 626 | ||
627 | return 0; | 627 | return 0; |
diff --git a/arch/ppc/syslib/m8xx_setup.c b/arch/ppc/syslib/m8xx_setup.c index 97ffbc70574f..1cc3abe6fa43 100644 --- a/arch/ppc/syslib/m8xx_setup.c +++ b/arch/ppc/syslib/m8xx_setup.c | |||
@@ -45,6 +45,7 @@ | |||
45 | #include <asm/bootinfo.h> | 45 | #include <asm/bootinfo.h> |
46 | #include <asm/time.h> | 46 | #include <asm/time.h> |
47 | #include <asm/xmon.h> | 47 | #include <asm/xmon.h> |
48 | #include <asm/ppc_sys.h> | ||
48 | 49 | ||
49 | #include "ppc8xx_pic.h" | 50 | #include "ppc8xx_pic.h" |
50 | 51 | ||
diff --git a/arch/ppc64/Kconfig b/arch/ppc64/Kconfig index 42677cc96508..b987164fca4c 100644 --- a/arch/ppc64/Kconfig +++ b/arch/ppc64/Kconfig | |||
@@ -89,12 +89,14 @@ config PPC_PMAC | |||
89 | bool " Apple G5 based machines" | 89 | bool " Apple G5 based machines" |
90 | default y | 90 | default y |
91 | select U3_DART | 91 | select U3_DART |
92 | select GENERIC_TBSYNC | ||
92 | 93 | ||
93 | config PPC_MAPLE | 94 | config PPC_MAPLE |
94 | depends on PPC_MULTIPLATFORM | 95 | depends on PPC_MULTIPLATFORM |
95 | bool " Maple 970FX Evaluation Board" | 96 | bool " Maple 970FX Evaluation Board" |
96 | select U3_DART | 97 | select U3_DART |
97 | select MPIC_BROKEN_U3 | 98 | select MPIC_BROKEN_U3 |
99 | select GENERIC_TBSYNC | ||
98 | default n | 100 | default n |
99 | help | 101 | help |
100 | This option enables support for the Maple 970FX Evaluation Board. | 102 | This option enables support for the Maple 970FX Evaluation Board. |
@@ -182,6 +184,9 @@ config MPIC_BROKEN_U3 | |||
182 | depends on PPC_MAPLE | 184 | depends on PPC_MAPLE |
183 | default y | 185 | default y |
184 | 186 | ||
187 | config GENERIC_TBSYNC | ||
188 | def_bool n | ||
189 | |||
185 | config PPC_PMAC64 | 190 | config PPC_PMAC64 |
186 | bool | 191 | bool |
187 | depends on PPC_PMAC | 192 | depends on PPC_PMAC |
diff --git a/arch/ppc64/Makefile b/arch/ppc64/Makefile index fdbd6f44adc0..a55a82d145d4 100644 --- a/arch/ppc64/Makefile +++ b/arch/ppc64/Makefile | |||
@@ -86,7 +86,6 @@ head-y := arch/ppc64/kernel/head.o | |||
86 | head-y += arch/powerpc/kernel/fpu.o | 86 | head-y += arch/powerpc/kernel/fpu.o |
87 | head-y += arch/powerpc/kernel/entry_64.o | 87 | head-y += arch/powerpc/kernel/entry_64.o |
88 | 88 | ||
89 | libs-y += arch/ppc64/lib/ | ||
90 | core-y += arch/ppc64/kernel/ arch/powerpc/kernel/ | 89 | core-y += arch/ppc64/kernel/ arch/powerpc/kernel/ |
91 | core-y += arch/powerpc/mm/ | 90 | core-y += arch/powerpc/mm/ |
92 | core-y += arch/powerpc/sysdev/ | 91 | core-y += arch/powerpc/sysdev/ |
diff --git a/arch/ppc64/kernel/Makefile b/arch/ppc64/kernel/Makefile index 327c08ce4291..c441aebe7648 100644 --- a/arch/ppc64/kernel/Makefile +++ b/arch/ppc64/kernel/Makefile | |||
@@ -12,8 +12,7 @@ obj-y := misc.o prom.o | |||
12 | endif | 12 | endif |
13 | 13 | ||
14 | obj-y += irq.o idle.o dma.o \ | 14 | obj-y += irq.o idle.o dma.o \ |
15 | signal.o \ | 15 | align.o pacaData.o \ |
16 | align.o bitops.o pacaData.o \ | ||
17 | udbg.o ioctl32.o \ | 16 | udbg.o ioctl32.o \ |
18 | rtc.o \ | 17 | rtc.o \ |
19 | cpu_setup_power4.o \ | 18 | cpu_setup_power4.o \ |
@@ -29,22 +28,16 @@ ifneq ($(CONFIG_PPC_MERGE),y) | |||
29 | obj-$(CONFIG_PPC_MULTIPLATFORM) += prom_init.o | 28 | obj-$(CONFIG_PPC_MULTIPLATFORM) += prom_init.o |
30 | endif | 29 | endif |
31 | 30 | ||
32 | obj-$(CONFIG_PPC_PSERIES) += rtasd.o udbg_16550.o | 31 | obj-$(CONFIG_PPC_PSERIES) += udbg_16550.o |
33 | |||
34 | obj-$(CONFIG_PPC_BPA) += bpa_setup.o bpa_iommu.o bpa_nvram.o \ | ||
35 | bpa_iic.o spider-pic.o | ||
36 | 32 | ||
37 | obj-$(CONFIG_KEXEC) += machine_kexec.o | 33 | obj-$(CONFIG_KEXEC) += machine_kexec.o |
38 | obj-$(CONFIG_EEH) += eeh.o | 34 | obj-$(CONFIG_EEH) += eeh.o |
39 | obj-$(CONFIG_PROC_FS) += proc_ppc64.o | 35 | obj-$(CONFIG_PROC_FS) += proc_ppc64.o |
40 | obj-$(CONFIG_RTAS_FLASH) += rtas_flash.o | ||
41 | obj-$(CONFIG_SMP) += smp.o | ||
42 | obj-$(CONFIG_MODULES) += module.o | 36 | obj-$(CONFIG_MODULES) += module.o |
43 | ifneq ($(CONFIG_PPC_MERGE),y) | 37 | ifneq ($(CONFIG_PPC_MERGE),y) |
44 | obj-$(CONFIG_MODULES) += ppc_ksyms.o | 38 | obj-$(CONFIG_MODULES) += ppc_ksyms.o |
45 | endif | 39 | endif |
46 | obj-$(CONFIG_PPC_RTAS) += rtas_pci.o | 40 | obj-$(CONFIG_PPC_RTAS) += rtas_pci.o |
47 | obj-$(CONFIG_RTAS_PROC) += rtas-proc.o | ||
48 | obj-$(CONFIG_SCANLOG) += scanlog.o | 41 | obj-$(CONFIG_SCANLOG) += scanlog.o |
49 | obj-$(CONFIG_LPARCFG) += lparcfg.o | 42 | obj-$(CONFIG_LPARCFG) += lparcfg.o |
50 | obj-$(CONFIG_HVC_CONSOLE) += hvconsole.o | 43 | obj-$(CONFIG_HVC_CONSOLE) += hvconsole.o |
@@ -57,11 +50,6 @@ obj-$(CONFIG_PPC_PMAC) += udbg_scc.o | |||
57 | 50 | ||
58 | obj-$(CONFIG_PPC_MAPLE) += udbg_16550.o | 51 | obj-$(CONFIG_PPC_MAPLE) += udbg_16550.o |
59 | 52 | ||
60 | ifdef CONFIG_SMP | ||
61 | obj-$(CONFIG_PPC_PMAC) += smp-tbsync.o | ||
62 | obj-$(CONFIG_PPC_MAPLE) += smp-tbsync.o | ||
63 | endif | ||
64 | |||
65 | obj-$(CONFIG_KPROBES) += kprobes.o | 53 | obj-$(CONFIG_KPROBES) += kprobes.o |
66 | 54 | ||
67 | CFLAGS_ioctl32.o += -Ifs/ | 55 | CFLAGS_ioctl32.o += -Ifs/ |
diff --git a/arch/ppc64/kernel/asm-offsets.c b/arch/ppc64/kernel/asm-offsets.c index 5e6046cb414e..504dee836d29 100644 --- a/arch/ppc64/kernel/asm-offsets.c +++ b/arch/ppc64/kernel/asm-offsets.c | |||
@@ -31,7 +31,7 @@ | |||
31 | 31 | ||
32 | #include <asm/paca.h> | 32 | #include <asm/paca.h> |
33 | #include <asm/lppaca.h> | 33 | #include <asm/lppaca.h> |
34 | #include <asm/iSeries/HvLpEvent.h> | 34 | #include <asm/iseries/hv_lp_event.h> |
35 | #include <asm/rtas.h> | 35 | #include <asm/rtas.h> |
36 | #include <asm/cputable.h> | 36 | #include <asm/cputable.h> |
37 | #include <asm/cache.h> | 37 | #include <asm/cache.h> |
diff --git a/arch/ppc64/kernel/head.S b/arch/ppc64/kernel/head.S index 929f9f42cf7a..db1cf397be2d 100644 --- a/arch/ppc64/kernel/head.S +++ b/arch/ppc64/kernel/head.S | |||
@@ -35,7 +35,7 @@ | |||
35 | #include <asm/cputable.h> | 35 | #include <asm/cputable.h> |
36 | #include <asm/setup.h> | 36 | #include <asm/setup.h> |
37 | #include <asm/hvcall.h> | 37 | #include <asm/hvcall.h> |
38 | #include <asm/iSeries/LparMap.h> | 38 | #include <asm/iseries/lpar_map.h> |
39 | #include <asm/thread_info.h> | 39 | #include <asm/thread_info.h> |
40 | 40 | ||
41 | #ifdef CONFIG_PPC_ISERIES | 41 | #ifdef CONFIG_PPC_ISERIES |
@@ -1914,24 +1914,6 @@ _GLOBAL(hmt_start_secondary) | |||
1914 | blr | 1914 | blr |
1915 | #endif | 1915 | #endif |
1916 | 1916 | ||
1917 | #if defined(CONFIG_KEXEC) || defined(CONFIG_SMP) | ||
1918 | _GLOBAL(smp_release_cpus) | ||
1919 | /* All secondary cpus are spinning on a common | ||
1920 | * spinloop, release them all now so they can start | ||
1921 | * to spin on their individual paca spinloops. | ||
1922 | * For non SMP kernels, the secondary cpus never | ||
1923 | * get out of the common spinloop. | ||
1924 | * XXX This does nothing useful on iSeries, secondaries are | ||
1925 | * already waiting on their paca. | ||
1926 | */ | ||
1927 | li r3,1 | ||
1928 | LOADADDR(r5,__secondary_hold_spinloop) | ||
1929 | std r3,0(r5) | ||
1930 | sync | ||
1931 | blr | ||
1932 | #endif /* CONFIG_SMP */ | ||
1933 | |||
1934 | |||
1935 | /* | 1917 | /* |
1936 | * We put a few things here that have to be page-aligned. | 1918 | * We put a few things here that have to be page-aligned. |
1937 | * This stuff goes at the beginning of the bss, which is page-aligned. | 1919 | * This stuff goes at the beginning of the bss, which is page-aligned. |
diff --git a/arch/ppc64/kernel/irq.c b/arch/ppc64/kernel/irq.c index f41afe545045..87474584033f 100644 --- a/arch/ppc64/kernel/irq.c +++ b/arch/ppc64/kernel/irq.c | |||
@@ -52,7 +52,7 @@ | |||
52 | #include <asm/cache.h> | 52 | #include <asm/cache.h> |
53 | #include <asm/prom.h> | 53 | #include <asm/prom.h> |
54 | #include <asm/ptrace.h> | 54 | #include <asm/ptrace.h> |
55 | #include <asm/iSeries/ItLpQueue.h> | 55 | #include <asm/iseries/it_lp_queue.h> |
56 | #include <asm/machdep.h> | 56 | #include <asm/machdep.h> |
57 | #include <asm/paca.h> | 57 | #include <asm/paca.h> |
58 | 58 | ||
@@ -392,7 +392,7 @@ int virt_irq_create_mapping(unsigned int real_irq) | |||
392 | if (ppc64_interrupt_controller == IC_OPEN_PIC) | 392 | if (ppc64_interrupt_controller == IC_OPEN_PIC) |
393 | return real_irq; /* no mapping for openpic (for now) */ | 393 | return real_irq; /* no mapping for openpic (for now) */ |
394 | 394 | ||
395 | if (ppc64_interrupt_controller == IC_BPA_IIC) | 395 | if (ppc64_interrupt_controller == IC_CELL_PIC) |
396 | return real_irq; /* no mapping for iic either */ | 396 | return real_irq; /* no mapping for iic either */ |
397 | 397 | ||
398 | /* don't map interrupts < MIN_VIRT_IRQ */ | 398 | /* don't map interrupts < MIN_VIRT_IRQ */ |
diff --git a/arch/ppc64/kernel/lparcfg.c b/arch/ppc64/kernel/lparcfg.c index cae19bbd5acd..e86155770bbc 100644 --- a/arch/ppc64/kernel/lparcfg.c +++ b/arch/ppc64/kernel/lparcfg.c | |||
@@ -26,14 +26,14 @@ | |||
26 | #include <linux/init.h> | 26 | #include <linux/init.h> |
27 | #include <linux/seq_file.h> | 27 | #include <linux/seq_file.h> |
28 | #include <asm/uaccess.h> | 28 | #include <asm/uaccess.h> |
29 | #include <asm/iSeries/HvLpConfig.h> | 29 | #include <asm/iseries/hv_lp_config.h> |
30 | #include <asm/lppaca.h> | 30 | #include <asm/lppaca.h> |
31 | #include <asm/hvcall.h> | 31 | #include <asm/hvcall.h> |
32 | #include <asm/firmware.h> | 32 | #include <asm/firmware.h> |
33 | #include <asm/rtas.h> | 33 | #include <asm/rtas.h> |
34 | #include <asm/system.h> | 34 | #include <asm/system.h> |
35 | #include <asm/time.h> | 35 | #include <asm/time.h> |
36 | #include <asm/iSeries/ItExtVpdPanel.h> | 36 | #include <asm/iseries/it_exp_vpd_panel.h> |
37 | #include <asm/prom.h> | 37 | #include <asm/prom.h> |
38 | 38 | ||
39 | #define MODULE_VERS "1.6" | 39 | #define MODULE_VERS "1.6" |
diff --git a/arch/ppc64/kernel/machine_kexec.c b/arch/ppc64/kernel/machine_kexec.c index bf7cc4f8210f..ff8679f260f3 100644 --- a/arch/ppc64/kernel/machine_kexec.c +++ b/arch/ppc64/kernel/machine_kexec.c | |||
@@ -244,7 +244,6 @@ static void kexec_prepare_cpus(void) | |||
244 | 244 | ||
245 | static void kexec_prepare_cpus(void) | 245 | static void kexec_prepare_cpus(void) |
246 | { | 246 | { |
247 | extern void smp_release_cpus(void); | ||
248 | /* | 247 | /* |
249 | * move the secondarys to us so that we can copy | 248 | * move the secondarys to us so that we can copy |
250 | * the new kernel 0-0x100 safely | 249 | * the new kernel 0-0x100 safely |
diff --git a/arch/ppc64/kernel/pacaData.c b/arch/ppc64/kernel/pacaData.c index 33a2d8db3f21..5e27e5a6a35d 100644 --- a/arch/ppc64/kernel/pacaData.c +++ b/arch/ppc64/kernel/pacaData.c | |||
@@ -17,7 +17,7 @@ | |||
17 | #include <asm/page.h> | 17 | #include <asm/page.h> |
18 | 18 | ||
19 | #include <asm/lppaca.h> | 19 | #include <asm/lppaca.h> |
20 | #include <asm/iSeries/ItLpQueue.h> | 20 | #include <asm/iseries/it_lp_queue.h> |
21 | #include <asm/paca.h> | 21 | #include <asm/paca.h> |
22 | 22 | ||
23 | static union { | 23 | static union { |
diff --git a/arch/ppc64/kernel/pci_dn.c b/arch/ppc64/kernel/pci_dn.c index 493bbe43f5b4..1a443a7ada4c 100644 --- a/arch/ppc64/kernel/pci_dn.c +++ b/arch/ppc64/kernel/pci_dn.c | |||
@@ -181,13 +181,14 @@ EXPORT_SYMBOL(fetch_dev_dn); | |||
181 | static int pci_dn_reconfig_notifier(struct notifier_block *nb, unsigned long action, void *node) | 181 | static int pci_dn_reconfig_notifier(struct notifier_block *nb, unsigned long action, void *node) |
182 | { | 182 | { |
183 | struct device_node *np = node; | 183 | struct device_node *np = node; |
184 | struct pci_dn *pci; | 184 | struct pci_dn *pci = NULL; |
185 | int err = NOTIFY_OK; | 185 | int err = NOTIFY_OK; |
186 | 186 | ||
187 | switch (action) { | 187 | switch (action) { |
188 | case PSERIES_RECONFIG_ADD: | 188 | case PSERIES_RECONFIG_ADD: |
189 | pci = np->parent->data; | 189 | pci = np->parent->data; |
190 | update_dn_pci_info(np, pci->phb); | 190 | if (pci) |
191 | update_dn_pci_info(np, pci->phb); | ||
191 | break; | 192 | break; |
192 | default: | 193 | default: |
193 | err = NOTIFY_DONE; | 194 | err = NOTIFY_DONE; |
diff --git a/arch/ppc64/kernel/proc_ppc64.c b/arch/ppc64/kernel/proc_ppc64.c index a87c66a9652a..24e955ee9487 100644 --- a/arch/ppc64/kernel/proc_ppc64.c +++ b/arch/ppc64/kernel/proc_ppc64.c | |||
@@ -53,7 +53,7 @@ static int __init proc_ppc64_create(void) | |||
53 | if (!root) | 53 | if (!root) |
54 | return 1; | 54 | return 1; |
55 | 55 | ||
56 | if (!(systemcfg->platform & (PLATFORM_PSERIES | PLATFORM_BPA))) | 56 | if (!(systemcfg->platform & (PLATFORM_PSERIES | PLATFORM_CELL))) |
57 | return 0; | 57 | return 0; |
58 | 58 | ||
59 | if (!proc_mkdir("rtas", root)) | 59 | if (!proc_mkdir("rtas", root)) |
diff --git a/arch/ppc64/kernel/prom_init.c b/arch/ppc64/kernel/prom_init.c index 69924ba4d7d9..a4bbca6dbb8b 100644 --- a/arch/ppc64/kernel/prom_init.c +++ b/arch/ppc64/kernel/prom_init.c | |||
@@ -1939,9 +1939,9 @@ unsigned long __init prom_init(unsigned long r3, unsigned long r4, unsigned long | |||
1939 | prom_send_capabilities(); | 1939 | prom_send_capabilities(); |
1940 | 1940 | ||
1941 | /* | 1941 | /* |
1942 | * On pSeries and BPA, copy the CPU hold code | 1942 | * On pSeries and Cell, copy the CPU hold code |
1943 | */ | 1943 | */ |
1944 | if (RELOC(of_platform) & (PLATFORM_PSERIES | PLATFORM_BPA)) | 1944 | if (RELOC(of_platform) & (PLATFORM_PSERIES | PLATFORM_CELL)) |
1945 | copy_and_flush(0, KERNELBASE - offset, 0x100, 0); | 1945 | copy_and_flush(0, KERNELBASE - offset, 0x100, 0); |
1946 | 1946 | ||
1947 | /* | 1947 | /* |
diff --git a/arch/ppc64/kernel/udbg_scc.c b/arch/ppc64/kernel/udbg_scc.c index c47fd6c63531..820c53551507 100644 --- a/arch/ppc64/kernel/udbg_scc.c +++ b/arch/ppc64/kernel/udbg_scc.c | |||
@@ -12,7 +12,6 @@ | |||
12 | #include <linux/types.h> | 12 | #include <linux/types.h> |
13 | #include <asm/udbg.h> | 13 | #include <asm/udbg.h> |
14 | #include <asm/processor.h> | 14 | #include <asm/processor.h> |
15 | #include <asm/naca.h> | ||
16 | #include <asm/io.h> | 15 | #include <asm/io.h> |
17 | #include <asm/prom.h> | 16 | #include <asm/prom.h> |
18 | #include <asm/pmac_feature.h> | 17 | #include <asm/pmac_feature.h> |
diff --git a/arch/ppc64/lib/Makefile b/arch/ppc64/lib/Makefile deleted file mode 100644 index 42d5295bf345..000000000000 --- a/arch/ppc64/lib/Makefile +++ /dev/null | |||
@@ -1,5 +0,0 @@ | |||
1 | # | ||
2 | # Makefile for ppc64-specific library files.. | ||
3 | # | ||
4 | |||
5 | lib-y := string.o | ||
diff --git a/arch/ppc64/lib/string.S b/arch/ppc64/lib/string.S deleted file mode 100644 index e21a0038a4d6..000000000000 --- a/arch/ppc64/lib/string.S +++ /dev/null | |||
@@ -1,179 +0,0 @@ | |||
1 | /* | ||
2 | * String handling functions for PowerPC. | ||
3 | * | ||
4 | * Copyright (C) 1996 Paul Mackerras. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU General Public License | ||
8 | * as published by the Free Software Foundation; either version | ||
9 | * 2 of the License, or (at your option) any later version. | ||
10 | */ | ||
11 | #include <asm/processor.h> | ||
12 | #include <asm/errno.h> | ||
13 | #include <asm/ppc_asm.h> | ||
14 | |||
15 | _GLOBAL(strcpy) | ||
16 | addi r5,r3,-1 | ||
17 | addi r4,r4,-1 | ||
18 | 1: lbzu r0,1(r4) | ||
19 | cmpwi 0,r0,0 | ||
20 | stbu r0,1(r5) | ||
21 | bne 1b | ||
22 | blr | ||
23 | |||
24 | _GLOBAL(strncpy) | ||
25 | cmpwi 0,r5,0 | ||
26 | beqlr | ||
27 | mtctr r5 | ||
28 | addi r6,r3,-1 | ||
29 | addi r4,r4,-1 | ||
30 | 1: lbzu r0,1(r4) | ||
31 | cmpwi 0,r0,0 | ||
32 | stbu r0,1(r6) | ||
33 | bdnzf 2,1b /* dec ctr, branch if ctr != 0 && !cr0.eq */ | ||
34 | blr | ||
35 | |||
36 | _GLOBAL(strcat) | ||
37 | addi r5,r3,-1 | ||
38 | addi r4,r4,-1 | ||
39 | 1: lbzu r0,1(r5) | ||
40 | cmpwi 0,r0,0 | ||
41 | bne 1b | ||
42 | addi r5,r5,-1 | ||
43 | 1: lbzu r0,1(r4) | ||
44 | cmpwi 0,r0,0 | ||
45 | stbu r0,1(r5) | ||
46 | bne 1b | ||
47 | blr | ||
48 | |||
49 | _GLOBAL(strcmp) | ||
50 | addi r5,r3,-1 | ||
51 | addi r4,r4,-1 | ||
52 | 1: lbzu r3,1(r5) | ||
53 | cmpwi 1,r3,0 | ||
54 | lbzu r0,1(r4) | ||
55 | subf. r3,r0,r3 | ||
56 | beqlr 1 | ||
57 | beq 1b | ||
58 | blr | ||
59 | |||
60 | _GLOBAL(strlen) | ||
61 | addi r4,r3,-1 | ||
62 | 1: lbzu r0,1(r4) | ||
63 | cmpwi 0,r0,0 | ||
64 | bne 1b | ||
65 | subf r3,r3,r4 | ||
66 | blr | ||
67 | |||
68 | _GLOBAL(memcmp) | ||
69 | cmpwi 0,r5,0 | ||
70 | ble- 2f | ||
71 | mtctr r5 | ||
72 | addi r6,r3,-1 | ||
73 | addi r4,r4,-1 | ||
74 | 1: lbzu r3,1(r6) | ||
75 | lbzu r0,1(r4) | ||
76 | subf. r3,r0,r3 | ||
77 | bdnzt 2,1b | ||
78 | blr | ||
79 | 2: li r3,0 | ||
80 | blr | ||
81 | |||
82 | _GLOBAL(memchr) | ||
83 | cmpwi 0,r5,0 | ||
84 | ble- 2f | ||
85 | mtctr r5 | ||
86 | addi r3,r3,-1 | ||
87 | 1: lbzu r0,1(r3) | ||
88 | cmpw 0,r0,r4 | ||
89 | bdnzf 2,1b | ||
90 | beqlr | ||
91 | 2: li r3,0 | ||
92 | blr | ||
93 | |||
94 | _GLOBAL(__clear_user) | ||
95 | addi r6,r3,-4 | ||
96 | li r3,0 | ||
97 | li r5,0 | ||
98 | cmplwi 0,r4,4 | ||
99 | blt 7f | ||
100 | /* clear a single word */ | ||
101 | 11: stwu r5,4(r6) | ||
102 | beqlr | ||
103 | /* clear word sized chunks */ | ||
104 | andi. r0,r6,3 | ||
105 | add r4,r0,r4 | ||
106 | subf r6,r0,r6 | ||
107 | srwi r0,r4,2 | ||
108 | andi. r4,r4,3 | ||
109 | mtctr r0 | ||
110 | bdz 7f | ||
111 | 1: stwu r5,4(r6) | ||
112 | bdnz 1b | ||
113 | /* clear byte sized chunks */ | ||
114 | 7: cmpwi 0,r4,0 | ||
115 | beqlr | ||
116 | mtctr r4 | ||
117 | addi r6,r6,3 | ||
118 | 8: stbu r5,1(r6) | ||
119 | bdnz 8b | ||
120 | blr | ||
121 | 90: mr r3,r4 | ||
122 | blr | ||
123 | 91: mfctr r3 | ||
124 | slwi r3,r3,2 | ||
125 | add r3,r3,r4 | ||
126 | blr | ||
127 | 92: mfctr r3 | ||
128 | blr | ||
129 | |||
130 | .section __ex_table,"a" | ||
131 | .align 3 | ||
132 | .llong 11b,90b | ||
133 | .llong 1b,91b | ||
134 | .llong 8b,92b | ||
135 | .text | ||
136 | |||
137 | /* r3 = dst, r4 = src, r5 = count */ | ||
138 | _GLOBAL(__strncpy_from_user) | ||
139 | addi r6,r3,-1 | ||
140 | addi r4,r4,-1 | ||
141 | cmpwi 0,r5,0 | ||
142 | beq 2f | ||
143 | mtctr r5 | ||
144 | 1: lbzu r0,1(r4) | ||
145 | cmpwi 0,r0,0 | ||
146 | stbu r0,1(r6) | ||
147 | bdnzf 2,1b /* dec ctr, branch if ctr != 0 && !cr0.eq */ | ||
148 | beq 3f | ||
149 | 2: addi r6,r6,1 | ||
150 | 3: subf r3,r3,r6 | ||
151 | blr | ||
152 | 99: li r3,-EFAULT | ||
153 | blr | ||
154 | |||
155 | .section __ex_table,"a" | ||
156 | .align 3 | ||
157 | .llong 1b,99b | ||
158 | .text | ||
159 | |||
160 | /* r3 = str, r4 = len (> 0) */ | ||
161 | _GLOBAL(__strnlen_user) | ||
162 | addi r7,r3,-1 | ||
163 | mtctr r4 /* ctr = len */ | ||
164 | 1: lbzu r0,1(r7) /* get next byte */ | ||
165 | cmpwi 0,r0,0 | ||
166 | bdnzf 2,1b /* loop if --ctr != 0 && byte != 0 */ | ||
167 | addi r7,r7,1 | ||
168 | subf r3,r3,r7 /* number of bytes we have looked at */ | ||
169 | beqlr /* return if we found a 0 byte */ | ||
170 | cmpw 0,r3,r4 /* did we look at all len bytes? */ | ||
171 | blt 99f /* if not, must have hit top */ | ||
172 | addi r3,r4,1 /* return len + 1 to indicate no null found */ | ||
173 | blr | ||
174 | 99: li r3,0 /* bad address, return 0 */ | ||
175 | blr | ||
176 | |||
177 | .section __ex_table,"a" | ||
178 | .align 3 | ||
179 | .llong 1b,99b | ||