Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 1 | /* |
| 2 | * SuperH Pin Function Controller GPIO driver. |
| 3 | * |
| 4 | * Copyright (C) 2008 Magnus Damm |
| 5 | * Copyright (C) 2009 - 2012 Paul Mundt |
| 6 | * |
| 7 | * This file is subject to the terms and conditions of the GNU General Public |
| 8 | * License. See the file "COPYING" in the main directory of this archive |
| 9 | * for more details. |
| 10 | */ |
Laurent Pinchart | c6193ea | 2012-12-15 23:50:47 +0100 | [diff] [blame] | 11 | |
Laurent Pinchart | 1724acf | 2012-12-15 23:50:48 +0100 | [diff] [blame] | 12 | #include <linux/device.h> |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 13 | #include <linux/gpio.h> |
Laurent Pinchart | 90efde2 | 2012-12-15 23:50:52 +0100 | [diff] [blame] | 14 | #include <linux/init.h> |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 15 | #include <linux/module.h> |
Paul Mundt | ca5481c6 | 2012-07-10 12:08:14 +0900 | [diff] [blame] | 16 | #include <linux/pinctrl/consumer.h> |
Laurent Pinchart | 90efde2 | 2012-12-15 23:50:52 +0100 | [diff] [blame] | 17 | #include <linux/slab.h> |
| 18 | #include <linux/spinlock.h> |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 19 | |
Laurent Pinchart | f916513 | 2012-12-15 23:50:44 +0100 | [diff] [blame] | 20 | #include "core.h" |
| 21 | |
Laurent Pinchart | 51cb226 | 2013-02-16 18:34:32 +0100 | [diff] [blame] | 22 | struct sh_pfc_gpio_data_reg { |
| 23 | const struct pinmux_data_reg *info; |
| 24 | unsigned long shadow; |
| 25 | }; |
| 26 | |
Laurent Pinchart | 1a0039d | 2013-03-08 17:43:54 +0100 | [diff] [blame] | 27 | struct sh_pfc_gpio_pin { |
| 28 | u8 dbit; |
| 29 | u8 dreg; |
| 30 | }; |
Laurent Pinchart | e51d534 | 2013-02-17 00:26:33 +0100 | [diff] [blame] | 31 | |
Laurent Pinchart | 1a0039d | 2013-03-08 17:43:54 +0100 | [diff] [blame] | 32 | struct sh_pfc_chip { |
| 33 | struct sh_pfc *pfc; |
| 34 | struct gpio_chip gpio_chip; |
| 35 | |
| 36 | struct sh_pfc_window *mem; |
Laurent Pinchart | 51cb226 | 2013-02-16 18:34:32 +0100 | [diff] [blame] | 37 | struct sh_pfc_gpio_data_reg *regs; |
Laurent Pinchart | 1a0039d | 2013-03-08 17:43:54 +0100 | [diff] [blame] | 38 | struct sh_pfc_gpio_pin *pins; |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 39 | }; |
| 40 | |
| 41 | static struct sh_pfc_chip *gpio_to_pfc_chip(struct gpio_chip *gc) |
| 42 | { |
| 43 | return container_of(gc, struct sh_pfc_chip, gpio_chip); |
| 44 | } |
| 45 | |
| 46 | static struct sh_pfc *gpio_to_pfc(struct gpio_chip *gc) |
| 47 | { |
| 48 | return gpio_to_pfc_chip(gc)->pfc; |
| 49 | } |
| 50 | |
Laurent Pinchart | 757b055 | 2013-07-15 13:25:08 +0200 | [diff] [blame] | 51 | static void gpio_get_data_reg(struct sh_pfc_chip *chip, unsigned int offset, |
Laurent Pinchart | 51cb226 | 2013-02-16 18:34:32 +0100 | [diff] [blame] | 52 | struct sh_pfc_gpio_data_reg **reg, |
| 53 | unsigned int *bit) |
Laurent Pinchart | 41f1219 | 2013-02-15 02:04:55 +0100 | [diff] [blame] | 54 | { |
Laurent Pinchart | 757b055 | 2013-07-15 13:25:08 +0200 | [diff] [blame] | 55 | int idx = sh_pfc_get_pin_index(chip->pfc, offset); |
Laurent Pinchart | 1a0039d | 2013-03-08 17:43:54 +0100 | [diff] [blame] | 56 | struct sh_pfc_gpio_pin *gpio_pin = &chip->pins[idx]; |
Laurent Pinchart | 41f1219 | 2013-02-15 02:04:55 +0100 | [diff] [blame] | 57 | |
Laurent Pinchart | 1a0039d | 2013-03-08 17:43:54 +0100 | [diff] [blame] | 58 | *reg = &chip->regs[gpio_pin->dreg]; |
| 59 | *bit = gpio_pin->dbit; |
Laurent Pinchart | 41f1219 | 2013-02-15 02:04:55 +0100 | [diff] [blame] | 60 | } |
| 61 | |
Laurent Pinchart | e51d534 | 2013-02-17 00:26:33 +0100 | [diff] [blame] | 62 | static unsigned long gpio_read_data_reg(struct sh_pfc_chip *chip, |
| 63 | const struct pinmux_data_reg *dreg) |
| 64 | { |
| 65 | void __iomem *mem = dreg->reg - chip->mem->phys + chip->mem->virt; |
| 66 | |
| 67 | return sh_pfc_read_raw_reg(mem, dreg->reg_width); |
| 68 | } |
| 69 | |
| 70 | static void gpio_write_data_reg(struct sh_pfc_chip *chip, |
| 71 | const struct pinmux_data_reg *dreg, |
| 72 | unsigned long value) |
| 73 | { |
| 74 | void __iomem *mem = dreg->reg - chip->mem->phys + chip->mem->virt; |
| 75 | |
| 76 | sh_pfc_write_raw_reg(mem, dreg->reg_width, value); |
| 77 | } |
| 78 | |
Laurent Pinchart | 757b055 | 2013-07-15 13:25:08 +0200 | [diff] [blame] | 79 | static void gpio_setup_data_reg(struct sh_pfc_chip *chip, unsigned idx) |
Laurent Pinchart | 41f1219 | 2013-02-15 02:04:55 +0100 | [diff] [blame] | 80 | { |
Laurent Pinchart | 1a0039d | 2013-03-08 17:43:54 +0100 | [diff] [blame] | 81 | struct sh_pfc *pfc = chip->pfc; |
Laurent Pinchart | 757b055 | 2013-07-15 13:25:08 +0200 | [diff] [blame] | 82 | struct sh_pfc_gpio_pin *gpio_pin = &chip->pins[idx]; |
| 83 | const struct sh_pfc_pin *pin = &pfc->info->pins[idx]; |
Laurent Pinchart | e51d534 | 2013-02-17 00:26:33 +0100 | [diff] [blame] | 84 | const struct pinmux_data_reg *dreg; |
| 85 | unsigned int bit; |
| 86 | unsigned int i; |
Laurent Pinchart | 41f1219 | 2013-02-15 02:04:55 +0100 | [diff] [blame] | 87 | |
Laurent Pinchart | e51d534 | 2013-02-17 00:26:33 +0100 | [diff] [blame] | 88 | for (i = 0, dreg = pfc->info->data_regs; dreg->reg; ++i, ++dreg) { |
| 89 | for (bit = 0; bit < dreg->reg_width; bit++) { |
Laurent Pinchart | 1a0039d | 2013-03-08 17:43:54 +0100 | [diff] [blame] | 90 | if (dreg->enum_ids[bit] == pin->enum_id) { |
| 91 | gpio_pin->dreg = i; |
| 92 | gpio_pin->dbit = bit; |
Laurent Pinchart | 41f1219 | 2013-02-15 02:04:55 +0100 | [diff] [blame] | 93 | return; |
| 94 | } |
| 95 | } |
Laurent Pinchart | 41f1219 | 2013-02-15 02:04:55 +0100 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | BUG(); |
| 99 | } |
| 100 | |
Laurent Pinchart | e51d534 | 2013-02-17 00:26:33 +0100 | [diff] [blame] | 101 | static int gpio_setup_data_regs(struct sh_pfc_chip *chip) |
Laurent Pinchart | 41f1219 | 2013-02-15 02:04:55 +0100 | [diff] [blame] | 102 | { |
Laurent Pinchart | e51d534 | 2013-02-17 00:26:33 +0100 | [diff] [blame] | 103 | struct sh_pfc *pfc = chip->pfc; |
Laurent Pinchart | 51cb226 | 2013-02-16 18:34:32 +0100 | [diff] [blame] | 104 | const struct pinmux_data_reg *dreg; |
Laurent Pinchart | e51d534 | 2013-02-17 00:26:33 +0100 | [diff] [blame] | 105 | unsigned int i; |
Laurent Pinchart | 41f1219 | 2013-02-15 02:04:55 +0100 | [diff] [blame] | 106 | |
Laurent Pinchart | 51cb226 | 2013-02-16 18:34:32 +0100 | [diff] [blame] | 107 | /* Count the number of data registers, allocate memory and initialize |
| 108 | * them. |
| 109 | */ |
| 110 | for (i = 0; pfc->info->data_regs[i].reg_width; ++i) |
| 111 | ; |
| 112 | |
| 113 | chip->regs = devm_kzalloc(pfc->dev, i * sizeof(*chip->regs), |
| 114 | GFP_KERNEL); |
| 115 | if (chip->regs == NULL) |
| 116 | return -ENOMEM; |
| 117 | |
| 118 | for (i = 0, dreg = pfc->info->data_regs; dreg->reg_width; ++i, ++dreg) { |
| 119 | chip->regs[i].info = dreg; |
| 120 | chip->regs[i].shadow = gpio_read_data_reg(chip, dreg); |
| 121 | } |
Laurent Pinchart | e51d534 | 2013-02-17 00:26:33 +0100 | [diff] [blame] | 122 | |
| 123 | for (i = 0; i < pfc->info->nr_pins; i++) { |
| 124 | if (pfc->info->pins[i].enum_id == 0) |
Laurent Pinchart | 41f1219 | 2013-02-15 02:04:55 +0100 | [diff] [blame] | 125 | continue; |
| 126 | |
Laurent Pinchart | 1a0039d | 2013-03-08 17:43:54 +0100 | [diff] [blame] | 127 | gpio_setup_data_reg(chip, i); |
Laurent Pinchart | 41f1219 | 2013-02-15 02:04:55 +0100 | [diff] [blame] | 128 | } |
| 129 | |
Laurent Pinchart | e51d534 | 2013-02-17 00:26:33 +0100 | [diff] [blame] | 130 | return 0; |
Laurent Pinchart | 41f1219 | 2013-02-15 02:04:55 +0100 | [diff] [blame] | 131 | } |
| 132 | |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 133 | /* ----------------------------------------------------------------------------- |
| 134 | * Pin GPIOs |
| 135 | */ |
| 136 | |
| 137 | static int gpio_pin_request(struct gpio_chip *gc, unsigned offset) |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 138 | { |
Laurent Pinchart | 0b73ee5 | 2013-02-14 22:12:11 +0100 | [diff] [blame] | 139 | struct sh_pfc *pfc = gpio_to_pfc(gc); |
Laurent Pinchart | 1a0039d | 2013-03-08 17:43:54 +0100 | [diff] [blame] | 140 | int idx = sh_pfc_get_pin_index(pfc, offset); |
Laurent Pinchart | 0b73ee5 | 2013-02-14 22:12:11 +0100 | [diff] [blame] | 141 | |
Laurent Pinchart | 1a0039d | 2013-03-08 17:43:54 +0100 | [diff] [blame] | 142 | if (idx < 0 || pfc->info->pins[idx].enum_id == 0) |
Laurent Pinchart | 0b73ee5 | 2013-02-14 22:12:11 +0100 | [diff] [blame] | 143 | return -EINVAL; |
| 144 | |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 145 | return pinctrl_request_gpio(offset); |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 146 | } |
| 147 | |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 148 | static void gpio_pin_free(struct gpio_chip *gc, unsigned offset) |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 149 | { |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 150 | return pinctrl_free_gpio(offset); |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 151 | } |
| 152 | |
Laurent Pinchart | e51d534 | 2013-02-17 00:26:33 +0100 | [diff] [blame] | 153 | static void gpio_pin_set_value(struct sh_pfc_chip *chip, unsigned offset, |
| 154 | int value) |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 155 | { |
Laurent Pinchart | 51cb226 | 2013-02-16 18:34:32 +0100 | [diff] [blame] | 156 | struct sh_pfc_gpio_data_reg *reg; |
Laurent Pinchart | 41f1219 | 2013-02-15 02:04:55 +0100 | [diff] [blame] | 157 | unsigned long pos; |
| 158 | unsigned int bit; |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 159 | |
Laurent Pinchart | 51cb226 | 2013-02-16 18:34:32 +0100 | [diff] [blame] | 160 | gpio_get_data_reg(chip, offset, ®, &bit); |
Laurent Pinchart | 41f1219 | 2013-02-15 02:04:55 +0100 | [diff] [blame] | 161 | |
Laurent Pinchart | 51cb226 | 2013-02-16 18:34:32 +0100 | [diff] [blame] | 162 | pos = reg->info->reg_width - (bit + 1); |
Laurent Pinchart | 41f1219 | 2013-02-15 02:04:55 +0100 | [diff] [blame] | 163 | |
| 164 | if (value) |
Laurent Pinchart | 51cb226 | 2013-02-16 18:34:32 +0100 | [diff] [blame] | 165 | set_bit(pos, ®->shadow); |
Laurent Pinchart | 41f1219 | 2013-02-15 02:04:55 +0100 | [diff] [blame] | 166 | else |
Laurent Pinchart | 51cb226 | 2013-02-16 18:34:32 +0100 | [diff] [blame] | 167 | clear_bit(pos, ®->shadow); |
Laurent Pinchart | 41f1219 | 2013-02-15 02:04:55 +0100 | [diff] [blame] | 168 | |
Laurent Pinchart | 51cb226 | 2013-02-16 18:34:32 +0100 | [diff] [blame] | 169 | gpio_write_data_reg(chip, reg->info, reg->shadow); |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 170 | } |
| 171 | |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 172 | static int gpio_pin_direction_input(struct gpio_chip *gc, unsigned offset) |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 173 | { |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 174 | return pinctrl_gpio_direction_input(offset); |
| 175 | } |
| 176 | |
| 177 | static int gpio_pin_direction_output(struct gpio_chip *gc, unsigned offset, |
| 178 | int value) |
| 179 | { |
Laurent Pinchart | e51d534 | 2013-02-17 00:26:33 +0100 | [diff] [blame] | 180 | gpio_pin_set_value(gpio_to_pfc_chip(gc), offset, value); |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 181 | |
| 182 | return pinctrl_gpio_direction_output(offset); |
| 183 | } |
| 184 | |
| 185 | static int gpio_pin_get(struct gpio_chip *gc, unsigned offset) |
| 186 | { |
Laurent Pinchart | e51d534 | 2013-02-17 00:26:33 +0100 | [diff] [blame] | 187 | struct sh_pfc_chip *chip = gpio_to_pfc_chip(gc); |
Laurent Pinchart | 51cb226 | 2013-02-16 18:34:32 +0100 | [diff] [blame] | 188 | struct sh_pfc_gpio_data_reg *reg; |
Laurent Pinchart | 41f1219 | 2013-02-15 02:04:55 +0100 | [diff] [blame] | 189 | unsigned long pos; |
| 190 | unsigned int bit; |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 191 | |
Laurent Pinchart | 51cb226 | 2013-02-16 18:34:32 +0100 | [diff] [blame] | 192 | gpio_get_data_reg(chip, offset, ®, &bit); |
Laurent Pinchart | 41f1219 | 2013-02-15 02:04:55 +0100 | [diff] [blame] | 193 | |
Laurent Pinchart | 51cb226 | 2013-02-16 18:34:32 +0100 | [diff] [blame] | 194 | pos = reg->info->reg_width - (bit + 1); |
Laurent Pinchart | 41f1219 | 2013-02-15 02:04:55 +0100 | [diff] [blame] | 195 | |
Laurent Pinchart | 51cb226 | 2013-02-16 18:34:32 +0100 | [diff] [blame] | 196 | return (gpio_read_data_reg(chip, reg->info) >> pos) & 1; |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 197 | } |
| 198 | |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 199 | static void gpio_pin_set(struct gpio_chip *gc, unsigned offset, int value) |
Paul Mundt | ca5481c6 | 2012-07-10 12:08:14 +0900 | [diff] [blame] | 200 | { |
Laurent Pinchart | e51d534 | 2013-02-17 00:26:33 +0100 | [diff] [blame] | 201 | gpio_pin_set_value(gpio_to_pfc_chip(gc), offset, value); |
Paul Mundt | ca5481c6 | 2012-07-10 12:08:14 +0900 | [diff] [blame] | 202 | } |
| 203 | |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 204 | static int gpio_pin_to_irq(struct gpio_chip *gc, unsigned offset) |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 205 | { |
| 206 | struct sh_pfc *pfc = gpio_to_pfc(gc); |
Laurent Pinchart | 8d72a7f | 2013-12-11 04:26:21 +0100 | [diff] [blame] | 207 | unsigned int i, k; |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 208 | |
Laurent Pinchart | c07f54f | 2013-01-03 14:12:14 +0100 | [diff] [blame] | 209 | for (i = 0; i < pfc->info->gpio_irq_size; i++) { |
Laurent Pinchart | 6d5bddd | 2013-12-16 20:25:15 +0100 | [diff] [blame] | 210 | const short *gpios = pfc->info->gpio_irq[i].gpios; |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 211 | |
Laurent Pinchart | 316b255 | 2013-12-11 04:26:22 +0100 | [diff] [blame] | 212 | for (k = 0; gpios[k] >= 0; k++) { |
Laurent Pinchart | c07f54f | 2013-01-03 14:12:14 +0100 | [diff] [blame] | 213 | if (gpios[k] == offset) |
Laurent Pinchart | 70c8f01 | 2013-12-11 04:26:26 +0100 | [diff] [blame] | 214 | goto found; |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 215 | } |
| 216 | } |
| 217 | |
| 218 | return -ENOSYS; |
Laurent Pinchart | 70c8f01 | 2013-12-11 04:26:26 +0100 | [diff] [blame] | 219 | |
| 220 | found: |
| 221 | if (pfc->num_irqs) |
| 222 | return pfc->irqs[i]; |
| 223 | else |
| 224 | return pfc->info->gpio_irq[i].irq; |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 225 | } |
| 226 | |
Laurent Pinchart | e51d534 | 2013-02-17 00:26:33 +0100 | [diff] [blame] | 227 | static int gpio_pin_setup(struct sh_pfc_chip *chip) |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 228 | { |
| 229 | struct sh_pfc *pfc = chip->pfc; |
| 230 | struct gpio_chip *gc = &chip->gpio_chip; |
Laurent Pinchart | e51d534 | 2013-02-17 00:26:33 +0100 | [diff] [blame] | 231 | int ret; |
| 232 | |
Laurent Pinchart | a1a3580 | 2013-07-15 13:36:39 +0200 | [diff] [blame] | 233 | chip->pins = devm_kzalloc(pfc->dev, pfc->info->nr_pins * |
| 234 | sizeof(*chip->pins), GFP_KERNEL); |
Laurent Pinchart | 1a0039d | 2013-03-08 17:43:54 +0100 | [diff] [blame] | 235 | if (chip->pins == NULL) |
| 236 | return -ENOMEM; |
| 237 | |
Laurent Pinchart | e51d534 | 2013-02-17 00:26:33 +0100 | [diff] [blame] | 238 | ret = gpio_setup_data_regs(chip); |
| 239 | if (ret < 0) |
| 240 | return ret; |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 241 | |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 242 | gc->request = gpio_pin_request; |
| 243 | gc->free = gpio_pin_free; |
| 244 | gc->direction_input = gpio_pin_direction_input; |
| 245 | gc->get = gpio_pin_get; |
| 246 | gc->direction_output = gpio_pin_direction_output; |
| 247 | gc->set = gpio_pin_set; |
| 248 | gc->to_irq = gpio_pin_to_irq; |
| 249 | |
| 250 | gc->label = pfc->info->name; |
| 251 | gc->dev = pfc->dev; |
| 252 | gc->owner = THIS_MODULE; |
| 253 | gc->base = 0; |
Laurent Pinchart | 28818fa | 2013-07-15 13:48:56 +0200 | [diff] [blame] | 254 | gc->ngpio = pfc->nr_gpio_pins; |
Laurent Pinchart | e51d534 | 2013-02-17 00:26:33 +0100 | [diff] [blame] | 255 | |
| 256 | return 0; |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | /* ----------------------------------------------------------------------------- |
| 260 | * Function GPIOs |
| 261 | */ |
| 262 | |
| 263 | static int gpio_function_request(struct gpio_chip *gc, unsigned offset) |
| 264 | { |
Laurent Pinchart | 9a643c9 | 2013-03-10 18:00:02 +0100 | [diff] [blame] | 265 | static bool __print_once; |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 266 | struct sh_pfc *pfc = gpio_to_pfc(gc); |
Laurent Pinchart | a68fdca9 | 2013-02-14 17:36:56 +0100 | [diff] [blame] | 267 | unsigned int mark = pfc->info->func_gpios[offset].enum_id; |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 268 | unsigned long flags; |
Laurent Pinchart | b705c05 | 2013-03-10 16:38:23 +0100 | [diff] [blame] | 269 | int ret; |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 270 | |
Laurent Pinchart | 9a643c9 | 2013-03-10 18:00:02 +0100 | [diff] [blame] | 271 | if (!__print_once) { |
| 272 | dev_notice(pfc->dev, |
| 273 | "Use of GPIO API for function requests is deprecated." |
| 274 | " Convert to pinctrl\n"); |
| 275 | __print_once = true; |
| 276 | } |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 277 | |
Laurent Pinchart | a68fdca9 | 2013-02-14 17:36:56 +0100 | [diff] [blame] | 278 | if (mark == 0) |
Laurent Pinchart | b705c05 | 2013-03-10 16:38:23 +0100 | [diff] [blame] | 279 | return -EINVAL; |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 280 | |
| 281 | spin_lock_irqsave(&pfc->lock, flags); |
Laurent Pinchart | b705c05 | 2013-03-10 16:38:23 +0100 | [diff] [blame] | 282 | ret = sh_pfc_config_mux(pfc, mark, PINMUX_TYPE_FUNCTION); |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 283 | spin_unlock_irqrestore(&pfc->lock, flags); |
Laurent Pinchart | b705c05 | 2013-03-10 16:38:23 +0100 | [diff] [blame] | 284 | |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 285 | return ret; |
| 286 | } |
| 287 | |
| 288 | static void gpio_function_free(struct gpio_chip *gc, unsigned offset) |
| 289 | { |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 290 | } |
| 291 | |
Laurent Pinchart | e51d534 | 2013-02-17 00:26:33 +0100 | [diff] [blame] | 292 | static int gpio_function_setup(struct sh_pfc_chip *chip) |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 293 | { |
| 294 | struct sh_pfc *pfc = chip->pfc; |
| 295 | struct gpio_chip *gc = &chip->gpio_chip; |
| 296 | |
| 297 | gc->request = gpio_function_request; |
| 298 | gc->free = gpio_function_free; |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 299 | |
Laurent Pinchart | 19bb7fe3 | 2012-12-15 23:51:20 +0100 | [diff] [blame] | 300 | gc->label = pfc->info->name; |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 301 | gc->owner = THIS_MODULE; |
Laurent Pinchart | 28818fa | 2013-07-15 13:48:56 +0200 | [diff] [blame] | 302 | gc->base = pfc->nr_gpio_pins; |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 303 | gc->ngpio = pfc->info->nr_func_gpios; |
Laurent Pinchart | e51d534 | 2013-02-17 00:26:33 +0100 | [diff] [blame] | 304 | |
| 305 | return 0; |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 306 | } |
| 307 | |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 308 | /* ----------------------------------------------------------------------------- |
| 309 | * Register/unregister |
| 310 | */ |
| 311 | |
| 312 | static struct sh_pfc_chip * |
Laurent Pinchart | ceef91d | 2013-03-10 03:19:44 +0100 | [diff] [blame] | 313 | sh_pfc_add_gpiochip(struct sh_pfc *pfc, int(*setup)(struct sh_pfc_chip *), |
| 314 | struct sh_pfc_window *mem) |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 315 | { |
| 316 | struct sh_pfc_chip *chip; |
| 317 | int ret; |
| 318 | |
Laurent Pinchart | 1724acf | 2012-12-15 23:50:48 +0100 | [diff] [blame] | 319 | chip = devm_kzalloc(pfc->dev, sizeof(*chip), GFP_KERNEL); |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 320 | if (unlikely(!chip)) |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 321 | return ERR_PTR(-ENOMEM); |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 322 | |
Laurent Pinchart | ceef91d | 2013-03-10 03:19:44 +0100 | [diff] [blame] | 323 | chip->mem = mem; |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 324 | chip->pfc = pfc; |
| 325 | |
Laurent Pinchart | e51d534 | 2013-02-17 00:26:33 +0100 | [diff] [blame] | 326 | ret = setup(chip); |
| 327 | if (ret < 0) |
| 328 | return ERR_PTR(ret); |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 329 | |
| 330 | ret = gpiochip_add(&chip->gpio_chip); |
Laurent Pinchart | 1724acf | 2012-12-15 23:50:48 +0100 | [diff] [blame] | 331 | if (unlikely(ret < 0)) |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 332 | return ERR_PTR(ret); |
| 333 | |
Laurent Pinchart | 9a643c9 | 2013-03-10 18:00:02 +0100 | [diff] [blame] | 334 | dev_info(pfc->dev, "%s handling gpio %u -> %u\n", |
| 335 | chip->gpio_chip.label, chip->gpio_chip.base, |
| 336 | chip->gpio_chip.base + chip->gpio_chip.ngpio - 1); |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 337 | |
| 338 | return chip; |
| 339 | } |
| 340 | |
| 341 | int sh_pfc_register_gpiochip(struct sh_pfc *pfc) |
| 342 | { |
| 343 | struct sh_pfc_chip *chip; |
Laurent Pinchart | 63d5738 | 2013-02-15 01:33:38 +0100 | [diff] [blame] | 344 | unsigned int i; |
Laurent Pinchart | 247127f | 2013-03-08 00:45:12 +0100 | [diff] [blame] | 345 | int ret; |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 346 | |
Laurent Pinchart | 1a4fd58 | 2013-03-10 03:19:44 +0100 | [diff] [blame] | 347 | if (pfc->info->data_regs == NULL) |
| 348 | return 0; |
| 349 | |
Laurent Pinchart | ceef91d | 2013-03-10 03:19:44 +0100 | [diff] [blame] | 350 | /* Find the memory window that contain the GPIO registers. Boards that |
| 351 | * register a separate GPIO device will not supply a memory resource |
| 352 | * that covers the data registers. In that case don't try to handle |
| 353 | * GPIOs. |
| 354 | */ |
| 355 | for (i = 0; i < pfc->num_windows; ++i) { |
Laurent Pinchart | 5b46ac3 | 2013-12-11 04:26:25 +0100 | [diff] [blame] | 356 | struct sh_pfc_window *window = &pfc->windows[i]; |
Laurent Pinchart | ceef91d | 2013-03-10 03:19:44 +0100 | [diff] [blame] | 357 | |
| 358 | if (pfc->info->data_regs[0].reg >= window->phys && |
| 359 | pfc->info->data_regs[0].reg < window->phys + window->size) |
| 360 | break; |
| 361 | } |
| 362 | |
| 363 | if (i == pfc->num_windows) |
| 364 | return 0; |
| 365 | |
Laurent Pinchart | 70c8f01 | 2013-12-11 04:26:26 +0100 | [diff] [blame] | 366 | /* If we have IRQ resources make sure their number is correct. */ |
| 367 | if (pfc->num_irqs && pfc->num_irqs != pfc->info->gpio_irq_size) { |
| 368 | dev_err(pfc->dev, "invalid number of IRQ resources\n"); |
| 369 | return -EINVAL; |
| 370 | } |
| 371 | |
Laurent Pinchart | 63d5738 | 2013-02-15 01:33:38 +0100 | [diff] [blame] | 372 | /* Register the real GPIOs chip. */ |
Laurent Pinchart | 5b46ac3 | 2013-12-11 04:26:25 +0100 | [diff] [blame] | 373 | chip = sh_pfc_add_gpiochip(pfc, gpio_pin_setup, &pfc->windows[i]); |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 374 | if (IS_ERR(chip)) |
| 375 | return PTR_ERR(chip); |
Laurent Pinchart | 6f6a4a6 | 2012-12-15 23:50:46 +0100 | [diff] [blame] | 376 | |
| 377 | pfc->gpio = chip; |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 378 | |
Laurent Pinchart | 4f82e3e | 2013-07-15 21:10:54 +0200 | [diff] [blame] | 379 | /* Register the GPIO to pin mappings. As pins with GPIO ports must come |
| 380 | * first in the ranges, skip the pins without GPIO ports by stopping at |
| 381 | * the first range that contains such a pin. |
| 382 | */ |
Laurent Pinchart | acac8ed | 2013-07-15 18:38:30 +0200 | [diff] [blame] | 383 | for (i = 0; i < pfc->nr_ranges; ++i) { |
| 384 | const struct sh_pfc_pin_range *range = &pfc->ranges[i]; |
Laurent Pinchart | 63d5738 | 2013-02-15 01:33:38 +0100 | [diff] [blame] | 385 | |
Laurent Pinchart | 4f82e3e | 2013-07-15 21:10:54 +0200 | [diff] [blame] | 386 | if (range->start >= pfc->nr_gpio_pins) |
| 387 | break; |
| 388 | |
Laurent Pinchart | 63d5738 | 2013-02-15 01:33:38 +0100 | [diff] [blame] | 389 | ret = gpiochip_add_pin_range(&chip->gpio_chip, |
| 390 | dev_name(pfc->dev), |
Laurent Pinchart | acac8ed | 2013-07-15 18:38:30 +0200 | [diff] [blame] | 391 | range->start, range->start, |
| 392 | range->end - range->start + 1); |
Laurent Pinchart | 63d5738 | 2013-02-15 01:33:38 +0100 | [diff] [blame] | 393 | if (ret < 0) |
| 394 | return ret; |
| 395 | } |
| 396 | |
| 397 | /* Register the function GPIOs chip. */ |
Laurent Pinchart | 542a564 | 2013-03-07 14:31:57 +0100 | [diff] [blame] | 398 | if (pfc->info->nr_func_gpios == 0) |
| 399 | return 0; |
| 400 | |
Laurent Pinchart | ceef91d | 2013-03-10 03:19:44 +0100 | [diff] [blame] | 401 | chip = sh_pfc_add_gpiochip(pfc, gpio_function_setup, NULL); |
Laurent Pinchart | 1688381 | 2012-12-06 14:49:25 +0100 | [diff] [blame] | 402 | if (IS_ERR(chip)) |
| 403 | return PTR_ERR(chip); |
| 404 | |
| 405 | pfc->func = chip; |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 406 | |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 407 | return 0; |
| 408 | } |
| 409 | |
Laurent Pinchart | 6f6a4a6 | 2012-12-15 23:50:46 +0100 | [diff] [blame] | 410 | int sh_pfc_unregister_gpiochip(struct sh_pfc *pfc) |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 411 | { |
abdoulaye berthe | b4e7c55 | 2014-07-12 22:30:13 +0200 | [diff] [blame] | 412 | gpiochip_remove(&pfc->gpio->gpio_chip); |
| 413 | gpiochip_remove(&pfc->func->gpio_chip); |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 414 | |
abdoulaye berthe | b4e7c55 | 2014-07-12 22:30:13 +0200 | [diff] [blame] | 415 | return 0; |
Paul Mundt | b3c185a | 2012-06-20 17:29:04 +0900 | [diff] [blame] | 416 | } |