Lines Matching refs:rst
35 * @rst: base reset controller structure.
41 struct reset_controller_dev rst;
47 container_of(_rst, struct syscfg_reset_controller, rst)
52 struct syscfg_reset_controller *rst = to_syscfg_reset_controller(rcdev);
54 u32 ctrl_val = rst->active_low ? !assert : !!assert;
60 ch = &rst->channels[idx];
105 struct syscfg_reset_controller *rst = to_syscfg_reset_controller(rcdev);
113 ch = &rst->channels[idx];
121 return rst->active_low ? !ret_val : !!ret_val;
146 rc->rst.ops = &syscfg_reset_ops;
147 rc->rst.of_node = dev->of_node;
148 rc->rst.nr_resets = data->nr_channels;
176 err = reset_controller_register(&rc->rst);