1 // SPDX-License-Identifier: GPL-2.0+
3 * Access to GPOs on TWL6040 chip
5 * Copyright (C) 2012 Texas Instruments, Inc.
8 * Sergio Aguirre <saaguirre@ti.com>
9 * Peter Ujfalusi <peter.ujfalusi@ti.com>
12 #include <linux/module.h>
13 #include <linux/init.h>
14 #include <linux/kthread.h>
15 #include <linux/irq.h>
16 #include <linux/gpio/driver.h>
17 #include <linux/platform_device.h>
18 #include <linux/bitops.h>
21 #include <linux/mfd/twl6040.h>
23 static int twl6040gpo_get(struct gpio_chip
*chip
, unsigned offset
)
25 struct twl6040
*twl6040
= dev_get_drvdata(chip
->parent
->parent
);
28 ret
= twl6040_reg_read(twl6040
, TWL6040_REG_GPOCTL
);
32 return !!(ret
& BIT(offset
));
35 static int twl6040gpo_get_direction(struct gpio_chip
*chip
, unsigned offset
)
37 /* This means "out" */
41 static int twl6040gpo_direction_out(struct gpio_chip
*chip
, unsigned offset
,
44 /* This only drives GPOs, and can't change direction */
48 static void twl6040gpo_set(struct gpio_chip
*chip
, unsigned offset
, int value
)
50 struct twl6040
*twl6040
= dev_get_drvdata(chip
->parent
->parent
);
54 ret
= twl6040_reg_read(twl6040
, TWL6040_REG_GPOCTL
);
59 gpoctl
= ret
| BIT(offset
);
61 gpoctl
= ret
& ~BIT(offset
);
63 twl6040_reg_write(twl6040
, TWL6040_REG_GPOCTL
, gpoctl
);
66 static struct gpio_chip twl6040gpo_chip
= {
69 .get
= twl6040gpo_get
,
70 .direction_output
= twl6040gpo_direction_out
,
71 .get_direction
= twl6040gpo_get_direction
,
72 .set
= twl6040gpo_set
,
76 /*----------------------------------------------------------------------*/
78 static int gpo_twl6040_probe(struct platform_device
*pdev
)
80 struct device
*twl6040_core_dev
= pdev
->dev
.parent
;
81 struct twl6040
*twl6040
= dev_get_drvdata(twl6040_core_dev
);
84 twl6040gpo_chip
.base
= -1;
86 if (twl6040_get_revid(twl6040
) < TWL6041_REV_ES2_0
)
87 twl6040gpo_chip
.ngpio
= 3; /* twl6040 have 3 GPO */
89 twl6040gpo_chip
.ngpio
= 1; /* twl6041 have 1 GPO */
91 twl6040gpo_chip
.parent
= &pdev
->dev
;
93 twl6040gpo_chip
.of_node
= twl6040_core_dev
->of_node
;
96 ret
= devm_gpiochip_add_data(&pdev
->dev
, &twl6040gpo_chip
, NULL
);
98 dev_err(&pdev
->dev
, "could not register gpiochip, %d\n", ret
);
99 twl6040gpo_chip
.ngpio
= 0;
105 /* Note: this hardware lives inside an I2C-based multi-function device. */
106 MODULE_ALIAS("platform:twl6040-gpo");
108 static struct platform_driver gpo_twl6040_driver
= {
110 .name
= "twl6040-gpo",
112 .probe
= gpo_twl6040_probe
,
115 module_platform_driver(gpo_twl6040_driver
);
117 MODULE_AUTHOR("Texas Instruments, Inc.");
118 MODULE_DESCRIPTION("GPO interface for TWL6040");
119 MODULE_LICENSE("GPL");