Hi
I would suggest you
1. Please make sure the gpio is configured for falling edge only, for example
interrupt-parent = <&gpio4>;
interrupts = <19 IRQ_TYPE_EDGE_FALLING>;
Ensure you are using IRQ_TYPE_EDGE_FALLING and not IRQ_TYPE_EDGE_BOTH
2. check the Pad control flag.
The pad control value 0x19 might not be enabling input correctly, Try to use a more explicit configuration like
MX8MP_IOMUXC_SAI1_TXD7__GPIO4_IO19 0x130
where 0x130 enables input / pull-up / medium drive strength.
Regards
Daniel