blob: 8aa2e876cb476682150f810825f9494d5ddb2ef7 [file] [log] [blame]
Thomas Gleixner75a6faf2019-06-01 10:08:37 +02001// SPDX-License-Identifier: GPL-2.0-only
Ken Xuedbad75d2015-03-10 15:02:19 +08002/*
3 * GPIO driver for AMD
4 *
5 * Copyright (c) 2014,2015 AMD Corporation.
6 * Authors: Ken Xue <Ken.Xue@amd.com>
7 * Wu, Jeff <Jeff.Wu@amd.com>
8 *
Shyam Sundar S Kadd7bfc2017-05-03 11:59:11 +05309 * Contact Information: Nehal Shah <Nehal-bakulchandra.Shah@amd.com>
10 * Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
Ken Xuedbad75d2015-03-10 15:02:19 +080011 */
12
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>
22#include <linux/io.h>
Linus Walleij1c5fb662018-09-13 13:58:21 +020023#include <linux/gpio/driver.h>
Ken Xuedbad75d2015-03-10 15:02:19 +080024#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>
Ken Xuedbad75d2015-03-10 15:02:19 +080032#include <linux/pinctrl/pinconf.h>
33#include <linux/pinctrl/pinconf-generic.h>
34
Daniel Drake79d2c8b2017-09-11 14:11:56 +080035#include "core.h"
Ken Xuedbad75d2015-03-10 15:02:19 +080036#include "pinctrl-utils.h"
37#include "pinctrl-amd.h"
38
Daniel Kurtz12b10f42018-02-16 12:12:43 -070039static int amd_gpio_get_direction(struct gpio_chip *gc, unsigned offset)
40{
41 unsigned long flags;
42 u32 pin_reg;
43 struct amd_gpio *gpio_dev = gpiochip_get_data(gc);
44
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);
48
Matti Vaittinen3c827872020-02-14 15:57:12 +020049 if (pin_reg & BIT(OUTPUT_ENABLE_OFF))
50 return GPIO_LINE_DIRECTION_OUT;
51
52 return GPIO_LINE_DIRECTION_IN;
Daniel Kurtz12b10f42018-02-16 12:12:43 -070053}
54
Ken Xuedbad75d2015-03-10 15:02:19 +080055static int amd_gpio_direction_input(struct gpio_chip *gc, unsigned offset)
56{
57 unsigned long flags;
58 u32 pin_reg;
Linus Walleij04d36722015-12-08 09:21:38 +010059 struct amd_gpio *gpio_dev = gpiochip_get_data(gc);
Ken Xuedbad75d2015-03-10 15:02:19 +080060
Julia Cartwright229710f2017-03-09 10:22:04 -060061 raw_spin_lock_irqsave(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +080062 pin_reg = readl(gpio_dev->base + offset * 4);
Ken Xuedbad75d2015-03-10 15:02:19 +080063 pin_reg &= ~BIT(OUTPUT_ENABLE_OFF);
64 writel(pin_reg, gpio_dev->base + offset * 4);
Julia Cartwright229710f2017-03-09 10:22:04 -060065 raw_spin_unlock_irqrestore(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +080066
67 return 0;
68}
69
70static int amd_gpio_direction_output(struct gpio_chip *gc, unsigned offset,
71 int value)
72{
73 u32 pin_reg;
74 unsigned long flags;
Linus Walleij04d36722015-12-08 09:21:38 +010075 struct amd_gpio *gpio_dev = gpiochip_get_data(gc);
Ken Xuedbad75d2015-03-10 15:02:19 +080076
Julia Cartwright229710f2017-03-09 10:22:04 -060077 raw_spin_lock_irqsave(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +080078 pin_reg = readl(gpio_dev->base + offset * 4);
79 pin_reg |= BIT(OUTPUT_ENABLE_OFF);
80 if (value)
81 pin_reg |= BIT(OUTPUT_VALUE_OFF);
82 else
83 pin_reg &= ~BIT(OUTPUT_VALUE_OFF);
84 writel(pin_reg, gpio_dev->base + offset * 4);
Julia Cartwright229710f2017-03-09 10:22:04 -060085 raw_spin_unlock_irqrestore(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +080086
87 return 0;
88}
89
90static int amd_gpio_get_value(struct gpio_chip *gc, unsigned offset)
91{
92 u32 pin_reg;
93 unsigned long flags;
Linus Walleij04d36722015-12-08 09:21:38 +010094 struct amd_gpio *gpio_dev = gpiochip_get_data(gc);
Ken Xuedbad75d2015-03-10 15:02:19 +080095
Julia Cartwright229710f2017-03-09 10:22:04 -060096 raw_spin_lock_irqsave(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +080097 pin_reg = readl(gpio_dev->base + offset * 4);
Julia Cartwright229710f2017-03-09 10:22:04 -060098 raw_spin_unlock_irqrestore(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +080099
100 return !!(pin_reg & BIT(PIN_STS_OFF));
101}
102
103static void amd_gpio_set_value(struct gpio_chip *gc, unsigned offset, int value)
104{
105 u32 pin_reg;
106 unsigned long flags;
Linus Walleij04d36722015-12-08 09:21:38 +0100107 struct amd_gpio *gpio_dev = gpiochip_get_data(gc);
Ken Xuedbad75d2015-03-10 15:02:19 +0800108
Julia Cartwright229710f2017-03-09 10:22:04 -0600109 raw_spin_lock_irqsave(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +0800110 pin_reg = readl(gpio_dev->base + offset * 4);
111 if (value)
112 pin_reg |= BIT(OUTPUT_VALUE_OFF);
113 else
114 pin_reg &= ~BIT(OUTPUT_VALUE_OFF);
115 writel(pin_reg, gpio_dev->base + offset * 4);
Julia Cartwright229710f2017-03-09 10:22:04 -0600116 raw_spin_unlock_irqrestore(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +0800117}
118
119static int amd_gpio_set_debounce(struct gpio_chip *gc, unsigned offset,
120 unsigned debounce)
121{
Ken Xuedbad75d2015-03-10 15:02:19 +0800122 u32 time;
Ken Xue25a853d2015-03-27 17:44:26 +0800123 u32 pin_reg;
124 int ret = 0;
Ken Xuedbad75d2015-03-10 15:02:19 +0800125 unsigned long flags;
Linus Walleij04d36722015-12-08 09:21:38 +0100126 struct amd_gpio *gpio_dev = gpiochip_get_data(gc);
Ken Xuedbad75d2015-03-10 15:02:19 +0800127
Julia Cartwright229710f2017-03-09 10:22:04 -0600128 raw_spin_lock_irqsave(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +0800129 pin_reg = readl(gpio_dev->base + offset * 4);
130
131 if (debounce) {
132 pin_reg |= DB_TYPE_REMOVE_GLITCH << DB_CNTRL_OFF;
133 pin_reg &= ~DB_TMR_OUT_MASK;
134 /*
135 Debounce Debounce Timer Max
136 TmrLarge TmrOutUnit Unit Debounce
137 Time
138 0 0 61 usec (2 RtcClk) 976 usec
139 0 1 244 usec (8 RtcClk) 3.9 msec
140 1 0 15.6 msec (512 RtcClk) 250 msec
141 1 1 62.5 msec (2048 RtcClk) 1 sec
142 */
143
144 if (debounce < 61) {
145 pin_reg |= 1;
146 pin_reg &= ~BIT(DB_TMR_OUT_UNIT_OFF);
147 pin_reg &= ~BIT(DB_TMR_LARGE_OFF);
148 } else if (debounce < 976) {
149 time = debounce / 61;
150 pin_reg |= time & DB_TMR_OUT_MASK;
151 pin_reg &= ~BIT(DB_TMR_OUT_UNIT_OFF);
152 pin_reg &= ~BIT(DB_TMR_LARGE_OFF);
153 } else if (debounce < 3900) {
154 time = debounce / 244;
155 pin_reg |= time & DB_TMR_OUT_MASK;
156 pin_reg |= BIT(DB_TMR_OUT_UNIT_OFF);
157 pin_reg &= ~BIT(DB_TMR_LARGE_OFF);
158 } else if (debounce < 250000) {
159 time = debounce / 15600;
160 pin_reg |= time & DB_TMR_OUT_MASK;
161 pin_reg &= ~BIT(DB_TMR_OUT_UNIT_OFF);
162 pin_reg |= BIT(DB_TMR_LARGE_OFF);
163 } else if (debounce < 1000000) {
164 time = debounce / 62500;
165 pin_reg |= time & DB_TMR_OUT_MASK;
166 pin_reg |= BIT(DB_TMR_OUT_UNIT_OFF);
167 pin_reg |= BIT(DB_TMR_LARGE_OFF);
168 } else {
169 pin_reg &= ~DB_CNTRl_MASK;
Ken Xue25a853d2015-03-27 17:44:26 +0800170 ret = -EINVAL;
Ken Xuedbad75d2015-03-10 15:02:19 +0800171 }
172 } else {
173 pin_reg &= ~BIT(DB_TMR_OUT_UNIT_OFF);
174 pin_reg &= ~BIT(DB_TMR_LARGE_OFF);
175 pin_reg &= ~DB_TMR_OUT_MASK;
176 pin_reg &= ~DB_CNTRl_MASK;
177 }
178 writel(pin_reg, gpio_dev->base + offset * 4);
Julia Cartwright229710f2017-03-09 10:22:04 -0600179 raw_spin_unlock_irqrestore(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +0800180
Ken Xue25a853d2015-03-27 17:44:26 +0800181 return ret;
Ken Xuedbad75d2015-03-10 15:02:19 +0800182}
183
Mika Westerberg2956b5d2017-01-23 15:34:34 +0300184static int amd_gpio_set_config(struct gpio_chip *gc, unsigned offset,
185 unsigned long config)
186{
187 u32 debounce;
188
189 if (pinconf_to_config_param(config) != PIN_CONFIG_INPUT_DEBOUNCE)
190 return -ENOTSUPP;
191
192 debounce = pinconf_to_config_argument(config);
193 return amd_gpio_set_debounce(gc, offset, debounce);
194}
195
Ken Xuedbad75d2015-03-10 15:02:19 +0800196#ifdef CONFIG_DEBUG_FS
197static void amd_gpio_dbg_show(struct seq_file *s, struct gpio_chip *gc)
198{
199 u32 pin_reg;
Coiby Xu39cc1d32020-11-06 07:19:11 +0800200 u32 db_cntrl;
Ken Xuedbad75d2015-03-10 15:02:19 +0800201 unsigned long flags;
202 unsigned int bank, i, pin_num;
Linus Walleij04d36722015-12-08 09:21:38 +0100203 struct amd_gpio *gpio_dev = gpiochip_get_data(gc);
Ken Xuedbad75d2015-03-10 15:02:19 +0800204
Coiby Xu39cc1d32020-11-06 07:19:11 +0800205 bool tmr_out_unit;
206 unsigned int time;
207 unsigned int unit;
208 bool tmr_large;
209
Ken Xuedbad75d2015-03-10 15:02:19 +0800210 char *level_trig;
211 char *active_level;
212 char *interrupt_enable;
213 char *interrupt_mask;
214 char *wake_cntrl0;
215 char *wake_cntrl1;
216 char *wake_cntrl2;
217 char *pin_sts;
218 char *pull_up_sel;
219 char *pull_up_enable;
220 char *pull_down_enable;
221 char *output_value;
222 char *output_enable;
Coiby Xu39cc1d32020-11-06 07:19:11 +0800223 char debounce_value[40];
224 char *debounce_enable;
Ken Xuedbad75d2015-03-10 15:02:19 +0800225
Shah, Nehal-bakulchandra3bfd4432016-12-06 12:17:48 +0530226 for (bank = 0; bank < gpio_dev->hwbank_num; bank++) {
Ken Xuedbad75d2015-03-10 15:02:19 +0800227 seq_printf(s, "GPIO bank%d\t", bank);
228
229 switch (bank) {
230 case 0:
231 i = 0;
232 pin_num = AMD_GPIO_PINS_BANK0;
233 break;
234 case 1:
235 i = 64;
236 pin_num = AMD_GPIO_PINS_BANK1 + i;
237 break;
238 case 2:
239 i = 128;
240 pin_num = AMD_GPIO_PINS_BANK2 + i;
241 break;
Shah, Nehal-bakulchandra3bfd4432016-12-06 12:17:48 +0530242 case 3:
243 i = 192;
244 pin_num = AMD_GPIO_PINS_BANK3 + i;
245 break;
Linus Walleij6ac4c1a2017-01-03 09:18:58 +0100246 default:
247 /* Illegal bank number, ignore */
248 continue;
Ken Xuedbad75d2015-03-10 15:02:19 +0800249 }
Ken Xuedbad75d2015-03-10 15:02:19 +0800250 for (; i < pin_num; i++) {
251 seq_printf(s, "pin%d\t", i);
Julia Cartwright229710f2017-03-09 10:22:04 -0600252 raw_spin_lock_irqsave(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +0800253 pin_reg = readl(gpio_dev->base + i * 4);
Julia Cartwright229710f2017-03-09 10:22:04 -0600254 raw_spin_unlock_irqrestore(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +0800255
256 if (pin_reg & BIT(INTERRUPT_ENABLE_OFF)) {
Daniel Kurtz1766e4b2018-07-16 19:07:41 -0600257 u8 level = (pin_reg >> ACTIVE_LEVEL_OFF) &
258 ACTIVE_LEVEL_MASK;
Ken Xuedbad75d2015-03-10 15:02:19 +0800259 interrupt_enable = "interrupt is enabled|";
260
Daniel Kurtz1766e4b2018-07-16 19:07:41 -0600261 if (level == ACTIVE_LEVEL_HIGH)
Ken Xuedbad75d2015-03-10 15:02:19 +0800262 active_level = "Active high|";
Daniel Kurtz1766e4b2018-07-16 19:07:41 -0600263 else if (level == ACTIVE_LEVEL_LOW)
264 active_level = "Active low|";
265 else if (!(pin_reg & BIT(LEVEL_TRIG_OFF)) &&
266 level == ACTIVE_LEVEL_BOTH)
Ken Xuedbad75d2015-03-10 15:02:19 +0800267 active_level = "Active on both|";
268 else
Masanari Iida0a951602016-11-23 22:44:47 +0900269 active_level = "Unknown Active level|";
Ken Xuedbad75d2015-03-10 15:02:19 +0800270
271 if (pin_reg & BIT(LEVEL_TRIG_OFF))
272 level_trig = "Level trigger|";
273 else
274 level_trig = "Edge trigger|";
275
276 } else {
277 interrupt_enable =
278 "interrupt is disabled|";
279 active_level = " ";
280 level_trig = " ";
281 }
282
283 if (pin_reg & BIT(INTERRUPT_MASK_OFF))
284 interrupt_mask =
285 "interrupt is unmasked|";
286 else
287 interrupt_mask =
288 "interrupt is masked|";
289
Shah, Nehal-bakulchandra3bfd4432016-12-06 12:17:48 +0530290 if (pin_reg & BIT(WAKE_CNTRL_OFF_S0I3))
Ken Xuedbad75d2015-03-10 15:02:19 +0800291 wake_cntrl0 = "enable wakeup in S0i3 state|";
292 else
293 wake_cntrl0 = "disable wakeup in S0i3 state|";
294
Shah, Nehal-bakulchandra3bfd4432016-12-06 12:17:48 +0530295 if (pin_reg & BIT(WAKE_CNTRL_OFF_S3))
Ken Xuedbad75d2015-03-10 15:02:19 +0800296 wake_cntrl1 = "enable wakeup in S3 state|";
297 else
298 wake_cntrl1 = "disable wakeup in S3 state|";
299
Shah, Nehal-bakulchandra3bfd4432016-12-06 12:17:48 +0530300 if (pin_reg & BIT(WAKE_CNTRL_OFF_S4))
Ken Xuedbad75d2015-03-10 15:02:19 +0800301 wake_cntrl2 = "enable wakeup in S4/S5 state|";
302 else
303 wake_cntrl2 = "disable wakeup in S4/S5 state|";
304
305 if (pin_reg & BIT(PULL_UP_ENABLE_OFF)) {
306 pull_up_enable = "pull-up is enabled|";
307 if (pin_reg & BIT(PULL_UP_SEL_OFF))
308 pull_up_sel = "8k pull-up|";
309 else
310 pull_up_sel = "4k pull-up|";
311 } else {
312 pull_up_enable = "pull-up is disabled|";
313 pull_up_sel = " ";
314 }
315
316 if (pin_reg & BIT(PULL_DOWN_ENABLE_OFF))
317 pull_down_enable = "pull-down is enabled|";
318 else
319 pull_down_enable = "Pull-down is disabled|";
320
321 if (pin_reg & BIT(OUTPUT_ENABLE_OFF)) {
322 pin_sts = " ";
323 output_enable = "output is enabled|";
324 if (pin_reg & BIT(OUTPUT_VALUE_OFF))
325 output_value = "output is high|";
326 else
327 output_value = "output is low|";
328 } else {
329 output_enable = "output is disabled|";
330 output_value = " ";
331
332 if (pin_reg & BIT(PIN_STS_OFF))
333 pin_sts = "input is high|";
334 else
335 pin_sts = "input is low|";
336 }
337
Coiby Xu39cc1d32020-11-06 07:19:11 +0800338 db_cntrl = (DB_CNTRl_MASK << DB_CNTRL_OFF) & pin_reg;
339 if (db_cntrl) {
340 tmr_out_unit = pin_reg & BIT(DB_TMR_OUT_UNIT_OFF);
341 tmr_large = pin_reg & BIT(DB_TMR_LARGE_OFF);
342 time = pin_reg & DB_TMR_OUT_MASK;
343 if (tmr_large) {
344 if (tmr_out_unit)
345 unit = 62500;
346 else
347 unit = 15625;
348 } else {
349 if (tmr_out_unit)
350 unit = 244;
351 else
352 unit = 61;
353 }
354 if ((DB_TYPE_REMOVE_GLITCH << DB_CNTRL_OFF) == db_cntrl)
355 debounce_enable = "debouncing filter (high and low) enabled|";
356 else if ((DB_TYPE_PRESERVE_LOW_GLITCH << DB_CNTRL_OFF) == db_cntrl)
357 debounce_enable = "debouncing filter (low) enabled|";
358 else
359 debounce_enable = "debouncing filter (high) enabled|";
360
361 snprintf(debounce_value, sizeof(debounce_value),
362 "debouncing timeout is %u (us)|", time * unit);
363 } else {
364 debounce_enable = "debouncing filter disabled|";
365 snprintf(debounce_value, sizeof(debounce_value), " ");
366 }
367
Ken Xuedbad75d2015-03-10 15:02:19 +0800368 seq_printf(s, "%s %s %s %s %s %s\n"
Coiby Xu39cc1d32020-11-06 07:19:11 +0800369 " %s %s %s %s %s %s %s %s %s 0x%x\n",
Ken Xuedbad75d2015-03-10 15:02:19 +0800370 level_trig, active_level, interrupt_enable,
371 interrupt_mask, wake_cntrl0, wake_cntrl1,
372 wake_cntrl2, pin_sts, pull_up_sel,
373 pull_up_enable, pull_down_enable,
Coiby Xu39cc1d32020-11-06 07:19:11 +0800374 output_value, output_enable,
375 debounce_enable, debounce_value, pin_reg);
Ken Xuedbad75d2015-03-10 15:02:19 +0800376 }
377 }
378}
379#else
380#define amd_gpio_dbg_show NULL
381#endif
382
383static void amd_gpio_irq_enable(struct irq_data *d)
384{
385 u32 pin_reg;
386 unsigned long flags;
387 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
Linus Walleij04d36722015-12-08 09:21:38 +0100388 struct amd_gpio *gpio_dev = gpiochip_get_data(gc);
Ken Xuedbad75d2015-03-10 15:02:19 +0800389
Julia Cartwright229710f2017-03-09 10:22:04 -0600390 raw_spin_lock_irqsave(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +0800391 pin_reg = readl(gpio_dev->base + (d->hwirq)*4);
Ken Xuedbad75d2015-03-10 15:02:19 +0800392 pin_reg |= BIT(INTERRUPT_ENABLE_OFF);
393 pin_reg |= BIT(INTERRUPT_MASK_OFF);
394 writel(pin_reg, gpio_dev->base + (d->hwirq)*4);
Julia Cartwright229710f2017-03-09 10:22:04 -0600395 raw_spin_unlock_irqrestore(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +0800396}
397
398static void amd_gpio_irq_disable(struct irq_data *d)
399{
400 u32 pin_reg;
401 unsigned long flags;
402 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
Linus Walleij04d36722015-12-08 09:21:38 +0100403 struct amd_gpio *gpio_dev = gpiochip_get_data(gc);
Ken Xuedbad75d2015-03-10 15:02:19 +0800404
Julia Cartwright229710f2017-03-09 10:22:04 -0600405 raw_spin_lock_irqsave(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +0800406 pin_reg = readl(gpio_dev->base + (d->hwirq)*4);
407 pin_reg &= ~BIT(INTERRUPT_ENABLE_OFF);
408 pin_reg &= ~BIT(INTERRUPT_MASK_OFF);
409 writel(pin_reg, gpio_dev->base + (d->hwirq)*4);
Julia Cartwright229710f2017-03-09 10:22:04 -0600410 raw_spin_unlock_irqrestore(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +0800411}
412
413static void amd_gpio_irq_mask(struct irq_data *d)
414{
415 u32 pin_reg;
416 unsigned long flags;
417 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
Linus Walleij04d36722015-12-08 09:21:38 +0100418 struct amd_gpio *gpio_dev = gpiochip_get_data(gc);
Ken Xuedbad75d2015-03-10 15:02:19 +0800419
Julia Cartwright229710f2017-03-09 10:22:04 -0600420 raw_spin_lock_irqsave(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +0800421 pin_reg = readl(gpio_dev->base + (d->hwirq)*4);
422 pin_reg &= ~BIT(INTERRUPT_MASK_OFF);
423 writel(pin_reg, gpio_dev->base + (d->hwirq)*4);
Julia Cartwright229710f2017-03-09 10:22:04 -0600424 raw_spin_unlock_irqrestore(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +0800425}
426
427static void amd_gpio_irq_unmask(struct irq_data *d)
428{
429 u32 pin_reg;
430 unsigned long flags;
431 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
Linus Walleij04d36722015-12-08 09:21:38 +0100432 struct amd_gpio *gpio_dev = gpiochip_get_data(gc);
Ken Xuedbad75d2015-03-10 15:02:19 +0800433
Julia Cartwright229710f2017-03-09 10:22:04 -0600434 raw_spin_lock_irqsave(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +0800435 pin_reg = readl(gpio_dev->base + (d->hwirq)*4);
436 pin_reg |= BIT(INTERRUPT_MASK_OFF);
437 writel(pin_reg, gpio_dev->base + (d->hwirq)*4);
Julia Cartwright229710f2017-03-09 10:22:04 -0600438 raw_spin_unlock_irqrestore(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +0800439}
440
441static void amd_gpio_irq_eoi(struct irq_data *d)
442{
443 u32 reg;
444 unsigned long flags;
445 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
Linus Walleij04d36722015-12-08 09:21:38 +0100446 struct amd_gpio *gpio_dev = gpiochip_get_data(gc);
Ken Xuedbad75d2015-03-10 15:02:19 +0800447
Julia Cartwright229710f2017-03-09 10:22:04 -0600448 raw_spin_lock_irqsave(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +0800449 reg = readl(gpio_dev->base + WAKE_INT_MASTER_REG);
450 reg |= EOI_MASK;
451 writel(reg, gpio_dev->base + WAKE_INT_MASTER_REG);
Julia Cartwright229710f2017-03-09 10:22:04 -0600452 raw_spin_unlock_irqrestore(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +0800453}
454
455static int amd_gpio_irq_set_type(struct irq_data *d, unsigned int type)
456{
457 int ret = 0;
Daniel Kurtzb85bfa22018-09-22 13:58:26 -0600458 u32 pin_reg, pin_reg_irq_en, mask;
Furquan Shaikh5f4962d2020-06-26 14:10:26 -0700459 unsigned long flags;
Ken Xuedbad75d2015-03-10 15:02:19 +0800460 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
Linus Walleij04d36722015-12-08 09:21:38 +0100461 struct amd_gpio *gpio_dev = gpiochip_get_data(gc);
Ken Xuedbad75d2015-03-10 15:02:19 +0800462
Julia Cartwright229710f2017-03-09 10:22:04 -0600463 raw_spin_lock_irqsave(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +0800464 pin_reg = readl(gpio_dev->base + (d->hwirq)*4);
465
466 switch (type & IRQ_TYPE_SENSE_MASK) {
467 case IRQ_TYPE_EDGE_RISING:
468 pin_reg &= ~BIT(LEVEL_TRIG_OFF);
469 pin_reg &= ~(ACTIVE_LEVEL_MASK << ACTIVE_LEVEL_OFF);
470 pin_reg |= ACTIVE_HIGH << ACTIVE_LEVEL_OFF;
471 pin_reg |= DB_TYPE_REMOVE_GLITCH << DB_CNTRL_OFF;
Thomas Gleixner9d829312015-06-23 15:52:47 +0200472 irq_set_handler_locked(d, handle_edge_irq);
Ken Xuedbad75d2015-03-10 15:02:19 +0800473 break;
474
475 case IRQ_TYPE_EDGE_FALLING:
476 pin_reg &= ~BIT(LEVEL_TRIG_OFF);
477 pin_reg &= ~(ACTIVE_LEVEL_MASK << ACTIVE_LEVEL_OFF);
478 pin_reg |= ACTIVE_LOW << ACTIVE_LEVEL_OFF;
479 pin_reg |= DB_TYPE_REMOVE_GLITCH << DB_CNTRL_OFF;
Thomas Gleixner9d829312015-06-23 15:52:47 +0200480 irq_set_handler_locked(d, handle_edge_irq);
Ken Xuedbad75d2015-03-10 15:02:19 +0800481 break;
482
483 case IRQ_TYPE_EDGE_BOTH:
484 pin_reg &= ~BIT(LEVEL_TRIG_OFF);
485 pin_reg &= ~(ACTIVE_LEVEL_MASK << ACTIVE_LEVEL_OFF);
486 pin_reg |= BOTH_EADGE << ACTIVE_LEVEL_OFF;
487 pin_reg |= DB_TYPE_REMOVE_GLITCH << DB_CNTRL_OFF;
Thomas Gleixner9d829312015-06-23 15:52:47 +0200488 irq_set_handler_locked(d, handle_edge_irq);
Ken Xuedbad75d2015-03-10 15:02:19 +0800489 break;
490
491 case IRQ_TYPE_LEVEL_HIGH:
492 pin_reg |= LEVEL_TRIGGER << LEVEL_TRIG_OFF;
493 pin_reg &= ~(ACTIVE_LEVEL_MASK << ACTIVE_LEVEL_OFF);
494 pin_reg |= ACTIVE_HIGH << ACTIVE_LEVEL_OFF;
495 pin_reg &= ~(DB_CNTRl_MASK << DB_CNTRL_OFF);
496 pin_reg |= DB_TYPE_PRESERVE_LOW_GLITCH << DB_CNTRL_OFF;
Thomas Gleixner9d829312015-06-23 15:52:47 +0200497 irq_set_handler_locked(d, handle_level_irq);
Ken Xuedbad75d2015-03-10 15:02:19 +0800498 break;
499
500 case IRQ_TYPE_LEVEL_LOW:
501 pin_reg |= LEVEL_TRIGGER << LEVEL_TRIG_OFF;
502 pin_reg &= ~(ACTIVE_LEVEL_MASK << ACTIVE_LEVEL_OFF);
503 pin_reg |= ACTIVE_LOW << ACTIVE_LEVEL_OFF;
504 pin_reg &= ~(DB_CNTRl_MASK << DB_CNTRL_OFF);
505 pin_reg |= DB_TYPE_PRESERVE_HIGH_GLITCH << DB_CNTRL_OFF;
Thomas Gleixner9d829312015-06-23 15:52:47 +0200506 irq_set_handler_locked(d, handle_level_irq);
Ken Xuedbad75d2015-03-10 15:02:19 +0800507 break;
508
509 case IRQ_TYPE_NONE:
510 break;
511
512 default:
513 dev_err(&gpio_dev->pdev->dev, "Invalid type value\n");
514 ret = -EINVAL;
Ken Xuedbad75d2015-03-10 15:02:19 +0800515 }
516
517 pin_reg |= CLR_INTR_STAT << INTERRUPT_STS_OFF;
Daniel Kurtzb85bfa22018-09-22 13:58:26 -0600518 /*
519 * If WAKE_INT_MASTER_REG.MaskStsEn is set, a software write to the
520 * debounce registers of any GPIO will block wake/interrupt status
Matteo Croce48c67f12019-01-04 22:49:12 +0100521 * generation for *all* GPIOs for a length of time that depends on
Daniel Kurtzb85bfa22018-09-22 13:58:26 -0600522 * WAKE_INT_MASTER_REG.MaskStsLength[11:0]. During this period the
523 * INTERRUPT_ENABLE bit will read as 0.
524 *
525 * We temporarily enable irq for the GPIO whose configuration is
526 * changing, and then wait for it to read back as 1 to know when
527 * debounce has settled and then disable the irq again.
528 * We do this polling with the spinlock held to ensure other GPIO
529 * access routines do not read an incorrect value for the irq enable
530 * bit of other GPIOs. We keep the GPIO masked while polling to avoid
531 * spurious irqs, and disable the irq again after polling.
532 */
533 mask = BIT(INTERRUPT_ENABLE_OFF);
534 pin_reg_irq_en = pin_reg;
535 pin_reg_irq_en |= mask;
536 pin_reg_irq_en &= ~BIT(INTERRUPT_MASK_OFF);
537 writel(pin_reg_irq_en, gpio_dev->base + (d->hwirq)*4);
538 while ((readl(gpio_dev->base + (d->hwirq)*4) & mask) != mask)
539 continue;
Ken Xuedbad75d2015-03-10 15:02:19 +0800540 writel(pin_reg, gpio_dev->base + (d->hwirq)*4);
Julia Cartwright229710f2017-03-09 10:22:04 -0600541 raw_spin_unlock_irqrestore(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +0800542
Ken Xuedbad75d2015-03-10 15:02:19 +0800543 return ret;
544}
545
546static void amd_irq_ack(struct irq_data *d)
547{
548 /*
549 * based on HW design,there is no need to ack HW
550 * before handle current irq. But this routine is
551 * necessary for handle_edge_irq
552 */
553}
554
555static struct irq_chip amd_gpio_irqchip = {
556 .name = "amd_gpio",
557 .irq_ack = amd_irq_ack,
558 .irq_enable = amd_gpio_irq_enable,
559 .irq_disable = amd_gpio_irq_disable,
560 .irq_mask = amd_gpio_irq_mask,
561 .irq_unmask = amd_gpio_irq_unmask,
562 .irq_eoi = amd_gpio_irq_eoi,
563 .irq_set_type = amd_gpio_irq_set_type,
Shah, Nehal-bakulchandra3bfd4432016-12-06 12:17:48 +0530564 .flags = IRQCHIP_SKIP_SET_WAKE,
Ken Xuedbad75d2015-03-10 15:02:19 +0800565};
566
Thomas Gleixnerba714a92017-05-23 23:23:32 +0200567#define PIN_IRQ_PENDING (BIT(INTERRUPT_STS_OFF) | BIT(WAKE_STS_OFF))
568
569static irqreturn_t amd_gpio_irq_handler(int irq, void *dev_id)
Ken Xuedbad75d2015-03-10 15:02:19 +0800570{
Thomas Gleixnerba714a92017-05-23 23:23:32 +0200571 struct amd_gpio *gpio_dev = dev_id;
572 struct gpio_chip *gc = &gpio_dev->gc;
573 irqreturn_t ret = IRQ_NONE;
574 unsigned int i, irqnr;
Ken Xuedbad75d2015-03-10 15:02:19 +0800575 unsigned long flags;
Ben Dooks (Codethink)10ff58a2019-10-22 16:11:54 +0100576 u32 __iomem *regs;
577 u32 regval;
Thomas Gleixnerba714a92017-05-23 23:23:32 +0200578 u64 status, mask;
Ken Xuedbad75d2015-03-10 15:02:19 +0800579
Thomas Gleixnerba714a92017-05-23 23:23:32 +0200580 /* Read the wake status */
Julia Cartwright229710f2017-03-09 10:22:04 -0600581 raw_spin_lock_irqsave(&gpio_dev->lock, flags);
Thomas Gleixnerba714a92017-05-23 23:23:32 +0200582 status = readl(gpio_dev->base + WAKE_INT_STATUS_REG1);
583 status <<= 32;
584 status |= readl(gpio_dev->base + WAKE_INT_STATUS_REG0);
Julia Cartwright229710f2017-03-09 10:22:04 -0600585 raw_spin_unlock_irqrestore(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +0800586
Thomas Gleixnerba714a92017-05-23 23:23:32 +0200587 /* Bit 0-45 contain the relevant status bits */
588 status &= (1ULL << 46) - 1;
589 regs = gpio_dev->base;
590 for (mask = 1, irqnr = 0; status; mask <<= 1, regs += 4, irqnr += 4) {
591 if (!(status & mask))
592 continue;
593 status &= ~mask;
594
595 /* Each status bit covers four pins */
596 for (i = 0; i < 4; i++) {
597 regval = readl(regs + i);
Daniel Kurtz8bbed1e2018-07-16 18:57:18 -0600598 if (!(regval & PIN_IRQ_PENDING) ||
599 !(regval & BIT(INTERRUPT_MASK_OFF)))
Thomas Gleixnerba714a92017-05-23 23:23:32 +0200600 continue;
Thierry Redingf0fbe7b2017-11-07 19:15:47 +0100601 irq = irq_find_mapping(gc->irq.domain, irqnr + i);
Daniel Draked21b8ad2019-08-14 17:05:40 +0800602 if (irq != 0)
603 generic_handle_irq(irq);
Daniel Drake6afb1022017-10-02 12:00:54 +0800604
605 /* Clear interrupt.
606 * We must read the pin register again, in case the
607 * value was changed while executing
608 * generic_handle_irq() above.
Daniel Draked21b8ad2019-08-14 17:05:40 +0800609 * If we didn't find a mapping for the interrupt,
610 * disable it in order to avoid a system hang caused
611 * by an interrupt storm.
Daniel Drake6afb1022017-10-02 12:00:54 +0800612 */
613 raw_spin_lock_irqsave(&gpio_dev->lock, flags);
614 regval = readl(regs + i);
Daniel Draked21b8ad2019-08-14 17:05:40 +0800615 if (irq == 0) {
616 regval &= ~BIT(INTERRUPT_ENABLE_OFF);
617 dev_dbg(&gpio_dev->pdev->dev,
618 "Disabling spurious GPIO IRQ %d\n",
619 irqnr + i);
620 }
Thomas Gleixnerba714a92017-05-23 23:23:32 +0200621 writel(regval, regs + i);
Daniel Drake6afb1022017-10-02 12:00:54 +0800622 raw_spin_unlock_irqrestore(&gpio_dev->lock, flags);
Thomas Gleixnerba714a92017-05-23 23:23:32 +0200623 ret = IRQ_HANDLED;
Ken Xuedbad75d2015-03-10 15:02:19 +0800624 }
625 }
626
Thomas Gleixnerba714a92017-05-23 23:23:32 +0200627 /* Signal EOI to the GPIO unit */
Julia Cartwright229710f2017-03-09 10:22:04 -0600628 raw_spin_lock_irqsave(&gpio_dev->lock, flags);
Thomas Gleixnerba714a92017-05-23 23:23:32 +0200629 regval = readl(gpio_dev->base + WAKE_INT_MASTER_REG);
630 regval |= EOI_MASK;
631 writel(regval, gpio_dev->base + WAKE_INT_MASTER_REG);
Julia Cartwright229710f2017-03-09 10:22:04 -0600632 raw_spin_unlock_irqrestore(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +0800633
Thomas Gleixnerba714a92017-05-23 23:23:32 +0200634 return ret;
Ken Xuedbad75d2015-03-10 15:02:19 +0800635}
636
637static int amd_get_groups_count(struct pinctrl_dev *pctldev)
638{
639 struct amd_gpio *gpio_dev = pinctrl_dev_get_drvdata(pctldev);
640
641 return gpio_dev->ngroups;
642}
643
644static const char *amd_get_group_name(struct pinctrl_dev *pctldev,
645 unsigned group)
646{
647 struct amd_gpio *gpio_dev = pinctrl_dev_get_drvdata(pctldev);
648
649 return gpio_dev->groups[group].name;
650}
651
652static int amd_get_group_pins(struct pinctrl_dev *pctldev,
653 unsigned group,
654 const unsigned **pins,
655 unsigned *num_pins)
656{
657 struct amd_gpio *gpio_dev = pinctrl_dev_get_drvdata(pctldev);
658
659 *pins = gpio_dev->groups[group].pins;
660 *num_pins = gpio_dev->groups[group].npins;
661 return 0;
662}
663
664static const struct pinctrl_ops amd_pinctrl_ops = {
665 .get_groups_count = amd_get_groups_count,
666 .get_group_name = amd_get_group_name,
667 .get_group_pins = amd_get_group_pins,
668#ifdef CONFIG_OF
669 .dt_node_to_map = pinconf_generic_dt_node_to_map_group,
Irina Tirdead32f7fd2016-03-31 14:44:42 +0300670 .dt_free_map = pinctrl_utils_free_map,
Ken Xuedbad75d2015-03-10 15:02:19 +0800671#endif
672};
673
674static int amd_pinconf_get(struct pinctrl_dev *pctldev,
675 unsigned int pin,
676 unsigned long *config)
677{
678 u32 pin_reg;
679 unsigned arg;
680 unsigned long flags;
681 struct amd_gpio *gpio_dev = pinctrl_dev_get_drvdata(pctldev);
682 enum pin_config_param param = pinconf_to_config_param(*config);
683
Julia Cartwright229710f2017-03-09 10:22:04 -0600684 raw_spin_lock_irqsave(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +0800685 pin_reg = readl(gpio_dev->base + pin*4);
Julia Cartwright229710f2017-03-09 10:22:04 -0600686 raw_spin_unlock_irqrestore(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +0800687 switch (param) {
688 case PIN_CONFIG_INPUT_DEBOUNCE:
689 arg = pin_reg & DB_TMR_OUT_MASK;
690 break;
691
692 case PIN_CONFIG_BIAS_PULL_DOWN:
693 arg = (pin_reg >> PULL_DOWN_ENABLE_OFF) & BIT(0);
694 break;
695
696 case PIN_CONFIG_BIAS_PULL_UP:
697 arg = (pin_reg >> PULL_UP_SEL_OFF) & (BIT(0) | BIT(1));
698 break;
699
700 case PIN_CONFIG_DRIVE_STRENGTH:
701 arg = (pin_reg >> DRV_STRENGTH_SEL_OFF) & DRV_STRENGTH_SEL_MASK;
702 break;
703
704 default:
705 dev_err(&gpio_dev->pdev->dev, "Invalid config param %04x\n",
706 param);
707 return -ENOTSUPP;
708 }
709
710 *config = pinconf_to_config_packed(param, arg);
711
712 return 0;
713}
714
715static int amd_pinconf_set(struct pinctrl_dev *pctldev, unsigned int pin,
716 unsigned long *configs, unsigned num_configs)
717{
718 int i;
Ken Xuedbad75d2015-03-10 15:02:19 +0800719 u32 arg;
Ken Xue25a853d2015-03-27 17:44:26 +0800720 int ret = 0;
721 u32 pin_reg;
Ken Xuedbad75d2015-03-10 15:02:19 +0800722 unsigned long flags;
723 enum pin_config_param param;
724 struct amd_gpio *gpio_dev = pinctrl_dev_get_drvdata(pctldev);
725
Julia Cartwright229710f2017-03-09 10:22:04 -0600726 raw_spin_lock_irqsave(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +0800727 for (i = 0; i < num_configs; i++) {
728 param = pinconf_to_config_param(configs[i]);
729 arg = pinconf_to_config_argument(configs[i]);
730 pin_reg = readl(gpio_dev->base + pin*4);
731
732 switch (param) {
733 case PIN_CONFIG_INPUT_DEBOUNCE:
734 pin_reg &= ~DB_TMR_OUT_MASK;
735 pin_reg |= arg & DB_TMR_OUT_MASK;
736 break;
737
738 case PIN_CONFIG_BIAS_PULL_DOWN:
739 pin_reg &= ~BIT(PULL_DOWN_ENABLE_OFF);
740 pin_reg |= (arg & BIT(0)) << PULL_DOWN_ENABLE_OFF;
741 break;
742
743 case PIN_CONFIG_BIAS_PULL_UP:
744 pin_reg &= ~BIT(PULL_UP_SEL_OFF);
745 pin_reg |= (arg & BIT(0)) << PULL_UP_SEL_OFF;
746 pin_reg &= ~BIT(PULL_UP_ENABLE_OFF);
747 pin_reg |= ((arg>>1) & BIT(0)) << PULL_UP_ENABLE_OFF;
748 break;
749
750 case PIN_CONFIG_DRIVE_STRENGTH:
751 pin_reg &= ~(DRV_STRENGTH_SEL_MASK
752 << DRV_STRENGTH_SEL_OFF);
753 pin_reg |= (arg & DRV_STRENGTH_SEL_MASK)
754 << DRV_STRENGTH_SEL_OFF;
755 break;
756
757 default:
758 dev_err(&gpio_dev->pdev->dev,
759 "Invalid config param %04x\n", param);
Ken Xue25a853d2015-03-27 17:44:26 +0800760 ret = -ENOTSUPP;
Ken Xuedbad75d2015-03-10 15:02:19 +0800761 }
762
763 writel(pin_reg, gpio_dev->base + pin*4);
764 }
Julia Cartwright229710f2017-03-09 10:22:04 -0600765 raw_spin_unlock_irqrestore(&gpio_dev->lock, flags);
Ken Xuedbad75d2015-03-10 15:02:19 +0800766
Ken Xue25a853d2015-03-27 17:44:26 +0800767 return ret;
Ken Xuedbad75d2015-03-10 15:02:19 +0800768}
769
770static int amd_pinconf_group_get(struct pinctrl_dev *pctldev,
771 unsigned int group,
772 unsigned long *config)
773{
774 const unsigned *pins;
775 unsigned npins;
776 int ret;
777
778 ret = amd_get_group_pins(pctldev, group, &pins, &npins);
779 if (ret)
780 return ret;
781
782 if (amd_pinconf_get(pctldev, pins[0], config))
783 return -ENOTSUPP;
784
785 return 0;
786}
787
788static int amd_pinconf_group_set(struct pinctrl_dev *pctldev,
789 unsigned group, unsigned long *configs,
790 unsigned num_configs)
791{
792 const unsigned *pins;
793 unsigned npins;
794 int i, ret;
795
796 ret = amd_get_group_pins(pctldev, group, &pins, &npins);
797 if (ret)
798 return ret;
799 for (i = 0; i < npins; i++) {
800 if (amd_pinconf_set(pctldev, pins[i], configs, num_configs))
801 return -ENOTSUPP;
802 }
803 return 0;
804}
805
806static const struct pinconf_ops amd_pinconf_ops = {
807 .pin_config_get = amd_pinconf_get,
808 .pin_config_set = amd_pinconf_set,
809 .pin_config_group_get = amd_pinconf_group_get,
810 .pin_config_group_set = amd_pinconf_group_set,
811};
812
Daniel Drake79d2c8b2017-09-11 14:11:56 +0800813#ifdef CONFIG_PM_SLEEP
814static bool amd_gpio_should_save(struct amd_gpio *gpio_dev, unsigned int pin)
815{
816 const struct pin_desc *pd = pin_desc_get(gpio_dev->pctrl, pin);
817
818 if (!pd)
819 return false;
820
821 /*
822 * Only restore the pin if it is actually in use by the kernel (or
823 * by userspace).
824 */
825 if (pd->mux_owner || pd->gpio_owner ||
826 gpiochip_line_is_irq(&gpio_dev->gc, pin))
827 return true;
828
829 return false;
830}
831
Colin Ian King2d71dfa2017-09-13 17:15:01 +0100832static int amd_gpio_suspend(struct device *dev)
Daniel Drake79d2c8b2017-09-11 14:11:56 +0800833{
Wolfram Sang9f540c32018-10-21 22:00:30 +0200834 struct amd_gpio *gpio_dev = dev_get_drvdata(dev);
Daniel Drake79d2c8b2017-09-11 14:11:56 +0800835 struct pinctrl_desc *desc = gpio_dev->pctrl->desc;
836 int i;
837
838 for (i = 0; i < desc->npins; i++) {
839 int pin = desc->pins[i].number;
840
841 if (!amd_gpio_should_save(gpio_dev, pin))
842 continue;
843
844 gpio_dev->saved_regs[i] = readl(gpio_dev->base + pin*4);
845 }
846
847 return 0;
848}
849
Colin Ian King2d71dfa2017-09-13 17:15:01 +0100850static int amd_gpio_resume(struct device *dev)
Daniel Drake79d2c8b2017-09-11 14:11:56 +0800851{
Wolfram Sang9f540c32018-10-21 22:00:30 +0200852 struct amd_gpio *gpio_dev = dev_get_drvdata(dev);
Daniel Drake79d2c8b2017-09-11 14:11:56 +0800853 struct pinctrl_desc *desc = gpio_dev->pctrl->desc;
854 int i;
855
856 for (i = 0; i < desc->npins; i++) {
857 int pin = desc->pins[i].number;
858
859 if (!amd_gpio_should_save(gpio_dev, pin))
860 continue;
861
862 writel(gpio_dev->saved_regs[i], gpio_dev->base + pin*4);
863 }
864
865 return 0;
866}
867
868static const struct dev_pm_ops amd_gpio_pm_ops = {
869 SET_LATE_SYSTEM_SLEEP_PM_OPS(amd_gpio_suspend,
870 amd_gpio_resume)
871};
872#endif
873
Ken Xuedbad75d2015-03-10 15:02:19 +0800874static struct pinctrl_desc amd_pinctrl_desc = {
875 .pins = kerncz_pins,
876 .npins = ARRAY_SIZE(kerncz_pins),
877 .pctlops = &amd_pinctrl_ops,
878 .confops = &amd_pinconf_ops,
879 .owner = THIS_MODULE,
880};
881
882static int amd_gpio_probe(struct platform_device *pdev)
883{
884 int ret = 0;
Ken Xue25a853d2015-03-27 17:44:26 +0800885 int irq_base;
Ken Xuedbad75d2015-03-10 15:02:19 +0800886 struct resource *res;
887 struct amd_gpio *gpio_dev;
Linus Walleije81376eb2020-07-22 12:15:45 +0200888 struct gpio_irq_chip *girq;
Ken Xuedbad75d2015-03-10 15:02:19 +0800889
890 gpio_dev = devm_kzalloc(&pdev->dev,
891 sizeof(struct amd_gpio), GFP_KERNEL);
892 if (!gpio_dev)
893 return -ENOMEM;
894
Julia Cartwright229710f2017-03-09 10:22:04 -0600895 raw_spin_lock_init(&gpio_dev->lock);
Ken Xuedbad75d2015-03-10 15:02:19 +0800896
897 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
898 if (!res) {
899 dev_err(&pdev->dev, "Failed to get gpio io resource.\n");
900 return -EINVAL;
901 }
902
Christoph Hellwig4bdc0d62020-01-06 09:43:50 +0100903 gpio_dev->base = devm_ioremap(&pdev->dev, res->start,
Ken Xuedbad75d2015-03-10 15:02:19 +0800904 resource_size(res));
Wei Yongjun424a6c62016-02-06 22:56:36 +0800905 if (!gpio_dev->base)
906 return -ENOMEM;
Ken Xuedbad75d2015-03-10 15:02:19 +0800907
908 irq_base = platform_get_irq(pdev, 0);
Stephen Boyd64c4dcb2019-07-30 11:15:33 -0700909 if (irq_base < 0)
Gustavo A. R. Silva2e6424ab2017-08-09 11:09:33 -0500910 return irq_base;
Ken Xuedbad75d2015-03-10 15:02:19 +0800911
Daniel Drake79d2c8b2017-09-11 14:11:56 +0800912#ifdef CONFIG_PM_SLEEP
913 gpio_dev->saved_regs = devm_kcalloc(&pdev->dev, amd_pinctrl_desc.npins,
914 sizeof(*gpio_dev->saved_regs),
915 GFP_KERNEL);
916 if (!gpio_dev->saved_regs)
917 return -ENOMEM;
918#endif
919
Ken Xuedbad75d2015-03-10 15:02:19 +0800920 gpio_dev->pdev = pdev;
Daniel Kurtz12b10f42018-02-16 12:12:43 -0700921 gpio_dev->gc.get_direction = amd_gpio_get_direction;
Ken Xuedbad75d2015-03-10 15:02:19 +0800922 gpio_dev->gc.direction_input = amd_gpio_direction_input;
923 gpio_dev->gc.direction_output = amd_gpio_direction_output;
924 gpio_dev->gc.get = amd_gpio_get_value;
925 gpio_dev->gc.set = amd_gpio_set_value;
Mika Westerberg2956b5d2017-01-23 15:34:34 +0300926 gpio_dev->gc.set_config = amd_gpio_set_config;
Ken Xuedbad75d2015-03-10 15:02:19 +0800927 gpio_dev->gc.dbg_show = amd_gpio_dbg_show;
928
Shah, Nehal-bakulchandra3bfd4432016-12-06 12:17:48 +0530929 gpio_dev->gc.base = -1;
Ken Xuedbad75d2015-03-10 15:02:19 +0800930 gpio_dev->gc.label = pdev->name;
931 gpio_dev->gc.owner = THIS_MODULE;
Linus Walleij58383c782015-11-04 09:56:26 +0100932 gpio_dev->gc.parent = &pdev->dev;
Shah, Nehal-bakulchandra3bfd4432016-12-06 12:17:48 +0530933 gpio_dev->gc.ngpio = resource_size(res) / 4;
Ken Xuedbad75d2015-03-10 15:02:19 +0800934#if defined(CONFIG_OF_GPIO)
935 gpio_dev->gc.of_node = pdev->dev.of_node;
936#endif
937
Shah, Nehal-bakulchandra3bfd4432016-12-06 12:17:48 +0530938 gpio_dev->hwbank_num = gpio_dev->gc.ngpio / 64;
Ken Xuedbad75d2015-03-10 15:02:19 +0800939 gpio_dev->groups = kerncz_groups;
940 gpio_dev->ngroups = ARRAY_SIZE(kerncz_groups);
941
942 amd_pinctrl_desc.name = dev_name(&pdev->dev);
Laxman Dewangan251e22a2016-02-24 14:44:07 +0530943 gpio_dev->pctrl = devm_pinctrl_register(&pdev->dev, &amd_pinctrl_desc,
944 gpio_dev);
Masahiro Yamada323de9e2015-06-09 13:01:16 +0900945 if (IS_ERR(gpio_dev->pctrl)) {
Ken Xuedbad75d2015-03-10 15:02:19 +0800946 dev_err(&pdev->dev, "Couldn't register pinctrl driver\n");
Masahiro Yamada323de9e2015-06-09 13:01:16 +0900947 return PTR_ERR(gpio_dev->pctrl);
Ken Xuedbad75d2015-03-10 15:02:19 +0800948 }
949
Linus Walleije81376eb2020-07-22 12:15:45 +0200950 girq = &gpio_dev->gc.irq;
951 girq->chip = &amd_gpio_irqchip;
952 /* This will let us handle the parent IRQ in the driver */
953 girq->parent_handler = NULL;
954 girq->num_parents = 0;
955 girq->parents = NULL;
956 girq->default_type = IRQ_TYPE_NONE;
957 girq->handler = handle_simple_irq;
958
Linus Walleij04d36722015-12-08 09:21:38 +0100959 ret = gpiochip_add_data(&gpio_dev->gc, gpio_dev);
Ken Xuedbad75d2015-03-10 15:02:19 +0800960 if (ret)
Laxman Dewangan251e22a2016-02-24 14:44:07 +0530961 return ret;
Ken Xuedbad75d2015-03-10 15:02:19 +0800962
963 ret = gpiochip_add_pin_range(&gpio_dev->gc, dev_name(&pdev->dev),
Shah, Nehal-bakulchandra3bfd4432016-12-06 12:17:48 +0530964 0, 0, gpio_dev->gc.ngpio);
Ken Xuedbad75d2015-03-10 15:02:19 +0800965 if (ret) {
966 dev_err(&pdev->dev, "Failed to add pin range\n");
967 goto out2;
968 }
969
Sandeep Singh279ffaf2019-04-04 13:16:26 +0000970 ret = devm_request_irq(&pdev->dev, irq_base, amd_gpio_irq_handler,
971 IRQF_SHARED, KBUILD_MODNAME, gpio_dev);
Thomas Gleixnerba714a92017-05-23 23:23:32 +0200972 if (ret)
973 goto out2;
974
Ken Xuedbad75d2015-03-10 15:02:19 +0800975 platform_set_drvdata(pdev, gpio_dev);
976
977 dev_dbg(&pdev->dev, "amd gpio driver loaded\n");
978 return ret;
979
980out2:
981 gpiochip_remove(&gpio_dev->gc);
982
Ken Xuedbad75d2015-03-10 15:02:19 +0800983 return ret;
984}
985
986static int amd_gpio_remove(struct platform_device *pdev)
987{
988 struct amd_gpio *gpio_dev;
989
990 gpio_dev = platform_get_drvdata(pdev);
991
992 gpiochip_remove(&gpio_dev->gc);
Ken Xuedbad75d2015-03-10 15:02:19 +0800993
994 return 0;
995}
996
Lee Jonesde4334f2020-07-13 15:49:30 +0100997#ifdef CONFIG_ACPI
Ken Xuedbad75d2015-03-10 15:02:19 +0800998static const struct acpi_device_id amd_gpio_acpi_match[] = {
999 { "AMD0030", 0 },
Wang Hongcheng42a44402016-03-11 10:58:42 +08001000 { "AMDI0030", 0},
Ken Xuedbad75d2015-03-10 15:02:19 +08001001 { },
1002};
1003MODULE_DEVICE_TABLE(acpi, amd_gpio_acpi_match);
Lee Jonesde4334f2020-07-13 15:49:30 +01001004#endif
Ken Xuedbad75d2015-03-10 15:02:19 +08001005
1006static struct platform_driver amd_gpio_driver = {
1007 .driver = {
1008 .name = "amd_gpio",
Ken Xuedbad75d2015-03-10 15:02:19 +08001009 .acpi_match_table = ACPI_PTR(amd_gpio_acpi_match),
Daniel Drake79d2c8b2017-09-11 14:11:56 +08001010#ifdef CONFIG_PM_SLEEP
1011 .pm = &amd_gpio_pm_ops,
1012#endif
Ken Xuedbad75d2015-03-10 15:02:19 +08001013 },
1014 .probe = amd_gpio_probe,
1015 .remove = amd_gpio_remove,
1016};
1017
1018module_platform_driver(amd_gpio_driver);
1019
1020MODULE_LICENSE("GPL v2");
1021MODULE_AUTHOR("Ken Xue <Ken.Xue@amd.com>, Jeff Wu <Jeff.Wu@amd.com>");
1022MODULE_DESCRIPTION("AMD GPIO pinctrl driver");