Hi igor
Thank you for suggestion, i am tried what you suggested in above link and little bit change i done in the code but i am getting the same error, please see the below modified code,
&i2c3 {
clock-frequency = <100000>;
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_i2c3>;
status = "okay";
polytouch: edt-ft5x06@38 {
compatible = "edt,edt-ft5206", "edt,edt-ft5x06";
//compatible = "ft5x06,ft5x06-touch";
reg = <0x38>;
pinctrl-names = "default";
pinctrl-0 = <&edt_ft5x06_pins>;
interrupt-parent = <&gpio2>;
interrupts-extended = <11 2>;
//reset-gpios = <&gpio7 13 1>;
wakeup-gpios = <&gpio7 13 0>;
linux,wakeup;
};
};
OUTPUT :
edt_ft5x06 2-0038: touchscreen probe failed
edt_ft5x06: probe of 2-0038 failed with error -5
check_alarm_past: alarm in the past
Second Change in code is;
polytouch: edt-ft5x06@38 {
//compatible = "edt,edt-ft5206", "edt,edt-ft5x06";
compatible = "ft5x06,ft5x06-touch";
reg = <0x38>;
pinctrl-names = "default";
pinctrl-0 = <&edt_ft5x06_pins>;
interrupt-parent = <&gpio2>;
interrupts = <11 2>;
//reset-gpios = <&gpio7 13 1>;
wakeup-gpios = <&gpio7 13 0>;
linux,wakeup;
};
OUTPUT:
mousedev: PS/2 mouse device common for all mice
ft5x06-ts 2-0038: reset fffffffe
ft5x06-ts 2-0038: Could not detect touch screen -19.
check_alarm_past: alarm in the past
Please Guide me where i am wrong in this case,
Thanks in advance,
Best Regards
Nandish SG