blob: 522c6c46d1be83a5f95527d509cf12142a52e523 [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
Magnus Damm92554d92011-12-14 01:00:37 +0900138static int gpio_read_bit(struct pinmux_data_reg *dr,
139 unsigned long in_pos)
140{
141 unsigned long pos;
142
143 pos = dr->reg_width - (in_pos + 1);
144
145 pr_debug("read_bit: addr = %lx, pos = %ld, "
146 "r_width = %ld\n", dr->reg, pos, dr->reg_width);
147
148 return (gpio_read_raw_reg(dr->mapped_reg, dr->reg_width) >> pos) & 1;
149}
150
Magnus Damm32920942008-12-25 18:17:26 +0900151static void gpio_write_bit(struct pinmux_data_reg *dr,
152 unsigned long in_pos, unsigned long value)
153{
154 unsigned long pos;
155
156 pos = dr->reg_width - (in_pos + 1);
157
Paul Mundtca6f2d72009-12-09 15:51:27 +0900158 pr_debug("write_bit addr = %lx, value = %d, pos = %ld, "
Paul Mundtfd2cb0c2009-11-30 12:15:04 +0900159 "r_width = %ld\n",
160 dr->reg, !!value, pos, dr->reg_width);
Magnus Damm32920942008-12-25 18:17:26 +0900161
162 if (value)
163 set_bit(pos, &dr->reg_shadow);
164 else
165 clear_bit(pos, &dr->reg_shadow);
166
Magnus Dammb0e10212011-12-09 12:14:27 +0900167 gpio_write_raw_reg(dr->mapped_reg, dr->reg_width, dr->reg_shadow);
Magnus Damm32920942008-12-25 18:17:26 +0900168}
169
Magnus Damm18925e12011-12-14 01:00:55 +0900170static void config_reg_helper(struct pinmux_info *gpioc,
171 struct pinmux_cfg_reg *crp,
172 unsigned long in_pos,
173 void __iomem **mapped_regp,
174 unsigned long *maskp,
175 unsigned long *posp)
Magnus Damm2967dab2008-10-08 20:41:43 +0900176{
Magnus Dammf78a26f2011-12-14 01:01:05 +0900177 int k;
178
Magnus Damm18925e12011-12-14 01:00:55 +0900179 *mapped_regp = pfc_phys_to_virt(gpioc, crp->reg);
Magnus Damm2967dab2008-10-08 20:41:43 +0900180
Magnus Dammf78a26f2011-12-14 01:01:05 +0900181 if (crp->field_width) {
182 *maskp = (1 << crp->field_width) - 1;
183 *posp = crp->reg_width - ((in_pos + 1) * crp->field_width);
184 } else {
185 *maskp = (1 << crp->var_field_width[in_pos]) - 1;
186 *posp = crp->reg_width;
187 for (k = 0; k <= in_pos; k++)
188 *posp -= crp->var_field_width[k];
189 }
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900190}
Magnus Damm2967dab2008-10-08 20:41:43 +0900191
Magnus Damm18925e12011-12-14 01:00:55 +0900192static int read_config_reg(struct pinmux_info *gpioc,
193 struct pinmux_cfg_reg *crp,
194 unsigned long field)
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900195{
Magnus Damm18925e12011-12-14 01:00:55 +0900196 void __iomem *mapped_reg;
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900197 unsigned long mask, pos;
198
Magnus Damm18925e12011-12-14 01:00:55 +0900199 config_reg_helper(gpioc, crp, field, &mapped_reg, &mask, &pos);
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900200
Magnus Damm18925e12011-12-14 01:00:55 +0900201 pr_debug("read_reg: addr = %lx, field = %ld, "
Paul Mundtfd2cb0c2009-11-30 12:15:04 +0900202 "r_width = %ld, f_width = %ld\n",
Magnus Damm18925e12011-12-14 01:00:55 +0900203 crp->reg, field, crp->reg_width, crp->field_width);
204
205 return (gpio_read_raw_reg(mapped_reg, crp->reg_width) >> pos) & mask;
206}
207
208static void write_config_reg(struct pinmux_info *gpioc,
209 struct pinmux_cfg_reg *crp,
210 unsigned long field, unsigned long value)
211{
212 void __iomem *mapped_reg;
Magnus Damme499ada2011-12-14 01:01:14 +0900213 unsigned long mask, pos, data;
Magnus Damm18925e12011-12-14 01:00:55 +0900214
215 config_reg_helper(gpioc, crp, field, &mapped_reg, &mask, &pos);
216
217 pr_debug("write_reg addr = %lx, value = %ld, field = %ld, "
218 "r_width = %ld, f_width = %ld\n",
219 crp->reg, value, field, crp->reg_width, crp->field_width);
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900220
221 mask = ~(mask << pos);
222 value = value << pos;
Magnus Damm2967dab2008-10-08 20:41:43 +0900223
Magnus Damme499ada2011-12-14 01:01:14 +0900224 data = gpio_read_raw_reg(mapped_reg, crp->reg_width);
225 data &= mask;
226 data |= value;
227
228 if (gpioc->unlock_reg)
229 gpio_write_raw_reg(pfc_phys_to_virt(gpioc, gpioc->unlock_reg),
230 32, ~data);
231
232 gpio_write_raw_reg(mapped_reg, crp->reg_width, data);
Magnus Damm2967dab2008-10-08 20:41:43 +0900233}
234
Magnus Damm18801be2008-12-25 18:17:09 +0900235static int setup_data_reg(struct pinmux_info *gpioc, unsigned gpio)
Magnus Damm2967dab2008-10-08 20:41:43 +0900236{
Magnus Damm18801be2008-12-25 18:17:09 +0900237 struct pinmux_gpio *gpiop = &gpioc->gpios[gpio];
Magnus Damm2967dab2008-10-08 20:41:43 +0900238 struct pinmux_data_reg *data_reg;
239 int k, n;
240
Magnus Damm18801be2008-12-25 18:17:09 +0900241 if (!enum_in_range(gpiop->enum_id, &gpioc->data))
Magnus Damm2967dab2008-10-08 20:41:43 +0900242 return -1;
243
244 k = 0;
245 while (1) {
246 data_reg = gpioc->data_regs + k;
247
248 if (!data_reg->reg_width)
249 break;
250
Magnus Dammb0e10212011-12-09 12:14:27 +0900251 data_reg->mapped_reg = pfc_phys_to_virt(gpioc, data_reg->reg);
252
Magnus Damm2967dab2008-10-08 20:41:43 +0900253 for (n = 0; n < data_reg->reg_width; n++) {
Magnus Damm18801be2008-12-25 18:17:09 +0900254 if (data_reg->enum_ids[n] == gpiop->enum_id) {
255 gpiop->flags &= ~PINMUX_FLAG_DREG;
256 gpiop->flags |= (k << PINMUX_FLAG_DREG_SHIFT);
257 gpiop->flags &= ~PINMUX_FLAG_DBIT;
258 gpiop->flags |= (n << PINMUX_FLAG_DBIT_SHIFT);
Magnus Damm2967dab2008-10-08 20:41:43 +0900259 return 0;
Magnus Damm2967dab2008-10-08 20:41:43 +0900260 }
261 }
262 k++;
263 }
264
Magnus Damm18801be2008-12-25 18:17:09 +0900265 BUG();
266
Magnus Damm2967dab2008-10-08 20:41:43 +0900267 return -1;
268}
269
Magnus Damm32920942008-12-25 18:17:26 +0900270static void setup_data_regs(struct pinmux_info *gpioc)
271{
272 struct pinmux_data_reg *drp;
273 int k;
274
275 for (k = gpioc->first_gpio; k <= gpioc->last_gpio; k++)
276 setup_data_reg(gpioc, k);
277
278 k = 0;
279 while (1) {
280 drp = gpioc->data_regs + k;
281
282 if (!drp->reg_width)
283 break;
284
Magnus Dammb0e10212011-12-09 12:14:27 +0900285 drp->reg_shadow = gpio_read_raw_reg(drp->mapped_reg,
286 drp->reg_width);
Magnus Damm32920942008-12-25 18:17:26 +0900287 k++;
288 }
289}
290
Magnus Damm18801be2008-12-25 18:17:09 +0900291static int get_data_reg(struct pinmux_info *gpioc, unsigned gpio,
292 struct pinmux_data_reg **drp, int *bitp)
293{
294 struct pinmux_gpio *gpiop = &gpioc->gpios[gpio];
295 int k, n;
296
297 if (!enum_in_range(gpiop->enum_id, &gpioc->data))
298 return -1;
299
300 k = (gpiop->flags & PINMUX_FLAG_DREG) >> PINMUX_FLAG_DREG_SHIFT;
301 n = (gpiop->flags & PINMUX_FLAG_DBIT) >> PINMUX_FLAG_DBIT_SHIFT;
302 *drp = gpioc->data_regs + k;
303 *bitp = n;
304 return 0;
305}
306
Magnus Damm2967dab2008-10-08 20:41:43 +0900307static int get_config_reg(struct pinmux_info *gpioc, pinmux_enum_t enum_id,
Magnus Dammad4a07f2011-12-14 01:00:46 +0900308 struct pinmux_cfg_reg **crp,
309 int *fieldp, int *valuep,
Magnus Damm2967dab2008-10-08 20:41:43 +0900310 unsigned long **cntp)
311{
312 struct pinmux_cfg_reg *config_reg;
Magnus Dammf78a26f2011-12-14 01:01:05 +0900313 unsigned long r_width, f_width, curr_width, ncomb;
314 int k, m, n, pos, bit_pos;
Magnus Damm2967dab2008-10-08 20:41:43 +0900315
316 k = 0;
317 while (1) {
318 config_reg = gpioc->cfg_regs + k;
319
320 r_width = config_reg->reg_width;
321 f_width = config_reg->field_width;
322
323 if (!r_width)
324 break;
Magnus Dammf78a26f2011-12-14 01:01:05 +0900325
326 pos = 0;
327 m = 0;
328 for (bit_pos = 0; bit_pos < r_width; bit_pos += curr_width) {
329 if (f_width)
330 curr_width = f_width;
331 else
332 curr_width = config_reg->var_field_width[m];
333
334 ncomb = 1 << curr_width;
335 for (n = 0; n < ncomb; n++) {
336 if (config_reg->enum_ids[pos + n] == enum_id) {
337 *crp = config_reg;
338 *fieldp = m;
339 *valuep = n;
340 *cntp = &config_reg->cnt[m];
341 return 0;
342 }
Magnus Damm2967dab2008-10-08 20:41:43 +0900343 }
Magnus Dammf78a26f2011-12-14 01:01:05 +0900344 pos += ncomb;
345 m++;
Magnus Damm2967dab2008-10-08 20:41:43 +0900346 }
347 k++;
348 }
349
350 return -1;
351}
352
353static int get_gpio_enum_id(struct pinmux_info *gpioc, unsigned gpio,
354 int pos, pinmux_enum_t *enum_idp)
355{
356 pinmux_enum_t enum_id = gpioc->gpios[gpio].enum_id;
357 pinmux_enum_t *data = gpioc->gpio_data;
358 int k;
359
360 if (!enum_in_range(enum_id, &gpioc->data)) {
361 if (!enum_in_range(enum_id, &gpioc->mark)) {
362 pr_err("non data/mark enum_id for gpio %d\n", gpio);
363 return -1;
364 }
365 }
366
367 if (pos) {
368 *enum_idp = data[pos + 1];
369 return pos + 1;
370 }
371
372 for (k = 0; k < gpioc->gpio_data_size; k++) {
373 if (data[k] == enum_id) {
374 *enum_idp = data[k + 1];
375 return k + 1;
376 }
377 }
378
379 pr_err("cannot locate data/mark enum_id for gpio %d\n", gpio);
380 return -1;
381}
382
Magnus Damm2967dab2008-10-08 20:41:43 +0900383enum { GPIO_CFG_DRYRUN, GPIO_CFG_REQ, GPIO_CFG_FREE };
384
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900385static int pinmux_config_gpio(struct pinmux_info *gpioc, unsigned gpio,
386 int pinmux_type, int cfg_mode)
Magnus Damm2967dab2008-10-08 20:41:43 +0900387{
388 struct pinmux_cfg_reg *cr = NULL;
389 pinmux_enum_t enum_id;
390 struct pinmux_range *range;
Magnus Dammad4a07f2011-12-14 01:00:46 +0900391 int in_range, pos, field, value;
Magnus Damm2967dab2008-10-08 20:41:43 +0900392 unsigned long *cntp;
393
394 switch (pinmux_type) {
395
396 case PINMUX_TYPE_FUNCTION:
397 range = NULL;
398 break;
399
400 case PINMUX_TYPE_OUTPUT:
401 range = &gpioc->output;
402 break;
403
404 case PINMUX_TYPE_INPUT:
405 range = &gpioc->input;
406 break;
407
408 case PINMUX_TYPE_INPUT_PULLUP:
409 range = &gpioc->input_pu;
410 break;
411
412 case PINMUX_TYPE_INPUT_PULLDOWN:
413 range = &gpioc->input_pd;
414 break;
415
416 default:
417 goto out_err;
418 }
419
420 pos = 0;
421 enum_id = 0;
Magnus Dammad4a07f2011-12-14 01:00:46 +0900422 field = 0;
423 value = 0;
Magnus Damm2967dab2008-10-08 20:41:43 +0900424 while (1) {
425 pos = get_gpio_enum_id(gpioc, gpio, pos, &enum_id);
426 if (pos <= 0)
427 goto out_err;
428
429 if (!enum_id)
430 break;
431
Magnus Damm50dd3142010-01-19 13:52:28 +0000432 /* first check if this is a function enum */
Magnus Damm2967dab2008-10-08 20:41:43 +0900433 in_range = enum_in_range(enum_id, &gpioc->function);
Magnus Damm50dd3142010-01-19 13:52:28 +0000434 if (!in_range) {
435 /* not a function enum */
436 if (range) {
437 /*
438 * other range exists, so this pin is
439 * a regular GPIO pin that now is being
440 * bound to a specific direction.
441 *
442 * for this case we only allow function enums
443 * and the enums that match the other range.
444 */
445 in_range = enum_in_range(enum_id, range);
Magnus Damm2967dab2008-10-08 20:41:43 +0900446
Magnus Damm50dd3142010-01-19 13:52:28 +0000447 /*
448 * special case pass through for fixed
449 * input-only or output-only pins without
450 * function enum register association.
451 */
452 if (in_range && enum_id == range->force)
453 continue;
454 } else {
455 /*
456 * no other range exists, so this pin
457 * must then be of the function type.
458 *
459 * allow function type pins to select
460 * any combination of function/in/out
461 * in their MARK lists.
462 */
463 in_range = 1;
464 }
Magnus Damm42eed422008-10-22 18:29:17 +0900465 }
466
Magnus Damm2967dab2008-10-08 20:41:43 +0900467 if (!in_range)
468 continue;
469
Magnus Dammad4a07f2011-12-14 01:00:46 +0900470 if (get_config_reg(gpioc, enum_id, &cr,
471 &field, &value, &cntp) != 0)
Magnus Damm2967dab2008-10-08 20:41:43 +0900472 goto out_err;
473
474 switch (cfg_mode) {
475 case GPIO_CFG_DRYRUN:
Magnus Damm18925e12011-12-14 01:00:55 +0900476 if (!*cntp ||
477 (read_config_reg(gpioc, cr, field) != value))
Magnus Damm2967dab2008-10-08 20:41:43 +0900478 continue;
479 break;
480
481 case GPIO_CFG_REQ:
Magnus Dammad4a07f2011-12-14 01:00:46 +0900482 write_config_reg(gpioc, cr, field, value);
Magnus Damm2967dab2008-10-08 20:41:43 +0900483 *cntp = *cntp + 1;
484 break;
485
486 case GPIO_CFG_FREE:
487 *cntp = *cntp - 1;
488 break;
489 }
490 }
491
492 return 0;
493 out_err:
494 return -1;
495}
496
497static DEFINE_SPINLOCK(gpio_lock);
498
Magnus Damm69edbba2008-12-25 18:17:34 +0900499static struct pinmux_info *chip_to_pinmux(struct gpio_chip *chip)
Magnus Damm2967dab2008-10-08 20:41:43 +0900500{
Magnus Damm69edbba2008-12-25 18:17:34 +0900501 return container_of(chip, struct pinmux_info, chip);
502}
503
504static int sh_gpio_request(struct gpio_chip *chip, unsigned offset)
505{
506 struct pinmux_info *gpioc = chip_to_pinmux(chip);
Magnus Damm2967dab2008-10-08 20:41:43 +0900507 struct pinmux_data_reg *dummy;
508 unsigned long flags;
509 int i, ret, pinmux_type;
510
511 ret = -EINVAL;
512
513 if (!gpioc)
514 goto err_out;
515
516 spin_lock_irqsave(&gpio_lock, flags);
517
Magnus Damm69edbba2008-12-25 18:17:34 +0900518 if ((gpioc->gpios[offset].flags & PINMUX_FLAG_TYPE) != PINMUX_TYPE_NONE)
Magnus Damm2967dab2008-10-08 20:41:43 +0900519 goto err_unlock;
520
521 /* setup pin function here if no data is associated with pin */
522
Magnus Damm69edbba2008-12-25 18:17:34 +0900523 if (get_data_reg(gpioc, offset, &dummy, &i) != 0)
Magnus Damm2967dab2008-10-08 20:41:43 +0900524 pinmux_type = PINMUX_TYPE_FUNCTION;
525 else
526 pinmux_type = PINMUX_TYPE_GPIO;
527
528 if (pinmux_type == PINMUX_TYPE_FUNCTION) {
Magnus Damm69edbba2008-12-25 18:17:34 +0900529 if (pinmux_config_gpio(gpioc, offset,
Magnus Damm2967dab2008-10-08 20:41:43 +0900530 pinmux_type,
531 GPIO_CFG_DRYRUN) != 0)
532 goto err_unlock;
533
Magnus Damm69edbba2008-12-25 18:17:34 +0900534 if (pinmux_config_gpio(gpioc, offset,
Magnus Damm2967dab2008-10-08 20:41:43 +0900535 pinmux_type,
536 GPIO_CFG_REQ) != 0)
537 BUG();
538 }
539
Magnus Damm69edbba2008-12-25 18:17:34 +0900540 gpioc->gpios[offset].flags &= ~PINMUX_FLAG_TYPE;
541 gpioc->gpios[offset].flags |= pinmux_type;
Magnus Damm2967dab2008-10-08 20:41:43 +0900542
543 ret = 0;
544 err_unlock:
545 spin_unlock_irqrestore(&gpio_lock, flags);
546 err_out:
547 return ret;
548}
Magnus Damm2967dab2008-10-08 20:41:43 +0900549
Magnus Damm69edbba2008-12-25 18:17:34 +0900550static void sh_gpio_free(struct gpio_chip *chip, unsigned offset)
Magnus Damm2967dab2008-10-08 20:41:43 +0900551{
Magnus Damm69edbba2008-12-25 18:17:34 +0900552 struct pinmux_info *gpioc = chip_to_pinmux(chip);
Magnus Damm2967dab2008-10-08 20:41:43 +0900553 unsigned long flags;
554 int pinmux_type;
555
556 if (!gpioc)
557 return;
558
559 spin_lock_irqsave(&gpio_lock, flags);
560
Magnus Damm69edbba2008-12-25 18:17:34 +0900561 pinmux_type = gpioc->gpios[offset].flags & PINMUX_FLAG_TYPE;
562 pinmux_config_gpio(gpioc, offset, pinmux_type, GPIO_CFG_FREE);
563 gpioc->gpios[offset].flags &= ~PINMUX_FLAG_TYPE;
564 gpioc->gpios[offset].flags |= PINMUX_TYPE_NONE;
Magnus Damm2967dab2008-10-08 20:41:43 +0900565
566 spin_unlock_irqrestore(&gpio_lock, flags);
567}
Magnus Damm2967dab2008-10-08 20:41:43 +0900568
569static int pinmux_direction(struct pinmux_info *gpioc,
570 unsigned gpio, int new_pinmux_type)
571{
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900572 int pinmux_type;
573 int ret = -EINVAL;
Magnus Damm2967dab2008-10-08 20:41:43 +0900574
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900575 if (!gpioc)
576 goto err_out;
577
Magnus Damm2967dab2008-10-08 20:41:43 +0900578 pinmux_type = gpioc->gpios[gpio].flags & PINMUX_FLAG_TYPE;
579
580 switch (pinmux_type) {
581 case PINMUX_TYPE_GPIO:
582 break;
583 case PINMUX_TYPE_OUTPUT:
584 case PINMUX_TYPE_INPUT:
585 case PINMUX_TYPE_INPUT_PULLUP:
586 case PINMUX_TYPE_INPUT_PULLDOWN:
587 pinmux_config_gpio(gpioc, gpio, pinmux_type, GPIO_CFG_FREE);
588 break;
589 default:
590 goto err_out;
591 }
592
593 if (pinmux_config_gpio(gpioc, gpio,
594 new_pinmux_type,
595 GPIO_CFG_DRYRUN) != 0)
596 goto err_out;
597
598 if (pinmux_config_gpio(gpioc, gpio,
599 new_pinmux_type,
600 GPIO_CFG_REQ) != 0)
601 BUG();
602
Magnus Damm18801be2008-12-25 18:17:09 +0900603 gpioc->gpios[gpio].flags &= ~PINMUX_FLAG_TYPE;
604 gpioc->gpios[gpio].flags |= new_pinmux_type;
Magnus Damm2967dab2008-10-08 20:41:43 +0900605
606 ret = 0;
607 err_out:
608 return ret;
609}
610
Magnus Damm69edbba2008-12-25 18:17:34 +0900611static int sh_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
Magnus Damm2967dab2008-10-08 20:41:43 +0900612{
Magnus Damm69edbba2008-12-25 18:17:34 +0900613 struct pinmux_info *gpioc = chip_to_pinmux(chip);
Magnus Damm2967dab2008-10-08 20:41:43 +0900614 unsigned long flags;
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900615 int ret;
Magnus Damm2967dab2008-10-08 20:41:43 +0900616
617 spin_lock_irqsave(&gpio_lock, flags);
Magnus Damm69edbba2008-12-25 18:17:34 +0900618 ret = pinmux_direction(gpioc, offset, PINMUX_TYPE_INPUT);
Magnus Damm2967dab2008-10-08 20:41:43 +0900619 spin_unlock_irqrestore(&gpio_lock, flags);
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900620
Magnus Damm2967dab2008-10-08 20:41:43 +0900621 return ret;
622}
Magnus Damm2967dab2008-10-08 20:41:43 +0900623
Magnus Damm69edbba2008-12-25 18:17:34 +0900624static void sh_gpio_set_value(struct pinmux_info *gpioc,
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900625 unsigned gpio, int value)
Magnus Damm2967dab2008-10-08 20:41:43 +0900626{
627 struct pinmux_data_reg *dr = NULL;
628 int bit = 0;
629
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900630 if (!gpioc || get_data_reg(gpioc, gpio, &dr, &bit) != 0)
Magnus Damm2967dab2008-10-08 20:41:43 +0900631 BUG();
632 else
Magnus Damm32920942008-12-25 18:17:26 +0900633 gpio_write_bit(dr, bit, value);
Magnus Damm2967dab2008-10-08 20:41:43 +0900634}
635
Magnus Damm69edbba2008-12-25 18:17:34 +0900636static int sh_gpio_direction_output(struct gpio_chip *chip, unsigned offset,
637 int value)
Magnus Damm2967dab2008-10-08 20:41:43 +0900638{
Magnus Damm69edbba2008-12-25 18:17:34 +0900639 struct pinmux_info *gpioc = chip_to_pinmux(chip);
Magnus Damm2967dab2008-10-08 20:41:43 +0900640 unsigned long flags;
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900641 int ret;
Magnus Damm2967dab2008-10-08 20:41:43 +0900642
Magnus Damm69edbba2008-12-25 18:17:34 +0900643 sh_gpio_set_value(gpioc, offset, value);
Magnus Damm32920942008-12-25 18:17:26 +0900644 spin_lock_irqsave(&gpio_lock, flags);
Magnus Damm69edbba2008-12-25 18:17:34 +0900645 ret = pinmux_direction(gpioc, offset, PINMUX_TYPE_OUTPUT);
Magnus Damm2967dab2008-10-08 20:41:43 +0900646 spin_unlock_irqrestore(&gpio_lock, flags);
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900647
Magnus Damm2967dab2008-10-08 20:41:43 +0900648 return ret;
649}
Magnus Damm2967dab2008-10-08 20:41:43 +0900650
Magnus Damm69edbba2008-12-25 18:17:34 +0900651static int sh_gpio_get_value(struct pinmux_info *gpioc, unsigned gpio)
Magnus Damm2967dab2008-10-08 20:41:43 +0900652{
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900653 struct pinmux_data_reg *dr = NULL;
654 int bit = 0;
Magnus Damm2967dab2008-10-08 20:41:43 +0900655
Paul Mundte8184a42010-10-04 05:15:20 +0900656 if (!gpioc || get_data_reg(gpioc, gpio, &dr, &bit) != 0)
657 return -EINVAL;
Magnus Damm2967dab2008-10-08 20:41:43 +0900658
Magnus Damm92554d92011-12-14 01:00:37 +0900659 return gpio_read_bit(dr, bit);
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900660}
661
Magnus Damm69edbba2008-12-25 18:17:34 +0900662static int sh_gpio_get(struct gpio_chip *chip, unsigned offset)
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900663{
Magnus Damm69edbba2008-12-25 18:17:34 +0900664 return sh_gpio_get_value(chip_to_pinmux(chip), offset);
Magnus Damm2967dab2008-10-08 20:41:43 +0900665}
Magnus Damm2967dab2008-10-08 20:41:43 +0900666
Magnus Damm69edbba2008-12-25 18:17:34 +0900667static void sh_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
Magnus Damm2967dab2008-10-08 20:41:43 +0900668{
Magnus Damm69edbba2008-12-25 18:17:34 +0900669 sh_gpio_set_value(chip_to_pinmux(chip), offset, value);
Magnus Damm2967dab2008-10-08 20:41:43 +0900670}
Magnus Damm2967dab2008-10-08 20:41:43 +0900671
Magnus Dammad2a8e72011-09-28 16:50:58 +0900672static int sh_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
673{
674 struct pinmux_info *gpioc = chip_to_pinmux(chip);
675 pinmux_enum_t enum_id;
676 pinmux_enum_t *enum_ids;
677 int i, k, pos;
678
679 pos = 0;
680 enum_id = 0;
681 while (1) {
682 pos = get_gpio_enum_id(gpioc, offset, pos, &enum_id);
683 if (pos <= 0 || !enum_id)
684 break;
685
686 for (i = 0; i < gpioc->gpio_irq_size; i++) {
687 enum_ids = gpioc->gpio_irq[i].enum_ids;
688 for (k = 0; enum_ids[k]; k++) {
689 if (enum_ids[k] == enum_id)
690 return gpioc->gpio_irq[i].irq;
691 }
692 }
693 }
694
695 return -ENOSYS;
696}
697
Magnus Damm2967dab2008-10-08 20:41:43 +0900698int register_pinmux(struct pinmux_info *pip)
699{
Magnus Damm69edbba2008-12-25 18:17:34 +0900700 struct gpio_chip *chip = &pip->chip;
Magnus Dammb0e10212011-12-09 12:14:27 +0900701 int ret;
Magnus Damm69edbba2008-12-25 18:17:34 +0900702
Paul Mundtb72421d2010-10-04 03:54:56 +0900703 pr_info("%s handling gpio %d -> %d\n",
Magnus Damm2967dab2008-10-08 20:41:43 +0900704 pip->name, pip->first_gpio, pip->last_gpio);
705
Magnus Dammb0e10212011-12-09 12:14:27 +0900706 ret = pfc_ioremap(pip);
707 if (ret < 0)
708 return ret;
709
Magnus Damm69edbba2008-12-25 18:17:34 +0900710 setup_data_regs(pip);
711
712 chip->request = sh_gpio_request;
713 chip->free = sh_gpio_free;
714 chip->direction_input = sh_gpio_direction_input;
715 chip->get = sh_gpio_get;
716 chip->direction_output = sh_gpio_direction_output;
717 chip->set = sh_gpio_set;
Magnus Dammad2a8e72011-09-28 16:50:58 +0900718 chip->to_irq = sh_gpio_to_irq;
Magnus Damm69edbba2008-12-25 18:17:34 +0900719
720 WARN_ON(pip->first_gpio != 0); /* needs testing */
721
722 chip->label = pip->name;
723 chip->owner = THIS_MODULE;
724 chip->base = pip->first_gpio;
725 chip->ngpio = (pip->last_gpio - pip->first_gpio) + 1;
726
Magnus Dammb0e10212011-12-09 12:14:27 +0900727 ret = gpiochip_add(chip);
728 if (ret < 0)
729 pfc_iounmap(pip);
730
731 return ret;
Magnus Damm2967dab2008-10-08 20:41:43 +0900732}
Paul Mundtb72421d2010-10-04 03:54:56 +0900733
734int unregister_pinmux(struct pinmux_info *pip)
735{
736 pr_info("%s deregistering\n", pip->name);
Magnus Dammb0e10212011-12-09 12:14:27 +0900737 pfc_iounmap(pip);
Paul Mundtb72421d2010-10-04 03:54:56 +0900738 return gpiochip_remove(&pip->chip);
739}