This thread has been locked.

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

LCD Jitter (AM3352)

Other Parts Discussed in Thread: AM3352

Hello Everyone,

I have a custom design with 7.0 inch LCD and AM3352. I have a problem with the LCD display, I'm attaching the video of the LCD jitter.

I have been using the SDK 07 for my development and this problem started a week ago when I recompiled my kernel after I made some modifications to the ADC driver as a test. I am attaching the dts and .config files for my design. It seems that the display is shifting to the right and back.

The LCD and touch were running perfectly fine before the modifications to the ADC driver. I don't know how modifications to the ADC driver is causing a display issue. I have tried installing and uninstalling several drivers in the kernel to try to fix this issue, but no luck so far. I've also tried changing the LCD parameters in the dts file to see if that can be the cause of the problem.

Any help is much appreciated. If you guys have additional questions please do let me know.

Thanks once again for your help.

Regards

Santhosh

5023.config.txt

/*
 * Copyright (C) 2014 Aprilaire www.aprilaire.com
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
/dts-v1/;

#include "am33xx.dtsi"

/ {
	model = "AA Home Comfort Control";
	compatible = "AA, HCC", "ti,am33xx";

	cpus {
		cpu@0 {
			cpu0-supply = <&dcdc3_reg>;	/* Refer to the TPS65217 section */
		};
	};

	memory {
		device_type = "memory";
		reg = <0x80000000 0x8000000>;	/* 128 MB */
	};

	am33xx_pinmux: pinmux@44e10800 {
		pinctrl-names = "default";		
	
		/*
		 * The following definitions are for the PIN mux values. Each GPIO pad has a control
		 * register that sets up the mode of operation along with other options (see Control Module)
		 * The offset for the GPIO pads start at 0x800. Each GPIO pin shown below is an offset from 
		 * that address. 
		 * For eg: An address of 0x188 is actually 0x988 ==> conf_i2c0_sda
		 *
		 * Tip: Use the uboot mux.c file for reference
		 */
		
		i2c0_pins: pinmux_i2c0_pins {
			pinctrl-single,pins = <
				0x188 (PIN_INPUT_PULLUP | MUX_MODE0)	/* i2c0_sda.i2c0_sda */
				0x18c (PIN_INPUT_PULLUP | MUX_MODE0)	/* i2c0_scl.i2c0_scl */
			>;
		};

		i2c2_pins: pinmux_i2c2_pins {
			pinctrl-single,pins = <
				0x178 (PIN_INPUT_PULLUP | MUX_MODE3)	/* uart1_ctsn.i2c2_sda */
				0x17C (PIN_INPUT_PULLUP | MUX_MODE3)	/* uart1_rtsn.i2c2_scl */
			>;
		};

		uart0_pins: pinmux_uart0_pins {
			pinctrl-single,pins = <
				0x170 (PIN_INPUT_PULLUP		| MUX_MODE0)	/* uart0_rxd.uart0_rxd */
				0x174 (PIN_OUTPUT_PULLDOWN	| MUX_MODE0)	/* uart0_txd.uart0_txd */
			>;
		};
		
		
		/* 
			The following are definitions for the Equipment Interface Module
		 */
		uart1_pins_default: pinmux_uart1_pins_default {
			pinctrl-single,pins = <
				0x180 (PIN_INPUT_PULLUP | MUX_MODE0)		/* uart1_rxd.uart1_rxd */
				0x184 (PIN_OUTPUT_PULLDOWN | MUX_MODE0) 	/* uart1_txd.uart1_txd */
			>;
		};

		uart1_pins_sleep: pinmux_uart1_pins_sleep {
			pinctrl-single,pins = <
				0x180 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x184 (PIN_INPUT_PULLDOWN | MUX_MODE7)
			>;
		};
		
		/* 
			The following are definitions for the Support Module (GPIO-0 6 is nRE_DE)
		 */
		uart4_pins_default: pinmux_uart4_pins_default {
			pinctrl-single,pins = <
				0x168 (PIN_INPUT_PULLUP | MUX_MODE1)		/* uart0_ctsn.uart4_rxd */
				0x16c (PIN_OUTPUT_PULLDOWN | MUX_MODE1) 	/* uart0_rtsn.uart4_txd */
				0x160 (PIN_INPUT_PULLDOWN | MUX_MODE7)		/* spi0_cs1.gpio0_6 */
			>;
		};

		uart4_pins_sleep: pinmux_uart4_pins_sleep {
			pinctrl-single,pins = <
				0x180 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x184 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x160 (PIN_INPUT_PULLDOWN | MUX_MODE7)
			>;
		};

		
		/*
			The following are the NAND Inteface signals (Standard no change)
		*/
		nandflash_pins_default: nandflash_pins_default {
			pinctrl-single,pins = <
				0x0 (PIN_INPUT_PULLUP | MUX_MODE0)	/* gpmc_ad0.gpmc_ad0 */
				0x4 (PIN_INPUT_PULLUP | MUX_MODE0)	/* gpmc_ad1.gpmc_ad1 */
				0x8 (PIN_INPUT_PULLUP | MUX_MODE0)	/* gpmc_ad2.gpmc_ad2 */
				0xc (PIN_INPUT_PULLUP | MUX_MODE0)	/* gpmc_ad3.gpmc_ad3 */
				0x10 (PIN_INPUT_PULLUP | MUX_MODE0)	/* gpmc_ad4.gpmc_ad4 */
				0x14 (PIN_INPUT_PULLUP | MUX_MODE0)	/* gpmc_ad5.gpmc_ad5 */
				0x18 (PIN_INPUT_PULLUP | MUX_MODE0)	/* gpmc_ad6.gpmc_ad6 */
				0x1c (PIN_INPUT_PULLUP | MUX_MODE0)	/* gpmc_ad7.gpmc_ad7 */
				0x70 (PIN_INPUT_PULLUP | MUX_MODE0)	/* gpmc_wait0.gpmc_wait0 */
				0x74 (PIN_INPUT_PULLUP | MUX_MODE7)	/* gpmc_wpn.gpio0_30 */
				0x7c (PIN_OUTPUT | MUX_MODE0)		/* gpmc_csn0.gpmc_csn0  */
				0x90 (PIN_OUTPUT | MUX_MODE0)		/* gpmc_advn_ale.gpmc_advn_ale */
				0x94 (PIN_OUTPUT | MUX_MODE0)		/* gpmc_oen_ren.gpmc_oen_ren */
				0x98 (PIN_OUTPUT | MUX_MODE0)		/* gpmc_wen.gpmc_wen */
				0x9c (PIN_OUTPUT | MUX_MODE0)		/* gpmc_be0n_cle.gpmc_be0n_cle */
			>;
		};

		nandflash_pins_sleep: nandflash_pins_sleep {
			pinctrl-single,pins = <
				0x0 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x4 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x8 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0xc (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x10 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x14 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x18 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x1c (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x70 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x74 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x7c (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x90 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x94 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x98 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x9c (PIN_INPUT_PULLDOWN | MUX_MODE7)
			>;
		};
		
		/*
			The following definitions are for the LCD Backlight
		*/
		ecap0_pins_default: backlight_pins {
			pinctrl-single,pins = <
				0x164 (PIN_OUTPUT_PULLDOWN | MUX_MODE0)	/* eCAP0_in_PWM0_out.eCAP0_in_PWM0_out */
			>;
		};

		ecap0_pins_sleep: ecap0_pins_sleep {
			pinctrl-single,pins = <
				0x164  (PULL_DISABLE | MUX_MODE7)		/* eCAP0_in_PWM0_out.eCAP0_in_PWM0_out */
			>;
		};
		
		
		/*
			The following definitions are for the MII interface used for wired ethernet
			We use the MII interface without Gigabit Ethernet and only have 1 slave PHY
			NOTE - Removed all pull-up and pull-down from input signals
			
			We are using DP83848I - for this, the following settings are best. There are
			pull-up requirements on the PHY (so make sure these are not conflicting)
		*/
		cpsw_default: cpsw_default {
			pinctrl-single,pins = <
				/* Slave 1 */
				0x110 (PIN_INPUT_PULLUP | MUX_MODE0)	/* mii1_rxerr.mii1_rxerr */
				0x114 (PIN_OUTPUT_PULLDOWN | MUX_MODE0)	/* mii1_txen.mii1_txen */
				0x118 (PIN_INPUT_PULLUP | MUX_MODE0)	/* mii1_rxdv.mii1_rxdv */
				0x11c (PIN_OUTPUT_PULLDOWN | MUX_MODE0)	/* mii1_txd3.mii1_txd3 */
				0x120 (PIN_OUTPUT_PULLDOWN | MUX_MODE0)	/* mii1_txd2.mii1_txd2 */
				0x124 (PIN_OUTPUT_PULLDOWN | MUX_MODE0)	/* mii1_txd1.mii1_txd1 */
				0x128 (PIN_OUTPUT_PULLDOWN | MUX_MODE0)	/* mii1_txd0.mii1_txd0 */
				0x12c (PIN_INPUT_PULLUP | MUX_MODE0)	/* mii1_txclk.mii1_txclk */
				0x130 (PIN_INPUT_PULLUP | MUX_MODE0)	/* mii1_rxclk.mii1_rxclk */
				0x134 (PIN_INPUT_PULLUP | MUX_MODE0)	/* mii1_rxd3.mii1_rxd3 */
				0x138 (PIN_INPUT_PULLUP | MUX_MODE0)	/* mii1_rxd2.mii1_rxd2 */
				0x13c (PIN_INPUT_PULLUP | MUX_MODE0)	/* mii1_rxd1.mii1_rxd1 */
				0x140 (PIN_INPUT_PULLUP | MUX_MODE0)	/* mii1_rxd0.mii1_rxd0 */
			>;
		};

		cpsw_sleep: cpsw_sleep {
			pinctrl-single,pins = <
				/* Slave 1 reset value */
				0x108 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x10c (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x110 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x114 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x118 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x11c (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x120 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x124 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x128 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x12c (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x130 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x134 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x138 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x13c (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x140 (PIN_INPUT_PULLDOWN | MUX_MODE7)
			>;
		};
		
		/*
			NOTE - Removed pull-up from the MDIO as there is a hard pull-up on the board
		*/	
		davinci_mdio_default: davinci_mdio_default {
			pinctrl-single,pins = <
				/* MDIO */
				0x148 (PIN_INPUT | SLEWCTRL_FAST | MUX_MODE0)			/* mdio_data.mdio_data */
				0x14c (PIN_OUTPUT_PULLUP | MUX_MODE0)					/* mdio_clk.mdio_clk */
			>;
		};

		davinci_mdio_sleep: davinci_mdio_sleep {
			pinctrl-single,pins = <
				/* MDIO reset value */
				0x148 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x14c (PIN_INPUT_PULLDOWN | MUX_MODE7)
			>;
		};
		
		/*
			The following definitions are for MMC-0 (We use GPIO_0_29 as
			the card detect). There is no write protect signal. [MODE 7 is normal GPIO]
		*/
		mmc1_pins_default: pinmux_mmc1_pins {
			pinctrl-single,pins = <
				0x0F0 (PIN_INPUT_PULLUP | MUX_MODE0)	/* mmc0_dat3.mmc0_dat3 */
				0x0F4 (PIN_INPUT_PULLUP | MUX_MODE0)	/* mmc0_dat2.mmc0_dat2 */
				0x0F8 (PIN_INPUT_PULLUP | MUX_MODE0)	/* mmc0_dat1.mmc0_dat1 */
				0x0FC (PIN_INPUT_PULLUP | MUX_MODE0)	/* mmc0_dat0.mmc0_dat0 */
				0x100 (PIN_INPUT_PULLUP | MUX_MODE0)	/* mmc0_clk.mmc0_clk */
				0x104 (PIN_INPUT_PULLUP | MUX_MODE0)	/* mmc0_cmd.mmc0_cmd */
				0x144 (PIN_INPUT | MUX_MODE7)			/* rmii1_ref_clk.gpio0_29 */
			>;
		};

		mmc1_pins_sleep: pinmux_mmc1_pins_sleep {
			pinctrl-single,pins = <
				0x0F0 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x0F4 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x0F8 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x0FC (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x100 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x104 (PIN_INPUT_PULLDOWN | MUX_MODE7)
				0x144 (PIN_INPUT_PULLDOWN | MUX_MODE7)
			>;
		};
		
		/*
			The following definitions are for LCD signals (we use 24 bpp)
		*/		
		lcd_pins_default: lcd_pins_default {
			pinctrl-single,pins = <
				0x20 0x01	/* gpmc_ad8.lcd_data16, OUTPUT | MODE1 */
				0x24 0x01	/* gpmc_ad9.lcd_data17, OUTPUT | MODE1 */
				0x28 0x01	/* gpmc_ad10.lcd_data18, OUTPUT | MODE1 */
				0x2c 0x01	/* gpmc_ad11.lcd_data19, OUTPUT | MODE1 */
				0x30 0x01	/* gpmc_ad12.lcd_data20, OUTPUT | MODE1 */
				0x34 0x01	/* gpmc_ad13.lcd_data21, OUTPUT | MODE1 */
				0x38 0x01	/* gpmc_ad14.lcd_data22, OUTPUT | MODE1 */
				0x3c 0x01	/* gpmc_ad15.lcd_data23, OUTPUT | MODE1 */
				0xa0 0x00	/* lcd_data0.lcd_data0, OUTPUT | MODE0 */
				0xa4 0x00	/* lcd_data1.lcd_data1, OUTPUT | MODE0 */
				0xa8 0x00	/* lcd_data2.lcd_data2, OUTPUT | MODE0 */
				0xac 0x00	/* lcd_data3.lcd_data3, OUTPUT | MODE0 */
				0xb0 0x00	/* lcd_data4.lcd_data4, OUTPUT | MODE0 */
				0xb4 0x00	/* lcd_data5.lcd_data5, OUTPUT | MODE0 */
				0xb8 0x00	/* lcd_data6.lcd_data6, OUTPUT | MODE0 */
				0xbc 0x00	/* lcd_data7.lcd_data7, OUTPUT | MODE0 */
				0xc0 0x00	/* lcd_data8.lcd_data8, OUTPUT | MODE0 */
				0xc4 0x00	/* lcd_data9.lcd_data9, OUTPUT | MODE0 */
				0xc8 0x00	/* lcd_data10.lcd_data10, OUTPUT | MODE0 */
				0xcc 0x00	/* lcd_data11.lcd_data11, OUTPUT | MODE0 */
				0xd0 0x00	/* lcd_data12.lcd_data12, OUTPUT | MODE0 */
				0xd4 0x00	/* lcd_data13.lcd_data13, OUTPUT | MODE0 */
				0xd8 0x00	/* lcd_data14.lcd_data14, OUTPUT | MODE0 */
				0xdc 0x00	/* lcd_data15.lcd_data15, OUTPUT | MODE0 */
				0xe0 0x00	/* lcd_vsync.lcd_vsync, OUTPUT | MODE0 */
				0xe4 0x00	/* lcd_hsync.lcd_hsync, OUTPUT | MODE0 */
				0xe8 0x00	/* lcd_pclk.lcd_pclk, OUTPUT | MODE0 */
				0xec 0x00	/* lcd_ac_bias_en.lcd_ac_bias_en, OUTPUT | MODE0 */
			>;
		};

		lcd_pins_sleep: lcd_pins_sleep {
			pinctrl-single,pins = <
				0x20 (PIN_INPUT_PULLDOWN | MUX_MODE7)	/* gpmc_ad8.lcd_data16 */
				0x24 (PIN_INPUT_PULLDOWN | MUX_MODE7)	/* gpmc_ad9.lcd_data17 */
				0x28 (PIN_INPUT_PULLDOWN | MUX_MODE7)	/* gpmc_ad10.lcd_data18 */
				0x2c (PIN_INPUT_PULLDOWN | MUX_MODE7)	/* gpmc_ad11.lcd_data19 */
				0x30 (PIN_INPUT_PULLDOWN | MUX_MODE7)	/* gpmc_ad12.lcd_data20 */
				0x34 (PIN_INPUT_PULLDOWN | MUX_MODE7)	/* gpmc_ad13.lcd_data21 */
				0x38 (PIN_INPUT_PULLDOWN | MUX_MODE7)	/* gpmc_ad14.lcd_data22 */
				0x3c (PIN_INPUT_PULLDOWN | MUX_MODE7)	/* gpmc_ad15.lcd_data23 */
				0xa0 (PULL_DISABLE | MUX_MODE7)		/* lcd_data0.lcd_data0 */
				0xa4 (PULL_DISABLE | MUX_MODE7)		/* lcd_data1.lcd_data1 */
				0xa8 (PULL_DISABLE | MUX_MODE7)		/* lcd_data2.lcd_data2 */
				0xac (PULL_DISABLE | MUX_MODE7)		/* lcd_data3.lcd_data3 */
				0xb0 (PULL_DISABLE | MUX_MODE7)		/* lcd_data4.lcd_data4 */
				0xb4 (PULL_DISABLE | MUX_MODE7)		/* lcd_data5.lcd_data5 */
				0xb8 (PULL_DISABLE | MUX_MODE7)		/* lcd_data6.lcd_data6 */
				0xbc (PULL_DISABLE | MUX_MODE7)		/* lcd_data7.lcd_data7 */
				0xc0 (PULL_DISABLE | MUX_MODE7)		/* lcd_data8.lcd_data8 */
				0xc4 (PULL_DISABLE | MUX_MODE7)		/* lcd_data9.lcd_data9 */
				0xc8 (PULL_DISABLE | MUX_MODE7)		/* lcd_data10.lcd_data10 */
				0xcc (PULL_DISABLE | MUX_MODE7)		/* lcd_data11.lcd_data11 */
				0xd0 (PULL_DISABLE | MUX_MODE7)		/* lcd_data12.lcd_data12 */
				0xd4 (PULL_DISABLE | MUX_MODE7)		/* lcd_data13.lcd_data13 */
				0xd8 (PULL_DISABLE | MUX_MODE7)		/* lcd_data14.lcd_data14 */
				0xdc (PULL_DISABLE | MUX_MODE7)		/* lcd_data15.lcd_data15 */
				0xe0 (PIN_INPUT_PULLDOWN | MUX_MODE7)	/* lcd_vsync.lcd_vsync, OUTPUT | MODE0 */
				0xe4 (PIN_INPUT_PULLDOWN | MUX_MODE7)	/* lcd_hsync.lcd_hsync */
				0xe8 (PIN_INPUT_PULLDOWN | MUX_MODE7)	/* lcd_pclk.lcd_pclk */
				0xec (PIN_INPUT_PULLDOWN | MUX_MODE7)	/* lcd_ac_bias_en.lcd_ac_bias_en */
			>;
		};
	};

	ocp {
		uart0: serial@44e09000 {
			pinctrl-names = "default";
			pinctrl-0 = <&uart0_pins>;

			status = "okay";
		};

		uart1: serial@48022000 {
			pinctrl-names = "default", "sleep";
			pinctrl-0 = <&uart1_pins_default>;
			pinctrl-1 = <&uart1_pins_sleep>;

			status = "okay";
		};
		
		uart4: serial@481a8000 {
			pinctrl-names = "default", "sleep";
			pinctrl-0 = <&uart4_pins_default>;
			pinctrl-1 = <&uart4_pins_sleep>;
			
			/* No extra delay after/before transmissions */
    		rs485-rts-delay = <0 0>;
 
    		/* GPIO-0 pin 6 for data direction */
		    rts-gpio = <&gpio0 6 GPIO_ACTIVE_LOW>;
		    
		    /* RTS should be high for transmit and low for receive */
		    rs485-rts-active-high = <1>;
		    
		    /* Enable RS-485 */ /* TODO - Should be removed later on - not needed for AA version */
    		linux,rs485-enabled-at-boot-time;

			status = "okay";
		};

		i2c0: i2c@44e0b000 {
			pinctrl-names = "default";
			pinctrl-0 = <&i2c0_pins>;
			status = "okay";
			clock-frequency = <400000>;
			
			/* Set OPP100 (1.10V) for VDD core */
			sleep-sequence = /bits/ 8 <
				0x02 0x24 0x0b 0x6d /* Password unlock 1 */
				0x02 0x24 0x10 0x08 /* Set DCDC3 to 1.1V */
				0x02 0x24 0x0b 0x6d /* Password unlock 2 */
				0x02 0x24 0x10 0x08 /* Set DCDC3 to 1.1V */
				0x02 0x24 0x0b 0x6c /* Password unlock 1 */
				0x02 0x24 0x11 0x86 /* Apply DCDC changes */
				0x02 0x24 0x0b 0x6c /* Password unlock 2 */
				0x02 0x24 0x11 0x86 /* Apply DCDC changes */
			>;

			/* Set OPP100 (1.10V) for VDD core */
			wake-sequence = /bits/ 8 <
				0x02 0x24 0x0b 0x6d /* Password unlock 1 */
				0x02 0x24 0x10 0x08 /* Set DCDC3 to 1.1V */
				0x02 0x24 0x0b 0x6d /* Password unlock 2 */
				0x02 0x24 0x10 0x08 /* Set DCDC3 to 1.1V */
				0x02 0x24 0x0b 0x6c /* Password unlock 1 */
				0x02 0x24 0x11 0x86 /* Apply DCDC changes */
				0x02 0x24 0x0b 0x6c /* Password unlock 2 */
				0x02 0x24 0x11 0x86 /* Apply DCDC changes */
			>;

			tps: tps@24 {
				reg = <0x24>;
			};
		};
		
		
		/* 
			The following are the USB settings. We only have 1 USB (0) and 
			is used as a Host
		 */
		musb: usb@47400000 {		/* USB Susbsystem registers */
			status = "okay";

			control@44e10000 {		/* Control Module registers */		
				status = "okay";
			};

			usb-phy@47401300 {		/* USB-0 PHY registers */
				status = "okay";
			};

			usb@47401000 {			/* USB-0 Controller registers */
				status = "okay";
				dr_mode = "host";
			};
			
			dma-controller@07402000  {
				status = "okay";
			};
		};
		
		
		/* 
			The following are the I2C-2 settings. We have 2 devices set-up on the
			I2C-2 bus - SHT21 and RTC PCF8563
		 */
		i2c2: i2c@4819c000 {
			pinctrl-names = "default";
			pinctrl-0 = <&i2c2_pins>;

			status = "okay";
			clock-frequency = <400000>;		
			
			/* Address is 0x80 (but entered as 0x80 >> 1) */
			sht21: sht21@40 {
				compatible = "Sensirion,sht21";
				reg = <0x40>;
			};
			
			/* Address is 0xA2 (but entered as 0xA2 >> 1) */	
			pcf8563: pcf8563@51 {
				compatible = "NXP,pcf8563";
				reg = <0x51>;
			};
		};
		
		
		
		elm: elm@48080000 {
			status = "okay";
		};
		
		
		/* 
			The following are the PWM settings for the LCD Backlight
		 */
		epwmss0: epwmss@48300000 {
			status = "okay";

			ecap0: ecap@48300100 {
				status = "okay";
				pinctrl-names = "default", "sleep";
				pinctrl-0 = <&ecap0_pins_default>;
				pinctrl-1 = <&ecap0_pins_sleep>;
			};
		};
		
		/* 
			The following are the GPMC (NAND) settings. 2GB NAND
			TODO - come back to this later
		 */
		gpmc: gpmc@50000000 {
			status = "okay";
			pinctrl-names = "default", "sleep";
			pinctrl-0 = <&nandflash_pins_default>;
			pinctrl-1 = <&nandflash_pins_sleep>;
			ranges = <0 0 0x08000000 0x10000000>;	/* CS0: NAND, 256 MB */
			nand@0,0 {
				reg = <0 0 0>; /* CS0, offset 0 */
				nand-bus-width = <8>;
				gpmc,device-width = <1>;
				gpmc,sync-clk-ps = <0>;
				gpmc,cs-on-ns = <0>;
				gpmc,cs-rd-off-ns = <44>;
				gpmc,cs-wr-off-ns = <44>;
				gpmc,adv-on-ns = <6>;
				gpmc,adv-rd-off-ns = <34>;
				gpmc,adv-wr-off-ns = <44>;
				gpmc,we-on-ns = <0>;
				gpmc,we-off-ns = <40>;
				gpmc,oe-on-ns = <0>;
				gpmc,oe-off-ns = <54>;
				gpmc,access-ns = <64>;
				gpmc,rd-cycle-ns = <82>;
				gpmc,wr-cycle-ns = <82>;
				gpmc,wait-on-read = "true";
				gpmc,wait-on-write = "true";
				gpmc,bus-turnaround-ns = <0>;
				gpmc,cycle2cycle-delay-ns = <0>;
				gpmc,clk-activation-ns = <0>;
				gpmc,wait-monitoring-ns = <0>;
				gpmc,wr-access-ns = <40>;
				gpmc,wr-data-mux-bus-ns = <0>;
				ti,nand-ecc-opt= "bch8";
				ti,elm-id = <&elm>;
				/* MTD partition table */
		                /* All SPL-* partitions are sized to minimal length
				 * which can be independently programmable. For
				 * NAND flash this is equal to size of erase-block */
				#address-cells = <1>;
				#size-cells = <1>;
				partition@0 {
					label = "NAND.SPL";
					reg = <0x00000000 0x000020000>;
				};
				partition@1 {
					label = "NAND.SPL.backup1";
					reg = <0x00020000 0x00020000>;
				};
				partition@2 {
					label = "NAND.SPL.backup2";
					reg = <0x00040000 0x00020000>;
				};
				partition@3 {
					label = "NAND.SPL.backup3";
					reg = <0x00060000 0x00020000>;
				};
				partition@4 {
					label = "NAND.u-boot-spl-os";
					reg = <0x00080000 0x00040000>;
				};
				partition@5 {
					label = "NAND.u-boot";
					reg = <0x000C0000 0x00100000>;
				};
				partition@6 {
					label = "NAND.u-boot-env";
					reg = <0x001C0000 0x00020000>;
				};
				partition@7 {
					label = "NAND.u-boot-env.backup1";
					reg = <0x001E0000 0x00020000>;
				};
				partition@8 {
					label = "NAND.kernel";
					reg = <0x00200000 0x00800000>;
				};
				partition@9 {
					label = "NAND.file-system";
					reg = <0x00A00000 0x0F600000>;
				};
			};
		};

		lcdc: lcdc@0x4830e000 {		
			pinctrl-names = "default", "sleep";
			pinctrl-0 = <&lcd_pins_default>;
			pinctrl-1 = <&lcd_pins_sleep>;
			status = "okay";
			display-timings {
				800x480p62 {
					clock-frequency = <33000000>;
					hactive 		= <800>;
					vactive 		= <480>;
					hfront-porch	= <35>;
					hback-porch 	= <45>;
					hsync-len 		= <48>;
					vback-porch 	= <23>;
					vfront-porch	= <19>;
					vsync-len 		= <3>;
					hsync-active 	= <1>;
					vsync-active 	= <1>;
				};
			};
		};
	};


	/* 
		The following are used for setting up the Backlight for the LCD
		We use a frequency of 1Khz (period set in ns) and brightness level 0 to 10
	*/
	backlight {
		compatible = "pwm-backlight";
		pwms = <&ecap0 0 1000000 0>;
		brightness-levels = <0 25 51 76 102 127 153 178 204 230 255>;
		default-brightness-level = <7>;
	};
	
		
	/*
		Don't know if these settings are needed
	*/
	panel {
		compatible = "ti,tilcdc,panel";
		status = "okay";
		pinctrl-names = "default";
		pinctrl-0 = <&lcd_pins_default>;
		panel-info {
			ac-bias           = <255>;
			ac-bias-intrpt    = <0>;
			dma-burst-sz      = <16>;
			bpp               = <32>;
			fdd               = <0x80>;
			sync-edge         = <0>;
			sync-ctrl         = <1>;
			raster-order      = <0>;
			fifo-th           = <0>;
		};

		display-timings {
			800x480p62 {
				clock-frequency = <33000000>;
				hactive 		= <800>;
				vactive 		= <480>;
				hfront-porch	= <35>;
				hback-porch 	= <45>;
				hsync-len 		= <48>;
				vback-porch 	= <23>;
				vfront-porch	= <19>;
				vsync-len 		= <3>;
				hsync-active 	= <1>;
				vsync-active 	= <1>;
			};
		};
	};
};

#include "tps65217.dtsi"

/* 
	In our case we use TPS65217A specifically for designed for ZCE package
	So for us, the settings are as follows:
		- DCDC1 is set to 1.8V and will never be changed
		- DCDC2 is set at 3.3V and will never be changed
		- DCDC3 is set at 1.1V and will never be changed
			(NOTE - OPP50 will need change in DDR frequency as well - this is
			 something which we may choose to do later)
		- LDO1 is set at 1.8V and can never be changed
		- LDO2 is set at 3.3V and can never be changed
		- LS1/LDO3 is switched off by U-boot and should remain off
		- LS2/LDO4 is switched off by U-boot and should remain off
		
 */
&tps {
	regulators {
		dcdc1_reg: regulator@0 {
			regulator-name = "vdds_ddr";
			regulator-min-microvolt = <1800000>;
			regulator-max-microvolt = <1800000>;
			regulator-boot-on;
			regulator-always-on;
		};

		dcdc2_reg: regulator@1 {			
			regulator-name = "vdd_peripheral";
			regulator-min-microvolt = <3300000>;
			regulator-max-microvolt = <3300000>;
			regulator-boot-on;
			regulator-always-on;
		};

		dcdc3_reg: regulator@2 {			
			regulator-name = "vdd_core";
			regulator-name = "vdd_mpu";
			regulator-min-microvolt = <1100000>;
			regulator-max-microvolt = <1100000>;
			regulator-boot-on;
			regulator-always-on;
		};

		ldo1_reg: regulator@3 {
			regulator-min-microvolt = <1800000>;
			regulator-max-microvolt = <1800000>;
			regulator-boot-on;
			regulator-always-on;
		};

		ldo2_reg: regulator@4 {
			regulator-min-microvolt = <3300000>;
			regulator-max-microvolt = <3300000>;
			regulator-boot-on;
			regulator-always-on;
		};

		ldo3_reg: regulator@5 {
			regulator-boot-off;
			regulator-always-off;
		};

		ldo4_reg: regulator@6 {
			regulator-boot-off;
			regulator-always-off;
		};
	};
};


/* 
	These definitions are for the wired Ethernet
	Make sure you override number of slaves and the active slave
 */
&mac {
	slaves = <1>;
	pinctrl-names = "default", "sleep";
	pinctrl-0 = <&cpsw_default>;
	pinctrl-1 = <&cpsw_sleep>;	
};

&davinci_mdio {
	pinctrl-names = "default", "sleep";
	pinctrl-0 = <&davinci_mdio_default>;
	pinctrl-1 = <&davinci_mdio_sleep>;
};

/*
	The ethernet phy we use is at address 1 so make sure phy_id is updated.
*/
&cpsw_emac0 {
	phy_id = <&davinci_mdio>, <1>;
	phy-mode = "mii";
};


/* 
	These definitions are for the Touch screen and ADC
 */
&tscadc {
	status = "okay";
	tsc {
		ti,wires = <4>;
		ti,x-plate-resistance = <200>;
		ti,coordinate-readouts = <5>;
		ti,wire-config = <0x00 0x11 0x22 0x33>;
	};

	adc {
		ti,adc-channels = <4 5 6 7>;
	};
};


/* 
	These definitions are for the MMC-0 (SD Card)
	Card detect is GPIO_0_29
 */
&mmc1 {
	status = "okay";
	vmmc-supply = <&dcdc2_reg>;
	bus-width = <4>;
	pinctrl-names = "default", "sleep";
	pinctrl-0 = <&mmc1_pins_default>;
	pinctrl-1 = <&mmc1_pins_sleep>;
	cd-gpios = <&gpio0 29 GPIO_ACTIVE_HIGH>;	
};

  • This issue is documented in the main LCDC wiki page.  Look for the 'jitter/screen wrapping" entry of the Debug section for details on what you can do to eliminate this behavior.

  • Hello Jelliot,


    Thanks a lot for your help - I read through the forum page, and also looked at ddr.c. It seems that TI has included this as a patch in the latest where the value is set to 0x10.

    This is the code in ddr.c

    /**
     * Configure SDRAM
     */
    void config_sdram(const struct emif_regs *regs, int nr)
    {
        __maybe_unused u32 int_config;

        /*
         * Within the EMIF controller there is a register, often at
         * offset 0x54 which has a field named 'PR_OLD_COUNT' that is
         * used to determine when to move the the priority of the oldest
         * command in the FIFO.  The need to use a non default value
         * here is often seen in multimedia situations when you start to
         * see screen jitter, but other situations may also require
         * changes here.  We change from the default value to provide a
         * better general example.
         */
        if (regs->int_config)
            int_config = regs->int_config;
        else
            int_config = 0x00FFFF10;

        if (regs->zq_config) {
            /*
             * A value of 0x2800 for the REF CTRL will give us
             * about 570us for a delay, which will be long enough
             * to configure things.
             */
            writel(0x2800, &emif_reg[nr]->emif_sdram_ref_ctrl);
            writel(regs->zq_config, &emif_reg[nr]->emif_zq_config);
            writel(regs->sdram_config, &cstat->secure_emif_sdram_config);
            writel(regs->sdram_config, &emif_reg[nr]->emif_sdram_config);
            writel(regs->ref_ctrl, &emif_reg[nr]->emif_sdram_ref_ctrl);
            writel(regs->ref_ctrl, &emif_reg[nr]->emif_sdram_ref_ctrl_shdw);
        }
        
    #if defined(CONFIG_AM33XX) || defined(CONFIG_TI81XX)
        /*
         * The INT_CONFIG register on AM335x or PBBPR on TI81XX serves
         * similar purposes to the L3_CONFIG register on OMAP4 and lower
         * (or OCP_CONFIG on OMAP5 and higher).
         */
        writel(int_config, &emif_reg[nr]->emif_l3_config);
    #endif
        writel(regs->ref_ctrl, &emif_reg[nr]->emif_sdram_ref_ctrl);
        writel(regs->ref_ctrl, &emif_reg[nr]->emif_sdram_ref_ctrl_shdw);
        writel(regs->sdram_config, &emif_reg[nr]->emif_sdram_config);
    }

    Should I be trying to set it to something lower?

    Regards

    Santhosh

  • Yes, you will need to decrease it until you stop seeing the jitter.  I was messing with SDK 7.0 on beaglebone black the other day, and at 1080p24 I had to start reducing the counter so that the issue would disappear--the default value will definitely need to be tuned for specific applications.

  • Hello Jelliott,


    Thanks once again for your quick reply. I have tried all values from 0x10 to 0x01 and none of them stopped the jitter. I even tried couple of values above 0x10 (0xFF, 0x80, 0x38).

    All of them give me the same result. Do you have any suggestions and/or pointers for me?


    Thank you

    Regards

    Santhosh

  • It could be a different issue if lowering the counter doesn't solve the issue.  Have you tried doing a devmem2 read after boot to be sure that the count value is being reduced?

  • Hello Jelliott,

    I tried devmem2 command once Linux boots, but I get an error (bus IO error). Does the kernel need anything special to be enabled to allow this command?

    Thanks a lot for your help.

    Santhosh

  • I'm almost certain that it's enabled by default in the SDK.  When I am in front of some hardware, I will test it out.

    Do you have any EVMs on hand?  I would try booting the default images from the SDK and testing it there to make sure you haven't changed some kernel config that could keep it from working.

  • Hello Jelliott,

    My mistake, I forgot the 0x in front of the address and thats why there was a problem. I am able to check the memory of the register properly and it it modified - see the example below:

    devmem2 0x4c000054
    /dev/mem opened.
    Memory mapped at address 0xb6f65000.
    Read at address  0x4C000054 (0xb6f65054): 0x00FFFF02

    Additionally, I compiled the Kernel based on omap2_defconfig that the wiki page suggests. I didn't make any modifications to the .config file. And now the jitters are few and far between, they are not as prominent as the video I posted. Does that indicate anything special?

    Thanks again for your help.

    Regards

    Santhosh

  • That is interesting behavior.  Is there anything you change in the config besides the ADC driver in your custom kernel?  I think you said you have a custom board--have you changed the DDR in any way?

  • Hello Jelliott,


    Here is the history of all the changes:

    1. Created my .config file from tisdk config (not recommended)

    2. Compiled the kernel and it ran fine, everything was good. [I don't know how]

    3. Updated my linux machine to the latest kernel release (my build PC)

    4. Modified the ADC driver for my kernel.

    5. Reloaded the saved .config so that I can get a new kernel with ADC modifications.

    6. The kernel would not compile...and so I had no choice but use omap2 config and redo all the changes. [It is quite possible that I messed it up]

    7. The new kernel works fine, but the LCD has jitters.

    8. No jitters with the old kernel [When I say old, they are both 3.12, but one is with old config and the other is with new config]

    9. I even tried running the omap2 Kernel without any modifications to see if the LCD jitter goes away, and no luck.

    10. I don't think it's a hardware issue because I'm running the two kernels on the same hardware. [I may be wrong]

    The only thing I can think of is the Linux Build Machine update that is different between when I tried compiling the old Kernel and new Kernel. I'm attaching my latest .config file, I am not able to understand what is wrong.

    Thanks a lot for your patience, and help. We have a show on Monday and I'm freaking out :)

    Regards

    Santhosh

    3005.config.txt

  • Santhosh,

    I'm assuming step 1 you created a custom config based on the tisdk config and that worked fine.

    I don't understand why you needed to redo your config in step 6. But at this point you added things to the config to solve your compile issue and from that point on you are seeing issues with your config.

    Step 8 you went back to using your original working config and your no longer seeing jitter issues. Did you also remove the kernel changes you introduced in step 4?

    In step 9 are you saying that your using the unmodified defconfig from within the sdk?


    It looks like something in your config is causing different results. Can you provide a simple diff comparing your working config and non working config? The working config and non working config should be built from the same exact kernel sources and reusing the same dts.

  • Hello Franklin,

    Please see my replies below in blue

    I don't understand why you needed to redo your config in step 6. But at this point you added things to the config to solve your compile issue and from that point on you are seeing issues with your config.

    The only reason I needed to redo the config was because, the Kernel would no longer compile with the old .config. I tried adding somethings to the .config, but it didn't work at all. So I had to go to omap2_defconfig and then modify it to fix the compile issue.

    Step 8 you went back to using your original working config and your no longer seeing jitter issues. Did you also remove the kernel changes you introduced in step 4?

    No, I went back to my original Kernel. This kernel was created with the old config and didn't include any of the changes I had made.

    In step 9 are you saying that your using the unmodified defconfig from within the sdk?

    Yes correct - I thought that my Kernel config is bad and so if I use the stock and/or default Kernel config the jitter will go away. The hardware is described in the dts file, so I don't have to worry much other than some of my peripherals not working - which would be okay at this point.

    It looks like something in your config is causing different results. Can you provide a simple diff comparing your working config and non working config? The working config and non working config should be built from the same exact kernel sources and reusing the same dts.

    Please find attached -

    --- /home/sramani/ti-sdk-am335x-evm-07.00.00.00/board-support/linux-3.12.10-ti2013.12.01/.config
    +++ /home/sramani/ti-sdk-am335x-evm-07.00.00.00/board-support/linux-3.12.10-ti2013.12.01/aa-old-debug.config
    @@ -14,7 +14,6 @@
     CONFIG_ARCH_HAS_BANDGAP=y
     CONFIG_GENERIC_HWEIGHT=y
     CONFIG_GENERIC_CALIBRATE_DELAY=y
    -CONFIG_DMA_NONCOHERENT=y
     CONFIG_NEED_DMA_MAP_STATE=y
     CONFIG_VECTORS_BASE=0xffff0000
     CONFIG_ARM_PATCH_PHYS_VIRT=y
    @@ -98,24 +97,29 @@
     CONFIG_GENERIC_SCHED_CLOCK=y
     # CONFIG_CGROUPS is not set
     # CONFIG_CHECKPOINT_RESTORE is not set
    -# CONFIG_NAMESPACES is not set
    -# CONFIG_UIDGID_STRICT_TYPE_CHECKS is not set
    +CONFIG_NAMESPACES=y
    +CONFIG_UTS_NS=y
    +CONFIG_IPC_NS=y
    +CONFIG_USER_NS=y
    +CONFIG_PID_NS=y
    +CONFIG_NET_NS=y
    +CONFIG_UIDGID_STRICT_TYPE_CHECKS=y
     # CONFIG_SCHED_AUTOGROUP is not set
     # CONFIG_SYSFS_DEPRECATED is not set
     # CONFIG_RELAY is not set
     CONFIG_BLK_DEV_INITRD=y
     CONFIG_INITRAMFS_SOURCE=""
     CONFIG_RD_GZIP=y
    -# CONFIG_RD_BZIP2 is not set
    -# CONFIG_RD_LZMA is not set
    -# CONFIG_RD_XZ is not set
    -# CONFIG_RD_LZO is not set
    -# CONFIG_RD_LZ4 is not set
    +CONFIG_RD_BZIP2=y
    +CONFIG_RD_LZMA=y
    +CONFIG_RD_XZ=y
    +CONFIG_RD_LZO=y
    +CONFIG_RD_LZ4=y
     # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
     CONFIG_SYSCTL=y
     CONFIG_ANON_INODES=y
     CONFIG_HAVE_UID16=y
    -CONFIG_EXPERT=y
    +# CONFIG_EXPERT is not set
     CONFIG_UID16=y
     # CONFIG_SYSCTL_SYSCALL is not set
     CONFIG_KALLSYMS=y
    @@ -131,7 +135,6 @@
     CONFIG_EVENTFD=y
     CONFIG_SHMEM=y
     CONFIG_AIO=y
    -CONFIG_PCI_QUIRKS=y
     # CONFIG_EMBEDDED is not set
     CONFIG_HAVE_PERF_EVENTS=y
     CONFIG_PERF_USE_VMALLOC=y
    @@ -139,20 +142,17 @@
     #
     # Kernel Performance Events And Counters
     #
    -CONFIG_PERF_EVENTS=y
    -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
    +# CONFIG_PERF_EVENTS is not set
     CONFIG_VM_EVENT_COUNTERS=y
     CONFIG_COMPAT_BRK=y
     CONFIG_SLAB=y
     # CONFIG_SLUB is not set
    -# CONFIG_SLOB is not set
     CONFIG_PROFILING=y
     CONFIG_OPROFILE=y
     CONFIG_HAVE_OPROFILE=y
    -CONFIG_KPROBES=y
    -CONFIG_JUMP_LABEL=y
    +# CONFIG_KPROBES is not set
    +# CONFIG_JUMP_LABEL is not set
     # CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set
    -CONFIG_KRETPROBES=y
     CONFIG_HAVE_KPROBES=y
     CONFIG_HAVE_KRETPROBES=y
     CONFIG_HAVE_ARCH_TRACEHOOK=y
    @@ -163,12 +163,12 @@
     CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
     CONFIG_HAVE_CLK=y
     CONFIG_HAVE_DMA_API_DEBUG=y
    -CONFIG_HAVE_HW_BREAKPOINT=y
     CONFIG_HAVE_ARCH_JUMP_LABEL=y
     CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y
     CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
     CONFIG_HAVE_CONTEXT_TRACKING=y
     CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
    +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y
     CONFIG_MODULES_USE_ELF_REL=y
     CONFIG_CLONE_BACKWARDS=y
     CONFIG_OLD_SIGSUSPEND3=y
    @@ -216,7 +216,7 @@
     # CONFIG_ULTRIX_PARTITION is not set
     # CONFIG_SUN_PARTITION is not set
     # CONFIG_KARMA_PARTITION is not set
    -CONFIG_EFI_PARTITION=y
    +# CONFIG_EFI_PARTITION is not set
     # CONFIG_SYSV68_PARTITION is not set
     # CONFIG_CMDLINE_PARTITION is not set
     
    @@ -287,14 +287,12 @@
     #
     # CPU Core family selection
     #
    -CONFIG_ARCH_MULTI_V6=y
    +# CONFIG_ARCH_MULTI_V6 is not set
     CONFIG_ARCH_MULTI_V7=y
     CONFIG_ARCH_MULTI_V6_V7=y
     # CONFIG_ARCH_MULTI_CPU_AUTO is not set
     # CONFIG_ARCH_MVEBU is not set
     # CONFIG_ARCH_BCM is not set
    -# CONFIG_ARCH_BCM2835 is not set
    -# CONFIG_ARCH_CNS3XXX is not set
     # CONFIG_GPIO_PCA953X is not set
     # CONFIG_KEYBOARD_GPIO_POLLED is not set
     # CONFIG_ARCH_HIGHBANK is not set
    @@ -312,40 +310,31 @@
     CONFIG_OMAP_MUX=y
     CONFIG_OMAP_MUX_DEBUG=y
     CONFIG_OMAP_MUX_WARNINGS=y
    -CONFIG_OMAP_32K_TIMER=y
    +# CONFIG_OMAP_32K_TIMER is not set
     # CONFIG_OMAP3_L2_AUX_SECURE_SAVE_RESTORE is not set
     CONFIG_OMAP_DM_TIMER=y
     CONFIG_OMAP_PM_NOOP=y
     CONFIG_MACH_OMAP_GENERIC=y
     CONFIG_ARCH_OMAP=y
    -CONFIG_ARCH_OMAP2=y
     CONFIG_ARCH_OMAP3=y
    -CONFIG_ARCH_OMAP4=y
    -CONFIG_SOC_OMAP5=y
    +# CONFIG_ARCH_OMAP4 is not set
    +# CONFIG_SOC_OMAP5 is not set
     CONFIG_SOC_AM33XX=y
    -CONFIG_SOC_AM43XX=y
    +# CONFIG_SOC_AM43XX is not set
     
     #
     # TI OMAP2/3/4 Specific Features
     #
     CONFIG_ARCH_OMAP2PLUS_TYPICAL=y
     CONFIG_SOC_HAS_OMAP2_SDRC=y
    -CONFIG_SOC_HAS_REALTIME_COUNTER=y
    -CONFIG_SOC_DRA7XX=y
    -
    -#
    -# OMAP Core Type
    -#
    -CONFIG_SOC_OMAP2420=y
    -CONFIG_SOC_OMAP2430=y
    -CONFIG_SOC_OMAP3430=y
    +# CONFIG_SOC_DRA7XX is not set
    +# CONFIG_SOC_OMAP3430 is not set
     CONFIG_SOC_TI81XX=y
    +CONFIG_OMAP_PACKAGE_CBB=y
     
     #
     # OMAP Board Type
     #
    -# CONFIG_MACH_OMAP_H4 is not set
    -# CONFIG_MACH_OMAP_2430SDP is not set
     # CONFIG_MACH_OMAP3_BEAGLE is not set
     # CONFIG_MACH_DEVKIT8000 is not set
     # CONFIG_MACH_OMAP_LDP is not set
    @@ -356,9 +345,8 @@
     # CONFIG_MACH_OMAP3517EVM is not set
     # CONFIG_MACH_CRANEBOARD is not set
     # CONFIG_MACH_OMAP3_PANDORA is not set
    -# CONFIG_MACH_TOUCHBOOK is not set
    +CONFIG_MACH_TOUCHBOOK=y
     # CONFIG_MACH_OMAP_3430SDP is not set
    -# CONFIG_MACH_NOKIA_N8X0 is not set
     # CONFIG_MACH_NOKIA_RM680 is not set
     # CONFIG_MACH_NOKIA_RX51 is not set
     # CONFIG_MACH_OMAP_ZOOM2 is not set
    @@ -373,8 +361,6 @@
     # CONFIG_MACH_TI8148EVM is not set
     # CONFIG_OMAP3_EMU is not set
     # CONFIG_OMAP3_SDRC_AC_TIMING is not set
    -# CONFIG_OMAP4_ERRATA_I688 is not set
    -# CONFIG_ARCH_PICOXCELL is not set
     # CONFIG_ARCH_ROCKCHIP is not set
     # CONFIG_ARCH_SOCFPGA is not set
     # CONFIG_PLAT_SPEAR is not set
    @@ -386,106 +372,73 @@
     # CONFIG_ARCH_U8500 is not set
     # CONFIG_ARCH_VEXPRESS is not set
     # CONFIG_ARCH_VIRT is not set
    -# CONFIG_ARCH_WM8750 is not set
     # CONFIG_ARCH_WM8850 is not set
     # CONFIG_ARCH_ZYNQ is not set
     
     #
     # Processor Type
     #
    -CONFIG_CPU_V6=y
     CONFIG_CPU_V7=y
    -CONFIG_CPU_32v6=y
     CONFIG_CPU_32v6K=y
     CONFIG_CPU_32v7=y
    -CONFIG_CPU_ABRT_EV6=y
     CONFIG_CPU_ABRT_EV7=y
    -CONFIG_CPU_PABRT_V6=y
     CONFIG_CPU_PABRT_V7=y
    -CONFIG_CPU_CACHE_V6=y
     CONFIG_CPU_CACHE_V7=y
     CONFIG_CPU_CACHE_VIPT=y
     CONFIG_CPU_COPY_V6=y
    -CONFIG_CPU_TLB_V6=y
     CONFIG_CPU_TLB_V7=y
     CONFIG_CPU_HAS_ASID=y
     CONFIG_CPU_CP15=y
     CONFIG_CPU_CP15_MMU=y
    -CONFIG_CPU_USE_DOMAINS=y
     
     #
     # Processor Features
     #
    +# CONFIG_ARM_LPAE is not set
     # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set
     CONFIG_ARM_THUMB=y
     CONFIG_ARM_THUMBEE=y
     CONFIG_ARM_VIRT_EXT=y
    +# 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_KUSER_HELPERS=y
    -CONFIG_OUTER_CACHE=y
    -CONFIG_OUTER_CACHE_SYNC=y
    -CONFIG_MIGHT_HAVE_CACHE_L2X0=y
    -CONFIG_CACHE_L2X0=y
    +# CONFIG_CACHE_L2X0 is not set
     CONFIG_ARM_L1_CACHE_SHIFT_6=y
     CONFIG_ARM_L1_CACHE_SHIFT=6
     CONFIG_ARM_DMA_MEM_BUFFERABLE=y
     CONFIG_ARM_NR_BANKS=8
     CONFIG_MULTI_IRQ_HANDLER=y
    -# CONFIG_ARM_ERRATA_326103 is not set
    -CONFIG_ARM_ERRATA_411920=y
     # CONFIG_ARM_ERRATA_430973 is not set
     # CONFIG_ARM_ERRATA_458693 is not set
     # CONFIG_ARM_ERRATA_460075 is not set
    -CONFIG_PL310_ERRATA_588369=y
    -CONFIG_ARM_ERRATA_720789=y
    -CONFIG_PL310_ERRATA_727915=y
    +# CONFIG_ARM_ERRATA_720789 is not set
     # CONFIG_ARM_ERRATA_743622 is not set
     # CONFIG_ARM_ERRATA_751472 is not set
    -CONFIG_ARM_ERRATA_754322=y
    -# CONFIG_ARM_ERRATA_364296 is not set
    -# CONFIG_PL310_ERRATA_769419 is not set
    -CONFIG_ARM_ERRATA_775420=y
    +# CONFIG_ARM_ERRATA_754322 is not set
    +# CONFIG_ARM_ERRATA_775420 is not set
     # CONFIG_ARM_ERRATA_773022 is not set
    -CONFIG_ARM_ERRATA_799270=y
     CONFIG_TI_PRIV_EDMA=y
     
     #
     # Bus support
     #
    -CONFIG_PCI=y
    -CONFIG_PCI_SYSCALL=y
    -# CONFIG_PCI_MSI is not set
    -# CONFIG_PCI_DEBUG is not set
    -# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
    -# CONFIG_PCI_STUB is not set
    -# CONFIG_PCI_IOV is not set
    -# CONFIG_PCI_PRI is not set
    -# CONFIG_PCI_PASID is not set
    -
    -#
    -# PCI host controller drivers
    -#
    -# CONFIG_PCIE_DRA7XX is not set
    -# CONFIG_PCIEPORTBUS is not set
    +# CONFIG_PCI_SYSCALL is not set
     # CONFIG_PCCARD is not set
     
     #
     # Kernel Features
     #
    -CONFIG_HAVE_SMP=y
    -# CONFIG_SMP is not set
    -CONFIG_HAVE_ARM_SCU=y
    -CONFIG_HAVE_ARM_ARCH_TIMER=y
    +# CONFIG_HAVE_ARM_ARCH_TIMER is not set
     CONFIG_VMSPLIT_3G=y
     # CONFIG_VMSPLIT_2G is not set
     # CONFIG_VMSPLIT_1G is not set
     CONFIG_PAGE_OFFSET=0xC0000000
     # CONFIG_ARM_PSCI is not set
    -CONFIG_ARCH_NR_GPIO=512
    -# CONFIG_PREEMPT_NONE is not set
    -CONFIG_PREEMPT_VOLUNTARY=y
    +CONFIG_ARCH_NR_GPIO=0
    +CONFIG_PREEMPT_NONE=y
    +# CONFIG_PREEMPT_VOLUNTARY is not set
     # CONFIG_PREEMPT is not set
     CONFIG_HZ_FIXED=0
     CONFIG_HZ_100=y
    @@ -496,6 +449,7 @@
     # CONFIG_HZ_1000 is not set
     CONFIG_HZ=100
     CONFIG_SCHED_HRTICK=y
    +# CONFIG_THUMB2_KERNEL is not set
     CONFIG_AEABI=y
     CONFIG_OABI_COMPAT=y
     CONFIG_ARCH_HAS_HOLES_MEMORYMODEL=y
    @@ -504,17 +458,14 @@
     CONFIG_HAVE_ARCH_PFN_VALID=y
     CONFIG_HIGHMEM=y
     # CONFIG_HIGHPTE is not set
    -CONFIG_HW_PERF_EVENTS=y
     CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
     CONFIG_FLATMEM=y
     CONFIG_FLAT_NODE_MEM_MAP=y
     CONFIG_HAVE_MEMBLOCK=y
    -CONFIG_MEMORY_ISOLATION=y
     # CONFIG_HAVE_BOOTMEM_INFO_NODE is not set
     CONFIG_PAGEFLAGS_EXTENDED=y
     CONFIG_SPLIT_PTLOCK_CPUS=4
    -CONFIG_COMPACTION=y
    -CONFIG_MIGRATION=y
    +# CONFIG_COMPACTION is not set
     # CONFIG_PHYS_ADDR_T_64BIT is not set
     CONFIG_ZONE_DMA_FLAG=0
     CONFIG_BOUNCE=y
    @@ -524,14 +475,14 @@
     CONFIG_NEED_PER_CPU_KM=y
     # CONFIG_CLEANCACHE is not set
     # CONFIG_FRONTSWAP is not set
    -CONFIG_CMA=y
    -# CONFIG_CMA_DEBUG is not set
    +# CONFIG_CMA is not set
     # CONFIG_ZBUD is not set
     CONFIG_FORCE_MAX_ZONEORDER=12
     CONFIG_ALIGNMENT_TRAP=y
     # CONFIG_UACCESS_WITH_MEMCPY is not set
     # CONFIG_SECCOMP is not set
     # CONFIG_CC_STACKPROTECTOR is not set
    +# CONFIG_XEN is not set
     
     #
     # Boot options
    @@ -541,17 +492,13 @@
     # CONFIG_DEPRECATED_PARAM_STRUCT is not set
     CONFIG_ZBOOT_ROM_TEXT=0x0
     CONFIG_ZBOOT_ROM_BSS=0x0
    -CONFIG_ARM_APPENDED_DTB=y
    -CONFIG_ARM_ATAG_DTB_COMPAT=y
    -CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER=y
    -# CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEND is not set
    +# CONFIG_ARM_APPENDED_DTB is not set
     CONFIG_CMDLINE="root=/dev/mmcblk0p2 rootwait console=ttyO0,115200"
     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=y
    -CONFIG_ATAGS_PROC=y
    +# CONFIG_KEXEC is not set
     # CONFIG_CRASH_DUMP is not set
     CONFIG_AUTO_ZRELADDR=y
     
    @@ -568,22 +515,21 @@
     CONFIG_CPU_FREQ_STAT=y
     CONFIG_CPU_FREQ_STAT_DETAILS=y
     # CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
    -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
     CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE=y
     # CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
     # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
    -# CONFIG_CPU_FREQ_GOV_PERFORMANCE is not set
    +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
     CONFIG_CPU_FREQ_GOV_POWERSAVE=y
     CONFIG_CPU_FREQ_GOV_USERSPACE=y
    -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set
    +CONFIG_CPU_FREQ_GOV_ONDEMAND=y
     CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
    -CONFIG_GENERIC_CPUFREQ_CPU0=y
    +# CONFIG_GENERIC_CPUFREQ_CPU0 is not set
     
     #
     # ARM CPU frequency scaling drivers
     #
     # CONFIG_ARM_KIRKWOOD_CPUFREQ is not set
    -# CONFIG_ARM_OMAP2PLUS_CPUFREQ is not set
    +CONFIG_ARM_OMAP2PLUS_CPUFREQ=y
     
     #
     # CPU Idle
    @@ -635,7 +581,7 @@
     CONFIG_PM_RUNTIME=y
     CONFIG_PM=y
     CONFIG_PM_DEBUG=y
    -# CONFIG_PM_ADVANCED_DEBUG is not set
    +CONFIG_PM_ADVANCED_DEBUG=y
     # CONFIG_PM_TEST_SUSPEND is not set
     CONFIG_PM_SLEEP_DEBUG=y
     # CONFIG_APM_EMULATION is not set
    @@ -655,14 +601,8 @@
     # CONFIG_PACKET_DIAG is not set
     CONFIG_UNIX=y
     # CONFIG_UNIX_DIAG is not set
    -CONFIG_XFRM=y
    -CONFIG_XFRM_ALGO=y
    -CONFIG_XFRM_USER=y
    -# CONFIG_XFRM_SUB_POLICY is not set
    -CONFIG_XFRM_MIGRATE=y
    -# CONFIG_XFRM_STATISTICS is not set
    -CONFIG_NET_KEY=y
    -CONFIG_NET_KEY_MIGRATE=y
    +# CONFIG_XFRM_USER is not set
    +# CONFIG_NET_KEY is not set
     CONFIG_INET=y
     CONFIG_IP_MULTICAST=y
     # CONFIG_IP_ADVANCED_ROUTER is not set
    @@ -675,19 +615,16 @@
     # CONFIG_NET_IP_TUNNEL is not set
     # CONFIG_IP_MROUTE is not set
     # CONFIG_SYN_COOKIES is not set
    -# CONFIG_NET_IPVTI 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=m
    -CONFIG_INET_XFRM_MODE_TUNNEL=m
    -CONFIG_INET_XFRM_MODE_BEET=m
    +# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
    +# CONFIG_INET_XFRM_MODE_TUNNEL is not set
    +# CONFIG_INET_XFRM_MODE_BEET is not set
     # CONFIG_INET_LRO is not set
    -CONFIG_INET_DIAG=m
    -CONFIG_INET_TCP_DIAG=m
    -# CONFIG_INET_UDP_DIAG is not set
    +# CONFIG_INET_DIAG is not set
     # CONFIG_TCP_CONG_ADVANCED is not set
     CONFIG_TCP_CONG_CUBIC=y
     CONFIG_DEFAULT_TCP_CONG="cubic"
    @@ -696,157 +633,17 @@
     # CONFIG_NETLABEL is not set
     # CONFIG_NETWORK_SECMARK is not set
     # CONFIG_NETWORK_PHY_TIMESTAMPING is not set
    -CONFIG_NETFILTER=y
    -# CONFIG_NETFILTER_DEBUG is not set
    -CONFIG_NETFILTER_ADVANCED=y
    -CONFIG_BRIDGE_NETFILTER=y
    -
    -#
    -# Core Netfilter Configuration
    -#
    -# CONFIG_NETFILTER_NETLINK_ACCT is not set
    -# CONFIG_NETFILTER_NETLINK_QUEUE is not set
    -# CONFIG_NETFILTER_NETLINK_LOG is not set
    -CONFIG_NF_CONNTRACK=m
    -# CONFIG_NF_CONNTRACK_MARK is not set
    -CONFIG_NF_CONNTRACK_PROCFS=y
    -# CONFIG_NF_CONNTRACK_EVENTS is not set
    -# CONFIG_NF_CONNTRACK_TIMEOUT is not set
    -# CONFIG_NF_CONNTRACK_TIMESTAMP is not set
    -# CONFIG_NF_CT_PROTO_DCCP is not set
    -# CONFIG_NF_CT_PROTO_SCTP is not set
    -# CONFIG_NF_CT_PROTO_UDPLITE is not set
    -# CONFIG_NF_CONNTRACK_AMANDA is not set
    -# CONFIG_NF_CONNTRACK_FTP is not set
    -# CONFIG_NF_CONNTRACK_H323 is not set
    -# CONFIG_NF_CONNTRACK_IRC is not set
    -# CONFIG_NF_CONNTRACK_NETBIOS_NS is not set
    -# CONFIG_NF_CONNTRACK_SNMP is not set
    -# CONFIG_NF_CONNTRACK_PPTP is not set
    -# CONFIG_NF_CONNTRACK_SANE is not set
    -# CONFIG_NF_CONNTRACK_SIP is not set
    -# CONFIG_NF_CONNTRACK_TFTP is not set
    -# CONFIG_NF_CT_NETLINK is not set
    -# CONFIG_NF_CT_NETLINK_TIMEOUT is not set
    -CONFIG_NF_NAT=m
    -CONFIG_NF_NAT_NEEDED=y
    -# CONFIG_NF_NAT_AMANDA is not set
    -# CONFIG_NF_NAT_FTP is not set
    -# CONFIG_NF_NAT_IRC is not set
    -# CONFIG_NF_NAT_SIP is not set
    -# CONFIG_NF_NAT_TFTP is not set
    -CONFIG_NETFILTER_XTABLES=m
    -
    -#
    -# Xtables combined modules
    -#
    -# CONFIG_NETFILTER_XT_MARK is not set
    -# CONFIG_NETFILTER_XT_CONNMARK is not set
    -
    -#
    -# Xtables targets
    -#
    -# CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set
    -# CONFIG_NETFILTER_XT_TARGET_CONNMARK is not set
    -# CONFIG_NETFILTER_XT_TARGET_HMARK is not set
    -# CONFIG_NETFILTER_XT_TARGET_IDLETIMER is not set
    -# CONFIG_NETFILTER_XT_TARGET_LOG is not set
    -# CONFIG_NETFILTER_XT_TARGET_MARK is not set
    -# CONFIG_NETFILTER_XT_TARGET_NETMAP is not set
    -# CONFIG_NETFILTER_XT_TARGET_NFLOG is not set
    -# CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set
    -# CONFIG_NETFILTER_XT_TARGET_RATEEST is not set
    -# CONFIG_NETFILTER_XT_TARGET_REDIRECT is not set
    -# CONFIG_NETFILTER_XT_TARGET_TEE is not set
    -# CONFIG_NETFILTER_XT_TARGET_TCPMSS is not set
    -
    -#
    -# Xtables matches
    -#
    -# CONFIG_NETFILTER_XT_MATCH_ADDRTYPE is not set
    -# CONFIG_NETFILTER_XT_MATCH_BPF is not set
    -# CONFIG_NETFILTER_XT_MATCH_CLUSTER is not set
    -# CONFIG_NETFILTER_XT_MATCH_COMMENT is not set
    -# CONFIG_NETFILTER_XT_MATCH_CONNBYTES is not set
    -# CONFIG_NETFILTER_XT_MATCH_CONNLABEL is not set
    -# CONFIG_NETFILTER_XT_MATCH_CONNLIMIT is not set
    -# CONFIG_NETFILTER_XT_MATCH_CONNMARK is not set
    -# CONFIG_NETFILTER_XT_MATCH_CONNTRACK is not set
    -# CONFIG_NETFILTER_XT_MATCH_CPU is not set
    -# CONFIG_NETFILTER_XT_MATCH_DCCP is not set
    -# CONFIG_NETFILTER_XT_MATCH_DEVGROUP is not set
    -# CONFIG_NETFILTER_XT_MATCH_DSCP is not set
    -# CONFIG_NETFILTER_XT_MATCH_ECN is not set
    -# CONFIG_NETFILTER_XT_MATCH_ESP is not set
    -# CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set
    -# CONFIG_NETFILTER_XT_MATCH_HELPER is not set
    -# CONFIG_NETFILTER_XT_MATCH_HL is not set
    -# CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set
    -# CONFIG_NETFILTER_XT_MATCH_LENGTH is not set
    -# CONFIG_NETFILTER_XT_MATCH_LIMIT is not set
    -# CONFIG_NETFILTER_XT_MATCH_MAC is not set
    -# CONFIG_NETFILTER_XT_MATCH_MARK is not set
    -# CONFIG_NETFILTER_XT_MATCH_MULTIPORT is not set
    -# CONFIG_NETFILTER_XT_MATCH_NFACCT is not set
    -# CONFIG_NETFILTER_XT_MATCH_OWNER is not set
    -# CONFIG_NETFILTER_XT_MATCH_POLICY is not set
    -# CONFIG_NETFILTER_XT_MATCH_PHYSDEV is not set
    -# CONFIG_NETFILTER_XT_MATCH_PKTTYPE is not set
    -# CONFIG_NETFILTER_XT_MATCH_QUOTA is not set
    -# CONFIG_NETFILTER_XT_MATCH_RATEEST is not set
    -# CONFIG_NETFILTER_XT_MATCH_REALM is not set
    -# CONFIG_NETFILTER_XT_MATCH_RECENT is not set
    -# CONFIG_NETFILTER_XT_MATCH_SCTP is not set
    -# CONFIG_NETFILTER_XT_MATCH_SOCKET is not set
    -# CONFIG_NETFILTER_XT_MATCH_STATE is not set
    -# CONFIG_NETFILTER_XT_MATCH_STATISTIC is not set
    -# CONFIG_NETFILTER_XT_MATCH_STRING is not set
    -# CONFIG_NETFILTER_XT_MATCH_TCPMSS is not set
    -# CONFIG_NETFILTER_XT_MATCH_TIME is not set
    -# CONFIG_NETFILTER_XT_MATCH_U32 is not set
    -# CONFIG_IP_VS is not set
    -
    -#
    -# IP: Netfilter Configuration
    -#
    -CONFIG_NF_DEFRAG_IPV4=m
    -CONFIG_NF_CONNTRACK_IPV4=m
    -CONFIG_NF_CONNTRACK_PROC_COMPAT=y
    -CONFIG_IP_NF_IPTABLES=m
    -# CONFIG_IP_NF_MATCH_AH is not set
    -# CONFIG_IP_NF_MATCH_ECN is not set
    -# CONFIG_IP_NF_MATCH_TTL is not set
    -CONFIG_IP_NF_FILTER=m
    -# CONFIG_IP_NF_TARGET_REJECT is not set
    -# CONFIG_IP_NF_TARGET_SYNPROXY is not set
    -# CONFIG_IP_NF_TARGET_ULOG is not set
    -CONFIG_NF_NAT_IPV4=m
    -CONFIG_IP_NF_TARGET_MASQUERADE=m
    -# CONFIG_IP_NF_TARGET_NETMAP is not set
    -# CONFIG_IP_NF_TARGET_REDIRECT is not set
    -# CONFIG_NF_NAT_PPTP is not set
    -# CONFIG_NF_NAT_H323 is not set
    -# CONFIG_IP_NF_MANGLE is not set
    -# CONFIG_IP_NF_RAW is not set
    -# CONFIG_IP_NF_SECURITY is not set
    -# CONFIG_IP_NF_ARPTABLES is not set
    -# CONFIG_BRIDGE_NF_EBTABLES 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_STP=m
    -CONFIG_BRIDGE=m
    -CONFIG_BRIDGE_IGMP_SNOOPING=y
    -# CONFIG_BRIDGE_VLAN_FILTERING is not set
    +# CONFIG_BRIDGE is not set
     CONFIG_HAVE_NET_DSA=y
    -CONFIG_VLAN_8021Q=y
    -# CONFIG_VLAN_8021Q_GVRP is not set
    -# CONFIG_VLAN_8021Q_MVRP is not set
    +# CONFIG_VLAN_8021Q is not set
     # CONFIG_DECNET is not set
    -CONFIG_LLC=m
     # CONFIG_LLC2 is not set
     # CONFIG_IPX is not set
     # CONFIG_ATALK is not set
    @@ -871,7 +668,6 @@
     # Network testing
     #
     # CONFIG_NET_PKTGEN is not set
    -# CONFIG_NET_TCPPROBE is not set
     # CONFIG_HAMRADIO is not set
     # CONFIG_CAN is not set
     # CONFIG_IRDA is not set
    @@ -917,35 +713,21 @@
     CONFIG_SOC_BUS=y
     CONFIG_REGMAP=y
     CONFIG_REGMAP_I2C=y
    -CONFIG_REGMAP_MMIO=y
     # CONFIG_DMA_SHARED_BUFFER is not set
    -CONFIG_DMA_CMA=y
    -
    -#
    -# Default contiguous memory area size:
    -#
    -CONFIG_CMA_SIZE_MBYTES=24
    -CONFIG_CMA_SIZE_SEL_MBYTES=y
    -# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set
    -# CONFIG_CMA_SIZE_SEL_MIN is not set
    -# CONFIG_CMA_SIZE_SEL_MAX is not set
    -CONFIG_CMA_ALIGNMENT=8
    -CONFIG_CMA_AREAS=7
     
     #
     # Bus devices
     #
    -CONFIG_OMAP_OCP2SCP=y
    +# CONFIG_OMAP_OCP2SCP is not set
     CONFIG_OMAP_INTERCONNECT=y
     # CONFIG_ARM_CCI is not set
    -CONFIG_CONNECTOR=y
    -CONFIG_PROC_EVENTS=y
    +# CONFIG_CONNECTOR is not set
     CONFIG_MTD=y
     # 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_OF_PARTS=y
    +# CONFIG_MTD_OF_PARTS is not set
     # CONFIG_MTD_AR7_PARTS is not set
     
     #
    @@ -993,13 +775,11 @@
     # CONFIG_MTD_COMPLEX_MAPPINGS is not set
     # CONFIG_MTD_PHYSMAP is not set
     # CONFIG_MTD_PHYSMAP_OF is not set
    -# CONFIG_MTD_INTEL_VR_NOR is not set
     # CONFIG_MTD_PLATRAM is not set
     
     #
     # Self-contained MTD device drivers
     #
    -# CONFIG_MTD_PMC551 is not set
     # CONFIG_MTD_DATAFLASH is not set
     # CONFIG_MTD_M25P80 is not set
     # CONFIG_MTD_SST25L is not set
    @@ -1012,7 +792,6 @@
     # Disk-On-Chip Device Drivers
     #
     # CONFIG_MTD_DOCG3 is not set
    -CONFIG_BCH_CONST_M=13
     CONFIG_MTD_NAND_ECC=y
     # CONFIG_MTD_NAND_ECC_SMC is not set
     CONFIG_MTD_NAND=y
    @@ -1021,12 +800,10 @@
     # CONFIG_MTD_NAND_DENALI is not set
     # CONFIG_MTD_NAND_GPIO is not set
     CONFIG_MTD_NAND_OMAP2=y
    -CONFIG_MTD_NAND_OMAP_BCH=y
    +# CONFIG_MTD_NAND_OMAP_BCH is not set
     CONFIG_MTD_NAND_IDS=y
    -# CONFIG_MTD_NAND_RICOH is not set
     # CONFIG_MTD_NAND_DISKONCHIP is not set
     # CONFIG_MTD_NAND_DOCG4 is not set
    -# CONFIG_MTD_NAND_CAFE is not set
     # CONFIG_MTD_NAND_NANDSIM is not set
     # CONFIG_MTD_NAND_PLATFORM is not set
     # CONFIG_MTD_ONENAND is not set
    @@ -1054,23 +831,15 @@
     CONFIG_OF_IRQ=y
     CONFIG_OF_NET=y
     CONFIG_OF_MDIO=y
    -CONFIG_OF_PCI=y
    -CONFIG_OF_PCI_IRQ=y
     CONFIG_OF_MTD=y
     # CONFIG_PARPORT is not set
     CONFIG_BLK_DEV=y
    -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
    -# CONFIG_BLK_CPQ_CISS_DA is not set
    -# CONFIG_BLK_DEV_DAC960 is not set
    -# CONFIG_BLK_DEV_UMEM is not set
     # CONFIG_BLK_DEV_COW_COMMON is not set
     CONFIG_BLK_DEV_LOOP=y
     CONFIG_BLK_DEV_LOOP_MIN_COUNT=8
     # CONFIG_BLK_DEV_CRYPTOLOOP is not set
     # CONFIG_BLK_DEV_DRBD is not set
     # CONFIG_BLK_DEV_NBD is not set
    -# CONFIG_BLK_DEV_NVME is not set
    -# CONFIG_BLK_DEV_SX8 is not set
     CONFIG_BLK_DEV_RAM=y
     CONFIG_BLK_DEV_RAM_COUNT=16
     CONFIG_BLK_DEV_RAM_SIZE=16384
    @@ -1079,7 +848,6 @@
     # CONFIG_ATA_OVER_ETH is not set
     # CONFIG_MG_DISK is not set
     # CONFIG_BLK_DEV_RBD is not set
    -# CONFIG_BLK_DEV_RSXX is not set
     
     #
     # Misc devices
    @@ -1088,13 +856,9 @@
     # CONFIG_AD525X_DPOT is not set
     # CONFIG_ATMEL_PWM is not set
     # CONFIG_DUMMY_IRQ is not set
    -# CONFIG_PHANTOM is not set
    -# CONFIG_SGI_IOC4 is not set
    -# CONFIG_TIFM_CORE is not set
     # CONFIG_ICS932S401 is not set
     # CONFIG_ATMEL_SSC is not set
     # CONFIG_ENCLOSURE_SERVICES is not set
    -# CONFIG_HP_ILO is not set
     # CONFIG_APDS9802ALS is not set
     # CONFIG_ISL29003 is not set
     # CONFIG_ISL29020 is not set
    @@ -1107,11 +871,10 @@
     # CONFIG_TI_DAC7512 is not set
     # CONFIG_BMP085_I2C is not set
     # CONFIG_BMP085_SPI is not set
    -# CONFIG_PCH_PHUB is not set
     # CONFIG_USB_SWITCH_FSA9480 is not set
     # CONFIG_LATTICE_ECP3_CONFIG is not set
     # CONFIG_SRAM is not set
    -CONFIG_CROSSBAR=y
    +# CONFIG_CROSSBAR is not set
     # CONFIG_C2PORT is not set
     
     #
    @@ -1121,9 +884,8 @@
     # CONFIG_EEPROM_AT25 is not set
     # CONFIG_EEPROM_LEGACY is not set
     # CONFIG_EEPROM_MAX6875 is not set
    -CONFIG_EEPROM_93CX6=y
    +# CONFIG_EEPROM_93CX6 is not set
     # CONFIG_EEPROM_93XX46 is not set
    -# CONFIG_CB710_CORE is not set
     
     #
     # Texas Instruments shared transport line discipline
    @@ -1136,8 +898,6 @@
     # Altera FPGA firmware download module
     #
     # CONFIG_ALTERA_STAPL is not set
    -CONFIG_HAVE_IDE=y
    -# CONFIG_IDE is not set
     
     #
     # SCSI device support
    @@ -1179,20 +939,12 @@
     # CONFIG_ATA is not set
     # CONFIG_MD is not set
     # CONFIG_TARGET_CORE is not set
    -# CONFIG_FUSION is not set
    -
    -#
    -# IEEE 1394 (FireWire) support
    -#
    -# CONFIG_FIREWIRE is not set
    -# CONFIG_FIREWIRE_NOSY is not set
    -# CONFIG_I2O is not set
     CONFIG_NETDEVICES=y
    +CONFIG_MII=y
     CONFIG_NET_CORE=y
     # CONFIG_BONDING is not set
     # CONFIG_DUMMY is not set
     # CONFIG_EQUALIZER is not set
    -# CONFIG_NET_FC is not set
     # CONFIG_NET_TEAM is not set
     # CONFIG_MACVLAN is not set
     # CONFIG_VXLAN is not set
    @@ -1202,7 +954,6 @@
     # CONFIG_TUN is not set
     # CONFIG_VETH is not set
     # CONFIG_NLMON is not set
    -# CONFIG_ARCNET is not set
     
     #
     # CAIF transport drivers
    @@ -1217,56 +968,43 @@
     # CONFIG_NET_DSA_MV88E6131 is not set
     # CONFIG_NET_DSA_MV88E6123_61_65 is not set
     CONFIG_ETHERNET=y
    -# CONFIG_NET_VENDOR_3COM is not set
    -# CONFIG_NET_VENDOR_ADAPTEC is not set
    -# CONFIG_NET_VENDOR_ALTEON is not set
    -# CONFIG_NET_VENDOR_AMD is not set
    -# CONFIG_NET_VENDOR_ARC is not set
    -# CONFIG_NET_VENDOR_ATHEROS is not set
    -# CONFIG_NET_CADENCE is not set
    -# CONFIG_NET_VENDOR_BROADCOM is not set
    -# CONFIG_NET_VENDOR_BROCADE is not set
    +CONFIG_NET_VENDOR_ARC=y
    +# CONFIG_ARC_EMAC is not set
    +CONFIG_NET_CADENCE=y
    +# CONFIG_ARM_AT91_ETHER is not set
    +# CONFIG_MACB is not set
    +CONFIG_NET_VENDOR_BROADCOM=y
    +# CONFIG_B44 is not set
     # CONFIG_NET_CALXEDA_XGMAC is not set
    -# CONFIG_NET_VENDOR_CHELSIO is not set
    -# CONFIG_NET_VENDOR_CIRRUS is not set
    -# CONFIG_NET_VENDOR_CISCO is not set
    +CONFIG_NET_VENDOR_CIRRUS=y
    +# CONFIG_CS89x0 is not set
     # CONFIG_DM9000 is not set
     # CONFIG_DNET is not set
    -# CONFIG_NET_VENDOR_DEC is not set
    -# CONFIG_NET_VENDOR_DLINK is not set
    -# CONFIG_NET_VENDOR_EMULEX is not set
    -# CONFIG_NET_VENDOR_EXAR is not set
    -# CONFIG_NET_VENDOR_FARADAY is not set
    -# CONFIG_NET_VENDOR_HP is not set
    -# CONFIG_NET_VENDOR_INTEL is not set
    -# CONFIG_IP1000 is not set
    -# CONFIG_JME is not set
    -# CONFIG_NET_VENDOR_MARVELL is not set
    -# CONFIG_NET_VENDOR_MELLANOX is not set
    -# CONFIG_NET_VENDOR_MICREL is not set
    -# CONFIG_NET_VENDOR_MICROCHIP is not set
    -# CONFIG_NET_VENDOR_MYRI is not set
    -# CONFIG_FEALNX is not set
    +CONFIG_NET_VENDOR_FARADAY=y
    +# CONFIG_FTMAC100 is not set
    +# CONFIG_FTGMAC100 is not set
    +CONFIG_NET_VENDOR_INTEL=y
    +CONFIG_NET_VENDOR_I825XX=y
    +CONFIG_NET_VENDOR_MARVELL=y
    +# CONFIG_MVMDIO is not set
    +CONFIG_NET_VENDOR_MICREL=y
    +# CONFIG_KS8851 is not set
    +# CONFIG_KS8851_MLL is not set
    +CONFIG_NET_VENDOR_MICROCHIP=y
    +# CONFIG_ENC28J60 is not set
     CONFIG_NET_VENDOR_NATSEMI=y
    -# CONFIG_NATSEMI is not set
    -# CONFIG_NS83820 is not set
    -# CONFIG_NET_VENDOR_8390 is not set
    -# CONFIG_NET_VENDOR_NVIDIA is not set
    -# CONFIG_NET_VENDOR_OKI is not set
    +CONFIG_NET_VENDOR_8390=y
    +# CONFIG_AX88796 is not set
     # CONFIG_ETHOC is not set
    -# CONFIG_NET_PACKET_ENGINE is not set
    -# CONFIG_NET_VENDOR_QLOGIC is not set
    -# CONFIG_NET_VENDOR_REALTEK is not set
     # CONFIG_SH_ETH is not set
    -# CONFIG_NET_VENDOR_RDC is not set
    -# CONFIG_NET_VENDOR_SEEQ is not set
    -# CONFIG_NET_VENDOR_SILAN is not set
    -# CONFIG_NET_VENDOR_SIS is not set
    -# CONFIG_SFC is not set
    -# CONFIG_NET_VENDOR_SMSC is not set
    -# CONFIG_NET_VENDOR_STMICRO is not set
    -# CONFIG_NET_VENDOR_SUN is not set
    -# CONFIG_NET_VENDOR_TEHUTI is not set
    +CONFIG_NET_VENDOR_SEEQ=y
    +CONFIG_NET_VENDOR_SMSC=y
    +CONFIG_SMC91X=y
    +# CONFIG_SMC911X is not set
    +CONFIG_SMSC911X=y
    +# CONFIG_SMSC911X_ARCH_HOOKS is not set
    +CONFIG_NET_VENDOR_STMICRO=y
    +# CONFIG_STMMAC_ETH is not set
     CONFIG_NET_VENDOR_TI=y
     # CONFIG_TI_DAVINCI_EMAC is not set
     CONFIG_TI_DAVINCI_MDIO=y
    @@ -1274,11 +1012,11 @@
     CONFIG_TI_CPSW_PHY_SEL=y
     CONFIG_TI_CPSW=y
     # CONFIG_TI_CPTS is not set
    -# CONFIG_TLAN is not set
    -# CONFIG_NET_VENDOR_VIA is not set
    -# CONFIG_NET_VENDOR_WIZNET is not set
    -# CONFIG_FDDI is not set
    -# CONFIG_HIPPI is not set
    +CONFIG_NET_VENDOR_VIA=y
    +# CONFIG_VIA_VELOCITY is not set
    +CONFIG_NET_VENDOR_WIZNET=y
    +# CONFIG_WIZNET_W5100 is not set
    +# CONFIG_WIZNET_W5300 is not set
     CONFIG_PHYLIB=y
     
     #
    @@ -1297,7 +1035,7 @@
     # CONFIG_BCM87XX_PHY is not set
     # CONFIG_ICPLUS_PHY is not set
     # CONFIG_REALTEK_PHY is not set
    -# CONFIG_NATIONAL_PHY is not set
    +CONFIG_NATIONAL_PHY=y
     # CONFIG_STE10XP is not set
     # CONFIG_LSI_ET1011C_PHY is not set
     # CONFIG_MICREL_PHY is not set
    @@ -1325,7 +1063,6 @@
     # Enable WiMAX (Networking options) to see the WiMAX drivers
     #
     # CONFIG_WAN is not set
    -# CONFIG_VMXNET3 is not set
     # CONFIG_ISDN is not set
     
     #
    @@ -1333,7 +1070,7 @@
     #
     CONFIG_INPUT=y
     # CONFIG_INPUT_FF_MEMLESS is not set
    -CONFIG_INPUT_POLLDEV=m
    +CONFIG_INPUT_POLLDEV=y
     # CONFIG_INPUT_SPARSEKMAP is not set
     CONFIG_INPUT_MATRIXKMAP=y
     
    @@ -1358,10 +1095,10 @@
     # CONFIG_KEYBOARD_QT1070 is not set
     # CONFIG_KEYBOARD_QT2160 is not set
     # CONFIG_KEYBOARD_LKKBD is not set
    -# CONFIG_KEYBOARD_GPIO is not set
    +CONFIG_KEYBOARD_GPIO=y
     # CONFIG_KEYBOARD_TCA6416 is not set
     # CONFIG_KEYBOARD_TCA8418 is not set
    -# CONFIG_KEYBOARD_MATRIX is not set
    +CONFIG_KEYBOARD_MATRIX=y
     # CONFIG_KEYBOARD_LM8333 is not set
     # CONFIG_KEYBOARD_MAX7359 is not set
     # CONFIG_KEYBOARD_MCS is not set
    @@ -1398,7 +1135,7 @@
     # CONFIG_TOUCHSCREEN_ADS7846 is not set
     # CONFIG_TOUCHSCREEN_AD7877 is not set
     # CONFIG_TOUCHSCREEN_AD7879 is not set
    -CONFIG_TOUCHSCREEN_ATMEL_MXT=y
    +# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set
     # CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set
     # CONFIG_TOUCHSCREEN_BU21013 is not set
     # CONFIG_TOUCHSCREEN_CY8CTMG110 is not set
    @@ -1424,13 +1161,12 @@
     # CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set
     # CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
     # CONFIG_TOUCHSCREEN_TOUCHWIN is not set
    -CONFIG_TOUCHSCREEN_TI_AM335X_TSC=y
     # CONFIG_TOUCHSCREEN_PIXCIR is not set
     # CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
     # CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
     # CONFIG_TOUCHSCREEN_TSC_SERIO is not set
     # CONFIG_TOUCHSCREEN_TSC2005 is not set
    -CONFIG_TOUCHSCREEN_TSC2007=y
    +# CONFIG_TOUCHSCREEN_TSC2007 is not set
     # CONFIG_TOUCHSCREEN_W90X900 is not set
     # CONFIG_TOUCHSCREEN_ST1232 is not set
     # CONFIG_TOUCHSCREEN_TPS6507X is not set
    @@ -1451,7 +1187,6 @@
     # CONFIG_INPUT_TWL4030_VIBRA is not set
     # CONFIG_INPUT_UINPUT is not set
     # 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
    @@ -1461,7 +1196,6 @@
     #
     CONFIG_SERIO=y
     # CONFIG_SERIO_SERPORT is not set
    -# CONFIG_SERIO_PCIPS2 is not set
     CONFIG_SERIO_LIBPS2=y
     # CONFIG_SERIO_RAW is not set
     # CONFIG_SERIO_ALTERA_PS2 is not set
    @@ -1485,7 +1219,6 @@
     # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set
     # CONFIG_LEGACY_PTYS is not set
     # CONFIG_SERIAL_NONSTANDARD is not set
    -# CONFIG_NOZOMI is not set
     # CONFIG_N_GSM is not set
     # CONFIG_TRACE_SINK is not set
     CONFIG_DEVKMEM=y
    @@ -1493,27 +1226,15 @@
     #
     # Serial drivers
     #
    -CONFIG_SERIAL_8250=y
    -CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y
    -CONFIG_SERIAL_8250_CONSOLE=y
    -CONFIG_SERIAL_8250_DMA=y
    -# CONFIG_SERIAL_8250_PCI is not set
    -CONFIG_SERIAL_8250_NR_UARTS=32
    -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
    -# CONFIG_SERIAL_8250_EXTENDED is not set
    -# CONFIG_SERIAL_8250_DW is not set
    -# CONFIG_SERIAL_8250_EM is not set
    +# CONFIG_SERIAL_8250 is not set
     
     #
     # Non-8250 serial port support
     #
     # CONFIG_SERIAL_MAX3100 is not set
     # CONFIG_SERIAL_MAX310X is not set
    -# CONFIG_SERIAL_MFD_HSU is not set
     CONFIG_SERIAL_CORE=y
     CONFIG_SERIAL_CORE_CONSOLE=y
    -# CONFIG_SERIAL_JSM is not set
    -# CONFIG_SERIAL_OF_PLATFORM is not set
     CONFIG_SERIAL_OMAP=y
     CONFIG_SERIAL_OMAP_CONSOLE=y
     # CONFIG_SERIAL_SCCNXP is not set
    @@ -1521,13 +1242,10 @@
     # CONFIG_SERIAL_ALTERA_JTAGUART is not set
     # CONFIG_SERIAL_ALTERA_UART is not set
     # CONFIG_SERIAL_IFX6X60 is not set
    -# CONFIG_SERIAL_PCH_UART is not set
     # CONFIG_SERIAL_XILINX_PS_UART is not set
     # CONFIG_SERIAL_ARC is not set
    -# CONFIG_SERIAL_RP2 is not set
     # CONFIG_SERIAL_FSL_LPUART is not set
     # CONFIG_SERIAL_ST_ASC is not set
    -# CONFIG_TTY_PRINTK is not set
     # CONFIG_HVC_DCC is not set
     # CONFIG_IPMI_HANDLER is not set
     CONFIG_HW_RANDOM=y
    @@ -1536,10 +1254,8 @@
     CONFIG_HW_RANDOM_OMAP=y
     # CONFIG_HW_RANDOM_EXYNOS is not set
     # CONFIG_R3964 is not set
    -# CONFIG_APPLICOM is not set
     # CONFIG_RAW_DRIVER is not set
     # CONFIG_TCG_TPM is not set
    -CONFIG_DEVPORT=y
     CONFIG_I2C=y
     CONFIG_I2C_BOARDINFO=y
     CONFIG_I2C_COMPAT=y
    @@ -1552,30 +1268,10 @@
     #
     
     #
    -# PC SMBus host controller drivers
    -#
    -# CONFIG_I2C_ALI1535 is not set
    -# CONFIG_I2C_ALI1563 is not set
    -# CONFIG_I2C_ALI15X3 is not set
    -# CONFIG_I2C_AMD756 is not set
    -# CONFIG_I2C_AMD8111 is not set
    -# CONFIG_I2C_I801 is not set
    -# CONFIG_I2C_ISCH is not set
    -# CONFIG_I2C_PIIX4 is not set
    -# CONFIG_I2C_NFORCE2 is not set
    -# CONFIG_I2C_SIS5595 is not set
    -# CONFIG_I2C_SIS630 is not set
    -# CONFIG_I2C_SIS96X is not set
    -# CONFIG_I2C_VIA is not set
    -# CONFIG_I2C_VIAPRO is not set
    -
    -#
     # I2C system bus drivers (mostly embedded / system-on-chip)
     #
     # CONFIG_I2C_CBUS_GPIO is not set
     # CONFIG_I2C_DESIGNWARE_PLATFORM is not set
    -# CONFIG_I2C_DESIGNWARE_PCI is not set
    -# CONFIG_I2C_EG20T is not set
     # CONFIG_I2C_GPIO is not set
     # CONFIG_I2C_OCORES is not set
     CONFIG_I2C_OMAP=y
    @@ -1614,10 +1310,8 @@
     # CONFIG_SPI_OC_TINY is not set
     CONFIG_SPI_OMAP24XX=y
     # CONFIG_SPI_TI_QSPI is not set
    -# CONFIG_SPI_PXA2XX is not set
     # CONFIG_SPI_PXA2XX_PCI is not set
     # CONFIG_SPI_SC18IS602 is not set
    -# CONFIG_SPI_TOPCLIFF_PCH is not set
     # CONFIG_SPI_XCOMM is not set
     # CONFIG_SPI_XILINX is not set
     # CONFIG_SPI_DESIGNWARE is not set
    @@ -1632,15 +1326,7 @@
     #
     # PPS support
     #
    -CONFIG_PPS=y
    -# CONFIG_PPS_DEBUG is not set
    -
    -#
    -# PPS clients support
    -#
    -# CONFIG_PPS_CLIENT_KTIMER is not set
    -# CONFIG_PPS_CLIENT_LDISC is not set
    -# CONFIG_PPS_CLIENT_GPIO is not set
    +# CONFIG_PPS is not set
     
     #
     # PPS generators support
    @@ -1659,17 +1345,16 @@
     #
     # Pin controllers
     #
    -CONFIG_PINMUX=y
    -CONFIG_PINCONF=y
    -CONFIG_GENERIC_PINCONF=y
    +# CONFIG_PINMUX is not set
    +# CONFIG_PINCONF is not set
     # CONFIG_DEBUG_PINCTRL is not set
    -CONFIG_PINCTRL_SINGLE=y
    +# CONFIG_PINCTRL_SINGLE is not set
     CONFIG_ARCH_HAVE_CUSTOM_GPIO_H=y
     CONFIG_ARCH_REQUIRE_GPIOLIB=y
     CONFIG_GPIO_DEVRES=y
     CONFIG_GPIOLIB=y
     CONFIG_OF_GPIO=y
    -CONFIG_DEBUG_GPIO=y
    +# CONFIG_DEBUG_GPIO is not set
     CONFIG_GPIO_SYSFS=y
     
     #
    @@ -1679,7 +1364,6 @@
     # CONFIG_GPIO_EM is not set
     # CONFIG_GPIO_RCAR is not set
     # CONFIG_GPIO_TS5500 is not set
    -# CONFIG_GPIO_VX855 is not set
     # CONFIG_GPIO_GRGPIO is not set
     
     #
    @@ -1696,10 +1380,6 @@
     #
     # PCI GPIO expanders:
     #
    -# CONFIG_GPIO_BT8XX is not set
    -# CONFIG_GPIO_AMD8111 is not set
    -# CONFIG_GPIO_ML_IOH is not set
    -# CONFIG_GPIO_RDC321X is not set
     
     #
     # SPI GPIO expanders:
    @@ -1725,29 +1405,7 @@
     # USB 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_GENERIC_ADC_BATTERY is not set
    -# CONFIG_TEST_POWER is not set
    -# CONFIG_BATTERY_DS2780 is not set
    -# CONFIG_BATTERY_DS2781 is not set
    -# CONFIG_BATTERY_DS2782 is not set
    -# CONFIG_BATTERY_SBS 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_CHARGER_TWL4030 is not set
    -# CONFIG_CHARGER_LP8727 is not set
    -# CONFIG_CHARGER_GPIO is not set
    -# CONFIG_CHARGER_MANAGER is not set
    -# CONFIG_CHARGER_BQ2415X is not set
    -# CONFIG_CHARGER_BQ24190 is not set
    -# CONFIG_CHARGER_SMB347 is not set
    -# CONFIG_POWER_RESET is not set
    -# CONFIG_POWER_RESET_RESTART is not set
    +# CONFIG_POWER_SUPPLY is not set
     # CONFIG_POWER_AVS is not set
     CONFIG_HWMON=y
     # CONFIG_HWMON_VID is not set
    @@ -1776,7 +1434,6 @@
     # CONFIG_SENSORS_ATXP1 is not set
     # CONFIG_SENSORS_DS620 is not set
     # CONFIG_SENSORS_DS1621 is not set
    -# CONFIG_SENSORS_I5K_AMB is not set
     # CONFIG_SENSORS_F71805F is not set
     # CONFIG_SENSORS_F71882FG is not set
     # CONFIG_SENSORS_F75375S is not set
    @@ -1829,7 +1486,6 @@
     # CONFIG_PMBUS is not set
     # CONFIG_SENSORS_SHT15 is not set
     CONFIG_SENSORS_SHT21=y
    -# CONFIG_SENSORS_SIS5595 is not set
     # CONFIG_SENSORS_SMM665 is not set
     # CONFIG_SENSORS_DME1737 is not set
     # CONFIG_SENSORS_EMC1403 is not set
    @@ -1851,9 +1507,7 @@
     # CONFIG_SENSORS_TMP102 is not set
     # CONFIG_SENSORS_TMP401 is not set
     # CONFIG_SENSORS_TMP421 is not set
    -# CONFIG_SENSORS_VIA686A is not set
     # CONFIG_SENSORS_VT1211 is not set
    -# CONFIG_SENSORS_VT8231 is not set
     # CONFIG_SENSORS_W83781D is not set
     # CONFIG_SENSORS_W83791D is not set
     # CONFIG_SENSORS_W83792D is not set
    @@ -1876,15 +1530,7 @@
     CONFIG_OMAP_WATCHDOG=y
     # CONFIG_TWL4030_WATCHDOG is not set
     # CONFIG_MAX63XX_WATCHDOG is not set
    -# CONFIG_ALIM7101_WDT is not set
    -# CONFIG_I6300ESB_WDT is not set
     # CONFIG_MEN_A21_WDT is not set
    -
    -#
    -# PCI-based Watchdog Cards
    -#
    -# CONFIG_PCIPCWATCHDOG is not set
    -# CONFIG_WDTPCI is not set
     
     #
     # USB-based Watchdog Cards
    @@ -1922,9 +1568,6 @@
     # CONFIG_HTC_EGPIO is not set
     # CONFIG_HTC_PASIC3 is not set
     # CONFIG_HTC_I2CPLD is not set
    -# CONFIG_LPC_ICH is not set
    -# CONFIG_LPC_SCH is not set
    -# CONFIG_MFD_JANZ_CMODIO is not set
     # CONFIG_MFD_KEMPLD is not set
     # CONFIG_MFD_88PM800 is not set
     # CONFIG_MFD_88PM805 is not set
    @@ -1939,8 +1582,6 @@
     # CONFIG_MFD_VIPERBOARD is not set
     # CONFIG_MFD_RETU is not set
     # CONFIG_MFD_PCF50633 is not set
    -# CONFIG_MFD_RDC321X is not set
    -# CONFIG_MFD_RTSX_PCI is not set
     # CONFIG_MFD_RC5T583 is not set
     # CONFIG_MFD_SEC_CORE is not set
     # CONFIG_MFD_SI476X_CORE is not set
    @@ -1948,8 +1589,8 @@
     # CONFIG_MFD_SMSC is not set
     # CONFIG_ABX500_CORE is not set
     # CONFIG_MFD_STMPE is not set
    -CONFIG_MFD_SYSCON=y
    -CONFIG_MFD_TI_AM335X_TSCADC=y
    +# CONFIG_MFD_SYSCON is not set
    +# CONFIG_MFD_TI_AM335X_TSCADC is not set
     # CONFIG_MFD_LP8788 is not set
     # CONFIG_MFD_PALMAS is not set
     # CONFIG_TPS6105X is not set
    @@ -1969,16 +1610,13 @@
     CONFIG_TWL4030_POWER=y
     # CONFIG_MFD_TWL4030_AUDIO is not set
     # CONFIG_TWL6040_CORE is not set
    -CONFIG_MENELAUS=y
     # CONFIG_MFD_WL1273_CORE is not set
     # CONFIG_MFD_LM3533 is not set
    -# CONFIG_MFD_TIMBERDALE 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_MFD_VX855 is not set
     # CONFIG_MFD_ARIZONA_I2C is not set
     # CONFIG_MFD_ARIZONA_SPI is not set
     # CONFIG_MFD_WM8400 is not set
    @@ -1989,12 +1627,11 @@
     # CONFIG_VEXPRESS_CONFIG is not set
     CONFIG_REGULATOR=y
     # CONFIG_REGULATOR_DEBUG is not set
    -# CONFIG_REGULATOR_DUMMY is not set
    +CONFIG_REGULATOR_DUMMY=y
     CONFIG_REGULATOR_FIXED_VOLTAGE=y
     # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set
     # CONFIG_REGULATOR_USERSPACE_CONSUMER is not set
     # CONFIG_REGULATOR_AD5398 is not set
    -# CONFIG_REGULATOR_ANATOP is not set
     # CONFIG_REGULATOR_DA9210 is not set
     # CONFIG_REGULATOR_FAN53555 is not set
     # CONFIG_REGULATOR_GPIO is not set
    @@ -2008,7 +1645,6 @@
     # CONFIG_REGULATOR_MAX8660 is not set
     # CONFIG_REGULATOR_MAX8952 is not set
     # CONFIG_REGULATOR_MAX8973 is not set
    -CONFIG_REGULATOR_PBIAS=y
     # CONFIG_REGULATOR_PFUZE100 is not set
     # CONFIG_REGULATOR_TI_ABB is not set
     # CONFIG_REGULATOR_TPS51632 is not set
    @@ -2018,20 +1654,18 @@
     CONFIG_REGULATOR_TPS65217=y
     # CONFIG_REGULATOR_TPS6524X is not set
     # CONFIG_REGULATOR_TWL4030 is not set
    -CONFIG_REGULATOR_TIAVSCLASS0=y
    +# CONFIG_REGULATOR_TIAVSCLASS0 is not set
     # CONFIG_MEDIA_SUPPORT is not set
     
     #
     # Graphics support
     #
    -CONFIG_VGA_ARB=y
    -CONFIG_VGA_ARB_MAX_GPUS=16
     # CONFIG_DRM is not set
     # CONFIG_VGASTATE is not set
     # CONFIG_VIDEO_OUTPUT_CONTROL is not set
     CONFIG_VIDEOMODE_HELPERS=y
     CONFIG_FB=y
    -CONFIG_FIRMWARE_EDID=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
    @@ -2047,37 +1681,12 @@
     # CONFIG_FB_MACMODES is not set
     # CONFIG_FB_BACKLIGHT is not set
     CONFIG_FB_MODE_HELPERS=y
    -CONFIG_FB_TILEBLITTING=y
    +# CONFIG_FB_TILEBLITTING is not set
     
     #
     # Frame buffer hardware drivers
     #
    -# CONFIG_FB_CIRRUS is not set
    -# CONFIG_FB_PM2 is not set
    -# CONFIG_FB_CYBER2000 is not set
    -# CONFIG_FB_ASILIANT is not set
    -# CONFIG_FB_IMSTT is not set
    -# CONFIG_FB_UVESA is not set
     # CONFIG_FB_S1D13XXX is not set
    -# CONFIG_FB_NVIDIA is not set
    -# CONFIG_FB_RIVA is not set
    -# CONFIG_FB_I740 is not set
    -# CONFIG_FB_MATROX is not set
    -# CONFIG_FB_RADEON is not set
    -# CONFIG_FB_ATY128 is not set
    -# CONFIG_FB_ATY is not set
    -# CONFIG_FB_S3 is not set
    -# CONFIG_FB_SAVAGE is not set
    -# CONFIG_FB_SIS is not set
    -# CONFIG_FB_NEOMAGIC is not set
    -# CONFIG_FB_KYRO is not set
    -# CONFIG_FB_3DFX is not set
    -# CONFIG_FB_VOODOO1 is not set
    -# CONFIG_FB_VT8623 is not set
    -# CONFIG_FB_TRIDENT is not set
    -# CONFIG_FB_ARK is not set
    -# CONFIG_FB_PM3 is not set
    -# CONFIG_FB_CARMINE is not set
     # CONFIG_FB_TMIO is not set
     # CONFIG_FB_SMSCUFX is not set
     # CONFIG_FB_UDL is not set
    @@ -2086,45 +1695,10 @@
     # CONFIG_FB_DA8XX_TDA998X is not set
     # CONFIG_FB_VIRTUAL is not set
     # CONFIG_FB_METRONOME is not set
    -# CONFIG_FB_MB862XX is not set
     # CONFIG_FB_BROADSHEET is not set
     # CONFIG_FB_AUO_K190X is not set
     # CONFIG_FB_SIMPLE is not set
    -CONFIG_OMAP2_VRFB=y
    -CONFIG_OMAP2_DSS=y
    -# CONFIG_OMAP2_DSS_DEBUG is not set
    -# CONFIG_OMAP2_DSS_DEBUGFS is not set
    -# CONFIG_OMAP2_DSS_DPI is not set
    -# CONFIG_OMAP2_DSS_DRA7XX_DPI is not set
    -# CONFIG_OMAP2_DSS_VENC is not set
    -# CONFIG_OMAP4_DSS_HDMI is not set
    -# CONFIG_OMAP5_DSS_HDMI is not set
    -# CONFIG_OMAP2_DSS_SDI is not set
    -# CONFIG_OMAP2_DSS_DSI is not set
    -CONFIG_OMAP2_DSS_MIN_FCK_PER_PCK=0
    -# CONFIG_OMAP2_DSS_SLEEP_AFTER_VENC_RESET is not set
    -CONFIG_FB_OMAP2=y
    -CONFIG_FB_OMAP2_DEBUG_SUPPORT=y
    -CONFIG_FB_OMAP2_NUM_FBS=3
    -
    -#
    -# OMAP Display Device Drivers (new device model)
    -#
    -# CONFIG_DISPLAY_ENCODER_TFP410 is not set
    -# CONFIG_DISPLAY_ENCODER_TPD12S015 is not set
    -# CONFIG_DISPLAY_DRA_EVM_ENCODER_TPD12S015 is not set
    -# CONFIG_DISPLAY_ENCODER_SIL9022 is not set
    -# CONFIG_DISPLAY_CONNECTOR_DVI is not set
    -# CONFIG_DISPLAY_CONNECTOR_HDMI is not set
    -# CONFIG_DISPLAY_CONNECTOR_ANALOG_TV is not set
    -CONFIG_DISPLAY_PANEL_DPI=y
    -# CONFIG_DISPLAY_PANEL_DSI_CM is not set
    -# CONFIG_DISPLAY_PANEL_SONY_ACX565AKM is not set
    -# CONFIG_DISPLAY_PANEL_LGPHILIPS_LB035Q02 is not set
    -# CONFIG_DISPLAY_PANEL_SHARP_LS037V7DW01 is not set
    -# CONFIG_DISPLAY_PANEL_TPO_TD043MTEA1 is not set
    -# CONFIG_DISPLAY_PANEL_NEC_NL8048HL11 is not set
    -# CONFIG_DISPLAY_PANEL_TFCS9700 is not set
    +# CONFIG_OMAP2_DSS is not set
     # CONFIG_EXYNOS_VIDEO is not set
     CONFIG_BACKLIGHT_LCD_SUPPORT=y
     CONFIG_LCD_CLASS_DEVICE=y
    @@ -2143,7 +1717,6 @@
     # CONFIG_LCD_HX8357 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
     # CONFIG_BACKLIGHT_LM3630 is not set
    @@ -2173,7 +1746,6 @@
     # HID support
     #
     CONFIG_HID=y
    -# CONFIG_HID_BATTERY_STRENGTH is not set
     # CONFIG_HIDRAW is not set
     # CONFIG_UHID is not set
     CONFIG_HID_GENERIC=y
    @@ -2181,36 +1753,41 @@
     #
     # Special HID drivers
     #
    -# CONFIG_HID_A4TECH is not set
    +CONFIG_HID_A4TECH=y
     # CONFIG_HID_ACRUX is not set
    -# CONFIG_HID_APPLE is not set
    +CONFIG_HID_APPLE=y
     # CONFIG_HID_APPLEIR is not set
     # CONFIG_HID_AUREAL is not set
    -# CONFIG_HID_BELKIN is not set
    -# CONFIG_HID_CHERRY is not set
    -# CONFIG_HID_CHICONY is not set
    -# CONFIG_HID_CYPRESS is not set
    +CONFIG_HID_BELKIN=y
    +CONFIG_HID_CHERRY=y
    +CONFIG_HID_CHICONY=y
    +CONFIG_HID_CYPRESS=y
     # CONFIG_HID_DRAGONRISE is not set
     # CONFIG_HID_EMS_FF is not set
     # CONFIG_HID_ELECOM is not set
     # CONFIG_HID_ELO is not set
    -# CONFIG_HID_EZKEY is not set
    +CONFIG_HID_EZKEY=y
     # CONFIG_HID_HOLTEK is not set
     # CONFIG_HID_HUION is not set
     # CONFIG_HID_KEYTOUCH is not set
    -# CONFIG_HID_KYE is not set
    +CONFIG_HID_KYE=y
     # CONFIG_HID_UCLOGIC is not set
     # CONFIG_HID_WALTOP is not set
     # CONFIG_HID_GYRATION is not set
     # CONFIG_HID_ICADE is not set
     # CONFIG_HID_TWINHAN is not set
    -# CONFIG_HID_KENSINGTON is not set
    +CONFIG_HID_KENSINGTON=y
     # CONFIG_HID_LCPOWER is not set
     # CONFIG_HID_LENOVO_TPKBD is not set
    -# CONFIG_HID_LOGITECH is not set
    +CONFIG_HID_LOGITECH=y
    +# CONFIG_HID_LOGITECH_DJ is not set
    +# CONFIG_LOGITECH_FF is not set
    +# CONFIG_LOGIRUMBLEPAD2_FF is not set
    +# CONFIG_LOGIG940_FF is not set
    +# CONFIG_LOGIWHEELS_FF is not set
     # CONFIG_HID_MAGICMOUSE is not set
    -# CONFIG_HID_MICROSOFT is not set
    -# CONFIG_HID_MONTEREY is not set
    +CONFIG_HID_MICROSOFT=y
    +CONFIG_HID_MONTEREY=y
     # CONFIG_HID_MULTITOUCH is not set
     # CONFIG_HID_NTRIG is not set
     # CONFIG_HID_ORTEK is not set
    @@ -2259,7 +1836,7 @@
     #
     CONFIG_USB_DEFAULT_PERSIST=y
     # CONFIG_USB_DYNAMIC_MINORS is not set
    -# CONFIG_USB_OTG is not set
    +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
    @@ -2278,10 +1855,21 @@
     # CONFIG_USB_FUSBH200_HCD is not set
     # CONFIG_USB_FOTG210_HCD is not set
     # CONFIG_USB_OHCI_HCD is not set
    -# CONFIG_USB_UHCI_HCD is not set
     # CONFIG_USB_SL811_HCD is not set
     # CONFIG_USB_R8A66597_HCD is not set
     # CONFIG_USB_HCD_TEST_MODE is not set
    +CONFIG_USB_MUSB_HDRC=y
    +# CONFIG_USB_MUSB_HOST is not set
    +# CONFIG_USB_MUSB_GADGET is not set
    +CONFIG_USB_MUSB_DUAL_ROLE=y
    +# CONFIG_USB_MUSB_TUSB6010 is not set
    +# CONFIG_USB_MUSB_OMAP2PLUS is not set
    +# CONFIG_USB_MUSB_AM35X is not set
    +# CONFIG_USB_MUSB_DSPS is not set
    +# CONFIG_USB_MUSB_UX500 is not set
    +CONFIG_USB_TI_CPPI41_DMA=y
    +# CONFIG_MUSB_PIO_ONLY is not set
    +# CONFIG_USB_RENESAS_USBHS is not set
     
     #
     # USB Device Class drivers
    @@ -2319,7 +1907,7 @@
     #
     # CONFIG_USB_MDC800 is not set
     # CONFIG_USB_MICROTEK is not set
    -# CONFIG_USB_DWC3 is not set
    +# CONFIG_USB_CHIPIDEA is not set
     
     #
     # USB port drivers
    @@ -2342,6 +1930,7 @@
     # 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
    @@ -2357,16 +1946,48 @@
     #
     CONFIG_USB_PHY=y
     CONFIG_NOP_USB_XCEIV=y
    -CONFIG_AM335X_CONTROL_USB=y
    -CONFIG_AM335X_PHY_USB=y
    +# CONFIG_AM335X_PHY_USB is not set
     # CONFIG_SAMSUNG_USB2PHY is not set
     # CONFIG_SAMSUNG_USB3PHY is not set
     # CONFIG_USB_GPIO_VBUS is not set
     # CONFIG_USB_ISP1301 is not set
     # CONFIG_USB_RCAR_PHY is not set
     # CONFIG_USB_ULPI is not set
    -# CONFIG_USB_GADGET is not set
    -# CONFIG_UWB is not set
    +CONFIG_USB_GADGET=y
    +# CONFIG_USB_GADGET_DEBUG is not set
    +# CONFIG_USB_GADGET_DEBUG_FILES is not set
    +# CONFIG_USB_GADGET_DEBUG_FS is not set
    +CONFIG_USB_GADGET_VBUS_DRAW=2
    +CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2
    +
    +#
    +# USB Peripheral Controller
    +#
    +# CONFIG_USB_FUSB300 is not set
    +# CONFIG_USB_FOTG210_UDC is not set
    +# CONFIG_USB_R8A66597 is not set
    +# CONFIG_USB_PXA27X is not set
    +# CONFIG_USB_MV_UDC is not set
    +# CONFIG_USB_MV_U3D is not set
    +# CONFIG_USB_M66592 is not set
    +# CONFIG_USB_NET2272 is not set
    +# CONFIG_USB_DUMMY_HCD is not set
    +CONFIG_USB_LIBCOMPOSITE=m
    +CONFIG_USB_F_MASS_STORAGE=m
    +# CONFIG_USB_CONFIGFS is not set
    +# CONFIG_USB_ZERO is not set
    +# CONFIG_USB_ETH is not set
    +# CONFIG_USB_G_NCM is not set
    +# CONFIG_USB_GADGETFS is not set
    +# CONFIG_USB_FUNCTIONFS is not set
    +CONFIG_USB_MASS_STORAGE=m
    +# CONFIG_USB_G_SERIAL is not set
    +# CONFIG_USB_G_PRINTER is not set
    +# CONFIG_USB_CDC_COMPOSITE is not set
    +# CONFIG_USB_G_ACM_MS 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_MMC=y
     # CONFIG_MMC_DEBUG is not set
     CONFIG_MMC_UNSAFE_RESUME=y
    @@ -2387,18 +2008,14 @@
     # CONFIG_MMC_SDHCI is not set
     # CONFIG_MMC_SDHCI_PXAV3 is not set
     # CONFIG_MMC_SDHCI_PXAV2 is not set
    -CONFIG_MMC_OMAP=y
    +# CONFIG_MMC_OMAP is not set
     CONFIG_MMC_OMAP_HS=y
    -# CONFIG_MMC_TIFM_SD is not set
    -# CONFIG_MMC_CB710 is not set
    -# CONFIG_MMC_VIA_SDMMC is not set
     # 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 is not set
     # CONFIG_ACCESSIBILITY is not set
    -# CONFIG_INFINIBAND is not set
     # CONFIG_EDAC is not set
     CONFIG_RTC_LIB=y
     CONFIG_RTC_CLASS=y
    @@ -2434,7 +2051,6 @@
     # CONFIG_RTC_DRV_PCF8583 is not set
     # CONFIG_RTC_DRV_M41T80 is not set
     # CONFIG_RTC_DRV_BQ32K is not set
    -# CONFIG_RTC_DRV_TWL92330 is not set
     # CONFIG_RTC_DRV_TWL4030 is not set
     # CONFIG_RTC_DRV_S35390A is not set
     # CONFIG_RTC_DRV_FM3130 is not set
    @@ -2478,7 +2094,7 @@
     #
     # on-CPU RTC drivers
     #
    -# CONFIG_RTC_DRV_OMAP is not set
    +CONFIG_RTC_DRV_OMAP=y
     # CONFIG_RTC_DRV_SNVS is not set
     # CONFIG_RTC_DRV_MOXART is not set
     
    @@ -2486,28 +2102,7 @@
     # HID Sensor RTC drivers
     #
     # CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
    -CONFIG_DMADEVICES=y
    -# CONFIG_DMADEVICES_DEBUG is not set
    -
    -#
    -# DMA Devices
    -#
    -# CONFIG_DW_DMAC_CORE is not set
    -# CONFIG_DW_DMAC is not set
    -# CONFIG_DW_DMAC_PCI is not set
    -# CONFIG_TIMB_DMA is not set
    -CONFIG_TI_EDMA=y
    -CONFIG_DMA_OMAP=y
    -CONFIG_TI_CPPI41=y
    -CONFIG_DMA_ENGINE=y
    -CONFIG_DMA_VIRTUAL_CHANNELS=y
    -CONFIG_DMA_OF=y
    -
    -#
    -# DMA Clients
    -#
    -# CONFIG_ASYNC_TX_DMA is not set
    -# CONFIG_DMATEST is not set
    +# CONFIG_DMADEVICES is not set
     # CONFIG_AUXDISPLAY is not set
     # CONFIG_UIO is not set
     # CONFIG_VIRT_DRIVERS is not set
    @@ -2515,13 +2110,137 @@
     #
     # Virtio drivers
     #
    -# CONFIG_VIRTIO_PCI is not set
     # CONFIG_VIRTIO_MMIO is not set
     
     #
     # Microsoft Hyper-V guest support
     #
    -# CONFIG_STAGING is not set
    +CONFIG_STAGING=y
    +# CONFIG_USBIP_CORE is not set
    +# CONFIG_ECHO is not set
    +# CONFIG_COMEDI is not set
    +# CONFIG_RTS5139 is not set
    +# CONFIG_TRANZPORT is not set
    +
    +#
    +# IIO staging drivers
    +#
    +
    +#
    +# Accelerometers
    +#
    +# CONFIG_ADIS16201 is not set
    +# CONFIG_ADIS16203 is not set
    +# CONFIG_ADIS16204 is not set
    +# CONFIG_ADIS16209 is not set
    +# CONFIG_ADIS16220 is not set
    +# CONFIG_ADIS16240 is not set
    +# CONFIG_SCA3000 is not set
    +
    +#
    +# Analog to digital converters
    +#
    +# CONFIG_AD7291 is not set
    +# CONFIG_AD7606 is not set
    +# CONFIG_AD799X is not set
    +# CONFIG_AD7780 is not set
    +# CONFIG_AD7816 is not set
    +# CONFIG_AD7192 is not set
    +# CONFIG_AD7280 is not set
    +
    +#
    +# Analog digital bi-direction converters
    +#
    +# CONFIG_ADT7316 is not set
    +
    +#
    +# Capacitance to digital converters
    +#
    +# CONFIG_AD7150 is not set
    +# CONFIG_AD7152 is not set
    +# CONFIG_AD7746 is not set
    +
    +#
    +# Direct Digital Synthesis
    +#
    +# CONFIG_AD5930 is not set
    +# CONFIG_AD9832 is not set
    +# CONFIG_AD9834 is not set
    +# CONFIG_AD9850 is not set
    +# CONFIG_AD9852 is not set
    +# CONFIG_AD9910 is not set
    +# CONFIG_AD9951 is not set
    +
    +#
    +# Digital gyroscope sensors
    +#
    +# CONFIG_ADIS16060 is not set
    +
    +#
    +# Network Analyzer, Impedance Converters
    +#
    +# CONFIG_AD5933 is not set
    +
    +#
    +# Light sensors
    +#
    +# CONFIG_SENSORS_ISL29018 is not set
    +# CONFIG_SENSORS_ISL29028 is not set
    +# CONFIG_TSL2583 is not set
    +# CONFIG_TSL2x7x is not set
    +
    +#
    +# Magnetometer sensors
    +#
    +# CONFIG_SENSORS_HMC5843 is not set
    +
    +#
    +# Active energy metering IC
    +#
    +# CONFIG_ADE7753 is not set
    +# CONFIG_ADE7754 is not set
    +# CONFIG_ADE7758 is not set
    +# CONFIG_ADE7759 is not set
    +# CONFIG_ADE7854 is not set
    +
    +#
    +# Resolver to digital converters
    +#
    +# CONFIG_AD2S90 is not set
    +# CONFIG_AD2S1200 is not set
    +# CONFIG_AD2S1210 is not set
    +
    +#
    +# Triggers - standalone
    +#
    +# CONFIG_IIO_PERIODIC_RTC_TRIGGER is not set
    +# CONFIG_IIO_SIMPLE_DUMMY is not set
    +# CONFIG_ZSMALLOC is not set
    +# CONFIG_USB_ENESTORAGE is not set
    +# CONFIG_BCM_WIMAX is not set
    +# CONFIG_FT1000 is not set
    +
    +#
    +# Speakup console speech
    +#
    +# CONFIG_SPEAKUP is not set
    +# CONFIG_TOUCHSCREEN_CLEARPAD_TM1217 is not set
    +# CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4 is not set
    +# CONFIG_STAGING_MEDIA is not set
    +
    +#
    +# Android
    +#
    +# CONFIG_ANDROID is not set
    +# CONFIG_USB_WPAN_HCD is not set
    +# CONFIG_WIMAX_GDM72XX is not set
    +# CONFIG_LTE_GDM724X is not set
    +# CONFIG_CED1401 is not set
    +# CONFIG_DGRP is not set
    +# CONFIG_USB_DWC2 is not set
    +# CONFIG_LUSTRE_FS is not set
    +# CONFIG_XILLYBUS is not set
    +# CONFIG_DGAP is not set
     CONFIG_CLKDEV_LOOKUP=y
     CONFIG_HAVE_CLK_PREPARE=y
     CONFIG_COMMON_CLK=y
    @@ -2529,23 +2248,19 @@
     #
     # Common Clock Framework
     #
    -CONFIG_COMMON_CLK_DEBUG=y
    +# CONFIG_COMMON_CLK_DEBUG is not set
     # CONFIG_COMMON_CLK_SI5351 is not set
     
     #
     # Hardware Spinlock drivers
     #
     # CONFIG_HWSPINLOCK_OMAP is not set
    -CONFIG_CLKSRC_OF=y
     CONFIG_CLKSRC_MMIO=y
    -CONFIG_ARM_ARCH_TIMER=y
     CONFIG_MAILBOX=y
     CONFIG_OMAP_MBOX=y
     CONFIG_OMAP2PLUS_MBOX=y
     CONFIG_OMAP_MBOX_KFIFO_SIZE=256
    -CONFIG_IOMMU_SUPPORT=y
    -CONFIG_OF_IOMMU=y
    -# CONFIG_OMAP_IOMMU is not set
    +# CONFIG_IOMMU_SUPPORT is not set
     
     #
     # Remoteproc drivers
    @@ -2556,19 +2271,11 @@
     # Rpmsg drivers
     #
     # CONFIG_PM_DEVFREQ is not set
    -CONFIG_EXTCON=y
    -
    -#
    -# Extcon Device Drivers
    -#
    -CONFIG_OF_EXTCON=y
    -# CONFIG_EXTCON_GPIO is not set
    -# CONFIG_EXTCON_ADC_JACK is not set
    -CONFIG_EXTCON_GPIO_USBVID=y
    +# CONFIG_EXTCON is not set
     # CONFIG_MEMORY is not set
     CONFIG_IIO=y
     CONFIG_IIO_BUFFER=y
    -CONFIG_IIO_BUFFER_CB=y
    +# CONFIG_IIO_BUFFER_CB is not set
     # CONFIG_IIO_KFIFO_BUF is not set
     CONFIG_IIO_TRIGGER=y
     CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
    @@ -2595,7 +2302,6 @@
     # CONFIG_MCP320X is not set
     # CONFIG_NAU7802 is not set
     # CONFIG_TI_ADC081C is not set
    -CONFIG_TI_AM335X_ADC=y
     # CONFIG_TWL6030_GPADC is not set
     
     #
    @@ -2687,17 +2393,8 @@
     # Temperature sensors
     #
     # CONFIG_TMP006 is not set
    -# CONFIG_VME_BUS is not set
    -CONFIG_PWM=y
    -CONFIG_PWM_SYSFS=y
    -# CONFIG_PWM_PCA9685 is not set
    -CONFIG_PWM_TIECAP=y
    -CONFIG_PWM_TIEHRPWM=y
    -CONFIG_PWM_TIPWMSS=y
    -# CONFIG_PWM_TWL is not set
    -# CONFIG_PWM_TWL_LED is not set
    +# CONFIG_PWM is not set
     CONFIG_IRQCHIP=y
    -CONFIG_ARM_GIC=y
     # CONFIG_IPACK_BUS is not set
     CONFIG_ARCH_HAS_RESET_CONTROLLER=y
     CONFIG_RESET_CONTROLLER=y
    @@ -2707,10 +2404,10 @@
     #
     # PHY Subsystem
     #
    -CONFIG_GENERIC_PHY=y
    -CONFIG_OMAP_CONTROL_PHY=y
    -CONFIG_OMAP_USB2=y
    -CONFIG_OMAP_PIPE3=y
    +# CONFIG_GENERIC_PHY is not set
    +# CONFIG_OMAP_CONTROL_PHY is not set
    +# CONFIG_OMAP_USB2 is not set
    +# CONFIG_OMAP_PIPE3 is not set
     
     #
     # File systems
    @@ -2722,15 +2419,9 @@
     CONFIG_EXT3_FS=y
     CONFIG_EXT3_DEFAULTS_TO_ORDERED=y
     # CONFIG_EXT3_FS_XATTR is not set
    -CONFIG_EXT4_FS=y
    -# CONFIG_EXT4_FS_POSIX_ACL is not set
    -# CONFIG_EXT4_FS_SECURITY is not set
    -# CONFIG_EXT4_DEBUG is not set
    +# CONFIG_EXT4_FS 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
    @@ -2787,7 +2478,7 @@
     # CONFIG_TMPFS_POSIX_ACL is not set
     # CONFIG_TMPFS_XATTR is not set
     # CONFIG_HUGETLB_PAGE is not set
    -CONFIG_CONFIGFS_FS=y
    +CONFIG_CONFIGFS_FS=m
     CONFIG_MISC_FILESYSTEMS=y
     # CONFIG_ADFS_FS is not set
     # CONFIG_AFFS_FS is not set
    @@ -2901,9 +2592,9 @@
     # printk and dmesg options
     #
     CONFIG_PRINTK_TIME=y
    -CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4
    +CONFIG_DEFAULT_MESSAGE_LOGLEVEL=7
     # CONFIG_BOOT_PRINTK_DELAY is not set
    -# CONFIG_DYNAMIC_DEBUG is not set
    +CONFIG_DYNAMIC_DEBUG=y
     
     #
     # Compile-time checks and compiler options
    @@ -2919,7 +2610,6 @@
     CONFIG_DEBUG_FS=y
     # CONFIG_HEADERS_CHECK is not set
     # CONFIG_DEBUG_SECTION_MISMATCH is not set
    -CONFIG_FRAME_POINTER=y
     # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
     CONFIG_MAGIC_SYSRQ=y
     CONFIG_DEBUG_KERNEL=y
    @@ -2934,7 +2624,7 @@
     # CONFIG_DEBUG_KMEMLEAK is not set
     # CONFIG_DEBUG_STACK_USAGE is not set
     # CONFIG_DEBUG_VM is not set
    -# CONFIG_DEBUG_MEMORY_INIT is not set
    +CONFIG_DEBUG_MEMORY_INIT=y
     # CONFIG_DEBUG_HIGHMEM is not set
     # CONFIG_DEBUG_SHIRQ is not set
     
    @@ -2945,7 +2635,7 @@
     # CONFIG_DETECT_HUNG_TASK is not set
     # CONFIG_PANIC_ON_OOPS is not set
     CONFIG_PANIC_ON_OOPS_VALUE=0
    -# CONFIG_SCHED_DEBUG is not set
    +CONFIG_SCHED_DEBUG=y
     # CONFIG_SCHEDSTATS is not set
     # CONFIG_TIMER_STATS is not set
     
    @@ -2963,7 +2653,7 @@
     # CONFIG_DEBUG_ATOMIC_SLEEP is not set
     # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
     # CONFIG_DEBUG_KOBJECT is not set
    -# CONFIG_DEBUG_BUGVERBOSE is not set
    +CONFIG_DEBUG_BUGVERBOSE=y
     # CONFIG_DEBUG_WRITECOUNT is not set
     # CONFIG_DEBUG_LIST is not set
     # CONFIG_DEBUG_SG is not set
    @@ -2997,7 +2687,6 @@
     #
     # CONFIG_LKDTM is not set
     # CONFIG_TEST_LIST_SORT is not set
    -# CONFIG_KPROBES_SANITY_TEST is not set
     # CONFIG_BACKTRACE_SELF_TEST is not set
     # CONFIG_RBTREE_TEST is not set
     # CONFIG_INTERVAL_TREE_TEST is not set
    @@ -3009,14 +2698,13 @@
     CONFIG_HAVE_ARCH_KGDB=y
     # CONFIG_KGDB is not set
     # CONFIG_STRICT_DEVMEM is not set
    -# CONFIG_ARM_UNWIND is not set
    +CONFIG_ARM_UNWIND=y
     # CONFIG_DEBUG_USER is not set
     # CONFIG_DEBUG_LL is not set
     CONFIG_DEBUG_LL_INCLUDE="mach/debug-macro.S"
     # CONFIG_DEBUG_UART_PL01X is not set
     # CONFIG_DEBUG_UART_8250 is not set
     CONFIG_UNCOMPRESS_INCLUDE="debug/uncompress.h"
    -# CONFIG_ARM_KPROBES_TEST is not set
     # CONFIG_PID_IN_CONTEXTIDR is not set
     
     #
    @@ -3045,11 +2733,13 @@
     #
     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
    @@ -3061,20 +2751,20 @@
     CONFIG_CRYPTO_WORKQUEUE=y
     # CONFIG_CRYPTO_CRYPTD is not set
     # CONFIG_CRYPTO_AUTHENC is not set
    -# CONFIG_CRYPTO_TEST is not set
    +CONFIG_CRYPTO_TEST=m
     
     #
     # Authenticated Encryption with Associated Data
     #
     # CONFIG_CRYPTO_CCM is not set
     # CONFIG_CRYPTO_GCM is not set
    -# CONFIG_CRYPTO_SEQIV is not set
    +CONFIG_CRYPTO_SEQIV=y
     
     #
     # Block modes
     #
    -# CONFIG_CRYPTO_CBC is not set
    -# CONFIG_CRYPTO_CTR is not set
    +CONFIG_CRYPTO_CBC=y
    +CONFIG_CRYPTO_CTR=y
     # CONFIG_CRYPTO_CTS is not set
     CONFIG_CRYPTO_ECB=y
     # CONFIG_CRYPTO_LRW is not set
    @@ -3106,7 +2796,7 @@
     CONFIG_CRYPTO_SHA1=y
     # CONFIG_CRYPTO_SHA1_ARM is not set
     CONFIG_CRYPTO_SHA256=y
    -CONFIG_CRYPTO_SHA512=y
    +# CONFIG_CRYPTO_SHA512 is not set
     # CONFIG_CRYPTO_TGR192 is not set
     # CONFIG_CRYPTO_WP512 is not set
     
    @@ -3143,13 +2833,11 @@
     # Random Number Generation
     #
     # CONFIG_CRYPTO_ANSI_CPRNG is not set
    -CONFIG_CRYPTO_USER_API=y
    -CONFIG_CRYPTO_USER_API_HASH=y
    -CONFIG_CRYPTO_USER_API_SKCIPHER=y
    +# CONFIG_CRYPTO_USER_API_HASH is not set
    +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set
     CONFIG_CRYPTO_HW=y
    -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
     # CONFIG_CRYPTO_DEV_OMAP_SHAM is not set
    -CONFIG_CRYPTO_DEV_OMAP_AES=y
    +# CONFIG_CRYPTO_DEV_OMAP_AES is not set
     # CONFIG_CRYPTO_DEV_OMAP_DES is not set
     # CONFIG_ASYMMETRIC_KEY_TYPE is not set
     # CONFIG_BINARY_PRINTF is not set
    @@ -3180,31 +2868,34 @@
     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_LZ4_DECOMPRESS=y
    +CONFIG_XZ_DEC=y
    +CONFIG_XZ_DEC_X86=y
    +CONFIG_XZ_DEC_POWERPC=y
    +CONFIG_XZ_DEC_IA64=y
    +CONFIG_XZ_DEC_ARM=y
    +CONFIG_XZ_DEC_ARMTHUMB=y
    +CONFIG_XZ_DEC_SPARC=y
    +CONFIG_XZ_DEC_BCJ=y
    +# CONFIG_XZ_DEC_TEST is not set
     CONFIG_DECOMPRESS_GZIP=y
    -CONFIG_BCH=y
    +CONFIG_DECOMPRESS_BZIP2=y
    +CONFIG_DECOMPRESS_LZMA=y
    +CONFIG_DECOMPRESS_XZ=y
    +CONFIG_DECOMPRESS_LZO=y
    +CONFIG_DECOMPRESS_LZ4=y
     CONFIG_HAS_IOMEM=y
     CONFIG_HAS_IOPORT=y
     CONFIG_HAS_DMA=y
     CONFIG_DQL=y
     CONFIG_NLATTR=y
    -CONFIG_GENERIC_ATOMIC64=y
     CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y
     CONFIG_AVERAGE=y
     # CONFIG_CORDIC is not set
     # CONFIG_DDR is not set
     CONFIG_OID_REGISTRY=y
     CONFIG_FONT_SUPPORT=y
    -CONFIG_FONTS=y
    +# CONFIG_FONTS is not set
     CONFIG_FONT_8x8=y
     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_VIRTUALIZATION is not set
    

    Thank you so much for your help.

    Regards

     

    Santhosh

     

  • Santhosh,

    Your defconfig seems to be a lot different from omap2plus_defconfig--are you positive that's what you used as starting point?  Not basing your custom config off of omap2plus_defconfig will create tons of issues.

  • Hello Jelliot,

    The old defconfig was based on tisdk - as mentioned in step 1. I don't how it worked but it did. When I tried recompiling after updating my linux machine - it stopped working. So I used omap2_defconfig as my starting point this time around.

    The config.txt attached in my post - name is 3005.config.txt - that one is based on omap2 and that is what I'm using currently.

    - Santhosh

  • Are you getting this omap2plus_defconfig from the kernel source included in SDK 7.0, or are you pulling it straight from ti-linux-kernel?  What branch are you on?  Your config has a lot of differences from the config that's in the ti 3.12 branch in the ti-linux-kernel repo, which is where the SDK 7.0 source comes from.

  • Hello Jelliott,


    I'm using the omap2plus_defconfig from the SDK 7.0 which I downloaded from the TI website. I will try and redo the Kernel config and post the results here.

    I'm attaching the file I'm using as my starting point - 4544.omap2plus_defconfig.txt

    And here is my latest .config file, derived from omap2plus_defconfig - 5488.config.txt

    I have also tried running the kernel compiled from omap2plus_defconfig without any modifications and have had similar results - jitter continues.

    Thanks a lot for your help, please do let me know if you have additional questions.

    - Santhosh

  • Hi Santhosh,

    We can help you better if you can only provide the bare minimal changes required. From the looks of your config delta it seems you might of used a different config as a foundation or at least trying to mimic a lot of settings from some other config.

    So if you take the omap2plus_defconfig and enable the minimal amount of features that works on your setup and provide a diff then we can hone in on the issue.

    I would also avoid making changes to options that can impact the entire system such as:

    +CONFIG_ARCH_NR_GPIO=0
    +CONFIG_PREEMPT_NONE=y
    +# CONFIG_PREEMPT_VOLUNTARY is not set

  • Hello Franklin,

    Please find attached the latest config file - I've kept the changes to a minimum. I've tried to remove everything that can cause problem with my board, but I have left most of the config file untouched.

    Removed
    ========
    CAN
    Bluetooth
    Wireless
    Support for AT803X_PHY
    Support for SMSC_PHY
    Support for USB Network Adapters
    Support for Wireless LAN
    All touchscreen drivers except TI
    Dallas's 1-wire support
    Support Sound card
    USB Gadget Support


    Added
    =======    
    External firmware - am335x-pm-firmware.bin

    1007.config.txt

    Please do let me know if you need more information from my side.

    Thank you

    Regards

    Santhosh

  • Hello Guys,

    There seems to be no change in behaviour of the display. I did notice that the behaviour is different on different boards, some  boards have lots of jitter, while some have very little. 

    I also found that touching the display (touchscreen) and/or changing what is displayed, like screen transitions cause jitters where as if there is constant display, the jitter is almost nil.

    Jelliott, you had mentioned DDR issue, how can I check and/or confirm that the DDR signals are not the cause of the problem.

    - Santhosh

  • Hello Guys,


    I think I have some break through, after looking through the two config file over and over again, I found one key difference that I had ignored in the past. The latest config uses the firmware file for the Cortex-M3 used in suspend and resume.

    I removed that, and now the jitters are gone. I will test it over the weekend and report back. Any thoughts on this one?

    - Santhosh

  • I'm glad you found a fix the issue.  I don't have much knowledge of PM for AM335x, so I don't really have an explanation as to why that fixed it.

  • Hello Jelliott, Franklin

    Thanks a lot for your help - and your patience :)

    If anyone else knows why the PM firmware is causing LCD jitter that would be nice to know - I will ask this question to my local resource as well and see if they can help. I will post the solution here, if I find it.

    Thanks once again.

    Santhosh