Lines Matching refs:crp
181 const struct pinmux_cfg_reg *crp, in sh_pfc_config_reg_helper() argument
188 *mapped_regp = sh_pfc_phys_to_virt(pfc, crp->reg); in sh_pfc_config_reg_helper()
190 if (crp->field_width) { in sh_pfc_config_reg_helper()
191 *maskp = (1 << crp->field_width) - 1; in sh_pfc_config_reg_helper()
192 *posp = crp->reg_width - ((in_pos + 1) * crp->field_width); in sh_pfc_config_reg_helper()
194 *maskp = (1 << crp->var_field_width[in_pos]) - 1; in sh_pfc_config_reg_helper()
195 *posp = crp->reg_width; in sh_pfc_config_reg_helper()
197 *posp -= crp->var_field_width[k]; in sh_pfc_config_reg_helper()
202 const struct pinmux_cfg_reg *crp, in sh_pfc_write_config_reg() argument
209 sh_pfc_config_reg_helper(pfc, crp, field, &mapped_reg, &mask, &pos); in sh_pfc_write_config_reg()
213 crp->reg, value, field, crp->reg_width, crp->field_width); in sh_pfc_write_config_reg()
218 data = sh_pfc_read_raw_reg(mapped_reg, crp->reg_width); in sh_pfc_write_config_reg()
227 sh_pfc_write_raw_reg(mapped_reg, crp->reg_width, data); in sh_pfc_write_config_reg()
231 const struct pinmux_cfg_reg **crp, in sh_pfc_get_config_reg() argument
261 *crp = config_reg; in sh_pfc_get_config_reg()