4 * Copyright (c) 2014,2015 AMD Corporation.
5 * Authors: Ken Xue <Ken.Xue@amd.com>
6 * Wu, Jeff <Jeff.Wu@amd.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms and conditions of the GNU General Public License,
10 * version 2, as published by the Free Software Foundation.
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.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>
35 #include "pinctrl-utils.h"
36 #include "pinctrl-amd.h"
38 static int amd_gpio_direction_input(struct gpio_chip
*gc
, unsigned offset
)
42 struct amd_gpio
*gpio_dev
= gpiochip_get_data(gc
);
44 spin_lock_irqsave(&gpio_dev
->lock
, flags
);
45 pin_reg
= readl(gpio_dev
->base
+ offset
* 4);
46 pin_reg
&= ~BIT(OUTPUT_ENABLE_OFF
);
47 writel(pin_reg
, gpio_dev
->base
+ offset
* 4);
48 spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
53 static int amd_gpio_direction_output(struct gpio_chip
*gc
, unsigned offset
,
58 struct amd_gpio
*gpio_dev
= gpiochip_get_data(gc
);
60 spin_lock_irqsave(&gpio_dev
->lock
, flags
);
61 pin_reg
= readl(gpio_dev
->base
+ offset
* 4);
62 pin_reg
|= BIT(OUTPUT_ENABLE_OFF
);
64 pin_reg
|= BIT(OUTPUT_VALUE_OFF
);
66 pin_reg
&= ~BIT(OUTPUT_VALUE_OFF
);
67 writel(pin_reg
, gpio_dev
->base
+ offset
* 4);
68 spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
73 static int amd_gpio_get_value(struct gpio_chip
*gc
, unsigned offset
)
77 struct amd_gpio
*gpio_dev
= gpiochip_get_data(gc
);
79 spin_lock_irqsave(&gpio_dev
->lock
, flags
);
80 pin_reg
= readl(gpio_dev
->base
+ offset
* 4);
81 spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
83 return !!(pin_reg
& BIT(PIN_STS_OFF
));
86 static void amd_gpio_set_value(struct gpio_chip
*gc
, unsigned offset
, int value
)
90 struct amd_gpio
*gpio_dev
= gpiochip_get_data(gc
);
92 spin_lock_irqsave(&gpio_dev
->lock
, flags
);
93 pin_reg
= readl(gpio_dev
->base
+ offset
* 4);
95 pin_reg
|= BIT(OUTPUT_VALUE_OFF
);
97 pin_reg
&= ~BIT(OUTPUT_VALUE_OFF
);
98 writel(pin_reg
, gpio_dev
->base
+ offset
* 4);
99 spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
102 static int amd_gpio_set_debounce(struct gpio_chip
*gc
, unsigned offset
,
109 struct amd_gpio
*gpio_dev
= gpiochip_get_data(gc
);
111 spin_lock_irqsave(&gpio_dev
->lock
, flags
);
112 pin_reg
= readl(gpio_dev
->base
+ offset
* 4);
115 pin_reg
|= DB_TYPE_REMOVE_GLITCH
<< DB_CNTRL_OFF
;
116 pin_reg
&= ~DB_TMR_OUT_MASK
;
118 Debounce Debounce Timer Max
119 TmrLarge TmrOutUnit Unit Debounce
121 0 0 61 usec (2 RtcClk) 976 usec
122 0 1 244 usec (8 RtcClk) 3.9 msec
123 1 0 15.6 msec (512 RtcClk) 250 msec
124 1 1 62.5 msec (2048 RtcClk) 1 sec
129 pin_reg
&= ~BIT(DB_TMR_OUT_UNIT_OFF
);
130 pin_reg
&= ~BIT(DB_TMR_LARGE_OFF
);
131 } else if (debounce
< 976) {
132 time
= debounce
/ 61;
133 pin_reg
|= time
& DB_TMR_OUT_MASK
;
134 pin_reg
&= ~BIT(DB_TMR_OUT_UNIT_OFF
);
135 pin_reg
&= ~BIT(DB_TMR_LARGE_OFF
);
136 } else if (debounce
< 3900) {
137 time
= debounce
/ 244;
138 pin_reg
|= time
& DB_TMR_OUT_MASK
;
139 pin_reg
|= BIT(DB_TMR_OUT_UNIT_OFF
);
140 pin_reg
&= ~BIT(DB_TMR_LARGE_OFF
);
141 } else if (debounce
< 250000) {
142 time
= debounce
/ 15600;
143 pin_reg
|= time
& DB_TMR_OUT_MASK
;
144 pin_reg
&= ~BIT(DB_TMR_OUT_UNIT_OFF
);
145 pin_reg
|= BIT(DB_TMR_LARGE_OFF
);
146 } else if (debounce
< 1000000) {
147 time
= debounce
/ 62500;
148 pin_reg
|= time
& DB_TMR_OUT_MASK
;
149 pin_reg
|= BIT(DB_TMR_OUT_UNIT_OFF
);
150 pin_reg
|= BIT(DB_TMR_LARGE_OFF
);
152 pin_reg
&= ~DB_CNTRl_MASK
;
156 pin_reg
&= ~BIT(DB_TMR_OUT_UNIT_OFF
);
157 pin_reg
&= ~BIT(DB_TMR_LARGE_OFF
);
158 pin_reg
&= ~DB_TMR_OUT_MASK
;
159 pin_reg
&= ~DB_CNTRl_MASK
;
161 writel(pin_reg
, gpio_dev
->base
+ offset
* 4);
162 spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
167 #ifdef CONFIG_DEBUG_FS
168 static void amd_gpio_dbg_show(struct seq_file
*s
, struct gpio_chip
*gc
)
172 unsigned int bank
, i
, pin_num
;
173 struct amd_gpio
*gpio_dev
= gpiochip_get_data(gc
);
177 char *interrupt_enable
;
178 char *interrupt_mask
;
184 char *pull_up_enable
;
185 char *pull_down_enable
;
189 for (bank
= 0; bank
< AMD_GPIO_TOTAL_BANKS
; bank
++) {
190 seq_printf(s
, "GPIO bank%d\t", bank
);
195 pin_num
= AMD_GPIO_PINS_BANK0
;
199 pin_num
= AMD_GPIO_PINS_BANK1
+ i
;
203 pin_num
= AMD_GPIO_PINS_BANK2
+ i
;
209 for (; i
< pin_num
; i
++) {
210 seq_printf(s
, "pin%d\t", i
);
211 spin_lock_irqsave(&gpio_dev
->lock
, flags
);
212 pin_reg
= readl(gpio_dev
->base
+ i
* 4);
213 spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
215 if (pin_reg
& BIT(INTERRUPT_ENABLE_OFF
)) {
216 interrupt_enable
= "interrupt is enabled|";
218 if (!(pin_reg
& BIT(ACTIVE_LEVEL_OFF
))
219 && !(pin_reg
& BIT(ACTIVE_LEVEL_OFF
+1)))
220 active_level
= "Active low|";
221 else if (pin_reg
& BIT(ACTIVE_LEVEL_OFF
)
222 && !(pin_reg
& BIT(ACTIVE_LEVEL_OFF
+1)))
223 active_level
= "Active high|";
224 else if (!(pin_reg
& BIT(ACTIVE_LEVEL_OFF
))
225 && pin_reg
& BIT(ACTIVE_LEVEL_OFF
+1))
226 active_level
= "Active on both|";
228 active_level
= "Unknow Active level|";
230 if (pin_reg
& BIT(LEVEL_TRIG_OFF
))
231 level_trig
= "Level trigger|";
233 level_trig
= "Edge trigger|";
237 "interrupt is disabled|";
242 if (pin_reg
& BIT(INTERRUPT_MASK_OFF
))
244 "interrupt is unmasked|";
247 "interrupt is masked|";
249 if (pin_reg
& BIT(WAKE_CNTRL_OFF
))
250 wake_cntrl0
= "enable wakeup in S0i3 state|";
252 wake_cntrl0
= "disable wakeup in S0i3 state|";
254 if (pin_reg
& BIT(WAKE_CNTRL_OFF
))
255 wake_cntrl1
= "enable wakeup in S3 state|";
257 wake_cntrl1
= "disable wakeup in S3 state|";
259 if (pin_reg
& BIT(WAKE_CNTRL_OFF
))
260 wake_cntrl2
= "enable wakeup in S4/S5 state|";
262 wake_cntrl2
= "disable wakeup in S4/S5 state|";
264 if (pin_reg
& BIT(PULL_UP_ENABLE_OFF
)) {
265 pull_up_enable
= "pull-up is enabled|";
266 if (pin_reg
& BIT(PULL_UP_SEL_OFF
))
267 pull_up_sel
= "8k pull-up|";
269 pull_up_sel
= "4k pull-up|";
271 pull_up_enable
= "pull-up is disabled|";
275 if (pin_reg
& BIT(PULL_DOWN_ENABLE_OFF
))
276 pull_down_enable
= "pull-down is enabled|";
278 pull_down_enable
= "Pull-down is disabled|";
280 if (pin_reg
& BIT(OUTPUT_ENABLE_OFF
)) {
282 output_enable
= "output is enabled|";
283 if (pin_reg
& BIT(OUTPUT_VALUE_OFF
))
284 output_value
= "output is high|";
286 output_value
= "output is low|";
288 output_enable
= "output is disabled|";
291 if (pin_reg
& BIT(PIN_STS_OFF
))
292 pin_sts
= "input is high|";
294 pin_sts
= "input is low|";
297 seq_printf(s
, "%s %s %s %s %s %s\n"
298 " %s %s %s %s %s %s %s 0x%x\n",
299 level_trig
, active_level
, interrupt_enable
,
300 interrupt_mask
, wake_cntrl0
, wake_cntrl1
,
301 wake_cntrl2
, pin_sts
, pull_up_sel
,
302 pull_up_enable
, pull_down_enable
,
303 output_value
, output_enable
, pin_reg
);
308 #define amd_gpio_dbg_show NULL
311 static void amd_gpio_irq_enable(struct irq_data
*d
)
315 struct gpio_chip
*gc
= irq_data_get_irq_chip_data(d
);
316 struct amd_gpio
*gpio_dev
= gpiochip_get_data(gc
);
318 spin_lock_irqsave(&gpio_dev
->lock
, flags
);
319 pin_reg
= readl(gpio_dev
->base
+ (d
->hwirq
)*4);
320 pin_reg
|= BIT(INTERRUPT_ENABLE_OFF
);
321 pin_reg
|= BIT(INTERRUPT_MASK_OFF
);
322 writel(pin_reg
, gpio_dev
->base
+ (d
->hwirq
)*4);
323 spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
326 static void amd_gpio_irq_disable(struct irq_data
*d
)
330 struct gpio_chip
*gc
= irq_data_get_irq_chip_data(d
);
331 struct amd_gpio
*gpio_dev
= gpiochip_get_data(gc
);
333 spin_lock_irqsave(&gpio_dev
->lock
, flags
);
334 pin_reg
= readl(gpio_dev
->base
+ (d
->hwirq
)*4);
335 pin_reg
&= ~BIT(INTERRUPT_ENABLE_OFF
);
336 pin_reg
&= ~BIT(INTERRUPT_MASK_OFF
);
337 writel(pin_reg
, gpio_dev
->base
+ (d
->hwirq
)*4);
338 spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
341 static void amd_gpio_irq_mask(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 spin_lock_irqsave(&gpio_dev
->lock
, flags
);
349 pin_reg
= readl(gpio_dev
->base
+ (d
->hwirq
)*4);
350 pin_reg
&= ~BIT(INTERRUPT_MASK_OFF
);
351 writel(pin_reg
, gpio_dev
->base
+ (d
->hwirq
)*4);
352 spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
355 static void amd_gpio_irq_unmask(struct irq_data
*d
)
359 struct gpio_chip
*gc
= irq_data_get_irq_chip_data(d
);
360 struct amd_gpio
*gpio_dev
= gpiochip_get_data(gc
);
362 spin_lock_irqsave(&gpio_dev
->lock
, flags
);
363 pin_reg
= readl(gpio_dev
->base
+ (d
->hwirq
)*4);
364 pin_reg
|= BIT(INTERRUPT_MASK_OFF
);
365 writel(pin_reg
, gpio_dev
->base
+ (d
->hwirq
)*4);
366 spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
369 static void amd_gpio_irq_eoi(struct irq_data
*d
)
373 struct gpio_chip
*gc
= irq_data_get_irq_chip_data(d
);
374 struct amd_gpio
*gpio_dev
= gpiochip_get_data(gc
);
376 spin_lock_irqsave(&gpio_dev
->lock
, flags
);
377 reg
= readl(gpio_dev
->base
+ WAKE_INT_MASTER_REG
);
379 writel(reg
, gpio_dev
->base
+ WAKE_INT_MASTER_REG
);
380 spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
383 static int amd_gpio_irq_set_type(struct irq_data
*d
, unsigned int type
)
387 unsigned long flags
, irq_flags
;
388 struct gpio_chip
*gc
= irq_data_get_irq_chip_data(d
);
389 struct amd_gpio
*gpio_dev
= gpiochip_get_data(gc
);
391 spin_lock_irqsave(&gpio_dev
->lock
, flags
);
392 pin_reg
= readl(gpio_dev
->base
+ (d
->hwirq
)*4);
394 /* Ignore the settings coming from the client and
395 * read the values from the ACPI tables
396 * while setting the trigger type
399 irq_flags
= irq_get_trigger_type(d
->irq
);
400 if (irq_flags
!= IRQ_TYPE_NONE
)
403 switch (type
& IRQ_TYPE_SENSE_MASK
) {
404 case IRQ_TYPE_EDGE_RISING
:
405 pin_reg
&= ~BIT(LEVEL_TRIG_OFF
);
406 pin_reg
&= ~(ACTIVE_LEVEL_MASK
<< ACTIVE_LEVEL_OFF
);
407 pin_reg
|= ACTIVE_HIGH
<< ACTIVE_LEVEL_OFF
;
408 pin_reg
|= DB_TYPE_REMOVE_GLITCH
<< DB_CNTRL_OFF
;
409 irq_set_handler_locked(d
, handle_edge_irq
);
412 case IRQ_TYPE_EDGE_FALLING
:
413 pin_reg
&= ~BIT(LEVEL_TRIG_OFF
);
414 pin_reg
&= ~(ACTIVE_LEVEL_MASK
<< ACTIVE_LEVEL_OFF
);
415 pin_reg
|= ACTIVE_LOW
<< ACTIVE_LEVEL_OFF
;
416 pin_reg
|= DB_TYPE_REMOVE_GLITCH
<< DB_CNTRL_OFF
;
417 irq_set_handler_locked(d
, handle_edge_irq
);
420 case IRQ_TYPE_EDGE_BOTH
:
421 pin_reg
&= ~BIT(LEVEL_TRIG_OFF
);
422 pin_reg
&= ~(ACTIVE_LEVEL_MASK
<< ACTIVE_LEVEL_OFF
);
423 pin_reg
|= BOTH_EADGE
<< ACTIVE_LEVEL_OFF
;
424 pin_reg
|= DB_TYPE_REMOVE_GLITCH
<< DB_CNTRL_OFF
;
425 irq_set_handler_locked(d
, handle_edge_irq
);
428 case IRQ_TYPE_LEVEL_HIGH
:
429 pin_reg
|= LEVEL_TRIGGER
<< LEVEL_TRIG_OFF
;
430 pin_reg
&= ~(ACTIVE_LEVEL_MASK
<< ACTIVE_LEVEL_OFF
);
431 pin_reg
|= ACTIVE_HIGH
<< ACTIVE_LEVEL_OFF
;
432 pin_reg
&= ~(DB_CNTRl_MASK
<< DB_CNTRL_OFF
);
433 pin_reg
|= DB_TYPE_PRESERVE_LOW_GLITCH
<< DB_CNTRL_OFF
;
434 irq_set_handler_locked(d
, handle_level_irq
);
437 case IRQ_TYPE_LEVEL_LOW
:
438 pin_reg
|= LEVEL_TRIGGER
<< LEVEL_TRIG_OFF
;
439 pin_reg
&= ~(ACTIVE_LEVEL_MASK
<< ACTIVE_LEVEL_OFF
);
440 pin_reg
|= ACTIVE_LOW
<< ACTIVE_LEVEL_OFF
;
441 pin_reg
&= ~(DB_CNTRl_MASK
<< DB_CNTRL_OFF
);
442 pin_reg
|= DB_TYPE_PRESERVE_HIGH_GLITCH
<< DB_CNTRL_OFF
;
443 irq_set_handler_locked(d
, handle_level_irq
);
450 dev_err(&gpio_dev
->pdev
->dev
, "Invalid type value\n");
454 pin_reg
|= CLR_INTR_STAT
<< INTERRUPT_STS_OFF
;
455 writel(pin_reg
, gpio_dev
->base
+ (d
->hwirq
)*4);
456 spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
461 static void amd_irq_ack(struct irq_data
*d
)
464 * based on HW design,there is no need to ack HW
465 * before handle current irq. But this routine is
466 * necessary for handle_edge_irq
470 static struct irq_chip amd_gpio_irqchip
= {
472 .irq_ack
= amd_irq_ack
,
473 .irq_enable
= amd_gpio_irq_enable
,
474 .irq_disable
= amd_gpio_irq_disable
,
475 .irq_mask
= amd_gpio_irq_mask
,
476 .irq_unmask
= amd_gpio_irq_unmask
,
477 .irq_eoi
= amd_gpio_irq_eoi
,
478 .irq_set_type
= amd_gpio_irq_set_type
,
481 static void amd_gpio_irq_handler(struct irq_desc
*desc
)
491 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
492 struct gpio_chip
*gc
= irq_desc_get_handler_data(desc
);
493 struct amd_gpio
*gpio_dev
= gpiochip_get_data(gc
);
495 chained_irq_enter(chip
, desc
);
496 /*enable GPIO interrupt again*/
497 spin_lock_irqsave(&gpio_dev
->lock
, flags
);
498 reg
= readl(gpio_dev
->base
+ WAKE_INT_STATUS_REG1
);
502 reg
= readl(gpio_dev
->base
+ WAKE_INT_STATUS_REG0
);
504 spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
507 * first 46 bits indicates interrupt status.
508 * one bit represents four interrupt sources.
510 for (off
= 0; off
< 46 ; off
++) {
511 if (reg64
& BIT(off
)) {
512 for (i
= 0; i
< 4; i
++) {
513 pin_reg
= readl(gpio_dev
->base
+
515 if ((pin_reg
& BIT(INTERRUPT_STS_OFF
)) ||
516 (pin_reg
& BIT(WAKE_STS_OFF
))) {
517 irq
= irq_find_mapping(gc
->irqdomain
,
519 generic_handle_irq(irq
);
522 + (off
* 4 + i
) * 4);
530 handle_bad_irq(desc
);
532 spin_lock_irqsave(&gpio_dev
->lock
, flags
);
533 reg
= readl(gpio_dev
->base
+ WAKE_INT_MASTER_REG
);
535 writel(reg
, gpio_dev
->base
+ WAKE_INT_MASTER_REG
);
536 spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
538 chained_irq_exit(chip
, desc
);
541 static int amd_get_groups_count(struct pinctrl_dev
*pctldev
)
543 struct amd_gpio
*gpio_dev
= pinctrl_dev_get_drvdata(pctldev
);
545 return gpio_dev
->ngroups
;
548 static const char *amd_get_group_name(struct pinctrl_dev
*pctldev
,
551 struct amd_gpio
*gpio_dev
= pinctrl_dev_get_drvdata(pctldev
);
553 return gpio_dev
->groups
[group
].name
;
556 static int amd_get_group_pins(struct pinctrl_dev
*pctldev
,
558 const unsigned **pins
,
561 struct amd_gpio
*gpio_dev
= pinctrl_dev_get_drvdata(pctldev
);
563 *pins
= gpio_dev
->groups
[group
].pins
;
564 *num_pins
= gpio_dev
->groups
[group
].npins
;
568 static const struct pinctrl_ops amd_pinctrl_ops
= {
569 .get_groups_count
= amd_get_groups_count
,
570 .get_group_name
= amd_get_group_name
,
571 .get_group_pins
= amd_get_group_pins
,
573 .dt_node_to_map
= pinconf_generic_dt_node_to_map_group
,
574 .dt_free_map
= pinctrl_utils_free_map
,
578 static int amd_pinconf_get(struct pinctrl_dev
*pctldev
,
580 unsigned long *config
)
585 struct amd_gpio
*gpio_dev
= pinctrl_dev_get_drvdata(pctldev
);
586 enum pin_config_param param
= pinconf_to_config_param(*config
);
588 spin_lock_irqsave(&gpio_dev
->lock
, flags
);
589 pin_reg
= readl(gpio_dev
->base
+ pin
*4);
590 spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
592 case PIN_CONFIG_INPUT_DEBOUNCE
:
593 arg
= pin_reg
& DB_TMR_OUT_MASK
;
596 case PIN_CONFIG_BIAS_PULL_DOWN
:
597 arg
= (pin_reg
>> PULL_DOWN_ENABLE_OFF
) & BIT(0);
600 case PIN_CONFIG_BIAS_PULL_UP
:
601 arg
= (pin_reg
>> PULL_UP_SEL_OFF
) & (BIT(0) | BIT(1));
604 case PIN_CONFIG_DRIVE_STRENGTH
:
605 arg
= (pin_reg
>> DRV_STRENGTH_SEL_OFF
) & DRV_STRENGTH_SEL_MASK
;
609 dev_err(&gpio_dev
->pdev
->dev
, "Invalid config param %04x\n",
614 *config
= pinconf_to_config_packed(param
, arg
);
619 static int amd_pinconf_set(struct pinctrl_dev
*pctldev
, unsigned int pin
,
620 unsigned long *configs
, unsigned num_configs
)
627 enum pin_config_param param
;
628 struct amd_gpio
*gpio_dev
= pinctrl_dev_get_drvdata(pctldev
);
630 spin_lock_irqsave(&gpio_dev
->lock
, flags
);
631 for (i
= 0; i
< num_configs
; i
++) {
632 param
= pinconf_to_config_param(configs
[i
]);
633 arg
= pinconf_to_config_argument(configs
[i
]);
634 pin_reg
= readl(gpio_dev
->base
+ pin
*4);
637 case PIN_CONFIG_INPUT_DEBOUNCE
:
638 pin_reg
&= ~DB_TMR_OUT_MASK
;
639 pin_reg
|= arg
& DB_TMR_OUT_MASK
;
642 case PIN_CONFIG_BIAS_PULL_DOWN
:
643 pin_reg
&= ~BIT(PULL_DOWN_ENABLE_OFF
);
644 pin_reg
|= (arg
& BIT(0)) << PULL_DOWN_ENABLE_OFF
;
647 case PIN_CONFIG_BIAS_PULL_UP
:
648 pin_reg
&= ~BIT(PULL_UP_SEL_OFF
);
649 pin_reg
|= (arg
& BIT(0)) << PULL_UP_SEL_OFF
;
650 pin_reg
&= ~BIT(PULL_UP_ENABLE_OFF
);
651 pin_reg
|= ((arg
>>1) & BIT(0)) << PULL_UP_ENABLE_OFF
;
654 case PIN_CONFIG_DRIVE_STRENGTH
:
655 pin_reg
&= ~(DRV_STRENGTH_SEL_MASK
656 << DRV_STRENGTH_SEL_OFF
);
657 pin_reg
|= (arg
& DRV_STRENGTH_SEL_MASK
)
658 << DRV_STRENGTH_SEL_OFF
;
662 dev_err(&gpio_dev
->pdev
->dev
,
663 "Invalid config param %04x\n", param
);
667 writel(pin_reg
, gpio_dev
->base
+ pin
*4);
669 spin_unlock_irqrestore(&gpio_dev
->lock
, flags
);
674 static int amd_pinconf_group_get(struct pinctrl_dev
*pctldev
,
676 unsigned long *config
)
678 const unsigned *pins
;
682 ret
= amd_get_group_pins(pctldev
, group
, &pins
, &npins
);
686 if (amd_pinconf_get(pctldev
, pins
[0], config
))
692 static int amd_pinconf_group_set(struct pinctrl_dev
*pctldev
,
693 unsigned group
, unsigned long *configs
,
694 unsigned num_configs
)
696 const unsigned *pins
;
700 ret
= amd_get_group_pins(pctldev
, group
, &pins
, &npins
);
703 for (i
= 0; i
< npins
; i
++) {
704 if (amd_pinconf_set(pctldev
, pins
[i
], configs
, num_configs
))
710 static const struct pinconf_ops amd_pinconf_ops
= {
711 .pin_config_get
= amd_pinconf_get
,
712 .pin_config_set
= amd_pinconf_set
,
713 .pin_config_group_get
= amd_pinconf_group_get
,
714 .pin_config_group_set
= amd_pinconf_group_set
,
717 static struct pinctrl_desc amd_pinctrl_desc
= {
719 .npins
= ARRAY_SIZE(kerncz_pins
),
720 .pctlops
= &amd_pinctrl_ops
,
721 .confops
= &amd_pinconf_ops
,
722 .owner
= THIS_MODULE
,
725 static int amd_gpio_probe(struct platform_device
*pdev
)
729 struct resource
*res
;
730 struct amd_gpio
*gpio_dev
;
732 gpio_dev
= devm_kzalloc(&pdev
->dev
,
733 sizeof(struct amd_gpio
), GFP_KERNEL
);
737 spin_lock_init(&gpio_dev
->lock
);
739 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
741 dev_err(&pdev
->dev
, "Failed to get gpio io resource.\n");
745 gpio_dev
->base
= devm_ioremap_nocache(&pdev
->dev
, res
->start
,
750 irq_base
= platform_get_irq(pdev
, 0);
752 dev_err(&pdev
->dev
, "Failed to get gpio IRQ.\n");
756 gpio_dev
->pdev
= pdev
;
757 gpio_dev
->gc
.direction_input
= amd_gpio_direction_input
;
758 gpio_dev
->gc
.direction_output
= amd_gpio_direction_output
;
759 gpio_dev
->gc
.get
= amd_gpio_get_value
;
760 gpio_dev
->gc
.set
= amd_gpio_set_value
;
761 gpio_dev
->gc
.set_debounce
= amd_gpio_set_debounce
;
762 gpio_dev
->gc
.dbg_show
= amd_gpio_dbg_show
;
764 gpio_dev
->gc
.base
= 0;
765 gpio_dev
->gc
.label
= pdev
->name
;
766 gpio_dev
->gc
.owner
= THIS_MODULE
;
767 gpio_dev
->gc
.parent
= &pdev
->dev
;
768 gpio_dev
->gc
.ngpio
= TOTAL_NUMBER_OF_PINS
;
769 #if defined(CONFIG_OF_GPIO)
770 gpio_dev
->gc
.of_node
= pdev
->dev
.of_node
;
773 gpio_dev
->groups
= kerncz_groups
;
774 gpio_dev
->ngroups
= ARRAY_SIZE(kerncz_groups
);
776 amd_pinctrl_desc
.name
= dev_name(&pdev
->dev
);
777 gpio_dev
->pctrl
= devm_pinctrl_register(&pdev
->dev
, &amd_pinctrl_desc
,
779 if (IS_ERR(gpio_dev
->pctrl
)) {
780 dev_err(&pdev
->dev
, "Couldn't register pinctrl driver\n");
781 return PTR_ERR(gpio_dev
->pctrl
);
784 ret
= gpiochip_add_data(&gpio_dev
->gc
, gpio_dev
);
788 ret
= gpiochip_add_pin_range(&gpio_dev
->gc
, dev_name(&pdev
->dev
),
789 0, 0, TOTAL_NUMBER_OF_PINS
);
791 dev_err(&pdev
->dev
, "Failed to add pin range\n");
795 ret
= gpiochip_irqchip_add(&gpio_dev
->gc
,
801 dev_err(&pdev
->dev
, "could not add irqchip\n");
806 gpiochip_set_chained_irqchip(&gpio_dev
->gc
,
809 amd_gpio_irq_handler
);
811 platform_set_drvdata(pdev
, gpio_dev
);
813 dev_dbg(&pdev
->dev
, "amd gpio driver loaded\n");
817 gpiochip_remove(&gpio_dev
->gc
);
822 static int amd_gpio_remove(struct platform_device
*pdev
)
824 struct amd_gpio
*gpio_dev
;
826 gpio_dev
= platform_get_drvdata(pdev
);
828 gpiochip_remove(&gpio_dev
->gc
);
833 static const struct acpi_device_id amd_gpio_acpi_match
[] = {
838 MODULE_DEVICE_TABLE(acpi
, amd_gpio_acpi_match
);
840 static struct platform_driver amd_gpio_driver
= {
843 .acpi_match_table
= ACPI_PTR(amd_gpio_acpi_match
),
845 .probe
= amd_gpio_probe
,
846 .remove
= amd_gpio_remove
,
849 module_platform_driver(amd_gpio_driver
);
851 MODULE_LICENSE("GPL v2");
852 MODULE_AUTHOR("Ken Xue <Ken.Xue@amd.com>, Jeff Wu <Jeff.Wu@amd.com>");
853 MODULE_DESCRIPTION("AMD GPIO pinctrl driver");