diff options
-rw-r--r-- | arch/sh/boards/se/7206/Makefile | 7 | ||||
-rw-r--r-- | arch/sh/boards/se/7206/io.c | 123 | ||||
-rw-r--r-- | arch/sh/boards/se/7206/irq.c | 161 | ||||
-rw-r--r-- | arch/sh/boards/se/7206/led.c | 57 | ||||
-rw-r--r-- | arch/sh/boards/se/7206/setup.c | 80 | ||||
-rw-r--r-- | arch/sh/boards/se/7619/Makefile | 5 | ||||
-rw-r--r-- | arch/sh/boards/se/7619/io.c | 102 | ||||
-rw-r--r-- | arch/sh/boards/se/7619/setup.c | 43 | ||||
-rw-r--r-- | arch/sh/configs/se7206_defconfig | 826 |
9 files changed, 1404 insertions, 0 deletions
diff --git a/arch/sh/boards/se/7206/Makefile b/arch/sh/boards/se/7206/Makefile new file mode 100644 index 000000000000..63950f4f2453 --- /dev/null +++ b/arch/sh/boards/se/7206/Makefile | |||
@@ -0,0 +1,7 @@ | |||
1 | # | ||
2 | # Makefile for the 7206 SolutionEngine specific parts of the kernel | ||
3 | # | ||
4 | |||
5 | obj-y := setup.o io.o irq.o | ||
6 | obj-$(CONFIG_HEARTBEAT) += led.o | ||
7 | |||
diff --git a/arch/sh/boards/se/7206/io.c b/arch/sh/boards/se/7206/io.c new file mode 100644 index 000000000000..b557273e0cbe --- /dev/null +++ b/arch/sh/boards/se/7206/io.c | |||
@@ -0,0 +1,123 @@ | |||
1 | /* $Id: io.c,v 1.5 2004/02/22 23:08:43 kkojima Exp $ | ||
2 | * | ||
3 | * linux/arch/sh/boards/se/7206/io.c | ||
4 | * | ||
5 | * Copyright (C) 2006 Yoshinori Sato | ||
6 | * | ||
7 | * I/O routine for Hitachi 7206 SolutionEngine. | ||
8 | * | ||
9 | */ | ||
10 | |||
11 | #include <linux/kernel.h> | ||
12 | #include <linux/types.h> | ||
13 | #include <asm/io.h> | ||
14 | #include <asm/se7206.h> | ||
15 | |||
16 | |||
17 | static inline void delay(void) | ||
18 | { | ||
19 | ctrl_inw(0x20000000); /* P2 ROM Area */ | ||
20 | } | ||
21 | |||
22 | /* MS7750 requires special versions of in*, out* routines, since | ||
23 | PC-like io ports are located at upper half byte of 16-bit word which | ||
24 | can be accessed only with 16-bit wide. */ | ||
25 | |||
26 | static inline volatile __u16 * | ||
27 | port2adr(unsigned int port) | ||
28 | { | ||
29 | if (port >= 0x2000) | ||
30 | return (volatile __u16 *) (PA_MRSHPC + (port - 0x2000)); | ||
31 | else if (port >= 0x300 || port < 0x310) | ||
32 | return (volatile __u16 *) (PA_SMSC + (port - 0x300)); | ||
33 | } | ||
34 | |||
35 | unsigned char se7206_inb(unsigned long port) | ||
36 | { | ||
37 | return (*port2adr(port))&0xff; | ||
38 | } | ||
39 | |||
40 | unsigned char se7206_inb_p(unsigned long port) | ||
41 | { | ||
42 | unsigned long v; | ||
43 | |||
44 | v = (*port2adr(port))&0xff; | ||
45 | delay(); | ||
46 | return v; | ||
47 | } | ||
48 | |||
49 | unsigned short se7206_inw(unsigned long port) | ||
50 | { | ||
51 | return *port2adr(port);; | ||
52 | } | ||
53 | |||
54 | unsigned int se7206_inl(unsigned long port) | ||
55 | { | ||
56 | maybebadio(port); | ||
57 | return 0; | ||
58 | } | ||
59 | |||
60 | void se7206_outb(unsigned char value, unsigned long port) | ||
61 | { | ||
62 | *(port2adr(port)) = value; | ||
63 | } | ||
64 | |||
65 | void se7206_outb_p(unsigned char value, unsigned long port) | ||
66 | { | ||
67 | *(port2adr(port)) = value; | ||
68 | delay(); | ||
69 | } | ||
70 | |||
71 | void se7206_outw(unsigned short value, unsigned long port) | ||
72 | { | ||
73 | *port2adr(port) = value; | ||
74 | } | ||
75 | |||
76 | void se7206_outl(unsigned int value, unsigned long port) | ||
77 | { | ||
78 | maybebadio(port); | ||
79 | } | ||
80 | |||
81 | void se7206_insb(unsigned long port, void *addr, unsigned long count) | ||
82 | { | ||
83 | volatile __u16 *p = port2adr(port); | ||
84 | __u8 *ap = addr; | ||
85 | |||
86 | while (count--) | ||
87 | *ap++ = *p; | ||
88 | } | ||
89 | |||
90 | void se7206_insw(unsigned long port, void *addr, unsigned long count) | ||
91 | { | ||
92 | volatile __u16 *p = port2adr(port); | ||
93 | __u16 *ap = addr; | ||
94 | while (count--) | ||
95 | *ap++ = *p; | ||
96 | } | ||
97 | |||
98 | void se7206_insl(unsigned long port, void *addr, unsigned long count) | ||
99 | { | ||
100 | maybebadio(port); | ||
101 | } | ||
102 | |||
103 | void se7206_outsb(unsigned long port, const void *addr, unsigned long count) | ||
104 | { | ||
105 | volatile __u16 *p = port2adr(port); | ||
106 | const __u8 *ap = addr; | ||
107 | |||
108 | while (count--) | ||
109 | *p = *ap++; | ||
110 | } | ||
111 | |||
112 | void se7206_outsw(unsigned long port, const void *addr, unsigned long count) | ||
113 | { | ||
114 | volatile __u16 *p = port2adr(port); | ||
115 | const __u16 *ap = addr; | ||
116 | while (count--) | ||
117 | *p = *ap++; | ||
118 | } | ||
119 | |||
120 | void se7206_outsl(unsigned long port, const void *addr, unsigned long count) | ||
121 | { | ||
122 | maybebadio(port); | ||
123 | } | ||
diff --git a/arch/sh/boards/se/7206/irq.c b/arch/sh/boards/se/7206/irq.c new file mode 100644 index 000000000000..8d5b278a124d --- /dev/null +++ b/arch/sh/boards/se/7206/irq.c | |||
@@ -0,0 +1,161 @@ | |||
1 | /* | ||
2 | * linux/arch/sh/boards/se/7206/irq.c | ||
3 | * | ||
4 | * Copyright (C) 2005,2006 Yoshinori Sato | ||
5 | * | ||
6 | * Hitachi SolutionEngine Support. | ||
7 | * | ||
8 | */ | ||
9 | |||
10 | #include <linux/config.h> | ||
11 | #include <linux/init.h> | ||
12 | #include <linux/irq.h> | ||
13 | #include <asm/irq.h> | ||
14 | #include <asm/io.h> | ||
15 | #include <asm/se7206.h> | ||
16 | |||
17 | #define INTSTS0 0x31800000 | ||
18 | #define INTSTS1 0x31800002 | ||
19 | #define INTMSK0 0x31800004 | ||
20 | #define INTMSK1 0x31800006 | ||
21 | #define INTSEL 0x31800008 | ||
22 | |||
23 | /* shutdown is same as "disable" */ | ||
24 | #define shutdown_se7206_irq disable_se7206_irq | ||
25 | |||
26 | static void disable_se7206_irq(unsigned int irq) | ||
27 | { | ||
28 | unsigned short val; | ||
29 | unsigned short mask = 0xffff ^ (0x0f << 4 * (3 - (IRQ0_IRQ - irq))); | ||
30 | unsigned short msk0,msk1; | ||
31 | |||
32 | /* Set the priority in IPR to 0 */ | ||
33 | val = ctrl_inw(INTC_IPR01); | ||
34 | val &= mask; | ||
35 | ctrl_outw(val, INTC_IPR01); | ||
36 | /* FPGA mask set */ | ||
37 | msk0 = ctrl_inw(INTMSK0); | ||
38 | msk1 = ctrl_inw(INTMSK1); | ||
39 | |||
40 | switch (irq) { | ||
41 | case IRQ0_IRQ: | ||
42 | msk0 |= 0x0010; | ||
43 | break; | ||
44 | case IRQ1_IRQ: | ||
45 | msk0 |= 0x000f; | ||
46 | break; | ||
47 | case IRQ2_IRQ: | ||
48 | msk0 |= 0x0f00; | ||
49 | msk1 |= 0x00ff; | ||
50 | break; | ||
51 | } | ||
52 | ctrl_outw(msk0, INTMSK0); | ||
53 | ctrl_outw(msk1, INTMSK1); | ||
54 | } | ||
55 | |||
56 | static void enable_se7206_irq(unsigned int irq) | ||
57 | { | ||
58 | unsigned short val; | ||
59 | unsigned short value = (0x0001 << 4 * (3 - (IRQ0_IRQ - irq))); | ||
60 | unsigned short msk0,msk1; | ||
61 | |||
62 | /* Set priority in IPR back to original value */ | ||
63 | val = ctrl_inw(INTC_IPR01); | ||
64 | val |= value; | ||
65 | ctrl_outw(val, INTC_IPR01); | ||
66 | |||
67 | /* FPGA mask reset */ | ||
68 | msk0 = ctrl_inw(INTMSK0); | ||
69 | msk1 = ctrl_inw(INTMSK1); | ||
70 | |||
71 | switch (irq) { | ||
72 | case IRQ0_IRQ: | ||
73 | msk0 &= ~0x0010; | ||
74 | break; | ||
75 | case IRQ1_IRQ: | ||
76 | msk0 &= ~0x000f; | ||
77 | break; | ||
78 | case IRQ2_IRQ: | ||
79 | msk0 &= ~0x0f00; | ||
80 | msk1 &= ~0x00ff; | ||
81 | break; | ||
82 | } | ||
83 | ctrl_outw(msk0, INTMSK0); | ||
84 | ctrl_outw(msk1, INTMSK1); | ||
85 | } | ||
86 | |||
87 | static unsigned int startup_se7206_irq(unsigned int irq) | ||
88 | { | ||
89 | enable_se7206_irq(irq); | ||
90 | return 0; /* never anything pending */ | ||
91 | } | ||
92 | |||
93 | static void ack_se7206_irq(unsigned int irq) | ||
94 | { | ||
95 | disable_se7206_irq(irq); | ||
96 | } | ||
97 | |||
98 | static void end_se7206_irq(unsigned int irq) | ||
99 | { | ||
100 | unsigned short sts0,sts1; | ||
101 | |||
102 | if (!(irq_desc[irq].status & (IRQ_DISABLED|IRQ_INPROGRESS))) | ||
103 | enable_se7206_irq(irq); | ||
104 | /* FPGA isr clear */ | ||
105 | sts0 = ctrl_inw(INTSTS0); | ||
106 | sts1 = ctrl_inw(INTSTS1); | ||
107 | |||
108 | switch (irq) { | ||
109 | case IRQ0_IRQ: | ||
110 | sts0 &= ~0x0010; | ||
111 | break; | ||
112 | case IRQ1_IRQ: | ||
113 | sts0 &= ~0x000f; | ||
114 | break; | ||
115 | case IRQ2_IRQ: | ||
116 | sts0 &= ~0x0f00; | ||
117 | sts1 &= ~0x00ff; | ||
118 | break; | ||
119 | } | ||
120 | ctrl_outw(sts0, INTSTS0); | ||
121 | ctrl_outw(sts1, INTSTS1); | ||
122 | } | ||
123 | |||
124 | static struct hw_interrupt_type se7206_irq_type = { | ||
125 | .typename = "SE7206 FPGA-IRQ", | ||
126 | .startup = startup_se7206_irq, | ||
127 | .shutdown = shutdown_se7206_irq, | ||
128 | .enable = enable_se7206_irq, | ||
129 | .disable = disable_se7206_irq, | ||
130 | .ack = ack_se7206_irq, | ||
131 | .end = end_se7206_irq, | ||
132 | }; | ||
133 | |||
134 | static void make_se7206_irq(unsigned int irq) | ||
135 | { | ||
136 | disable_irq_nosync(irq); | ||
137 | irq_desc[irq].handler = &se7206_irq_type; | ||
138 | disable_se7206_irq(irq); | ||
139 | } | ||
140 | |||
141 | /* | ||
142 | * Initialize IRQ setting | ||
143 | */ | ||
144 | void __init init_se7206_IRQ(void) | ||
145 | { | ||
146 | make_se7206_irq(IRQ0_IRQ); /* SMC91C111 */ | ||
147 | make_se7206_irq(IRQ1_IRQ); /* ATA */ | ||
148 | make_se7206_irq(IRQ3_IRQ); /* SLOT / PCM */ | ||
149 | ctrl_outw(inw(INTC_ICR1) | 0x000b ,INTC_ICR1 ) ; /* ICR1 */ | ||
150 | |||
151 | /* FPGA System register setup*/ | ||
152 | ctrl_outw(0x0000,INTSTS0); /* Clear INTSTS0 */ | ||
153 | ctrl_outw(0x0000,INTSTS1); /* Clear INTSTS1 */ | ||
154 | /* IRQ0=LAN, IRQ1=ATA, IRQ3=SLT,PCM */ | ||
155 | ctrl_outw(0x0001,INTSEL); | ||
156 | } | ||
157 | |||
158 | int se7206_irq_demux(int irq) | ||
159 | { | ||
160 | return irq; | ||
161 | } | ||
diff --git a/arch/sh/boards/se/7206/led.c b/arch/sh/boards/se/7206/led.c new file mode 100644 index 000000000000..ef794601ab86 --- /dev/null +++ b/arch/sh/boards/se/7206/led.c | |||
@@ -0,0 +1,57 @@ | |||
1 | /* | ||
2 | * linux/arch/sh/kernel/led_se.c | ||
3 | * | ||
4 | * Copyright (C) 2000 Stuart Menefy <stuart.menefy@st.com> | ||
5 | * | ||
6 | * May be copied or modified under the terms of the GNU General Public | ||
7 | * License. See linux/COPYING for more information. | ||
8 | * | ||
9 | * This file contains Solution Engine specific LED code. | ||
10 | */ | ||
11 | |||
12 | #include <linux/config.h> | ||
13 | #include <asm/se7206.h> | ||
14 | |||
15 | #ifdef CONFIG_HEARTBEAT | ||
16 | |||
17 | #include <linux/sched.h> | ||
18 | |||
19 | /* Cycle the LED's in the clasic Knightrider/Sun pattern */ | ||
20 | void heartbeat_se(void) | ||
21 | { | ||
22 | static unsigned int cnt = 0, period = 0; | ||
23 | volatile unsigned short* p = (volatile unsigned short*)PA_LED; | ||
24 | static unsigned bit = 0, up = 1; | ||
25 | |||
26 | cnt += 1; | ||
27 | if (cnt < period) { | ||
28 | return; | ||
29 | } | ||
30 | |||
31 | cnt = 0; | ||
32 | |||
33 | /* Go through the points (roughly!): | ||
34 | * f(0)=10, f(1)=16, f(2)=20, f(5)=35,f(inf)->110 | ||
35 | */ | ||
36 | period = 110 - ( (300<<FSHIFT)/ | ||
37 | ((avenrun[0]/5) + (3<<FSHIFT)) ); | ||
38 | |||
39 | if (up) { | ||
40 | if (bit == 7) { | ||
41 | bit--; | ||
42 | up=0; | ||
43 | } else { | ||
44 | bit ++; | ||
45 | } | ||
46 | } else { | ||
47 | if (bit == 0) { | ||
48 | bit++; | ||
49 | up=1; | ||
50 | } else { | ||
51 | bit--; | ||
52 | } | ||
53 | } | ||
54 | *p = 1<<(bit+8); | ||
55 | |||
56 | } | ||
57 | #endif /* CONFIG_HEARTBEAT */ | ||
diff --git a/arch/sh/boards/se/7206/setup.c b/arch/sh/boards/se/7206/setup.c new file mode 100644 index 000000000000..e543e3980c08 --- /dev/null +++ b/arch/sh/boards/se/7206/setup.c | |||
@@ -0,0 +1,80 @@ | |||
1 | /* | ||
2 | * | ||
3 | * linux/arch/sh/boards/se/7206/setup.c | ||
4 | * | ||
5 | * Copyright (C) 2006 Yoshinori Sato | ||
6 | * | ||
7 | * Hitachi 7206 SolutionEngine Support. | ||
8 | * | ||
9 | */ | ||
10 | |||
11 | #include <linux/init.h> | ||
12 | #include <linux/platform_device.h> | ||
13 | #include <asm/io.h> | ||
14 | #include <asm/se7206.h> | ||
15 | #include <asm/machvec.h> | ||
16 | |||
17 | static struct resource smc91x_resources[] = { | ||
18 | [0] = { | ||
19 | .start = 0x300, | ||
20 | .end = 0x300 + 0x020 - 1, | ||
21 | .flags = IORESOURCE_MEM, | ||
22 | }, | ||
23 | [1] = { | ||
24 | .start = 64, | ||
25 | .end = 64, | ||
26 | .flags = IORESOURCE_IRQ, | ||
27 | }, | ||
28 | }; | ||
29 | |||
30 | static struct platform_device smc91x_device = { | ||
31 | .name = "smc91x", | ||
32 | .id = -1, | ||
33 | .num_resources = ARRAY_SIZE(smc91x_resources), | ||
34 | .resource = smc91x_resources, | ||
35 | }; | ||
36 | |||
37 | static int __init se7206_devices_setup(void) | ||
38 | { | ||
39 | return platform_device_register(&smc91x_device); | ||
40 | } | ||
41 | |||
42 | __initcall(se7206_devices_setup); | ||
43 | |||
44 | void heartbeat_se(void); | ||
45 | |||
46 | /* | ||
47 | * The Machine Vector | ||
48 | */ | ||
49 | |||
50 | struct sh_machine_vector mv_se __initmv = { | ||
51 | .mv_name = "SolutionEngine", | ||
52 | .mv_nr_irqs = 256, | ||
53 | .mv_inb = se7206_inb, | ||
54 | .mv_inw = se7206_inw, | ||
55 | .mv_inl = se7206_inl, | ||
56 | .mv_outb = se7206_outb, | ||
57 | .mv_outw = se7206_outw, | ||
58 | .mv_outl = se7206_outl, | ||
59 | |||
60 | .mv_inb_p = se7206_inb_p, | ||
61 | .mv_inw_p = se7206_inw, | ||
62 | .mv_inl_p = se7206_inl, | ||
63 | .mv_outb_p = se7206_outb_p, | ||
64 | .mv_outw_p = se7206_outw, | ||
65 | .mv_outl_p = se7206_outl, | ||
66 | |||
67 | .mv_insb = se7206_insb, | ||
68 | .mv_insw = se7206_insw, | ||
69 | .mv_insl = se7206_insl, | ||
70 | .mv_outsb = se7206_outsb, | ||
71 | .mv_outsw = se7206_outsw, | ||
72 | .mv_outsl = se7206_outsl, | ||
73 | |||
74 | .mv_init_irq = init_se7206_IRQ, | ||
75 | .mv_irq_demux = se7206_irq_demux, | ||
76 | #ifdef CONFIG_HEARTBEAT | ||
77 | .mv_heartbeat = heartbeat_se, | ||
78 | #endif | ||
79 | }; | ||
80 | ALIAS_MV(se) | ||
diff --git a/arch/sh/boards/se/7619/Makefile b/arch/sh/boards/se/7619/Makefile new file mode 100644 index 000000000000..3666eca8a658 --- /dev/null +++ b/arch/sh/boards/se/7619/Makefile | |||
@@ -0,0 +1,5 @@ | |||
1 | # | ||
2 | # Makefile for the 7619 SolutionEngine specific parts of the kernel | ||
3 | # | ||
4 | |||
5 | obj-y := setup.o io.o | ||
diff --git a/arch/sh/boards/se/7619/io.c b/arch/sh/boards/se/7619/io.c new file mode 100644 index 000000000000..176f1f39cd9d --- /dev/null +++ b/arch/sh/boards/se/7619/io.c | |||
@@ -0,0 +1,102 @@ | |||
1 | /* | ||
2 | * | ||
3 | * linux/arch/sh/boards/se/7619/io.c | ||
4 | * | ||
5 | * Copyright (C) 2006 Yoshinori Sato | ||
6 | * | ||
7 | * I/O routine for Hitachi 7619 SolutionEngine. | ||
8 | * | ||
9 | */ | ||
10 | |||
11 | #include <linux/kernel.h> | ||
12 | #include <linux/types.h> | ||
13 | #include <asm/io.h> | ||
14 | #include <asm/se7619.h> | ||
15 | #include <asm/irq.h> | ||
16 | |||
17 | /* FIXME: M3A-ZAB7 Compact Flash Slot support */ | ||
18 | |||
19 | static inline void delay(void) | ||
20 | { | ||
21 | ctrl_inw(0xa0000000); /* Uncached ROM area (P2) */ | ||
22 | } | ||
23 | |||
24 | #define badio(name,port) \ | ||
25 | printk("bad I/O operation (%s) for port 0x%lx at 0x%08x\n", \ | ||
26 | #name, (port), (__u32) __builtin_return_address(0)) | ||
27 | |||
28 | unsigned char se7619___inb(unsigned long port) | ||
29 | { | ||
30 | badio(inb, port); | ||
31 | return 0; | ||
32 | } | ||
33 | |||
34 | unsigned char se7619___inb_p(unsigned long port) | ||
35 | { | ||
36 | badio(inb_p, port); | ||
37 | delay(); | ||
38 | return 0; | ||
39 | } | ||
40 | |||
41 | unsigned short se7619___inw(unsigned long port) | ||
42 | { | ||
43 | badio(inw, port); | ||
44 | return 0; | ||
45 | } | ||
46 | |||
47 | unsigned int se7619___inl(unsigned long port) | ||
48 | { | ||
49 | badio(inl, port); | ||
50 | return 0; | ||
51 | } | ||
52 | |||
53 | void se7619___outb(unsigned char value, unsigned long port) | ||
54 | { | ||
55 | badio(outb, port); | ||
56 | } | ||
57 | |||
58 | void se7619___outb_p(unsigned char value, unsigned long port) | ||
59 | { | ||
60 | badio(outb_p, port); | ||
61 | delay(); | ||
62 | } | ||
63 | |||
64 | void se7619___outw(unsigned short value, unsigned long port) | ||
65 | { | ||
66 | badio(outw, port); | ||
67 | } | ||
68 | |||
69 | void se7619___outl(unsigned int value, unsigned long port) | ||
70 | { | ||
71 | badio(outl, port); | ||
72 | } | ||
73 | |||
74 | void se7619___insb(unsigned long port, void *addr, unsigned long count) | ||
75 | { | ||
76 | badio(inw, port); | ||
77 | } | ||
78 | |||
79 | void se7619___insw(unsigned long port, void *addr, unsigned long count) | ||
80 | { | ||
81 | badio(inw, port); | ||
82 | } | ||
83 | |||
84 | void se7619___insl(unsigned long port, void *addr, unsigned long count) | ||
85 | { | ||
86 | badio(insl, port); | ||
87 | } | ||
88 | |||
89 | void se7619___outsb(unsigned long port, const void *addr, unsigned long count) | ||
90 | { | ||
91 | badio(insl, port); | ||
92 | } | ||
93 | |||
94 | void se7619___outsw(unsigned long port, const void *addr, unsigned long count) | ||
95 | { | ||
96 | badio(insl, port); | ||
97 | } | ||
98 | |||
99 | void se7619___outsl(unsigned long port, const void *addr, unsigned long count) | ||
100 | { | ||
101 | badio(outsw, port); | ||
102 | } | ||
diff --git a/arch/sh/boards/se/7619/setup.c b/arch/sh/boards/se/7619/setup.c new file mode 100644 index 000000000000..e627b26de0d0 --- /dev/null +++ b/arch/sh/boards/se/7619/setup.c | |||
@@ -0,0 +1,43 @@ | |||
1 | /* | ||
2 | * arch/sh/boards/se/7619/setup.c | ||
3 | * | ||
4 | * Copyright (C) 2006 Yoshinori Sato | ||
5 | * | ||
6 | * Hitachi SH7619 SolutionEngine Support. | ||
7 | */ | ||
8 | |||
9 | #include <linux/init.h> | ||
10 | #include <linux/platform_device.h> | ||
11 | #include <asm/io.h> | ||
12 | #include <asm/se7619.h> | ||
13 | #include <asm/machvec.h> | ||
14 | |||
15 | /* | ||
16 | * The Machine Vector | ||
17 | */ | ||
18 | |||
19 | struct sh_machine_vector mv_se __initmv = { | ||
20 | .mv_name = "SolutionEngine", | ||
21 | .mv_nr_irqs = 108, | ||
22 | .mv_inb = se7619___inb, | ||
23 | .mv_inw = se7619___inw, | ||
24 | .mv_inl = se7619___inl, | ||
25 | .mv_outb = se7619___outb, | ||
26 | .mv_outw = se7619___outw, | ||
27 | .mv_outl = se7619___outl, | ||
28 | |||
29 | .mv_inb_p = se7619___inb_p, | ||
30 | .mv_inw_p = se7619___inw, | ||
31 | .mv_inl_p = se7619___inl, | ||
32 | .mv_outb_p = se7619___outb_p, | ||
33 | .mv_outw_p = se7619___outw, | ||
34 | .mv_outl_p = se7619___outl, | ||
35 | |||
36 | .mv_insb = se7619___insb, | ||
37 | .mv_insw = se7619___insw, | ||
38 | .mv_insl = se7619___insl, | ||
39 | .mv_outsb = se7619___outsb, | ||
40 | .mv_outsw = se7619___outsw, | ||
41 | .mv_outsl = se7619___outsl, | ||
42 | }; | ||
43 | ALIAS_MV(se) | ||
diff --git a/arch/sh/configs/se7206_defconfig b/arch/sh/configs/se7206_defconfig new file mode 100644 index 000000000000..36cec0b6e7c1 --- /dev/null +++ b/arch/sh/configs/se7206_defconfig | |||
@@ -0,0 +1,826 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.19-rc4 | ||
4 | # Sun Nov 5 16:20:10 2006 | ||
5 | # | ||
6 | CONFIG_SUPERH=y | ||
7 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
8 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
9 | CONFIG_GENERIC_HWEIGHT=y | ||
10 | CONFIG_GENERIC_HARDIRQS=y | ||
11 | CONFIG_GENERIC_IRQ_PROBE=y | ||
12 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
13 | # CONFIG_GENERIC_TIME is not set | ||
14 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
15 | |||
16 | # | ||
17 | # Code maturity level options | ||
18 | # | ||
19 | CONFIG_EXPERIMENTAL=y | ||
20 | CONFIG_BROKEN_ON_SMP=y | ||
21 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
22 | |||
23 | # | ||
24 | # General setup | ||
25 | # | ||
26 | CONFIG_LOCALVERSION="" | ||
27 | # CONFIG_LOCALVERSION_AUTO is not set | ||
28 | # CONFIG_SYSVIPC is not set | ||
29 | # CONFIG_POSIX_MQUEUE is not set | ||
30 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
31 | # CONFIG_TASKSTATS is not set | ||
32 | # CONFIG_UTS_NS is not set | ||
33 | # CONFIG_AUDIT is not set | ||
34 | # CONFIG_IKCONFIG is not set | ||
35 | # CONFIG_RELAY is not set | ||
36 | CONFIG_INITRAMFS_SOURCE="" | ||
37 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
38 | CONFIG_SYSCTL=y | ||
39 | CONFIG_EMBEDDED=y | ||
40 | CONFIG_UID16=y | ||
41 | # CONFIG_SYSCTL_SYSCALL is not set | ||
42 | CONFIG_KALLSYMS=y | ||
43 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
44 | # CONFIG_HOTPLUG is not set | ||
45 | CONFIG_PRINTK=y | ||
46 | CONFIG_BUG=y | ||
47 | CONFIG_ELF_CORE=y | ||
48 | CONFIG_BASE_FULL=y | ||
49 | # CONFIG_FUTEX is not set | ||
50 | # CONFIG_EPOLL is not set | ||
51 | CONFIG_SLAB=y | ||
52 | CONFIG_VM_EVENT_COUNTERS=y | ||
53 | CONFIG_TINY_SHMEM=y | ||
54 | CONFIG_BASE_SMALL=0 | ||
55 | # CONFIG_SLOB is not set | ||
56 | |||
57 | # | ||
58 | # Loadable module support | ||
59 | # | ||
60 | # CONFIG_MODULES is not set | ||
61 | |||
62 | # | ||
63 | # Block layer | ||
64 | # | ||
65 | CONFIG_BLOCK=y | ||
66 | # CONFIG_LBD is not set | ||
67 | # CONFIG_LSF is not set | ||
68 | |||
69 | # | ||
70 | # IO Schedulers | ||
71 | # | ||
72 | CONFIG_IOSCHED_NOOP=y | ||
73 | # CONFIG_IOSCHED_AS is not set | ||
74 | # CONFIG_IOSCHED_DEADLINE is not set | ||
75 | # CONFIG_IOSCHED_CFQ is not set | ||
76 | # CONFIG_DEFAULT_AS is not set | ||
77 | # CONFIG_DEFAULT_DEADLINE is not set | ||
78 | # CONFIG_DEFAULT_CFQ is not set | ||
79 | CONFIG_DEFAULT_NOOP=y | ||
80 | CONFIG_DEFAULT_IOSCHED="noop" | ||
81 | |||
82 | # | ||
83 | # System type | ||
84 | # | ||
85 | # CONFIG_SH_SOLUTION_ENGINE is not set | ||
86 | # CONFIG_SH_7751_SOLUTION_ENGINE is not set | ||
87 | # CONFIG_SH_7300_SOLUTION_ENGINE is not set | ||
88 | # CONFIG_SH_7343_SOLUTION_ENGINE is not set | ||
89 | # CONFIG_SH_73180_SOLUTION_ENGINE is not set | ||
90 | # CONFIG_SH_7751_SYSTEMH is not set | ||
91 | # CONFIG_SH_HP6XX is not set | ||
92 | # CONFIG_SH_EC3104 is not set | ||
93 | # CONFIG_SH_SATURN is not set | ||
94 | # CONFIG_SH_DREAMCAST is not set | ||
95 | # CONFIG_SH_BIGSUR is not set | ||
96 | # CONFIG_SH_MPC1211 is not set | ||
97 | # CONFIG_SH_SH03 is not set | ||
98 | # CONFIG_SH_SECUREEDGE5410 is not set | ||
99 | # CONFIG_SH_HS7751RVOIP is not set | ||
100 | # CONFIG_SH_7710VOIPGW is not set | ||
101 | # CONFIG_SH_RTS7751R2D is not set | ||
102 | # CONFIG_SH_R7780RP is not set | ||
103 | # CONFIG_SH_EDOSK7705 is not set | ||
104 | # CONFIG_SH_SH4202_MICRODEV is not set | ||
105 | # CONFIG_SH_LANDISK is not set | ||
106 | # CONFIG_SH_TITAN is not set | ||
107 | # CONFIG_SH_SHMIN is not set | ||
108 | CONFIG_SH_7206_SOLUTION_ENGINE=y | ||
109 | # CONFIG_SH_7619_SOLUTION_ENGINE is not set | ||
110 | # CONFIG_SH_UNKNOWN is not set | ||
111 | |||
112 | # | ||
113 | # Processor selection | ||
114 | # | ||
115 | CONFIG_CPU_SH2=y | ||
116 | CONFIG_CPU_SH2A=y | ||
117 | |||
118 | # | ||
119 | # SH-2 Processor Support | ||
120 | # | ||
121 | # CONFIG_CPU_SUBTYPE_SH7604 is not set | ||
122 | # CONFIG_CPU_SUBTYPE_SH7619 is not set | ||
123 | |||
124 | # | ||
125 | # SH-2A Processor Support | ||
126 | # | ||
127 | CONFIG_CPU_SUBTYPE_SH7206=y | ||
128 | |||
129 | # | ||
130 | # SH-3 Processor Support | ||
131 | # | ||
132 | # CONFIG_CPU_SUBTYPE_SH7300 is not set | ||
133 | # CONFIG_CPU_SUBTYPE_SH7705 is not set | ||
134 | # CONFIG_CPU_SUBTYPE_SH7706 is not set | ||
135 | # CONFIG_CPU_SUBTYPE_SH7707 is not set | ||
136 | # CONFIG_CPU_SUBTYPE_SH7708 is not set | ||
137 | # CONFIG_CPU_SUBTYPE_SH7709 is not set | ||
138 | # CONFIG_CPU_SUBTYPE_SH7710 is not set | ||
139 | |||
140 | # | ||
141 | # SH-4 Processor Support | ||
142 | # | ||
143 | # CONFIG_CPU_SUBTYPE_SH7750 is not set | ||
144 | # CONFIG_CPU_SUBTYPE_SH7091 is not set | ||
145 | # CONFIG_CPU_SUBTYPE_SH7750R is not set | ||
146 | # CONFIG_CPU_SUBTYPE_SH7750S is not set | ||
147 | # CONFIG_CPU_SUBTYPE_SH7751 is not set | ||
148 | # CONFIG_CPU_SUBTYPE_SH7751R is not set | ||
149 | # CONFIG_CPU_SUBTYPE_SH7760 is not set | ||
150 | # CONFIG_CPU_SUBTYPE_SH4_202 is not set | ||
151 | |||
152 | # | ||
153 | # ST40 Processor Support | ||
154 | # | ||
155 | # CONFIG_CPU_SUBTYPE_ST40STB1 is not set | ||
156 | # CONFIG_CPU_SUBTYPE_ST40GX1 is not set | ||
157 | |||
158 | # | ||
159 | # SH-4A Processor Support | ||
160 | # | ||
161 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | ||
162 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | ||
163 | |||
164 | # | ||
165 | # SH4AL-DSP Processor Support | ||
166 | # | ||
167 | # CONFIG_CPU_SUBTYPE_SH73180 is not set | ||
168 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | ||
169 | |||
170 | # | ||
171 | # Memory management options | ||
172 | # | ||
173 | CONFIG_PAGE_OFFSET=0x00000000 | ||
174 | CONFIG_MEMORY_START=0x0c000000 | ||
175 | CONFIG_MEMORY_SIZE=0x02000000 | ||
176 | CONFIG_SELECT_MEMORY_MODEL=y | ||
177 | CONFIG_FLATMEM_MANUAL=y | ||
178 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
179 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
180 | CONFIG_FLATMEM=y | ||
181 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
182 | # CONFIG_SPARSEMEM_STATIC is not set | ||
183 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
184 | # CONFIG_RESOURCES_64BIT is not set | ||
185 | |||
186 | # | ||
187 | # Cache configuration | ||
188 | # | ||
189 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
190 | # CONFIG_SH_WRITETHROUGH is not set | ||
191 | # CONFIG_SH_OCRAM is not set | ||
192 | |||
193 | # | ||
194 | # Processor features | ||
195 | # | ||
196 | # CONFIG_CPU_LITTLE_ENDIAN is not set | ||
197 | # CONFIG_SH_FPU is not set | ||
198 | # CONFIG_SH_FPU_EMU is not set | ||
199 | # CONFIG_SH_DSP is not set | ||
200 | |||
201 | # | ||
202 | # Timer support | ||
203 | # | ||
204 | CONFIG_SH_CMT=y | ||
205 | # CONFIG_SH_MTU2 is not set | ||
206 | CONFIG_SH_PCLK_FREQ=33333333 | ||
207 | CONFIG_SH_CLK_MD=6 | ||
208 | |||
209 | # | ||
210 | # CPU Frequency scaling | ||
211 | # | ||
212 | # CONFIG_CPU_FREQ is not set | ||
213 | |||
214 | # | ||
215 | # DMA support | ||
216 | # | ||
217 | # CONFIG_SH_DMA is not set | ||
218 | |||
219 | # | ||
220 | # Companion Chips | ||
221 | # | ||
222 | # CONFIG_HD6446X_SERIES is not set | ||
223 | |||
224 | # | ||
225 | # Kernel features | ||
226 | # | ||
227 | CONFIG_HZ_100=y | ||
228 | # CONFIG_HZ_250 is not set | ||
229 | # CONFIG_HZ_1000 is not set | ||
230 | CONFIG_HZ=100 | ||
231 | # CONFIG_KEXEC is not set | ||
232 | # CONFIG_SMP is not set | ||
233 | CONFIG_PREEMPT_NONE=y | ||
234 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
235 | # CONFIG_PREEMPT is not set | ||
236 | |||
237 | # | ||
238 | # Boot options | ||
239 | # | ||
240 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 | ||
241 | CONFIG_BOOT_LINK_OFFSET=0x00800000 | ||
242 | # CONFIG_UBC_WAKEUP is not set | ||
243 | # CONFIG_CMDLINE_BOOL is not set | ||
244 | |||
245 | # | ||
246 | # Bus options | ||
247 | # | ||
248 | # CONFIG_PCI is not set | ||
249 | |||
250 | # | ||
251 | # PCCARD (PCMCIA/CardBus) support | ||
252 | # | ||
253 | |||
254 | # | ||
255 | # PCI Hotplug Support | ||
256 | # | ||
257 | |||
258 | # | ||
259 | # Executable file formats | ||
260 | # | ||
261 | CONFIG_BINFMT_FLAT=y | ||
262 | CONFIG_BINFMT_ZFLAT=y | ||
263 | # CONFIG_BINFMT_SHARED_FLAT is not set | ||
264 | # CONFIG_BINFMT_MISC is not set | ||
265 | |||
266 | # | ||
267 | # Power management options (EXPERIMENTAL) | ||
268 | # | ||
269 | # CONFIG_PM is not set | ||
270 | |||
271 | # | ||
272 | # Networking | ||
273 | # | ||
274 | CONFIG_NET=y | ||
275 | |||
276 | # | ||
277 | # Networking options | ||
278 | # | ||
279 | # CONFIG_NETDEBUG is not set | ||
280 | # CONFIG_PACKET is not set | ||
281 | # CONFIG_UNIX is not set | ||
282 | CONFIG_XFRM=y | ||
283 | # CONFIG_XFRM_USER is not set | ||
284 | # CONFIG_XFRM_SUB_POLICY is not set | ||
285 | # CONFIG_NET_KEY is not set | ||
286 | CONFIG_INET=y | ||
287 | # CONFIG_IP_MULTICAST is not set | ||
288 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
289 | CONFIG_IP_FIB_HASH=y | ||
290 | # CONFIG_IP_PNP is not set | ||
291 | # CONFIG_NET_IPIP is not set | ||
292 | # CONFIG_NET_IPGRE is not set | ||
293 | # CONFIG_ARPD is not set | ||
294 | # CONFIG_SYN_COOKIES is not set | ||
295 | # CONFIG_INET_AH is not set | ||
296 | # CONFIG_INET_ESP is not set | ||
297 | # CONFIG_INET_IPCOMP is not set | ||
298 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
299 | # CONFIG_INET_TUNNEL is not set | ||
300 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
301 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
302 | CONFIG_INET_XFRM_MODE_BEET=y | ||
303 | # CONFIG_INET_DIAG is not set | ||
304 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
305 | CONFIG_TCP_CONG_CUBIC=y | ||
306 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
307 | # CONFIG_IPV6 is not set | ||
308 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
309 | # CONFIG_INET6_TUNNEL is not set | ||
310 | # CONFIG_NETWORK_SECMARK is not set | ||
311 | # CONFIG_NETFILTER is not set | ||
312 | |||
313 | # | ||
314 | # DCCP Configuration (EXPERIMENTAL) | ||
315 | # | ||
316 | # CONFIG_IP_DCCP is not set | ||
317 | |||
318 | # | ||
319 | # SCTP Configuration (EXPERIMENTAL) | ||
320 | # | ||
321 | # CONFIG_IP_SCTP is not set | ||
322 | |||
323 | # | ||
324 | # TIPC Configuration (EXPERIMENTAL) | ||
325 | # | ||
326 | # CONFIG_TIPC is not set | ||
327 | # CONFIG_ATM is not set | ||
328 | # CONFIG_BRIDGE is not set | ||
329 | # CONFIG_VLAN_8021Q is not set | ||
330 | # CONFIG_DECNET is not set | ||
331 | # CONFIG_LLC2 is not set | ||
332 | # CONFIG_IPX is not set | ||
333 | # CONFIG_ATALK is not set | ||
334 | # CONFIG_X25 is not set | ||
335 | # CONFIG_LAPB is not set | ||
336 | # CONFIG_ECONET is not set | ||
337 | # CONFIG_WAN_ROUTER is not set | ||
338 | |||
339 | # | ||
340 | # QoS and/or fair queueing | ||
341 | # | ||
342 | # CONFIG_NET_SCHED is not set | ||
343 | |||
344 | # | ||
345 | # Network testing | ||
346 | # | ||
347 | # CONFIG_NET_PKTGEN is not set | ||
348 | # CONFIG_HAMRADIO is not set | ||
349 | # CONFIG_IRDA is not set | ||
350 | # CONFIG_BT is not set | ||
351 | # CONFIG_IEEE80211 is not set | ||
352 | |||
353 | # | ||
354 | # Device Drivers | ||
355 | # | ||
356 | |||
357 | # | ||
358 | # Generic Driver Options | ||
359 | # | ||
360 | # CONFIG_STANDALONE is not set | ||
361 | # CONFIG_PREVENT_FIRMWARE_BUILD is not set | ||
362 | # CONFIG_SYS_HYPERVISOR is not set | ||
363 | |||
364 | # | ||
365 | # Connector - unified userspace <-> kernelspace linker | ||
366 | # | ||
367 | # CONFIG_CONNECTOR is not set | ||
368 | |||
369 | # | ||
370 | # Memory Technology Devices (MTD) | ||
371 | # | ||
372 | CONFIG_MTD=y | ||
373 | # CONFIG_MTD_DEBUG is not set | ||
374 | # CONFIG_MTD_CONCAT is not set | ||
375 | CONFIG_MTD_PARTITIONS=y | ||
376 | CONFIG_MTD_REDBOOT_PARTS=y | ||
377 | CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 | ||
378 | # CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set | ||
379 | # CONFIG_MTD_REDBOOT_PARTS_READONLY is not set | ||
380 | # CONFIG_MTD_CMDLINE_PARTS is not set | ||
381 | |||
382 | # | ||
383 | # User Modules And Translation Layers | ||
384 | # | ||
385 | CONFIG_MTD_CHAR=y | ||
386 | CONFIG_MTD_BLOCK=y | ||
387 | # CONFIG_FTL is not set | ||
388 | # CONFIG_NFTL is not set | ||
389 | # CONFIG_INFTL is not set | ||
390 | # CONFIG_RFD_FTL is not set | ||
391 | # CONFIG_SSFDC is not set | ||
392 | |||
393 | # | ||
394 | # RAM/ROM/Flash chip drivers | ||
395 | # | ||
396 | CONFIG_MTD_CFI=y | ||
397 | # CONFIG_MTD_JEDECPROBE is not set | ||
398 | CONFIG_MTD_GEN_PROBE=y | ||
399 | # CONFIG_MTD_CFI_ADV_OPTIONS is not set | ||
400 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
401 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
402 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
403 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
404 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
405 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
406 | CONFIG_MTD_CFI_I1=y | ||
407 | CONFIG_MTD_CFI_I2=y | ||
408 | # CONFIG_MTD_CFI_I4 is not set | ||
409 | # CONFIG_MTD_CFI_I8 is not set | ||
410 | # CONFIG_MTD_CFI_INTELEXT is not set | ||
411 | CONFIG_MTD_CFI_AMDSTD=y | ||
412 | # CONFIG_MTD_CFI_STAA is not set | ||
413 | CONFIG_MTD_CFI_UTIL=y | ||
414 | # CONFIG_MTD_RAM is not set | ||
415 | # CONFIG_MTD_ROM is not set | ||
416 | # CONFIG_MTD_ABSENT is not set | ||
417 | # CONFIG_MTD_OBSOLETE_CHIPS is not set | ||
418 | |||
419 | # | ||
420 | # Mapping drivers for chip access | ||
421 | # | ||
422 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | ||
423 | CONFIG_MTD_PHYSMAP=y | ||
424 | CONFIG_MTD_PHYSMAP_START=0x20000000 | ||
425 | CONFIG_MTD_PHYSMAP_LEN=0x1000000 | ||
426 | CONFIG_MTD_PHYSMAP_BANKWIDTH=4 | ||
427 | # CONFIG_MTD_SOLUTIONENGINE is not set | ||
428 | # CONFIG_MTD_UCLINUX is not set | ||
429 | # CONFIG_MTD_PLATRAM is not set | ||
430 | |||
431 | # | ||
432 | # Self-contained MTD device drivers | ||
433 | # | ||
434 | # CONFIG_MTD_SLRAM is not set | ||
435 | # CONFIG_MTD_PHRAM is not set | ||
436 | # CONFIG_MTD_MTDRAM is not set | ||
437 | # CONFIG_MTD_BLOCK2MTD is not set | ||
438 | |||
439 | # | ||
440 | # Disk-On-Chip Device Drivers | ||
441 | # | ||
442 | # CONFIG_MTD_DOC2000 is not set | ||
443 | # CONFIG_MTD_DOC2001 is not set | ||
444 | # CONFIG_MTD_DOC2001PLUS is not set | ||
445 | |||
446 | # | ||
447 | # NAND Flash Device Drivers | ||
448 | # | ||
449 | # CONFIG_MTD_NAND is not set | ||
450 | |||
451 | # | ||
452 | # OneNAND Flash Device Drivers | ||
453 | # | ||
454 | # CONFIG_MTD_ONENAND is not set | ||
455 | |||
456 | # | ||
457 | # Parallel port support | ||
458 | # | ||
459 | # CONFIG_PARPORT is not set | ||
460 | |||
461 | # | ||
462 | # Plug and Play support | ||
463 | # | ||
464 | |||
465 | # | ||
466 | # Block devices | ||
467 | # | ||
468 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
469 | # CONFIG_BLK_DEV_LOOP is not set | ||
470 | # CONFIG_BLK_DEV_NBD is not set | ||
471 | CONFIG_BLK_DEV_RAM=y | ||
472 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
473 | CONFIG_BLK_DEV_RAM_SIZE=4096 | ||
474 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
475 | # CONFIG_BLK_DEV_INITRD is not set | ||
476 | # CONFIG_CDROM_PKTCDVD is not set | ||
477 | # CONFIG_ATA_OVER_ETH is not set | ||
478 | |||
479 | # | ||
480 | # Misc devices | ||
481 | # | ||
482 | # CONFIG_TIFM_CORE is not set | ||
483 | |||
484 | # | ||
485 | # ATA/ATAPI/MFM/RLL support | ||
486 | # | ||
487 | # CONFIG_IDE is not set | ||
488 | |||
489 | # | ||
490 | # SCSI device support | ||
491 | # | ||
492 | # CONFIG_RAID_ATTRS is not set | ||
493 | # CONFIG_SCSI is not set | ||
494 | # CONFIG_SCSI_NETLINK is not set | ||
495 | |||
496 | # | ||
497 | # Serial ATA (prod) and Parallel ATA (experimental) drivers | ||
498 | # | ||
499 | # CONFIG_ATA is not set | ||
500 | |||
501 | # | ||
502 | # Multi-device support (RAID and LVM) | ||
503 | # | ||
504 | # CONFIG_MD is not set | ||
505 | |||
506 | # | ||
507 | # Fusion MPT device support | ||
508 | # | ||
509 | # CONFIG_FUSION is not set | ||
510 | |||
511 | # | ||
512 | # IEEE 1394 (FireWire) support | ||
513 | # | ||
514 | |||
515 | # | ||
516 | # I2O device support | ||
517 | # | ||
518 | |||
519 | # | ||
520 | # Network device support | ||
521 | # | ||
522 | # CONFIG_NETDEVICES is not set | ||
523 | # CONFIG_NETPOLL is not set | ||
524 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
525 | |||
526 | # | ||
527 | # ISDN subsystem | ||
528 | # | ||
529 | # CONFIG_ISDN is not set | ||
530 | |||
531 | # | ||
532 | # Telephony Support | ||
533 | # | ||
534 | # CONFIG_PHONE is not set | ||
535 | |||
536 | # | ||
537 | # Input device support | ||
538 | # | ||
539 | # CONFIG_INPUT is not set | ||
540 | |||
541 | # | ||
542 | # Hardware I/O ports | ||
543 | # | ||
544 | # CONFIG_SERIO is not set | ||
545 | # CONFIG_GAMEPORT is not set | ||
546 | |||
547 | # | ||
548 | # Character devices | ||
549 | # | ||
550 | # CONFIG_VT is not set | ||
551 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
552 | |||
553 | # | ||
554 | # Serial drivers | ||
555 | # | ||
556 | # CONFIG_SERIAL_8250 is not set | ||
557 | |||
558 | # | ||
559 | # Non-8250 serial port support | ||
560 | # | ||
561 | CONFIG_SERIAL_SH_SCI=y | ||
562 | CONFIG_SERIAL_SH_SCI_NR_UARTS=4 | ||
563 | CONFIG_SERIAL_SH_SCI_CONSOLE=y | ||
564 | CONFIG_SERIAL_CORE=y | ||
565 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
566 | # CONFIG_UNIX98_PTYS is not set | ||
567 | CONFIG_LEGACY_PTYS=y | ||
568 | CONFIG_LEGACY_PTY_COUNT=256 | ||
569 | |||
570 | # | ||
571 | # IPMI | ||
572 | # | ||
573 | # CONFIG_IPMI_HANDLER is not set | ||
574 | |||
575 | # | ||
576 | # Watchdog Cards | ||
577 | # | ||
578 | # CONFIG_WATCHDOG is not set | ||
579 | CONFIG_HW_RANDOM=y | ||
580 | # CONFIG_GEN_RTC is not set | ||
581 | # CONFIG_DTLK is not set | ||
582 | # CONFIG_R3964 is not set | ||
583 | |||
584 | # | ||
585 | # Ftape, the floppy tape device driver | ||
586 | # | ||
587 | # CONFIG_RAW_DRIVER is not set | ||
588 | |||
589 | # | ||
590 | # TPM devices | ||
591 | # | ||
592 | # CONFIG_TCG_TPM is not set | ||
593 | |||
594 | # | ||
595 | # I2C support | ||
596 | # | ||
597 | # CONFIG_I2C is not set | ||
598 | |||
599 | # | ||
600 | # SPI support | ||
601 | # | ||
602 | # CONFIG_SPI is not set | ||
603 | # CONFIG_SPI_MASTER is not set | ||
604 | |||
605 | # | ||
606 | # Dallas's 1-wire bus | ||
607 | # | ||
608 | # CONFIG_W1 is not set | ||
609 | |||
610 | # | ||
611 | # Hardware Monitoring support | ||
612 | # | ||
613 | CONFIG_HWMON=y | ||
614 | # CONFIG_HWMON_VID is not set | ||
615 | # CONFIG_SENSORS_ABITUGURU is not set | ||
616 | # CONFIG_SENSORS_F71805F is not set | ||
617 | # CONFIG_SENSORS_VT1211 is not set | ||
618 | # CONFIG_HWMON_DEBUG_CHIP is not set | ||
619 | |||
620 | # | ||
621 | # Multimedia devices | ||
622 | # | ||
623 | # CONFIG_VIDEO_DEV is not set | ||
624 | |||
625 | # | ||
626 | # Digital Video Broadcasting Devices | ||
627 | # | ||
628 | # CONFIG_DVB is not set | ||
629 | |||
630 | # | ||
631 | # Graphics support | ||
632 | # | ||
633 | CONFIG_FIRMWARE_EDID=y | ||
634 | # CONFIG_FB is not set | ||
635 | |||
636 | # | ||
637 | # Sound | ||
638 | # | ||
639 | # CONFIG_SOUND is not set | ||
640 | |||
641 | # | ||
642 | # USB support | ||
643 | # | ||
644 | # CONFIG_USB_ARCH_HAS_HCD is not set | ||
645 | # CONFIG_USB_ARCH_HAS_OHCI is not set | ||
646 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
647 | |||
648 | # | ||
649 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
650 | # | ||
651 | |||
652 | # | ||
653 | # USB Gadget Support | ||
654 | # | ||
655 | # CONFIG_USB_GADGET is not set | ||
656 | |||
657 | # | ||
658 | # MMC/SD Card support | ||
659 | # | ||
660 | # CONFIG_MMC is not set | ||
661 | |||
662 | # | ||
663 | # LED devices | ||
664 | # | ||
665 | # CONFIG_NEW_LEDS is not set | ||
666 | |||
667 | # | ||
668 | # LED drivers | ||
669 | # | ||
670 | |||
671 | # | ||
672 | # LED Triggers | ||
673 | # | ||
674 | |||
675 | # | ||
676 | # InfiniBand support | ||
677 | # | ||
678 | |||
679 | # | ||
680 | # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) | ||
681 | # | ||
682 | |||
683 | # | ||
684 | # Real Time Clock | ||
685 | # | ||
686 | # CONFIG_RTC_CLASS is not set | ||
687 | |||
688 | # | ||
689 | # DMA Engine support | ||
690 | # | ||
691 | # CONFIG_DMA_ENGINE is not set | ||
692 | |||
693 | # | ||
694 | # DMA Clients | ||
695 | # | ||
696 | |||
697 | # | ||
698 | # DMA Devices | ||
699 | # | ||
700 | |||
701 | # | ||
702 | # File systems | ||
703 | # | ||
704 | CONFIG_EXT2_FS=y | ||
705 | # CONFIG_EXT2_FS_XATTR is not set | ||
706 | # CONFIG_EXT3_FS is not set | ||
707 | # CONFIG_EXT4DEV_FS is not set | ||
708 | # CONFIG_REISERFS_FS is not set | ||
709 | # CONFIG_JFS_FS is not set | ||
710 | # CONFIG_FS_POSIX_ACL is not set | ||
711 | # CONFIG_XFS_FS is not set | ||
712 | # CONFIG_GFS2_FS is not set | ||
713 | # CONFIG_MINIX_FS is not set | ||
714 | CONFIG_ROMFS_FS=y | ||
715 | # CONFIG_INOTIFY is not set | ||
716 | # CONFIG_QUOTA is not set | ||
717 | # CONFIG_DNOTIFY is not set | ||
718 | # CONFIG_AUTOFS_FS is not set | ||
719 | # CONFIG_AUTOFS4_FS is not set | ||
720 | # CONFIG_FUSE_FS is not set | ||
721 | |||
722 | # | ||
723 | # CD-ROM/DVD Filesystems | ||
724 | # | ||
725 | # CONFIG_ISO9660_FS is not set | ||
726 | # CONFIG_UDF_FS is not set | ||
727 | |||
728 | # | ||
729 | # DOS/FAT/NT Filesystems | ||
730 | # | ||
731 | # CONFIG_MSDOS_FS is not set | ||
732 | # CONFIG_VFAT_FS is not set | ||
733 | # CONFIG_NTFS_FS is not set | ||
734 | |||
735 | # | ||
736 | # Pseudo filesystems | ||
737 | # | ||
738 | CONFIG_PROC_FS=y | ||
739 | CONFIG_PROC_SYSCTL=y | ||
740 | # CONFIG_SYSFS is not set | ||
741 | # CONFIG_TMPFS is not set | ||
742 | # CONFIG_HUGETLBFS is not set | ||
743 | # CONFIG_HUGETLB_PAGE is not set | ||
744 | CONFIG_RAMFS=y | ||
745 | |||
746 | # | ||
747 | # Miscellaneous filesystems | ||
748 | # | ||
749 | # CONFIG_ADFS_FS is not set | ||
750 | # CONFIG_AFFS_FS is not set | ||
751 | # CONFIG_HFS_FS is not set | ||
752 | # CONFIG_HFSPLUS_FS is not set | ||
753 | # CONFIG_BEFS_FS is not set | ||
754 | # CONFIG_BFS_FS is not set | ||
755 | # CONFIG_EFS_FS is not set | ||
756 | # CONFIG_JFFS_FS is not set | ||
757 | # CONFIG_JFFS2_FS is not set | ||
758 | CONFIG_CRAMFS=y | ||
759 | # CONFIG_VXFS_FS is not set | ||
760 | # CONFIG_HPFS_FS is not set | ||
761 | # CONFIG_QNX4FS_FS is not set | ||
762 | # CONFIG_SYSV_FS is not set | ||
763 | # CONFIG_UFS_FS is not set | ||
764 | |||
765 | # | ||
766 | # Network File Systems | ||
767 | # | ||
768 | # CONFIG_NFS_FS is not set | ||
769 | # CONFIG_NFSD is not set | ||
770 | # CONFIG_SMB_FS is not set | ||
771 | # CONFIG_CIFS is not set | ||
772 | # CONFIG_NCP_FS is not set | ||
773 | # CONFIG_CODA_FS is not set | ||
774 | # CONFIG_AFS_FS is not set | ||
775 | # CONFIG_9P_FS is not set | ||
776 | |||
777 | # | ||
778 | # Partition Types | ||
779 | # | ||
780 | # CONFIG_PARTITION_ADVANCED is not set | ||
781 | CONFIG_MSDOS_PARTITION=y | ||
782 | |||
783 | # | ||
784 | # Native Language Support | ||
785 | # | ||
786 | # CONFIG_NLS is not set | ||
787 | |||
788 | # | ||
789 | # Profiling support | ||
790 | # | ||
791 | # CONFIG_PROFILING is not set | ||
792 | |||
793 | # | ||
794 | # Kernel hacking | ||
795 | # | ||
796 | # CONFIG_PRINTK_TIME is not set | ||
797 | CONFIG_ENABLE_MUST_CHECK=y | ||
798 | # CONFIG_MAGIC_SYSRQ is not set | ||
799 | # CONFIG_UNUSED_SYMBOLS is not set | ||
800 | # CONFIG_DEBUG_KERNEL is not set | ||
801 | CONFIG_LOG_BUF_SHIFT=14 | ||
802 | # CONFIG_DEBUG_BUGVERBOSE is not set | ||
803 | # CONFIG_UNWIND_INFO is not set | ||
804 | # CONFIG_HEADERS_CHECK is not set | ||
805 | # CONFIG_SH_STANDARD_BIOS is not set | ||
806 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
807 | # CONFIG_KGDB is not set | ||
808 | |||
809 | # | ||
810 | # Security options | ||
811 | # | ||
812 | # CONFIG_KEYS is not set | ||
813 | |||
814 | # | ||
815 | # Cryptographic options | ||
816 | # | ||
817 | # CONFIG_CRYPTO is not set | ||
818 | |||
819 | # | ||
820 | # Library routines | ||
821 | # | ||
822 | CONFIG_CRC_CCITT=y | ||
823 | # CONFIG_CRC16 is not set | ||
824 | CONFIG_CRC32=y | ||
825 | # CONFIG_LIBCRC32C is not set | ||
826 | CONFIG_ZLIB_INFLATE=y | ||