Lines Matching refs:nodeoffset
16 TEE_Result clk_dt_get_by_name(const void *fdt, int nodeoffset, in clk_dt_get_by_name() argument
21 clk_id = fdt_stringlist_search(fdt, nodeoffset, "clock-names", name); in clk_dt_get_by_name()
27 return clk_dt_get_by_index(fdt, nodeoffset, clk_id, clk); in clk_dt_get_by_name()
31 int nodeoffset, unsigned int clk_idx, in clk_dt_get_by_idx_prop() argument
37 res = dt_driver_device_from_node_idx_prop(prop_name, fdt, nodeoffset, in clk_dt_get_by_idx_prop()
46 TEE_Result clk_dt_get_by_index(const void *fdt, int nodeoffset, in clk_dt_get_by_index() argument
49 return clk_dt_get_by_idx_prop("clocks", fdt, nodeoffset, clk_idx, clk); in clk_dt_get_by_index()
142 static void parse_assigned_clock(const void *fdt, int nodeoffset) in parse_assigned_clock() argument
152 rate_prop = fdt_getprop(fdt, nodeoffset, "assigned-clock-rates", in parse_assigned_clock()
157 res = clk_dt_get_by_idx_prop("assigned-clocks", fdt, nodeoffset, in parse_assigned_clock()
164 nodeoffset, clock_idx, &parent); in parse_assigned_clock()