[meta-freescale] [PATCH] Added support for the SolidRun HummingBird (also known as Carrier One) - applies to meta-fsl-arm-extra

Carlos Rafael Giani dv at pseudoterminal.org
Tue Jan 7 07:38:57 PST 2014


Sorry, forgot to add the [meta-fsl-arm-extra] label.


On 2014-01-07 16:35, Carlos Rafael Giani wrote:
> Signed-off-by: Carlos Rafael Giani <dv at pseudoterminal.org>
> ---
>   conf/machine/hummingboard.conf                     |   21 +
>   recipes-bsp/u-boot/u-boot-cuboxi/uEnv.txt          |    1 +
>   recipes-bsp/u-boot/u-boot-cuboxi_2013.10.bb        |   27 +
>   ...001-SolidRun-i.MX6-based-carrier-one-base.patch |   84 +
>   .../0002-SolidRun-Carrier-One-board-support.patch  | 1331 ++++++++++
>   .../hummingboard/0003-LVDS-on-LDB_SEP1.patch       |   28 +
>   ...04-Added-Carrier-One-C1-to-imx6_defconfig.patch |   25 +
>   .../linux/linux-imx-3.0.35/hummingboard/defconfig  | 2733 ++++++++++++++++++++
>   .../mxc_hdmi-dont-require-cea-mode.patch           |   18 +
>   recipes-kernel/linux/linux-imx_3.0.35.bbappend     |   23 +-
>   10 files changed, 4290 insertions(+), 1 deletion(-)
>   create mode 100644 conf/machine/hummingboard.conf
>   create mode 100644 recipes-bsp/u-boot/u-boot-cuboxi/uEnv.txt
>   create mode 100644 recipes-bsp/u-boot/u-boot-cuboxi_2013.10.bb
>   create mode 100644 recipes-kernel/linux/linux-imx-3.0.35/hummingboard/0001-SolidRun-i.MX6-based-carrier-one-base.patch
>   create mode 100644 recipes-kernel/linux/linux-imx-3.0.35/hummingboard/0002-SolidRun-Carrier-One-board-support.patch
>   create mode 100644 recipes-kernel/linux/linux-imx-3.0.35/hummingboard/0003-LVDS-on-LDB_SEP1.patch
>   create mode 100644 recipes-kernel/linux/linux-imx-3.0.35/hummingboard/0004-Added-Carrier-One-C1-to-imx6_defconfig.patch
>   create mode 100644 recipes-kernel/linux/linux-imx-3.0.35/hummingboard/defconfig
>   create mode 100644 recipes-kernel/linux/linux-imx-3.0.35/hummingboard/mxc_hdmi-dont-require-cea-mode.patch
>
> diff --git a/conf/machine/hummingboard.conf b/conf/machine/hummingboard.conf
> new file mode 100644
> index 0000000..0981ee8
> --- /dev/null
> +++ b/conf/machine/hummingboard.conf
> @@ -0,0 +1,21 @@
> +require conf/machine/include/imx6sabresd-common.inc
> +
> +SOC_FAMILY = "mx6:mx6s"
> +
> +KERNEL_DEVICETREE = "imx6dl-sabresd.dtb"
> +
> +# Cubox-i and HummingBoard use the same U-Boot fork
> +PREFERRED_PROVIDER_u-boot = "u-boot-cuboxi"
> +
> +PREFERRED_VERSION_linux-imx = "3.0.35"
> +PREFERRED_PROVIDER_virtual/kernel = "linux-imx"
> +
> +UBOOT_MAKE_TARGET = "u-boot.imx"
> +UBOOT_SUFFIX = "imx"
> +UBOOT_CONFIG ??= "sd"
> +UBOOT_CONFIG[sd] = "mx6_c1solo_config,sdcard"
> +UBOOT_ENTRYPOINT = "0x10800000"
> +
> +UENV_FILENAME = "uEnv-cuboxi.txt"
> +
> +BOOT_SCRIPTS = "${UENV_FILENAME}:uEnv.txt"
> diff --git a/recipes-bsp/u-boot/u-boot-cuboxi/uEnv.txt b/recipes-bsp/u-boot/u-boot-cuboxi/uEnv.txt
> new file mode 100644
> index 0000000..3ae0863
> --- /dev/null
> +++ b/recipes-bsp/u-boot/u-boot-cuboxi/uEnv.txt
> @@ -0,0 +1 @@
> +mmcargs=setenv bootargs console=${console},${baudrate} root=${mmcroot} video=mxcfb0:dev=hdmi,1920x1080M at 60,if=RGB24,bpp=32
> diff --git a/recipes-bsp/u-boot/u-boot-cuboxi_2013.10.bb b/recipes-bsp/u-boot/u-boot-cuboxi_2013.10.bb
> new file mode 100644
> index 0000000..9268327
> --- /dev/null
> +++ b/recipes-bsp/u-boot/u-boot-cuboxi_2013.10.bb
> @@ -0,0 +1,27 @@
> +require recipes-bsp/u-boot/u-boot.inc
> +
> +LICENSE = "GPLv2+"
> +LIC_FILES_CHKSUM = "file://Licenses/README;md5=bc069111b5e5b1ed8bed98ae73b596ec"
> +COMPATIBLE_MACHINE = "hummingboard"
> +
> +PROVIDES += "u-boot"
> +
> +SRCREV = "4a7549f9bb0063e5a7446044b3ff59558bea4010"
> +
> +PV = "v2013.10+git${SRCPV}"
> +
> +SRC_URI = " \
> +    git://github.com/linux4kix/u-boot.git;branch=imx6 \
> +    file://uEnv.txt \
> +    "
> +
> +S = "${WORKDIR}/git"
> +
> +PACKAGE_ARCH = "${MACHINE_ARCH}"
> +
> +deploy_uenv () {
> +    install -d ${DEPLOYDIR}
> +    install ${WORKDIR}/uEnv.txt ${DEPLOYDIR}/${UENV_FILENAME}
> +}
> +
> +do_deploy[postfuncs] += "deploy_uenv"
> diff --git a/recipes-kernel/linux/linux-imx-3.0.35/hummingboard/0001-SolidRun-i.MX6-based-carrier-one-base.patch b/recipes-kernel/linux/linux-imx-3.0.35/hummingboard/0001-SolidRun-i.MX6-based-carrier-one-base.patch
> new file mode 100644
> index 0000000..016f5a6
> --- /dev/null
> +++ b/recipes-kernel/linux/linux-imx-3.0.35/hummingboard/0001-SolidRun-i.MX6-based-carrier-one-base.patch
> @@ -0,0 +1,84 @@
> +From 54020151feba813f913dc7465606a5dded580fd7 Mon Sep 17 00:00:00 2001
> +From: Rabeeh Khoury <rabeeh at solid-run.com>
> +Date: Wed, 25 Sep 2013 21:59:47 +0200
> +Subject: [PATCH 1/2] SolidRun i.MX6 based carrier one base
> +
> +The patches adds a new machine with id 4773 to the kernel tree.
> +Sets up the Kconfig and Makefile accordingly
> +
> +Signed-off-by: Rabeeh Khoury <rabeeh at solid-run.com>
> +---
> + arch/arm/mach-mx6/Kconfig  |   33 +++++++++++++++++++++++++++++++++
> + arch/arm/mach-mx6/Makefile |    1 +
> + arch/arm/tools/mach-types  |    1 +
> + 3 files changed, 35 insertions(+)
> +
> +diff --git a/arch/arm/mach-mx6/Kconfig b/arch/arm/mach-mx6/Kconfig
> +index 64ce4d4..144bb24 100644
> +--- a/arch/arm/mach-mx6/Kconfig
> ++++ b/arch/arm/mach-mx6/Kconfig
> +@@ -282,6 +282,39 @@ config MACH_MX6Q_HDMIDONGLE
> + 	  Include support for i.MX 6Quad HDMI Dongle platform. This includes specific
> + 	  configurations for the board and its peripherals.
> +
> ++config MACH_C1
> ++	bool "Support SolidRun i.MX6 Carrier One platform"
> ++	select ARCH_MX6Q
> ++	select SOC_IMX6Q
> ++	select IMX_HAVE_PLATFORM_IMX_UART
> ++	select IMX_HAVE_PLATFORM_DMA
> ++	select IMX_HAVE_PLATFORM_FEC
> ++	select IMX_HAVE_PLATFORM_GPMI_NFC
> ++	select IMX_HAVE_PLATFORM_SDHCI_ESDHC_IMX
> ++	select IMX_HAVE_PLATFORM_SPI_IMX
> ++	select IMX_HAVE_PLATFORM_IMX_I2C
> ++	select IMX_HAVE_PLATFORM_VIV_GPU
> ++	select IMX_HAVE_PLATFORM_IMX_VPU
> ++	select IMX_HAVE_PLATFORM_IMX_SSI
> ++	select IMX_HAVE_PLATFORM_IMX_ANATOP_THERMAL
> ++	select IMX_HAVE_PLATFORM_FSL_USB2_UDC
> ++	select IMX_HAVE_PLATFORM_MXC_EHCI
> ++	select IMX_HAVE_PLATFORM_FSL_OTG
> ++	select IMX_HAVE_PLATFORM_FSL_USB_WAKEUP
> ++	select IMX_HAVE_PLATFORM_AHCI
> ++	select IMX_HAVE_PLATFORM_IMX_OCOTP
> ++	select IMX_HAVE_PLATFORM_IMX_VIIM
> ++	select IMX_HAVE_PLATFORM_IMX2_WDT
> ++	select IMX_HAVE_PLATFORM_IMX_PM
> ++	select IMX_HAVE_PLATFORM_MXC_HDMI
> ++	select IMX_HAVE_PLATFORM_IMX_ASRC
> ++	select IMX_HAVE_PLATFORM_FLEXCAN
> ++	select IMX_HAVE_PLATFORM_IMX_PCIE
> ++	select IMX_HAVE_PLATFORM_IMX_CAAM
> ++	help
> ++	  Include support for SolidRun i.MX6 based Carrier One board
> ++
> ++
> + comment "MX6 Options:"
> +
> + config IMX_PCIE
> +diff --git a/arch/arm/mach-mx6/Makefile b/arch/arm/mach-mx6/Makefile
> +index 8c1d754..793668e 100644
> +--- a/arch/arm/mach-mx6/Makefile
> ++++ b/arch/arm/mach-mx6/Makefile
> +@@ -13,6 +13,7 @@ obj-$(CONFIG_MACH_MX6SL_ARM2) += board-mx6sl_arm2.o mx6sl_arm2_pmic_pfuze100.o
> + obj-$(CONFIG_MACH_MX6SL_EVK) += board-mx6sl_evk.o mx6sl_evk_pmic_pfuze100.o
> + obj-$(CONFIG_MACH_MX6Q_SABRELITE) += board-mx6q_sabrelite.o
> + obj-$(CONFIG_MACH_MX6Q_SABRESD) += board-mx6q_sabresd.o mx6q_sabresd_pmic_pfuze100.o
> ++obj-$(CONFIG_MACH_C1) += board-mx6q_c1.o
> + obj-$(CONFIG_MACH_MX6Q_SABREAUTO) += board-mx6q_sabreauto.o mx6q_sabreauto_pmic_pfuze100.o
> + obj-$(CONFIG_MACH_MX6Q_HDMIDONGLE) += board-mx6q_hdmidongle.o
> + obj-$(CONFIG_SMP) += plat_hotplug.o platsmp.o headsmp.o
> +diff --git a/arch/arm/tools/mach-types b/arch/arm/tools/mach-types
> +index f6b5c0e..45eac57 100644
> +--- a/arch/arm/tools/mach-types
> ++++ b/arch/arm/tools/mach-types
> +@@ -1120,4 +1120,5 @@ mx6q_arm2		MACH_MX6Q_ARM2		MX6Q_ARM2		3837
> + mx6sl_arm2		MACH_MX6SL_ARM2		MX6SL_ARM2		4091
> + mx6q_hdmidongle		MACH_MX6Q_HDMIDONGLE    MX6Q_HDMIDONGLE		4284
> + mx6sl_evk		MACH_MX6SL_EVK		MX6SL_EVK		4307
> ++c1			MACH_C1			C1			4773
> +
> +--
> +1.7.9.5
> +
> diff --git a/recipes-kernel/linux/linux-imx-3.0.35/hummingboard/0002-SolidRun-Carrier-One-board-support.patch b/recipes-kernel/linux/linux-imx-3.0.35/hummingboard/0002-SolidRun-Carrier-One-board-support.patch
> new file mode 100644
> index 0000000..496a256
> --- /dev/null
> +++ b/recipes-kernel/linux/linux-imx-3.0.35/hummingboard/0002-SolidRun-Carrier-One-board-support.patch
> @@ -0,0 +1,1331 @@
> +From 8fde224da458dee8011a77bef483f8621bae4ce4 Mon Sep 17 00:00:00 2001
> +From: Rabeeh Khoury <rabeeh at solid-run.com>
> +Date: Wed, 25 Sep 2013 22:01:25 +0200
> +Subject: [PATCH 2/2] SolidRun Carrier One board support
> +
> +Initial board support; includes -
> +1. HDMI
> +2. AR8035 Ethernet phy
> +3. UART
> +4. LVDS
> +5. USB
> +
> +This is an initial support for the board; there are other features that are missing.
> +
> +Signed-off-by: Rabeeh Khoury <rabeeh at solid-run.com>
> +---
> + arch/arm/mach-mx6/board-mx6dl_c1.h |  249 +++++++++++
> + arch/arm/mach-mx6/board-mx6q_c1.c  |  867 ++++++++++++++++++++++++++++++++++++
> + arch/arm/mach-mx6/board-mx6q_c1.h  |  170 +++++++
> + 3 files changed, 1286 insertions(+)
> + create mode 100644 arch/arm/mach-mx6/board-mx6dl_c1.h
> + create mode 100644 arch/arm/mach-mx6/board-mx6q_c1.c
> + create mode 100644 arch/arm/mach-mx6/board-mx6q_c1.h
> +
> +diff --git a/arch/arm/mach-mx6/board-mx6dl_c1.h b/arch/arm/mach-mx6/board-mx6dl_c1.h
> +new file mode 100644
> +index 0000000..31f0921
> +--- /dev/null
> ++++ b/arch/arm/mach-mx6/board-mx6dl_c1.h
> +@@ -0,0 +1,249 @@
> ++/*
> ++ * Copyright (C) 2013 SolidRun ltd.
> ++ * Based on sabresd board from Freescale Semiconductor, Inc. All Rights Reserved
> ++ *
> ++ * This program is free software; you can redistribute it and/or modify
> ++ * it under the terms of the GNU General Public License as published by
> ++ * the Free Software Foundation; either version 2 of the License, or
> ++ * (at your option) any later version.
> ++
> ++ * This program is distributed in the hope that it will be useful,
> ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of
> ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> ++ * GNU General Public License for more details.
> ++
> ++ * You should have received a copy of the GNU General Public License along
> ++ * with this program; if not, write to the Free Software Foundation, Inc.,
> ++ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
> ++ */
> ++
> ++#ifndef _BOARD_MX6DL_SABRESD_H
> ++#define _BOARD_MX6DL_SABRESD_H
> ++#include <mach/iomux-mx6dl.h>
> ++#define MX6DL_ENET_PAD_CTRL_PD (PAD_CTL_PKE | PAD_CTL_PUE  |		\
> ++		PAD_CTL_PUS_100K_DOWN | PAD_CTL_SPEED_MED |		\
> ++		PAD_CTL_DSE_40ohm   | PAD_CTL_HYS)
> ++
> ++static iomux_v3_cfg_t mx6dl_c1_pads[] = {
> ++	/* WiFi 11n and BlueTooth */
> ++	MX6DL_PAD_GPIO_8__ANATOP_ANATOP_32K_OUT,
> ++	MX6DL_PAD_DISP0_DAT23__GPIO_5_17,		/* WL_RST_IN */
> ++	MX6DL_PAD_DISP0_DAT10__GPIO_4_31,		/* WL_GPIO_0 */
> ++	MX6DL_PAD_DISP0_DAT18__GPIO_5_12,		/* WL_GPIO_1 */
> ++	MX6DL_PAD_EIM_D19__GPIO_3_19,		/* WL_BT_REG_ON */
> ++	MX6DL_PAD_DISP0_DAT19__GPIO_5_13,	/* XTAL power up */
> ++	MX6DL_PAD_NANDF_CS3__GPIO_6_16,		/* BT_RST_N */
> ++	MX6DL_PAD_NANDF_ALE__GPIO_6_8,		/* BT_GPIO_0 */
> ++	MX6DL_PAD_NANDF_CLE__GPIO_6_7,		/* BT_GPIO_1 */
> ++
> ++	/* AUD5 for BRCM WiFi/BT/FM */
> ++	MX6DL_PAD_KEY_COL0__AUDMUX_AUD5_TXC,
> ++	MX6DL_PAD_KEY_ROW0__AUDMUX_AUD5_TXD,
> ++	MX6DL_PAD_KEY_COL1__AUDMUX_AUD5_TXFS,
> ++	MX6DL_PAD_KEY_ROW1__AUDMUX_AUD5_RXD,
> ++
> ++	/* USDHC1 - Connected to BRCM Wifi/BT/FM */
> ++	MX6DL_PAD_SD1_CLK__USDHC1_CLK_50MHZ_40OHM,
> ++	MX6DL_PAD_SD1_CMD__USDHC1_CMD_50MHZ_40OHM,
> ++	MX6DL_PAD_SD1_DAT0__USDHC1_DAT0_50MHZ_40OHM,
> ++	MX6DL_PAD_SD1_DAT1__USDHC1_DAT1_50MHZ_40OHM,
> ++	MX6DL_PAD_SD1_DAT2__USDHC1_DAT2_50MHZ_40OHM,
> ++	MX6DL_PAD_SD1_DAT3__USDHC1_DAT3_50MHZ_40OHM,
> ++
> ++	/* UART4 for BRCM WiFi/BT/FM */
> ++	MX6DL_PAD_CSI0_DAT12__UART4_TXD,
> ++	MX6DL_PAD_CSI0_DAT13__UART4_RXD,
> ++	MX6DL_PAD_CSI0_DAT17__UART4_CTS,
> ++	MX6DL_PAD_CSI0_DAT16__UART4_RTS,
> ++
> ++	/* SPDIF out */
> ++	MX6DL_PAD_GPIO_17__SPDIF_OUT1,
> ++	/* CAN1  */
> ++	MX6DL_PAD_KEY_ROW2__CAN1_RXCAN,
> ++	MX6DL_PAD_GPIO_7__CAN1_TXCAN,
> ++
> ++	/* CCM  */
> ++	MX6DL_PAD_GPIO_5__CCM_CLKO,		/* SGTL500 sys_mclk */
> ++	MX6DL_PAD_NANDF_CS2__CCM_CLKO2,		/* MIPI CSI clock */
> ++
> ++	/* ECSPI2 */
> ++	MX6DL_PAD_EIM_CS0__ECSPI2_SCLK,
> ++	MX6DL_PAD_EIM_CS1__ECSPI2_MOSI,
> ++	MX6DL_PAD_EIM_OE__ECSPI2_MISO,
> ++	MX6DL_PAD_EIM_RW__ECSPI2_SS0,
> ++	MX6DL_PAD_EIM_LBA__ECSPI2_SS1,
> ++
> ++	/* I2C1 */
> ++	MX6DL_PAD_EIM_D21__I2C1_SCL,
> ++	MX6DL_PAD_EIM_D28__I2C1_SDA,
> ++
> ++	/* I2C2 */
> ++	MX6DL_PAD_KEY_COL3__I2C2_SCL,
> ++	MX6DL_PAD_KEY_ROW3__I2C2_SDA,
> ++
> ++	/* I2C3 */
> ++	MX6DL_PAD_EIM_D17__I2C3_SCL,
> ++	MX6DL_PAD_EIM_D18__I2C3_SDA,
> ++
> ++	/* PWM */
> ++	MX6DL_PAD_DISP0_DAT8__PWM1_PWMO,
> ++	MX6DL_PAD_DISP0_DAT9__PWM2_PWMO,
> ++	MX6DL_PAD_SD4_DAT1__PWM3_PWMO,
> ++	MX6DL_PAD_SD4_DAT2__PWM4_PWMO,
> ++
> ++	/* UART1 for debug */
> ++	MX6DL_PAD_CSI0_DAT10__UART1_TXD,
> ++	MX6DL_PAD_CSI0_DAT11__UART1_RXD,
> ++
> ++	/* UART2 RX, TX, CTS and RTS */
> ++	MX6DL_PAD_SD4_DAT4__UART2_RXD,
> ++	MX6DL_PAD_SD4_DAT5__UART2_RTS,
> ++	MX6DL_PAD_SD4_DAT6__UART2_CTS,
> ++	MX6DL_PAD_SD4_DAT7__UART2_TXD,
> ++
> ++	/* USBOTG ID pin */
> ++	IOMUX_PAD(0x05E0, 0x0210, 3, 0x0790, 1, PAD_CTL_PKE | PAD_CTL_PUE | \
> ++		PAD_CTL_PUS_100K_DOWN | PAD_CTL_SPEED_LOW |	\
> ++		PAD_CTL_DSE_80ohm | PAD_CTL_SRE_FAST | PAD_CTL_HYS),
> ++	/*
> ++	 * Originally MX6Q_PAD_GPIO_1__USBOTG_ID, but we want it to be
> ++	 * pulled down ID pin for fixed host connection.
> ++	 */
> ++
> ++	/* USB power enable pins */
> ++	MX6DL_PAD_EIM_D22__GPIO_3_22,
> ++	MX6DL_PAD_GPIO_0__GPIO_1_0,
> ++
> ++	/* USB OC pin */
> ++	MX6DL_PAD_KEY_COL4__USBOH3_USBOTG_OC,
> ++	MX6DL_PAD_GPIO_3__USBOH3_USBH1_OC,
> ++
> ++	/* USDHC2 */
> ++	MX6DL_PAD_SD2_CLK__USDHC2_CLK,
> ++	MX6DL_PAD_SD2_CMD__USDHC2_CMD,
> ++	MX6DL_PAD_SD2_DAT0__USDHC2_DAT0,
> ++	MX6DL_PAD_SD2_DAT1__USDHC2_DAT1,
> ++	MX6DL_PAD_SD2_DAT2__USDHC2_DAT2,
> ++	MX6DL_PAD_SD2_DAT3__USDHC2_DAT3,
> ++	MX6DL_PAD_GPIO_4__USDHC2_CD,		/* SD2_CD */
> ++	MX6DL_PAD_GPIO_2__USDHC2_WP,		/* SD2_WP */
> ++
> ++	/* USDHC3 */
> ++	MX6Q_PAD_SD3_CLK__USDHC3_CLK_50MHZ,
> ++	MX6DL_PAD_SD3_CMD__USDHC3_CMD_50MHZ,
> ++	MX6DL_PAD_SD3_DAT0__USDHC3_DAT0_50MHZ,
> ++	MX6DL_PAD_SD3_DAT1__USDHC3_DAT1_50MHZ,
> ++	MX6DL_PAD_SD3_DAT2__USDHC3_DAT2_50MHZ,
> ++	MX6DL_PAD_SD3_DAT3__USDHC3_DAT3_50MHZ,
> ++	MX6DL_PAD_SD3_DAT4__USDHC3_DAT4_50MHZ,
> ++	MX6DL_PAD_SD3_DAT5__USDHC3_DAT5_50MHZ,
> ++	MX6DL_PAD_SD3_DAT6__USDHC3_DAT6_50MHZ,
> ++	MX6DL_PAD_SD3_DAT7__USDHC3_DAT7_50MHZ,
> ++//	TODO - FIXME? MX6Q_PAD_NANDF_D0__GPIO_2_0,		/* SD3_CD */
> ++//	MX6Q_PAD_NANDF_D1__GPIO_2_1,		/* SD3_WP */
> ++	MX6DL_PAD_SD3_RST__USDHC3_RST,		/* SD3_RST */
> ++	MX6DL_PAD_GPIO_18__USDHC3_VSELECT,	/* SD3_VSELECT */
> ++
> ++	/* USDHC4 */
> ++	MX6DL_PAD_SD4_CLK__USDHC4_CLK_50MHZ,
> ++	MX6DL_PAD_SD4_CMD__USDHC4_CMD_50MHZ,
> ++	MX6DL_PAD_SD4_DAT0__USDHC4_DAT0_50MHZ,
> ++	MX6DL_PAD_SD4_DAT1__USDHC4_DAT1_50MHZ,
> ++	MX6DL_PAD_SD4_DAT2__USDHC4_DAT2_50MHZ,
> ++	MX6DL_PAD_SD4_DAT3__USDHC4_DAT3_50MHZ,
> ++	MX6DL_PAD_SD4_DAT4__USDHC4_DAT4_50MHZ,
> ++	MX6DL_PAD_SD4_DAT5__USDHC4_DAT5_50MHZ,
> ++	MX6DL_PAD_SD4_DAT6__USDHC4_DAT6_50MHZ,
> ++	MX6DL_PAD_SD4_DAT7__USDHC4_DAT7_50MHZ,
> ++
> ++	/* IR in */
> ++	MX6DL_PAD_GPIO_2__GPIO_1_2,
> ++	/* MX6DL_PAD_EIM_DA9__GPIO_3_9 on CuBox-i */
> ++};
> ++
> ++static iomux_v3_cfg_t mx6dl_ar8030_phy[] = {
> ++	/* ENET */
> ++	MX6DL_PAD_ENET_MDIO__ENET_MDIO,
> ++	MX6DL_PAD_ENET_MDC__ENET_MDC,
> ++	IOMUX_PAD(0x0650, 0x0268, 5, 0x0000, 0, MX6DL_ENET_PAD_CTRL_PD), /* KEY_ROW4 reset signal */
> ++	
> ++	MX6DL_PAD_DI0_PIN2__GPIO_4_18, /* Interrupt */
> ++	/* RMII */
> ++	IOMUX_PAD(0x05B4, 0x01E4, 1, 0x0828, 0, PAD_CTL_PKE | PAD_CTL_PUE  |
> ++		  PAD_CTL_PUS_100K_DOWN), /* MX6DL_PAD_ENET_CRS_DV__ENET_RX_EN */
> ++	IOMUX_PAD(0x05C8, 0x01F8, 1, 0x0818, 0, PAD_CTL_PKE | PAD_CTL_PUE  |
> ++		  PAD_CTL_PUS_100K_DOWN), /* MX6DL_PAD_ENET_RXD0__ENET_RDATA_0 */
> ++	IOMUX_PAD(0x05CC, 0x01FC, 1, 0x081C, 0, PAD_CTL_PKE | PAD_CTL_PUE  |
> ++		  PAD_CTL_PUS_100K_DOWN), /* MX6DL_PAD_ENET_RXD1__ENET_RDATA_1 */
> ++	MX6DL_PAD_ENET_TXD0__ENET_TDATA_0,
> ++	MX6DL_PAD_ENET_TXD1__ENET_TDATA_1,
> ++	MX6DL_PAD_ENET_TX_EN__ENET_TX_EN,
> ++	MX6DL_PAD_GPIO_16__ENET_ANATOP_ETHERNET_REF_OUT,
> ++
> ++//	MX6DL_PAD_RGMII_TXC__ENET_RGMII_TXC, This is dangerous once since it's input in AR8030 and output in AR8035
> ++	MX6DL_PAD_RGMII_TXC__GPIO_6_19,
> ++	MX6DL_PAD_RGMII_TD0__ENET_RGMII_TD0,
> ++	MX6DL_PAD_RGMII_TD1__ENET_RGMII_TD1,
> ++	MX6DL_PAD_RGMII_TD2__ENET_RGMII_TD2,
> ++	MX6DL_PAD_RGMII_TD3__ENET_RGMII_TD3,
> ++	MX6DL_PAD_RGMII_TX_CTL__ENET_RGMII_TX_CTL,
> ++	MX6DL_PAD_ENET_REF_CLK__ENET_TX_CLK,
> ++	MX6DL_PAD_RGMII_RXC__ENET_RGMII_RXC,
> ++	IOMUX_PAD(0x0694, 0x02AC, 1, 0x0818, 1, MX6DL_ENET_PAD_CTRL_PD),/*RGMII RD0*/
> ++	IOMUX_PAD(0x0698, 0x02B0, 1, 0x081C, 1, MX6DL_ENET_PAD_CTRL_PD),/*RGMII RD1*/
> ++	/* In RGMII mode RD2 should be '1' to disable the stupid PLL OFF mode */
> ++	IOMUX_PAD(0x069C, 0x02B4, 1, 0x0820, 1, MX6DL_ENET_PAD_CTRL_PD),/*RGMII RD2*/
> ++	IOMUX_PAD(0x06A0, 0x02B8, 1, 0x0824, 1, MX6DL_ENET_PAD_CTRL_PD),/*RGMII RD3*/
> ++	/* In RGMII mode RX_DV should be pulled down for reset strap */
> ++	IOMUX_PAD(0x06A4, 0x02BC, 1, 0x0828, 1, MX6DL_ENET_PAD_CTRL_PD),/*RGMII RXCTL*/
> ++	/* PCI-E Reset */
> ++	MX6DL_PAD_EIM_DA9__GPIO_3_9,
> ++};
> ++static iomux_v3_cfg_t mx6dl_ar8035_phy[] = {
> ++	/* ENET */
> ++	MX6DL_PAD_ENET_MDIO__ENET_MDIO,
> ++	MX6DL_PAD_ENET_MDC__ENET_MDC,
> ++	IOMUX_PAD(0x0650, 0x0268, 5, 0x0000, 0, MX6DL_ENET_PAD_CTRL_PD), /* KEY_ROW4 reset signal */
> ++	
> ++	MX6DL_PAD_DI0_PIN2__GPIO_4_18, /* Interrupt */
> ++	/* RMII */
> ++	IOMUX_PAD(0x05B4, 0x01E4, 1, 0x0828, 0, PAD_CTL_PKE | PAD_CTL_PUE  |
> ++		  PAD_CTL_PUS_100K_DOWN), /* MX6DL_PAD_ENET_CRS_DV__ENET_RX_EN */
> ++	IOMUX_PAD(0x05C8, 0x01F8, 1, 0x0818, 0, PAD_CTL_PKE | PAD_CTL_PUE  |
> ++		  PAD_CTL_PUS_100K_DOWN), /* MX6DL_PAD_ENET_RXD0__ENET_RDATA_0 */
> ++	IOMUX_PAD(0x05CC, 0x01FC, 1, 0x081C, 0, PAD_CTL_PKE | PAD_CTL_PUE  |
> ++		  PAD_CTL_PUS_100K_DOWN), /* MX6DL_PAD_ENET_RXD1__ENET_RDATA_1 */
> ++	MX6DL_PAD_ENET_TXD0__ENET_TDATA_0,
> ++	MX6DL_PAD_ENET_TXD1__ENET_TDATA_1,
> ++	MX6DL_PAD_ENET_TX_EN__ENET_TX_EN,
> ++	MX6DL_PAD_GPIO_16__ENET_ANATOP_ETHERNET_REF_OUT,
> ++
> ++	MX6DL_PAD_RGMII_TXC__ENET_RGMII_TXC,
> ++	MX6DL_PAD_RGMII_TD0__ENET_RGMII_TD0,
> ++	MX6DL_PAD_RGMII_TD1__ENET_RGMII_TD1,
> ++	MX6DL_PAD_RGMII_TD2__ENET_RGMII_TD2,
> ++	MX6DL_PAD_RGMII_TD3__ENET_RGMII_TD3,
> ++	MX6DL_PAD_RGMII_TX_CTL__ENET_RGMII_TX_CTL,
> ++	MX6DL_PAD_ENET_REF_CLK__ENET_TX_CLK,
> ++	MX6DL_PAD_RGMII_RXC__ENET_RGMII_RXC,
> ++	IOMUX_PAD(0x0694, 0x02AC, 1, 0x0818, 1, MX6DL_ENET_PAD_CTRL_PD),/*RGMII RD0*/
> ++	IOMUX_PAD(0x0698, 0x02B0, 1, 0x081C, 1, MX6DL_ENET_PAD_CTRL_PD),/*RGMII RD1*/
> ++	/* In RGMII mode RD2 should be '1' to disable the PLL OFF mode */
> ++	MX6DL_PAD_RGMII_RD2__ENET_RGMII_RD2,
> ++	MX6DL_PAD_RGMII_RD3__ENET_RGMII_RD3,
> ++	/* In RGMII mode RX_DV should be pulled down for reset strap */
> ++	IOMUX_PAD(0x06A4, 0x02BC, 1, 0x0828, 1, MX6DL_ENET_PAD_CTRL_PD),/*RGMII RXCTL*/
> ++};
> ++
> ++
> ++static iomux_v3_cfg_t mx6dl_c1_hdmi_ddc_pads[] = {
> ++	MX6DL_PAD_KEY_COL3__HDMI_TX_DDC_SCL, /* HDMI DDC SCL */
> ++	MX6DL_PAD_KEY_ROW3__HDMI_TX_DDC_SDA, /* HDMI DDC SDA */
> ++};
> ++
> ++static iomux_v3_cfg_t mx6dl_c1_i2c2_pads[] = {
> ++	MX6DL_PAD_KEY_COL3__I2C2_SCL,	/* I2C2 SCL */
> ++	MX6DL_PAD_KEY_ROW3__I2C2_SDA,	/* I2C2 SDA */
> ++};
> ++
> ++#endif
> +diff --git a/arch/arm/mach-mx6/board-mx6q_c1.c b/arch/arm/mach-mx6/board-mx6q_c1.c
> +new file mode 100644
> +index 0000000..ebbf8b8
> +--- /dev/null
> ++++ b/arch/arm/mach-mx6/board-mx6q_c1.c
> +@@ -0,0 +1,867 @@
> ++/*
> ++ * Copyright (C) 2013 SolidRun ltd.
> ++ * Based on sabresd board from Freescale Semiconductor, Inc. All Rights Reserved
> ++ *
> ++ * This program is free software; you can redistribute it and/or modify
> ++ * it under the terms of the GNU General Public License as published by
> ++ * the Free Software Foundation; either version 2 of the License, or
> ++ * (at your option) any later version.
> ++
> ++ * This program is distributed in the hope that it will be useful,
> ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of
> ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> ++ * GNU General Public License for more details.
> ++
> ++ * You should have received a copy of the GNU General Public License along
> ++ * with this program; if not, write to the Free Software Foundation, Inc.,
> ++ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
> ++ */
> ++
> ++#include <linux/types.h>
> ++#include <linux/sched.h>
> ++#include <linux/delay.h>
> ++#include <linux/pm.h>
> ++#include <linux/interrupt.h>
> ++#include <linux/irq.h>
> ++#include <linux/init.h>
> ++#include <linux/input.h>
> ++#include <linux/nodemask.h>
> ++#include <linux/clk.h>
> ++#include <linux/platform_device.h>
> ++#include <linux/fsl_devices.h>
> ++#include <linux/spi/spi.h>
> ++#include <linux/spi/flash.h>
> ++#include <linux/i2c.h>
> ++#include <linux/i2c/pca953x.h>
> ++#include <linux/ata.h>
> ++#include <linux/mtd/mtd.h>
> ++#include <linux/mtd/map.h>
> ++#include <linux/mtd/partitions.h>
> ++#include <linux/regulator/consumer.h>
> ++#include <linux/pmic_external.h>
> ++#include <linux/pmic_status.h>
> ++#include <linux/ipu.h>
> ++#include <linux/mxcfb.h>
> ++#include <linux/pwm_backlight.h>
> ++#include <linux/fec.h>
> ++#include <linux/memblock.h>
> ++#include <linux/gpio.h>
> ++#include <linux/etherdevice.h>
> ++#include <linux/regulator/anatop-regulator.h>
> ++#include <linux/regulator/consumer.h>
> ++#include <linux/regulator/machine.h>
> ++#include <linux/regulator/fixed.h>
> ++#include <linux/mfd/mxc-hdmi-core.h>
> ++#ifdef CONFIG_IR_GPIO_CIR
> ++#include <media/gpio-ir-recv.h>
> ++#endif
> ++
> ++#include <mach/common.h>
> ++#include <mach/hardware.h>
> ++#include <mach/mxc_dvfs.h>
> ++#include <mach/memory.h>
> ++#include <mach/iomux-mx6q.h>
> ++#include <mach/imx-uart.h>
> ++#include <mach/viv_gpu.h>
> ++#include <mach/ahci_sata.h>
> ++#include <mach/ipu-v3.h>
> ++#include <mach/mxc_hdmi.h>
> ++#include <mach/mxc_asrc.h>
> ++#include <mach/mipi_dsi.h>
> ++
> ++#include <asm/irq.h>
> ++#include <asm/setup.h>
> ++#include <asm/mach-types.h>
> ++#include <asm/mach/arch.h>
> ++#include <asm/mach/time.h>
> ++
> ++#include "usb.h"
> ++#include "devices-imx6q.h"
> ++#include "crm_regs.h"
> ++#include "cpu_op-mx6.h"
> ++#include "board-mx6q_c1.h"
> ++#include "board-mx6dl_c1.h"
> ++
> ++#define USOM_WL_RST		IMX_GPIO_NR(5, 17)
> ++#define USOM_BT_RST		IMX_GPIO_NR(6, 16)
> ++#define USOM_REG_ON		IMX_GPIO_NR(3, 19)
> ++#define USOM_XTAL_ON		IMX_GPIO_NR(5, 13)
> ++#define USOM_SD2_CD		IMX_GPIO_NR(1, 4)
> ++#define GPIO_IR_IN		IMX_GPIO_NR(1, 2) /* IMX_GPIO_NR(3, 9) for CuBox-i */
> ++#define USOM_USB_OTG_PWR	IMX_GPIO_NR(3, 22)
> ++#define USOM_USB_H1_PWR		IMX_GPIO_NR(1, 0)
> ++#define USOM_ENET_RST		IMX_GPIO_NR(4, 15)
> ++#ifdef CONFIG_MX6_ENET_IRQ_TO_GPIO
> ++#define MX6_ENET_IRQ		IMX_GPIO_NR(4, 18) /* TODO */
> ++#endif
> ++
> ++static struct clk *sata_clk;
> ++static struct clk *clko;
> ++static int caam_enabled;
> ++
> ++extern char *gp_reg_id;
> ++extern char *soc_reg_id;
> ++extern char *pu_reg_id;
> ++
> ++static const struct esdhc_platform_data mx6q_c1_sd2_data __initconst = {
> ++	.cd_gpio = USOM_SD2_CD,
> ++	.keep_power_at_suspend = 1,
> ++	.support_8bit = 0,
> ++	.delay_line = 0,
> ++	.cd_type = ESDHC_CD_GPIO,
> ++};
> ++
> ++static const struct esdhc_platform_data mx6q_c1_sd1_data __initconst = {
> ++	.cd_gpio = -EINVAL,
> ++	.wp_gpio = -EINVAL,
> ++	.always_present = 1,
> ++	.keep_power_at_suspend = 1,
> ++	.support_8bit = 0,
> ++	.delay_line = 0,
> ++	.cd_type = ESDHC_CD_PERMANENT,
> ++};
> ++
> ++static const struct anatop_thermal_platform_data
> ++	mx6q_c1_anatop_thermal_data __initconst = {
> ++		.name = "anatop_thermal",
> ++};
> ++
> ++static int mx6q_c1_fec_ar8035_phy_init(struct phy_device *phydev)
> ++{
> ++	unsigned short val;
> ++	/* Ar803x phy SmartEEE feature cause link status generates glitch,
> ++	 * which cause ethernet link down/up issue, so disable SmartEEE
> ++	 */
> ++	gpio_set_value(USOM_ENET_RST, 1);
> ++	mdelay(10);
> ++	phy_write(phydev, 0xd, 0x3);
> ++	phy_write(phydev, 0xe, 0x805d);
> ++	phy_write(phydev, 0xd, 0x4003);
> ++	val = phy_read(phydev, 0xe);
> ++	val &= ~(0x1 << 8);
> ++	phy_write(phydev, 0xe, val);
> ++	/* To enable AR8035 ouput a 125MHz clk from CLK_25M */
> ++	phy_write(phydev, 0xd, 0x7);
> ++	phy_write(phydev, 0xe, 0x8016);
> ++	phy_write(phydev, 0xd, 0x4007);
> ++	val = phy_read(phydev, 0xe);
> ++
> ++	val &= 0xffe3;
> ++	val |= 0x18;
> ++	phy_write(phydev, 0xe, val);
> ++	/* Introduce tx clock delay */
> ++	phy_write(phydev, 0x1d, 0x5);
> ++	val = phy_read(phydev, 0x1e);
> ++	val |= 0x0100;
> ++	phy_write(phydev, 0x1e, val);
> ++	/*check phy power*/
> ++	val = phy_read(phydev, 0x0);
> ++
> ++	if (val & BMCR_PDOWN)
> ++		phy_write(phydev, 0x0, (val & ~BMCR_PDOWN));
> ++
> ++	return 0;
> ++}
> ++static int mx6q_c1_fec_ar8030_phy_init(struct phy_device *phydev)
> ++{
> ++	unsigned short val;
> ++	/* Ar803x phy SmartEEE feature cause link status generates glitch,
> ++	 * which cause ethernet link down/up issue, so disable SmartEEE
> ++	 */
> ++	gpio_set_value(USOM_ENET_RST, 1);
> ++	mdelay(10);
> ++	phy_write(phydev, 0xd, 0x3);
> ++	phy_write(phydev, 0xe, 0x805d);
> ++	phy_write(phydev, 0xd, 0x4003);
> ++	val = phy_read(phydev, 0xe);
> ++	val &= ~(0x1 << 8);
> ++	phy_write(phydev, 0xe, val);
> ++	if (val & BMCR_PDOWN)
> ++		phy_write(phydev, 0x0, (val & ~BMCR_PDOWN));
> ++
> ++	return 0;
> ++}
> ++
> ++static struct fec_platform_data fec_data_rgmii __initdata = {
> ++	.init = mx6q_c1_fec_ar8035_phy_init,
> ++	.phy = PHY_INTERFACE_MODE_RGMII,
> ++#ifdef CONFIG_MX6_ENET_IRQ_TO_GPIO
> ++	.gpio_irq = MX6_ENET_IRQ,
> ++#endif
> ++};
> ++static struct fec_platform_data fec_data_rmii __initdata = {
> ++	.init = mx6q_c1_fec_ar8030_phy_init,
> ++	.phy = PHY_INTERFACE_MODE_RMII,
> ++#ifdef CONFIG_MX6_ENET_IRQ_TO_GPIO
> ++	.gpio_irq = MX6_ENET_IRQ,
> ++#endif
> ++};
> ++
> ++static struct imxi2c_platform_data mx6q_c1_i2c_data = {
> ++	.bitrate = 100000,
> ++};
> ++
> ++/* I2C1 */
> ++static struct i2c_board_info mxc_i2c0_board_info[] __initdata = {
> ++	{
> ++		I2C_BOARD_INFO("pcf8523", 0x68),
> ++	},
> ++};
> ++
> ++/* I2C2 / HDMI DDC */
> ++static struct i2c_board_info mxc_i2c1_board_info[] __initdata = {
> ++	{
> ++		I2C_BOARD_INFO("mxc_hdmi_i2c", 0x50),
> ++	},
> ++};
> ++
> ++/* I2C3 */
> ++static struct i2c_board_info mxc_i2c2_board_info[] __initdata = {
> ++};
> ++
> ++static void imx6q_c1_usbotg_vbus(bool on)
> ++{
> ++	if (on)
> ++		gpio_set_value(USOM_USB_OTG_PWR, 1);
> ++	else
> ++		gpio_set_value(USOM_USB_OTG_PWR, 0);
> ++}
> ++
> ++static void imx6q_c1_host1_vbus(bool on)
> ++{
> ++	if (on)
> ++		gpio_set_value(USOM_USB_H1_PWR, 1);
> ++	else
> ++		gpio_set_value(USOM_USB_H1_PWR, 0);
> ++}
> ++
> ++static void __init imx6q_c1_init_usb(void)
> ++{
> ++	int ret = 0;
> ++	imx_otg_base = MX6_IO_ADDRESS(MX6Q_USB_OTG_BASE_ADDR);
> ++	/* disable external charger detect,
> ++	 * or it will affect signal quality at dp .
> ++	 */
> ++	ret = gpio_request(USOM_USB_OTG_PWR, "usb-pwr");
> ++	if (ret) {
> ++		pr_err("failed to get GPIO USOM_USB_OTG_PWR: %d\n",
> ++			ret);
> ++		return;
> ++	}
> ++	gpio_direction_output(USOM_USB_OTG_PWR, 0);
> ++	/* keep USB host1 VBUS always on */
> ++	ret = gpio_request(USOM_USB_H1_PWR, "usb-h1-pwr");
> ++	if (ret) {
> ++		pr_err("failed to get GPIO USOM_USB_H1_PWR: %d\n",
> ++			ret);
> ++		return;
> ++	}
> ++	gpio_direction_output(USOM_USB_H1_PWR, 0);
> ++	/*
> ++	 * ID pin is sampled from GPIO_1. Notice that this pad is configured
> ++	 * to be pulled-down 100kOhm by default.
> ++	 */
> ++	mxc_iomux_set_gpr_register(1, 13, 1, 1);
> ++
> ++	mx6_set_otghost_vbus_func(imx6q_c1_usbotg_vbus);
> ++	mx6_set_host1_vbus_func(imx6q_c1_host1_vbus);
> ++}
> ++
> ++/* HW Initialization, if return 0, initialization is successful. */
> ++static int mx6q_c1_sata_init(struct device *dev, void __iomem *addr)
> ++{
> ++	u32 tmpdata;
> ++	int ret = 0;
> ++	struct clk *clk;
> ++
> ++	sata_clk = clk_get(dev, "imx_sata_clk");
> ++	if (IS_ERR(sata_clk)) {
> ++		dev_err(dev, "no sata clock.\n");
> ++		return PTR_ERR(sata_clk);
> ++	}
> ++	ret = clk_enable(sata_clk);
> ++	if (ret) {
> ++		dev_err(dev, "can't enable sata clock.\n");
> ++		goto put_sata_clk;
> ++	}
> ++
> ++	/* Set PHY Paremeters, two steps to configure the GPR13,
> ++	 * one write for rest of parameters, mask of first write is 0x07FFFFFD,
> ++	 * and the other one write for setting the mpll_clk_off_b
> ++	 *.rx_eq_val_0(iomuxc_gpr13[26:24]),
> ++	 *.los_lvl(iomuxc_gpr13[23:19]),
> ++	 *.rx_dpll_mode_0(iomuxc_gpr13[18:16]),
> ++	 *.sata_speed(iomuxc_gpr13[15]),
> ++	 *.mpll_ss_en(iomuxc_gpr13[14]),
> ++	 *.tx_atten_0(iomuxc_gpr13[13:11]),
> ++	 *.tx_boost_0(iomuxc_gpr13[10:7]),
> ++	 *.tx_lvl(iomuxc_gpr13[6:2]),
> ++	 *.mpll_ck_off(iomuxc_gpr13[1]),
> ++	 *.tx_edgerate_0(iomuxc_gpr13[0]),
> ++	 */
> ++	tmpdata = readl(IOMUXC_GPR13);
> ++	writel(((tmpdata & ~0x07FFFFFD) | 0x0593A044), IOMUXC_GPR13);
> ++
> ++	/* enable SATA_PHY PLL */
> ++	tmpdata = readl(IOMUXC_GPR13);
> ++	writel(((tmpdata & ~0x2) | 0x2), IOMUXC_GPR13);
> ++
> ++	/* Get the AHB clock rate, and configure the TIMER1MS reg later */
> ++	clk = clk_get(NULL, "ahb");
> ++	if (IS_ERR(clk)) {
> ++		dev_err(dev, "no ahb clock.\n");
> ++		ret = PTR_ERR(clk);
> ++		goto release_sata_clk;
> ++	}
> ++	tmpdata = clk_get_rate(clk) / 1000;
> ++	clk_put(clk);
> ++
> ++#ifdef CONFIG_SATA_AHCI_PLATFORM
> ++	ret = sata_init(addr, tmpdata);
> ++	if (ret == 0)
> ++		return ret;
> ++#else
> ++	usleep_range(1000, 2000);
> ++	/* AHCI PHY enter into PDDQ mode if the AHCI module is not enabled */
> ++	tmpdata = readl(addr + PORT_PHY_CTL);
> ++	writel(tmpdata | PORT_PHY_CTL_PDDQ_LOC, addr + PORT_PHY_CTL);
> ++	pr_info("No AHCI save PWR: PDDQ %s\n", ((readl(addr + PORT_PHY_CTL)
> ++					>> 20) & 1) ? "enabled" : "disabled");
> ++#endif
> ++
> ++release_sata_clk:
> ++	/* disable SATA_PHY PLL */
> ++	writel((readl(IOMUXC_GPR13) & ~0x2), IOMUXC_GPR13);
> ++	clk_disable(sata_clk);
> ++put_sata_clk:
> ++	clk_put(sata_clk);
> ++
> ++	return ret;
> ++}
> ++
> ++#ifdef CONFIG_SATA_AHCI_PLATFORM
> ++static void mx6q_c1_sata_exit(struct device *dev)
> ++{
> ++	clk_disable(sata_clk);
> ++	clk_put(sata_clk);
> ++}
> ++
> ++static struct ahci_platform_data mx6q_c1_sata_data = {
> ++	.init = mx6q_c1_sata_init,
> ++	.exit = mx6q_c1_sata_exit,
> ++};
> ++#endif
> ++
> ++static struct viv_gpu_platform_data imx6q_gpu_pdata __initdata = {
> ++	.reserved_mem_size = SZ_128M,
> ++};
> ++
> ++static struct imx_asrc_platform_data imx_asrc_data = {
> ++	.channel_bits = 4,
> ++	.clk_map_ver = 2,
> ++};
> ++
> ++static struct ipuv3_fb_platform_data c1_fb_data[] = {
> ++	{ /*fb0*/
> ++	.disp_dev = "ldb",
> ++	.interface_pix_fmt = IPU_PIX_FMT_RGB666,
> ++	.mode_str = "LDB-XGA",
> ++	.default_bpp = 16,
> ++	.int_clk = false,
> ++	.late_init = false,
> ++	}, {
> ++	.disp_dev = "ldb",
> ++	.interface_pix_fmt = IPU_PIX_FMT_RGB666,
> ++	.mode_str = "LDB-XGA",
> ++	.default_bpp = 16,
> ++	.int_clk = false,
> ++	}, {
> ++	.disp_dev = "lcd",
> ++	.interface_pix_fmt = IPU_PIX_FMT_RGB565,
> ++	.mode_str = "CLAA-WVGA",
> ++	.default_bpp = 16,
> ++	.int_clk = false,
> ++	.late_init = false,
> ++	}, {
> ++	.disp_dev = "ldb",
> ++	.interface_pix_fmt = IPU_PIX_FMT_RGB666,
> ++	.mode_str = "LDB-VGA",
> ++	.default_bpp = 16,
> ++	.int_clk = false,
> ++	.late_init = false,
> ++	},
> ++};
> ++
> ++static void hdmi_init(int ipu_id, int disp_id)
> ++{
> ++	int hdmi_mux_setting;
> ++
> ++	if ((ipu_id > 1) || (ipu_id < 0)) {
> ++		pr_err("Invalid IPU select for HDMI: %d. Set to 0\n", ipu_id);
> ++		ipu_id = 0;
> ++	}
> ++
> ++	if ((disp_id > 1) || (disp_id < 0)) {
> ++		pr_err("Invalid DI select for HDMI: %d. Set to 0\n", disp_id);
> ++		disp_id = 0;
> ++	}
> ++
> ++	/* Configure the connection between IPU1/2 and HDMI */
> ++	hdmi_mux_setting = 2*ipu_id + disp_id;
> ++
> ++	/* GPR3, bits 2-3 = HDMI_MUX_CTL */
> ++	mxc_iomux_set_gpr_register(3, 2, 2, hdmi_mux_setting);
> ++
> ++	/* Set HDMI event as SDMA event2 while Chip version later than TO1.2 */
> ++	if (hdmi_SDMA_check())
> ++		mxc_iomux_set_gpr_register(0, 0, 1, 1);
> ++}
> ++
> ++/* On mx6x c1 board i2c2 iomux with hdmi ddc,
> ++ * the pins default work at i2c2 function,
> ++ when hdcp enable, the pins should work at ddc function */
> ++
> ++static void hdmi_enable_ddc_pin(void)
> ++{
> ++	if (cpu_is_mx6dl())
> ++		mxc_iomux_v3_setup_multiple_pads(mx6dl_c1_hdmi_ddc_pads,
> ++			ARRAY_SIZE(mx6dl_c1_hdmi_ddc_pads));
> ++	else
> ++		mxc_iomux_v3_setup_multiple_pads(mx6q_c1_hdmi_ddc_pads,
> ++			ARRAY_SIZE(mx6q_c1_hdmi_ddc_pads));
> ++}
> ++
> ++static void hdmi_disable_ddc_pin(void)
> ++{
> ++	if (cpu_is_mx6dl())
> ++		mxc_iomux_v3_setup_multiple_pads(mx6dl_c1_i2c2_pads,
> ++			ARRAY_SIZE(mx6dl_c1_i2c2_pads));
> ++	else
> ++		mxc_iomux_v3_setup_multiple_pads(mx6q_c1_i2c2_pads,
> ++			ARRAY_SIZE(mx6q_c1_i2c2_pads));
> ++}
> ++
> ++static struct fsl_mxc_hdmi_platform_data hdmi_data = {
> ++	.init = hdmi_init,
> ++	.enable_pins = hdmi_enable_ddc_pin,
> ++	.disable_pins = hdmi_disable_ddc_pin,
> ++};
> ++
> ++static struct fsl_mxc_hdmi_core_platform_data hdmi_core_data = {
> ++	.ipu_id = 0,
> ++	.disp_id = 0,
> ++};
> ++
> ++static struct fsl_mxc_ldb_platform_data ldb_data = {
> ++	.ipu_id = 1,
> ++	.disp_id = 1,
> ++	.ext_ref = 1,
> ++	.mode = LDB_SEP0,
> ++	.sec_ipu_id = 1,
> ++	.sec_disp_id = 0,
> ++};
> ++
> ++static struct imx_ipuv3_platform_data ipu_data[] = {
> ++	{
> ++	.rev = 4,
> ++	.csi_clk[0] = "clko_clk",
> ++	.bypass_reset = false,
> ++	}, {
> ++	.rev = 4,
> ++	.csi_clk[0] = "clko_clk",
> ++	.bypass_reset = false,
> ++	},
> ++};
> ++
> ++static int spdif_clk_set_rate(struct clk *clk, unsigned long rate)
> ++{
> ++	unsigned long rate_actual;
> ++	rate_actual = clk_round_rate(clk, rate);
> ++	printk ("Called to set rate %s, rate = %ld, actual = %ld\n",__FUNCTION__,rate,rate_actual);
> ++	clk_set_rate(clk, rate_actual);
> ++	return 0;
> ++}
> ++
> ++static struct mxc_spdif_platform_data mxc_spdif_data = {
> ++	.spdif_tx		= 1,		/* enable tx */
> ++	.spdif_rx		= 0,		/* enable rx */
> ++	/*
> ++	 * spdif0_clk will be 454.7MHz divided by ccm dividers.
> ++	 *
> ++	 * 44.1KHz: 454.7MHz / 7 (ccm) / 23 (spdif) = 44,128 Hz ~ 0.06% error
> ++	 * 48KHz:   454.7MHz / 4 (ccm) / 37 (spdif) = 48,004 Hz ~ 0.01% error
> ++	 * 32KHz:   454.7MHz / 6 (ccm) / 37 (spdif) = 32,003 Hz ~ 0.01% error
> ++	 */
> ++	.spdif_clk_44100	= 1,    /* tx clk from spdif0_clk_root */
> ++	.spdif_clk_48000	= 1,    /* tx clk from spdif0_clk_root */
> ++	.spdif_div_44100	= 23,
> ++	.spdif_div_48000	= 37,
> ++	.spdif_div_32000	= 37,
> ++	.spdif_clk_set_rate	= spdif_clk_set_rate,
> ++	.spdif_clk		= NULL, /* spdif bus clk */
> ++};
> ++
> ++static struct fsl_mxc_capture_platform_data capture_data[] = {
> ++	{
> ++		.csi = 0,
> ++		.ipu = 0,
> ++		.mclk_source = 0,
> ++		.is_mipi = 0,
> ++	}, {
> ++		.csi = 1,
> ++		.ipu = 0,
> ++		.mclk_source = 0,
> ++		.is_mipi = 1,
> ++	},
> ++};
> ++
> ++static struct imx_esai_platform_data sab_esai_pdata = {
> ++	.flags	= IMX_ESAI_NET,
> ++};
> ++static int __init imx6q_init_audio(void)
> ++{
> ++	struct clk *pll3_pfd, *esai_clk;
> ++	imx6q_add_imx_esai(0, &sab_esai_pdata);
> ++
> ++	esai_clk = clk_get(NULL, "esai_clk");
> ++	if (IS_ERR(esai_clk))
> ++		return PTR_ERR(esai_clk);
> ++
> ++	pll3_pfd = clk_get(NULL, "pll3_pfd_508M");
> ++	if (IS_ERR(pll3_pfd))
> ++		return PTR_ERR(pll3_pfd);
> ++
> ++	clk_set_parent(esai_clk, pll3_pfd);
> ++	clk_set_rate(esai_clk, 101647058);
> ++
> ++	return 0;
> ++}
> ++
> ++#ifdef CONFIG_IR_GPIO_CIR
> ++static struct gpio_ir_recv_platform_data c1_ir_data = {
> ++	.gpio_nr = GPIO_IR_IN,
> ++	.active_low = 1,
> ++};
> ++
> ++static struct platform_device c1_ir = {
> ++        .name   = "gpio-rc-recv",
> ++	.id     = -1,
> ++	.dev    = {
> ++		.platform_data  = &c1_ir_data,
> ++	}
> ++};
> ++#endif
> ++
> ++#if 0
> ++/* Following will activate the analog audio out for testing */
> ++static struct platform_pwm_backlight_data mx6_c1_pwm_dummy1_backlight_data = {
> ++	.pwm_id = 0,
> ++	.max_brightness = 200,
> ++	.dft_brightness = 128,
> ++	.pwm_period_ns = 5000000,
> ++};
> ++
> ++static struct platform_pwm_backlight_data mx6_c1_pwm_dummy2_backlight_data = {
> ++	.pwm_id = 1,
> ++	.max_brightness = 201,
> ++	.dft_brightness = 128,
> ++	.pwm_period_ns = 1000000,
> ++};
> ++#endif
> ++
> ++static struct platform_pwm_backlight_data mx6_c1_pwm_lvds_backlight_data = {
> ++	.pwm_id = 2,
> ++	.max_brightness = 248,
> ++	.dft_brightness = 128,
> ++	.pwm_period_ns = 50000,
> ++};
> ++
> ++static struct platform_pwm_backlight_data mx6_c1_pwm_dsi_backlight_data = {
> ++	.pwm_id = 3,
> ++	.max_brightness = 203,
> ++	.dft_brightness = 128,
> ++	.pwm_period_ns = 50000,
> ++};
> ++
> ++static void __init fixup_mxc_board(struct machine_desc *desc, struct tag *tags,
> ++				   char **cmdline, struct meminfo *mi)
> ++{
> ++}
> ++
> ++static int __init caam_setup(char *__unused)
> ++{
> ++	caam_enabled = 1;
> ++	return 1;
> ++}
> ++early_param("caam", caam_setup);
> ++
> ++#define SNVS_LPCR 0x38
> ++static void mx6_snvs_poweroff(void)
> ++{
> ++
> ++	void __iomem *mx6_snvs_base =  MX6_IO_ADDRESS(MX6Q_SNVS_BASE_ADDR);
> ++	u32 value;
> ++	value = readl(mx6_snvs_base + SNVS_LPCR);
> ++	/*set TOP and DP_EN bit*/
> ++	writel(value | 0x60, mx6_snvs_base + SNVS_LPCR);
> ++}
> ++
> ++static const struct imx_pcie_platform_data mx6_c1_pcie_data __initconst = {
> ++	.pcie_pwr_en	= -EINVAL,
> ++	.pcie_rst	= -EINVAL,
> ++	.pcie_wake_up	= -EINVAL,
> ++	.pcie_dis	= -EINVAL,
> ++};
> ++
> ++static const struct imxuart_platform_data usom_bt_uart_data = {
> ++        .flags = IMXUART_HAVE_RTSCTS | IMXUART_SDMA,
> ++        .dma_req_tx = MX6Q_DMA_REQ_UART4_TX,
> ++        .dma_req_rx = MX6Q_DMA_REQ_UART4_RX,
> ++};
> ++
> ++/*
> ++ * Board specific initialization.
> ++ */
> ++static void __init mx6_c1_board_init(void)
> ++{
> ++	int i;
> ++	struct clk *clko, *clko2, *enet;
> ++	struct clk *new_parent;
> ++	int rate;
> ++
> ++	if (cpu_is_mx6q())
> ++		mxc_iomux_v3_setup_multiple_pads(mx6q_c1_pads,
> ++			ARRAY_SIZE(mx6q_c1_pads));
> ++	else if (cpu_is_mx6dl()) {
> ++		mxc_iomux_v3_setup_multiple_pads(mx6dl_c1_pads,
> ++			ARRAY_SIZE(mx6dl_c1_pads));
> ++	}
> ++
> ++	imx6q_add_imx_uart(0, NULL);
> ++
> ++	/*
> ++	 * MX6DL/Solo only supports single IPU
> ++	 * The following codes are used to change ipu id
> ++	 * and display id information for MX6DL/Solo. Then
> ++	 * register 1 IPU device and up to 2 displays for
> ++	 * MX6DL/Solo
> ++	 */
> ++	if (cpu_is_mx6dl()) {
> ++		ldb_data.ipu_id = 0;
> ++		ldb_data.sec_ipu_id = 0;
> ++	}
> ++	imx6q_add_mxc_hdmi_core(&hdmi_core_data);
> ++
> ++	imx6q_add_ipuv3(0, &ipu_data[0]);
> ++	if (cpu_is_mx6q()) {
> ++		imx6q_add_ipuv3(1, &ipu_data[1]);
> ++		for (i = 0; i < 4 && i < ARRAY_SIZE(c1_fb_data); i++)
> ++			imx6q_add_ipuv3fb(i, &c1_fb_data[i]);
> ++	} else
> ++		for (i = 0; i < 2 && i < ARRAY_SIZE(c1_fb_data); i++)
> ++			imx6q_add_ipuv3fb(i, &c1_fb_data[i]);
> ++
> ++	imx6q_add_vdoa();
> ++	imx6q_add_ldb(&ldb_data);
> ++	imx6q_add_v4l2_output(0);
> ++	imx6q_add_v4l2_capture(0, &capture_data[0]);
> ++	imx6q_add_v4l2_capture(1, &capture_data[1]);
> ++	imx6q_add_imx_snvs_rtc();
> ++
> ++	if (1 == caam_enabled)
> ++		imx6q_add_imx_caam();
> ++
> ++	imx6q_add_imx_i2c(0, &mx6q_c1_i2c_data);
> ++	imx6q_add_imx_i2c(1, &mx6q_c1_i2c_data);
> ++	imx6q_add_imx_i2c(2, &mx6q_c1_i2c_data);
> ++	i2c_register_board_info(0, mxc_i2c0_board_info, /* I2C1 */
> ++			ARRAY_SIZE(mxc_i2c0_board_info));
> ++	i2c_register_board_info(1, mxc_i2c1_board_info, /* I2C2 / HDMI DDC */
> ++			ARRAY_SIZE(mxc_i2c1_board_info));
> ++	i2c_register_board_info(2, mxc_i2c2_board_info, /* I2C3 */
> ++			ARRAY_SIZE(mxc_i2c2_board_info));
> ++	imx6q_add_mxc_hdmi(&hdmi_data);
> ++
> ++	imx6q_add_anatop_thermal_imx(1, &mx6q_c1_anatop_thermal_data);
> ++	/* Set GPR1, bit 21 to 1 */
> ++	mxc_iomux_set_gpr_register(1, 21, 1, 1);
> ++	/* Set enet clock to 50MHz RMII */
> ++	enet = clk_get_sys("enet.0", NULL);
> ++	if (IS_ERR(enet))
> ++		pr_err("Unable to get enet.0 clock\n");
> ++	else {
> ++		clk_prepare(enet);
> ++		clk_set_rate(enet, 50000000);
> ++		clk_enable(enet);
> ++	}
> ++#if 1
> ++	mxc_iomux_v3_setup_multiple_pads(mx6dl_ar8035_phy, ARRAY_SIZE(mx6dl_ar8035_phy));
> ++#else
> ++	mxc_iomux_v3_setup_multiple_pads(mx6dl_ar8030_phy, ARRAY_SIZE(mx6dl_ar8030_phy));
> ++#endif
> ++	gpio_request(USOM_ENET_RST, "eth-phy-rst");
> ++	udelay(1000); // Maybe not needed since 0 value is already asserted (pull down)
> ++	gpio_direction_output(USOM_ENET_RST, 0);
> ++	udelay(2000); // Maybe not needed since 0 value is already asserted (pull down)
> ++	gpio_set_value(USOM_ENET_RST, 1);
> ++	mdelay(10);
> ++#if 1
> ++	imx6_init_fec(fec_data_rgmii);
> ++#else
> ++	imx6_init_fec(fec_data_rmii);
> ++#endif
> ++#ifdef CONFIG_MX6_ENET_IRQ_TO_GPIO
> ++	/* Make sure the IOMUX_OBSRV_MUX1 is set to ENET_IRQ. */
> ++	mxc_iomux_set_specialbits_register(IOMUX_OBSRV_MUX1_OFFSET,
> ++		OBSRV_MUX1_ENET_IRQ, OBSRV_MUX1_MASK);
> ++#endif
> ++	imx6q_add_sdhci_usdhc_imx(1, &mx6q_c1_sd2_data);
> ++	imx_add_viv_gpu(&imx6_gpu_data, &imx6q_gpu_pdata);
> ++	imx6q_c1_init_usb();
> ++	/* SATA is not supported by MX6DL/Solo */
> ++	if (cpu_is_mx6q()) {
> ++#ifdef CONFIG_SATA_AHCI_PLATFORM
> ++		imx6q_add_ahci(0, &mx6q_c1_sata_data);
> ++#else
> ++		mx6q_c1_sata_init(NULL,
> ++			(void __iomem *)ioremap(MX6Q_SATA_BASE_ADDR, SZ_4K));
> ++#endif
> ++	}
> ++	imx6q_add_vpu();
> ++	imx6q_init_audio();
> ++	imx_asrc_data.asrc_core_clk = clk_get(NULL, "asrc_clk");
> ++	imx_asrc_data.asrc_audio_clk = clk_get(NULL, "asrc_serial_clk");
> ++	imx6q_add_asrc(&imx_asrc_data);
> ++
> ++	imx6q_add_mxc_pwm(0);
> ++	imx6q_add_mxc_pwm(1);
> ++	imx6q_add_mxc_pwm(2);
> ++	imx6q_add_mxc_pwm(3);
> ++	imx6q_add_mxc_pwm_backlight(0, &mx6_c1_pwm_lvds_backlight_data);
> ++	imx6q_add_mxc_pwm_backlight(1, &mx6_c1_pwm_dsi_backlight_data);
> ++#if 0
> ++	imx6q_add_mxc_pwm_backlight(2, &mx6_c1_pwm_dummy1_backlight_data);
> ++	imx6q_add_mxc_pwm_backlight(3, &mx6_c1_pwm_dummy2_backlight_data);
> ++#endif
> ++	mxc_spdif_data.spdif_core_clk = clk_get_sys("mxc_spdif.0", NULL);
> ++	clk_put(mxc_spdif_data.spdif_core_clk);
> ++	imx6q_add_spdif(&mxc_spdif_data);
> ++	imx6q_add_spdif_dai();
> ++	imx6q_add_spdif_audio_device();
> ++
> ++	imx6q_add_otp();
> ++	imx6q_add_viim();
> ++	imx6q_add_imx2_wdt(0, NULL);
> ++	imx6q_add_dma();
> ++
> ++	imx6q_add_hdmi_soc();
> ++	imx6q_add_hdmi_soc_dai();
> ++
> ++	if (cpu_is_mx6dl()) {
> ++		imx6dl_add_imx_pxp();
> ++		imx6dl_add_imx_pxp_client();
> ++	}
> ++
> ++	clko2 = clk_get(NULL, "clko2_clk");
> ++	if (IS_ERR(clko2))
> ++		pr_err("can't get CLKO2 clock.\n");
> ++
> ++	new_parent = clk_get(NULL, "osc_clk");
> ++	if (!IS_ERR(new_parent)) {
> ++		clk_set_parent(clko2, new_parent);
> ++		clk_put(new_parent);
> ++	}
> ++	rate = clk_round_rate(clko2, 24000000);
> ++	clk_set_rate(clko2, rate);
> ++	clk_enable(clko2);
> ++
> ++	/* Camera and audio use osc clock */
> ++	clko = clk_get(NULL, "clko_clk");
> ++	if (!IS_ERR(clko))
> ++		clk_set_parent(clko, clko2);
> ++
> ++	pm_power_off = mx6_snvs_poweroff;
> ++	imx6q_add_busfreq();
> ++
> ++	/* Add PCIe RC interface support */
> ++	imx6q_add_pcie(&mx6_c1_pcie_data);
> ++	imx6_add_armpmu();
> ++	imx6q_add_perfmon(0);
> ++	imx6q_add_perfmon(1);
> ++	imx6q_add_perfmon(2);
> ++#ifdef CONFIG_IR_GPIO_CIR
> ++	/* Register the infra red receiver as a GPIO device */
> ++	platform_device_register(&c1_ir);
> ++#endif
> ++
> ++	/* WLan and BT stuff */
> ++	/* init and put in reset */
> ++	gpio_request(USOM_WL_RST, "wl-rst");
> ++	gpio_direction_output(USOM_WL_RST, 0);
> ++	gpio_request(USOM_BT_RST, "bt-rst");
> ++	gpio_direction_output(USOM_BT_RST, 0);
> ++	gpio_request(USOM_REG_ON, "wl-bt-reg-on");
> ++	gpio_direction_output(USOM_REG_ON, 0);
> ++	gpio_request(USOM_XTAL_ON, "wl-bt-xtal-on");
> ++	gpio_direction_output(USOM_XTAL_ON, 0);
> ++	msleep(100);
> ++	gpio_set_value(USOM_REG_ON, 1);
> ++	gpio_set_value(USOM_XTAL_ON, 1);
> ++
> ++	
> ++	/* Now release from reset */
> ++	msleep (200); /* 20 mSec sounds too big */
> ++	gpio_set_value(USOM_WL_RST, 1);
> ++	gpio_set_value(USOM_BT_RST, 1);
> ++	msleep (200); /* 20 mSec sounds too big */
> ++
> ++	/* Register SDIO as brfmac */
> ++        imx6q_add_imx_uart(3, &usom_bt_uart_data);
> ++	imx6q_add_sdhci_usdhc_imx(0, &mx6q_c1_sd1_data);
> ++}
> ++
> ++extern void __iomem *twd_base;
> ++static void __init mx6_c1_timer_init(void)
> ++{
> ++	struct clk *uart_clk;
> ++#ifdef CONFIG_LOCAL_TIMERS
> ++	twd_base = ioremap(LOCAL_TWD_ADDR, SZ_256);
> ++	BUG_ON(!twd_base);
> ++#endif
> ++	mx6_clocks_init(32768, 24000000, 0, 0);
> ++
> ++	uart_clk = clk_get_sys("imx-uart.0", NULL);
> ++	early_console_setup(UART1_BASE_ADDR, uart_clk);
> ++}
> ++
> ++static struct sys_timer mx6_c1_timer = {
> ++	.init   = mx6_c1_timer_init,
> ++};
> ++
> ++static void __init mx6q_c1_reserve(void)
> ++{
> ++#if defined(CONFIG_MXC_GPU_VIV) || defined(CONFIG_MXC_GPU_VIV_MODULE)
> ++	phys_addr_t phys;
> ++
> ++	if (imx6q_gpu_pdata.reserved_mem_size) {
> ++		phys = memblock_alloc_base(imx6q_gpu_pdata.reserved_mem_size,
> ++					   SZ_4K, SZ_1G);
> ++		memblock_remove(phys, imx6q_gpu_pdata.reserved_mem_size);
> ++		imx6q_gpu_pdata.reserved_mem_base = phys;
> ++	}
> ++#endif
> ++}
> ++
> ++/*
> ++ * initialize __mach_desc_MX6Q_C1 data structure.
> ++ */
> ++MACHINE_START(C1, "SolidRun i.MX 6Quad/Dual/DualLite/Solo Carrier One Board")
> ++	/* Maintainer: Freescale Semiconductor, Inc. */
> ++	.boot_params = MX6_PHYS_OFFSET + 0x100,
> ++	.fixup = fixup_mxc_board,
> ++	.map_io = mx6_map_io,
> ++	.init_irq = mx6_init_irq,
> ++	.init_machine = mx6_c1_board_init,
> ++	.timer = &mx6_c1_timer,
> ++	.reserve = mx6q_c1_reserve,
> ++MACHINE_END
> +diff --git a/arch/arm/mach-mx6/board-mx6q_c1.h b/arch/arm/mach-mx6/board-mx6q_c1.h
> +new file mode 100644
> +index 0000000..82906a9
> +--- /dev/null
> ++++ b/arch/arm/mach-mx6/board-mx6q_c1.h
> +@@ -0,0 +1,170 @@
> ++/*
> ++ * Copyright (C) 2013 SolidRun ltd.
> ++ * Based on sabresd board from Freescale Semiconductor, Inc. All Rights Reserved
> ++ *
> ++ * This program is free software; you can redistribute it and/or modify
> ++ * it under the terms of the GNU General Public License as published by
> ++ * the Free Software Foundation; either version 2 of the License, or
> ++ * (at your option) any later version.
> ++
> ++ * This program is distributed in the hope that it will be useful,
> ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of
> ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> ++ * GNU General Public License for more details.
> ++
> ++ * You should have received a copy of the GNU General Public License along
> ++ * with this program; if not, write to the Free Software Foundation, Inc.,
> ++ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
> ++ */
> ++
> ++#ifndef _BOARD_MX6Q_SABRESD_H
> ++#define _BOARD_MX6Q_SABRESD_H
> ++#include <mach/iomux-mx6q.h>
> ++
> ++static iomux_v3_cfg_t mx6q_c1_pads[] = {
> ++	/* WiFi 11n and BlueTooth */
> ++	MX6Q_PAD_GPIO_8__ANATOP_ANATOP_32K_OUT,
> ++	MX6Q_PAD_DISP0_DAT23__GPIO_5_17,		/* WL_RST_IN */
> ++	MX6Q_PAD_DISP0_DAT10__GPIO_4_31,		/* WL_GPIO_0 */
> ++	MX6Q_PAD_DISP0_DAT18__GPIO_5_12,		/* WL_GPIO_1 */
> ++	MX6Q_PAD_EIM_D19__GPIO_3_19,		/* WL_BT_REG_ON */
> ++	MX6Q_PAD_DISP0_DAT19__GPIO_5_13,	/* XTAL power up */
> ++	MX6Q_PAD_NANDF_CS3__GPIO_6_16,		/* BT_RST_N */
> ++	MX6Q_PAD_NANDF_ALE__GPIO_6_8,		/* BT_GPIO_0 */
> ++	MX6Q_PAD_NANDF_CLE__GPIO_6_7,		/* BT_GPIO_1 */
> ++
> ++	/* AUD5 for BRCM WiFi/BT/FM */
> ++	MX6Q_PAD_KEY_COL0__AUDMUX_AUD5_TXC,
> ++	MX6Q_PAD_KEY_ROW0__AUDMUX_AUD5_TXD,
> ++	MX6Q_PAD_KEY_COL1__AUDMUX_AUD5_TXFS,
> ++	MX6Q_PAD_KEY_ROW1__AUDMUX_AUD5_RXD,
> ++
> ++	/* USDHC1 - Connected to BRCM Wifi/BT/FM */
> ++	MX6Q_PAD_SD1_CLK__USDHC1_CLK_50MHZ_40OHM,
> ++	MX6Q_PAD_SD1_CMD__USDHC1_CMD_50MHZ_40OHM,
> ++	MX6Q_PAD_SD1_DAT0__USDHC1_DAT0_50MHZ_40OHM,
> ++	MX6Q_PAD_SD1_DAT1__USDHC1_DAT1_50MHZ_40OHM,
> ++	MX6Q_PAD_SD1_DAT2__USDHC1_DAT2_50MHZ_40OHM,
> ++	MX6Q_PAD_SD1_DAT3__USDHC1_DAT3_50MHZ_40OHM,
> ++
> ++	/* UART4 for BRCM WiFi/BT/FM */
> ++	MX6Q_PAD_CSI0_DAT12__UART4_TXD,
> ++	MX6Q_PAD_CSI0_DAT13__UART4_RXD,
> ++	MX6Q_PAD_CSI0_DAT17__UART4_CTS,
> ++	MX6Q_PAD_CSI0_DAT16__UART4_RTS,
> ++
> ++	/* SPDIF out */
> ++	MX6Q_PAD_GPIO_17__SPDIF_OUT1,
> ++	/* CAN1  */
> ++	MX6Q_PAD_KEY_ROW2__CAN1_RXCAN,
> ++	MX6Q_PAD_GPIO_7__CAN1_TXCAN,
> ++
> ++	/* CCM  */
> ++	MX6Q_PAD_GPIO_5__CCM_CLKO,		/* SGTL500 sys_mclk */
> ++	MX6Q_PAD_NANDF_CS2__CCM_CLKO2,		/* MIPI CSI clock */
> ++
> ++	/* ECSPI2 */
> ++	MX6Q_PAD_EIM_CS0__ECSPI2_SCLK,
> ++	MX6Q_PAD_EIM_CS1__ECSPI2_MOSI,
> ++	MX6Q_PAD_EIM_OE__ECSPI2_MISO,
> ++	MX6Q_PAD_EIM_RW__ECSPI2_SS0,
> ++	MX6Q_PAD_EIM_LBA__ECSPI2_SS1,
> ++
> ++	/* I2C1 */
> ++	MX6Q_PAD_EIM_D21__I2C1_SCL,
> ++	MX6Q_PAD_EIM_D28__I2C1_SDA,
> ++
> ++	/* I2C2 */
> ++	MX6Q_PAD_KEY_COL3__I2C2_SCL,
> ++	MX6Q_PAD_KEY_ROW3__I2C2_SDA,
> ++
> ++	/* I2C3 */
> ++	MX6Q_PAD_EIM_D17__I2C3_SCL,
> ++	MX6Q_PAD_EIM_D18__I2C3_SDA,
> ++
> ++	/* PWM */
> ++	MX6Q_PAD_DISP0_DAT8__PWM1_PWMO,
> ++	MX6Q_PAD_DISP0_DAT9__PWM2_PWMO,
> ++	MX6Q_PAD_SD4_DAT1__PWM3_PWMO,
> ++	MX6Q_PAD_SD4_DAT2__PWM4_PWMO,
> ++
> ++	/* UART1 for debug */
> ++	MX6Q_PAD_CSI0_DAT10__UART1_TXD,
> ++	MX6Q_PAD_CSI0_DAT11__UART1_RXD,
> ++
> ++	/* UART2 RX, TX, CTS and RTS */
> ++	MX6Q_PAD_SD4_DAT4__UART2_RXD,
> ++	MX6Q_PAD_SD4_DAT5__UART2_RTS,
> ++	MX6Q_PAD_SD4_DAT6__UART2_CTS,
> ++	MX6Q_PAD_SD4_DAT7__UART2_TXD,
> ++
> ++	/* USBOTG ID pin */
> ++	IOMUX_PAD(0x05F4, 0x0224, 3, 0x0000, 0, (PAD_CTL_PKE | PAD_CTL_PUE | \
> ++		PAD_CTL_PUS_100K_DOWN | PAD_CTL_SPEED_LOW |	\
> ++		PAD_CTL_DSE_80ohm | PAD_CTL_SRE_FAST | PAD_CTL_HYS)),
> ++	/*
> ++	 * Originally MX6Q_PAD_GPIO_1__USBOTG_ID, but we want it to be
> ++	 * pulled down ID pin for fixed host connection.
> ++	 */
> ++
> ++	/* USB power enable pins */
> ++	MX6Q_PAD_EIM_D22__GPIO_3_22,
> ++	MX6Q_PAD_GPIO_0__GPIO_1_0,
> ++
> ++	/* USB OC pin */
> ++	MX6Q_PAD_KEY_COL4__USBOH3_USBOTG_OC,
> ++	MX6Q_PAD_GPIO_3__USBOH3_USBH1_OC,
> ++
> ++	/* USDHC2 */
> ++	MX6Q_PAD_SD2_CLK__USDHC2_CLK,
> ++	MX6Q_PAD_SD2_CMD__USDHC2_CMD,
> ++	MX6Q_PAD_SD2_DAT0__USDHC2_DAT0,
> ++	MX6Q_PAD_SD2_DAT1__USDHC2_DAT1,
> ++	MX6Q_PAD_SD2_DAT2__USDHC2_DAT2,
> ++	MX6Q_PAD_SD2_DAT3__USDHC2_DAT3,
> ++	MX6Q_PAD_GPIO_4__USDHC2_CD,		/* SD2_CD */
> ++	MX6Q_PAD_GPIO_2__USDHC2_WP,		/* SD2_WP */
> ++
> ++	/* USDHC3 */
> ++	MX6Q_PAD_SD3_CLK__USDHC3_CLK_50MHZ,
> ++	MX6Q_PAD_SD3_CMD__USDHC3_CMD_50MHZ,
> ++	MX6Q_PAD_SD3_DAT0__USDHC3_DAT0_50MHZ,
> ++	MX6Q_PAD_SD3_DAT1__USDHC3_DAT1_50MHZ,
> ++	MX6Q_PAD_SD3_DAT2__USDHC3_DAT2_50MHZ,
> ++	MX6Q_PAD_SD3_DAT3__USDHC3_DAT3_50MHZ,
> ++	MX6Q_PAD_SD3_DAT4__USDHC3_DAT4_50MHZ,
> ++	MX6Q_PAD_SD3_DAT5__USDHC3_DAT5_50MHZ,
> ++	MX6Q_PAD_SD3_DAT6__USDHC3_DAT6_50MHZ,
> ++	MX6Q_PAD_SD3_DAT7__USDHC3_DAT7_50MHZ,
> ++//	TODO - FIXME? MX6Q_PAD_NANDF_D0__GPIO_2_0,		/* SD3_CD */
> ++//	MX6Q_PAD_NANDF_D1__GPIO_2_1,		/* SD3_WP */
> ++	MX6Q_PAD_SD3_RST__USDHC3_RST,		/* SD3_RST */
> ++	MX6Q_PAD_GPIO_18__USDHC3_VSELECT,	/* SD3_VSELECT */
> ++
> ++	/* USDHC4 */
> ++	MX6Q_PAD_SD4_CLK__USDHC4_CLK_50MHZ,
> ++	MX6Q_PAD_SD4_CMD__USDHC4_CMD_50MHZ,
> ++	MX6Q_PAD_SD4_DAT0__USDHC4_DAT0_50MHZ,
> ++	MX6Q_PAD_SD4_DAT1__USDHC4_DAT1_50MHZ,
> ++	MX6Q_PAD_SD4_DAT2__USDHC4_DAT2_50MHZ,
> ++	MX6Q_PAD_SD4_DAT3__USDHC4_DAT3_50MHZ,
> ++	MX6Q_PAD_SD4_DAT4__USDHC4_DAT4_50MHZ,
> ++	MX6Q_PAD_SD4_DAT5__USDHC4_DAT5_50MHZ,
> ++	MX6Q_PAD_SD4_DAT6__USDHC4_DAT6_50MHZ,
> ++	MX6Q_PAD_SD4_DAT7__USDHC4_DAT7_50MHZ,
> ++
> ++	/* IR in */
> ++	MX6Q_PAD_GPIO_2__GPIO_1_2,
> ++	/* MX6Q_PAD_EIM_DA9__GPIO_3_9 on CuBox-i */
> ++};
> ++
> ++static iomux_v3_cfg_t mx6q_c1_hdmi_ddc_pads[] = {
> ++	MX6Q_PAD_KEY_COL3__HDMI_TX_DDC_SCL, /* HDMI DDC SCL */
> ++	MX6Q_PAD_KEY_ROW3__HDMI_TX_DDC_SDA, /* HDMI DDC SDA */
> ++};
> ++
> ++static iomux_v3_cfg_t mx6q_c1_i2c2_pads[] = {
> ++	MX6Q_PAD_KEY_COL3__I2C2_SCL,	/* I2C2 SCL */
> ++	MX6Q_PAD_KEY_ROW3__I2C2_SDA,	/* I2C2 SDA */
> ++};
> ++#endif
> +--
> +1.7.9.5
> +
> diff --git a/recipes-kernel/linux/linux-imx-3.0.35/hummingboard/0003-LVDS-on-LDB_SEP1.patch b/recipes-kernel/linux/linux-imx-3.0.35/hummingboard/0003-LVDS-on-LDB_SEP1.patch
> new file mode 100644
> index 0000000..53c89ca
> --- /dev/null
> +++ b/recipes-kernel/linux/linux-imx-3.0.35/hummingboard/0003-LVDS-on-LDB_SEP1.patch
> @@ -0,0 +1,28 @@
> +From 9417de1558e32e616546b2a896e3c0d91a23e3fe Mon Sep 17 00:00:00 2001
> +From: Rabeeh Khoury <rabeeh at solid-run.com>
> +Date: Thu, 26 Sep 2013 11:57:21 +0200
> +Subject: [PATCH 3/4] LVDS on LDB_SEP1
> +
> +Otherwise HDMI won't come up
> +
> +Signed-off-by: Rabeeh Khoury <rabeeh at solid-run.com>
> +---
> + arch/arm/mach-mx6/board-mx6q_c1.c |    2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/arch/arm/mach-mx6/board-mx6q_c1.c b/arch/arm/mach-mx6/board-mx6q_c1.c
> +index ebbf8b8..6fd363e 100644
> +--- a/arch/arm/mach-mx6/board-mx6q_c1.c
> ++++ b/arch/arm/mach-mx6/board-mx6q_c1.c
> +@@ -456,7 +456,7 @@ static struct fsl_mxc_ldb_platform_data ldb_data = {
> + 	.ipu_id = 1,
> + 	.disp_id = 1,
> + 	.ext_ref = 1,
> +-	.mode = LDB_SEP0,
> ++	.mode = LDB_SEP1,
> + 	.sec_ipu_id = 1,
> + 	.sec_disp_id = 0,
> + };
> +--
> +1.7.9.5
> +
> diff --git a/recipes-kernel/linux/linux-imx-3.0.35/hummingboard/0004-Added-Carrier-One-C1-to-imx6_defconfig.patch b/recipes-kernel/linux/linux-imx-3.0.35/hummingboard/0004-Added-Carrier-One-C1-to-imx6_defconfig.patch
> new file mode 100644
> index 0000000..5de4eff
> --- /dev/null
> +++ b/recipes-kernel/linux/linux-imx-3.0.35/hummingboard/0004-Added-Carrier-One-C1-to-imx6_defconfig.patch
> @@ -0,0 +1,25 @@
> +From e69cc3a53bd1f9113114eacb5b070f53baec9bfb Mon Sep 17 00:00:00 2001
> +From: Rabeeh Khoury <rabeeh at solid-run.com>
> +Date: Thu, 26 Sep 2013 11:58:07 +0200
> +Subject: [PATCH 4/4] Added Carrier-One (C1) to imx6_defconfig
> +
> +Signed-off-by: Rabeeh Khoury <rabeeh at solid-run.com>
> +---
> + arch/arm/configs/imx6_defconfig |    1 +
> + 1 file changed, 1 insertion(+)
> +
> +diff --git a/arch/arm/configs/imx6_defconfig b/arch/arm/configs/imx6_defconfig
> +index b02b875..af05e9f 100644
> +--- a/arch/arm/configs/imx6_defconfig
> ++++ b/arch/arm/configs/imx6_defconfig
> +@@ -311,6 +311,7 @@ CONFIG_MACH_MX6Q_SABRELITE=y
> + CONFIG_MACH_MX6Q_SABRESD=y
> + CONFIG_MACH_MX6Q_SABREAUTO=y
> + CONFIG_MACH_MX6Q_HDMIDONGLE=y
> ++CONFIG_MACH_C1=y
> +
> + #
> + # MX6 Options:
> +--
> +1.7.9.5
> +
> diff --git a/recipes-kernel/linux/linux-imx-3.0.35/hummingboard/defconfig b/recipes-kernel/linux/linux-imx-3.0.35/hummingboard/defconfig
> new file mode 100644
> index 0000000..a168850
> --- /dev/null
> +++ b/recipes-kernel/linux/linux-imx-3.0.35/hummingboard/defconfig
> @@ -0,0 +1,2733 @@
> +#
> +# Automatically generated make config: don't edit
> +# Linux/arm 3.0.35 Kernel Configuration
> +#
> +CONFIG_ARM=y
> +CONFIG_HAVE_PWM=y
> +CONFIG_SYS_SUPPORTS_APM_EMULATION=y
> +CONFIG_HAVE_SCHED_CLOCK=y
> +CONFIG_GENERIC_GPIO=y
> +# CONFIG_ARCH_USES_GETTIMEOFFSET is not set
> +CONFIG_GENERIC_CLOCKEVENTS=y
> +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
> +CONFIG_KTIME_SCALAR=y
> +CONFIG_HAVE_PROC_CPU=y
> +CONFIG_STACKTRACE_SUPPORT=y
> +CONFIG_LOCKDEP_SUPPORT=y
> +CONFIG_TRACE_IRQFLAGS_SUPPORT=y
> +CONFIG_HARDIRQS_SW_RESEND=y
> +CONFIG_GENERIC_IRQ_PROBE=y
> +CONFIG_GENERIC_LOCKBREAK=y
> +CONFIG_RWSEM_GENERIC_SPINLOCK=y
> +CONFIG_ARCH_HAS_CPUFREQ=y
> +CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y
> +CONFIG_GENERIC_HWEIGHT=y
> +CONFIG_GENERIC_CALIBRATE_DELAY=y
> +CONFIG_ZONE_DMA=y
> +CONFIG_NEED_DMA_MAP_STATE=y
> +CONFIG_FIQ=y
> +CONFIG_VECTORS_BASE=0xffff0000
> +# CONFIG_ARM_PATCH_PHYS_VIRT is not set
> +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
> +CONFIG_HAVE_IRQ_WORK=y
> +CONFIG_IRQ_WORK=y
> +
> +#
> +# General setup
> +#
> +CONFIG_EXPERIMENTAL=y
> +CONFIG_INIT_ENV_ARG_LIMIT=32
> +CONFIG_CROSS_COMPILE=""
> +CONFIG_LOCALVERSION=""
> +CONFIG_LOCALVERSION_AUTO=y
> +CONFIG_HAVE_KERNEL_GZIP=y
> +CONFIG_HAVE_KERNEL_LZMA=y
> +CONFIG_HAVE_KERNEL_LZO=y
> +CONFIG_KERNEL_GZIP=y
> +# CONFIG_KERNEL_LZMA is not set
> +# CONFIG_KERNEL_LZO is not set
> +CONFIG_DEFAULT_HOSTNAME="(none)"
> +CONFIG_SWAP=y
> +CONFIG_SYSVIPC=y
> +CONFIG_SYSVIPC_SYSCTL=y
> +# CONFIG_POSIX_MQUEUE is not set
> +# CONFIG_BSD_PROCESS_ACCT is not set
> +# CONFIG_FHANDLE is not set
> +# CONFIG_TASKSTATS is not set
> +# CONFIG_AUDIT is not set
> +CONFIG_HAVE_GENERIC_HARDIRQS=y
> +
> +#
> +# IRQ subsystem
> +#
> +CONFIG_GENERIC_HARDIRQS=y
> +CONFIG_HAVE_SPARSE_IRQ=y
> +CONFIG_GENERIC_IRQ_SHOW=y
> +# CONFIG_SPARSE_IRQ is not set
> +
> +#
> +# RCU Subsystem
> +#
> +CONFIG_TREE_PREEMPT_RCU=y
> +CONFIG_PREEMPT_RCU=y
> +# 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_RCU_BOOST is not set
> +CONFIG_IKCONFIG=y
> +CONFIG_IKCONFIG_PROC=y
> +CONFIG_LOG_BUF_SHIFT=14
> +# CONFIG_CGROUPS is not set
> +# CONFIG_NAMESPACES is not set
> +# CONFIG_SCHED_AUTOGROUP is not set
> +# CONFIG_SYSFS_DEPRECATED is not set
> +# CONFIG_RELAY is not set
> +# CONFIG_BLK_DEV_INITRD is not set
> +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
> +CONFIG_SYSCTL=y
> +CONFIG_ANON_INODES=y
> +CONFIG_EXPERT=y
> +CONFIG_UID16=y
> +CONFIG_SYSCTL_SYSCALL=y
> +CONFIG_KALLSYMS=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_AIO=y
> +CONFIG_EMBEDDED=y
> +CONFIG_HAVE_PERF_EVENTS=y
> +CONFIG_PERF_USE_VMALLOC=y
> +
> +#
> +# Kernel Performance Events And Counters
> +#
> +CONFIG_PERF_EVENTS=y
> +# CONFIG_PERF_COUNTERS is not set
> +CONFIG_VM_EVENT_COUNTERS=y
> +CONFIG_SLUB_DEBUG=y
> +CONFIG_COMPAT_BRK=y
> +# CONFIG_SLAB is not set
> +CONFIG_SLUB=y
> +# 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_USE_GENERIC_SMP_HELPERS=y
> +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
> +CONFIG_HAVE_CLK=y
> +CONFIG_HAVE_DMA_API_DEBUG=y
> +CONFIG_HAVE_HW_BREAKPOINT=y
> +
> +#
> +# GCOV-based kernel profiling
> +#
> +# CONFIG_GCOV_KERNEL 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=y
> +CONFIG_MODVERSIONS=y
> +# CONFIG_MODULE_SRCVERSION_ALL is not set
> +CONFIG_STOP_MACHINE=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 is not set
> +# CONFIG_INLINE_SPIN_UNLOCK_BH is not set
> +# CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set
> +# 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 is not set
> +# CONFIG_INLINE_READ_UNLOCK_BH is not set
> +# CONFIG_INLINE_READ_UNLOCK_IRQ is not set
> +# 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 is not set
> +# CONFIG_INLINE_WRITE_UNLOCK_BH is not set
> +# CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set
> +# CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set
> +CONFIG_MUTEX_SPIN_ON_OWNER=y
> +CONFIG_FREEZER=y
> +
> +#
> +# System Type
> +#
> +CONFIG_MMU=y
> +# CONFIG_ARCH_INTEGRATOR is not set
> +# CONFIG_ARCH_REALVIEW is not set
> +# CONFIG_ARCH_VERSATILE is not set
> +# CONFIG_ARCH_VEXPRESS is not set
> +# CONFIG_ARCH_AT91 is not set
> +# CONFIG_ARCH_BCMRING is not set
> +# CONFIG_ARCH_CLPS711X is not set
> +# CONFIG_ARCH_CNS3XXX 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=y
> +# CONFIG_ARCH_MXS is not set
> +# CONFIG_ARCH_NETX is not set
> +# CONFIG_ARCH_H720X 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_DOVE is not set
> +# CONFIG_ARCH_KIRKWOOD is not set
> +# CONFIG_ARCH_LOKI is not set
> +# CONFIG_ARCH_LPC32XX 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_W90X900 is not set
> +# CONFIG_ARCH_NUC93X is not set
> +# CONFIG_ARCH_TEGRA is not set
> +# CONFIG_ARCH_PNX4008 is not set
> +# CONFIG_ARCH_PXA is not set
> +# CONFIG_ARCH_MSM is not set
> +# CONFIG_ARCH_SHMOBILE 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_S5P64X0 is not set
> +# CONFIG_ARCH_S5PC100 is not set
> +# CONFIG_ARCH_S5PV210 is not set
> +# CONFIG_ARCH_EXYNOS4 is not set
> +# CONFIG_ARCH_SHARK is not set
> +# CONFIG_ARCH_TCC_926 is not set
> +# CONFIG_ARCH_U300 is not set
> +# CONFIG_ARCH_U8500 is not set
> +# CONFIG_ARCH_NOMADIK is not set
> +# CONFIG_ARCH_DAVINCI is not set
> +# CONFIG_ARCH_OMAP is not set
> +# CONFIG_PLAT_SPEAR is not set
> +# CONFIG_ARCH_VT8500 is not set
> +CONFIG_GPIO_PCA953X=y
> +# CONFIG_KEYBOARD_GPIO_POLLED is not set
> +CONFIG_IMX_HAVE_PLATFORM_DMA=y
> +CONFIG_IMX_HAVE_PLATFORM_MXC_MLB=y
> +CONFIG_IMX_HAVE_PLATFORM_FEC=y
> +CONFIG_IMX_HAVE_PLATFORM_FLEXCAN=y
> +CONFIG_IMX_HAVE_PLATFORM_FSL_USB2_UDC=y
> +CONFIG_IMX_HAVE_PLATFORM_GPMI_NFC=y
> +CONFIG_IMX_HAVE_PLATFORM_IMX2_WDT=y
> +CONFIG_IMX_HAVE_PLATFORM_IMX_SNVS_RTC=y
> +CONFIG_IMX_HAVE_PLATFORM_IMX_CAAM=y
> +CONFIG_IMX_HAVE_PLATFORM_IMX_I2C=y
> +CONFIG_IMX_HAVE_PLATFORM_IMX_SSI=y
> +CONFIG_IMX_HAVE_PLATFORM_IMX_ESAI=y
> +CONFIG_IMX_HAVE_PLATFORM_IMX_UART=y
> +CONFIG_IMX_HAVE_PLATFORM_MXC_EHCI=y
> +CONFIG_IMX_HAVE_PLATFORM_MXC_PWM=y
> +CONFIG_IMX_HAVE_PLATFORM_SDHCI_ESDHC_IMX=y
> +CONFIG_IMX_HAVE_PLATFORM_SPI_IMX=y
> +CONFIG_IMX_HAVE_PLATFORM_IMX_IPUV3=y
> +CONFIG_IMX_HAVE_PLATFORM_IMX_VPU=y
> +CONFIG_IMX_HAVE_PLATFORM_IMX_DVFS=y
> +CONFIG_IMX_HAVE_PLATFORM_AHCI=y
> +CONFIG_IMX_HAVE_PLATFORM_IMX_OCOTP=y
> +CONFIG_IMX_HAVE_PLATFORM_IMX_VIIM=y
> +CONFIG_IMX_HAVE_PLATFORM_PERFMON=y
> +CONFIG_IMX_HAVE_PLATFORM_LDB=y
> +CONFIG_IMX_HAVE_PLATFORM_IMX_PXP=y
> +CONFIG_IMX_HAVE_PLATFORM_IMX_ELCDIF=y
> +CONFIG_IMX_HAVE_PLATFORM_IMX_EPDC=y
> +CONFIG_IMX_HAVE_PLATFORM_IMX_SPDIF=y
> +CONFIG_IMX_HAVE_PLATFORM_VIV_GPU=y
> +CONFIG_IMX_HAVE_PLATFORM_MXC_HDMI=y
> +CONFIG_IMX_HAVE_PLATFORM_IMX_ANATOP_THERMAL=y
> +CONFIG_IMX_HAVE_PLATFORM_FSL_OTG=y
> +CONFIG_IMX_HAVE_PLATFORM_FSL_USB_WAKEUP=y
> +CONFIG_IMX_HAVE_PLATFORM_IMX_PM=y
> +CONFIG_IMX_HAVE_PLATFORM_IMX_ASRC=y
> +CONFIG_IMX_HAVE_PLATFORM_IMX_MIPI_DSI=y
> +CONFIG_IMX_HAVE_PLATFORM_IMX_MIPI_CSI2=y
> +CONFIG_IMX_HAVE_PLATFORM_IMX_VDOA=y
> +CONFIG_IMX_HAVE_PLATFORM_IMX_PCIE=y
> +
> +#
> +# Freescale MXC Implementations
> +#
> +# CONFIG_ARCH_MX1 is not set
> +# CONFIG_ARCH_MX2 is not set
> +# CONFIG_ARCH_MX25 is not set
> +# CONFIG_ARCH_MX3 is not set
> +# CONFIG_ARCH_MX503 is not set
> +# CONFIG_ARCH_MX51 is not set
> +CONFIG_ARCH_MX6=y
> +CONFIG_ARCH_MX6Q=y
> +CONFIG_FORCE_MAX_ZONEORDER=14
> +CONFIG_SOC_IMX6Q=y
> +CONFIG_MACH_MX6Q_ARM2=y
> +# CONFIG_MACH_MX6SL_ARM2 is not set
> +# CONFIG_MACH_MX6SL_EVK is not set
> +CONFIG_MACH_MX6Q_SABRELITE=y
> +CONFIG_MACH_MX6Q_SABRESD=y
> +CONFIG_MACH_MX6Q_SABREAUTO=y
> +CONFIG_MACH_MX6Q_HDMIDONGLE=y
> +CONFIG_MACH_C1=y
> +
> +#
> +# MX6 Options:
> +#
> +# CONFIG_IMX_PCIE is not set
> +CONFIG_USB_EHCI_ARC_H1=y
> +CONFIG_USB_FSL_ARC_OTG=y
> +# CONFIG_MX6_INTER_LDO_BYPASS is not set
> +# CONFIG_MX6_CLK_FOR_BOOTUI_TRANS is not set
> +CONFIG_ISP1504_MXC=y
> +# CONFIG_MXC_IRQ_PRIOR is not set
> +CONFIG_MXC_PWM=y
> +# CONFIG_MXC_DEBUG_BOARD is not set
> +CONFIG_MXC_REBOOT_MFGMODE=y
> +# CONFIG_MXC_REBOOT_ANDROID_CMD is not set
> +CONFIG_ARCH_MXC_IOMUX_V3=y
> +CONFIG_ARCH_MXC_AUDMUX_V2=y
> +CONFIG_IRAM_ALLOC=y
> +CONFIG_CLK_DEBUG=y
> +CONFIG_DMA_ZONE_SIZE=184
> +
> +#
> +# System MMU
> +#
> +
> +#
> +# Processor Type
> +#
> +CONFIG_CPU_V7=y
> +CONFIG_CPU_32v6K=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_SWP_EMULATE 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_OUTER_CACHE=y
> +CONFIG_OUTER_CACHE_SYNC=y
> +CONFIG_CACHE_L2X0=y
> +CONFIG_CACHE_PL310=y
> +CONFIG_ARM_L1_CACHE_SHIFT=5
> +CONFIG_ARM_DMA_MEM_BUFFERABLE=y
> +CONFIG_CPU_HAS_PMU=y
> +# CONFIG_ARM_ERRATA_430973 is not set
> +# CONFIG_ARM_ERRATA_458693 is not set
> +# CONFIG_ARM_ERRATA_460075 is not set
> +# CONFIG_ARM_ERRATA_742230 is not set
> +# CONFIG_ARM_ERRATA_742231 is not set
> +# CONFIG_PL310_ERRATA_588369 is not set
> +# CONFIG_ARM_ERRATA_720789 is not set
> +# CONFIG_PL310_ERRATA_727915 is not set
> +CONFIG_ARM_ERRATA_743622=y
> +CONFIG_ARM_ERRATA_751472=y
> +# CONFIG_ARM_ERRATA_753970 is not set
> +CONFIG_ARM_ERRATA_754322=y
> +# CONFIG_ARM_ERRATA_754327 is not set
> +CONFIG_ARM_ERRATA_775420=y
> +CONFIG_ARM_GIC=y
> +
> +#
> +# Bus support
> +#
> +CONFIG_ARM_AMBA=y
> +# CONFIG_PCI_SYSCALL is not set
> +# CONFIG_ARCH_SUPPORTS_MSI is not set
> +# CONFIG_PCCARD is not set
> +CONFIG_ARM_ERRATA_764369=y
> +CONFIG_PL310_ERRATA_769419=y
> +
> +#
> +# Kernel Features
> +#
> +CONFIG_TICK_ONESHOT=y
> +CONFIG_NO_HZ=y
> +CONFIG_HIGH_RES_TIMERS=y
> +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
> +CONFIG_SMP=y
> +CONFIG_SMP_ON_UP=y
> +CONFIG_HAVE_ARM_SCU=y
> +CONFIG_HAVE_ARM_TWD=y
> +# CONFIG_VMSPLIT_3G is not set
> +CONFIG_VMSPLIT_2G=y
> +# CONFIG_VMSPLIT_1G is not set
> +CONFIG_PAGE_OFFSET=0x80000000
> +CONFIG_NR_CPUS=4
> +CONFIG_HOTPLUG_CPU=y
> +CONFIG_LOCAL_TIMERS=y
> +# CONFIG_PREEMPT_NONE is not set
> +# CONFIG_PREEMPT_VOLUNTARY is not set
> +CONFIG_PREEMPT=y
> +CONFIG_HZ=100
> +# CONFIG_THUMB2_KERNEL is not set
> +CONFIG_AEABI=y
> +# CONFIG_OABI_COMPAT is not set
> +# CONFIG_ARCH_SPARSEMEM_DEFAULT is not set
> +# CONFIG_ARCH_SELECT_MEMORY_MODEL is not set
> +CONFIG_HAVE_ARCH_PFN_VALID=y
> +CONFIG_HIGHMEM=y
> +# CONFIG_HIGHPTE is not set
> +CONFIG_HW_PERF_EVENTS=y
> +CONFIG_SELECT_MEMORY_MODEL=y
> +CONFIG_FLATMEM_MANUAL=y
> +CONFIG_FLATMEM=y
> +CONFIG_FLAT_NODE_MEM_MAP=y
> +CONFIG_HAVE_MEMBLOCK=y
> +CONFIG_PAGEFLAGS_EXTENDED=y
> +CONFIG_SPLIT_PTLOCK_CPUS=4
> +CONFIG_COMPACTION=y
> +CONFIG_MIGRATION=y
> +# CONFIG_PHYS_ADDR_T_64BIT is not set
> +CONFIG_ZONE_DMA_FLAG=1
> +CONFIG_BOUNCE=y
> +CONFIG_VIRT_TO_BUS=y
> +CONFIG_KSM=y
> +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
> +# CONFIG_CLEANCACHE is not set
> +CONFIG_ALIGNMENT_TRAP=y
> +# CONFIG_UACCESS_WITH_MEMCPY is not set
> +# CONFIG_SECCOMP is not set
> +# CONFIG_CC_STACKPROTECTOR is not set
> +# CONFIG_DEPRECATED_PARAM_STRUCT is not set
> +
> +#
> +# Boot options
> +#
> +# CONFIG_USE_OF is not set
> +CONFIG_ZBOOT_ROM_TEXT=0x0
> +CONFIG_ZBOOT_ROM_BSS=0x0
> +CONFIG_CMDLINE="noinitrd console=ttymxc0,115200 root=/dev/mtdblock2 rw rootfstype=jffs2 ip=off"
> +CONFIG_CMDLINE_FROM_BOOTLOADER=y
> +# CONFIG_CMDLINE_EXTEND is not set
> +# CONFIG_CMDLINE_FORCE is not set
> +# CONFIG_XIP_KERNEL is not set
> +# CONFIG_KEXEC is not set
> +# CONFIG_CRASH_DUMP is not set
> +# CONFIG_AUTO_ZRELADDR is not set
> +
> +#
> +# CPU Power Management
> +#
> +
> +#
> +# CPU Frequency scaling
> +#
> +CONFIG_CPU_FREQ=y
> +CONFIG_CPU_FREQ_TABLE=y
> +CONFIG_CPU_FREQ_STAT=y
> +# CONFIG_CPU_FREQ_STAT_DETAILS is not set
> +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
> +# 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_DEFAULT_GOV_INTERACTIVE=y
> +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_INTERACTIVE=y
> +CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
> +CONFIG_CPU_FREQ_IMX=y
> +# CONFIG_CPU_IDLE is not set
> +
> +#
> +# Floating point emulation
> +#
> +
> +#
> +# At least one emulation must be selected
> +#
> +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 is not set
> +
> +#
> +# Power management options
> +#
> +CONFIG_SUSPEND=y
> +# CONFIG_PM_TEST_SUSPEND is not set
> +CONFIG_SUSPEND_DEVICE_TIME_DEBUG=y
> +CONFIG_SUSPEND_FREEZER=y
> +CONFIG_PM_SLEEP=y
> +CONFIG_PM_SLEEP_SMP=y
> +CONFIG_PM_RUNTIME=y
> +CONFIG_PM=y
> +CONFIG_PM_DEBUG=y
> +# CONFIG_PM_ADVANCED_DEBUG is not set
> +CONFIG_CAN_PM_TRACE=y
> +CONFIG_APM_EMULATION=y
> +CONFIG_PM_RUNTIME_CLK=y
> +CONFIG_ARCH_SUSPEND_POSSIBLE=y
> +CONFIG_NET=y
> +
> +#
> +# Networking options
> +#
> +CONFIG_PACKET=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 is not set
> +CONFIG_INET=y
> +CONFIG_IP_MULTICAST=y
> +# CONFIG_IP_ADVANCED_ROUTER is not set
> +CONFIG_IP_PNP=y
> +CONFIG_IP_PNP_DHCP=y
> +CONFIG_IP_PNP_BOOTP=y
> +# CONFIG_IP_PNP_RARP is not set
> +# CONFIG_NET_IPIP is not set
> +# CONFIG_NET_IPGRE_DEMUX is not set
> +# CONFIG_IP_MROUTE 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_NETWORK_SECMARK is not set
> +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set
> +# CONFIG_NETFILTER 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_L2TP 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_LLC=y
> +CONFIG_LLC2=y
> +# 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
> +# CONFIG_BATMAN_ADV is not set
> +CONFIG_RPS=y
> +CONFIG_RFS_ACCEL=y
> +CONFIG_XPS=y
> +
> +#
> +# Network testing
> +#
> +# CONFIG_NET_PKTGEN is not set
> +# CONFIG_HAMRADIO is not set
> +CONFIG_CAN=y
> +CONFIG_CAN_RAW=y
> +CONFIG_CAN_BCM=y
> +
> +#
> +# CAN Device Drivers
> +#
> +CONFIG_CAN_VCAN=y
> +# CONFIG_CAN_SLCAN is not set
> +CONFIG_CAN_DEV=y
> +CONFIG_CAN_CALC_BITTIMING=y
> +# CONFIG_CAN_MCP251X is not set
> +CONFIG_HAVE_CAN_FLEXCAN=y
> +CONFIG_CAN_FLEXCAN=y
> +# CONFIG_CAN_SJA1000 is not set
> +# CONFIG_CAN_C_CAN is not set
> +
> +#
> +# CAN USB interfaces
> +#
> +# CONFIG_CAN_EMS_USB is not set
> +# CONFIG_CAN_ESD_USB2 is not set
> +# CONFIG_CAN_SOFTING is not set
> +# CONFIG_CAN_DEBUG_DEVICES 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=y
> +# CONFIG_BT_HCIBTSDIO is not set
> +CONFIG_BT_HCIUART=y
> +# CONFIG_BT_HCIUART_H4 is not set
> +# CONFIG_BT_HCIUART_BCSP is not set
> +CONFIG_BT_HCIUART_ATH3K=y
> +# CONFIG_BT_HCIUART_LL is not set
> +# CONFIG_BT_HCIBCM203X is not set
> +# CONFIG_BT_HCIBPA10X is not set
> +# CONFIG_BT_HCIBFUSB is not set
> +CONFIG_BT_HCIVHCI=y
> +# CONFIG_BT_MRVL is not set
> +# CONFIG_BT_ATH3K 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=y
> +# 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_CFG80211_INTERNAL_REGDB is not set
> +CONFIG_CFG80211_WEXT=y
> +CONFIG_WIRELESS_EXT_SYSFS=y
> +CONFIG_LIB80211=y
> +CONFIG_LIB80211_CRYPT_WEP=y
> +CONFIG_LIB80211_CRYPT_CCMP=y
> +CONFIG_LIB80211_CRYPT_TKIP=y
> +# CONFIG_LIB80211_DEBUG is not set
> +# CONFIG_MAC80211 is not set
> +# CONFIG_WIMAX is not set
> +CONFIG_RFKILL=y
> +CONFIG_RFKILL_LEDS=y
> +CONFIG_RFKILL_INPUT=y
> +# CONFIG_RFKILL_REGULATOR is not set
> +# CONFIG_RFKILL_GPIO is not set
> +# CONFIG_NET_9P is not set
> +# CONFIG_CAIF is not set
> +# CONFIG_CEPH_LIB is not set
> +
> +#
> +# Device Drivers
> +#
> +
> +#
> +# Generic Driver Options
> +#
> +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
> +CONFIG_DEVTMPFS=y
> +# CONFIG_DEVTMPFS_MOUNT is not set
> +CONFIG_STANDALONE=y
> +CONFIG_PREVENT_FIRMWARE_BUILD=y
> +CONFIG_FW_LOADER=y
> +CONFIG_FIRMWARE_IN_KERNEL=y
> +CONFIG_EXTRA_FIRMWARE=""
> +# CONFIG_SYS_HYPERVISOR is not set
> +CONFIG_CONNECTOR=y
> +CONFIG_PROC_EVENTS=y
> +CONFIG_MTD=y
> +# CONFIG_MTD_DEBUG is not set
> +# CONFIG_MTD_TESTS is not set
> +# CONFIG_MTD_REDBOOT_PARTS is not set
> +CONFIG_MTD_CMDLINE_PARTS=y
> +# 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_SM_FTL is not set
> +# CONFIG_MTD_OOPS is not set
> +# CONFIG_MTD_SWAP is not set
> +
> +#
> +# RAM/ROM/Flash chip drivers
> +#
> +CONFIG_MTD_CFI=y
> +# CONFIG_MTD_JEDECPROBE is not set
> +CONFIG_MTD_GEN_PROBE=y
> +# CONFIG_MTD_CFI_ADV_OPTIONS 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_CFI_INTELEXT is not set
> +CONFIG_MTD_CFI_AMDSTD=y
> +# CONFIG_MTD_CFI_STAA is not set
> +CONFIG_MTD_CFI_UTIL=y
> +# 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_PHYSMAP=y
> +# CONFIG_MTD_PHYSMAP_COMPAT is not set
> +# CONFIG_MTD_ARM_INTEGRATOR is not set
> +# CONFIG_MTD_PLATRAM is not set
> +
> +#
> +# Self-contained MTD device drivers
> +#
> +# CONFIG_MTD_DATAFLASH is not set
> +CONFIG_MTD_M25P80=y
> +CONFIG_M25PXX_USE_FAST_READ=y
> +# CONFIG_MTD_SST25L is not set
> +# 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_ECC=y
> +# CONFIG_MTD_NAND_ECC_SMC is not set
> +CONFIG_MTD_NAND=y
> +# CONFIG_MTD_NAND_VERIFY_WRITE is not set
> +# CONFIG_MTD_NAND_ECC_BCH is not set
> +# CONFIG_MTD_SM_COMMON is not set
> +# CONFIG_MTD_NAND_MUSEUM_IDS is not set
> +# CONFIG_MTD_NAND_GPIO is not set
> +CONFIG_MTD_NAND_IDS=y
> +# CONFIG_MTD_NAND_DISKONCHIP is not set
> +# CONFIG_MTD_NAND_NANDSIM is not set
> +CONFIG_MTD_NAND_GPMI_NAND=y
> +# 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
> +CONFIG_MTD_UBI=y
> +CONFIG_MTD_UBI_WL_THRESHOLD=4096
> +CONFIG_MTD_UBI_BEB_RESERVE=1
> +# CONFIG_MTD_UBI_GLUEBI is not set
> +# 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
> +# CONFIG_BLK_DEV_DRBD is not set
> +# CONFIG_BLK_DEV_NBD is not set
> +# CONFIG_BLK_DEV_UB is not set
> +# CONFIG_BLK_DEV_RAM is not set
> +# CONFIG_CDROM_PKTCDVD is not set
> +# CONFIG_ATA_OVER_ETH is not set
> +# CONFIG_MG_DISK is not set
> +# CONFIG_BLK_DEV_RBD is not set
> +# CONFIG_SENSORS_LIS3LV02D is not set
> +CONFIG_MISC_DEVICES=y
> +# CONFIG_AD525X_DPOT is not set
> +# CONFIG_INTEL_MID_PTI is not set
> +# CONFIG_ICS932S401 is not set
> +# CONFIG_ENCLOSURE_SERVICES is not set
> +# CONFIG_APDS9802ALS is not set
> +# CONFIG_ISL29003 is not set
> +# CONFIG_ISL29020 is not set
> +# CONFIG_SENSORS_TSL2550 is not set
> +# CONFIG_SENSORS_BH1780 is not set
> +# CONFIG_SENSORS_BH1770 is not set
> +# CONFIG_SENSORS_APDS990X is not set
> +# CONFIG_HMC6352 is not set
> +# CONFIG_DS1682 is not set
> +# CONFIG_TI_DAC7512 is not set
> +# CONFIG_BMP085 is not set
> +CONFIG_MXS_PERFMON=m
> +# CONFIG_C2PORT is not set
> +
> +#
> +# EEPROM support
> +#
> +# CONFIG_EEPROM_AT24 is not set
> +# CONFIG_EEPROM_AT25 is not set
> +# CONFIG_EEPROM_LEGACY is not set
> +# CONFIG_EEPROM_MAX6875 is not set
> +# CONFIG_EEPROM_93CX6 is not set
> +# CONFIG_IWMC3200TOP is not set
> +
> +#
> +# Texas Instruments shared transport line discipline
> +#
> +# CONFIG_TI_ST is not set
> +# CONFIG_SENSORS_LIS3_SPI is not set
> +# CONFIG_SENSORS_LIS3_I2C is not set
> +CONFIG_HAVE_IDE=y
> +# CONFIG_IDE is not set
> +
> +#
> +# SCSI device support
> +#
> +CONFIG_SCSI_MOD=y
> +# 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=y
> +# 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_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_ISCSI_BOOT_SYSFS 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=y
> +# CONFIG_ATA_NONSTANDARD is not set
> +CONFIG_ATA_VERBOSE_ERROR=y
> +# CONFIG_SATA_PMP is not set
> +
> +#
> +# Controllers with non-SFF native interface
> +#
> +CONFIG_SATA_AHCI_PLATFORM=y
> +CONFIG_ATA_SFF=y
> +
> +#
> +# SFF controllers with custom DMA interface
> +#
> +CONFIG_ATA_BMDMA=y
> +
> +#
> +# SATA SFF controllers with BMDMA
> +#
> +# CONFIG_SATA_MV is not set
> +
> +#
> +# PATA SFF controllers with BMDMA
> +#
> +# CONFIG_PATA_ARASAN_CF is not set
> +
> +#
> +# PIO-only SFF controllers
> +#
> +# CONFIG_PATA_PLATFORM is not set
> +
> +#
> +# Generic fallback / legacy drivers
> +#
> +# CONFIG_MD is not set
> +# CONFIG_TARGET_CORE 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_MII=y
> +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 is not set
> +# 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_MICREL_PHY=y
> +# CONFIG_FIXED_PHY is not set
> +# CONFIG_MDIO_BITBANG is not set
> +CONFIG_NET_ETHERNET=y
> +# CONFIG_AX88796 is not set
> +# CONFIG_SMC91X is not set
> +# CONFIG_DM9000 is not set
> +# CONFIG_ENC28J60 is not set
> +# CONFIG_ETHOC is not set
> +# CONFIG_SMC911X is not set
> +CONFIG_SMSC911X=y
> +# CONFIG_SMSC911X_ARCH_HOOKS is not set
> +# 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 is not set
> +# CONFIG_KS8851_MLL is not set
> +CONFIG_FEC=y
> +CONFIG_FEC_NAPI=y
> +# CONFIG_FEC_1588 is not set
> +# CONFIG_FTMAC100 is not set
> +# CONFIG_NETDEV_1000 is not set
> +# CONFIG_NETDEV_10000 is not set
> +CONFIG_WLAN=y
> +# CONFIG_USB_ZD1201 is not set
> +# CONFIG_USB_NET_RNDIS_WLAN is not set
> +CONFIG_ATH_COMMON=m
> +# CONFIG_ATH_DEBUG is not set
> +CONFIG_ATH6KL=m
> +# CONFIG_ATH6KL_DEBUG is not set
> +CONFIG_HOSTAP=y
> +# CONFIG_HOSTAP_FIRMWARE is not set
> +# CONFIG_IWM is not set
> +# CONFIG_LIBERTAS is not set
> +# CONFIG_MWIFIEX 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 is not set
> +# CONFIG_USB_HSO is not set
> +# CONFIG_USB_IPHETH is not set
> +# CONFIG_WAN is not set
> +
> +#
> +# CAIF transport drivers
> +#
> +# 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=y
> +# 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_APMPOWER is not set
> +
> +#
> +# Input Device Drivers
> +#
> +CONFIG_INPUT_KEYBOARD=y
> +# CONFIG_KEYBOARD_ADP5588 is not set
> +# CONFIG_KEYBOARD_ADP5589 is not set
> +CONFIG_KEYBOARD_ATKBD=y
> +# CONFIG_KEYBOARD_QT1070 is not set
> +# CONFIG_KEYBOARD_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_LM8323 is not set
> +# CONFIG_KEYBOARD_MAX7359 is not set
> +# CONFIG_KEYBOARD_MCS is not set
> +# CONFIG_KEYBOARD_MPR121 is not set
> +# CONFIG_KEYBOARD_IMX 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_XTKBD is not set
> +# CONFIG_INPUT_MOUSE is not set
> +# CONFIG_INPUT_JOYSTICK is not set
> +# CONFIG_INPUT_TABLET is not set
> +CONFIG_INPUT_TOUCHSCREEN=y
> +# CONFIG_TOUCHSCREEN_ADS7846 is not set
> +# CONFIG_TOUCHSCREEN_AD7877 is not set
> +# CONFIG_TOUCHSCREEN_AD7879 is not set
> +# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set
> +# CONFIG_TOUCHSCREEN_BU21013 is not set
> +# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set
> +# CONFIG_TOUCHSCREEN_DYNAPRO is not set
> +# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
> +# CONFIG_TOUCHSCREEN_EETI is not set
> +CONFIG_TOUCHSCREEN_EGALAX=y
> +CONFIG_TOUCHSCREEN_ELAN=y
> +# CONFIG_TOUCHSCREEN_FUJITSU is not set
> +# CONFIG_TOUCHSCREEN_GUNZE is not set
> +# CONFIG_TOUCHSCREEN_ELO is not set
> +# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set
> +CONFIG_TOUCHSCREEN_MAX11801=y
> +# CONFIG_TOUCHSCREEN_MCS5000 is not set
> +# CONFIG_TOUCHSCREEN_MTOUCH is not set
> +# CONFIG_TOUCHSCREEN_INEXIO is not set
> +# CONFIG_TOUCHSCREEN_MK712 is not set
> +# CONFIG_TOUCHSCREEN_PENMOUNT is not set
> +# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
> +# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
> +# CONFIG_TOUCHSCREEN_WM97XX is not set
> +# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
> +# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
> +# CONFIG_TOUCHSCREEN_TSC2005 is not set
> +# CONFIG_TOUCHSCREEN_TSC2007 is not set
> +# CONFIG_TOUCHSCREEN_W90X900 is not set
> +# CONFIG_TOUCHSCREEN_ST1232 is not set
> +# CONFIG_TOUCHSCREEN_P1003 is not set
> +# CONFIG_TOUCHSCREEN_TPS6507X is not set
> +CONFIG_INPUT_MISC=y
> +# CONFIG_INPUT_AD714X is not set
> +# CONFIG_INPUT_ATI_REMOTE is not set
> +# CONFIG_INPUT_ATI_REMOTE2 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_UINPUT=y
> +# CONFIG_INPUT_PCF8574 is not set
> +# CONFIG_INPUT_PWM_BEEPER is not set
> +# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set
> +# CONFIG_INPUT_ADXL34X is not set
> +# CONFIG_INPUT_CMA3000 is not set
> +CONFIG_INPUT_ISL29023=y
> +
> +#
> +# Hardware I/O ports
> +#
> +CONFIG_SERIO=y
> +CONFIG_SERIO_SERPORT=y
> +# CONFIG_SERIO_AMBAKMI is not set
> +CONFIG_SERIO_LIBPS2=y
> +# CONFIG_SERIO_RAW is not set
> +# CONFIG_SERIO_ALTERA_PS2 is not set
> +# CONFIG_SERIO_PS2MULT 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=y
> +CONFIG_UNIX98_PTYS=y
> +# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set
> +CONFIG_LEGACY_PTYS=y
> +CONFIG_LEGACY_PTY_COUNT=256
> +# CONFIG_SERIAL_NONSTANDARD is not set
> +# CONFIG_N_GSM is not set
> +# CONFIG_TRACE_SINK is not set
> +CONFIG_DEVKMEM=y
> +
> +#
> +# Serial drivers
> +#
> +# CONFIG_SERIAL_8250 is not set
> +
> +#
> +# Non-8250 serial port support
> +#
> +# CONFIG_SERIAL_AMBA_PL010 is not set
> +# CONFIG_SERIAL_AMBA_PL011 is not set
> +# CONFIG_SERIAL_MAX3100 is not set
> +# CONFIG_SERIAL_MAX3107 is not set
> +CONFIG_SERIAL_IMX=y
> +CONFIG_SERIAL_IMX_CONSOLE=y
> +CONFIG_SERIAL_CORE=y
> +CONFIG_SERIAL_CORE_CONSOLE=y
> +# CONFIG_SERIAL_TIMBERDALE is not set
> +# CONFIG_SERIAL_ALTERA_JTAGUART is not set
> +# CONFIG_SERIAL_ALTERA_UART is not set
> +# CONFIG_SERIAL_IFX6X60 is not set
> +# CONFIG_SERIAL_XILINX_PS_UART is not set
> +# CONFIG_TTY_PRINTK is not set
> +CONFIG_FSL_OTP=y
> +# CONFIG_HVC_DCC 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_RAMOOPS is not set
> +CONFIG_MXS_VIIM=y
> +CONFIG_I2C=y
> +CONFIG_I2C_BOARDINFO=y
> +CONFIG_I2C_COMPAT=y
> +CONFIG_I2C_CHARDEV=y
> +# CONFIG_I2C_MUX is not set
> +CONFIG_I2C_HELPER_AUTO=y
> +CONFIG_I2C_ALGOBIT=m
> +
> +#
> +# 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_IMX=y
> +# CONFIG_I2C_OCORES is not set
> +# CONFIG_I2C_PCA_PLATFORM is not set
> +# CONFIG_I2C_PXA_PCI is not set
> +# CONFIG_I2C_SIMTEC is not set
> +# CONFIG_I2C_XILINX is not set
> +
> +#
> +# External I2C/SMBus adapter drivers
> +#
> +# CONFIG_I2C_DIOLAN_U2C is not set
> +# 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_STUB 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_SPI=y
> +CONFIG_SPI_MASTER=y
> +
> +#
> +# SPI Master Controller Drivers
> +#
> +# CONFIG_SPI_ALTERA is not set
> +CONFIG_SPI_BITBANG=y
> +# CONFIG_SPI_GPIO is not set
> +CONFIG_SPI_IMX_VER_2_3=y
> +CONFIG_SPI_IMX=y
> +# CONFIG_SPI_OC_TINY is not set
> +# CONFIG_SPI_PL022 is not set
> +# CONFIG_SPI_PXA2XX_PCI is not set
> +# CONFIG_SPI_XILINX is not set
> +# CONFIG_SPI_DESIGNWARE is not set
> +
> +#
> +# SPI Protocol Masters
> +#
> +# CONFIG_SPI_SPIDEV is not set
> +# CONFIG_SPI_TLE62X0 is not set
> +
> +#
> +# PPS support
> +#
> +# CONFIG_PPS is not set
> +
> +#
> +# PPS generators support
> +#
> +
> +#
> +# PTP clock support
> +#
> +
> +#
> +# Enable Device Drivers -> PPS to see the PTP clock options.
> +#
> +CONFIG_ARCH_REQUIRE_GPIOLIB=y
> +CONFIG_GPIOLIB=y
> +CONFIG_GPIO_SYSFS=y
> +
> +#
> +# Memory mapped GPIO drivers:
> +#
> +# CONFIG_GPIO_BASIC_MMIO is not set
> +# CONFIG_GPIO_IT8761E is not set
> +# CONFIG_GPIO_PL061 is not set
> +
> +#
> +# I2C GPIO expanders:
> +#
> +# CONFIG_GPIO_MAX7300 is not set
> +# CONFIG_GPIO_MAX732X is not set
> +# CONFIG_GPIO_PCA953X_IRQ is not set
> +# CONFIG_GPIO_PCF857X is not set
> +# CONFIG_GPIO_SX150X is not set
> +# CONFIG_GPIO_WM8994 is not set
> +# CONFIG_GPIO_ADP5588 is not set
> +
> +#
> +# PCI GPIO expanders:
> +#
> +
> +#
> +# SPI GPIO expanders:
> +#
> +# CONFIG_GPIO_MAX7301 is not set
> +# CONFIG_GPIO_MCP23S08 is not set
> +# CONFIG_GPIO_MC33880 is not set
> +# CONFIG_GPIO_74X164 is not set
> +
> +#
> +# AC97 GPIO expanders:
> +#
> +
> +#
> +# MODULbus GPIO expanders:
> +#
> +# CONFIG_W1 is not set
> +CONFIG_POWER_SUPPLY=y
> +# CONFIG_POWER_SUPPLY_DEBUG is not set
> +# CONFIG_PDA_POWER is not set
> +# CONFIG_APM_POWER is not set
> +# CONFIG_TEST_POWER is not set
> +# CONFIG_BATTERY_DS2780 is not set
> +# CONFIG_BATTERY_DS2782 is not set
> +# CONFIG_BATTERY_BQ20Z75 is not set
> +# CONFIG_BATTERY_BQ27x00 is not set
> +# CONFIG_BATTERY_MAX17040 is not set
> +# CONFIG_BATTERY_MAX17042 is not set
> +# CONFIG_CHARGER_ISP1704 is not set
> +# CONFIG_CHARGER_MAX8903 is not set
> +CONFIG_SABRESD_MAX8903=y
> +# CONFIG_CHARGER_GPIO is not set
> +CONFIG_HWMON=y
> +# CONFIG_HWMON_VID is not set
> +# CONFIG_HWMON_DEBUG_CHIP is not set
> +
> +#
> +# Native drivers
> +#
> +# CONFIG_SENSORS_AD7414 is not set
> +# CONFIG_SENSORS_AD7418 is not set
> +# CONFIG_SENSORS_ADCXX is not set
> +# CONFIG_SENSORS_ADM1021 is not set
> +# CONFIG_SENSORS_ADM1025 is not set
> +# CONFIG_SENSORS_ADM1026 is not set
> +# CONFIG_SENSORS_ADM1029 is not set
> +# CONFIG_SENSORS_ADM1031 is not set
> +# CONFIG_SENSORS_ADM9240 is not set
> +# CONFIG_SENSORS_ADT7411 is not set
> +# CONFIG_SENSORS_ADT7462 is not set
> +# CONFIG_SENSORS_ADT7470 is not set
> +# CONFIG_SENSORS_ADT7475 is not set
> +# CONFIG_SENSORS_ASC7621 is not set
> +# CONFIG_SENSORS_ATXP1 is not set
> +# CONFIG_SENSORS_DS620 is not set
> +# CONFIG_SENSORS_DS1621 is not set
> +# CONFIG_SENSORS_F71805F is not set
> +# CONFIG_SENSORS_F71882FG is not set
> +# CONFIG_SENSORS_F75375S is not set
> +# CONFIG_SENSORS_G760A is not set
> +# CONFIG_SENSORS_GL518SM is not set
> +# CONFIG_SENSORS_GL520SM is not set
> +# CONFIG_SENSORS_GPIO_FAN is not set
> +# CONFIG_SENSORS_IT87 is not set
> +# CONFIG_SENSORS_JC42 is not set
> +# CONFIG_SENSORS_LINEAGE is not set
> +# CONFIG_SENSORS_LM63 is not set
> +# CONFIG_SENSORS_LM70 is not set
> +# CONFIG_SENSORS_LM73 is not set
> +# CONFIG_SENSORS_LM75 is not set
> +# CONFIG_SENSORS_LM77 is not set
> +# CONFIG_SENSORS_LM78 is not set
> +# CONFIG_SENSORS_LM80 is not set
> +# CONFIG_SENSORS_LM83 is not set
> +# CONFIG_SENSORS_LM85 is not set
> +# CONFIG_SENSORS_LM87 is not set
> +# CONFIG_SENSORS_LM90 is not set
> +# CONFIG_SENSORS_LM92 is not set
> +# CONFIG_SENSORS_LM93 is not set
> +# CONFIG_SENSORS_LTC4151 is not set
> +# CONFIG_SENSORS_LTC4215 is not set
> +# CONFIG_SENSORS_LTC4245 is not set
> +# CONFIG_SENSORS_LTC4261 is not set
> +# CONFIG_SENSORS_LM95241 is not set
> +# CONFIG_SENSORS_MAX1111 is not set
> +# CONFIG_SENSORS_MAX16065 is not set
> +# CONFIG_SENSORS_MAX1619 is not set
> +# CONFIG_SENSORS_MAX6639 is not set
> +# CONFIG_SENSORS_MAX6642 is not set
> +CONFIG_SENSORS_MAX17135=y
> +# CONFIG_SENSORS_MAX6650 is not set
> +# CONFIG_SENSORS_PC87360 is not set
> +# CONFIG_SENSORS_PC87427 is not set
> +# CONFIG_SENSORS_PCF8591 is not set
> +# CONFIG_PMBUS is not set
> +# CONFIG_SENSORS_SHT15 is not set
> +# CONFIG_SENSORS_SHT21 is not set
> +# CONFIG_SENSORS_SMM665 is not set
> +# CONFIG_SENSORS_DME1737 is not set
> +# CONFIG_SENSORS_EMC1403 is not set
> +# CONFIG_SENSORS_EMC2103 is not set
> +# CONFIG_SENSORS_EMC6W201 is not set
> +# CONFIG_SENSORS_SMSC47M1 is not set
> +# CONFIG_SENSORS_SMSC47M192 is not set
> +# CONFIG_SENSORS_SMSC47B397 is not set
> +# CONFIG_SENSORS_SCH5627 is not set
> +# CONFIG_SENSORS_ADS1015 is not set
> +# CONFIG_SENSORS_ADS7828 is not set
> +# CONFIG_SENSORS_ADS7871 is not set
> +# CONFIG_SENSORS_AMC6821 is not set
> +# CONFIG_SENSORS_THMC50 is not set
> +# CONFIG_SENSORS_TMP102 is not set
> +# CONFIG_SENSORS_TMP401 is not set
> +# CONFIG_SENSORS_TMP421 is not set
> +# CONFIG_SENSORS_VT1211 is not set
> +# CONFIG_SENSORS_W83781D is not set
> +# CONFIG_SENSORS_W83791D is not set
> +# CONFIG_SENSORS_W83792D is not set
> +# CONFIG_SENSORS_W83793 is not set
> +# CONFIG_SENSORS_W83795 is not set
> +# CONFIG_SENSORS_W83L785TS is not set
> +# CONFIG_SENSORS_W83L786NG is not set
> +# CONFIG_SENSORS_W83627HF is not set
> +# CONFIG_SENSORS_W83627EHF is not set
> +CONFIG_SENSORS_MAG3110=y
> +# CONFIG_MXC_MMA8450 is not set
> +CONFIG_MXC_MMA8451=y
> +CONFIG_THERMAL=y
> +# CONFIG_THERMAL_HWMON is not set
> +CONFIG_WATCHDOG=y
> +CONFIG_WATCHDOG_NOWAYOUT=y
> +
> +#
> +# Watchdog Device Drivers
> +#
> +# CONFIG_SOFT_WATCHDOG is not set
> +# CONFIG_ARM_SP805_WATCHDOG is not set
> +# CONFIG_MPCORE_WATCHDOG is not set
> +# CONFIG_MAX63XX_WATCHDOG is not set
> +CONFIG_IMX2_WDT=y
> +
> +#
> +# USB-based Watchdog Cards
> +#
> +# CONFIG_USBPCWATCHDOG is not set
> +CONFIG_SSB_POSSIBLE=y
> +
> +#
> +# Sonics Silicon Backplane
> +#
> +# CONFIG_SSB is not set
> +CONFIG_BCMA_POSSIBLE=y
> +
> +#
> +# Broadcom specific AMBA
> +#
> +# CONFIG_BCMA is not set
> +CONFIG_MFD_SUPPORT=y
> +CONFIG_MFD_CORE=y
> +# CONFIG_MFD_88PM860X is not set
> +# 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_HTC_I2CPLD is not set
> +# CONFIG_UCB1400_CORE is not set
> +# CONFIG_TPS6105X is not set
> +# CONFIG_TPS65010 is not set
> +# CONFIG_TPS6507X is not set
> +# CONFIG_MFD_TPS6586X is not set
> +# CONFIG_TWL4030_CORE is not set
> +# CONFIG_MFD_STMPE is not set
> +# CONFIG_MFD_TC3589X 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_MAX8925 is not set
> +# CONFIG_MFD_MAX8997 is not set
> +# CONFIG_MFD_MAX8998 is not set
> +# CONFIG_MFD_WM8400 is not set
> +# CONFIG_MFD_WM831X_I2C is not set
> +# CONFIG_MFD_WM831X_SPI is not set
> +# CONFIG_MFD_WM8350_I2C is not set
> +CONFIG_MFD_WM8994=y
> +# CONFIG_MFD_PCF50633 is not set
> +# CONFIG_PMIC_DIALOG is not set
> +# CONFIG_MFD_MC_PMIC is not set
> +# CONFIG_MFD_MC34708 is not set
> +CONFIG_MFD_PFUZE=y
> +# CONFIG_MFD_MC13XXX is not set
> +# CONFIG_ABX500_CORE is not set
> +# CONFIG_EZX_PCAP is not set
> +# CONFIG_MFD_WL1273_CORE is not set
> +# CONFIG_MFD_TPS65910 is not set
> +CONFIG_MFD_MAX17135=y
> +CONFIG_MFD_MXC_HDMI=y
> +CONFIG_REGULATOR=y
> +# CONFIG_REGULATOR_DEBUG is not set
> +# CONFIG_REGULATOR_DUMMY is not set
> +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_MAX8649 is not set
> +# CONFIG_REGULATOR_MAX8660 is not set
> +# CONFIG_REGULATOR_MAX8952 is not set
> +# CONFIG_REGULATOR_WM8994 is not set
> +# CONFIG_REGULATOR_LP3971 is not set
> +# CONFIG_REGULATOR_LP3972 is not set
> +# CONFIG_REGULATOR_MC34708 is not set
> +CONFIG_REGULATOR_PFUZE100=y
> +# CONFIG_REGULATOR_TPS65023 is not set
> +# CONFIG_REGULATOR_TPS6507X is not set
> +# CONFIG_REGULATOR_ISL6271A is not set
> +# CONFIG_REGULATOR_AD5398 is not set
> +CONFIG_REGULATOR_ANATOP=y
> +# CONFIG_REGULATOR_TPS6524X is not set
> +CONFIG_REGULATOR_MAX17135=y
> +CONFIG_MEDIA_SUPPORT=y
> +
> +#
> +# Multimedia core support
> +#
> +# CONFIG_MEDIA_CONTROLLER is not set
> +CONFIG_VIDEO_DEV=y
> +CONFIG_VIDEO_V4L2_COMMON=y
> +# CONFIG_DVB_CORE is not set
> +CONFIG_VIDEO_MEDIA=y
> +
> +#
> +# Multimedia drivers
> +#
> +# CONFIG_RC_CORE is not set
> +# 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_TDA827X=y
> +CONFIG_MEDIA_TUNER_TDA18271=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_VIDEOBUF_GEN=y
> +CONFIG_VIDEOBUF_DMA_CONTIG=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, sensors and other helper chips
> +#
> +
> +#
> +# Audio decoders, processors and mixers
> +#
> +# CONFIG_VIDEO_TVAUDIO is not set
> +# CONFIG_VIDEO_TDA7432 is not set
> +# CONFIG_VIDEO_TDA9840 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_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_SAA7110 is not set
> +# CONFIG_VIDEO_SAA711X is not set
> +# CONFIG_VIDEO_SAA7191 is not set
> +# CONFIG_VIDEO_TVP514X is not set
> +# CONFIG_VIDEO_TVP5150 is not set
> +# CONFIG_VIDEO_TVP7002 is not set
> +# CONFIG_VIDEO_VPX3220 is not set
> +
> +#
> +# Video and audio decoders
> +#
> +# CONFIG_VIDEO_SAA717X is not set
> +# 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_ADV7343 is not set
> +# CONFIG_VIDEO_AK881X is not set
> +
> +#
> +# Camera sensor devices
> +#
> +# CONFIG_VIDEO_OV7670 is not set
> +# CONFIG_VIDEO_MT9V011 is not set
> +# CONFIG_VIDEO_TCM825X is not set
> +
> +#
> +# Video improvement chips
> +#
> +# CONFIG_VIDEO_UPD64031A is not set
> +# CONFIG_VIDEO_UPD64083 is not set
> +
> +#
> +# Miscelaneous helper chips
> +#
> +# CONFIG_VIDEO_THS7303 is not set
> +# CONFIG_VIDEO_M52790 is not set
> +# CONFIG_VIDEO_VIVI is not set
> +CONFIG_VIDEO_MXC_CAMERA=m
> +
> +#
> +# MXC Camera/V4L2 PRP Features support
> +#
> +CONFIG_VIDEO_MXC_IPU_CAMERA=y
> +# CONFIG_VIDEO_MXC_CSI_CAMERA is not set
> +# CONFIG_MXC_CAMERA_MICRON111 is not set
> +# CONFIG_MXC_CAMERA_OV2640 is not set
> +CONFIG_MXC_CAMERA_OV3640=m
> +CONFIG_MXC_CAMERA_OV5640=m
> +CONFIG_MXC_CAMERA_OV8820_MIPI=m
> +CONFIG_MXC_CAMERA_OV5642=m
> +CONFIG_MXC_TVIN_ADV7180=m
> +CONFIG_MXC_CAMERA_OV5640_MIPI=m
> +# CONFIG_MXC_MIPI_CSI2_TVIN_ADV7280 is not set
> +CONFIG_MXC_CAMERA_SENSOR_CLK=m
> +CONFIG_MXC_IPU_DEVICE_QUEUE_SDC=m
> +CONFIG_MXC_IPU_PRP_ENC=m
> +CONFIG_MXC_IPU_CSI_ENC=m
> +CONFIG_VIDEO_MXC_OUTPUT=y
> +CONFIG_VIDEO_MXC_IPU_OUTPUT=y
> +# CONFIG_VIDEO_MXC_IPUV1_WVGA_OUTPUT is not set
> +# CONFIG_VIDEO_MXC_OPL is not set
> +# CONFIG_VIDEO_CPIA2 is not set
> +# CONFIG_VIDEO_TIMBERDALE is not set
> +# CONFIG_VIDEO_SR030PC30 is not set
> +# CONFIG_VIDEO_NOON010PC30 is not set
> +# CONFIG_SOC_CAMERA is not set
> +CONFIG_V4L_USB_DRIVERS=y
> +CONFIG_USB_VIDEO_CLASS=m
> +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_BENQ is not set
> +# CONFIG_USB_GSPCA_CONEX is not set
> +# CONFIG_USB_GSPCA_CPIA1 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_KINECT is not set
> +# CONFIG_USB_GSPCA_KONICA is not set
> +# CONFIG_USB_GSPCA_MARS is not set
> +# CONFIG_USB_GSPCA_MR97310A is not set
> +# CONFIG_USB_GSPCA_NW80X is not set
> +# CONFIG_USB_GSPCA_OV519 is not set
> +# CONFIG_USB_GSPCA_OV534 is not set
> +# CONFIG_USB_GSPCA_OV534_9 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_SN9C2028 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_SPCA1528 is not set
> +# CONFIG_USB_GSPCA_SQ905 is not set
> +# CONFIG_USB_GSPCA_SQ905C is not set
> +# CONFIG_USB_GSPCA_SQ930X 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_VICAM is not set
> +# CONFIG_USB_GSPCA_XIRLINK_CIT is not set
> +# CONFIG_USB_GSPCA_ZC3XX is not set
> +# CONFIG_VIDEO_PVRUSB2 is not set
> +# CONFIG_VIDEO_HDPVR is not set
> +# CONFIG_VIDEO_USBVISION is not set
> +# CONFIG_USB_ET61X251 is not set
> +# CONFIG_USB_SN9C102 is not set
> +# CONFIG_USB_PWC is not set
> +# CONFIG_USB_ZR364XX is not set
> +# CONFIG_USB_STKWEBCAM is not set
> +# CONFIG_USB_S2255 is not set
> +# CONFIG_V4L_MEM2MEM_DRIVERS is not set
> +# CONFIG_RADIO_ADAPTERS is not set
> +
> +#
> +# Graphics support
> +#
> +CONFIG_DRM=m
> +CONFIG_DRM_VIVANTE=m
> +# 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_WMT_GE_ROPS is not set
> +CONFIG_FB_DEFERRED_IO=y
> +# CONFIG_FB_SVGALIB is not set
> +# CONFIG_FB_MACMODES is not set
> +# CONFIG_FB_BACKLIGHT is not set
> +CONFIG_FB_MODE_HELPERS=y
> +# CONFIG_FB_TILEBLITTING is not set
> +
> +#
> +# Frame buffer hardware drivers
> +#
> +# CONFIG_FB_ARMCLCD is not set
> +# CONFIG_FB_UVESA is not set
> +# CONFIG_FB_S1D13XXX is not set
> +# CONFIG_FB_TMIO is not set
> +# CONFIG_FB_UDL is not set
> +# CONFIG_FB_VIRTUAL is not set
> +# CONFIG_FB_METRONOME is not set
> +# CONFIG_FB_BROADSHEET is not set
> +CONFIG_BACKLIGHT_LCD_SUPPORT=y
> +# CONFIG_LCD_CLASS_DEVICE is not set
> +CONFIG_BACKLIGHT_CLASS_DEVICE=y
> +# CONFIG_BACKLIGHT_GENERIC is not set
> +CONFIG_BACKLIGHT_PWM=y
> +# CONFIG_BACKLIGHT_ADP8860 is not set
> +# CONFIG_BACKLIGHT_ADP8870 is not set
> +
> +#
> +# Display device support
> +#
> +# CONFIG_DISPLAY_SUPPORT is not set
> +CONFIG_FB_MXC=y
> +CONFIG_FB_MXC_EDID=y
> +CONFIG_FB_MXC_SYNC_PANEL=y
> +# CONFIG_FB_MXC_EPSON_VGA_SYNC_PANEL is not set
> +CONFIG_FB_MXC_LDB=y
> +CONFIG_FB_MXC_MIPI_DSI=y
> +CONFIG_FB_MXC_TRULY_WVGA_SYNC_PANEL=y
> +# CONFIG_FB_MXC_CLAA_WVGA_SYNC_PANEL is not set
> +# CONFIG_FB_MXC_SEIKO_WVGA_SYNC_PANEL is not set
> +# CONFIG_FB_MXC_SII902X is not set
> +# CONFIG_FB_MXC_CH7026 is not set
> +# CONFIG_FB_MXC_TVOUT_CH7024 is not set
> +# CONFIG_FB_MXC_ASYNC_PANEL is not set
> +CONFIG_FB_MXC_EINK_PANEL=y
> +# CONFIG_FB_MXC_EINK_AUTO_UPDATE_MODE is not set
> +# CONFIG_FB_MXC_SIPIX_PANEL is not set
> +# CONFIG_FB_MXC_ELCDIF_FB is not set
> +CONFIG_FB_MXC_HDMI=y
> +
> +#
> +# Console display driver support
> +#
> +CONFIG_DUMMY_CONSOLE=y
> +CONFIG_FRAMEBUFFER_CONSOLE=y
> +# CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set
> +# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
> +CONFIG_FONTS=y
> +# CONFIG_FONT_8x8 is not set
> +CONFIG_FONT_8x16=y
> +# CONFIG_FONT_6x11 is not set
> +# CONFIG_FONT_7x14 is not set
> +# CONFIG_FONT_PEARL_8x8 is not set
> +# CONFIG_FONT_ACORN_8x8 is not set
> +# CONFIG_FONT_MINI_4x6 is not set
> +# CONFIG_FONT_SUN8x16 is not set
> +# CONFIG_FONT_SUN12x22 is not set
> +# CONFIG_FONT_10x18 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=y
> +# CONFIG_SND_DUMMY is not set
> +# CONFIG_SND_ALOOP is not set
> +# CONFIG_SND_MTPAV is not set
> +# CONFIG_SND_SERIAL_U16550 is not set
> +# CONFIG_SND_MPU401 is not set
> +CONFIG_SND_ARM=y
> +# CONFIG_SND_ARMAACI is not set
> +CONFIG_SND_SPI=y
> +CONFIG_SND_USB=y
> +CONFIG_SND_USB_AUDIO=y
> +# CONFIG_SND_USB_UA101 is not set
> +# CONFIG_SND_USB_CAIAQ is not set
> +# CONFIG_SND_USB_6FIRE is not set
> +CONFIG_SND_SOC=y
> +# CONFIG_SND_SOC_CACHE_LZO is not set
> +CONFIG_SND_SOC_AC97_BUS=y
> +CONFIG_SND_IMX_SOC=y
> +CONFIG_SND_MXC_SOC_MX2=y
> +CONFIG_SND_MXC_SOC_SPDIF_DAI=y
> +CONFIG_SND_SOC_IMX_SGTL5000=y
> +# CONFIG_SND_SOC_IMX_WM8958 is not set
> +CONFIG_SND_SOC_IMX_WM8962=y
> +CONFIG_SND_SOC_IMX_CS42888=y
> +# CONFIG_SND_SOC_IMX_SI4763 is not set
> +CONFIG_SND_SOC_IMX_SPDIF=y
> +CONFIG_SND_SOC_IMX_HDMI=y
> +CONFIG_SND_SOC_I2C_AND_SPI=y
> +# CONFIG_SND_SOC_ALL_CODECS is not set
> +CONFIG_SND_SOC_MXC_HDMI=y
> +CONFIG_SND_SOC_MXC_SPDIF=y
> +CONFIG_SND_SOC_SGTL5000=y
> +CONFIG_SND_SOC_CS42888=y
> +CONFIG_SND_SOC_WM8962=y
> +# CONFIG_SOUND_PRIME is not set
> +CONFIG_AC97_BUS=y
> +CONFIG_HID_SUPPORT=y
> +CONFIG_HID=y
> +CONFIG_HIDRAW=y
> +
> +#
> +# 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=m
> +# CONFIG_HID_ACRUX is not set
> +CONFIG_HID_APPLE=m
> +CONFIG_HID_BELKIN=m
> +CONFIG_HID_CHERRY=m
> +CONFIG_HID_CHICONY=m
> +# CONFIG_HID_PRODIKEYS is not set
> +CONFIG_HID_CYPRESS=m
> +# CONFIG_HID_DRAGONRISE is not set
> +# CONFIG_HID_EMS_FF is not set
> +# CONFIG_HID_ELECOM is not set
> +CONFIG_HID_EZKEY=m
> +# CONFIG_HID_KEYTOUCH is not set
> +# CONFIG_HID_KYE is not set
> +# CONFIG_HID_UCLOGIC is not set
> +# CONFIG_HID_WALTOP is not set
> +CONFIG_HID_GYRATION=m
> +# CONFIG_HID_TWINHAN is not set
> +# CONFIG_HID_KENSINGTON is not set
> +# CONFIG_HID_LCPOWER is not set
> +CONFIG_HID_LOGITECH=m
> +# CONFIG_LOGITECH_FF is not set
> +# CONFIG_LOGIRUMBLEPAD2_FF is not set
> +# CONFIG_LOGIG940_FF is not set
> +# CONFIG_LOGIWII_FF is not set
> +# CONFIG_HID_MAGICMOUSE is not set
> +CONFIG_HID_MICROSOFT=m
> +CONFIG_HID_MONTEREY=m
> +# CONFIG_HID_MULTITOUCH is not set
> +# CONFIG_HID_NTRIG is not set
> +# CONFIG_HID_ORTEK is not set
> +CONFIG_HID_PANTHERLORD=m
> +# CONFIG_PANTHERLORD_FF is not set
> +CONFIG_HID_PETALYNX=m
> +# CONFIG_HID_PICOLCD is not set
> +# CONFIG_HID_QUANTA is not set
> +# CONFIG_HID_ROCCAT is not set
> +# CONFIG_HID_ROCCAT_ARVO is not set
> +# CONFIG_HID_ROCCAT_KONE is not set
> +# CONFIG_HID_ROCCAT_KONEPLUS is not set
> +# CONFIG_HID_ROCCAT_KOVAPLUS is not set
> +# CONFIG_HID_ROCCAT_PYRA is not set
> +CONFIG_HID_SAMSUNG=m
> +CONFIG_HID_SONY=m
> +CONFIG_HID_SUNPLUS=m
> +# 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_HID_ZYDACRON is not set
> +CONFIG_USB_SUPPORT=y
> +CONFIG_USB_ARCH_HAS_HCD=y
> +# CONFIG_USB_ARCH_HAS_OHCI is not set
> +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 is not set
> +# 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_ARC=y
> +CONFIG_USB_EHCI_ARC_OTG=y
> +# CONFIG_USB_EHCI_ARC_HSIC is not set
> +# CONFIG_USB_STATIC_IRAM is not set
> +CONFIG_USB_EHCI_ROOT_HUB_TT=y
> +CONFIG_USB_EHCI_TT_NEWSCHED=y
> +# CONFIG_USB_EHCI_MXC is not set
> +# 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_SL811_HCD is not set
> +# CONFIG_USB_R8A66597_HCD is not set
> +# CONFIG_USB_HWA_HCD is not set
> +# CONFIG_USB_MUSB_HDRC 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_REALTEK 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_STORAGE_ENE_UB6250 is not set
> +# CONFIG_USB_UAS 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_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_YUREX is not set
> +CONFIG_USB_GADGET=y
> +# 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_ARC=y
> +# CONFIG_IMX_USB_CHARGER is not set
> +CONFIG_USB_ARC=y
> +# CONFIG_USB_GADGET_FSL_USB2 is not set
> +# CONFIG_USB_GADGET_FUSB300 is not set
> +# CONFIG_USB_GADGET_R8A66597 is not set
> +# CONFIG_USB_GADGET_PXA_U2O is not set
> +# CONFIG_USB_GADGET_M66592 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=m
> +CONFIG_USB_ETH=m
> +CONFIG_USB_ETH_RNDIS=y
> +# CONFIG_USB_ETH_EEM is not set
> +# CONFIG_USB_G_NCM is not set
> +# CONFIG_USB_GADGETFS is not set
> +# CONFIG_USB_FUNCTIONFS is not set
> +CONFIG_USB_FILE_STORAGE=m
> +# CONFIG_FSL_UTP is not set
> +# CONFIG_USB_FILE_STORAGE_TEST is not set
> +# CONFIG_USB_MASS_STORAGE is not set
> +CONFIG_USB_G_SERIAL=m
> +# CONFIG_USB_MIDI_GADGET is not set
> +# CONFIG_USB_G_PRINTER is not set
> +# CONFIG_USB_CDC_COMPOSITE is not set
> +# CONFIG_USB_G_MULTI is not set
> +# CONFIG_USB_G_HID is not set
> +# CONFIG_USB_G_DBGP is not set
> +# CONFIG_USB_G_WEBCAM is not set
> +
> +#
> +# OTG and related infrastructure
> +#
> +CONFIG_USB_OTG_UTILS=y
> +# CONFIG_USB_GPIO_VBUS is not set
> +# CONFIG_USB_ULPI is not set
> +# CONFIG_NOP_USB_XCEIV is not set
> +CONFIG_MXC_OTG=y
> +CONFIG_MMC=y
> +# CONFIG_MMC_DEBUG is not set
> +CONFIG_MMC_UNSAFE_RESUME=y
> +# CONFIG_MMC_CLKGATE is not set
> +
> +#
> +# MMC/SD/SDIO Card Drivers
> +#
> +CONFIG_MMC_BLOCK=y
> +CONFIG_MMC_BLOCK_MINORS=8
> +CONFIG_MMC_BLOCK_BOUNCE=y
> +# CONFIG_SDIO_UART is not set
> +# CONFIG_MMC_TEST is not set
> +
> +#
> +# MMC/SD/SDIO Host Controller Drivers
> +#
> +# CONFIG_MMC_ARMMMCI is not set
> +CONFIG_MMC_SDHCI=y
> +CONFIG_MMC_SDHCI_IO_ACCESSORS=y
> +CONFIG_MMC_SDHCI_PLTFM=y
> +CONFIG_MMC_SDHCI_ESDHC_IMX=y
> +# CONFIG_MMC_DW is not set
> +# CONFIG_MMC_VUB300 is not set
> +# CONFIG_MMC_USHC is not set
> +# CONFIG_MEMSTICK is not set
> +CONFIG_NEW_LEDS=y
> +CONFIG_LEDS_CLASS=y
> +
> +#
> +# LED drivers
> +#
> +# CONFIG_LEDS_LM3530 is not set
> +# CONFIG_LEDS_PCA9532 is not set
> +CONFIG_LEDS_GPIO=y
> +CONFIG_LEDS_GPIO_PLATFORM=y
> +# CONFIG_LEDS_LP3944 is not set
> +# CONFIG_LEDS_LP5521 is not set
> +# CONFIG_LEDS_LP5523 is not set
> +# CONFIG_LEDS_PCA955X is not set
> +# CONFIG_LEDS_DAC124S085 is not set
> +# CONFIG_LEDS_PWM is not set
> +# CONFIG_LEDS_REGULATOR is not set
> +# CONFIG_LEDS_BD2802 is not set
> +# CONFIG_LEDS_LT3593 is not set
> +CONFIG_LEDS_TRIGGERS=y
> +
> +#
> +# LED Triggers
> +#
> +# CONFIG_LEDS_TRIGGER_TIMER is not set
> +# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set
> +# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set
> +CONFIG_LEDS_TRIGGER_GPIO=y
> +CONFIG_LEDS_TRIGGER_DEFAULT_ON=y
> +
> +#
> +# iptables trigger is under Netfilter config (LED target)
> +#
> +
> +#
> +# LED Triggers
> +#
> +# CONFIG_NFC_DEVICES 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=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_DS3232 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_ISL12022 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_BQ32K 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
> +# CONFIG_RTC_DRV_EM3027 is not set
> +# CONFIG_RTC_DRV_RV3029C2 is not set
> +
> +#
> +# SPI RTC drivers
> +#
> +# CONFIG_RTC_DRV_M41T93 is not set
> +# CONFIG_RTC_DRV_M41T94 is not set
> +# CONFIG_RTC_DRV_DS1305 is not set
> +# CONFIG_RTC_DRV_DS1390 is not set
> +# CONFIG_RTC_DRV_MAX6902 is not set
> +# CONFIG_RTC_DRV_R9701 is not set
> +# CONFIG_RTC_DRV_RS5C348 is not set
> +# CONFIG_RTC_DRV_DS3234 is not set
> +# CONFIG_RTC_DRV_PCF2123 is not set
> +
> +#
> +# 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_MXC is not set
> +# CONFIG_RTC_DRV_MXC_V2 is not set
> +CONFIG_RTC_DRV_SNVS=y
> +# 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_RTC_DRV_PL030 is not set
> +# CONFIG_RTC_DRV_PL031 is not set
> +CONFIG_DMADEVICES=y
> +# CONFIG_DMADEVICES_DEBUG is not set
> +
> +#
> +# DMA Devices
> +#
> +# CONFIG_AMBA_PL08X is not set
> +# CONFIG_DW_DMAC is not set
> +CONFIG_MXC_PXP_V2=y
> +CONFIG_MXC_PXP_CLIENT_DEVICE=y
> +# CONFIG_TIMB_DMA is not set
> +CONFIG_IMX_SDMA=y
> +CONFIG_MXS_DMA=y
> +CONFIG_DMA_ENGINE=y
> +
> +#
> +# DMA Clients
> +#
> +# CONFIG_NET_DMA is not set
> +# CONFIG_ASYNC_TX_DMA is not set
> +# CONFIG_DMATEST is not set
> +# CONFIG_AUXDISPLAY is not set
> +# CONFIG_UIO is not set
> +# CONFIG_STAGING is not set
> +CONFIG_CLKDEV_LOOKUP=y
> +CONFIG_CLKSRC_MMIO=y
> +
> +#
> +# MXC support drivers
> +#
> +CONFIG_MXC_IPU=y
> +CONFIG_MXC_IPU_V3=y
> +CONFIG_MXC_IPU_V3H=y
> +
> +#
> +# MXC SSI support
> +#
> +# CONFIG_MXC_SSI is not set
> +
> +#
> +# MXC Digital Audio Multiplexer support
> +#
> +# CONFIG_MXC_DAM is not set
> +
> +#
> +# MXC PMIC support
> +#
> +# CONFIG_MXC_PMIC_MC13783 is not set
> +# CONFIG_MXC_PMIC_MC13892 is not set
> +# CONFIG_MXC_PMIC_MC34704 is not set
> +# CONFIG_MXC_PMIC_MC9SDZ60 is not set
> +# CONFIG_MXC_PMIC_MC9S08DZ60 is not set
> +
> +#
> +# MXC Security Drivers
> +#
> +# CONFIG_MXC_SECURITY_SCC is not set
> +# CONFIG_MXC_SECURITY_RNG is not set
> +
> +#
> +# MXC MPEG4 Encoder Kernel module support
> +#
> +# CONFIG_MXC_HMP4E is not set
> +
> +#
> +# MXC HARDWARE EVENT
> +#
> +# CONFIG_MXC_HWEVENT is not set
> +
> +#
> +# MXC VPU(Video Processing Unit) support
> +#
> +CONFIG_MXC_VPU=y
> +# CONFIG_MXC_VPU_DEBUG is not set
> +# CONFIG_MX6_VPU_352M is not set
> +
> +#
> +# MXC Asynchronous Sample Rate Converter support
> +#
> +CONFIG_MXC_ASRC=y
> +
> +#
> +# MXC Bluetooth support
> +#
> +
> +#
> +# Broadcom GPS ioctrl support
> +#
> +
> +#
> +# MXC Media Local Bus Driver
> +#
> +CONFIG_MXC_MLB=y
> +CONFIG_MXC_MLB150=m
> +
> +#
> +# i.MX ADC support
> +#
> +# CONFIG_IMX_ADC is not set
> +
> +#
> +# MXC Vivante GPU support
> +#
> +CONFIG_MXC_GPU_VIV=y
> +
> +#
> +# ANATOP_THERMAL
> +#
> +CONFIG_ANATOP_THERMAL=y
> +
> +#
> +# MXC MIPI Support
> +#
> +CONFIG_MXC_MIPI_CSI2=y
> +
> +#
> +# MXC HDMI CEC (Consumer Electronics Control) support
> +#
> +# CONFIG_MXC_HDMI_CEC is not set
> +
> +#
> +# File systems
> +#
> +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=y
> +# CONFIG_EXT3_FS_POSIX_ACL is not set
> +# CONFIG_EXT3_FS_SECURITY is not set
> +CONFIG_EXT4_FS=y
> +CONFIG_EXT4_FS_XATTR=y
> +# CONFIG_EXT4_FS_POSIX_ACL is not set
> +# CONFIG_EXT4_FS_SECURITY is not set
> +# CONFIG_EXT4_DEBUG is not set
> +CONFIG_JBD=y
> +# CONFIG_JBD_DEBUG is not set
> +CONFIG_JBD2=y
> +# CONFIG_JBD2_DEBUG is not set
> +CONFIG_FS_MBCACHE=y
> +# CONFIG_REISERFS_FS is not set
> +# CONFIG_JFS_FS is not set
> +# CONFIG_XFS_FS is not set
> +# CONFIG_GFS2_FS is not set
> +# CONFIG_BTRFS_FS is not set
> +# CONFIG_NILFS2_FS is not set
> +# CONFIG_FS_POSIX_ACL is not set
> +CONFIG_FILE_LOCKING=y
> +CONFIG_FSNOTIFY=y
> +CONFIG_DNOTIFY=y
> +CONFIG_INOTIFY_USER=y
> +# CONFIG_FANOTIFY is not set
> +# CONFIG_QUOTA is not set
> +# CONFIG_QUOTACTL is not set
> +CONFIG_AUTOFS4_FS=m
> +# 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_TMPFS_XATTR 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_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_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_LOGFS is not set
> +CONFIG_CRAMFS=y
> +# 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_PSTORE 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 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_CEPH_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=y
> +# 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=m
> +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=m
> +
> +#
> +# Kernel hacking
> +#
> +# CONFIG_PRINTK_TIME is not set
> +CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4
> +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_SECTION_MISMATCH is not set
> +# CONFIG_DEBUG_KERNEL is not set
> +# CONFIG_HARDLOCKUP_DETECTOR is not set
> +# CONFIG_SLUB_DEBUG_ON is not set
> +# CONFIG_SLUB_STATS is not set
> +# CONFIG_SPARSE_RCU_POINTER is not set
> +CONFIG_DEBUG_BUGVERBOSE=y
> +# CONFIG_DEBUG_MEMORY_INIT is not set
> +CONFIG_RCU_CPU_STALL_TIMEOUT=60
> +CONFIG_RCU_CPU_STALL_VERBOSE=y
> +# CONFIG_LKDTM is not set
> +CONFIG_SYSCTL_SYSCALL_CHECK=y
> +CONFIG_HAVE_FUNCTION_TRACER=y
> +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
> +CONFIG_HAVE_DYNAMIC_FTRACE=y
> +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
> +CONFIG_HAVE_C_RECORDMCOUNT=y
> +CONFIG_TRACING_SUPPORT=y
> +# CONFIG_FTRACE is not set
> +# CONFIG_DYNAMIC_DEBUG is not set
> +# CONFIG_DMA_API_DEBUG is not set
> +# CONFIG_ATOMIC64_SELFTEST is not set
> +# CONFIG_SAMPLES is not set
> +CONFIG_HAVE_ARCH_KGDB=y
> +# CONFIG_TEST_KSTRTOX is not set
> +# CONFIG_STRICT_DEVMEM is not set
> +CONFIG_ARM_UNWIND=y
> +# CONFIG_DEBUG_USER is not set
> +CONFIG_OC_ETM=y
> +
> +#
> +# Security options
> +#
> +# CONFIG_KEYS is not set
> +# CONFIG_SECURITY_DMESG_RESTRICT is not set
> +# CONFIG_SECURITY is not set
> +# CONFIG_SECURITYFS is not set
> +CONFIG_DEFAULT_SECURITY_DAC=y
> +CONFIG_DEFAULT_SECURITY=""
> +CONFIG_CRYPTO=y
> +
> +#
> +# Crypto core or helper
> +#
> +CONFIG_CRYPTO_ALGAPI=y
> +CONFIG_CRYPTO_ALGAPI2=y
> +CONFIG_CRYPTO_AEAD=y
> +CONFIG_CRYPTO_AEAD2=y
> +CONFIG_CRYPTO_BLKCIPHER=y
> +CONFIG_CRYPTO_BLKCIPHER2=y
> +CONFIG_CRYPTO_HASH=y
> +CONFIG_CRYPTO_HASH2=y
> +CONFIG_CRYPTO_RNG=y
> +CONFIG_CRYPTO_RNG2=y
> +CONFIG_CRYPTO_PCOMP2=y
> +CONFIG_CRYPTO_MANAGER=y
> +CONFIG_CRYPTO_MANAGER2=y
> +# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set
> +CONFIG_CRYPTO_GF128MUL=y
> +# CONFIG_CRYPTO_NULL is not set
> +# CONFIG_CRYPTO_PCRYPT is not set
> +CONFIG_CRYPTO_WORKQUEUE=y
> +# CONFIG_CRYPTO_CRYPTD is not set
> +CONFIG_CRYPTO_AUTHENC=y
> +CONFIG_CRYPTO_TEST=m
> +# CONFIG_CRYPTO_CRYPTODEV is not set
> +
> +#
> +# Authenticated Encryption with Associated Data
> +#
> +CONFIG_CRYPTO_CCM=y
> +CONFIG_CRYPTO_GCM=y
> +CONFIG_CRYPTO_SEQIV=y
> +
> +#
> +# Block modes
> +#
> +CONFIG_CRYPTO_CBC=y
> +CONFIG_CRYPTO_CTR=y
> +CONFIG_CRYPTO_CTS=y
> +CONFIG_CRYPTO_ECB=y
> +CONFIG_CRYPTO_LRW=y
> +CONFIG_CRYPTO_PCBC=y
> +CONFIG_CRYPTO_XTS=y
> +
> +#
> +# Hash modes
> +#
> +# CONFIG_CRYPTO_HMAC is not set
> +# CONFIG_CRYPTO_XCBC is not set
> +# CONFIG_CRYPTO_VMAC is not set
> +
> +#
> +# Digest
> +#
> +# CONFIG_CRYPTO_CRC32C is not set
> +CONFIG_CRYPTO_GHASH=y
> +# CONFIG_CRYPTO_MD4 is not set
> +# CONFIG_CRYPTO_MD5 is not set
> +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 is not set
> +# CONFIG_CRYPTO_USER_API_HASH is not set
> +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set
> +CONFIG_CRYPTO_HW=y
> +CONFIG_CRYPTO_DEV_FSL_CAAM=y
> +CONFIG_CRYPTO_DEV_FSL_CAAM_RINGSIZE=9
> +CONFIG_CRYPTO_DEV_FSL_CAAM_INTC=y
> +CONFIG_CRYPTO_DEV_FSL_CAAM_INTC_COUNT_THLD=255
> +CONFIG_CRYPTO_DEV_FSL_CAAM_INTC_TIME_THLD=2048
> +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API=y
> +CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API=y
> +CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_API=y
> +# CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_TEST is not set
> +CONFIG_CRYPTO_DEV_FSL_CAAM_SM=y
> +CONFIG_CRYPTO_DEV_FSL_CAAM_SM_SLOTSIZE=7
> +CONFIG_CRYPTO_DEV_FSL_CAAM_SM_TEST=y
> +CONFIG_CRYPTO_DEV_FSL_CAAM_SECVIO=y
> +# CONFIG_BINARY_PRINTF is not set
> +
> +#
> +# Library routines
> +#
> +CONFIG_BITREVERSE=y
> +CONFIG_RATIONAL=y
> +CONFIG_CRC_CCITT=m
> +CONFIG_CRC16=y
> +# CONFIG_CRC_T10DIF is not set
> +# CONFIG_CRC_ITU_T is not set
> +CONFIG_CRC32=y
> +# CONFIG_CRC7 is not set
> +# CONFIG_LIBCRC32C is not set
> +CONFIG_ZLIB_INFLATE=y
> +CONFIG_ZLIB_DEFLATE=y
> +CONFIG_LZO_COMPRESS=y
> +CONFIG_LZO_DECOMPRESS=y
> +# CONFIG_XZ_DEC is not set
> +# CONFIG_XZ_DEC_BCJ is not set
> +CONFIG_GENERIC_ALLOCATOR=y
> +CONFIG_HAS_IOMEM=y
> +CONFIG_HAS_IOPORT=y
> +CONFIG_HAS_DMA=y
> +CONFIG_CPU_RMAP=y
> +CONFIG_NLATTR=y
> +# CONFIG_AVERAGE is not set
> diff --git a/recipes-kernel/linux/linux-imx-3.0.35/hummingboard/mxc_hdmi-dont-require-cea-mode.patch b/recipes-kernel/linux/linux-imx-3.0.35/hummingboard/mxc_hdmi-dont-require-cea-mode.patch
> new file mode 100644
> index 0000000..817c1e0
> --- /dev/null
> +++ b/recipes-kernel/linux/linux-imx-3.0.35/hummingboard/mxc_hdmi-dont-require-cea-mode.patch
> @@ -0,0 +1,18 @@
> +diff --git a/drivers/video/mxc_hdmi.c b/drivers/video/mxc_hdmi.c
> +index 544f352..fa67128 100644
> +--- a/drivers/video/mxc_hdmi.c
> ++++ b/drivers/video/mxc_hdmi.c
> +@@ -1804,10 +1804,10 @@ static void mxc_hdmi_edid_rebuild_modelist(struct mxc_hdmi *hdmi)
> + 		 */
> + 		mode = &hdmi->fbi->monspecs.modedb[i];
> +
> +-		if (!(mode->vmode & FB_VMODE_INTERLACED) &&
> +-				(mxc_edid_mode_to_vic(mode) != 0)) {
> ++		if (!(mode->vmode & FB_VMODE_INTERLACED)) {
> ++			int vic = mxc_edid_mode_to_vic(mode);
> +
> +-			dev_dbg(&hdmi->pdev->dev, "Added mode %d:", i);
> ++			dev_info(&hdmi->pdev->dev, "%s: Added mode %d(VIC %u):", __func__, i, vic);
> + 			dev_dbg(&hdmi->pdev->dev,
> + 				"xres = %d, yres = %d, freq = %d, vmode = %d, flag = %d\n",
> + 				hdmi->fbi->monspecs.modedb[i].xres,
> diff --git a/recipes-kernel/linux/linux-imx_3.0.35.bbappend b/recipes-kernel/linux/linux-imx_3.0.35.bbappend
> index dca3b92..c0b4181 100644
> --- a/recipes-kernel/linux/linux-imx_3.0.35.bbappend
> +++ b/recipes-kernel/linux/linux-imx_3.0.35.bbappend
> @@ -1,6 +1,6 @@
>   FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}-${PV}:"
>   
> -PRINC := "${@int(PRINC) + 5}"
> +PRINC := "${@int(PRINC) + 6}"
>   
>   # FIXME: Congatec qmx6 support is based on 3.0.35-4.0.0
>   SRCREV_cgtqmx6 = "535af2fbee4d90ef1e5e75ffb25d8229d7480b32"
> @@ -14,3 +14,24 @@ SRC_URI_cgtqmx6 = "git://git.freescale.com/imx/linux-2.6-imx.git \
>                      file://0006-ENGR00265130-gpu-Correct-section-mismatch-in-gpu-ker.patch \
>                      file://drm-vivante-Add-00-sufix-in-returned-bus-Id.patch \
>                      file://cgtqmx6/0001-Add-linux-support-for-congatec-evaluation-board-qmx6q.patch"
> +
> +# Support for the SolidRun HummingBoard (also known as the Carrier One or C1)
> +FILESEXTRAPATHS_prepend_hummingboard := "${THISDIR}/${PN}-${PV}/hummingboard:"
> +SRCREV_hummingboard = "bdde708ebfde4a8c1d3829578d3f6481a343533a"
> +SRC_URI_hummingboard = "git://git.freescale.com/imx/linux-2.6-imx.git;branch=imx_3.0.35_4.1.0 \
> +                        file://drm-vivante-Add-00-sufix-in-returned-bus-Id.patch \
> +                        file://epdc-Rename-mxcfb_epdc_kernel.h-to-mxc_epdc.h.patch \
> +                        file://0001-perf-tools-Fix-getrusage-related-build-failure-on-gl.patch \
> +                        file://0002-ARM-7668-1-fix-memset-related-crashes-caused-by-rece.patch \
> +                        file://0003-ARM-7670-1-fix-the-memset-fix.patch \
> +                        file://0004-ENGR00271136-Fix-build-break-when-CONFIG_CLK_DEBUG-i.patch \
> +                        file://0005-ENGR00271359-Add-Multi-touch-support.patch \
> +                        file://0006-Add-support-for-DVI-monitors.patch \
> +                        file://0007-ARM-mach-mx6-board-mx6q_sabresd-Register-SDHC3-first.patch \
> +                        file://0001-SolidRun-i.MX6-based-carrier-one-base.patch \
> +                        file://0002-SolidRun-Carrier-One-board-support.patch \
> +                        file://0003-LVDS-on-LDB_SEP1.patch \
> +                        file://0004-Added-Carrier-One-C1-to-imx6_defconfig.patch \
> +                        file://mxc_hdmi-dont-require-cea-mode.patch \
> +                        file://defconfig"
> +



More information about the meta-freescale mailing list