stmmac: convert dwmac-socfpga to platform driver
authorJoachim Eastwood <manabian@gmail.com>
Thu, 14 May 2015 10:11:03 +0000 (12:11 +0200)
committerDavid S. Miller <davem@davemloft.net>
Fri, 15 May 2015 16:44:22 +0000 (12:44 -0400)
Convert platform glue layer into a proper platform
driver and add it to the build system.

Signed-off-by: Joachim Eastwood <manabian@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/stmicro/stmmac/Kconfig
drivers/net/ethernet/stmicro/stmmac/Makefile
drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c
drivers/net/ethernet/stmicro/stmmac/stmmac_platform.h

index cb984606a819c2bc604debb2751c4f842093e9d6..f103e57e3ac0c5a3092139a68ec38ea09f0f859d 100644 (file)
@@ -66,6 +66,18 @@ config DWMAC_ROCKCHIP
          This selects the Rockchip RK3288 SoC glue layer support for
          the stmmac device driver.
 
+config DWMAC_SOCFPGA
+       tristate "SOCFPGA dwmac support"
+       default ARCH_SOCFPGA
+       depends on OF
+       select MFD_SYSCON
+       help
+         Support for ethernet controller on Altera SOCFPGA
+
+         This selects the Altera SOCFPGA SoC glue layer support
+         for the stmmac device driver. This driver is used for
+         arria5 and cyclone5 FPGA SoCs.
+
 endif
 
 config STMMAC_PCI
index e67dea423324e0fb71080cf1904c6c82bbdc50d2..690741d6fc1061ef1100b94b0d2b331b18c40950 100644 (file)
@@ -9,9 +9,10 @@ obj-$(CONFIG_STMMAC_PLATFORM)  += stmmac-platform.o
 obj-$(CONFIG_DWMAC_LPC18XX)    += dwmac-lpc18xx.o
 obj-$(CONFIG_DWMAC_MESON)      += dwmac-meson.o
 obj-$(CONFIG_DWMAC_ROCKCHIP)   += dwmac-rk.o
+obj-$(CONFIG_DWMAC_SOCFPGA)    += dwmac-socfpga.o
 obj-$(CONFIG_DWMAC_GENERIC)    += dwmac-generic.o
 stmmac-platform-objs:= stmmac_platform.o dwmac-sunxi.o \
-                      dwmac-sti.o dwmac-socfpga.o
+                      dwmac-sti.o
 
 obj-$(CONFIG_STMMAC_PCI) += stmmac-pci.o
 stmmac-pci-objs:= stmmac_pci.o
index 5a36bd2c7837d3f4c84e9344ba6bc040e872af2c..8141c5b844ae681160fbf44b69e37f359492db85 100644 (file)
@@ -257,9 +257,28 @@ static int socfpga_dwmac_init(struct platform_device *pdev, void *priv)
        return ret;
 }
 
-const struct stmmac_of_data socfpga_gmac_data = {
+static const struct stmmac_of_data socfpga_gmac_data = {
        .setup = socfpga_dwmac_probe,
        .init = socfpga_dwmac_init,
        .exit = socfpga_dwmac_exit,
        .fix_mac_speed = socfpga_dwmac_fix_mac_speed,
 };
+
+static const struct of_device_id socfpga_dwmac_match[] = {
+       { .compatible = "altr,socfpga-stmmac", .data = &socfpga_gmac_data },
+       { }
+};
+MODULE_DEVICE_TABLE(of, socfpga_dwmac_match);
+
+static struct platform_driver socfpga_dwmac_driver = {
+       .probe  = stmmac_pltfr_probe,
+       .remove = stmmac_pltfr_remove,
+       .driver = {
+               .name           = "socfpga-dwmac",
+               .pm             = &stmmac_pltfr_pm_ops,
+               .of_match_table = socfpga_dwmac_match,
+       },
+};
+module_platform_driver(socfpga_dwmac_driver);
+
+MODULE_LICENSE("GPL v2");
index 674f7bd1641a58d5e0f51fe22c87f6a8e319f8d3..4553b50833ea0539a7f2c017f76f7ad9b6889589 100644 (file)
@@ -39,7 +39,6 @@ static const struct of_device_id stmmac_dt_ids[] = {
        { .compatible = "st,stih416-dwmac", .data = &stih4xx_dwmac_data},
        { .compatible = "st,stid127-dwmac", .data = &stid127_dwmac_data},
        { .compatible = "st,stih407-dwmac", .data = &stih4xx_dwmac_data},
-       { .compatible = "altr,socfpga-stmmac", .data = &socfpga_gmac_data },
        { /* sentinel */ }
 };
 MODULE_DEVICE_TABLE(of, stmmac_dt_ids);
index fff2a885ffd8877fdcab033635e1c1d0f64e376f..3c8d7088361f93366d54bec91974ece4e85c7b92 100644 (file)
@@ -26,6 +26,5 @@ extern const struct dev_pm_ops stmmac_pltfr_pm_ops;
 extern const struct stmmac_of_data sun7i_gmac_data;
 extern const struct stmmac_of_data stih4xx_dwmac_data;
 extern const struct stmmac_of_data stid127_dwmac_data;
-extern const struct stmmac_of_data socfpga_gmac_data;
 
 #endif /* __STMMAC_PLATFORM_H__ */
This page took 0.030276 seconds and 5 git commands to generate.