2 * Cherryview/Braswell pinctrl driver
4 * Copyright (C) 2014, Intel Corporation
5 * Author: Mika Westerberg <mika.westerberg@linux.intel.com>
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>
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.
16 #include <linux/dmi.h>
17 #include <linux/kernel.h>
18 #include <linux/module.h>
19 #include <linux/init.h>
20 #include <linux/types.h>
21 #include <linux/gpio.h>
22 #include <linux/gpio/driver.h>
23 #include <linux/acpi.h>
24 #include <linux/pinctrl/pinctrl.h>
25 #include <linux/pinctrl/pinmux.h>
26 #include <linux/pinctrl/pinconf.h>
27 #include <linux/pinctrl/pinconf-generic.h>
28 #include <linux/platform_device.h>
30 #define CHV_INTSTAT 0x300
31 #define CHV_INTMASK 0x380
33 #define FAMILY_PAD_REGS_OFF 0x4400
34 #define FAMILY_PAD_REGS_SIZE 0x400
35 #define MAX_FAMILY_PAD_GPIO_NO 15
36 #define GPIO_REGS_SIZE 8
38 #define CHV_PADCTRL0 0x000
39 #define CHV_PADCTRL0_INTSEL_SHIFT 28
40 #define CHV_PADCTRL0_INTSEL_MASK (0xf << CHV_PADCTRL0_INTSEL_SHIFT)
41 #define CHV_PADCTRL0_TERM_UP BIT(23)
42 #define CHV_PADCTRL0_TERM_SHIFT 20
43 #define CHV_PADCTRL0_TERM_MASK (7 << CHV_PADCTRL0_TERM_SHIFT)
44 #define CHV_PADCTRL0_TERM_20K 1
45 #define CHV_PADCTRL0_TERM_5K 2
46 #define CHV_PADCTRL0_TERM_1K 4
47 #define CHV_PADCTRL0_PMODE_SHIFT 16
48 #define CHV_PADCTRL0_PMODE_MASK (0xf << CHV_PADCTRL0_PMODE_SHIFT)
49 #define CHV_PADCTRL0_GPIOEN BIT(15)
50 #define CHV_PADCTRL0_GPIOCFG_SHIFT 8
51 #define CHV_PADCTRL0_GPIOCFG_MASK (7 << CHV_PADCTRL0_GPIOCFG_SHIFT)
52 #define CHV_PADCTRL0_GPIOCFG_GPIO 0
53 #define CHV_PADCTRL0_GPIOCFG_GPO 1
54 #define CHV_PADCTRL0_GPIOCFG_GPI 2
55 #define CHV_PADCTRL0_GPIOCFG_HIZ 3
56 #define CHV_PADCTRL0_GPIOTXSTATE BIT(1)
57 #define CHV_PADCTRL0_GPIORXSTATE BIT(0)
59 #define CHV_PADCTRL1 0x004
60 #define CHV_PADCTRL1_CFGLOCK BIT(31)
61 #define CHV_PADCTRL1_INVRXTX_SHIFT 4
62 #define CHV_PADCTRL1_INVRXTX_MASK (0xf << CHV_PADCTRL1_INVRXTX_SHIFT)
63 #define CHV_PADCTRL1_INVRXTX_TXENABLE (2 << CHV_PADCTRL1_INVRXTX_SHIFT)
64 #define CHV_PADCTRL1_ODEN BIT(3)
65 #define CHV_PADCTRL1_INVRXTX_RXDATA (4 << CHV_PADCTRL1_INVRXTX_SHIFT)
66 #define CHV_PADCTRL1_INTWAKECFG_MASK 7
67 #define CHV_PADCTRL1_INTWAKECFG_FALLING 1
68 #define CHV_PADCTRL1_INTWAKECFG_RISING 2
69 #define CHV_PADCTRL1_INTWAKECFG_BOTH 3
70 #define CHV_PADCTRL1_INTWAKECFG_LEVEL 4
73 * struct chv_alternate_function - A per group or per pin alternate function
74 * @pin: Pin number (only used in per pin configs)
75 * @mode: Mode the pin should be set in
76 * @invert_oe: Invert OE for this pin
78 struct chv_alternate_function
{
85 * struct chv_pincgroup - describes a CHV pin group
86 * @name: Name of the group
87 * @pins: An array of pins in this group
88 * @npins: Number of pins in this group
89 * @altfunc: Alternate function applied to all pins in this group
90 * @overrides: Alternate function override per pin or %NULL if not used
91 * @noverrides: Number of per pin alternate function overrides if
98 struct chv_alternate_function altfunc
;
99 const struct chv_alternate_function
*overrides
;
104 * struct chv_function - A CHV pinmux function
105 * @name: Name of the function
106 * @groups: An array of groups for this function
107 * @ngroups: Number of groups in @groups
109 struct chv_function
{
111 const char * const *groups
;
116 * struct chv_gpio_pinrange - A range of pins that can be used as GPIOs
117 * @base: Start pin number
118 * @npins: Number of pins in this range
120 struct chv_gpio_pinrange
{
126 * struct chv_community - A community specific configuration
127 * @uid: ACPI _UID used to match the community
128 * @pins: All pins in this community
129 * @npins: Number of pins
130 * @groups: All groups in this community
131 * @ngroups: Number of groups
132 * @functions: All functions in this community
133 * @nfunctions: Number of functions
134 * @gpio_ranges: An array of GPIO ranges in this community
135 * @ngpio_ranges: Number of GPIO ranges
136 * @nirqs: Total number of IRQs this community can generate
138 struct chv_community
{
140 const struct pinctrl_pin_desc
*pins
;
142 const struct chv_pingroup
*groups
;
144 const struct chv_function
*functions
;
146 const struct chv_gpio_pinrange
*gpio_ranges
;
149 acpi_adr_space_type acpi_space_id
;
152 struct chv_pin_context
{
158 * struct chv_pinctrl - CHV pinctrl private structure
159 * @dev: Pointer to the parent device
160 * @pctldesc: Pin controller description
161 * @pctldev: Pointer to the pin controller device
162 * @chip: GPIO chip in this pin controller
163 * @regs: MMIO registers
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
168 * The first group in @groups is expected to contain all pins that can be
173 struct pinctrl_desc pctldesc
;
174 struct pinctrl_dev
*pctldev
;
175 struct gpio_chip chip
;
177 unsigned intr_lines
[16];
178 const struct chv_community
*community
;
180 struct chv_pin_context
*saved_pin_context
;
183 #define ALTERNATE_FUNCTION(p, m, i) \
190 #define PIN_GROUP(n, p, m, i) \
194 .npins = ARRAY_SIZE((p)), \
195 .altfunc.mode = (m), \
196 .altfunc.invert_oe = (i), \
199 #define PIN_GROUP_WITH_OVERRIDE(n, p, m, i, o) \
203 .npins = ARRAY_SIZE((p)), \
204 .altfunc.mode = (m), \
205 .altfunc.invert_oe = (i), \
207 .noverrides = ARRAY_SIZE((o)), \
210 #define FUNCTION(n, g) \
214 .ngroups = ARRAY_SIZE((g)), \
217 #define GPIO_PINRANGE(start, end) \
220 .npins = (end) - (start) + 1, \
223 static const struct pinctrl_pin_desc southwest_pins
[] = {
224 PINCTRL_PIN(0, "FST_SPI_D2"),
225 PINCTRL_PIN(1, "FST_SPI_D0"),
226 PINCTRL_PIN(2, "FST_SPI_CLK"),
227 PINCTRL_PIN(3, "FST_SPI_D3"),
228 PINCTRL_PIN(4, "FST_SPI_CS1_B"),
229 PINCTRL_PIN(5, "FST_SPI_D1"),
230 PINCTRL_PIN(6, "FST_SPI_CS0_B"),
231 PINCTRL_PIN(7, "FST_SPI_CS2_B"),
233 PINCTRL_PIN(15, "UART1_RTS_B"),
234 PINCTRL_PIN(16, "UART1_RXD"),
235 PINCTRL_PIN(17, "UART2_RXD"),
236 PINCTRL_PIN(18, "UART1_CTS_B"),
237 PINCTRL_PIN(19, "UART2_RTS_B"),
238 PINCTRL_PIN(20, "UART1_TXD"),
239 PINCTRL_PIN(21, "UART2_TXD"),
240 PINCTRL_PIN(22, "UART2_CTS_B"),
242 PINCTRL_PIN(30, "MF_HDA_CLK"),
243 PINCTRL_PIN(31, "MF_HDA_RSTB"),
244 PINCTRL_PIN(32, "MF_HDA_SDIO"),
245 PINCTRL_PIN(33, "MF_HDA_SDO"),
246 PINCTRL_PIN(34, "MF_HDA_DOCKRSTB"),
247 PINCTRL_PIN(35, "MF_HDA_SYNC"),
248 PINCTRL_PIN(36, "MF_HDA_SDI1"),
249 PINCTRL_PIN(37, "MF_HDA_DOCKENB"),
251 PINCTRL_PIN(45, "I2C5_SDA"),
252 PINCTRL_PIN(46, "I2C4_SDA"),
253 PINCTRL_PIN(47, "I2C6_SDA"),
254 PINCTRL_PIN(48, "I2C5_SCL"),
255 PINCTRL_PIN(49, "I2C_NFC_SDA"),
256 PINCTRL_PIN(50, "I2C4_SCL"),
257 PINCTRL_PIN(51, "I2C6_SCL"),
258 PINCTRL_PIN(52, "I2C_NFC_SCL"),
260 PINCTRL_PIN(60, "I2C1_SDA"),
261 PINCTRL_PIN(61, "I2C0_SDA"),
262 PINCTRL_PIN(62, "I2C2_SDA"),
263 PINCTRL_PIN(63, "I2C1_SCL"),
264 PINCTRL_PIN(64, "I2C3_SDA"),
265 PINCTRL_PIN(65, "I2C0_SCL"),
266 PINCTRL_PIN(66, "I2C2_SCL"),
267 PINCTRL_PIN(67, "I2C3_SCL"),
269 PINCTRL_PIN(75, "SATA_GP0"),
270 PINCTRL_PIN(76, "SATA_GP1"),
271 PINCTRL_PIN(77, "SATA_LEDN"),
272 PINCTRL_PIN(78, "SATA_GP2"),
273 PINCTRL_PIN(79, "MF_SMB_ALERTB"),
274 PINCTRL_PIN(80, "SATA_GP3"),
275 PINCTRL_PIN(81, "MF_SMB_CLK"),
276 PINCTRL_PIN(82, "MF_SMB_DATA"),
278 PINCTRL_PIN(90, "PCIE_CLKREQ0B"),
279 PINCTRL_PIN(91, "PCIE_CLKREQ1B"),
280 PINCTRL_PIN(92, "GP_SSP_2_CLK"),
281 PINCTRL_PIN(93, "PCIE_CLKREQ2B"),
282 PINCTRL_PIN(94, "GP_SSP_2_RXD"),
283 PINCTRL_PIN(95, "PCIE_CLKREQ3B"),
284 PINCTRL_PIN(96, "GP_SSP_2_FS"),
285 PINCTRL_PIN(97, "GP_SSP_2_TXD"),
288 static const unsigned southwest_fspi_pins
[] = { 0, 1, 2, 3, 4, 5, 6, 7 };
289 static const unsigned southwest_uart0_pins
[] = { 16, 20 };
290 static const unsigned southwest_uart1_pins
[] = { 15, 16, 18, 20 };
291 static const unsigned southwest_uart2_pins
[] = { 17, 19, 21, 22 };
292 static const unsigned southwest_i2c0_pins
[] = { 61, 65 };
293 static const unsigned southwest_hda_pins
[] = { 30, 31, 32, 33, 34, 35, 36, 37 };
294 static const unsigned southwest_lpe_pins
[] = {
295 30, 31, 32, 33, 34, 35, 36, 37, 92, 94, 96, 97,
297 static const unsigned southwest_i2c1_pins
[] = { 60, 63 };
298 static const unsigned southwest_i2c2_pins
[] = { 62, 66 };
299 static const unsigned southwest_i2c3_pins
[] = { 64, 67 };
300 static const unsigned southwest_i2c4_pins
[] = { 46, 50 };
301 static const unsigned southwest_i2c5_pins
[] = { 45, 48 };
302 static const unsigned southwest_i2c6_pins
[] = { 47, 51 };
303 static const unsigned southwest_i2c_nfc_pins
[] = { 49, 52 };
304 static const unsigned southwest_smbus_pins
[] = { 79, 81, 82 };
305 static const unsigned southwest_spi3_pins
[] = { 76, 79, 80, 81, 82 };
307 /* LPE I2S TXD pins need to have invert_oe set */
308 static const struct chv_alternate_function southwest_lpe_altfuncs
[] = {
309 ALTERNATE_FUNCTION(30, 1, true),
310 ALTERNATE_FUNCTION(34, 1, true),
311 ALTERNATE_FUNCTION(97, 1, true),
315 * Two spi3 chipselects are available in different mode than the main spi3
316 * functionality, which is using mode 1.
318 static const struct chv_alternate_function southwest_spi3_altfuncs
[] = {
319 ALTERNATE_FUNCTION(76, 3, false),
320 ALTERNATE_FUNCTION(80, 3, false),
323 static const struct chv_pingroup southwest_groups
[] = {
324 PIN_GROUP("uart0_grp", southwest_uart0_pins
, 2, false),
325 PIN_GROUP("uart1_grp", southwest_uart1_pins
, 1, false),
326 PIN_GROUP("uart2_grp", southwest_uart2_pins
, 1, false),
327 PIN_GROUP("hda_grp", southwest_hda_pins
, 2, false),
328 PIN_GROUP("i2c0_grp", southwest_i2c0_pins
, 1, true),
329 PIN_GROUP("i2c1_grp", southwest_i2c1_pins
, 1, true),
330 PIN_GROUP("i2c2_grp", southwest_i2c2_pins
, 1, true),
331 PIN_GROUP("i2c3_grp", southwest_i2c3_pins
, 1, true),
332 PIN_GROUP("i2c4_grp", southwest_i2c4_pins
, 1, true),
333 PIN_GROUP("i2c5_grp", southwest_i2c5_pins
, 1, true),
334 PIN_GROUP("i2c6_grp", southwest_i2c6_pins
, 1, true),
335 PIN_GROUP("i2c_nfc_grp", southwest_i2c_nfc_pins
, 2, true),
337 PIN_GROUP_WITH_OVERRIDE("lpe_grp", southwest_lpe_pins
, 1, false,
338 southwest_lpe_altfuncs
),
339 PIN_GROUP_WITH_OVERRIDE("spi3_grp", southwest_spi3_pins
, 2, false,
340 southwest_spi3_altfuncs
),
343 static const char * const southwest_uart0_groups
[] = { "uart0_grp" };
344 static const char * const southwest_uart1_groups
[] = { "uart1_grp" };
345 static const char * const southwest_uart2_groups
[] = { "uart2_grp" };
346 static const char * const southwest_hda_groups
[] = { "hda_grp" };
347 static const char * const southwest_lpe_groups
[] = { "lpe_grp" };
348 static const char * const southwest_i2c0_groups
[] = { "i2c0_grp" };
349 static const char * const southwest_i2c1_groups
[] = { "i2c1_grp" };
350 static const char * const southwest_i2c2_groups
[] = { "i2c2_grp" };
351 static const char * const southwest_i2c3_groups
[] = { "i2c3_grp" };
352 static const char * const southwest_i2c4_groups
[] = { "i2c4_grp" };
353 static const char * const southwest_i2c5_groups
[] = { "i2c5_grp" };
354 static const char * const southwest_i2c6_groups
[] = { "i2c6_grp" };
355 static const char * const southwest_i2c_nfc_groups
[] = { "i2c_nfc_grp" };
356 static const char * const southwest_spi3_groups
[] = { "spi3_grp" };
359 * Only do pinmuxing for certain LPSS devices for now. Rest of the pins are
360 * enabled only as GPIOs.
362 static const struct chv_function southwest_functions
[] = {
363 FUNCTION("uart0", southwest_uart0_groups
),
364 FUNCTION("uart1", southwest_uart1_groups
),
365 FUNCTION("uart2", southwest_uart2_groups
),
366 FUNCTION("hda", southwest_hda_groups
),
367 FUNCTION("lpe", southwest_lpe_groups
),
368 FUNCTION("i2c0", southwest_i2c0_groups
),
369 FUNCTION("i2c1", southwest_i2c1_groups
),
370 FUNCTION("i2c2", southwest_i2c2_groups
),
371 FUNCTION("i2c3", southwest_i2c3_groups
),
372 FUNCTION("i2c4", southwest_i2c4_groups
),
373 FUNCTION("i2c5", southwest_i2c5_groups
),
374 FUNCTION("i2c6", southwest_i2c6_groups
),
375 FUNCTION("i2c_nfc", southwest_i2c_nfc_groups
),
376 FUNCTION("spi3", southwest_spi3_groups
),
379 static const struct chv_gpio_pinrange southwest_gpio_ranges
[] = {
381 GPIO_PINRANGE(15, 22),
382 GPIO_PINRANGE(30, 37),
383 GPIO_PINRANGE(45, 52),
384 GPIO_PINRANGE(60, 67),
385 GPIO_PINRANGE(75, 82),
386 GPIO_PINRANGE(90, 97),
389 static const struct chv_community southwest_community
= {
391 .pins
= southwest_pins
,
392 .npins
= ARRAY_SIZE(southwest_pins
),
393 .groups
= southwest_groups
,
394 .ngroups
= ARRAY_SIZE(southwest_groups
),
395 .functions
= southwest_functions
,
396 .nfunctions
= ARRAY_SIZE(southwest_functions
),
397 .gpio_ranges
= southwest_gpio_ranges
,
398 .ngpio_ranges
= ARRAY_SIZE(southwest_gpio_ranges
),
400 * Southwest community can benerate GPIO interrupts only for the
401 * first 8 interrupts. The upper half (8-15) can only be used to
405 .acpi_space_id
= 0x91,
408 static const struct pinctrl_pin_desc north_pins
[] = {
409 PINCTRL_PIN(0, "GPIO_DFX_0"),
410 PINCTRL_PIN(1, "GPIO_DFX_3"),
411 PINCTRL_PIN(2, "GPIO_DFX_7"),
412 PINCTRL_PIN(3, "GPIO_DFX_1"),
413 PINCTRL_PIN(4, "GPIO_DFX_5"),
414 PINCTRL_PIN(5, "GPIO_DFX_4"),
415 PINCTRL_PIN(6, "GPIO_DFX_8"),
416 PINCTRL_PIN(7, "GPIO_DFX_2"),
417 PINCTRL_PIN(8, "GPIO_DFX_6"),
419 PINCTRL_PIN(15, "GPIO_SUS0"),
420 PINCTRL_PIN(16, "SEC_GPIO_SUS10"),
421 PINCTRL_PIN(17, "GPIO_SUS3"),
422 PINCTRL_PIN(18, "GPIO_SUS7"),
423 PINCTRL_PIN(19, "GPIO_SUS1"),
424 PINCTRL_PIN(20, "GPIO_SUS5"),
425 PINCTRL_PIN(21, "SEC_GPIO_SUS11"),
426 PINCTRL_PIN(22, "GPIO_SUS4"),
427 PINCTRL_PIN(23, "SEC_GPIO_SUS8"),
428 PINCTRL_PIN(24, "GPIO_SUS2"),
429 PINCTRL_PIN(25, "GPIO_SUS6"),
430 PINCTRL_PIN(26, "CX_PREQ_B"),
431 PINCTRL_PIN(27, "SEC_GPIO_SUS9"),
433 PINCTRL_PIN(30, "TRST_B"),
434 PINCTRL_PIN(31, "TCK"),
435 PINCTRL_PIN(32, "PROCHOT_B"),
436 PINCTRL_PIN(33, "SVIDO_DATA"),
437 PINCTRL_PIN(34, "TMS"),
438 PINCTRL_PIN(35, "CX_PRDY_B_2"),
439 PINCTRL_PIN(36, "TDO_2"),
440 PINCTRL_PIN(37, "CX_PRDY_B"),
441 PINCTRL_PIN(38, "SVIDO_ALERT_B"),
442 PINCTRL_PIN(39, "TDO"),
443 PINCTRL_PIN(40, "SVIDO_CLK"),
444 PINCTRL_PIN(41, "TDI"),
446 PINCTRL_PIN(45, "GP_CAMERASB_05"),
447 PINCTRL_PIN(46, "GP_CAMERASB_02"),
448 PINCTRL_PIN(47, "GP_CAMERASB_08"),
449 PINCTRL_PIN(48, "GP_CAMERASB_00"),
450 PINCTRL_PIN(49, "GP_CAMERASB_06"),
451 PINCTRL_PIN(50, "GP_CAMERASB_10"),
452 PINCTRL_PIN(51, "GP_CAMERASB_03"),
453 PINCTRL_PIN(52, "GP_CAMERASB_09"),
454 PINCTRL_PIN(53, "GP_CAMERASB_01"),
455 PINCTRL_PIN(54, "GP_CAMERASB_07"),
456 PINCTRL_PIN(55, "GP_CAMERASB_11"),
457 PINCTRL_PIN(56, "GP_CAMERASB_04"),
459 PINCTRL_PIN(60, "PANEL0_BKLTEN"),
460 PINCTRL_PIN(61, "HV_DDI0_HPD"),
461 PINCTRL_PIN(62, "HV_DDI2_DDC_SDA"),
462 PINCTRL_PIN(63, "PANEL1_BKLTCTL"),
463 PINCTRL_PIN(64, "HV_DDI1_HPD"),
464 PINCTRL_PIN(65, "PANEL0_BKLTCTL"),
465 PINCTRL_PIN(66, "HV_DDI0_DDC_SDA"),
466 PINCTRL_PIN(67, "HV_DDI2_DDC_SCL"),
467 PINCTRL_PIN(68, "HV_DDI2_HPD"),
468 PINCTRL_PIN(69, "PANEL1_VDDEN"),
469 PINCTRL_PIN(70, "PANEL1_BKLTEN"),
470 PINCTRL_PIN(71, "HV_DDI0_DDC_SCL"),
471 PINCTRL_PIN(72, "PANEL0_VDDEN"),
474 static const struct chv_gpio_pinrange north_gpio_ranges
[] = {
476 GPIO_PINRANGE(15, 27),
477 GPIO_PINRANGE(30, 41),
478 GPIO_PINRANGE(45, 56),
479 GPIO_PINRANGE(60, 72),
482 static const struct chv_community north_community
= {
485 .npins
= ARRAY_SIZE(north_pins
),
486 .gpio_ranges
= north_gpio_ranges
,
487 .ngpio_ranges
= ARRAY_SIZE(north_gpio_ranges
),
489 * North community can generate GPIO interrupts only for the first
490 * 8 interrupts. The upper half (8-15) can only be used to trigger
494 .acpi_space_id
= 0x92,
497 static const struct pinctrl_pin_desc east_pins
[] = {
498 PINCTRL_PIN(0, "PMU_SLP_S3_B"),
499 PINCTRL_PIN(1, "PMU_BATLOW_B"),
500 PINCTRL_PIN(2, "SUS_STAT_B"),
501 PINCTRL_PIN(3, "PMU_SLP_S0IX_B"),
502 PINCTRL_PIN(4, "PMU_AC_PRESENT"),
503 PINCTRL_PIN(5, "PMU_PLTRST_B"),
504 PINCTRL_PIN(6, "PMU_SUSCLK"),
505 PINCTRL_PIN(7, "PMU_SLP_LAN_B"),
506 PINCTRL_PIN(8, "PMU_PWRBTN_B"),
507 PINCTRL_PIN(9, "PMU_SLP_S4_B"),
508 PINCTRL_PIN(10, "PMU_WAKE_B"),
509 PINCTRL_PIN(11, "PMU_WAKE_LAN_B"),
511 PINCTRL_PIN(15, "MF_ISH_GPIO_3"),
512 PINCTRL_PIN(16, "MF_ISH_GPIO_7"),
513 PINCTRL_PIN(17, "MF_ISH_I2C1_SCL"),
514 PINCTRL_PIN(18, "MF_ISH_GPIO_1"),
515 PINCTRL_PIN(19, "MF_ISH_GPIO_5"),
516 PINCTRL_PIN(20, "MF_ISH_GPIO_9"),
517 PINCTRL_PIN(21, "MF_ISH_GPIO_0"),
518 PINCTRL_PIN(22, "MF_ISH_GPIO_4"),
519 PINCTRL_PIN(23, "MF_ISH_GPIO_8"),
520 PINCTRL_PIN(24, "MF_ISH_GPIO_2"),
521 PINCTRL_PIN(25, "MF_ISH_GPIO_6"),
522 PINCTRL_PIN(26, "MF_ISH_I2C1_SDA"),
525 static const struct chv_gpio_pinrange east_gpio_ranges
[] = {
526 GPIO_PINRANGE(0, 11),
527 GPIO_PINRANGE(15, 26),
530 static const struct chv_community east_community
= {
533 .npins
= ARRAY_SIZE(east_pins
),
534 .gpio_ranges
= east_gpio_ranges
,
535 .ngpio_ranges
= ARRAY_SIZE(east_gpio_ranges
),
537 .acpi_space_id
= 0x93,
540 static const struct pinctrl_pin_desc southeast_pins
[] = {
541 PINCTRL_PIN(0, "MF_PLT_CLK0"),
542 PINCTRL_PIN(1, "PWM1"),
543 PINCTRL_PIN(2, "MF_PLT_CLK1"),
544 PINCTRL_PIN(3, "MF_PLT_CLK4"),
545 PINCTRL_PIN(4, "MF_PLT_CLK3"),
546 PINCTRL_PIN(5, "PWM0"),
547 PINCTRL_PIN(6, "MF_PLT_CLK5"),
548 PINCTRL_PIN(7, "MF_PLT_CLK2"),
550 PINCTRL_PIN(15, "SDMMC2_D3_CD_B"),
551 PINCTRL_PIN(16, "SDMMC1_CLK"),
552 PINCTRL_PIN(17, "SDMMC1_D0"),
553 PINCTRL_PIN(18, "SDMMC2_D1"),
554 PINCTRL_PIN(19, "SDMMC2_CLK"),
555 PINCTRL_PIN(20, "SDMMC1_D2"),
556 PINCTRL_PIN(21, "SDMMC2_D2"),
557 PINCTRL_PIN(22, "SDMMC2_CMD"),
558 PINCTRL_PIN(23, "SDMMC1_CMD"),
559 PINCTRL_PIN(24, "SDMMC1_D1"),
560 PINCTRL_PIN(25, "SDMMC2_D0"),
561 PINCTRL_PIN(26, "SDMMC1_D3_CD_B"),
563 PINCTRL_PIN(30, "SDMMC3_D1"),
564 PINCTRL_PIN(31, "SDMMC3_CLK"),
565 PINCTRL_PIN(32, "SDMMC3_D3"),
566 PINCTRL_PIN(33, "SDMMC3_D2"),
567 PINCTRL_PIN(34, "SDMMC3_CMD"),
568 PINCTRL_PIN(35, "SDMMC3_D0"),
570 PINCTRL_PIN(45, "MF_LPC_AD2"),
571 PINCTRL_PIN(46, "LPC_CLKRUNB"),
572 PINCTRL_PIN(47, "MF_LPC_AD0"),
573 PINCTRL_PIN(48, "LPC_FRAMEB"),
574 PINCTRL_PIN(49, "MF_LPC_CLKOUT1"),
575 PINCTRL_PIN(50, "MF_LPC_AD3"),
576 PINCTRL_PIN(51, "MF_LPC_CLKOUT0"),
577 PINCTRL_PIN(52, "MF_LPC_AD1"),
579 PINCTRL_PIN(60, "SPI1_MISO"),
580 PINCTRL_PIN(61, "SPI1_CSO_B"),
581 PINCTRL_PIN(62, "SPI1_CLK"),
582 PINCTRL_PIN(63, "MMC1_D6"),
583 PINCTRL_PIN(64, "SPI1_MOSI"),
584 PINCTRL_PIN(65, "MMC1_D5"),
585 PINCTRL_PIN(66, "SPI1_CS1_B"),
586 PINCTRL_PIN(67, "MMC1_D4_SD_WE"),
587 PINCTRL_PIN(68, "MMC1_D7"),
588 PINCTRL_PIN(69, "MMC1_RCLK"),
590 PINCTRL_PIN(75, "USB_OC1_B"),
591 PINCTRL_PIN(76, "PMU_RESETBUTTON_B"),
592 PINCTRL_PIN(77, "GPIO_ALERT"),
593 PINCTRL_PIN(78, "SDMMC3_PWR_EN_B"),
594 PINCTRL_PIN(79, "ILB_SERIRQ"),
595 PINCTRL_PIN(80, "USB_OC0_B"),
596 PINCTRL_PIN(81, "SDMMC3_CD_B"),
597 PINCTRL_PIN(82, "SPKR"),
598 PINCTRL_PIN(83, "SUSPWRDNACK"),
599 PINCTRL_PIN(84, "SPARE_PIN"),
600 PINCTRL_PIN(85, "SDMMC3_1P8_EN"),
603 static const unsigned southeast_pwm0_pins
[] = { 5 };
604 static const unsigned southeast_pwm1_pins
[] = { 1 };
605 static const unsigned southeast_sdmmc1_pins
[] = {
606 16, 17, 20, 23, 24, 26, 63, 65, 67, 68, 69,
608 static const unsigned southeast_sdmmc2_pins
[] = { 15, 18, 19, 21, 22, 25 };
609 static const unsigned southeast_sdmmc3_pins
[] = {
610 30, 31, 32, 33, 34, 35, 78, 81, 85,
612 static const unsigned southeast_spi1_pins
[] = { 60, 61, 62, 64, 66 };
613 static const unsigned southeast_spi2_pins
[] = { 2, 3, 4, 6, 7 };
615 static const struct chv_pingroup southeast_groups
[] = {
616 PIN_GROUP("pwm0_grp", southeast_pwm0_pins
, 1, false),
617 PIN_GROUP("pwm1_grp", southeast_pwm1_pins
, 1, false),
618 PIN_GROUP("sdmmc1_grp", southeast_sdmmc1_pins
, 1, false),
619 PIN_GROUP("sdmmc2_grp", southeast_sdmmc2_pins
, 1, false),
620 PIN_GROUP("sdmmc3_grp", southeast_sdmmc3_pins
, 1, false),
621 PIN_GROUP("spi1_grp", southeast_spi1_pins
, 1, false),
622 PIN_GROUP("spi2_grp", southeast_spi2_pins
, 4, false),
625 static const char * const southeast_pwm0_groups
[] = { "pwm0_grp" };
626 static const char * const southeast_pwm1_groups
[] = { "pwm1_grp" };
627 static const char * const southeast_sdmmc1_groups
[] = { "sdmmc1_grp" };
628 static const char * const southeast_sdmmc2_groups
[] = { "sdmmc2_grp" };
629 static const char * const southeast_sdmmc3_groups
[] = { "sdmmc3_grp" };
630 static const char * const southeast_spi1_groups
[] = { "spi1_grp" };
631 static const char * const southeast_spi2_groups
[] = { "spi2_grp" };
633 static const struct chv_function southeast_functions
[] = {
634 FUNCTION("pwm0", southeast_pwm0_groups
),
635 FUNCTION("pwm1", southeast_pwm1_groups
),
636 FUNCTION("sdmmc1", southeast_sdmmc1_groups
),
637 FUNCTION("sdmmc2", southeast_sdmmc2_groups
),
638 FUNCTION("sdmmc3", southeast_sdmmc3_groups
),
639 FUNCTION("spi1", southeast_spi1_groups
),
640 FUNCTION("spi2", southeast_spi2_groups
),
643 static const struct chv_gpio_pinrange southeast_gpio_ranges
[] = {
645 GPIO_PINRANGE(15, 26),
646 GPIO_PINRANGE(30, 35),
647 GPIO_PINRANGE(45, 52),
648 GPIO_PINRANGE(60, 69),
649 GPIO_PINRANGE(75, 85),
652 static const struct chv_community southeast_community
= {
654 .pins
= southeast_pins
,
655 .npins
= ARRAY_SIZE(southeast_pins
),
656 .groups
= southeast_groups
,
657 .ngroups
= ARRAY_SIZE(southeast_groups
),
658 .functions
= southeast_functions
,
659 .nfunctions
= ARRAY_SIZE(southeast_functions
),
660 .gpio_ranges
= southeast_gpio_ranges
,
661 .ngpio_ranges
= ARRAY_SIZE(southeast_gpio_ranges
),
663 .acpi_space_id
= 0x94,
666 static const struct chv_community
*chv_communities
[] = {
667 &southwest_community
,
670 &southeast_community
,
674 * Lock to serialize register accesses
676 * Due to a silicon issue, a shared lock must be used to prevent
677 * concurrent accesses across the 4 GPIO controllers.
679 * See Intel Atom Z8000 Processor Series Specification Update (Rev. 005),
680 * errata #CHT34, for further information.
682 static DEFINE_RAW_SPINLOCK(chv_lock
);
684 static void __iomem
*chv_padreg(struct chv_pinctrl
*pctrl
, unsigned offset
,
687 unsigned family_no
= offset
/ MAX_FAMILY_PAD_GPIO_NO
;
688 unsigned pad_no
= offset
% MAX_FAMILY_PAD_GPIO_NO
;
690 offset
= FAMILY_PAD_REGS_OFF
+ FAMILY_PAD_REGS_SIZE
* family_no
+
691 GPIO_REGS_SIZE
* pad_no
;
693 return pctrl
->regs
+ offset
+ reg
;
696 static void chv_writel(u32 value
, void __iomem
*reg
)
699 /* simple readback to confirm the bus transferring done */
703 /* When Pad Cfg is locked, driver can only change GPIOTXState or GPIORXState */
704 static bool chv_pad_locked(struct chv_pinctrl
*pctrl
, unsigned offset
)
708 reg
= chv_padreg(pctrl
, offset
, CHV_PADCTRL1
);
709 return readl(reg
) & CHV_PADCTRL1_CFGLOCK
;
712 static int chv_get_groups_count(struct pinctrl_dev
*pctldev
)
714 struct chv_pinctrl
*pctrl
= pinctrl_dev_get_drvdata(pctldev
);
716 return pctrl
->community
->ngroups
;
719 static const char *chv_get_group_name(struct pinctrl_dev
*pctldev
,
722 struct chv_pinctrl
*pctrl
= pinctrl_dev_get_drvdata(pctldev
);
724 return pctrl
->community
->groups
[group
].name
;
727 static int chv_get_group_pins(struct pinctrl_dev
*pctldev
, unsigned group
,
728 const unsigned **pins
, unsigned *npins
)
730 struct chv_pinctrl
*pctrl
= pinctrl_dev_get_drvdata(pctldev
);
732 *pins
= pctrl
->community
->groups
[group
].pins
;
733 *npins
= pctrl
->community
->groups
[group
].npins
;
737 static void chv_pin_dbg_show(struct pinctrl_dev
*pctldev
, struct seq_file
*s
,
740 struct chv_pinctrl
*pctrl
= pinctrl_dev_get_drvdata(pctldev
);
745 raw_spin_lock_irqsave(&chv_lock
, flags
);
747 ctrl0
= readl(chv_padreg(pctrl
, offset
, CHV_PADCTRL0
));
748 ctrl1
= readl(chv_padreg(pctrl
, offset
, CHV_PADCTRL1
));
749 locked
= chv_pad_locked(pctrl
, offset
);
751 raw_spin_unlock_irqrestore(&chv_lock
, flags
);
753 if (ctrl0
& CHV_PADCTRL0_GPIOEN
) {
754 seq_puts(s
, "GPIO ");
758 mode
= ctrl0
& CHV_PADCTRL0_PMODE_MASK
;
759 mode
>>= CHV_PADCTRL0_PMODE_SHIFT
;
761 seq_printf(s
, "mode %d ", mode
);
764 seq_printf(s
, "0x%08x 0x%08x", ctrl0
, ctrl1
);
767 seq_puts(s
, " [LOCKED]");
770 static const struct pinctrl_ops chv_pinctrl_ops
= {
771 .get_groups_count
= chv_get_groups_count
,
772 .get_group_name
= chv_get_group_name
,
773 .get_group_pins
= chv_get_group_pins
,
774 .pin_dbg_show
= chv_pin_dbg_show
,
777 static int chv_get_functions_count(struct pinctrl_dev
*pctldev
)
779 struct chv_pinctrl
*pctrl
= pinctrl_dev_get_drvdata(pctldev
);
781 return pctrl
->community
->nfunctions
;
784 static const char *chv_get_function_name(struct pinctrl_dev
*pctldev
,
787 struct chv_pinctrl
*pctrl
= pinctrl_dev_get_drvdata(pctldev
);
789 return pctrl
->community
->functions
[function
].name
;
792 static int chv_get_function_groups(struct pinctrl_dev
*pctldev
,
794 const char * const **groups
,
795 unsigned * const ngroups
)
797 struct chv_pinctrl
*pctrl
= pinctrl_dev_get_drvdata(pctldev
);
799 *groups
= pctrl
->community
->functions
[function
].groups
;
800 *ngroups
= pctrl
->community
->functions
[function
].ngroups
;
804 static int chv_pinmux_set_mux(struct pinctrl_dev
*pctldev
, unsigned function
,
807 struct chv_pinctrl
*pctrl
= pinctrl_dev_get_drvdata(pctldev
);
808 const struct chv_pingroup
*grp
;
812 grp
= &pctrl
->community
->groups
[group
];
814 raw_spin_lock_irqsave(&chv_lock
, flags
);
816 /* Check first that the pad is not locked */
817 for (i
= 0; i
< grp
->npins
; i
++) {
818 if (chv_pad_locked(pctrl
, grp
->pins
[i
])) {
819 dev_warn(pctrl
->dev
, "unable to set mode for locked pin %u\n",
821 raw_spin_unlock_irqrestore(&chv_lock
, flags
);
826 for (i
= 0; i
< grp
->npins
; i
++) {
827 const struct chv_alternate_function
*altfunc
= &grp
->altfunc
;
828 int pin
= grp
->pins
[i
];
832 /* Check if there is pin-specific config */
833 if (grp
->overrides
) {
836 for (j
= 0; j
< grp
->noverrides
; j
++) {
837 if (grp
->overrides
[j
].pin
== pin
) {
838 altfunc
= &grp
->overrides
[j
];
844 reg
= chv_padreg(pctrl
, pin
, CHV_PADCTRL0
);
846 /* Disable GPIO mode */
847 value
&= ~CHV_PADCTRL0_GPIOEN
;
848 /* Set to desired mode */
849 value
&= ~CHV_PADCTRL0_PMODE_MASK
;
850 value
|= altfunc
->mode
<< CHV_PADCTRL0_PMODE_SHIFT
;
851 chv_writel(value
, reg
);
853 /* Update for invert_oe */
854 reg
= chv_padreg(pctrl
, pin
, CHV_PADCTRL1
);
855 value
= readl(reg
) & ~CHV_PADCTRL1_INVRXTX_MASK
;
856 if (altfunc
->invert_oe
)
857 value
|= CHV_PADCTRL1_INVRXTX_TXENABLE
;
858 chv_writel(value
, reg
);
860 dev_dbg(pctrl
->dev
, "configured pin %u mode %u OE %sinverted\n",
861 pin
, altfunc
->mode
, altfunc
->invert_oe
? "" : "not ");
864 raw_spin_unlock_irqrestore(&chv_lock
, flags
);
869 static int chv_gpio_request_enable(struct pinctrl_dev
*pctldev
,
870 struct pinctrl_gpio_range
*range
,
873 struct chv_pinctrl
*pctrl
= pinctrl_dev_get_drvdata(pctldev
);
878 raw_spin_lock_irqsave(&chv_lock
, flags
);
880 if (chv_pad_locked(pctrl
, offset
)) {
881 value
= readl(chv_padreg(pctrl
, offset
, CHV_PADCTRL0
));
882 if (!(value
& CHV_PADCTRL0_GPIOEN
)) {
883 /* Locked so cannot enable */
884 raw_spin_unlock_irqrestore(&chv_lock
, flags
);
890 /* Reset the interrupt mapping */
891 for (i
= 0; i
< ARRAY_SIZE(pctrl
->intr_lines
); i
++) {
892 if (pctrl
->intr_lines
[i
] == offset
) {
893 pctrl
->intr_lines
[i
] = 0;
898 /* Disable interrupt generation */
899 reg
= chv_padreg(pctrl
, offset
, CHV_PADCTRL1
);
901 value
&= ~CHV_PADCTRL1_INTWAKECFG_MASK
;
902 value
&= ~CHV_PADCTRL1_INVRXTX_MASK
;
903 chv_writel(value
, reg
);
905 reg
= chv_padreg(pctrl
, offset
, CHV_PADCTRL0
);
909 * If the pin is in HiZ mode (both TX and RX buffers are
910 * disabled) we turn it to be input now.
912 if ((value
& CHV_PADCTRL0_GPIOCFG_MASK
) ==
913 (CHV_PADCTRL0_GPIOCFG_HIZ
<< CHV_PADCTRL0_GPIOCFG_SHIFT
)) {
914 value
&= ~CHV_PADCTRL0_GPIOCFG_MASK
;
915 value
|= CHV_PADCTRL0_GPIOCFG_GPI
<<
916 CHV_PADCTRL0_GPIOCFG_SHIFT
;
919 /* Switch to a GPIO mode */
920 value
|= CHV_PADCTRL0_GPIOEN
;
921 chv_writel(value
, reg
);
924 raw_spin_unlock_irqrestore(&chv_lock
, flags
);
929 static void chv_gpio_disable_free(struct pinctrl_dev
*pctldev
,
930 struct pinctrl_gpio_range
*range
,
933 struct chv_pinctrl
*pctrl
= pinctrl_dev_get_drvdata(pctldev
);
938 raw_spin_lock_irqsave(&chv_lock
, flags
);
940 reg
= chv_padreg(pctrl
, offset
, CHV_PADCTRL0
);
941 value
= readl(reg
) & ~CHV_PADCTRL0_GPIOEN
;
942 chv_writel(value
, reg
);
944 raw_spin_unlock_irqrestore(&chv_lock
, flags
);
947 static int chv_gpio_set_direction(struct pinctrl_dev
*pctldev
,
948 struct pinctrl_gpio_range
*range
,
949 unsigned offset
, bool input
)
951 struct chv_pinctrl
*pctrl
= pinctrl_dev_get_drvdata(pctldev
);
952 void __iomem
*reg
= chv_padreg(pctrl
, offset
, CHV_PADCTRL0
);
956 raw_spin_lock_irqsave(&chv_lock
, flags
);
958 ctrl0
= readl(reg
) & ~CHV_PADCTRL0_GPIOCFG_MASK
;
960 ctrl0
|= CHV_PADCTRL0_GPIOCFG_GPI
<< CHV_PADCTRL0_GPIOCFG_SHIFT
;
962 ctrl0
|= CHV_PADCTRL0_GPIOCFG_GPO
<< CHV_PADCTRL0_GPIOCFG_SHIFT
;
963 chv_writel(ctrl0
, reg
);
965 raw_spin_unlock_irqrestore(&chv_lock
, flags
);
970 static const struct pinmux_ops chv_pinmux_ops
= {
971 .get_functions_count
= chv_get_functions_count
,
972 .get_function_name
= chv_get_function_name
,
973 .get_function_groups
= chv_get_function_groups
,
974 .set_mux
= chv_pinmux_set_mux
,
975 .gpio_request_enable
= chv_gpio_request_enable
,
976 .gpio_disable_free
= chv_gpio_disable_free
,
977 .gpio_set_direction
= chv_gpio_set_direction
,
980 static int chv_config_get(struct pinctrl_dev
*pctldev
, unsigned pin
,
981 unsigned long *config
)
983 struct chv_pinctrl
*pctrl
= pinctrl_dev_get_drvdata(pctldev
);
984 enum pin_config_param param
= pinconf_to_config_param(*config
);
990 raw_spin_lock_irqsave(&chv_lock
, flags
);
991 ctrl0
= readl(chv_padreg(pctrl
, pin
, CHV_PADCTRL0
));
992 ctrl1
= readl(chv_padreg(pctrl
, pin
, CHV_PADCTRL1
));
993 raw_spin_unlock_irqrestore(&chv_lock
, flags
);
995 term
= (ctrl0
& CHV_PADCTRL0_TERM_MASK
) >> CHV_PADCTRL0_TERM_SHIFT
;
998 case PIN_CONFIG_BIAS_DISABLE
:
1003 case PIN_CONFIG_BIAS_PULL_UP
:
1004 if (!(ctrl0
& CHV_PADCTRL0_TERM_UP
))
1008 case CHV_PADCTRL0_TERM_20K
:
1011 case CHV_PADCTRL0_TERM_5K
:
1014 case CHV_PADCTRL0_TERM_1K
:
1021 case PIN_CONFIG_BIAS_PULL_DOWN
:
1022 if (!term
|| (ctrl0
& CHV_PADCTRL0_TERM_UP
))
1026 case CHV_PADCTRL0_TERM_20K
:
1029 case CHV_PADCTRL0_TERM_5K
:
1036 case PIN_CONFIG_DRIVE_OPEN_DRAIN
:
1037 if (!(ctrl1
& CHV_PADCTRL1_ODEN
))
1041 case PIN_CONFIG_BIAS_HIGH_IMPEDANCE
: {
1044 cfg
= ctrl0
& CHV_PADCTRL0_GPIOCFG_MASK
;
1045 cfg
>>= CHV_PADCTRL0_GPIOCFG_SHIFT
;
1046 if (cfg
!= CHV_PADCTRL0_GPIOCFG_HIZ
)
1056 *config
= pinconf_to_config_packed(param
, arg
);
1060 static int chv_config_set_pull(struct chv_pinctrl
*pctrl
, unsigned pin
,
1061 enum pin_config_param param
, u32 arg
)
1063 void __iomem
*reg
= chv_padreg(pctrl
, pin
, CHV_PADCTRL0
);
1064 unsigned long flags
;
1067 raw_spin_lock_irqsave(&chv_lock
, flags
);
1071 case PIN_CONFIG_BIAS_DISABLE
:
1072 ctrl0
&= ~(CHV_PADCTRL0_TERM_MASK
| CHV_PADCTRL0_TERM_UP
);
1075 case PIN_CONFIG_BIAS_PULL_UP
:
1076 ctrl0
&= ~(CHV_PADCTRL0_TERM_MASK
| CHV_PADCTRL0_TERM_UP
);
1080 /* For 1k there is only pull up */
1081 pull
= CHV_PADCTRL0_TERM_1K
<< CHV_PADCTRL0_TERM_SHIFT
;
1084 pull
= CHV_PADCTRL0_TERM_5K
<< CHV_PADCTRL0_TERM_SHIFT
;
1087 pull
= CHV_PADCTRL0_TERM_20K
<< CHV_PADCTRL0_TERM_SHIFT
;
1090 raw_spin_unlock_irqrestore(&chv_lock
, flags
);
1094 ctrl0
|= CHV_PADCTRL0_TERM_UP
| pull
;
1097 case PIN_CONFIG_BIAS_PULL_DOWN
:
1098 ctrl0
&= ~(CHV_PADCTRL0_TERM_MASK
| CHV_PADCTRL0_TERM_UP
);
1102 pull
= CHV_PADCTRL0_TERM_5K
<< CHV_PADCTRL0_TERM_SHIFT
;
1105 pull
= CHV_PADCTRL0_TERM_20K
<< CHV_PADCTRL0_TERM_SHIFT
;
1108 raw_spin_unlock_irqrestore(&chv_lock
, flags
);
1116 raw_spin_unlock_irqrestore(&chv_lock
, flags
);
1120 chv_writel(ctrl0
, reg
);
1121 raw_spin_unlock_irqrestore(&chv_lock
, flags
);
1126 static int chv_config_set_oden(struct chv_pinctrl
*pctrl
, unsigned int pin
,
1129 void __iomem
*reg
= chv_padreg(pctrl
, pin
, CHV_PADCTRL1
);
1130 unsigned long flags
;
1133 raw_spin_lock_irqsave(&chv_lock
, flags
);
1137 ctrl1
|= CHV_PADCTRL1_ODEN
;
1139 ctrl1
&= ~CHV_PADCTRL1_ODEN
;
1141 chv_writel(ctrl1
, reg
);
1142 raw_spin_unlock_irqrestore(&chv_lock
, flags
);
1147 static int chv_config_set(struct pinctrl_dev
*pctldev
, unsigned pin
,
1148 unsigned long *configs
, unsigned nconfigs
)
1150 struct chv_pinctrl
*pctrl
= pinctrl_dev_get_drvdata(pctldev
);
1151 enum pin_config_param param
;
1155 if (chv_pad_locked(pctrl
, pin
))
1158 for (i
= 0; i
< nconfigs
; i
++) {
1159 param
= pinconf_to_config_param(configs
[i
]);
1160 arg
= pinconf_to_config_argument(configs
[i
]);
1163 case PIN_CONFIG_BIAS_DISABLE
:
1164 case PIN_CONFIG_BIAS_PULL_UP
:
1165 case PIN_CONFIG_BIAS_PULL_DOWN
:
1166 ret
= chv_config_set_pull(pctrl
, pin
, param
, arg
);
1171 case PIN_CONFIG_DRIVE_PUSH_PULL
:
1172 ret
= chv_config_set_oden(pctrl
, pin
, false);
1177 case PIN_CONFIG_DRIVE_OPEN_DRAIN
:
1178 ret
= chv_config_set_oden(pctrl
, pin
, true);
1187 dev_dbg(pctrl
->dev
, "pin %d set config %d arg %u\n", pin
,
1194 static int chv_config_group_get(struct pinctrl_dev
*pctldev
,
1196 unsigned long *config
)
1198 const unsigned int *pins
;
1202 ret
= chv_get_group_pins(pctldev
, group
, &pins
, &npins
);
1206 ret
= chv_config_get(pctldev
, pins
[0], config
);
1213 static int chv_config_group_set(struct pinctrl_dev
*pctldev
,
1214 unsigned int group
, unsigned long *configs
,
1215 unsigned int num_configs
)
1217 const unsigned int *pins
;
1221 ret
= chv_get_group_pins(pctldev
, group
, &pins
, &npins
);
1225 for (i
= 0; i
< npins
; i
++) {
1226 ret
= chv_config_set(pctldev
, pins
[i
], configs
, num_configs
);
1234 static const struct pinconf_ops chv_pinconf_ops
= {
1236 .pin_config_set
= chv_config_set
,
1237 .pin_config_get
= chv_config_get
,
1238 .pin_config_group_get
= chv_config_group_get
,
1239 .pin_config_group_set
= chv_config_group_set
,
1242 static struct pinctrl_desc chv_pinctrl_desc
= {
1243 .pctlops
= &chv_pinctrl_ops
,
1244 .pmxops
= &chv_pinmux_ops
,
1245 .confops
= &chv_pinconf_ops
,
1246 .owner
= THIS_MODULE
,
1249 static int chv_gpio_get(struct gpio_chip
*chip
, unsigned offset
)
1251 struct chv_pinctrl
*pctrl
= gpiochip_get_data(chip
);
1252 unsigned long flags
;
1255 raw_spin_lock_irqsave(&chv_lock
, flags
);
1256 ctrl0
= readl(chv_padreg(pctrl
, offset
, CHV_PADCTRL0
));
1257 raw_spin_unlock_irqrestore(&chv_lock
, flags
);
1259 cfg
= ctrl0
& CHV_PADCTRL0_GPIOCFG_MASK
;
1260 cfg
>>= CHV_PADCTRL0_GPIOCFG_SHIFT
;
1262 if (cfg
== CHV_PADCTRL0_GPIOCFG_GPO
)
1263 return !!(ctrl0
& CHV_PADCTRL0_GPIOTXSTATE
);
1264 return !!(ctrl0
& CHV_PADCTRL0_GPIORXSTATE
);
1267 static void chv_gpio_set(struct gpio_chip
*chip
, unsigned offset
, int value
)
1269 struct chv_pinctrl
*pctrl
= gpiochip_get_data(chip
);
1270 unsigned long flags
;
1274 raw_spin_lock_irqsave(&chv_lock
, flags
);
1276 reg
= chv_padreg(pctrl
, offset
, CHV_PADCTRL0
);
1280 ctrl0
|= CHV_PADCTRL0_GPIOTXSTATE
;
1282 ctrl0
&= ~CHV_PADCTRL0_GPIOTXSTATE
;
1284 chv_writel(ctrl0
, reg
);
1286 raw_spin_unlock_irqrestore(&chv_lock
, flags
);
1289 static int chv_gpio_get_direction(struct gpio_chip
*chip
, unsigned offset
)
1291 struct chv_pinctrl
*pctrl
= gpiochip_get_data(chip
);
1292 u32 ctrl0
, direction
;
1293 unsigned long flags
;
1295 raw_spin_lock_irqsave(&chv_lock
, flags
);
1296 ctrl0
= readl(chv_padreg(pctrl
, offset
, CHV_PADCTRL0
));
1297 raw_spin_unlock_irqrestore(&chv_lock
, flags
);
1299 direction
= ctrl0
& CHV_PADCTRL0_GPIOCFG_MASK
;
1300 direction
>>= CHV_PADCTRL0_GPIOCFG_SHIFT
;
1302 return direction
!= CHV_PADCTRL0_GPIOCFG_GPO
;
1305 static int chv_gpio_direction_input(struct gpio_chip
*chip
, unsigned offset
)
1307 return pinctrl_gpio_direction_input(chip
->base
+ offset
);
1310 static int chv_gpio_direction_output(struct gpio_chip
*chip
, unsigned offset
,
1313 chv_gpio_set(chip
, offset
, value
);
1314 return pinctrl_gpio_direction_output(chip
->base
+ offset
);
1317 static const struct gpio_chip chv_gpio_chip
= {
1318 .owner
= THIS_MODULE
,
1319 .request
= gpiochip_generic_request
,
1320 .free
= gpiochip_generic_free
,
1321 .get_direction
= chv_gpio_get_direction
,
1322 .direction_input
= chv_gpio_direction_input
,
1323 .direction_output
= chv_gpio_direction_output
,
1324 .get
= chv_gpio_get
,
1325 .set
= chv_gpio_set
,
1328 static void chv_gpio_irq_ack(struct irq_data
*d
)
1330 struct gpio_chip
*gc
= irq_data_get_irq_chip_data(d
);
1331 struct chv_pinctrl
*pctrl
= gpiochip_get_data(gc
);
1332 int pin
= irqd_to_hwirq(d
);
1335 raw_spin_lock(&chv_lock
);
1337 intr_line
= readl(chv_padreg(pctrl
, pin
, CHV_PADCTRL0
));
1338 intr_line
&= CHV_PADCTRL0_INTSEL_MASK
;
1339 intr_line
>>= CHV_PADCTRL0_INTSEL_SHIFT
;
1340 chv_writel(BIT(intr_line
), pctrl
->regs
+ CHV_INTSTAT
);
1342 raw_spin_unlock(&chv_lock
);
1345 static void chv_gpio_irq_mask_unmask(struct irq_data
*d
, bool mask
)
1347 struct gpio_chip
*gc
= irq_data_get_irq_chip_data(d
);
1348 struct chv_pinctrl
*pctrl
= gpiochip_get_data(gc
);
1349 int pin
= irqd_to_hwirq(d
);
1350 u32 value
, intr_line
;
1351 unsigned long flags
;
1353 raw_spin_lock_irqsave(&chv_lock
, flags
);
1355 intr_line
= readl(chv_padreg(pctrl
, pin
, CHV_PADCTRL0
));
1356 intr_line
&= CHV_PADCTRL0_INTSEL_MASK
;
1357 intr_line
>>= CHV_PADCTRL0_INTSEL_SHIFT
;
1359 value
= readl(pctrl
->regs
+ CHV_INTMASK
);
1361 value
&= ~BIT(intr_line
);
1363 value
|= BIT(intr_line
);
1364 chv_writel(value
, pctrl
->regs
+ CHV_INTMASK
);
1366 raw_spin_unlock_irqrestore(&chv_lock
, flags
);
1369 static void chv_gpio_irq_mask(struct irq_data
*d
)
1371 chv_gpio_irq_mask_unmask(d
, true);
1374 static void chv_gpio_irq_unmask(struct irq_data
*d
)
1376 chv_gpio_irq_mask_unmask(d
, false);
1379 static unsigned chv_gpio_irq_startup(struct irq_data
*d
)
1382 * Check if the interrupt has been requested with 0 as triggering
1383 * type. In that case it is assumed that the current values
1384 * programmed to the hardware are used (e.g BIOS configured
1387 * In that case ->irq_set_type() will never be called so we need to
1388 * read back the values from hardware now, set correct flow handler
1389 * and update mappings before the interrupt is being used.
1391 if (irqd_get_trigger_type(d
) == IRQ_TYPE_NONE
) {
1392 struct gpio_chip
*gc
= irq_data_get_irq_chip_data(d
);
1393 struct chv_pinctrl
*pctrl
= gpiochip_get_data(gc
);
1394 unsigned pin
= irqd_to_hwirq(d
);
1395 irq_flow_handler_t handler
;
1396 unsigned long flags
;
1399 raw_spin_lock_irqsave(&chv_lock
, flags
);
1400 intsel
= readl(chv_padreg(pctrl
, pin
, CHV_PADCTRL0
));
1401 intsel
&= CHV_PADCTRL0_INTSEL_MASK
;
1402 intsel
>>= CHV_PADCTRL0_INTSEL_SHIFT
;
1404 value
= readl(chv_padreg(pctrl
, pin
, CHV_PADCTRL1
));
1405 if (value
& CHV_PADCTRL1_INTWAKECFG_LEVEL
)
1406 handler
= handle_level_irq
;
1408 handler
= handle_edge_irq
;
1410 if (!pctrl
->intr_lines
[intsel
]) {
1411 irq_set_handler_locked(d
, handler
);
1412 pctrl
->intr_lines
[intsel
] = pin
;
1414 raw_spin_unlock_irqrestore(&chv_lock
, flags
);
1417 chv_gpio_irq_unmask(d
);
1421 static int chv_gpio_irq_type(struct irq_data
*d
, unsigned type
)
1423 struct gpio_chip
*gc
= irq_data_get_irq_chip_data(d
);
1424 struct chv_pinctrl
*pctrl
= gpiochip_get_data(gc
);
1425 unsigned pin
= irqd_to_hwirq(d
);
1426 unsigned long flags
;
1429 raw_spin_lock_irqsave(&chv_lock
, flags
);
1432 * Pins which can be used as shared interrupt are configured in
1433 * BIOS. Driver trusts BIOS configurations and assigns different
1434 * handler according to the irq type.
1436 * Driver needs to save the mapping between each pin and
1437 * its interrupt line.
1438 * 1. If the pin cfg is locked in BIOS:
1439 * Trust BIOS has programmed IntWakeCfg bits correctly,
1440 * driver just needs to save the mapping.
1441 * 2. If the pin cfg is not locked in BIOS:
1442 * Driver programs the IntWakeCfg bits and save the mapping.
1444 if (!chv_pad_locked(pctrl
, pin
)) {
1445 void __iomem
*reg
= chv_padreg(pctrl
, pin
, CHV_PADCTRL1
);
1448 value
&= ~CHV_PADCTRL1_INTWAKECFG_MASK
;
1449 value
&= ~CHV_PADCTRL1_INVRXTX_MASK
;
1451 if (type
& IRQ_TYPE_EDGE_BOTH
) {
1452 if ((type
& IRQ_TYPE_EDGE_BOTH
) == IRQ_TYPE_EDGE_BOTH
)
1453 value
|= CHV_PADCTRL1_INTWAKECFG_BOTH
;
1454 else if (type
& IRQ_TYPE_EDGE_RISING
)
1455 value
|= CHV_PADCTRL1_INTWAKECFG_RISING
;
1456 else if (type
& IRQ_TYPE_EDGE_FALLING
)
1457 value
|= CHV_PADCTRL1_INTWAKECFG_FALLING
;
1458 } else if (type
& IRQ_TYPE_LEVEL_MASK
) {
1459 value
|= CHV_PADCTRL1_INTWAKECFG_LEVEL
;
1460 if (type
& IRQ_TYPE_LEVEL_LOW
)
1461 value
|= CHV_PADCTRL1_INVRXTX_RXDATA
;
1464 chv_writel(value
, reg
);
1467 value
= readl(chv_padreg(pctrl
, pin
, CHV_PADCTRL0
));
1468 value
&= CHV_PADCTRL0_INTSEL_MASK
;
1469 value
>>= CHV_PADCTRL0_INTSEL_SHIFT
;
1471 pctrl
->intr_lines
[value
] = pin
;
1473 if (type
& IRQ_TYPE_EDGE_BOTH
)
1474 irq_set_handler_locked(d
, handle_edge_irq
);
1475 else if (type
& IRQ_TYPE_LEVEL_MASK
)
1476 irq_set_handler_locked(d
, handle_level_irq
);
1478 raw_spin_unlock_irqrestore(&chv_lock
, flags
);
1483 static struct irq_chip chv_gpio_irqchip
= {
1485 .irq_startup
= chv_gpio_irq_startup
,
1486 .irq_ack
= chv_gpio_irq_ack
,
1487 .irq_mask
= chv_gpio_irq_mask
,
1488 .irq_unmask
= chv_gpio_irq_unmask
,
1489 .irq_set_type
= chv_gpio_irq_type
,
1490 .flags
= IRQCHIP_SKIP_SET_WAKE
,
1493 static void chv_gpio_irq_handler(struct irq_desc
*desc
)
1495 struct gpio_chip
*gc
= irq_desc_get_handler_data(desc
);
1496 struct chv_pinctrl
*pctrl
= gpiochip_get_data(gc
);
1497 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
1498 unsigned long pending
;
1501 chained_irq_enter(chip
, desc
);
1503 pending
= readl(pctrl
->regs
+ CHV_INTSTAT
);
1504 for_each_set_bit(intr_line
, &pending
, pctrl
->community
->nirqs
) {
1505 unsigned irq
, offset
;
1507 offset
= pctrl
->intr_lines
[intr_line
];
1508 irq
= irq_find_mapping(gc
->irq
.domain
, offset
);
1509 generic_handle_irq(irq
);
1512 chained_irq_exit(chip
, desc
);
1516 * Certain machines seem to hardcode Linux IRQ numbers in their ACPI
1517 * tables. Since we leave GPIOs that are not capable of generating
1518 * interrupts out of the irqdomain the numbering will be different and
1519 * cause devices using the hardcoded IRQ numbers fail. In order not to
1520 * break such machines we will only mask pins from irqdomain if the machine
1521 * is not listed below.
1523 static const struct dmi_system_id chv_no_valid_mask
[] = {
1524 /* See https://bugzilla.kernel.org/show_bug.cgi?id=194945 */
1526 .ident
= "Intel_Strago based Chromebooks (All models)",
1528 DMI_MATCH(DMI_SYS_VENDOR
, "GOOGLE"),
1529 DMI_MATCH(DMI_PRODUCT_FAMILY
, "Intel_Strago"),
1533 .ident
= "HP Chromebook 11 G5 (Setzer)",
1535 DMI_MATCH(DMI_SYS_VENDOR
, "HP"),
1536 DMI_MATCH(DMI_PRODUCT_NAME
, "Setzer"),
1540 .ident
= "Acer Chromebook R11 (Cyan)",
1542 DMI_MATCH(DMI_SYS_VENDOR
, "GOOGLE"),
1543 DMI_MATCH(DMI_PRODUCT_NAME
, "Cyan"),
1547 .ident
= "Samsung Chromebook 3 (Celes)",
1549 DMI_MATCH(DMI_SYS_VENDOR
, "GOOGLE"),
1550 DMI_MATCH(DMI_PRODUCT_NAME
, "Celes"),
1556 static int chv_gpio_probe(struct chv_pinctrl
*pctrl
, int irq
)
1558 const struct chv_gpio_pinrange
*range
;
1559 struct gpio_chip
*chip
= &pctrl
->chip
;
1560 bool need_valid_mask
= !dmi_check_system(chv_no_valid_mask
);
1561 const struct chv_community
*community
= pctrl
->community
;
1562 int ret
, i
, irq_base
;
1564 *chip
= chv_gpio_chip
;
1566 chip
->ngpio
= community
->pins
[community
->npins
- 1].number
+ 1;
1567 chip
->label
= dev_name(pctrl
->dev
);
1568 chip
->parent
= pctrl
->dev
;
1570 chip
->irq
.need_valid_mask
= need_valid_mask
;
1572 ret
= devm_gpiochip_add_data(pctrl
->dev
, chip
, pctrl
);
1574 dev_err(pctrl
->dev
, "Failed to register gpiochip\n");
1578 for (i
= 0; i
< community
->ngpio_ranges
; i
++) {
1579 range
= &community
->gpio_ranges
[i
];
1580 ret
= gpiochip_add_pin_range(chip
, dev_name(pctrl
->dev
),
1581 range
->base
, range
->base
,
1584 dev_err(pctrl
->dev
, "failed to add GPIO pin range\n");
1589 /* Do not add GPIOs that can only generate GPEs to the IRQ domain */
1590 for (i
= 0; i
< community
->npins
; i
++) {
1591 const struct pinctrl_pin_desc
*desc
;
1594 desc
= &community
->pins
[i
];
1596 intsel
= readl(chv_padreg(pctrl
, desc
->number
, CHV_PADCTRL0
));
1597 intsel
&= CHV_PADCTRL0_INTSEL_MASK
;
1598 intsel
>>= CHV_PADCTRL0_INTSEL_SHIFT
;
1600 if (need_valid_mask
&& intsel
>= community
->nirqs
)
1601 clear_bit(i
, chip
->irq
.valid_mask
);
1605 * The same set of machines in chv_no_valid_mask[] have incorrectly
1606 * configured GPIOs that generate spurious interrupts so we use
1607 * this same list to apply another quirk for them.
1609 * See also https://bugzilla.kernel.org/show_bug.cgi?id=197953.
1611 if (!need_valid_mask
) {
1613 * Mask all interrupts the community is able to generate
1614 * but leave the ones that can only generate GPEs unmasked.
1616 chv_writel(GENMASK(31, pctrl
->community
->nirqs
),
1617 pctrl
->regs
+ CHV_INTMASK
);
1620 /* Clear all interrupts */
1621 chv_writel(0xffff, pctrl
->regs
+ CHV_INTSTAT
);
1623 if (!need_valid_mask
) {
1624 irq_base
= devm_irq_alloc_descs(pctrl
->dev
, -1, 0,
1625 chip
->ngpio
, NUMA_NO_NODE
);
1627 dev_err(pctrl
->dev
, "Failed to allocate IRQ numbers\n");
1634 ret
= gpiochip_irqchip_add(chip
, &chv_gpio_irqchip
, irq_base
,
1635 handle_bad_irq
, IRQ_TYPE_NONE
);
1637 dev_err(pctrl
->dev
, "failed to add IRQ chip\n");
1641 gpiochip_set_chained_irqchip(chip
, &chv_gpio_irqchip
, irq
,
1642 chv_gpio_irq_handler
);
1646 static acpi_status
chv_pinctrl_mmio_access_handler(u32 function
,
1647 acpi_physical_address address
, u32 bits
, u64
*value
,
1648 void *handler_context
, void *region_context
)
1650 struct chv_pinctrl
*pctrl
= region_context
;
1651 unsigned long flags
;
1652 acpi_status ret
= AE_OK
;
1654 raw_spin_lock_irqsave(&chv_lock
, flags
);
1656 if (function
== ACPI_WRITE
)
1657 chv_writel((u32
)(*value
), pctrl
->regs
+ (u32
)address
);
1658 else if (function
== ACPI_READ
)
1659 *value
= readl(pctrl
->regs
+ (u32
)address
);
1661 ret
= AE_BAD_PARAMETER
;
1663 raw_spin_unlock_irqrestore(&chv_lock
, flags
);
1668 static int chv_pinctrl_probe(struct platform_device
*pdev
)
1670 struct chv_pinctrl
*pctrl
;
1671 struct acpi_device
*adev
;
1672 struct resource
*res
;
1676 adev
= ACPI_COMPANION(&pdev
->dev
);
1680 pctrl
= devm_kzalloc(&pdev
->dev
, sizeof(*pctrl
), GFP_KERNEL
);
1684 for (i
= 0; i
< ARRAY_SIZE(chv_communities
); i
++)
1685 if (!strcmp(adev
->pnp
.unique_id
, chv_communities
[i
]->uid
)) {
1686 pctrl
->community
= chv_communities
[i
];
1689 if (i
== ARRAY_SIZE(chv_communities
))
1692 pctrl
->dev
= &pdev
->dev
;
1694 #ifdef CONFIG_PM_SLEEP
1695 pctrl
->saved_pin_context
= devm_kcalloc(pctrl
->dev
,
1696 pctrl
->community
->npins
, sizeof(*pctrl
->saved_pin_context
),
1698 if (!pctrl
->saved_pin_context
)
1702 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1703 pctrl
->regs
= devm_ioremap_resource(&pdev
->dev
, res
);
1704 if (IS_ERR(pctrl
->regs
))
1705 return PTR_ERR(pctrl
->regs
);
1707 irq
= platform_get_irq(pdev
, 0);
1709 dev_err(&pdev
->dev
, "failed to get interrupt number\n");
1713 pctrl
->pctldesc
= chv_pinctrl_desc
;
1714 pctrl
->pctldesc
.name
= dev_name(&pdev
->dev
);
1715 pctrl
->pctldesc
.pins
= pctrl
->community
->pins
;
1716 pctrl
->pctldesc
.npins
= pctrl
->community
->npins
;
1718 pctrl
->pctldev
= devm_pinctrl_register(&pdev
->dev
, &pctrl
->pctldesc
,
1720 if (IS_ERR(pctrl
->pctldev
)) {
1721 dev_err(&pdev
->dev
, "failed to register pinctrl driver\n");
1722 return PTR_ERR(pctrl
->pctldev
);
1725 ret
= chv_gpio_probe(pctrl
, irq
);
1729 status
= acpi_install_address_space_handler(adev
->handle
,
1730 pctrl
->community
->acpi_space_id
,
1731 chv_pinctrl_mmio_access_handler
,
1733 if (ACPI_FAILURE(status
))
1734 dev_err(&pdev
->dev
, "failed to install ACPI addr space handler\n");
1736 platform_set_drvdata(pdev
, pctrl
);
1741 static int chv_pinctrl_remove(struct platform_device
*pdev
)
1743 struct chv_pinctrl
*pctrl
= platform_get_drvdata(pdev
);
1745 acpi_remove_address_space_handler(ACPI_COMPANION(&pdev
->dev
),
1746 pctrl
->community
->acpi_space_id
,
1747 chv_pinctrl_mmio_access_handler
);
1752 #ifdef CONFIG_PM_SLEEP
1753 static int chv_pinctrl_suspend_noirq(struct device
*dev
)
1755 struct platform_device
*pdev
= to_platform_device(dev
);
1756 struct chv_pinctrl
*pctrl
= platform_get_drvdata(pdev
);
1757 unsigned long flags
;
1760 raw_spin_lock_irqsave(&chv_lock
, flags
);
1762 pctrl
->saved_intmask
= readl(pctrl
->regs
+ CHV_INTMASK
);
1764 for (i
= 0; i
< pctrl
->community
->npins
; i
++) {
1765 const struct pinctrl_pin_desc
*desc
;
1766 struct chv_pin_context
*ctx
;
1769 desc
= &pctrl
->community
->pins
[i
];
1770 if (chv_pad_locked(pctrl
, desc
->number
))
1773 ctx
= &pctrl
->saved_pin_context
[i
];
1775 reg
= chv_padreg(pctrl
, desc
->number
, CHV_PADCTRL0
);
1776 ctx
->padctrl0
= readl(reg
) & ~CHV_PADCTRL0_GPIORXSTATE
;
1778 reg
= chv_padreg(pctrl
, desc
->number
, CHV_PADCTRL1
);
1779 ctx
->padctrl1
= readl(reg
);
1782 raw_spin_unlock_irqrestore(&chv_lock
, flags
);
1787 static int chv_pinctrl_resume_noirq(struct device
*dev
)
1789 struct platform_device
*pdev
= to_platform_device(dev
);
1790 struct chv_pinctrl
*pctrl
= platform_get_drvdata(pdev
);
1791 unsigned long flags
;
1794 raw_spin_lock_irqsave(&chv_lock
, flags
);
1797 * Mask all interrupts before restoring per-pin configuration
1798 * registers because we don't know in which state BIOS left them
1799 * upon exiting suspend.
1801 chv_writel(0, pctrl
->regs
+ CHV_INTMASK
);
1803 for (i
= 0; i
< pctrl
->community
->npins
; i
++) {
1804 const struct pinctrl_pin_desc
*desc
;
1805 const struct chv_pin_context
*ctx
;
1809 desc
= &pctrl
->community
->pins
[i
];
1810 if (chv_pad_locked(pctrl
, desc
->number
))
1813 ctx
= &pctrl
->saved_pin_context
[i
];
1815 /* Only restore if our saved state differs from the current */
1816 reg
= chv_padreg(pctrl
, desc
->number
, CHV_PADCTRL0
);
1817 val
= readl(reg
) & ~CHV_PADCTRL0_GPIORXSTATE
;
1818 if (ctx
->padctrl0
!= val
) {
1819 chv_writel(ctx
->padctrl0
, reg
);
1820 dev_dbg(pctrl
->dev
, "restored pin %2u ctrl0 0x%08x\n",
1821 desc
->number
, readl(reg
));
1824 reg
= chv_padreg(pctrl
, desc
->number
, CHV_PADCTRL1
);
1826 if (ctx
->padctrl1
!= val
) {
1827 chv_writel(ctx
->padctrl1
, reg
);
1828 dev_dbg(pctrl
->dev
, "restored pin %2u ctrl1 0x%08x\n",
1829 desc
->number
, readl(reg
));
1834 * Now that all pins are restored to known state, we can restore
1835 * the interrupt mask register as well.
1837 chv_writel(0xffff, pctrl
->regs
+ CHV_INTSTAT
);
1838 chv_writel(pctrl
->saved_intmask
, pctrl
->regs
+ CHV_INTMASK
);
1840 raw_spin_unlock_irqrestore(&chv_lock
, flags
);
1846 static const struct dev_pm_ops chv_pinctrl_pm_ops
= {
1847 SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(chv_pinctrl_suspend_noirq
,
1848 chv_pinctrl_resume_noirq
)
1851 static const struct acpi_device_id chv_pinctrl_acpi_match
[] = {
1855 MODULE_DEVICE_TABLE(acpi
, chv_pinctrl_acpi_match
);
1857 static struct platform_driver chv_pinctrl_driver
= {
1858 .probe
= chv_pinctrl_probe
,
1859 .remove
= chv_pinctrl_remove
,
1861 .name
= "cherryview-pinctrl",
1862 .pm
= &chv_pinctrl_pm_ops
,
1863 .acpi_match_table
= chv_pinctrl_acpi_match
,
1867 static int __init
chv_pinctrl_init(void)
1869 return platform_driver_register(&chv_pinctrl_driver
);
1871 subsys_initcall(chv_pinctrl_init
);
1873 static void __exit
chv_pinctrl_exit(void)
1875 platform_driver_unregister(&chv_pinctrl_driver
);
1877 module_exit(chv_pinctrl_exit
);
1879 MODULE_AUTHOR("Mika Westerberg <mika.westerberg@linux.intel.com>");
1880 MODULE_DESCRIPTION("Intel Cherryview/Braswell pinctrl driver");
1881 MODULE_LICENSE("GPL v2");