HomeSort by relevance Sort by last modified time
    Searched refs:of_xlate (Results 1 - 20 of 20) sorted by null

  /external/u-boot/include/
mailbox-uclass.h 20 * of_xlate - Translate a client's device-tree (OF) mailbox specifier.
37 int (*of_xlate)(struct mbox_chan *chan, member in struct:mbox_ops
power-domain-uclass.h 21 * of_xlate - Translate a client's device-tree (OF) power domain
41 int (*of_xlate)(struct power_domain *power_domain, member in struct:power_domain_ops
reset-uclass.h 22 * of_xlate - Translate a client's device-tree (OF) reset specifier.
39 int (*of_xlate)(struct reset_ctl *reset_ctl, member in struct:reset_ops
clk-uclass.h 22 * of_xlate - Translate a client's device-tree (OF) clock specifier.
39 int (*of_xlate)(struct clk *clock, member in struct:clk_ops
generic-phy.h 38 * of_xlate - Translate a client's device-tree (OF) phy specifier.
52 int (*of_xlate)(struct phy *phy, struct ofnode_phandle_args *args); member in struct:phy_ops
  /external/u-boot/drivers/power/domain/
power-domain-uclass.c 58 if (ops->of_xlate)
59 ret = ops->of_xlate(power_domain, &args);
63 debug("of_xlate() failed: %d\n", ret);
  /external/u-boot/drivers/mailbox/
mailbox-uclass.c 57 if (ops->of_xlate)
58 ret = ops->of_xlate(chan, &args);
62 debug("of_xlate() failed: %d\n", ret);
tegra-hsp.c 176 .of_xlate = tegra_hsp_of_xlate,
  /external/u-boot/drivers/phy/
phy-uclass.c 65 if (ops->of_xlate)
66 ret = ops->of_xlate(phy, &args);
70 debug("of_xlate() failed: %d\n", ret);
phy-stm32-usbphyc.c 323 .of_xlate = stm32_usbphyc_of_xlate,
  /external/u-boot/drivers/clk/at91/
clk-system.c 98 .of_xlate = at91_clk_of_xlate,
clk-peripheral.c 101 .of_xlate = at91_clk_of_xlate,
clk-generated.c 144 .of_xlate = at91_clk_of_xlate,
  /external/u-boot/drivers/reset/
reset-uclass.c 63 if (ops->of_xlate)
64 ret = ops->of_xlate(reset_ctl, &args);
68 debug("of_xlate() failed: %d\n", ret);
  /external/u-boot/drivers/clk/
clk-uclass.c 89 if (ops->of_xlate)
90 ret = ops->of_xlate(clk, &args);
94 debug("of_xlate() failed: %d\n", ret);
clk_stm32f.c 716 .of_xlate = stm32_clk_of_xlate,
clk_stm32h7.c 859 .of_xlate = stm32_clk_of_xlate,
  /external/u-boot/drivers/clk/renesas/
clk-rcar-gen2.c 227 .of_xlate = gen2_clk_of_xlate,
clk-rcar-gen3.c 352 .of_xlate = gen3_clk_of_xlate,
  /external/u-boot/drivers/phy/allwinner/
phy-sun4i-usb.c 393 .of_xlate = sun4i_usb_phy_xlate,

Completed in 383 milliseconds