blob: ecbe51d9f563f82b35eb94e1a02fc196fa578695 [file] [log] [blame]
Magnus Damm2967dab2008-10-08 20:41:43 +09001/*
Paul Mundtb3c185a2012-06-20 17:29:04 +09002 * SuperH Pin Function Controller support.
Magnus Damm2967dab2008-10-08 20:41:43 +09003 *
4 * Copyright (C) 2008 Magnus Damm
Paul Mundtb3c185a2012-06-20 17:29:04 +09005 * Copyright (C) 2009 - 2012 Paul Mundt
Magnus Damm2967dab2008-10-08 20:41:43 +09006 *
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 */
Paul Mundta2d3aff2012-07-11 17:21:04 +090011#define pr_fmt(fmt) "sh_pfc " KBUILD_MODNAME ": " fmt
Paul Mundtb72421d2010-10-04 03:54:56 +090012
Magnus Damm2967dab2008-10-08 20:41:43 +090013#include <linux/errno.h>
14#include <linux/kernel.h>
Paul Mundtb3c185a2012-06-20 17:29:04 +090015#include <linux/sh_pfc.h>
Magnus Damm2967dab2008-10-08 20:41:43 +090016#include <linux/module.h>
Magnus Damm2967dab2008-10-08 20:41:43 +090017#include <linux/err.h>
18#include <linux/io.h>
Magnus Damm2967dab2008-10-08 20:41:43 +090019#include <linux/bitops.h>
Magnus Dammb0e10212011-12-09 12:14:27 +090020#include <linux/slab.h>
21#include <linux/ioport.h>
Paul Mundtca5481c62012-07-10 12:08:14 +090022#include <linux/pinctrl/machine.h>
Magnus Dammb0e10212011-12-09 12:14:27 +090023
Laurent Pinchartd4e62d02012-12-15 23:50:43 +010024static struct sh_pfc sh_pfc __read_mostly;
Paul Mundtb3c185a2012-06-20 17:29:04 +090025
26static void pfc_iounmap(struct sh_pfc *pfc)
Magnus Dammb0e10212011-12-09 12:14:27 +090027{
28 int k;
29
Laurent Pinchartd4e62d02012-12-15 23:50:43 +010030 for (k = 0; k < pfc->pdata->num_resources; k++)
Paul Mundtb3c185a2012-06-20 17:29:04 +090031 if (pfc->window[k].virt)
32 iounmap(pfc->window[k].virt);
Magnus Dammb0e10212011-12-09 12:14:27 +090033
Paul Mundtb3c185a2012-06-20 17:29:04 +090034 kfree(pfc->window);
35 pfc->window = NULL;
Magnus Dammb0e10212011-12-09 12:14:27 +090036}
37
Paul Mundtb3c185a2012-06-20 17:29:04 +090038static int pfc_ioremap(struct sh_pfc *pfc)
Magnus Dammb0e10212011-12-09 12:14:27 +090039{
40 struct resource *res;
41 int k;
42
Laurent Pinchartd4e62d02012-12-15 23:50:43 +010043 if (!pfc->pdata->num_resources)
Magnus Dammb0e10212011-12-09 12:14:27 +090044 return 0;
45
Laurent Pinchartd4e62d02012-12-15 23:50:43 +010046 pfc->window = kzalloc(pfc->pdata->num_resources * sizeof(*pfc->window),
Magnus Dammb0e10212011-12-09 12:14:27 +090047 GFP_NOWAIT);
Paul Mundtb3c185a2012-06-20 17:29:04 +090048 if (!pfc->window)
Magnus Dammb0e10212011-12-09 12:14:27 +090049 goto err1;
50
Laurent Pinchartd4e62d02012-12-15 23:50:43 +010051 for (k = 0; k < pfc->pdata->num_resources; k++) {
52 res = pfc->pdata->resource + k;
Magnus Dammb0e10212011-12-09 12:14:27 +090053 WARN_ON(resource_type(res) != IORESOURCE_MEM);
Paul Mundtb3c185a2012-06-20 17:29:04 +090054 pfc->window[k].phys = res->start;
55 pfc->window[k].size = resource_size(res);
56 pfc->window[k].virt = ioremap_nocache(res->start,
Magnus Dammb0e10212011-12-09 12:14:27 +090057 resource_size(res));
Paul Mundtb3c185a2012-06-20 17:29:04 +090058 if (!pfc->window[k].virt)
Magnus Dammb0e10212011-12-09 12:14:27 +090059 goto err2;
60 }
61
62 return 0;
63
64err2:
Paul Mundtb3c185a2012-06-20 17:29:04 +090065 pfc_iounmap(pfc);
Magnus Dammb0e10212011-12-09 12:14:27 +090066err1:
67 return -1;
68}
69
Paul Mundtb3c185a2012-06-20 17:29:04 +090070static void __iomem *pfc_phys_to_virt(struct sh_pfc *pfc,
Magnus Dammb0e10212011-12-09 12:14:27 +090071 unsigned long address)
72{
73 struct pfc_window *window;
74 int k;
75
76 /* scan through physical windows and convert address */
Laurent Pinchartd4e62d02012-12-15 23:50:43 +010077 for (k = 0; k < pfc->pdata->num_resources; k++) {
Paul Mundtb3c185a2012-06-20 17:29:04 +090078 window = pfc->window + k;
Magnus Dammb0e10212011-12-09 12:14:27 +090079
80 if (address < window->phys)
81 continue;
82
83 if (address >= (window->phys + window->size))
84 continue;
85
86 return window->virt + (address - window->phys);
87 }
88
89 /* no windows defined, register must be 1:1 mapped virt:phys */
90 return (void __iomem *)address;
91}
Magnus Damm2967dab2008-10-08 20:41:43 +090092
Magnus Damm2967dab2008-10-08 20:41:43 +090093static int enum_in_range(pinmux_enum_t enum_id, struct pinmux_range *r)
94{
95 if (enum_id < r->begin)
96 return 0;
97
98 if (enum_id > r->end)
99 return 0;
100
101 return 1;
102}
103
Magnus Dammb0e10212011-12-09 12:14:27 +0900104static unsigned long gpio_read_raw_reg(void __iomem *mapped_reg,
Magnus Damm32920942008-12-25 18:17:26 +0900105 unsigned long reg_width)
106{
107 switch (reg_width) {
108 case 8:
Magnus Dammb0e10212011-12-09 12:14:27 +0900109 return ioread8(mapped_reg);
Magnus Damm32920942008-12-25 18:17:26 +0900110 case 16:
Magnus Dammb0e10212011-12-09 12:14:27 +0900111 return ioread16(mapped_reg);
Magnus Damm32920942008-12-25 18:17:26 +0900112 case 32:
Magnus Dammb0e10212011-12-09 12:14:27 +0900113 return ioread32(mapped_reg);
Magnus Damm32920942008-12-25 18:17:26 +0900114 }
115
116 BUG();
117 return 0;
118}
119
Magnus Dammb0e10212011-12-09 12:14:27 +0900120static void gpio_write_raw_reg(void __iomem *mapped_reg,
Magnus Damm32920942008-12-25 18:17:26 +0900121 unsigned long reg_width,
122 unsigned long data)
123{
124 switch (reg_width) {
125 case 8:
Magnus Dammb0e10212011-12-09 12:14:27 +0900126 iowrite8(data, mapped_reg);
Magnus Damm32920942008-12-25 18:17:26 +0900127 return;
128 case 16:
Magnus Dammb0e10212011-12-09 12:14:27 +0900129 iowrite16(data, mapped_reg);
Magnus Damm32920942008-12-25 18:17:26 +0900130 return;
131 case 32:
Magnus Dammb0e10212011-12-09 12:14:27 +0900132 iowrite32(data, mapped_reg);
Magnus Damm32920942008-12-25 18:17:26 +0900133 return;
134 }
135
136 BUG();
137}
138
Paul Mundtb3c185a2012-06-20 17:29:04 +0900139int sh_pfc_read_bit(struct pinmux_data_reg *dr, unsigned long in_pos)
Magnus Damm92554d92011-12-14 01:00:37 +0900140{
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}
Paul Mundtb3c185a2012-06-20 17:29:04 +0900150EXPORT_SYMBOL_GPL(sh_pfc_read_bit);
Magnus Damm92554d92011-12-14 01:00:37 +0900151
Paul Mundtb3c185a2012-06-20 17:29:04 +0900152void sh_pfc_write_bit(struct pinmux_data_reg *dr, unsigned long in_pos,
153 unsigned long value)
Magnus Damm32920942008-12-25 18:17:26 +0900154{
155 unsigned long pos;
156
157 pos = dr->reg_width - (in_pos + 1);
158
Paul Mundtca6f2d72009-12-09 15:51:27 +0900159 pr_debug("write_bit addr = %lx, value = %d, pos = %ld, "
Paul Mundtfd2cb0c2009-11-30 12:15:04 +0900160 "r_width = %ld\n",
161 dr->reg, !!value, pos, dr->reg_width);
Magnus Damm32920942008-12-25 18:17:26 +0900162
163 if (value)
164 set_bit(pos, &dr->reg_shadow);
165 else
166 clear_bit(pos, &dr->reg_shadow);
167
Magnus Dammb0e10212011-12-09 12:14:27 +0900168 gpio_write_raw_reg(dr->mapped_reg, dr->reg_width, dr->reg_shadow);
Magnus Damm32920942008-12-25 18:17:26 +0900169}
Paul Mundtb3c185a2012-06-20 17:29:04 +0900170EXPORT_SYMBOL_GPL(sh_pfc_write_bit);
Magnus Damm32920942008-12-25 18:17:26 +0900171
Paul Mundtb3c185a2012-06-20 17:29:04 +0900172static void config_reg_helper(struct sh_pfc *pfc,
Magnus Damm18925e12011-12-14 01:00:55 +0900173 struct pinmux_cfg_reg *crp,
174 unsigned long in_pos,
175 void __iomem **mapped_regp,
176 unsigned long *maskp,
177 unsigned long *posp)
Magnus Damm2967dab2008-10-08 20:41:43 +0900178{
Magnus Dammf78a26f2011-12-14 01:01:05 +0900179 int k;
180
Paul Mundtb3c185a2012-06-20 17:29:04 +0900181 *mapped_regp = pfc_phys_to_virt(pfc, crp->reg);
Magnus Damm2967dab2008-10-08 20:41:43 +0900182
Magnus Dammf78a26f2011-12-14 01:01:05 +0900183 if (crp->field_width) {
184 *maskp = (1 << crp->field_width) - 1;
185 *posp = crp->reg_width - ((in_pos + 1) * crp->field_width);
186 } else {
187 *maskp = (1 << crp->var_field_width[in_pos]) - 1;
188 *posp = crp->reg_width;
189 for (k = 0; k <= in_pos; k++)
190 *posp -= crp->var_field_width[k];
191 }
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900192}
Magnus Damm2967dab2008-10-08 20:41:43 +0900193
Paul Mundtb3c185a2012-06-20 17:29:04 +0900194static int read_config_reg(struct sh_pfc *pfc,
Magnus Damm18925e12011-12-14 01:00:55 +0900195 struct pinmux_cfg_reg *crp,
196 unsigned long field)
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900197{
Magnus Damm18925e12011-12-14 01:00:55 +0900198 void __iomem *mapped_reg;
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900199 unsigned long mask, pos;
200
Paul Mundtb3c185a2012-06-20 17:29:04 +0900201 config_reg_helper(pfc, crp, field, &mapped_reg, &mask, &pos);
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900202
Magnus Damm18925e12011-12-14 01:00:55 +0900203 pr_debug("read_reg: addr = %lx, field = %ld, "
Paul Mundtfd2cb0c2009-11-30 12:15:04 +0900204 "r_width = %ld, f_width = %ld\n",
Magnus Damm18925e12011-12-14 01:00:55 +0900205 crp->reg, field, crp->reg_width, crp->field_width);
206
207 return (gpio_read_raw_reg(mapped_reg, crp->reg_width) >> pos) & mask;
208}
209
Paul Mundtb3c185a2012-06-20 17:29:04 +0900210static void write_config_reg(struct sh_pfc *pfc,
Magnus Damm18925e12011-12-14 01:00:55 +0900211 struct pinmux_cfg_reg *crp,
212 unsigned long field, unsigned long value)
213{
214 void __iomem *mapped_reg;
Magnus Damme499ada2011-12-14 01:01:14 +0900215 unsigned long mask, pos, data;
Magnus Damm18925e12011-12-14 01:00:55 +0900216
Paul Mundtb3c185a2012-06-20 17:29:04 +0900217 config_reg_helper(pfc, crp, field, &mapped_reg, &mask, &pos);
Magnus Damm18925e12011-12-14 01:00:55 +0900218
219 pr_debug("write_reg addr = %lx, value = %ld, field = %ld, "
220 "r_width = %ld, f_width = %ld\n",
221 crp->reg, value, field, crp->reg_width, crp->field_width);
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900222
223 mask = ~(mask << pos);
224 value = value << pos;
Magnus Damm2967dab2008-10-08 20:41:43 +0900225
Magnus Damme499ada2011-12-14 01:01:14 +0900226 data = gpio_read_raw_reg(mapped_reg, crp->reg_width);
227 data &= mask;
228 data |= value;
229
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100230 if (pfc->pdata->unlock_reg)
231 gpio_write_raw_reg(pfc_phys_to_virt(pfc, pfc->pdata->unlock_reg),
Magnus Damme499ada2011-12-14 01:01:14 +0900232 32, ~data);
233
234 gpio_write_raw_reg(mapped_reg, crp->reg_width, data);
Magnus Damm2967dab2008-10-08 20:41:43 +0900235}
236
Paul Mundtb3c185a2012-06-20 17:29:04 +0900237static int setup_data_reg(struct sh_pfc *pfc, unsigned gpio)
Magnus Damm2967dab2008-10-08 20:41:43 +0900238{
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100239 struct pinmux_gpio *gpiop = &pfc->pdata->gpios[gpio];
Magnus Damm2967dab2008-10-08 20:41:43 +0900240 struct pinmux_data_reg *data_reg;
241 int k, n;
242
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100243 if (!enum_in_range(gpiop->enum_id, &pfc->pdata->data))
Magnus Damm2967dab2008-10-08 20:41:43 +0900244 return -1;
245
246 k = 0;
247 while (1) {
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100248 data_reg = pfc->pdata->data_regs + k;
Magnus Damm2967dab2008-10-08 20:41:43 +0900249
250 if (!data_reg->reg_width)
251 break;
252
Paul Mundtb3c185a2012-06-20 17:29:04 +0900253 data_reg->mapped_reg = pfc_phys_to_virt(pfc, data_reg->reg);
Magnus Dammb0e10212011-12-09 12:14:27 +0900254
Magnus Damm2967dab2008-10-08 20:41:43 +0900255 for (n = 0; n < data_reg->reg_width; n++) {
Magnus Damm18801be2008-12-25 18:17:09 +0900256 if (data_reg->enum_ids[n] == gpiop->enum_id) {
257 gpiop->flags &= ~PINMUX_FLAG_DREG;
258 gpiop->flags |= (k << PINMUX_FLAG_DREG_SHIFT);
259 gpiop->flags &= ~PINMUX_FLAG_DBIT;
260 gpiop->flags |= (n << PINMUX_FLAG_DBIT_SHIFT);
Magnus Damm2967dab2008-10-08 20:41:43 +0900261 return 0;
Magnus Damm2967dab2008-10-08 20:41:43 +0900262 }
263 }
264 k++;
265 }
266
Magnus Damm18801be2008-12-25 18:17:09 +0900267 BUG();
268
Magnus Damm2967dab2008-10-08 20:41:43 +0900269 return -1;
270}
271
Paul Mundtb3c185a2012-06-20 17:29:04 +0900272static void setup_data_regs(struct sh_pfc *pfc)
Magnus Damm32920942008-12-25 18:17:26 +0900273{
274 struct pinmux_data_reg *drp;
275 int k;
276
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100277 for (k = pfc->pdata->first_gpio; k <= pfc->pdata->last_gpio; k++)
Paul Mundtb3c185a2012-06-20 17:29:04 +0900278 setup_data_reg(pfc, k);
Magnus Damm32920942008-12-25 18:17:26 +0900279
280 k = 0;
281 while (1) {
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100282 drp = pfc->pdata->data_regs + k;
Magnus Damm32920942008-12-25 18:17:26 +0900283
284 if (!drp->reg_width)
285 break;
286
Magnus Dammb0e10212011-12-09 12:14:27 +0900287 drp->reg_shadow = gpio_read_raw_reg(drp->mapped_reg,
288 drp->reg_width);
Magnus Damm32920942008-12-25 18:17:26 +0900289 k++;
290 }
291}
292
Paul Mundtb3c185a2012-06-20 17:29:04 +0900293int sh_pfc_get_data_reg(struct sh_pfc *pfc, unsigned gpio,
Magnus Damm18801be2008-12-25 18:17:09 +0900294 struct pinmux_data_reg **drp, int *bitp)
295{
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100296 struct pinmux_gpio *gpiop = &pfc->pdata->gpios[gpio];
Magnus Damm18801be2008-12-25 18:17:09 +0900297 int k, n;
298
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100299 if (!enum_in_range(gpiop->enum_id, &pfc->pdata->data))
Magnus Damm18801be2008-12-25 18:17:09 +0900300 return -1;
301
302 k = (gpiop->flags & PINMUX_FLAG_DREG) >> PINMUX_FLAG_DREG_SHIFT;
303 n = (gpiop->flags & PINMUX_FLAG_DBIT) >> PINMUX_FLAG_DBIT_SHIFT;
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100304 *drp = pfc->pdata->data_regs + k;
Magnus Damm18801be2008-12-25 18:17:09 +0900305 *bitp = n;
306 return 0;
307}
Paul Mundtb3c185a2012-06-20 17:29:04 +0900308EXPORT_SYMBOL_GPL(sh_pfc_get_data_reg);
Magnus Damm18801be2008-12-25 18:17:09 +0900309
Paul Mundtb3c185a2012-06-20 17:29:04 +0900310static int get_config_reg(struct sh_pfc *pfc, pinmux_enum_t enum_id,
Magnus Dammad4a07f2011-12-14 01:00:46 +0900311 struct pinmux_cfg_reg **crp,
312 int *fieldp, int *valuep,
Magnus Damm2967dab2008-10-08 20:41:43 +0900313 unsigned long **cntp)
314{
315 struct pinmux_cfg_reg *config_reg;
Magnus Dammf78a26f2011-12-14 01:01:05 +0900316 unsigned long r_width, f_width, curr_width, ncomb;
317 int k, m, n, pos, bit_pos;
Magnus Damm2967dab2008-10-08 20:41:43 +0900318
319 k = 0;
320 while (1) {
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100321 config_reg = pfc->pdata->cfg_regs + k;
Magnus Damm2967dab2008-10-08 20:41:43 +0900322
323 r_width = config_reg->reg_width;
324 f_width = config_reg->field_width;
325
326 if (!r_width)
327 break;
Magnus Dammf78a26f2011-12-14 01:01:05 +0900328
329 pos = 0;
330 m = 0;
331 for (bit_pos = 0; bit_pos < r_width; bit_pos += curr_width) {
332 if (f_width)
333 curr_width = f_width;
334 else
335 curr_width = config_reg->var_field_width[m];
336
337 ncomb = 1 << curr_width;
338 for (n = 0; n < ncomb; n++) {
339 if (config_reg->enum_ids[pos + n] == enum_id) {
340 *crp = config_reg;
341 *fieldp = m;
342 *valuep = n;
343 *cntp = &config_reg->cnt[m];
344 return 0;
345 }
Magnus Damm2967dab2008-10-08 20:41:43 +0900346 }
Magnus Dammf78a26f2011-12-14 01:01:05 +0900347 pos += ncomb;
348 m++;
Magnus Damm2967dab2008-10-08 20:41:43 +0900349 }
350 k++;
351 }
352
353 return -1;
354}
355
Paul Mundtb3c185a2012-06-20 17:29:04 +0900356int sh_pfc_gpio_to_enum(struct sh_pfc *pfc, unsigned gpio, int pos,
357 pinmux_enum_t *enum_idp)
Magnus Damm2967dab2008-10-08 20:41:43 +0900358{
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100359 pinmux_enum_t enum_id = pfc->pdata->gpios[gpio].enum_id;
360 pinmux_enum_t *data = pfc->pdata->gpio_data;
Magnus Damm2967dab2008-10-08 20:41:43 +0900361 int k;
362
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100363 if (!enum_in_range(enum_id, &pfc->pdata->data)) {
364 if (!enum_in_range(enum_id, &pfc->pdata->mark)) {
Magnus Damm2967dab2008-10-08 20:41:43 +0900365 pr_err("non data/mark enum_id for gpio %d\n", gpio);
366 return -1;
367 }
368 }
369
370 if (pos) {
371 *enum_idp = data[pos + 1];
372 return pos + 1;
373 }
374
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100375 for (k = 0; k < pfc->pdata->gpio_data_size; k++) {
Magnus Damm2967dab2008-10-08 20:41:43 +0900376 if (data[k] == enum_id) {
377 *enum_idp = data[k + 1];
378 return k + 1;
379 }
380 }
381
382 pr_err("cannot locate data/mark enum_id for gpio %d\n", gpio);
383 return -1;
384}
Paul Mundtb3c185a2012-06-20 17:29:04 +0900385EXPORT_SYMBOL_GPL(sh_pfc_gpio_to_enum);
Magnus Damm2967dab2008-10-08 20:41:43 +0900386
Paul Mundtb3c185a2012-06-20 17:29:04 +0900387int sh_pfc_config_gpio(struct sh_pfc *pfc, unsigned gpio, int pinmux_type,
388 int cfg_mode)
Magnus Damm2967dab2008-10-08 20:41:43 +0900389{
390 struct pinmux_cfg_reg *cr = NULL;
391 pinmux_enum_t enum_id;
392 struct pinmux_range *range;
Magnus Dammad4a07f2011-12-14 01:00:46 +0900393 int in_range, pos, field, value;
Magnus Damm2967dab2008-10-08 20:41:43 +0900394 unsigned long *cntp;
395
396 switch (pinmux_type) {
397
398 case PINMUX_TYPE_FUNCTION:
399 range = NULL;
400 break;
401
402 case PINMUX_TYPE_OUTPUT:
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100403 range = &pfc->pdata->output;
Magnus Damm2967dab2008-10-08 20:41:43 +0900404 break;
405
406 case PINMUX_TYPE_INPUT:
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100407 range = &pfc->pdata->input;
Magnus Damm2967dab2008-10-08 20:41:43 +0900408 break;
409
410 case PINMUX_TYPE_INPUT_PULLUP:
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100411 range = &pfc->pdata->input_pu;
Magnus Damm2967dab2008-10-08 20:41:43 +0900412 break;
413
414 case PINMUX_TYPE_INPUT_PULLDOWN:
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100415 range = &pfc->pdata->input_pd;
Magnus Damm2967dab2008-10-08 20:41:43 +0900416 break;
417
418 default:
419 goto out_err;
420 }
421
422 pos = 0;
423 enum_id = 0;
Magnus Dammad4a07f2011-12-14 01:00:46 +0900424 field = 0;
425 value = 0;
Magnus Damm2967dab2008-10-08 20:41:43 +0900426 while (1) {
Paul Mundtb3c185a2012-06-20 17:29:04 +0900427 pos = sh_pfc_gpio_to_enum(pfc, gpio, pos, &enum_id);
Magnus Damm2967dab2008-10-08 20:41:43 +0900428 if (pos <= 0)
429 goto out_err;
430
431 if (!enum_id)
432 break;
433
Magnus Damm50dd3142010-01-19 13:52:28 +0000434 /* first check if this is a function enum */
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100435 in_range = enum_in_range(enum_id, &pfc->pdata->function);
Magnus Damm50dd3142010-01-19 13:52:28 +0000436 if (!in_range) {
437 /* not a function enum */
438 if (range) {
439 /*
440 * other range exists, so this pin is
441 * a regular GPIO pin that now is being
442 * bound to a specific direction.
443 *
444 * for this case we only allow function enums
445 * and the enums that match the other range.
446 */
447 in_range = enum_in_range(enum_id, range);
Magnus Damm2967dab2008-10-08 20:41:43 +0900448
Magnus Damm50dd3142010-01-19 13:52:28 +0000449 /*
450 * special case pass through for fixed
451 * input-only or output-only pins without
452 * function enum register association.
453 */
454 if (in_range && enum_id == range->force)
455 continue;
456 } else {
457 /*
458 * no other range exists, so this pin
459 * must then be of the function type.
460 *
461 * allow function type pins to select
462 * any combination of function/in/out
463 * in their MARK lists.
464 */
465 in_range = 1;
466 }
Magnus Damm42eed422008-10-22 18:29:17 +0900467 }
468
Magnus Damm2967dab2008-10-08 20:41:43 +0900469 if (!in_range)
470 continue;
471
Paul Mundtb3c185a2012-06-20 17:29:04 +0900472 if (get_config_reg(pfc, enum_id, &cr,
Magnus Dammad4a07f2011-12-14 01:00:46 +0900473 &field, &value, &cntp) != 0)
Magnus Damm2967dab2008-10-08 20:41:43 +0900474 goto out_err;
475
476 switch (cfg_mode) {
477 case GPIO_CFG_DRYRUN:
Magnus Damm18925e12011-12-14 01:00:55 +0900478 if (!*cntp ||
Paul Mundtb3c185a2012-06-20 17:29:04 +0900479 (read_config_reg(pfc, cr, field) != value))
Magnus Damm2967dab2008-10-08 20:41:43 +0900480 continue;
481 break;
482
483 case GPIO_CFG_REQ:
Paul Mundtb3c185a2012-06-20 17:29:04 +0900484 write_config_reg(pfc, cr, field, value);
Magnus Damm2967dab2008-10-08 20:41:43 +0900485 *cntp = *cntp + 1;
486 break;
487
488 case GPIO_CFG_FREE:
489 *cntp = *cntp - 1;
490 break;
491 }
492 }
493
494 return 0;
495 out_err:
496 return -1;
497}
Paul Mundtb3c185a2012-06-20 17:29:04 +0900498EXPORT_SYMBOL_GPL(sh_pfc_config_gpio);
Magnus Damm2967dab2008-10-08 20:41:43 +0900499
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100500int register_sh_pfc(struct sh_pfc_platform_data *pdata)
Magnus Damm2967dab2008-10-08 20:41:43 +0900501{
Paul Mundtb3c185a2012-06-20 17:29:04 +0900502 int (*initroutine)(struct sh_pfc *) = NULL;
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900503 int ret;
Magnus Damm2967dab2008-10-08 20:41:43 +0900504
Paul Mundt06d56312012-06-21 00:03:41 +0900505 /*
506 * Ensure that the type encoding fits
507 */
508 BUILD_BUG_ON(PINMUX_FLAG_TYPE > ((1 << PINMUX_FLAG_DBIT_SHIFT) - 1));
509
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100510 if (sh_pfc.pdata)
Paul Mundtb3c185a2012-06-20 17:29:04 +0900511 return -EBUSY;
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900512
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100513 sh_pfc.pdata = pdata;
Magnus Dammb0e10212011-12-09 12:14:27 +0900514
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100515 ret = pfc_ioremap(&sh_pfc);
516 if (unlikely(ret < 0)) {
517 sh_pfc.pdata = NULL;
518 return ret;
519 }
520
521 spin_lock_init(&sh_pfc.lock);
Magnus Damm69edbba2008-12-25 18:17:34 +0900522
Paul Mundtca5481c62012-07-10 12:08:14 +0900523 pinctrl_provide_dummies();
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100524 setup_data_regs(&sh_pfc);
Magnus Damm69edbba2008-12-25 18:17:34 +0900525
Paul Mundtca5481c62012-07-10 12:08:14 +0900526 /*
527 * Initialize pinctrl bindings first
528 */
529 initroutine = symbol_request(sh_pfc_register_pinctrl);
Paul Mundtb3c185a2012-06-20 17:29:04 +0900530 if (initroutine) {
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100531 ret = (*initroutine)(&sh_pfc);
Paul Mundtb3c185a2012-06-20 17:29:04 +0900532 symbol_put_addr(initroutine);
Paul Mundtca5481c62012-07-10 12:08:14 +0900533
534 if (unlikely(ret != 0))
535 goto err;
Paul Mundt159ac072012-07-17 15:18:37 +0900536 } else {
537 pr_err("failed to initialize pinctrl bindings\n");
538 goto err;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900539 }
Magnus Damm69edbba2008-12-25 18:17:34 +0900540
Paul Mundtca5481c62012-07-10 12:08:14 +0900541 /*
542 * Then the GPIO chip
543 */
544 initroutine = symbol_request(sh_pfc_register_gpiochip);
545 if (initroutine) {
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100546 ret = (*initroutine)(&sh_pfc);
Paul Mundtca5481c62012-07-10 12:08:14 +0900547 symbol_put_addr(initroutine);
548
549 /*
550 * If the GPIO chip fails to come up we still leave the
551 * PFC state as it is, given that there are already
552 * extant users of it that have succeeded by this point.
553 */
554 if (unlikely(ret != 0)) {
555 pr_notice("failed to init GPIO chip, ignoring...\n");
556 ret = 0;
557 }
558 }
559
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100560 pr_info("%s support registered\n", sh_pfc.pdata->name);
Paul Mundtca5481c62012-07-10 12:08:14 +0900561
Paul Mundtb3c185a2012-06-20 17:29:04 +0900562 return 0;
Paul Mundtca5481c62012-07-10 12:08:14 +0900563
564err:
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100565 pfc_iounmap(&sh_pfc);
566 sh_pfc.pdata = NULL;
Paul Mundtca5481c62012-07-10 12:08:14 +0900567
568 return ret;
Paul Mundtb72421d2010-10-04 03:54:56 +0900569}