Lines Matching defs:offt

3575 	unsigned int offt = pin / PINS_PER_GPIO_CHIP;
3579 regmap_write(jzpc->map, offt * jzpc->info->reg_offset +
3582 regmap_set_bits(jzpc->map, offt * jzpc->info->reg_offset +
3586 regmap_write(jzpc->map, offt * jzpc->info->reg_offset +
3589 regmap_clear_bits(jzpc->map, offt * jzpc->info->reg_offset +
3619 unsigned int offt = pin / PINS_PER_GPIO_CHIP;
3622 regmap_update_bits(jzpc->map, offt * jzpc->info->reg_offset + reg,
3630 unsigned int offt = pin / PINS_PER_GPIO_CHIP;
3633 regmap_read(jzpc->map, offt * jzpc->info->reg_offset + reg, &val);
3718 unsigned int offt = pin / PINS_PER_GPIO_CHIP;
3721 'A' + offt, idx, func);
3787 unsigned int offt = pin / PINS_PER_GPIO_CHIP;
3790 'A' + offt, idx, input ? "in" : "out");
3828 unsigned int offt = pin / PINS_PER_GPIO_CHIP;
3836 (jzpc->info->pull_ups[offt] & BIT(idx));
3839 (jzpc->info->pull_downs[offt] & BIT(idx));
3846 regmap_read(jzpc->map, offt * jzpc->info->reg_offset +
3849 regmap_read(jzpc->map, offt * jzpc->info->reg_offset +
3854 pullup = (bias == GPIO_PULL_UP) && (jzpc->info->pull_ups[offt] & BIT(idx));
3855 pulldown = (bias == GPIO_PULL_DOWN) && (jzpc->info->pull_downs[offt] & BIT(idx));
3865 pullup = pull && (jzpc->info->pull_ups[offt] & BIT(idx));
3866 pulldown = pull && (jzpc->info->pull_downs[offt] & BIT(idx));
3943 unsigned int offt = pin / PINS_PER_GPIO_CHIP;
3946 regmap_write(jzpc->map, offt * jzpc->info->reg_offset +
3948 regmap_write(jzpc->map, offt * jzpc->info->reg_offset +
3951 regmap_write(jzpc->map, offt * jzpc->info->reg_offset +
3953 regmap_write(jzpc->map, offt * jzpc->info->reg_offset +
4000 unsigned int offt = pin / PINS_PER_GPIO_CHIP;
4024 'A' + offt, idx);
4029 if (!(jzpc->info->pull_ups[offt] & BIT(idx)))
4032 'A' + offt, idx);
4037 if (!(jzpc->info->pull_downs[offt] & BIT(idx)))
4040 'A' + offt, idx);