net: sun4i-emac: Claim emac sram
Claim the emac sram ourselves, rather then relying on the bootloader having mapped the sram to the emac controller during boot. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
2c0027cd54
commit
542a64c707
|
@ -28,6 +28,7 @@
|
||||||
#include <linux/of_platform.h>
|
#include <linux/of_platform.h>
|
||||||
#include <linux/platform_device.h>
|
#include <linux/platform_device.h>
|
||||||
#include <linux/phy.h>
|
#include <linux/phy.h>
|
||||||
|
#include <linux/soc/sunxi/sunxi_sram.h>
|
||||||
|
|
||||||
#include "sun4i-emac.h"
|
#include "sun4i-emac.h"
|
||||||
|
|
||||||
|
@ -857,11 +858,17 @@ static int emac_probe(struct platform_device *pdev)
|
||||||
|
|
||||||
clk_prepare_enable(db->clk);
|
clk_prepare_enable(db->clk);
|
||||||
|
|
||||||
|
ret = sunxi_sram_claim(&pdev->dev);
|
||||||
|
if (ret) {
|
||||||
|
dev_err(&pdev->dev, "Error couldn't map SRAM to device\n");
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
db->phy_node = of_parse_phandle(np, "phy", 0);
|
db->phy_node = of_parse_phandle(np, "phy", 0);
|
||||||
if (!db->phy_node) {
|
if (!db->phy_node) {
|
||||||
dev_err(&pdev->dev, "no associated PHY\n");
|
dev_err(&pdev->dev, "no associated PHY\n");
|
||||||
ret = -ENODEV;
|
ret = -ENODEV;
|
||||||
goto out;
|
goto out_release_sram;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Read MAC-address from DT */
|
/* Read MAC-address from DT */
|
||||||
|
@ -893,7 +900,7 @@ static int emac_probe(struct platform_device *pdev)
|
||||||
if (ret) {
|
if (ret) {
|
||||||
dev_err(&pdev->dev, "Registering netdev failed!\n");
|
dev_err(&pdev->dev, "Registering netdev failed!\n");
|
||||||
ret = -ENODEV;
|
ret = -ENODEV;
|
||||||
goto out;
|
goto out_release_sram;
|
||||||
}
|
}
|
||||||
|
|
||||||
dev_info(&pdev->dev, "%s: at %p, IRQ %d MAC: %pM\n",
|
dev_info(&pdev->dev, "%s: at %p, IRQ %d MAC: %pM\n",
|
||||||
|
@ -901,6 +908,8 @@ static int emac_probe(struct platform_device *pdev)
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
out_release_sram:
|
||||||
|
sunxi_sram_release(&pdev->dev);
|
||||||
out:
|
out:
|
||||||
dev_err(db->dev, "not found (%d).\n", ret);
|
dev_err(db->dev, "not found (%d).\n", ret);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue