stmmac: convert dwmac-meson to platform driver
[linux-2.6/btrfs-unstable.git] / drivers / net / ethernet / stmicro / stmmac / stmmac_platform.c
blobbed31e4db7e355f00fb506d59125df4a3503fac4
1 /*******************************************************************************
2 This contains the functions to handle the platform driver.
4 Copyright (C) 2007-2011 STMicroelectronics Ltd
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.
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.
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.
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
22 Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
23 *******************************************************************************/
25 #include <linux/platform_device.h>
26 #include <linux/module.h>
27 #include <linux/io.h>
28 #include <linux/of.h>
29 #include <linux/of_net.h>
30 #include <linux/of_device.h>
32 #include "stmmac.h"
33 #include "stmmac_platform.h"
35 static const struct of_device_id stmmac_dt_ids[] = {
36 /* SoC specific glue layers should come before generic bindings */
37 { .compatible = "rockchip,rk3288-gmac", .data = &rk3288_gmac_data},
38 { .compatible = "allwinner,sun7i-a20-gmac", .data = &sun7i_gmac_data},
39 { .compatible = "st,stih415-dwmac", .data = &stih4xx_dwmac_data},
40 { .compatible = "st,stih416-dwmac", .data = &stih4xx_dwmac_data},
41 { .compatible = "st,stid127-dwmac", .data = &stid127_dwmac_data},
42 { .compatible = "st,stih407-dwmac", .data = &stih4xx_dwmac_data},
43 { .compatible = "altr,socfpga-stmmac", .data = &socfpga_gmac_data },
44 { /* sentinel */ }
46 MODULE_DEVICE_TABLE(of, stmmac_dt_ids);
48 #ifdef CONFIG_OF
50 /**
51 * dwmac1000_validate_mcast_bins - validates the number of Multicast filter bins
52 * @mcast_bins: Multicast filtering bins
53 * Description:
54 * this function validates the number of Multicast filtering bins specified
55 * by the configuration through the device tree. The Synopsys GMAC supports
56 * 64 bins, 128 bins, or 256 bins. "bins" refer to the division of CRC
57 * number space. 64 bins correspond to 6 bits of the CRC, 128 corresponds
58 * to 7 bits, and 256 refers to 8 bits of the CRC. Any other setting is
59 * invalid and will cause the filtering algorithm to use Multicast
60 * promiscuous mode.
62 static int dwmac1000_validate_mcast_bins(int mcast_bins)
64 int x = mcast_bins;
66 switch (x) {
67 case HASH_TABLE_SIZE:
68 case 128:
69 case 256:
70 break;
71 default:
72 x = 0;
73 pr_info("Hash table entries set to unexpected value %d",
74 mcast_bins);
75 break;
77 return x;
80 /**
81 * dwmac1000_validate_ucast_entries - validate the Unicast address entries
82 * @ucast_entries: number of Unicast address entries
83 * Description:
84 * This function validates the number of Unicast address entries supported
85 * by a particular Synopsys 10/100/1000 controller. The Synopsys controller
86 * supports 1, 32, 64, or 128 Unicast filter entries for it's Unicast filter
87 * logic. This function validates a valid, supported configuration is
88 * selected, and defaults to 1 Unicast address if an unsupported
89 * configuration is selected.
91 static int dwmac1000_validate_ucast_entries(int ucast_entries)
93 int x = ucast_entries;
95 switch (x) {
96 case 1:
97 case 32:
98 case 64:
99 case 128:
100 break;
101 default:
102 x = 1;
103 pr_info("Unicast table entries set to unexpected value %d\n",
104 ucast_entries);
105 break;
107 return x;
111 * stmmac_probe_config_dt - parse device-tree driver parameters
112 * @pdev: platform_device structure
113 * @plat: driver data platform structure
114 * @mac: MAC address to use
115 * Description:
116 * this function is to read the driver parameters from device-tree and
117 * set some private fields that will be used by the main at runtime.
119 static int stmmac_probe_config_dt(struct platform_device *pdev,
120 struct plat_stmmacenet_data *plat,
121 const char **mac)
123 struct device_node *np = pdev->dev.of_node;
124 struct stmmac_dma_cfg *dma_cfg;
125 const struct of_device_id *device;
126 struct device *dev = &pdev->dev;
128 if (!np)
129 return -ENODEV;
131 device = of_match_device(dev->driver->of_match_table, dev);
132 if (!device)
133 return -ENODEV;
135 if (device->data) {
136 const struct stmmac_of_data *data = device->data;
137 plat->has_gmac = data->has_gmac;
138 plat->enh_desc = data->enh_desc;
139 plat->tx_coe = data->tx_coe;
140 plat->rx_coe = data->rx_coe;
141 plat->bugged_jumbo = data->bugged_jumbo;
142 plat->pmt = data->pmt;
143 plat->riwt_off = data->riwt_off;
144 plat->fix_mac_speed = data->fix_mac_speed;
145 plat->bus_setup = data->bus_setup;
146 plat->setup = data->setup;
147 plat->free = data->free;
148 plat->init = data->init;
149 plat->exit = data->exit;
152 *mac = of_get_mac_address(np);
153 plat->interface = of_get_phy_mode(np);
155 /* Get max speed of operation from device tree */
156 if (of_property_read_u32(np, "max-speed", &plat->max_speed))
157 plat->max_speed = -1;
159 plat->bus_id = of_alias_get_id(np, "ethernet");
160 if (plat->bus_id < 0)
161 plat->bus_id = 0;
163 /* Default to phy auto-detection */
164 plat->phy_addr = -1;
166 /* "snps,phy-addr" is not a standard property. Mark it as deprecated
167 * and warn of its use. Remove this when phy node support is added.
169 if (of_property_read_u32(np, "snps,phy-addr", &plat->phy_addr) == 0)
170 dev_warn(&pdev->dev, "snps,phy-addr property is deprecated\n");
172 if (plat->phy_bus_name)
173 plat->mdio_bus_data = NULL;
174 else
175 plat->mdio_bus_data =
176 devm_kzalloc(&pdev->dev,
177 sizeof(struct stmmac_mdio_bus_data),
178 GFP_KERNEL);
180 of_property_read_u32(np, "tx-fifo-depth", &plat->tx_fifo_size);
182 of_property_read_u32(np, "rx-fifo-depth", &plat->rx_fifo_size);
184 plat->force_sf_dma_mode =
185 of_property_read_bool(np, "snps,force_sf_dma_mode");
187 /* Set the maxmtu to a default of JUMBO_LEN in case the
188 * parameter is not present in the device tree.
190 plat->maxmtu = JUMBO_LEN;
193 * Currently only the properties needed on SPEAr600
194 * are provided. All other properties should be added
195 * once needed on other platforms.
197 if (of_device_is_compatible(np, "st,spear600-gmac") ||
198 of_device_is_compatible(np, "snps,dwmac-3.70a") ||
199 of_device_is_compatible(np, "snps,dwmac")) {
200 /* Note that the max-frame-size parameter as defined in the
201 * ePAPR v1.1 spec is defined as max-frame-size, it's
202 * actually used as the IEEE definition of MAC Client
203 * data, or MTU. The ePAPR specification is confusing as
204 * the definition is max-frame-size, but usage examples
205 * are clearly MTUs
207 of_property_read_u32(np, "max-frame-size", &plat->maxmtu);
208 of_property_read_u32(np, "snps,multicast-filter-bins",
209 &plat->multicast_filter_bins);
210 of_property_read_u32(np, "snps,perfect-filter-entries",
211 &plat->unicast_filter_entries);
212 plat->unicast_filter_entries = dwmac1000_validate_ucast_entries(
213 plat->unicast_filter_entries);
214 plat->multicast_filter_bins = dwmac1000_validate_mcast_bins(
215 plat->multicast_filter_bins);
216 plat->has_gmac = 1;
217 plat->pmt = 1;
220 if (of_device_is_compatible(np, "snps,dwmac-3.610") ||
221 of_device_is_compatible(np, "snps,dwmac-3.710")) {
222 plat->enh_desc = 1;
223 plat->bugged_jumbo = 1;
224 plat->force_sf_dma_mode = 1;
227 if (of_find_property(np, "snps,pbl", NULL)) {
228 dma_cfg = devm_kzalloc(&pdev->dev, sizeof(*dma_cfg),
229 GFP_KERNEL);
230 if (!dma_cfg)
231 return -ENOMEM;
232 plat->dma_cfg = dma_cfg;
233 of_property_read_u32(np, "snps,pbl", &dma_cfg->pbl);
234 dma_cfg->fixed_burst =
235 of_property_read_bool(np, "snps,fixed-burst");
236 dma_cfg->mixed_burst =
237 of_property_read_bool(np, "snps,mixed-burst");
238 of_property_read_u32(np, "snps,burst_len", &dma_cfg->burst_len);
239 if (dma_cfg->burst_len < 0 || dma_cfg->burst_len > 256)
240 dma_cfg->burst_len = 0;
242 plat->force_thresh_dma_mode = of_property_read_bool(np, "snps,force_thresh_dma_mode");
243 if (plat->force_thresh_dma_mode) {
244 plat->force_sf_dma_mode = 0;
245 pr_warn("force_sf_dma_mode is ignored if force_thresh_dma_mode is set.");
248 return 0;
250 #else
251 static int stmmac_probe_config_dt(struct platform_device *pdev,
252 struct plat_stmmacenet_data *plat,
253 const char **mac)
255 return -ENOSYS;
257 #endif /* CONFIG_OF */
260 * stmmac_pltfr_probe - platform driver probe.
261 * @pdev: platform device pointer
262 * Description: platform_device probe function. It is to allocate
263 * the necessary platform resources, invoke custom helper (if required) and
264 * invoke the main probe function.
266 int stmmac_pltfr_probe(struct platform_device *pdev)
268 int ret = 0;
269 struct resource *res;
270 struct device *dev = &pdev->dev;
271 void __iomem *addr = NULL;
272 struct stmmac_priv *priv = NULL;
273 struct plat_stmmacenet_data *plat_dat = NULL;
274 const char *mac = NULL;
275 int irq, wol_irq, lpi_irq;
277 /* Get IRQ information early to have an ability to ask for deferred
278 * probe if needed before we went too far with resource allocation.
280 irq = platform_get_irq_byname(pdev, "macirq");
281 if (irq < 0) {
282 if (irq != -EPROBE_DEFER) {
283 dev_err(dev,
284 "MAC IRQ configuration information not found\n");
286 return irq;
289 /* On some platforms e.g. SPEAr the wake up irq differs from the mac irq
290 * The external wake up irq can be passed through the platform code
291 * named as "eth_wake_irq"
293 * In case the wake up interrupt is not passed from the platform
294 * so the driver will continue to use the mac irq (ndev->irq)
296 wol_irq = platform_get_irq_byname(pdev, "eth_wake_irq");
297 if (wol_irq < 0) {
298 if (wol_irq == -EPROBE_DEFER)
299 return -EPROBE_DEFER;
300 wol_irq = irq;
303 lpi_irq = platform_get_irq_byname(pdev, "eth_lpi");
304 if (lpi_irq == -EPROBE_DEFER)
305 return -EPROBE_DEFER;
307 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
308 addr = devm_ioremap_resource(dev, res);
309 if (IS_ERR(addr))
310 return PTR_ERR(addr);
312 plat_dat = dev_get_platdata(&pdev->dev);
314 if (!plat_dat)
315 plat_dat = devm_kzalloc(&pdev->dev,
316 sizeof(struct plat_stmmacenet_data),
317 GFP_KERNEL);
318 if (!plat_dat) {
319 pr_err("%s: ERROR: no memory", __func__);
320 return -ENOMEM;
323 /* Set default value for multicast hash bins */
324 plat_dat->multicast_filter_bins = HASH_TABLE_SIZE;
326 /* Set default value for unicast filter entries */
327 plat_dat->unicast_filter_entries = 1;
329 if (pdev->dev.of_node) {
330 ret = stmmac_probe_config_dt(pdev, plat_dat, &mac);
331 if (ret) {
332 pr_err("%s: main dt probe failed", __func__);
333 return ret;
337 /* Custom setup (if needed) */
338 if (plat_dat->setup) {
339 plat_dat->bsp_priv = plat_dat->setup(pdev);
340 if (IS_ERR(plat_dat->bsp_priv))
341 return PTR_ERR(plat_dat->bsp_priv);
344 /* Custom initialisation (if needed)*/
345 if (plat_dat->init) {
346 ret = plat_dat->init(pdev, plat_dat->bsp_priv);
347 if (unlikely(ret))
348 return ret;
351 priv = stmmac_dvr_probe(&(pdev->dev), plat_dat, addr);
352 if (IS_ERR(priv)) {
353 pr_err("%s: main driver probe failed", __func__);
354 return PTR_ERR(priv);
357 /* Copy IRQ values to priv structure which is now avaialble */
358 priv->dev->irq = irq;
359 priv->wol_irq = wol_irq;
360 priv->lpi_irq = lpi_irq;
362 /* Get MAC address if available (DT) */
363 if (mac)
364 memcpy(priv->dev->dev_addr, mac, ETH_ALEN);
366 platform_set_drvdata(pdev, priv->dev);
368 pr_debug("STMMAC platform driver registration completed");
370 return 0;
372 EXPORT_SYMBOL_GPL(stmmac_pltfr_probe);
375 * stmmac_pltfr_remove
376 * @pdev: platform device pointer
377 * Description: this function calls the main to free the net resources
378 * and calls the platforms hook and release the resources (e.g. mem).
380 int stmmac_pltfr_remove(struct platform_device *pdev)
382 struct net_device *ndev = platform_get_drvdata(pdev);
383 struct stmmac_priv *priv = netdev_priv(ndev);
384 int ret = stmmac_dvr_remove(ndev);
386 if (priv->plat->exit)
387 priv->plat->exit(pdev, priv->plat->bsp_priv);
389 if (priv->plat->free)
390 priv->plat->free(pdev, priv->plat->bsp_priv);
392 return ret;
394 EXPORT_SYMBOL_GPL(stmmac_pltfr_remove);
396 #ifdef CONFIG_PM_SLEEP
398 * stmmac_pltfr_suspend
399 * @dev: device pointer
400 * Description: this function is invoked when suspend the driver and it direcly
401 * call the main suspend function and then, if required, on some platform, it
402 * can call an exit helper.
404 static int stmmac_pltfr_suspend(struct device *dev)
406 int ret;
407 struct net_device *ndev = dev_get_drvdata(dev);
408 struct stmmac_priv *priv = netdev_priv(ndev);
409 struct platform_device *pdev = to_platform_device(dev);
411 ret = stmmac_suspend(ndev);
412 if (priv->plat->exit)
413 priv->plat->exit(pdev, priv->plat->bsp_priv);
415 return ret;
419 * stmmac_pltfr_resume
420 * @dev: device pointer
421 * Description: this function is invoked when resume the driver before calling
422 * the main resume function, on some platforms, it can call own init helper
423 * if required.
425 static int stmmac_pltfr_resume(struct device *dev)
427 struct net_device *ndev = dev_get_drvdata(dev);
428 struct stmmac_priv *priv = netdev_priv(ndev);
429 struct platform_device *pdev = to_platform_device(dev);
431 if (priv->plat->init)
432 priv->plat->init(pdev, priv->plat->bsp_priv);
434 return stmmac_resume(ndev);
436 #endif /* CONFIG_PM_SLEEP */
438 SIMPLE_DEV_PM_OPS(stmmac_pltfr_pm_ops, stmmac_pltfr_suspend,
439 stmmac_pltfr_resume);
440 EXPORT_SYMBOL_GPL(stmmac_pltfr_pm_ops);
442 static struct platform_driver stmmac_pltfr_driver = {
443 .probe = stmmac_pltfr_probe,
444 .remove = stmmac_pltfr_remove,
445 .driver = {
446 .name = STMMAC_RESOURCE_NAME,
447 .pm = &stmmac_pltfr_pm_ops,
448 .of_match_table = of_match_ptr(stmmac_dt_ids),
452 module_platform_driver(stmmac_pltfr_driver);
454 MODULE_DESCRIPTION("STMMAC 10/100/1000 Ethernet PLATFORM driver");
455 MODULE_AUTHOR("Giuseppe Cavallaro <peppe.cavallaro@st.com>");
456 MODULE_LICENSE("GPL");