FT5x06 DTS PROBLEM in 2.8B1 imx6dl colibri

Hi,
the ft5x06 driver with dts in colibri imx6 2.7B4 worked fine.
trying the new 2.8B1 with the same dts, the driver ft5x06 did not work (driver did not grep 0x38 device in i2c).
any idea ?
Roberto and Andrea

our DTS imx6dl-colibri-eval-v3.dts is:

/*
 * Copyright 2014-2015 Toradex AG
 * Copyright 2012 Freescale Semiconductor, Inc.
 * Copyright 2011 Linaro Ltd.
 *
 * The code contained herein is licensed under the GNU General Public
 * License. You may obtain a copy of the GNU General Public License
 * Version 2 or later at the following locations:
 *
 * http://www.opensource.org/licenses/gpl-license.html
 * http://www.gnu.org/copyleft/gpl.html
 */

/dts-v1/;

#include <dt-bindings/input/input.h>
#include <dt-bindings/interrupt-controller/irq.h>
#include "imx6dl.dtsi"
#include "imx6qdl-colibri.dtsi"

/* Add the following define if you connect a Fusion display with a capacitive
   touch controller */
/* #define PCAP */

/ {
	model = "Toradex Colibri iMX6DL/S on Colibri Evaluation Board V3";
	compatible = "toradex,colibri_imx6dl-eval", "toradex,colibri_imx6dl", "fsl,imx6dl";

	aliases {
		i2c0 = &i2cddc;
		i2c1 = &i2c2;
		i2c2 = &i2c3;
	};

	aliases {
		rtc0 = &rtc_i2c;
		rtc1 = "/soc/aips-bus@02000000/snvs@020cc000/snvs-rtc-lp@34";
	};

	aliases {
		/* the following, together with kernel patches, forces a fixed assignment
		   between device id and usdhc controller */
		/* i.e. the eMMC on usdhc3 will be /dev/mmcblk0 */
		mmc0 = &usdhc3; /* eMMC */
		mmc1 = &usdhc1; /* MMC 4bit slot */
	};

	extcon_usbc_det: usbc_det {
		compatible = "linux,extcon-usb-gpio";
		debounce = <25>;
		id-gpio = <&gpio7 12 GPIO_ACTIVE_HIGH>;
		pinctrl-names = "default";
		pinctrl-0 = <&pinctrl_usbc_det_1>;
	};

	gpio-keys {
		compatible = "gpio-keys";
		pinctrl-names = "default";
		pinctrl-0 = <&pinctrl_gpio_keys>;

		wakeup {
			label = "Wake-Up";
			gpios = <&gpio2 22 GPIO_ACTIVE_HIGH>;
			linux,code = <KEY_WAKEUP>;
			debounce-interval = <10>;
			gpio-key,wakeup;
		};
	};

	regulators {
		reg_usb_host_vbus: usb_host_vbus {
			status = "okay";
		};
	};
};

&backlight {
#if 0 /* PWM polarity: if 1 is brightest */
	pwms = <&pwm3 0 5000000 0>;
#if 0 /* Fusion 7 needs 10kHz PWM frequency */
	pwms = <&pwm3 0 100000 0>;
#endif
#else /* PWM polarity: if 0 is brightest */
	pwms = <&pwm3 0 5000000 1>;
#endif
	brightness-levels = <0 4 8 16 32 64 128 255>;
	default-brightness-level = <6>;
	status = "okay";
};

/ {
	clocks {
		/* fixed crystal dedicated to mcp251x */
		clk16m: clk@1 {
			compatible = "fixed-clock";
			reg=<1>;
			#clock-cells = <0>;
			clock-frequency = <16000000>;
			clock-output-names = "clk16m";
		};
	};
};

/* Colibri SPI */
&ecspi4 {
	status = "okay";

	mcp258x0: mcp258x@1 {
		compatible = "microchip,mcp2515";
		reg = <0>;
		clocks = <&clk16m>;
		interrupt-parent = <&gpio3>;
		interrupts = <27 0x2>;
		spi-max-frequency = <10000000>;
		status = "okay";
	};
	spidev0: spidev@1 {
		compatible = "toradex,evalspi";
		reg = <0>;
		spi-max-frequency = <23000000>;
		status = "disabled";
	};
};

&hdmi_audio {
	status = "okay";
};

&hdmi_core {
	status = "okay";
};

&hdmi_video {
	status = "okay";
};

/*
 * I2C: I2C3_SDA/SCL on SODIMM 194/196 (e.g. RTC on carrier
 * board)
 */
