blob: 03de76c7a177b6c9b54d571370e92d697c9a9ef6 [file] [log] [blame]
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00001/*******************************************************************************
2 This contains the functions to handle the platform driver.
3
4 Copyright (C) 2007-2011 STMicroelectronics Ltd
5
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 more details.
14
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
22 Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
23*******************************************************************************/
24
25#include <linux/platform_device.h>
26#include <linux/io.h>
Stefan Roese6a228452012-03-13 04:56:37 +000027#include <linux/of.h>
28#include <linux/of_net.h>
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +000029#include "stmmac.h"
30
Stefan Roese6a228452012-03-13 04:56:37 +000031#ifdef CONFIG_OF
Bill Pemberton979857b2012-12-03 09:23:34 -050032static int stmmac_probe_config_dt(struct platform_device *pdev,
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +000033 struct plat_stmmacenet_data *plat,
34 const char **mac)
Stefan Roese6a228452012-03-13 04:56:37 +000035{
36 struct device_node *np = pdev->dev.of_node;
Srinivas Kandagatla25c83b52013-07-04 10:35:41 +010037 struct stmmac_dma_cfg *dma_cfg;
Stefan Roese6a228452012-03-13 04:56:37 +000038
39 if (!np)
40 return -ENODEV;
41
42 *mac = of_get_mac_address(np);
43 plat->interface = of_get_phy_mode(np);
Srinivas Kandagatla25c83b52013-07-04 10:35:41 +010044
45 plat->bus_id = of_alias_get_id(np, "ethernet");
46 if (plat->bus_id < 0)
47 plat->bus_id = 0;
48
49 of_property_read_u32(np, "snps,phy-addr", &plat->phy_addr);
50
Stefan Roese6a228452012-03-13 04:56:37 +000051 plat->mdio_bus_data = devm_kzalloc(&pdev->dev,
52 sizeof(struct stmmac_mdio_bus_data),
53 GFP_KERNEL);
54
55 /*
56 * Currently only the properties needed on SPEAr600
57 * are provided. All other properties should be added
58 * once needed on other platforms.
59 */
Dinh Nguyen84c9f8c42012-07-18 13:28:26 +000060 if (of_device_is_compatible(np, "st,spear600-gmac") ||
61 of_device_is_compatible(np, "snps,dwmac-3.70a") ||
62 of_device_is_compatible(np, "snps,dwmac")) {
Stefan Roese6a228452012-03-13 04:56:37 +000063 plat->has_gmac = 1;
64 plat->pmt = 1;
65 }
66
Srinivas Kandagatla25c83b52013-07-04 10:35:41 +010067 if (of_device_is_compatible(np, "snps,dwmac-3.610") ||
68 of_device_is_compatible(np, "snps,dwmac-3.710")) {
69 plat->enh_desc = 1;
70 plat->bugged_jumbo = 1;
71 plat->force_sf_dma_mode = 1;
72 }
73
74 dma_cfg = devm_kzalloc(&pdev->dev, sizeof(*dma_cfg), GFP_KERNEL);
75 if (!dma_cfg)
76 return -ENOMEM;
77
78 plat->dma_cfg = dma_cfg;
79 of_property_read_u32(np, "snps,pbl", &dma_cfg->pbl);
80 dma_cfg->fixed_burst = of_property_read_bool(np, "snps,fixed-burst");
81 dma_cfg->mixed_burst = of_property_read_bool(np, "snps,mixed-burst");
82
Stefan Roese6a228452012-03-13 04:56:37 +000083 return 0;
84}
85#else
Bill Pemberton979857b2012-12-03 09:23:34 -050086static int stmmac_probe_config_dt(struct platform_device *pdev,
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +000087 struct plat_stmmacenet_data *plat,
88 const char **mac)
Stefan Roese6a228452012-03-13 04:56:37 +000089{
90 return -ENOSYS;
91}
92#endif /* CONFIG_OF */
93
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +000094/**
95 * stmmac_pltfr_probe
96 * @pdev: platform device pointer
97 * Description: platform_device probe function. It allocates
98 * the necessary resources and invokes the main to init
99 * the net device, register the mdio bus etc.
100 */
Bill Pemberton979857b2012-12-03 09:23:34 -0500101static int stmmac_pltfr_probe(struct platform_device *pdev)
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000102{
103 int ret = 0;
104 struct resource *res;
Srinivas Kandagatla3f8bdec2012-08-30 05:51:09 +0000105 struct device *dev = &pdev->dev;
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000106 void __iomem *addr = NULL;
107 struct stmmac_priv *priv = NULL;
Stefan Roese6a228452012-03-13 04:56:37 +0000108 struct plat_stmmacenet_data *plat_dat = NULL;
109 const char *mac = NULL;
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000110
111 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
112 if (!res)
113 return -ENODEV;
114
Silviu-Mihai Popescu5760f422013-04-11 09:52:13 +0000115 addr = devm_ioremap_resource(dev, res);
116 if (IS_ERR(addr))
117 return PTR_ERR(addr);
Stefan Roese6a228452012-03-13 04:56:37 +0000118
Srinivas Kandagatlad7414342013-07-04 10:35:35 +0100119 plat_dat = pdev->dev.platform_data;
Stefan Roese6a228452012-03-13 04:56:37 +0000120 if (pdev->dev.of_node) {
Srinivas Kandagatlad7414342013-07-04 10:35:35 +0100121 if (!plat_dat)
122 plat_dat = devm_kzalloc(&pdev->dev,
Stefan Roese6a228452012-03-13 04:56:37 +0000123 sizeof(struct plat_stmmacenet_data),
124 GFP_KERNEL);
125 if (!plat_dat) {
126 pr_err("%s: ERROR: no memory", __func__);
Srinivas Kandagatla3f8bdec2012-08-30 05:51:09 +0000127 return -ENOMEM;
Stefan Roese6a228452012-03-13 04:56:37 +0000128 }
129
130 ret = stmmac_probe_config_dt(pdev, plat_dat, &mac);
131 if (ret) {
132 pr_err("%s: main dt probe failed", __func__);
Srinivas Kandagatla3f8bdec2012-08-30 05:51:09 +0000133 return ret;
Stefan Roese6a228452012-03-13 04:56:37 +0000134 }
Stefan Roese6a228452012-03-13 04:56:37 +0000135 }
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +0000136
137 /* Custom initialisation (if needed)*/
138 if (plat_dat->init) {
139 ret = plat_dat->init(pdev);
140 if (unlikely(ret))
Srinivas Kandagatla3f8bdec2012-08-30 05:51:09 +0000141 return ret;
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000142 }
143
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +0000144 priv = stmmac_dvr_probe(&(pdev->dev), plat_dat, addr);
145 if (!priv) {
146 pr_err("%s: main driver probe failed", __func__);
Srinivas Kandagatla3f8bdec2012-08-30 05:51:09 +0000147 return -ENODEV;
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +0000148 }
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000149
Stefan Roese6a228452012-03-13 04:56:37 +0000150 /* Get MAC address if available (DT) */
151 if (mac)
152 memcpy(priv->dev->dev_addr, mac, ETH_ALEN);
153
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000154 /* Get the MAC information */
155 priv->dev->irq = platform_get_irq_byname(pdev, "macirq");
156 if (priv->dev->irq == -ENXIO) {
157 pr_err("%s: ERROR: MAC IRQ configuration "
158 "information not found\n", __func__);
Srinivas Kandagatla3f8bdec2012-08-30 05:51:09 +0000159 return -ENXIO;
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000160 }
161
162 /*
163 * On some platforms e.g. SPEAr the wake up irq differs from the mac irq
164 * The external wake up irq can be passed through the platform code
165 * named as "eth_wake_irq"
166 *
167 * In case the wake up interrupt is not passed from the platform
168 * so the driver will continue to use the mac irq (ndev->irq)
169 */
170 priv->wol_irq = platform_get_irq_byname(pdev, "eth_wake_irq");
171 if (priv->wol_irq == -ENXIO)
172 priv->wol_irq = priv->dev->irq;
173
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +0000174 priv->lpi_irq = platform_get_irq_byname(pdev, "eth_lpi");
175
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000176 platform_set_drvdata(pdev, priv->dev);
177
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000178 pr_debug("STMMAC platform driver registration completed");
179
180 return 0;
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000181}
182
183/**
184 * stmmac_pltfr_remove
185 * @pdev: platform device pointer
186 * Description: this function calls the main to free the net resources
187 * and calls the platforms hook and release the resources (e.g. mem).
188 */
189static int stmmac_pltfr_remove(struct platform_device *pdev)
190{
191 struct net_device *ndev = platform_get_drvdata(pdev);
192 struct stmmac_priv *priv = netdev_priv(ndev);
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000193 int ret = stmmac_dvr_remove(ndev);
194
195 if (priv->plat->exit)
196 priv->plat->exit(pdev);
197
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000198 return ret;
199}
200
201#ifdef CONFIG_PM
202static int stmmac_pltfr_suspend(struct device *dev)
203{
204 struct net_device *ndev = dev_get_drvdata(dev);
205
206 return stmmac_suspend(ndev);
207}
208
209static int stmmac_pltfr_resume(struct device *dev)
210{
211 struct net_device *ndev = dev_get_drvdata(dev);
212
213 return stmmac_resume(ndev);
214}
215
216int stmmac_pltfr_freeze(struct device *dev)
217{
Francesco Virlinzi32562512012-04-18 19:48:19 +0000218 int ret;
219 struct plat_stmmacenet_data *plat_dat = dev_get_platdata(dev);
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000220 struct net_device *ndev = dev_get_drvdata(dev);
Francesco Virlinzi32562512012-04-18 19:48:19 +0000221 struct platform_device *pdev = to_platform_device(dev);
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000222
Francesco Virlinzi32562512012-04-18 19:48:19 +0000223 ret = stmmac_freeze(ndev);
224 if (plat_dat->exit)
225 plat_dat->exit(pdev);
226
227 return ret;
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000228}
229
230int stmmac_pltfr_restore(struct device *dev)
231{
Francesco Virlinzi32562512012-04-18 19:48:19 +0000232 struct plat_stmmacenet_data *plat_dat = dev_get_platdata(dev);
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000233 struct net_device *ndev = dev_get_drvdata(dev);
Francesco Virlinzi32562512012-04-18 19:48:19 +0000234 struct platform_device *pdev = to_platform_device(dev);
235
236 if (plat_dat->init)
237 plat_dat->init(pdev);
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000238
239 return stmmac_restore(ndev);
240}
241
242static const struct dev_pm_ops stmmac_pltfr_pm_ops = {
243 .suspend = stmmac_pltfr_suspend,
244 .resume = stmmac_pltfr_resume,
245 .freeze = stmmac_pltfr_freeze,
246 .thaw = stmmac_pltfr_restore,
247 .restore = stmmac_pltfr_restore,
248};
249#else
250static const struct dev_pm_ops stmmac_pltfr_pm_ops;
251#endif /* CONFIG_PM */
252
Stefan Roese6a228452012-03-13 04:56:37 +0000253static const struct of_device_id stmmac_dt_ids[] = {
Dinh Nguyen84c9f8c42012-07-18 13:28:26 +0000254 { .compatible = "st,spear600-gmac"},
Srinivas Kandagatla25c83b52013-07-04 10:35:41 +0100255 { .compatible = "snps,dwmac-3.610"},
Dinh Nguyen84c9f8c42012-07-18 13:28:26 +0000256 { .compatible = "snps,dwmac-3.70a"},
Srinivas Kandagatla25c83b52013-07-04 10:35:41 +0100257 { .compatible = "snps,dwmac-3.710"},
Dinh Nguyen84c9f8c42012-07-18 13:28:26 +0000258 { .compatible = "snps,dwmac"},
Stefan Roese6a228452012-03-13 04:56:37 +0000259 { /* sentinel */ }
260};
261MODULE_DEVICE_TABLE(of, stmmac_dt_ids);
262
Giuseppe CAVALLAROba27ec62012-06-04 19:22:57 +0000263struct platform_driver stmmac_pltfr_driver = {
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000264 .probe = stmmac_pltfr_probe,
265 .remove = stmmac_pltfr_remove,
266 .driver = {
267 .name = STMMAC_RESOURCE_NAME,
268 .owner = THIS_MODULE,
269 .pm = &stmmac_pltfr_pm_ops,
Stefan Roese6a228452012-03-13 04:56:37 +0000270 .of_match_table = of_match_ptr(stmmac_dt_ids),
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000271 },
272};
273
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000274MODULE_DESCRIPTION("STMMAC 10/100/1000 Ethernet PLATFORM driver");
275MODULE_AUTHOR("Giuseppe Cavallaro <peppe.cavallaro@st.com>");
276MODULE_LICENSE("GPL");