blob: 72421a4a883d06420e17ffff215a33feec106bfc [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 Pinchartf9165132012-12-15 23:50:44 +010024#include "core.h"
25
Laurent Pinchartd4e62d02012-12-15 23:50:43 +010026static struct sh_pfc sh_pfc __read_mostly;
Paul Mundtb3c185a2012-06-20 17:29:04 +090027
28static void pfc_iounmap(struct sh_pfc *pfc)
Magnus Dammb0e10212011-12-09 12:14:27 +090029{
30 int k;
31
Laurent Pinchartd4e62d02012-12-15 23:50:43 +010032 for (k = 0; k < pfc->pdata->num_resources; k++)
Paul Mundtb3c185a2012-06-20 17:29:04 +090033 if (pfc->window[k].virt)
34 iounmap(pfc->window[k].virt);
Magnus Dammb0e10212011-12-09 12:14:27 +090035
Paul Mundtb3c185a2012-06-20 17:29:04 +090036 kfree(pfc->window);
37 pfc->window = NULL;
Magnus Dammb0e10212011-12-09 12:14:27 +090038}
39
Paul Mundtb3c185a2012-06-20 17:29:04 +090040static int pfc_ioremap(struct sh_pfc *pfc)
Magnus Dammb0e10212011-12-09 12:14:27 +090041{
42 struct resource *res;
43 int k;
44
Laurent Pinchartd4e62d02012-12-15 23:50:43 +010045 if (!pfc->pdata->num_resources)
Magnus Dammb0e10212011-12-09 12:14:27 +090046 return 0;
47
Laurent Pinchartd4e62d02012-12-15 23:50:43 +010048 pfc->window = kzalloc(pfc->pdata->num_resources * sizeof(*pfc->window),
Magnus Dammb0e10212011-12-09 12:14:27 +090049 GFP_NOWAIT);
Paul Mundtb3c185a2012-06-20 17:29:04 +090050 if (!pfc->window)
Magnus Dammb0e10212011-12-09 12:14:27 +090051 goto err1;
52
Laurent Pinchartd4e62d02012-12-15 23:50:43 +010053 for (k = 0; k < pfc->pdata->num_resources; k++) {
54 res = pfc->pdata->resource + k;
Magnus Dammb0e10212011-12-09 12:14:27 +090055 WARN_ON(resource_type(res) != IORESOURCE_MEM);
Paul Mundtb3c185a2012-06-20 17:29:04 +090056 pfc->window[k].phys = res->start;
57 pfc->window[k].size = resource_size(res);
58 pfc->window[k].virt = ioremap_nocache(res->start,
Magnus Dammb0e10212011-12-09 12:14:27 +090059 resource_size(res));
Paul Mundtb3c185a2012-06-20 17:29:04 +090060 if (!pfc->window[k].virt)
Magnus Dammb0e10212011-12-09 12:14:27 +090061 goto err2;
62 }
63
64 return 0;
65
66err2:
Paul Mundtb3c185a2012-06-20 17:29:04 +090067 pfc_iounmap(pfc);
Magnus Dammb0e10212011-12-09 12:14:27 +090068err1:
69 return -1;
70}
71
Paul Mundtb3c185a2012-06-20 17:29:04 +090072static void __iomem *pfc_phys_to_virt(struct sh_pfc *pfc,
Magnus Dammb0e10212011-12-09 12:14:27 +090073 unsigned long address)
74{
75 struct pfc_window *window;
76 int k;
77
78 /* scan through physical windows and convert address */
Laurent Pinchartd4e62d02012-12-15 23:50:43 +010079 for (k = 0; k < pfc->pdata->num_resources; k++) {
Paul Mundtb3c185a2012-06-20 17:29:04 +090080 window = pfc->window + k;
Magnus Dammb0e10212011-12-09 12:14:27 +090081
82 if (address < window->phys)
83 continue;
84
85 if (address >= (window->phys + window->size))
86 continue;
87
88 return window->virt + (address - window->phys);
89 }
90
91 /* no windows defined, register must be 1:1 mapped virt:phys */
92 return (void __iomem *)address;
93}
Magnus Damm2967dab2008-10-08 20:41:43 +090094
Magnus Damm2967dab2008-10-08 20:41:43 +090095static int enum_in_range(pinmux_enum_t enum_id, struct pinmux_range *r)
96{
97 if (enum_id < r->begin)
98 return 0;
99
100 if (enum_id > r->end)
101 return 0;
102
103 return 1;
104}
105
Magnus Dammb0e10212011-12-09 12:14:27 +0900106static unsigned long gpio_read_raw_reg(void __iomem *mapped_reg,
Magnus Damm32920942008-12-25 18:17:26 +0900107 unsigned long reg_width)
108{
109 switch (reg_width) {
110 case 8:
Magnus Dammb0e10212011-12-09 12:14:27 +0900111 return ioread8(mapped_reg);
Magnus Damm32920942008-12-25 18:17:26 +0900112 case 16:
Magnus Dammb0e10212011-12-09 12:14:27 +0900113 return ioread16(mapped_reg);
Magnus Damm32920942008-12-25 18:17:26 +0900114 case 32:
Magnus Dammb0e10212011-12-09 12:14:27 +0900115 return ioread32(mapped_reg);
Magnus Damm32920942008-12-25 18:17:26 +0900116 }
117
118 BUG();
119 return 0;
120}
121
Magnus Dammb0e10212011-12-09 12:14:27 +0900122static void gpio_write_raw_reg(void __iomem *mapped_reg,
Magnus Damm32920942008-12-25 18:17:26 +0900123 unsigned long reg_width,
124 unsigned long data)
125{
126 switch (reg_width) {
127 case 8:
Magnus Dammb0e10212011-12-09 12:14:27 +0900128 iowrite8(data, mapped_reg);
Magnus Damm32920942008-12-25 18:17:26 +0900129 return;
130 case 16:
Magnus Dammb0e10212011-12-09 12:14:27 +0900131 iowrite16(data, mapped_reg);
Magnus Damm32920942008-12-25 18:17:26 +0900132 return;
133 case 32:
Magnus Dammb0e10212011-12-09 12:14:27 +0900134 iowrite32(data, mapped_reg);
Magnus Damm32920942008-12-25 18:17:26 +0900135 return;
136 }
137
138 BUG();
139}
140
Paul Mundtb3c185a2012-06-20 17:29:04 +0900141int sh_pfc_read_bit(struct pinmux_data_reg *dr, unsigned long in_pos)
Magnus Damm92554d92011-12-14 01:00:37 +0900142{
143 unsigned long pos;
144
145 pos = dr->reg_width - (in_pos + 1);
146
147 pr_debug("read_bit: addr = %lx, pos = %ld, "
148 "r_width = %ld\n", dr->reg, pos, dr->reg_width);
149
150 return (gpio_read_raw_reg(dr->mapped_reg, dr->reg_width) >> pos) & 1;
151}
Paul Mundtb3c185a2012-06-20 17:29:04 +0900152EXPORT_SYMBOL_GPL(sh_pfc_read_bit);
Magnus Damm92554d92011-12-14 01:00:37 +0900153
Paul Mundtb3c185a2012-06-20 17:29:04 +0900154void sh_pfc_write_bit(struct pinmux_data_reg *dr, unsigned long in_pos,
155 unsigned long value)
Magnus Damm32920942008-12-25 18:17:26 +0900156{
157 unsigned long pos;
158
159 pos = dr->reg_width - (in_pos + 1);
160
Paul Mundtca6f2d72009-12-09 15:51:27 +0900161 pr_debug("write_bit addr = %lx, value = %d, pos = %ld, "
Paul Mundtfd2cb0c2009-11-30 12:15:04 +0900162 "r_width = %ld\n",
163 dr->reg, !!value, pos, dr->reg_width);
Magnus Damm32920942008-12-25 18:17:26 +0900164
165 if (value)
166 set_bit(pos, &dr->reg_shadow);
167 else
168 clear_bit(pos, &dr->reg_shadow);
169
Magnus Dammb0e10212011-12-09 12:14:27 +0900170 gpio_write_raw_reg(dr->mapped_reg, dr->reg_width, dr->reg_shadow);
Magnus Damm32920942008-12-25 18:17:26 +0900171}
Paul Mundtb3c185a2012-06-20 17:29:04 +0900172EXPORT_SYMBOL_GPL(sh_pfc_write_bit);
Magnus Damm32920942008-12-25 18:17:26 +0900173
Paul Mundtb3c185a2012-06-20 17:29:04 +0900174static void config_reg_helper(struct sh_pfc *pfc,
Magnus Damm18925e12011-12-14 01:00:55 +0900175 struct pinmux_cfg_reg *crp,
176 unsigned long in_pos,
177 void __iomem **mapped_regp,
178 unsigned long *maskp,
179 unsigned long *posp)
Magnus Damm2967dab2008-10-08 20:41:43 +0900180{
Magnus Dammf78a26f2011-12-14 01:01:05 +0900181 int k;
182
Paul Mundtb3c185a2012-06-20 17:29:04 +0900183 *mapped_regp = pfc_phys_to_virt(pfc, crp->reg);
Magnus Damm2967dab2008-10-08 20:41:43 +0900184
Magnus Dammf78a26f2011-12-14 01:01:05 +0900185 if (crp->field_width) {
186 *maskp = (1 << crp->field_width) - 1;
187 *posp = crp->reg_width - ((in_pos + 1) * crp->field_width);
188 } else {
189 *maskp = (1 << crp->var_field_width[in_pos]) - 1;
190 *posp = crp->reg_width;
191 for (k = 0; k <= in_pos; k++)
192 *posp -= crp->var_field_width[k];
193 }
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900194}
Magnus Damm2967dab2008-10-08 20:41:43 +0900195
Paul Mundtb3c185a2012-06-20 17:29:04 +0900196static int read_config_reg(struct sh_pfc *pfc,
Magnus Damm18925e12011-12-14 01:00:55 +0900197 struct pinmux_cfg_reg *crp,
198 unsigned long field)
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900199{
Magnus Damm18925e12011-12-14 01:00:55 +0900200 void __iomem *mapped_reg;
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900201 unsigned long mask, pos;
202
Paul Mundtb3c185a2012-06-20 17:29:04 +0900203 config_reg_helper(pfc, crp, field, &mapped_reg, &mask, &pos);
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900204
Magnus Damm18925e12011-12-14 01:00:55 +0900205 pr_debug("read_reg: addr = %lx, field = %ld, "
Paul Mundtfd2cb0c2009-11-30 12:15:04 +0900206 "r_width = %ld, f_width = %ld\n",
Magnus Damm18925e12011-12-14 01:00:55 +0900207 crp->reg, field, crp->reg_width, crp->field_width);
208
209 return (gpio_read_raw_reg(mapped_reg, crp->reg_width) >> pos) & mask;
210}
211
Paul Mundtb3c185a2012-06-20 17:29:04 +0900212static void write_config_reg(struct sh_pfc *pfc,
Magnus Damm18925e12011-12-14 01:00:55 +0900213 struct pinmux_cfg_reg *crp,
214 unsigned long field, unsigned long value)
215{
216 void __iomem *mapped_reg;
Magnus Damme499ada2011-12-14 01:01:14 +0900217 unsigned long mask, pos, data;
Magnus Damm18925e12011-12-14 01:00:55 +0900218
Paul Mundtb3c185a2012-06-20 17:29:04 +0900219 config_reg_helper(pfc, crp, field, &mapped_reg, &mask, &pos);
Magnus Damm18925e12011-12-14 01:00:55 +0900220
221 pr_debug("write_reg addr = %lx, value = %ld, field = %ld, "
222 "r_width = %ld, f_width = %ld\n",
223 crp->reg, value, field, crp->reg_width, crp->field_width);
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900224
225 mask = ~(mask << pos);
226 value = value << pos;
Magnus Damm2967dab2008-10-08 20:41:43 +0900227
Magnus Damme499ada2011-12-14 01:01:14 +0900228 data = gpio_read_raw_reg(mapped_reg, crp->reg_width);
229 data &= mask;
230 data |= value;
231
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100232 if (pfc->pdata->unlock_reg)
233 gpio_write_raw_reg(pfc_phys_to_virt(pfc, pfc->pdata->unlock_reg),
Magnus Damme499ada2011-12-14 01:01:14 +0900234 32, ~data);
235
236 gpio_write_raw_reg(mapped_reg, crp->reg_width, data);
Magnus Damm2967dab2008-10-08 20:41:43 +0900237}
238
Paul Mundtb3c185a2012-06-20 17:29:04 +0900239static int setup_data_reg(struct sh_pfc *pfc, unsigned gpio)
Magnus Damm2967dab2008-10-08 20:41:43 +0900240{
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100241 struct pinmux_gpio *gpiop = &pfc->pdata->gpios[gpio];
Magnus Damm2967dab2008-10-08 20:41:43 +0900242 struct pinmux_data_reg *data_reg;
243 int k, n;
244
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100245 if (!enum_in_range(gpiop->enum_id, &pfc->pdata->data))
Magnus Damm2967dab2008-10-08 20:41:43 +0900246 return -1;
247
248 k = 0;
249 while (1) {
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100250 data_reg = pfc->pdata->data_regs + k;
Magnus Damm2967dab2008-10-08 20:41:43 +0900251
252 if (!data_reg->reg_width)
253 break;
254
Paul Mundtb3c185a2012-06-20 17:29:04 +0900255 data_reg->mapped_reg = pfc_phys_to_virt(pfc, data_reg->reg);
Magnus Dammb0e10212011-12-09 12:14:27 +0900256
Magnus Damm2967dab2008-10-08 20:41:43 +0900257 for (n = 0; n < data_reg->reg_width; n++) {
Magnus Damm18801be2008-12-25 18:17:09 +0900258 if (data_reg->enum_ids[n] == gpiop->enum_id) {
259 gpiop->flags &= ~PINMUX_FLAG_DREG;
260 gpiop->flags |= (k << PINMUX_FLAG_DREG_SHIFT);
261 gpiop->flags &= ~PINMUX_FLAG_DBIT;
262 gpiop->flags |= (n << PINMUX_FLAG_DBIT_SHIFT);
Magnus Damm2967dab2008-10-08 20:41:43 +0900263 return 0;
Magnus Damm2967dab2008-10-08 20:41:43 +0900264 }
265 }
266 k++;
267 }
268
Magnus Damm18801be2008-12-25 18:17:09 +0900269 BUG();
270
Magnus Damm2967dab2008-10-08 20:41:43 +0900271 return -1;
272}
273
Paul Mundtb3c185a2012-06-20 17:29:04 +0900274static void setup_data_regs(struct sh_pfc *pfc)
Magnus Damm32920942008-12-25 18:17:26 +0900275{
276 struct pinmux_data_reg *drp;
277 int k;
278
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100279 for (k = pfc->pdata->first_gpio; k <= pfc->pdata->last_gpio; k++)
Paul Mundtb3c185a2012-06-20 17:29:04 +0900280 setup_data_reg(pfc, k);
Magnus Damm32920942008-12-25 18:17:26 +0900281
282 k = 0;
283 while (1) {
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100284 drp = pfc->pdata->data_regs + k;
Magnus Damm32920942008-12-25 18:17:26 +0900285
286 if (!drp->reg_width)
287 break;
288
Magnus Dammb0e10212011-12-09 12:14:27 +0900289 drp->reg_shadow = gpio_read_raw_reg(drp->mapped_reg,
290 drp->reg_width);
Magnus Damm32920942008-12-25 18:17:26 +0900291 k++;
292 }
293}
294
Paul Mundtb3c185a2012-06-20 17:29:04 +0900295int sh_pfc_get_data_reg(struct sh_pfc *pfc, unsigned gpio,
Magnus Damm18801be2008-12-25 18:17:09 +0900296 struct pinmux_data_reg **drp, int *bitp)
297{
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100298 struct pinmux_gpio *gpiop = &pfc->pdata->gpios[gpio];
Magnus Damm18801be2008-12-25 18:17:09 +0900299 int k, n;
300
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100301 if (!enum_in_range(gpiop->enum_id, &pfc->pdata->data))
Magnus Damm18801be2008-12-25 18:17:09 +0900302 return -1;
303
304 k = (gpiop->flags & PINMUX_FLAG_DREG) >> PINMUX_FLAG_DREG_SHIFT;
305 n = (gpiop->flags & PINMUX_FLAG_DBIT) >> PINMUX_FLAG_DBIT_SHIFT;
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100306 *drp = pfc->pdata->data_regs + k;
Magnus Damm18801be2008-12-25 18:17:09 +0900307 *bitp = n;
308 return 0;
309}
Paul Mundtb3c185a2012-06-20 17:29:04 +0900310EXPORT_SYMBOL_GPL(sh_pfc_get_data_reg);
Magnus Damm18801be2008-12-25 18:17:09 +0900311
Paul Mundtb3c185a2012-06-20 17:29:04 +0900312static int get_config_reg(struct sh_pfc *pfc, pinmux_enum_t enum_id,
Magnus Dammad4a07f2011-12-14 01:00:46 +0900313 struct pinmux_cfg_reg **crp,
314 int *fieldp, int *valuep,
Magnus Damm2967dab2008-10-08 20:41:43 +0900315 unsigned long **cntp)
316{
317 struct pinmux_cfg_reg *config_reg;
Magnus Dammf78a26f2011-12-14 01:01:05 +0900318 unsigned long r_width, f_width, curr_width, ncomb;
319 int k, m, n, pos, bit_pos;
Magnus Damm2967dab2008-10-08 20:41:43 +0900320
321 k = 0;
322 while (1) {
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100323 config_reg = pfc->pdata->cfg_regs + k;
Magnus Damm2967dab2008-10-08 20:41:43 +0900324
325 r_width = config_reg->reg_width;
326 f_width = config_reg->field_width;
327
328 if (!r_width)
329 break;
Magnus Dammf78a26f2011-12-14 01:01:05 +0900330
331 pos = 0;
332 m = 0;
333 for (bit_pos = 0; bit_pos < r_width; bit_pos += curr_width) {
334 if (f_width)
335 curr_width = f_width;
336 else
337 curr_width = config_reg->var_field_width[m];
338
339 ncomb = 1 << curr_width;
340 for (n = 0; n < ncomb; n++) {
341 if (config_reg->enum_ids[pos + n] == enum_id) {
342 *crp = config_reg;
343 *fieldp = m;
344 *valuep = n;
345 *cntp = &config_reg->cnt[m];
346 return 0;
347 }
Magnus Damm2967dab2008-10-08 20:41:43 +0900348 }
Magnus Dammf78a26f2011-12-14 01:01:05 +0900349 pos += ncomb;
350 m++;
Magnus Damm2967dab2008-10-08 20:41:43 +0900351 }
352 k++;
353 }
354
355 return -1;
356}
357
Paul Mundtb3c185a2012-06-20 17:29:04 +0900358int sh_pfc_gpio_to_enum(struct sh_pfc *pfc, unsigned gpio, int pos,
359 pinmux_enum_t *enum_idp)
Magnus Damm2967dab2008-10-08 20:41:43 +0900360{
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100361 pinmux_enum_t enum_id = pfc->pdata->gpios[gpio].enum_id;
362 pinmux_enum_t *data = pfc->pdata->gpio_data;
Magnus Damm2967dab2008-10-08 20:41:43 +0900363 int k;
364
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100365 if (!enum_in_range(enum_id, &pfc->pdata->data)) {
366 if (!enum_in_range(enum_id, &pfc->pdata->mark)) {
Magnus Damm2967dab2008-10-08 20:41:43 +0900367 pr_err("non data/mark enum_id for gpio %d\n", gpio);
368 return -1;
369 }
370 }
371
372 if (pos) {
373 *enum_idp = data[pos + 1];
374 return pos + 1;
375 }
376
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100377 for (k = 0; k < pfc->pdata->gpio_data_size; k++) {
Magnus Damm2967dab2008-10-08 20:41:43 +0900378 if (data[k] == enum_id) {
379 *enum_idp = data[k + 1];
380 return k + 1;
381 }
382 }
383
384 pr_err("cannot locate data/mark enum_id for gpio %d\n", gpio);
385 return -1;
386}
Paul Mundtb3c185a2012-06-20 17:29:04 +0900387EXPORT_SYMBOL_GPL(sh_pfc_gpio_to_enum);
Magnus Damm2967dab2008-10-08 20:41:43 +0900388
Paul Mundtb3c185a2012-06-20 17:29:04 +0900389int sh_pfc_config_gpio(struct sh_pfc *pfc, unsigned gpio, int pinmux_type,
390 int cfg_mode)
Magnus Damm2967dab2008-10-08 20:41:43 +0900391{
392 struct pinmux_cfg_reg *cr = NULL;
393 pinmux_enum_t enum_id;
394 struct pinmux_range *range;
Magnus Dammad4a07f2011-12-14 01:00:46 +0900395 int in_range, pos, field, value;
Magnus Damm2967dab2008-10-08 20:41:43 +0900396 unsigned long *cntp;
397
398 switch (pinmux_type) {
399
400 case PINMUX_TYPE_FUNCTION:
401 range = NULL;
402 break;
403
404 case PINMUX_TYPE_OUTPUT:
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100405 range = &pfc->pdata->output;
Magnus Damm2967dab2008-10-08 20:41:43 +0900406 break;
407
408 case PINMUX_TYPE_INPUT:
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100409 range = &pfc->pdata->input;
Magnus Damm2967dab2008-10-08 20:41:43 +0900410 break;
411
412 case PINMUX_TYPE_INPUT_PULLUP:
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100413 range = &pfc->pdata->input_pu;
Magnus Damm2967dab2008-10-08 20:41:43 +0900414 break;
415
416 case PINMUX_TYPE_INPUT_PULLDOWN:
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100417 range = &pfc->pdata->input_pd;
Magnus Damm2967dab2008-10-08 20:41:43 +0900418 break;
419
420 default:
421 goto out_err;
422 }
423
424 pos = 0;
425 enum_id = 0;
Magnus Dammad4a07f2011-12-14 01:00:46 +0900426 field = 0;
427 value = 0;
Magnus Damm2967dab2008-10-08 20:41:43 +0900428 while (1) {
Paul Mundtb3c185a2012-06-20 17:29:04 +0900429 pos = sh_pfc_gpio_to_enum(pfc, gpio, pos, &enum_id);
Magnus Damm2967dab2008-10-08 20:41:43 +0900430 if (pos <= 0)
431 goto out_err;
432
433 if (!enum_id)
434 break;
435
Magnus Damm50dd3142010-01-19 13:52:28 +0000436 /* first check if this is a function enum */
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100437 in_range = enum_in_range(enum_id, &pfc->pdata->function);
Magnus Damm50dd3142010-01-19 13:52:28 +0000438 if (!in_range) {
439 /* not a function enum */
440 if (range) {
441 /*
442 * other range exists, so this pin is
443 * a regular GPIO pin that now is being
444 * bound to a specific direction.
445 *
446 * for this case we only allow function enums
447 * and the enums that match the other range.
448 */
449 in_range = enum_in_range(enum_id, range);
Magnus Damm2967dab2008-10-08 20:41:43 +0900450
Magnus Damm50dd3142010-01-19 13:52:28 +0000451 /*
452 * special case pass through for fixed
453 * input-only or output-only pins without
454 * function enum register association.
455 */
456 if (in_range && enum_id == range->force)
457 continue;
458 } else {
459 /*
460 * no other range exists, so this pin
461 * must then be of the function type.
462 *
463 * allow function type pins to select
464 * any combination of function/in/out
465 * in their MARK lists.
466 */
467 in_range = 1;
468 }
Magnus Damm42eed422008-10-22 18:29:17 +0900469 }
470
Magnus Damm2967dab2008-10-08 20:41:43 +0900471 if (!in_range)
472 continue;
473
Paul Mundtb3c185a2012-06-20 17:29:04 +0900474 if (get_config_reg(pfc, enum_id, &cr,
Magnus Dammad4a07f2011-12-14 01:00:46 +0900475 &field, &value, &cntp) != 0)
Magnus Damm2967dab2008-10-08 20:41:43 +0900476 goto out_err;
477
478 switch (cfg_mode) {
479 case GPIO_CFG_DRYRUN:
Magnus Damm18925e12011-12-14 01:00:55 +0900480 if (!*cntp ||
Paul Mundtb3c185a2012-06-20 17:29:04 +0900481 (read_config_reg(pfc, cr, field) != value))
Magnus Damm2967dab2008-10-08 20:41:43 +0900482 continue;
483 break;
484
485 case GPIO_CFG_REQ:
Paul Mundtb3c185a2012-06-20 17:29:04 +0900486 write_config_reg(pfc, cr, field, value);
Magnus Damm2967dab2008-10-08 20:41:43 +0900487 *cntp = *cntp + 1;
488 break;
489
490 case GPIO_CFG_FREE:
491 *cntp = *cntp - 1;
492 break;
493 }
494 }
495
496 return 0;
497 out_err:
498 return -1;
499}
Paul Mundtb3c185a2012-06-20 17:29:04 +0900500EXPORT_SYMBOL_GPL(sh_pfc_config_gpio);
Magnus Damm2967dab2008-10-08 20:41:43 +0900501
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100502int register_sh_pfc(struct sh_pfc_platform_data *pdata)
Magnus Damm2967dab2008-10-08 20:41:43 +0900503{
Paul Mundtb3c185a2012-06-20 17:29:04 +0900504 int (*initroutine)(struct sh_pfc *) = NULL;
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900505 int ret;
Magnus Damm2967dab2008-10-08 20:41:43 +0900506
Paul Mundt06d56312012-06-21 00:03:41 +0900507 /*
508 * Ensure that the type encoding fits
509 */
510 BUILD_BUG_ON(PINMUX_FLAG_TYPE > ((1 << PINMUX_FLAG_DBIT_SHIFT) - 1));
511
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100512 if (sh_pfc.pdata)
Paul Mundtb3c185a2012-06-20 17:29:04 +0900513 return -EBUSY;
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900514
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100515 sh_pfc.pdata = pdata;
Magnus Dammb0e10212011-12-09 12:14:27 +0900516
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100517 ret = pfc_ioremap(&sh_pfc);
518 if (unlikely(ret < 0)) {
519 sh_pfc.pdata = NULL;
520 return ret;
521 }
522
523 spin_lock_init(&sh_pfc.lock);
Magnus Damm69edbba2008-12-25 18:17:34 +0900524
Paul Mundtca5481c62012-07-10 12:08:14 +0900525 pinctrl_provide_dummies();
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100526 setup_data_regs(&sh_pfc);
Magnus Damm69edbba2008-12-25 18:17:34 +0900527
Paul Mundtca5481c62012-07-10 12:08:14 +0900528 /*
529 * Initialize pinctrl bindings first
530 */
531 initroutine = symbol_request(sh_pfc_register_pinctrl);
Paul Mundtb3c185a2012-06-20 17:29:04 +0900532 if (initroutine) {
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100533 ret = (*initroutine)(&sh_pfc);
Paul Mundtb3c185a2012-06-20 17:29:04 +0900534 symbol_put_addr(initroutine);
Paul Mundtca5481c62012-07-10 12:08:14 +0900535
536 if (unlikely(ret != 0))
537 goto err;
Paul Mundt159ac072012-07-17 15:18:37 +0900538 } else {
539 pr_err("failed to initialize pinctrl bindings\n");
540 goto err;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900541 }
Magnus Damm69edbba2008-12-25 18:17:34 +0900542
Paul Mundtca5481c62012-07-10 12:08:14 +0900543 /*
544 * Then the GPIO chip
545 */
546 initroutine = symbol_request(sh_pfc_register_gpiochip);
547 if (initroutine) {
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100548 ret = (*initroutine)(&sh_pfc);
Paul Mundtca5481c62012-07-10 12:08:14 +0900549 symbol_put_addr(initroutine);
550
551 /*
552 * If the GPIO chip fails to come up we still leave the
553 * PFC state as it is, given that there are already
554 * extant users of it that have succeeded by this point.
555 */
556 if (unlikely(ret != 0)) {
557 pr_notice("failed to init GPIO chip, ignoring...\n");
558 ret = 0;
559 }
560 }
561
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100562 pr_info("%s support registered\n", sh_pfc.pdata->name);
Paul Mundtca5481c62012-07-10 12:08:14 +0900563
Paul Mundtb3c185a2012-06-20 17:29:04 +0900564 return 0;
Paul Mundtca5481c62012-07-10 12:08:14 +0900565
566err:
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100567 pfc_iounmap(&sh_pfc);
568 sh_pfc.pdata = NULL;
Paul Mundtca5481c62012-07-10 12:08:14 +0900569
570 return ret;
Paul Mundtb72421d2010-10-04 03:54:56 +0900571}