Hello TI team,
As per the "LPM_Ex-24" from TDA4 TRM, we are trying to wakeup SoC from standby using a GIC.
As a part of that, we have a soc boot switch that is connected to one of the GPIO. We are tried configure that GPIO as an interrupt. But some how we could not able to see its entry in the "cat /proc/interrupts"
Below is the device tree changes done for the same.
Can please help us check if these changes are correct? if not can you guide on the same?
gpio_pins_intr: gpio-pins-intr {
pinctrl-single,pins = <
AM65X_IOPAD(0x0238, PIN_INPUT, 7) /* (V6) TIMER_IO0.GPIO1_13 */
>;
};
&main_gpio1 {
pinctrl-names = "default";
pinctrl-0 = <&gpio_pins_intr>;
wakeup-source;
gpios = <&main_gpio1 13 GPIO_ACTIVE_HIGH>;
};
Kindly let me know if any other info is required