Lines Matching refs:rt_syscon
23 rt_err_t rt_syscon_read(struct rt_syscon *syscon, rt_off_t offset, rt_uint32_t *out_val) in rt_syscon_read()
41 rt_err_t rt_syscon_write(struct rt_syscon *syscon, rt_off_t offset, rt_uint32_t val) in rt_syscon_write()
59 rt_err_t rt_syscon_update_bits(struct rt_syscon *syscon, rt_off_t offset, rt_uint32_t mask, rt_uint… in rt_syscon_update_bits()
86 struct rt_syscon *rt_syscon_find_by_ofw_node(struct rt_ofw_node *np) in rt_syscon_find_by_ofw_node()
89 struct rt_syscon *syscon = RT_NULL, *syscon_tmp; in rt_syscon_find_by_ofw_node()
134 struct rt_syscon *rt_syscon_find_by_ofw_compatible(const char *compatible) in rt_syscon_find_by_ofw_compatible()
136 struct rt_syscon *syscon = RT_NULL; in rt_syscon_find_by_ofw_compatible()
149 struct rt_syscon *rt_syscon_find_by_ofw_phandle(struct rt_ofw_node *np, const char *propname) in rt_syscon_find_by_ofw_phandle()
151 struct rt_syscon *syscon = RT_NULL; in rt_syscon_find_by_ofw_phandle()
170 struct rt_syscon *syscon = rt_calloc(1, sizeof(*syscon)); in syscon_probe()
214 struct rt_syscon *syscon = pdev->parent.user_data; in syscon_remove()