xref: /openbmc/linux/drivers/pinctrl/sunplus/sppctl.c (revision acf50233)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * SP7021 Pin Controller Driver.
4  * Copyright (C) Sunplus Tech / Tibbo Tech.
5  */
6 
7 #include <linux/bitfield.h>
8 #include <linux/device.h>
9 #include <linux/err.h>
10 #include <linux/gpio/driver.h>
11 #include <linux/init.h>
12 #include <linux/module.h>
13 #include <linux/of.h>
14 #include <linux/of_device.h>
15 #include <linux/overflow.h>
16 #include <linux/platform_device.h>
17 #include <linux/seq_file.h>
18 #include <linux/slab.h>
19 
20 #include <linux/pinctrl/pinconf.h>
21 #include <linux/pinctrl/pinconf-generic.h>
22 #include <linux/pinctrl/pinmux.h>
23 
24 #include <dt-bindings/pinctrl/sppctl-sp7021.h>
25 
26 #include "../core.h"
27 #include "../pinctrl-utils.h"
28 
29 #include "sppctl.h"
30 
31 struct sppctl_gpio_chip {
32 	void __iomem *gpioxt_base;	/* MASTER, OE, OUT, IN, I_INV, O_INV, OD */
33 	void __iomem *first_base;	/* GPIO_FIRST                            */
34 
35 	struct gpio_chip chip;
36 	spinlock_t lock;		/* lock for accessing OE register        */
37 };
38 
39 static inline u32 sppctl_first_readl(struct sppctl_gpio_chip *spp_gchip, u32 off)
40 {
41 	return readl(spp_gchip->first_base + SPPCTL_GPIO_OFF_FIRST + off);
42 }
43 
44 static inline void sppctl_first_writel(struct sppctl_gpio_chip *spp_gchip, u32 val, u32 off)
45 {
46 	writel(val, spp_gchip->first_base + SPPCTL_GPIO_OFF_FIRST + off);
47 }
48 
49 static inline u32 sppctl_gpio_master_readl(struct sppctl_gpio_chip *spp_gchip, u32 off)
50 {
51 	return readl(spp_gchip->gpioxt_base + SPPCTL_GPIO_OFF_MASTER + off);
52 }
53 
54 static inline void sppctl_gpio_master_writel(struct sppctl_gpio_chip *spp_gchip, u32 val,
55 					     u32 off)
56 {
57 	writel(val, spp_gchip->gpioxt_base + SPPCTL_GPIO_OFF_MASTER + off);
58 }
59 
60 static inline u32 sppctl_gpio_oe_readl(struct sppctl_gpio_chip *spp_gchip, u32 off)
61 {
62 	return readl(spp_gchip->gpioxt_base + SPPCTL_GPIO_OFF_OE + off);
63 }
64 
65 static inline void sppctl_gpio_oe_writel(struct sppctl_gpio_chip *spp_gchip, u32 val, u32 off)
66 {
67 	writel(val, spp_gchip->gpioxt_base + SPPCTL_GPIO_OFF_OE + off);
68 }
69 
70 static inline void sppctl_gpio_out_writel(struct sppctl_gpio_chip *spp_gchip, u32 val, u32 off)
71 {
72 	writel(val, spp_gchip->gpioxt_base + SPPCTL_GPIO_OFF_OUT + off);
73 }
74 
75 static inline u32 sppctl_gpio_in_readl(struct sppctl_gpio_chip *spp_gchip, u32 off)
76 {
77 	return readl(spp_gchip->gpioxt_base + SPPCTL_GPIO_OFF_IN + off);
78 }
79 
80 static inline u32 sppctl_gpio_iinv_readl(struct sppctl_gpio_chip *spp_gchip, u32 off)
81 {
82 	return readl(spp_gchip->gpioxt_base + SPPCTL_GPIO_OFF_IINV + off);
83 }
84 
85 static inline void sppctl_gpio_iinv_writel(struct sppctl_gpio_chip *spp_gchip, u32 val,
86 					   u32 off)
87 {
88 	writel(val, spp_gchip->gpioxt_base + SPPCTL_GPIO_OFF_IINV + off);
89 }
90 
91 static inline u32 sppctl_gpio_oinv_readl(struct sppctl_gpio_chip *spp_gchip, u32 off)
92 {
93 	return readl(spp_gchip->gpioxt_base + SPPCTL_GPIO_OFF_OINV + off);
94 }
95 
96 static inline void sppctl_gpio_oinv_writel(struct sppctl_gpio_chip *spp_gchip, u32 val,
97 					   u32 off)
98 {
99 	writel(val, spp_gchip->gpioxt_base + SPPCTL_GPIO_OFF_OINV + off);
100 }
101 
102 static inline u32 sppctl_gpio_od_readl(struct sppctl_gpio_chip *spp_gchip, u32 off)
103 {
104 	return readl(spp_gchip->gpioxt_base + SPPCTL_GPIO_OFF_OD + off);
105 }
106 
107 static inline void sppctl_gpio_od_writel(struct sppctl_gpio_chip *spp_gchip, u32 val, u32 off)
108 {
109 	writel(val, spp_gchip->gpioxt_base + SPPCTL_GPIO_OFF_OD + off);
110 }
111 
112 static inline u32 sppctl_get_reg_and_bit_offset(unsigned int offset, u32 *reg_off)
113 {
114 	u32 bit_off;
115 
116 	/* Each register has 32 bits. */
117 	*reg_off = (offset / 32) * 4;
118 	bit_off = offset % 32;
119 
120 	return bit_off;
121 }
122 
123 static inline u32 sppctl_get_moon_reg_and_bit_offset(unsigned int offset, u32 *reg_off)
124 {
125 	u32 bit_off;
126 
127 	/*
128 	 * Each MOON register has 32 bits. Upper 16-bit word are mask-fields.
129 	 * The lower 16-bit word are the control-fields. The corresponding
130 	 * bits in mask-field should be set then you can write something to
131 	 * control-field.
132 	 */
133 	*reg_off = (offset / 16) * 4;
134 	bit_off = offset % 16;
135 
136 	return bit_off;
137 }
138 
139 static inline u32 sppctl_prep_moon_reg_and_offset(unsigned int offset, u32 *reg_off, int val)
140 {
141 	u32 bit_off;
142 
143 	bit_off = sppctl_get_moon_reg_and_bit_offset(offset, reg_off);
144 	if (val)
145 		return SPPCTL_SET_MOON_REG_BIT(bit_off);
146 	else
147 		return SPPCTL_CLR_MOON_REG_BIT(bit_off);
148 }
149 
150 /**
151  * sppctl_func_set() - Set pin of fully-pinmux function.
152  *
153  * Mask-fields and control-fields of fully-pinmux function of SP7021 are
154  * arranged as shown below:
155  *
156  *  func# | register |  mask-field  | control-field
157  * -------+----------+--------------+---------------
158  *    0   | base[0]  |  (22 : 16)   |   ( 6 : 0)
159  *    1   | base[0]  |  (30 : 24)   |   (14 : 8)
160  *    2   | base[1]  |  (22 : 16)   |   ( 6 : 0)
161  *    3   | baeg[1]  |  (30 : 24)   |   (14 : 8)
162  *    :   |    :     |      :       |       :
163  *
164  * where mask-fields are used to protect control-fields from write-in
165  * accidentally. Set the corresponding bits in the mask-field before
166  * you write a value into a control-field.
167  *
168  * Control-fields are used to set where the function pin is going to
169  * be routed to.
170  *
171  * Note that mask-fields and control-fields of even number of 'func'
172  * are located at bits (22:16) and (6:0), while odd number of 'func's
173  * are located at bits (30:24) and (14:8).
174  */
175 static void sppctl_func_set(struct sppctl_pdata *pctl, u8 func, u8 val)
176 {
177 	u32 reg, offset;
178 
179 	/*
180 	 * Note that upper 16-bit word are mask-fields and lower 16-bit
181 	 * word are the control-fields. Set corresponding bits in mask-
182 	 * field before write to a control-field.
183 	 */
184 	reg = SPPCTL_FULLY_PINMUX_MASK_MASK | val;
185 
186 	/*
187 	 * MUXF_L2SW_CLK_OUT is the first fully-pinmux pin
188 	 * and its register offset is 0.
189 	 */
190 	func -= MUXF_L2SW_CLK_OUT;
191 
192 	/*
193 	 * Check if 'func' is an odd number or not. Mask and control-
194 	 * fields of odd number 'func' is located at upper portion of
195 	 * a register. Extra shift is needed.
196 	 */
197 	if (func & BIT(0))
198 		reg <<= SPPCTL_FULLY_PINMUX_UPPER_SHIFT;
199 
200 	/* Convert func# to register offset w.r.t. base register. */
201 	offset = func * 2;
202 	offset &= GENMASK(31, 2);
203 
204 	writel(reg, pctl->moon2_base + offset);
205 }
206 
207 /**
208  * sppctl_gmx_set() - Set pin of group-pinmux.
209  *
210  * Mask-fields and control-fields of group-pinmux function of SP7021 are
211  * arranged as shown below:
212  *
213  *  register |  mask-fields | control-fields
214  * ----------+--------------+----------------
215  *  base[0]  |  (31 : 16)   |   (15 : 0)
216  *  base[1]  |  (31 : 24)   |   (15 : 0)
217  *  base[2]  |  (31 : 24)   |   (15 : 0)
218  *     :     |      :       |       :
219  *
220  * where mask-fields are used to protect control-fields from write-in
221  * accidentally. Set the corresponding bits in the mask-field before
222  * you write a value into a control-field.
223  *
224  * Control-fields are used to set where the function pin is going to
225  * be routed to. A control-field consists of one or more bits.
226  */
227 static void sppctl_gmx_set(struct sppctl_pdata *pctl, u8 reg_off, u8 bit_off, u8 bit_sz,
228 			   u8 val)
229 {
230 	u32 mask, reg;
231 
232 	/*
233 	 * Note that upper 16-bit word are mask-fields and lower 16-bit
234 	 * word are the control-fields. Set corresponding bits in mask-
235 	 * field before write to a control-field.
236 	 */
237 	mask = GENMASK(bit_sz - 1, 0) << SPPCTL_MOON_REG_MASK_SHIFT;
238 	reg = (mask | val) << bit_off;
239 
240 	writel(reg, pctl->moon1_base + reg_off * 4);
241 }
242 
243 /**
244  * sppctl_first_get() - get bit of FIRST register.
245  *
246  * There are 4 FIRST registers. Each has 32 control-bits.
247  * Totally, there are 4 * 32 = 128 control-bits.
248  * Control-bits are arranged as shown below:
249  *
250  *  registers | control-bits
251  * -----------+--------------
252  *  first[0]  |  (31 :  0)
253  *  first[1]  |  (63 : 32)
254  *  first[2]  |  (95 : 64)
255  *  first[3]  | (127 : 96)
256  *
257  * Each control-bit sets type of a GPIO pin.
258  *   0: a fully-pinmux pin
259  *   1: a GPIO or IOP pin
260  */
261 static int sppctl_first_get(struct gpio_chip *chip, unsigned int offset)
262 {
263 	struct sppctl_gpio_chip *spp_gchip = gpiochip_get_data(chip);
264 	u32 reg_off, bit_off, reg;
265 
266 	bit_off = sppctl_get_reg_and_bit_offset(offset, &reg_off);
267 	reg = sppctl_first_readl(spp_gchip, reg_off);
268 
269 	return (reg & BIT(bit_off)) ? 1 : 0;
270 }
271 
272 /**
273  * sppctl_master_get() - get bit of MASTER register.
274  *
275  * There are 8 MASTER registers. Each has 16 mask-bits and 16 control-bits.
276  * Upper 16-bit of MASTER registers are mask-bits while lower 16-bit are
277  * control-bits. Totally, there are 128 mask-bits and 128 control-bits.
278  * They are arranged as shown below:
279  *
280  *  register  |  mask-bits  | control-bits
281  * -----------+-------------+--------------
282  *  master[0] |  (15 :   0) |  (15 :   0)
283  *  master[1] |  (31 :  16) |  (31 :  16)
284  *  master[2] |  (47 :  32) |  (47 :  32)
285  *     :      |      :      |      :
286  *  master[7] | (127 : 112) | (127 : 112)
287  *
288  * where mask-bits are used to protect control-bits from write-in
289  * accidentally. Set the corresponding mask-bit before you write
290  * a value into a control-bit.
291  *
292  * Each control-bit sets type of a GPIO pin when FIRST bit is 1.
293  *   0: a IOP pin
294  *   1: a GPIO pin
295  */
296 static int sppctl_master_get(struct gpio_chip *chip, unsigned int offset)
297 {
298 	struct sppctl_gpio_chip *spp_gchip = gpiochip_get_data(chip);
299 	u32 reg_off, bit_off, reg;
300 
301 	bit_off = sppctl_get_moon_reg_and_bit_offset(offset, &reg_off);
302 	reg = sppctl_gpio_master_readl(spp_gchip, reg_off);
303 	return (reg & BIT(bit_off)) ? 1 : 0;
304 }
305 
306 static void sppctl_first_master_set(struct gpio_chip *chip, unsigned int offset,
307 				    enum mux_first_reg first, enum mux_master_reg master)
308 {
309 	struct sppctl_gpio_chip *spp_gchip = gpiochip_get_data(chip);
310 	u32 reg_off, bit_off, reg;
311 	enum mux_first_reg val;
312 
313 	/* FIRST register */
314 	if (first != mux_f_keep) {
315 		bit_off = sppctl_get_reg_and_bit_offset(offset, &reg_off);
316 		reg = sppctl_first_readl(spp_gchip, reg_off);
317 		val = (reg & BIT(bit_off)) ? mux_f_gpio : mux_f_mux;
318 
319 		if (first != val)
320 			switch (first) {
321 			case mux_f_gpio:
322 				reg |= BIT(bit_off);
323 				sppctl_first_writel(spp_gchip, reg, reg_off);
324 				break;
325 
326 			case mux_f_mux:
327 				reg &= ~BIT(bit_off);
328 				sppctl_first_writel(spp_gchip, reg, reg_off);
329 				break;
330 
331 			case mux_f_keep:
332 				break;
333 			}
334 	}
335 
336 	/* MASTER register */
337 	if (master != mux_m_keep) {
338 		reg = sppctl_prep_moon_reg_and_offset(offset, &reg_off, (master == mux_m_gpio));
339 		sppctl_gpio_master_writel(spp_gchip, reg, reg_off);
340 	}
341 }
342 
343 static void sppctl_gpio_input_inv_set(struct gpio_chip *chip, unsigned int offset)
344 {
345 	struct sppctl_gpio_chip *spp_gchip = gpiochip_get_data(chip);
346 	u32 reg_off, reg;
347 
348 	reg = sppctl_prep_moon_reg_and_offset(offset, &reg_off, 1);
349 	sppctl_gpio_iinv_writel(spp_gchip, reg, reg_off);
350 }
351 
352 static void sppctl_gpio_output_inv_set(struct gpio_chip *chip, unsigned int offset)
353 {
354 	struct sppctl_gpio_chip *spp_gchip = gpiochip_get_data(chip);
355 	u32 reg_off, reg;
356 
357 	reg = sppctl_prep_moon_reg_and_offset(offset, &reg_off, 1);
358 	sppctl_gpio_oinv_writel(spp_gchip, reg, reg_off);
359 }
360 
361 static int sppctl_gpio_output_od_get(struct gpio_chip *chip, unsigned int offset)
362 {
363 	struct sppctl_gpio_chip *spp_gchip = gpiochip_get_data(chip);
364 	u32 reg_off, bit_off, reg;
365 
366 	bit_off = sppctl_get_moon_reg_and_bit_offset(offset, &reg_off);
367 	reg = sppctl_gpio_od_readl(spp_gchip, reg_off);
368 
369 	return (reg & BIT(bit_off)) ? 1 : 0;
370 }
371 
372 static void sppctl_gpio_output_od_set(struct gpio_chip *chip, unsigned int offset,
373 				      unsigned int val)
374 {
375 	struct sppctl_gpio_chip *spp_gchip = gpiochip_get_data(chip);
376 	u32 reg_off, reg;
377 
378 	reg = sppctl_prep_moon_reg_and_offset(offset, &reg_off, val);
379 	sppctl_gpio_od_writel(spp_gchip, reg, reg_off);
380 }
381 
382 static int sppctl_gpio_get_direction(struct gpio_chip *chip, unsigned int offset)
383 {
384 	struct sppctl_gpio_chip *spp_gchip = gpiochip_get_data(chip);
385 	u32 reg_off, bit_off, reg;
386 
387 	bit_off = sppctl_get_moon_reg_and_bit_offset(offset, &reg_off);
388 	reg = sppctl_gpio_oe_readl(spp_gchip, reg_off);
389 
390 	return (reg & BIT(bit_off)) ? 0 : 1;
391 }
392 
393 static int sppctl_gpio_inv_get(struct gpio_chip *chip, unsigned int offset)
394 {
395 	struct sppctl_gpio_chip *spp_gchip = gpiochip_get_data(chip);
396 	u32 reg_off, bit_off, reg;
397 	unsigned long flags;
398 
399 	bit_off = sppctl_get_moon_reg_and_bit_offset(offset, &reg_off);
400 
401 	spin_lock_irqsave(&spp_gchip->lock, flags);
402 
403 	if (sppctl_gpio_get_direction(chip, offset))
404 		reg = sppctl_gpio_iinv_readl(spp_gchip, reg_off);
405 	else
406 		reg = sppctl_gpio_oinv_readl(spp_gchip, reg_off);
407 
408 	spin_unlock_irqrestore(&spp_gchip->lock, flags);
409 
410 	return (reg & BIT(bit_off)) ? 1 : 0;
411 }
412 
413 static int sppctl_gpio_direction_input(struct gpio_chip *chip, unsigned int offset)
414 {
415 	struct sppctl_gpio_chip *spp_gchip = gpiochip_get_data(chip);
416 	unsigned long flags;
417 	u32 reg_off, reg;
418 
419 	reg = sppctl_prep_moon_reg_and_offset(offset, &reg_off, 0);
420 
421 	spin_lock_irqsave(&spp_gchip->lock, flags);
422 
423 	sppctl_gpio_oe_writel(spp_gchip, reg, reg_off);
424 
425 	spin_unlock_irqrestore(&spp_gchip->lock, flags);
426 	return 0;
427 }
428 
429 static int sppctl_gpio_direction_output(struct gpio_chip *chip, unsigned int offset, int val)
430 {
431 	struct sppctl_gpio_chip *spp_gchip = gpiochip_get_data(chip);
432 	unsigned long flags;
433 	u32 reg_off, reg;
434 
435 	reg = sppctl_prep_moon_reg_and_offset(offset, &reg_off, 1);
436 
437 	spin_lock_irqsave(&spp_gchip->lock, flags);
438 
439 	sppctl_gpio_oe_writel(spp_gchip, reg, reg_off);
440 
441 	if (val < 0) {
442 		spin_unlock_irqrestore(&spp_gchip->lock, flags);
443 		return 0;
444 	}
445 
446 	reg = sppctl_prep_moon_reg_and_offset(offset, &reg_off, val);
447 	sppctl_gpio_out_writel(spp_gchip, reg, reg_off);
448 
449 	spin_unlock_irqrestore(&spp_gchip->lock, flags);
450 	return 0;
451 }
452 
453 static int sppctl_gpio_get(struct gpio_chip *chip, unsigned int offset)
454 {
455 	struct sppctl_gpio_chip *spp_gchip = gpiochip_get_data(chip);
456 	u32 reg_off, bit_off, reg;
457 
458 	bit_off = sppctl_get_reg_and_bit_offset(offset, &reg_off);
459 	reg = sppctl_gpio_in_readl(spp_gchip, reg_off);
460 
461 	return (reg & BIT(bit_off)) ? 1 : 0;
462 }
463 
464 static void sppctl_gpio_set(struct gpio_chip *chip, unsigned int offset, int val)
465 {
466 	struct sppctl_gpio_chip *spp_gchip = gpiochip_get_data(chip);
467 	u32 reg_off, reg;
468 
469 	reg = sppctl_prep_moon_reg_and_offset(offset, &reg_off, val);
470 	sppctl_gpio_out_writel(spp_gchip, reg, reg_off);
471 }
472 
473 static int sppctl_gpio_set_config(struct gpio_chip *chip, unsigned int offset,
474 				  unsigned long config)
475 {
476 	enum pin_config_param param = pinconf_to_config_param(config);
477 	struct sppctl_gpio_chip *spp_gchip = gpiochip_get_data(chip);
478 	u32 reg_off, reg;
479 
480 	switch (param) {
481 	case PIN_CONFIG_DRIVE_OPEN_DRAIN:
482 		reg = sppctl_prep_moon_reg_and_offset(offset, &reg_off, 1);
483 		sppctl_gpio_od_writel(spp_gchip, reg, reg_off);
484 		break;
485 
486 	case PIN_CONFIG_INPUT_ENABLE:
487 		break;
488 
489 	case PIN_CONFIG_OUTPUT:
490 		return sppctl_gpio_direction_output(chip, offset, 0);
491 
492 	case PIN_CONFIG_PERSIST_STATE:
493 		return -ENOTSUPP;
494 
495 	default:
496 		return -EINVAL;
497 	}
498 
499 	return 0;
500 }
501 
502 #ifdef CONFIG_DEBUG_FS
503 static void sppctl_gpio_dbg_show(struct seq_file *s, struct gpio_chip *chip)
504 {
505 	const char *label;
506 	int i;
507 
508 	for (i = 0; i < chip->ngpio; i++) {
509 		label = gpiochip_is_requested(chip, i);
510 		if (!label)
511 			label = "";
512 
513 		seq_printf(s, " gpio-%03d (%-16.16s | %-16.16s)", i + chip->base,
514 			   chip->names[i], label);
515 		seq_printf(s, " %c", sppctl_gpio_get_direction(chip, i) ? 'I' : 'O');
516 		seq_printf(s, ":%d", sppctl_gpio_get(chip, i));
517 		seq_printf(s, " %s", sppctl_first_get(chip, i) ? "gpi" : "mux");
518 		seq_printf(s, " %s", sppctl_master_get(chip, i) ? "gpi" : "iop");
519 		seq_printf(s, " %s", sppctl_gpio_inv_get(chip, i) ? "inv" : "   ");
520 		seq_printf(s, " %s", sppctl_gpio_output_od_get(chip, i) ? "oDr" : "");
521 		seq_puts(s, "\n");
522 	}
523 }
524 #endif
525 
526 static int sppctl_gpio_new(struct platform_device *pdev, struct sppctl_pdata *pctl)
527 {
528 	struct sppctl_gpio_chip *spp_gchip;
529 	struct gpio_chip *gchip;
530 	int err;
531 
532 	spp_gchip = devm_kzalloc(&pdev->dev, sizeof(*spp_gchip), GFP_KERNEL);
533 	if (!spp_gchip)
534 		return -ENOMEM;
535 	pctl->spp_gchip = spp_gchip;
536 
537 	spp_gchip->gpioxt_base  = pctl->gpioxt_base;
538 	spp_gchip->first_base   = pctl->first_base;
539 	spin_lock_init(&spp_gchip->lock);
540 
541 	gchip                   = &spp_gchip->chip;
542 	gchip->label            = SPPCTL_MODULE_NAME;
543 	gchip->parent           = &pdev->dev;
544 	gchip->owner            = THIS_MODULE;
545 	gchip->request          = gpiochip_generic_request;
546 	gchip->free             = gpiochip_generic_free;
547 	gchip->get_direction    = sppctl_gpio_get_direction;
548 	gchip->direction_input  = sppctl_gpio_direction_input;
549 	gchip->direction_output = sppctl_gpio_direction_output;
550 	gchip->get              = sppctl_gpio_get;
551 	gchip->set              = sppctl_gpio_set;
552 	gchip->set_config       = sppctl_gpio_set_config;
553 #ifdef CONFIG_DEBUG_FS
554 	gchip->dbg_show         = sppctl_gpio_dbg_show;
555 #endif
556 	gchip->base             = -1;
557 	gchip->ngpio            = sppctl_gpio_list_sz;
558 	gchip->names            = sppctl_gpio_list_s;
559 	gchip->of_gpio_n_cells  = 2;
560 
561 	pctl->pctl_grange.npins = gchip->ngpio;
562 	pctl->pctl_grange.name  = gchip->label;
563 	pctl->pctl_grange.gc    = gchip;
564 
565 	err = devm_gpiochip_add_data(&pdev->dev, gchip, spp_gchip);
566 	if (err)
567 		return dev_err_probe(&pdev->dev, err, "Failed to add gpiochip!\n");
568 
569 	return 0;
570 }
571 
572 static int sppctl_pin_config_get(struct pinctrl_dev *pctldev, unsigned int pin,
573 				 unsigned long *config)
574 {
575 	struct sppctl_pdata *pctl = pinctrl_dev_get_drvdata(pctldev);
576 	unsigned int param = pinconf_to_config_param(*config);
577 	unsigned int arg;
578 
579 	switch (param) {
580 	case PIN_CONFIG_DRIVE_OPEN_DRAIN:
581 		if (!sppctl_gpio_output_od_get(&pctl->spp_gchip->chip, pin))
582 			return -EINVAL;
583 		arg = 0;
584 		break;
585 
586 	case PIN_CONFIG_OUTPUT:
587 		if (!sppctl_first_get(&pctl->spp_gchip->chip, pin))
588 			return -EINVAL;
589 		if (!sppctl_master_get(&pctl->spp_gchip->chip, pin))
590 			return -EINVAL;
591 		if (sppctl_gpio_get_direction(&pctl->spp_gchip->chip, pin))
592 			return -EINVAL;
593 		arg = sppctl_gpio_get(&pctl->spp_gchip->chip, pin);
594 		break;
595 
596 	default:
597 		return -EOPNOTSUPP;
598 	}
599 	*config = pinconf_to_config_packed(param, arg);
600 
601 	return 0;
602 }
603 
604 static int sppctl_pin_config_set(struct pinctrl_dev *pctldev, unsigned int pin,
605 				 unsigned long *configs, unsigned int num_configs)
606 {
607 	struct sppctl_pdata *pctl = pinctrl_dev_get_drvdata(pctldev);
608 	int i;
609 
610 	/* Special handling for IOP pins */
611 	if (configs[0] == SPPCTL_IOP_CONFIGS) {
612 		sppctl_first_master_set(&pctl->spp_gchip->chip, pin, mux_f_gpio, mux_m_iop);
613 		return 0;
614 	}
615 
616 	for (i = 0; i < num_configs; i++) {
617 		if (configs[i] & SPPCTL_PCTL_L_OUT)
618 			sppctl_gpio_direction_output(&pctl->spp_gchip->chip, pin, 0);
619 		if (configs[i] & SPPCTL_PCTL_L_OU1)
620 			sppctl_gpio_direction_output(&pctl->spp_gchip->chip, pin, 1);
621 		if (configs[i] & SPPCTL_PCTL_L_INV)
622 			sppctl_gpio_input_inv_set(&pctl->spp_gchip->chip, pin);
623 		if (configs[i] & SPPCTL_PCTL_L_ONV)
624 			sppctl_gpio_output_inv_set(&pctl->spp_gchip->chip, pin);
625 		if (configs[i] & SPPCTL_PCTL_L_ODR)
626 			sppctl_gpio_output_od_set(&pctl->spp_gchip->chip, pin, 1);
627 	}
628 
629 	return 0;
630 }
631 
632 static const struct pinconf_ops sppctl_pconf_ops = {
633 	.is_generic     = true,
634 	.pin_config_get = sppctl_pin_config_get,
635 	.pin_config_set = sppctl_pin_config_set,
636 };
637 
638 static int sppctl_get_functions_count(struct pinctrl_dev *pctldev)
639 {
640 	return sppctl_list_funcs_sz;
641 }
642 
643 static const char *sppctl_get_function_name(struct pinctrl_dev *pctldev,
644 					    unsigned int selector)
645 {
646 	return sppctl_list_funcs[selector].name;
647 }
648 
649 static int sppctl_get_function_groups(struct pinctrl_dev *pctldev, unsigned int selector,
650 				      const char * const **groups, unsigned int *num_groups)
651 {
652 	struct sppctl_pdata *pctl = pinctrl_dev_get_drvdata(pctldev);
653 	const struct sppctl_func *f = &sppctl_list_funcs[selector];
654 	int i;
655 
656 	*num_groups = 0;
657 	switch (f->type) {
658 	case pinmux_type_fpmx:
659 		*num_groups = sppctl_pmux_list_sz;
660 		*groups = sppctl_pmux_list_s;
661 		break;
662 
663 	case pinmux_type_grp:
664 		if (!f->grps)
665 			break;
666 
667 		*num_groups = f->gnum;
668 		for (i = 0; i < pctl->unq_grps_sz; i++)
669 			if (pctl->g2fp_maps[i].f_idx == selector)
670 				break;
671 		*groups = &pctl->unq_grps[i];
672 		break;
673 
674 	default:
675 		dev_err(pctldev->dev, "Unknown pinmux (selector: %d, type: %d)\n",
676 			selector, f->type);
677 		break;
678 	}
679 
680 	return 0;
681 }
682 
683 /**
684  * sppctl_fully_pinmux_conv - Convert GPIO# to fully-pinmux control-field setting
685  *
686  * Each fully-pinmux function can be mapped to any of GPIO 8 ~ 71 by
687  * settings its control-field. Refer to following table:
688  *
689  * control-field |  GPIO
690  * --------------+--------
691  *        0      |  No map
692  *        1      |    8
693  *        2      |    9
694  *        3      |   10
695  *        :      |    :
696  *       65      |   71
697  */
698 static inline int sppctl_fully_pinmux_conv(unsigned int offset)
699 {
700 	return (offset < 8) ? 0 : offset - 7;
701 }
702 
703 static int sppctl_set_mux(struct pinctrl_dev *pctldev, unsigned int func_selector,
704 			  unsigned int group_selector)
705 {
706 	const struct sppctl_func *f = &sppctl_list_funcs[func_selector];
707 	struct sppctl_pdata *pctl = pinctrl_dev_get_drvdata(pctldev);
708 	struct grp2fp_map g2fpm = pctl->g2fp_maps[group_selector];
709 	int i;
710 
711 	switch (f->type) {
712 	case pinmux_type_fpmx:
713 		sppctl_first_master_set(&pctl->spp_gchip->chip, group_selector,
714 					mux_f_mux, mux_m_keep);
715 		sppctl_func_set(pctl, func_selector, sppctl_fully_pinmux_conv(group_selector));
716 		break;
717 
718 	case pinmux_type_grp:
719 		for (i = 0; i < f->grps[g2fpm.g_idx].pnum; i++)
720 			sppctl_first_master_set(&pctl->spp_gchip->chip,
721 						f->grps[g2fpm.g_idx].pins[i],
722 						mux_f_mux, mux_m_keep);
723 		sppctl_gmx_set(pctl, f->roff, f->boff, f->blen, f->grps[g2fpm.g_idx].gval);
724 		break;
725 
726 	default:
727 		dev_err(pctldev->dev, "Unknown pinmux type (func_selector: %d, type: %d)\n",
728 			func_selector, f->type);
729 		break;
730 	}
731 
732 	return 0;
733 }
734 
735 static int sppctl_gpio_request_enable(struct pinctrl_dev *pctldev,
736 				      struct pinctrl_gpio_range *range, unsigned int offset)
737 {
738 	struct sppctl_pdata *pctl = pinctrl_dev_get_drvdata(pctldev);
739 	int g_f, g_m;
740 
741 	g_f = sppctl_first_get(&pctl->spp_gchip->chip, offset);
742 	g_m = sppctl_master_get(&pctl->spp_gchip->chip, offset);
743 	if (g_f == mux_f_gpio && g_m == mux_m_gpio)
744 		return 0;
745 
746 	sppctl_first_master_set(&pctl->spp_gchip->chip, offset, mux_f_gpio, mux_m_gpio);
747 	return 0;
748 }
749 
750 static const struct pinmux_ops sppctl_pinmux_ops = {
751 	.get_functions_count = sppctl_get_functions_count,
752 	.get_function_name   = sppctl_get_function_name,
753 	.get_function_groups = sppctl_get_function_groups,
754 	.set_mux             = sppctl_set_mux,
755 	.gpio_request_enable = sppctl_gpio_request_enable,
756 	.strict              = true,
757 };
758 
759 static int sppctl_get_groups_count(struct pinctrl_dev *pctldev)
760 {
761 	struct sppctl_pdata *pctl = pinctrl_dev_get_drvdata(pctldev);
762 
763 	return pctl->unq_grps_sz;
764 }
765 
766 static const char *sppctl_get_group_name(struct pinctrl_dev *pctldev, unsigned int selector)
767 {
768 	struct sppctl_pdata *pctl = pinctrl_dev_get_drvdata(pctldev);
769 
770 	return pctl->unq_grps[selector];
771 }
772 
773 static int sppctl_get_group_pins(struct pinctrl_dev *pctldev, unsigned int selector,
774 				 const unsigned int **pins, unsigned int *num_pins)
775 {
776 	struct sppctl_pdata *pctl = pinctrl_dev_get_drvdata(pctldev);
777 	struct grp2fp_map g2fpm = pctl->g2fp_maps[selector];
778 	const struct sppctl_func *f;
779 
780 	f = &sppctl_list_funcs[g2fpm.f_idx];
781 	*num_pins = 0;
782 
783 	/* Except group-pinmux, each group has 1 pin. */
784 	if (f->type != pinmux_type_grp) {
785 		*num_pins = 1;
786 		*pins = &sppctl_pins_gpio[selector];
787 		return 0;
788 	}
789 
790 	/* Group-pinmux may have more than one pin. */
791 	if (!f->grps)
792 		return 0;
793 
794 	if (f->gnum < 1)
795 		return 0;
796 
797 	*num_pins = f->grps[g2fpm.g_idx].pnum;
798 	*pins = f->grps[g2fpm.g_idx].pins;
799 
800 	return 0;
801 }
802 
803 #ifdef CONFIG_DEBUG_FS
804 static void sppctl_pin_dbg_show(struct pinctrl_dev *pctldev, struct seq_file *s,
805 				unsigned int offset)
806 {
807 	struct sppctl_pdata *pctl = pinctrl_dev_get_drvdata(pctldev);
808 	const char *pin_type;
809 	u8 first, master;
810 
811 	first = sppctl_first_get(&pctl->spp_gchip->chip, offset);
812 	master = sppctl_master_get(&pctl->spp_gchip->chip, offset);
813 	if (first)
814 		if (master)
815 			pin_type = "GPIO";
816 		else
817 			pin_type = " IOP";
818 	else
819 		pin_type = " MUX";
820 	seq_printf(s, " %s", pin_type);
821 }
822 #endif
823 
824 static int sppctl_dt_node_to_map(struct pinctrl_dev *pctldev, struct device_node *np_config,
825 				 struct pinctrl_map **map, unsigned int *num_maps)
826 {
827 	struct sppctl_pdata *pctl = pinctrl_dev_get_drvdata(pctldev);
828 	int nmG = of_property_count_strings(np_config, "groups");
829 	const struct sppctl_func *f = NULL;
830 	u8 pin_num, pin_type, pin_func;
831 	struct device_node *parent;
832 	unsigned long *configs;
833 	struct property *prop;
834 	const char *s_f, *s_g;
835 
836 	const __be32 *list;
837 	u32 dt_pin, dt_fun;
838 	int i, size = 0;
839 
840 	list = of_get_property(np_config, "sunplus,pins", &size);
841 
842 	if (nmG <= 0)
843 		nmG = 0;
844 
845 	parent = of_get_parent(np_config);
846 	*num_maps = size / sizeof(*list);
847 
848 	/*
849 	 * Process property:
850 	 *     sunplus,pins = < u32 u32 u32 ... >;
851 	 *
852 	 * Each 32-bit integer defines a individual pin in which:
853 	 *
854 	 *   Bit 32~24: defines GPIO pin number. Its range is 0 ~ 98.
855 	 *   Bit 23~16: defines types: (1) fully-pinmux pins
856 	 *                             (2) IO processor pins
857 	 *                             (3) digital GPIO pins
858 	 *   Bit 15~8:  defines pins of peripherals (which are defined in
859 	 *              'include/dt-binging/pinctrl/sppctl.h').
860 	 *   Bit 7~0:   defines types or initial-state of digital GPIO pins.
861 	 */
862 	for (i = 0; i < (*num_maps); i++) {
863 		dt_pin = be32_to_cpu(list[i]);
864 		pin_num = FIELD_GET(GENMASK(31, 24), dt_pin);
865 
866 		if (pin_num >= sppctl_pins_all_sz) {
867 			dev_err(pctldev->dev, "Invalid pin property at index %d (0x%08x)\n",
868 				i, dt_pin);
869 			return -EINVAL;
870 		}
871 	}
872 
873 	*map = kcalloc(*num_maps + nmG, sizeof(**map), GFP_KERNEL);
874 	if (*map == NULL)
875 		return -ENOMEM;
876 
877 	for (i = 0; i < (*num_maps); i++) {
878 		dt_pin = be32_to_cpu(list[i]);
879 		pin_num = FIELD_GET(GENMASK(31, 24), dt_pin);
880 		pin_type = FIELD_GET(GENMASK(23, 16), dt_pin);
881 		pin_func = FIELD_GET(GENMASK(15, 8), dt_pin);
882 		(*map)[i].name = parent->name;
883 
884 		if (pin_type == SPPCTL_PCTL_G_GPIO) {
885 			/* A digital GPIO pin */
886 			(*map)[i].type = PIN_MAP_TYPE_CONFIGS_PIN;
887 			(*map)[i].data.configs.num_configs = 1;
888 			(*map)[i].data.configs.group_or_pin = pin_get_name(pctldev, pin_num);
889 			configs = kmalloc(sizeof(*configs), GFP_KERNEL);
890 			*configs = FIELD_GET(GENMASK(7, 0), dt_pin);
891 			(*map)[i].data.configs.configs = configs;
892 
893 			dev_dbg(pctldev->dev, "%s: GPIO (%s)\n",
894 				(*map)[i].data.configs.group_or_pin,
895 				(*configs & (SPPCTL_PCTL_L_OUT | SPPCTL_PCTL_L_OU1)) ?
896 				"OUT" : "IN");
897 		} else if (pin_type == SPPCTL_PCTL_G_IOPP) {
898 			/* A IO Processor (IOP) pin */
899 			(*map)[i].type = PIN_MAP_TYPE_CONFIGS_PIN;
900 			(*map)[i].data.configs.num_configs = 1;
901 			(*map)[i].data.configs.group_or_pin = pin_get_name(pctldev, pin_num);
902 			configs = kmalloc(sizeof(*configs), GFP_KERNEL);
903 			*configs = SPPCTL_IOP_CONFIGS;
904 			(*map)[i].data.configs.configs = configs;
905 
906 			dev_dbg(pctldev->dev, "%s: IOP\n",
907 				(*map)[i].data.configs.group_or_pin);
908 		} else {
909 			/* A fully-pinmux pin */
910 			(*map)[i].type = PIN_MAP_TYPE_MUX_GROUP;
911 			(*map)[i].data.mux.function = sppctl_list_funcs[pin_func].name;
912 			(*map)[i].data.mux.group = pin_get_name(pctldev, pin_num);
913 
914 			dev_dbg(pctldev->dev, "%s: %s\n", (*map)[i].data.mux.group,
915 				(*map)[i].data.mux.function);
916 		}
917 	}
918 
919 	/*
920 	 * Process properties:
921 	 *     function = "xxx";
922 	 *     groups = "yyy";
923 	 */
924 	if (nmG > 0 && of_property_read_string(np_config, "function", &s_f) == 0) {
925 		of_property_for_each_string(np_config, "groups", prop, s_g) {
926 			(*map)[*num_maps].type = PIN_MAP_TYPE_MUX_GROUP;
927 			(*map)[*num_maps].data.mux.function = s_f;
928 			(*map)[*num_maps].data.mux.group = s_g;
929 			(*num_maps)++;
930 
931 			dev_dbg(pctldev->dev, "%s: %s\n", s_f, s_g);
932 		}
933 	}
934 
935 	/*
936 	 * Process property:
937 	 *     sunplus,zerofunc = < u32 u32 u32 ...>
938 	 */
939 	list = of_get_property(np_config, "sunplus,zerofunc", &size);
940 	if (list) {
941 		for (i = 0; i < (size / sizeof(*list)); i++) {
942 			dt_fun = be32_to_cpu(list[i]);
943 			if (dt_fun >= sppctl_list_funcs_sz) {
944 				dev_err(pctldev->dev, "Zero-func %d out of range!\n",
945 					dt_fun);
946 				continue;
947 			}
948 
949 			f = &sppctl_list_funcs[dt_fun];
950 			switch (f->type) {
951 			case pinmux_type_fpmx:
952 				sppctl_func_set(pctl, dt_fun, 0);
953 				dev_dbg(pctldev->dev, "%s: No map\n", f->name);
954 				break;
955 
956 			case pinmux_type_grp:
957 				sppctl_gmx_set(pctl, f->roff, f->boff, f->blen, 0);
958 				dev_dbg(pctldev->dev, "%s: No map\n", f->name);
959 				break;
960 
961 			default:
962 				dev_err(pctldev->dev, "Wrong zero-group: %d (%s)\n",
963 					dt_fun, f->name);
964 				break;
965 			}
966 		}
967 	}
968 
969 	of_node_put(parent);
970 	dev_dbg(pctldev->dev, "%d pins mapped\n", *num_maps);
971 	return 0;
972 }
973 
974 static const struct pinctrl_ops sppctl_pctl_ops = {
975 	.get_groups_count = sppctl_get_groups_count,
976 	.get_group_name   = sppctl_get_group_name,
977 	.get_group_pins   = sppctl_get_group_pins,
978 #ifdef CONFIG_DEBUG_FS
979 	.pin_dbg_show     = sppctl_pin_dbg_show,
980 #endif
981 	.dt_node_to_map   = sppctl_dt_node_to_map,
982 	.dt_free_map      = pinctrl_utils_free_map,
983 };
984 
985 static int sppctl_group_groups(struct platform_device *pdev)
986 {
987 	struct sppctl_pdata *sppctl = platform_get_drvdata(pdev);
988 	int i, k, j;
989 
990 	/* Calculate number of total group (GPIO + group-pinmux group). */
991 	sppctl->unq_grps_sz = sppctl_gpio_list_sz;
992 	for (i = 0; i < sppctl_list_funcs_sz; i++)
993 		if (sppctl_list_funcs[i].type == pinmux_type_grp)
994 			sppctl->unq_grps_sz += sppctl_list_funcs[i].gnum;
995 
996 	sppctl->unq_grps = devm_kcalloc(&pdev->dev, sppctl->unq_grps_sz + 1,
997 					sizeof(*sppctl->unq_grps), GFP_KERNEL);
998 	if (!sppctl->unq_grps)
999 		return -ENOMEM;
1000 
1001 	sppctl->g2fp_maps = devm_kcalloc(&pdev->dev, sppctl->unq_grps_sz + 1,
1002 					 sizeof(*sppctl->g2fp_maps), GFP_KERNEL);
1003 	if (!sppctl->g2fp_maps)
1004 		return -ENOMEM;
1005 
1006 	/* Add GPIO pins. */
1007 	for (i = 0; i < sppctl_gpio_list_sz; i++) {
1008 		sppctl->unq_grps[i] = sppctl_gpio_list_s[i];
1009 		sppctl->g2fp_maps[i].f_idx = 0;
1010 		sppctl->g2fp_maps[i].g_idx = i;
1011 	}
1012 
1013 	/* Add group-pinmux to end of GPIO pins. */
1014 	j = sppctl_gpio_list_sz;
1015 	for (i = 0; i < sppctl_list_funcs_sz; i++) {
1016 		if (sppctl_list_funcs[i].type != pinmux_type_grp)
1017 			continue;
1018 
1019 		for (k = 0; k < sppctl_list_funcs[i].gnum; k++) {
1020 			sppctl->unq_grps[j] = sppctl_list_funcs[i].grps[k].name;
1021 			sppctl->g2fp_maps[j].f_idx = i;
1022 			sppctl->g2fp_maps[j].g_idx = k;
1023 			j++;
1024 		}
1025 	}
1026 
1027 	return 0;
1028 }
1029 
1030 static int sppctl_pinctrl_init(struct platform_device *pdev)
1031 {
1032 	struct sppctl_pdata *sppctl = platform_get_drvdata(pdev);
1033 	int err;
1034 
1035 	sppctl->pctl_desc.owner   = THIS_MODULE;
1036 	sppctl->pctl_desc.name    = dev_name(&pdev->dev);
1037 	sppctl->pctl_desc.pins    = sppctl_pins_all;
1038 	sppctl->pctl_desc.npins   = sppctl_pins_all_sz;
1039 	sppctl->pctl_desc.pctlops = &sppctl_pctl_ops;
1040 	sppctl->pctl_desc.confops = &sppctl_pconf_ops;
1041 	sppctl->pctl_desc.pmxops  = &sppctl_pinmux_ops;
1042 
1043 	err = sppctl_group_groups(pdev);
1044 	if (err)
1045 		return err;
1046 
1047 	err = devm_pinctrl_register_and_init(&pdev->dev, &sppctl->pctl_desc,
1048 					     sppctl, &sppctl->pctl_dev);
1049 	if (err)
1050 		return dev_err_probe(&pdev->dev, err, "Failed to register pinctrl!\n");
1051 
1052 	pinctrl_enable(sppctl->pctl_dev);
1053 	return 0;
1054 }
1055 
1056 static int sppctl_resource_map(struct platform_device *pdev, struct sppctl_pdata *sppctl)
1057 {
1058 	sppctl->moon2_base = devm_platform_ioremap_resource_byname(pdev, "moon2");
1059 	if (IS_ERR(sppctl->moon2_base))
1060 		return PTR_ERR(sppctl->moon2_base);
1061 
1062 	sppctl->gpioxt_base = devm_platform_ioremap_resource_byname(pdev, "gpioxt");
1063 	if (IS_ERR(sppctl->gpioxt_base))
1064 		return PTR_ERR(sppctl->gpioxt_base);
1065 
1066 	sppctl->first_base = devm_platform_ioremap_resource_byname(pdev, "first");
1067 	if (IS_ERR(sppctl->first_base))
1068 		return PTR_ERR(sppctl->first_base);
1069 
1070 	sppctl->moon1_base = devm_platform_ioremap_resource_byname(pdev, "moon1");
1071 	if (IS_ERR(sppctl->moon1_base))
1072 		return PTR_ERR(sppctl->moon1_base);
1073 
1074 	return 0;
1075 }
1076 
1077 static int sppctl_probe(struct platform_device *pdev)
1078 {
1079 	struct sppctl_pdata *sppctl;
1080 	int ret;
1081 
1082 	sppctl = devm_kzalloc(&pdev->dev, sizeof(*sppctl), GFP_KERNEL);
1083 	if (!sppctl)
1084 		return -ENOMEM;
1085 	platform_set_drvdata(pdev, sppctl);
1086 
1087 	ret = sppctl_resource_map(pdev, sppctl);
1088 	if (ret)
1089 		return ret;
1090 
1091 	ret = sppctl_gpio_new(pdev, sppctl);
1092 	if (ret)
1093 		return ret;
1094 
1095 	ret = sppctl_pinctrl_init(pdev);
1096 	if (ret)
1097 		return ret;
1098 
1099 	pinctrl_add_gpio_range(sppctl->pctl_dev, &sppctl->pctl_grange);
1100 
1101 	return 0;
1102 }
1103 
1104 static const struct of_device_id sppctl_match_table[] = {
1105 	{ .compatible = "sunplus,sp7021-pctl" },
1106 	{ /* sentinel */ }
1107 };
1108 
1109 static struct platform_driver sppctl_pinctrl_driver = {
1110 	.driver = {
1111 		.name           = SPPCTL_MODULE_NAME,
1112 		.of_match_table = sppctl_match_table,
1113 	},
1114 	.probe  = sppctl_probe,
1115 };
1116 builtin_platform_driver(sppctl_pinctrl_driver)
1117 
1118 MODULE_AUTHOR("Dvorkin Dmitry <dvorkin@tibbo.com>");
1119 MODULE_AUTHOR("Wells Lu <wellslutw@gmail.com>");
1120 MODULE_DESCRIPTION("Sunplus SP7021 Pin Control and GPIO driver");
1121 MODULE_LICENSE("GPL v2");
1122