This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

devkit2.2/rowboat DM3730 and ti wl1271 drivers using MMC3 interface

Other Parts Discussed in Thread: WL1271, DM3730, OMAP3530

Hi friends,

I've been using Devkit 2.2 on my DM3730 development board. It works pretty well. I'm now trying to bringup wifi. This board uses an LS240 module that it is connected to the DM3730 using MMC3. I saw that Devkit 2.2 uses MS_TI_OMAP35x_WL1271_6.1.0.0.144 for the wifi drivers. By default, this code appears to be very hardcoded to use the MMC2 interface. I decided to try a quick patch to get it working using MMC3 attached here.

diff --git a/SdioDrv.c b/SdioDrv.c
index 01309ab..10e4686 100644
--- a/SdioDrv.c
+++ b/SdioDrv.c
@@ -48,6 +48,7 @@
 #include <linux/interrupt.h>
 #include <linux/slab.h>
 #include <linux/delay.h>
+#include <mach/hardware.h>
 #if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,22)
 #if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,29)
 #include <linux/i2c/twl.h>
@@ -86,9 +87,10 @@
 /************************************************************************
  * Defines
  ************************************************************************/
+int remapped_base;
 
-#define TIWLAN_MMC_CONTROLLER               2
-#define TIWLAN_MMC_CONTROLLER_BASE_ADDR     OMAP_HSMMC2_BASE
+#define TIWLAN_MMC_CONTROLLER               3
+#define TIWLAN_MMC_CONTROLLER_BASE_ADDR     OMAP_HSMMC3_BASE
 #define TIWLAN_MMC_CONTROLLER_BASE_SIZE     512
 
 #define OMAP_MMC_MASTER_CLOCK               96000000
@@ -191,15 +193,17 @@
 #define PBIAS_LITE                     0x04A0                       
 #define PBIAS_CLR                      0x00                         
 
+#if 0
 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,32)
 #define OMAP_MMC_REGS_BASE  OMAP2_L4_IO_ADDRESS(TIWLAN_MMC_CONTROLLER_BASE_ADDR)
 #else
 #define OMAP_MMC_REGS_BASE  IO_ADDRESS(TIWLAN_MMC_CONTROLLER_BASE_ADDR)
 #endif
+#endif
 
+#define OMAP_MMC_REGS_BASE             remapped_base   //TIWLAN_MMC_CONTROLLER_BASE_ADDR)
 
-#define INT_MMC2_IRQ                   86
-#define OMAP_MMC_IRQ                   INT_MMC2_IRQ
+#define OMAP_MMC_IRQ                   15
 /* 
  * MMC Host controller read/write API's.
  */
@@ -281,7 +285,7 @@ int                     g_sdio_debug_level = SDIO_DEBUGLEVEL_INFO;
 EXPORT_SYMBOL( g_sdio_debug_level);
 
 OMAP3530_sdiodrv_t      g_drv;
-struct platform_device  adhoc_mmc2;
+struct platform_device  adhoc_mmc3;
 static int              sdiodrv_irq_requested = 0;
 static int              sdiodrv_mmc_power_ena = 0;
 static int              sdiodrv_dma_on = 0;
@@ -309,7 +313,7 @@ static int enable_mmc_power(int slot)
 
     PDEBUG("Enable_mmc_power() %d\n", slot);
 