&i2c3 {
	status = "okay";

	/* Atmel maxtouch controller */
	atmel_mxt_ts: atmel_mxt_ts@4a {
		compatible = "atmel,maxtouch";
		pinctrl-names = "default";
		pinctrl-0 = <&pinctrl_mxt_ts>;
		reg = <0x4a>;
		interrupt-parent = <&gpio2>;
		interrupts = <24 IRQ_TYPE_EDGE_FALLING>;
		/*
		 * Note: When the status is set to okay, to avoid pinmux
		 * conflict, one should remove the pinctrl_weim_cs1 and
		 * pinctrl_weim_cs2 pingroup from the weim pinctrl-0
		 * property or disable weim node.
		 */
		status = "disabled";
	};

#ifdef PCAP /* not standard pinout, disable PWM<B>, PWM<C> */
	pcap@10 {
		/* TouchRevolution Fusion 7 and 10 multi-touch controller */
		compatible = "touchrevolution,fusion-f0710a";
		reg = <0x10>;
		pinctrl-names = "default";
		pinctrl-0 = <&pinctrl_pcap_1>;
		gpios = <&gpio1  9 0 /* SODIMM 28, Pen down interrupt */
			 &gpio2 10 0 /* SODIMM 30, Reset */
			>;
	};
#endif
	/* M41T0M6 real time clock on carrier board */
	rtc_i2c: rtc@68 {
		compatible = "st,m41t0";
		reg = <0x68>;
	};

        polytouch: edt-ft5x06@38 {
    		compatible = "edt,edt-ft5406","edt,edt-ft5x06";
		reg = <0x38>;
		pinctrl-names = "default";
		pinctrl-0 = <&pinctrl_ft5x06>;
		interrupt-parent = <&gpio2>;
		interrupts = <20 IRQ_TYPE_EDGE_FALLING>;
		reset-gpios = <&gpio2 18 GPIO_ACTIVE_LOW>;
		wake-gpio = <&gpio2 21 GPIO_ACTIVE_HIGH>;
                touchscreen-size-x = <480>;
                touchscreen-size-y = <480>;
                //touchscreen-swapped-x-y;
		threshold = <20>;
	};
};

/*
 * DDC_I2C: I2C2_SDA/SCL on extension connector pin 15/16
 */
&i2cddc {
	status = "okay";

	hdmi_ddc: edid@50 {
		compatible = "fsl,imx6-hdmi-i2c";
		reg = <0x50>;
	};
};

&iomuxc {
	/*
	 * Mux all pins which are unused to be GPIOs
	 * so they are ready for export to user space
	 */
	pinctrl-names = "default";
	pinctrl-0 = <&pinctrl_weim_gpio_1 &pinctrl_weim_gpio_2
	             &pinctrl_weim_gpio_3 &pinctrl_weim_gpio_4
	             &pinctrl_weim_gpio_5 &pinctrl_weim_gpio_6
	             &pinctrl_csi_gpio_1
	             &pinctrl_gpio_1
	             &pinctrl_gpio_2
	             &pinctrl_usbh_oc_1 &pinctrl_usbc_id_1>;

	gpio {
		pinctrl_pcap_1: pcap-1 {
			fsl,pins = <
				MX6QDL_PAD_GPIO_9__GPIO1_IO09	PAD_CTRL_HYS_PD /* SODIMM 28 */
				MX6QDL_PAD_SD4_DAT2__GPIO2_IO10	PAD_CTRL_HYS_PD /* SODIMM 30 */
			>;
		};

		pinctrl_mxt_ts: mxt-ts {
			fsl,pins = <
				MX6QDL_PAD_EIM_CS1__GPIO2_IO24	PAD_CTRL_HYS_PD /* SODIMM 107 */
				MX6QDL_PAD_SD2_DAT1__GPIO1_IO14	PAD_CTRL_HYS_PD /* SODIMM 106 */
			>;
		};
	};
        pinctrl_ft5x06: ft5x06 {
        	fsl,pin = <
			MX6QDL_PAD_EIM_A20__GPIO2_IO18	PAD_CTRL_HYS_PD /* SODIMM 97 */
			MX6QDL_PAD_EIM_A17__GPIO2_IO21	PAD_CTRL_HYS_PD /* SODIMM 101 */
			MX6QDL_PAD_EIM_A18__GPIO2_IO20	PAD_CTRL_HYS_PD /* SODIMM 103 */
		>;
	};
};

