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];
115 struct syscfg_reset_controller *rst = to_syscfg_reset_controller(rcdev);
123 ch = &rst->channels[idx];
131 return rst->active_low ? !ret_val : !!ret_val;
156 rc->rst.ops = &syscfg_reset_ops,
157 rc->rst.of_node = dev->of_node;
158 rc->rst.nr_resets = data->nr_channels;
186 err = reset_controller_register(&rc->rst);