Home
last modified time | relevance | path

Searched refs:clk_ext (Results 1 – 3 of 3) sorted by relevance

/Linux-v5.4/drivers/phy/socionext/
Dphy-uniphier-usb3ss.c55 struct clk *clk, *clk_ext, *clk_parent, *clk_parent_gio; member
110 ret = clk_prepare_enable(priv->clk_ext); in uniphier_u3ssphy_power_on()
135 clk_disable_unprepare(priv->clk_ext); in uniphier_u3ssphy_power_on()
149 clk_disable_unprepare(priv->clk_ext); in uniphier_u3ssphy_power_off()
241 priv->clk_ext = devm_clk_get_optional(dev, "phy-ext"); in uniphier_u3ssphy_probe()
242 if (IS_ERR(priv->clk_ext)) in uniphier_u3ssphy_probe()
243 return PTR_ERR(priv->clk_ext); in uniphier_u3ssphy_probe()
Dphy-uniphier-usb3hs.c69 struct clk *clk, *clk_parent, *clk_ext; member
205 ret = clk_prepare_enable(priv->clk_ext); in uniphier_u3hsphy_power_on()
230 clk_disable_unprepare(priv->clk_ext); in uniphier_u3hsphy_power_on()
244 clk_disable_unprepare(priv->clk_ext); in uniphier_u3hsphy_power_off()
338 priv->clk_ext = devm_clk_get_optional(dev, "phy-ext"); in uniphier_u3hsphy_probe()
339 if (IS_ERR(priv->clk_ext)) in uniphier_u3hsphy_probe()
340 return PTR_ERR(priv->clk_ext); in uniphier_u3hsphy_probe()
/Linux-v5.4/arch/mips/lantiq/xway/
Dsysctrl.c352 struct clk *clk_ext = kzalloc(sizeof(struct clk), GFP_KERNEL); in clkdev_add_pci() local
367 clk_ext->cl.dev_id = "17000000.pci"; in clkdev_add_pci()
368 clk_ext->cl.con_id = "external"; in clkdev_add_pci()
369 clk_ext->cl.clk = clk_ext; in clkdev_add_pci()
370 clk_ext->enable = pci_ext_enable; in clkdev_add_pci()
371 clk_ext->disable = pci_ext_disable; in clkdev_add_pci()
372 clkdev_add(&clk_ext->cl); in clkdev_add_pci()