]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
net: ravb: Support multiple clocks
authorAdam Ford <aford173@gmail.com>
Mon, 6 Dec 2021 16:29:26 +0000 (10:29 -0600)
committerMarek Vasut <marek.vasut+renesas@gmail.com>
Sun, 12 Dec 2021 23:37:28 +0000 (00:37 +0100)
The RZ/G2 series uses an external clock as a reference to the AVB.
If this clock is controlled by an external programmable clock,
it must be requested by the consumer or it will not turn on.
In order to do this, update the driver to use bulk enable and
disable functions to enable clocks for boards with multiple clocks.

Signed-off-by: Adam Ford <aford173@gmail.com>
drivers/net/ravb.c

index 6953b7286a399281351cd7cd40bcfd73599035ec..1d1118c34134e9e74f40ceace6599d0424d8e12b 100644 (file)
@@ -129,7 +129,7 @@ struct ravb_priv {
        struct phy_device       *phydev;
        struct mii_dev          *bus;
        void __iomem            *iobase;
-       struct clk              clk;
+       struct clk_bulk         clks;
        struct gpio_desc        reset_gpio;
 };
 
@@ -485,7 +485,7 @@ static int ravb_probe(struct udevice *dev)
        iobase = map_physmem(pdata->iobase, 0x1000, MAP_NOCACHE);
        eth->iobase = iobase;
 
-       ret = clk_get_by_index(dev, 0, &eth->clk);
+       ret = clk_get_bulk(dev, &eth->clks);
        if (ret < 0)
                goto err_mdio_alloc;
 
@@ -518,7 +518,7 @@ static int ravb_probe(struct udevice *dev)
        eth->bus = miiphy_get_dev_by_name(dev->name);
 
        /* Bring up PHY */
-       ret = clk_enable(&eth->clk);
+       ret = clk_enable_bulk(&eth->clks);
        if (ret)
                goto err_mdio_register;
 
@@ -533,7 +533,7 @@ static int ravb_probe(struct udevice *dev)
        return 0;
 
 err_mdio_reset:
-       clk_disable(&eth->clk);
+       clk_release_bulk(&eth->clks);
 err_mdio_register:
        mdio_free(mdiodev);
 err_mdio_alloc:
@@ -545,7 +545,7 @@ static int ravb_remove(struct udevice *dev)
 {
        struct ravb_priv *eth = dev_get_priv(dev);
 
-       clk_disable(&eth->clk);
+       clk_release_bulk(&eth->clks);
 
        free(eth->phydev);
        mdio_unregister(eth->bus);