blob: dde67d425e9cf60ac19b06fcd286787457d0adc6 [file] [log] [blame]
Mika Westerberg6e08d6b2014-11-03 13:01:33 +02001/*
2 * Cherryview/Braswell pinctrl driver
3 *
4 * Copyright (C) 2014, Intel Corporation
5 * Author: Mika Westerberg <mika.westerberg@linux.intel.com>
6 *
7 * This driver is based on the original Cherryview GPIO driver by
8 * Ning Li <ning.li@intel.com>
9 * Alan Cox <alan@linux.intel.com>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
15
16#include <linux/kernel.h>
17#include <linux/module.h>
18#include <linux/init.h>
19#include <linux/types.h>
20#include <linux/gpio.h>
21#include <linux/gpio/driver.h>
22#include <linux/acpi.h>
23#include <linux/pinctrl/pinctrl.h>
24#include <linux/pinctrl/pinmux.h>
25#include <linux/pinctrl/pinconf.h>
26#include <linux/pinctrl/pinconf-generic.h>
27#include <linux/platform_device.h>
28
29#define CHV_INTSTAT 0x300
30#define CHV_INTMASK 0x380
31
32#define FAMILY_PAD_REGS_OFF 0x4400
33#define FAMILY_PAD_REGS_SIZE 0x400
34#define MAX_FAMILY_PAD_GPIO_NO 15
35#define GPIO_REGS_SIZE 8
36
37#define CHV_PADCTRL0 0x000
38#define CHV_PADCTRL0_INTSEL_SHIFT 28
39#define CHV_PADCTRL0_INTSEL_MASK (0xf << CHV_PADCTRL0_INTSEL_SHIFT)
40#define CHV_PADCTRL0_TERM_UP BIT(23)
41#define CHV_PADCTRL0_TERM_SHIFT 20
42#define CHV_PADCTRL0_TERM_MASK (7 << CHV_PADCTRL0_TERM_SHIFT)
43#define CHV_PADCTRL0_TERM_20K 1
44#define CHV_PADCTRL0_TERM_5K 2
45#define CHV_PADCTRL0_TERM_1K 4
46#define CHV_PADCTRL0_PMODE_SHIFT 16
47#define CHV_PADCTRL0_PMODE_MASK (0xf << CHV_PADCTRL0_PMODE_SHIFT)
48#define CHV_PADCTRL0_GPIOEN BIT(15)
49#define CHV_PADCTRL0_GPIOCFG_SHIFT 8
50#define CHV_PADCTRL0_GPIOCFG_MASK (7 << CHV_PADCTRL0_GPIOCFG_SHIFT)
51#define CHV_PADCTRL0_GPIOCFG_GPIO 0
52#define CHV_PADCTRL0_GPIOCFG_GPO 1
53#define CHV_PADCTRL0_GPIOCFG_GPI 2
54#define CHV_PADCTRL0_GPIOCFG_HIZ 3
55#define CHV_PADCTRL0_GPIOTXSTATE BIT(1)
56#define CHV_PADCTRL0_GPIORXSTATE BIT(0)
57
58#define CHV_PADCTRL1 0x004
59#define CHV_PADCTRL1_CFGLOCK BIT(31)
60#define CHV_PADCTRL1_INVRXTX_SHIFT 4
61#define CHV_PADCTRL1_INVRXTX_MASK (0xf << CHV_PADCTRL1_INVRXTX_SHIFT)
62#define CHV_PADCTRL1_INVRXTX_TXENABLE (2 << CHV_PADCTRL1_INVRXTX_SHIFT)
63#define CHV_PADCTRL1_ODEN BIT(3)
64#define CHV_PADCTRL1_INVRXTX_RXDATA (4 << CHV_PADCTRL1_INVRXTX_SHIFT)
65#define CHV_PADCTRL1_INTWAKECFG_MASK 7
66#define CHV_PADCTRL1_INTWAKECFG_FALLING 1
67#define CHV_PADCTRL1_INTWAKECFG_RISING 2
68#define CHV_PADCTRL1_INTWAKECFG_BOTH 3
69#define CHV_PADCTRL1_INTWAKECFG_LEVEL 4
70
71/**
72 * struct chv_alternate_function - A per group or per pin alternate function
73 * @pin: Pin number (only used in per pin configs)
74 * @mode: Mode the pin should be set in
75 * @invert_oe: Invert OE for this pin
76 */
77struct chv_alternate_function {
78 unsigned pin;
79 u8 mode;
80 bool invert_oe;
81};
82
83/**
84 * struct chv_pincgroup - describes a CHV pin group
85 * @name: Name of the group
86 * @pins: An array of pins in this group
87 * @npins: Number of pins in this group
88 * @altfunc: Alternate function applied to all pins in this group
89 * @overrides: Alternate function override per pin or %NULL if not used
90 * @noverrides: Number of per pin alternate function overrides if
91 * @overrides != NULL.
92 */
93struct chv_pingroup {
94 const char *name;
95 const unsigned *pins;
96 size_t npins;
97 struct chv_alternate_function altfunc;
98 const struct chv_alternate_function *overrides;
99 size_t noverrides;
100};
101
102/**
103 * struct chv_function - A CHV pinmux function
104 * @name: Name of the function
105 * @groups: An array of groups for this function
106 * @ngroups: Number of groups in @groups
107 */
108struct chv_function {
109 const char *name;
110 const char * const *groups;
111 size_t ngroups;
112};
113
114/**
115 * struct chv_gpio_pinrange - A range of pins that can be used as GPIOs
116 * @base: Start pin number
117 * @npins: Number of pins in this range
118 */
119struct chv_gpio_pinrange {
120 unsigned base;
121 unsigned npins;
122};
123
124/**
125 * struct chv_community - A community specific configuration
126 * @uid: ACPI _UID used to match the community
127 * @pins: All pins in this community
128 * @npins: Number of pins
129 * @groups: All groups in this community
130 * @ngroups: Number of groups
131 * @functions: All functions in this community
132 * @nfunctions: Number of functions
133 * @ngpios: Number of GPIOs in this community
134 * @gpio_ranges: An array of GPIO ranges in this community
135 * @ngpio_ranges: Number of GPIO ranges
136 * @ngpios: Total number of GPIOs in this community
137 */
138struct chv_community {
139 const char *uid;
140 const struct pinctrl_pin_desc *pins;
141 size_t npins;
142 const struct chv_pingroup *groups;
143 size_t ngroups;
144 const struct chv_function *functions;
145 size_t nfunctions;
146 const struct chv_gpio_pinrange *gpio_ranges;
147 size_t ngpio_ranges;
148 size_t ngpios;
149};
150
Mika Westerberg9eb457b2014-12-04 12:32:50 +0200151struct chv_pin_context {
152 u32 padctrl0;
153 u32 padctrl1;
154};
155
Mika Westerberg6e08d6b2014-11-03 13:01:33 +0200156/**
157 * struct chv_pinctrl - CHV pinctrl private structure
158 * @dev: Pointer to the parent device
159 * @pctldesc: Pin controller description
160 * @pctldev: Pointer to the pin controller device
161 * @chip: GPIO chip in this pin controller
162 * @regs: MMIO registers
163 * @lock: Lock to serialize register accesses
164 * @intr_lines: Stores mapping between 16 HW interrupt wires and GPIO
165 * offset (in GPIO number space)
166 * @community: Community this pinctrl instance represents
167 *
168 * The first group in @groups is expected to contain all pins that can be
169 * used as GPIOs.
170 */
171struct chv_pinctrl {
172 struct device *dev;
173 struct pinctrl_desc pctldesc;
174 struct pinctrl_dev *pctldev;
175 struct gpio_chip chip;
176 void __iomem *regs;
177 spinlock_t lock;
178 unsigned intr_lines[16];
179 const struct chv_community *community;
Mika Westerberg9eb457b2014-12-04 12:32:50 +0200180 u32 saved_intmask;
181 struct chv_pin_context *saved_pin_context;
Mika Westerberg6e08d6b2014-11-03 13:01:33 +0200182};
183
184#define gpiochip_to_pinctrl(c) container_of(c, struct chv_pinctrl, chip)
185
186#define ALTERNATE_FUNCTION(p, m, i) \
187 { \
188 .pin = (p), \
189 .mode = (m), \
190 .invert_oe = (i), \
191 }
192
193#define PIN_GROUP(n, p, m, i) \
194 { \
195 .name = (n), \
196 .pins = (p), \
197 .npins = ARRAY_SIZE((p)), \
198 .altfunc.mode = (m), \
199 .altfunc.invert_oe = (i), \
200 }
201
202#define PIN_GROUP_WITH_OVERRIDE(n, p, m, i, o) \
203 { \
204 .name = (n), \
205 .pins = (p), \
206 .npins = ARRAY_SIZE((p)), \
207 .altfunc.mode = (m), \
208 .altfunc.invert_oe = (i), \
209 .overrides = (o), \
210 .noverrides = ARRAY_SIZE((o)), \
211 }
212
213#define FUNCTION(n, g) \
214 { \
215 .name = (n), \
216 .groups = (g), \
217 .ngroups = ARRAY_SIZE((g)), \
218 }
219
220#define GPIO_PINRANGE(start, end) \
221 { \
222 .base = (start), \
223 .npins = (end) - (start) + 1, \
224 }
225
226static const struct pinctrl_pin_desc southwest_pins[] = {
227 PINCTRL_PIN(0, "FST_SPI_D2"),
228 PINCTRL_PIN(1, "FST_SPI_D0"),
229 PINCTRL_PIN(2, "FST_SPI_CLK"),
230 PINCTRL_PIN(3, "FST_SPI_D3"),
231 PINCTRL_PIN(4, "FST_SPI_CS1_B"),
232 PINCTRL_PIN(5, "FST_SPI_D1"),
233 PINCTRL_PIN(6, "FST_SPI_CS0_B"),
234 PINCTRL_PIN(7, "FST_SPI_CS2_B"),
235
236 PINCTRL_PIN(15, "UART1_RTS_B"),
237 PINCTRL_PIN(16, "UART1_RXD"),
238 PINCTRL_PIN(17, "UART2_RXD"),
239 PINCTRL_PIN(18, "UART1_CTS_B"),
240 PINCTRL_PIN(19, "UART2_RTS_B"),
241 PINCTRL_PIN(20, "UART1_TXD"),
242 PINCTRL_PIN(21, "UART2_TXD"),
243 PINCTRL_PIN(22, "UART2_CTS_B"),
244
245 PINCTRL_PIN(30, "MF_HDA_CLK"),
246 PINCTRL_PIN(31, "MF_HDA_RSTB"),
247 PINCTRL_PIN(32, "MF_HDA_SDIO"),
248 PINCTRL_PIN(33, "MF_HDA_SDO"),
249 PINCTRL_PIN(34, "MF_HDA_DOCKRSTB"),
250 PINCTRL_PIN(35, "MF_HDA_SYNC"),
251 PINCTRL_PIN(36, "MF_HDA_SDI1"),
252 PINCTRL_PIN(37, "MF_HDA_DOCKENB"),
253
254 PINCTRL_PIN(45, "I2C5_SDA"),
255 PINCTRL_PIN(46, "I2C4_SDA"),
256 PINCTRL_PIN(47, "I2C6_SDA"),
257 PINCTRL_PIN(48, "I2C5_SCL"),
258 PINCTRL_PIN(49, "I2C_NFC_SDA"),
259 PINCTRL_PIN(50, "I2C4_SCL"),
260 PINCTRL_PIN(51, "I2C6_SCL"),
261 PINCTRL_PIN(52, "I2C_NFC_SCL"),
262
263 PINCTRL_PIN(60, "I2C1_SDA"),
264 PINCTRL_PIN(61, "I2C0_SDA"),
265 PINCTRL_PIN(62, "I2C2_SDA"),
266 PINCTRL_PIN(63, "I2C1_SCL"),
267 PINCTRL_PIN(64, "I2C3_SDA"),
268 PINCTRL_PIN(65, "I2C0_SCL"),
269 PINCTRL_PIN(66, "I2C2_SCL"),
270 PINCTRL_PIN(67, "I2C3_SCL"),
271
272 PINCTRL_PIN(75, "SATA_GP0"),
273 PINCTRL_PIN(76, "SATA_GP1"),
274 PINCTRL_PIN(77, "SATA_LEDN"),
275 PINCTRL_PIN(78, "SATA_GP2"),
276 PINCTRL_PIN(79, "MF_SMB_ALERTB"),
277 PINCTRL_PIN(80, "SATA_GP3"),
278 PINCTRL_PIN(81, "MF_SMB_CLK"),
279 PINCTRL_PIN(82, "MF_SMB_DATA"),
280
281 PINCTRL_PIN(90, "PCIE_CLKREQ0B"),
282 PINCTRL_PIN(91, "PCIE_CLKREQ1B"),
283 PINCTRL_PIN(92, "GP_SSP_2_CLK"),
284 PINCTRL_PIN(93, "PCIE_CLKREQ2B"),
285 PINCTRL_PIN(94, "GP_SSP_2_RXD"),
286 PINCTRL_PIN(95, "PCIE_CLKREQ3B"),
287 PINCTRL_PIN(96, "GP_SSP_2_FS"),
288 PINCTRL_PIN(97, "GP_SSP_2_TXD"),
289};
290
291static const unsigned southwest_fspi_pins[] = { 0, 1, 2, 3, 4, 5, 6, 7 };
292static const unsigned southwest_uart0_pins[] = { 16, 20 };
293static const unsigned southwest_uart1_pins[] = { 15, 16, 18, 20 };
294static const unsigned southwest_uart2_pins[] = { 17, 19, 21, 22 };
295static const unsigned southwest_i2c0_pins[] = { 61, 65 };
296static const unsigned southwest_hda_pins[] = { 30, 31, 32, 33, 34, 35, 36, 37 };
297static const unsigned southwest_lpe_pins[] = {
298 30, 31, 32, 33, 34, 35, 36, 37, 92, 94, 96, 97,
299};
300static const unsigned southwest_i2c1_pins[] = { 60, 63 };
301static const unsigned southwest_i2c2_pins[] = { 62, 66 };
302static const unsigned southwest_i2c3_pins[] = { 64, 67 };
303static const unsigned southwest_i2c4_pins[] = { 46, 50 };
304static const unsigned southwest_i2c5_pins[] = { 45, 48 };
305static const unsigned southwest_i2c6_pins[] = { 47, 51 };
306static const unsigned southwest_i2c_nfc_pins[] = { 49, 52 };
307static const unsigned southwest_smbus_pins[] = { 79, 81, 82 };
308static const unsigned southwest_spi3_pins[] = { 76, 79, 80, 81, 82 };
309
310/* LPE I2S TXD pins need to have invert_oe set */
311static const struct chv_alternate_function southwest_lpe_altfuncs[] = {
312 ALTERNATE_FUNCTION(30, 1, true),
313 ALTERNATE_FUNCTION(34, 1, true),
314 ALTERNATE_FUNCTION(97, 1, true),
315};
316
317/*
318 * Two spi3 chipselects are available in different mode than the main spi3
319 * functionality, which is using mode 1.
320 */
321static const struct chv_alternate_function southwest_spi3_altfuncs[] = {
322 ALTERNATE_FUNCTION(76, 3, false),
323 ALTERNATE_FUNCTION(80, 3, false),
324};
325
326static const struct chv_pingroup southwest_groups[] = {
327 PIN_GROUP("uart0_grp", southwest_uart0_pins, 2, false),
328 PIN_GROUP("uart1_grp", southwest_uart1_pins, 1, false),
329 PIN_GROUP("uart2_grp", southwest_uart2_pins, 1, false),
330 PIN_GROUP("hda_grp", southwest_hda_pins, 2, false),
331 PIN_GROUP("i2c0_grp", southwest_i2c0_pins, 1, true),
332 PIN_GROUP("i2c1_grp", southwest_i2c1_pins, 1, true),
333 PIN_GROUP("i2c2_grp", southwest_i2c2_pins, 1, true),
334 PIN_GROUP("i2c3_grp", southwest_i2c3_pins, 1, true),
335 PIN_GROUP("i2c4_grp", southwest_i2c4_pins, 1, true),
336 PIN_GROUP("i2c5_grp", southwest_i2c5_pins, 1, true),
337 PIN_GROUP("i2c6_grp", southwest_i2c6_pins, 1, true),
338 PIN_GROUP("i2c_nfc_grp", southwest_i2c_nfc_pins, 2, true),
339
340 PIN_GROUP_WITH_OVERRIDE("lpe_grp", southwest_lpe_pins, 1, false,
341 southwest_lpe_altfuncs),
342 PIN_GROUP_WITH_OVERRIDE("spi3_grp", southwest_spi3_pins, 2, false,
343 southwest_spi3_altfuncs),
344};
345
346static const char * const southwest_uart0_groups[] = { "uart0_grp" };
347static const char * const southwest_uart1_groups[] = { "uart1_grp" };
348static const char * const southwest_uart2_groups[] = { "uart2_grp" };
349static const char * const southwest_hda_groups[] = { "hda_grp" };
350static const char * const southwest_lpe_groups[] = { "lpe_grp" };
351static const char * const southwest_i2c0_groups[] = { "i2c0_grp" };
352static const char * const southwest_i2c1_groups[] = { "i2c1_grp" };
353static const char * const southwest_i2c2_groups[] = { "i2c2_grp" };
354static const char * const southwest_i2c3_groups[] = { "i2c3_grp" };
355static const char * const southwest_i2c4_groups[] = { "i2c4_grp" };
356static const char * const southwest_i2c5_groups[] = { "i2c5_grp" };
357static const char * const southwest_i2c6_groups[] = { "i2c6_grp" };
358static const char * const southwest_i2c_nfc_groups[] = { "i2c_nfc_grp" };
359static const char * const southwest_spi3_groups[] = { "spi3_grp" };
360
361/*
362 * Only do pinmuxing for certain LPSS devices for now. Rest of the pins are
363 * enabled only as GPIOs.
364 */
365static const struct chv_function southwest_functions[] = {
366 FUNCTION("uart0", southwest_uart0_groups),
367 FUNCTION("uart1", southwest_uart1_groups),
368 FUNCTION("uart2", southwest_uart2_groups),
369 FUNCTION("hda", southwest_hda_groups),
370 FUNCTION("lpe", southwest_lpe_groups),
371 FUNCTION("i2c0", southwest_i2c0_groups),
372 FUNCTION("i2c1", southwest_i2c1_groups),
373 FUNCTION("i2c2", southwest_i2c2_groups),
374 FUNCTION("i2c3", southwest_i2c3_groups),
375 FUNCTION("i2c4", southwest_i2c4_groups),
376 FUNCTION("i2c5", southwest_i2c5_groups),
377 FUNCTION("i2c6", southwest_i2c6_groups),
378 FUNCTION("i2c_nfc", southwest_i2c_nfc_groups),
379 FUNCTION("spi3", southwest_spi3_groups),
380};
381
382static const struct chv_gpio_pinrange southwest_gpio_ranges[] = {
383 GPIO_PINRANGE(0, 7),
384 GPIO_PINRANGE(15, 22),
385 GPIO_PINRANGE(30, 37),
386 GPIO_PINRANGE(45, 52),
387 GPIO_PINRANGE(60, 67),
388 GPIO_PINRANGE(75, 82),
389 GPIO_PINRANGE(90, 97),
390};
391
392static const struct chv_community southwest_community = {
393 .uid = "1",
394 .pins = southwest_pins,
395 .npins = ARRAY_SIZE(southwest_pins),
396 .groups = southwest_groups,
397 .ngroups = ARRAY_SIZE(southwest_groups),
398 .functions = southwest_functions,
399 .nfunctions = ARRAY_SIZE(southwest_functions),
400 .gpio_ranges = southwest_gpio_ranges,
401 .ngpio_ranges = ARRAY_SIZE(southwest_gpio_ranges),
402 .ngpios = ARRAY_SIZE(southwest_pins),
403};
404
405static const struct pinctrl_pin_desc north_pins[] = {
406 PINCTRL_PIN(0, "GPIO_DFX_0"),
407 PINCTRL_PIN(1, "GPIO_DFX_3"),
408 PINCTRL_PIN(2, "GPIO_DFX_7"),
409 PINCTRL_PIN(3, "GPIO_DFX_1"),
410 PINCTRL_PIN(4, "GPIO_DFX_5"),
411 PINCTRL_PIN(5, "GPIO_DFX_4"),
412 PINCTRL_PIN(6, "GPIO_DFX_8"),
413 PINCTRL_PIN(7, "GPIO_DFX_2"),
414 PINCTRL_PIN(8, "GPIO_DFX_6"),
415
416 PINCTRL_PIN(15, "GPIO_SUS0"),
417 PINCTRL_PIN(16, "SEC_GPIO_SUS10"),
418 PINCTRL_PIN(17, "GPIO_SUS3"),
419 PINCTRL_PIN(18, "GPIO_SUS7"),
420 PINCTRL_PIN(19, "GPIO_SUS1"),
421 PINCTRL_PIN(20, "GPIO_SUS5"),
422 PINCTRL_PIN(21, "SEC_GPIO_SUS11"),
423 PINCTRL_PIN(22, "GPIO_SUS4"),
424 PINCTRL_PIN(23, "SEC_GPIO_SUS8"),
425 PINCTRL_PIN(24, "GPIO_SUS2"),
426 PINCTRL_PIN(25, "GPIO_SUS6"),
427 PINCTRL_PIN(26, "CX_PREQ_B"),
428 PINCTRL_PIN(27, "SEC_GPIO_SUS9"),
429
430 PINCTRL_PIN(30, "TRST_B"),
431 PINCTRL_PIN(31, "TCK"),
432 PINCTRL_PIN(32, "PROCHOT_B"),
433 PINCTRL_PIN(33, "SVIDO_DATA"),
434 PINCTRL_PIN(34, "TMS"),
435 PINCTRL_PIN(35, "CX_PRDY_B_2"),
436 PINCTRL_PIN(36, "TDO_2"),
437 PINCTRL_PIN(37, "CX_PRDY_B"),
438 PINCTRL_PIN(38, "SVIDO_ALERT_B"),
439 PINCTRL_PIN(39, "TDO"),
440 PINCTRL_PIN(40, "SVIDO_CLK"),
441 PINCTRL_PIN(41, "TDI"),
442
443 PINCTRL_PIN(45, "GP_CAMERASB_05"),
444 PINCTRL_PIN(46, "GP_CAMERASB_02"),
445 PINCTRL_PIN(47, "GP_CAMERASB_08"),
446 PINCTRL_PIN(48, "GP_CAMERASB_00"),
447 PINCTRL_PIN(49, "GP_CAMERASB_06"),
448 PINCTRL_PIN(50, "GP_CAMERASB_10"),
449 PINCTRL_PIN(51, "GP_CAMERASB_03"),
450 PINCTRL_PIN(52, "GP_CAMERASB_09"),
451 PINCTRL_PIN(53, "GP_CAMERASB_01"),
452 PINCTRL_PIN(54, "GP_CAMERASB_07"),
453 PINCTRL_PIN(55, "GP_CAMERASB_11"),
454 PINCTRL_PIN(56, "GP_CAMERASB_04"),
455
456 PINCTRL_PIN(60, "PANEL0_BKLTEN"),
457 PINCTRL_PIN(61, "HV_DDI0_HPD"),
458 PINCTRL_PIN(62, "HV_DDI2_DDC_SDA"),
459 PINCTRL_PIN(63, "PANEL1_BKLTCTL"),
460 PINCTRL_PIN(64, "HV_DDI1_HPD"),
461 PINCTRL_PIN(65, "PANEL0_BKLTCTL"),
462 PINCTRL_PIN(66, "HV_DDI0_DDC_SDA"),
463 PINCTRL_PIN(67, "HV_DDI2_DDC_SCL"),
464 PINCTRL_PIN(68, "HV_DDI2_HPD"),
465 PINCTRL_PIN(69, "PANEL1_VDDEN"),
466 PINCTRL_PIN(70, "PANEL1_BKLTEN"),
467 PINCTRL_PIN(71, "HV_DDI0_DDC_SCL"),
468 PINCTRL_PIN(72, "PANEL0_VDDEN"),
469};
470
471static const struct chv_gpio_pinrange north_gpio_ranges[] = {
472 GPIO_PINRANGE(0, 8),
473 GPIO_PINRANGE(15, 27),
474 GPIO_PINRANGE(30, 41),
475 GPIO_PINRANGE(45, 56),
476 GPIO_PINRANGE(60, 72),
477};
478
479static const struct chv_community north_community = {
480 .uid = "2",
481 .pins = north_pins,
482 .npins = ARRAY_SIZE(north_pins),
483 .gpio_ranges = north_gpio_ranges,
484 .ngpio_ranges = ARRAY_SIZE(north_gpio_ranges),
485 .ngpios = ARRAY_SIZE(north_pins),
486};
487
488static const struct pinctrl_pin_desc east_pins[] = {
489 PINCTRL_PIN(0, "PMU_SLP_S3_B"),
490 PINCTRL_PIN(1, "PMU_BATLOW_B"),
491 PINCTRL_PIN(2, "SUS_STAT_B"),
492 PINCTRL_PIN(3, "PMU_SLP_S0IX_B"),
493 PINCTRL_PIN(4, "PMU_AC_PRESENT"),
494 PINCTRL_PIN(5, "PMU_PLTRST_B"),
495 PINCTRL_PIN(6, "PMU_SUSCLK"),
496 PINCTRL_PIN(7, "PMU_SLP_LAN_B"),
497 PINCTRL_PIN(8, "PMU_PWRBTN_B"),
498 PINCTRL_PIN(9, "PMU_SLP_S4_B"),
499 PINCTRL_PIN(10, "PMU_WAKE_B"),
500 PINCTRL_PIN(11, "PMU_WAKE_LAN_B"),
501
502 PINCTRL_PIN(15, "MF_ISH_GPIO_3"),
503 PINCTRL_PIN(16, "MF_ISH_GPIO_7"),
504 PINCTRL_PIN(17, "MF_ISH_I2C1_SCL"),
505 PINCTRL_PIN(18, "MF_ISH_GPIO_1"),
506 PINCTRL_PIN(19, "MF_ISH_GPIO_5"),
507 PINCTRL_PIN(20, "MF_ISH_GPIO_9"),
508 PINCTRL_PIN(21, "MF_ISH_GPIO_0"),
509 PINCTRL_PIN(22, "MF_ISH_GPIO_4"),
510 PINCTRL_PIN(23, "MF_ISH_GPIO_8"),
511 PINCTRL_PIN(24, "MF_ISH_GPIO_2"),
512 PINCTRL_PIN(25, "MF_ISH_GPIO_6"),
513 PINCTRL_PIN(26, "MF_ISH_I2C1_SDA"),
514};
515
516static const struct chv_gpio_pinrange east_gpio_ranges[] = {
517 GPIO_PINRANGE(0, 11),
518 GPIO_PINRANGE(15, 26),
519};
520
521static const struct chv_community east_community = {
522 .uid = "3",
523 .pins = east_pins,
524 .npins = ARRAY_SIZE(east_pins),
525 .gpio_ranges = east_gpio_ranges,
526 .ngpio_ranges = ARRAY_SIZE(east_gpio_ranges),
527 .ngpios = ARRAY_SIZE(east_pins),
528};
529
530static const struct pinctrl_pin_desc southeast_pins[] = {
531 PINCTRL_PIN(0, "MF_PLT_CLK0"),
532 PINCTRL_PIN(1, "PWM1"),
533 PINCTRL_PIN(2, "MF_PLT_CLK1"),
534 PINCTRL_PIN(3, "MF_PLT_CLK4"),
535 PINCTRL_PIN(4, "MF_PLT_CLK3"),
536 PINCTRL_PIN(5, "PWM0"),
537 PINCTRL_PIN(6, "MF_PLT_CLK5"),
538 PINCTRL_PIN(7, "MF_PLT_CLK2"),
539
540 PINCTRL_PIN(15, "SDMMC2_D3_CD_B"),
541 PINCTRL_PIN(16, "SDMMC1_CLK"),
542 PINCTRL_PIN(17, "SDMMC1_D0"),
543 PINCTRL_PIN(18, "SDMMC2_D1"),
544 PINCTRL_PIN(19, "SDMMC2_CLK"),
545 PINCTRL_PIN(20, "SDMMC1_D2"),
546 PINCTRL_PIN(21, "SDMMC2_D2"),
547 PINCTRL_PIN(22, "SDMMC2_CMD"),
548 PINCTRL_PIN(23, "SDMMC1_CMD"),
549 PINCTRL_PIN(24, "SDMMC1_D1"),
550 PINCTRL_PIN(25, "SDMMC2_D0"),
551 PINCTRL_PIN(26, "SDMMC1_D3_CD_B"),
552
553 PINCTRL_PIN(30, "SDMMC3_D1"),
554 PINCTRL_PIN(31, "SDMMC3_CLK"),
555 PINCTRL_PIN(32, "SDMMC3_D3"),
556 PINCTRL_PIN(33, "SDMMC3_D2"),
557 PINCTRL_PIN(34, "SDMMC3_CMD"),
558 PINCTRL_PIN(35, "SDMMC3_D0"),
559
560 PINCTRL_PIN(45, "MF_LPC_AD2"),
561 PINCTRL_PIN(46, "LPC_CLKRUNB"),
562 PINCTRL_PIN(47, "MF_LPC_AD0"),
563 PINCTRL_PIN(48, "LPC_FRAMEB"),
564 PINCTRL_PIN(49, "MF_LPC_CLKOUT1"),
565 PINCTRL_PIN(50, "MF_LPC_AD3"),
566 PINCTRL_PIN(51, "MF_LPC_CLKOUT0"),
567 PINCTRL_PIN(52, "MF_LPC_AD1"),
568
569 PINCTRL_PIN(60, "SPI1_MISO"),
570 PINCTRL_PIN(61, "SPI1_CSO_B"),
571 PINCTRL_PIN(62, "SPI1_CLK"),
572 PINCTRL_PIN(63, "MMC1_D6"),
573 PINCTRL_PIN(64, "SPI1_MOSI"),
574 PINCTRL_PIN(65, "MMC1_D5"),
575 PINCTRL_PIN(66, "SPI1_CS1_B"),
576 PINCTRL_PIN(67, "MMC1_D4_SD_WE"),
577 PINCTRL_PIN(68, "MMC1_D7"),
578 PINCTRL_PIN(69, "MMC1_RCLK"),
579
580 PINCTRL_PIN(75, "USB_OC1_B"),
581 PINCTRL_PIN(76, "PMU_RESETBUTTON_B"),
582 PINCTRL_PIN(77, "GPIO_ALERT"),
583 PINCTRL_PIN(78, "SDMMC3_PWR_EN_B"),
584 PINCTRL_PIN(79, "ILB_SERIRQ"),
585 PINCTRL_PIN(80, "USB_OC0_B"),
586 PINCTRL_PIN(81, "SDMMC3_CD_B"),
587 PINCTRL_PIN(82, "SPKR"),
588 PINCTRL_PIN(83, "SUSPWRDNACK"),
589 PINCTRL_PIN(84, "SPARE_PIN"),
590 PINCTRL_PIN(85, "SDMMC3_1P8_EN"),
591};
592
593static const unsigned southeast_pwm0_pins[] = { 5 };
594static const unsigned southeast_pwm1_pins[] = { 1 };
595static const unsigned southeast_sdmmc1_pins[] = {
596 16, 17, 20, 23, 24, 26, 63, 65, 67, 68, 69,
597};
598static const unsigned southeast_sdmmc2_pins[] = { 15, 18, 19, 21, 22, 25 };
599static const unsigned southeast_sdmmc3_pins[] = {
600 30, 31, 32, 33, 34, 35, 78, 81, 85,
601};
602static const unsigned southeast_spi1_pins[] = { 60, 61, 62, 64, 66 };
603static const unsigned southeast_spi2_pins[] = { 2, 3, 4, 6, 7 };
604
605static const struct chv_pingroup southeast_groups[] = {
606 PIN_GROUP("pwm0_grp", southeast_pwm0_pins, 1, false),
607 PIN_GROUP("pwm1_grp", southeast_pwm1_pins, 1, false),
608 PIN_GROUP("sdmmc1_grp", southeast_sdmmc1_pins, 1, false),
609 PIN_GROUP("sdmmc2_grp", southeast_sdmmc2_pins, 1, false),
610 PIN_GROUP("sdmmc3_grp", southeast_sdmmc3_pins, 1, false),
611 PIN_GROUP("spi1_grp", southeast_spi1_pins, 1, false),
612 PIN_GROUP("spi2_grp", southeast_spi2_pins, 4, false),
613};
614
615static const char * const southeast_pwm0_groups[] = { "pwm0_grp" };
616static const char * const southeast_pwm1_groups[] = { "pwm1_grp" };
617static const char * const southeast_sdmmc1_groups[] = { "sdmmc1_grp" };
618static const char * const southeast_sdmmc2_groups[] = { "sdmmc2_grp" };
619static const char * const southeast_sdmmc3_groups[] = { "sdmmc3_grp" };
620static const char * const southeast_spi1_groups[] = { "spi1_grp" };
621static const char * const southeast_spi2_groups[] = { "spi2_grp" };
622
623static const struct chv_function southeast_functions[] = {
624 FUNCTION("pwm0", southeast_pwm0_groups),
625 FUNCTION("pwm1", southeast_pwm1_groups),
626 FUNCTION("sdmmc1", southeast_sdmmc1_groups),
627 FUNCTION("sdmmc2", southeast_sdmmc2_groups),
628 FUNCTION("sdmmc3", southeast_sdmmc3_groups),
629 FUNCTION("spi1", southeast_spi1_groups),
630 FUNCTION("spi2", southeast_spi2_groups),
631};
632
633static const struct chv_gpio_pinrange southeast_gpio_ranges[] = {
634 GPIO_PINRANGE(0, 7),
635 GPIO_PINRANGE(15, 26),
636 GPIO_PINRANGE(30, 35),
637 GPIO_PINRANGE(45, 52),
638 GPIO_PINRANGE(60, 69),
639 GPIO_PINRANGE(75, 85),
640};
641
642static const struct chv_community southeast_community = {
643 .uid = "4",
644 .pins = southeast_pins,
645 .npins = ARRAY_SIZE(southeast_pins),
646 .groups = southeast_groups,
647 .ngroups = ARRAY_SIZE(southeast_groups),
648 .functions = southeast_functions,
649 .nfunctions = ARRAY_SIZE(southeast_functions),
650 .gpio_ranges = southeast_gpio_ranges,
651 .ngpio_ranges = ARRAY_SIZE(southeast_gpio_ranges),
652 .ngpios = ARRAY_SIZE(southeast_pins),
653};
654
655static const struct chv_community *chv_communities[] = {
656 &southwest_community,
657 &north_community,
658 &east_community,
659 &southeast_community,
660};
661
662static void __iomem *chv_padreg(struct chv_pinctrl *pctrl, unsigned offset,
663 unsigned reg)
664{
665 unsigned family_no = offset / MAX_FAMILY_PAD_GPIO_NO;
666 unsigned pad_no = offset % MAX_FAMILY_PAD_GPIO_NO;
667
668 offset = FAMILY_PAD_REGS_OFF + FAMILY_PAD_REGS_SIZE * family_no +
669 GPIO_REGS_SIZE * pad_no;
670
671 return pctrl->regs + offset + reg;
672}
673
674static void chv_writel(u32 value, void __iomem *reg)
675{
676 writel(value, reg);
677 /* simple readback to confirm the bus transferring done */
678 readl(reg);
679}
680
681/* When Pad Cfg is locked, driver can only change GPIOTXState or GPIORXState */
682static bool chv_pad_locked(struct chv_pinctrl *pctrl, unsigned offset)
683{
684 void __iomem *reg;
685
686 reg = chv_padreg(pctrl, offset, CHV_PADCTRL1);
687 return readl(reg) & CHV_PADCTRL1_CFGLOCK;
688}
689
690static int chv_get_groups_count(struct pinctrl_dev *pctldev)
691{
692 struct chv_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
693
694 return pctrl->community->ngroups;
695}
696
697static const char *chv_get_group_name(struct pinctrl_dev *pctldev,
698 unsigned group)
699{
700 struct chv_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
701
702 return pctrl->community->groups[group].name;
703}
704
705static int chv_get_group_pins(struct pinctrl_dev *pctldev, unsigned group,
706 const unsigned **pins, unsigned *npins)
707{
708 struct chv_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
709
710 *pins = pctrl->community->groups[group].pins;
711 *npins = pctrl->community->groups[group].npins;
712 return 0;
713}
714
715static void chv_pin_dbg_show(struct pinctrl_dev *pctldev, struct seq_file *s,
716 unsigned offset)
717{
718 struct chv_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
719 unsigned long flags;
720 u32 ctrl0, ctrl1;
721 bool locked;
722
723 spin_lock_irqsave(&pctrl->lock, flags);
724
725 ctrl0 = readl(chv_padreg(pctrl, offset, CHV_PADCTRL0));
726 ctrl1 = readl(chv_padreg(pctrl, offset, CHV_PADCTRL1));
727 locked = chv_pad_locked(pctrl, offset);
728
729 spin_unlock_irqrestore(&pctrl->lock, flags);
730
731 if (ctrl0 & CHV_PADCTRL0_GPIOEN) {
732 seq_puts(s, "GPIO ");
733 } else {
734 u32 mode;
735
736 mode = ctrl0 & CHV_PADCTRL0_PMODE_MASK;
737 mode >>= CHV_PADCTRL0_PMODE_SHIFT;
738
739 seq_printf(s, "mode %d ", mode);
740 }
741
742 seq_printf(s, "ctrl0 0x%08x ctrl1 0x%08x", ctrl0, ctrl1);
743
744 if (locked)
745 seq_puts(s, " [LOCKED]");
746}
747
748static const struct pinctrl_ops chv_pinctrl_ops = {
749 .get_groups_count = chv_get_groups_count,
750 .get_group_name = chv_get_group_name,
751 .get_group_pins = chv_get_group_pins,
752 .pin_dbg_show = chv_pin_dbg_show,
753};
754
755static int chv_get_functions_count(struct pinctrl_dev *pctldev)
756{
757 struct chv_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
758
759 return pctrl->community->nfunctions;
760}
761
762static const char *chv_get_function_name(struct pinctrl_dev *pctldev,
763 unsigned function)
764{
765 struct chv_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
766
767 return pctrl->community->functions[function].name;
768}
769
770static int chv_get_function_groups(struct pinctrl_dev *pctldev,
771 unsigned function,
772 const char * const **groups,
773 unsigned * const ngroups)
774{
775 struct chv_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
776
777 *groups = pctrl->community->functions[function].groups;
778 *ngroups = pctrl->community->functions[function].ngroups;
779 return 0;
780}
781
782static int chv_pinmux_set_mux(struct pinctrl_dev *pctldev, unsigned function,
783 unsigned group)
784{
785 struct chv_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
786 const struct chv_pingroup *grp;
787 unsigned long flags;
788 int i;
789
790 grp = &pctrl->community->groups[group];
791
792 spin_lock_irqsave(&pctrl->lock, flags);
793
794 /* Check first that the pad is not locked */
795 for (i = 0; i < grp->npins; i++) {
796 if (chv_pad_locked(pctrl, grp->pins[i])) {
797 dev_warn(pctrl->dev, "unable to set mode for locked pin %u\n",
798 grp->pins[i]);
799 spin_unlock_irqrestore(&pctrl->lock, flags);
800 return -EBUSY;
801 }
802 }
803
804 for (i = 0; i < grp->npins; i++) {
805 const struct chv_alternate_function *altfunc = &grp->altfunc;
806 int pin = grp->pins[i];
807 void __iomem *reg;
808 u32 value;
809
810 /* Check if there is pin-specific config */
811 if (grp->overrides) {
812 int j;
813
814 for (j = 0; j < grp->noverrides; j++) {
815 if (grp->overrides[j].pin == pin) {
816 altfunc = &grp->overrides[j];
817 break;
818 }
819 }
820 }
821
822 reg = chv_padreg(pctrl, pin, CHV_PADCTRL0);
823 value = readl(reg);
824 /* Disable GPIO mode */
825 value &= ~CHV_PADCTRL0_GPIOEN;
826 /* Set to desired mode */
827 value &= ~CHV_PADCTRL0_PMODE_MASK;
828 value |= altfunc->mode << CHV_PADCTRL0_PMODE_SHIFT;
829 chv_writel(value, reg);
830
831 /* Update for invert_oe */
832 reg = chv_padreg(pctrl, pin, CHV_PADCTRL1);
833 value = readl(reg) & ~CHV_PADCTRL1_INVRXTX_MASK;
834 if (altfunc->invert_oe)
835 value |= CHV_PADCTRL1_INVRXTX_TXENABLE;
836 chv_writel(value, reg);
837
838 dev_dbg(pctrl->dev, "configured pin %u mode %u OE %sinverted\n",
839 pin, altfunc->mode, altfunc->invert_oe ? "" : "not ");
840 }
841
842 spin_unlock_irqrestore(&pctrl->lock, flags);
843
844 return 0;
845}
846
847static int chv_gpio_request_enable(struct pinctrl_dev *pctldev,
848 struct pinctrl_gpio_range *range,
849 unsigned offset)
850{
851 struct chv_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
852 unsigned long flags;
853 void __iomem *reg;
854 u32 value;
855
856 spin_lock_irqsave(&pctrl->lock, flags);
857
858 if (chv_pad_locked(pctrl, offset)) {
859 value = readl(chv_padreg(pctrl, offset, CHV_PADCTRL0));
860 if (!(value & CHV_PADCTRL0_GPIOEN)) {
861 /* Locked so cannot enable */
862 spin_unlock_irqrestore(&pctrl->lock, flags);
863 return -EBUSY;
864 }
865 } else {
866 int i;
867
868 /* Reset the interrupt mapping */
869 for (i = 0; i < ARRAY_SIZE(pctrl->intr_lines); i++) {
870 if (pctrl->intr_lines[i] == offset) {
871 pctrl->intr_lines[i] = 0;
872 break;
873 }
874 }
875
876 /* Disable interrupt generation */
877 reg = chv_padreg(pctrl, offset, CHV_PADCTRL1);
878 value = readl(reg);
879 value &= ~CHV_PADCTRL1_INTWAKECFG_MASK;
880 value &= ~CHV_PADCTRL1_INVRXTX_MASK;
881 chv_writel(value, reg);
882
883 /* Switch to a GPIO mode */
884 reg = chv_padreg(pctrl, offset, CHV_PADCTRL0);
885 value = readl(reg) | CHV_PADCTRL0_GPIOEN;
886 chv_writel(value, reg);
887 }
888
889 spin_unlock_irqrestore(&pctrl->lock, flags);
890
891 return 0;
892}
893
894static void chv_gpio_disable_free(struct pinctrl_dev *pctldev,
895 struct pinctrl_gpio_range *range,
896 unsigned offset)
897{
898 struct chv_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
899 unsigned long flags;
900 void __iomem *reg;
901 u32 value;
902
903 spin_lock_irqsave(&pctrl->lock, flags);
904
905 reg = chv_padreg(pctrl, offset, CHV_PADCTRL0);
906 value = readl(reg) & ~CHV_PADCTRL0_GPIOEN;
907 chv_writel(value, reg);
908
909 spin_unlock_irqrestore(&pctrl->lock, flags);
910}
911
912static int chv_gpio_set_direction(struct pinctrl_dev *pctldev,
913 struct pinctrl_gpio_range *range,
914 unsigned offset, bool input)
915{
916 struct chv_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
917 void __iomem *reg = chv_padreg(pctrl, offset, CHV_PADCTRL0);
918 unsigned long flags;
919 u32 ctrl0;
920
921 spin_lock_irqsave(&pctrl->lock, flags);
922
923 ctrl0 = readl(reg) & ~CHV_PADCTRL0_GPIOCFG_MASK;
924 if (input)
925 ctrl0 |= CHV_PADCTRL0_GPIOCFG_GPI << CHV_PADCTRL0_GPIOCFG_SHIFT;
926 else
927 ctrl0 |= CHV_PADCTRL0_GPIOCFG_GPO << CHV_PADCTRL0_GPIOCFG_SHIFT;
928 chv_writel(ctrl0, reg);
929
930 spin_unlock_irqrestore(&pctrl->lock, flags);
931
932 return 0;
933}
934
935static const struct pinmux_ops chv_pinmux_ops = {
936 .get_functions_count = chv_get_functions_count,
937 .get_function_name = chv_get_function_name,
938 .get_function_groups = chv_get_function_groups,
939 .set_mux = chv_pinmux_set_mux,
940 .gpio_request_enable = chv_gpio_request_enable,
941 .gpio_disable_free = chv_gpio_disable_free,
942 .gpio_set_direction = chv_gpio_set_direction,
943};
944
945static int chv_config_get(struct pinctrl_dev *pctldev, unsigned pin,
946 unsigned long *config)
947{
948 struct chv_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
949 enum pin_config_param param = pinconf_to_config_param(*config);
950 unsigned long flags;
951 u32 ctrl0, ctrl1;
952 u16 arg = 0;
953 u32 term;
954
955 spin_lock_irqsave(&pctrl->lock, flags);
956 ctrl0 = readl(chv_padreg(pctrl, pin, CHV_PADCTRL0));
957 ctrl1 = readl(chv_padreg(pctrl, pin, CHV_PADCTRL1));
958 spin_unlock_irqrestore(&pctrl->lock, flags);
959
960 term = (ctrl0 & CHV_PADCTRL0_TERM_MASK) >> CHV_PADCTRL0_TERM_SHIFT;
961
962 switch (param) {
963 case PIN_CONFIG_BIAS_DISABLE:
964 if (term)
965 return -EINVAL;
966 break;
967
968 case PIN_CONFIG_BIAS_PULL_UP:
969 if (!(ctrl0 & CHV_PADCTRL0_TERM_UP))
970 return -EINVAL;
971
972 switch (term) {
973 case CHV_PADCTRL0_TERM_20K:
974 arg = 20000;
975 break;
976 case CHV_PADCTRL0_TERM_5K:
977 arg = 5000;
978 break;
979 case CHV_PADCTRL0_TERM_1K:
980 arg = 1000;
981 break;
982 }
983
984 break;
985
986 case PIN_CONFIG_BIAS_PULL_DOWN:
987 if (!term || (ctrl0 & CHV_PADCTRL0_TERM_UP))
988 return -EINVAL;
989
990 switch (term) {
991 case CHV_PADCTRL0_TERM_20K:
992 arg = 20000;
993 break;
994 case CHV_PADCTRL0_TERM_5K:
995 arg = 5000;
996 break;
997 }
998
999 break;
1000
1001 case PIN_CONFIG_DRIVE_OPEN_DRAIN:
1002 if (!(ctrl1 & CHV_PADCTRL1_ODEN))
1003 return -EINVAL;
1004 break;
1005
1006 case PIN_CONFIG_BIAS_HIGH_IMPEDANCE: {
1007 u32 cfg;
1008
1009 cfg = ctrl0 & CHV_PADCTRL0_GPIOCFG_MASK;
1010 cfg >>= CHV_PADCTRL0_GPIOCFG_SHIFT;
1011 if (cfg != CHV_PADCTRL0_GPIOCFG_HIZ)
1012 return -EINVAL;
1013
1014 break;
1015 }
1016
1017 default:
1018 return -ENOTSUPP;
1019 }
1020
1021 *config = pinconf_to_config_packed(param, arg);
1022 return 0;
1023}
1024
1025static int chv_config_set_pull(struct chv_pinctrl *pctrl, unsigned pin,
1026 enum pin_config_param param, u16 arg)
1027{
1028 void __iomem *reg = chv_padreg(pctrl, pin, CHV_PADCTRL0);
1029 unsigned long flags;
1030 u32 ctrl0, pull;
1031
1032 spin_lock_irqsave(&pctrl->lock, flags);
1033 ctrl0 = readl(reg);
1034
1035 switch (param) {
1036 case PIN_CONFIG_BIAS_DISABLE:
1037 ctrl0 &= ~(CHV_PADCTRL0_TERM_MASK | CHV_PADCTRL0_TERM_UP);
1038 break;
1039
1040 case PIN_CONFIG_BIAS_PULL_UP:
1041 ctrl0 &= ~(CHV_PADCTRL0_TERM_MASK | CHV_PADCTRL0_TERM_UP);
1042
1043 switch (arg) {
1044 case 1000:
1045 /* For 1k there is only pull up */
1046 pull = CHV_PADCTRL0_TERM_1K << CHV_PADCTRL0_TERM_SHIFT;
1047 break;
1048 case 5000:
1049 pull = CHV_PADCTRL0_TERM_5K << CHV_PADCTRL0_TERM_SHIFT;
1050 break;
1051 case 20000:
1052 pull = CHV_PADCTRL0_TERM_20K << CHV_PADCTRL0_TERM_SHIFT;
1053 break;
1054 default:
1055 spin_unlock_irqrestore(&pctrl->lock, flags);
1056 return -EINVAL;
1057 }
1058
1059 ctrl0 |= CHV_PADCTRL0_TERM_UP | pull;
1060 break;
1061
1062 case PIN_CONFIG_BIAS_PULL_DOWN:
1063 ctrl0 &= ~(CHV_PADCTRL0_TERM_MASK | CHV_PADCTRL0_TERM_UP);
1064
1065 switch (arg) {
1066 case 5000:
1067 pull = CHV_PADCTRL0_TERM_5K << CHV_PADCTRL0_TERM_SHIFT;
1068 break;
1069 case 20000:
1070 pull = CHV_PADCTRL0_TERM_20K << CHV_PADCTRL0_TERM_SHIFT;
1071 break;
1072 default:
1073 spin_unlock_irqrestore(&pctrl->lock, flags);
1074 return -EINVAL;
1075 }
1076
1077 ctrl0 |= pull;
1078 break;
1079
1080 default:
1081 spin_unlock_irqrestore(&pctrl->lock, flags);
1082 return -EINVAL;
1083 }
1084
1085 chv_writel(ctrl0, reg);
1086 spin_unlock_irqrestore(&pctrl->lock, flags);
1087
1088 return 0;
1089}
1090
1091static int chv_config_set(struct pinctrl_dev *pctldev, unsigned pin,
1092 unsigned long *configs, unsigned nconfigs)
1093{
1094 struct chv_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
1095 enum pin_config_param param;
1096 int i, ret;
1097 u16 arg;
1098
1099 if (chv_pad_locked(pctrl, pin))
1100 return -EBUSY;
1101
1102 for (i = 0; i < nconfigs; i++) {
1103 param = pinconf_to_config_param(configs[i]);
1104 arg = pinconf_to_config_argument(configs[i]);
1105
1106 switch (param) {
1107 case PIN_CONFIG_BIAS_DISABLE:
1108 case PIN_CONFIG_BIAS_PULL_UP:
1109 case PIN_CONFIG_BIAS_PULL_DOWN:
1110 ret = chv_config_set_pull(pctrl, pin, param, arg);
1111 if (ret)
1112 return ret;
1113 break;
1114
1115 default:
1116 return -ENOTSUPP;
1117 }
1118
1119 dev_dbg(pctrl->dev, "pin %d set config %d arg %u\n", pin,
1120 param, arg);
1121 }
1122
1123 return 0;
1124}
1125
1126static const struct pinconf_ops chv_pinconf_ops = {
1127 .is_generic = true,
1128 .pin_config_set = chv_config_set,
1129 .pin_config_get = chv_config_get,
1130};
1131
1132static struct pinctrl_desc chv_pinctrl_desc = {
1133 .pctlops = &chv_pinctrl_ops,
1134 .pmxops = &chv_pinmux_ops,
1135 .confops = &chv_pinconf_ops,
1136 .owner = THIS_MODULE,
1137};
1138
1139static int chv_gpio_request(struct gpio_chip *chip, unsigned offset)
1140{
1141 return pinctrl_request_gpio(chip->base + offset);
1142}
1143
1144static void chv_gpio_free(struct gpio_chip *chip, unsigned offset)
1145{
1146 pinctrl_free_gpio(chip->base + offset);
1147}
1148
1149static unsigned chv_gpio_offset_to_pin(struct chv_pinctrl *pctrl,
1150 unsigned offset)
1151{
1152 return pctrl->community->pins[offset].number;
1153}
1154
1155static int chv_gpio_get(struct gpio_chip *chip, unsigned offset)
1156{
1157 struct chv_pinctrl *pctrl = gpiochip_to_pinctrl(chip);
1158 int pin = chv_gpio_offset_to_pin(pctrl, offset);
1159 u32 ctrl0, cfg;
1160
1161 ctrl0 = readl(chv_padreg(pctrl, pin, CHV_PADCTRL0));
1162
1163 cfg = ctrl0 & CHV_PADCTRL0_GPIOCFG_MASK;
1164 cfg >>= CHV_PADCTRL0_GPIOCFG_SHIFT;
1165
1166 if (cfg == CHV_PADCTRL0_GPIOCFG_GPO)
1167 return !!(ctrl0 & CHV_PADCTRL0_GPIOTXSTATE);
1168 return !!(ctrl0 & CHV_PADCTRL0_GPIORXSTATE);
1169}
1170
1171static void chv_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
1172{
1173 struct chv_pinctrl *pctrl = gpiochip_to_pinctrl(chip);
1174 unsigned pin = chv_gpio_offset_to_pin(pctrl, offset);
1175 unsigned long flags;
1176 void __iomem *reg;
1177 u32 ctrl0;
1178
1179 spin_lock_irqsave(&pctrl->lock, flags);
1180
1181 reg = chv_padreg(pctrl, pin, CHV_PADCTRL0);
1182 ctrl0 = readl(reg);
1183
1184 if (value)
1185 ctrl0 |= CHV_PADCTRL0_GPIOTXSTATE;
1186 else
1187 ctrl0 &= ~CHV_PADCTRL0_GPIOTXSTATE;
1188
1189 chv_writel(ctrl0, reg);
1190
1191 spin_unlock_irqrestore(&pctrl->lock, flags);
1192}
1193
1194static int chv_gpio_get_direction(struct gpio_chip *chip, unsigned offset)
1195{
1196 struct chv_pinctrl *pctrl = gpiochip_to_pinctrl(chip);
1197 unsigned pin = chv_gpio_offset_to_pin(pctrl, offset);
1198 u32 ctrl0, direction;
1199
1200 ctrl0 = readl(chv_padreg(pctrl, pin, CHV_PADCTRL0));
1201
1202 direction = ctrl0 & CHV_PADCTRL0_GPIOCFG_MASK;
1203 direction >>= CHV_PADCTRL0_GPIOCFG_SHIFT;
1204
1205 return direction != CHV_PADCTRL0_GPIOCFG_GPO;
1206}
1207
1208static int chv_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
1209{
1210 return pinctrl_gpio_direction_input(chip->base + offset);
1211}
1212
1213static int chv_gpio_direction_output(struct gpio_chip *chip, unsigned offset,
1214 int value)
1215{
1216 return pinctrl_gpio_direction_output(chip->base + offset);
1217}
1218
1219static const struct gpio_chip chv_gpio_chip = {
1220 .owner = THIS_MODULE,
1221 .request = chv_gpio_request,
1222 .free = chv_gpio_free,
1223 .get_direction = chv_gpio_get_direction,
1224 .direction_input = chv_gpio_direction_input,
1225 .direction_output = chv_gpio_direction_output,
1226 .get = chv_gpio_get,
1227 .set = chv_gpio_set,
1228};
1229
1230static void chv_gpio_irq_ack(struct irq_data *d)
1231{
1232 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1233 struct chv_pinctrl *pctrl = gpiochip_to_pinctrl(gc);
1234 int pin = chv_gpio_offset_to_pin(pctrl, irqd_to_hwirq(d));
1235 u32 intr_line;
1236
1237 spin_lock(&pctrl->lock);
1238
1239 intr_line = readl(chv_padreg(pctrl, pin, CHV_PADCTRL0));
1240 intr_line &= CHV_PADCTRL0_INTSEL_MASK;
1241 intr_line >>= CHV_PADCTRL0_INTSEL_SHIFT;
1242 chv_writel(BIT(intr_line), pctrl->regs + CHV_INTSTAT);
1243
1244 spin_unlock(&pctrl->lock);
1245}
1246
1247static void chv_gpio_irq_mask_unmask(struct irq_data *d, bool mask)
1248{
1249 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1250 struct chv_pinctrl *pctrl = gpiochip_to_pinctrl(gc);
1251 int pin = chv_gpio_offset_to_pin(pctrl, irqd_to_hwirq(d));
1252 u32 value, intr_line;
1253 unsigned long flags;
1254
1255 spin_lock_irqsave(&pctrl->lock, flags);
1256
1257 intr_line = readl(chv_padreg(pctrl, pin, CHV_PADCTRL0));
1258 intr_line &= CHV_PADCTRL0_INTSEL_MASK;
1259 intr_line >>= CHV_PADCTRL0_INTSEL_SHIFT;
1260
1261 value = readl(pctrl->regs + CHV_INTMASK);
1262 if (mask)
1263 value &= ~BIT(intr_line);
1264 else
1265 value |= BIT(intr_line);
1266 chv_writel(value, pctrl->regs + CHV_INTMASK);
1267
1268 spin_unlock_irqrestore(&pctrl->lock, flags);
1269}
1270
1271static void chv_gpio_irq_mask(struct irq_data *d)
1272{
1273 chv_gpio_irq_mask_unmask(d, true);
1274}
1275
1276static void chv_gpio_irq_unmask(struct irq_data *d)
1277{
1278 chv_gpio_irq_mask_unmask(d, false);
1279}
1280
1281static int chv_gpio_irq_type(struct irq_data *d, unsigned type)
1282{
1283 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1284 struct chv_pinctrl *pctrl = gpiochip_to_pinctrl(gc);
1285 unsigned offset = irqd_to_hwirq(d);
1286 int pin = chv_gpio_offset_to_pin(pctrl, offset);
1287 unsigned long flags;
1288 u32 value;
1289
1290 spin_lock_irqsave(&pctrl->lock, flags);
1291
1292 /*
1293 * Pins which can be used as shared interrupt are configured in
1294 * BIOS. Driver trusts BIOS configurations and assigns different
1295 * handler according to the irq type.
1296 *
1297 * Driver needs to save the mapping between each pin and
1298 * its interrupt line.
1299 * 1. If the pin cfg is locked in BIOS:
1300 * Trust BIOS has programmed IntWakeCfg bits correctly,
1301 * driver just needs to save the mapping.
1302 * 2. If the pin cfg is not locked in BIOS:
1303 * Driver programs the IntWakeCfg bits and save the mapping.
1304 */
1305 if (!chv_pad_locked(pctrl, pin)) {
1306 void __iomem *reg = chv_padreg(pctrl, pin, CHV_PADCTRL1);
1307
1308 value = readl(reg);
1309 value &= ~CHV_PADCTRL1_INTWAKECFG_MASK;
1310 value &= ~CHV_PADCTRL1_INVRXTX_MASK;
1311
1312 if (type & IRQ_TYPE_EDGE_BOTH) {
1313 if ((type & IRQ_TYPE_EDGE_BOTH) == IRQ_TYPE_EDGE_BOTH)
1314 value |= CHV_PADCTRL1_INTWAKECFG_BOTH;
1315 else if (type & IRQ_TYPE_EDGE_RISING)
1316 value |= CHV_PADCTRL1_INTWAKECFG_RISING;
1317 else if (type & IRQ_TYPE_EDGE_FALLING)
1318 value |= CHV_PADCTRL1_INTWAKECFG_FALLING;
1319 } else if (type & IRQ_TYPE_LEVEL_MASK) {
1320 value |= CHV_PADCTRL1_INTWAKECFG_LEVEL;
1321 if (type & IRQ_TYPE_LEVEL_LOW)
1322 value |= CHV_PADCTRL1_INVRXTX_RXDATA;
1323 }
1324
1325 chv_writel(value, reg);
1326 }
1327
1328 value = readl(chv_padreg(pctrl, pin, CHV_PADCTRL0));
1329 value &= CHV_PADCTRL0_INTSEL_MASK;
1330 value >>= CHV_PADCTRL0_INTSEL_SHIFT;
1331
1332 pctrl->intr_lines[value] = offset;
1333
1334 if (type & IRQ_TYPE_EDGE_BOTH)
1335 __irq_set_handler_locked(d->irq, handle_edge_irq);
1336 else if (type & IRQ_TYPE_LEVEL_MASK)
1337 __irq_set_handler_locked(d->irq, handle_level_irq);
1338
1339 spin_unlock_irqrestore(&pctrl->lock, flags);
1340
1341 return 0;
1342}
1343
1344static struct irq_chip chv_gpio_irqchip = {
1345 .name = "chv-gpio",
1346 .irq_ack = chv_gpio_irq_ack,
1347 .irq_mask = chv_gpio_irq_mask,
1348 .irq_unmask = chv_gpio_irq_unmask,
1349 .irq_set_type = chv_gpio_irq_type,
1350 .flags = IRQCHIP_SKIP_SET_WAKE,
1351};
1352
1353static void chv_gpio_irq_handler(unsigned irq, struct irq_desc *desc)
1354{
1355 struct gpio_chip *gc = irq_desc_get_handler_data(desc);
1356 struct chv_pinctrl *pctrl = gpiochip_to_pinctrl(gc);
1357 struct irq_chip *chip = irq_get_chip(irq);
1358 unsigned long pending;
1359 u32 intr_line;
1360
1361 chained_irq_enter(chip, desc);
1362
1363 pending = readl(pctrl->regs + CHV_INTSTAT);
1364 for_each_set_bit(intr_line, &pending, 16) {
1365 unsigned irq, offset;
1366
1367 offset = pctrl->intr_lines[intr_line];
1368 irq = irq_find_mapping(gc->irqdomain, offset);
1369 generic_handle_irq(irq);
1370 }
1371
1372 chained_irq_exit(chip, desc);
1373}
1374
1375static int chv_gpio_probe(struct chv_pinctrl *pctrl, int irq)
1376{
1377 const struct chv_gpio_pinrange *range;
1378 struct gpio_chip *chip = &pctrl->chip;
1379 int ret, i, offset;
1380
1381 *chip = chv_gpio_chip;
1382
1383 chip->ngpio = pctrl->community->ngpios;
1384 chip->label = dev_name(pctrl->dev);
1385 chip->dev = pctrl->dev;
1386 chip->base = -1;
1387
1388 ret = gpiochip_add(chip);
1389 if (ret) {
1390 dev_err(pctrl->dev, "Failed to register gpiochip\n");
1391 return ret;
1392 }
1393
1394 for (i = 0, offset = 0; i < pctrl->community->ngpio_ranges; i++) {
1395 range = &pctrl->community->gpio_ranges[i];
1396 ret = gpiochip_add_pin_range(chip, dev_name(pctrl->dev), offset,
1397 range->base, range->npins);
1398 if (ret) {
1399 dev_err(pctrl->dev, "failed to add GPIO pin range\n");
1400 goto fail;
1401 }
1402
1403 offset += range->npins;
1404 }
1405
1406 /* Mask and clear all interrupts */
1407 chv_writel(0, pctrl->regs + CHV_INTMASK);
1408 chv_writel(0xffff, pctrl->regs + CHV_INTSTAT);
1409
1410 ret = gpiochip_irqchip_add(chip, &chv_gpio_irqchip, 0,
1411 handle_simple_irq, IRQ_TYPE_NONE);
1412 if (ret) {
1413 dev_err(pctrl->dev, "failed to add IRQ chip\n");
1414 goto fail;
1415 }
1416
1417 gpiochip_set_chained_irqchip(chip, &chv_gpio_irqchip, irq,
1418 chv_gpio_irq_handler);
1419 return 0;
1420
1421fail:
1422 gpiochip_remove(chip);
1423
1424 return ret;
1425}
1426
1427static int chv_pinctrl_probe(struct platform_device *pdev)
1428{
1429 struct chv_pinctrl *pctrl;
1430 struct acpi_device *adev;
1431 struct resource *res;
1432 int ret, irq, i;
1433
1434 adev = ACPI_COMPANION(&pdev->dev);
1435 if (!adev)
1436 return -ENODEV;
1437
1438 pctrl = devm_kzalloc(&pdev->dev, sizeof(*pctrl), GFP_KERNEL);
1439 if (!pctrl)
1440 return -ENOMEM;
1441
1442 for (i = 0; i < ARRAY_SIZE(chv_communities); i++)
1443 if (!strcmp(adev->pnp.unique_id, chv_communities[i]->uid)) {
1444 pctrl->community = chv_communities[i];
1445 break;
1446 }
1447 if (i == ARRAY_SIZE(chv_communities))
1448 return -ENODEV;
1449
1450 spin_lock_init(&pctrl->lock);
1451 pctrl->dev = &pdev->dev;
1452
Mika Westerberg9eb457b2014-12-04 12:32:50 +02001453#ifdef CONFIG_PM_SLEEP
1454 pctrl->saved_pin_context = devm_kcalloc(pctrl->dev,
1455 pctrl->community->npins, sizeof(*pctrl->saved_pin_context),
1456 GFP_KERNEL);
1457 if (!pctrl->saved_pin_context)
1458 return -ENOMEM;
1459#endif
1460
Mika Westerberg6e08d6b2014-11-03 13:01:33 +02001461 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1462 pctrl->regs = devm_ioremap_resource(&pdev->dev, res);
1463 if (IS_ERR(pctrl->regs))
1464 return PTR_ERR(pctrl->regs);
1465
1466 irq = platform_get_irq(pdev, 0);
1467 if (irq < 0) {
1468 dev_err(&pdev->dev, "failed to get interrupt number\n");
1469 return irq;
1470 }
1471
1472 pctrl->pctldesc = chv_pinctrl_desc;
1473 pctrl->pctldesc.name = dev_name(&pdev->dev);
1474 pctrl->pctldesc.pins = pctrl->community->pins;
1475 pctrl->pctldesc.npins = pctrl->community->npins;
1476
1477 pctrl->pctldev = pinctrl_register(&pctrl->pctldesc, &pdev->dev, pctrl);
1478 if (!pctrl->pctldev) {
1479 dev_err(&pdev->dev, "failed to register pinctrl driver\n");
1480 return -ENODEV;
1481 }
1482
1483 ret = chv_gpio_probe(pctrl, irq);
1484 if (ret) {
1485 pinctrl_unregister(pctrl->pctldev);
1486 return ret;
1487 }
1488
1489 platform_set_drvdata(pdev, pctrl);
1490
1491 return 0;
1492}
1493
1494static int chv_pinctrl_remove(struct platform_device *pdev)
1495{
1496 struct chv_pinctrl *pctrl = platform_get_drvdata(pdev);
1497
1498 gpiochip_remove(&pctrl->chip);
1499 pinctrl_unregister(pctrl->pctldev);
1500
1501 return 0;
1502}
1503
Mika Westerberg9eb457b2014-12-04 12:32:50 +02001504#ifdef CONFIG_PM_SLEEP
1505static int chv_pinctrl_suspend(struct device *dev)
1506{
1507 struct platform_device *pdev = to_platform_device(dev);
1508 struct chv_pinctrl *pctrl = platform_get_drvdata(pdev);
1509 int i;
1510
1511 pctrl->saved_intmask = readl(pctrl->regs + CHV_INTMASK);
1512
1513 for (i = 0; i < pctrl->community->npins; i++) {
1514 const struct pinctrl_pin_desc *desc;
1515 struct chv_pin_context *ctx;
1516 void __iomem *reg;
1517
1518 desc = &pctrl->community->pins[i];
1519 if (chv_pad_locked(pctrl, desc->number))
1520 continue;
1521
1522 ctx = &pctrl->saved_pin_context[i];
1523
1524 reg = chv_padreg(pctrl, desc->number, CHV_PADCTRL0);
1525 ctx->padctrl0 = readl(reg) & ~CHV_PADCTRL0_GPIORXSTATE;
1526
1527 reg = chv_padreg(pctrl, desc->number, CHV_PADCTRL1);
1528 ctx->padctrl1 = readl(reg);
1529 }
1530
1531 return 0;
1532}
1533
1534static int chv_pinctrl_resume(struct device *dev)
1535{
1536 struct platform_device *pdev = to_platform_device(dev);
1537 struct chv_pinctrl *pctrl = platform_get_drvdata(pdev);
1538 int i;
1539
1540 /*
1541 * Mask all interrupts before restoring per-pin configuration
1542 * registers because we don't know in which state BIOS left them
1543 * upon exiting suspend.
1544 */
1545 chv_writel(0, pctrl->regs + CHV_INTMASK);
1546
1547 for (i = 0; i < pctrl->community->npins; i++) {
1548 const struct pinctrl_pin_desc *desc;
1549 const struct chv_pin_context *ctx;
1550 void __iomem *reg;
1551 u32 val;
1552
1553 desc = &pctrl->community->pins[i];
1554 if (chv_pad_locked(pctrl, desc->number))
1555 continue;
1556
1557 ctx = &pctrl->saved_pin_context[i];
1558
1559 /* Only restore if our saved state differs from the current */
1560 reg = chv_padreg(pctrl, desc->number, CHV_PADCTRL0);
1561 val = readl(reg) & ~CHV_PADCTRL0_GPIORXSTATE;
1562 if (ctx->padctrl0 != val) {
1563 chv_writel(ctx->padctrl0, reg);
1564 dev_dbg(pctrl->dev, "restored pin %2u ctrl0 0x%08x\n",
1565 desc->number, readl(reg));
1566 }
1567
1568 reg = chv_padreg(pctrl, desc->number, CHV_PADCTRL1);
1569 val = readl(reg);
1570 if (ctx->padctrl1 != val) {
1571 chv_writel(ctx->padctrl1, reg);
1572 dev_dbg(pctrl->dev, "restored pin %2u ctrl1 0x%08x\n",
1573 desc->number, readl(reg));
1574 }
1575 }
1576
1577 /*
1578 * Now that all pins are restored to known state, we can restore
1579 * the interrupt mask register as well.
1580 */
1581 chv_writel(0xffff, pctrl->regs + CHV_INTSTAT);
1582 chv_writel(pctrl->saved_intmask, pctrl->regs + CHV_INTMASK);
1583
1584 return 0;
1585}
1586#endif
1587
1588static const struct dev_pm_ops chv_pinctrl_pm_ops = {
1589 SET_LATE_SYSTEM_SLEEP_PM_OPS(chv_pinctrl_suspend, chv_pinctrl_resume)
1590};
1591
Mika Westerberg6e08d6b2014-11-03 13:01:33 +02001592static const struct acpi_device_id chv_pinctrl_acpi_match[] = {
1593 { "INT33FF" },
1594 { }
1595};
1596MODULE_DEVICE_TABLE(acpi, chv_pinctrl_acpi_match);
1597
1598static struct platform_driver chv_pinctrl_driver = {
1599 .probe = chv_pinctrl_probe,
1600 .remove = chv_pinctrl_remove,
1601 .driver = {
1602 .name = "cherryview-pinctrl",
1603 .owner = THIS_MODULE,
Mika Westerberg9eb457b2014-12-04 12:32:50 +02001604 .pm = &chv_pinctrl_pm_ops,
Mika Westerberg6e08d6b2014-11-03 13:01:33 +02001605 .acpi_match_table = chv_pinctrl_acpi_match,
1606 },
1607};
1608
1609static int __init chv_pinctrl_init(void)
1610{
1611 return platform_driver_register(&chv_pinctrl_driver);
1612}
1613subsys_initcall(chv_pinctrl_init);
1614
1615static void __exit chv_pinctrl_exit(void)
1616{
1617 platform_driver_unregister(&chv_pinctrl_driver);
1618}
1619module_exit(chv_pinctrl_exit);
1620
1621MODULE_AUTHOR("Mika Westerberg <mika.westerberg@linux.intel.com>");
1622MODULE_DESCRIPTION("Intel Cherryview/Braswell pinctrl driver");
1623MODULE_LICENSE("GPL v2");