blob: e7d127a9c1c54ad619fba61fd1fd98953e594f6d [file] [log] [blame]
Magnus Damm2967dab2008-10-08 20:41:43 +09001/*
2 * Pinmuxed GPIO support for SuperH.
3 *
4 * Copyright (C) 2008 Magnus Damm
5 *
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
8 * for more details.
9 */
Paul Mundtb72421d2010-10-04 03:54:56 +090010#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11
Magnus Damm2967dab2008-10-08 20:41:43 +090012#include <linux/errno.h>
13#include <linux/kernel.h>
14#include <linux/list.h>
15#include <linux/module.h>
16#include <linux/clk.h>
17#include <linux/err.h>
18#include <linux/io.h>
19#include <linux/irq.h>
20#include <linux/bitops.h>
21#include <linux/gpio.h>
Magnus Dammb0e10212011-12-09 12:14:27 +090022#include <linux/slab.h>
23#include <linux/ioport.h>
24
25static void pfc_iounmap(struct pinmux_info *pip)
26{
27 int k;
28
29 for (k = 0; k < pip->num_resources; k++)
30 if (pip->window[k].virt)
31 iounmap(pip->window[k].virt);
32
33 kfree(pip->window);
34 pip->window = NULL;
35}
36
37static int pfc_ioremap(struct pinmux_info *pip)
38{
39 struct resource *res;
40 int k;
41
42 if (!pip->num_resources)
43 return 0;
44
45 pip->window = kzalloc(pip->num_resources * sizeof(*pip->window),
46 GFP_NOWAIT);
47 if (!pip->window)
48 goto err1;
49
50 for (k = 0; k < pip->num_resources; k++) {
51 res = pip->resource + k;
52 WARN_ON(resource_type(res) != IORESOURCE_MEM);
53 pip->window[k].phys = res->start;
54 pip->window[k].size = resource_size(res);
55 pip->window[k].virt = ioremap_nocache(res->start,
56 resource_size(res));
57 if (!pip->window[k].virt)
58 goto err2;
59 }
60
61 return 0;
62
63err2:
64 pfc_iounmap(pip);
65err1:
66 return -1;
67}
68
69static void __iomem *pfc_phys_to_virt(struct pinmux_info *pip,
70 unsigned long address)
71{
72 struct pfc_window *window;
73 int k;
74
75 /* scan through physical windows and convert address */
76 for (k = 0; k < pip->num_resources; k++) {
77 window = pip->window + k;
78
79 if (address < window->phys)
80 continue;
81
82 if (address >= (window->phys + window->size))
83 continue;
84
85 return window->virt + (address - window->phys);
86 }
87
88 /* no windows defined, register must be 1:1 mapped virt:phys */
89 return (void __iomem *)address;
90}
Magnus Damm2967dab2008-10-08 20:41:43 +090091
Magnus Damm2967dab2008-10-08 20:41:43 +090092static int enum_in_range(pinmux_enum_t enum_id, struct pinmux_range *r)
93{
94 if (enum_id < r->begin)
95 return 0;
96
97 if (enum_id > r->end)
98 return 0;
99
100 return 1;
101}
102
Magnus Dammb0e10212011-12-09 12:14:27 +0900103static unsigned long gpio_read_raw_reg(void __iomem *mapped_reg,
Magnus Damm32920942008-12-25 18:17:26 +0900104 unsigned long reg_width)
105{
106 switch (reg_width) {
107 case 8:
Magnus Dammb0e10212011-12-09 12:14:27 +0900108 return ioread8(mapped_reg);
Magnus Damm32920942008-12-25 18:17:26 +0900109 case 16:
Magnus Dammb0e10212011-12-09 12:14:27 +0900110 return ioread16(mapped_reg);
Magnus Damm32920942008-12-25 18:17:26 +0900111 case 32:
Magnus Dammb0e10212011-12-09 12:14:27 +0900112 return ioread32(mapped_reg);
Magnus Damm32920942008-12-25 18:17:26 +0900113 }
114
115 BUG();
116 return 0;
117}
118
Magnus Dammb0e10212011-12-09 12:14:27 +0900119static void gpio_write_raw_reg(void __iomem *mapped_reg,
Magnus Damm32920942008-12-25 18:17:26 +0900120 unsigned long reg_width,
121 unsigned long data)
122{
123 switch (reg_width) {
124 case 8:
Magnus Dammb0e10212011-12-09 12:14:27 +0900125 iowrite8(data, mapped_reg);
Magnus Damm32920942008-12-25 18:17:26 +0900126 return;
127 case 16:
Magnus Dammb0e10212011-12-09 12:14:27 +0900128 iowrite16(data, mapped_reg);
Magnus Damm32920942008-12-25 18:17:26 +0900129 return;
130 case 32:
Magnus Dammb0e10212011-12-09 12:14:27 +0900131 iowrite32(data, mapped_reg);
Magnus Damm32920942008-12-25 18:17:26 +0900132 return;
133 }
134
135 BUG();
136}
137
138static void gpio_write_bit(struct pinmux_data_reg *dr,
139 unsigned long in_pos, unsigned long value)
140{
141 unsigned long pos;
142
143 pos = dr->reg_width - (in_pos + 1);
144
Paul Mundtca6f2d72009-12-09 15:51:27 +0900145 pr_debug("write_bit addr = %lx, value = %d, pos = %ld, "
Paul Mundtfd2cb0c2009-11-30 12:15:04 +0900146 "r_width = %ld\n",
147 dr->reg, !!value, pos, dr->reg_width);
Magnus Damm32920942008-12-25 18:17:26 +0900148
149 if (value)
150 set_bit(pos, &dr->reg_shadow);
151 else
152 clear_bit(pos, &dr->reg_shadow);
153
Magnus Dammb0e10212011-12-09 12:14:27 +0900154 gpio_write_raw_reg(dr->mapped_reg, dr->reg_width, dr->reg_shadow);
Magnus Damm32920942008-12-25 18:17:26 +0900155}
156
Magnus Dammb0e10212011-12-09 12:14:27 +0900157static int gpio_read_reg(void __iomem *mapped_reg, unsigned long reg_width,
158 unsigned long field_width, unsigned long in_pos,
159 unsigned long reg)
Magnus Damm2967dab2008-10-08 20:41:43 +0900160{
161 unsigned long data, mask, pos;
162
163 data = 0;
164 mask = (1 << field_width) - 1;
165 pos = reg_width - ((in_pos + 1) * field_width);
166
Paul Mundtfd2cb0c2009-11-30 12:15:04 +0900167 pr_debug("read_reg: addr = %lx, pos = %ld, "
168 "r_width = %ld, f_width = %ld\n",
169 reg, pos, reg_width, field_width);
Magnus Damm2967dab2008-10-08 20:41:43 +0900170
Magnus Dammb0e10212011-12-09 12:14:27 +0900171 data = gpio_read_raw_reg(mapped_reg, reg_width);
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900172 return (data >> pos) & mask;
173}
Magnus Damm2967dab2008-10-08 20:41:43 +0900174
Magnus Dammb0e10212011-12-09 12:14:27 +0900175static void gpio_write_reg(void __iomem *mapped_reg, unsigned long reg_width,
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900176 unsigned long field_width, unsigned long in_pos,
Magnus Dammb0e10212011-12-09 12:14:27 +0900177 unsigned long value, unsigned long reg)
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900178{
179 unsigned long mask, pos;
180
181 mask = (1 << field_width) - 1;
182 pos = reg_width - ((in_pos + 1) * field_width);
183
Paul Mundtfd2cb0c2009-11-30 12:15:04 +0900184 pr_debug("write_reg addr = %lx, value = %ld, pos = %ld, "
185 "r_width = %ld, f_width = %ld\n",
186 reg, value, pos, reg_width, field_width);
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900187
188 mask = ~(mask << pos);
189 value = value << pos;
Magnus Damm2967dab2008-10-08 20:41:43 +0900190
191 switch (reg_width) {
192 case 8:
Magnus Dammb0e10212011-12-09 12:14:27 +0900193 iowrite8((ioread8(mapped_reg) & mask) | value, mapped_reg);
Magnus Damm2967dab2008-10-08 20:41:43 +0900194 break;
195 case 16:
Magnus Dammb0e10212011-12-09 12:14:27 +0900196 iowrite16((ioread16(mapped_reg) & mask) | value, mapped_reg);
Magnus Damm2967dab2008-10-08 20:41:43 +0900197 break;
198 case 32:
Magnus Dammb0e10212011-12-09 12:14:27 +0900199 iowrite32((ioread32(mapped_reg) & mask) | value, mapped_reg);
Magnus Damm2967dab2008-10-08 20:41:43 +0900200 break;
201 }
Magnus Damm2967dab2008-10-08 20:41:43 +0900202}
203
Magnus Damm18801be2008-12-25 18:17:09 +0900204static int setup_data_reg(struct pinmux_info *gpioc, unsigned gpio)
Magnus Damm2967dab2008-10-08 20:41:43 +0900205{
Magnus Damm18801be2008-12-25 18:17:09 +0900206 struct pinmux_gpio *gpiop = &gpioc->gpios[gpio];
Magnus Damm2967dab2008-10-08 20:41:43 +0900207 struct pinmux_data_reg *data_reg;
208 int k, n;
209
Magnus Damm18801be2008-12-25 18:17:09 +0900210 if (!enum_in_range(gpiop->enum_id, &gpioc->data))
Magnus Damm2967dab2008-10-08 20:41:43 +0900211 return -1;
212
213 k = 0;
214 while (1) {
215 data_reg = gpioc->data_regs + k;
216
217 if (!data_reg->reg_width)
218 break;
219
Magnus Dammb0e10212011-12-09 12:14:27 +0900220 data_reg->mapped_reg = pfc_phys_to_virt(gpioc, data_reg->reg);
221
Magnus Damm2967dab2008-10-08 20:41:43 +0900222 for (n = 0; n < data_reg->reg_width; n++) {
Magnus Damm18801be2008-12-25 18:17:09 +0900223 if (data_reg->enum_ids[n] == gpiop->enum_id) {
224 gpiop->flags &= ~PINMUX_FLAG_DREG;
225 gpiop->flags |= (k << PINMUX_FLAG_DREG_SHIFT);
226 gpiop->flags &= ~PINMUX_FLAG_DBIT;
227 gpiop->flags |= (n << PINMUX_FLAG_DBIT_SHIFT);
Magnus Damm2967dab2008-10-08 20:41:43 +0900228 return 0;
Magnus Damm2967dab2008-10-08 20:41:43 +0900229 }
230 }
231 k++;
232 }
233
Magnus Damm18801be2008-12-25 18:17:09 +0900234 BUG();
235
Magnus Damm2967dab2008-10-08 20:41:43 +0900236 return -1;
237}
238
Magnus Damm32920942008-12-25 18:17:26 +0900239static void setup_data_regs(struct pinmux_info *gpioc)
240{
241 struct pinmux_data_reg *drp;
242 int k;
243
244 for (k = gpioc->first_gpio; k <= gpioc->last_gpio; k++)
245 setup_data_reg(gpioc, k);
246
247 k = 0;
248 while (1) {
249 drp = gpioc->data_regs + k;
250
251 if (!drp->reg_width)
252 break;
253
Magnus Dammb0e10212011-12-09 12:14:27 +0900254 drp->reg_shadow = gpio_read_raw_reg(drp->mapped_reg,
255 drp->reg_width);
Magnus Damm32920942008-12-25 18:17:26 +0900256 k++;
257 }
258}
259
Magnus Damm18801be2008-12-25 18:17:09 +0900260static int get_data_reg(struct pinmux_info *gpioc, unsigned gpio,
261 struct pinmux_data_reg **drp, int *bitp)
262{
263 struct pinmux_gpio *gpiop = &gpioc->gpios[gpio];
264 int k, n;
265
266 if (!enum_in_range(gpiop->enum_id, &gpioc->data))
267 return -1;
268
269 k = (gpiop->flags & PINMUX_FLAG_DREG) >> PINMUX_FLAG_DREG_SHIFT;
270 n = (gpiop->flags & PINMUX_FLAG_DBIT) >> PINMUX_FLAG_DBIT_SHIFT;
271 *drp = gpioc->data_regs + k;
272 *bitp = n;
273 return 0;
274}
275
Magnus Damm2967dab2008-10-08 20:41:43 +0900276static int get_config_reg(struct pinmux_info *gpioc, pinmux_enum_t enum_id,
277 struct pinmux_cfg_reg **crp, int *indexp,
278 unsigned long **cntp)
279{
280 struct pinmux_cfg_reg *config_reg;
281 unsigned long r_width, f_width;
282 int k, n;
283
284 k = 0;
285 while (1) {
286 config_reg = gpioc->cfg_regs + k;
287
288 r_width = config_reg->reg_width;
289 f_width = config_reg->field_width;
290
291 if (!r_width)
292 break;
Magnus Dammc63bcc62011-10-17 18:01:19 +0900293 for (n = 0; n < (r_width / f_width) * (1 << f_width); n++) {
Magnus Damm2967dab2008-10-08 20:41:43 +0900294 if (config_reg->enum_ids[n] == enum_id) {
295 *crp = config_reg;
296 *indexp = n;
297 *cntp = &config_reg->cnt[n / (1 << f_width)];
298 return 0;
299 }
300 }
301 k++;
302 }
303
304 return -1;
305}
306
307static int get_gpio_enum_id(struct pinmux_info *gpioc, unsigned gpio,
308 int pos, pinmux_enum_t *enum_idp)
309{
310 pinmux_enum_t enum_id = gpioc->gpios[gpio].enum_id;
311 pinmux_enum_t *data = gpioc->gpio_data;
312 int k;
313
314 if (!enum_in_range(enum_id, &gpioc->data)) {
315 if (!enum_in_range(enum_id, &gpioc->mark)) {
316 pr_err("non data/mark enum_id for gpio %d\n", gpio);
317 return -1;
318 }
319 }
320
321 if (pos) {
322 *enum_idp = data[pos + 1];
323 return pos + 1;
324 }
325
326 for (k = 0; k < gpioc->gpio_data_size; k++) {
327 if (data[k] == enum_id) {
328 *enum_idp = data[k + 1];
329 return k + 1;
330 }
331 }
332
333 pr_err("cannot locate data/mark enum_id for gpio %d\n", gpio);
334 return -1;
335}
336
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900337static void write_config_reg(struct pinmux_info *gpioc,
338 struct pinmux_cfg_reg *crp,
339 int index)
Magnus Damm2967dab2008-10-08 20:41:43 +0900340{
341 unsigned long ncomb, pos, value;
Magnus Dammb0e10212011-12-09 12:14:27 +0900342 void __iomem *mapped_reg;
Magnus Damm2967dab2008-10-08 20:41:43 +0900343
344 ncomb = 1 << crp->field_width;
345 pos = index / ncomb;
346 value = index % ncomb;
347
Magnus Dammb0e10212011-12-09 12:14:27 +0900348 mapped_reg = pfc_phys_to_virt(gpioc, crp->reg);
349
350 gpio_write_reg(mapped_reg, crp->reg_width, crp->field_width,
351 pos, value, crp->reg);
Magnus Damm2967dab2008-10-08 20:41:43 +0900352}
353
354static int check_config_reg(struct pinmux_info *gpioc,
355 struct pinmux_cfg_reg *crp,
356 int index)
357{
358 unsigned long ncomb, pos, value;
Magnus Dammb0e10212011-12-09 12:14:27 +0900359 void __iomem *mapped_reg;
Magnus Damm2967dab2008-10-08 20:41:43 +0900360
361 ncomb = 1 << crp->field_width;
362 pos = index / ncomb;
363 value = index % ncomb;
364
Magnus Dammb0e10212011-12-09 12:14:27 +0900365 mapped_reg = pfc_phys_to_virt(gpioc, crp->reg);
366
367 if (gpio_read_reg(mapped_reg, crp->reg_width,
368 crp->field_width, pos, crp->reg) == value)
Magnus Damm2967dab2008-10-08 20:41:43 +0900369 return 0;
370
371 return -1;
372}
373
374enum { GPIO_CFG_DRYRUN, GPIO_CFG_REQ, GPIO_CFG_FREE };
375
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900376static int pinmux_config_gpio(struct pinmux_info *gpioc, unsigned gpio,
377 int pinmux_type, int cfg_mode)
Magnus Damm2967dab2008-10-08 20:41:43 +0900378{
379 struct pinmux_cfg_reg *cr = NULL;
380 pinmux_enum_t enum_id;
381 struct pinmux_range *range;
382 int in_range, pos, index;
383 unsigned long *cntp;
384
385 switch (pinmux_type) {
386
387 case PINMUX_TYPE_FUNCTION:
388 range = NULL;
389 break;
390
391 case PINMUX_TYPE_OUTPUT:
392 range = &gpioc->output;
393 break;
394
395 case PINMUX_TYPE_INPUT:
396 range = &gpioc->input;
397 break;
398
399 case PINMUX_TYPE_INPUT_PULLUP:
400 range = &gpioc->input_pu;
401 break;
402
403 case PINMUX_TYPE_INPUT_PULLDOWN:
404 range = &gpioc->input_pd;
405 break;
406
407 default:
408 goto out_err;
409 }
410
411 pos = 0;
412 enum_id = 0;
413 index = 0;
414 while (1) {
415 pos = get_gpio_enum_id(gpioc, gpio, pos, &enum_id);
416 if (pos <= 0)
417 goto out_err;
418
419 if (!enum_id)
420 break;
421
Magnus Damm50dd3142010-01-19 13:52:28 +0000422 /* first check if this is a function enum */
Magnus Damm2967dab2008-10-08 20:41:43 +0900423 in_range = enum_in_range(enum_id, &gpioc->function);
Magnus Damm50dd3142010-01-19 13:52:28 +0000424 if (!in_range) {
425 /* not a function enum */
426 if (range) {
427 /*
428 * other range exists, so this pin is
429 * a regular GPIO pin that now is being
430 * bound to a specific direction.
431 *
432 * for this case we only allow function enums
433 * and the enums that match the other range.
434 */
435 in_range = enum_in_range(enum_id, range);
Magnus Damm2967dab2008-10-08 20:41:43 +0900436
Magnus Damm50dd3142010-01-19 13:52:28 +0000437 /*
438 * special case pass through for fixed
439 * input-only or output-only pins without
440 * function enum register association.
441 */
442 if (in_range && enum_id == range->force)
443 continue;
444 } else {
445 /*
446 * no other range exists, so this pin
447 * must then be of the function type.
448 *
449 * allow function type pins to select
450 * any combination of function/in/out
451 * in their MARK lists.
452 */
453 in_range = 1;
454 }
Magnus Damm42eed422008-10-22 18:29:17 +0900455 }
456
Magnus Damm2967dab2008-10-08 20:41:43 +0900457 if (!in_range)
458 continue;
459
460 if (get_config_reg(gpioc, enum_id, &cr, &index, &cntp) != 0)
461 goto out_err;
462
463 switch (cfg_mode) {
464 case GPIO_CFG_DRYRUN:
465 if (!*cntp || !check_config_reg(gpioc, cr, index))
466 continue;
467 break;
468
469 case GPIO_CFG_REQ:
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900470 write_config_reg(gpioc, cr, index);
Magnus Damm2967dab2008-10-08 20:41:43 +0900471 *cntp = *cntp + 1;
472 break;
473
474 case GPIO_CFG_FREE:
475 *cntp = *cntp - 1;
476 break;
477 }
478 }
479
480 return 0;
481 out_err:
482 return -1;
483}
484
485static DEFINE_SPINLOCK(gpio_lock);
486
Magnus Damm69edbba2008-12-25 18:17:34 +0900487static struct pinmux_info *chip_to_pinmux(struct gpio_chip *chip)
Magnus Damm2967dab2008-10-08 20:41:43 +0900488{
Magnus Damm69edbba2008-12-25 18:17:34 +0900489 return container_of(chip, struct pinmux_info, chip);
490}
491
492static int sh_gpio_request(struct gpio_chip *chip, unsigned offset)
493{
494 struct pinmux_info *gpioc = chip_to_pinmux(chip);
Magnus Damm2967dab2008-10-08 20:41:43 +0900495 struct pinmux_data_reg *dummy;
496 unsigned long flags;
497 int i, ret, pinmux_type;
498
499 ret = -EINVAL;
500
501 if (!gpioc)
502 goto err_out;
503
504 spin_lock_irqsave(&gpio_lock, flags);
505
Magnus Damm69edbba2008-12-25 18:17:34 +0900506 if ((gpioc->gpios[offset].flags & PINMUX_FLAG_TYPE) != PINMUX_TYPE_NONE)
Magnus Damm2967dab2008-10-08 20:41:43 +0900507 goto err_unlock;
508
509 /* setup pin function here if no data is associated with pin */
510
Magnus Damm69edbba2008-12-25 18:17:34 +0900511 if (get_data_reg(gpioc, offset, &dummy, &i) != 0)
Magnus Damm2967dab2008-10-08 20:41:43 +0900512 pinmux_type = PINMUX_TYPE_FUNCTION;
513 else
514 pinmux_type = PINMUX_TYPE_GPIO;
515
516 if (pinmux_type == PINMUX_TYPE_FUNCTION) {
Magnus Damm69edbba2008-12-25 18:17:34 +0900517 if (pinmux_config_gpio(gpioc, offset,
Magnus Damm2967dab2008-10-08 20:41:43 +0900518 pinmux_type,
519 GPIO_CFG_DRYRUN) != 0)
520 goto err_unlock;
521
Magnus Damm69edbba2008-12-25 18:17:34 +0900522 if (pinmux_config_gpio(gpioc, offset,
Magnus Damm2967dab2008-10-08 20:41:43 +0900523 pinmux_type,
524 GPIO_CFG_REQ) != 0)
525 BUG();
526 }
527
Magnus Damm69edbba2008-12-25 18:17:34 +0900528 gpioc->gpios[offset].flags &= ~PINMUX_FLAG_TYPE;
529 gpioc->gpios[offset].flags |= pinmux_type;
Magnus Damm2967dab2008-10-08 20:41:43 +0900530
531 ret = 0;
532 err_unlock:
533 spin_unlock_irqrestore(&gpio_lock, flags);
534 err_out:
535 return ret;
536}
Magnus Damm2967dab2008-10-08 20:41:43 +0900537
Magnus Damm69edbba2008-12-25 18:17:34 +0900538static void sh_gpio_free(struct gpio_chip *chip, unsigned offset)
Magnus Damm2967dab2008-10-08 20:41:43 +0900539{
Magnus Damm69edbba2008-12-25 18:17:34 +0900540 struct pinmux_info *gpioc = chip_to_pinmux(chip);
Magnus Damm2967dab2008-10-08 20:41:43 +0900541 unsigned long flags;
542 int pinmux_type;
543
544 if (!gpioc)
545 return;
546
547 spin_lock_irqsave(&gpio_lock, flags);
548
Magnus Damm69edbba2008-12-25 18:17:34 +0900549 pinmux_type = gpioc->gpios[offset].flags & PINMUX_FLAG_TYPE;
550 pinmux_config_gpio(gpioc, offset, pinmux_type, GPIO_CFG_FREE);
551 gpioc->gpios[offset].flags &= ~PINMUX_FLAG_TYPE;
552 gpioc->gpios[offset].flags |= PINMUX_TYPE_NONE;
Magnus Damm2967dab2008-10-08 20:41:43 +0900553
554 spin_unlock_irqrestore(&gpio_lock, flags);
555}
Magnus Damm2967dab2008-10-08 20:41:43 +0900556
557static int pinmux_direction(struct pinmux_info *gpioc,
558 unsigned gpio, int new_pinmux_type)
559{
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900560 int pinmux_type;
561 int ret = -EINVAL;
Magnus Damm2967dab2008-10-08 20:41:43 +0900562
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900563 if (!gpioc)
564 goto err_out;
565
Magnus Damm2967dab2008-10-08 20:41:43 +0900566 pinmux_type = gpioc->gpios[gpio].flags & PINMUX_FLAG_TYPE;
567
568 switch (pinmux_type) {
569 case PINMUX_TYPE_GPIO:
570 break;
571 case PINMUX_TYPE_OUTPUT:
572 case PINMUX_TYPE_INPUT:
573 case PINMUX_TYPE_INPUT_PULLUP:
574 case PINMUX_TYPE_INPUT_PULLDOWN:
575 pinmux_config_gpio(gpioc, gpio, pinmux_type, GPIO_CFG_FREE);
576 break;
577 default:
578 goto err_out;
579 }
580
581 if (pinmux_config_gpio(gpioc, gpio,
582 new_pinmux_type,
583 GPIO_CFG_DRYRUN) != 0)
584 goto err_out;
585
586 if (pinmux_config_gpio(gpioc, gpio,
587 new_pinmux_type,
588 GPIO_CFG_REQ) != 0)
589 BUG();
590
Magnus Damm18801be2008-12-25 18:17:09 +0900591 gpioc->gpios[gpio].flags &= ~PINMUX_FLAG_TYPE;
592 gpioc->gpios[gpio].flags |= new_pinmux_type;
Magnus Damm2967dab2008-10-08 20:41:43 +0900593
594 ret = 0;
595 err_out:
596 return ret;
597}
598
Magnus Damm69edbba2008-12-25 18:17:34 +0900599static int sh_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
Magnus Damm2967dab2008-10-08 20:41:43 +0900600{
Magnus Damm69edbba2008-12-25 18:17:34 +0900601 struct pinmux_info *gpioc = chip_to_pinmux(chip);
Magnus Damm2967dab2008-10-08 20:41:43 +0900602 unsigned long flags;
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900603 int ret;
Magnus Damm2967dab2008-10-08 20:41:43 +0900604
605 spin_lock_irqsave(&gpio_lock, flags);
Magnus Damm69edbba2008-12-25 18:17:34 +0900606 ret = pinmux_direction(gpioc, offset, PINMUX_TYPE_INPUT);
Magnus Damm2967dab2008-10-08 20:41:43 +0900607 spin_unlock_irqrestore(&gpio_lock, flags);
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900608
Magnus Damm2967dab2008-10-08 20:41:43 +0900609 return ret;
610}
Magnus Damm2967dab2008-10-08 20:41:43 +0900611
Magnus Damm69edbba2008-12-25 18:17:34 +0900612static void sh_gpio_set_value(struct pinmux_info *gpioc,
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900613 unsigned gpio, int value)
Magnus Damm2967dab2008-10-08 20:41:43 +0900614{
615 struct pinmux_data_reg *dr = NULL;
616 int bit = 0;
617
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900618 if (!gpioc || get_data_reg(gpioc, gpio, &dr, &bit) != 0)
Magnus Damm2967dab2008-10-08 20:41:43 +0900619 BUG();
620 else
Magnus Damm32920942008-12-25 18:17:26 +0900621 gpio_write_bit(dr, bit, value);
Magnus Damm2967dab2008-10-08 20:41:43 +0900622}
623
Magnus Damm69edbba2008-12-25 18:17:34 +0900624static int sh_gpio_direction_output(struct gpio_chip *chip, unsigned offset,
625 int value)
Magnus Damm2967dab2008-10-08 20:41:43 +0900626{
Magnus Damm69edbba2008-12-25 18:17:34 +0900627 struct pinmux_info *gpioc = chip_to_pinmux(chip);
Magnus Damm2967dab2008-10-08 20:41:43 +0900628 unsigned long flags;
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900629 int ret;
Magnus Damm2967dab2008-10-08 20:41:43 +0900630
Magnus Damm69edbba2008-12-25 18:17:34 +0900631 sh_gpio_set_value(gpioc, offset, value);
Magnus Damm32920942008-12-25 18:17:26 +0900632 spin_lock_irqsave(&gpio_lock, flags);
Magnus Damm69edbba2008-12-25 18:17:34 +0900633 ret = pinmux_direction(gpioc, offset, PINMUX_TYPE_OUTPUT);
Magnus Damm2967dab2008-10-08 20:41:43 +0900634 spin_unlock_irqrestore(&gpio_lock, flags);
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900635
Magnus Damm2967dab2008-10-08 20:41:43 +0900636 return ret;
637}
Magnus Damm2967dab2008-10-08 20:41:43 +0900638
Magnus Damm69edbba2008-12-25 18:17:34 +0900639static int sh_gpio_get_value(struct pinmux_info *gpioc, unsigned gpio)
Magnus Damm2967dab2008-10-08 20:41:43 +0900640{
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900641 struct pinmux_data_reg *dr = NULL;
642 int bit = 0;
Magnus Damm2967dab2008-10-08 20:41:43 +0900643
Paul Mundte8184a42010-10-04 05:15:20 +0900644 if (!gpioc || get_data_reg(gpioc, gpio, &dr, &bit) != 0)
645 return -EINVAL;
Magnus Damm2967dab2008-10-08 20:41:43 +0900646
Magnus Dammb0e10212011-12-09 12:14:27 +0900647 return gpio_read_reg(dr->mapped_reg, dr->reg_width, 1, bit, dr->reg);
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900648}
649
Magnus Damm69edbba2008-12-25 18:17:34 +0900650static int sh_gpio_get(struct gpio_chip *chip, unsigned offset)
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900651{
Magnus Damm69edbba2008-12-25 18:17:34 +0900652 return sh_gpio_get_value(chip_to_pinmux(chip), offset);
Magnus Damm2967dab2008-10-08 20:41:43 +0900653}
Magnus Damm2967dab2008-10-08 20:41:43 +0900654
Magnus Damm69edbba2008-12-25 18:17:34 +0900655static void sh_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
Magnus Damm2967dab2008-10-08 20:41:43 +0900656{
Magnus Damm69edbba2008-12-25 18:17:34 +0900657 sh_gpio_set_value(chip_to_pinmux(chip), offset, value);
Magnus Damm2967dab2008-10-08 20:41:43 +0900658}
Magnus Damm2967dab2008-10-08 20:41:43 +0900659
Magnus Dammad2a8e72011-09-28 16:50:58 +0900660static int sh_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
661{
662 struct pinmux_info *gpioc = chip_to_pinmux(chip);
663 pinmux_enum_t enum_id;
664 pinmux_enum_t *enum_ids;
665 int i, k, pos;
666
667 pos = 0;
668 enum_id = 0;
669 while (1) {
670 pos = get_gpio_enum_id(gpioc, offset, pos, &enum_id);
671 if (pos <= 0 || !enum_id)
672 break;
673
674 for (i = 0; i < gpioc->gpio_irq_size; i++) {
675 enum_ids = gpioc->gpio_irq[i].enum_ids;
676 for (k = 0; enum_ids[k]; k++) {
677 if (enum_ids[k] == enum_id)
678 return gpioc->gpio_irq[i].irq;
679 }
680 }
681 }
682
683 return -ENOSYS;
684}
685
Magnus Damm2967dab2008-10-08 20:41:43 +0900686int register_pinmux(struct pinmux_info *pip)
687{
Magnus Damm69edbba2008-12-25 18:17:34 +0900688 struct gpio_chip *chip = &pip->chip;
Magnus Dammb0e10212011-12-09 12:14:27 +0900689 int ret;
Magnus Damm69edbba2008-12-25 18:17:34 +0900690
Paul Mundtb72421d2010-10-04 03:54:56 +0900691 pr_info("%s handling gpio %d -> %d\n",
Magnus Damm2967dab2008-10-08 20:41:43 +0900692 pip->name, pip->first_gpio, pip->last_gpio);
693
Magnus Dammb0e10212011-12-09 12:14:27 +0900694 ret = pfc_ioremap(pip);
695 if (ret < 0)
696 return ret;
697
Magnus Damm69edbba2008-12-25 18:17:34 +0900698 setup_data_regs(pip);
699
700 chip->request = sh_gpio_request;
701 chip->free = sh_gpio_free;
702 chip->direction_input = sh_gpio_direction_input;
703 chip->get = sh_gpio_get;
704 chip->direction_output = sh_gpio_direction_output;
705 chip->set = sh_gpio_set;
Magnus Dammad2a8e72011-09-28 16:50:58 +0900706 chip->to_irq = sh_gpio_to_irq;
Magnus Damm69edbba2008-12-25 18:17:34 +0900707
708 WARN_ON(pip->first_gpio != 0); /* needs testing */
709
710 chip->label = pip->name;
711 chip->owner = THIS_MODULE;
712 chip->base = pip->first_gpio;
713 chip->ngpio = (pip->last_gpio - pip->first_gpio) + 1;
714
Magnus Dammb0e10212011-12-09 12:14:27 +0900715 ret = gpiochip_add(chip);
716 if (ret < 0)
717 pfc_iounmap(pip);
718
719 return ret;
Magnus Damm2967dab2008-10-08 20:41:43 +0900720}
Paul Mundtb72421d2010-10-04 03:54:56 +0900721
722int unregister_pinmux(struct pinmux_info *pip)
723{
724 pr_info("%s deregistering\n", pip->name);
Magnus Dammb0e10212011-12-09 12:14:27 +0900725 pfc_iounmap(pip);
Paul Mundtb72421d2010-10-04 03:54:56 +0900726 return gpiochip_remove(&pip->chip);
727}