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
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>
28 #include <linux/of_net.h>
29 #include <linux/of_device.h>
32 static const struct of_device_id stmmac_dt_ids
[] = {
33 #ifdef CONFIG_DWMAC_SUNXI
34 { .compatible
= "allwinner,sun7i-a20-gmac", .data
= &sun7i_gmac_data
},
36 /* SoC specific glue layers should come before generic bindings */
37 { .compatible
= "st,spear600-gmac"},
38 { .compatible
= "snps,dwmac-3.610"},
39 { .compatible
= "snps,dwmac-3.70a"},
40 { .compatible
= "snps,dwmac-3.710"},
41 { .compatible
= "snps,dwmac"},
44 MODULE_DEVICE_TABLE(of
, stmmac_dt_ids
);
47 static int stmmac_probe_config_dt(struct platform_device
*pdev
,
48 struct plat_stmmacenet_data
*plat
,
51 struct device_node
*np
= pdev
->dev
.of_node
;
52 struct stmmac_dma_cfg
*dma_cfg
;
53 const struct of_device_id
*device
;
58 device
= of_match_device(stmmac_dt_ids
, &pdev
->dev
);
63 const struct stmmac_of_data
*data
= device
->data
;
64 plat
->has_gmac
= data
->has_gmac
;
65 plat
->enh_desc
= data
->enh_desc
;
66 plat
->tx_coe
= data
->tx_coe
;
67 plat
->rx_coe
= data
->rx_coe
;
68 plat
->bugged_jumbo
= data
->bugged_jumbo
;
69 plat
->pmt
= data
->pmt
;
70 plat
->riwt_off
= data
->riwt_off
;
71 plat
->fix_mac_speed
= data
->fix_mac_speed
;
72 plat
->bus_setup
= data
->bus_setup
;
73 plat
->setup
= data
->setup
;
74 plat
->free
= data
->free
;
75 plat
->init
= data
->init
;
76 plat
->exit
= data
->exit
;
79 *mac
= of_get_mac_address(np
);
80 plat
->interface
= of_get_phy_mode(np
);
82 /* Get max speed of operation from device tree */
83 if (of_property_read_u32(np
, "max-speed", &plat
->max_speed
))
86 plat
->bus_id
= of_alias_get_id(np
, "ethernet");
90 /* Default to phy auto-detection */
93 /* "snps,phy-addr" is not a standard property. Mark it as deprecated
94 * and warn of its use. Remove this when phy node support is added.
96 if (of_property_read_u32(np
, "snps,phy-addr", &plat
->phy_addr
) == 0)
97 dev_warn(&pdev
->dev
, "snps,phy-addr property is deprecated\n");
99 plat
->mdio_bus_data
= devm_kzalloc(&pdev
->dev
,
100 sizeof(struct stmmac_mdio_bus_data
),
103 plat
->force_sf_dma_mode
= of_property_read_bool(np
, "snps,force_sf_dma_mode");
105 /* Set the maxmtu to a default of JUMBO_LEN in case the
106 * parameter is not present in the device tree.
108 plat
->maxmtu
= JUMBO_LEN
;
111 * Currently only the properties needed on SPEAr600
112 * are provided. All other properties should be added
113 * once needed on other platforms.
115 if (of_device_is_compatible(np
, "st,spear600-gmac") ||
116 of_device_is_compatible(np
, "snps,dwmac-3.70a") ||
117 of_device_is_compatible(np
, "snps,dwmac")) {
118 /* Note that the max-frame-size parameter as defined in the
119 * ePAPR v1.1 spec is defined as max-frame-size, it's
120 * actually used as the IEEE definition of MAC Client
121 * data, or MTU. The ePAPR specification is confusing as
122 * the definition is max-frame-size, but usage examples
125 of_property_read_u32(np
, "max-frame-size", &plat
->maxmtu
);
130 if (of_device_is_compatible(np
, "snps,dwmac-3.610") ||
131 of_device_is_compatible(np
, "snps,dwmac-3.710")) {
133 plat
->bugged_jumbo
= 1;
134 plat
->force_sf_dma_mode
= 1;
137 if (of_find_property(np
, "snps,pbl", NULL
)) {
138 dma_cfg
= devm_kzalloc(&pdev
->dev
, sizeof(*dma_cfg
),
142 plat
->dma_cfg
= dma_cfg
;
143 of_property_read_u32(np
, "snps,pbl", &dma_cfg
->pbl
);
144 dma_cfg
->fixed_burst
=
145 of_property_read_bool(np
, "snps,fixed-burst");
146 dma_cfg
->mixed_burst
=
147 of_property_read_bool(np
, "snps,mixed-burst");
149 plat
->force_thresh_dma_mode
= of_property_read_bool(np
, "snps,force_thresh_dma_mode");
150 if (plat
->force_thresh_dma_mode
) {
151 plat
->force_sf_dma_mode
= 0;
152 pr_warn("force_sf_dma_mode is ignored if force_thresh_dma_mode is set.");
158 static int stmmac_probe_config_dt(struct platform_device
*pdev
,
159 struct plat_stmmacenet_data
*plat
,
164 #endif /* CONFIG_OF */
168 * @pdev: platform device pointer
169 * Description: platform_device probe function. It allocates
170 * the necessary resources and invokes the main to init
171 * the net device, register the mdio bus etc.
173 static int stmmac_pltfr_probe(struct platform_device
*pdev
)
176 struct resource
*res
;
177 struct device
*dev
= &pdev
->dev
;
178 void __iomem
*addr
= NULL
;
179 struct stmmac_priv
*priv
= NULL
;
180 struct plat_stmmacenet_data
*plat_dat
= NULL
;
181 const char *mac
= NULL
;
183 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
184 addr
= devm_ioremap_resource(dev
, res
);
186 return PTR_ERR(addr
);
188 plat_dat
= dev_get_platdata(&pdev
->dev
);
189 if (pdev
->dev
.of_node
) {
191 plat_dat
= devm_kzalloc(&pdev
->dev
,
192 sizeof(struct plat_stmmacenet_data
),
195 pr_err("%s: ERROR: no memory", __func__
);
199 ret
= stmmac_probe_config_dt(pdev
, plat_dat
, &mac
);
201 pr_err("%s: main dt probe failed", __func__
);
206 /* Custom setup (if needed) */
207 if (plat_dat
->setup
) {
208 plat_dat
->bsp_priv
= plat_dat
->setup(pdev
);
209 if (IS_ERR(plat_dat
->bsp_priv
))
210 return PTR_ERR(plat_dat
->bsp_priv
);
213 /* Custom initialisation (if needed)*/
214 if (plat_dat
->init
) {
215 ret
= plat_dat
->init(pdev
, plat_dat
->bsp_priv
);
220 priv
= stmmac_dvr_probe(&(pdev
->dev
), plat_dat
, addr
);
222 pr_err("%s: main driver probe failed", __func__
);
223 return PTR_ERR(priv
);
226 /* Get MAC address if available (DT) */
228 memcpy(priv
->dev
->dev_addr
, mac
, ETH_ALEN
);
230 /* Get the MAC information */
231 priv
->dev
->irq
= platform_get_irq_byname(pdev
, "macirq");
232 if (priv
->dev
->irq
== -ENXIO
) {
233 pr_err("%s: ERROR: MAC IRQ configuration "
234 "information not found\n", __func__
);
239 * On some platforms e.g. SPEAr the wake up irq differs from the mac irq
240 * The external wake up irq can be passed through the platform code
241 * named as "eth_wake_irq"
243 * In case the wake up interrupt is not passed from the platform
244 * so the driver will continue to use the mac irq (ndev->irq)
246 priv
->wol_irq
= platform_get_irq_byname(pdev
, "eth_wake_irq");
247 if (priv
->wol_irq
== -ENXIO
)
248 priv
->wol_irq
= priv
->dev
->irq
;
250 priv
->lpi_irq
= platform_get_irq_byname(pdev
, "eth_lpi");
252 platform_set_drvdata(pdev
, priv
->dev
);
254 pr_debug("STMMAC platform driver registration completed");
260 * stmmac_pltfr_remove
261 * @pdev: platform device pointer
262 * Description: this function calls the main to free the net resources
263 * and calls the platforms hook and release the resources (e.g. mem).
265 static int stmmac_pltfr_remove(struct platform_device
*pdev
)
267 struct net_device
*ndev
= platform_get_drvdata(pdev
);
268 struct stmmac_priv
*priv
= netdev_priv(ndev
);
269 int ret
= stmmac_dvr_remove(ndev
);
271 if (priv
->plat
->exit
)
272 priv
->plat
->exit(pdev
, priv
->plat
->bsp_priv
);
274 if (priv
->plat
->free
)
275 priv
->plat
->free(pdev
, priv
->plat
->bsp_priv
);
281 static int stmmac_pltfr_suspend(struct device
*dev
)
284 struct net_device
*ndev
= dev_get_drvdata(dev
);
285 struct stmmac_priv
*priv
= netdev_priv(ndev
);
286 struct platform_device
*pdev
= to_platform_device(dev
);
288 ret
= stmmac_suspend(ndev
);
289 if (priv
->plat
->exit
)
290 priv
->plat
->exit(pdev
, priv
->plat
->bsp_priv
);
295 static int stmmac_pltfr_resume(struct device
*dev
)
297 struct net_device
*ndev
= dev_get_drvdata(dev
);
298 struct stmmac_priv
*priv
= netdev_priv(ndev
);
299 struct platform_device
*pdev
= to_platform_device(dev
);
301 if (priv
->plat
->init
)
302 priv
->plat
->init(pdev
, priv
->plat
->bsp_priv
);
304 return stmmac_resume(ndev
);
307 #endif /* CONFIG_PM */
309 static SIMPLE_DEV_PM_OPS(stmmac_pltfr_pm_ops
,
310 stmmac_pltfr_suspend
, stmmac_pltfr_resume
);
312 struct platform_driver stmmac_pltfr_driver
= {
313 .probe
= stmmac_pltfr_probe
,
314 .remove
= stmmac_pltfr_remove
,
316 .name
= STMMAC_RESOURCE_NAME
,
317 .owner
= THIS_MODULE
,
318 .pm
= &stmmac_pltfr_pm_ops
,
319 .of_match_table
= of_match_ptr(stmmac_dt_ids
),
323 MODULE_DESCRIPTION("STMMAC 10/100/1000 Ethernet PLATFORM driver");
324 MODULE_AUTHOR("Giuseppe Cavallaro <peppe.cavallaro@st.com>");
325 MODULE_LICENSE("GPL");