Lines Matching refs:crp
195 const struct pinmux_cfg_reg *crp, in sh_pfc_config_reg_helper() argument
202 *mapped_regp = sh_pfc_phys_to_virt(pfc, crp->reg); in sh_pfc_config_reg_helper()
204 if (crp->field_width) { in sh_pfc_config_reg_helper()
205 *maskp = (1 << crp->field_width) - 1; in sh_pfc_config_reg_helper()
206 *posp = crp->reg_width - ((in_pos + 1) * crp->field_width); in sh_pfc_config_reg_helper()
208 *maskp = (1 << crp->var_field_width[in_pos]) - 1; in sh_pfc_config_reg_helper()
209 *posp = crp->reg_width; in sh_pfc_config_reg_helper()
211 *posp -= crp->var_field_width[k]; in sh_pfc_config_reg_helper()
216 const struct pinmux_cfg_reg *crp, in sh_pfc_write_config_reg() argument
223 sh_pfc_config_reg_helper(pfc, crp, field, &mapped_reg, &mask, &pos); in sh_pfc_write_config_reg()
227 crp->reg, value, field, crp->reg_width, crp->field_width); in sh_pfc_write_config_reg()
232 data = sh_pfc_read_raw_reg(mapped_reg, crp->reg_width); in sh_pfc_write_config_reg()
241 sh_pfc_write_raw_reg(mapped_reg, crp->reg_width, data); in sh_pfc_write_config_reg()
245 const struct pinmux_cfg_reg **crp, in sh_pfc_get_config_reg() argument
275 *crp = config_reg; in sh_pfc_get_config_reg()