2 * Copyright (C) 2010 OKI SEMICONDUCTOR Co., LTD.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
17 #include <linux/kernel.h>
18 #include <linux/slab.h>
19 #include <linux/pci.h>
20 #include <linux/gpio.h>
21 #include <linux/module.h>
23 #define PCI_VENDOR_ID_ROHM 0x10DB
41 struct ioh_reg_comn regs
[8];
49 * struct ioh_gpio_reg_data - The register store data.
50 * @po_reg: To store contents of PO register.
51 * @pm_reg: To store contents of PM register.
53 struct ioh_gpio_reg_data
{
59 * struct ioh_gpio - GPIO private data structure.
60 * @base: PCI base address of Memory mapped I/O register.
61 * @reg: Memory mapped IOH GPIO register list.
62 * @dev: Pointer to device structure.
63 * @gpio: Data for GPIO infrastructure.
64 * @ioh_gpio_reg: Memory mapped Register data is saved here
66 * @ch: Indicate GPIO channel
70 struct ioh_regs __iomem
*reg
;
72 struct gpio_chip gpio
;
73 struct ioh_gpio_reg_data ioh_gpio_reg
;
78 static const int num_ports
[] = {6, 12, 16, 16, 15, 16, 16, 12};
80 static void ioh_gpio_set(struct gpio_chip
*gpio
, unsigned nr
, int val
)
83 struct ioh_gpio
*chip
= container_of(gpio
, struct ioh_gpio
, gpio
);
85 mutex_lock(&chip
->lock
);
86 reg_val
= ioread32(&chip
->reg
->regs
[chip
->ch
].po
);
90 reg_val
&= ~(1 << nr
);
92 iowrite32(reg_val
, &chip
->reg
->regs
[chip
->ch
].po
);
93 mutex_unlock(&chip
->lock
);
96 static int ioh_gpio_get(struct gpio_chip
*gpio
, unsigned nr
)
98 struct ioh_gpio
*chip
= container_of(gpio
, struct ioh_gpio
, gpio
);
100 return ioread32(&chip
->reg
->regs
[chip
->ch
].pi
) & (1 << nr
);
103 static int ioh_gpio_direction_output(struct gpio_chip
*gpio
, unsigned nr
,
106 struct ioh_gpio
*chip
= container_of(gpio
, struct ioh_gpio
, gpio
);
110 mutex_lock(&chip
->lock
);
111 pm
= ioread32(&chip
->reg
->regs
[chip
->ch
].pm
) &
112 ((1 << num_ports
[chip
->ch
]) - 1);
114 iowrite32(pm
, &chip
->reg
->regs
[chip
->ch
].pm
);
116 reg_val
= ioread32(&chip
->reg
->regs
[chip
->ch
].po
);
118 reg_val
|= (1 << nr
);
120 reg_val
&= ~(1 << nr
);
121 iowrite32(reg_val
, &chip
->reg
->regs
[chip
->ch
].po
);
123 mutex_unlock(&chip
->lock
);
128 static int ioh_gpio_direction_input(struct gpio_chip
*gpio
, unsigned nr
)
130 struct ioh_gpio
*chip
= container_of(gpio
, struct ioh_gpio
, gpio
);
133 mutex_lock(&chip
->lock
);
134 pm
= ioread32(&chip
->reg
->regs
[chip
->ch
].pm
) &
135 ((1 << num_ports
[chip
->ch
]) - 1);
137 iowrite32(pm
, &chip
->reg
->regs
[chip
->ch
].pm
);
138 mutex_unlock(&chip
->lock
);
145 * Save register configuration and disable interrupts.
147 static void ioh_gpio_save_reg_conf(struct ioh_gpio
*chip
)
149 chip
->ioh_gpio_reg
.po_reg
= ioread32(&chip
->reg
->regs
[chip
->ch
].po
);
150 chip
->ioh_gpio_reg
.pm_reg
= ioread32(&chip
->reg
->regs
[chip
->ch
].pm
);
154 * This function restores the register configuration of the GPIO device.
156 static void ioh_gpio_restore_reg_conf(struct ioh_gpio
*chip
)
158 /* to store contents of PO register */
159 iowrite32(chip
->ioh_gpio_reg
.po_reg
, &chip
->reg
->regs
[chip
->ch
].po
);
160 /* to store contents of PM register */
161 iowrite32(chip
->ioh_gpio_reg
.pm_reg
, &chip
->reg
->regs
[chip
->ch
].pm
);
165 static void ioh_gpio_setup(struct ioh_gpio
*chip
, int num_port
)
167 struct gpio_chip
*gpio
= &chip
->gpio
;
169 gpio
->label
= dev_name(chip
->dev
);
170 gpio
->owner
= THIS_MODULE
;
171 gpio
->direction_input
= ioh_gpio_direction_input
;
172 gpio
->get
= ioh_gpio_get
;
173 gpio
->direction_output
= ioh_gpio_direction_output
;
174 gpio
->set
= ioh_gpio_set
;
175 gpio
->dbg_show
= NULL
;
177 gpio
->ngpio
= num_port
;
181 static int __devinit
ioh_gpio_probe(struct pci_dev
*pdev
,
182 const struct pci_device_id
*id
)
186 struct ioh_gpio
*chip
;
188 void __iomem
*chip_save
;
190 ret
= pci_enable_device(pdev
);
192 dev_err(&pdev
->dev
, "%s : pci_enable_device failed", __func__
);
196 ret
= pci_request_regions(pdev
, KBUILD_MODNAME
);
198 dev_err(&pdev
->dev
, "pci_request_regions failed-%d", ret
);
199 goto err_request_regions
;
202 base
= pci_iomap(pdev
, 1, 0);
204 dev_err(&pdev
->dev
, "%s : pci_iomap failed", __func__
);
209 chip_save
= kzalloc(sizeof(*chip
) * 8, GFP_KERNEL
);
210 if (chip_save
== NULL
) {
211 dev_err(&pdev
->dev
, "%s : kzalloc failed", __func__
);
217 for (i
= 0; i
< 8; i
++, chip
++) {
218 chip
->dev
= &pdev
->dev
;
220 chip
->reg
= chip
->base
;
222 mutex_init(&chip
->lock
);
223 ioh_gpio_setup(chip
, num_ports
[i
]);
224 ret
= gpiochip_add(&chip
->gpio
);
226 dev_err(&pdev
->dev
, "IOH gpio: Failed to register GPIO\n");
227 goto err_gpiochip_add
;
232 pci_set_drvdata(pdev
, chip
);
239 ret
= gpiochip_remove(&chip
->gpio
);
241 dev_err(&pdev
->dev
, "Failed gpiochip_remove(%d)\n", i
);
246 pci_iounmap(pdev
, base
);
249 pci_release_regions(pdev
);
252 pci_disable_device(pdev
);
256 dev_err(&pdev
->dev
, "%s Failed returns %d\n", __func__
, ret
);
260 static void __devexit
ioh_gpio_remove(struct pci_dev
*pdev
)
264 struct ioh_gpio
*chip
= pci_get_drvdata(pdev
);
265 void __iomem
*chip_save
;
268 for (i
= 0; i
< 8; i
++, chip
++) {
269 err
= gpiochip_remove(&chip
->gpio
);
271 dev_err(&pdev
->dev
, "Failed gpiochip_remove\n");
275 pci_iounmap(pdev
, chip
->base
);
276 pci_release_regions(pdev
);
277 pci_disable_device(pdev
);
282 static int ioh_gpio_suspend(struct pci_dev
*pdev
, pm_message_t state
)
285 struct ioh_gpio
*chip
= pci_get_drvdata(pdev
);
287 ioh_gpio_save_reg_conf(chip
);
288 ioh_gpio_restore_reg_conf(chip
);
290 ret
= pci_save_state(pdev
);
292 dev_err(&pdev
->dev
, "pci_save_state Failed-%d\n", ret
);
295 pci_disable_device(pdev
);
296 pci_set_power_state(pdev
, PCI_D0
);
297 ret
= pci_enable_wake(pdev
, PCI_D0
, 1);
299 dev_err(&pdev
->dev
, "pci_enable_wake Failed -%d\n", ret
);
304 static int ioh_gpio_resume(struct pci_dev
*pdev
)
307 struct ioh_gpio
*chip
= pci_get_drvdata(pdev
);
309 ret
= pci_enable_wake(pdev
, PCI_D0
, 0);
311 pci_set_power_state(pdev
, PCI_D0
);
312 ret
= pci_enable_device(pdev
);
314 dev_err(&pdev
->dev
, "pci_enable_device Failed-%d ", ret
);
317 pci_restore_state(pdev
);
319 iowrite32(0x01, &chip
->reg
->srst
);
320 iowrite32(0x00, &chip
->reg
->srst
);
321 ioh_gpio_restore_reg_conf(chip
);
326 #define ioh_gpio_suspend NULL
327 #define ioh_gpio_resume NULL
330 static DEFINE_PCI_DEVICE_TABLE(ioh_gpio_pcidev_id
) = {
331 { PCI_DEVICE(PCI_VENDOR_ID_ROHM
, 0x802E) },
334 MODULE_DEVICE_TABLE(pci
, ioh_gpio_pcidev_id
);
336 static struct pci_driver ioh_gpio_driver
= {
337 .name
= "ml_ioh_gpio",
338 .id_table
= ioh_gpio_pcidev_id
,
339 .probe
= ioh_gpio_probe
,
340 .remove
= __devexit_p(ioh_gpio_remove
),
341 .suspend
= ioh_gpio_suspend
,
342 .resume
= ioh_gpio_resume
345 static int __init
ioh_gpio_pci_init(void)
347 return pci_register_driver(&ioh_gpio_driver
);
349 module_init(ioh_gpio_pci_init
);
351 static void __exit
ioh_gpio_pci_exit(void)
353 pci_unregister_driver(&ioh_gpio_driver
);
355 module_exit(ioh_gpio_pci_exit
);
357 MODULE_DESCRIPTION("OKI SEMICONDUCTOR ML-IOH series GPIO Driver");
358 MODULE_LICENSE("GPL");