The i.MX6ULL 9x9 and 14x14 share the same pinfunc.
You can see the same node of PWM1 on the imx6-14x14-evk.dts.
You can delete or just disable the PWM node:
&pwm1 {
#pwm-cells = <2>;
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_pwm1>;
status = "disabled";
};
You can add the gpio1 node to your device tree:
&gpio1 {
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_gpio1>;
status = "okay";
};
and add the pinctrl_gpio1 to the iomux:
pinctrl_gpio1: gpio1grp {
fsl,pins = <
MX6UL_PAD_GPIO1_IO08__GPIO1_IO08 0x17059
>;
};
Then you should be able get your GPIO working.
Best regards,
Salas.