1 // SPDX-License-Identifier: GPL-2.0+
3 * GPIO interface for Winbond Super I/O chips
4 * Currently, only W83627UHG (Nuvoton NCT6627UD) is supported.
6 * Author: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
9 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11 #include <linux/gpio/driver.h>
12 #include <linux/ioport.h>
13 #include <linux/isa.h>
14 #include <linux/module.h>
16 #define WB_GPIO_DRIVER_NAME KBUILD_MODNAME
18 #define WB_SIO_BASE 0x2e
19 #define WB_SIO_BASE_HIGH 0x4e
21 #define WB_SIO_EXT_ENTER_KEY 0x87
22 #define WB_SIO_EXT_EXIT_KEY 0xaa
24 /* global chip registers */
26 #define WB_SIO_REG_LOGICAL 0x07
28 #define WB_SIO_REG_CHIP_MSB 0x20
29 #define WB_SIO_REG_CHIP_LSB 0x21
31 #define WB_SIO_CHIP_ID_W83627UHG 0xa230
32 #define WB_SIO_CHIP_ID_W83627UHG_MASK GENMASK(15, 4)
34 #define WB_SIO_REG_DPD 0x22
35 #define WB_SIO_REG_DPD_UARTA 4
36 #define WB_SIO_REG_DPD_UARTB 5
38 #define WB_SIO_REG_IDPD 0x23
39 #define WB_SIO_REG_IDPD_UARTC 4
40 #define WB_SIO_REG_IDPD_UARTD 5
41 #define WB_SIO_REG_IDPD_UARTE 6
42 #define WB_SIO_REG_IDPD_UARTF 7
44 #define WB_SIO_REG_GLOBAL_OPT 0x24
45 #define WB_SIO_REG_GO_ENFDC 1
47 #define WB_SIO_REG_OVTGPIO3456 0x29
48 #define WB_SIO_REG_OG3456_G3PP 3
49 #define WB_SIO_REG_OG3456_G4PP 4
50 #define WB_SIO_REG_OG3456_G5PP 5
51 #define WB_SIO_REG_OG3456_G6PP 7
53 #define WB_SIO_REG_I2C_PS 0x2a
54 #define WB_SIO_REG_I2CPS_I2CFS 1
56 #define WB_SIO_REG_GPIO1_MF 0x2c
57 #define WB_SIO_REG_G1MF_G1PP 6
58 #define WB_SIO_REG_G1MF_G2PP 7
59 #define WB_SIO_REG_G1MF_FS_MASK GENMASK(1, 0)
60 #define WB_SIO_REG_G1MF_FS_IR_OFF 0
61 #define WB_SIO_REG_G1MF_FS_IR 1
62 #define WB_SIO_REG_G1MF_FS_GPIO1 2
63 #define WB_SIO_REG_G1MF_FS_UARTB 3
65 /* not an actual device number, just a value meaning 'no device' */
66 #define WB_SIO_DEV_NONE 0xff
68 /* registers with offsets >= 0x30 are specific for a particular device */
70 /* UART B logical device */
71 #define WB_SIO_DEV_UARTB 0x03
72 #define WB_SIO_UARTB_REG_ENABLE 0x30
73 #define WB_SIO_UARTB_ENABLE_ON 0
75 /* UART C logical device */
76 #define WB_SIO_DEV_UARTC 0x06
77 #define WB_SIO_UARTC_REG_ENABLE 0x30
78 #define WB_SIO_UARTC_ENABLE_ON 0
80 /* GPIO3, GPIO4 logical device */
81 #define WB_SIO_DEV_GPIO34 0x07
82 #define WB_SIO_GPIO34_REG_ENABLE 0x30
83 #define WB_SIO_GPIO34_ENABLE_3 0
84 #define WB_SIO_GPIO34_ENABLE_4 1
85 #define WB_SIO_GPIO34_REG_IO3 0xe0
86 #define WB_SIO_GPIO34_REG_DATA3 0xe1
87 #define WB_SIO_GPIO34_REG_INV3 0xe2
88 #define WB_SIO_GPIO34_REG_IO4 0xe4
89 #define WB_SIO_GPIO34_REG_DATA4 0xe5
90 #define WB_SIO_GPIO34_REG_INV4 0xe6
92 /* WDTO, PLED, GPIO5, GPIO6 logical device */
93 #define WB_SIO_DEV_WDGPIO56 0x08
94 #define WB_SIO_WDGPIO56_REG_ENABLE 0x30
95 #define WB_SIO_WDGPIO56_ENABLE_5 1
96 #define WB_SIO_WDGPIO56_ENABLE_6 2
97 #define WB_SIO_WDGPIO56_REG_IO5 0xe0
98 #define WB_SIO_WDGPIO56_REG_DATA5 0xe1
99 #define WB_SIO_WDGPIO56_REG_INV5 0xe2
100 #define WB_SIO_WDGPIO56_REG_IO6 0xe4
101 #define WB_SIO_WDGPIO56_REG_DATA6 0xe5
102 #define WB_SIO_WDGPIO56_REG_INV6 0xe6
104 /* GPIO1, GPIO2, SUSLED logical device */
105 #define WB_SIO_DEV_GPIO12 0x09
106 #define WB_SIO_GPIO12_REG_ENABLE 0x30
107 #define WB_SIO_GPIO12_ENABLE_1 0
108 #define WB_SIO_GPIO12_ENABLE_2 1
109 #define WB_SIO_GPIO12_REG_IO1 0xe0
110 #define WB_SIO_GPIO12_REG_DATA1 0xe1
111 #define WB_SIO_GPIO12_REG_INV1 0xe2
112 #define WB_SIO_GPIO12_REG_IO2 0xe4
113 #define WB_SIO_GPIO12_REG_DATA2 0xe5
114 #define WB_SIO_GPIO12_REG_INV2 0xe6
116 /* UART D logical device */
117 #define WB_SIO_DEV_UARTD 0x0d
118 #define WB_SIO_UARTD_REG_ENABLE 0x30
119 #define WB_SIO_UARTD_ENABLE_ON 0
121 /* UART E logical device */
122 #define WB_SIO_DEV_UARTE 0x0e
123 #define WB_SIO_UARTE_REG_ENABLE 0x30
124 #define WB_SIO_UARTE_ENABLE_ON 0
127 * for a description what a particular field of this struct means please see
128 * a description of the relevant module parameter at the bottom of this file
130 struct winbond_gpio_params
{
133 unsigned long ppgpios
;
134 unsigned long odgpios
;
140 static struct winbond_gpio_params params
;
142 static int winbond_sio_enter(unsigned long base
)
144 if (!request_muxed_region(base
, 2, WB_GPIO_DRIVER_NAME
))
148 * datasheet says two successive writes of the "key" value are needed
149 * in order for chip to enter the "Extended Function Mode"
151 outb(WB_SIO_EXT_ENTER_KEY
, base
);
152 outb(WB_SIO_EXT_ENTER_KEY
, base
);
157 static void winbond_sio_select_logical(unsigned long base
, u8 dev
)
159 outb(WB_SIO_REG_LOGICAL
, base
);
163 static void winbond_sio_leave(unsigned long base
)
165 outb(WB_SIO_EXT_EXIT_KEY
, base
);
167 release_region(base
, 2);
170 static void winbond_sio_reg_write(unsigned long base
, u8 reg
, u8 data
)
173 outb(data
, base
+ 1);
176 static u8
winbond_sio_reg_read(unsigned long base
, u8 reg
)
179 return inb(base
+ 1);
182 static void winbond_sio_reg_bset(unsigned long base
, u8 reg
, u8 bit
)
186 val
= winbond_sio_reg_read(base
, reg
);
188 winbond_sio_reg_write(base
, reg
, val
);
191 static void winbond_sio_reg_bclear(unsigned long base
, u8 reg
, u8 bit
)
195 val
= winbond_sio_reg_read(base
, reg
);
197 winbond_sio_reg_write(base
, reg
, val
);
200 static bool winbond_sio_reg_btest(unsigned long base
, u8 reg
, u8 bit
)
202 return winbond_sio_reg_read(base
, reg
) & BIT(bit
);
206 * struct winbond_gpio_port_conflict - possibly conflicting device information
207 * @name: device name (NULL means no conflicting device defined)
208 * @dev: Super I/O logical device number where the testreg register
209 * is located (or WB_SIO_DEV_NONE - don't select any
211 * @testreg: register number where the testbit bit is located
212 * @testbit: index of a bit to check whether an actual conflict exists
213 * @warnonly: if set then a conflict isn't fatal (just warn about it),
214 * otherwise disable the particular GPIO port if a conflict
217 struct winbond_gpio_port_conflict
{
226 * struct winbond_gpio_info - information about a particular GPIO port (device)
227 * @dev: Super I/O logical device number of the registers
229 * @enablereg: port enable bit register number
230 * @enablebit: index of a port enable bit
231 * @outputreg: output driver mode bit register number
232 * @outputppbit: index of a push-pull output driver mode bit
233 * @ioreg: data direction register number
234 * @invreg: pin data inversion register number
235 * @datareg: pin data register number
236 * @conflict: description of a device that possibly conflicts with
239 struct winbond_gpio_info
{
248 struct winbond_gpio_port_conflict conflict
;
251 static const struct winbond_gpio_info winbond_gpio_infos
[6] = {
253 .dev
= WB_SIO_DEV_GPIO12
,
254 .enablereg
= WB_SIO_GPIO12_REG_ENABLE
,
255 .enablebit
= WB_SIO_GPIO12_ENABLE_1
,
256 .outputreg
= WB_SIO_REG_GPIO1_MF
,
257 .outputppbit
= WB_SIO_REG_G1MF_G1PP
,
258 .ioreg
= WB_SIO_GPIO12_REG_IO1
,
259 .invreg
= WB_SIO_GPIO12_REG_INV1
,
260 .datareg
= WB_SIO_GPIO12_REG_DATA1
,
263 .dev
= WB_SIO_DEV_UARTB
,
264 .testreg
= WB_SIO_UARTB_REG_ENABLE
,
265 .testbit
= WB_SIO_UARTB_ENABLE_ON
,
270 .dev
= WB_SIO_DEV_GPIO12
,
271 .enablereg
= WB_SIO_GPIO12_REG_ENABLE
,
272 .enablebit
= WB_SIO_GPIO12_ENABLE_2
,
273 .outputreg
= WB_SIO_REG_GPIO1_MF
,
274 .outputppbit
= WB_SIO_REG_G1MF_G2PP
,
275 .ioreg
= WB_SIO_GPIO12_REG_IO2
,
276 .invreg
= WB_SIO_GPIO12_REG_INV2
,
277 .datareg
= WB_SIO_GPIO12_REG_DATA2
278 /* special conflict handling so doesn't use conflict data */
281 .dev
= WB_SIO_DEV_GPIO34
,
282 .enablereg
= WB_SIO_GPIO34_REG_ENABLE
,
283 .enablebit
= WB_SIO_GPIO34_ENABLE_3
,
284 .outputreg
= WB_SIO_REG_OVTGPIO3456
,
285 .outputppbit
= WB_SIO_REG_OG3456_G3PP
,
286 .ioreg
= WB_SIO_GPIO34_REG_IO3
,
287 .invreg
= WB_SIO_GPIO34_REG_INV3
,
288 .datareg
= WB_SIO_GPIO34_REG_DATA3
,
291 .dev
= WB_SIO_DEV_UARTC
,
292 .testreg
= WB_SIO_UARTC_REG_ENABLE
,
293 .testbit
= WB_SIO_UARTC_ENABLE_ON
,
298 .dev
= WB_SIO_DEV_GPIO34
,
299 .enablereg
= WB_SIO_GPIO34_REG_ENABLE
,
300 .enablebit
= WB_SIO_GPIO34_ENABLE_4
,
301 .outputreg
= WB_SIO_REG_OVTGPIO3456
,
302 .outputppbit
= WB_SIO_REG_OG3456_G4PP
,
303 .ioreg
= WB_SIO_GPIO34_REG_IO4
,
304 .invreg
= WB_SIO_GPIO34_REG_INV4
,
305 .datareg
= WB_SIO_GPIO34_REG_DATA4
,
308 .dev
= WB_SIO_DEV_UARTD
,
309 .testreg
= WB_SIO_UARTD_REG_ENABLE
,
310 .testbit
= WB_SIO_UARTD_ENABLE_ON
,
315 .dev
= WB_SIO_DEV_WDGPIO56
,
316 .enablereg
= WB_SIO_WDGPIO56_REG_ENABLE
,
317 .enablebit
= WB_SIO_WDGPIO56_ENABLE_5
,
318 .outputreg
= WB_SIO_REG_OVTGPIO3456
,
319 .outputppbit
= WB_SIO_REG_OG3456_G5PP
,
320 .ioreg
= WB_SIO_WDGPIO56_REG_IO5
,
321 .invreg
= WB_SIO_WDGPIO56_REG_INV5
,
322 .datareg
= WB_SIO_WDGPIO56_REG_DATA5
,
325 .dev
= WB_SIO_DEV_UARTE
,
326 .testreg
= WB_SIO_UARTE_REG_ENABLE
,
327 .testbit
= WB_SIO_UARTE_ENABLE_ON
,
332 .dev
= WB_SIO_DEV_WDGPIO56
,
333 .enablereg
= WB_SIO_WDGPIO56_REG_ENABLE
,
334 .enablebit
= WB_SIO_WDGPIO56_ENABLE_6
,
335 .outputreg
= WB_SIO_REG_OVTGPIO3456
,
336 .outputppbit
= WB_SIO_REG_OG3456_G6PP
,
337 .ioreg
= WB_SIO_WDGPIO56_REG_IO6
,
338 .invreg
= WB_SIO_WDGPIO56_REG_INV6
,
339 .datareg
= WB_SIO_WDGPIO56_REG_DATA6
,
342 .dev
= WB_SIO_DEV_NONE
,
343 .testreg
= WB_SIO_REG_GLOBAL_OPT
,
344 .testbit
= WB_SIO_REG_GO_ENFDC
,
350 /* returns whether changing a pin is allowed */
351 static bool winbond_gpio_get_info(unsigned int *gpio_num
,
352 const struct winbond_gpio_info
**info
)
354 bool allow_changing
= true;
357 for_each_set_bit(i
, ¶ms
.gpios
, BITS_PER_LONG
) {
364 *info
= &winbond_gpio_infos
[i
];
367 * GPIO2 (the second port) shares some pins with a basic PC
368 * functionality, which is very likely controlled by the firmware.
369 * Don't allow changing these pins by default.
372 if (*gpio_num
== 0 && !params
.pledgpio
)
373 allow_changing
= false;
374 else if (*gpio_num
== 1 && !params
.beepgpio
)
375 allow_changing
= false;
376 else if ((*gpio_num
== 5 || *gpio_num
== 6) && !params
.i2cgpio
)
377 allow_changing
= false;
380 return allow_changing
;
383 static int winbond_gpio_get(struct gpio_chip
*gc
, unsigned int offset
)
385 unsigned long *base
= gpiochip_get_data(gc
);
386 const struct winbond_gpio_info
*info
;
389 winbond_gpio_get_info(&offset
, &info
);
391 val
= winbond_sio_enter(*base
);
395 winbond_sio_select_logical(*base
, info
->dev
);
397 val
= winbond_sio_reg_btest(*base
, info
->datareg
, offset
);
398 if (winbond_sio_reg_btest(*base
, info
->invreg
, offset
))
401 winbond_sio_leave(*base
);
406 static int winbond_gpio_direction_in(struct gpio_chip
*gc
, unsigned int offset
)
408 unsigned long *base
= gpiochip_get_data(gc
);
409 const struct winbond_gpio_info
*info
;
412 if (!winbond_gpio_get_info(&offset
, &info
))
415 ret
= winbond_sio_enter(*base
);
419 winbond_sio_select_logical(*base
, info
->dev
);
421 winbond_sio_reg_bset(*base
, info
->ioreg
, offset
);
423 winbond_sio_leave(*base
);
428 static int winbond_gpio_direction_out(struct gpio_chip
*gc
,
432 unsigned long *base
= gpiochip_get_data(gc
);
433 const struct winbond_gpio_info
*info
;
436 if (!winbond_gpio_get_info(&offset
, &info
))
439 ret
= winbond_sio_enter(*base
);
443 winbond_sio_select_logical(*base
, info
->dev
);
445 winbond_sio_reg_bclear(*base
, info
->ioreg
, offset
);
447 if (winbond_sio_reg_btest(*base
, info
->invreg
, offset
))
451 winbond_sio_reg_bset(*base
, info
->datareg
, offset
);
453 winbond_sio_reg_bclear(*base
, info
->datareg
, offset
);
455 winbond_sio_leave(*base
);
460 static void winbond_gpio_set(struct gpio_chip
*gc
, unsigned int offset
,
463 unsigned long *base
= gpiochip_get_data(gc
);
464 const struct winbond_gpio_info
*info
;
466 if (!winbond_gpio_get_info(&offset
, &info
))
469 if (winbond_sio_enter(*base
) != 0)
472 winbond_sio_select_logical(*base
, info
->dev
);
474 if (winbond_sio_reg_btest(*base
, info
->invreg
, offset
))
478 winbond_sio_reg_bset(*base
, info
->datareg
, offset
);
480 winbond_sio_reg_bclear(*base
, info
->datareg
, offset
);
482 winbond_sio_leave(*base
);
485 static struct gpio_chip winbond_gpio_chip
= {
487 .label
= WB_GPIO_DRIVER_NAME
,
488 .owner
= THIS_MODULE
,
490 .get
= winbond_gpio_get
,
491 .direction_input
= winbond_gpio_direction_in
,
492 .set
= winbond_gpio_set
,
493 .direction_output
= winbond_gpio_direction_out
,
496 static void winbond_gpio_configure_port0_pins(unsigned long base
)
500 val
= winbond_sio_reg_read(base
, WB_SIO_REG_GPIO1_MF
);
501 if ((val
& WB_SIO_REG_G1MF_FS_MASK
) == WB_SIO_REG_G1MF_FS_GPIO1
)
504 pr_warn("GPIO1 pins were connected to something else (%.2x), fixing\n",
507 val
&= ~WB_SIO_REG_G1MF_FS_MASK
;
508 val
|= WB_SIO_REG_G1MF_FS_GPIO1
;
510 winbond_sio_reg_write(base
, WB_SIO_REG_GPIO1_MF
, val
);
513 static void winbond_gpio_configure_port1_check_i2c(unsigned long base
)
515 params
.i2cgpio
= !winbond_sio_reg_btest(base
, WB_SIO_REG_I2C_PS
,
516 WB_SIO_REG_I2CPS_I2CFS
);
518 pr_warn("disabling GPIO2.5 and GPIO2.6 as I2C is enabled\n");
521 static bool winbond_gpio_configure_port(unsigned long base
, unsigned int idx
)
523 const struct winbond_gpio_info
*info
= &winbond_gpio_infos
[idx
];
524 const struct winbond_gpio_port_conflict
*conflict
= &info
->conflict
;
526 /* is there a possible conflicting device defined? */
527 if (conflict
->name
!= NULL
) {
528 if (conflict
->dev
!= WB_SIO_DEV_NONE
)
529 winbond_sio_select_logical(base
, conflict
->dev
);
531 if (winbond_sio_reg_btest(base
, conflict
->testreg
,
532 conflict
->testbit
)) {
533 if (conflict
->warnonly
)
534 pr_warn("enabled GPIO%u share pins with active %s\n",
535 idx
+ 1, conflict
->name
);
537 pr_warn("disabling GPIO%u as %s is enabled\n",
538 idx
+ 1, conflict
->name
);
544 /* GPIO1 and GPIO2 need some (additional) special handling */
546 winbond_gpio_configure_port0_pins(base
);
548 winbond_gpio_configure_port1_check_i2c(base
);
550 winbond_sio_select_logical(base
, info
->dev
);
552 winbond_sio_reg_bset(base
, info
->enablereg
, info
->enablebit
);
554 if (params
.ppgpios
& BIT(idx
))
555 winbond_sio_reg_bset(base
, info
->outputreg
,
557 else if (params
.odgpios
& BIT(idx
))
558 winbond_sio_reg_bclear(base
, info
->outputreg
,
561 pr_notice("GPIO%u pins are %s\n", idx
+ 1,
562 winbond_sio_reg_btest(base
, info
->outputreg
,
570 static int winbond_gpio_configure(unsigned long base
)
574 for_each_set_bit(i
, ¶ms
.gpios
, BITS_PER_LONG
)
575 if (!winbond_gpio_configure_port(base
, i
))
576 __clear_bit(i
, ¶ms
.gpios
);
579 pr_err("please use 'gpios' module parameter to select some active GPIO ports to enable\n");
586 static int winbond_gpio_check_chip(unsigned long base
)
591 ret
= winbond_sio_enter(base
);
595 chip
= winbond_sio_reg_read(base
, WB_SIO_REG_CHIP_MSB
) << 8;
596 chip
|= winbond_sio_reg_read(base
, WB_SIO_REG_CHIP_LSB
);
598 pr_notice("chip ID at %lx is %.4x\n", base
, chip
);
600 if ((chip
& WB_SIO_CHIP_ID_W83627UHG_MASK
) !=
601 WB_SIO_CHIP_ID_W83627UHG
) {
602 pr_err("not an our chip\n");
606 winbond_sio_leave(base
);
611 static int winbond_gpio_imatch(struct device
*dev
, unsigned int id
)
613 unsigned long gpios_rem
;
616 gpios_rem
= params
.gpios
& ~GENMASK(ARRAY_SIZE(winbond_gpio_infos
) - 1,
619 pr_warn("unknown ports (%lx) enabled in GPIO ports bitmask\n",
621 params
.gpios
&= ~gpios_rem
;
624 if (params
.ppgpios
& params
.odgpios
) {
625 pr_err("some GPIO ports are set both to push-pull and open drain mode at the same time\n");
629 if (params
.base
!= 0)
630 return winbond_gpio_check_chip(params
.base
) == 0;
633 * if the 'base' module parameter is unset probe two chip default
636 params
.base
= WB_SIO_BASE
;
637 ret
= winbond_gpio_check_chip(params
.base
);
640 if (ret
!= -ENODEV
&& ret
!= -EBUSY
)
643 params
.base
= WB_SIO_BASE_HIGH
;
644 return winbond_gpio_check_chip(params
.base
) == 0;
647 static int winbond_gpio_iprobe(struct device
*dev
, unsigned int id
)
651 if (params
.base
== 0)
654 ret
= winbond_sio_enter(params
.base
);
658 ret
= winbond_gpio_configure(params
.base
);
660 winbond_sio_leave(params
.base
);
666 * Add 8 gpios for every GPIO port that was enabled in gpios
667 * module parameter (that wasn't disabled earlier in
668 * winbond_gpio_configure() & co. due to, for example, a pin conflict).
670 winbond_gpio_chip
.ngpio
= hweight_long(params
.gpios
) * 8;
673 * GPIO6 port has only 5 pins, so if it is enabled we have to adjust
674 * the total count appropriately
676 if (params
.gpios
& BIT(5))
677 winbond_gpio_chip
.ngpio
-= (8 - 5);
679 winbond_gpio_chip
.parent
= dev
;
681 return devm_gpiochip_add_data(dev
, &winbond_gpio_chip
, ¶ms
.base
);
684 static struct isa_driver winbond_gpio_idriver
= {
686 .name
= WB_GPIO_DRIVER_NAME
,
688 .match
= winbond_gpio_imatch
,
689 .probe
= winbond_gpio_iprobe
,
692 module_isa_driver(winbond_gpio_idriver
, 1);
694 module_param_named(base
, params
.base
, ulong
, 0444);
695 MODULE_PARM_DESC(base
,
696 "I/O port base (when unset - probe chip default ones)");
698 /* This parameter sets which GPIO devices (ports) we enable */
699 module_param_named(gpios
, params
.gpios
, ulong
, 0444);
700 MODULE_PARM_DESC(gpios
,
701 "bitmask of GPIO ports to enable (bit 0 - GPIO1, bit 1 - GPIO2, etc.");
704 * These two parameters below set how we configure GPIO ports output drivers.
705 * It can't be a one bitmask since we need three values per port: push-pull,
706 * open-drain and keep as-is (this is the default).
708 module_param_named(ppgpios
, params
.ppgpios
, ulong
, 0444);
709 MODULE_PARM_DESC(ppgpios
,
710 "bitmask of GPIO ports to set to push-pull mode (bit 0 - GPIO1, bit 1 - GPIO2, etc.");
712 module_param_named(odgpios
, params
.odgpios
, ulong
, 0444);
713 MODULE_PARM_DESC(odgpios
,
714 "bitmask of GPIO ports to set to open drain mode (bit 0 - GPIO1, bit 1 - GPIO2, etc.");
717 * GPIO2.0 and GPIO2.1 control a basic PC functionality that we
718 * don't allow tinkering with by default (it is very likely that the
719 * firmware owns these pins).
720 * These two parameters below allow overriding these prohibitions.
722 module_param_named(pledgpio
, params
.pledgpio
, bool, 0644);
723 MODULE_PARM_DESC(pledgpio
,
724 "enable changing value of GPIO2.0 bit (Power LED), default no.");
726 module_param_named(beepgpio
, params
.beepgpio
, bool, 0644);
727 MODULE_PARM_DESC(beepgpio
,
728 "enable changing value of GPIO2.1 bit (BEEP), default no.");
730 MODULE_AUTHOR("Maciej S. Szmigiero <mail@maciej.szmigiero.name>");
731 MODULE_DESCRIPTION("GPIO interface for Winbond Super I/O chips");
732 MODULE_LICENSE("GPL");