2 * Copyright (C) 2013 STMicroelectronics (R&D) Limited.
4 * Srinivas Kandagatla <srinivas.kandagatla@st.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
11 #include <linux/init.h>
12 #include <linux/module.h>
13 #include <linux/slab.h>
14 #include <linux/err.h>
17 #include <linux/of_gpio.h>
18 #include <linux/of_address.h>
19 #include <linux/regmap.h>
20 #include <linux/mfd/syscon.h>
21 #include <linux/pinctrl/pinctrl.h>
22 #include <linux/pinctrl/pinmux.h>
23 #include <linux/pinctrl/pinconf.h>
24 #include <linux/platform_device.h>
27 /* PIO Block registers */
29 #define REG_PIO_POUT 0x00
30 /* Set bits of POUT */
31 #define REG_PIO_SET_POUT 0x04
32 /* Clear bits of POUT */
33 #define REG_PIO_CLR_POUT 0x08
35 #define REG_PIO_PIN 0x10
36 /* PIO configuration */
37 #define REG_PIO_PC(n) (0x20 + (n) * 0x10)
38 /* Set bits of PC[2:0] */
39 #define REG_PIO_SET_PC(n) (0x24 + (n) * 0x10)
40 /* Clear bits of PC[2:0] */
41 #define REG_PIO_CLR_PC(n) (0x28 + (n) * 0x10)
42 /* PIO input comparison */
43 #define REG_PIO_PCOMP 0x50
44 /* Set bits of PCOMP */
45 #define REG_PIO_SET_PCOMP 0x54
46 /* Clear bits of PCOMP */
47 #define REG_PIO_CLR_PCOMP 0x58
48 /* PIO input comparison mask */
49 #define REG_PIO_PMASK 0x60
50 /* Set bits of PMASK */
51 #define REG_PIO_SET_PMASK 0x64
52 /* Clear bits of PMASK */
53 #define REG_PIO_CLR_PMASK 0x68
55 #define ST_GPIO_DIRECTION_BIDIR 0x1
56 #define ST_GPIO_DIRECTION_OUT 0x2
57 #define ST_GPIO_DIRECTION_IN 0x4
60 * Packed style retime configuration.
61 * There are two registers cfg0 and cfg1 in this style for each bank.
62 * Each field in this register is 8 bit corresponding to 8 pins in the bank.
64 #define RT_P_CFGS_PER_BANK 2
65 #define RT_P_CFG0_CLK1NOTCLK0_FIELD(reg) REG_FIELD(reg, 0, 7)
66 #define RT_P_CFG0_DELAY_0_FIELD(reg) REG_FIELD(reg, 16, 23)
67 #define RT_P_CFG0_DELAY_1_FIELD(reg) REG_FIELD(reg, 24, 31)
68 #define RT_P_CFG1_INVERTCLK_FIELD(reg) REG_FIELD(reg, 0, 7)
69 #define RT_P_CFG1_RETIME_FIELD(reg) REG_FIELD(reg, 8, 15)
70 #define RT_P_CFG1_CLKNOTDATA_FIELD(reg) REG_FIELD(reg, 16, 23)
71 #define RT_P_CFG1_DOUBLE_EDGE_FIELD(reg) REG_FIELD(reg, 24, 31)
74 * Dedicated style retime Configuration register
75 * each register is dedicated per pin.
77 #define RT_D_CFGS_PER_BANK 8
78 #define RT_D_CFG_CLK_SHIFT 0
79 #define RT_D_CFG_CLK_MASK (0x3 << 0)
80 #define RT_D_CFG_CLKNOTDATA_SHIFT 2
81 #define RT_D_CFG_CLKNOTDATA_MASK BIT(2)
82 #define RT_D_CFG_DELAY_SHIFT 3
83 #define RT_D_CFG_DELAY_MASK (0xf << 3)
84 #define RT_D_CFG_DELAY_INNOTOUT_SHIFT 7
85 #define RT_D_CFG_DELAY_INNOTOUT_MASK BIT(7)
86 #define RT_D_CFG_DOUBLE_EDGE_SHIFT 8
87 #define RT_D_CFG_DOUBLE_EDGE_MASK BIT(8)
88 #define RT_D_CFG_INVERTCLK_SHIFT 9
89 #define RT_D_CFG_INVERTCLK_MASK BIT(9)
90 #define RT_D_CFG_RETIME_SHIFT 10
91 #define RT_D_CFG_RETIME_MASK BIT(10)
94 * Pinconf is represented in an opaque unsigned long variable.
95 * Below is the bit allocation details for each possible configuration.
96 * All the bit fields can be encapsulated into four variables
97 * (direction, retime-type, retime-clk, retime-delay)
100 *[31:28]| reserved-3 |
101 * +----------------+-------------
103 * +----------------+ v
104 *[26] | pu | [Direction ]
105 * +----------------+ ^
107 * +----------------+-------------
109 * +----------------+-------------
111 * +----------------+ |
112 *[22] | retime-invclk | |
113 * +----------------+ v
114 *[21] |retime-clknotdat| [Retime-type ]
115 * +----------------+ ^
116 *[20] | retime-de | |
117 * +----------------+-------------
118 *[19:18]| retime-clk |------>[Retime-Clk ]
120 *[17:16]| reserved-1 |
122 *[15..0]| retime-delay |------>[Retime Delay]
126 #define ST_PINCONF_UNPACK(conf, param)\
127 ((conf >> ST_PINCONF_ ##param ##_SHIFT) \
128 & ST_PINCONF_ ##param ##_MASK)
130 #define ST_PINCONF_PACK(conf, val, param) (conf |=\
131 ((val & ST_PINCONF_ ##param ##_MASK) << \
132 ST_PINCONF_ ##param ##_SHIFT))
135 #define ST_PINCONF_OE_MASK 0x1
136 #define ST_PINCONF_OE_SHIFT 27
137 #define ST_PINCONF_OE BIT(27)
138 #define ST_PINCONF_UNPACK_OE(conf) ST_PINCONF_UNPACK(conf, OE)
139 #define ST_PINCONF_PACK_OE(conf) ST_PINCONF_PACK(conf, 1, OE)
142 #define ST_PINCONF_PU_MASK 0x1
143 #define ST_PINCONF_PU_SHIFT 26
144 #define ST_PINCONF_PU BIT(26)
145 #define ST_PINCONF_UNPACK_PU(conf) ST_PINCONF_UNPACK(conf, PU)
146 #define ST_PINCONF_PACK_PU(conf) ST_PINCONF_PACK(conf, 1, PU)
149 #define ST_PINCONF_OD_MASK 0x1
150 #define ST_PINCONF_OD_SHIFT 25
151 #define ST_PINCONF_OD BIT(25)
152 #define ST_PINCONF_UNPACK_OD(conf) ST_PINCONF_UNPACK(conf, OD)
153 #define ST_PINCONF_PACK_OD(conf) ST_PINCONF_PACK(conf, 1, OD)
155 #define ST_PINCONF_RT_MASK 0x1
156 #define ST_PINCONF_RT_SHIFT 23
157 #define ST_PINCONF_RT BIT(23)
158 #define ST_PINCONF_UNPACK_RT(conf) ST_PINCONF_UNPACK(conf, RT)
159 #define ST_PINCONF_PACK_RT(conf) ST_PINCONF_PACK(conf, 1, RT)
161 #define ST_PINCONF_RT_INVERTCLK_MASK 0x1
162 #define ST_PINCONF_RT_INVERTCLK_SHIFT 22
163 #define ST_PINCONF_RT_INVERTCLK BIT(22)
164 #define ST_PINCONF_UNPACK_RT_INVERTCLK(conf) \
165 ST_PINCONF_UNPACK(conf, RT_INVERTCLK)
166 #define ST_PINCONF_PACK_RT_INVERTCLK(conf) \
167 ST_PINCONF_PACK(conf, 1, RT_INVERTCLK)
169 #define ST_PINCONF_RT_CLKNOTDATA_MASK 0x1
170 #define ST_PINCONF_RT_CLKNOTDATA_SHIFT 21
171 #define ST_PINCONF_RT_CLKNOTDATA BIT(21)
172 #define ST_PINCONF_UNPACK_RT_CLKNOTDATA(conf) \
173 ST_PINCONF_UNPACK(conf, RT_CLKNOTDATA)
174 #define ST_PINCONF_PACK_RT_CLKNOTDATA(conf) \
175 ST_PINCONF_PACK(conf, 1, RT_CLKNOTDATA)
177 #define ST_PINCONF_RT_DOUBLE_EDGE_MASK 0x1
178 #define ST_PINCONF_RT_DOUBLE_EDGE_SHIFT 20
179 #define ST_PINCONF_RT_DOUBLE_EDGE BIT(20)
180 #define ST_PINCONF_UNPACK_RT_DOUBLE_EDGE(conf) \
181 ST_PINCONF_UNPACK(conf, RT_DOUBLE_EDGE)
182 #define ST_PINCONF_PACK_RT_DOUBLE_EDGE(conf) \
183 ST_PINCONF_PACK(conf, 1, RT_DOUBLE_EDGE)
185 #define ST_PINCONF_RT_CLK_MASK 0x3
186 #define ST_PINCONF_RT_CLK_SHIFT 18
187 #define ST_PINCONF_RT_CLK BIT(18)
188 #define ST_PINCONF_UNPACK_RT_CLK(conf) ST_PINCONF_UNPACK(conf, RT_CLK)
189 #define ST_PINCONF_PACK_RT_CLK(conf, val) ST_PINCONF_PACK(conf, val, RT_CLK)
191 /* RETIME_DELAY in Pico Secs */
192 #define ST_PINCONF_RT_DELAY_MASK 0xffff
193 #define ST_PINCONF_RT_DELAY_SHIFT 0
194 #define ST_PINCONF_UNPACK_RT_DELAY(conf) ST_PINCONF_UNPACK(conf, RT_DELAY)
195 #define ST_PINCONF_PACK_RT_DELAY(conf, val) \
196 ST_PINCONF_PACK(conf, val, RT_DELAY)
198 #define ST_GPIO_PINS_PER_BANK (8)
199 #define OF_GPIO_ARGS_MIN (4)
200 #define OF_RT_ARGS_MIN (2)
202 #define gpio_range_to_bank(chip) \
203 container_of(chip, struct st_gpio_bank, range)
205 #define gpio_chip_to_bank(chip) \
206 container_of(chip, struct st_gpio_bank, gpio_chip)
209 enum st_retime_style
{
210 st_retime_style_none
,
211 st_retime_style_packed
,
212 st_retime_style_dedicated
,
215 struct st_retime_dedicated
{
216 struct regmap_field
*rt
[ST_GPIO_PINS_PER_BANK
];
219 struct st_retime_packed
{
220 struct regmap_field
*clk1notclk0
;
221 struct regmap_field
*delay_0
;
222 struct regmap_field
*delay_1
;
223 struct regmap_field
*invertclk
;
224 struct regmap_field
*retime
;
225 struct regmap_field
*clknotdata
;
226 struct regmap_field
*double_edge
;
229 struct st_pio_control
{
231 struct regmap_field
*alt
, *oe
, *pu
, *od
;
234 struct st_retime_packed rt_p
;
235 struct st_retime_dedicated rt_d
;
239 struct st_pctl_data
{
240 enum st_retime_style rt_style
;
241 unsigned int *input_delays
;
243 unsigned int *output_delays
;
245 /* register offset information */
246 int alt
, oe
, pu
, od
, rt
;
252 unsigned long config
;
262 struct st_pctl_group
{
266 struct st_pinconf
*pin_conf
;
269 struct st_gpio_bank
{
270 struct gpio_chip gpio_chip
;
271 struct pinctrl_gpio_range range
;
273 struct st_pio_control pc
;
278 struct pinctrl_dev
*pctl
;
279 struct st_gpio_bank
*banks
;
281 struct st_pmx_func
*functions
;
283 struct st_pctl_group
*groups
;
285 struct regmap
*regmap
;
286 const struct st_pctl_data
*data
;
289 /* SOC specific data */
291 unsigned int stih415_input_delays
[] = {0, 500, 1000, 1500};
292 unsigned int stih415_output_delays
[] = {0, 1000, 2000, 3000};
294 #define STIH415_PCTRL_COMMON_DATA \
295 .rt_style = st_retime_style_packed, \
296 .input_delays = stih415_input_delays, \
297 .ninput_delays = 4, \
298 .output_delays = stih415_output_delays, \
301 static const struct st_pctl_data stih415_sbc_data
= {
302 STIH415_PCTRL_COMMON_DATA
,
303 .alt
= 0, .oe
= 5, .pu
= 7, .od
= 9, .rt
= 16,
306 static const struct st_pctl_data stih415_front_data
= {
307 STIH415_PCTRL_COMMON_DATA
,
308 .alt
= 0, .oe
= 8, .pu
= 10, .od
= 12, .rt
= 16,
311 static const struct st_pctl_data stih415_rear_data
= {
312 STIH415_PCTRL_COMMON_DATA
,
313 .alt
= 0, .oe
= 6, .pu
= 8, .od
= 10, .rt
= 38,
316 static const struct st_pctl_data stih415_left_data
= {
317 STIH415_PCTRL_COMMON_DATA
,
318 .alt
= 0, .oe
= 3, .pu
= 4, .od
= 5, .rt
= 6,
321 static const struct st_pctl_data stih415_right_data
= {
322 STIH415_PCTRL_COMMON_DATA
,
323 .alt
= 0, .oe
= 5, .pu
= 7, .od
= 9, .rt
= 11,
327 unsigned int stih416_delays
[] = {0, 300, 500, 750, 1000, 1250, 1500,
328 1750, 2000, 2250, 2500, 2750, 3000, 3250 };
330 static const struct st_pctl_data stih416_data
= {
331 .rt_style
= st_retime_style_dedicated
,
332 .input_delays
= stih416_delays
,
334 .output_delays
= stih416_delays
,
335 .noutput_delays
= 14,
336 .alt
= 0, .oe
= 40, .pu
= 50, .od
= 60, .rt
= 100,
339 /* Low level functions.. */
340 static inline int st_gpio_bank(int gpio
)
342 return gpio
/ST_GPIO_PINS_PER_BANK
;
345 static inline int st_gpio_pin(int gpio
)
347 return gpio
%ST_GPIO_PINS_PER_BANK
;
350 static void st_pinconf_set_config(struct st_pio_control
*pc
,
351 int pin
, unsigned long config
)
353 struct regmap_field
*output_enable
= pc
->oe
;
354 struct regmap_field
*pull_up
= pc
->pu
;
355 struct regmap_field
*open_drain
= pc
->od
;
356 unsigned int oe_value
, pu_value
, od_value
;
357 unsigned long mask
= BIT(pin
);
359 regmap_field_read(output_enable
, &oe_value
);
360 regmap_field_read(pull_up
, &pu_value
);
361 regmap_field_read(open_drain
, &od_value
);
363 /* Clear old values */
368 if (config
& ST_PINCONF_OE
)
370 if (config
& ST_PINCONF_PU
)
372 if (config
& ST_PINCONF_OD
)
375 regmap_field_write(output_enable
, oe_value
);
376 regmap_field_write(pull_up
, pu_value
);
377 regmap_field_write(open_drain
, od_value
);
380 static void st_pctl_set_function(struct st_pio_control
*pc
,
381 int pin_id
, int function
)
383 struct regmap_field
*alt
= pc
->alt
;
385 int pin
= st_gpio_pin(pin_id
);
386 int offset
= pin
* 4;
388 regmap_field_read(alt
, &val
);
389 val
&= ~(0xf << offset
);
390 val
|= function
<< offset
;
391 regmap_field_write(alt
, val
);
394 static unsigned long st_pinconf_delay_to_bit(unsigned int delay
,
395 const struct st_pctl_data
*data
, unsigned long config
)
397 unsigned int *delay_times
;
398 int num_delay_times
, i
, closest_index
= -1;
399 unsigned int closest_divergence
= UINT_MAX
;
401 if (ST_PINCONF_UNPACK_OE(config
)) {
402 delay_times
= data
->output_delays
;
403 num_delay_times
= data
->noutput_delays
;
405 delay_times
= data
->input_delays
;
406 num_delay_times
= data
->ninput_delays
;
409 for (i
= 0; i
< num_delay_times
; i
++) {
410 unsigned int divergence
= abs(delay
- delay_times
[i
]);
415 if (divergence
< closest_divergence
) {
416 closest_divergence
= divergence
;
421 pr_warn("Attempt to set delay %d, closest available %d\n",
422 delay
, delay_times
[closest_index
]);
424 return closest_index
;
427 static unsigned long st_pinconf_bit_to_delay(unsigned int index
,
428 const struct st_pctl_data
*data
, unsigned long output
)
430 unsigned int *delay_times
;
434 delay_times
= data
->output_delays
;
435 num_delay_times
= data
->noutput_delays
;
437 delay_times
= data
->input_delays
;
438 num_delay_times
= data
->ninput_delays
;
441 if (index
< num_delay_times
) {
442 return delay_times
[index
];
444 pr_warn("Delay not found in/out delay list\n");
449 static void st_regmap_field_bit_set_clear_pin(struct regmap_field
*field
,
452 unsigned int val
= 0;
454 regmap_field_read(field
, &val
);
459 regmap_field_write(field
, val
);
462 static void st_pinconf_set_retime_packed(struct st_pinctrl
*info
,
463 struct st_pio_control
*pc
, unsigned long config
, int pin
)
465 const struct st_pctl_data
*data
= info
->data
;
466 struct st_retime_packed
*rt_p
= &pc
->rt
.rt_p
;
469 st_regmap_field_bit_set_clear_pin(rt_p
->clk1notclk0
,
470 ST_PINCONF_UNPACK_RT_CLK(config
), pin
);
472 st_regmap_field_bit_set_clear_pin(rt_p
->clknotdata
,
473 ST_PINCONF_UNPACK_RT_CLKNOTDATA(config
), pin
);
475 st_regmap_field_bit_set_clear_pin(rt_p
->double_edge
,
476 ST_PINCONF_UNPACK_RT_DOUBLE_EDGE(config
), pin
);
478 st_regmap_field_bit_set_clear_pin(rt_p
->invertclk
,
479 ST_PINCONF_UNPACK_RT_INVERTCLK(config
), pin
);
481 st_regmap_field_bit_set_clear_pin(rt_p
->retime
,
482 ST_PINCONF_UNPACK_RT(config
), pin
);
484 delay
= st_pinconf_delay_to_bit(ST_PINCONF_UNPACK_RT_DELAY(config
),
486 /* 2 bit delay, lsb */
487 st_regmap_field_bit_set_clear_pin(rt_p
->delay_0
, delay
& 0x1, pin
);
488 /* 2 bit delay, msb */
489 st_regmap_field_bit_set_clear_pin(rt_p
->delay_1
, delay
& 0x2, pin
);
493 static void st_pinconf_set_retime_dedicated(struct st_pinctrl
*info
,
494 struct st_pio_control
*pc
, unsigned long config
, int pin
)
496 int input
= ST_PINCONF_UNPACK_OE(config
) ? 0 : 1;
497 int clk
= ST_PINCONF_UNPACK_RT_CLK(config
);
498 int clknotdata
= ST_PINCONF_UNPACK_RT_CLKNOTDATA(config
);
499 int double_edge
= ST_PINCONF_UNPACK_RT_DOUBLE_EDGE(config
);
500 int invertclk
= ST_PINCONF_UNPACK_RT_INVERTCLK(config
);
501 int retime
= ST_PINCONF_UNPACK_RT(config
);
503 unsigned long delay
= st_pinconf_delay_to_bit(
504 ST_PINCONF_UNPACK_RT_DELAY(config
),
506 struct st_retime_dedicated
*rt_d
= &pc
->rt
.rt_d
;
508 unsigned long retime_config
=
509 ((clk
) << RT_D_CFG_CLK_SHIFT
) |
510 ((delay
) << RT_D_CFG_DELAY_SHIFT
) |
511 ((input
) << RT_D_CFG_DELAY_INNOTOUT_SHIFT
) |
512 ((retime
) << RT_D_CFG_RETIME_SHIFT
) |
513 ((clknotdata
) << RT_D_CFG_CLKNOTDATA_SHIFT
) |
514 ((invertclk
) << RT_D_CFG_INVERTCLK_SHIFT
) |
515 ((double_edge
) << RT_D_CFG_DOUBLE_EDGE_SHIFT
);
517 regmap_field_write(rt_d
->rt
[pin
], retime_config
);
520 static void st_pinconf_get_direction(struct st_pio_control
*pc
,
521 int pin
, unsigned long *config
)
523 unsigned int oe_value
, pu_value
, od_value
;
525 regmap_field_read(pc
->oe
, &oe_value
);
526 regmap_field_read(pc
->pu
, &pu_value
);
527 regmap_field_read(pc
->od
, &od_value
);
529 if (oe_value
& BIT(pin
))
530 ST_PINCONF_PACK_OE(*config
);
531 if (pu_value
& BIT(pin
))
532 ST_PINCONF_PACK_PU(*config
);
533 if (od_value
& BIT(pin
))
534 ST_PINCONF_PACK_OD(*config
);
538 static int st_pinconf_get_retime_packed(struct st_pinctrl
*info
,
539 struct st_pio_control
*pc
, int pin
, unsigned long *config
)
541 const struct st_pctl_data
*data
= info
->data
;
542 struct st_retime_packed
*rt_p
= &pc
->rt
.rt_p
;
543 unsigned int delay_bits
, delay
, delay0
, delay1
, val
;
544 int output
= ST_PINCONF_UNPACK_OE(*config
);
546 if (!regmap_field_read(rt_p
->retime
, &val
) && (val
& BIT(pin
)))
547 ST_PINCONF_PACK_RT(*config
);
549 if (!regmap_field_read(rt_p
->clk1notclk0
, &val
) && (val
& BIT(pin
)))
550 ST_PINCONF_PACK_RT_CLK(*config
, 1);
552 if (!regmap_field_read(rt_p
->clknotdata
, &val
) && (val
& BIT(pin
)))
553 ST_PINCONF_PACK_RT_CLKNOTDATA(*config
);
555 if (!regmap_field_read(rt_p
->double_edge
, &val
) && (val
& BIT(pin
)))
556 ST_PINCONF_PACK_RT_DOUBLE_EDGE(*config
);
558 if (!regmap_field_read(rt_p
->invertclk
, &val
) && (val
& BIT(pin
)))
559 ST_PINCONF_PACK_RT_INVERTCLK(*config
);
561 regmap_field_read(rt_p
->delay_0
, &delay0
);
562 regmap_field_read(rt_p
->delay_1
, &delay1
);
563 delay_bits
= (((delay1
& BIT(pin
)) ? 1 : 0) << 1) |
564 (((delay0
& BIT(pin
)) ? 1 : 0));
565 delay
= st_pinconf_bit_to_delay(delay_bits
, data
, output
);
566 ST_PINCONF_PACK_RT_DELAY(*config
, delay
);
571 static int st_pinconf_get_retime_dedicated(struct st_pinctrl
*info
,
572 struct st_pio_control
*pc
, int pin
, unsigned long *config
)
575 unsigned long delay_bits
, delay
, rt_clk
;
576 int output
= ST_PINCONF_UNPACK_OE(*config
);
577 struct st_retime_dedicated
*rt_d
= &pc
->rt
.rt_d
;
579 regmap_field_read(rt_d
->rt
[pin
], &value
);
581 rt_clk
= (value
& RT_D_CFG_CLK_MASK
) >> RT_D_CFG_CLK_SHIFT
;
582 ST_PINCONF_PACK_RT_CLK(*config
, rt_clk
);
584 delay_bits
= (value
& RT_D_CFG_DELAY_MASK
) >> RT_D_CFG_DELAY_SHIFT
;
585 delay
= st_pinconf_bit_to_delay(delay_bits
, info
->data
, output
);
586 ST_PINCONF_PACK_RT_DELAY(*config
, delay
);
588 if (value
& RT_D_CFG_CLKNOTDATA_MASK
)
589 ST_PINCONF_PACK_RT_CLKNOTDATA(*config
);
591 if (value
& RT_D_CFG_DOUBLE_EDGE_MASK
)
592 ST_PINCONF_PACK_RT_DOUBLE_EDGE(*config
);
594 if (value
& RT_D_CFG_INVERTCLK_MASK
)
595 ST_PINCONF_PACK_RT_INVERTCLK(*config
);
597 if (value
& RT_D_CFG_RETIME_MASK
)
598 ST_PINCONF_PACK_RT(*config
);
603 /* GPIO related functions */
605 static inline void __st_gpio_set(struct st_gpio_bank
*bank
,
606 unsigned offset
, int value
)
609 writel(BIT(offset
), bank
->base
+ REG_PIO_SET_POUT
);
611 writel(BIT(offset
), bank
->base
+ REG_PIO_CLR_POUT
);
614 static void st_gpio_direction(struct st_gpio_bank
*bank
,
615 unsigned int gpio
, unsigned int direction
)
617 int offset
= st_gpio_pin(gpio
);
620 * There are three configuration registers (PIOn_PC0, PIOn_PC1
621 * and PIOn_PC2) for each port. These are used to configure the
622 * PIO port pins. Each pin can be configured as an input, output,
623 * bidirectional, or alternative function pin. Three bits, one bit
624 * from each of the three registers, configure the corresponding bit of
625 * the port. Valid bit settings is:
627 * PC2 PC1 PC0 Direction.
628 * 0 0 0 [Input Weak pull-up]
629 * 0 0 or 1 1 [Bidirection]
633 * PIOn_SET_PC and PIOn_CLR_PC registers are used to set and clear bits
636 for (i
= 0; i
<= 2; i
++) {
637 if (direction
& BIT(i
))
638 writel(BIT(offset
), bank
->base
+ REG_PIO_SET_PC(i
));
640 writel(BIT(offset
), bank
->base
+ REG_PIO_CLR_PC(i
));
644 static int st_gpio_request(struct gpio_chip
*chip
, unsigned offset
)
646 return pinctrl_request_gpio(chip
->base
+ offset
);
649 static void st_gpio_free(struct gpio_chip
*chip
, unsigned offset
)
651 pinctrl_free_gpio(chip
->base
+ offset
);
654 static int st_gpio_get(struct gpio_chip
*chip
, unsigned offset
)
656 struct st_gpio_bank
*bank
= gpio_chip_to_bank(chip
);
658 return !!(readl(bank
->base
+ REG_PIO_PIN
) & BIT(offset
));
661 static void st_gpio_set(struct gpio_chip
*chip
, unsigned offset
, int value
)
663 struct st_gpio_bank
*bank
= gpio_chip_to_bank(chip
);
664 __st_gpio_set(bank
, offset
, value
);
667 static int st_gpio_direction_input(struct gpio_chip
*chip
, unsigned offset
)
669 pinctrl_gpio_direction_input(chip
->base
+ offset
);
674 static int st_gpio_direction_output(struct gpio_chip
*chip
,
675 unsigned offset
, int value
)
677 struct st_gpio_bank
*bank
= gpio_chip_to_bank(chip
);
679 __st_gpio_set(bank
, offset
, value
);
680 pinctrl_gpio_direction_output(chip
->base
+ offset
);
685 static int st_gpio_xlate(struct gpio_chip
*gc
,
686 const struct of_phandle_args
*gpiospec
, u32
*flags
)
688 if (WARN_ON(gc
->of_gpio_n_cells
< 1))
691 if (WARN_ON(gpiospec
->args_count
< gc
->of_gpio_n_cells
))
694 if (gpiospec
->args
[0] > gc
->ngpio
)
697 return gpiospec
->args
[0];
701 static int st_pctl_get_groups_count(struct pinctrl_dev
*pctldev
)
703 struct st_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
705 return info
->ngroups
;
708 static const char *st_pctl_get_group_name(struct pinctrl_dev
*pctldev
,
711 struct st_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
713 return info
->groups
[selector
].name
;
716 static int st_pctl_get_group_pins(struct pinctrl_dev
*pctldev
,
717 unsigned selector
, const unsigned **pins
, unsigned *npins
)
719 struct st_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
721 if (selector
>= info
->ngroups
)
724 *pins
= info
->groups
[selector
].pins
;
725 *npins
= info
->groups
[selector
].npins
;
730 static const inline struct st_pctl_group
*st_pctl_find_group_by_name(
731 const struct st_pinctrl
*info
, const char *name
)
735 for (i
= 0; i
< info
->ngroups
; i
++) {
736 if (!strcmp(info
->groups
[i
].name
, name
))
737 return &info
->groups
[i
];
743 static int st_pctl_dt_node_to_map(struct pinctrl_dev
*pctldev
,
744 struct device_node
*np
, struct pinctrl_map
**map
, unsigned *num_maps
)
746 struct st_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
747 const struct st_pctl_group
*grp
;
748 struct pinctrl_map
*new_map
;
749 struct device_node
*parent
;
752 grp
= st_pctl_find_group_by_name(info
, np
->name
);
754 dev_err(info
->dev
, "unable to find group for node %s\n",
759 map_num
= grp
->npins
+ 1;
760 new_map
= devm_kzalloc(pctldev
->dev
,
761 sizeof(*new_map
) * map_num
, GFP_KERNEL
);
765 parent
= of_get_parent(np
);
767 devm_kfree(pctldev
->dev
, new_map
);
773 new_map
[0].type
= PIN_MAP_TYPE_MUX_GROUP
;
774 new_map
[0].data
.mux
.function
= parent
->name
;
775 new_map
[0].data
.mux
.group
= np
->name
;
778 /* create config map per pin */
780 for (i
= 0; i
< grp
->npins
; i
++) {
781 new_map
[i
].type
= PIN_MAP_TYPE_CONFIGS_PIN
;
782 new_map
[i
].data
.configs
.group_or_pin
=
783 pin_get_name(pctldev
, grp
->pins
[i
]);
784 new_map
[i
].data
.configs
.configs
= &grp
->pin_conf
[i
].config
;
785 new_map
[i
].data
.configs
.num_configs
= 1;
787 dev_info(pctldev
->dev
, "maps: function %s group %s num %d\n",
788 (*map
)->data
.mux
.function
, grp
->name
, map_num
);
793 static void st_pctl_dt_free_map(struct pinctrl_dev
*pctldev
,
794 struct pinctrl_map
*map
, unsigned num_maps
)
798 static struct pinctrl_ops st_pctlops
= {
799 .get_groups_count
= st_pctl_get_groups_count
,
800 .get_group_pins
= st_pctl_get_group_pins
,
801 .get_group_name
= st_pctl_get_group_name
,
802 .dt_node_to_map
= st_pctl_dt_node_to_map
,
803 .dt_free_map
= st_pctl_dt_free_map
,
807 static int st_pmx_get_funcs_count(struct pinctrl_dev
*pctldev
)
809 struct st_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
811 return info
->nfunctions
;
814 const char *st_pmx_get_fname(struct pinctrl_dev
*pctldev
,
817 struct st_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
819 return info
->functions
[selector
].name
;
822 static int st_pmx_get_groups(struct pinctrl_dev
*pctldev
,
823 unsigned selector
, const char * const **grps
, unsigned * const ngrps
)
825 struct st_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
826 *grps
= info
->functions
[selector
].groups
;
827 *ngrps
= info
->functions
[selector
].ngroups
;
832 static struct st_pio_control
*st_get_pio_control(
833 struct pinctrl_dev
*pctldev
, int pin
)
835 struct pinctrl_gpio_range
*range
=
836 pinctrl_find_gpio_range_from_pin(pctldev
, pin
);
837 struct st_gpio_bank
*bank
= gpio_range_to_bank(range
);
842 static int st_pmx_enable(struct pinctrl_dev
*pctldev
, unsigned fselector
,
845 struct st_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
846 struct st_pinconf
*conf
= info
->groups
[group
].pin_conf
;
847 struct st_pio_control
*pc
;
850 for (i
= 0; i
< info
->groups
[group
].npins
; i
++) {
851 pc
= st_get_pio_control(pctldev
, conf
[i
].pin
);
852 st_pctl_set_function(pc
, conf
[i
].pin
, conf
[i
].altfunc
);
858 static void st_pmx_disable(struct pinctrl_dev
*pctldev
, unsigned selector
,
863 static int st_pmx_set_gpio_direction(struct pinctrl_dev
*pctldev
,
864 struct pinctrl_gpio_range
*range
, unsigned gpio
,
867 struct st_gpio_bank
*bank
= gpio_range_to_bank(range
);
869 * When a PIO bank is used in its primary function mode (altfunc = 0)
870 * Output Enable (OE), Open Drain(OD), and Pull Up (PU)
871 * for the primary PIO functions are driven by the related PIO block
873 st_pctl_set_function(&bank
->pc
, gpio
, 0);
874 st_gpio_direction(bank
, gpio
, input
?
875 ST_GPIO_DIRECTION_IN
: ST_GPIO_DIRECTION_OUT
);
880 static struct pinmux_ops st_pmxops
= {
881 .get_functions_count
= st_pmx_get_funcs_count
,
882 .get_function_name
= st_pmx_get_fname
,
883 .get_function_groups
= st_pmx_get_groups
,
884 .enable
= st_pmx_enable
,
885 .disable
= st_pmx_disable
,
886 .gpio_set_direction
= st_pmx_set_gpio_direction
,
890 static void st_pinconf_get_retime(struct st_pinctrl
*info
,
891 struct st_pio_control
*pc
, int pin
, unsigned long *config
)
893 if (info
->data
->rt_style
== st_retime_style_packed
)
894 st_pinconf_get_retime_packed(info
, pc
, pin
, config
);
895 else if (info
->data
->rt_style
== st_retime_style_dedicated
)
896 if ((BIT(pin
) & pc
->rt_pin_mask
))
897 st_pinconf_get_retime_dedicated(info
, pc
,
901 static void st_pinconf_set_retime(struct st_pinctrl
*info
,
902 struct st_pio_control
*pc
, int pin
, unsigned long config
)
904 if (info
->data
->rt_style
== st_retime_style_packed
)
905 st_pinconf_set_retime_packed(info
, pc
, config
, pin
);
906 else if (info
->data
->rt_style
== st_retime_style_dedicated
)
907 if ((BIT(pin
) & pc
->rt_pin_mask
))
908 st_pinconf_set_retime_dedicated(info
, pc
,
912 static int st_pinconf_set(struct pinctrl_dev
*pctldev
,
913 unsigned pin_id
, unsigned long config
)
915 int pin
= st_gpio_pin(pin_id
);
916 struct st_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
917 struct st_pio_control
*pc
= st_get_pio_control(pctldev
, pin_id
);
919 st_pinconf_set_config(pc
, pin
, config
);
920 st_pinconf_set_retime(info
, pc
, pin
, config
);
925 static int st_pinconf_get(struct pinctrl_dev
*pctldev
,
926 unsigned pin_id
, unsigned long *config
)
928 int pin
= st_gpio_pin(pin_id
);
929 struct st_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
930 struct st_pio_control
*pc
= st_get_pio_control(pctldev
, pin_id
);
933 st_pinconf_get_direction(pc
, pin
, config
);
934 st_pinconf_get_retime(info
, pc
, pin
, config
);
939 static void st_pinconf_dbg_show(struct pinctrl_dev
*pctldev
,
940 struct seq_file
*s
, unsigned pin_id
)
942 unsigned long config
;
943 st_pinconf_get(pctldev
, pin_id
, &config
);
945 seq_printf(s
, "[OE:%ld,PU:%ld,OD:%ld]\n"
946 "\t\t[retime:%ld,invclk:%ld,clknotdat:%ld,"
947 "de:%ld,rt-clk:%ld,rt-delay:%ld]",
948 ST_PINCONF_UNPACK_OE(config
),
949 ST_PINCONF_UNPACK_PU(config
),
950 ST_PINCONF_UNPACK_OD(config
),
951 ST_PINCONF_UNPACK_RT(config
),
952 ST_PINCONF_UNPACK_RT_INVERTCLK(config
),
953 ST_PINCONF_UNPACK_RT_CLKNOTDATA(config
),
954 ST_PINCONF_UNPACK_RT_DOUBLE_EDGE(config
),
955 ST_PINCONF_UNPACK_RT_CLK(config
),
956 ST_PINCONF_UNPACK_RT_DELAY(config
));
959 static struct pinconf_ops st_confops
= {
960 .pin_config_get
= st_pinconf_get
,
961 .pin_config_set
= st_pinconf_set
,
962 .pin_config_dbg_show
= st_pinconf_dbg_show
,
965 static void st_pctl_dt_child_count(struct st_pinctrl
*info
,
966 struct device_node
*np
)
968 struct device_node
*child
;
969 for_each_child_of_node(np
, child
) {
970 if (of_property_read_bool(child
, "gpio-controller")) {
974 info
->ngroups
+= of_get_child_count(child
);
979 static int st_pctl_dt_setup_retime_packed(struct st_pinctrl
*info
,
980 int bank
, struct st_pio_control
*pc
)
982 struct device
*dev
= info
->dev
;
983 struct regmap
*rm
= info
->regmap
;
984 const struct st_pctl_data
*data
= info
->data
;
985 /* 2 registers per bank */
986 int reg
= (data
->rt
+ bank
* RT_P_CFGS_PER_BANK
) * 4;
987 struct st_retime_packed
*rt_p
= &pc
->rt
.rt_p
;
989 struct reg_field clk1notclk0
= RT_P_CFG0_CLK1NOTCLK0_FIELD(reg
);
990 struct reg_field delay_0
= RT_P_CFG0_DELAY_0_FIELD(reg
);
991 struct reg_field delay_1
= RT_P_CFG0_DELAY_1_FIELD(reg
);
993 struct reg_field invertclk
= RT_P_CFG1_INVERTCLK_FIELD(reg
+ 4);
994 struct reg_field retime
= RT_P_CFG1_RETIME_FIELD(reg
+ 4);
995 struct reg_field clknotdata
= RT_P_CFG1_CLKNOTDATA_FIELD(reg
+ 4);
996 struct reg_field double_edge
= RT_P_CFG1_DOUBLE_EDGE_FIELD(reg
+ 4);
998 rt_p
->clk1notclk0
= devm_regmap_field_alloc(dev
, rm
, clk1notclk0
);
999 rt_p
->delay_0
= devm_regmap_field_alloc(dev
, rm
, delay_0
);
1000 rt_p
->delay_1
= devm_regmap_field_alloc(dev
, rm
, delay_1
);
1001 rt_p
->invertclk
= devm_regmap_field_alloc(dev
, rm
, invertclk
);
1002 rt_p
->retime
= devm_regmap_field_alloc(dev
, rm
, retime
);
1003 rt_p
->clknotdata
= devm_regmap_field_alloc(dev
, rm
, clknotdata
);
1004 rt_p
->double_edge
= devm_regmap_field_alloc(dev
, rm
, double_edge
);
1006 if (IS_ERR(rt_p
->clk1notclk0
) || IS_ERR(rt_p
->delay_0
) ||
1007 IS_ERR(rt_p
->delay_1
) || IS_ERR(rt_p
->invertclk
) ||
1008 IS_ERR(rt_p
->retime
) || IS_ERR(rt_p
->clknotdata
) ||
1009 IS_ERR(rt_p
->double_edge
))
1015 static int st_pctl_dt_setup_retime_dedicated(struct st_pinctrl
*info
,
1016 int bank
, struct st_pio_control
*pc
)
1018 struct device
*dev
= info
->dev
;
1019 struct regmap
*rm
= info
->regmap
;
1020 const struct st_pctl_data
*data
= info
->data
;
1021 /* 8 registers per bank */
1022 int reg_offset
= (data
->rt
+ bank
* RT_D_CFGS_PER_BANK
) * 4;
1023 struct st_retime_dedicated
*rt_d
= &pc
->rt
.rt_d
;
1025 u32 pin_mask
= pc
->rt_pin_mask
;
1027 for (j
= 0; j
< RT_D_CFGS_PER_BANK
; j
++) {
1028 if (BIT(j
) & pin_mask
) {
1029 struct reg_field reg
= REG_FIELD(reg_offset
, 0, 31);
1030 rt_d
->rt
[j
] = devm_regmap_field_alloc(dev
, rm
, reg
);
1031 if (IS_ERR(rt_d
->rt
[j
]))
1039 static int st_pctl_dt_setup_retime(struct st_pinctrl
*info
,
1040 int bank
, struct st_pio_control
*pc
)
1042 const struct st_pctl_data
*data
= info
->data
;
1043 if (data
->rt_style
== st_retime_style_packed
)
1044 return st_pctl_dt_setup_retime_packed(info
, bank
, pc
);
1045 else if (data
->rt_style
== st_retime_style_dedicated
)
1046 return st_pctl_dt_setup_retime_dedicated(info
, bank
, pc
);
1051 static int st_parse_syscfgs(struct st_pinctrl
*info
,
1052 int bank
, struct device_node
*np
)
1054 const struct st_pctl_data
*data
= info
->data
;
1056 * For a given shared register like OE/PU/OD, there are 8 bits per bank
1057 * 0:7 belongs to bank0, 8:15 belongs to bank1 ...
1058 * So each register is shared across 4 banks.
1060 int lsb
= (bank
%4) * ST_GPIO_PINS_PER_BANK
;
1061 int msb
= lsb
+ ST_GPIO_PINS_PER_BANK
- 1;
1062 struct reg_field alt_reg
= REG_FIELD((data
->alt
+ bank
) * 4, 0, 31);
1063 struct reg_field oe_reg
= REG_FIELD((data
->oe
+ bank
/4) * 4, lsb
, msb
);
1064 struct reg_field pu_reg
= REG_FIELD((data
->pu
+ bank
/4) * 4, lsb
, msb
);
1065 struct reg_field od_reg
= REG_FIELD((data
->od
+ bank
/4) * 4, lsb
, msb
);
1066 struct st_pio_control
*pc
= &info
->banks
[bank
].pc
;
1067 struct device
*dev
= info
->dev
;
1068 struct regmap
*regmap
= info
->regmap
;
1070 pc
->alt
= devm_regmap_field_alloc(dev
, regmap
, alt_reg
);
1071 pc
->oe
= devm_regmap_field_alloc(dev
, regmap
, oe_reg
);
1072 pc
->pu
= devm_regmap_field_alloc(dev
, regmap
, pu_reg
);
1073 pc
->od
= devm_regmap_field_alloc(dev
, regmap
, od_reg
);
1075 if (IS_ERR(pc
->alt
) || IS_ERR(pc
->oe
) ||
1076 IS_ERR(pc
->pu
) || IS_ERR(pc
->od
))
1079 /* retime avaiable for all pins by default */
1080 pc
->rt_pin_mask
= 0xff;
1081 of_property_read_u32(np
, "st,retime-pin-mask", &pc
->rt_pin_mask
);
1082 st_pctl_dt_setup_retime(info
, bank
, pc
);
1088 * Each pin is represented in of the below forms.
1089 * <bank offset mux direction rt_type rt_delay rt_clk>
1091 static int st_pctl_dt_parse_groups(struct device_node
*np
,
1092 struct st_pctl_group
*grp
, struct st_pinctrl
*info
, int idx
)
1094 /* bank pad direction val altfunction */
1096 struct property
*pp
;
1097 struct st_pinconf
*conf
;
1099 struct device_node
*pins
;
1101 int i
= 0, npins
= 0, nr_props
;
1103 pins
= of_get_child_by_name(np
, "st,pins");
1107 for_each_property_of_node(pins
, pp
) {
1108 /* Skip those we do not want to proceed */
1109 if (!strcmp(pp
->name
, "name"))
1112 if (pp
&& (pp
->length
/sizeof(__be32
)) >= OF_GPIO_ARGS_MIN
) {
1115 pr_warn("Invalid st,pins in %s node\n", np
->name
);
1121 grp
->name
= np
->name
;
1122 grp
->pins
= devm_kzalloc(info
->dev
, npins
* sizeof(u32
), GFP_KERNEL
);
1123 grp
->pin_conf
= devm_kzalloc(info
->dev
,
1124 npins
* sizeof(*conf
), GFP_KERNEL
);
1126 if (!grp
->pins
|| !grp
->pin_conf
)
1129 /* <bank offset mux direction rt_type rt_delay rt_clk> */
1130 for_each_property_of_node(pins
, pp
) {
1131 if (!strcmp(pp
->name
, "name"))
1133 nr_props
= pp
->length
/sizeof(u32
);
1135 conf
= &grp
->pin_conf
[i
];
1138 phandle
= be32_to_cpup(list
++);
1139 pin
= be32_to_cpup(list
++);
1140 conf
->pin
= of_get_named_gpio(pins
, pp
->name
, 0);
1141 conf
->name
= pp
->name
;
1142 grp
->pins
[i
] = conf
->pin
;
1144 conf
->altfunc
= be32_to_cpup(list
++);
1147 conf
->config
|= be32_to_cpup(list
++);
1148 /* rt_type rt_delay rt_clk */
1149 if (nr_props
>= OF_GPIO_ARGS_MIN
+ OF_RT_ARGS_MIN
) {
1151 conf
->config
|= be32_to_cpup(list
++);
1153 conf
->config
|= be32_to_cpup(list
++);
1155 if (nr_props
> OF_GPIO_ARGS_MIN
+ OF_RT_ARGS_MIN
)
1156 conf
->config
|= be32_to_cpup(list
++);
1165 static int st_pctl_parse_functions(struct device_node
*np
,
1166 struct st_pinctrl
*info
, u32 index
, int *grp_index
)
1168 struct device_node
*child
;
1169 struct st_pmx_func
*func
;
1170 struct st_pctl_group
*grp
;
1173 func
= &info
->functions
[index
];
1174 func
->name
= np
->name
;
1175 func
->ngroups
= of_get_child_count(np
);
1176 if (func
->ngroups
<= 0) {
1177 dev_err(info
->dev
, "No groups defined\n");
1180 func
->groups
= devm_kzalloc(info
->dev
,
1181 func
->ngroups
* sizeof(char *), GFP_KERNEL
);
1186 for_each_child_of_node(np
, child
) {
1187 func
->groups
[i
] = child
->name
;
1188 grp
= &info
->groups
[*grp_index
];
1190 ret
= st_pctl_dt_parse_groups(child
, grp
, info
, i
++);
1194 dev_info(info
->dev
, "Function[%d\t name:%s,\tgroups:%d]\n",
1195 index
, func
->name
, func
->ngroups
);
1200 static struct gpio_chip st_gpio_template
= {
1201 .request
= st_gpio_request
,
1202 .free
= st_gpio_free
,
1205 .direction_input
= st_gpio_direction_input
,
1206 .direction_output
= st_gpio_direction_output
,
1207 .ngpio
= ST_GPIO_PINS_PER_BANK
,
1208 .of_gpio_n_cells
= 1,
1209 .of_xlate
= st_gpio_xlate
,
1212 static int st_gpiolib_register_bank(struct st_pinctrl
*info
,
1213 int bank_nr
, struct device_node
*np
)
1215 struct st_gpio_bank
*bank
= &info
->banks
[bank_nr
];
1216 struct pinctrl_gpio_range
*range
= &bank
->range
;
1217 struct device
*dev
= info
->dev
;
1218 int bank_num
= of_alias_get_id(np
, "gpio");
1219 struct resource res
;
1222 if (of_address_to_resource(np
, 0, &res
))
1225 bank
->base
= devm_request_and_ioremap(dev
, &res
);
1227 dev_err(dev
, "Can't get IO memory mapping!\n");
1231 bank
->gpio_chip
= st_gpio_template
;
1232 bank
->gpio_chip
.base
= bank_num
* ST_GPIO_PINS_PER_BANK
;
1233 bank
->gpio_chip
.ngpio
= ST_GPIO_PINS_PER_BANK
;
1234 bank
->gpio_chip
.of_node
= np
;
1236 of_property_read_string(np
, "st,bank-name", &range
->name
);
1237 bank
->gpio_chip
.label
= range
->name
;
1239 range
->id
= bank_num
;
1240 range
->pin_base
= range
->base
= range
->id
* ST_GPIO_PINS_PER_BANK
;
1241 range
->npins
= bank
->gpio_chip
.ngpio
;
1242 range
->gc
= &bank
->gpio_chip
;
1243 err
= gpiochip_add(&bank
->gpio_chip
);
1245 dev_err(dev
, "Failed to add gpiochip(%d)!\n", bank_num
);
1248 dev_info(dev
, "%s bank added.\n", range
->name
);
1253 static struct of_device_id st_pctl_of_match
[] = {
1254 { .compatible
= "st,stih415-sbc-pinctrl", .data
= &stih415_sbc_data
},
1255 { .compatible
= "st,stih415-rear-pinctrl", .data
= &stih415_rear_data
},
1256 { .compatible
= "st,stih415-left-pinctrl", .data
= &stih415_left_data
},
1257 { .compatible
= "st,stih415-right-pinctrl",
1258 .data
= &stih415_right_data
},
1259 { .compatible
= "st,stih415-front-pinctrl",
1260 .data
= &stih415_front_data
},
1261 { .compatible
= "st,stih416-sbc-pinctrl", .data
= &stih416_data
},
1262 { .compatible
= "st,stih416-front-pinctrl", .data
= &stih416_data
},
1263 { .compatible
= "st,stih416-rear-pinctrl", .data
= &stih416_data
},
1264 { .compatible
= "st,stih416-fvdp-fe-pinctrl", .data
= &stih416_data
},
1265 { .compatible
= "st,stih416-fvdp-lite-pinctrl", .data
= &stih416_data
},
1269 static int st_pctl_probe_dt(struct platform_device
*pdev
,
1270 struct pinctrl_desc
*pctl_desc
, struct st_pinctrl
*info
)
1273 int i
= 0, j
= 0, k
= 0, bank
;
1274 struct pinctrl_pin_desc
*pdesc
;
1275 struct device_node
*np
= pdev
->dev
.of_node
;
1276 struct device_node
*child
;
1279 st_pctl_dt_child_count(info
, np
);
1280 if (!info
->nbanks
) {
1281 dev_err(&pdev
->dev
, "you need atleast one gpio bank\n");
1285 dev_info(&pdev
->dev
, "nbanks = %d\n", info
->nbanks
);
1286 dev_info(&pdev
->dev
, "nfunctions = %d\n", info
->nfunctions
);
1287 dev_info(&pdev
->dev
, "ngroups = %d\n", info
->ngroups
);
1289 info
->functions
= devm_kzalloc(&pdev
->dev
,
1290 info
->nfunctions
* sizeof(*info
->functions
), GFP_KERNEL
);
1292 info
->groups
= devm_kzalloc(&pdev
->dev
,
1293 info
->ngroups
* sizeof(*info
->groups
) , GFP_KERNEL
);
1295 info
->banks
= devm_kzalloc(&pdev
->dev
,
1296 info
->nbanks
* sizeof(*info
->banks
), GFP_KERNEL
);
1298 if (!info
->functions
|| !info
->groups
|| !info
->banks
)
1301 info
->regmap
= syscon_regmap_lookup_by_phandle(np
, "st,syscfg");
1302 if (IS_ERR(info
->regmap
)) {
1303 dev_err(info
->dev
, "No syscfg phandle specified\n");
1304 return PTR_ERR(info
->regmap
);
1306 info
->data
= of_match_node(st_pctl_of_match
, np
)->data
;
1308 pctl_desc
->npins
= info
->nbanks
* ST_GPIO_PINS_PER_BANK
;
1309 pdesc
= devm_kzalloc(&pdev
->dev
,
1310 sizeof(*pdesc
) * pctl_desc
->npins
, GFP_KERNEL
);
1314 pctl_desc
->pins
= pdesc
;
1317 for_each_child_of_node(np
, child
) {
1318 if (of_property_read_bool(child
, "gpio-controller")) {
1319 const char *bank_name
= NULL
;
1320 ret
= st_gpiolib_register_bank(info
, bank
, child
);
1324 k
= info
->banks
[bank
].range
.pin_base
;
1325 bank_name
= info
->banks
[bank
].range
.name
;
1326 for (j
= 0; j
< ST_GPIO_PINS_PER_BANK
; j
++, k
++) {
1328 pdesc
->name
= kasprintf(GFP_KERNEL
, "%s[%d]",
1332 st_parse_syscfgs(info
, bank
, child
);
1335 ret
= st_pctl_parse_functions(child
, info
,
1338 dev_err(&pdev
->dev
, "No functions found.\n");
1347 static int st_pctl_probe(struct platform_device
*pdev
)
1349 struct st_pinctrl
*info
;
1350 struct pinctrl_desc
*pctl_desc
;
1353 if (!pdev
->dev
.of_node
) {
1354 dev_err(&pdev
->dev
, "device node not found.\n");
1358 pctl_desc
= devm_kzalloc(&pdev
->dev
, sizeof(*pctl_desc
), GFP_KERNEL
);
1362 info
= devm_kzalloc(&pdev
->dev
, sizeof(*info
), GFP_KERNEL
);
1366 info
->dev
= &pdev
->dev
;
1367 platform_set_drvdata(pdev
, info
);
1368 ret
= st_pctl_probe_dt(pdev
, pctl_desc
, info
);
1372 pctl_desc
->owner
= THIS_MODULE
,
1373 pctl_desc
->pctlops
= &st_pctlops
,
1374 pctl_desc
->pmxops
= &st_pmxops
,
1375 pctl_desc
->confops
= &st_confops
,
1376 pctl_desc
->name
= dev_name(&pdev
->dev
);
1378 info
->pctl
= pinctrl_register(pctl_desc
, &pdev
->dev
, info
);
1380 dev_err(&pdev
->dev
, "Failed pinctrl registration\n");
1384 for (i
= 0; i
< info
->nbanks
; i
++)
1385 pinctrl_add_gpio_range(info
->pctl
, &info
->banks
[i
].range
);
1390 static struct platform_driver st_pctl_driver
= {
1392 .name
= "st-pinctrl",
1393 .owner
= THIS_MODULE
,
1394 .of_match_table
= st_pctl_of_match
,
1396 .probe
= st_pctl_probe
,
1399 static int __init
st_pctl_init(void)
1401 return platform_driver_register(&st_pctl_driver
);
1403 arch_initcall(st_pctl_init
);