-    if (slot == 2)
+    if (slot == 3)
     {
 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,32)
         ret = twl_i2c_write_u8(TWL4030_MODULE_PM_RECIEVER, 
@@ -358,7 +362,7 @@ static int disable_mmc_power(int slot)
 
     PDEBUG("Disable_mmc_power() %d\n", slot);
 
-    if (slot == 2)
+    if (slot == 3)
     {
 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,32)
         ret = twl_i2c_write_u8(TWL4030_MODULE_PM_RECIEVER,
@@ -494,7 +498,7 @@ static int sdiodrv_dma_init(void)
 {
     int rc;
 
-    rc = omap_request_dma(OMAP24XX_DMA_MMC2_TX, 
+    rc = omap_request_dma(OMAP34XX_DMA_MMC3_TX, 
                           "SDIO WRITE", 
                           NULL, 
                           &g_drv, 
@@ -502,11 +506,11 @@ static int sdiodrv_dma_init(void)
     if (rc != 0) 
     {
         PERR("sdiodrv_dma_init() omap_request_dma" \
-             "(OMAP24XX_DMA_MMC2_TX) FAILED\n");
+             "(OMAP34XX_DMA_MMC3_TX) FAILED\n");
         return rc;
     }
 
-    rc = omap_request_dma(OMAP24XX_DMA_MMC2_RX, 
+    rc = omap_request_dma(OMAP34XX_DMA_MMC3_RX, 
                           "SDIO READ", 
                           sdiodrv_dma_cb, 
                           &g_drv, 
@@ -514,7 +518,7 @@ static int sdiodrv_dma_init(void)
     if (rc != 0) 
     {
         PERR("sdiodrv_dma_init() omap_request_dma"
-             "(OMAP24XX_DMA_MMC2_RX) FAILED\n");
+             "(OMAP34XX_DMA_MMC3_RX) FAILED\n");
         omap_free_dma(g_drv.dma_tx_channel);
         return rc;
     }
@@ -522,14 +526,14 @@ static int sdiodrv_dma_init(void)
     omap_set_dma_src_params(g_drv.dma_rx_channel,
   							0,			// src_port is only for OMAP1
   							OMAP_DMA_AMODE_CONSTANT,
-                            (OMAP_HSMMC2_BASE) + OMAP_HSMMC_DATA,
+                            (OMAP_HSMMC3_BASE) + OMAP_HSMMC_DATA,
                             0,
                             0);
   
     omap_set_dma_dest_params(g_drv.dma_tx_channel,
 							 0,			// dest_port is only for OMAP1
   	  						 OMAP_DMA_AMODE_CONSTANT,
-  	  						 (OMAP_HSMMC2_BASE) + OMAP_HSMMC_DATA,
+  	  						 (OMAP_HSMMC3_BASE) + OMAP_HSMMC_DATA,
                              0,
                              0);
 
@@ -604,17 +608,21 @@ static int OMAP3530_mmc_reset(void)
 {
     int status, loops=0;
 
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     //p. 3598 - need to set SOFTRESET to 0x1 0bc
     OMAP_HSMMC_WRITE(SYSCTL, OMAP_HSMMC_READ(SYSCTL) | SRA);
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     while ((status = OMAP_HSMMC_READ(SYSCTL) &  SRA) && 
             loops++ < SDIODRV_MAX_LOOPS);
 
     if (status & SRA)
     {
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
         PERR("OMAP3530_mmc_reset() MMC reset FAILED!! "
              "status=0x%x\n",status);
     }
 
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     return status;
 
 } /* end of OMAP3530_mmc_reset */
@@ -716,72 +724,97 @@ static int sdioDrv_InitHw(void)
 
     unsigned long clock_rate = 24000000; /* SDIO-CLK = 24MHz*/
 
-    adhoc_mmc2.name = "adhoc_mmc2";
-    adhoc_mmc2.id = 2;
-    adhoc_mmc2.dev.bus = &platform_bus_type;
-    adhoc_mmc2.num_resources = 0;
-    adhoc_mmc2.resource = NULL;
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
+    adhoc_mmc3.name = "adhoc_mmc3";
+    adhoc_mmc3.id = 2;
+    adhoc_mmc3.dev.bus = &platform_bus_type;
+    adhoc_mmc3.num_resources = 0;
+    adhoc_mmc3.resource = NULL;
 
-    pdev = (struct platform_device*)(&adhoc_mmc2);
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
+    pdev = (struct platform_device*)(&adhoc_mmc3);
 	
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     /* remember device struct for future DMA operations */
     g_drv.dev = &pdev->dev;
 
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     rc = enable_mmc_power(TIWLAN_MMC_CONTROLLER);
     if (rc != 0)
     {
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
         PERR("enable_mmc_power() returned %d !!!\n", rc);
         goto err;
     }
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     sdiodrv_mmc_power_ena = 1;
 
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     PDEBUG("Setting SDIO F&I clock Configuration\n");
-
+#if 0
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     omap_writel(omap_readl(CM_ICLKEN1_CORE) | (1<<25), 
                 CM_ICLKEN1_CORE);
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     omap_writel(omap_readl(CM_FCLKEN1_CORE) | (1<<25), 
                 CM_FCLKEN1_CORE);
+#endif
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     sdiodrv_iclk_enable = 1;
     sdiodrv_fclk_enable = 1;
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     /* Wait */
     udelay(400);
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
 
     omap_writel(omap_readl(OMAP2_CONTROL_DEVCONF1) | (1<<6), 
                 OMAP2_CONTROL_DEVCONF1);
 
 
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     PDEBUG("Done setting SDIO F&I clock Configuration\n");
       
     OMAP3530_mmc_reset();
 
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     //obc - init sequence p. 3600,3617
     /* 1.8V */
     OMAP_HSMMC_WRITE(CAPA, OMAP_HSMMC_READ(CAPA) | VS18);
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     //SDVS fits p. 3650
     OMAP_HSMMC_WRITE(HCTL, OMAP_HSMMC_READ(HCTL) | SDVS18);
     
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     /* clock gating */   
     OMAP_HSMMC_WRITE(SYSCONFIG, 
                      OMAP_HSMMC_READ(SYSCONFIG) | AUTOIDLE);
 
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     /* bus power */
     //SDBP fits p. 3650
     OMAP_HSMMC_WRITE(HCTL, OMAP_HSMMC_READ(HCTL) | SDBP);
 
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     /* interrupts */
     OMAP_HSMMC_WRITE(ISE, 0);
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     OMAP_HSMMC_WRITE(IE, IE_EN_MASK);
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
 
     //p. 3601 suggests moving to the end
     OMAP3530_mmc_set_clock(clock_rate, &g_drv);
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     PINFO("SDIO clock Configuration is now set to %dMhz\n", \
            (int)clock_rate/1000000);
 	
     /* Bus width */
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     PDEBUG("%s() setting %d data lines\n",__FUNCTION__, 4);
     //DTW 4 bits - p. 3650
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     OMAP_HSMMC_WRITE(HCTL, OMAP_HSMMC_READ(HCTL) | (1 << 1));
 
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     rc = request_irq(OMAP_MMC_IRQ, 
                      sdiodrv_irq, 
                      0, 
@@ -789,12 +822,14 @@ static int sdioDrv_InitHw(void)
                      &g_drv);
     if (rc != 0)
     {
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
         PERR ("sdioDrv_InitHw() - request_irq FAILED!!\n");
         goto err;
     }
     sdiodrv_irq_requested = 1;
      
     if(sdiodrv_dma_on == 0){
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     rc = sdiodrv_dma_init();
         if (rc != 0)
         {
@@ -804,25 +839,32 @@ static int sdioDrv_InitHw(void)
         sdiodrv_dma_on = 1;
     }
 	
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     /* 
      * send the init sequence. 80 clocks of synchronization
      * in the SDIO 
      */
 
     //doesn't match p. 3601,3617 - obc
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     OMAP_HSMMC_WRITE( CON, OMAP_HSMMC_READ(CON) | INIT_STREAM);
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     OMAP_HSMMC_SEND_COMMAND( 0, 0);
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
 
     status = sdiodrv_poll_status(OMAP_HSMMC_STAT, CC, MMC_TIMEOUT_MS);
     if (!(status & CC))
     {
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
         PERR("sdioDrv_InitHw() SDIO Command error status = 0x%x\n", 
               status);
         rc = -1;
         goto err;
     }
     
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
     OMAP_HSMMC_WRITE( CON, OMAP_HSMMC_READ(CON) & ~INIT_STREAM);
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
 
     return 0;
 
@@ -1193,7 +1235,7 @@ int sdioDrv_ReadAsync (unsigned int uFunc,
                                  uNumOfElem, 
                                  uDmaBlockCount, 
                                  OMAP_DMA_SYNC_FRAME, 
-                                 OMAP24XX_DMA_MMC2_RX, 
+                                 OMAP34XX_DMA_MMC3_RX, 
                                  OMAP_DMA_SRC_SYNC);
 
     iStatus  = sdiodrv_poll_status(OMAP_HSMMC_STAT, CC, MMC_TIMEOUT_MS);
@@ -1338,7 +1380,7 @@ int sdioDrv_WriteAsync (unsigned int uFunc,
                                  uNumOfElem, 
                                  uDmaBlockCount, 
                                  OMAP_DMA_SYNC_FRAME, 
-                                 OMAP24XX_DMA_MMC2_TX, 
+                                 OMAP34XX_DMA_MMC3_TX, 
                                  OMAP_DMA_DST_SYNC);
 
     iStatus  = sdiodrv_poll_status(OMAP_HSMMC_STAT, CC, MMC_TIMEOUT_MS);
@@ -1459,12 +1501,12 @@ void sdioDrv_PrintRegisters(void)
 
     printk( "\n  SDIO control, muxing registers:");
 
-    printk( "\n  CONTROL_PADCONF_MMC2_CLK = ");
-    printk( "  0x%08x", CONTROL_PADCONF_MMC2_CLK);
-    printk( "\n  CONTROL_PADCONF_MMC2_CMD = ");
-    printk( "  0x%08x", CONTROL_PADCONF_MMC2_DAT0);
-    printk( "\n  CONTROL_PADCONF_MMC2_DAT2 = ");
-    printk( "  0x%08x", CONTROL_PADCONF_MMC2_DAT2);
+    printk( "\n  CONTROL_PADCONF_MMC3_CLK = ");
+    printk( "  0x%08x", CONTROL_PADCONF_MMC3_CLK);
+    printk( "\n  CONTROL_PADCONF_MMC3_CMD = ");
+    printk( "  0x%08x", CONTROL_PADCONF_MMC3_DAT0);
+    printk( "\n  CONTROL_PADCONF_MMC3_DAT2 = ");
+    printk( "  0x%08x", CONTROL_PADCONF_MMC3_DAT2);
     printk( "\n  CONTROL_DEVCONF1 = ");
     printk( "  0x%08x", OMAP2_CONTROL_DEVCONF1);
 
@@ -1591,6 +1633,9 @@ int  sdioDrv_init(void)
     PDEBUG("entering %s()\n" , __FUNCTION__ );
     memset(&g_drv, 0, sizeof(g_drv));
 
+	printk(KERN_INFO "%s:%d\n", __func__, __LINE__);
+	remapped_base = ioremap(0x480AD000, SZ_4K);
+	printk(KERN_INFO "%s:%d remapped_base=0x%x\n", __func__, __LINE__, remapped_base);
 #ifdef CONFIG_PM
     /* 
      * Register the platform device 
diff --git a/omap34xx_defs.h b/omap34xx_defs.h
index 403ab64..6397f25 100644
--- a/omap34xx_defs.h
+++ b/omap34xx_defs.h
@@ -39,6 +39,7 @@
 
 #include <mach/hardware.h>
 
+#define OMAP_HSMMC3_BASE			0x480AD000	//0x480b4000
 #define OMAP_HSMMC2_BASE                0x480b4000
 #define OMAP2_CONTROL_DEVCONF1          0x480022D8
 #define CONTROL_PADCONF_MMC2_CLK        0x48002158  /* mmc2_cmd */
@@ -50,5 +51,15 @@
 #define CM_FCLKEN1_CORE                 0x48004A00
 #define CM_ICLKEN1_CORE                 0x48004A10
 
+#define CONTROL_PADCONF_MMC3_CLK	   	0x480025D8  /* mmc3_cmd */
+#define CONTROL_PADCONF_MMC3_CMD	   	0x480021D0  /* mmc3_cmd */
+
+
+#define CONTROL_PADCONF_MMC3_DAT0		0x480025E4    /* mmc3_dat0, mmc3_dat1 */
+#define CONTROL_PADCONF_MMC3_DAT2		0x480025E8    /* mmc3_dat2 */
+#define CONTROL_PADCONF_MMC3_DAT3		0x480025E0    /* mmc3_dat3 */
+
+
+
 
 #endif /* __OMAP34XX_DEFS__H__ */
diff --git a/sdio.mod.c b/sdio.mod.c
index 784c881..4ee9137 100644
--- a/sdio.mod.c
+++ b/sdio.mod.c
@@ -35,6 +35,7 @@ __attribute__((section("__versions"))) = {
 	{ 0xf895fe2d, "platform_driver_register" },
 	{ 0xa86eead4, "__create_workqueue_key" },
 	{ 0xa61e4362, "omap_request_dma" },
+	{ 0xe9ce8b95, "omap_ioremap" },
 	{ 0x506d97f5, "omap_readl" },
 	{ 0xe6744a89, "omap_clear_dma" },
 	{ 0x9d669763, "memcpy" },
@@ -52,4 +53,4 @@ __attribute__((section(".modinfo"))) =
 "depends=";
 
 
-MODULE_INFO(srcversion, "1B1FF678E43775093E312F7");
+MODULE_INFO(srcversion, "E930E6E443028CFD8E54E28");
diff --git a/testsdio.mod.c b/testsdio.mod.c
index 1b8f96f..16291d4 100644
--- a/testsdio.mod.c
+++ b/testsdio.mod.c
@@ -70,4 +70,4 @@ __attribute__((section(".modinfo"))) =
 "depends=sdio";
 
 
-MODULE_INFO(srcversion, "38C7E3D13CB6F6B4A78F53A");
+MODULE_INFO(srcversion, "3D5A17C6EB3C25EC78458B7");

But the initial result is just a panic due to linefetch abort. I'm not sure exactly why, I probably need to look deeper and understand this ICLKEN1/FLCKEN1 code. I was curious if anyone else has gone through this and what advice they may have for me.

Thanks,

jaya

  • Jaya,

    Sorry that this was somehow missed / not responded to while it was on the Davinci forum, I've moved it over to our WiFi forum and asked the team to take a look at it and provide suggestions.

    In parallel, since your last post is a bit old, can you provide any updates so that our team is working off the latest information?  For example, I understood from a separate discussion that this is based on Android-Froyo, so maybe any more info you can provide will help the team...

    Thanks!

    Matt

  • Hi Matt,

     

    Thanks for your reply. Yes, we are using TI's Devkit 2.2 Froyo release ( http://processors.wiki.ti.com/index.php/TI-Android-FroYo-DevKit-V2.2_UserGuide ). This works well on our Wiser2 platform. Everything we've tested with (hdmi, usb, SD, ethernet, etc) works fine, so it is just wl1271 WiFi/Bluetooth that doesn't work. The wl1271 driver contained in that devkit 2.2 release is for the 2.6.32 linux kernel, specifically, it is MS_TI_OMAP35x_WL1271_6.1.0.0.144. That sample driver includes an example for omap3evm (omap3530) using MMC2 so we attempted to port that code to work on our board (DM3730) using MMC3. http://e2e.ti.com/cfs-filesystemfile.ashx/__key/CommunityServer-Discussions-Components-Files/537/5751.wl1271_5F00_driver_5F00_patch.txt . This did not work (IO errors and the kernel panics). We observed that the quality of the code for that driver was quite poor (ie: hardcoded register accesses, power, clocks). Rowboat engineers advised us to consider using TI's Devkit 2.1 Gingerbread 2.3.4 release ( http://processors.wiki.ti.com/index.php/TI-Android-GingerBread-2.3.4-DevKit-2.1_ReleaseNotes ). This uses the 2.6.37 kernel and uses a different wl1271 driver called wl12xx compat. This driver's code was clean and looked good so we proceeded with a port to this platform. Unfortunately, in the end we found that 2.6.37 introduces problems in other subsystems (hdmi drivers and other 3rd party drivers stop working due to removal of bkl, ioctl, semaphore changes in 2.6.37) and since we still didn't have working wifi even with 2.6.37 we have now abandoned that effort.

    Here's what we're doing now. I've obtained a Beagleboard-XM with a BBToys-Wlan-expander board (wl1271/ls240 using MMC2). We did this since it is a known working platform which would help us eliminate hardware issues from being a concern. I've confirmed that this board works fine with Angstrom 2.6.39 using wl12xx compat, to the extent that I'm able to connect to an open AP. ( http://groups.google.com/group/beagleboard/browse_thread/thread/ac2c2deaca153101 ) Based on that, I'm now trying to port that MS_TI_OMAP35x_WL1271_6.1.0.0.144 code (ie: the Devkit 2.2 Froyo driver) to Beagleboard-XM + BBToys-Wlan expander since that is what appears to be the only path to a solution that would work with the rest of the platform. Any help that TI could offer on that path would be very useful.

     

    Thanks,

    jaya

  • Jaya,

     

    I might be missing something here, but since on the beagle platform you already have the NLCP diver (wl12xx compat) working what is the reason you are trying to replace it with the wlan driver from MS_TI_OMAP35x_WL1271_6.1.0.0.144 release?

    Best Regards,

    Eyal Reizer

  • Hi Eyal,

     

    Thanks for your reply. Here are the reasons:

    1. The wl12xx-compat driver that works with BBXM+WL1271 expander is for the 2.6.39 kernel+Angstrom userspace. This solution only partially works. It doesn't work fully, it is only able to associate and ping an open access point. The driver crashes when attempting to associate with a WPA-PSK AP.

    2. This 2.6.39 kernel+ wl12xx compat driver combo is unfortunately incompatible with Android. That is, the version of wl12xx compat that works on 2.6.39 isn't backward compatible with TI's Devkit 2.2 Froyo (2.6.32) kernel.

    As an aside, we attempted to forward port to 2.6.37 (TI Devkit 2.1 Gingerbread 2.3.4) since that kernel does have wl12xx compat. Unfortunately, that solution is broken since it has the following problems:

    - runtime loaded dss drivers are broken (panic)

    - bkl removal (ioctl in fops removed) so out-of-tree drivers suffer locking issues

    - sema_Init changes

    This causes the hdmi driver (TDA9984) and several other things to fail.

    So, the only remaining potential solution is to fix up the MS_TI_OMAP35x_WL1271_6.1.0.0.144 code since that is provided with TI's Devkit 2.2 Froyo and is known to work properly on the omap3evm which suggests that it should be possible to make it work properly on DM3730. (Plus Devkiit 2.2 Froyo works for all the other subsystems we need, eg: hdmi). In an ideal world, if TI's Devkit 2.2 Froyo included support for the BBXM+WL1271 expander the same way it supported omap3evm, then I think we'd be good to go.

    Thanks,

    jaya

  • Just a quick follow-up Eyal. What is TI's recommended solution for wl1271? I noticed that pandaboard with pandroid 2.6.35 also use the wl1271 code and not wl12xx_compat. From talking to other developers, it appears that most people are going for wl1271 for production and not wl12xx_compat. Is my understanding of this correct? Please let me know if I'm heading down the right path. I don't want to spend weeks on getting wl1271 to work and then find out that TI's switching to wl12xx_compat longer term for newer releases of Devkit (after all, we would want to stay as close to TI's mainstream devkit releases as possible, I imagine this is true for most TI customers).

  • Hi,

     

    It is true that TI is indeed swithing to NLCP for the next Linux/Android Releases.

    In addition as the NLCP driver is available as a compat-wireless package and uses standard Linux SDIO driver it is easier to port to other platfrom and other Linux kernel versions.

    As I understand that you already have your platfrom running and you just need to add WLAN support using MMC3, it should be easiest for you to take our latest available compat-wireless package and build it into your system.

    As the NLCP driver (wl12xx) is provided as a compat-wireles package and relies on the standard linux sdio driver you should be ablle to build it with your current kernel, even if you don't switch to the latest ADK.

    I suggest that you refer to the follwoing wiki page, which has data that should help you integrate our latest NLCP driver into your build.

    The latest released NLCP compat-wireless packgae zip is also downloadble from this page:

     

    http://processors.wiki.ti.com/index.php/OMAP_Wireless_Connectivity_mac80211_compat_wireless_build_options

     

    Please reveiew this option and let me know what you think about this path.

     

    Best Regards,

    Eyal Reizer.

  • Hi Eyal,

    Thanks for your reply. That is useful to know. A quick question then. Has this approach been verified to work with TI's Devkit 2.2 Froyo (2.6.32) platform? I'm skimming through the instructions you linked to and I didn't see any mention of Android/TI Devkit.

     

    Thanks,

    jaya

  • Hi Jaya,

     

    The NLCP driver is released as part of the following Linux SDK release.

    http://focus.ti.com/docs/toolsw/folders/print/linuxezsdk-sitara.html

    Release Notes:

    http://processors.wiki.ti.com/index.php/Sitara_SDK_5.02_Release_Notes

     

    The driver has been integrated into Android-GingerBread-2.3.4-DevKit-2.1, however I am not familiar with plans for adding it to Devkit 2.2.

    You should however be able to do this kind of integration using the example from Android-GingerBread-2.3.4-DevKit-2.1 if you choose to do so as the integration steps are similar.

    The NLCP driver relies mainly on the standard SDIO driver available in the kernel which I believe you already have working in your system.

    The main part you would need to add to your current platfrom (other than building and installing the compat-wireless package is the board initialization file (board_omap3evm.c) under "arch\arm\mach-omap2\board_omap3evm.c" where you need to do similar initialization as in the gingerbread kernel which you mentioned that you already have:

     

    OMAP Linux Kernel 2.6.37
    http://gitorious.org/rowboat/kernel

    (rowboat-gingerbread-2.6.37)

    df41eac5b4bd3c976a73c5e08a2bf4f8d93466ea http://arago-project.org/git/projects/linux-omap3.git
    DEV_OMAPPSP_04.02.00.07

    In this file you should look for the areas surrounded by #ifdef CONFIG_WL12XX_PLATFORM_DATA

    wheren a new entry is added to the MMC structure, pin muxes (for the SDIO pins, WLAN_Enable and WLAN_IRQ) a regulator is assigned for controling power to the WL12xx module and and the platform device is registered with the os.

    Similar initialization steps should be added also to your 2.6.32 platfrom file.

     

    Please let me know in case you run into any issues.

     

    Best Regards,

    Eyal Reizer

     

     

  • Hi Eyal,

     

    Thanks for your reply. Okay, I will pursue this approach. I'll report back on as soon as possible.

    Just one note btw, we are using Devkit 2.2 Froyo (this uses the 2.6.32 kernel) as opposed to Devkit 2.1 Gingerbread (which uses the newer 2.6.37 kernel). We attempted to port to 2.6.37 before but suffered from non-functional drivers for hdmi and others which is why we stayed with 2.6.32.

     

    Thanks,

    jaya

  • Eyal,


    I have a beagleboard XM with the beagletoys wl1271 adapter board attached.  I am currently using the 2.3.4 dev kit for android  (i have also pulled the latest from git).   I have tried to integrate the driver into the beagleboard build system but haven't had much luck.  All of the pieces seem to be there (compat.ko, cfg80211.ko, wl12xx.ko and wl12xx_sdio.ko and wl12xx_spi.ko) when I build the rootfs but the scripts to enable to driver are either not correct or configured to use a different driver.  I can manually load each of the drivers with insmod (in the correct order to prevent errors) and no interfaces are configured.  When I try to enable to wireless interface from the GUI I get an error message in the GUI (this happens when I start from a clean system).  If I manually load the driver and then enable the interface I no longer the the error message.  If I try to configure the wifi setting I do not see any APs in the area and suddenly android (not the kernel or board) seems to reset (maybe just the VM, not sure).  Is there something that I am missing or another route I should be taking??? 

     

    Andrew

  • Andrew,

     

    The 2.3.4 is originally for a different omap3 board and uses the board file arch/arm/mach-omap2/board-omap3evm.c in the kernel where MMC2 is configured for the wl12xx module. Look for wl12xx related configuration (MMC, regulator, SDIO, WLAN enable, irq pinsmuxes)

    I assume that in the BB board file you are missing the MMC and probably pin muxes initialization and this is why the wl12xx module is not detected by the kernel SDIO driver during the kernel boot.

    I suggest you look at the BB board file and do a similar initialization as was done for the oma3evm. 

    If fone correctly you should see a message during kernel boot that the SDIO card was detected.

     

    Hope this helps.

    Eyal

  • Dear Eyal:

     

    I also face the same problem right now! I use MMC2 to communicate with the wl12xx module, and I put the same configuration code as in board-omap3evm.c into board-omap3beagle.c. But the result is the same!

    Could you provide the message you mentioned during kernel boot when the SDIO card is detected?

    Best regards,

    Simon

  • Simon,

     

    Below are the relevant prints seen when booting the kernel on the omap3evm board.

    You should expect similar prints from you kernel.

    wl12xx power control:

    ....

    [    0.000000] OMAP GPIO hardware version 2.5
    [    0.000000] omap_mux_init: Add partition: #1: core, flags: 0
    [    0.000000] hw-breakpoint: debug architecture 0x4 unsupported.
    [    0.000000] OMAP DMA hardware revision 5.0
    [    0.075897] bio: create slab <bio-0> at 0
    [    0.079193] regulator: vwl1271: 1800 mV
    [    0.082824] SCSI subsystem initialized
    [    0.091430] usbcore: registered new interface driver usbfs
    [    0.092376] usbcore: registered new interface driver hub
    [    0.092987] usbcore: registered new device driver usb
    ...

    ...

    wl12xx sdio card detection:

    [    3.965759] Waiting for root device /dev/mmcblk0p2...
    [    4.061737] mmc0: new SD card at address aaaa
    [    4.068206] mmcblk0: mmc0:aaaa SD02G 1.84 GiB
    [    4.078918]  mmcblk0: p1 p2
    [    4.193511] EXT3-fs: barriers not enabled
    [    4.207824] mmc1: card claims to support voltages below the defined range. Th
    ese will be ignored.
    [    4.243682] mmc1: queuing unknown CIS tuple 0x91 (3 bytes)
    [    4.251525] mmc1: new SDIO card at address 0001
    [    4.745300] kjournald starting.  Commit interval 5 seconds
    [    4.757659] EXT3-fs (mmcblk0p2): using internal journal
    [    4.763122] EXT3-fs (mmcblk0p2): recovery complete
    [    4.770935] EXT3-fs (mmcblk0p2): mounted filesystem with ordered data mode

    Best Regards,

    Eyal

  • Simon,

     

    Below are the relevant prints seen when booting the kernel on the omap3evm board.

    You should expect similar prints from your kernel.

    wl12xx power control:

    ....

    [    0.000000] OMAP GPIO hardware version 2.5
    [    0.000000] omap_mux_init: Add partition: #1: core, flags: 0
    [    0.000000] hw-breakpoint: debug architecture 0x4 unsupported.
    [    0.000000] OMAP DMA hardware revision 5.0
    [    0.075897] bio: create slab <bio-0> at 0
    [    0.079193] regulator: vwl1271: 1800 mV
    [    0.082824] SCSI subsystem initialized
    [    0.091430] usbcore: registered new interface driver usbfs
    [    0.092376] usbcore: registered new interface driver hub
    [    0.092987] usbcore: registered new device driver usb
    ...

    ...

    wl12xx sdio card detection:

    [    3.965759] Waiting for root device /dev/mmcblk0p2...
    [    4.061737] mmc0: new SD card at address aaaa
    [    4.068206] mmcblk0: mmc0:aaaa SD02G 1.84 GiB
    [    4.078918]  mmcblk0: p1 p2
    [    4.193511] EXT3-fs: barriers not enabled
    [    4.207824] mmc1: card claims to support voltages below the defined range. Th
    ese will be ignored.
    [    4.243682] mmc1: queuing unknown CIS tuple 0x91 (3 bytes)
    [    4.251525] mmc1: new SDIO card at address 0001
    [    4.745300] kjournald starting.  Commit interval 5 seconds
    [    4.757659] EXT3-fs (mmcblk0p2): using internal journal
    [    4.763122] EXT3-fs (mmcblk0p2): recovery complete
    [    4.770935] EXT3-fs (mmcblk0p2): mounted filesystem with ordered data mode

    Best Regards,

    Eyal

  • Dear Eyal:

    I found the following message while booting the kernel on beagleboard.

    ...

    Waiting 1sec before mounting root device...                                          
    mmc0: host does not support reading read-only switch. assuming write-enable.                                                                           
    mmc0: new SDHC card at address e624                                 
    mmcblk0: mmc0:e624 SU04G 3.69 GiB                                
    mmcblk0: p1 p2 p3                 
    mmci-omap-hs mmci-omap-hs.1: could not set regulator OCR (-22)                                                             
    usb 1-2.1: new high speed USB device using ehci-omap and address 3

    ...

    I repeated the booting of Devkit 2.2 Froyo (this uses the 2.6.32 kernel) for which wifi driver module works well. 

    I found the similar messsage as following:

    ...

    mmci-omap-hs mmci-omap-hs.1: err -16 configuring card detectid_probe pdata: c04b747c                            
    androi
    usbcore: registered new interface driver usbhidsb ready                                    
    m

    ...

     

    do you have any idea about how to trace the bug on Devkit 2.1  Gingerbread?

    Best regards,

     

    Simon

     

  • Hi Eyal,

     

    "In addition as the NLCP driver is available as a compat-wireless package and uses standard Linux SDIO driver it is easier to port to other platfrom and other Linux kernel versions."

     

    Unfortunately, this does not work for 2.6.32, the NLCP compat code fails to pass the basic compile stage. Here's the details of a simple test I performed. I took TI's Devkit 2.2 Froyo 2.6.32 kernel release. 

    mkdir kernelwork

    cd kernelwork/

    ( download TI's kernel from http://processors.wiki.ti.com/index.php/TI-Android-FroYo-DevKit-V2.2_UserGuide )

    tar xzf /home/beaglexm/TI_Android_Froyo_DevKit-V2.2/Sources/Android_Linux_Kernel_2_6_32.tar.gz

    make CROSS_COMPILE=arm-eabi- distclean && make CROSS_COMPILE=arm-eabi- omap3_beagle_android_defconfig && make CROSS_COMPILE=arm-eabi- uImage

    (everything builds cleanly)

    - now as per http://processors.wiki.ti.com/index.php/OMAP_Wireless_Connectivity_OpenSource_Kernel_Switches , use menuconfig to enable the various settings

     

    beaglexm@beaglexm-desktop:~/kernelwork/Android_Linux_Kernel_2_6_32$ egrep "CONFIG_BT|CONFIG_WLAN|CONFIG_WIRELESS" .config

    CONFIG_BT=y

    CONFIG_BT_L2CAP=y

    CONFIG_BT_SCO=y

    CONFIG_BT_RFCOMM=y

    CONFIG_BT_RFCOMM_TTY=y

    CONFIG_BT_BNEP=y

    CONFIG_BT_BNEP_MC_FILTER=y

    CONFIG_BT_BNEP_PROTO_FILTER=y

    CONFIG_BT_HIDP=y

    CONFIG_BT_HCIUART=y

    CONFIG_BT_HCIUART_H4=y

    CONFIG_BT_HCIUART_LL=y

    CONFIG_WIRELESS=y

    CONFIG_WIRELESS_EXT=y

    CONFIG_WIRELESS_EXT_SYSFS=y

    CONFIG_WLAN=y

     

     

    Good, no problems so far. Note, nothing in the 2.6.32 kernel tree offers WL12XX_PLATFORM_DATA so this config must come from the compat tree we're about to build.

    Okay, so now we go to our compat tree.

    mkdir ~/kernelwork/foo/

    cd ~/kernelwork/foo

    As per http://processors.wiki.ti.com/index.php/OMAP_Wireless_Connectivity_OpenSource_Compat_Wireless_Build, download the compat tarball.

     

    tar xzf /tmp/ti-compat-wireless-wl12xx-2011-05-17-r3-m1-rc2.tgz 

    As per http://processors.wiki.ti.com/index.php/OMAP_Wireless_Connectivity_OpenSource_Compat_Wireless_Build , we tell the build where the TI kernel tree is.

     

    export KLIB_BUILD=~/kernelwork/Android_Linux_Kernel_2_6_32/

    Now, we get to the actual work.

     

    beaglexm@beaglexm-desktop:~/kernelwork/foo$ cd compat-wireless-2.6/
    beaglexm@beaglexm-desktop:~/kernelwork/foo/compat-wireless-2.6$ ./scripts/driver-select wl12xx
    Processing new driver-select request...
    Backup exists: Makefile.bk
    Backup exists: drivers/net/wireless/Makefile.bk
    Backup exists: Makefile.bk
    Backup exists: net/wireless/Makefile.bk
    Backup exists: drivers/net/Makefile.bk
    Backup exists: drivers/ssb/Makefile.bk
    Backup exists: drivers/misc/eeprom/Makefile.bk
    Backup exists: Makefile.bk
    beaglexm@beaglexm-desktop:~/kernelwork/foo/compat-wireless-2.6$ make CROSS_COMPILE=arm-eabi- 
    ./scripts/gen-compat-autoconf.sh config.mk > include/linux/compat_autoconf.h
    make -C /home/beaglexm/kernelwork/Android_Linux_Kernel_2_6_32/ M=/home/beaglexm/kernelwork/foo/compat-wireless-2.6 modules
    make[1]: Entering directory `/home/beaglexm/kernelwork/Android_Linux_Kernel_2_6_32'
      LD      /home/beaglexm/kernelwork/foo/compat-wireless-2.6/compat/built-in.o
      CC [M]  /home/beaglexm/kernelwork/foo/compat-wireless-2.6/compat/main.o
    In file included from /home/beaglexm/kernelwork/foo/compat-wireless-2.6/include/linux/compat-2.6.h:28,
                     from <command-line>:0:
    /home/beaglexm/kernelwork/foo/compat-wireless-2.6/include/linux/compat-2.6.33.h:56:1: warning: "NETDEV_POST_INIT" redefined
    In file included from include/linux/memory_hotplug.h:6,
                     from include/linux/mmzone.h:653,
                     from include/linux/gfp.h:4,
                     from include/linux/kmod.h:22,
                     from include/linux/module.h:13,
                     from include/linux/textsearch.h:7,
                     from include/linux/skbuff.h:27,
                     from include/linux/if_ether.h:124,
                     from include/linux/netdevice.h:29,
                     from /home/beaglexm/kernelwork/foo/compat-wireless-2.6/include/linux/compat-2.6.29.h:5,
                     from /home/beaglexm/kernelwork/foo/compat-wireless-2.6/include/linux/compat-2.6.h:24,
                     from <command-line>:0:
    include/linux/notifier.h:204:1: warning: this is the location of the previous definition
    In file included from /home/beaglexm/kernelwork/foo/compat-wireless-2.6/include/linux/compat-2.6.h:28,
                     from <command-line>:0:
    /home/beaglexm/kernelwork/foo/compat-wireless-2.6/include/linux/compat-2.6.33.h:58: error: redefinition of 'netdev_alloc_skb_ip_align'
    include/linux/skbuff.h:1485: note: previous definition of 'netdev_alloc_skb_ip_align' was here
    /home/beaglexm/kernelwork/foo/compat-wireless-2.6/include/linux/compat-2.6.33.h:121: error: redefinition of 'pci_pcie_cap'
    include/linux/pci.h:1315: note: previous definition of 'pci_pcie_cap' was here
    /home/beaglexm/kernelwork/foo/compat-wireless-2.6/include/linux/compat-2.6.33.h:132: error: redefinition of 'pci_is_pcie'
    include/linux/pci.h:1326: note: previous definition of 'pci_is_pcie' was here
    make[3]: *** [/home/beaglexm/kernelwork/foo/compat-wireless-2.6/compat/main.o] Error 1
    make[2]: *** [/home/beaglexm/kernelwork/foo/compat-wireless-2.6/compat] Error 2
    make[1]: *** [_module_/home/beaglexm/kernelwork/foo/compat-wireless-2.6] Error 2
    make[1]: Leaving directory `/home/beaglexm/kernelwork/Android_Linux_Kernel_2_6_32'
    make: *** [modules] Error 2

     

    Well, that's a clear failure as it appears to have a mismatch of netdev_alloc_skb_ip_align, perhaps because it seems to think it needs a 2.6.33 header. I will look at this further but I would appreciate your feedback whether this kind of failure is to be expected. Should I be working towards fixing these problems in the NLCP compat code or have I deviated from your recommendation somewhere.

     

    Thanks,

    jaya

     

  • Hi Eyal,

    Did you see my post showing that NLCP compat does not work with 2.6.32? Are you able to assist with proposing a solution that can work on 2.6.32 or is this beyond the scope of TI's support capability. I hope to get a clear response (either positive or negative) so that we can move forward.

    Thanks,

    jaya

  • Jaya,

     

    Sorry, I am on the road for the last two weeks and have only limitted email access.

    The 2.6.32 has some of the structures back ported in from later kernel version, this is why you see re-definitions.

    What you should do is that in the file /home/beaglexm/kernelwork/foo/compat-wireless-2.6/include/linux/compat-2.6.33.h just comment out all the elements which are already defined (You can see that it is a multiple definition of the same value).

     

    Hope this helps.

    Best Regards,

    Eyal Reizer

     

  • Hi Simon,

     

    "mmci-omap-hs mmci-omap-hs.1: could not set regulator OCR" error is caused by incorrect kernel build configuration.

    To fix this issue you need to add CONFIG_REGULATOR_FIXED_VOLTAGE=y to your .config and rebuild the kernel.

     

    Best regards,

    Victor Belov

     

  • Hi Eyal,

     

    Thanks for your reply. As you may have guessed, I had already tried commenting out the conflicting structure definitions. The problem that this approach will next run into is:

    /home/beaglexm/kernelwork/foo/compat-wireless-2.6/net/mac80211/main.c: In function 'ieee80211_alloc_hw':

    /home/beaglexm/kernelwork/foo/compat-wireless-2.6/net/mac80211/main.c:623: error: implicit declaration of function '__hw_addr_init'

    make[3]: *** [/home/beaglexm/kernelwork/foo/compat-wireless-2.6/net/mac80211/main.o] Error 1

    make[2]: *** [/home/beaglexm/kernelwork/foo/compat-wireless-2.6/net/mac80211] Error 2

    make[1]: *** [_module_/home/beaglexm/kernelwork/foo/compat-wireless-2.6] Error 2

    make[1]: Leaving directory `/home/beaglexm/kernelwork/Android_Linux_Kernel_2_6_32'

    make: *** [modules] Error 2

    The above happens because __hw_addr_init is a dev private function in 2.6.32:
    beaglexm@beaglexm-desktop:~/kernelwork/foo/compat-wireless-2.6$ egrep __hw_addr_init ~/kernelwork/Android_Linux_Kernel_2_6_32/net/core/dev.c 
    static void __hw_addr_init(struct netdev_hw_addr_list *list)
    It seems conclusive that NLCP code has never been tested/used with the 2.6.32 kernel. Do you agree with this?
    As you can imagine, the fear is this that this solution won't work since it looks very hacked together. I think what you may be suggesting is that I should keep going through this process of hacking on 2.6.32 with nlcp until there are no more errors. I'm okay with doing that but I am worried about whether this is a good solution for the long term. 
    Thanks,
    jaya

  • Jaya,

     

    Did you make sure you have all the kernel switches enabled as in the link below?:

    http://processors.wiki.ti.com/index.php/OMAP_Wireless_Connectivity_OpenSource_Kernel_Switches

     

    Best Regards,

    Eyal

  • Hi Eyal,

     

    Thanks for your reply. Yes, I confirmed the .config entries are all present and match http://processors.wiki.ti.com/index.php/OMAP_Wireless_Connectivity_OpenSource_Kernel_Switches except for wl12xx platform data which as I mentioned in my previous post:

    "Note, nothing in the 2.6.32 kernel tree offers WL12XX_PLATFORM_DATA so this config must come from the compat tree we're about to build."

     

    If you like I can attach my .config if you'd like to double check it.

     

    That said, did you see my explanation for the compilation error:

    beaglexm@beaglexm-desktop:~/kernelwork/foo/compat-wireless-2.6$ egrep __hw_addr_init ~/kernelwork/Android_Linux_Kernel_2_6_32/net/core/dev.c 
    static void __hw_addr_init(struct netdev_hw_addr_list *list)

    Above means __hw_addr_init is a static function and it is not exported outside of dev.c in 2.6.32. This is the cause of the NLCP compilation error that I showed before:

     

    /home/beaglexm/kernelwork/foo/compat-wireless-2.6/net/mac80211/main.c: In function 'ieee80211_alloc_hw':

    /home/beaglexm/kernelwork/foo/compat-wireless-2.6/net/mac80211/main.c:623: error: implicit declaration of function '__hw_addr_init'

    make[3]: *** [/home/beaglexm/kernelwork/foo/compat-wireless-2.6/net/mac80211/main.o] Error 1

    make[2]: *** [/home/beaglexm/kernelwork/foo/compat-wireless-2.6/net/mac80211] Error 2

    make[1]: *** [_module_/home/beaglexm/kernelwork/foo/compat-wireless-2.6] Error 2

    make[1]: Leaving directory `/home/beaglexm/kernelwork/Android_Linux_Kernel_2_6_32'

    make: *** [modules] Error 2

     

    This is why I'm saying that it appears clear that NLCP has not been used/tested with 2.6.32. Do you agree? Are you aware of anyone using NLCP successfully with wl1271/ls240 on the TI Devkit 2.2 Froyo (2.6.32) platform?

     

    Thanks,

    jaya

     

  • In case it is useful, I have attached the .config I'm using with 2.6.32 from Devkit 2.2 Froyo. (renamed to .txt so that e2e permits the upload)

    #
    # Automatically generated make config: don't edit
    # Linux kernel version: 2.6.32
    # Tue Sep 13 21:24:52 2011
    #
    CONFIG_ARM=y
    CONFIG_SYS_SUPPORTS_APM_EMULATION=y
    CONFIG_GENERIC_GPIO=y
    CONFIG_GENERIC_TIME=y
    CONFIG_GENERIC_CLOCKEVENTS=y
    CONFIG_GENERIC_HARDIRQS=y
    CONFIG_STACKTRACE_SUPPORT=y
    CONFIG_HAVE_LATENCYTOP_SUPPORT=y
    CONFIG_LOCKDEP_SUPPORT=y
    CONFIG_TRACE_IRQFLAGS_SUPPORT=y
    CONFIG_HARDIRQS_SW_RESEND=y
    CONFIG_GENERIC_IRQ_PROBE=y
    CONFIG_RWSEM_GENERIC_SPINLOCK=y
    CONFIG_ARCH_HAS_CPUFREQ=y
    CONFIG_GENERIC_HWEIGHT=y
    CONFIG_GENERIC_CALIBRATE_DELAY=y
    CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y
    CONFIG_VECTORS_BASE=0xffff0000
    CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
    CONFIG_CONSTRUCTORS=y
    
    #
    # General setup
    #
    CONFIG_EXPERIMENTAL=y
    CONFIG_BROKEN_ON_SMP=y
    CONFIG_INIT_ENV_ARG_LIMIT=32
    CONFIG_LOCALVERSION=""
    # CONFIG_LOCALVERSION_AUTO is not set
    CONFIG_SWAP=y
    CONFIG_SYSVIPC=y
    CONFIG_SYSVIPC_SYSCTL=y
    # CONFIG_POSIX_MQUEUE is not set
    CONFIG_BSD_PROCESS_ACCT=y
    # CONFIG_BSD_PROCESS_ACCT_V3 is not set
    # CONFIG_TASKSTATS is not set
    # CONFIG_AUDIT is not set
    
    #
    # RCU Subsystem
    #
    CONFIG_TREE_RCU=y
    # CONFIG_TREE_PREEMPT_RCU is not set
    # CONFIG_TINY_RCU is not set
    # CONFIG_RCU_TRACE is not set
    CONFIG_RCU_FANOUT=32
    # CONFIG_RCU_FANOUT_EXACT is not set
    # CONFIG_TREE_RCU_TRACE is not set
    CONFIG_IKCONFIG=y
    CONFIG_IKCONFIG_PROC=y
    CONFIG_LOG_BUF_SHIFT=14
    CONFIG_GROUP_SCHED=y
    CONFIG_FAIR_GROUP_SCHED=y
    # CONFIG_RT_GROUP_SCHED is not set
    CONFIG_USER_SCHED=y
    # CONFIG_CGROUP_SCHED is not set
    # CONFIG_CGROUPS is not set
    # CONFIG_SYSFS_DEPRECATED_V2 is not set
    # CONFIG_RELAY is not set
    # CONFIG_NAMESPACES is not set
    CONFIG_BLK_DEV_INITRD=y
    CONFIG_INITRAMFS_SOURCE=""
    CONFIG_RD_GZIP=y
    # CONFIG_RD_BZIP2 is not set
    # CONFIG_RD_LZMA is not set
    CONFIG_CC_OPTIMIZE_FOR_SIZE=y
    CONFIG_SYSCTL=y
    CONFIG_ANON_INODES=y
    CONFIG_PANIC_TIMEOUT=0
    CONFIG_EMBEDDED=y
    CONFIG_UID16=y
    # CONFIG_SYSCTL_SYSCALL is not set
    CONFIG_KALLSYMS=y
    # CONFIG_KALLSYMS_ALL is not set
    CONFIG_KALLSYMS_EXTRA_PASS=y
    CONFIG_HOTPLUG=y
    CONFIG_PRINTK=y
    CONFIG_BUG=y
    CONFIG_ELF_CORE=y
    CONFIG_BASE_FULL=y
    CONFIG_FUTEX=y
    CONFIG_EPOLL=y
    CONFIG_SIGNALFD=y
    CONFIG_TIMERFD=y
    CONFIG_EVENTFD=y
    CONFIG_SHMEM=y
    CONFIG_ASHMEM=y
    CONFIG_AIO=y
    
    #
    # Kernel Performance Events And Counters
    #
    CONFIG_VM_EVENT_COUNTERS=y
    CONFIG_COMPAT_BRK=y
    CONFIG_SLAB=y
    # CONFIG_SLUB is not set
    # CONFIG_SLOB is not set
    # CONFIG_PROFILING is not set
    CONFIG_HAVE_OPROFILE=y
    # CONFIG_KPROBES is not set
    CONFIG_HAVE_KPROBES=y
    CONFIG_HAVE_KRETPROBES=y
    CONFIG_HAVE_CLK=y
    
    #
    # GCOV-based kernel profiling
    #
    # CONFIG_GCOV_KERNEL is not set
    # CONFIG_SLOW_WORK is not set
    CONFIG_HAVE_GENERIC_DMA_COHERENT=y
    CONFIG_SLABINFO=y
    CONFIG_RT_MUTEXES=y
    CONFIG_BASE_SMALL=0
    CONFIG_MODULES=y
    # CONFIG_MODULE_FORCE_LOAD is not set
    CONFIG_MODULE_UNLOAD=y
    # CONFIG_MODULE_FORCE_UNLOAD is not set
    CONFIG_MODVERSIONS=y
    CONFIG_MODULE_SRCVERSION_ALL=y
    CONFIG_BLOCK=y
    CONFIG_LBDAF=y
    # CONFIG_BLK_DEV_BSG is not set
    # CONFIG_BLK_DEV_INTEGRITY is not set
    
    #
    # IO Schedulers
    #
    CONFIG_IOSCHED_NOOP=y
    CONFIG_IOSCHED_DEADLINE=y
    CONFIG_IOSCHED_CFQ=y
    # CONFIG_DEFAULT_DEADLINE is not set
    CONFIG_DEFAULT_CFQ=y
    # CONFIG_DEFAULT_NOOP is not set
    CONFIG_DEFAULT_IOSCHED="cfq"
    # CONFIG_INLINE_SPIN_TRYLOCK is not set
    # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set
    # CONFIG_INLINE_SPIN_LOCK is not set
    # CONFIG_INLINE_SPIN_LOCK_BH is not set
    # CONFIG_INLINE_SPIN_LOCK_IRQ is not set
    # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set
    CONFIG_INLINE_SPIN_UNLOCK=y
    # CONFIG_INLINE_SPIN_UNLOCK_BH is not set
    CONFIG_INLINE_SPIN_UNLOCK_IRQ=y
    # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set
    # CONFIG_INLINE_READ_TRYLOCK is not set
    # CONFIG_INLINE_READ_LOCK is not set
    # CONFIG_INLINE_READ_LOCK_BH is not set
    # CONFIG_INLINE_READ_LOCK_IRQ is not set
    # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set
    CONFIG_INLINE_READ_UNLOCK=y
    # CONFIG_INLINE_READ_UNLOCK_BH is not set
    CONFIG_INLINE_READ_UNLOCK_IRQ=y
    # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set
    # CONFIG_INLINE_WRITE_TRYLOCK is not set
    # CONFIG_INLINE_WRITE_LOCK is not set
    # CONFIG_INLINE_WRITE_LOCK_BH is not set
    # CONFIG_INLINE_WRITE_LOCK_IRQ is not set
    # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set
    CONFIG_INLINE_WRITE_UNLOCK=y
    # CONFIG_INLINE_WRITE_UNLOCK_BH is not set
    CONFIG_INLINE_WRITE_UNLOCK_IRQ=y
    # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set
    # CONFIG_MUTEX_SPIN_ON_OWNER is not set
    CONFIG_FREEZER=y
    
    #
    # System Type
    #
    CONFIG_MMU=y
    # CONFIG_ARCH_AAEC2000 is not set
    # CONFIG_ARCH_INTEGRATOR is not set
    # CONFIG_ARCH_REALVIEW is not set
    # CONFIG_ARCH_VERSATILE is not set
    # CONFIG_ARCH_AT91 is not set
    # CONFIG_ARCH_CLPS711X is not set
    # CONFIG_ARCH_GEMINI is not set
    # CONFIG_ARCH_EBSA110 is not set
    # CONFIG_ARCH_EP93XX is not set
    # CONFIG_ARCH_FOOTBRIDGE is not set
    # CONFIG_ARCH_MXC is not set
    # CONFIG_ARCH_STMP3XXX is not set
    # CONFIG_ARCH_NETX is not set
    # CONFIG_ARCH_H720X is not set
    # CONFIG_ARCH_NOMADIK is not set
    # CONFIG_ARCH_IOP13XX is not set
    # CONFIG_ARCH_IOP32X is not set
    # CONFIG_ARCH_IOP33X is not set
    # CONFIG_ARCH_IXP23XX is not set
    # CONFIG_ARCH_IXP2000 is not set
    # CONFIG_ARCH_IXP4XX is not set
    # CONFIG_ARCH_L7200 is not set
    # CONFIG_ARCH_DOVE is not set
    # CONFIG_ARCH_KIRKWOOD is not set
    # CONFIG_ARCH_LOKI is not set
    # CONFIG_ARCH_MV78XX0 is not set
    # CONFIG_ARCH_ORION5X is not set
    # CONFIG_ARCH_MMP is not set
    # CONFIG_ARCH_KS8695 is not set
    # CONFIG_ARCH_NS9XXX is not set
    # CONFIG_ARCH_W90X900 is not set
    # CONFIG_ARCH_PNX4008 is not set
    # CONFIG_ARCH_PXA is not set
    # CONFIG_ARCH_MSM is not set
    # CONFIG_ARCH_RPC is not set
    # CONFIG_ARCH_SA1100 is not set
    # CONFIG_ARCH_S3C2410 is not set
    # CONFIG_ARCH_S3C64XX is not set
    # CONFIG_ARCH_S5PC1XX is not set
    # CONFIG_ARCH_SHARK is not set
    # CONFIG_ARCH_LH7A40X is not set
    # CONFIG_ARCH_U300 is not set
    # CONFIG_ARCH_DAVINCI is not set
    CONFIG_ARCH_OMAP=y
    # CONFIG_ARCH_BCMRING is not set
    # CONFIG_ARCH_U8500 is not set
    
    #
    # TI OMAP Implementations
    #
    CONFIG_ARCH_OMAP_OTG=y
    # CONFIG_ARCH_OMAP1 is not set
    # CONFIG_ARCH_OMAP2 is not set
    CONFIG_ARCH_OMAP3=y
    # CONFIG_ARCH_OMAP4 is not set
    
    #
    # OMAP Feature Selections
    #
    CONFIG_OMAP_SMARTREFLEX=y
    # CONFIG_OMAP_SMARTREFLEX_TESTING is not set
    CONFIG_OMAP_RESET_CLOCKS=y
    CONFIG_OMAP_MUX=y
    # CONFIG_OMAP_MUX_DEBUG is not set
    CONFIG_OMAP_MUX_WARNINGS=y
    CONFIG_OMAP_MCBSP=y
    # CONFIG_OMAP_MBOX_FWK is not set
    CONFIG_OMAP_IOMMU=y
    # CONFIG_OMAP_MPU_TIMER is not set
    CONFIG_OMAP_32K_TIMER=y
    # CONFIG_OMAP3_L2_AUX_SECURE_SAVE_RESTORE is not set
    # CONFIG_OMAP3_DEBOBS is not set
    CONFIG_OMAP_32K_TIMER_HZ=128
    CONFIG_OMAP_DM_TIMER=y
    # CONFIG_OMAP_LL_DEBUG_UART1 is not set
    # CONFIG_OMAP_LL_DEBUG_UART2 is not set
    CONFIG_OMAP_LL_DEBUG_UART3=y
    # CONFIG_OMAP_LL_DEBUG_NONE is not set
    # CONFIG_OMAP_PM_NONE is not set
    CONFIG_OMAP_PM_NOOP=y
    # CONFIG_OMAP_PM_SRF is not set
    CONFIG_ARCH_OMAP34XX=y
    CONFIG_ARCH_OMAP3430=y
    CONFIG_OMAP_PACKAGE_CBB=y
    
    #
    # OMAP Board Type
    #
    CONFIG_MACH_OMAP3_BEAGLE=y
    CONFIG_MACH_OMAP3_WISER2=y
    # CONFIG_MACH_OMAP_LDP is not set
    # CONFIG_MACH_OVERO is not set
    # CONFIG_MACH_OMAP3EVM is not set
    # CONFIG_MACH_OMAP3517EVM is not set
    # CONFIG_MACH_OMAP3_PANDORA is not set
    # CONFIG_MACH_OMAP3_TOUCHBOOK is not set
    # CONFIG_MACH_OMAP_3430SDP is not set
    # CONFIG_MACH_NOKIA_RX51 is not set
    # CONFIG_MACH_OMAP_ZOOM2 is not set
    # CONFIG_MACH_OMAP_ZOOM3 is not set
    # CONFIG_MACH_CM_T35 is not set
    # CONFIG_MACH_IGEP0020 is not set
    # CONFIG_MACH_OMAP_3630SDP is not set
    # CONFIG_OMAP3_EMU is not set
    # CONFIG_OMAP3_SDRC_AC_TIMING is not set
    
    #
    # Processor Type
    #
    CONFIG_CPU_32=y
    CONFIG_CPU_32v6K=y
    CONFIG_CPU_V7=y
    CONFIG_CPU_32v7=y
    CONFIG_CPU_ABRT_EV7=y
    CONFIG_CPU_PABRT_V7=y
    CONFIG_CPU_CACHE_V7=y
    CONFIG_CPU_CACHE_VIPT=y
    CONFIG_CPU_COPY_V6=y
    CONFIG_CPU_TLB_V7=y
    CONFIG_CPU_HAS_ASID=y
    CONFIG_CPU_CP15=y
    CONFIG_CPU_CP15_MMU=y
    
    #
    # Processor Features
    #
    CONFIG_ARM_THUMB=y
    # CONFIG_ARM_THUMBEE is not set
    # CONFIG_CPU_ICACHE_DISABLE is not set
    # CONFIG_CPU_DCACHE_DISABLE is not set
    # CONFIG_CPU_BPREDICT_DISABLE is not set
    CONFIG_HAS_TLS_REG=y
    CONFIG_ARM_L1_CACHE_SHIFT=6
    # CONFIG_USER_L2_PLE is not set
    # CONFIG_USER_PMON is not set
    # CONFIG_ARM_ERRATA_430973 is not set
    # CONFIG_ARM_ERRATA_458693 is not set
    # CONFIG_ARM_ERRATA_460075 is not set
    CONFIG_COMMON_CLKDEV=y
    
    #
    # Bus support
    #
    # CONFIG_PCI_SYSCALL is not set
    # CONFIG_ARCH_SUPPORTS_MSI is not set
    # CONFIG_PCCARD is not set
    
    #
    # Kernel Features
    #
    CONFIG_TICK_ONESHOT=y
    CONFIG_NO_HZ=y
    CONFIG_HIGH_RES_TIMERS=y
    CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
    CONFIG_VMSPLIT_3G=y
    # CONFIG_VMSPLIT_2G is not set
    # CONFIG_VMSPLIT_1G is not set
    CONFIG_PAGE_OFFSET=0xC0000000
    CONFIG_PREEMPT_NONE=y
    # CONFIG_PREEMPT_VOLUNTARY is not set
    # CONFIG_PREEMPT is not set
    CONFIG_HZ=128
    # CONFIG_THUMB2_KERNEL is not set
    CONFIG_AEABI=y
    CONFIG_OABI_COMPAT=y
    CONFIG_ARCH_HAS_HOLES_MEMORYMODEL=y
    # CONFIG_ARCH_SPARSEMEM_DEFAULT is not set
    # CONFIG_ARCH_SELECT_MEMORY_MODEL is not set
    # CONFIG_HIGHMEM is not set
    CONFIG_SELECT_MEMORY_MODEL=y
    CONFIG_FLATMEM_MANUAL=y
    # CONFIG_DISCONTIGMEM_MANUAL is not set
    # CONFIG_SPARSEMEM_MANUAL is not set
    CONFIG_FLATMEM=y
    CONFIG_FLAT_NODE_MEM_MAP=y
    CONFIG_PAGEFLAGS_EXTENDED=y
    CONFIG_SPLIT_PTLOCK_CPUS=4
    # CONFIG_PHYS_ADDR_T_64BIT is not set
    CONFIG_ZONE_DMA_FLAG=0
    CONFIG_VIRT_TO_BUS=y
    # CONFIG_KSM is not set
    CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
    # CONFIG_LEDS is not set
    CONFIG_ALIGNMENT_TRAP=y
    # CONFIG_UACCESS_WITH_MEMCPY is not set
    CONFIG_CPU_V7_SYSFS=y
    
    #
    # Boot options
    #
    CONFIG_ZBOOT_ROM_TEXT=0x0
    CONFIG_ZBOOT_ROM_BSS=0x0
    CONFIG_CMDLINE="root=/dev/nfs nfsroot=192.168.0.1:/home/user/buildroot ip=192.168.0.2:192.168.0.1:192.168.0.1:255.255.255.0:tgt:eth0:off rw console=ttyS2,115200n8"
    # CONFIG_XIP_KERNEL is not set
    # CONFIG_KEXEC is not set
    
    #
    # CPU Power Management
    #
    CONFIG_CPU_FREQ=y
    CONFIG_CPU_FREQ_TABLE=y
    # CONFIG_CPU_FREQ_DEBUG is not set
    CONFIG_CPU_FREQ_STAT=y
    CONFIG_CPU_FREQ_STAT_DETAILS=y
    CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
    # CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
    # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
    # CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
    # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
    CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
    CONFIG_CPU_FREQ_GOV_POWERSAVE=y
    CONFIG_CPU_FREQ_GOV_USERSPACE=y
    CONFIG_CPU_FREQ_GOV_ONDEMAND=y
    CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
    # CONFIG_CPU_IDLE is not set
    
    #
    # Floating point emulation
    #
    
    #
    # At least one emulation must be selected
    #
    CONFIG_FPE_NWFPE=y
    # CONFIG_FPE_NWFPE_XP is not set
    # CONFIG_FPE_FASTFPE is not set
    CONFIG_VFP=y
    CONFIG_VFPv3=y
    CONFIG_NEON=y
    
    #
    # Userspace binary formats
    #
    CONFIG_BINFMT_ELF=y
    # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set
    CONFIG_HAVE_AOUT=y
    # CONFIG_BINFMT_AOUT is not set
    CONFIG_BINFMT_MISC=y
    
    #
    # Power management options
    #
    CONFIG_PM=y
    CONFIG_PM_DEBUG=y
    # CONFIG_PM_VERBOSE is not set
    CONFIG_CAN_PM_TRACE=y
    CONFIG_PM_SLEEP=y
    CONFIG_SUSPEND=y
    # CONFIG_PM_TEST_SUSPEND is not set
    CONFIG_SUSPEND_FREEZER=y
    CONFIG_HAS_WAKELOCK=y
    CONFIG_HAS_EARLYSUSPEND=y
    CONFIG_WAKELOCK=y
    CONFIG_WAKELOCK_STAT=y
    CONFIG_USER_WAKELOCK=y
    CONFIG_EARLYSUSPEND=y
    # CONFIG_NO_USER_SPACE_SCREEN_ACCESS_CONTROL is not set
    # CONFIG_CONSOLE_EARLYSUSPEND is not set
    CONFIG_FB_EARLYSUSPEND=y
    # CONFIG_APM_EMULATION is not set
    # CONFIG_PM_RUNTIME is not set
    CONFIG_ARCH_SUSPEND_POSSIBLE=y
    CONFIG_NET=y
    
    #
    # Networking options
    #
    CONFIG_PACKET=y
    CONFIG_PACKET_MMAP=y
    CONFIG_UNIX=y
    CONFIG_XFRM=y
    # CONFIG_XFRM_USER is not set
    # CONFIG_XFRM_SUB_POLICY is not set
    # CONFIG_XFRM_MIGRATE is not set
    # CONFIG_XFRM_STATISTICS is not set
    CONFIG_NET_KEY=y
    # CONFIG_NET_KEY_MIGRATE is not set
    CONFIG_INET=y
    # CONFIG_IP_MULTICAST is not set
    # CONFIG_IP_ADVANCED_ROUTER is not set
    CONFIG_IP_FIB_HASH=y
    CONFIG_IP_PNP=y
    CONFIG_IP_PNP_DHCP=y
    CONFIG_IP_PNP_BOOTP=y
    CONFIG_IP_PNP_RARP=y
    # CONFIG_NET_IPIP is not set
    # CONFIG_NET_IPGRE is not set
    # CONFIG_ARPD is not set
    # CONFIG_SYN_COOKIES is not set
    # CONFIG_INET_AH is not set
    # CONFIG_INET_ESP is not set
    # CONFIG_INET_IPCOMP is not set
    # CONFIG_INET_XFRM_TUNNEL is not set
    # CONFIG_INET_TUNNEL is not set
    CONFIG_INET_XFRM_MODE_TRANSPORT=y
    CONFIG_INET_XFRM_MODE_TUNNEL=y
    CONFIG_INET_XFRM_MODE_BEET=y
    # CONFIG_INET_LRO is not set
    CONFIG_INET_DIAG=y
    CONFIG_INET_TCP_DIAG=y
    # CONFIG_TCP_CONG_ADVANCED is not set
    CONFIG_TCP_CONG_CUBIC=y
    CONFIG_DEFAULT_TCP_CONG="cubic"
    # CONFIG_TCP_MD5SIG is not set
    # CONFIG_IPV6 is not set
    # CONFIG_NETLABEL is not set
    # CONFIG_NETWORK_SECMARK is not set
    CONFIG_NETFILTER=y
    # CONFIG_NETFILTER_DEBUG is not set
    CONFIG_NETFILTER_ADVANCED=y
    
    #
    # Core Netfilter Configuration
    #
    # CONFIG_NETFILTER_NETLINK_QUEUE is not set
    # CONFIG_NETFILTER_NETLINK_LOG is not set
    CONFIG_NF_CONNTRACK=y
    # CONFIG_NF_CT_ACCT is not set
    # CONFIG_NF_CONNTRACK_MARK is not set
    # CONFIG_NF_CONNTRACK_EVENTS is not set
    # CONFIG_NF_CT_PROTO_DCCP is not set
    # CONFIG_NF_CT_PROTO_SCTP is not set
    # CONFIG_NF_CT_PROTO_UDPLITE is not set
    # CONFIG_NF_CONNTRACK_AMANDA is not set
    # CONFIG_NF_CONNTRACK_FTP is not set
    # CONFIG_NF_CONNTRACK_H323 is not set
    # CONFIG_NF_CONNTRACK_IRC is not set
    # CONFIG_NF_CONNTRACK_NETBIOS_NS is not set
    # CONFIG_NF_CONNTRACK_PPTP is not set
    # CONFIG_NF_CONNTRACK_SANE is not set
    # CONFIG_NF_CONNTRACK_SIP is not set
    # CONFIG_NF_CONNTRACK_TFTP is not set
    # CONFIG_NF_CT_NETLINK is not set
    CONFIG_NETFILTER_XTABLES=y
    # CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set
    # CONFIG_NETFILTER_XT_TARGET_CONNMARK is not set
    # CONFIG_NETFILTER_XT_TARGET_MARK is not set
    # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set
    # CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set
    # CONFIG_NETFILTER_XT_TARGET_RATEEST is not set
    # CONFIG_NETFILTER_XT_TARGET_TCPMSS is not set
    # CONFIG_NETFILTER_XT_MATCH_CLUSTER is not set
    # CONFIG_NETFILTER_XT_MATCH_COMMENT is not set
    # CONFIG_NETFILTER_XT_MATCH_CONNBYTES is not set
    # CONFIG_NETFILTER_XT_MATCH_CONNLIMIT is not set
    # CONFIG_NETFILTER_XT_MATCH_CONNMARK is not set
    # CONFIG_NETFILTER_XT_MATCH_CONNTRACK is not set
    # CONFIG_NETFILTER_XT_MATCH_DCCP is not set
    # CONFIG_NETFILTER_XT_MATCH_DSCP is not set
    # CONFIG_NETFILTER_XT_MATCH_ESP is not set
    # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set
    # CONFIG_NETFILTER_XT_MATCH_HELPER is not set
    # CONFIG_NETFILTER_XT_MATCH_HL is not set
    # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set
    # CONFIG_NETFILTER_XT_MATCH_LENGTH is not set
    # CONFIG_NETFILTER_XT_MATCH_LIMIT is not set
    # CONFIG_NETFILTER_XT_MATCH_MAC is not set
    # CONFIG_NETFILTER_XT_MATCH_MARK is not set
    # CONFIG_NETFILTER_XT_MATCH_MULTIPORT is not set
    # CONFIG_NETFILTER_XT_MATCH_OWNER is not set
    # CONFIG_NETFILTER_XT_MATCH_POLICY is not set
    # CONFIG_NETFILTER_XT_MATCH_PKTTYPE is not set
    # CONFIG_NETFILTER_XT_MATCH_QUOTA is not set
    # CONFIG_NETFILTER_XT_MATCH_RATEEST is not set
    # CONFIG_NETFILTER_XT_MATCH_REALM is not set
    # CONFIG_NETFILTER_XT_MATCH_RECENT is not set
    # CONFIG_NETFILTER_XT_MATCH_SCTP is not set
    # CONFIG_NETFILTER_XT_MATCH_STATE is not set
    # CONFIG_NETFILTER_XT_MATCH_STATISTIC is not set
    # CONFIG_NETFILTER_XT_MATCH_STRING is not set
    # CONFIG_NETFILTER_XT_MATCH_TCPMSS is not set
    # CONFIG_NETFILTER_XT_MATCH_TIME is not set
    # CONFIG_NETFILTER_XT_MATCH_U32 is not set
    # CONFIG_IP_VS is not set
    
    #
    # IP: Netfilter Configuration
    #
    CONFIG_NF_DEFRAG_IPV4=y
    CONFIG_NF_CONNTRACK_IPV4=y
    CONFIG_NF_CONNTRACK_PROC_COMPAT=y
    # CONFIG_IP_NF_QUEUE is not set
    CONFIG_IP_NF_IPTABLES=y
    # CONFIG_IP_NF_MATCH_ADDRTYPE is not set
    # CONFIG_IP_NF_MATCH_AH is not set
    # CONFIG_IP_NF_MATCH_ECN is not set
    # CONFIG_IP_NF_MATCH_TTL is not set
    CONFIG_IP_NF_FILTER=y
    # CONFIG_IP_NF_TARGET_REJECT is not set
    CONFIG_IP_NF_TARGET_LOG=y
    # CONFIG_IP_NF_TARGET_ULOG is not set
    CONFIG_NF_NAT=y
    CONFIG_NF_NAT_NEEDED=y
    CONFIG_IP_NF_TARGET_MASQUERADE=y
    # CONFIG_IP_NF_TARGET_NETMAP is not set
    # CONFIG_IP_NF_TARGET_REDIRECT is not set
    # CONFIG_NF_NAT_SNMP_BASIC is not set
    # CONFIG_NF_NAT_FTP is not set
    # CONFIG_NF_NAT_IRC is not set
    # CONFIG_NF_NAT_TFTP is not set
    # CONFIG_NF_NAT_AMANDA is not set
    # CONFIG_NF_NAT_PPTP is not set
    # CONFIG_NF_NAT_H323 is not set
    # CONFIG_NF_NAT_SIP is not set
    # CONFIG_IP_NF_MANGLE is not set
    # CONFIG_IP_NF_TARGET_TTL is not set
    # CONFIG_IP_NF_RAW is not set
    # CONFIG_IP_NF_SECURITY is not set
    # CONFIG_IP_NF_ARPTABLES is not set
    # CONFIG_IP_DCCP is not set
    # CONFIG_IP_SCTP is not set
    # CONFIG_RDS is not set
    # CONFIG_TIPC is not set
    # CONFIG_ATM is not set
    # CONFIG_BRIDGE is not set
    # CONFIG_NET_DSA is not set
    # CONFIG_VLAN_8021Q is not set
    # CONFIG_DECNET is not set
    # CONFIG_LLC2 is not set
    # CONFIG_IPX is not set
    # CONFIG_ATALK is not set
    # CONFIG_X25 is not set
    # CONFIG_LAPB is not set
    # CONFIG_ECONET is not set
    # CONFIG_WAN_ROUTER is not set
    # CONFIG_PHONET is not set
    # CONFIG_IEEE802154 is not set
    # CONFIG_NET_SCHED is not set
    # CONFIG_DCB is not set
    
    #
    # Network testing
    #
    # CONFIG_NET_PKTGEN is not set
    # CONFIG_HAMRADIO is not set
    # CONFIG_CAN is not set
    # CONFIG_IRDA is not set
    CONFIG_BT=y
    CONFIG_BT_L2CAP=y
    CONFIG_BT_SCO=y
    CONFIG_BT_RFCOMM=y
    CONFIG_BT_RFCOMM_TTY=y
    CONFIG_BT_BNEP=y
    CONFIG_BT_BNEP_MC_FILTER=y
    CONFIG_BT_BNEP_PROTO_FILTER=y
    CONFIG_BT_HIDP=y
    
    #
    # Bluetooth device drivers
    #
    # CONFIG_BT_HCIBTUSB is not set
    # CONFIG_BT_HCIBTSDIO is not set
    CONFIG_BT_HCIUART=y
    CONFIG_BT_HCIUART_H4=y
    # CONFIG_BT_HCIUART_BCSP is not set
    CONFIG_BT_HCIUART_LL=y
    # CONFIG_BT_HCIBCM203X is not set
    # CONFIG_BT_HCIBPA10X is not set
    # CONFIG_BT_HCIBFUSB is not set
    # CONFIG_BT_HCIVHCI is not set
    # CONFIG_BT_MRVL is not set
    # CONFIG_BT_WL1271 is not set
    # CONFIG_AF_RXRPC is not set
    CONFIG_WIRELESS=y
    CONFIG_WIRELESS_EXT=y
    CONFIG_WEXT_CORE=y
    CONFIG_WEXT_PROC=y
    CONFIG_WEXT_SPY=y
    CONFIG_WEXT_PRIV=y
    CONFIG_CFG80211=m
    # CONFIG_NL80211_TESTMODE is not set
    # CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
    # CONFIG_CFG80211_REG_DEBUG is not set
    CONFIG_CFG80211_DEFAULT_PS=y
    # CONFIG_CFG80211_DEBUGFS is not set
    # CONFIG_WIRELESS_OLD_REGULATORY is not set
    CONFIG_CFG80211_WEXT=y
    CONFIG_WIRELESS_EXT_SYSFS=y
    # CONFIG_LIB80211 is not set
    CONFIG_MAC80211=m
    # CONFIG_MAC80211_RC_PID is not set
    CONFIG_MAC80211_RC_MINSTREL=y
    # CONFIG_MAC80211_RC_DEFAULT_PID is not set
    CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
    CONFIG_MAC80211_RC_DEFAULT="minstrel"
    # CONFIG_MAC80211_MESH is not set
    # CONFIG_MAC80211_LEDS is not set
    # CONFIG_MAC80211_DEBUGFS is not set
    # CONFIG_MAC80211_DEBUG_MENU is not set
    # CONFIG_WIMAX is not set
    CONFIG_RFKILL=y
    CONFIG_RFKILL_PM=y
    # CONFIG_RFKILL_INPUT is not set
    # CONFIG_NET_9P is not set
    
    #
    # Device Drivers
    #
    
    #
    # Generic Driver Options
    #
    CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
    # CONFIG_DEVTMPFS is not set
    CONFIG_STANDALONE=y
    CONFIG_PREVENT_FIRMWARE_BUILD=y
    # CONFIG_FW_LOADER is not set
    # CONFIG_DEBUG_DRIVER is not set
    # CONFIG_DEBUG_DEVRES is not set
    # CONFIG_SYS_HYPERVISOR is not set
    # CONFIG_CONNECTOR is not set
    CONFIG_MTD=y
    # CONFIG_MTD_DEBUG is not set
    # CONFIG_MTD_TESTS is not set
    # CONFIG_MTD_CONCAT is not set
    CONFIG_MTD_PARTITIONS=y
    # CONFIG_MTD_REDBOOT_PARTS is not set
    # CONFIG_MTD_CMDLINE_PARTS is not set
    # CONFIG_MTD_AFS_PARTS is not set
    # CONFIG_MTD_AR7_PARTS is not set
    
    #
    # User Modules And Translation Layers
    #
    CONFIG_MTD_CHAR=y
    CONFIG_MTD_BLKDEVS=y
    CONFIG_MTD_BLOCK=y
    # CONFIG_FTL is not set
    # CONFIG_NFTL is not set
    # CONFIG_INFTL is not set
    # CONFIG_RFD_FTL is not set
    # CONFIG_SSFDC is not set
    # CONFIG_MTD_OOPS is not set
    
    #
    # RAM/ROM/Flash chip drivers
    #
    # CONFIG_MTD_CFI is not set
    # CONFIG_MTD_JEDECPROBE is not set
    CONFIG_MTD_MAP_BANK_WIDTH_1=y
    CONFIG_MTD_MAP_BANK_WIDTH_2=y
    CONFIG_MTD_MAP_BANK_WIDTH_4=y
    # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
    # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
    # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
    CONFIG_MTD_CFI_I1=y
    CONFIG_MTD_CFI_I2=y
    # CONFIG_MTD_CFI_I4 is not set
    # CONFIG_MTD_CFI_I8 is not set
    # CONFIG_MTD_RAM is not set
    # CONFIG_MTD_ROM is not set
    # CONFIG_MTD_ABSENT is not set
    
    #
    # Mapping drivers for chip access
    #
    # CONFIG_MTD_COMPLEX_MAPPINGS is not set
    # CONFIG_MTD_PLATRAM is not set
    
    #
    # Self-contained MTD device drivers
    #
    # CONFIG_MTD_SLRAM is not set
    # CONFIG_MTD_PHRAM is not set
    # CONFIG_MTD_MTDRAM is not set
    # CONFIG_MTD_BLOCK2MTD is not set
    
    #
    # Disk-On-Chip Device Drivers
    #
    # CONFIG_MTD_DOC2000 is not set
    # CONFIG_MTD_DOC2001 is not set
    # CONFIG_MTD_DOC2001PLUS is not set
    CONFIG_MTD_NAND_IDS=y
    CONFIG_MTD_NAND=y
    # CONFIG_MTD_NAND_VERIFY_WRITE is not set
    # CONFIG_MTD_NAND_ECC_SMC is not set
    # CONFIG_MTD_NAND_MUSEUM_IDS is not set
    # CONFIG_MTD_NAND_GPIO is not set
    # CONFIG_MTD_NAND_OMAP2 is not set
    # CONFIG_MTD_NAND_DISKONCHIP is not set
    # CONFIG_MTD_NAND_NANDSIM is not set
    # CONFIG_MTD_NAND_PLATFORM is not set
    # CONFIG_MTD_ALAUDA is not set
    # CONFIG_MTD_ONENAND is not set
    
    #
    # LPDDR flash memory drivers
    #
    # CONFIG_MTD_LPDDR is not set
    
    #
    # UBI - Unsorted block images
    #
    CONFIG_MTD_UBI=y
    CONFIG_MTD_UBI_WL_THRESHOLD=4096
    CONFIG_MTD_UBI_BEB_RESERVE=1
    # CONFIG_MTD_UBI_GLUEBI is not set
    
    #
    # UBI debugging options
    #
    # CONFIG_MTD_UBI_DEBUG is not set
    # CONFIG_PARPORT is not set
    CONFIG_BLK_DEV=y
    # CONFIG_BLK_DEV_COW_COMMON is not set
    CONFIG_BLK_DEV_LOOP=y
    # CONFIG_BLK_DEV_CRYPTOLOOP is not set
    
    #
    # DRBD disabled because PROC_FS, INET or CONNECTOR not selected
    #
    # CONFIG_BLK_DEV_NBD is not set
    # CONFIG_BLK_DEV_UB is not set
    CONFIG_BLK_DEV_RAM=y
    CONFIG_BLK_DEV_RAM_COUNT=16
    CONFIG_BLK_DEV_RAM_SIZE=16384
    # CONFIG_BLK_DEV_XIP is not set
    # CONFIG_CDROM_PKTCDVD is not set
    # CONFIG_ATA_OVER_ETH is not set
    # CONFIG_MG_DISK is not set
    # CONFIG_MISC_DEVICES is not set
    CONFIG_HAVE_IDE=y
    # CONFIG_IDE is not set
    
    #
    # SCSI device support
    #
    # CONFIG_RAID_ATTRS is not set
    CONFIG_SCSI=y
    CONFIG_SCSI_DMA=y
    # CONFIG_SCSI_TGT is not set
    # CONFIG_SCSI_NETLINK is not set
    CONFIG_SCSI_PROC_FS=y
    
    #
    # SCSI support type (disk, tape, CD-ROM)
    #
    CONFIG_BLK_DEV_SD=y
    # CONFIG_CHR_DEV_ST is not set
    # CONFIG_CHR_DEV_OSST is not set
    # CONFIG_BLK_DEV_SR is not set
    # CONFIG_CHR_DEV_SG is not set
    # CONFIG_CHR_DEV_SCH is not set
    # CONFIG_SCSI_MULTI_LUN is not set
    # CONFIG_SCSI_CONSTANTS is not set
    # CONFIG_SCSI_LOGGING is not set
    # CONFIG_SCSI_SCAN_ASYNC is not set
    CONFIG_SCSI_WAIT_SCAN=m
    
    #
    # SCSI Transports
    #
    # CONFIG_SCSI_SPI_ATTRS is not set
    # CONFIG_SCSI_FC_ATTRS is not set
    # CONFIG_SCSI_ISCSI_ATTRS is not set
    # CONFIG_SCSI_SAS_LIBSAS is not set
    # CONFIG_SCSI_SRP_ATTRS is not set
    CONFIG_SCSI_LOWLEVEL=y
    # CONFIG_ISCSI_TCP is not set
    # CONFIG_LIBFC is not set
    # CONFIG_LIBFCOE is not set
    # CONFIG_SCSI_DEBUG is not set
    # CONFIG_SCSI_DH is not set
    # CONFIG_SCSI_OSD_INITIATOR is not set
    # CONFIG_ATA is not set
    # CONFIG_MD is not set
    CONFIG_NETDEVICES=y
    # CONFIG_DUMMY is not set
    # CONFIG_BONDING is not set
    # CONFIG_MACVLAN is not set
    # CONFIG_EQUALIZER is not set
    # CONFIG_TUN is not set
    # CONFIG_VETH is not set
    CONFIG_PHYLIB=y
    
    #
    # MII PHY device drivers
    #
    # CONFIG_MARVELL_PHY is not set
    # CONFIG_DAVICOM_PHY is not set
    # CONFIG_QSEMI_PHY is not set
    # CONFIG_LXT_PHY is not set
    # CONFIG_CICADA_PHY is not set
    # CONFIG_VITESSE_PHY is not set
    CONFIG_SMSC_PHY=y
    # CONFIG_BROADCOM_PHY is not set
    # CONFIG_ICPLUS_PHY is not set
    # CONFIG_REALTEK_PHY is not set
    # CONFIG_NATIONAL_PHY is not set
    # CONFIG_STE10XP is not set
    # CONFIG_LSI_ET1011C_PHY is not set
    # CONFIG_FIXED_PHY is not set
    # CONFIG_MDIO_BITBANG is not set
    CONFIG_NET_ETHERNET=y
    CONFIG_MII=y
    # CONFIG_AX88796 is not set
    # CONFIG_SMC91X is not set
    # CONFIG_TI_DAVINCI_EMAC is not set
    # CONFIG_DM9000 is not set
    # CONFIG_ETHOC is not set
    CONFIG_SMC911X=y
    CONFIG_SMSC911X=y
    # CONFIG_DNET is not set
    # CONFIG_IBM_NEW_EMAC_ZMII is not set
    # CONFIG_IBM_NEW_EMAC_RGMII is not set
    # CONFIG_IBM_NEW_EMAC_TAH is not set
    # CONFIG_IBM_NEW_EMAC_EMAC4 is not set
    # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set
    # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set
    # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set
    # CONFIG_B44 is not set
    # CONFIG_KS8842 is not set
    # CONFIG_KS8851_MLL is not set
    # CONFIG_NETDEV_1000 is not set
    # CONFIG_NETDEV_10000 is not set
    CONFIG_WLAN=y
    # CONFIG_LIBERTAS_THINFIRM is not set
    CONFIG_WL1271_WLAN=m
    # CONFIG_AT76C50X_USB is not set
    # CONFIG_USB_ZD1201 is not set
    # CONFIG_USB_NET_RNDIS_WLAN is not set
    # CONFIG_RTL8187 is not set
    # CONFIG_MAC80211_HWSIM is not set
    # CONFIG_ATH_COMMON is not set
    # CONFIG_B43 is not set
    # CONFIG_B43LEGACY is not set
    # CONFIG_HOSTAP is not set
    # CONFIG_IWM is not set
    # CONFIG_LIBERTAS is not set
    # CONFIG_P54_COMMON is not set
    # CONFIG_RT2X00 is not set
    # CONFIG_WL12XX is not set
    # CONFIG_ZD1211RW is not set
    
    #
    # Enable WiMAX (Networking options) to see the WiMAX drivers
    #
    
    #
    # USB Network Adapters
    #
    # CONFIG_USB_CATC is not set
    # CONFIG_USB_KAWETH is not set
    # CONFIG_USB_PEGASUS is not set
    # CONFIG_USB_RTL8150 is not set
    CONFIG_USB_USBNET=y
    CONFIG_USB_NET_AX8817X=y
    CONFIG_USB_NET_CDCETHER=y
    CONFIG_USB_NET_CDC_EEM=y
    CONFIG_USB_NET_DM9601=y
    CONFIG_USB_NET_SMSC95XX=y
    CONFIG_USB_NET_GL620A=y
    CONFIG_USB_NET_NET1080=y
    CONFIG_USB_NET_PLUSB=y
    CONFIG_USB_NET_MCS7830=y
    CONFIG_USB_NET_RNDIS_HOST=y
    CONFIG_USB_NET_CDC_SUBSET=y
    # CONFIG_USB_ALI_M5632 is not set
    # CONFIG_USB_AN2720 is not set
    CONFIG_USB_BELKIN=y
    CONFIG_USB_ARMLINUX=y
    # CONFIG_USB_EPSON2888 is not set
    # CONFIG_USB_KC2190 is not set
    CONFIG_USB_NET_ZAURUS=y
    # CONFIG_USB_HSO is not set
    # CONFIG_USB_NET_INT51X1 is not set
    # CONFIG_WAN is not set
    # CONFIG_PPP is not set
    # CONFIG_SLIP is not set
    # CONFIG_NETCONSOLE is not set
    # CONFIG_NETPOLL is not set
    # CONFIG_NET_POLL_CONTROLLER is not set
    # CONFIG_ISDN is not set
    # CONFIG_PHONE is not set
    
    #
    # Input device support
    #
    CONFIG_INPUT=y
    # CONFIG_INPUT_FF_MEMLESS is not set
    # CONFIG_INPUT_POLLDEV is not set
    # CONFIG_INPUT_SPARSEKMAP is not set
    
    #
    # Userland interfaces
    #
    CONFIG_INPUT_MOUSEDEV=y
    CONFIG_INPUT_MOUSEDEV_PSAUX=y
    CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
    CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
    # CONFIG_INPUT_JOYDEV is not set
    CONFIG_INPUT_EVDEV=y
    # CONFIG_INPUT_EVBUG is not set
    # CONFIG_INPUT_KEYRESET is not set
    
    #
    # Input Device Drivers
    #
    CONFIG_INPUT_KEYBOARD=y
    # CONFIG_KEYBOARD_ADP5588 is not set
    CONFIG_KEYBOARD_ATKBD=y
    # CONFIG_QT2160 is not set
    # CONFIG_KEYBOARD_LKKBD is not set
    CONFIG_KEYBOARD_GPIO=y
    # CONFIG_KEYBOARD_TCA6416 is not set
    # CONFIG_KEYBOARD_MATRIX is not set
    # CONFIG_KEYBOARD_MAX7359 is not set
    # CONFIG_KEYBOARD_NEWTON is not set
    # CONFIG_KEYBOARD_OPENCORES is not set
    # CONFIG_KEYBOARD_STOWAWAY is not set
    # CONFIG_KEYBOARD_SUNKBD is not set
    # CONFIG_KEYBOARD_TWL4030 is not set
    # CONFIG_KEYBOARD_XTKBD is not set
    CONFIG_INPUT_MOUSE=y
    # CONFIG_MOUSE_PS2 is not set
    CONFIG_MOUSE_SERIAL=y
    # CONFIG_MOUSE_APPLETOUCH is not set
    # CONFIG_MOUSE_BCM5974 is not set
    # CONFIG_MOUSE_VSXXXAA is not set
    # CONFIG_MOUSE_GPIO is not set
    # CONFIG_MOUSE_SYNAPTICS_I2C is not set
    # CONFIG_INPUT_JOYSTICK is not set
    # CONFIG_INPUT_TABLET is not set
    # CONFIG_INPUT_TOUCHSCREEN is not set
    CONFIG_INPUT_MISC=y
    # CONFIG_INPUT_ATI_REMOTE is not set
    # CONFIG_INPUT_ATI_REMOTE2 is not set
    # CONFIG_INPUT_KEYCHORD is not set
    # CONFIG_INPUT_KEYSPAN_REMOTE is not set
    # CONFIG_INPUT_POWERMATE is not set
    # CONFIG_INPUT_YEALINK is not set
    # CONFIG_INPUT_CM109 is not set
    # CONFIG_INPUT_TWL4030_PWRBUTTON is not set
    CONFIG_INPUT_UINPUT=y
    # CONFIG_INPUT_GPIO is not set
    # CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set
    
    #
    # Hardware I/O ports
    #
    CONFIG_SERIO=y
    CONFIG_SERIO_SERPORT=y
    CONFIG_SERIO_LIBPS2=y
    # CONFIG_SERIO_RAW is not set
    # CONFIG_SERIO_ALTERA_PS2 is not set
    # CONFIG_GAMEPORT is not set
    
    #
    # Character devices
    #
    CONFIG_VT=y
    CONFIG_CONSOLE_TRANSLATIONS=y
    CONFIG_VT_CONSOLE=y
    CONFIG_HW_CONSOLE=y
    # CONFIG_VT_HW_CONSOLE_BINDING is not set
    CONFIG_DEVMEM=y
    CONFIG_DEVKMEM=y
    # CONFIG_SERIAL_NONSTANDARD is not set
    
    #
    # Serial drivers
    #
    CONFIG_SERIAL_8250=y
    CONFIG_SERIAL_8250_CONSOLE=y
    CONFIG_SERIAL_8250_NR_UARTS=32
    CONFIG_SERIAL_8250_RUNTIME_UARTS=4
    CONFIG_SERIAL_8250_EXTENDED=y
    CONFIG_SERIAL_8250_MANY_PORTS=y
    CONFIG_SERIAL_8250_SHARE_IRQ=y
    CONFIG_SERIAL_8250_DETECT_IRQ=y
    CONFIG_SERIAL_8250_RSA=y
    
    #
    # Non-8250 serial port support
    #
    CONFIG_SERIAL_CORE=y
    CONFIG_SERIAL_CORE_CONSOLE=y
    CONFIG_UNIX98_PTYS=y
    # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set
    # CONFIG_LEGACY_PTYS is not set
    # CONFIG_IPMI_HANDLER is not set
    CONFIG_HW_RANDOM=y
    # CONFIG_HW_RANDOM_TIMERIOMEM is not set
    # CONFIG_R3964 is not set
    # CONFIG_RAW_DRIVER is not set
    # CONFIG_TCG_TPM is not set
    # CONFIG_DCC_TTY is not set
    CONFIG_I2C=y
    CONFIG_I2C_BOARDINFO=y
    CONFIG_I2C_COMPAT=y
    CONFIG_I2C_CHARDEV=y
    CONFIG_I2C_HELPER_AUTO=y
    
    #
    # I2C Hardware Bus support
    #
    
    #
    # I2C system bus drivers (mostly embedded / system-on-chip)
    #
    # CONFIG_I2C_DESIGNWARE is not set
    # CONFIG_I2C_GPIO is not set
    # CONFIG_I2C_OCORES is not set
    CONFIG_I2C_OMAP=y
    # CONFIG_I2C_SIMTEC is not set
    
    #
    # External I2C/SMBus adapter drivers
    #
    # CONFIG_I2C_PARPORT_LIGHT is not set
    # CONFIG_I2C_TAOS_EVM is not set
    # CONFIG_I2C_TINY_USB is not set
    
    #
    # Other I2C/SMBus bus drivers
    #
    # CONFIG_I2C_PCA_PLATFORM is not set
    # CONFIG_I2C_STUB is not set
    
    #
    # Miscellaneous I2C Chip support
    #
    # CONFIG_SENSORS_TSL2550 is not set
    # CONFIG_SENSORS_PCA963X is not set
    # CONFIG_I2C_DEBUG_CORE is not set
    # CONFIG_I2C_DEBUG_ALGO is not set
    # CONFIG_I2C_DEBUG_BUS is not set
    # CONFIG_I2C_DEBUG_CHIP is not set
    # CONFIG_SPI is not set
    
    #
    # PPS support
    #
    # CONFIG_PPS is not set
    CONFIG_ARCH_REQUIRE_GPIOLIB=y
    CONFIG_GPIOLIB=y
    # CONFIG_DEBUG_GPIO is not set
    # CONFIG_GPIO_SYSFS is not set
    
    #
    # Memory mapped GPIO expanders:
    #
    
    #
    # I2C GPIO expanders:
    #
    # CONFIG_GPIO_MAX732X is not set
    # CONFIG_GPIO_PCA953X is not set
    # CONFIG_GPIO_PCF857X is not set
    CONFIG_GPIO_TWL4030=y
    
    #
    # PCI GPIO expanders:
    #
    
    #
    # SPI GPIO expanders:
    #
    
    #
    # AC97 GPIO expanders:
    #
    # CONFIG_W1 is not set
    # CONFIG_POWER_SUPPLY is not set
    # CONFIG_HWMON is not set
    # CONFIG_THERMAL is not set
    CONFIG_WATCHDOG=y
    # CONFIG_WATCHDOG_NOWAYOUT is not set
    
    #
    # Watchdog Device Drivers
    #
    # CONFIG_SOFT_WATCHDOG is not set
    CONFIG_OMAP_WATCHDOG=y
    # CONFIG_TWL4030_WATCHDOG is not set
    
    #
    # USB-based Watchdog Cards
    #
    # CONFIG_USBPCWATCHDOG is not set
    CONFIG_SSB_POSSIBLE=y
    
    #
    # Sonics Silicon Backplane
    #
    # CONFIG_SSB is not set
    
    #
    # Multifunction device drivers
    #
    CONFIG_MFD_CORE=y
    # CONFIG_MFD_SM501 is not set
    # CONFIG_MFD_ASIC3 is not set
    # CONFIG_HTC_EGPIO is not set
    # CONFIG_HTC_PASIC3 is not set
    # CONFIG_TPS65010 is not set
    CONFIG_TWL4030_CORE=y
    # CONFIG_TWL4030_POWER is not set
    CONFIG_TWL4030_CODEC=y
    # CONFIG_TWL4030_MADC is not set
    # CONFIG_MFD_TMIO is not set
    # CONFIG_MFD_T7L66XB is not set
    # CONFIG_MFD_TC6387XB is not set
    # CONFIG_MFD_TC6393XB is not set
    # CONFIG_PMIC_DA903X is not set
    # CONFIG_PMIC_ADP5520 is not set
    # CONFIG_MFD_WM8400 is not set
    # CONFIG_MFD_WM831X is not set
    # CONFIG_MFD_WM8350_I2C is not set
    # CONFIG_MFD_PCF50633 is not set
    # CONFIG_AB3100_CORE is not set
    # CONFIG_MFD_88PM8607 is not set
    CONFIG_REGULATOR=y
    CONFIG_REGULATOR_DEBUG=y
    CONFIG_REGULATOR_FIXED_VOLTAGE=y
    # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set
    # CONFIG_REGULATOR_USERSPACE_CONSUMER is not set
    # CONFIG_REGULATOR_BQ24022 is not set
    # CONFIG_REGULATOR_MAX1586 is not set
    CONFIG_REGULATOR_TWL4030=y
    # CONFIG_REGULATOR_LP3971 is not set
    # CONFIG_REGULATOR_TPS65023 is not set
    # CONFIG_REGULATOR_TPS6507X is not set
    CONFIG_MEDIA_SUPPORT=y
    
    #
    # Multimedia core support
    #
    CONFIG_VIDEO_DEV=y
    CONFIG_VIDEO_V4L2_COMMON=y
    CONFIG_VIDEO_ALLOW_V4L1=y
    CONFIG_VIDEO_V4L1_COMPAT=y
    # CONFIG_DVB_CORE is not set
    CONFIG_VIDEO_MEDIA=y
    
    #
    # Multimedia drivers
    #
    # CONFIG_MEDIA_ATTACH is not set
    CONFIG_MEDIA_TUNER=y
    # CONFIG_MEDIA_TUNER_CUSTOMISE is not set
    CONFIG_MEDIA_TUNER_SIMPLE=y
    CONFIG_MEDIA_TUNER_TDA8290=y
    CONFIG_MEDIA_TUNER_TDA9887=y
    CONFIG_MEDIA_TUNER_TEA5761=y
    CONFIG_MEDIA_TUNER_TEA5767=y
    CONFIG_MEDIA_TUNER_MT20XX=y
    CONFIG_MEDIA_TUNER_XC2028=y
    CONFIG_MEDIA_TUNER_XC5000=y
    CONFIG_MEDIA_TUNER_MC44S803=y
    CONFIG_VIDEO_V4L2=y
    CONFIG_VIDEO_V4L1=y
    CONFIG_VIDEOBUF_GEN=y
    CONFIG_VIDEOBUF_DMA_SG=y
    CONFIG_VIDEO_CAPTURE_DRIVERS=y
    # CONFIG_VIDEO_ADV_DEBUG is not set
    # CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
    # CONFIG_VIDEO_HELPER_CHIPS_AUTO is not set
    
    #
    # Encoders/decoders and other helper chips
    #
    
    #
    # Audio decoders
    #
    # CONFIG_VIDEO_TVAUDIO is not set
    # CONFIG_VIDEO_TDA7432 is not set
    # CONFIG_VIDEO_TDA9840 is not set
    # CONFIG_VIDEO_TDA9875 is not set
    # CONFIG_VIDEO_TEA6415C is not set
    # CONFIG_VIDEO_TEA6420 is not set
    # CONFIG_VIDEO_MSP3400 is not set
    # CONFIG_VIDEO_CS5345 is not set
    # CONFIG_VIDEO_CS53L32A is not set
    # CONFIG_VIDEO_M52790 is not set
    # CONFIG_VIDEO_TLV320AIC23B is not set
    # CONFIG_VIDEO_WM8775 is not set
    # CONFIG_VIDEO_WM8739 is not set
    # CONFIG_VIDEO_VP27SMPX is not set
    
    #
    # RDS decoders
    #
    # CONFIG_VIDEO_SAA6588 is not set
    
    #
    # Video decoders
    #
    # CONFIG_VIDEO_ADV7180 is not set
    # CONFIG_VIDEO_BT819 is not set
    # CONFIG_VIDEO_BT856 is not set
    # CONFIG_VIDEO_BT866 is not set
    # CONFIG_VIDEO_KS0127 is not set
    # CONFIG_VIDEO_OV7670 is not set
    CONFIG_VIDEO_MT9V011=y
    CONFIG_VIDEO_MT9V113=y
    # CONFIG_VIDEO_TCM825X is not set
    # CONFIG_VIDEO_MT9P012 is not set
    # CONFIG_VIDEO_DW9710 is not set
    # CONFIG_VIDEO_OV3640 is not set
    # CONFIG_VIDEO_IMX046 is not set
    # CONFIG_VIDEO_LV8093 is not set
    # CONFIG_VIDEO_SAA7110 is not set
    # CONFIG_VIDEO_SAA711X is not set
    # CONFIG_VIDEO_SAA717X is not set
    # CONFIG_VIDEO_SAA7191 is not set
    # CONFIG_VIDEO_TVP514X is not set
    # CONFIG_VIDEO_TVP5150 is not set
    # CONFIG_VIDEO_VPX3220 is not set
    
    #
    # Video and audio decoders
    #
    # CONFIG_VIDEO_CX25840 is not set
    
    #
    # MPEG video encoders
    #
    # CONFIG_VIDEO_CX2341X is not set
    
    #
    # Video encoders
    #
    # CONFIG_VIDEO_SAA7127 is not set
    # CONFIG_VIDEO_SAA7185 is not set
    # CONFIG_VIDEO_ADV7170 is not set
    # CONFIG_VIDEO_ADV7175 is not set
    # CONFIG_VIDEO_THS7303 is not set
    # CONFIG_VIDEO_ADV7343 is not set
    
    #
    # Video improvement chips
    #
    # CONFIG_VIDEO_UPD64031A is not set
    # CONFIG_VIDEO_UPD64083 is not set
    # CONFIG_VIDEO_VIVI is not set
    # CONFIG_VIDEO_CPIA is not set
    # CONFIG_VIDEO_CPIA2 is not set
    # CONFIG_VIDEO_SAA5246A is not set
    # CONFIG_VIDEO_SAA5249 is not set
    CONFIG_TI_MEDIA=y
    CONFIG_VIDEO_VPSS_SYSTEM=y
    # CONFIG_VIDEO_VPFE_CAPTURE is not set
    CONFIG_VIDEO_OMAP2_VOUT=y
    CONFIG_VIDEO_OMAP3=y
    CONFIG_VIDEO_OMAP3_ISP=y
    CONFIG_VIDEO_OMAP34XX_ISP_PREVIEWER=y
    CONFIG_VIDEO_OMAP34XX_ISP_RESIZER=y
    # CONFIG_SOC_CAMERA is not set
    CONFIG_V4L_USB_DRIVERS=y
    # CONFIG_USB_VIDEO_CLASS is not set
    CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
    CONFIG_USB_GSPCA=m
    # CONFIG_USB_M5602 is not set
    # CONFIG_USB_STV06XX is not set
    # CONFIG_USB_GL860 is not set
    # CONFIG_USB_GSPCA_CONEX is not set
    # CONFIG_USB_GSPCA_ETOMS is not set
    # CONFIG_USB_GSPCA_FINEPIX is not set
    # CONFIG_USB_GSPCA_JEILINJ is not set
    # CONFIG_USB_GSPCA_MARS is not set
    # CONFIG_USB_GSPCA_MR97310A is not set
    # CONFIG_USB_GSPCA_OV519 is not set
    # CONFIG_USB_GSPCA_OV534 is not set
    # CONFIG_USB_GSPCA_PAC207 is not set
    # CONFIG_USB_GSPCA_PAC7302 is not set
    # CONFIG_USB_GSPCA_PAC7311 is not set
    # CONFIG_USB_GSPCA_SN9C20X is not set
    # CONFIG_USB_GSPCA_SONIXB is not set
    # CONFIG_USB_GSPCA_SONIXJ is not set
    # CONFIG_USB_GSPCA_SPCA500 is not set
    # CONFIG_USB_GSPCA_SPCA501 is not set
    # CONFIG_USB_GSPCA_SPCA505 is not set
    # CONFIG_USB_GSPCA_SPCA506 is not set
    # CONFIG_USB_GSPCA_SPCA508 is not set
    # CONFIG_USB_GSPCA_SPCA561 is not set
    # CONFIG_USB_GSPCA_SQ905 is not set
    # CONFIG_USB_GSPCA_SQ905C is not set
    # CONFIG_USB_GSPCA_STK014 is not set
    # CONFIG_USB_GSPCA_STV0680 is not set
    # CONFIG_USB_GSPCA_SUNPLUS is not set
    # CONFIG_USB_GSPCA_T613 is not set
    # CONFIG_USB_GSPCA_TV8532 is not set
    # CONFIG_USB_GSPCA_VC032X is not set
    # CONFIG_USB_GSPCA_ZC3XX is not set
    # CONFIG_VIDEO_PVRUSB2 is not set
    # CONFIG_VIDEO_HDPVR is not set
    # CONFIG_VIDEO_EM28XX is not set
    # CONFIG_VIDEO_CX231XX is not set
    # CONFIG_VIDEO_USBVISION is not set
    # CONFIG_USB_VICAM is not set
    # CONFIG_USB_IBMCAM is not set
    # CONFIG_USB_KONICAWC is not set
    # CONFIG_USB_QUICKCAM_MESSENGER is not set
    # CONFIG_USB_ET61X251 is not set
    # CONFIG_VIDEO_OVCAMCHIP is not set
    # CONFIG_USB_OV511 is not set
    # CONFIG_USB_SE401 is not set
    # CONFIG_USB_SN9C102 is not set
    # CONFIG_USB_STV680 is not set
    # CONFIG_USB_ZC0301 is not set
    # CONFIG_USB_PWC is not set
    CONFIG_USB_PWC_INPUT_EVDEV=y
    # CONFIG_USB_ZR364XX is not set
    # CONFIG_USB_STKWEBCAM is not set
    # CONFIG_USB_S2255 is not set
    CONFIG_RADIO_ADAPTERS=y
    # CONFIG_I2C_SI4713 is not set
    # CONFIG_RADIO_SI4713 is not set
    # CONFIG_USB_DSBR is not set
    # CONFIG_RADIO_SI470X is not set
    # CONFIG_USB_MR800 is not set
    # CONFIG_RADIO_TEA5764 is not set
    # CONFIG_RADIO_TEF6862 is not set
    # CONFIG_DAB is not set
    
    #
    # Graphics support
    #
    # CONFIG_VGASTATE is not set
    # CONFIG_VIDEO_OUTPUT_CONTROL is not set
    CONFIG_FB=y
    # CONFIG_FIRMWARE_EDID is not set
    # CONFIG_FB_DDC is not set
    # CONFIG_FB_BOOT_VESA_SUPPORT is not set
    CONFIG_FB_CFB_FILLRECT=y
    CONFIG_FB_CFB_COPYAREA=y
    CONFIG_FB_CFB_IMAGEBLIT=y
    # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
    # CONFIG_FB_SYS_FILLRECT is not set
    # CONFIG_FB_SYS_COPYAREA is not set
    # CONFIG_FB_SYS_IMAGEBLIT is not set
    # CONFIG_FB_FOREIGN_ENDIAN is not set
    # CONFIG_FB_SYS_FOPS is not set
    # CONFIG_FB_SVGALIB is not set
    # CONFIG_FB_MACMODES is not set
    # CONFIG_FB_BACKLIGHT is not set
    # CONFIG_FB_MODE_HELPERS is not set
    # CONFIG_FB_TILEBLITTING is not set
    
    #
    # Frame buffer hardware drivers
    #
    # CONFIG_FB_S1D13XXX is not set
    # CONFIG_FB_TMIO is not set
    # CONFIG_FB_VIRTUAL is not set
    # CONFIG_FB_METRONOME is not set
    # CONFIG_FB_MB862XX is not set
    # CONFIG_FB_BROADSHEET is not set
    # CONFIG_FB_OMAP_BOOTLOADER_INIT is not set
    CONFIG_OMAP2_VRAM=y
    CONFIG_OMAP2_VRFB=y
    CONFIG_OMAP2_DSS=y
    CONFIG_OMAP2_VRAM_SIZE=4
    # CONFIG_OMAP2_DSS_DEBUG_SUPPORT is not set
    # CONFIG_OMAP2_DSS_RFBI is not set
    CONFIG_OMAP2_DSS_VENC=y
    CONFIG_OMAP2_VENC_OUT_TYPE_SVIDEO=y
    # CONFIG_OMAP2_VENC_OUT_TYPE_COMPOSITE is not set
    # CONFIG_OMAP2_DSS_SDI is not set
    # CONFIG_OMAP2_DSS_DSI is not set
    # CONFIG_OMAP2_DSS_FAKE_VSYNC is not set
    CONFIG_OMAP2_DSS_MIN_FCK_PER_PCK=0
    CONFIG_FB_OMAP2=y
    # CONFIG_FB_OMAP2_DEBUG_SUPPORT is not set
    # CONFIG_FB_OMAP2_FORCE_AUTO_UPDATE is not set
    CONFIG_FB_OMAP2_NUM_FBS=1
    
    #
    # OMAP2/3 Display Device Drivers
    #
    CONFIG_PANEL_GENERIC=y
    # CONFIG_PANEL_LGPHILIPS_LB035Q02 is not set
    # CONFIG_PANEL_SAMSUNG_LTE430WQ_F0C is not set
    # CONFIG_PANEL_SHARP_LS037V7DW01 is not set
    # CONFIG_PANEL_SHARP_LQ043T1DG01 is not set
    # CONFIG_BACKLIGHT_LCD_SUPPORT is not set
    
    #
    # Display device support
    #
    # CONFIG_DISPLAY_SUPPORT is not set
    
    #
    # Console display driver support
    #
    # CONFIG_VGA_CONSOLE is not set
    CONFIG_DUMMY_CONSOLE=y
    # CONFIG_FRAMEBUFFER_CONSOLE is not set
    CONFIG_LOGO=y
    CONFIG_LOGO_LINUX_MONO=y
    CONFIG_LOGO_LINUX_VGA16=y
    CONFIG_LOGO_LINUX_CLUT224=y
    CONFIG_SOUND=y
    # CONFIG_SOUND_OSS_CORE is not set
    CONFIG_SND=y
    CONFIG_SND_TIMER=y
    CONFIG_SND_PCM=y
    CONFIG_SND_HWDEP=y
    CONFIG_SND_RAWMIDI=y
    CONFIG_SND_JACK=y
    # CONFIG_SND_SEQUENCER is not set
    # CONFIG_SND_MIXER_OSS is not set
    # CONFIG_SND_PCM_OSS is not set
    # CONFIG_SND_HRTIMER is not set
    # CONFIG_SND_DYNAMIC_MINORS is not set
    CONFIG_SND_SUPPORT_OLD_API=y
    CONFIG_SND_VERBOSE_PROCFS=y
    # CONFIG_SND_VERBOSE_PRINTK is not set
    # CONFIG_SND_DEBUG is not set
    # CONFIG_SND_RAWMIDI_SEQ is not set
    # CONFIG_SND_OPL3_LIB_SEQ is not set
    # CONFIG_SND_OPL4_LIB_SEQ is not set
    # CONFIG_SND_SBAWE_SEQ is not set
    # CONFIG_SND_EMU10K1_SEQ is not set
    # CONFIG_SND_DRIVERS is not set
    # CONFIG_SND_ARM is not set
    CONFIG_SND_USB=y
    CONFIG_SND_USB_AUDIO=y
    # CONFIG_SND_USB_CAIAQ is not set
    CONFIG_SND_SOC=y
    CONFIG_SND_OMAP_SOC=y
    CONFIG_SND_OMAP_SOC_MCBSP=y
    CONFIG_SND_OMAP_SOC_OMAP3_BEAGLE=y
    CONFIG_SND_SOC_I2C_AND_SPI=y
    # CONFIG_SND_SOC_ALL_CODECS is not set
    CONFIG_SND_SOC_TWL4030=y
    # CONFIG_SND_SOC_WL1271BT is not set
    # CONFIG_SOUND_PRIME is not set
    CONFIG_HID_SUPPORT=y
    CONFIG_HID=y
    # CONFIG_HIDRAW is not set
    
    #
    # USB Input Devices
    #
    CONFIG_USB_HID=y
    # CONFIG_HID_PID is not set
    # CONFIG_USB_HIDDEV is not set
    
    #
    # Special HID drivers
    #
    # CONFIG_HID_A4TECH is not set
    # CONFIG_HID_APPLE is not set
    # CONFIG_HID_BELKIN is not set
    # CONFIG_HID_CHERRY is not set
    # CONFIG_HID_CHICONY is not set
    # CONFIG_HID_CYPRESS is not set
    # CONFIG_HID_DRAGONRISE is not set
    # CONFIG_HID_EZKEY is not set
    # CONFIG_HID_KYE is not set
    # CONFIG_HID_GYRATION is not set
    # CONFIG_HID_TWINHAN is not set
    # CONFIG_HID_KENSINGTON is not set
    # CONFIG_HID_LOGITECH is not set
    # CONFIG_HID_MICROSOFT is not set
    # CONFIG_HID_MONTEREY is not set
    # CONFIG_HID_NTRIG is not set
    # CONFIG_HID_PANTHERLORD is not set
    # CONFIG_HID_PETALYNX is not set
    # CONFIG_HID_QUANTA is not set
    # CONFIG_HID_SAMSUNG is not set
    # CONFIG_HID_SONY is not set
    # CONFIG_HID_SUNPLUS is not set
    # CONFIG_HID_GREENASIA is not set
    # CONFIG_HID_SMARTJOYPLUS is not set
    # CONFIG_HID_TOPSEED is not set
    # CONFIG_HID_THRUSTMASTER is not set
    # CONFIG_HID_WACOM is not set
    # CONFIG_HID_ZEROPLUS is not set
    CONFIG_USB_SUPPORT=y
    CONFIG_USB_ARCH_HAS_HCD=y
    CONFIG_USB_ARCH_HAS_OHCI=y
    CONFIG_USB_ARCH_HAS_EHCI=y
    CONFIG_USB=y
    # CONFIG_USB_DEBUG is not set
    # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
    
    #
    # Miscellaneous USB options
    #
    # CONFIG_USB_DEVICEFS is not set
    # CONFIG_USB_DEVICE_CLASS is not set
    # CONFIG_USB_DYNAMIC_MINORS is not set
    CONFIG_USB_SUSPEND=y
    CONFIG_USB_OTG=y
    # CONFIG_USB_OTG_WHITELIST is not set
    # CONFIG_USB_OTG_BLACKLIST_HUB is not set
    CONFIG_USB_MON=y
    # CONFIG_USB_WUSB is not set
    # CONFIG_USB_WUSB_CBAF is not set
    
    #
    # USB Host Controller Drivers
    #
    # CONFIG_USB_C67X00_HCD is not set
    CONFIG_USB_EHCI_HCD=y
    CONFIG_USB_EHCI_ROOT_HUB_TT=y
    CONFIG_USB_EHCI_TT_NEWSCHED=y
    # CONFIG_USB_OXU210HP_HCD is not set
    # CONFIG_USB_ISP116X_HCD is not set
    # CONFIG_USB_ISP1760_HCD is not set
    # CONFIG_USB_ISP1362_HCD is not set
    # CONFIG_USB_OHCI_HCD is not set
    # CONFIG_USB_SL811_HCD is not set
    # CONFIG_USB_R8A66597_HCD is not set
    # CONFIG_USB_HWA_HCD is not set
    CONFIG_USB_MUSB_HDRC=y
    CONFIG_USB_MUSB_SOC=y
    
    #
    # OMAP 343x high speed USB support
    #
    # CONFIG_USB_MUSB_HOST is not set
    # CONFIG_USB_MUSB_PERIPHERAL is not set
    CONFIG_USB_MUSB_OTG=y
    CONFIG_USB_GADGET_MUSB_HDRC=y
    CONFIG_USB_MUSB_HDRC_HCD=y
    # CONFIG_MUSB_PIO_ONLY is not set
    CONFIG_USB_INVENTRA_DMA=y
    CONFIG_MUSB_USE_SYSTEM_DMA_RX=y
    # CONFIG_USB_TI_CPPI_DMA is not set
    # CONFIG_USB_TI_CPPI41_DMA is not set
    # CONFIG_USB_MUSB_DEBUG is not set
    
    #
    # USB Device Class drivers
    #
    # CONFIG_USB_ACM is not set
    # CONFIG_USB_PRINTER is not set
    # CONFIG_USB_WDM is not set
    # CONFIG_USB_TMC is not set
    
    #
    # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
    #
    
    #
    # also be needed; see USB_STORAGE Help for more info
    #
    CONFIG_USB_STORAGE=y
    # CONFIG_USB_STORAGE_DEBUG is not set
    # CONFIG_USB_STORAGE_DATAFAB is not set
    # CONFIG_USB_STORAGE_FREECOM is not set
    # CONFIG_USB_STORAGE_ISD200 is not set
    # CONFIG_USB_STORAGE_USBAT is not set
    # CONFIG_USB_STORAGE_SDDR09 is not set
    # CONFIG_USB_STORAGE_SDDR55 is not set
    # CONFIG_USB_STORAGE_JUMPSHOT is not set
    # CONFIG_USB_STORAGE_ALAUDA is not set
    # CONFIG_USB_STORAGE_ONETOUCH is not set
    # CONFIG_USB_STORAGE_KARMA is not set
    # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set
    # CONFIG_USB_LIBUSUAL is not set
    
    #
    # USB Imaging devices
    #
    # CONFIG_USB_MDC800 is not set
    # CONFIG_USB_MICROTEK is not set
    
    #
    # USB port drivers
    #
    # CONFIG_USB_SERIAL is not set
    
    #
    # USB Miscellaneous drivers
    #
    # CONFIG_USB_EMI62 is not set
    # CONFIG_USB_EMI26 is not set
    # CONFIG_USB_ADUTUX is not set
    # CONFIG_USB_SEVSEG is not set
    # CONFIG_USB_RIO500 is not set
    # CONFIG_USB_LEGOTOWER is not set
    # CONFIG_USB_LCD is not set
    # CONFIG_USB_BERRY_CHARGE is not set
    # CONFIG_USB_LED is not set
    # CONFIG_USB_CYPRESS_CY7C63 is not set
    # CONFIG_USB_CYTHERM is not set
    # CONFIG_USB_IDMOUSE is not set
    # CONFIG_USB_FTDI_ELAN is not set
    # CONFIG_USB_APPLEDISPLAY is not set
    # CONFIG_USB_SISUSBVGA is not set
    # CONFIG_USB_LD is not set
    # CONFIG_USB_TRANCEVIBRATOR is not set
    # CONFIG_USB_IOWARRIOR is not set
    # CONFIG_USB_TEST is not set
    # CONFIG_USB_ISIGHTFW is not set
    # CONFIG_USB_VST is not set
    CONFIG_USB_GADGET=y
    # CONFIG_USB_GADGET_DEBUG is not set
    # CONFIG_USB_GADGET_DEBUG_FILES is not set
    # CONFIG_USB_GADGET_DEBUG_FS is not set
    CONFIG_USB_GADGET_VBUS_DRAW=2
    CONFIG_USB_GADGET_SELECTED=y
    # CONFIG_USB_GADGET_AT91 is not set
    # CONFIG_USB_GADGET_ATMEL_USBA is not set
    # CONFIG_USB_GADGET_FSL_USB2 is not set
    # CONFIG_USB_GADGET_LH7A40X is not set
    # CONFIG_USB_GADGET_OMAP is not set
    # CONFIG_USB_GADGET_PXA25X is not set
    # CONFIG_USB_GADGET_R8A66597 is not set
    # CONFIG_USB_GADGET_PXA27X is not set
    # CONFIG_USB_GADGET_S3C_HSOTG is not set
    # CONFIG_USB_GADGET_IMX is not set
    # CONFIG_USB_GADGET_S3C2410 is not set
    # CONFIG_USB_GADGET_M66592 is not set
    # CONFIG_USB_GADGET_AMD5536UDC is not set
    # CONFIG_USB_GADGET_FSL_QE is not set
    # CONFIG_USB_GADGET_CI13XXX is not set
    # CONFIG_USB_GADGET_NET2280 is not set
    # CONFIG_USB_GADGET_GOKU is not set
    # CONFIG_USB_GADGET_LANGWELL is not set
    # CONFIG_USB_GADGET_DUMMY_HCD is not set
    CONFIG_USB_GADGET_DUALSPEED=y
    # CONFIG_USB_ZERO is not set
    # CONFIG_USB_AUDIO is not set
    # CONFIG_USB_ETH is not set
    # CONFIG_USB_GADGETFS is not set
    # CONFIG_USB_FILE_STORAGE is not set
    # CONFIG_USB_MASS_STORAGE is not set
    # CONFIG_USB_G_SERIAL is not set
    # CONFIG_USB_MIDI_GADGET is not set
    # CONFIG_USB_G_PRINTER is not set
    CONFIG_USB_ANDROID=y
    # CONFIG_USB_ANDROID_ACM is not set
    CONFIG_USB_ANDROID_ADB=y
    CONFIG_USB_ANDROID_MASS_STORAGE=y
    # CONFIG_USB_ANDROID_RNDIS is not set
    # CONFIG_USB_CDC_COMPOSITE is not set
    # CONFIG_USB_G_MULTI is not set
    
    #
    # OTG and related infrastructure
    #
    CONFIG_USB_OTG_UTILS=y
    # CONFIG_USB_GPIO_VBUS is not set
    # CONFIG_ISP1301_OMAP is not set
    # CONFIG_USB_ULPI is not set
    CONFIG_TWL4030_USB=y
    # CONFIG_NOP_USB_XCEIV is not set
    CONFIG_MMC=y
    # CONFIG_MMC_DEBUG is not set
    CONFIG_MMC_UNSAFE_RESUME=y
    # CONFIG_MMC_EMBEDDED_SDIO is not set
    # CONFIG_MMC_PARANOID_SD_INIT is not set
    
    #
    # MMC/SD/SDIO Card Drivers
    #
    CONFIG_MMC_BLOCK=y
    CONFIG_MMC_BLOCK_BOUNCE=y
    # CONFIG_MMC_BLOCK_DEFERRED_RESUME is not set
    # CONFIG_SDIO_UART is not set
    # CONFIG_MMC_TEST is not set
    
    #
    # MMC/SD/SDIO Host Controller Drivers
    #
    # CONFIG_MMC_SDHCI is not set
    # CONFIG_MMC_OMAP is not set
    CONFIG_MMC_OMAP_HS=y
    # CONFIG_MMC_AT91 is not set
    # CONFIG_MMC_ATMELMCI is not set
    # CONFIG_MEMSTICK is not set
    # CONFIG_NEW_LEDS is not set
    CONFIG_SWITCH=y
    # CONFIG_SWITCH_GPIO is not set
    # CONFIG_ACCESSIBILITY is not set
    CONFIG_RTC_LIB=y
    CONFIG_RTC_CLASS=y
    CONFIG_RTC_HCTOSYS=y
    CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
    # CONFIG_RTC_DEBUG is not set
    
    #
    # RTC interfaces
    #
    CONFIG_RTC_INTF_SYSFS=y
    CONFIG_RTC_INTF_PROC=y
    CONFIG_RTC_INTF_DEV=y
    # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
    CONFIG_RTC_INTF_ALARM=y
    CONFIG_RTC_INTF_ALARM_DEV=y
    # CONFIG_RTC_DRV_TEST is not set
    
    #
    # I2C RTC drivers
    #
    # CONFIG_RTC_DRV_DS1307 is not set
    # CONFIG_RTC_DRV_DS1374 is not set
    # CONFIG_RTC_DRV_DS1672 is not set
    # CONFIG_RTC_DRV_MAX6900 is not set
    # CONFIG_RTC_DRV_RS5C372 is not set
    # CONFIG_RTC_DRV_ISL1208 is not set
    # CONFIG_RTC_DRV_X1205 is not set
    # CONFIG_RTC_DRV_PCF8563 is not set
    # CONFIG_RTC_DRV_PCF8583 is not set
    # CONFIG_RTC_DRV_M41T80 is not set
    # CONFIG_RTC_DRV_TWL4030 is not set
    # CONFIG_RTC_DRV_S35390A is not set
    # CONFIG_RTC_DRV_FM3130 is not set
    # CONFIG_RTC_DRV_RX8581 is not set
    # CONFIG_RTC_DRV_RX8025 is not set
    
    #
    # SPI RTC drivers
    #
    
    #
    # Platform RTC drivers
    #
    # CONFIG_RTC_DRV_CMOS is not set
    # CONFIG_RTC_DRV_DS1286 is not set
    # CONFIG_RTC_DRV_DS1511 is not set
    # CONFIG_RTC_DRV_DS1553 is not set
    # CONFIG_RTC_DRV_DS1742 is not set
    # CONFIG_RTC_DRV_STK17TA8 is not set
    # CONFIG_RTC_DRV_M48T86 is not set
    # CONFIG_RTC_DRV_M48T35 is not set
    # CONFIG_RTC_DRV_M48T59 is not set
    # CONFIG_RTC_DRV_MSM6242 is not set
    # CONFIG_RTC_DRV_BQ4802 is not set
    # CONFIG_RTC_DRV_RP5C01 is not set
    # CONFIG_RTC_DRV_V3020 is not set
    
    #
    # on-CPU RTC drivers
    #
    # CONFIG_DMADEVICES is not set
    # CONFIG_AUXDISPLAY is not set
    # CONFIG_UIO is not set
    
    #
    # TI VLYNQ
    #
    CONFIG_STAGING=y
    # CONFIG_STAGING_EXCLUDE_BUILD is not set
    # CONFIG_USB_IP_COMMON is not set
    # CONFIG_W35UND is not set
    # CONFIG_PRISM2_USB is not set
    # CONFIG_ECHO is not set
    # CONFIG_OTUS is not set
    # CONFIG_COMEDI is not set
    # CONFIG_ASUS_OLED is not set
    # CONFIG_INPUT_MIMIO is not set
    # CONFIG_TRANZPORT is not set
    
    #
    # Android
    #
    CONFIG_ANDROID=y
    CONFIG_ANDROID_BINDER_IPC=y
    CONFIG_ANDROID_LOGGER=y
    CONFIG_ANDROID_RAM_CONSOLE=y
    # CONFIG_ANDROID_RAM_CONSOLE_ENABLE_VERBOSE is not set
    # CONFIG_ANDROID_RAM_CONSOLE_ERROR_CORRECTION is not set
    # CONFIG_ANDROID_RAM_CONSOLE_EARLY_INIT is not set
    CONFIG_ANDROID_TIMED_OUTPUT=y
    CONFIG_ANDROID_TIMED_GPIO=y
    CONFIG_ANDROID_LOW_MEMORY_KILLER=y
    
    #
    # Qualcomm MSM Camera And Video
    #
    
    #
    # Camera Sensor Selection
    #
    # CONFIG_DST is not set
    # CONFIG_POHMELFS is not set
    # CONFIG_PLAN9AUTH is not set
    # CONFIG_LINE6_USB is not set
    # CONFIG_VT6656 is not set
    # CONFIG_FB_UDL is not set
    
    #
    # RAR Register Driver
    #
    # CONFIG_RAR_REGISTER is not set
    # CONFIG_IIO is not set
    # CONFIG_RAMZSWAP is not set
    # CONFIG_BATMAN_ADV is not set
    # CONFIG_STRIP is not set
    
    #
    # CBUS support
    #
    # CONFIG_CBUS is not set
    
    #
    # File systems
    #
    CONFIG_FS_JOURNAL_INFO=y
    CONFIG_EXT2_FS=y
    # CONFIG_EXT2_FS_XATTR is not set
    # CONFIG_EXT2_FS_XIP is not set
    CONFIG_EXT3_FS=y
    # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set
    # CONFIG_EXT3_FS_XATTR is not set
    # CONFIG_EXT4_FS is not set
    CONFIG_JBD=y
    # CONFIG_JBD_DEBUG is not set
    # CONFIG_REISERFS_FS is not set
    # CONFIG_JFS_FS is not set
    # CONFIG_FS_POSIX_ACL is not set
    # CONFIG_XFS_FS is not set
    # CONFIG_GFS2_FS is not set
    # CONFIG_OCFS2_FS is not set
    # CONFIG_BTRFS_FS is not set
    # CONFIG_NILFS2_FS is not set
    CONFIG_FILE_LOCKING=y
    CONFIG_FSNOTIFY=y
    CONFIG_DNOTIFY=y
    CONFIG_INOTIFY=y
    CONFIG_INOTIFY_USER=y
    CONFIG_QUOTA=y
    # CONFIG_QUOTA_NETLINK_INTERFACE is not set
    CONFIG_PRINT_QUOTA_WARNING=y
    CONFIG_QUOTA_TREE=y
    # CONFIG_QFMT_V1 is not set
    CONFIG_QFMT_V2=y
    CONFIG_QUOTACTL=y
    # CONFIG_AUTOFS_FS is not set
    # CONFIG_AUTOFS4_FS is not set
    # CONFIG_FUSE_FS is not set
    
    #
    # Caches
    #
    # CONFIG_FSCACHE is not set
    
    #
    # CD-ROM/DVD Filesystems
    #
    # CONFIG_ISO9660_FS is not set
    # CONFIG_UDF_FS is not set
    
    #
    # DOS/FAT/NT Filesystems
    #
    CONFIG_FAT_FS=y
    CONFIG_MSDOS_FS=y
    CONFIG_VFAT_FS=y
    CONFIG_FAT_DEFAULT_CODEPAGE=437
    CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
    # CONFIG_NTFS_FS is not set
    
    #
    # Pseudo filesystems
    #
    CONFIG_PROC_FS=y
    CONFIG_PROC_SYSCTL=y
    CONFIG_PROC_PAGE_MONITOR=y
    CONFIG_SYSFS=y
    CONFIG_TMPFS=y
    # CONFIG_TMPFS_POSIX_ACL is not set
    # CONFIG_HUGETLB_PAGE is not set
    # CONFIG_CONFIGFS_FS is not set
    CONFIG_MISC_FILESYSTEMS=y
    # CONFIG_ADFS_FS is not set
    # CONFIG_AFFS_FS is not set
    # CONFIG_ECRYPT_FS is not set
    # CONFIG_HFS_FS is not set
    # CONFIG_HFSPLUS_FS is not set
    # CONFIG_BEFS_FS is not set
    # CONFIG_BFS_FS is not set
    # CONFIG_EFS_FS is not set
    CONFIG_YAFFS_FS=y
    CONFIG_YAFFS_YAFFS1=y
    # CONFIG_YAFFS_9BYTE_TAGS is not set
    # CONFIG_YAFFS_DOES_ECC is not set
    CONFIG_YAFFS_YAFFS2=y
    CONFIG_YAFFS_AUTO_YAFFS2=y
    # CONFIG_YAFFS_DISABLE_LAZY_LOAD is not set
    # CONFIG_YAFFS_DISABLE_WIDE_TNODES is not set
    # CONFIG_YAFFS_ALWAYS_CHECK_CHUNK_ERASED is not set
    CONFIG_YAFFS_SHORT_NAMES_IN_RAM=y
    # CONFIG_YAFFS_EMPTY_LOST_AND_FOUND is not set
    CONFIG_JFFS2_FS=y
    CONFIG_JFFS2_FS_DEBUG=0
    CONFIG_JFFS2_FS_WRITEBUFFER=y
    # CONFIG_JFFS2_FS_WBUF_VERIFY is not set
    # CONFIG_JFFS2_SUMMARY is not set
    # CONFIG_JFFS2_FS_XATTR is not set
    # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
    CONFIG_JFFS2_ZLIB=y
    # CONFIG_JFFS2_LZO is not set
    CONFIG_JFFS2_RTIME=y
    # CONFIG_JFFS2_RUBIN is not set
    CONFIG_UBIFS_FS=y
    # CONFIG_UBIFS_FS_XATTR is not set
    # CONFIG_UBIFS_FS_ADVANCED_COMPR is not set
    CONFIG_UBIFS_FS_LZO=y
    CONFIG_UBIFS_FS_ZLIB=y
    # CONFIG_UBIFS_FS_DEBUG is not set
    # CONFIG_CRAMFS is not set
    # CONFIG_SQUASHFS is not set
    # CONFIG_VXFS_FS is not set
    # CONFIG_MINIX_FS is not set
    # CONFIG_OMFS_FS is not set
    # CONFIG_HPFS_FS is not set
    # CONFIG_QNX4FS_FS is not set
    # CONFIG_ROMFS_FS is not set
    # CONFIG_SYSV_FS is not set
    # CONFIG_UFS_FS is not set
    CONFIG_NETWORK_FILESYSTEMS=y
    CONFIG_NFS_FS=y
    CONFIG_NFS_V3=y
    # CONFIG_NFS_V3_ACL is not set
    CONFIG_NFS_V4=y
    # CONFIG_NFS_V4_1 is not set
    CONFIG_ROOT_NFS=y
    # CONFIG_NFSD is not set
    CONFIG_LOCKD=y
    CONFIG_LOCKD_V4=y
    CONFIG_NFS_COMMON=y
    CONFIG_SUNRPC=y
    CONFIG_SUNRPC_GSS=y
    CONFIG_RPCSEC_GSS_KRB5=y
    # CONFIG_RPCSEC_GSS_SPKM3 is not set
    # CONFIG_SMB_FS is not set
    # CONFIG_CIFS is not set
    # CONFIG_NCP_FS is not set
    # CONFIG_CODA_FS is not set
    # CONFIG_AFS_FS is not set
    
    #
    # Partition Types
    #
    CONFIG_PARTITION_ADVANCED=y
    # CONFIG_ACORN_PARTITION is not set
    # CONFIG_OSF_PARTITION is not set
    # CONFIG_AMIGA_PARTITION is not set
    # CONFIG_ATARI_PARTITION is not set
    # CONFIG_MAC_PARTITION is not set
    CONFIG_MSDOS_PARTITION=y
    # CONFIG_BSD_DISKLABEL is not set
    # CONFIG_MINIX_SUBPARTITION is not set
    # CONFIG_SOLARIS_X86_PARTITION is not set
    # CONFIG_UNIXWARE_DISKLABEL is not set
    # CONFIG_LDM_PARTITION is not set
    # CONFIG_SGI_PARTITION is not set
    # CONFIG_ULTRIX_PARTITION is not set
    # CONFIG_SUN_PARTITION is not set
    # CONFIG_KARMA_PARTITION is not set
    # CONFIG_EFI_PARTITION is not set
    # CONFIG_SYSV68_PARTITION is not set
    CONFIG_NLS=y
    CONFIG_NLS_DEFAULT="iso8859-1"
    CONFIG_NLS_CODEPAGE_437=y
    # CONFIG_NLS_CODEPAGE_737 is not set
    # CONFIG_NLS_CODEPAGE_775 is not set
    # CONFIG_NLS_CODEPAGE_850 is not set
    # CONFIG_NLS_CODEPAGE_852 is not set
    # CONFIG_NLS_CODEPAGE_855 is not set
    # CONFIG_NLS_CODEPAGE_857 is not set
    # CONFIG_NLS_CODEPAGE_860 is not set
    # CONFIG_NLS_CODEPAGE_861 is not set
    # CONFIG_NLS_CODEPAGE_862 is not set
    # CONFIG_NLS_CODEPAGE_863 is not set
    # CONFIG_NLS_CODEPAGE_864 is not set
    # CONFIG_NLS_CODEPAGE_865 is not set
    # CONFIG_NLS_CODEPAGE_866 is not set
    # CONFIG_NLS_CODEPAGE_869 is not set
    # CONFIG_NLS_CODEPAGE_936 is not set
    # CONFIG_NLS_CODEPAGE_950 is not set
    # CONFIG_NLS_CODEPAGE_932 is not set
    # CONFIG_NLS_CODEPAGE_949 is not set
    # CONFIG_NLS_CODEPAGE_874 is not set
    # CONFIG_NLS_ISO8859_8 is not set
    # CONFIG_NLS_CODEPAGE_1250 is not set
    # CONFIG_NLS_CODEPAGE_1251 is not set
    # CONFIG_NLS_ASCII is not set
    CONFIG_NLS_ISO8859_1=y
    # CONFIG_NLS_ISO8859_2 is not set
    # CONFIG_NLS_ISO8859_3 is not set
    # CONFIG_NLS_ISO8859_4 is not set
    # CONFIG_NLS_ISO8859_5 is not set
    # CONFIG_NLS_ISO8859_6 is not set
    # CONFIG_NLS_ISO8859_7 is not set
    # CONFIG_NLS_ISO8859_9 is not set
    # CONFIG_NLS_ISO8859_13 is not set
    # CONFIG_NLS_ISO8859_14 is not set
    # CONFIG_NLS_ISO8859_15 is not set
    # CONFIG_NLS_KOI8_R is not set
    # CONFIG_NLS_KOI8_U is not set
    # CONFIG_NLS_UTF8 is not set
    # CONFIG_DLM is not set
    
    #
    # Kernel hacking
    #
    # CONFIG_PRINTK_TIME is not set
    CONFIG_ENABLE_WARN_DEPRECATED=y
    CONFIG_ENABLE_MUST_CHECK=y
    CONFIG_FRAME_WARN=1024
    CONFIG_MAGIC_SYSRQ=y
    # CONFIG_STRIP_ASM_SYMS is not set
    # CONFIG_UNUSED_SYMBOLS is not set
    CONFIG_DEBUG_FS=y
    # CONFIG_HEADERS_CHECK is not set
    CONFIG_DEBUG_KERNEL=y
    # CONFIG_DEBUG_SHIRQ is not set
    CONFIG_DETECT_SOFTLOCKUP=y
    # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
    CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
    CONFIG_DETECT_HUNG_TASK=y
    # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
    CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
    # CONFIG_SCHED_DEBUG is not set
    # CONFIG_SCHEDSTATS is not set
    # CONFIG_TIMER_STATS is not set
    # CONFIG_DEBUG_OBJECTS is not set
    # CONFIG_DEBUG_SLAB is not set
    # CONFIG_DEBUG_KMEMLEAK is not set
    # CONFIG_DEBUG_RT_MUTEXES is not set
    # CONFIG_RT_MUTEX_TESTER is not set
    # CONFIG_DEBUG_SPINLOCK is not set
    CONFIG_DEBUG_MUTEXES=y
    # CONFIG_DEBUG_LOCK_ALLOC is not set
    # CONFIG_PROVE_LOCKING is not set
    # CONFIG_LOCK_STAT is not set
    # CONFIG_DEBUG_SPINLOCK_SLEEP is not set
    # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
    # CONFIG_DEBUG_KOBJECT is not set
    # CONFIG_DEBUG_BUGVERBOSE is not set
    CONFIG_DEBUG_INFO=y
    # CONFIG_DEBUG_VM is not set
    # CONFIG_DEBUG_WRITECOUNT is not set
    # CONFIG_DEBUG_MEMORY_INIT is not set
    # CONFIG_DEBUG_LIST is not set
    # CONFIG_DEBUG_SG is not set
    # CONFIG_DEBUG_NOTIFIERS is not set
    # CONFIG_DEBUG_CREDENTIALS is not set
    # CONFIG_BOOT_PRINTK_DELAY is not set
    # CONFIG_RCU_TORTURE_TEST is not set
    # CONFIG_RCU_CPU_STALL_DETECTOR is not set
    # CONFIG_BACKTRACE_SELF_TEST is not set
    # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
    # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
    # CONFIG_FAULT_INJECTION is not set
    # CONFIG_LATENCYTOP is not set
    # CONFIG_SYSCTL_SYSCALL_CHECK is not set
    # CONFIG_PAGE_POISONING is not set
    CONFIG_HAVE_FUNCTION_TRACER=y
    CONFIG_TRACING_SUPPORT=y
    CONFIG_FTRACE=y
    # CONFIG_FUNCTION_TRACER is not set
    # CONFIG_IRQSOFF_TRACER is not set
    # CONFIG_SCHED_TRACER is not set
    # CONFIG_ENABLE_DEFAULT_TRACERS is not set
    # CONFIG_BOOT_TRACER is not set
    CONFIG_BRANCH_PROFILE_NONE=y
    # CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
    # CONFIG_PROFILE_ALL_BRANCHES is not set
    # CONFIG_STACK_TRACER is not set
    # CONFIG_KMEMTRACE is not set
    # CONFIG_WORKQUEUE_TRACER is not set
    # CONFIG_BLK_DEV_IO_TRACE is not set
    # CONFIG_DYNAMIC_DEBUG is not set
    # CONFIG_SAMPLES is not set
    CONFIG_HAVE_ARCH_KGDB=y
    # CONFIG_KGDB is not set
    CONFIG_ARM_UNWIND=y
    # CONFIG_DEBUG_USER is not set
    # CONFIG_DEBUG_ERRORS is not set
    # CONFIG_DEBUG_STACK_USAGE is not set
    CONFIG_DEBUG_LL=y
    # CONFIG_EARLY_PRINTK is not set
    # CONFIG_DEBUG_ICEDCC is not set
    # CONFIG_OC_ETM is not set
    
    #
    # Security options
    #
    CONFIG_KEYS=y
    # CONFIG_KEYS_DEBUG_PROC_KEYS is not set
    CONFIG_SECURITY=y
    # CONFIG_SECURITYFS is not set
    # CONFIG_SECURITY_NETWORK is not set
    # CONFIG_SECURITY_PATH is not set
    # CONFIG_SECURITY_TOMOYO is not set
    # CONFIG_DEFAULT_SECURITY_SELINUX is not set
    # CONFIG_DEFAULT_SECURITY_SMACK is not set
    # CONFIG_DEFAULT_SECURITY_TOMOYO is not set
    CONFIG_DEFAULT_SECURITY_DAC=y
    CONFIG_DEFAULT_SECURITY=""
    CONFIG_CRYPTO=y
    
    #
    # Crypto core or helper
    #
    # CONFIG_CRYPTO_FIPS is not set
    CONFIG_CRYPTO_ALGAPI=y
    CONFIG_CRYPTO_ALGAPI2=y
    CONFIG_CRYPTO_AEAD2=y
    CONFIG_CRYPTO_BLKCIPHER=y
    CONFIG_CRYPTO_BLKCIPHER2=y
    CONFIG_CRYPTO_HASH=y
    CONFIG_CRYPTO_HASH2=y
    CONFIG_CRYPTO_RNG=m
    CONFIG_CRYPTO_RNG2=y
    CONFIG_CRYPTO_PCOMP=y
    CONFIG_CRYPTO_MANAGER=y
    CONFIG_CRYPTO_MANAGER2=y
    # CONFIG_CRYPTO_GF128MUL is not set
    # CONFIG_CRYPTO_NULL is not set
    CONFIG_CRYPTO_WORKQUEUE=y
    # CONFIG_CRYPTO_CRYPTD is not set
    # CONFIG_CRYPTO_AUTHENC is not set
    # CONFIG_CRYPTO_TEST is not set
    
    #
    # Authenticated Encryption with Associated Data
    #
    # CONFIG_CRYPTO_CCM is not set
    # CONFIG_CRYPTO_GCM is not set
    # CONFIG_CRYPTO_SEQIV is not set
    
    #
    # Block modes
    #
    CONFIG_CRYPTO_CBC=y
    # CONFIG_CRYPTO_CTR is not set
    # CONFIG_CRYPTO_CTS is not set
    CONFIG_CRYPTO_ECB=y
    # CONFIG_CRYPTO_LRW is not set
    CONFIG_CRYPTO_PCBC=m
    # CONFIG_CRYPTO_XTS is not set
    
    #
    # Hash modes
    #
    # CONFIG_CRYPTO_HMAC is not set
    # CONFIG_CRYPTO_XCBC is not set
    # CONFIG_CRYPTO_VMAC is not set
    
    #
    # Digest
    #
    CONFIG_CRYPTO_CRC32C=y
    # CONFIG_CRYPTO_GHASH is not set
    # CONFIG_CRYPTO_MD4 is not set
    CONFIG_CRYPTO_MD5=y
    CONFIG_CRYPTO_MICHAEL_MIC=y
    # CONFIG_CRYPTO_RMD128 is not set
    # CONFIG_CRYPTO_RMD160 is not set
    # CONFIG_CRYPTO_RMD256 is not set
    # CONFIG_CRYPTO_RMD320 is not set
    # CONFIG_CRYPTO_SHA1 is not set
    # CONFIG_CRYPTO_SHA256 is not set
    # CONFIG_CRYPTO_SHA512 is not set
    # CONFIG_CRYPTO_TGR192 is not set
    # CONFIG_CRYPTO_WP512 is not set
    
    #
    # Ciphers
    #
    CONFIG_CRYPTO_AES=y
    # CONFIG_CRYPTO_ANUBIS is not set
    CONFIG_CRYPTO_ARC4=y
    # CONFIG_CRYPTO_BLOWFISH is not set
    # CONFIG_CRYPTO_CAMELLIA is not set
    # CONFIG_CRYPTO_CAST5 is not set
    # CONFIG_CRYPTO_CAST6 is not set
    CONFIG_CRYPTO_DES=y
    # CONFIG_CRYPTO_FCRYPT is not set
    # CONFIG_CRYPTO_KHAZAD is not set
    # CONFIG_CRYPTO_SALSA20 is not set
    # CONFIG_CRYPTO_SEED is not set
    # CONFIG_CRYPTO_SERPENT is not set
    # CONFIG_CRYPTO_TEA is not set
    # CONFIG_CRYPTO_TWOFISH is not set
    
    #
    # Compression
    #
    CONFIG_CRYPTO_DEFLATE=y
    # CONFIG_CRYPTO_ZLIB is not set
    CONFIG_CRYPTO_LZO=y
    
    #
    # Random Number Generation
    #
    CONFIG_CRYPTO_ANSI_CPRNG=m
    CONFIG_CRYPTO_HW=y
    # CONFIG_BINARY_PRINTF is not set
    
    #
    # Library routines
    #
    CONFIG_BITREVERSE=y
    CONFIG_GENERIC_FIND_LAST_BIT=y
    CONFIG_CRC_CCITT=y
    CONFIG_CRC16=y
    # CONFIG_CRC_T10DIF is not set
    # CONFIG_CRC_ITU_T is not set
    CONFIG_CRC32=y
    CONFIG_CRC7=y
    CONFIG_LIBCRC32C=y
    CONFIG_ZLIB_INFLATE=y
    CONFIG_ZLIB_DEFLATE=y
    CONFIG_LZO_COMPRESS=y
    CONFIG_LZO_DECOMPRESS=y
    CONFIG_DECOMPRESS_GZIP=y
    CONFIG_HAS_IOMEM=y
    CONFIG_HAS_IOPORT=y
    CONFIG_HAS_DMA=y
    CONFIG_NLATTR=y
    

  • Hi Jaya,

    Were you able to resolve the "could not set regulator OCR (-22)" error ....?

    Regards,

    Philip Mathew

  • Hi Philip,

    I'm not sure what you mean. The OCR issue is not on the 2.6.32 kernel. The NLCP driver does not compile with 2.6.32 (devkit 2.2 froyo) so there is not yet any issue with regulators. Please my previous post in this thread that shows the compile error.

    Thanks,

    jaya

  • Hi Philip:

    If you are using NLCP driver compile with 2.6.37(devkit 2.3.4 gingerbread), I have the same problem as you described. But now I got the problem solved.

    As the previous post said, I add CONFIG_REGULATOR_FIXED_VOLTAGE=y to my defconfig(omap3_beagle_android_defconfig) and rebuild the kernel image. Besides, my wifi module use different gpio pin as WLAN_PMENA and WLAN_IRQ, showed below. I think the setting depends on wifi module design.

    #ifdef CONFIG_WL12XX_PLATFORM_DATA
    //#define OMAP3BEAGLE_WLAN_PMENA_GPIO       (139)
    //#define OMAP3BEAGLE_WLAN_IRQ_GPIO         (138)
    #define OMAP3BEAGLE_WLAN_PMENA_GPIO       (159)
    #define OMAP3BEAGLE_WLAN_IRQ_GPIO         (157)

    When booting, no OCR error coming up:

    ...

    mmci-omap-hs mmci-omap-hs.1: vdd_bit is true, now voltage = (1800000)                                                                     
    mmc1: card claims to support voltages below the defined range. These will be ignored.     
    mmc1: queuing unknown CIS tuple 0x91 (3 bytes)                                              
    mmc1: new SDIO card at address 0001
    mmci-omap-hs mmci-omap-hs.1: vdd_bit is not true

    ...

    when "insmod" kernel module, neither error message coming up

    ..

    mmci-omap-hs mmci-omap-hs.1: vdd_bit is true, now voltage = (1800000)
    wl1271: loaded
    wl1271: initialized
    mmci-omap-hs mmci-omap-hs.1: vdd_bit is not true, now result = (0)
    mmci-omap-hs mmci-omap-hs.1: vdd_bit is true, now voltage = (1800000)
    mmci-omap-hs mmci-omap-hs.1: vdd_bit is true, now voltage = (1800000)
    wl1271: firmware booted (Rev 6.1.5.50.69)
    wl1271: Association completed.

    ...

     

    There is one thing to be noted!! The wpa_supplicant and dhcpcd services option need to be modified inside init.rc, as below:(refer to omap3evm)

    ...

    # wpa_supplicant and dhcp daemon
    service wpa_supplicant /system/bin/wpa_supplicant -Dwext -iwlan0 -c/data/misc/wifi/wpa_supplicant.conf -dd
        socket wpa_wlan0 dgram 660 system wifi
        group system wifi inet
        disabled
        oneshot

    service dhcpcd_wlan0 /system/bin/dhcpcd  -ABKL wlan0
        disabled
        oneshot

    ...

    Without the modification, system will not get ip address due to the reason dhcp service start failed!!

    Therefore, my wifi module works without any other problem until now.

     

    Simon

  • Simon,

     

    Could you please create your own thread. It will be useful to keep this thread on-topic, ie: NLCP driver for the Devkit 2.2 Froyo (2.6.32 kernel) which does not compile as opposed to the NLCP driver in 2.6.37 which is already compiling fine.

     

    Thanks,

    jaya

  • Jaya,

     

    I have seen that your .config has mac80211, cfg80211, wl12xx related stuff enabled. As you are using a compat-wireless package this is not needed. You only need to enable the switches mentioned in the wiki page.

     

    In case you are not able to select WL12XX_PLATFORM_DATA independently use the attached patch.

    From bc0118889db3c48fd5760fcd8d9633373a18d8fc Mon Sep 17 00:00:00 2001
    From: Eyal Reizer <eyalr@ti.com>
    Date: Wed, 30 Mar 2011 15:39:26 +0200
    Subject: [PATCH 153/153] allow selecting WL12XX_PLATFROM_DATA independently of whether mac80211
     and wl12xx drivers are selected in the kernel.
     Needed for building with compat-wireless
    
    Signed-off-by: Eyal Reizer <eyalr@ti.com>
    ---
     arch/arm/mach-omap2/Kconfig         |    1 +
     drivers/net/wireless/wl12xx/Kconfig |    1 -
     2 files changed, 1 insertions(+), 1 deletions(-)
    
    diff --git a/arch/arm/mach-omap2/Kconfig b/arch/arm/mach-omap2/Kconfig
    index c787aef..0f67445 100644
    --- a/arch/arm/mach-omap2/Kconfig
    +++ b/arch/arm/mach-omap2/Kconfig
    @@ -37,6 +37,7 @@ config ARCH_OMAP3
     	select ARM_L1_CACHE_SHIFT_6 if !ARCH_OMAP4
     	select ARCH_HAS_OPP
     	select PM_OPP if PM
    +	select WL12XX_PLATFORM_DATA
     
     config ARCH_OMAP4
     	bool "TI OMAP4"
    diff --git a/drivers/net/wireless/wl12xx/Kconfig b/drivers/net/wireless/wl12xx/Kconfig
    index b447559..441aaf6 100644
    --- a/drivers/net/wireless/wl12xx/Kconfig
    +++ b/drivers/net/wireless/wl12xx/Kconfig
    @@ -42,5 +42,4 @@ config WL1271_SDIO
     
     config WL12XX_PLATFORM_DATA
     	bool
    -	depends on WL1271_SDIO != n
     	default y
    -- 
    1.7.0.4
    
    

    Now with regards to the compilation error you are seeing, try making the following change.

     

    #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,35))

        __hw_addr_init(&local->mc_list);

    #endif

    and I believe it should help you. A couple of months ago I have compiled a compat package with the 2.6.32 kernel and it worked after fixing the duplicate definitions and making this change.

    Best Regards,

    Eyal