1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright (c) 2014,2015 AMD Corporation.
6 * Authors: Ken Xue <Ken.Xue@amd.com>
7 * Wu, Jeff <Jeff.Wu@amd.com>
9 * Contact Information: Nehal Shah <Nehal-bakulchandra.Shah@amd.com>
10 * Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13 #include <linux/err.h>
14 #include <linux/bug.h>
15 #include <linux/kernel.h>
16 #include <linux/module.h>
17 #include <linux/spinlock.h>
18 #include <linux/compiler.h>
19 #include <linux/types.h>
20 #include <linux/errno.h>
21 #include <linux/log2.h>
23 #include <linux/gpio/driver.h>
24 #include <linux/slab.h>
25 #include <linux/platform_device.h>
26 #include <linux/mutex.h>
27 #include <linux/acpi.h>
28 #include <linux/seq_file.h>
29 #include <linux/interrupt.h>
30 #include <linux/list.h>
31 #include <linux/bitops.h>
32 #include <linux/pinctrl/pinconf.h>
33 #include <linux/pinctrl/pinconf-generic.h>
36 #include "pinctrl-utils.h"
37 #include "pinctrl-amd.h"
39 static int amd_gpio_get_direction(struct gpio_chip
*gc
, unsigned offset
)
43 struct amd_gpio
*gpio_dev
= gpiochip_get_data(gc
);
45 raw_spin_lock_irqsave(&gpio_dev
->lock
, flags
);
46 pin_reg
= readl(gpio_dev
->base
+ offset
* 4);
47 raw_spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
49 return !(pin_reg
& BIT(OUTPUT_ENABLE_OFF
));
52 static int amd_gpio_direction_input(struct gpio_chip
*gc
, unsigned offset
)
56 struct amd_gpio
*gpio_dev
= gpiochip_get_data(gc
);
58 raw_spin_lock_irqsave(&gpio_dev
->lock
, flags
);
59 pin_reg
= readl(gpio_dev
->base
+ offset
* 4);
60 pin_reg
&= ~BIT(OUTPUT_ENABLE_OFF
);
61 writel(pin_reg
, gpio_dev
->base
+ offset
* 4);
62 raw_spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
67 static int amd_gpio_direction_output(struct gpio_chip
*gc
, unsigned offset
,
72 struct amd_gpio
*gpio_dev
= gpiochip_get_data(gc
);
74 raw_spin_lock_irqsave(&gpio_dev
->lock
, flags
);
75 pin_reg
= readl(gpio_dev
->base
+ offset
* 4);
76 pin_reg
|= BIT(OUTPUT_ENABLE_OFF
);
78 pin_reg
|= BIT(OUTPUT_VALUE_OFF
);
80 pin_reg
&= ~BIT(OUTPUT_VALUE_OFF
);
81 writel(pin_reg
, gpio_dev
->base
+ offset
* 4);
82 raw_spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
87 static int amd_gpio_get_value(struct gpio_chip
*gc
, unsigned offset
)
91 struct amd_gpio
*gpio_dev
= gpiochip_get_data(gc
);
93 raw_spin_lock_irqsave(&gpio_dev
->lock
, flags
);
94 pin_reg
= readl(gpio_dev
->base
+ offset
* 4);
95 raw_spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
97 return !!(pin_reg
& BIT(PIN_STS_OFF
));
100 static void amd_gpio_set_value(struct gpio_chip
*gc
, unsigned offset
, int value
)
104 struct amd_gpio
*gpio_dev
= gpiochip_get_data(gc
);
106 raw_spin_lock_irqsave(&gpio_dev
->lock
, flags
);
107 pin_reg
= readl(gpio_dev
->base
+ offset
* 4);
109 pin_reg
|= BIT(OUTPUT_VALUE_OFF
);
111 pin_reg
&= ~BIT(OUTPUT_VALUE_OFF
);
112 writel(pin_reg
, gpio_dev
->base
+ offset
* 4);
113 raw_spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
116 static int amd_gpio_set_debounce(struct gpio_chip
*gc
, unsigned offset
,
123 struct amd_gpio
*gpio_dev
= gpiochip_get_data(gc
);
125 raw_spin_lock_irqsave(&gpio_dev
->lock
, flags
);
126 pin_reg
= readl(gpio_dev
->base
+ offset
* 4);
129 pin_reg
|= DB_TYPE_REMOVE_GLITCH
<< DB_CNTRL_OFF
;
130 pin_reg
&= ~DB_TMR_OUT_MASK
;
132 Debounce Debounce Timer Max
133 TmrLarge TmrOutUnit Unit Debounce
135 0 0 61 usec (2 RtcClk) 976 usec
136 0 1 244 usec (8 RtcClk) 3.9 msec
137 1 0 15.6 msec (512 RtcClk) 250 msec
138 1 1 62.5 msec (2048 RtcClk) 1 sec
143 pin_reg
&= ~BIT(DB_TMR_OUT_UNIT_OFF
);
144 pin_reg
&= ~BIT(DB_TMR_LARGE_OFF
);
145 } else if (debounce
< 976) {
146 time
= debounce
/ 61;
147 pin_reg
|= time
& DB_TMR_OUT_MASK
;
148 pin_reg
&= ~BIT(DB_TMR_OUT_UNIT_OFF
);
149 pin_reg
&= ~BIT(DB_TMR_LARGE_OFF
);
150 } else if (debounce
< 3900) {
151 time
= debounce
/ 244;
152 pin_reg
|= time
& DB_TMR_OUT_MASK
;
153 pin_reg
|= BIT(DB_TMR_OUT_UNIT_OFF
);
154 pin_reg
&= ~BIT(DB_TMR_LARGE_OFF
);
155 } else if (debounce
< 250000) {
156 time
= debounce
/ 15600;
157 pin_reg
|= time
& DB_TMR_OUT_MASK
;
158 pin_reg
&= ~BIT(DB_TMR_OUT_UNIT_OFF
);
159 pin_reg
|= BIT(DB_TMR_LARGE_OFF
);
160 } else if (debounce
< 1000000) {
161 time
= debounce
/ 62500;
162 pin_reg
|= time
& DB_TMR_OUT_MASK
;
163 pin_reg
|= BIT(DB_TMR_OUT_UNIT_OFF
);
164 pin_reg
|= BIT(DB_TMR_LARGE_OFF
);
166 pin_reg
&= ~DB_CNTRl_MASK
;
170 pin_reg
&= ~BIT(DB_TMR_OUT_UNIT_OFF
);
171 pin_reg
&= ~BIT(DB_TMR_LARGE_OFF
);
172 pin_reg
&= ~DB_TMR_OUT_MASK
;
173 pin_reg
&= ~DB_CNTRl_MASK
;
175 writel(pin_reg
, gpio_dev
->base
+ offset
* 4);
176 raw_spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
181 static int amd_gpio_set_config(struct gpio_chip
*gc
, unsigned offset
,
182 unsigned long config
)
186 if (pinconf_to_config_param(config
) != PIN_CONFIG_INPUT_DEBOUNCE
)
189 debounce
= pinconf_to_config_argument(config
);
190 return amd_gpio_set_debounce(gc
, offset
, debounce
);
193 #ifdef CONFIG_DEBUG_FS
194 static void amd_gpio_dbg_show(struct seq_file
*s
, struct gpio_chip
*gc
)
198 unsigned int bank
, i
, pin_num
;
199 struct amd_gpio
*gpio_dev
= gpiochip_get_data(gc
);
203 char *interrupt_enable
;
204 char *interrupt_mask
;
210 char *pull_up_enable
;
211 char *pull_down_enable
;
215 for (bank
= 0; bank
< gpio_dev
->hwbank_num
; bank
++) {
216 seq_printf(s
, "GPIO bank%d\t", bank
);
221 pin_num
= AMD_GPIO_PINS_BANK0
;
225 pin_num
= AMD_GPIO_PINS_BANK1
+ i
;
229 pin_num
= AMD_GPIO_PINS_BANK2
+ i
;
233 pin_num
= AMD_GPIO_PINS_BANK3
+ i
;
236 /* Illegal bank number, ignore */
239 for (; i
< pin_num
; i
++) {
240 seq_printf(s
, "pin%d\t", i
);
241 raw_spin_lock_irqsave(&gpio_dev
->lock
, flags
);
242 pin_reg
= readl(gpio_dev
->base
+ i
* 4);
243 raw_spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
245 if (pin_reg
& BIT(INTERRUPT_ENABLE_OFF
)) {
246 u8 level
= (pin_reg
>> ACTIVE_LEVEL_OFF
) &
248 interrupt_enable
= "interrupt is enabled|";
250 if (level
== ACTIVE_LEVEL_HIGH
)
251 active_level
= "Active high|";
252 else if (level
== ACTIVE_LEVEL_LOW
)
253 active_level
= "Active low|";
254 else if (!(pin_reg
& BIT(LEVEL_TRIG_OFF
)) &&
255 level
== ACTIVE_LEVEL_BOTH
)
256 active_level
= "Active on both|";
258 active_level
= "Unknown Active level|";
260 if (pin_reg
& BIT(LEVEL_TRIG_OFF
))
261 level_trig
= "Level trigger|";
263 level_trig
= "Edge trigger|";
267 "interrupt is disabled|";
272 if (pin_reg
& BIT(INTERRUPT_MASK_OFF
))
274 "interrupt is unmasked|";
277 "interrupt is masked|";
279 if (pin_reg
& BIT(WAKE_CNTRL_OFF_S0I3
))
280 wake_cntrl0
= "enable wakeup in S0i3 state|";
282 wake_cntrl0
= "disable wakeup in S0i3 state|";
284 if (pin_reg
& BIT(WAKE_CNTRL_OFF_S3
))
285 wake_cntrl1
= "enable wakeup in S3 state|";
287 wake_cntrl1
= "disable wakeup in S3 state|";
289 if (pin_reg
& BIT(WAKE_CNTRL_OFF_S4
))
290 wake_cntrl2
= "enable wakeup in S4/S5 state|";
292 wake_cntrl2
= "disable wakeup in S4/S5 state|";
294 if (pin_reg
& BIT(PULL_UP_ENABLE_OFF
)) {
295 pull_up_enable
= "pull-up is enabled|";
296 if (pin_reg
& BIT(PULL_UP_SEL_OFF
))
297 pull_up_sel
= "8k pull-up|";
299 pull_up_sel
= "4k pull-up|";
301 pull_up_enable
= "pull-up is disabled|";
305 if (pin_reg
& BIT(PULL_DOWN_ENABLE_OFF
))
306 pull_down_enable
= "pull-down is enabled|";
308 pull_down_enable
= "Pull-down is disabled|";
310 if (pin_reg
& BIT(OUTPUT_ENABLE_OFF
)) {
312 output_enable
= "output is enabled|";
313 if (pin_reg
& BIT(OUTPUT_VALUE_OFF
))
314 output_value
= "output is high|";
316 output_value
= "output is low|";
318 output_enable
= "output is disabled|";
321 if (pin_reg
& BIT(PIN_STS_OFF
))
322 pin_sts
= "input is high|";
324 pin_sts
= "input is low|";
327 seq_printf(s
, "%s %s %s %s %s %s\n"
328 " %s %s %s %s %s %s %s 0x%x\n",
329 level_trig
, active_level
, interrupt_enable
,
330 interrupt_mask
, wake_cntrl0
, wake_cntrl1
,
331 wake_cntrl2
, pin_sts
, pull_up_sel
,
332 pull_up_enable
, pull_down_enable
,
333 output_value
, output_enable
, pin_reg
);
338 #define amd_gpio_dbg_show NULL
341 static void amd_gpio_irq_enable(struct irq_data
*d
)
345 struct gpio_chip
*gc
= irq_data_get_irq_chip_data(d
);
346 struct amd_gpio
*gpio_dev
= gpiochip_get_data(gc
);
348 raw_spin_lock_irqsave(&gpio_dev
->lock
, flags
);
349 pin_reg
= readl(gpio_dev
->base
+ (d
->hwirq
)*4);
350 pin_reg
|= BIT(INTERRUPT_ENABLE_OFF
);
351 pin_reg
|= BIT(INTERRUPT_MASK_OFF
);
352 writel(pin_reg
, gpio_dev
->base
+ (d
->hwirq
)*4);
353 raw_spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
356 static void amd_gpio_irq_disable(struct irq_data
*d
)
360 struct gpio_chip
*gc
= irq_data_get_irq_chip_data(d
);
361 struct amd_gpio
*gpio_dev
= gpiochip_get_data(gc
);
363 raw_spin_lock_irqsave(&gpio_dev
->lock
, flags
);
364 pin_reg
= readl(gpio_dev
->base
+ (d
->hwirq
)*4);
365 pin_reg
&= ~BIT(INTERRUPT_ENABLE_OFF
);
366 pin_reg
&= ~BIT(INTERRUPT_MASK_OFF
);
367 writel(pin_reg
, gpio_dev
->base
+ (d
->hwirq
)*4);
368 raw_spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
371 static void amd_gpio_irq_mask(struct irq_data
*d
)
375 struct gpio_chip
*gc
= irq_data_get_irq_chip_data(d
);
376 struct amd_gpio
*gpio_dev
= gpiochip_get_data(gc
);
378 raw_spin_lock_irqsave(&gpio_dev
->lock
, flags
);
379 pin_reg
= readl(gpio_dev
->base
+ (d
->hwirq
)*4);
380 pin_reg
&= ~BIT(INTERRUPT_MASK_OFF
);
381 writel(pin_reg
, gpio_dev
->base
+ (d
->hwirq
)*4);
382 raw_spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
385 static void amd_gpio_irq_unmask(struct irq_data
*d
)
389 struct gpio_chip
*gc
= irq_data_get_irq_chip_data(d
);
390 struct amd_gpio
*gpio_dev
= gpiochip_get_data(gc
);
392 raw_spin_lock_irqsave(&gpio_dev
->lock
, flags
);
393 pin_reg
= readl(gpio_dev
->base
+ (d
->hwirq
)*4);
394 pin_reg
|= BIT(INTERRUPT_MASK_OFF
);
395 writel(pin_reg
, gpio_dev
->base
+ (d
->hwirq
)*4);
396 raw_spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
399 static void amd_gpio_irq_eoi(struct irq_data
*d
)
403 struct gpio_chip
*gc
= irq_data_get_irq_chip_data(d
);
404 struct amd_gpio
*gpio_dev
= gpiochip_get_data(gc
);
406 raw_spin_lock_irqsave(&gpio_dev
->lock
, flags
);
407 reg
= readl(gpio_dev
->base
+ WAKE_INT_MASTER_REG
);
409 writel(reg
, gpio_dev
->base
+ WAKE_INT_MASTER_REG
);
410 raw_spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
413 static int amd_gpio_irq_set_type(struct irq_data
*d
, unsigned int type
)
416 u32 pin_reg
, pin_reg_irq_en
, mask
;
417 unsigned long flags
, irq_flags
;
418 struct gpio_chip
*gc
= irq_data_get_irq_chip_data(d
);
419 struct amd_gpio
*gpio_dev
= gpiochip_get_data(gc
);
421 raw_spin_lock_irqsave(&gpio_dev
->lock
, flags
);
422 pin_reg
= readl(gpio_dev
->base
+ (d
->hwirq
)*4);
424 /* Ignore the settings coming from the client and
425 * read the values from the ACPI tables
426 * while setting the trigger type
429 irq_flags
= irq_get_trigger_type(d
->irq
);
430 if (irq_flags
!= IRQ_TYPE_NONE
)
433 switch (type
& IRQ_TYPE_SENSE_MASK
) {
434 case IRQ_TYPE_EDGE_RISING
:
435 pin_reg
&= ~BIT(LEVEL_TRIG_OFF
);
436 pin_reg
&= ~(ACTIVE_LEVEL_MASK
<< ACTIVE_LEVEL_OFF
);
437 pin_reg
|= ACTIVE_HIGH
<< ACTIVE_LEVEL_OFF
;
438 pin_reg
|= DB_TYPE_REMOVE_GLITCH
<< DB_CNTRL_OFF
;
439 irq_set_handler_locked(d
, handle_edge_irq
);
442 case IRQ_TYPE_EDGE_FALLING
:
443 pin_reg
&= ~BIT(LEVEL_TRIG_OFF
);
444 pin_reg
&= ~(ACTIVE_LEVEL_MASK
<< ACTIVE_LEVEL_OFF
);
445 pin_reg
|= ACTIVE_LOW
<< ACTIVE_LEVEL_OFF
;
446 pin_reg
|= DB_TYPE_REMOVE_GLITCH
<< DB_CNTRL_OFF
;
447 irq_set_handler_locked(d
, handle_edge_irq
);
450 case IRQ_TYPE_EDGE_BOTH
:
451 pin_reg
&= ~BIT(LEVEL_TRIG_OFF
);
452 pin_reg
&= ~(ACTIVE_LEVEL_MASK
<< ACTIVE_LEVEL_OFF
);
453 pin_reg
|= BOTH_EADGE
<< ACTIVE_LEVEL_OFF
;
454 pin_reg
|= DB_TYPE_REMOVE_GLITCH
<< DB_CNTRL_OFF
;
455 irq_set_handler_locked(d
, handle_edge_irq
);
458 case IRQ_TYPE_LEVEL_HIGH
:
459 pin_reg
|= LEVEL_TRIGGER
<< LEVEL_TRIG_OFF
;
460 pin_reg
&= ~(ACTIVE_LEVEL_MASK
<< ACTIVE_LEVEL_OFF
);
461 pin_reg
|= ACTIVE_HIGH
<< ACTIVE_LEVEL_OFF
;
462 pin_reg
&= ~(DB_CNTRl_MASK
<< DB_CNTRL_OFF
);
463 pin_reg
|= DB_TYPE_PRESERVE_LOW_GLITCH
<< DB_CNTRL_OFF
;
464 irq_set_handler_locked(d
, handle_level_irq
);
467 case IRQ_TYPE_LEVEL_LOW
:
468 pin_reg
|= LEVEL_TRIGGER
<< LEVEL_TRIG_OFF
;
469 pin_reg
&= ~(ACTIVE_LEVEL_MASK
<< ACTIVE_LEVEL_OFF
);
470 pin_reg
|= ACTIVE_LOW
<< ACTIVE_LEVEL_OFF
;
471 pin_reg
&= ~(DB_CNTRl_MASK
<< DB_CNTRL_OFF
);
472 pin_reg
|= DB_TYPE_PRESERVE_HIGH_GLITCH
<< DB_CNTRL_OFF
;
473 irq_set_handler_locked(d
, handle_level_irq
);
480 dev_err(&gpio_dev
->pdev
->dev
, "Invalid type value\n");
484 pin_reg
|= CLR_INTR_STAT
<< INTERRUPT_STS_OFF
;
486 * If WAKE_INT_MASTER_REG.MaskStsEn is set, a software write to the
487 * debounce registers of any GPIO will block wake/interrupt status
488 * generation for *all* GPIOs for a length of time that depends on
489 * WAKE_INT_MASTER_REG.MaskStsLength[11:0]. During this period the
490 * INTERRUPT_ENABLE bit will read as 0.
492 * We temporarily enable irq for the GPIO whose configuration is
493 * changing, and then wait for it to read back as 1 to know when
494 * debounce has settled and then disable the irq again.
495 * We do this polling with the spinlock held to ensure other GPIO
496 * access routines do not read an incorrect value for the irq enable
497 * bit of other GPIOs. We keep the GPIO masked while polling to avoid
498 * spurious irqs, and disable the irq again after polling.
500 mask
= BIT(INTERRUPT_ENABLE_OFF
);
501 pin_reg_irq_en
= pin_reg
;
502 pin_reg_irq_en
|= mask
;
503 pin_reg_irq_en
&= ~BIT(INTERRUPT_MASK_OFF
);
504 writel(pin_reg_irq_en
, gpio_dev
->base
+ (d
->hwirq
)*4);
505 while ((readl(gpio_dev
->base
+ (d
->hwirq
)*4) & mask
) != mask
)
507 writel(pin_reg
, gpio_dev
->base
+ (d
->hwirq
)*4);
508 raw_spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
513 static void amd_irq_ack(struct irq_data
*d
)
516 * based on HW design,there is no need to ack HW
517 * before handle current irq. But this routine is
518 * necessary for handle_edge_irq
522 static struct irq_chip amd_gpio_irqchip
= {
524 .irq_ack
= amd_irq_ack
,
525 .irq_enable
= amd_gpio_irq_enable
,
526 .irq_disable
= amd_gpio_irq_disable
,
527 .irq_mask
= amd_gpio_irq_mask
,
528 .irq_unmask
= amd_gpio_irq_unmask
,
529 .irq_eoi
= amd_gpio_irq_eoi
,
530 .irq_set_type
= amd_gpio_irq_set_type
,
531 .flags
= IRQCHIP_SKIP_SET_WAKE
,
534 #define PIN_IRQ_PENDING (BIT(INTERRUPT_STS_OFF) | BIT(WAKE_STS_OFF))
536 static irqreturn_t
amd_gpio_irq_handler(int irq
, void *dev_id
)
538 struct amd_gpio
*gpio_dev
= dev_id
;
539 struct gpio_chip
*gc
= &gpio_dev
->gc
;
540 irqreturn_t ret
= IRQ_NONE
;
541 unsigned int i
, irqnr
;
547 /* Read the wake status */
548 raw_spin_lock_irqsave(&gpio_dev
->lock
, flags
);
549 status
= readl(gpio_dev
->base
+ WAKE_INT_STATUS_REG1
);
551 status
|= readl(gpio_dev
->base
+ WAKE_INT_STATUS_REG0
);
552 raw_spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
554 /* Bit 0-45 contain the relevant status bits */
555 status
&= (1ULL << 46) - 1;
556 regs
= gpio_dev
->base
;
557 for (mask
= 1, irqnr
= 0; status
; mask
<<= 1, regs
+= 4, irqnr
+= 4) {
558 if (!(status
& mask
))
562 /* Each status bit covers four pins */
563 for (i
= 0; i
< 4; i
++) {
564 regval
= readl(regs
+ i
);
565 if (!(regval
& PIN_IRQ_PENDING
) ||
566 !(regval
& BIT(INTERRUPT_MASK_OFF
)))
568 irq
= irq_find_mapping(gc
->irq
.domain
, irqnr
+ i
);
570 generic_handle_irq(irq
);
573 * We must read the pin register again, in case the
574 * value was changed while executing
575 * generic_handle_irq() above.
576 * If we didn't find a mapping for the interrupt,
577 * disable it in order to avoid a system hang caused
578 * by an interrupt storm.
580 raw_spin_lock_irqsave(&gpio_dev
->lock
, flags
);
581 regval
= readl(regs
+ i
);
583 regval
&= ~BIT(INTERRUPT_ENABLE_OFF
);
584 dev_dbg(&gpio_dev
->pdev
->dev
,
585 "Disabling spurious GPIO IRQ %d\n",
588 writel(regval
, regs
+ i
);
589 raw_spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
594 /* Signal EOI to the GPIO unit */
595 raw_spin_lock_irqsave(&gpio_dev
->lock
, flags
);
596 regval
= readl(gpio_dev
->base
+ WAKE_INT_MASTER_REG
);
598 writel(regval
, gpio_dev
->base
+ WAKE_INT_MASTER_REG
);
599 raw_spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
604 static int amd_get_groups_count(struct pinctrl_dev
*pctldev
)
606 struct amd_gpio
*gpio_dev
= pinctrl_dev_get_drvdata(pctldev
);
608 return gpio_dev
->ngroups
;
611 static const char *amd_get_group_name(struct pinctrl_dev
*pctldev
,
614 struct amd_gpio
*gpio_dev
= pinctrl_dev_get_drvdata(pctldev
);
616 return gpio_dev
->groups
[group
].name
;
619 static int amd_get_group_pins(struct pinctrl_dev
*pctldev
,
621 const unsigned **pins
,
624 struct amd_gpio
*gpio_dev
= pinctrl_dev_get_drvdata(pctldev
);
626 *pins
= gpio_dev
->groups
[group
].pins
;
627 *num_pins
= gpio_dev
->groups
[group
].npins
;
631 static const struct pinctrl_ops amd_pinctrl_ops
= {
632 .get_groups_count
= amd_get_groups_count
,
633 .get_group_name
= amd_get_group_name
,
634 .get_group_pins
= amd_get_group_pins
,
636 .dt_node_to_map
= pinconf_generic_dt_node_to_map_group
,
637 .dt_free_map
= pinctrl_utils_free_map
,
641 static int amd_pinconf_get(struct pinctrl_dev
*pctldev
,
643 unsigned long *config
)
648 struct amd_gpio
*gpio_dev
= pinctrl_dev_get_drvdata(pctldev
);
649 enum pin_config_param param
= pinconf_to_config_param(*config
);
651 raw_spin_lock_irqsave(&gpio_dev
->lock
, flags
);
652 pin_reg
= readl(gpio_dev
->base
+ pin
*4);
653 raw_spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
655 case PIN_CONFIG_INPUT_DEBOUNCE
:
656 arg
= pin_reg
& DB_TMR_OUT_MASK
;
659 case PIN_CONFIG_BIAS_PULL_DOWN
:
660 arg
= (pin_reg
>> PULL_DOWN_ENABLE_OFF
) & BIT(0);
663 case PIN_CONFIG_BIAS_PULL_UP
:
664 arg
= (pin_reg
>> PULL_UP_SEL_OFF
) & (BIT(0) | BIT(1));
667 case PIN_CONFIG_DRIVE_STRENGTH
:
668 arg
= (pin_reg
>> DRV_STRENGTH_SEL_OFF
) & DRV_STRENGTH_SEL_MASK
;
672 dev_err(&gpio_dev
->pdev
->dev
, "Invalid config param %04x\n",
677 *config
= pinconf_to_config_packed(param
, arg
);
682 static int amd_pinconf_set(struct pinctrl_dev
*pctldev
, unsigned int pin
,
683 unsigned long *configs
, unsigned num_configs
)
690 enum pin_config_param param
;
691 struct amd_gpio
*gpio_dev
= pinctrl_dev_get_drvdata(pctldev
);
693 raw_spin_lock_irqsave(&gpio_dev
->lock
, flags
);
694 for (i
= 0; i
< num_configs
; i
++) {
695 param
= pinconf_to_config_param(configs
[i
]);
696 arg
= pinconf_to_config_argument(configs
[i
]);
697 pin_reg
= readl(gpio_dev
->base
+ pin
*4);
700 case PIN_CONFIG_INPUT_DEBOUNCE
:
701 pin_reg
&= ~DB_TMR_OUT_MASK
;
702 pin_reg
|= arg
& DB_TMR_OUT_MASK
;
705 case PIN_CONFIG_BIAS_PULL_DOWN
:
706 pin_reg
&= ~BIT(PULL_DOWN_ENABLE_OFF
);
707 pin_reg
|= (arg
& BIT(0)) << PULL_DOWN_ENABLE_OFF
;
710 case PIN_CONFIG_BIAS_PULL_UP
:
711 pin_reg
&= ~BIT(PULL_UP_SEL_OFF
);
712 pin_reg
|= (arg
& BIT(0)) << PULL_UP_SEL_OFF
;
713 pin_reg
&= ~BIT(PULL_UP_ENABLE_OFF
);
714 pin_reg
|= ((arg
>>1) & BIT(0)) << PULL_UP_ENABLE_OFF
;
717 case PIN_CONFIG_DRIVE_STRENGTH
:
718 pin_reg
&= ~(DRV_STRENGTH_SEL_MASK
719 << DRV_STRENGTH_SEL_OFF
);
720 pin_reg
|= (arg
& DRV_STRENGTH_SEL_MASK
)
721 << DRV_STRENGTH_SEL_OFF
;
725 dev_err(&gpio_dev
->pdev
->dev
,
726 "Invalid config param %04x\n", param
);
730 writel(pin_reg
, gpio_dev
->base
+ pin
*4);
732 raw_spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
737 static int amd_pinconf_group_get(struct pinctrl_dev
*pctldev
,
739 unsigned long *config
)
741 const unsigned *pins
;
745 ret
= amd_get_group_pins(pctldev
, group
, &pins
, &npins
);
749 if (amd_pinconf_get(pctldev
, pins
[0], config
))
755 static int amd_pinconf_group_set(struct pinctrl_dev
*pctldev
,
756 unsigned group
, unsigned long *configs
,
757 unsigned num_configs
)
759 const unsigned *pins
;
763 ret
= amd_get_group_pins(pctldev
, group
, &pins
, &npins
);
766 for (i
= 0; i
< npins
; i
++) {
767 if (amd_pinconf_set(pctldev
, pins
[i
], configs
, num_configs
))
773 static const struct pinconf_ops amd_pinconf_ops
= {
774 .pin_config_get
= amd_pinconf_get
,
775 .pin_config_set
= amd_pinconf_set
,
776 .pin_config_group_get
= amd_pinconf_group_get
,
777 .pin_config_group_set
= amd_pinconf_group_set
,
780 #ifdef CONFIG_PM_SLEEP
781 static bool amd_gpio_should_save(struct amd_gpio
*gpio_dev
, unsigned int pin
)
783 const struct pin_desc
*pd
= pin_desc_get(gpio_dev
->pctrl
, pin
);
789 * Only restore the pin if it is actually in use by the kernel (or
792 if (pd
->mux_owner
|| pd
->gpio_owner
||
793 gpiochip_line_is_irq(&gpio_dev
->gc
, pin
))
799 static int amd_gpio_suspend(struct device
*dev
)
801 struct amd_gpio
*gpio_dev
= dev_get_drvdata(dev
);
802 struct pinctrl_desc
*desc
= gpio_dev
->pctrl
->desc
;
805 for (i
= 0; i
< desc
->npins
; i
++) {
806 int pin
= desc
->pins
[i
].number
;
808 if (!amd_gpio_should_save(gpio_dev
, pin
))
811 gpio_dev
->saved_regs
[i
] = readl(gpio_dev
->base
+ pin
*4);
817 static int amd_gpio_resume(struct device
*dev
)
819 struct amd_gpio
*gpio_dev
= dev_get_drvdata(dev
);
820 struct pinctrl_desc
*desc
= gpio_dev
->pctrl
->desc
;
823 for (i
= 0; i
< desc
->npins
; i
++) {
824 int pin
= desc
->pins
[i
].number
;
826 if (!amd_gpio_should_save(gpio_dev
, pin
))
829 writel(gpio_dev
->saved_regs
[i
], gpio_dev
->base
+ pin
*4);
835 static const struct dev_pm_ops amd_gpio_pm_ops
= {
836 SET_LATE_SYSTEM_SLEEP_PM_OPS(amd_gpio_suspend
,
841 static struct pinctrl_desc amd_pinctrl_desc
= {
843 .npins
= ARRAY_SIZE(kerncz_pins
),
844 .pctlops
= &amd_pinctrl_ops
,
845 .confops
= &amd_pinconf_ops
,
846 .owner
= THIS_MODULE
,
849 static int amd_gpio_probe(struct platform_device
*pdev
)
853 struct resource
*res
;
854 struct amd_gpio
*gpio_dev
;
856 gpio_dev
= devm_kzalloc(&pdev
->dev
,
857 sizeof(struct amd_gpio
), GFP_KERNEL
);
861 raw_spin_lock_init(&gpio_dev
->lock
);
863 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
865 dev_err(&pdev
->dev
, "Failed to get gpio io resource.\n");
869 gpio_dev
->base
= devm_ioremap(&pdev
->dev
, res
->start
,
874 irq_base
= platform_get_irq(pdev
, 0);
878 #ifdef CONFIG_PM_SLEEP
879 gpio_dev
->saved_regs
= devm_kcalloc(&pdev
->dev
, amd_pinctrl_desc
.npins
,
880 sizeof(*gpio_dev
->saved_regs
),
882 if (!gpio_dev
->saved_regs
)
886 gpio_dev
->pdev
= pdev
;
887 gpio_dev
->gc
.get_direction
= amd_gpio_get_direction
;
888 gpio_dev
->gc
.direction_input
= amd_gpio_direction_input
;
889 gpio_dev
->gc
.direction_output
= amd_gpio_direction_output
;
890 gpio_dev
->gc
.get
= amd_gpio_get_value
;
891 gpio_dev
->gc
.set
= amd_gpio_set_value
;
892 gpio_dev
->gc
.set_config
= amd_gpio_set_config
;
893 gpio_dev
->gc
.dbg_show
= amd_gpio_dbg_show
;
895 gpio_dev
->gc
.base
= -1;
896 gpio_dev
->gc
.label
= pdev
->name
;
897 gpio_dev
->gc
.owner
= THIS_MODULE
;
898 gpio_dev
->gc
.parent
= &pdev
->dev
;
899 gpio_dev
->gc
.ngpio
= resource_size(res
) / 4;
900 #if defined(CONFIG_OF_GPIO)
901 gpio_dev
->gc
.of_node
= pdev
->dev
.of_node
;
904 gpio_dev
->hwbank_num
= gpio_dev
->gc
.ngpio
/ 64;
905 gpio_dev
->groups
= kerncz_groups
;
906 gpio_dev
->ngroups
= ARRAY_SIZE(kerncz_groups
);
908 amd_pinctrl_desc
.name
= dev_name(&pdev
->dev
);
909 gpio_dev
->pctrl
= devm_pinctrl_register(&pdev
->dev
, &amd_pinctrl_desc
,
911 if (IS_ERR(gpio_dev
->pctrl
)) {
912 dev_err(&pdev
->dev
, "Couldn't register pinctrl driver\n");
913 return PTR_ERR(gpio_dev
->pctrl
);
916 ret
= gpiochip_add_data(&gpio_dev
->gc
, gpio_dev
);
920 ret
= gpiochip_add_pin_range(&gpio_dev
->gc
, dev_name(&pdev
->dev
),
921 0, 0, gpio_dev
->gc
.ngpio
);
923 dev_err(&pdev
->dev
, "Failed to add pin range\n");
927 ret
= gpiochip_irqchip_add(&gpio_dev
->gc
,
933 dev_err(&pdev
->dev
, "could not add irqchip\n");
938 ret
= devm_request_irq(&pdev
->dev
, irq_base
, amd_gpio_irq_handler
,
939 IRQF_SHARED
, KBUILD_MODNAME
, gpio_dev
);
943 platform_set_drvdata(pdev
, gpio_dev
);
945 dev_dbg(&pdev
->dev
, "amd gpio driver loaded\n");
949 gpiochip_remove(&gpio_dev
->gc
);
954 static int amd_gpio_remove(struct platform_device
*pdev
)
956 struct amd_gpio
*gpio_dev
;
958 gpio_dev
= platform_get_drvdata(pdev
);
960 gpiochip_remove(&gpio_dev
->gc
);
965 static const struct acpi_device_id amd_gpio_acpi_match
[] = {
970 MODULE_DEVICE_TABLE(acpi
, amd_gpio_acpi_match
);
972 static struct platform_driver amd_gpio_driver
= {
975 .acpi_match_table
= ACPI_PTR(amd_gpio_acpi_match
),
976 #ifdef CONFIG_PM_SLEEP
977 .pm
= &amd_gpio_pm_ops
,
980 .probe
= amd_gpio_probe
,
981 .remove
= amd_gpio_remove
,
984 module_platform_driver(amd_gpio_driver
);
986 MODULE_LICENSE("GPL v2");
987 MODULE_AUTHOR("Ken Xue <Ken.Xue@amd.com>, Jeff Wu <Jeff.Wu@amd.com>");
988 MODULE_DESCRIPTION("AMD GPIO pinctrl driver");