blob: 8fb32a80f1c1999a18234a2daec7323affd3917a [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>
Chen-Yu Tsai022066f2014-01-17 21:24:46 +080029#include <linux/of_device.h>
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +000030#include "stmmac.h"
31
Chen-Yu Tsai022066f2014-01-17 21:24:46 +080032static const struct of_device_id stmmac_dt_ids[] = {
Chen-Yu Tsaiaf0bd4e2014-01-17 21:24:47 +080033#ifdef CONFIG_DWMAC_SUNXI
34 { .compatible = "allwinner,sun7i-a20-gmac", .data = &sun7i_gmac_data},
35#endif
Srinivas Kandagatlad15891c2014-02-11 09:59:57 +000036#ifdef CONFIG_DWMAC_STI
37 { .compatible = "st,stih415-dwmac", .data = &sti_gmac_data},
38 { .compatible = "st,stih416-dwmac", .data = &sti_gmac_data},
Giuseppe CAVALLAROc5e91032014-03-10 13:40:34 +010039 { .compatible = "st,stid127-dwmac", .data = &sti_gmac_data},
Srinivas Kandagatlad15891c2014-02-11 09:59:57 +000040#endif
Chen-Yu Tsai022066f2014-01-17 21:24:46 +080041 /* SoC specific glue layers should come before generic bindings */
42 { .compatible = "st,spear600-gmac"},
43 { .compatible = "snps,dwmac-3.610"},
44 { .compatible = "snps,dwmac-3.70a"},
45 { .compatible = "snps,dwmac-3.710"},
46 { .compatible = "snps,dwmac"},
47 { /* sentinel */ }
48};
49MODULE_DEVICE_TABLE(of, stmmac_dt_ids);
50
Stefan Roese6a228452012-03-13 04:56:37 +000051#ifdef CONFIG_OF
Bill Pemberton979857b2012-12-03 09:23:34 -050052static int stmmac_probe_config_dt(struct platform_device *pdev,
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +000053 struct plat_stmmacenet_data *plat,
54 const char **mac)
Stefan Roese6a228452012-03-13 04:56:37 +000055{
56 struct device_node *np = pdev->dev.of_node;
Srinivas Kandagatla25c83b52013-07-04 10:35:41 +010057 struct stmmac_dma_cfg *dma_cfg;
Chen-Yu Tsai022066f2014-01-17 21:24:46 +080058 const struct of_device_id *device;
Stefan Roese6a228452012-03-13 04:56:37 +000059
60 if (!np)
61 return -ENODEV;
62
Chen-Yu Tsai022066f2014-01-17 21:24:46 +080063 device = of_match_device(stmmac_dt_ids, &pdev->dev);
64 if (!device)
65 return -ENODEV;
66
67 if (device->data) {
68 const struct stmmac_of_data *data = device->data;
69 plat->has_gmac = data->has_gmac;
70 plat->enh_desc = data->enh_desc;
71 plat->tx_coe = data->tx_coe;
72 plat->rx_coe = data->rx_coe;
73 plat->bugged_jumbo = data->bugged_jumbo;
74 plat->pmt = data->pmt;
75 plat->riwt_off = data->riwt_off;
76 plat->fix_mac_speed = data->fix_mac_speed;
77 plat->bus_setup = data->bus_setup;
78 plat->setup = data->setup;
79 plat->free = data->free;
80 plat->init = data->init;
81 plat->exit = data->exit;
82 }
83
Stefan Roese6a228452012-03-13 04:56:37 +000084 *mac = of_get_mac_address(np);
85 plat->interface = of_get_phy_mode(np);
Srinivas Kandagatla25c83b52013-07-04 10:35:41 +010086
Srinivas Kandagatla9cbadf02014-01-16 10:51:43 +000087 /* Get max speed of operation from device tree */
88 if (of_property_read_u32(np, "max-speed", &plat->max_speed))
89 plat->max_speed = -1;
90
Srinivas Kandagatla25c83b52013-07-04 10:35:41 +010091 plat->bus_id = of_alias_get_id(np, "ethernet");
92 if (plat->bus_id < 0)
93 plat->bus_id = 0;
94
Chen-Yu Tsai436f7ec2014-01-17 21:24:45 +080095 /* Default to phy auto-detection */
96 plat->phy_addr = -1;
97
98 /* "snps,phy-addr" is not a standard property. Mark it as deprecated
99 * and warn of its use. Remove this when phy node support is added.
100 */
101 if (of_property_read_u32(np, "snps,phy-addr", &plat->phy_addr) == 0)
102 dev_warn(&pdev->dev, "snps,phy-addr property is deprecated\n");
Srinivas Kandagatla25c83b52013-07-04 10:35:41 +0100103
Stefan Roese6a228452012-03-13 04:56:37 +0000104 plat->mdio_bus_data = devm_kzalloc(&pdev->dev,
105 sizeof(struct stmmac_mdio_bus_data),
106 GFP_KERNEL);
107
Chen-Yu Tsai6aedb8c2014-01-17 21:24:44 +0800108 plat->force_sf_dma_mode = of_property_read_bool(np, "snps,force_sf_dma_mode");
109
Vince Bridgers2618abb2014-01-20 05:39:01 -0600110 /* Set the maxmtu to a default of JUMBO_LEN in case the
111 * parameter is not present in the device tree.
112 */
113 plat->maxmtu = JUMBO_LEN;
114
Stefan Roese6a228452012-03-13 04:56:37 +0000115 /*
116 * Currently only the properties needed on SPEAr600
117 * are provided. All other properties should be added
118 * once needed on other platforms.
119 */
Dinh Nguyen84c9f8c42012-07-18 13:28:26 +0000120 if (of_device_is_compatible(np, "st,spear600-gmac") ||
121 of_device_is_compatible(np, "snps,dwmac-3.70a") ||
122 of_device_is_compatible(np, "snps,dwmac")) {
Vince Bridgers2618abb2014-01-20 05:39:01 -0600123 /* Note that the max-frame-size parameter as defined in the
124 * ePAPR v1.1 spec is defined as max-frame-size, it's
125 * actually used as the IEEE definition of MAC Client
126 * data, or MTU. The ePAPR specification is confusing as
127 * the definition is max-frame-size, but usage examples
128 * are clearly MTUs
129 */
130 of_property_read_u32(np, "max-frame-size", &plat->maxmtu);
Stefan Roese6a228452012-03-13 04:56:37 +0000131 plat->has_gmac = 1;
132 plat->pmt = 1;
133 }
134
Srinivas Kandagatla25c83b52013-07-04 10:35:41 +0100135 if (of_device_is_compatible(np, "snps,dwmac-3.610") ||
136 of_device_is_compatible(np, "snps,dwmac-3.710")) {
137 plat->enh_desc = 1;
138 plat->bugged_jumbo = 1;
139 plat->force_sf_dma_mode = 1;
140 }
141
Byungho An64c3b252013-08-24 15:31:43 +0900142 if (of_find_property(np, "snps,pbl", NULL)) {
143 dma_cfg = devm_kzalloc(&pdev->dev, sizeof(*dma_cfg),
144 GFP_KERNEL);
145 if (!dma_cfg)
146 return -ENOMEM;
147 plat->dma_cfg = dma_cfg;
148 of_property_read_u32(np, "snps,pbl", &dma_cfg->pbl);
149 dma_cfg->fixed_burst =
150 of_property_read_bool(np, "snps,fixed-burst");
151 dma_cfg->mixed_burst =
152 of_property_read_bool(np, "snps,mixed-burst");
153 }
Sonic Zhange2a240c2013-08-28 18:55:39 +0800154 plat->force_thresh_dma_mode = of_property_read_bool(np, "snps,force_thresh_dma_mode");
155 if (plat->force_thresh_dma_mode) {
156 plat->force_sf_dma_mode = 0;
157 pr_warn("force_sf_dma_mode is ignored if force_thresh_dma_mode is set.");
Olof Johansson356f9e72013-09-05 18:01:41 -0700158 }
Srinivas Kandagatla25c83b52013-07-04 10:35:41 +0100159
Stefan Roese6a228452012-03-13 04:56:37 +0000160 return 0;
161}
162#else
Bill Pemberton979857b2012-12-03 09:23:34 -0500163static int stmmac_probe_config_dt(struct platform_device *pdev,
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +0000164 struct plat_stmmacenet_data *plat,
165 const char **mac)
Stefan Roese6a228452012-03-13 04:56:37 +0000166{
167 return -ENOSYS;
168}
169#endif /* CONFIG_OF */
170
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000171/**
172 * stmmac_pltfr_probe
173 * @pdev: platform device pointer
174 * Description: platform_device probe function. It allocates
175 * the necessary resources and invokes the main to init
176 * the net device, register the mdio bus etc.
177 */
Bill Pemberton979857b2012-12-03 09:23:34 -0500178static int stmmac_pltfr_probe(struct platform_device *pdev)
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000179{
180 int ret = 0;
181 struct resource *res;
Srinivas Kandagatla3f8bdec2012-08-30 05:51:09 +0000182 struct device *dev = &pdev->dev;
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000183 void __iomem *addr = NULL;
184 struct stmmac_priv *priv = NULL;
Stefan Roese6a228452012-03-13 04:56:37 +0000185 struct plat_stmmacenet_data *plat_dat = NULL;
186 const char *mac = NULL;
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000187
188 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Silviu-Mihai Popescu5760f422013-04-11 09:52:13 +0000189 addr = devm_ioremap_resource(dev, res);
190 if (IS_ERR(addr))
191 return PTR_ERR(addr);
Stefan Roese6a228452012-03-13 04:56:37 +0000192
Jingoo Hanf91b29f2013-08-30 14:13:46 +0900193 plat_dat = dev_get_platdata(&pdev->dev);
Stefan Roese6a228452012-03-13 04:56:37 +0000194 if (pdev->dev.of_node) {
Srinivas Kandagatlad7414342013-07-04 10:35:35 +0100195 if (!plat_dat)
196 plat_dat = devm_kzalloc(&pdev->dev,
Stefan Roese6a228452012-03-13 04:56:37 +0000197 sizeof(struct plat_stmmacenet_data),
198 GFP_KERNEL);
199 if (!plat_dat) {
200 pr_err("%s: ERROR: no memory", __func__);
Srinivas Kandagatla3f8bdec2012-08-30 05:51:09 +0000201 return -ENOMEM;
Stefan Roese6a228452012-03-13 04:56:37 +0000202 }
203
204 ret = stmmac_probe_config_dt(pdev, plat_dat, &mac);
205 if (ret) {
206 pr_err("%s: main dt probe failed", __func__);
Srinivas Kandagatla3f8bdec2012-08-30 05:51:09 +0000207 return ret;
Stefan Roese6a228452012-03-13 04:56:37 +0000208 }
Stefan Roese6a228452012-03-13 04:56:37 +0000209 }
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +0000210
Chen-Yu Tsai938dfda2014-01-17 21:24:42 +0800211 /* Custom setup (if needed) */
212 if (plat_dat->setup) {
213 plat_dat->bsp_priv = plat_dat->setup(pdev);
214 if (IS_ERR(plat_dat->bsp_priv))
215 return PTR_ERR(plat_dat->bsp_priv);
216 }
217
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +0000218 /* Custom initialisation (if needed)*/
219 if (plat_dat->init) {
Chen-Yu Tsai938dfda2014-01-17 21:24:42 +0800220 ret = plat_dat->init(pdev, plat_dat->bsp_priv);
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +0000221 if (unlikely(ret))
Srinivas Kandagatla3f8bdec2012-08-30 05:51:09 +0000222 return ret;
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000223 }
224
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +0000225 priv = stmmac_dvr_probe(&(pdev->dev), plat_dat, addr);
Chen-Yu Tsaic5e4ddb2014-01-17 21:24:41 +0800226 if (IS_ERR(priv)) {
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +0000227 pr_err("%s: main driver probe failed", __func__);
Chen-Yu Tsaic5e4ddb2014-01-17 21:24:41 +0800228 return PTR_ERR(priv);
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +0000229 }
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000230
Stefan Roese6a228452012-03-13 04:56:37 +0000231 /* Get MAC address if available (DT) */
232 if (mac)
233 memcpy(priv->dev->dev_addr, mac, ETH_ALEN);
234
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000235 /* Get the MAC information */
236 priv->dev->irq = platform_get_irq_byname(pdev, "macirq");
237 if (priv->dev->irq == -ENXIO) {
238 pr_err("%s: ERROR: MAC IRQ configuration "
239 "information not found\n", __func__);
Srinivas Kandagatla3f8bdec2012-08-30 05:51:09 +0000240 return -ENXIO;
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000241 }
242
243 /*
244 * On some platforms e.g. SPEAr the wake up irq differs from the mac irq
245 * The external wake up irq can be passed through the platform code
246 * named as "eth_wake_irq"
247 *
248 * In case the wake up interrupt is not passed from the platform
249 * so the driver will continue to use the mac irq (ndev->irq)
250 */
251 priv->wol_irq = platform_get_irq_byname(pdev, "eth_wake_irq");
252 if (priv->wol_irq == -ENXIO)
253 priv->wol_irq = priv->dev->irq;
254
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +0000255 priv->lpi_irq = platform_get_irq_byname(pdev, "eth_lpi");
256
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000257 platform_set_drvdata(pdev, priv->dev);
258
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000259 pr_debug("STMMAC platform driver registration completed");
260
261 return 0;
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000262}
263
264/**
265 * stmmac_pltfr_remove
266 * @pdev: platform device pointer
267 * Description: this function calls the main to free the net resources
268 * and calls the platforms hook and release the resources (e.g. mem).
269 */
270static int stmmac_pltfr_remove(struct platform_device *pdev)
271{
272 struct net_device *ndev = platform_get_drvdata(pdev);
273 struct stmmac_priv *priv = netdev_priv(ndev);
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000274 int ret = stmmac_dvr_remove(ndev);
275
276 if (priv->plat->exit)
Chen-Yu Tsai938dfda2014-01-17 21:24:42 +0800277 priv->plat->exit(pdev, priv->plat->bsp_priv);
278
279 if (priv->plat->free)
280 priv->plat->free(pdev, priv->plat->bsp_priv);
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000281
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000282 return ret;
283}
284
285#ifdef CONFIG_PM
286static int stmmac_pltfr_suspend(struct device *dev)
287{
Srinivas Kandagatla33a23e22014-01-16 10:52:44 +0000288 int ret;
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000289 struct net_device *ndev = dev_get_drvdata(dev);
Srinivas Kandagatla33a23e22014-01-16 10:52:44 +0000290 struct stmmac_priv *priv = netdev_priv(ndev);
291 struct platform_device *pdev = to_platform_device(dev);
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000292
Srinivas Kandagatla33a23e22014-01-16 10:52:44 +0000293 ret = stmmac_suspend(ndev);
294 if (priv->plat->exit)
Chen-Yu Tsai938dfda2014-01-17 21:24:42 +0800295 priv->plat->exit(pdev, priv->plat->bsp_priv);
Srinivas Kandagatla33a23e22014-01-16 10:52:44 +0000296
297 return ret;
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000298}
299
300static int stmmac_pltfr_resume(struct device *dev)
301{
302 struct net_device *ndev = dev_get_drvdata(dev);
Srinivas Kandagatla33a23e22014-01-16 10:52:44 +0000303 struct stmmac_priv *priv = netdev_priv(ndev);
304 struct platform_device *pdev = to_platform_device(dev);
305
306 if (priv->plat->init)
Chen-Yu Tsai938dfda2014-01-17 21:24:42 +0800307 priv->plat->init(pdev, priv->plat->bsp_priv);
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000308
309 return stmmac_resume(ndev);
310}
311
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000312#endif /* CONFIG_PM */
313
Srinivas Kandagatla33a23e22014-01-16 10:52:44 +0000314static SIMPLE_DEV_PM_OPS(stmmac_pltfr_pm_ops,
315 stmmac_pltfr_suspend, stmmac_pltfr_resume);
316
Giuseppe CAVALLAROba27ec62012-06-04 19:22:57 +0000317struct platform_driver stmmac_pltfr_driver = {
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000318 .probe = stmmac_pltfr_probe,
319 .remove = stmmac_pltfr_remove,
320 .driver = {
321 .name = STMMAC_RESOURCE_NAME,
322 .owner = THIS_MODULE,
323 .pm = &stmmac_pltfr_pm_ops,
Stefan Roese6a228452012-03-13 04:56:37 +0000324 .of_match_table = of_match_ptr(stmmac_dt_ids),
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000325 },
326};
327
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000328MODULE_DESCRIPTION("STMMAC 10/100/1000 Ethernet PLATFORM driver");
329MODULE_AUTHOR("Giuseppe Cavallaro <peppe.cavallaro@st.com>");
330MODULE_LICENSE("GPL");