blob: ef5cf5d8298fd486a71df208336132c0610e3622 [file] [log] [blame]
Paul Mundtca5481c62012-07-10 12:08:14 +09001/*
2 * SuperH Pin Function Controller pinmux support.
3 *
4 * Copyright (C) 2012 Paul Mundt
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 Mundt54407112012-07-20 16:18:21 +090010
Laurent Pinchartc6193ea2012-12-15 23:50:47 +010011#define DRV_NAME "sh-pfc"
Laurent Pinchartf9492fd2012-12-15 23:50:45 +010012#define pr_fmt(fmt) KBUILD_MODNAME " pinctrl: " fmt
Paul Mundtca5481c62012-07-10 12:08:14 +090013
Laurent Pinchart1724acf2012-12-15 23:50:48 +010014#include <linux/device.h>
Laurent Pinchart90efde22012-12-15 23:50:52 +010015#include <linux/err.h>
Paul Mundtca5481c62012-07-10 12:08:14 +090016#include <linux/init.h>
17#include <linux/module.h>
Laurent Pinchart90efde22012-12-15 23:50:52 +010018#include <linux/pinctrl/consumer.h>
19#include <linux/pinctrl/pinconf.h>
20#include <linux/pinctrl/pinconf-generic.h>
21#include <linux/pinctrl/pinctrl.h>
22#include <linux/pinctrl/pinmux.h>
Paul Mundtca5481c62012-07-10 12:08:14 +090023#include <linux/slab.h>
Paul Mundtd93a8912012-07-11 17:17:10 +090024#include <linux/spinlock.h>
Paul Mundtca5481c62012-07-10 12:08:14 +090025
Laurent Pinchartf9165132012-12-15 23:50:44 +010026#include "core.h"
27
Laurent Pinchart1a0039d2013-03-08 17:43:54 +010028struct sh_pfc_pin_config {
29 u32 type;
30};
31
Paul Mundtca5481c62012-07-10 12:08:14 +090032struct sh_pfc_pinctrl {
33 struct pinctrl_dev *pctl;
Laurent Pinchartdcc427e2013-02-16 16:38:30 +010034 struct pinctrl_desc pctl_desc;
Laurent Pinchartdcc427e2013-02-16 16:38:30 +010035
Paul Mundtca5481c62012-07-10 12:08:14 +090036 struct sh_pfc *pfc;
37
Laurent Pinchart3d8d9f12013-01-03 14:33:13 +010038 struct pinctrl_pin_desc *pins;
Laurent Pinchart1a0039d2013-03-08 17:43:54 +010039 struct sh_pfc_pin_config *configs;
Paul Mundtca5481c62012-07-10 12:08:14 +090040};
41
Paul Mundte3f805e2012-07-17 15:48:18 +090042static int sh_pfc_get_groups_count(struct pinctrl_dev *pctldev)
Paul Mundtca5481c62012-07-10 12:08:14 +090043{
Paul Mundte3f805e2012-07-17 15:48:18 +090044 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
45
Laurent Pinchart3d8d9f12013-01-03 14:33:13 +010046 return pmx->pfc->info->nr_groups;
Paul Mundtca5481c62012-07-10 12:08:14 +090047}
48
Paul Mundte3f805e2012-07-17 15:48:18 +090049static const char *sh_pfc_get_group_name(struct pinctrl_dev *pctldev,
Paul Mundtca5481c62012-07-10 12:08:14 +090050 unsigned selector)
51{
Paul Mundte3f805e2012-07-17 15:48:18 +090052 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
53
Laurent Pinchart3d8d9f12013-01-03 14:33:13 +010054 return pmx->pfc->info->groups[selector].name;
Paul Mundtca5481c62012-07-10 12:08:14 +090055}
56
Laurent Pinchart3d8d9f12013-01-03 14:33:13 +010057static int sh_pfc_get_group_pins(struct pinctrl_dev *pctldev, unsigned selector,
Paul Mundtca5481c62012-07-10 12:08:14 +090058 const unsigned **pins, unsigned *num_pins)
59{
Paul Mundte3f805e2012-07-17 15:48:18 +090060 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
61
Laurent Pinchart3d8d9f12013-01-03 14:33:13 +010062 *pins = pmx->pfc->info->groups[selector].pins;
63 *num_pins = pmx->pfc->info->groups[selector].nr_pins;
Paul Mundte3f805e2012-07-17 15:48:18 +090064
65 return 0;
Paul Mundtca5481c62012-07-10 12:08:14 +090066}
67
Paul Mundtfdd85ec2012-07-20 16:39:09 +090068static void sh_pfc_pin_dbg_show(struct pinctrl_dev *pctldev, struct seq_file *s,
69 unsigned offset)
70{
71 seq_printf(s, "%s", DRV_NAME);
72}
73
Laurent Pinchartfe330ce2013-02-15 16:04:47 +010074static const struct pinctrl_ops sh_pfc_pinctrl_ops = {
Paul Mundte3f805e2012-07-17 15:48:18 +090075 .get_groups_count = sh_pfc_get_groups_count,
76 .get_group_name = sh_pfc_get_group_name,
Paul Mundtca5481c62012-07-10 12:08:14 +090077 .get_group_pins = sh_pfc_get_group_pins,
Paul Mundtfdd85ec2012-07-20 16:39:09 +090078 .pin_dbg_show = sh_pfc_pin_dbg_show,
Paul Mundtca5481c62012-07-10 12:08:14 +090079};
80
Paul Mundtd93a8912012-07-11 17:17:10 +090081static int sh_pfc_get_functions_count(struct pinctrl_dev *pctldev)
82{
83 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
Paul Mundtca5481c62012-07-10 12:08:14 +090084
Laurent Pinchart3d8d9f12013-01-03 14:33:13 +010085 return pmx->pfc->info->nr_functions;
Paul Mundtd93a8912012-07-11 17:17:10 +090086}
87
88static const char *sh_pfc_get_function_name(struct pinctrl_dev *pctldev,
89 unsigned selector)
90{
91 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
92
Laurent Pinchart3d8d9f12013-01-03 14:33:13 +010093 return pmx->pfc->info->functions[selector].name;
Paul Mundtd93a8912012-07-11 17:17:10 +090094}
95
Laurent Pinchart3d8d9f12013-01-03 14:33:13 +010096static int sh_pfc_get_function_groups(struct pinctrl_dev *pctldev,
97 unsigned selector,
Paul Mundtca5481c62012-07-10 12:08:14 +090098 const char * const **groups,
99 unsigned * const num_groups)
100{
Paul Mundtd93a8912012-07-11 17:17:10 +0900101 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
102
Laurent Pinchart3d8d9f12013-01-03 14:33:13 +0100103 *groups = pmx->pfc->info->functions[selector].groups;
104 *num_groups = pmx->pfc->info->functions[selector].nr_groups;
Paul Mundtd93a8912012-07-11 17:17:10 +0900105
Paul Mundtca5481c62012-07-10 12:08:14 +0900106 return 0;
107}
108
Laurent Pinchart3d8d9f12013-01-03 14:33:13 +0100109static int sh_pfc_func_enable(struct pinctrl_dev *pctldev, unsigned selector,
Paul Mundtca5481c62012-07-10 12:08:14 +0900110 unsigned group)
111{
Laurent Pinchart3d8d9f12013-01-03 14:33:13 +0100112 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
113 struct sh_pfc *pfc = pmx->pfc;
114 const struct sh_pfc_pin_group *grp = &pfc->info->groups[group];
115 unsigned long flags;
116 unsigned int i;
117 int ret = -EINVAL;
118
119 spin_lock_irqsave(&pfc->lock, flags);
120
121 for (i = 0; i < grp->nr_pins; ++i) {
122 if (sh_pfc_config_mux(pfc, grp->mux[i], PINMUX_TYPE_FUNCTION,
123 GPIO_CFG_DRYRUN))
124 goto done;
125
126 if (sh_pfc_config_mux(pfc, grp->mux[i], PINMUX_TYPE_FUNCTION,
127 GPIO_CFG_REQ))
128 goto done;
129 }
130
131 ret = 0;
132
133done:
134 spin_unlock_irqrestore(&pfc->lock, flags);
135 return ret;
Paul Mundtca5481c62012-07-10 12:08:14 +0900136}
137
Laurent Pinchart3d8d9f12013-01-03 14:33:13 +0100138static void sh_pfc_func_disable(struct pinctrl_dev *pctldev, unsigned selector,
Paul Mundtca5481c62012-07-10 12:08:14 +0900139 unsigned group)
140{
Laurent Pinchart3d8d9f12013-01-03 14:33:13 +0100141 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
142 struct sh_pfc *pfc = pmx->pfc;
143 const struct sh_pfc_pin_group *grp = &pfc->info->groups[group];
144 unsigned long flags;
145 unsigned int i;
146
147 spin_lock_irqsave(&pfc->lock, flags);
148
149 for (i = 0; i < grp->nr_pins; ++i)
150 sh_pfc_config_mux(pfc, grp->mux[i], PINMUX_TYPE_FUNCTION,
151 GPIO_CFG_FREE);
152
153 spin_unlock_irqrestore(&pfc->lock, flags);
Paul Mundtca5481c62012-07-10 12:08:14 +0900154}
155
Laurent Pinchart1a0039d2013-03-08 17:43:54 +0100156static int sh_pfc_reconfig_pin(struct sh_pfc_pinctrl *pmx, unsigned offset,
Paul Mundtfdd85ec2012-07-20 16:39:09 +0900157 int new_type)
158{
Laurent Pinchart1a0039d2013-03-08 17:43:54 +0100159 struct sh_pfc *pfc = pmx->pfc;
160 int idx = sh_pfc_get_pin_index(pfc, offset);
161 struct sh_pfc_pin_config *cfg = &pmx->configs[idx];
162 struct sh_pfc_pin *pin = &pfc->info->pins[idx];
Laurent Pinchart934cb022013-02-14 22:35:09 +0100163 unsigned int mark = pin->enum_id;
Paul Mundtfdd85ec2012-07-20 16:39:09 +0900164 unsigned long flags;
Paul Mundtfdd85ec2012-07-20 16:39:09 +0900165 int ret = -EINVAL;
166
167 spin_lock_irqsave(&pfc->lock, flags);
168
Paul Mundtfdd85ec2012-07-20 16:39:09 +0900169 /*
170 * See if the present config needs to first be de-configured.
171 */
Laurent Pinchart1a0039d2013-03-08 17:43:54 +0100172 switch (cfg->type) {
Paul Mundtfdd85ec2012-07-20 16:39:09 +0900173 case PINMUX_TYPE_GPIO:
174 break;
175 case PINMUX_TYPE_OUTPUT:
176 case PINMUX_TYPE_INPUT:
177 case PINMUX_TYPE_INPUT_PULLUP:
178 case PINMUX_TYPE_INPUT_PULLDOWN:
Laurent Pinchart1a0039d2013-03-08 17:43:54 +0100179 sh_pfc_config_mux(pfc, mark, cfg->type, GPIO_CFG_FREE);
Paul Mundtfdd85ec2012-07-20 16:39:09 +0900180 break;
181 default:
182 goto err;
183 }
184
185 /*
186 * Dry run
187 */
Laurent Pincharta68fdca92013-02-14 17:36:56 +0100188 if (sh_pfc_config_mux(pfc, mark, new_type, GPIO_CFG_DRYRUN) != 0)
Paul Mundtfdd85ec2012-07-20 16:39:09 +0900189 goto err;
190
191 /*
192 * Request
193 */
Laurent Pincharta68fdca92013-02-14 17:36:56 +0100194 if (sh_pfc_config_mux(pfc, mark, new_type, GPIO_CFG_REQ) != 0)
Paul Mundtfdd85ec2012-07-20 16:39:09 +0900195 goto err;
196
Laurent Pinchart1a0039d2013-03-08 17:43:54 +0100197 cfg->type = new_type;
Paul Mundtfdd85ec2012-07-20 16:39:09 +0900198
199 ret = 0;
200
201err:
202 spin_unlock_irqrestore(&pfc->lock, flags);
203
204 return ret;
205}
206
Paul Mundtca5481c62012-07-10 12:08:14 +0900207static int sh_pfc_gpio_request_enable(struct pinctrl_dev *pctldev,
208 struct pinctrl_gpio_range *range,
209 unsigned offset)
210{
211 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
212 struct sh_pfc *pfc = pmx->pfc;
Laurent Pinchart1a0039d2013-03-08 17:43:54 +0100213 int idx = sh_pfc_get_pin_index(pfc, offset);
214 struct sh_pfc_pin_config *cfg = &pmx->configs[idx];
Paul Mundtca5481c62012-07-10 12:08:14 +0900215 unsigned long flags;
Laurent Pinchart1a0039d2013-03-08 17:43:54 +0100216 int ret;
Paul Mundtca5481c62012-07-10 12:08:14 +0900217
218 spin_lock_irqsave(&pfc->lock, flags);
219
Laurent Pinchart1a0039d2013-03-08 17:43:54 +0100220 switch (cfg->type) {
Paul Mundtd93a8912012-07-11 17:17:10 +0900221 case PINMUX_TYPE_GPIO:
Paul Mundt16d74eb2012-09-25 11:51:05 +0900222 case PINMUX_TYPE_INPUT:
223 case PINMUX_TYPE_OUTPUT:
Paul Mundtd93a8912012-07-11 17:17:10 +0900224 break;
Laurent Pinchart2119f7c2012-11-29 13:03:53 +0100225 case PINMUX_TYPE_FUNCTION:
Paul Mundtd93a8912012-07-11 17:17:10 +0900226 default:
Laurent Pinchart1a0039d2013-03-08 17:43:54 +0100227 pr_err("Unsupported mux type (%d), bailing...\n", cfg->type);
Laurent Pinchart077664a2012-09-14 20:25:48 +0200228 ret = -ENOTSUPP;
229 goto err;
Paul Mundtd93a8912012-07-11 17:17:10 +0900230 }
Paul Mundtca5481c62012-07-10 12:08:14 +0900231
232 ret = 0;
233
234err:
235 spin_unlock_irqrestore(&pfc->lock, flags);
236
237 return ret;
238}
239
240static void sh_pfc_gpio_disable_free(struct pinctrl_dev *pctldev,
241 struct pinctrl_gpio_range *range,
242 unsigned offset)
243{
244 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
245 struct sh_pfc *pfc = pmx->pfc;
Laurent Pinchart1a0039d2013-03-08 17:43:54 +0100246 int idx = sh_pfc_get_pin_index(pfc, offset);
247 struct sh_pfc_pin_config *cfg = &pmx->configs[idx];
248 struct sh_pfc_pin *pin = &pfc->info->pins[idx];
Paul Mundtca5481c62012-07-10 12:08:14 +0900249 unsigned long flags;
Paul Mundtca5481c62012-07-10 12:08:14 +0900250
251 spin_lock_irqsave(&pfc->lock, flags);
252
Laurent Pinchart1a0039d2013-03-08 17:43:54 +0100253 sh_pfc_config_mux(pfc, pin->enum_id, cfg->type, GPIO_CFG_FREE);
Paul Mundtca5481c62012-07-10 12:08:14 +0900254
Paul Mundtca5481c62012-07-10 12:08:14 +0900255 spin_unlock_irqrestore(&pfc->lock, flags);
256}
257
258static int sh_pfc_gpio_set_direction(struct pinctrl_dev *pctldev,
259 struct pinctrl_gpio_range *range,
260 unsigned offset, bool input)
261{
262 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
Paul Mundtfdd85ec2012-07-20 16:39:09 +0900263 int type = input ? PINMUX_TYPE_INPUT : PINMUX_TYPE_OUTPUT;
Paul Mundtca5481c62012-07-10 12:08:14 +0900264
Laurent Pinchart1a0039d2013-03-08 17:43:54 +0100265 return sh_pfc_reconfig_pin(pmx, offset, type);
Paul Mundtca5481c62012-07-10 12:08:14 +0900266}
267
Laurent Pinchartfe330ce2013-02-15 16:04:47 +0100268static const struct pinmux_ops sh_pfc_pinmux_ops = {
Paul Mundtd93a8912012-07-11 17:17:10 +0900269 .get_functions_count = sh_pfc_get_functions_count,
270 .get_function_name = sh_pfc_get_function_name,
Paul Mundtca5481c62012-07-10 12:08:14 +0900271 .get_function_groups = sh_pfc_get_function_groups,
Laurent Pinchart3d8d9f12013-01-03 14:33:13 +0100272 .enable = sh_pfc_func_enable,
273 .disable = sh_pfc_func_disable,
Paul Mundtca5481c62012-07-10 12:08:14 +0900274 .gpio_request_enable = sh_pfc_gpio_request_enable,
275 .gpio_disable_free = sh_pfc_gpio_disable_free,
276 .gpio_set_direction = sh_pfc_gpio_set_direction,
277};
278
Laurent Pinchart934cb022013-02-14 22:35:09 +0100279static int sh_pfc_pinconf_get(struct pinctrl_dev *pctldev, unsigned _pin,
Paul Mundtca5481c62012-07-10 12:08:14 +0900280 unsigned long *config)
281{
Paul Mundtfdd85ec2012-07-20 16:39:09 +0900282 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
283 struct sh_pfc *pfc = pmx->pfc;
Laurent Pinchart1a0039d2013-03-08 17:43:54 +0100284 int idx = sh_pfc_get_pin_index(pfc, _pin);
285 struct sh_pfc_pin_config *cfg = &pmx->configs[idx];
Paul Mundtd93a8912012-07-11 17:17:10 +0900286
Laurent Pinchart1a0039d2013-03-08 17:43:54 +0100287 *config = cfg->type;
Paul Mundtd93a8912012-07-11 17:17:10 +0900288
Paul Mundtfdd85ec2012-07-20 16:39:09 +0900289 return 0;
Paul Mundtca5481c62012-07-10 12:08:14 +0900290}
291
292static int sh_pfc_pinconf_set(struct pinctrl_dev *pctldev, unsigned pin,
293 unsigned long config)
294{
Paul Mundtfdd85ec2012-07-20 16:39:09 +0900295 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
Paul Mundtfdd85ec2012-07-20 16:39:09 +0900296
297 /* Validate the new type */
298 if (config >= PINMUX_FLAG_TYPE)
299 return -EINVAL;
300
Laurent Pinchart1a0039d2013-03-08 17:43:54 +0100301 return sh_pfc_reconfig_pin(pmx, pin, config);
Paul Mundtfdd85ec2012-07-20 16:39:09 +0900302}
303
304static void sh_pfc_pinconf_dbg_show(struct pinctrl_dev *pctldev,
305 struct seq_file *s, unsigned pin)
306{
307 const char *pinmux_type_str[] = {
308 [PINMUX_TYPE_NONE] = "none",
309 [PINMUX_TYPE_FUNCTION] = "function",
310 [PINMUX_TYPE_GPIO] = "gpio",
311 [PINMUX_TYPE_OUTPUT] = "output",
312 [PINMUX_TYPE_INPUT] = "input",
313 [PINMUX_TYPE_INPUT_PULLUP] = "input bias pull up",
314 [PINMUX_TYPE_INPUT_PULLDOWN] = "input bias pull down",
315 };
316 unsigned long config;
317 int rc;
318
319 rc = sh_pfc_pinconf_get(pctldev, pin, &config);
320 if (unlikely(rc != 0))
321 return;
322
323 seq_printf(s, " %s", pinmux_type_str[config]);
Paul Mundtca5481c62012-07-10 12:08:14 +0900324}
325
Laurent Pinchartfe330ce2013-02-15 16:04:47 +0100326static const struct pinconf_ops sh_pfc_pinconf_ops = {
Paul Mundtca5481c62012-07-10 12:08:14 +0900327 .pin_config_get = sh_pfc_pinconf_get,
328 .pin_config_set = sh_pfc_pinconf_set,
Paul Mundtfdd85ec2012-07-20 16:39:09 +0900329 .pin_config_dbg_show = sh_pfc_pinconf_dbg_show,
Paul Mundtca5481c62012-07-10 12:08:14 +0900330};
331
Laurent Pinchart63d57382013-02-15 01:33:38 +0100332/* PFC ranges -> pinctrl pin descs */
333static int sh_pfc_map_pins(struct sh_pfc *pfc, struct sh_pfc_pinctrl *pmx)
Paul Mundtca5481c62012-07-10 12:08:14 +0900334{
Laurent Pinchart63d57382013-02-15 01:33:38 +0100335 const struct pinmux_range *ranges;
336 struct pinmux_range def_range;
337 unsigned int nr_ranges;
338 unsigned int nr_pins;
339 unsigned int i;
Paul Mundtca5481c62012-07-10 12:08:14 +0900340
Laurent Pinchart63d57382013-02-15 01:33:38 +0100341 if (pfc->info->ranges == NULL) {
342 def_range.begin = 0;
343 def_range.end = pfc->info->nr_pins - 1;
344 ranges = &def_range;
345 nr_ranges = 1;
346 } else {
347 ranges = pfc->info->ranges;
348 nr_ranges = pfc->info->nr_ranges;
349 }
Paul Mundtca5481c62012-07-10 12:08:14 +0900350
Laurent Pinchart3d8d9f12013-01-03 14:33:13 +0100351 pmx->pins = devm_kzalloc(pfc->dev,
352 sizeof(*pmx->pins) * pfc->info->nr_pins,
Laurent Pinchart1724acf2012-12-15 23:50:48 +0100353 GFP_KERNEL);
Laurent Pinchart3d8d9f12013-01-03 14:33:13 +0100354 if (unlikely(!pmx->pins))
Paul Mundtca5481c62012-07-10 12:08:14 +0900355 return -ENOMEM;
Laurent Pinchart63d57382013-02-15 01:33:38 +0100356
Laurent Pinchart1a0039d2013-03-08 17:43:54 +0100357 pmx->configs = devm_kzalloc(pfc->dev,
358 sizeof(*pmx->configs) * pfc->info->nr_pins,
359 GFP_KERNEL);
360 if (unlikely(!pmx->configs))
361 return -ENOMEM;
362
Laurent Pinchart63d57382013-02-15 01:33:38 +0100363 for (i = 0, nr_pins = 0; i < nr_ranges; ++i) {
364 const struct pinmux_range *range = &ranges[i];
365 unsigned int number;
366
367 for (number = range->begin; number <= range->end;
368 number++, nr_pins++) {
Laurent Pinchart1a0039d2013-03-08 17:43:54 +0100369 struct sh_pfc_pin_config *cfg = &pmx->configs[nr_pins];
Laurent Pinchart3d8d9f12013-01-03 14:33:13 +0100370 struct pinctrl_pin_desc *pin = &pmx->pins[nr_pins];
Laurent Pinchart63d57382013-02-15 01:33:38 +0100371 struct sh_pfc_pin *info = &pfc->info->pins[nr_pins];
372
373 pin->number = number;
374 pin->name = info->name;
Laurent Pinchart1a0039d2013-03-08 17:43:54 +0100375 cfg->type = PINMUX_TYPE_GPIO;
Laurent Pinchart63d57382013-02-15 01:33:38 +0100376 }
Paul Mundtca5481c62012-07-10 12:08:14 +0900377 }
378
Laurent Pinchart63d57382013-02-15 01:33:38 +0100379 pfc->nr_pins = ranges[nr_ranges-1].end + 1;
Paul Mundtca5481c62012-07-10 12:08:14 +0900380
Laurent Pinchart63d57382013-02-15 01:33:38 +0100381 return nr_ranges;
Paul Mundtca5481c62012-07-10 12:08:14 +0900382}
383
Laurent Pinchartc6193ea2012-12-15 23:50:47 +0100384int sh_pfc_register_pinctrl(struct sh_pfc *pfc)
Paul Mundtca5481c62012-07-10 12:08:14 +0900385{
Laurent Pinchartc6193ea2012-12-15 23:50:47 +0100386 struct sh_pfc_pinctrl *pmx;
Laurent Pinchart63d57382013-02-15 01:33:38 +0100387 int nr_ranges;
Paul Mundtca5481c62012-07-10 12:08:14 +0900388
Laurent Pinchart1724acf2012-12-15 23:50:48 +0100389 pmx = devm_kzalloc(pfc->dev, sizeof(*pmx), GFP_KERNEL);
Laurent Pinchartc6193ea2012-12-15 23:50:47 +0100390 if (unlikely(!pmx))
391 return -ENOMEM;
Paul Mundtca5481c62012-07-10 12:08:14 +0900392
Laurent Pinchartc6193ea2012-12-15 23:50:47 +0100393 pmx->pfc = pfc;
394 pfc->pinctrl = pmx;
395
Laurent Pinchart63d57382013-02-15 01:33:38 +0100396 nr_ranges = sh_pfc_map_pins(pfc, pmx);
397 if (unlikely(nr_ranges < 0))
398 return nr_ranges;
Paul Mundtca5481c62012-07-10 12:08:14 +0900399
Laurent Pinchartdcc427e2013-02-16 16:38:30 +0100400 pmx->pctl_desc.name = DRV_NAME;
401 pmx->pctl_desc.owner = THIS_MODULE;
402 pmx->pctl_desc.pctlops = &sh_pfc_pinctrl_ops;
403 pmx->pctl_desc.pmxops = &sh_pfc_pinmux_ops;
404 pmx->pctl_desc.confops = &sh_pfc_pinconf_ops;
Laurent Pinchart3d8d9f12013-01-03 14:33:13 +0100405 pmx->pctl_desc.pins = pmx->pins;
Laurent Pinchart63d57382013-02-15 01:33:38 +0100406 pmx->pctl_desc.npins = pfc->info->nr_pins;
Laurent Pinchartdcc427e2013-02-16 16:38:30 +0100407
408 pmx->pctl = pinctrl_register(&pmx->pctl_desc, pfc->dev, pmx);
Wei Yongjunfd9d05b2013-03-11 22:08:12 +0800409 if (pmx->pctl == NULL)
410 return -EINVAL;
Paul Mundtca5481c62012-07-10 12:08:14 +0900411
Paul Mundtca5481c62012-07-10 12:08:14 +0900412 return 0;
Paul Mundtca5481c62012-07-10 12:08:14 +0900413}
414
Laurent Pinchartc6193ea2012-12-15 23:50:47 +0100415int sh_pfc_unregister_pinctrl(struct sh_pfc *pfc)
Paul Mundtca5481c62012-07-10 12:08:14 +0900416{
Laurent Pinchartc6193ea2012-12-15 23:50:47 +0100417 struct sh_pfc_pinctrl *pmx = pfc->pinctrl;
Paul Mundtca5481c62012-07-10 12:08:14 +0900418
Paul Mundtca5481c62012-07-10 12:08:14 +0900419 pinctrl_unregister(pmx->pctl);
420
Laurent Pinchartc6193ea2012-12-15 23:50:47 +0100421 pfc->pinctrl = NULL;
Paul Mundtca5481c62012-07-10 12:08:14 +0900422 return 0;
423}