summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorFugang Duan <b38611@freescale.com>2015-01-04 10:09:35 +0800
committerNitin Garg <nitin.garg@freescale.com>2015-01-15 21:18:54 -0600
commitc157be0ea1d731805308ccb18574cd979f4c87af (patch)
treef54dacea1ee8c128b038a9d83a75bae579b919bd /include
parent0ac397d005c420b73863bb956683711c32fae109 (diff)
net: fec: add Wake-on-LAN support
Support for Wake-on-LAN using Magic Packet. ENET IP supports sleep mode in low power status, when system enter suspend status, Magic packet can wake up system even if all SOC clocks are gate. The patch doing below things: - flagging the device as a wakeup source for the system, as well as its Wake-on-LAN interrupt - prepare the hardware for entering WoL mode - add standard ethtool WOL interface - enable the ENET interrupt to wake us Tested on i.MX6q/dl sabresd, sabreauto boards, i.MX6SX arm2 boards. Signed-off-by: Fugang Duan <B38611@freescale.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r--include/linux/fec.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/fec.h b/include/linux/fec.h
index bcff455d1d53..1454a503622d 100644
--- a/include/linux/fec.h
+++ b/include/linux/fec.h
@@ -19,6 +19,7 @@
struct fec_platform_data {
phy_interface_t phy;
unsigned char mac[ETH_ALEN];
+ void (*sleep_mode_enable)(int enabled);
};
#endif