Commit e51d5343 authored by Laurent Pinchart's avatar Laurent Pinchart

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: default avatarLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Acked-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 41f1219f
...@@ -55,7 +55,8 @@ static int sh_pfc_ioremap(struct sh_pfc *pfc, struct platform_device *pdev) ...@@ -55,7 +55,8 @@ static int sh_pfc_ioremap(struct sh_pfc *pfc, struct platform_device *pdev)
return 0; 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; struct sh_pfc_window *window;
int k; int k;
......
...@@ -46,7 +46,6 @@ int sh_pfc_unregister_gpiochip(struct sh_pfc *pfc); ...@@ -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_register_pinctrl(struct sh_pfc *pfc);
int sh_pfc_unregister_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 sh_pfc_read_raw_reg(void __iomem *mapped_reg,
unsigned long reg_width); unsigned long reg_width);
void sh_pfc_write_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 @@ ...@@ -24,6 +24,8 @@
struct sh_pfc_chip { struct sh_pfc_chip {
struct sh_pfc *pfc; struct sh_pfc *pfc;
struct gpio_chip gpio_chip; struct gpio_chip gpio_chip;
struct sh_pfc_window *mem;
}; };
static struct sh_pfc_chip *gpio_to_pfc_chip(struct gpio_chip *gc) 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, ...@@ -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; *bit = (gpiop->flags & PINMUX_FLAG_DBIT) >> PINMUX_FLAG_DBIT_SHIFT;
} }
static void gpio_setup_data_reg(struct sh_pfc *pfc, unsigned gpio) static unsigned long gpio_read_data_reg(struct sh_pfc_chip *chip,
const struct pinmux_data_reg *dreg)
{ {
struct sh_pfc_pin *gpiop = &pfc->info->pins[gpio]; void __iomem *mem = dreg->reg - chip->mem->phys + chip->mem->virt;
struct pinmux_data_reg *data_reg;
int k, n;
k = 0; return sh_pfc_read_raw_reg(mem, dreg->reg_width);
while (1) { }
data_reg = pfc->info->data_regs + k;
if (!data_reg->reg_width) static void gpio_write_data_reg(struct sh_pfc_chip *chip,
break; const struct pinmux_data_reg *dreg,
unsigned long value)
{
void __iomem *mem = dreg->reg - chip->mem->phys + chip->mem->virt;
data_reg->mapped_reg = sh_pfc_phys_to_virt(pfc, data_reg->reg); sh_pfc_write_raw_reg(mem, dreg->reg_width, value);
}
for (n = 0; n < data_reg->reg_width; n++) { static void gpio_setup_data_reg(struct sh_pfc *pfc, unsigned gpio)
if (data_reg->enum_ids[n] == gpiop->enum_id) { {
struct sh_pfc_pin *gpiop = &pfc->info->pins[gpio];
const struct pinmux_data_reg *dreg;
unsigned int bit;
unsigned int i;
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 &= ~PINMUX_FLAG_DREG;
gpiop->flags |= (k << PINMUX_FLAG_DREG_SHIFT); gpiop->flags |= i << PINMUX_FLAG_DREG_SHIFT;
gpiop->flags &= ~PINMUX_FLAG_DBIT; gpiop->flags &= ~PINMUX_FLAG_DBIT;
gpiop->flags |= (n << PINMUX_FLAG_DBIT_SHIFT); gpiop->flags |= bit << PINMUX_FLAG_DBIT_SHIFT;
return; return;
} }
} }
k++;
} }
BUG(); 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; struct sh_pfc *pfc = chip->pfc;
int k; 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++) { /* Find the window that contain the GPIO registers. */
if (pfc->info->pins[k].enum_id == 0) for (i = 0; i < pfc->num_windows; ++i) {
continue; struct sh_pfc_window *window = &pfc->window[i];
gpio_setup_data_reg(pfc, k); if (addr >= window->phys && addr < window->phys + window->size)
break;
} }
k = 0; if (i == pfc->num_windows)
while (1) { return -EINVAL;
drp = pfc->info->data_regs + k;
if (!drp->reg_width) /* GPIO data registers must be in the first memory resource. */
break; 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;
drp->reg_shadow = sh_pfc_read_raw_reg(drp->mapped_reg, gpio_setup_data_reg(pfc, i);
drp->reg_width);
k++;
} }
return 0;
} }
/* ----------------------------------------------------------------------------- /* -----------------------------------------------------------------------------
...@@ -121,22 +141,23 @@ static void gpio_pin_free(struct gpio_chip *gc, unsigned offset) ...@@ -121,22 +141,23 @@ static void gpio_pin_free(struct gpio_chip *gc, unsigned offset)
return pinctrl_free_gpio(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 long pos;
unsigned int bit; 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) if (value)
set_bit(pos, &dr->reg_shadow); set_bit(pos, &dreg->reg_shadow);
else 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) 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) ...@@ -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, static int gpio_pin_direction_output(struct gpio_chip *gc, unsigned offset,
int value) 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); return pinctrl_gpio_direction_output(offset);
} }
static int gpio_pin_get(struct gpio_chip *gc, unsigned offset) static int gpio_pin_get(struct gpio_chip *gc, unsigned offset)
{ {
struct sh_pfc *pfc = gpio_to_pfc(gc); struct sh_pfc_chip *chip = gpio_to_pfc_chip(gc);
struct pinmux_data_reg *dr; struct pinmux_data_reg *dreg;
unsigned long pos; unsigned long pos;
unsigned int bit; 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) 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) 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) ...@@ -188,10 +209,15 @@ static int gpio_pin_to_irq(struct gpio_chip *gc, unsigned offset)
return -ENOSYS; 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 sh_pfc *pfc = chip->pfc;
struct gpio_chip *gc = &chip->gpio_chip; 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->request = gpio_pin_request;
gc->free = gpio_pin_free; gc->free = gpio_pin_free;
...@@ -206,6 +232,8 @@ static void gpio_pin_setup(struct sh_pfc_chip *chip) ...@@ -206,6 +232,8 @@ static void gpio_pin_setup(struct sh_pfc_chip *chip)
gc->owner = THIS_MODULE; gc->owner = THIS_MODULE;
gc->base = 0; gc->base = 0;
gc->ngpio = pfc->nr_pins; gc->ngpio = pfc->nr_pins;
return 0;
} }
/* ----------------------------------------------------------------------------- /* -----------------------------------------------------------------------------
...@@ -252,7 +280,7 @@ static void gpio_function_free(struct gpio_chip *gc, unsigned offset) ...@@ -252,7 +280,7 @@ static void gpio_function_free(struct gpio_chip *gc, unsigned offset)
spin_unlock_irqrestore(&pfc->lock, flags); 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 sh_pfc *pfc = chip->pfc;
struct gpio_chip *gc = &chip->gpio_chip; struct gpio_chip *gc = &chip->gpio_chip;
...@@ -264,6 +292,8 @@ static void gpio_function_setup(struct sh_pfc_chip *chip) ...@@ -264,6 +292,8 @@ static void gpio_function_setup(struct sh_pfc_chip *chip)
gc->owner = THIS_MODULE; gc->owner = THIS_MODULE;
gc->base = pfc->nr_pins; gc->base = pfc->nr_pins;
gc->ngpio = pfc->info->nr_func_gpios; gc->ngpio = pfc->info->nr_func_gpios;
return 0;
} }
/* ----------------------------------------------------------------------------- /* -----------------------------------------------------------------------------
...@@ -271,7 +301,7 @@ static void gpio_function_setup(struct sh_pfc_chip *chip) ...@@ -271,7 +301,7 @@ static void gpio_function_setup(struct sh_pfc_chip *chip)
*/ */
static struct sh_pfc_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; struct sh_pfc_chip *chip;
int ret; int ret;
...@@ -282,7 +312,9 @@ sh_pfc_add_gpiochip(struct sh_pfc *pfc, void(*setup)(struct sh_pfc_chip *)) ...@@ -282,7 +312,9 @@ sh_pfc_add_gpiochip(struct sh_pfc *pfc, void(*setup)(struct sh_pfc_chip *))
chip->pfc = pfc; chip->pfc = pfc;
setup(chip); ret = setup(chip);
if (ret < 0)
return ERR_PTR(ret);
ret = gpiochip_add(&chip->gpio_chip); ret = gpiochip_add(&chip->gpio_chip);
if (unlikely(ret < 0)) if (unlikely(ret < 0))
...@@ -304,8 +336,6 @@ int sh_pfc_register_gpiochip(struct sh_pfc *pfc) ...@@ -304,8 +336,6 @@ int sh_pfc_register_gpiochip(struct sh_pfc *pfc)
unsigned int i; unsigned int i;
int ret; int ret;
gpio_setup_data_regs(pfc);
/* Register the real GPIOs chip. */ /* Register the real GPIOs chip. */
chip = sh_pfc_add_gpiochip(pfc, gpio_pin_setup); chip = sh_pfc_add_gpiochip(pfc, gpio_pin_setup);
if (IS_ERR(chip)) if (IS_ERR(chip))
......
...@@ -110,7 +110,6 @@ struct pinmux_cfg_reg { ...@@ -110,7 +110,6 @@ struct pinmux_cfg_reg {
struct pinmux_data_reg { struct pinmux_data_reg {
unsigned long reg, reg_width, reg_shadow; unsigned long reg, reg_width, reg_shadow;
pinmux_enum_t *enum_ids; pinmux_enum_t *enum_ids;
void __iomem *mapped_reg;
}; };
#define PINMUX_DATA_REG(name, r, r_width) \ #define PINMUX_DATA_REG(name, r, r_width) \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment