4 * Copyright (C) 2008, Volker Weiss <dev@tintuc.de>
5 * Copyright (C) 2007-2010 Florian Fainelli <florian@openwrt.org>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include <linux/module.h>
23 #include <linux/kernel.h>
24 #include <linux/init.h>
25 #include <linux/spinlock.h>
26 #include <linux/platform_device.h>
27 #include <linux/pci.h>
28 #include <linux/gpio.h>
29 #include <linux/mfd/rdc321x.h>
30 #include <linux/mfd/core.h>
31 #include <linux/slab.h>
35 struct pci_dev
*sb_pdev
;
41 struct gpio_chip chip
;
45 static int rdc_gpio_get_value(struct gpio_chip
*chip
, unsigned gpio
)
47 struct rdc321x_gpio
*gpch
;
51 gpch
= container_of(chip
, struct rdc321x_gpio
, chip
);
52 reg
= gpio
< 32 ? gpch
->reg1_data_base
: gpch
->reg2_data_base
;
54 spin_lock(&gpch
->lock
);
55 pci_write_config_dword(gpch
->sb_pdev
, reg
,
56 gpch
->data_reg
[gpio
< 32 ? 0 : 1]);
57 pci_read_config_dword(gpch
->sb_pdev
, reg
, &value
);
58 spin_unlock(&gpch
->lock
);
60 return (1 << (gpio
& 0x1f)) & value
? 1 : 0;
63 static void rdc_gpio_set_value_impl(struct gpio_chip
*chip
,
64 unsigned gpio
, int value
)
66 struct rdc321x_gpio
*gpch
;
67 int reg
= (gpio
< 32) ? 0 : 1;
69 gpch
= container_of(chip
, struct rdc321x_gpio
, chip
);
72 gpch
->data_reg
[reg
] |= 1 << (gpio
& 0x1f);
74 gpch
->data_reg
[reg
] &= ~(1 << (gpio
& 0x1f));
76 pci_write_config_dword(gpch
->sb_pdev
,
77 reg
? gpch
->reg2_data_base
: gpch
->reg1_data_base
,
81 /* set GPIO pin to value */
82 static void rdc_gpio_set_value(struct gpio_chip
*chip
,
83 unsigned gpio
, int value
)
85 struct rdc321x_gpio
*gpch
;
87 gpch
= container_of(chip
, struct rdc321x_gpio
, chip
);
88 spin_lock(&gpch
->lock
);
89 rdc_gpio_set_value_impl(chip
, gpio
, value
);
90 spin_unlock(&gpch
->lock
);
93 static int rdc_gpio_config(struct gpio_chip
*chip
,
94 unsigned gpio
, int value
)
96 struct rdc321x_gpio
*gpch
;
100 gpch
= container_of(chip
, struct rdc321x_gpio
, chip
);
102 spin_lock(&gpch
->lock
);
103 err
= pci_read_config_dword(gpch
->sb_pdev
, gpio
< 32 ?
104 gpch
->reg1_ctrl_base
: gpch
->reg2_ctrl_base
, ®
);
108 reg
|= 1 << (gpio
& 0x1f);
110 err
= pci_write_config_dword(gpch
->sb_pdev
, gpio
< 32 ?
111 gpch
->reg1_ctrl_base
: gpch
->reg2_ctrl_base
, reg
);
115 rdc_gpio_set_value_impl(chip
, gpio
, value
);
118 spin_unlock(&gpch
->lock
);
123 /* configure GPIO pin as input */
124 static int rdc_gpio_direction_input(struct gpio_chip
*chip
, unsigned gpio
)
126 return rdc_gpio_config(chip
, gpio
, 1);
130 * Cache the initial value of both GPIO data registers
132 static int __devinit
rdc321x_gpio_probe(struct platform_device
*pdev
)
136 struct rdc321x_gpio
*rdc321x_gpio_dev
;
137 struct rdc321x_gpio_pdata
*pdata
;
139 pdata
= mfd_get_data(pdev
);
141 dev_err(&pdev
->dev
, "no platform data supplied\n");
145 rdc321x_gpio_dev
= kzalloc(sizeof(struct rdc321x_gpio
), GFP_KERNEL
);
146 if (!rdc321x_gpio_dev
) {
147 dev_err(&pdev
->dev
, "failed to allocate private data\n");
151 r
= platform_get_resource_byname(pdev
, IORESOURCE_IO
, "gpio-reg1");
153 dev_err(&pdev
->dev
, "failed to get gpio-reg1 resource\n");
158 spin_lock_init(&rdc321x_gpio_dev
->lock
);
159 rdc321x_gpio_dev
->sb_pdev
= pdata
->sb_pdev
;
160 rdc321x_gpio_dev
->reg1_ctrl_base
= r
->start
;
161 rdc321x_gpio_dev
->reg1_data_base
= r
->start
+ 0x4;
163 r
= platform_get_resource_byname(pdev
, IORESOURCE_IO
, "gpio-reg2");
165 dev_err(&pdev
->dev
, "failed to get gpio-reg2 resource\n");
170 rdc321x_gpio_dev
->reg2_ctrl_base
= r
->start
;
171 rdc321x_gpio_dev
->reg2_data_base
= r
->start
+ 0x4;
173 rdc321x_gpio_dev
->chip
.label
= "rdc321x-gpio";
174 rdc321x_gpio_dev
->chip
.direction_input
= rdc_gpio_direction_input
;
175 rdc321x_gpio_dev
->chip
.direction_output
= rdc_gpio_config
;
176 rdc321x_gpio_dev
->chip
.get
= rdc_gpio_get_value
;
177 rdc321x_gpio_dev
->chip
.set
= rdc_gpio_set_value
;
178 rdc321x_gpio_dev
->chip
.base
= 0;
179 rdc321x_gpio_dev
->chip
.ngpio
= pdata
->max_gpios
;
181 platform_set_drvdata(pdev
, rdc321x_gpio_dev
);
183 /* This might not be, what others (BIOS, bootloader, etc.)
184 wrote to these registers before, but it's a good guess. Still
185 better than just using 0xffffffff. */
186 err
= pci_read_config_dword(rdc321x_gpio_dev
->sb_pdev
,
187 rdc321x_gpio_dev
->reg1_data_base
,
188 &rdc321x_gpio_dev
->data_reg
[0]);
192 err
= pci_read_config_dword(rdc321x_gpio_dev
->sb_pdev
,
193 rdc321x_gpio_dev
->reg2_data_base
,
194 &rdc321x_gpio_dev
->data_reg
[1]);
198 dev_info(&pdev
->dev
, "registering %d GPIOs\n",
199 rdc321x_gpio_dev
->chip
.ngpio
);
200 return gpiochip_add(&rdc321x_gpio_dev
->chip
);
203 platform_set_drvdata(pdev
, NULL
);
205 kfree(rdc321x_gpio_dev
);
209 static int __devexit
rdc321x_gpio_remove(struct platform_device
*pdev
)
212 struct rdc321x_gpio
*rdc321x_gpio_dev
= platform_get_drvdata(pdev
);
214 ret
= gpiochip_remove(&rdc321x_gpio_dev
->chip
);
216 dev_err(&pdev
->dev
, "failed to unregister chip\n");
218 kfree(rdc321x_gpio_dev
);
219 platform_set_drvdata(pdev
, NULL
);
224 static struct platform_driver rdc321x_gpio_driver
= {
225 .driver
.name
= "rdc321x-gpio",
226 .driver
.owner
= THIS_MODULE
,
227 .probe
= rdc321x_gpio_probe
,
228 .remove
= __devexit_p(rdc321x_gpio_remove
),
231 static int __init
rdc321x_gpio_init(void)
233 return platform_driver_register(&rdc321x_gpio_driver
);
236 static void __exit
rdc321x_gpio_exit(void)
238 platform_driver_unregister(&rdc321x_gpio_driver
);
241 module_init(rdc321x_gpio_init
);
242 module_exit(rdc321x_gpio_exit
);
244 MODULE_AUTHOR("Florian Fainelli <florian@openwrt.org>");
245 MODULE_DESCRIPTION("RDC321x GPIO driver");
246 MODULE_LICENSE("GPL");
247 MODULE_ALIAS("platform:rdc321x-gpio");