Lines Matching defs:node
35 static struct clk *_register_interface(struct device_node *node,
61 clk = of_ti_clk_register_omap_hw(node, &clk_hw->hw, name);
69 static void __init _of_ti_interface_clk_setup(struct device_node *node,
79 if (ti_clk_get_reg_addr(node, 0, ®))
82 if (!of_property_read_u32(node, "ti,bit-shift", &val))
85 parent_name = of_clk_get_parent_name(node, 0);
87 pr_err("%pOFn must have a parent\n", node);
91 name = ti_dt_clk_name(node);
92 clk = _register_interface(node, name, parent_name, ®,
96 of_clk_add_provider(node, of_clk_src_simple_get, clk);
99 static void __init of_ti_interface_clk_setup(struct device_node *node)
101 _of_ti_interface_clk_setup(node, &clkhwops_iclk_wait);
106 static void __init of_ti_no_wait_interface_clk_setup(struct device_node *node)
108 _of_ti_interface_clk_setup(node, &clkhwops_iclk);
114 static void __init of_ti_hsotgusb_interface_clk_setup(struct device_node *node)
116 _of_ti_interface_clk_setup(node,
122 static void __init of_ti_dss_interface_clk_setup(struct device_node *node)
124 _of_ti_interface_clk_setup(node,
130 static void __init of_ti_ssi_interface_clk_setup(struct device_node *node)
132 _of_ti_interface_clk_setup(node, &clkhwops_omap3430es2_iclk_ssi_wait);
137 static void __init of_ti_am35xx_interface_clk_setup(struct device_node *node)
139 _of_ti_interface_clk_setup(node, &clkhwops_am35xx_ipss_wait);
146 static void __init of_ti_omap2430_interface_clk_setup(struct device_node *node)
148 _of_ti_interface_clk_setup(node, &clkhwops_omap2430_i2chs_wait);