diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2015-03-12 06:09:16 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2015-03-17 21:15:40 -0400 |
commit | 1f34de05e75a26e8f4dfe7566fe80309aabf10b7 (patch) | |
tree | fce210834fe77de73f74af5c78b934ea279bed13 | |
parent | 17c7cbb0e7b7a877f1ce2063d7f869801b24cd6a (diff) |
pinctrl: sh-pfc: Use u32 to store register addresses
Currently all PFC registers lie in low 32-bit address space. Hence use
u32 instead of unsigned long to store PFC register addresses in pinctrl
tables. All calculations of virtual addresses use a phys_addr_t
intermediate, so we know where to add an offset if the 32-bit assumption
ever becomes false.
While this doesn't impact 32-bit builds, it would save ca. 7 KiB on a
64-bit shmobile_defconfig kernel.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | drivers/pinctrl/sh-pfc/core.c | 6 | ||||
-rw-r--r-- | drivers/pinctrl/sh-pfc/gpio.c | 12 | ||||
-rw-r--r-- | drivers/pinctrl/sh-pfc/sh_pfc.h | 6 |
3 files changed, 14 insertions, 10 deletions
diff --git a/drivers/pinctrl/sh-pfc/core.c b/drivers/pinctrl/sh-pfc/core.c index c33e2474a867..1b6dc6922915 100644 --- a/drivers/pinctrl/sh-pfc/core.c +++ b/drivers/pinctrl/sh-pfc/core.c | |||
@@ -92,10 +92,10 @@ static int sh_pfc_map_resources(struct sh_pfc *pfc, | |||
92 | return 0; | 92 | return 0; |
93 | } | 93 | } |
94 | 94 | ||
95 | static void __iomem *sh_pfc_phys_to_virt(struct sh_pfc *pfc, | 95 | static void __iomem *sh_pfc_phys_to_virt(struct sh_pfc *pfc, u32 reg) |
96 | unsigned long address) | ||
97 | { | 96 | { |
98 | struct sh_pfc_window *window; | 97 | struct sh_pfc_window *window; |
98 | phys_addr_t address = reg; | ||
99 | unsigned int i; | 99 | unsigned int i; |
100 | 100 | ||
101 | /* scan through physical windows and convert address */ | 101 | /* scan through physical windows and convert address */ |
@@ -208,7 +208,7 @@ static void sh_pfc_write_config_reg(struct sh_pfc *pfc, | |||
208 | 208 | ||
209 | sh_pfc_config_reg_helper(pfc, crp, field, &mapped_reg, &mask, &pos); | 209 | sh_pfc_config_reg_helper(pfc, crp, field, &mapped_reg, &mask, &pos); |
210 | 210 | ||
211 | dev_dbg(pfc->dev, "write_reg addr = %lx, value = 0x%x, field = %u, " | 211 | dev_dbg(pfc->dev, "write_reg addr = %x, value = 0x%x, field = %u, " |
212 | "r_width = %u, f_width = %u\n", | 212 | "r_width = %u, f_width = %u\n", |
213 | crp->reg, value, field, crp->reg_width, crp->field_width); | 213 | crp->reg, value, field, crp->reg_width, crp->field_width); |
214 | 214 | ||
diff --git a/drivers/pinctrl/sh-pfc/gpio.c b/drivers/pinctrl/sh-pfc/gpio.c index 5d3a35ce0912..ba353735ecf2 100644 --- a/drivers/pinctrl/sh-pfc/gpio.c +++ b/drivers/pinctrl/sh-pfc/gpio.c | |||
@@ -62,7 +62,8 @@ static void gpio_get_data_reg(struct sh_pfc_chip *chip, unsigned int offset, | |||
62 | static u32 gpio_read_data_reg(struct sh_pfc_chip *chip, | 62 | static u32 gpio_read_data_reg(struct sh_pfc_chip *chip, |
63 | const struct pinmux_data_reg *dreg) | 63 | const struct pinmux_data_reg *dreg) |
64 | { | 64 | { |
65 | void __iomem *mem = dreg->reg - chip->mem->phys + chip->mem->virt; | 65 | phys_addr_t address = dreg->reg; |
66 | void __iomem *mem = address - chip->mem->phys + chip->mem->virt; | ||
66 | 67 | ||
67 | return sh_pfc_read_raw_reg(mem, dreg->reg_width); | 68 | return sh_pfc_read_raw_reg(mem, dreg->reg_width); |
68 | } | 69 | } |
@@ -70,7 +71,8 @@ static u32 gpio_read_data_reg(struct sh_pfc_chip *chip, | |||
70 | static void gpio_write_data_reg(struct sh_pfc_chip *chip, | 71 | static void gpio_write_data_reg(struct sh_pfc_chip *chip, |
71 | const struct pinmux_data_reg *dreg, u32 value) | 72 | const struct pinmux_data_reg *dreg, u32 value) |
72 | { | 73 | { |
73 | void __iomem *mem = dreg->reg - chip->mem->phys + chip->mem->virt; | 74 | phys_addr_t address = dreg->reg; |
75 | void __iomem *mem = address - chip->mem->phys + chip->mem->virt; | ||
74 | 76 | ||
75 | sh_pfc_write_raw_reg(mem, dreg->reg_width, value); | 77 | sh_pfc_write_raw_reg(mem, dreg->reg_width, value); |
76 | } | 78 | } |
@@ -340,6 +342,7 @@ sh_pfc_add_gpiochip(struct sh_pfc *pfc, int(*setup)(struct sh_pfc_chip *), | |||
340 | int sh_pfc_register_gpiochip(struct sh_pfc *pfc) | 342 | int sh_pfc_register_gpiochip(struct sh_pfc *pfc) |
341 | { | 343 | { |
342 | struct sh_pfc_chip *chip; | 344 | struct sh_pfc_chip *chip; |
345 | phys_addr_t address; | ||
343 | unsigned int i; | 346 | unsigned int i; |
344 | int ret; | 347 | int ret; |
345 | 348 | ||
@@ -351,11 +354,12 @@ int sh_pfc_register_gpiochip(struct sh_pfc *pfc) | |||
351 | * that covers the data registers. In that case don't try to handle | 354 | * that covers the data registers. In that case don't try to handle |
352 | * GPIOs. | 355 | * GPIOs. |
353 | */ | 356 | */ |
357 | address = pfc->info->data_regs[0].reg; | ||
354 | for (i = 0; i < pfc->num_windows; ++i) { | 358 | for (i = 0; i < pfc->num_windows; ++i) { |
355 | struct sh_pfc_window *window = &pfc->windows[i]; | 359 | struct sh_pfc_window *window = &pfc->windows[i]; |
356 | 360 | ||
357 | if (pfc->info->data_regs[0].reg >= window->phys && | 361 | if (address >= window->phys && |
358 | pfc->info->data_regs[0].reg < window->phys + window->size) | 362 | address < window->phys + window->size) |
359 | break; | 363 | break; |
360 | } | 364 | } |
361 | 365 | ||
diff --git a/drivers/pinctrl/sh-pfc/sh_pfc.h b/drivers/pinctrl/sh-pfc/sh_pfc.h index 6aeec8152ea6..c7508d5f6886 100644 --- a/drivers/pinctrl/sh-pfc/sh_pfc.h +++ b/drivers/pinctrl/sh-pfc/sh_pfc.h | |||
@@ -69,7 +69,7 @@ struct pinmux_func { | |||
69 | }; | 69 | }; |
70 | 70 | ||
71 | struct pinmux_cfg_reg { | 71 | struct pinmux_cfg_reg { |
72 | unsigned long reg; | 72 | u32 reg; |
73 | u8 reg_width, field_width; | 73 | u8 reg_width, field_width; |
74 | const u16 *enum_ids; | 74 | const u16 *enum_ids; |
75 | const u8 *var_field_width; | 75 | const u8 *var_field_width; |
@@ -86,7 +86,7 @@ struct pinmux_cfg_reg { | |||
86 | .enum_ids = (const u16 []) | 86 | .enum_ids = (const u16 []) |
87 | 87 | ||
88 | struct pinmux_data_reg { | 88 | struct pinmux_data_reg { |
89 | unsigned long reg; | 89 | u32 reg; |
90 | u8 reg_width; | 90 | u8 reg_width; |
91 | const u16 *enum_ids; | 91 | const u16 *enum_ids; |
92 | }; | 92 | }; |
@@ -150,7 +150,7 @@ struct sh_pfc_soc_info { | |||
150 | const struct pinmux_irq *gpio_irq; | 150 | const struct pinmux_irq *gpio_irq; |
151 | unsigned int gpio_irq_size; | 151 | unsigned int gpio_irq_size; |
152 | 152 | ||
153 | unsigned long unlock_reg; | 153 | u32 unlock_reg; |
154 | }; | 154 | }; |
155 | 155 | ||
156 | /* ----------------------------------------------------------------------------- | 156 | /* ----------------------------------------------------------------------------- |