2015-05-14 17:10:59 +07:00
|
|
|
/*
|
|
|
|
* Generic DWMAC platform driver
|
|
|
|
*
|
2015-05-14 17:11:06 +07:00
|
|
|
* Copyright (C) 2007-2011 STMicroelectronics Ltd
|
2015-05-14 17:10:59 +07:00
|
|
|
* Copyright (C) 2015 Joachim Eastwood <manabian@gmail.com>
|
|
|
|
*
|
|
|
|
* This file is licensed under the terms of the GNU General Public
|
|
|
|
* License version 2. This program is licensed "as is" without any
|
|
|
|
* warranty of any kind, whether express or implied.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/of.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
|
2015-05-14 17:11:06 +07:00
|
|
|
#include "stmmac.h"
|
2015-05-14 17:10:59 +07:00
|
|
|
#include "stmmac_platform.h"
|
|
|
|
|
2015-07-29 05:08:57 +07:00
|
|
|
static int dwmac_generic_probe(struct platform_device *pdev)
|
|
|
|
{
|
|
|
|
struct plat_stmmacenet_data *plat_dat;
|
|
|
|
struct stmmac_resources stmmac_res;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = stmmac_get_platform_resources(pdev, &stmmac_res);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
if (pdev->dev.of_node) {
|
|
|
|
plat_dat = stmmac_probe_config_dt(pdev, &stmmac_res.mac);
|
|
|
|
if (IS_ERR(plat_dat)) {
|
|
|
|
dev_err(&pdev->dev, "dt configuration failed\n");
|
|
|
|
return PTR_ERR(plat_dat);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
plat_dat = dev_get_platdata(&pdev->dev);
|
|
|
|
if (!plat_dat) {
|
|
|
|
dev_err(&pdev->dev, "no platform data provided\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set default value for multicast hash bins */
|
|
|
|
plat_dat->multicast_filter_bins = HASH_TABLE_SIZE;
|
|
|
|
|
|
|
|
/* Set default value for unicast filter entries */
|
|
|
|
plat_dat->unicast_filter_entries = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Custom initialisation (if needed) */
|
|
|
|
if (plat_dat->init) {
|
|
|
|
ret = plat_dat->init(pdev, plat_dat->bsp_priv);
|
|
|
|
if (ret)
|
2016-11-30 21:29:55 +07:00
|
|
|
goto err_remove_config_dt;
|
2015-07-29 05:08:57 +07:00
|
|
|
}
|
|
|
|
|
2016-11-30 21:29:52 +07:00
|
|
|
ret = stmmac_dvr_probe(&pdev->dev, plat_dat, &stmmac_res);
|
|
|
|
if (ret)
|
|
|
|
goto err_exit;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err_exit:
|
|
|
|
if (plat_dat->exit)
|
|
|
|
plat_dat->exit(pdev, plat_dat->bsp_priv);
|
2016-11-30 21:29:55 +07:00
|
|
|
err_remove_config_dt:
|
|
|
|
if (pdev->dev.of_node)
|
|
|
|
stmmac_remove_config_dt(pdev, plat_dat);
|
2016-11-30 21:29:52 +07:00
|
|
|
|
|
|
|
return ret;
|
2015-07-29 05:08:57 +07:00
|
|
|
}
|
|
|
|
|
2015-05-14 17:10:59 +07:00
|
|
|
static const struct of_device_id dwmac_generic_match[] = {
|
|
|
|
{ .compatible = "st,spear600-gmac"},
|
net: stmmac: dwmac-generic: add missing compatible strings
devicetree binding for stmmac states:
- compatible: Should be "snps,dwmac-<ip_version>", "snps,dwmac"
For backwards compatibility: "st,spear600-gmac" is also supported.
Since dwmac-generic.c calls stmmac_probe_config_dt explicitly,
another alternative would have been to remove all compatible strings
other than "snps,dwmac" and "st,spear600-gmac" from dwmac-generic.c.
However, that would probably do more good than harm, since when trying
to figure out what hardware a certain driver supports, you usually look
at the compatible strings in the struct of_device_id, and not in some
function defined in a completely different file.
No functional change intended.
Signed-off-by: Niklas Cassel <niklas.cassel@axis.com>
Acked-by: Giuseppe Cavallaro <peppe.cavallaro@st.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2016-12-07 19:41:07 +07:00
|
|
|
{ .compatible = "snps,dwmac-3.50a"},
|
2015-05-14 17:10:59 +07:00
|
|
|
{ .compatible = "snps,dwmac-3.610"},
|
|
|
|
{ .compatible = "snps,dwmac-3.70a"},
|
|
|
|
{ .compatible = "snps,dwmac-3.710"},
|
net: stmmac: dwmac-generic: add missing compatible strings
devicetree binding for stmmac states:
- compatible: Should be "snps,dwmac-<ip_version>", "snps,dwmac"
For backwards compatibility: "st,spear600-gmac" is also supported.
Since dwmac-generic.c calls stmmac_probe_config_dt explicitly,
another alternative would have been to remove all compatible strings
other than "snps,dwmac" and "st,spear600-gmac" from dwmac-generic.c.
However, that would probably do more good than harm, since when trying
to figure out what hardware a certain driver supports, you usually look
at the compatible strings in the struct of_device_id, and not in some
function defined in a completely different file.
No functional change intended.
Signed-off-by: Niklas Cassel <niklas.cassel@axis.com>
Acked-by: Giuseppe Cavallaro <peppe.cavallaro@st.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2016-12-07 19:41:07 +07:00
|
|
|
{ .compatible = "snps,dwmac-4.00"},
|
|
|
|
{ .compatible = "snps,dwmac-4.10a"},
|
2015-05-14 17:10:59 +07:00
|
|
|
{ .compatible = "snps,dwmac"},
|
2018-08-08 15:04:36 +07:00
|
|
|
{ .compatible = "snps,dwxgmac-2.10"},
|
|
|
|
{ .compatible = "snps,dwxgmac"},
|
2015-05-14 17:10:59 +07:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(of, dwmac_generic_match);
|
|
|
|
|
|
|
|
static struct platform_driver dwmac_generic_driver = {
|
2015-07-29 05:08:57 +07:00
|
|
|
.probe = dwmac_generic_probe,
|
2015-05-14 17:10:59 +07:00
|
|
|
.remove = stmmac_pltfr_remove,
|
|
|
|
.driver = {
|
2015-05-14 17:11:06 +07:00
|
|
|
.name = STMMAC_RESOURCE_NAME,
|
2015-05-14 17:10:59 +07:00
|
|
|
.pm = &stmmac_pltfr_pm_ops,
|
|
|
|
.of_match_table = of_match_ptr(dwmac_generic_match),
|
|
|
|
},
|
|
|
|
};
|
|
|
|
module_platform_driver(dwmac_generic_driver);
|
|
|
|
|
|
|
|
MODULE_DESCRIPTION("Generic dwmac driver");
|
|
|
|
MODULE_LICENSE("GPL v2");
|