sh-pfc: Don't map data registers individually
All data registers are located in the same memory resource. Locate the mapped resource at initializat time and use it directly instead of computing a mapped address for each register. This gets rid of the mapped_reg field of the pinmux_data_reg structure. Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Acked-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
41f1219fae
commit
e51d5343ff
4 changed files with 85 additions and 56 deletions
|
@ -55,7 +55,8 @@ static int sh_pfc_ioremap(struct sh_pfc *pfc, struct platform_device *pdev)
|
|||
return 0;
|
||||
}
|
||||
|
||||
void __iomem *sh_pfc_phys_to_virt(struct sh_pfc *pfc, unsigned long address)
|
||||
static void __iomem *sh_pfc_phys_to_virt(struct sh_pfc *pfc,
|
||||
unsigned long address)
|
||||
{
|
||||
struct sh_pfc_window *window;
|
||||
int k;
|
||||
|
|
|
@ -46,7 +46,6 @@ int sh_pfc_unregister_gpiochip(struct sh_pfc *pfc);
|
|||
int sh_pfc_register_pinctrl(struct sh_pfc *pfc);
|
||||
int sh_pfc_unregister_pinctrl(struct sh_pfc *pfc);
|
||||
|
||||
void __iomem *sh_pfc_phys_to_virt(struct sh_pfc *pfc, unsigned long address);
|
||||
unsigned long sh_pfc_read_raw_reg(void __iomem *mapped_reg,
|
||||
unsigned long reg_width);
|
||||
void sh_pfc_write_raw_reg(void __iomem *mapped_reg, unsigned long reg_width,
|
||||
|
|
|
@ -24,6 +24,8 @@
|
|||
struct sh_pfc_chip {
|
||||
struct sh_pfc *pfc;
|
||||
struct gpio_chip gpio_chip;
|
||||
|
||||
struct sh_pfc_window *mem;
|
||||
};
|
||||
|
||||
static struct sh_pfc_chip *gpio_to_pfc_chip(struct gpio_chip *gc)
|
||||
|
@ -46,59 +48,77 @@ static void gpio_get_data_reg(struct sh_pfc *pfc, unsigned int gpio,
|
|||
*bit = (gpiop->flags & PINMUX_FLAG_DBIT) >> PINMUX_FLAG_DBIT_SHIFT;
|
||||
}
|
||||
|
||||
static unsigned long gpio_read_data_reg(struct sh_pfc_chip *chip,
|
||||
const struct pinmux_data_reg *dreg)
|
||||
{
|
||||
void __iomem *mem = dreg->reg - chip->mem->phys + chip->mem->virt;
|
||||
|
||||
return sh_pfc_read_raw_reg(mem, dreg->reg_width);
|
||||
}
|
||||
|
||||
static void gpio_write_data_reg(struct sh_pfc_chip *chip,
|
||||
const struct pinmux_data_reg *dreg,
|
||||
unsigned long value)
|
||||
{
|
||||
void __iomem *mem = dreg->reg - chip->mem->phys + chip->mem->virt;
|
||||
|
||||
sh_pfc_write_raw_reg(mem, dreg->reg_width, value);
|
||||
}
|
||||
|
||||
static void gpio_setup_data_reg(struct sh_pfc *pfc, unsigned gpio)
|
||||
{
|
||||
struct sh_pfc_pin *gpiop = &pfc->info->pins[gpio];
|
||||
struct pinmux_data_reg *data_reg;
|
||||
int k, n;
|
||||
const struct pinmux_data_reg *dreg;
|
||||
unsigned int bit;
|
||||
unsigned int i;
|
||||
|
||||
k = 0;
|
||||
while (1) {
|
||||
data_reg = pfc->info->data_regs + k;
|
||||
|
||||
if (!data_reg->reg_width)
|
||||
break;
|
||||
|
||||
data_reg->mapped_reg = sh_pfc_phys_to_virt(pfc, data_reg->reg);
|
||||
|
||||
for (n = 0; n < data_reg->reg_width; n++) {
|
||||
if (data_reg->enum_ids[n] == gpiop->enum_id) {
|
||||
for (i = 0, dreg = pfc->info->data_regs; dreg->reg; ++i, ++dreg) {
|
||||
for (bit = 0; bit < dreg->reg_width; bit++) {
|
||||
if (dreg->enum_ids[bit] == gpiop->enum_id) {
|
||||
gpiop->flags &= ~PINMUX_FLAG_DREG;
|
||||
gpiop->flags |= (k << PINMUX_FLAG_DREG_SHIFT);
|
||||
gpiop->flags |= i << PINMUX_FLAG_DREG_SHIFT;
|
||||
gpiop->flags &= ~PINMUX_FLAG_DBIT;
|
||||
gpiop->flags |= (n << PINMUX_FLAG_DBIT_SHIFT);
|
||||
gpiop->flags |= bit << PINMUX_FLAG_DBIT_SHIFT;
|
||||
return;
|
||||
}
|
||||
}
|
||||
k++;
|
||||
}
|
||||
|
||||
BUG();
|
||||
}
|
||||
|
||||
static void gpio_setup_data_regs(struct sh_pfc *pfc)
|
||||
static int gpio_setup_data_regs(struct sh_pfc_chip *chip)
|
||||
{
|
||||
struct pinmux_data_reg *drp;
|
||||
int k;
|
||||
struct sh_pfc *pfc = chip->pfc;
|
||||
unsigned long addr = pfc->info->data_regs[0].reg;
|
||||
struct pinmux_data_reg *dreg;
|
||||
unsigned int i;
|
||||
|
||||
for (k = 0; k < pfc->info->nr_pins; k++) {
|
||||
if (pfc->info->pins[k].enum_id == 0)
|
||||
/* Find the window that contain the GPIO registers. */
|
||||
for (i = 0; i < pfc->num_windows; ++i) {
|
||||
struct sh_pfc_window *window = &pfc->window[i];
|
||||
|
||||
if (addr >= window->phys && addr < window->phys + window->size)
|
||||
break;
|
||||
}
|
||||
|
||||
if (i == pfc->num_windows)
|
||||
return -EINVAL;
|
||||
|
||||
/* GPIO data registers must be in the first memory resource. */
|
||||
chip->mem = &pfc->window[i];
|
||||
|
||||
for (dreg = pfc->info->data_regs; dreg->reg; ++dreg)
|
||||
dreg->reg_shadow = gpio_read_data_reg(chip, dreg);
|
||||
|
||||
for (i = 0; i < pfc->info->nr_pins; i++) {
|
||||
if (pfc->info->pins[i].enum_id == 0)
|
||||
continue;
|
||||
|
||||
gpio_setup_data_reg(pfc, k);
|
||||
gpio_setup_data_reg(pfc, i);
|
||||
}
|
||||
|
||||
k = 0;
|
||||
while (1) {
|
||||
drp = pfc->info->data_regs + k;
|
||||
|
||||
if (!drp->reg_width)
|
||||
break;
|
||||
|
||||
drp->reg_shadow = sh_pfc_read_raw_reg(drp->mapped_reg,
|
||||
drp->reg_width);
|
||||
k++;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------------------------------
|
||||
|
@ -121,22 +141,23 @@ static void gpio_pin_free(struct gpio_chip *gc, unsigned offset)
|
|||
return pinctrl_free_gpio(offset);
|
||||
}
|
||||
|
||||
static void gpio_pin_set_value(struct sh_pfc *pfc, unsigned offset, int value)
|
||||
static void gpio_pin_set_value(struct sh_pfc_chip *chip, unsigned offset,
|
||||
int value)
|
||||
{
|
||||
struct pinmux_data_reg *dr;
|
||||
struct pinmux_data_reg *dreg;
|
||||
unsigned long pos;
|
||||
unsigned int bit;
|
||||
|
||||
gpio_get_data_reg(pfc, offset, &dr, &bit);
|
||||
gpio_get_data_reg(chip->pfc, offset, &dreg, &bit);
|
||||
|
||||
pos = dr->reg_width - (bit + 1);
|
||||
pos = dreg->reg_width - (bit + 1);
|
||||
|
||||
if (value)
|
||||
set_bit(pos, &dr->reg_shadow);
|
||||
set_bit(pos, &dreg->reg_shadow);
|
||||
else
|
||||
clear_bit(pos, &dr->reg_shadow);
|
||||
clear_bit(pos, &dreg->reg_shadow);
|
||||
|
||||
sh_pfc_write_raw_reg(dr->mapped_reg, dr->reg_width, dr->reg_shadow);
|
||||
gpio_write_data_reg(chip, dreg, dreg->reg_shadow);
|
||||
}
|
||||
|
||||
static int gpio_pin_direction_input(struct gpio_chip *gc, unsigned offset)
|
||||
|
@ -147,28 +168,28 @@ static int gpio_pin_direction_input(struct gpio_chip *gc, unsigned offset)
|
|||
static int gpio_pin_direction_output(struct gpio_chip *gc, unsigned offset,
|
||||
int value)
|
||||
{
|
||||
gpio_pin_set_value(gpio_to_pfc(gc), offset, value);
|
||||
gpio_pin_set_value(gpio_to_pfc_chip(gc), offset, value);
|
||||
|
||||
return pinctrl_gpio_direction_output(offset);
|
||||
}
|
||||
|
||||
static int gpio_pin_get(struct gpio_chip *gc, unsigned offset)
|
||||
{
|
||||
struct sh_pfc *pfc = gpio_to_pfc(gc);
|
||||
struct pinmux_data_reg *dr;
|
||||
struct sh_pfc_chip *chip = gpio_to_pfc_chip(gc);
|
||||
struct pinmux_data_reg *dreg;
|
||||
unsigned long pos;
|
||||
unsigned int bit;
|
||||
|
||||
gpio_get_data_reg(pfc, offset, &dr, &bit);
|
||||
gpio_get_data_reg(chip->pfc, offset, &dreg, &bit);
|
||||
|
||||
pos = dr->reg_width - (bit + 1);
|
||||
pos = dreg->reg_width - (bit + 1);
|
||||
|
||||
return (sh_pfc_read_raw_reg(dr->mapped_reg, dr->reg_width) >> pos) & 1;
|
||||
return (gpio_read_data_reg(chip, dreg) >> pos) & 1;
|
||||
}
|
||||
|
||||
static void gpio_pin_set(struct gpio_chip *gc, unsigned offset, int value)
|
||||
{
|
||||
gpio_pin_set_value(gpio_to_pfc(gc), offset, value);
|
||||
gpio_pin_set_value(gpio_to_pfc_chip(gc), offset, value);
|
||||
}
|
||||
|
||||
static int gpio_pin_to_irq(struct gpio_chip *gc, unsigned offset)
|
||||
|
@ -188,10 +209,15 @@ static int gpio_pin_to_irq(struct gpio_chip *gc, unsigned offset)
|
|||
return -ENOSYS;
|
||||
}
|
||||
|
||||
static void gpio_pin_setup(struct sh_pfc_chip *chip)
|
||||
static int gpio_pin_setup(struct sh_pfc_chip *chip)
|
||||
{
|
||||
struct sh_pfc *pfc = chip->pfc;
|
||||
struct gpio_chip *gc = &chip->gpio_chip;
|
||||
int ret;
|
||||
|
||||
ret = gpio_setup_data_regs(chip);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
gc->request = gpio_pin_request;
|
||||
gc->free = gpio_pin_free;
|
||||
|
@ -206,6 +232,8 @@ static void gpio_pin_setup(struct sh_pfc_chip *chip)
|
|||
gc->owner = THIS_MODULE;
|
||||
gc->base = 0;
|
||||
gc->ngpio = pfc->nr_pins;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------------------------------
|
||||
|
@ -252,7 +280,7 @@ static void gpio_function_free(struct gpio_chip *gc, unsigned offset)
|
|||
spin_unlock_irqrestore(&pfc->lock, flags);
|
||||
}
|
||||
|
||||
static void gpio_function_setup(struct sh_pfc_chip *chip)
|
||||
static int gpio_function_setup(struct sh_pfc_chip *chip)
|
||||
{
|
||||
struct sh_pfc *pfc = chip->pfc;
|
||||
struct gpio_chip *gc = &chip->gpio_chip;
|
||||
|
@ -264,6 +292,8 @@ static void gpio_function_setup(struct sh_pfc_chip *chip)
|
|||
gc->owner = THIS_MODULE;
|
||||
gc->base = pfc->nr_pins;
|
||||
gc->ngpio = pfc->info->nr_func_gpios;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------------------------------
|
||||
|
@ -271,7 +301,7 @@ static void gpio_function_setup(struct sh_pfc_chip *chip)
|
|||
*/
|
||||
|
||||
static struct sh_pfc_chip *
|
||||
sh_pfc_add_gpiochip(struct sh_pfc *pfc, void(*setup)(struct sh_pfc_chip *))
|
||||
sh_pfc_add_gpiochip(struct sh_pfc *pfc, int(*setup)(struct sh_pfc_chip *))
|
||||
{
|
||||
struct sh_pfc_chip *chip;
|
||||
int ret;
|
||||
|
@ -282,7 +312,9 @@ sh_pfc_add_gpiochip(struct sh_pfc *pfc, void(*setup)(struct sh_pfc_chip *))
|
|||
|
||||
chip->pfc = pfc;
|
||||
|
||||
setup(chip);
|
||||
ret = setup(chip);
|
||||
if (ret < 0)
|
||||
return ERR_PTR(ret);
|
||||
|
||||
ret = gpiochip_add(&chip->gpio_chip);
|
||||
if (unlikely(ret < 0))
|
||||
|
@ -304,8 +336,6 @@ int sh_pfc_register_gpiochip(struct sh_pfc *pfc)
|
|||
unsigned int i;
|
||||
int ret;
|
||||
|
||||
gpio_setup_data_regs(pfc);
|
||||
|
||||
/* Register the real GPIOs chip. */
|
||||
chip = sh_pfc_add_gpiochip(pfc, gpio_pin_setup);
|
||||
if (IS_ERR(chip))
|
||||
|
|
|
@ -110,7 +110,6 @@ struct pinmux_cfg_reg {
|
|||
struct pinmux_data_reg {
|
||||
unsigned long reg, reg_width, reg_shadow;
|
||||
pinmux_enum_t *enum_ids;
|
||||
void __iomem *mapped_reg;
|
||||
};
|
||||
|
||||
#define PINMUX_DATA_REG(name, r, r_width) \
|
||||
|
|
Loading…
Reference in a new issue