blob: a68831ba0d9d606d98af4273a1a25d3528e2691c [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 */
Laurent Pinchartc6193ea2012-12-15 23:50:47 +010011
12#define DRV_NAME "sh-pfc"
Laurent Pinchartf9492fd2012-12-15 23:50:45 +010013#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Paul Mundtb72421d2010-10-04 03:54:56 +090014
Magnus Damm2967dab2008-10-08 20:41:43 +090015#include <linux/bitops.h>
Laurent Pinchart90efde22012-12-15 23:50:52 +010016#include <linux/err.h>
17#include <linux/errno.h>
18#include <linux/io.h>
Magnus Dammb0e10212011-12-09 12:14:27 +090019#include <linux/ioport.h>
Laurent Pinchart90efde22012-12-15 23:50:52 +010020#include <linux/kernel.h>
21#include <linux/module.h>
Paul Mundtca5481c62012-07-10 12:08:14 +090022#include <linux/pinctrl/machine.h>
Laurent Pinchartc6193ea2012-12-15 23:50:47 +010023#include <linux/platform_device.h>
Laurent Pinchart90efde22012-12-15 23:50:52 +010024#include <linux/sh_pfc.h>
25#include <linux/slab.h>
Magnus Dammb0e10212011-12-09 12:14:27 +090026
Laurent Pinchartf9165132012-12-15 23:50:44 +010027#include "core.h"
28
Laurent Pinchart973931a2012-12-15 23:50:55 +010029static int sh_pfc_ioremap(struct sh_pfc *pfc, struct platform_device *pdev)
Magnus Dammb0e10212011-12-09 12:14:27 +090030{
31 struct resource *res;
32 int k;
33
Laurent Pinchart56dc04a2012-12-15 23:51:18 +010034 if (pdev->num_resources == 0) {
Laurent Pinchart973931a2012-12-15 23:50:55 +010035 pfc->num_windows = 0;
36 return 0;
37 }
38
Laurent Pinchart56dc04a2012-12-15 23:51:18 +010039 pfc->window = devm_kzalloc(pfc->dev, pdev->num_resources *
Laurent Pinchart1724acf2012-12-15 23:50:48 +010040 sizeof(*pfc->window), GFP_NOWAIT);
Paul Mundtb3c185a2012-06-20 17:29:04 +090041 if (!pfc->window)
Laurent Pinchart1724acf2012-12-15 23:50:48 +010042 return -ENOMEM;
Magnus Dammb0e10212011-12-09 12:14:27 +090043
Laurent Pinchart56dc04a2012-12-15 23:51:18 +010044 pfc->num_windows = pdev->num_resources;
Laurent Pinchart973931a2012-12-15 23:50:55 +010045
Laurent Pinchart56dc04a2012-12-15 23:51:18 +010046 for (k = 0, res = pdev->resource; k < pdev->num_resources; k++, res++) {
Magnus Dammb0e10212011-12-09 12:14:27 +090047 WARN_ON(resource_type(res) != IORESOURCE_MEM);
Paul Mundtb3c185a2012-06-20 17:29:04 +090048 pfc->window[k].phys = res->start;
49 pfc->window[k].size = resource_size(res);
Laurent Pinchartc9fa88e2012-12-15 23:50:49 +010050 pfc->window[k].virt = devm_ioremap_nocache(pfc->dev, res->start,
51 resource_size(res));
52 if (!pfc->window[k].virt)
Laurent Pinchart1724acf2012-12-15 23:50:48 +010053 return -ENOMEM;
Magnus Dammb0e10212011-12-09 12:14:27 +090054 }
55
56 return 0;
Magnus Dammb0e10212011-12-09 12:14:27 +090057}
58
Laurent Pinchart4aeacd52012-12-15 23:50:53 +010059static void __iomem *sh_pfc_phys_to_virt(struct sh_pfc *pfc,
60 unsigned long address)
Magnus Dammb0e10212011-12-09 12:14:27 +090061{
Laurent Pinchart4aeacd52012-12-15 23:50:53 +010062 struct sh_pfc_window *window;
Magnus Dammb0e10212011-12-09 12:14:27 +090063 int k;
64
65 /* scan through physical windows and convert address */
Laurent Pinchart973931a2012-12-15 23:50:55 +010066 for (k = 0; k < pfc->num_windows; k++) {
Paul Mundtb3c185a2012-06-20 17:29:04 +090067 window = pfc->window + k;
Magnus Dammb0e10212011-12-09 12:14:27 +090068
69 if (address < window->phys)
70 continue;
71
72 if (address >= (window->phys + window->size))
73 continue;
74
75 return window->virt + (address - window->phys);
76 }
77
78 /* no windows defined, register must be 1:1 mapped virt:phys */
79 return (void __iomem *)address;
80}
Magnus Damm2967dab2008-10-08 20:41:43 +090081
Laurent Pinchart4aeacd52012-12-15 23:50:53 +010082static int sh_pfc_enum_in_range(pinmux_enum_t enum_id, struct pinmux_range *r)
Magnus Damm2967dab2008-10-08 20:41:43 +090083{
84 if (enum_id < r->begin)
85 return 0;
86
87 if (enum_id > r->end)
88 return 0;
89
90 return 1;
91}
92
Laurent Pinchart4aeacd52012-12-15 23:50:53 +010093static unsigned long sh_pfc_read_raw_reg(void __iomem *mapped_reg,
94 unsigned long reg_width)
Magnus Damm32920942008-12-25 18:17:26 +090095{
96 switch (reg_width) {
97 case 8:
Magnus Dammb0e10212011-12-09 12:14:27 +090098 return ioread8(mapped_reg);
Magnus Damm32920942008-12-25 18:17:26 +090099 case 16:
Magnus Dammb0e10212011-12-09 12:14:27 +0900100 return ioread16(mapped_reg);
Magnus Damm32920942008-12-25 18:17:26 +0900101 case 32:
Magnus Dammb0e10212011-12-09 12:14:27 +0900102 return ioread32(mapped_reg);
Magnus Damm32920942008-12-25 18:17:26 +0900103 }
104
105 BUG();
106 return 0;
107}
108
Laurent Pinchart4aeacd52012-12-15 23:50:53 +0100109static void sh_pfc_write_raw_reg(void __iomem *mapped_reg,
110 unsigned long reg_width, unsigned long data)
Magnus Damm32920942008-12-25 18:17:26 +0900111{
112 switch (reg_width) {
113 case 8:
Magnus Dammb0e10212011-12-09 12:14:27 +0900114 iowrite8(data, mapped_reg);
Magnus Damm32920942008-12-25 18:17:26 +0900115 return;
116 case 16:
Magnus Dammb0e10212011-12-09 12:14:27 +0900117 iowrite16(data, mapped_reg);
Magnus Damm32920942008-12-25 18:17:26 +0900118 return;
119 case 32:
Magnus Dammb0e10212011-12-09 12:14:27 +0900120 iowrite32(data, mapped_reg);
Magnus Damm32920942008-12-25 18:17:26 +0900121 return;
122 }
123
124 BUG();
125}
126
Paul Mundtb3c185a2012-06-20 17:29:04 +0900127int sh_pfc_read_bit(struct pinmux_data_reg *dr, unsigned long in_pos)
Magnus Damm92554d92011-12-14 01:00:37 +0900128{
129 unsigned long pos;
130
131 pos = dr->reg_width - (in_pos + 1);
132
133 pr_debug("read_bit: addr = %lx, pos = %ld, "
134 "r_width = %ld\n", dr->reg, pos, dr->reg_width);
135
Laurent Pinchart4aeacd52012-12-15 23:50:53 +0100136 return (sh_pfc_read_raw_reg(dr->mapped_reg, dr->reg_width) >> pos) & 1;
Magnus Damm92554d92011-12-14 01:00:37 +0900137}
138
Paul Mundtb3c185a2012-06-20 17:29:04 +0900139void sh_pfc_write_bit(struct pinmux_data_reg *dr, unsigned long in_pos,
140 unsigned long value)
Magnus Damm32920942008-12-25 18:17:26 +0900141{
142 unsigned long pos;
143
144 pos = dr->reg_width - (in_pos + 1);
145
Paul Mundtca6f2d72009-12-09 15:51:27 +0900146 pr_debug("write_bit addr = %lx, value = %d, pos = %ld, "
Paul Mundtfd2cb0c2009-11-30 12:15:04 +0900147 "r_width = %ld\n",
148 dr->reg, !!value, pos, dr->reg_width);
Magnus Damm32920942008-12-25 18:17:26 +0900149
150 if (value)
151 set_bit(pos, &dr->reg_shadow);
152 else
153 clear_bit(pos, &dr->reg_shadow);
154
Laurent Pinchart4aeacd52012-12-15 23:50:53 +0100155 sh_pfc_write_raw_reg(dr->mapped_reg, dr->reg_width, dr->reg_shadow);
Magnus Damm32920942008-12-25 18:17:26 +0900156}
157
Laurent Pinchart4aeacd52012-12-15 23:50:53 +0100158static void sh_pfc_config_reg_helper(struct sh_pfc *pfc,
159 struct pinmux_cfg_reg *crp,
160 unsigned long in_pos,
161 void __iomem **mapped_regp,
162 unsigned long *maskp,
163 unsigned long *posp)
Magnus Damm2967dab2008-10-08 20:41:43 +0900164{
Magnus Dammf78a26f2011-12-14 01:01:05 +0900165 int k;
166
Laurent Pinchart4aeacd52012-12-15 23:50:53 +0100167 *mapped_regp = sh_pfc_phys_to_virt(pfc, crp->reg);
Magnus Damm2967dab2008-10-08 20:41:43 +0900168
Magnus Dammf78a26f2011-12-14 01:01:05 +0900169 if (crp->field_width) {
170 *maskp = (1 << crp->field_width) - 1;
171 *posp = crp->reg_width - ((in_pos + 1) * crp->field_width);
172 } else {
173 *maskp = (1 << crp->var_field_width[in_pos]) - 1;
174 *posp = crp->reg_width;
175 for (k = 0; k <= in_pos; k++)
176 *posp -= crp->var_field_width[k];
177 }
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900178}
Magnus Damm2967dab2008-10-08 20:41:43 +0900179
Laurent Pinchart4aeacd52012-12-15 23:50:53 +0100180static int sh_pfc_read_config_reg(struct sh_pfc *pfc,
181 struct pinmux_cfg_reg *crp,
182 unsigned long field)
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900183{
Magnus Damm18925e12011-12-14 01:00:55 +0900184 void __iomem *mapped_reg;
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900185 unsigned long mask, pos;
186
Laurent Pinchart4aeacd52012-12-15 23:50:53 +0100187 sh_pfc_config_reg_helper(pfc, crp, field, &mapped_reg, &mask, &pos);
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900188
Magnus Damm18925e12011-12-14 01:00:55 +0900189 pr_debug("read_reg: addr = %lx, field = %ld, "
Paul Mundtfd2cb0c2009-11-30 12:15:04 +0900190 "r_width = %ld, f_width = %ld\n",
Magnus Damm18925e12011-12-14 01:00:55 +0900191 crp->reg, field, crp->reg_width, crp->field_width);
192
Laurent Pinchart4aeacd52012-12-15 23:50:53 +0100193 return (sh_pfc_read_raw_reg(mapped_reg, crp->reg_width) >> pos) & mask;
Magnus Damm18925e12011-12-14 01:00:55 +0900194}
195
Laurent Pinchart4aeacd52012-12-15 23:50:53 +0100196static void sh_pfc_write_config_reg(struct sh_pfc *pfc,
197 struct pinmux_cfg_reg *crp,
198 unsigned long field, unsigned long value)
Magnus Damm18925e12011-12-14 01:00:55 +0900199{
200 void __iomem *mapped_reg;
Magnus Damme499ada2011-12-14 01:01:14 +0900201 unsigned long mask, pos, data;
Magnus Damm18925e12011-12-14 01:00:55 +0900202
Laurent Pinchart4aeacd52012-12-15 23:50:53 +0100203 sh_pfc_config_reg_helper(pfc, crp, field, &mapped_reg, &mask, &pos);
Magnus Damm18925e12011-12-14 01:00:55 +0900204
205 pr_debug("write_reg addr = %lx, value = %ld, field = %ld, "
206 "r_width = %ld, f_width = %ld\n",
207 crp->reg, value, field, crp->reg_width, crp->field_width);
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900208
209 mask = ~(mask << pos);
210 value = value << pos;
Magnus Damm2967dab2008-10-08 20:41:43 +0900211
Laurent Pinchart4aeacd52012-12-15 23:50:53 +0100212 data = sh_pfc_read_raw_reg(mapped_reg, crp->reg_width);
Magnus Damme499ada2011-12-14 01:01:14 +0900213 data &= mask;
214 data |= value;
215
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100216 if (pfc->info->unlock_reg)
Laurent Pinchart4aeacd52012-12-15 23:50:53 +0100217 sh_pfc_write_raw_reg(
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100218 sh_pfc_phys_to_virt(pfc, pfc->info->unlock_reg), 32,
Laurent Pinchart4aeacd52012-12-15 23:50:53 +0100219 ~data);
Magnus Damme499ada2011-12-14 01:01:14 +0900220
Laurent Pinchart4aeacd52012-12-15 23:50:53 +0100221 sh_pfc_write_raw_reg(mapped_reg, crp->reg_width, data);
Magnus Damm2967dab2008-10-08 20:41:43 +0900222}
223
Laurent Pinchart4aeacd52012-12-15 23:50:53 +0100224static int sh_pfc_setup_data_reg(struct sh_pfc *pfc, unsigned gpio)
Magnus Damm2967dab2008-10-08 20:41:43 +0900225{
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100226 struct pinmux_gpio *gpiop = &pfc->info->gpios[gpio];
Magnus Damm2967dab2008-10-08 20:41:43 +0900227 struct pinmux_data_reg *data_reg;
228 int k, n;
229
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100230 if (!sh_pfc_enum_in_range(gpiop->enum_id, &pfc->info->data))
Magnus Damm2967dab2008-10-08 20:41:43 +0900231 return -1;
232
233 k = 0;
234 while (1) {
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100235 data_reg = pfc->info->data_regs + k;
Magnus Damm2967dab2008-10-08 20:41:43 +0900236
237 if (!data_reg->reg_width)
238 break;
239
Laurent Pinchart4aeacd52012-12-15 23:50:53 +0100240 data_reg->mapped_reg = sh_pfc_phys_to_virt(pfc, data_reg->reg);
Magnus Dammb0e10212011-12-09 12:14:27 +0900241
Magnus Damm2967dab2008-10-08 20:41:43 +0900242 for (n = 0; n < data_reg->reg_width; n++) {
Magnus Damm18801be2008-12-25 18:17:09 +0900243 if (data_reg->enum_ids[n] == gpiop->enum_id) {
244 gpiop->flags &= ~PINMUX_FLAG_DREG;
245 gpiop->flags |= (k << PINMUX_FLAG_DREG_SHIFT);
246 gpiop->flags &= ~PINMUX_FLAG_DBIT;
247 gpiop->flags |= (n << PINMUX_FLAG_DBIT_SHIFT);
Magnus Damm2967dab2008-10-08 20:41:43 +0900248 return 0;
Magnus Damm2967dab2008-10-08 20:41:43 +0900249 }
250 }
251 k++;
252 }
253
Magnus Damm18801be2008-12-25 18:17:09 +0900254 BUG();
255
Magnus Damm2967dab2008-10-08 20:41:43 +0900256 return -1;
257}
258
Laurent Pinchart4aeacd52012-12-15 23:50:53 +0100259static void sh_pfc_setup_data_regs(struct sh_pfc *pfc)
Magnus Damm32920942008-12-25 18:17:26 +0900260{
261 struct pinmux_data_reg *drp;
262 int k;
263
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100264 for (k = pfc->info->first_gpio; k <= pfc->info->last_gpio; k++)
Laurent Pinchart4aeacd52012-12-15 23:50:53 +0100265 sh_pfc_setup_data_reg(pfc, k);
Magnus Damm32920942008-12-25 18:17:26 +0900266
267 k = 0;
268 while (1) {
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100269 drp = pfc->info->data_regs + k;
Magnus Damm32920942008-12-25 18:17:26 +0900270
271 if (!drp->reg_width)
272 break;
273
Laurent Pinchart4aeacd52012-12-15 23:50:53 +0100274 drp->reg_shadow = sh_pfc_read_raw_reg(drp->mapped_reg,
275 drp->reg_width);
Magnus Damm32920942008-12-25 18:17:26 +0900276 k++;
277 }
278}
279
Paul Mundtb3c185a2012-06-20 17:29:04 +0900280int sh_pfc_get_data_reg(struct sh_pfc *pfc, unsigned gpio,
Magnus Damm18801be2008-12-25 18:17:09 +0900281 struct pinmux_data_reg **drp, int *bitp)
282{
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100283 struct pinmux_gpio *gpiop = &pfc->info->gpios[gpio];
Magnus Damm18801be2008-12-25 18:17:09 +0900284 int k, n;
285
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100286 if (!sh_pfc_enum_in_range(gpiop->enum_id, &pfc->info->data))
Magnus Damm18801be2008-12-25 18:17:09 +0900287 return -1;
288
289 k = (gpiop->flags & PINMUX_FLAG_DREG) >> PINMUX_FLAG_DREG_SHIFT;
290 n = (gpiop->flags & PINMUX_FLAG_DBIT) >> PINMUX_FLAG_DBIT_SHIFT;
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100291 *drp = pfc->info->data_regs + k;
Magnus Damm18801be2008-12-25 18:17:09 +0900292 *bitp = n;
293 return 0;
294}
295
Laurent Pinchart4aeacd52012-12-15 23:50:53 +0100296static int sh_pfc_get_config_reg(struct sh_pfc *pfc, pinmux_enum_t enum_id,
297 struct pinmux_cfg_reg **crp, int *fieldp,
298 int *valuep, unsigned long **cntp)
Magnus Damm2967dab2008-10-08 20:41:43 +0900299{
300 struct pinmux_cfg_reg *config_reg;
Magnus Dammf78a26f2011-12-14 01:01:05 +0900301 unsigned long r_width, f_width, curr_width, ncomb;
302 int k, m, n, pos, bit_pos;
Magnus Damm2967dab2008-10-08 20:41:43 +0900303
304 k = 0;
305 while (1) {
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100306 config_reg = pfc->info->cfg_regs + k;
Magnus Damm2967dab2008-10-08 20:41:43 +0900307
308 r_width = config_reg->reg_width;
309 f_width = config_reg->field_width;
310
311 if (!r_width)
312 break;
Magnus Dammf78a26f2011-12-14 01:01:05 +0900313
314 pos = 0;
315 m = 0;
316 for (bit_pos = 0; bit_pos < r_width; bit_pos += curr_width) {
317 if (f_width)
318 curr_width = f_width;
319 else
320 curr_width = config_reg->var_field_width[m];
321
322 ncomb = 1 << curr_width;
323 for (n = 0; n < ncomb; n++) {
324 if (config_reg->enum_ids[pos + n] == enum_id) {
325 *crp = config_reg;
326 *fieldp = m;
327 *valuep = n;
328 *cntp = &config_reg->cnt[m];
329 return 0;
330 }
Magnus Damm2967dab2008-10-08 20:41:43 +0900331 }
Magnus Dammf78a26f2011-12-14 01:01:05 +0900332 pos += ncomb;
333 m++;
Magnus Damm2967dab2008-10-08 20:41:43 +0900334 }
335 k++;
336 }
337
338 return -1;
339}
340
Paul Mundtb3c185a2012-06-20 17:29:04 +0900341int sh_pfc_gpio_to_enum(struct sh_pfc *pfc, unsigned gpio, int pos,
342 pinmux_enum_t *enum_idp)
Magnus Damm2967dab2008-10-08 20:41:43 +0900343{
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100344 pinmux_enum_t enum_id = pfc->info->gpios[gpio].enum_id;
345 pinmux_enum_t *data = pfc->info->gpio_data;
Magnus Damm2967dab2008-10-08 20:41:43 +0900346 int k;
347
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100348 if (!sh_pfc_enum_in_range(enum_id, &pfc->info->data)) {
349 if (!sh_pfc_enum_in_range(enum_id, &pfc->info->mark)) {
Magnus Damm2967dab2008-10-08 20:41:43 +0900350 pr_err("non data/mark enum_id for gpio %d\n", gpio);
351 return -1;
352 }
353 }
354
355 if (pos) {
356 *enum_idp = data[pos + 1];
357 return pos + 1;
358 }
359
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100360 for (k = 0; k < pfc->info->gpio_data_size; k++) {
Magnus Damm2967dab2008-10-08 20:41:43 +0900361 if (data[k] == enum_id) {
362 *enum_idp = data[k + 1];
363 return k + 1;
364 }
365 }
366
367 pr_err("cannot locate data/mark enum_id for gpio %d\n", gpio);
368 return -1;
369}
370
Paul Mundtb3c185a2012-06-20 17:29:04 +0900371int sh_pfc_config_gpio(struct sh_pfc *pfc, unsigned gpio, int pinmux_type,
372 int cfg_mode)
Magnus Damm2967dab2008-10-08 20:41:43 +0900373{
374 struct pinmux_cfg_reg *cr = NULL;
375 pinmux_enum_t enum_id;
376 struct pinmux_range *range;
Magnus Dammad4a07f2011-12-14 01:00:46 +0900377 int in_range, pos, field, value;
Magnus Damm2967dab2008-10-08 20:41:43 +0900378 unsigned long *cntp;
379
380 switch (pinmux_type) {
381
382 case PINMUX_TYPE_FUNCTION:
383 range = NULL;
384 break;
385
386 case PINMUX_TYPE_OUTPUT:
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100387 range = &pfc->info->output;
Magnus Damm2967dab2008-10-08 20:41:43 +0900388 break;
389
390 case PINMUX_TYPE_INPUT:
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100391 range = &pfc->info->input;
Magnus Damm2967dab2008-10-08 20:41:43 +0900392 break;
393
394 case PINMUX_TYPE_INPUT_PULLUP:
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100395 range = &pfc->info->input_pu;
Magnus Damm2967dab2008-10-08 20:41:43 +0900396 break;
397
398 case PINMUX_TYPE_INPUT_PULLDOWN:
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100399 range = &pfc->info->input_pd;
Magnus Damm2967dab2008-10-08 20:41:43 +0900400 break;
401
402 default:
403 goto out_err;
404 }
405
406 pos = 0;
407 enum_id = 0;
Magnus Dammad4a07f2011-12-14 01:00:46 +0900408 field = 0;
409 value = 0;
Magnus Damm2967dab2008-10-08 20:41:43 +0900410 while (1) {
Paul Mundtb3c185a2012-06-20 17:29:04 +0900411 pos = sh_pfc_gpio_to_enum(pfc, gpio, pos, &enum_id);
Magnus Damm2967dab2008-10-08 20:41:43 +0900412 if (pos <= 0)
413 goto out_err;
414
415 if (!enum_id)
416 break;
417
Magnus Damm50dd3142010-01-19 13:52:28 +0000418 /* first check if this is a function enum */
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100419 in_range = sh_pfc_enum_in_range(enum_id, &pfc->info->function);
Magnus Damm50dd3142010-01-19 13:52:28 +0000420 if (!in_range) {
421 /* not a function enum */
422 if (range) {
423 /*
424 * other range exists, so this pin is
425 * a regular GPIO pin that now is being
426 * bound to a specific direction.
427 *
428 * for this case we only allow function enums
429 * and the enums that match the other range.
430 */
Laurent Pinchart4aeacd52012-12-15 23:50:53 +0100431 in_range = sh_pfc_enum_in_range(enum_id, range);
Magnus Damm2967dab2008-10-08 20:41:43 +0900432
Magnus Damm50dd3142010-01-19 13:52:28 +0000433 /*
434 * special case pass through for fixed
435 * input-only or output-only pins without
436 * function enum register association.
437 */
438 if (in_range && enum_id == range->force)
439 continue;
440 } else {
441 /*
442 * no other range exists, so this pin
443 * must then be of the function type.
444 *
445 * allow function type pins to select
446 * any combination of function/in/out
447 * in their MARK lists.
448 */
449 in_range = 1;
450 }
Magnus Damm42eed422008-10-22 18:29:17 +0900451 }
452
Magnus Damm2967dab2008-10-08 20:41:43 +0900453 if (!in_range)
454 continue;
455
Laurent Pinchart4aeacd52012-12-15 23:50:53 +0100456 if (sh_pfc_get_config_reg(pfc, enum_id, &cr,
457 &field, &value, &cntp) != 0)
Magnus Damm2967dab2008-10-08 20:41:43 +0900458 goto out_err;
459
460 switch (cfg_mode) {
461 case GPIO_CFG_DRYRUN:
Magnus Damm18925e12011-12-14 01:00:55 +0900462 if (!*cntp ||
Laurent Pinchart4aeacd52012-12-15 23:50:53 +0100463 (sh_pfc_read_config_reg(pfc, cr, field) != value))
Magnus Damm2967dab2008-10-08 20:41:43 +0900464 continue;
465 break;
466
467 case GPIO_CFG_REQ:
Laurent Pinchart4aeacd52012-12-15 23:50:53 +0100468 sh_pfc_write_config_reg(pfc, cr, field, value);
Magnus Damm2967dab2008-10-08 20:41:43 +0900469 *cntp = *cntp + 1;
470 break;
471
472 case GPIO_CFG_FREE:
473 *cntp = *cntp - 1;
474 break;
475 }
476 }
477
478 return 0;
479 out_err:
480 return -1;
481}
482
Laurent Pinchartc6193ea2012-12-15 23:50:47 +0100483static int sh_pfc_probe(struct platform_device *pdev)
Magnus Damm2967dab2008-10-08 20:41:43 +0900484{
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100485 struct sh_pfc_soc_info *info;
Laurent Pinchartc6193ea2012-12-15 23:50:47 +0100486 struct sh_pfc *pfc;
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900487 int ret;
Magnus Damm2967dab2008-10-08 20:41:43 +0900488
Paul Mundt06d56312012-06-21 00:03:41 +0900489 /*
490 * Ensure that the type encoding fits
491 */
492 BUILD_BUG_ON(PINMUX_FLAG_TYPE > ((1 << PINMUX_FLAG_DBIT_SHIFT) - 1));
493
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100494 info = pdev->id_entry->driver_data
495 ? (void *)pdev->id_entry->driver_data : pdev->dev.platform_data;
496 if (info == NULL)
Laurent Pinchartc6193ea2012-12-15 23:50:47 +0100497 return -ENODEV;
Magnus Damm0fc64cc2008-12-25 18:17:18 +0900498
Laurent Pinchartc6193ea2012-12-15 23:50:47 +0100499 pfc = devm_kzalloc(&pdev->dev, sizeof(pfc), GFP_KERNEL);
500 if (pfc == NULL)
501 return -ENOMEM;
Magnus Dammb0e10212011-12-09 12:14:27 +0900502
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100503 pfc->info = info;
Laurent Pinchartc6193ea2012-12-15 23:50:47 +0100504 pfc->dev = &pdev->dev;
505
Laurent Pinchart973931a2012-12-15 23:50:55 +0100506 ret = sh_pfc_ioremap(pfc, pdev);
Laurent Pinchartc6193ea2012-12-15 23:50:47 +0100507 if (unlikely(ret < 0))
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100508 return ret;
Laurent Pinchartd4e62d02012-12-15 23:50:43 +0100509
Laurent Pinchartc6193ea2012-12-15 23:50:47 +0100510 spin_lock_init(&pfc->lock);
Magnus Damm69edbba2008-12-25 18:17:34 +0900511
Paul Mundtca5481c62012-07-10 12:08:14 +0900512 pinctrl_provide_dummies();
Laurent Pinchart4aeacd52012-12-15 23:50:53 +0100513 sh_pfc_setup_data_regs(pfc);
Magnus Damm69edbba2008-12-25 18:17:34 +0900514
Paul Mundtca5481c62012-07-10 12:08:14 +0900515 /*
516 * Initialize pinctrl bindings first
517 */
Laurent Pinchartc6193ea2012-12-15 23:50:47 +0100518 ret = sh_pfc_register_pinctrl(pfc);
Laurent Pinchartf9492fd2012-12-15 23:50:45 +0100519 if (unlikely(ret != 0))
Laurent Pinchartc9fa88e2012-12-15 23:50:49 +0100520 return ret;
Magnus Damm69edbba2008-12-25 18:17:34 +0900521
Laurent Pinchart6f6a4a62012-12-15 23:50:46 +0100522#ifdef CONFIG_GPIO_SH_PFC
Paul Mundtca5481c62012-07-10 12:08:14 +0900523 /*
524 * Then the GPIO chip
525 */
Laurent Pinchartc6193ea2012-12-15 23:50:47 +0100526 ret = sh_pfc_register_gpiochip(pfc);
Laurent Pinchart6f6a4a62012-12-15 23:50:46 +0100527 if (unlikely(ret != 0)) {
Paul Mundtca5481c62012-07-10 12:08:14 +0900528 /*
529 * If the GPIO chip fails to come up we still leave the
530 * PFC state as it is, given that there are already
531 * extant users of it that have succeeded by this point.
532 */
Laurent Pinchart6f6a4a62012-12-15 23:50:46 +0100533 pr_notice("failed to init GPIO chip, ignoring...\n");
Paul Mundtca5481c62012-07-10 12:08:14 +0900534 }
Laurent Pinchart6f6a4a62012-12-15 23:50:46 +0100535#endif
Paul Mundtca5481c62012-07-10 12:08:14 +0900536
Laurent Pinchartc6193ea2012-12-15 23:50:47 +0100537 platform_set_drvdata(pdev, pfc);
538
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100539 pr_info("%s support registered\n", info->name);
Paul Mundtca5481c62012-07-10 12:08:14 +0900540
Paul Mundtb3c185a2012-06-20 17:29:04 +0900541 return 0;
Paul Mundtb72421d2010-10-04 03:54:56 +0900542}
Laurent Pinchart6f6a4a62012-12-15 23:50:46 +0100543
Laurent Pinchartc6193ea2012-12-15 23:50:47 +0100544static int sh_pfc_remove(struct platform_device *pdev)
545{
546 struct sh_pfc *pfc = platform_get_drvdata(pdev);
547
548#ifdef CONFIG_GPIO_SH_PFC
549 sh_pfc_unregister_gpiochip(pfc);
550#endif
551 sh_pfc_unregister_pinctrl(pfc);
552
Laurent Pinchartc6193ea2012-12-15 23:50:47 +0100553 platform_set_drvdata(pdev, NULL);
554
555 return 0;
556}
557
558static const struct platform_device_id sh_pfc_id_table[] = {
Laurent Pinchartd5b15212012-12-15 23:51:21 +0100559#ifdef CONFIG_PINCTRL_PFC_R8A7740
560 { "pfc-r8a7740", (kernel_ulong_t)&r8a7740_pinmux_info },
561#endif
Laurent Pinchart881023d2012-12-15 23:51:22 +0100562#ifdef CONFIG_PINCTRL_PFC_R8A7779
563 { "pfc-r8a7779", (kernel_ulong_t)&r8a7779_pinmux_info },
564#endif
Laurent Pinchartccda5522012-12-15 23:51:29 +0100565#ifdef CONFIG_PINCTRL_PFC_SH7203
566 { "pfc-sh7203", (kernel_ulong_t)&sh7203_pinmux_info },
567#endif
Laurent Pincharta8d42fc2012-12-15 23:51:30 +0100568#ifdef CONFIG_PINCTRL_PFC_SH7264
569 { "pfc-sh7264", (kernel_ulong_t)&sh7264_pinmux_info },
570#endif
Laurent Pinchartf5e811f2012-12-15 23:51:31 +0100571#ifdef CONFIG_PINCTRL_PFC_SH7269
572 { "pfc-sh7269", (kernel_ulong_t)&sh7269_pinmux_info },
573#endif
Laurent Pinchart6e5469a2012-12-15 23:51:23 +0100574#ifdef CONFIG_PINCTRL_PFC_SH7372
575 { "pfc-sh7372", (kernel_ulong_t)&sh7372_pinmux_info },
576#endif
Laurent Pinchart5d5166d2012-12-15 23:51:24 +0100577#ifdef CONFIG_PINCTRL_PFC_SH73A0
578 { "pfc-sh73a0", (kernel_ulong_t)&sh73a0_pinmux_info },
579#endif
Laurent Pinchartc6193ea2012-12-15 23:50:47 +0100580 { "sh-pfc", 0 },
581 { },
582};
583MODULE_DEVICE_TABLE(platform, sh_pfc_id_table);
584
585static struct platform_driver sh_pfc_driver = {
586 .probe = sh_pfc_probe,
587 .remove = sh_pfc_remove,
588 .id_table = sh_pfc_id_table,
589 .driver = {
590 .name = DRV_NAME,
591 .owner = THIS_MODULE,
592 },
593};
594
Laurent Pinchart40ee6fc2012-12-15 23:50:54 +0100595static int __init sh_pfc_init(void)
596{
597 return platform_driver_register(&sh_pfc_driver);
598}
599postcore_initcall(sh_pfc_init);
600
Laurent Pinchartc6193ea2012-12-15 23:50:47 +0100601static void __exit sh_pfc_exit(void)
602{
603 platform_driver_unregister(&sh_pfc_driver);
604}
605module_exit(sh_pfc_exit);
606
Laurent Pinchart6f6a4a62012-12-15 23:50:46 +0100607MODULE_AUTHOR("Magnus Damm, Paul Mundt, Laurent Pinchart");
608MODULE_DESCRIPTION("Pin Control and GPIO driver for SuperH pin function controller");
609MODULE_LICENSE("GPL v2");