gpio: rcar: Fix runtime PM imbalance on error
[linux/fpc-iii.git] / drivers / net / ethernet / broadcom / genet / bcmgenet_wol.c
blobc9a43695b182cb5ed042c7a4c59d5785423f6264
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Broadcom GENET (Gigabit Ethernet) Wake-on-LAN support
5 * Copyright (c) 2014-2017 Broadcom
6 */
8 #define pr_fmt(fmt) "bcmgenet_wol: " fmt
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/sched.h>
13 #include <linux/types.h>
14 #include <linux/interrupt.h>
15 #include <linux/string.h>
16 #include <linux/init.h>
17 #include <linux/errno.h>
18 #include <linux/delay.h>
19 #include <linux/pm.h>
20 #include <linux/clk.h>
21 #include <linux/version.h>
22 #include <linux/platform_device.h>
23 #include <net/arp.h>
25 #include <linux/mii.h>
26 #include <linux/ethtool.h>
27 #include <linux/netdevice.h>
28 #include <linux/inetdevice.h>
29 #include <linux/etherdevice.h>
30 #include <linux/skbuff.h>
31 #include <linux/in.h>
32 #include <linux/ip.h>
33 #include <linux/ipv6.h>
34 #include <linux/phy.h>
36 #include "bcmgenet.h"
38 /* ethtool function - get WOL (Wake on LAN) settings, Only Magic Packet
39 * Detection is supported through ethtool
41 void bcmgenet_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
43 struct bcmgenet_priv *priv = netdev_priv(dev);
44 u32 reg;
46 wol->supported = WAKE_MAGIC | WAKE_MAGICSECURE;
47 wol->wolopts = priv->wolopts;
48 memset(wol->sopass, 0, sizeof(wol->sopass));
50 if (wol->wolopts & WAKE_MAGICSECURE) {
51 reg = bcmgenet_umac_readl(priv, UMAC_MPD_PW_MS);
52 put_unaligned_be16(reg, &wol->sopass[0]);
53 reg = bcmgenet_umac_readl(priv, UMAC_MPD_PW_LS);
54 put_unaligned_be32(reg, &wol->sopass[2]);
58 /* ethtool function - set WOL (Wake on LAN) settings.
59 * Only for magic packet detection mode.
61 int bcmgenet_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
63 struct bcmgenet_priv *priv = netdev_priv(dev);
64 struct device *kdev = &priv->pdev->dev;
65 u32 reg;
67 if (!device_can_wakeup(kdev))
68 return -ENOTSUPP;
70 if (wol->wolopts & ~(WAKE_MAGIC | WAKE_MAGICSECURE))
71 return -EINVAL;
73 reg = bcmgenet_umac_readl(priv, UMAC_MPD_CTRL);
74 if (wol->wolopts & WAKE_MAGICSECURE) {
75 bcmgenet_umac_writel(priv, get_unaligned_be16(&wol->sopass[0]),
76 UMAC_MPD_PW_MS);
77 bcmgenet_umac_writel(priv, get_unaligned_be32(&wol->sopass[2]),
78 UMAC_MPD_PW_LS);
79 reg |= MPD_PW_EN;
80 } else {
81 reg &= ~MPD_PW_EN;
83 bcmgenet_umac_writel(priv, reg, UMAC_MPD_CTRL);
85 /* Flag the device and relevant IRQ as wakeup capable */
86 if (wol->wolopts) {
87 device_set_wakeup_enable(kdev, 1);
88 /* Avoid unbalanced enable_irq_wake calls */
89 if (priv->wol_irq_disabled)
90 enable_irq_wake(priv->wol_irq);
91 priv->wol_irq_disabled = false;
92 } else {
93 device_set_wakeup_enable(kdev, 0);
94 /* Avoid unbalanced disable_irq_wake calls */
95 if (!priv->wol_irq_disabled)
96 disable_irq_wake(priv->wol_irq);
97 priv->wol_irq_disabled = true;
100 priv->wolopts = wol->wolopts;
102 return 0;
105 static int bcmgenet_poll_wol_status(struct bcmgenet_priv *priv)
107 struct net_device *dev = priv->dev;
108 int retries = 0;
110 while (!(bcmgenet_rbuf_readl(priv, RBUF_STATUS)
111 & RBUF_STATUS_WOL)) {
112 retries++;
113 if (retries > 5) {
114 netdev_crit(dev, "polling wol mode timeout\n");
115 return -ETIMEDOUT;
117 mdelay(1);
120 return retries;
123 int bcmgenet_wol_power_down_cfg(struct bcmgenet_priv *priv,
124 enum bcmgenet_power_mode mode)
126 struct net_device *dev = priv->dev;
127 int retries = 0;
128 u32 reg;
130 if (mode != GENET_POWER_WOL_MAGIC) {
131 netif_err(priv, wol, dev, "unsupported mode: %d\n", mode);
132 return -EINVAL;
135 /* Can't suspend with WoL if MAC is still in reset */
136 reg = bcmgenet_umac_readl(priv, UMAC_CMD);
137 if (reg & CMD_SW_RESET)
138 reg &= ~CMD_SW_RESET;
140 /* disable RX */
141 reg &= ~CMD_RX_EN;
142 bcmgenet_umac_writel(priv, reg, UMAC_CMD);
143 mdelay(10);
145 reg = bcmgenet_umac_readl(priv, UMAC_MPD_CTRL);
146 reg |= MPD_EN;
147 bcmgenet_umac_writel(priv, reg, UMAC_MPD_CTRL);
149 /* Do not leave UniMAC in MPD mode only */
150 retries = bcmgenet_poll_wol_status(priv);
151 if (retries < 0) {
152 reg = bcmgenet_umac_readl(priv, UMAC_MPD_CTRL);
153 reg &= ~MPD_EN;
154 bcmgenet_umac_writel(priv, reg, UMAC_MPD_CTRL);
155 return retries;
158 netif_dbg(priv, wol, dev, "MPD WOL-ready status set after %d msec\n",
159 retries);
161 /* Enable CRC forward */
162 reg = bcmgenet_umac_readl(priv, UMAC_CMD);
163 priv->crc_fwd_en = 1;
164 reg |= CMD_CRC_FWD;
166 /* Receiver must be enabled for WOL MP detection */
167 reg |= CMD_RX_EN;
168 bcmgenet_umac_writel(priv, reg, UMAC_CMD);
170 if (priv->hw_params->flags & GENET_HAS_EXT) {
171 reg = bcmgenet_ext_readl(priv, EXT_EXT_PWR_MGMT);
172 reg &= ~EXT_ENERGY_DET_MASK;
173 bcmgenet_ext_writel(priv, reg, EXT_EXT_PWR_MGMT);
176 return 0;
179 void bcmgenet_wol_power_up_cfg(struct bcmgenet_priv *priv,
180 enum bcmgenet_power_mode mode)
182 u32 reg;
184 if (mode != GENET_POWER_WOL_MAGIC) {
185 netif_err(priv, wol, priv->dev, "invalid mode: %d\n", mode);
186 return;
189 reg = bcmgenet_umac_readl(priv, UMAC_MPD_CTRL);
190 if (!(reg & MPD_EN))
191 return; /* already powered up so skip the rest */
192 reg &= ~MPD_EN;
193 bcmgenet_umac_writel(priv, reg, UMAC_MPD_CTRL);
195 /* Disable CRC Forward */
196 reg = bcmgenet_umac_readl(priv, UMAC_CMD);
197 reg &= ~CMD_CRC_FWD;
198 bcmgenet_umac_writel(priv, reg, UMAC_CMD);
199 priv->crc_fwd_en = 0;