Commits
Fugang Duan committed 70f96bd563c
net: fec: add stop mode support for imx8 platform The current driver support stop mode by calling machine api. The patch add dts support to set gpr register for stop request. imx8mq enter stop/exit stop mode by setting GPR bit, which can be accessed by A core. imx8qm enter stop/exit stop mode by calling IMX_SC ipc APIs that communicate with M core ipc service, and the M core set the related GPR bit at last. After magic pattern coming during system suspend status, system will be waked up, and irq handler will be called, then registers access cause system hang due to clocks are off. So disable wake up irq in .suspend(), and enable it in .resume(). Signed-off-by: Fugang Duan <B38611@freescale.com>