&lcd {
	status = "okay";
};

&mxcfb1 {
	status = "okay";
};

&mxcfb2 {
	status = "okay";
};

#ifndef PCAP
&pwm1 {
	status = "okay";
};
#endif

&pwm2 {
	status = "okay";
};

&pwm3 {
	status = "okay";
};

#ifndef PCAP
&pwm4 {
	status = "okay";
};
#endif

&sound_hdmi {
	status = "okay";
};

&uart1 {
	status = "okay";
};

&uart2 {
	status = "okay";
#if 0
	linux,rs485-enabled-at-boot-time;
#endif
};

&uart3 {
	status = "okay";
};

&usbh1 {
	status = "okay";
};

&usbotg {
	status = "okay";
	extcon = <&extcon_usbc_det>, <&extcon_usbc_det>;
};

/* MMC */
&usdhc1 {
	status = "okay";
};

&weim {
	status = "okay";
	fsl,weim-cs-gpr = <&gpr>;
	/* weim memory map: 32MB on CS0, 32MB on CS1, 32MB on CS2, 32MB on CS3 */
	ranges = <0 0 0x08000000 0x02000000
	          1 0 0x0a000000 0x02000000
	          2 0 0x0c000000 0x02000000
	          3 0 0x0e000000 0x02000000>;
	/* SRAM on CS0 */
	sram@0,0 {
		compatible = "cypress,cy7c1019dv33-10zsxi, mtd-ram";
		reg = <0 0 0x00010000>;
		#address-cells = <1>;
		#size-cells = <1>;
		bank-width = <2>;
		fsl,weim-cs-timing = <0x00010081 0x00000000 0x04000000
				0x00000000 0x04000040 0x00000000>;
	};
	/* SRAM on CS1 */
	sram@1,0 {
		compatible = "cypress,cy7c1019dv33-10zsxi, mtd-ram";
		reg = <1 0 0x00010000>;
		#address-cells = <1>;
		#size-cells = <1>;
		bank-width = <2>;
		fsl,weim-cs-timing = <0x00010081 0x00000000 0x04000000
				0x00000000 0x04000040 0x00000000>;
	};
};

Hello
Could you provide the dmesg and error log (if it exists)?

yes,

 [    0.515288] imx6dl-pinctrl 20e0000.iomuxc: unable to find group for node ft5x06
 [    0.515303] edt_ft5x06: probe of 2-0038 failed with error -22 

our dmesg is:

