blob: 44537be1f07040b3be5da12e4c83373cc7a0f3a7 [file] [log] [blame]
Jonathan Corbet7e0de022009-12-01 20:39:57 -07001/*
2 * Support for viafb GPIO ports.
3 *
4 * Copyright 2009 Jonathan Corbet <corbet@lwn.net>
5 * Distributable under version 2 of the GNU General Public License.
6 */
7
8#include <linux/spinlock.h>
9#include <linux/gpio.h>
Jonathan Corbet7582eb92010-04-22 17:39:34 -060010#include <linux/platform_device.h>
Jonathan Corbet7e0de022009-12-01 20:39:57 -070011#include "via-core.h"
12#include "via-gpio.h"
13#include "global.h"
14
15/*
16 * The ports we know about. Note that the port-25 gpios are not
17 * mentioned in the datasheet.
18 */
19
20struct viafb_gpio {
21 char *vg_name; /* Data sheet name */
22 u16 vg_io_port;
23 u8 vg_port_index;
24 int vg_mask_shift;
25};
26
27static struct viafb_gpio viafb_all_gpios[] = {
28 {
29 .vg_name = "VGPIO0", /* Guess - not in datasheet */
30 .vg_io_port = VIASR,
31 .vg_port_index = 0x25,
32 .vg_mask_shift = 1
33 },
34 {
35 .vg_name = "VGPIO1",
36 .vg_io_port = VIASR,
37 .vg_port_index = 0x25,
38 .vg_mask_shift = 0
39 },
40 {
41 .vg_name = "VGPIO2", /* aka DISPCLKI0 */
42 .vg_io_port = VIASR,
43 .vg_port_index = 0x2c,
44 .vg_mask_shift = 1
45 },
46 {
47 .vg_name = "VGPIO3", /* aka DISPCLKO0 */
48 .vg_io_port = VIASR,
49 .vg_port_index = 0x2c,
50 .vg_mask_shift = 0
51 },
52 {
53 .vg_name = "VGPIO4", /* DISPCLKI1 */
54 .vg_io_port = VIASR,
55 .vg_port_index = 0x3d,
56 .vg_mask_shift = 1
57 },
58 {
59 .vg_name = "VGPIO5", /* DISPCLKO1 */
60 .vg_io_port = VIASR,
61 .vg_port_index = 0x3d,
62 .vg_mask_shift = 0
63 },
64};
65
66#define VIAFB_NUM_GPIOS ARRAY_SIZE(viafb_all_gpios)
67
68/*
69 * This structure controls the active GPIOs, which may be a subset
70 * of those which are known.
71 */
72
73struct viafb_gpio_cfg {
74 struct gpio_chip gpio_chip;
75 struct viafb_dev *vdev;
76 struct viafb_gpio *active_gpios[VIAFB_NUM_GPIOS];
77 char *gpio_names[VIAFB_NUM_GPIOS];
78};
79
80/*
81 * GPIO access functions
82 */
83static void via_gpio_set(struct gpio_chip *chip, unsigned int nr,
84 int value)
85{
86 struct viafb_gpio_cfg *cfg = container_of(chip,
87 struct viafb_gpio_cfg,
88 gpio_chip);
89 u8 reg;
90 struct viafb_gpio *gpio;
91 unsigned long flags;
92
93 spin_lock_irqsave(&cfg->vdev->reg_lock, flags);
94 gpio = cfg->active_gpios[nr];
Jonathan Corbet75b035a2010-04-22 14:36:04 -060095 reg = via_read_reg(VIASR, gpio->vg_port_index);
Jonathan Corbet7e0de022009-12-01 20:39:57 -070096 reg |= 0x40 << gpio->vg_mask_shift; /* output enable */
97 if (value)
98 reg |= 0x10 << gpio->vg_mask_shift;
99 else
100 reg &= ~(0x10 << gpio->vg_mask_shift);
Jonathan Corbet75b035a2010-04-22 14:36:04 -0600101 via_write_reg(VIASR, gpio->vg_port_index, reg);
Jonathan Corbet7e0de022009-12-01 20:39:57 -0700102 spin_unlock_irqrestore(&cfg->vdev->reg_lock, flags);
103}
104
105static int via_gpio_dir_out(struct gpio_chip *chip, unsigned int nr,
106 int value)
107{
108 via_gpio_set(chip, nr, value);
109 return 0;
110}
111
112/*
113 * Set the input direction. I'm not sure this is right; we should
114 * be able to do input without disabling output.
115 */
116static int via_gpio_dir_input(struct gpio_chip *chip, unsigned int nr)
117{
118 struct viafb_gpio_cfg *cfg = container_of(chip,
119 struct viafb_gpio_cfg,
120 gpio_chip);
121 struct viafb_gpio *gpio;
122 unsigned long flags;
123
124 spin_lock_irqsave(&cfg->vdev->reg_lock, flags);
125 gpio = cfg->active_gpios[nr];
Jonathan Corbet75b035a2010-04-22 14:36:04 -0600126 via_write_reg_mask(VIASR, gpio->vg_port_index, 0,
127 0x40 << gpio->vg_mask_shift);
Jonathan Corbet7e0de022009-12-01 20:39:57 -0700128 spin_unlock_irqrestore(&cfg->vdev->reg_lock, flags);
129 return 0;
130}
131
132static int via_gpio_get(struct gpio_chip *chip, unsigned int nr)
133{
134 struct viafb_gpio_cfg *cfg = container_of(chip,
135 struct viafb_gpio_cfg,
136 gpio_chip);
137 u8 reg;
138 struct viafb_gpio *gpio;
139 unsigned long flags;
140
141 spin_lock_irqsave(&cfg->vdev->reg_lock, flags);
142 gpio = cfg->active_gpios[nr];
Jonathan Corbet75b035a2010-04-22 14:36:04 -0600143 reg = via_read_reg(VIASR, gpio->vg_port_index);
Jonathan Corbet7e0de022009-12-01 20:39:57 -0700144 spin_unlock_irqrestore(&cfg->vdev->reg_lock, flags);
145 return reg & (0x04 << gpio->vg_mask_shift);
146}
147
148
149static struct viafb_gpio_cfg gpio_config = {
150 .gpio_chip = {
151 .label = "VIAFB onboard GPIO",
152 .owner = THIS_MODULE,
153 .direction_output = via_gpio_dir_out,
154 .set = via_gpio_set,
155 .direction_input = via_gpio_dir_input,
156 .get = via_gpio_get,
157 .base = -1,
158 .ngpio = 0,
159 .can_sleep = 0
160 }
161};
162
163/*
164 * Manage the software enable bit.
165 */
166static void viafb_gpio_enable(struct viafb_gpio *gpio)
167{
Jonathan Corbet75b035a2010-04-22 14:36:04 -0600168 via_write_reg_mask(VIASR, gpio->vg_port_index, 0x02, 0x02);
Jonathan Corbet7e0de022009-12-01 20:39:57 -0700169}
170
171static void viafb_gpio_disable(struct viafb_gpio *gpio)
172{
Jonathan Corbet75b035a2010-04-22 14:36:04 -0600173 via_write_reg_mask(VIASR, gpio->vg_port_index, 0, 0x02);
Jonathan Corbet7e0de022009-12-01 20:39:57 -0700174}
175
Jonathan Corbet7582eb92010-04-22 17:39:34 -0600176/*
177 * Look up a specific gpio and return the number it was assigned.
178 */
179int viafb_gpio_lookup(const char *name)
Jonathan Corbet7e0de022009-12-01 20:39:57 -0700180{
Jonathan Corbet7582eb92010-04-22 17:39:34 -0600181 int i;
182
183 for (i = 0; i < gpio_config.gpio_chip.ngpio; i++)
184 if (!strcmp(name, gpio_config.active_gpios[i]->vg_name))
185 return gpio_config.gpio_chip.base + i;
186 return -1;
187}
188EXPORT_SYMBOL_GPL(viafb_gpio_lookup);
189
190/*
191 * Platform device stuff.
192 */
193static __devinit int viafb_gpio_probe(struct platform_device *platdev)
194{
195 struct viafb_dev *vdev = platdev->dev.platform_data;
196 struct via_port_cfg *port_cfg = vdev->port_cfg;
Jonathan Corbet7e0de022009-12-01 20:39:57 -0700197 int i, ngpio = 0, ret;
198 struct viafb_gpio *gpio;
199 unsigned long flags;
200
201 /*
202 * Set up entries for all GPIOs which have been configured to
203 * operate as such (as opposed to as i2c ports).
204 */
205 for (i = 0; i < VIAFB_NUM_PORTS; i++) {
206 if (port_cfg[i].mode != VIA_MODE_GPIO)
207 continue;
208 for (gpio = viafb_all_gpios;
209 gpio < viafb_all_gpios + VIAFB_NUM_GPIOS; gpio++)
210 if (gpio->vg_port_index == port_cfg[i].ioport_index) {
211 gpio_config.active_gpios[ngpio] = gpio;
212 gpio_config.gpio_names[ngpio] = gpio->vg_name;
213 ngpio++;
214 }
215 }
216 gpio_config.gpio_chip.ngpio = ngpio;
217 gpio_config.gpio_chip.names = gpio_config.gpio_names;
218 gpio_config.vdev = vdev;
219 if (ngpio == 0) {
220 printk(KERN_INFO "viafb: no GPIOs configured\n");
221 return 0;
222 }
223 /*
224 * Enable the ports. They come in pairs, with a single
225 * enable bit for both.
226 */
227 spin_lock_irqsave(&gpio_config.vdev->reg_lock, flags);
228 for (i = 0; i < ngpio; i += 2)
229 viafb_gpio_enable(gpio_config.active_gpios[i]);
230 spin_unlock_irqrestore(&gpio_config.vdev->reg_lock, flags);
231 /*
232 * Get registered.
233 */
234 gpio_config.gpio_chip.base = -1; /* Dynamic */
235 ret = gpiochip_add(&gpio_config.gpio_chip);
236 if (ret) {
237 printk(KERN_ERR "viafb: failed to add gpios (%d)\n", ret);
238 gpio_config.gpio_chip.ngpio = 0;
239 }
240 return ret;
Jonathan Corbet7e0de022009-12-01 20:39:57 -0700241}
242
243
Jonathan Corbet7582eb92010-04-22 17:39:34 -0600244static int viafb_gpio_remove(struct platform_device *platdev)
Jonathan Corbet7e0de022009-12-01 20:39:57 -0700245{
246 unsigned long flags;
247 int ret = 0, i;
248
249 spin_lock_irqsave(&gpio_config.vdev->reg_lock, flags);
250 /*
251 * Get unregistered.
252 */
253 if (gpio_config.gpio_chip.ngpio > 0) {
254 ret = gpiochip_remove(&gpio_config.gpio_chip);
255 if (ret) { /* Somebody still using it? */
256 printk(KERN_ERR "Viafb: GPIO remove failed\n");
257 goto out;
258 }
259 }
260 /*
261 * Disable the ports.
262 */
263 for (i = 0; i < gpio_config.gpio_chip.ngpio; i += 2)
264 viafb_gpio_disable(gpio_config.active_gpios[i]);
265 gpio_config.gpio_chip.ngpio = 0;
266out:
267 spin_unlock_irqrestore(&gpio_config.vdev->reg_lock, flags);
268 return ret;
269}
270
Jonathan Corbet7582eb92010-04-22 17:39:34 -0600271static struct platform_driver via_gpio_driver = {
272 .driver = {
273 .name = "viafb-gpio",
274 },
275 .probe = viafb_gpio_probe,
276 .remove = viafb_gpio_remove,
277};
Jonathan Corbet7e0de022009-12-01 20:39:57 -0700278
Jonathan Corbet7582eb92010-04-22 17:39:34 -0600279int viafb_gpio_init(void)
280{
281 return platform_driver_register(&via_gpio_driver);
Jonathan Corbet7e0de022009-12-01 20:39:57 -0700282}
Jonathan Corbet7582eb92010-04-22 17:39:34 -0600283
284void viafb_gpio_exit(void)
285{
286 platform_driver_unregister(&via_gpio_driver);
287}