blob: 4278bbc032ce46b0a472b5f418606ae9844acea7 [file] [log] [blame]
Chen Liqin6bc9a392009-06-12 22:01:00 +08001menu "Machine selection"
2
Thomas Gleixner2fc361b2011-01-19 20:41:19 +01003config SCORE
4 def_bool y
5 select HAVE_GENERIC_HARDIRQS
Thomas Gleixner538202b2011-02-06 22:23:50 +00006 select GENERIC_HARDIRQS_NO_DEPRECATED
Thomas Gleixner324808c22011-03-25 14:16:56 +00007 select GENERIC_IRQ_SHOW
Thomas Gleixner2fc361b2011-01-19 20:41:19 +01008
Chen Liqin6bc9a392009-06-12 22:01:00 +08009choice
10 prompt "System type"
11 default MACH_SPCT6600
12
13config ARCH_SCORE7
14 bool "SCORE7 processor"
15 select SYS_SUPPORTS_32BIT_KERNEL
16 select CPU_SCORE7
17 select GENERIC_HAS_IOMAP
18
19config MACH_SPCT6600
20 bool "SPCT6600 series based machines"
21 select SYS_SUPPORTS_32BIT_KERNEL
22 select CPU_SCORE7
23 select GENERIC_HAS_IOMAP
24
25config SCORE_SIM
26 bool "Score simulator"
27 select SYS_SUPPORTS_32BIT_KERNEL
28 select CPU_SCORE7
29 select GENERIC_HAS_IOMAP
30endchoice
31
32endmenu
33
34config CPU_SCORE7
35 bool
36
37config GENERIC_IOMAP
38 def_bool y
39
40config NO_DMA
41 bool
42 default y
43
44config RWSEM_GENERIC_SPINLOCK
45 def_bool y
46
47config GENERIC_FIND_NEXT_BIT
48 def_bool y
49
50config GENERIC_HWEIGHT
51 def_bool y
52
53config GENERIC_CALIBRATE_DELAY
54 def_bool y
55
56config GENERIC_CLOCKEVENTS
57 def_bool y
58
Chen Liqin6bc9a392009-06-12 22:01:00 +080059config SCHED_NO_NO_OMIT_FRAME_POINTER
60 def_bool y
61
Chen Liqin6bc9a392009-06-12 22:01:00 +080062config GENERIC_SYSCALL_TABLE
63 def_bool y
64
65config SCORE_L1_CACHE_SHIFT
66 int
67 default "4"
68
69menu "Kernel type"
70
71config 32BIT
72 def_bool y
73
Chen Liqin6bc9a392009-06-12 22:01:00 +080074config ARCH_FLATMEM_ENABLE
75 def_bool y
76
77config ARCH_POPULATES_NODE_MAP
78 def_bool y
79
80source "mm/Kconfig"
81
82config MEMORY_START
83 hex
84 default 0xa0000000
85
86source "kernel/time/Kconfig"
87source "kernel/Kconfig.hz"
88source "kernel/Kconfig.preempt"
89
90endmenu
91
92config RWSEM_GENERIC_SPINLOCK
93 def_bool y
94
95config LOCKDEP_SUPPORT
96 def_bool y
97
98config STACKTRACE_SUPPORT
99 def_bool y
100
101source "init/Kconfig"
102
103config PROBE_INITRD_HEADER
104 bool "Probe initrd header created by addinitrd"
105 depends on BLK_DEV_INITRD
106 help
107 Probe initrd header at the last page of kernel image.
108 Say Y here if you are using arch/score/boot/addinitrd.c to
109 add initrd or initramfs image to the kernel image.
110 Otherwise, say N.
111
112config MMU
113 def_bool y
114
115menu "Executable file formats"
116
117source "fs/Kconfig.binfmt"
118
119endmenu
120
121source "net/Kconfig"
122
123source "drivers/Kconfig"
124
125source "fs/Kconfig"
126
127source "arch/score/Kconfig.debug"
128
129source "security/Kconfig"
130
131source "crypto/Kconfig"
132
133source "lib/Kconfig"