|
@@ -16,6 +16,53 @@
|
|
#include "stmmac.h"
|
|
#include "stmmac.h"
|
|
#include "stmmac_platform.h"
|
|
#include "stmmac_platform.h"
|
|
|
|
|
|
|
|
+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 setup (if needed) */
|
|
|
|
+ if (plat_dat->setup) {
|
|
|
|
+ plat_dat->bsp_priv = plat_dat->setup(pdev);
|
|
|
|
+ if (IS_ERR(plat_dat->bsp_priv))
|
|
|
|
+ return PTR_ERR(plat_dat->bsp_priv);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /* Custom initialisation (if needed) */
|
|
|
|
+ if (plat_dat->init) {
|
|
|
|
+ ret = plat_dat->init(pdev, plat_dat->bsp_priv);
|
|
|
|
+ if (ret)
|
|
|
|
+ return ret;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return stmmac_dvr_probe(&pdev->dev, plat_dat, &stmmac_res);
|
|
|
|
+}
|
|
|
|
+
|
|
static const struct of_device_id dwmac_generic_match[] = {
|
|
static const struct of_device_id dwmac_generic_match[] = {
|
|
{ .compatible = "st,spear600-gmac"},
|
|
{ .compatible = "st,spear600-gmac"},
|
|
{ .compatible = "snps,dwmac-3.610"},
|
|
{ .compatible = "snps,dwmac-3.610"},
|
|
@@ -27,7 +74,7 @@ static const struct of_device_id dwmac_generic_match[] = {
|
|
MODULE_DEVICE_TABLE(of, dwmac_generic_match);
|
|
MODULE_DEVICE_TABLE(of, dwmac_generic_match);
|
|
|
|
|
|
static struct platform_driver dwmac_generic_driver = {
|
|
static struct platform_driver dwmac_generic_driver = {
|
|
- .probe = stmmac_pltfr_probe,
|
|
|
|
|
|
+ .probe = dwmac_generic_probe,
|
|
.remove = stmmac_pltfr_remove,
|
|
.remove = stmmac_pltfr_remove,
|
|
.driver = {
|
|
.driver = {
|
|
.name = STMMAC_RESOURCE_NAME,
|
|
.name = STMMAC_RESOURCE_NAME,
|