Lines Matching defs:info
107 const struct ccu_rst_info *info = &rst->rsts_info[idx];
109 if (info->type != CCU_RST_TRIG)
112 regmap_update_bits(rst->sys_regs, info->base, info->mask, info->mask);
124 const struct ccu_rst_info *info = &rst->rsts_info[idx];
126 if (info->type != CCU_RST_DIR)
129 return regmap_update_bits(rst->sys_regs, info->base,
130 info->mask, high ? info->mask : 0);
149 const struct ccu_rst_info *info = &rst->rsts_info[idx];
152 if (info->type != CCU_RST_DIR)
155 regmap_read(rst->sys_regs, info->base, &val);
157 return !!(val & info->mask);