Commit 2771399a authored by Gerhard Sittig's avatar Gerhard Sittig Committed by David S. Miller

fs_enet: cleanup clock API use

make the Freescale ethernet driver get, prepare and enable the FEC clock
during probe(); disable and unprepare the clock upon remove(), put is
done by the devm approach; hold a reference to the clock over the period
of use.

clock lookup is non-fatal as not all platforms provide clock specs in
their device tree; failure to enable specified clocks is fatal.
Signed-off-by: default avatarGerhard Sittig <gsi@denx.de>
Signed-off-by: default avatarAnatolij Gustschin <agust@denx.de>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 35b9eb0e
...@@ -999,6 +999,8 @@ static int fs_enet_probe(struct platform_device *ofdev) ...@@ -999,6 +999,8 @@ static int fs_enet_probe(struct platform_device *ofdev)
struct fs_enet_private *fep; struct fs_enet_private *fep;
struct fs_platform_info *fpi; struct fs_platform_info *fpi;
const u32 *data; const u32 *data;
struct clk *clk;
int err;
const u8 *mac_addr; const u8 *mac_addr;
const char *phy_connection_type; const char *phy_connection_type;
int privsize, len, ret = -ENODEV; int privsize, len, ret = -ENODEV;
...@@ -1036,6 +1038,20 @@ static int fs_enet_probe(struct platform_device *ofdev) ...@@ -1036,6 +1038,20 @@ static int fs_enet_probe(struct platform_device *ofdev)
fpi->use_rmii = 1; fpi->use_rmii = 1;
} }
/* make clock lookup non-fatal (the driver is shared among platforms),
* but require enable to succeed when a clock was specified/found,
* keep a reference to the clock upon successful acquisition
*/
clk = devm_clk_get(&ofdev->dev, "per");
if (!IS_ERR(clk)) {
err = clk_prepare_enable(clk);
if (err) {
ret = err;
goto out_free_fpi;
}
fpi->clk_per = clk;
}
privsize = sizeof(*fep) + privsize = sizeof(*fep) +
sizeof(struct sk_buff **) * sizeof(struct sk_buff **) *
(fpi->rx_ring + fpi->tx_ring); (fpi->rx_ring + fpi->tx_ring);
...@@ -1107,6 +1123,8 @@ static int fs_enet_probe(struct platform_device *ofdev) ...@@ -1107,6 +1123,8 @@ static int fs_enet_probe(struct platform_device *ofdev)
free_netdev(ndev); free_netdev(ndev);
out_put: out_put:
of_node_put(fpi->phy_node); of_node_put(fpi->phy_node);
if (fpi->clk_per)
clk_disable_unprepare(fpi->clk_per);
out_free_fpi: out_free_fpi:
kfree(fpi); kfree(fpi);
return ret; return ret;
...@@ -1123,6 +1141,8 @@ static int fs_enet_remove(struct platform_device *ofdev) ...@@ -1123,6 +1141,8 @@ static int fs_enet_remove(struct platform_device *ofdev)
fep->ops->cleanup_data(ndev); fep->ops->cleanup_data(ndev);
dev_set_drvdata(fep->dev, NULL); dev_set_drvdata(fep->dev, NULL);
of_node_put(fep->fpi->phy_node); of_node_put(fep->fpi->phy_node);
if (fep->fpi->clk_per)
clk_disable_unprepare(fep->fpi->clk_per);
free_netdev(ndev); free_netdev(ndev);
return 0; return 0;
} }
......
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
#ifndef FS_ENET_PD_H #ifndef FS_ENET_PD_H
#define FS_ENET_PD_H #define FS_ENET_PD_H
#include <linux/clk.h>
#include <linux/string.h> #include <linux/string.h>
#include <linux/of_mdio.h> #include <linux/of_mdio.h>
#include <linux/if_ether.h> #include <linux/if_ether.h>
...@@ -143,6 +144,8 @@ struct fs_platform_info { ...@@ -143,6 +144,8 @@ struct fs_platform_info {
int use_rmii; /* use RMII mode */ int use_rmii; /* use RMII mode */
int has_phy; /* if the network is phy container as well...*/ int has_phy; /* if the network is phy container as well...*/
struct clk *clk_per; /* 'per' clock for register access */
}; };
struct fs_mii_fec_platform_info { struct fs_mii_fec_platform_info {
u32 irq[32]; u32 irq[32];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment