···51515252menu "System type"53535454+config SOLUTION_ENGINE5555+ bool5656+5457choice5558 prompt "SuperH system type"5659 default SH_UNKNOWN57605861config SH_SOLUTION_ENGINE5962 bool "SolutionEngine"6363+ select SOLUTION_ENGINE6064 help6165 Select SolutionEngine if configuring for a Hitachi SH77096266 or SH7750 evaluation board.63676468config SH_7751_SOLUTION_ENGINE6569 bool "SolutionEngine7751"7070+ select SOLUTION_ENGINE6671 select CPU_SUBTYPE_SH77516772 help6873 Select 7751 SolutionEngine if configuring for a Hitachi SH7751···75707671config SH_7300_SOLUTION_ENGINE7772 bool "SolutionEngine7300"7373+ select SOLUTION_ENGINE7874 select CPU_SUBTYPE_SH73007975 help8080- Select 7300 SolutionEngine if configuring for a Hitachi SH7300(SH-Mobile V)8181- evaluation board.7676+ Select 7300 SolutionEngine if configuring for a Hitachi7777+ SH7300(SH-Mobile V) evaluation board.7878+7979+config SH_7343_SOLUTION_ENGINE8080+ bool "SolutionEngine7343"8181+ select SOLUTION_ENGINE8282+ select CPU_SUBTYPE_SH73438383+ help8484+ Select 7343 SolutionEngine if configuring for a Hitachi8585+ SH7343 (SH-Mobile 3AS) evaluation board.82868387config SH_73180_SOLUTION_ENGINE8488 bool "SolutionEngine73180"8585- select CPU_SUBTYPE_SH731808686- help8787- Select 73180 SolutionEngine if configuring for a Hitachi SH73180(SH-Mobile 3)8888- evaluation board.8989+ select SOLUTION_ENGINE9090+ select CPU_SUBTYPE_SH731809191+ help9292+ Select 73180 SolutionEngine if configuring for a Hitachi9393+ SH73180(SH-Mobile 3) evaluation board.89949095config SH_7751_SYSTEMH9196 bool "SystemH7751R"···409394config HEARTBEAT410395 bool "Heartbeat LED"411396 depends on SH_MPC1211 || SH_SH03 || \412412- SH_BIGSUR || \413413- SH_7751_SOLUTION_ENGINE || SH_7300_SOLUTION_ENGINE || \414414- SH_73180_SOLUTION_ENGINE || SH_SOLUTION_ENGINE || \397397+ SH_BIGSUR || SOLUTION_ENGINE || \415398 SH_RTS7751R2D || SH_SH4202_MICRODEV || SH_LANDISK416399 help417400 Use the power-on LED on your machine as a load meter. The exact···443430 initially work for you. It may help to enable device hotplugging444431 support. As of this writing the exact hardware interface is445432 strongly in flux, so no good recommendation can be made.446446-447447-config PREEMPT448448- bool "Preemptible Kernel (EXPERIMENTAL)"449449- depends on EXPERIMENTAL450433451434config SMP452435 bool "Symmetric multi-processing support"
···11+#22+# Makefile for the 7343 SolutionEngine specific parts of the kernel33+#44+55+obj-y := setup.o io.o irq.o66+77+obj-$(CONFIG_HEARTBEAT) += led.o
+275
arch/sh/boards/se/7343/io.c
···11+/*22+ * arch/sh/boards/se/7343/io.c33+ *44+ * I/O routine for SH-Mobile3AS 7343 SolutionEngine.55+ *66+ */77+88+#include <linux/config.h>99+#include <linux/kernel.h>1010+#include <asm/io.h>1111+#include <asm/mach/se7343.h>1212+1313+#define badio(fn, a) panic("bad i/o operation %s for %08lx.", #fn, a)1414+1515+struct iop {1616+ unsigned long start, end;1717+ unsigned long base;1818+ struct iop *(*check) (struct iop * p, unsigned long port);1919+ unsigned char (*inb) (struct iop * p, unsigned long port);2020+ unsigned short (*inw) (struct iop * p, unsigned long port);2121+ void (*outb) (struct iop * p, unsigned char value, unsigned long port);2222+ void (*outw) (struct iop * p, unsigned short value, unsigned long port);2323+};2424+2525+struct iop *2626+simple_check(struct iop *p, unsigned long port)2727+{2828+ static int count;2929+3030+ if (count < 100)3131+ count++;3232+3333+ port &= 0xFFFF;3434+3535+ if ((p->start <= port) && (port <= p->end))3636+ return p;3737+ else3838+ badio(check, port);3939+}4040+4141+struct iop *4242+ide_check(struct iop *p, unsigned long port)4343+{4444+ if (((0x1f0 <= port) && (port <= 0x1f7)) || (port == 0x3f7))4545+ return p;4646+ return NULL;4747+}4848+4949+unsigned char5050+simple_inb(struct iop *p, unsigned long port)5151+{5252+ return *(unsigned char *) (p->base + port);5353+}5454+5555+unsigned short5656+simple_inw(struct iop *p, unsigned long port)5757+{5858+ return *(unsigned short *) (p->base + port);5959+}6060+6161+void6262+simple_outb(struct iop *p, unsigned char value, unsigned long port)6363+{6464+ *(unsigned char *) (p->base + port) = value;6565+}6666+6767+void6868+simple_outw(struct iop *p, unsigned short value, unsigned long port)6969+{7070+ *(unsigned short *) (p->base + port) = value;7171+}7272+7373+unsigned char7474+pcc_inb(struct iop *p, unsigned long port)7575+{7676+ unsigned long addr = p->base + port + 0x40000;7777+ unsigned long v;7878+7979+ if (port & 1)8080+ addr += 0x00400000;8181+ v = *(volatile unsigned char *) addr;8282+ return v;8383+}8484+8585+void8686+pcc_outb(struct iop *p, unsigned char value, unsigned long port)8787+{8888+ unsigned long addr = p->base + port + 0x40000;8989+9090+ if (port & 1)9191+ addr += 0x00400000;9292+ *(volatile unsigned char *) addr = value;9393+}9494+9595+unsigned char9696+bad_inb(struct iop *p, unsigned long port)9797+{9898+ badio(inb, port);9999+}100100+101101+void102102+bad_outb(struct iop *p, unsigned char value, unsigned long port)103103+{104104+ badio(inw, port);105105+}106106+107107+#ifdef CONFIG_SMC91X108108+/* MSTLANEX01 LAN at 0xb400:0000 */109109+static struct iop laniop = {110110+ .start = 0x00,111111+ .end = 0x0F,112112+ .base = 0x04000000,113113+ .check = simple_check,114114+ .inb = simple_inb,115115+ .inw = simple_inw,116116+ .outb = simple_outb,117117+ .outw = simple_outw,118118+};119119+#endif120120+121121+#ifdef CONFIG_NE2000122122+/* NE2000 pc card NIC */123123+static struct iop neiop = {124124+ .start = 0x280,125125+ .end = 0x29f,126126+ .base = 0xb0600000 + 0x80, /* soft 0x280 -> hard 0x300 */127127+ .check = simple_check,128128+ .inb = pcc_inb,129129+ .inw = simple_inw,130130+ .outb = pcc_outb,131131+ .outw = simple_outw,132132+};133133+#endif134134+135135+#ifdef CONFIG_IDE136136+/* CF in CF slot */137137+static struct iop cfiop = {138138+ .base = 0xb0600000,139139+ .check = ide_check,140140+ .inb = pcc_inb,141141+ .inw = simple_inw,142142+ .outb = pcc_outb,143143+ .outw = simple_outw,144144+};145145+#endif146146+147147+static __inline__ struct iop *148148+port2iop(unsigned long port)149149+{150150+ if (0) ;151151+#if defined(CONFIG_SMC91X)152152+ else if (laniop.check(&laniop, port))153153+ return &laniop;154154+#endif155155+#if defined(CONFIG_NE2000)156156+ else if (neiop.check(&neiop, port))157157+ return &neiop;158158+#endif159159+#if defined(CONFIG_IDE)160160+ else if (cfiop.check(&cfiop, port))161161+ return &cfiop;162162+#endif163163+ else164164+ return NULL;165165+}166166+167167+static inline void168168+delay(void)169169+{170170+ ctrl_inw(0xac000000);171171+ ctrl_inw(0xac000000);172172+}173173+174174+unsigned char175175+sh7343se_inb(unsigned long port)176176+{177177+ struct iop *p = port2iop(port);178178+ return (p->inb) (p, port);179179+}180180+181181+unsigned char182182+sh7343se_inb_p(unsigned long port)183183+{184184+ unsigned char v = sh7343se_inb(port);185185+ delay();186186+ return v;187187+}188188+189189+unsigned short190190+sh7343se_inw(unsigned long port)191191+{192192+ struct iop *p = port2iop(port);193193+ return (p->inw) (p, port);194194+}195195+196196+unsigned int197197+sh7343se_inl(unsigned long port)198198+{199199+ badio(inl, port);200200+}201201+202202+void203203+sh7343se_outb(unsigned char value, unsigned long port)204204+{205205+ struct iop *p = port2iop(port);206206+ (p->outb) (p, value, port);207207+}208208+209209+void210210+sh7343se_outb_p(unsigned char value, unsigned long port)211211+{212212+ sh7343se_outb(value, port);213213+ delay();214214+}215215+216216+void217217+sh7343se_outw(unsigned short value, unsigned long port)218218+{219219+ struct iop *p = port2iop(port);220220+ (p->outw) (p, value, port);221221+}222222+223223+void224224+sh7343se_outl(unsigned int value, unsigned long port)225225+{226226+ badio(outl, port);227227+}228228+229229+void230230+sh7343se_insb(unsigned long port, void *addr, unsigned long count)231231+{232232+ unsigned char *a = addr;233233+ struct iop *p = port2iop(port);234234+ while (count--)235235+ *a++ = (p->inb) (p, port);236236+}237237+238238+void239239+sh7343se_insw(unsigned long port, void *addr, unsigned long count)240240+{241241+ unsigned short *a = addr;242242+ struct iop *p = port2iop(port);243243+ while (count--)244244+ *a++ = (p->inw) (p, port);245245+}246246+247247+void248248+sh7343se_insl(unsigned long port, void *addr, unsigned long count)249249+{250250+ badio(insl, port);251251+}252252+253253+void254254+sh7343se_outsb(unsigned long port, const void *addr, unsigned long count)255255+{256256+ unsigned char *a = (unsigned char *) addr;257257+ struct iop *p = port2iop(port);258258+ while (count--)259259+ (p->outb) (p, *a++, port);260260+}261261+262262+void263263+sh7343se_outsw(unsigned long port, const void *addr, unsigned long count)264264+{265265+ unsigned short *a = (unsigned short *) addr;266266+ struct iop *p = port2iop(port);267267+ while (count--)268268+ (p->outw) (p, *a++, port);269269+}270270+271271+void272272+sh7343se_outsl(unsigned long port, const void *addr, unsigned long count)273273+{274274+ badio(outsw, port);275275+}
+193
arch/sh/boards/se/7343/irq.c
···11+/*22+ * arch/sh/boards/se/7343/irq.c33+ *44+ */55+66+#include <linux/config.h>77+#include <linux/init.h>88+#include <linux/interrupt.h>99+#include <linux/irq.h>1010+#include <asm/irq.h>1111+#include <asm/io.h>1212+#include <asm/mach/se7343.h>1313+1414+static void1515+disable_intreq_irq(unsigned int irq)1616+{1717+ int bit = irq - OFFCHIP_IRQ_BASE;1818+ u16 val;1919+2020+ val = ctrl_inw(PA_CPLD_IMSK);2121+ val |= 1 << bit;2222+ ctrl_outw(val, PA_CPLD_IMSK);2323+}2424+2525+static void2626+enable_intreq_irq(unsigned int irq)2727+{2828+ int bit = irq - OFFCHIP_IRQ_BASE;2929+ u16 val;3030+3131+ val = ctrl_inw(PA_CPLD_IMSK);3232+ val &= ~(1 << bit);3333+ ctrl_outw(val, PA_CPLD_IMSK);3434+}3535+3636+static void3737+mask_and_ack_intreq_irq(unsigned int irq)3838+{3939+ disable_intreq_irq(irq);4040+}4141+4242+static unsigned int4343+startup_intreq_irq(unsigned int irq)4444+{4545+ enable_intreq_irq(irq);4646+ return 0;4747+}4848+4949+static void5050+shutdown_intreq_irq(unsigned int irq)5151+{5252+ disable_intreq_irq(irq);5353+}5454+5555+static void5656+end_intreq_irq(unsigned int irq)5757+{5858+ if (!(irq_desc[irq].status & (IRQ_DISABLED | IRQ_INPROGRESS)))5959+ enable_intreq_irq(irq);6060+}6161+6262+static struct hw_interrupt_type intreq_irq_type = {6363+ .typename = "FPGA-IRQ",6464+ .startup = startup_intreq_irq,6565+ .shutdown = shutdown_intreq_irq,6666+ .enable = enable_intreq_irq,6767+ .disable = disable_intreq_irq,6868+ .ack = mask_and_ack_intreq_irq,6969+ .end = end_intreq_irq7070+};7171+7272+static void7373+make_intreq_irq(unsigned int irq)7474+{7575+ disable_irq_nosync(irq);7676+ irq_desc[irq].handler = &intreq_irq_type;7777+ disable_intreq_irq(irq);7878+}7979+8080+int8181+shmse_irq_demux(int irq)8282+{8383+ int bit;8484+ volatile u16 val;8585+8686+ if (irq == IRQ5_IRQ) {8787+ /* Read status Register */8888+ val = ctrl_inw(PA_CPLD_ST);8989+ bit = ffs(val);9090+ if (bit != 0)9191+ return OFFCHIP_IRQ_BASE + bit - 1;9292+ }9393+ return irq;9494+}9595+9696+/* IRQ5 is multiplexed between the following sources:9797+ * 1. PC Card socket9898+ * 2. Extension slot9999+ * 3. USB Controller100100+ * 4. Serial Controller101101+ *102102+ * We configure IRQ5 as a cascade IRQ.103103+ */104104+static struct irqaction irq5 = { no_action, 0, CPU_MASK_NONE, "IRQ5-cascade",105105+ NULL, NULL};106106+107107+/*108108+ * Initialize IRQ setting109109+ */110110+void __init111111+init_7343se_IRQ(void)112112+{113113+ /* Setup Multiplexed interrupts */114114+ ctrl_outw(8, PA_CPLD_MODESET); /* Set all CPLD interrupts to active115115+ * low.116116+ */117117+ /* Mask all CPLD controller interrupts */118118+ ctrl_outw(0x0fff, PA_CPLD_IMSK);119119+120120+ /* PC Card interrupts */121121+ make_intreq_irq(PC_IRQ0);122122+ make_intreq_irq(PC_IRQ1);123123+ make_intreq_irq(PC_IRQ2);124124+ make_intreq_irq(PC_IRQ3);125125+126126+ /* Extension Slot Interrupts */127127+ make_intreq_irq(EXT_IRQ0);128128+ make_intreq_irq(EXT_IRQ1);129129+ make_intreq_irq(EXT_IRQ2);130130+ make_intreq_irq(EXT_IRQ3);131131+132132+ /* USB Controller interrupts */133133+ make_intreq_irq(USB_IRQ0);134134+ make_intreq_irq(USB_IRQ1);135135+136136+ /* Serial Controller interrupts */137137+ make_intreq_irq(UART_IRQ0);138138+ make_intreq_irq(UART_IRQ1);139139+140140+ /* Setup all external interrupts to be active low */141141+ ctrl_outw(0xaaaa, INTC_ICR1);142142+143143+ make_ipr_irq(IRQ5_IRQ, IRQ5_IPR_ADDR+2, IRQ5_IPR_POS, IRQ5_PRIORITY);144144+ setup_irq(IRQ5_IRQ, &irq5);145145+ /* Set port control to use IRQ5 */146146+ *(u16 *)0xA4050108 &= ~0xc;147147+148148+ make_ipr_irq(SIOF0_IRQ, SIOF0_IPR_ADDR, SIOF0_IPR_POS, SIOF0_PRIORITY);149149+ make_ipr_irq(VPU_IRQ, VPU_IPR_ADDR, VPU_IPR_POS, 8);150150+151151+ ctrl_outb(0x0f, INTC_IMCR5); /* enable SCIF IRQ */152152+153153+ make_ipr_irq(DMTE0_IRQ, DMA1_IPR_ADDR, DMA1_IPR_POS, DMA1_PRIORITY);154154+ make_ipr_irq(DMTE1_IRQ, DMA1_IPR_ADDR, DMA1_IPR_POS, DMA1_PRIORITY);155155+ make_ipr_irq(DMTE2_IRQ, DMA1_IPR_ADDR, DMA1_IPR_POS, DMA1_PRIORITY);156156+ make_ipr_irq(DMTE3_IRQ, DMA1_IPR_ADDR, DMA1_IPR_POS, DMA1_PRIORITY);157157+ make_ipr_irq(DMTE4_IRQ, DMA2_IPR_ADDR, DMA2_IPR_POS, DMA2_PRIORITY);158158+ make_ipr_irq(DMTE5_IRQ, DMA2_IPR_ADDR, DMA2_IPR_POS, DMA2_PRIORITY);159159+160160+ /* I2C block */161161+ make_ipr_irq(IIC0_ALI_IRQ, IIC0_IPR_ADDR, IIC0_IPR_POS, IIC0_PRIORITY);162162+ make_ipr_irq(IIC0_TACKI_IRQ, IIC0_IPR_ADDR, IIC0_IPR_POS,163163+ IIC0_PRIORITY);164164+ make_ipr_irq(IIC0_WAITI_IRQ, IIC0_IPR_ADDR, IIC0_IPR_POS,165165+ IIC0_PRIORITY);166166+ make_ipr_irq(IIC0_DTEI_IRQ, IIC0_IPR_ADDR, IIC0_IPR_POS, IIC0_PRIORITY);167167+168168+ make_ipr_irq(IIC1_ALI_IRQ, IIC1_IPR_ADDR, IIC1_IPR_POS, IIC1_PRIORITY);169169+ make_ipr_irq(IIC1_TACKI_IRQ, IIC1_IPR_ADDR, IIC1_IPR_POS,170170+ IIC1_PRIORITY);171171+ make_ipr_irq(IIC1_WAITI_IRQ, IIC1_IPR_ADDR, IIC1_IPR_POS,172172+ IIC1_PRIORITY);173173+ make_ipr_irq(IIC1_DTEI_IRQ, IIC1_IPR_ADDR, IIC1_IPR_POS, IIC1_PRIORITY);174174+175175+ /* SIOF */176176+ make_ipr_irq(SIOF0_IRQ, SIOF0_IPR_ADDR, SIOF0_IPR_POS, SIOF0_PRIORITY);177177+178178+ /* SIU */179179+ make_ipr_irq(SIU_IRQ, SIU_IPR_ADDR, SIU_IPR_POS, SIU_PRIORITY);180180+181181+ /* VIO interrupt */182182+ make_ipr_irq(CEU_IRQ, VIO_IPR_ADDR, VIO_IPR_POS, VIO_PRIORITY);183183+ make_ipr_irq(BEU_IRQ, VIO_IPR_ADDR, VIO_IPR_POS, VIO_PRIORITY);184184+ make_ipr_irq(VEU_IRQ, VIO_IPR_ADDR, VIO_IPR_POS, VIO_PRIORITY);185185+186186+ /*MFI interrupt*/187187+188188+ make_ipr_irq(MFI_IRQ, MFI_IPR_ADDR, MFI_IPR_POS, MFI_PRIORITY);189189+190190+ /* LCD controller */191191+ make_ipr_irq(LCDC_IRQ, LCDC_IPR_ADDR, LCDC_IPR_POS, LCDC_PRIORITY);192192+ ctrl_outw(0x2000, PA_MRSHPC + 0x0c); /* mrshpc irq enable */193193+}
+46
arch/sh/boards/se/7343/led.c
···11+/*22+ * arch/sh/boards/se/7343/led.c33+ *44+ */55+66+#include <linux/config.h>77+#include <linux/sched.h>88+#include <asm/mach/se7343.h>99+1010+/* Cycle the LED's in the clasic Knightrider/Sun pattern */1111+void heartbeat_7343se(void)1212+{1313+ static unsigned int cnt = 0, period = 0;1414+ volatile unsigned short *p = (volatile unsigned short *) PA_LED;1515+ static unsigned bit = 0, up = 1;1616+1717+ cnt += 1;1818+ if (cnt < period) {1919+ return;2020+ }2121+2222+ cnt = 0;2323+2424+ /* Go through the points (roughly!):2525+ * f(0)=10, f(1)=16, f(2)=20, f(5)=35,f(inf)->1102626+ */2727+ period = 110 - ((300 << FSHIFT) / ((avenrun[0] / 5) + (3 << FSHIFT)));2828+2929+ if (up) {3030+ if (bit == 7) {3131+ bit--;3232+ up = 0;3333+ } else {3434+ bit++;3535+ }3636+ } else {3737+ if (bit == 0) {3838+ bit++;3939+ up = 1;4040+ } else {4141+ bit--;4242+ }4343+ }4444+ *p = 1 << (bit + LED_SHIFT);4545+4646+}
···11+#22+# Automatically generated make config: don't edit33+# Linux kernel version: 2.6.1744+# Mon Aug 7 20:14:44 200655+#66+CONFIG_SUPERH=y77+CONFIG_RWSEM_GENERIC_SPINLOCK=y88+CONFIG_GENERIC_FIND_NEXT_BIT=y99+CONFIG_GENERIC_HWEIGHT=y1010+CONFIG_GENERIC_HARDIRQS=y1111+CONFIG_GENERIC_IRQ_PROBE=y1212+CONFIG_GENERIC_CALIBRATE_DELAY=y1313+1414+#1515+# Code maturity level options1616+#1717+CONFIG_EXPERIMENTAL=y1818+CONFIG_BROKEN_ON_SMP=y1919+CONFIG_INIT_ENV_ARG_LIMIT=322020+2121+#2222+# General setup2323+#2424+CONFIG_LOCALVERSION=""2525+CONFIG_LOCALVERSION_AUTO=y2626+# CONFIG_SWAP is not set2727+CONFIG_SYSVIPC=y2828+CONFIG_POSIX_MQUEUE=y2929+# CONFIG_BSD_PROCESS_ACCT is not set3030+CONFIG_SYSCTL=y3131+# CONFIG_AUDIT is not set3232+# CONFIG_IKCONFIG is not set3333+# CONFIG_RELAY is not set3434+CONFIG_INITRAMFS_SOURCE=""3535+CONFIG_UID16=y3636+CONFIG_CC_OPTIMIZE_FOR_SIZE=y3737+CONFIG_EMBEDDED=y3838+CONFIG_KALLSYMS=y3939+# CONFIG_KALLSYMS_EXTRA_PASS is not set4040+CONFIG_HOTPLUG=y4141+CONFIG_PRINTK=y4242+CONFIG_BUG=y4343+CONFIG_ELF_CORE=y4444+CONFIG_BASE_FULL=y4545+# CONFIG_FUTEX is not set4646+# CONFIG_EPOLL is not set4747+# CONFIG_SHMEM is not set4848+CONFIG_SLAB=y4949+CONFIG_TINY_SHMEM=y5050+CONFIG_BASE_SMALL=05151+# CONFIG_SLOB is not set5252+CONFIG_OBSOLETE_INTERMODULE=y5353+5454+#5555+# Loadable module support5656+#5757+CONFIG_MODULES=y5858+CONFIG_MODULE_UNLOAD=y5959+CONFIG_MODULE_FORCE_UNLOAD=y6060+# CONFIG_MODVERSIONS is not set6161+# CONFIG_MODULE_SRCVERSION_ALL is not set6262+# CONFIG_KMOD is not set6363+6464+#6565+# Block layer6666+#6767+# CONFIG_LBD is not set6868+# CONFIG_BLK_DEV_IO_TRACE is not set6969+# CONFIG_LSF is not set7070+7171+#7272+# IO Schedulers7373+#7474+CONFIG_IOSCHED_NOOP=y7575+# CONFIG_IOSCHED_AS is not set7676+CONFIG_IOSCHED_DEADLINE=y7777+# CONFIG_IOSCHED_CFQ is not set7878+# CONFIG_DEFAULT_AS is not set7979+CONFIG_DEFAULT_DEADLINE=y8080+# CONFIG_DEFAULT_CFQ is not set8181+# CONFIG_DEFAULT_NOOP is not set8282+CONFIG_DEFAULT_IOSCHED="deadline"8383+8484+#8585+# System type8686+#8787+CONFIG_SOLUTION_ENGINE=y8888+# CONFIG_SH_SOLUTION_ENGINE is not set8989+# CONFIG_SH_7751_SOLUTION_ENGINE is not set9090+# CONFIG_SH_7300_SOLUTION_ENGINE is not set9191+CONFIG_SH_7343_SOLUTION_ENGINE=y9292+# CONFIG_SH_73180_SOLUTION_ENGINE is not set9393+# CONFIG_SH_7751_SYSTEMH is not set9494+# CONFIG_SH_HP6XX is not set9595+# CONFIG_SH_EC3104 is not set9696+# CONFIG_SH_SATURN is not set9797+# CONFIG_SH_DREAMCAST is not set9898+# CONFIG_SH_BIGSUR is not set9999+# CONFIG_SH_MPC1211 is not set100100+# CONFIG_SH_SH03 is not set101101+# CONFIG_SH_SECUREEDGE5410 is not set102102+# CONFIG_SH_HS7751RVOIP is not set103103+# CONFIG_SH_7710VOIPGW is not set104104+# CONFIG_SH_RTS7751R2D is not set105105+# CONFIG_SH_R7780RP is not set106106+# CONFIG_SH_EDOSK7705 is not set107107+# CONFIG_SH_SH4202_MICRODEV is not set108108+# CONFIG_SH_LANDISK is not set109109+# CONFIG_SH_TITAN is not set110110+# CONFIG_SH_SHMIN is not set111111+# CONFIG_SH_UNKNOWN is not set112112+113113+#114114+# Processor selection115115+#116116+CONFIG_CPU_SH4=y117117+CONFIG_CPU_SH4A=y118118+119119+#120120+# SH-2 Processor Support121121+#122122+# CONFIG_CPU_SUBTYPE_SH7604 is not set123123+124124+#125125+# SH-3 Processor Support126126+#127127+# CONFIG_CPU_SUBTYPE_SH7300 is not set128128+# CONFIG_CPU_SUBTYPE_SH7705 is not set129129+# CONFIG_CPU_SUBTYPE_SH7706 is not set130130+# CONFIG_CPU_SUBTYPE_SH7707 is not set131131+# CONFIG_CPU_SUBTYPE_SH7708 is not set132132+# CONFIG_CPU_SUBTYPE_SH7709 is not set133133+# CONFIG_CPU_SUBTYPE_SH7710 is not set134134+135135+#136136+# SH-4 Processor Support137137+#138138+# CONFIG_CPU_SUBTYPE_SH7750 is not set139139+# CONFIG_CPU_SUBTYPE_SH7091 is not set140140+# CONFIG_CPU_SUBTYPE_SH7750R is not set141141+# CONFIG_CPU_SUBTYPE_SH7750S is not set142142+# CONFIG_CPU_SUBTYPE_SH7751 is not set143143+# CONFIG_CPU_SUBTYPE_SH7751R is not set144144+# CONFIG_CPU_SUBTYPE_SH7760 is not set145145+# CONFIG_CPU_SUBTYPE_SH4_202 is not set146146+147147+#148148+# ST40 Processor Support149149+#150150+# CONFIG_CPU_SUBTYPE_ST40STB1 is not set151151+# CONFIG_CPU_SUBTYPE_ST40GX1 is not set152152+153153+#154154+# SH-4A Processor Support155155+#156156+# CONFIG_CPU_SUBTYPE_SH73180 is not set157157+CONFIG_CPU_SUBTYPE_SH7343=y158158+# CONFIG_CPU_SUBTYPE_SH7770 is not set159159+# CONFIG_CPU_SUBTYPE_SH7780 is not set160160+161161+#162162+# Memory management options163163+#164164+CONFIG_MMU=y165165+CONFIG_PAGE_OFFSET=0x80000000166166+CONFIG_MEMORY_START=0x0c000000167167+CONFIG_MEMORY_SIZE=0x01000000168168+CONFIG_32BIT=y169169+CONFIG_SELECT_MEMORY_MODEL=y170170+CONFIG_FLATMEM_MANUAL=y171171+# CONFIG_DISCONTIGMEM_MANUAL is not set172172+# CONFIG_SPARSEMEM_MANUAL is not set173173+CONFIG_FLATMEM=y174174+CONFIG_FLAT_NODE_MEM_MAP=y175175+# CONFIG_SPARSEMEM_STATIC is not set176176+CONFIG_SPLIT_PTLOCK_CPUS=4177177+178178+#179179+# Cache configuration180180+#181181+# CONFIG_SH_DIRECT_MAPPED is not set182182+# CONFIG_SH_WRITETHROUGH is not set183183+# CONFIG_SH_OCRAM is not set184184+185185+#186186+# Processor features187187+#188188+CONFIG_CPU_LITTLE_ENDIAN=y189189+# CONFIG_SH_FPU is not set190190+# CONFIG_SH_FPU_EMU is not set191191+CONFIG_SH_DSP=y192192+# CONFIG_SH_STORE_QUEUES is not set193193+CONFIG_CPU_HAS_INTEVT=y194194+CONFIG_CPU_HAS_SR_RB=y195195+196196+#197197+# Timer support198198+#199199+CONFIG_SH_TMU=y200200+CONFIG_SH_PCLK_FREQ=27000000201201+202202+#203203+# CPU Frequency scaling204204+#205205+# CONFIG_CPU_FREQ is not set206206+207207+#208208+# DMA support209209+#210210+# CONFIG_SH_DMA is not set211211+212212+#213213+# Companion Chips214214+#215215+# CONFIG_HD6446X_SERIES is not set216216+CONFIG_HEARTBEAT=y217217+218218+#219219+# Kernel features220220+#221221+# CONFIG_HZ_100 is not set222222+CONFIG_HZ_250=y223223+# CONFIG_HZ_1000 is not set224224+CONFIG_HZ=250225225+# CONFIG_KEXEC is not set226226+# CONFIG_SMP is not set227227+CONFIG_PREEMPT_NONE=y228228+# CONFIG_PREEMPT_VOLUNTARY is not set229229+# CONFIG_PREEMPT is not set230230+231231+#232232+# Boot options233233+#234234+CONFIG_ZERO_PAGE_OFFSET=0x00001000235235+CONFIG_BOOT_LINK_OFFSET=0x00800000236236+# CONFIG_UBC_WAKEUP is not set237237+# CONFIG_CMDLINE_BOOL is not set238238+239239+#240240+# Bus options241241+#242242+# CONFIG_PCI is not set243243+244244+#245245+# PCCARD (PCMCIA/CardBus) support246246+#247247+# CONFIG_PCCARD is not set248248+249249+#250250+# PCI Hotplug Support251251+#252252+253253+#254254+# Executable file formats255255+#256256+CONFIG_BINFMT_ELF=y257257+# CONFIG_BINFMT_FLAT is not set258258+# CONFIG_BINFMT_MISC is not set259259+260260+#261261+# Power management options (EXPERIMENTAL)262262+#263263+# CONFIG_PM is not set264264+265265+#266266+# Networking267267+#268268+CONFIG_NET=y269269+270270+#271271+# Networking options272272+#273273+# CONFIG_NETDEBUG is not set274274+CONFIG_PACKET=y275275+CONFIG_PACKET_MMAP=y276276+CONFIG_UNIX=y277277+# CONFIG_NET_KEY is not set278278+CONFIG_INET=y279279+# CONFIG_IP_MULTICAST is not set280280+# CONFIG_IP_ADVANCED_ROUTER is not set281281+CONFIG_IP_FIB_HASH=y282282+CONFIG_IP_PNP=y283283+CONFIG_IP_PNP_DHCP=y284284+# CONFIG_IP_PNP_BOOTP is not set285285+# CONFIG_IP_PNP_RARP is not set286286+# CONFIG_NET_IPIP is not set287287+# CONFIG_NET_IPGRE is not set288288+# CONFIG_ARPD is not set289289+CONFIG_SYN_COOKIES=y290290+# CONFIG_INET_AH is not set291291+# CONFIG_INET_ESP is not set292292+# CONFIG_INET_IPCOMP is not set293293+# CONFIG_INET_XFRM_TUNNEL is not set294294+# CONFIG_INET_TUNNEL is not set295295+# CONFIG_INET_DIAG is not set296296+# CONFIG_TCP_CONG_ADVANCED is not set297297+CONFIG_TCP_CONG_BIC=y298298+# CONFIG_IPV6 is not set299299+# CONFIG_INET6_XFRM_TUNNEL is not set300300+# CONFIG_INET6_TUNNEL is not set301301+# CONFIG_NETFILTER is not set302302+303303+#304304+# DCCP Configuration (EXPERIMENTAL)305305+#306306+# CONFIG_IP_DCCP is not set307307+308308+#309309+# SCTP Configuration (EXPERIMENTAL)310310+#311311+# CONFIG_IP_SCTP is not set312312+313313+#314314+# TIPC Configuration (EXPERIMENTAL)315315+#316316+# CONFIG_TIPC is not set317317+# CONFIG_ATM is not set318318+# CONFIG_BRIDGE is not set319319+# CONFIG_VLAN_8021Q is not set320320+# CONFIG_DECNET is not set321321+# CONFIG_LLC2 is not set322322+# CONFIG_IPX is not set323323+# CONFIG_ATALK is not set324324+# CONFIG_X25 is not set325325+# CONFIG_LAPB is not set326326+# CONFIG_NET_DIVERT is not set327327+# CONFIG_ECONET is not set328328+# CONFIG_WAN_ROUTER is not set329329+330330+#331331+# QoS and/or fair queueing332332+#333333+# CONFIG_NET_SCHED is not set334334+335335+#336336+# Network testing337337+#338338+# CONFIG_NET_PKTGEN is not set339339+# CONFIG_HAMRADIO is not set340340+# CONFIG_IRDA is not set341341+# CONFIG_BT is not set342342+# CONFIG_IEEE80211 is not set343343+344344+#345345+# Device Drivers346346+#347347+348348+#349349+# Generic Driver Options350350+#351351+CONFIG_STANDALONE=y352352+CONFIG_PREVENT_FIRMWARE_BUILD=y353353+CONFIG_FW_LOADER=y354354+355355+#356356+# Connector - unified userspace <-> kernelspace linker357357+#358358+# CONFIG_CONNECTOR is not set359359+360360+#361361+# Memory Technology Devices (MTD)362362+#363363+CONFIG_MTD=y364364+# CONFIG_MTD_DEBUG is not set365365+CONFIG_MTD_CONCAT=y366366+CONFIG_MTD_PARTITIONS=y367367+# CONFIG_MTD_REDBOOT_PARTS is not set368368+# CONFIG_MTD_CMDLINE_PARTS is not set369369+370370+#371371+# User Modules And Translation Layers372372+#373373+CONFIG_MTD_CHAR=y374374+CONFIG_MTD_BLOCK=y375375+# CONFIG_FTL is not set376376+# CONFIG_NFTL is not set377377+# CONFIG_INFTL is not set378378+# CONFIG_RFD_FTL is not set379379+380380+#381381+# RAM/ROM/Flash chip drivers382382+#383383+CONFIG_MTD_CFI=y384384+# CONFIG_MTD_JEDECPROBE is not set385385+CONFIG_MTD_GEN_PROBE=y386386+# CONFIG_MTD_CFI_ADV_OPTIONS is not set387387+CONFIG_MTD_MAP_BANK_WIDTH_1=y388388+CONFIG_MTD_MAP_BANK_WIDTH_2=y389389+CONFIG_MTD_MAP_BANK_WIDTH_4=y390390+# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set391391+# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set392392+# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set393393+CONFIG_MTD_CFI_I1=y394394+CONFIG_MTD_CFI_I2=y395395+# CONFIG_MTD_CFI_I4 is not set396396+# CONFIG_MTD_CFI_I8 is not set397397+# CONFIG_MTD_CFI_INTELEXT is not set398398+CONFIG_MTD_CFI_AMDSTD=y399399+# CONFIG_MTD_CFI_STAA is not set400400+CONFIG_MTD_CFI_UTIL=y401401+CONFIG_MTD_RAM=y402402+# CONFIG_MTD_ROM is not set403403+# CONFIG_MTD_ABSENT is not set404404+# CONFIG_MTD_OBSOLETE_CHIPS is not set405405+406406+#407407+# Mapping drivers for chip access408408+#409409+# CONFIG_MTD_COMPLEX_MAPPINGS is not set410410+# CONFIG_MTD_PHYSMAP is not set411411+# CONFIG_MTD_SOLUTIONENGINE is not set412412+# CONFIG_MTD_PLATRAM is not set413413+414414+#415415+# Self-contained MTD device drivers416416+#417417+# CONFIG_MTD_SLRAM is not set418418+# CONFIG_MTD_PHRAM is not set419419+# CONFIG_MTD_MTDRAM is not set420420+# CONFIG_MTD_BLOCK2MTD is not set421421+422422+#423423+# Disk-On-Chip Device Drivers424424+#425425+# CONFIG_MTD_DOC2000 is not set426426+# CONFIG_MTD_DOC2001 is not set427427+# CONFIG_MTD_DOC2001PLUS is not set428428+429429+#430430+# NAND Flash Device Drivers431431+#432432+# CONFIG_MTD_NAND is not set433433+434434+#435435+# OneNAND Flash Device Drivers436436+#437437+# CONFIG_MTD_ONENAND is not set438438+439439+#440440+# Parallel port support441441+#442442+# CONFIG_PARPORT is not set443443+444444+#445445+# Plug and Play support446446+#447447+448448+#449449+# Block devices450450+#451451+# CONFIG_BLK_DEV_COW_COMMON is not set452452+# CONFIG_BLK_DEV_LOOP is not set453453+# CONFIG_BLK_DEV_NBD is not set454454+# CONFIG_BLK_DEV_RAM is not set455455+# CONFIG_BLK_DEV_INITRD is not set456456+# CONFIG_CDROM_PKTCDVD is not set457457+# CONFIG_ATA_OVER_ETH is not set458458+459459+#460460+# ATA/ATAPI/MFM/RLL support461461+#462462+# CONFIG_IDE is not set463463+464464+#465465+# SCSI device support466466+#467467+# CONFIG_RAID_ATTRS is not set468468+# CONFIG_SCSI is not set469469+470470+#471471+# Multi-device support (RAID and LVM)472472+#473473+# CONFIG_MD is not set474474+475475+#476476+# Fusion MPT device support477477+#478478+# CONFIG_FUSION is not set479479+480480+#481481+# IEEE 1394 (FireWire) support482482+#483483+484484+#485485+# I2O device support486486+#487487+488488+#489489+# Network device support490490+#491491+CONFIG_NETDEVICES=y492492+# CONFIG_DUMMY is not set493493+# CONFIG_BONDING is not set494494+# CONFIG_EQUALIZER is not set495495+# CONFIG_TUN is not set496496+497497+#498498+# PHY device support499499+#500500+# CONFIG_PHYLIB is not set501501+502502+#503503+# Ethernet (10 or 100Mbit)504504+#505505+CONFIG_NET_ETHERNET=y506506+CONFIG_MII=y507507+# CONFIG_STNIC is not set508508+CONFIG_SMC91X=y509509+# CONFIG_NE2000 is not set510510+511511+#512512+# Ethernet (1000 Mbit)513513+#514514+515515+#516516+# Ethernet (10000 Mbit)517517+#518518+519519+#520520+# Token Ring devices521521+#522522+523523+#524524+# Wireless LAN (non-hamradio)525525+#526526+# CONFIG_NET_RADIO is not set527527+528528+#529529+# Wan interfaces530530+#531531+# CONFIG_WAN is not set532532+# CONFIG_PPP is not set533533+# CONFIG_SLIP is not set534534+# CONFIG_SHAPER is not set535535+# CONFIG_NETCONSOLE is not set536536+# CONFIG_NETPOLL is not set537537+# CONFIG_NET_POLL_CONTROLLER is not set538538+539539+#540540+# ISDN subsystem541541+#542542+# CONFIG_ISDN is not set543543+544544+#545545+# Telephony Support546546+#547547+# CONFIG_PHONE is not set548548+549549+#550550+# Input device support551551+#552552+CONFIG_INPUT=y553553+554554+#555555+# Userland interfaces556556+#557557+# CONFIG_INPUT_MOUSEDEV is not set558558+# CONFIG_INPUT_JOYDEV is not set559559+# CONFIG_INPUT_TSDEV is not set560560+# CONFIG_INPUT_EVDEV is not set561561+# CONFIG_INPUT_EVBUG is not set562562+563563+#564564+# Input Device Drivers565565+#566566+# CONFIG_INPUT_KEYBOARD is not set567567+# CONFIG_INPUT_MOUSE is not set568568+# CONFIG_INPUT_JOYSTICK is not set569569+# CONFIG_INPUT_TOUCHSCREEN is not set570570+# CONFIG_INPUT_MISC is not set571571+572572+#573573+# Hardware I/O ports574574+#575575+# CONFIG_SERIO is not set576576+# CONFIG_GAMEPORT is not set577577+578578+#579579+# Character devices580580+#581581+CONFIG_VT=y582582+CONFIG_VT_CONSOLE=y583583+CONFIG_HW_CONSOLE=y584584+# CONFIG_SERIAL_NONSTANDARD is not set585585+586586+#587587+# Serial drivers588588+#589589+# CONFIG_SERIAL_8250 is not set590590+591591+#592592+# Non-8250 serial port support593593+#594594+CONFIG_SERIAL_SH_SCI=y595595+CONFIG_SERIAL_SH_SCI_NR_UARTS=2596596+CONFIG_SERIAL_SH_SCI_CONSOLE=y597597+CONFIG_SERIAL_CORE=y598598+CONFIG_SERIAL_CORE_CONSOLE=y599599+# CONFIG_UNIX98_PTYS is not set600600+CONFIG_LEGACY_PTYS=y601601+CONFIG_LEGACY_PTY_COUNT=256602602+603603+#604604+# IPMI605605+#606606+# CONFIG_IPMI_HANDLER is not set607607+608608+#609609+# Watchdog Cards610610+#611611+# CONFIG_WATCHDOG is not set612612+# CONFIG_RTC is not set613613+# CONFIG_GEN_RTC is not set614614+# CONFIG_DTLK is not set615615+# CONFIG_R3964 is not set616616+617617+#618618+# Ftape, the floppy tape device driver619619+#620620+# CONFIG_RAW_DRIVER is not set621621+622622+#623623+# TPM devices624624+#625625+# CONFIG_TCG_TPM is not set626626+# CONFIG_TELCLOCK is not set627627+628628+#629629+# I2C support630630+#631631+CONFIG_I2C=y632632+CONFIG_I2C_CHARDEV=y633633+634634+#635635+# I2C Algorithms636636+#637637+# CONFIG_I2C_ALGOBIT is not set638638+# CONFIG_I2C_ALGOPCF is not set639639+# CONFIG_I2C_ALGOPCA is not set640640+641641+#642642+# I2C Hardware Bus support643643+#644644+# CONFIG_I2C_PARPORT_LIGHT is not set645645+# CONFIG_I2C_STUB is not set646646+# CONFIG_I2C_PCA_ISA is not set647647+CONFIG_I2C_SH7343=y648648+649649+#650650+# Miscellaneous I2C Chip support651651+#652652+# CONFIG_SENSORS_DS1337 is not set653653+# CONFIG_SENSORS_DS1374 is not set654654+# CONFIG_SENSORS_EEPROM is not set655655+# CONFIG_SENSORS_PCF8574 is not set656656+# CONFIG_SENSORS_PCA9539 is not set657657+# CONFIG_SENSORS_PCF8591 is not set658658+# CONFIG_SENSORS_MAX6875 is not set659659+# CONFIG_I2C_DEBUG_CORE is not set660660+# CONFIG_I2C_DEBUG_ALGO is not set661661+# CONFIG_I2C_DEBUG_BUS is not set662662+# CONFIG_I2C_DEBUG_CHIP is not set663663+664664+#665665+# SPI support666666+#667667+# CONFIG_SPI is not set668668+# CONFIG_SPI_MASTER is not set669669+670670+#671671+# Dallas's 1-wire bus672672+#673673+# CONFIG_W1 is not set674674+675675+#676676+# Hardware Monitoring support677677+#678678+# CONFIG_HWMON is not set679679+# CONFIG_HWMON_VID is not set680680+681681+#682682+# Misc devices683683+#684684+685685+#686686+# Multimedia devices687687+#688688+CONFIG_VIDEO_DEV=y689689+CONFIG_VIDEO_V4L1=y690690+CONFIG_VIDEO_V4L1_COMPAT=y691691+CONFIG_VIDEO_V4L2=y692692+693693+#694694+# Video Capture Adapters695695+#696696+697697+#698698+# Video Capture Adapters699699+#700700+# CONFIG_VIDEO_ADV_DEBUG is not set701701+# CONFIG_VIDEO_VIVI is not set702702+# CONFIG_VIDEO_CPIA is not set703703+# CONFIG_VIDEO_SAA5246A is not set704704+# CONFIG_VIDEO_SAA5249 is not set705705+# CONFIG_TUNER_3036 is not set706706+# CONFIG_VIDEO_OVCAMCHIP is not set707707+708708+#709709+# Encoders and Decoders710710+#711711+# CONFIG_VIDEO_MSP3400 is not set712712+# CONFIG_VIDEO_CS53L32A is not set713713+# CONFIG_VIDEO_WM8775 is not set714714+# CONFIG_VIDEO_WM8739 is not set715715+# CONFIG_VIDEO_CX25840 is not set716716+# CONFIG_VIDEO_SAA711X is not set717717+# CONFIG_VIDEO_SAA7127 is not set718718+# CONFIG_VIDEO_UPD64031A is not set719719+# CONFIG_VIDEO_UPD64083 is not set720720+721721+#722722+# Radio Adapters723723+#724724+# CONFIG_RADIO_MAESTRO is not set725725+726726+#727727+# Digital Video Broadcasting Devices728728+#729729+# CONFIG_DVB is not set730730+731731+#732732+# Graphics support733733+#734734+CONFIG_FB=y735735+# CONFIG_FB_CFB_FILLRECT is not set736736+# CONFIG_FB_CFB_COPYAREA is not set737737+# CONFIG_FB_CFB_IMAGEBLIT is not set738738+# CONFIG_FB_MACMODES is not set739739+CONFIG_FB_FIRMWARE_EDID=y740740+# CONFIG_FB_MODE_HELPERS is not set741741+# CONFIG_FB_TILEBLITTING is not set742742+# CONFIG_FB_EPSON1355 is not set743743+# CONFIG_FB_S1D13XXX is not set744744+# CONFIG_FB_VIRTUAL is not set745745+746746+#747747+# Console display driver support748748+#749749+CONFIG_DUMMY_CONSOLE=y750750+# CONFIG_FRAMEBUFFER_CONSOLE is not set751751+752752+#753753+# Logo configuration754754+#755755+# CONFIG_LOGO is not set756756+# CONFIG_BACKLIGHT_LCD_SUPPORT is not set757757+758758+#759759+# Sound760760+#761761+CONFIG_SOUND=y762762+763763+#764764+# Advanced Linux Sound Architecture765765+#766766+CONFIG_SND=y767767+CONFIG_SND_TIMER=y768768+CONFIG_SND_PCM=y769769+CONFIG_SND_SEQUENCER=y770770+# CONFIG_SND_SEQ_DUMMY is not set771771+CONFIG_SND_OSSEMUL=y772772+# CONFIG_SND_MIXER_OSS is not set773773+CONFIG_SND_PCM_OSS=y774774+CONFIG_SND_PCM_OSS_PLUGINS=y775775+# CONFIG_SND_SEQUENCER_OSS is not set776776+# CONFIG_SND_DYNAMIC_MINORS is not set777777+CONFIG_SND_SUPPORT_OLD_API=y778778+CONFIG_SND_VERBOSE_PROCFS=y779779+# CONFIG_SND_VERBOSE_PRINTK is not set780780+# CONFIG_SND_DEBUG is not set781781+782782+#783783+# Generic devices784784+#785785+# CONFIG_SND_DUMMY is not set786786+# CONFIG_SND_VIRMIDI is not set787787+# CONFIG_SND_MTPAV is not set788788+# CONFIG_SND_SERIAL_U16550 is not set789789+# CONFIG_SND_MPU401 is not set790790+791791+#792792+# SuperH devices793793+#794794+CONFIG_SH7343_SIU=m795795+CONFIG_AK4537_CODEC=y796796+797797+#798798+# Open Sound System799799+#800800+# CONFIG_SOUND_PRIME is not set801801+802802+#803803+# USB support804804+#805805+# CONFIG_USB_ARCH_HAS_HCD is not set806806+# CONFIG_USB_ARCH_HAS_OHCI is not set807807+# CONFIG_USB_ARCH_HAS_EHCI is not set808808+809809+#810810+# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'811811+#812812+813813+#814814+# USB Gadget Support815815+#816816+# CONFIG_USB_GADGET is not set817817+818818+#819819+# MMC/SD Card support820820+#821821+# CONFIG_MMC is not set822822+823823+#824824+# LED devices825825+#826826+# CONFIG_NEW_LEDS is not set827827+828828+#829829+# LED drivers830830+#831831+832832+#833833+# LED Triggers834834+#835835+836836+#837837+# InfiniBand support838838+#839839+840840+#841841+# EDAC - error detection and reporting (RAS) (EXPERIMENTAL)842842+#843843+844844+#845845+# Real Time Clock846846+#847847+# CONFIG_RTC_CLASS is not set848848+849849+#850850+# File systems851851+#852852+# CONFIG_EXT2_FS is not set853853+# CONFIG_EXT3_FS is not set854854+# CONFIG_REISERFS_FS is not set855855+# CONFIG_JFS_FS is not set856856+# CONFIG_FS_POSIX_ACL is not set857857+# CONFIG_XFS_FS is not set858858+# CONFIG_OCFS2_FS is not set859859+# CONFIG_MINIX_FS is not set860860+# CONFIG_ROMFS_FS is not set861861+# CONFIG_INOTIFY is not set862862+# CONFIG_QUOTA is not set863863+# CONFIG_DNOTIFY is not set864864+# CONFIG_AUTOFS_FS is not set865865+# CONFIG_AUTOFS4_FS is not set866866+# CONFIG_FUSE_FS is not set867867+868868+#869869+# CD-ROM/DVD Filesystems870870+#871871+# CONFIG_ISO9660_FS is not set872872+# CONFIG_UDF_FS is not set873873+874874+#875875+# DOS/FAT/NT Filesystems876876+#877877+# CONFIG_MSDOS_FS is not set878878+# CONFIG_VFAT_FS is not set879879+# CONFIG_NTFS_FS is not set880880+881881+#882882+# Pseudo filesystems883883+#884884+CONFIG_PROC_FS=y885885+# CONFIG_PROC_KCORE is not set886886+CONFIG_SYSFS=y887887+CONFIG_TMPFS=y888888+# CONFIG_HUGETLBFS is not set889889+# CONFIG_HUGETLB_PAGE is not set890890+CONFIG_RAMFS=y891891+# CONFIG_CONFIGFS_FS is not set892892+893893+#894894+# Miscellaneous filesystems895895+#896896+# CONFIG_ADFS_FS is not set897897+# CONFIG_AFFS_FS is not set898898+# CONFIG_HFS_FS is not set899899+# CONFIG_HFSPLUS_FS is not set900900+# CONFIG_BEFS_FS is not set901901+# CONFIG_BFS_FS is not set902902+# CONFIG_EFS_FS is not set903903+# CONFIG_JFFS_FS is not set904904+CONFIG_JFFS2_FS=y905905+CONFIG_JFFS2_FS_DEBUG=0906906+CONFIG_JFFS2_FS_WRITEBUFFER=y907907+# CONFIG_JFFS2_SUMMARY is not set908908+# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set909909+CONFIG_JFFS2_ZLIB=y910910+CONFIG_JFFS2_RTIME=y911911+# CONFIG_JFFS2_RUBIN is not set912912+# CONFIG_CRAMFS is not set913913+# CONFIG_VXFS_FS is not set914914+# CONFIG_HPFS_FS is not set915915+# CONFIG_QNX4FS_FS is not set916916+# CONFIG_SYSV_FS is not set917917+# CONFIG_UFS_FS is not set918918+919919+#920920+# Network File Systems921921+#922922+CONFIG_NFS_FS=y923923+CONFIG_NFS_V3=y924924+# CONFIG_NFS_V3_ACL is not set925925+# CONFIG_NFS_V4 is not set926926+# CONFIG_NFS_DIRECTIO is not set927927+CONFIG_NFSD=y928928+# CONFIG_NFSD_V3 is not set929929+# CONFIG_NFSD_TCP is not set930930+CONFIG_ROOT_NFS=y931931+CONFIG_LOCKD=y932932+CONFIG_LOCKD_V4=y933933+CONFIG_EXPORTFS=y934934+CONFIG_NFS_COMMON=y935935+CONFIG_SUNRPC=y936936+# CONFIG_RPCSEC_GSS_KRB5 is not set937937+# CONFIG_RPCSEC_GSS_SPKM3 is not set938938+# CONFIG_SMB_FS is not set939939+# CONFIG_CIFS is not set940940+# CONFIG_NCP_FS is not set941941+# CONFIG_CODA_FS is not set942942+# CONFIG_AFS_FS is not set943943+# CONFIG_9P_FS is not set944944+945945+#946946+# Partition Types947947+#948948+# CONFIG_PARTITION_ADVANCED is not set949949+CONFIG_MSDOS_PARTITION=y950950+951951+#952952+# Native Language Support953953+#954954+# CONFIG_NLS is not set955955+956956+#957957+# Profiling support958958+#959959+# CONFIG_PROFILING is not set960960+961961+#962962+# Kernel hacking963963+#964964+# CONFIG_PRINTK_TIME is not set965965+# CONFIG_MAGIC_SYSRQ is not set966966+# CONFIG_DEBUG_KERNEL is not set967967+CONFIG_LOG_BUF_SHIFT=14968968+# CONFIG_DEBUG_BUGVERBOSE is not set969969+# CONFIG_DEBUG_FS is not set970970+# CONFIG_SH_STANDARD_BIOS is not set971971+# CONFIG_EARLY_SCIF_CONSOLE is not set972972+# CONFIG_KGDB is not set973973+974974+#975975+# Security options976976+#977977+# CONFIG_KEYS is not set978978+# CONFIG_SECURITY is not set979979+980980+#981981+# Cryptographic options982982+#983983+# CONFIG_CRYPTO is not set984984+985985+#986986+# Hardware crypto devices987987+#988988+989989+#990990+# Library routines991991+#992992+# CONFIG_CRC_CCITT is not set993993+# CONFIG_CRC16 is not set994994+CONFIG_CRC32=y995995+# CONFIG_LIBCRC32C is not set996996+CONFIG_ZLIB_INFLATE=y997997+CONFIG_ZLIB_DEFLATE=y