[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 4.9.67-+g1db9f06 (oe-user@oe-host) (gcc
version 7.2.0 (GCC) ) #3 SMP Mon Mar 26 14:56:55 CEST 2018
[    0.000000] CPU: ARMv7 Processor [412fc09a] revision 10 (ARMv7),
cr=10c5387d
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing
instruction cache
[    0.000000] OF: fdt:Machine model: Toradex Colibri iMX6DL/S on
Colibri Evaluation Board V3
[    0.000000] Reserved memory: created CMA memory pool at 0x20000000,
size 256 MiB
[    0.000000] OF: reserved mem: initialized node linux,cma, compatible
id shared-dma-pool
[    0.000000] Memory policy: Data cache writealloc
[    0.000000] On node 0 totalpages: 131072
[    0.000000] free_area_init_node: node 0, pgdat 80b43480, node_mem_map
8fb77000
[    0.000000]   Normal zone: 1024 pages used for memmap
[    0.000000]   Normal zone: 0 pages reserved
[    0.000000]   Normal zone: 131072 pages, LIFO batch:31
[    0.000000] percpu: Embedded 14 pages/cpu @8fb38000 s25548 r8192
d23604 u57344
[    0.000000] pcpu-alloc: s25548 r8192 d23604 u57344 alloc=14*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on. 
Total pages: 130048
[    0.000000] Kernel command line: defargs=enable_wait_mode=off
galcore.contiguousSize=50331648 quiet loglevel=0 udev.log-priority=3
ip=off root=/dev/mmcblk0p2 ro rootfstype=ext4 rootwait
fec_mac=00:14:2d:4e:bf:b3 consoleblank=0 no_console_suspend=1
console=tty1 console=ttymxc0,115200n8
video=mxcfb0:dev=lcd,480x272@60,if=RGB666 video=mxcfb1:off fbmem=8M
[    0.000000] PID hash table entries: 2048 (order: 1, 8192 bytes)
[    0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144
bytes)
[    0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072
bytes)
[    0.000000] Memory: 245848K/524288K available (7168K kernel code,
273K rwdata, 1816K rodata, 1024K init, 434K bss, 16296K reserved,
262144K cma-reserved, 0K highmem)
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
[    0.000000]     fixmap  : 0xffc00000 - 0xfff00000   (3072 kB)
[    0.000000]     vmalloc : 0xa0800000 - 0xff800000   (1520 MB)
[    0.000000]     lowmem  : 0x80000000 - 0xa0000000   ( 512 MB)
[    0.000000]     pkmap   : 0x7fe00000 - 0x80000000   (   2 MB)
[    0.000000]     modules : 0x7f000000 - 0x7fe00000   (  14 MB)
[    0.000000]       .text : 0x80008000 - 0x80800000   (8160 kB)
[    0.000000]       .init : 0x80a00000 - 0x80b00000   (1024 kB)
[    0.000000]       .data : 0x80b00000 - 0x80b44500   ( 274 kB)
[    0.000000]        .bss : 0x80b44500 - 0x80bb0ecc   ( 435 kB)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000]     Build-time adjustment of leaf fanout to 32.
[    0.000000]     RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=2.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=32, nr_cpu_ids=2
[    0.000000] NR_IRQS:16 nr_irqs:16 16
[    0.000000] L2C-310 erratum 769419 enabled
[    0.000000] L2C-310 enabling early BRESP for Cortex-A9
[    0.000000] L2C-310 full line of zeros enabled for Cortex-A9
[    0.000000] L2C-310 ID prefetch enabled, offset 16 lines
[    0.000000] L2C-310 dynamic clock gating enabled, standby mode enabled
[    0.000000] L2C-310 cache controller enabled, 16 ways, 512 kB
[    0.000000] L2C-310: CACHE_ID 0x410000c8, AUX_CTRL 0x76450001
[    0.000000] Switching to timer-based delay loop, resolution 333ns
[    0.000007] sched_clock: 32 bits at 3000kHz, resolution 333ns, wraps
every 715827882841ns
[    0.000020] clocksource: mxc_timer1: mask: 0xffffffff max_cycles:
0xffffffff, max_idle_ns: 637086815595 ns
[    0.001458] Console: colour dummy device 80x30
[    0.001471] console [tty1] enabled
[    0.001483] Calibrating delay loop (skipped), value calculated using
timer frequency.. 6.00 BogoMIPS (lpj=30000)
[    0.001496] pid_max: default: 32768 minimum: 301
[    0.001586] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.001593] Mountpoint-cache hash table entries: 1024 (order: 0, 4096
bytes)
[    0.002192] CPU: Testing write buffer coherency: ok
[    0.002513] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
[    0.002569] Setting up static identity map for 0x10100000 - 0x10100058
[    0.004431] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
[    0.004544] Brought up 2 CPUs
[    0.004553] SMP: Total of 2 processors activated (12.00 BogoMIPS).
[    0.004558] CPU: All CPU(s) started in SVC mode.
[    0.005327] devtmpfs: initialized
[    0.017766] VFP support v0.3: implementor 41 architecture 3 part 30
variant 9 rev 4
[    0.018059] clocksource: jiffies: mask: 0xffffffff max_cycles:
0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.018074] futex hash table entries: 512 (order: 3, 32768 bytes)
[    0.030988] pinctrl core: initialized pinctrl subsystem
[    0.031974] NET: Registered protocol family 16
[    0.038762] DMA: preallocated 256 KiB pool for atomic coherent
allocations
[    0.069590] cpuidle: using governor menu
[    0.069894] CPU identified as i.MX6DL, silicon rev 1.3
[    0.092087] hw-breakpoint: found 5 (+1 reserved) breakpoint and 1
watchpoint registers.
[    0.092095] hw-breakpoint: maximum watchpoint size is 4 bytes.
[    0.092778] imx6dl-pinctrl 20e0000.iomuxc: no groups defined in
/soc/aips-bus@02000000/iomuxc@020e0000/ft5x06
[    0.094612] imx6dl-pinctrl 20e0000.iomuxc: initialized IMX pinctrl driver
[    0.095849] imx-gpc 20dc000.gpc: no fsl,ldo-bypass found!
[    0.095965] imx-gpc 20dc000.gpc: Registered imx-gpc
[    0.119522] SCSI subsystem initialized
[    0.119852] usbcore: registered new interface driver usbfs
[    0.119912] usbcore: registered new interface driver hub
[    0.120009] usbcore: registered new device driver usb
[    0.120187] 2000000.aips-bus:usbphy_nop1 supply vcc not found, using
dummy regulator
[    0.120304] 2000000.aips-bus:usbphy_nop2 supply vcc not found, using
dummy regulator
[    0.121174] i2c-gpio i2c@0: using pins 109 (SDA) and 108 (SCL)
[    0.130259] stmpe-i2c 1-0041: stmpe811 detected, chip id: 0x811
[    0.220643] i2c i2c-1: IMX I2C adapter registered
[    0.220660] i2c i2c-1: can't use DMA, using PIO instead.
[    0.221550] i2c i2c-2: IMX I2C adapter registered
[    0.221564] i2c i2c-2: can't use DMA, using PIO instead.
[    0.221725] Linux video capture interface: v2.00
[    0.221770] pps_core: LinuxPPS API ver. 1 registered
[    0.221774] pps_core: Software ver. 5.3.6 - Copyright 2005-2007
Rodolfo Giometti <giometti@linux.it>
[    0.221794] PTP clock support registered
[    0.249644] imx-ipuv3 2400000.ipu: IPU DMFC NORMAL mode: 1(0~1),
5B(4,5), 5F(6,7)
[    0.250775] MIPI CSI2 driver module loaded
[    0.250954] Advanced Linux Sound Architecture Driver Initialized.
[    0.252864] clocksource: Switched to clocksource mxc_timer1
[    0.252968] VFS: Disk quotas dquot_6.6.0
[    0.253028] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096
bytes)
[    0.263862] NET: Registered protocol family 2
[    0.264460] TCP established hash table entries: 4096 (order: 2, 16384
bytes)
[    0.264504] TCP bind hash table entries: 4096 (order: 3, 32768 bytes)
[    0.264566] TCP: Hash tables configured (established 4096 bind 4096)
[    0.264615] UDP hash table entries: 256 (order: 1, 8192 bytes)
[    0.264636] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
[    0.264768] NET: Registered protocol family 1
[    0.265196] RPC: Registered named UNIX socket transport module.
[    0.265201] RPC: Registered udp transport module.
[    0.265205] RPC: Registered tcp transport module.
[    0.265209] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.265986] hw perfevents: enabled with armv7_cortex_a9 PMU driver, 7
counters available
[    0.267507] Bus freq driver module loaded
[    0.269166] workingset: timestamp_bits=30 max_order=17 bucket_order=0
[    0.275952] NFS: Registering the id_resolver key type
[    0.275974] Key type id_resolver registered
[    0.275978] Key type id_legacy registered
[    0.275992] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    0.276552] ntfs: driver 2.1.32 [Flags: R/W].
[    0.276897] fuse init (API version 7.26)
[    0.283055] io scheduler noop registered
[    0.283062] io scheduler deadline registered
[    0.283238] io scheduler cfq registered (default)
[    0.285206] imx-weim 21b8000.weim: Driver registered.
[    0.287341] backlight supply power not found, using dummy regulator
[    0.289079] 20e0000.hdmi_video supply HDMI not found, using dummy
regulator
[    0.290335] mxc_sdc_fb fb@0: registered mxc display driver lcd
[    0.291671] mxc_sdc_fb fb@0: 480x272 h_sync,r,l: 41,2,2  v_sync,l,u:
10,2,2 pixclock=9000000 Hz
[    0.346320] mxc_sdc_fb fb@0: 480x272 h_sync,r,l: 41,2,2  v_sync,l,u:
10,2,2 pixclock=9000000 Hz
[    0.374425] Console: switching to colour frame buffer device 60x34
[    0.410343] mxc_sdc_fb fb@1: mxcfb1 is turned off!
[    0.411903] imx-sdma 20ec000.sdma: no iram assigned, using external mem
[    0.412245] imx-sdma 20ec000.sdma: loaded firmware 3.3
[    0.417011] pfuze100-regulator 1-0008: Full layer: 2, Metal layer: 1
[    0.417735] pfuze100-regulator 1-0008: FAB: 0, FIN: 0
[    0.417744] pfuze100-regulator 1-0008: pfuze100 found.
[    0.436029] 2020000.serial: ttymxc0 at MMIO 0x2020000 (irq = 26,
base_baud = 5000000) is a IMX
[    0.436091] console [ttymxc0] enabled
[    0.437172] 21e8000.serial: ttymxc1 at MMIO 0x21e8000 (irq = 72,
base_baud = 5000000) is a IMX
[    0.437877] 21ec000.serial: ttymxc2 at MMIO 0x21ec000 (irq = 73,
base_baud = 5000000) is a IMX
[    0.438830] [drm] Initialized
[    0.439277] [drm] Initialized vivante 1.0.0 20120216 on minor 0
[    0.449877] brd: module loaded
[    0.456317] loop: module loaded
[    0.458362] spi_imx 2014000.ecspi: probed
[    0.459133] libphy: Fixed MDIO Bus: probed
[    0.459543] vcan: Virtual CAN interface driver
[    0.459551] CAN device driver interface
[    0.469849] mcp251x spi3.0: Cannot initialize MCP2515. Wrong wiring?
[    0.469868] mcp251x spi3.0: Probe failed, err=19
[    0.471241] 2188000.ethernet supply phy not found, using dummy regulator
[    0.471743] pps pps0: new PPS source ptp0
[    0.476121] libphy: fec_enet_mii_bus: probed
[    0.476695] fec 2188000.ethernet eth0: registered PHC device 0
[    0.477070] usbcore: registered new interface driver asix
[    0.477124] usbcore: registered new interface driver ax88179_178a
[    0.477168] usbcore: registered new interface driver cdc_ether
[    0.477210] usbcore: registered new interface driver net1080
[    0.477252] usbcore: registered new interface driver cdc_subset
[    0.477291] usbcore: registered new interface driver zaurus
[    0.477354] usbcore: registered new interface driver cdc_ncm
[    0.477359] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.477363] ehci-mxc: Freescale On-Chip EHCI Host driver
[    0.477549] usbcore: registered new interface driver usb-storage
[    0.477645] usbcore: registered new interface driver usbserial
[    0.477684] usbcore: registered new interface driver usbserial_generic
[    0.477722] usbserial: USB Serial support registered for generic
[    0.477760] usbcore: registered new interface driver ftdi_sio
[    0.477794] usbserial: USB Serial support registered for FTDI USB
Serial Device
[    0.477833] usbcore: registered new interface driver pl2303
[    0.477866] usbserial: USB Serial support registered for pl2303
[    0.479023] 2184800.usbmisc supply vbus-wakeup not found, using dummy
regulator
[    0.479962] 2184000.usb supply vbus not found, using dummy regulator
[    0.483622] ci_hdrc ci_hdrc.0: EHCI Host Controller
[    0.483655] ci_hdrc ci_hdrc.0: new USB bus registered, assigned bus
number 1
[    0.512927] ci_hdrc ci_hdrc.0: USB 2.0 started, EHCI 1.00
[    0.513818] hub 1-0:1.0: USB hub found
[    0.513860] hub 1-0:1.0: 1 port detected
[    0.514926] mousedev: PS/2 mouse device common for all mice
[    0.515288] imx6dl-pinctrl 20e0000.iomuxc: unable to find group for
node ft5x06
[    0.515303] edt_ft5x06: probe of 2-0038 failed with error -22
[    0.525507] input: stmpe-ts as
/devices/soc0/soc/2100000.aips-bus/21a4000.i2c/i2c-1/1-0041/stmpe-ts/input/input0
[    0.528768] random: fast init done
[    0.530634] rtc-ds1307 2-0068: rtc core: registered m41t0 as rtc0
[    0.531277] snvs_rtc 20cc000.snvs:snvs-rtc-lp: rtc core: registered
20cc000.snvs:snvs-r as rtc1
[    0.531410] i2c /dev entries driver
[    0.532607] mxc_v4l2_output v4l2_out: V4L2 device registered as video16
[    0.532770] mxc_v4l2_output v4l2_out: V4L2 device registered as video17
[    0.534344] imx2-wdt 20bc000.wdog: timeout 60 sec (nowayout=0)
[    0.534956] sdhci: Secure Digital Host Controller Interface driver
[    0.534960] sdhci: Copyright(c) Pierre Ossman
[    0.534963] sdhci-pltfm: SDHCI platform and OF driver helper
[    0.535967] sdhci-esdhc-imx 2190000.usdhc: Got CD GPIO
[    0.603050] mmc1: SDHCI controller on 2190000.usdhc [2190000.usdhc]
using ADMA
[    0.666773] mmc1: new high speed SDHC card at address 1234
[    0.667341] mmcblk1: mmc1:1234 SA08G 7.21 GiB
[    0.668858]  mmcblk1: p1
[    0.672931] mmc0: SDHCI controller on 2198000.usdhc [2198000.usdhc]
using ADMA
[    0.674226] mxc_vpu 2040000.vpu_fsl: VPU initialized
[    0.676822] mxc_vdoa 21e4000.vdoa: i.MX Video Data Order
Adapter(VDOA) driver probed
[    0.677979] caam 2100000.caam: ERA source: CAAMVID.
[    0.678021] caam 2100000.caam: AXI pipeline throttling enabled.
[    0.678896] caam 2100000.caam: Entropy delay = 3200
[    0.739687] caam 2100000.caam: Instantiated RNG4 SH0
[    0.800450] caam 2100000.caam: Instantiated RNG4 SH1
[    0.800461] caam 2100000.caam: device ID = 0x0a16010000000100 (Era 4)
[    0.800469] caam 2100000.caam: job rings = 2, qi = 0
[    0.819013] caam algorithms registered in /proc/crypto
[    0.825245] caam_jr 2101000.jr0: registering rng-caam
[    0.826157] snvs-secvio 20cc000.caam-snvs: can't get snvs clock
[    0.826221] snvs-secvio 20cc000.caam-snvs: violation handlers armed -
non-secure state
[    0.826441] hidraw: raw HID events driver (C) Jiri Kosina
[    0.826594] usbcore: registered new interface driver usbhid
[    0.826598] usbhid: USB HID core driver
[    0.838810] stmpe-adc stmpe-adc: Initialized
[    0.842076] sgtl5000 1-000a: sgtl5000 revision 0x11
[    0.872281] fsl-ssi-dai 2028000.ssi: No cache defaults, reading back
from HW
[    0.873339] fsl-hdmi-dai soc:hdmi_audio@00120000: failed to probe.
Load HDMI-video first.
[    0.873356] fsl-hdmi-dai: probe of soc:hdmi_audio@00120000 failed
with error -12
[    0.891295] imx-sgtl5000 sound: sgtl5000 <-> 2028000.ssi mapping ok
[    0.892740] imx-audio-hdmi sound-hdmi: initialize HDMI-audio failed.
load HDMI-video first!
[    0.893595] NET: Registered protocol family 10
[    0.894603] NET: Registered protocol family 17
[    0.894617] can: controller area network core (rev 20120528 abi 9)
[    0.894782] NET: Registered protocol family 29
[    0.894789] can: raw protocol (rev 20120528)
[    0.894794] can: broadcast manager protocol (rev 20161123 t)
[    0.894802] can: netlink gateway (rev 20130117) max_hops=1
[    0.895142] Key type dns_resolver registered
[    0.896980] cpu cpu0: Registered imx6q-cpufreq
[    0.897010] Registering SWP/SWPB emulation handler
[    0.897539] mmc0: new DDR MMC card at address 0001
[    0.903135] mmcblk0: mmc0:0001 Q2J54A 3.64 GiB
[    0.903447] mmcblk0boot0: mmc0:0001 Q2J54A partition 1 2.00 MiB
[    0.903708] mmcblk0boot1: mmc0:0001 Q2J54A partition 2 2.00 MiB
[    0.904957]  mmcblk0: p1 p2
[    0.905888] 2184000.usb supply vbus not found, using dummy regulator
[    0.909645] ci_hdrc ci_hdrc.1: EHCI Host Controller
[    0.909667] ci_hdrc ci_hdrc.1: new USB bus registered, assigned bus
number 2
[    0.932888] usb 1-1: new high-speed USB device number 2 using ci_hdrc
[    0.962920] ci_hdrc ci_hdrc.1: USB 2.0 started, EHCI 1.00
[    0.963705] hub 2-0:1.0: USB hub found
[    0.963745] hub 2-0:1.0: 1 port detected
[    0.965010] imx_thermal 2000000.aips-bus:tempmon: Commercial CPU
temperature grade - max:95C critical:90C passive:85C
[    0.966022] input: gpio-keys as /devices/soc0/gpio-keys/input/input1
[    0.967809] rtc-ds1307 2-0068: setting system clock to 2018-03-29
09:00:51 UTC (1522314051)
[    0.968377] ALSA device list:
[    0.968383]   #0: imx6-colibri-sgtl5000
[    0.981408] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data
mode. Opts: (null)
[    0.981446] VFS: Mounted root (ext4 filesystem) readonly on device 179:2.
[    0.983008] devtmpfs: mounted
[    0.983857] Freeing unused kernel memory: 1024K
[    1.134602] systemd[1]: systemd 234 running in system mode. (+PAM
-AUDIT -SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP
-GCRYPT -GNUTLS -ACL -XZ +LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 +IDN
default-hierarchy=hybrid)
[    1.135130] systemd[1]: Detected architecture arm.
[    1.135764] systemd[1]: Set hostname to <colibri-imx6>.
[    1.154553] hub 1-1:1.0: USB hub found
[    1.163445] hub 1-1:1.0: 4 ports detected
[    1.382996] systemd[1]: Started Forward Password Requests to Wall
Directory Watch.
[    1.383351] systemd[1]: Listening on Journal Socket (/dev/log).
[    1.383623] systemd[1]: Started Dispatch Password Requests to Console
Directory Watch.
[    1.383713] systemd[1]: Reached target Paths.
[    1.384322] systemd[1]: Created slice System Slice.
[    1.384885] systemd[1]: Created slice system-serial\x2dgetty.slice.
[    1.385500] systemd[1]: Reached target Host and Network Name Lookups.
[    1.472131] galcore: loading out-of-tree module taints kernel.
[    1.478256] galcore: clk_get vg clock failed, disable vg!
[    1.478514] Galcore version 6.2.2.93313
[    1.712656] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null)
[    1.824099] systemd-journald[208]: Received request to flush runtime
journal from PID 1
[    2.734502] using random self ethernet address
[    2.734512] using random host ethernet address
[    3.168753] Loading modules backported from Linux version
v4.14-0-gbebc608
[    3.168760] Backport generated by backports.git v4.14-rc2-1-34-g1d8cc15
[    3.231083] Bluetooth: Core ver 2.22
[    3.231155] NET: Registered protocol family 31
[    3.231161] Bluetooth: HCI device and connection manager initialized
[    3.231175] Bluetooth: HCI socket layer initialized
[    3.231186] Bluetooth: L2CAP socket layer initialized
[    3.231212] Bluetooth: SCO socket layer initialized
[    3.915414] usb0: HOST MAC 00:14:2d:ff:ff:fe
[    3.943304] usb0: MAC 00:14:2d:ff:ff:ff
[    4.283076] Micrel KSZ8041 2188000.ethernet-1:00: attached PHY driver
[Micrel KSZ8041] (mii_bus:phy_addr=2188000.ethernet-1:00, irq=-1)
[    4.283226] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[    4.546580] FAT-fs (mmcblk1p1): Volume was not properly unmounted.
Some data may be corrupt. Please run fsck.
[    4.710919] IPv6: ADDRCONF(NETDEV_UP): usb0: link is not ready
[    5.083688] mxc_sdc_fb fb@0: 480x272 h_sync,r,l: 41,2,2  v_sync,l,u:
10,2,2 pixclock=9000000 Hz
[    5.146822] mxc_sdc_fb fb@0: 480x272 h_sync,r,l: 41,2,2  v_sync,l,u:
10,2,2 pixclock=9000000 Hz
[    5.206318] mxc_sdc_fb fb@0: 480x272 h_sync,r,l: 41,2,2  v_sync,l,u:
10,2,2 pixclock=9000000 Hz
[    5.267309] mxc_sdc_fb fb@0: 480x272 h_sync,r,l: 41,2,2  v_sync,l,u:
10,2,2 pixclock=9000000 Hz
[    5.866389] mxc_sdc_fb fb@0: 480x272 h_sync,r,l: 41,2,2  v_sync,l,u:
10,2,2 pixclock=9000000 Hz
[    6.553310] fec 2188000.ethernet eth0: Link is Up - 100Mbps/Full -
flow control rx/tx
[    6.553337] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready

It seems that the driver cannot find the pinctrl node. Maybe that behavior changed with the new Linux 4.9 kernel. In general, it is recommended to carefully diff changes between the two versions as there might be breaking changes when moving to new NXP BSP kernels…

Try using a node around pinctrl_ft5x06, similar to GPIO:

touchscreen {
     pinctrl_ft5x06: ft5x06 {
             fsl,pin = <
             MX6QDL_PAD_EIM_A20__GPIO2_IO18    PAD_CTRL_HYS_PD /* SODIMM 97 */
             MX6QDL_PAD_EIM_A17__GPIO2_IO21    PAD_CTRL_HYS_PD /* SODIMM 101 */
             MX6QDL_PAD_EIM_A18__GPIO2_IO20    PAD_CTRL_HYS_PD /* SODIMM 103 */
        >;
    };
};

Thanks!
Now it Works !

Roberto & Andrea

Thanks!
Now it Works !

Roberto & Andrea