5 Copyright (C) 2008 Michael Buesch <mb@bu3sch.de>
7 Please do _only_ contact the people listed _above_ with issues related to this driver.
8 All the other people listed below are not related to this driver. Their names
9 are only here, because this driver is derived from the bt848 driver.
12 Derived from the bt848 driver:
14 Copyright (C) 1996,97,98 Ralph Metzler
16 (c) 1999-2002 Gerd Knorr
18 some v4l2 code lines are taken from Justin's bttv2 driver which is
19 (c) 2000 Justin Schoeman
22 (c) 2005-2006 Nickolay V. Shmyrev
24 Fixes to be fully V4L2 compliant by
25 (c) 2006 Mauro Carvalho Chehab
27 Cropping and overscan support
28 Copyright (C) 2005, 2006 Michael H. Schimek
29 Sponsored by OPQ Systems AB
31 This program is free software; you can redistribute it and/or modify
32 it under the terms of the GNU General Public License as published by
33 the Free Software Foundation; either version 2 of the License, or
34 (at your option) any later version.
36 This program is distributed in the hope that it will be useful,
37 but WITHOUT ANY WARRANTY; without even the implied warranty of
38 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
39 GNU General Public License for more details.
41 You should have received a copy of the GNU General Public License
42 along with this program; if not, write to the Free Software
43 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
46 #include <linux/module.h>
47 #include <linux/pci.h>
48 #include <linux/spinlock.h>
49 #include <linux/gpio.h>
51 /* Steal the hardware definitions from the bttv driver. */
52 #include "../media/video/bt8xx/bt848.h"
55 #define BT8XXGPIO_NR_GPIOS 24 /* We have 24 GPIO pins */
63 struct gpio_chip gpio
;
71 #define bgwrite(dat, adr) writel((dat), bg->mmio+(adr))
72 #define bgread(adr) readl(bg->mmio+(adr))
75 static int modparam_gpiobase
= -1/* dynamic */;
76 module_param_named(gpiobase
, modparam_gpiobase
, int, 0444);
77 MODULE_PARM_DESC(gpiobase
, "The GPIO number base. -1 means dynamic, which is the default.");
80 static int bt8xxgpio_gpio_direction_input(struct gpio_chip
*gpio
, unsigned nr
)
82 struct bt8xxgpio
*bg
= container_of(gpio
, struct bt8xxgpio
, gpio
);
86 spin_lock_irqsave(&bg
->lock
, flags
);
88 data
= bgread(BT848_GPIO_DATA
);
90 bgwrite(data
, BT848_GPIO_DATA
);
92 outen
= bgread(BT848_GPIO_OUT_EN
);
94 bgwrite(outen
, BT848_GPIO_OUT_EN
);
96 spin_unlock_irqrestore(&bg
->lock
, flags
);
101 static int bt8xxgpio_gpio_get(struct gpio_chip
*gpio
, unsigned nr
)
103 struct bt8xxgpio
*bg
= container_of(gpio
, struct bt8xxgpio
, gpio
);
107 spin_lock_irqsave(&bg
->lock
, flags
);
108 val
= bgread(BT848_GPIO_DATA
);
109 spin_unlock_irqrestore(&bg
->lock
, flags
);
111 return !!(val
& (1 << nr
));
114 static int bt8xxgpio_gpio_direction_output(struct gpio_chip
*gpio
,
115 unsigned nr
, int val
)
117 struct bt8xxgpio
*bg
= container_of(gpio
, struct bt8xxgpio
, gpio
);
121 spin_lock_irqsave(&bg
->lock
, flags
);
123 outen
= bgread(BT848_GPIO_OUT_EN
);
125 bgwrite(outen
, BT848_GPIO_OUT_EN
);
127 data
= bgread(BT848_GPIO_DATA
);
132 bgwrite(data
, BT848_GPIO_DATA
);
134 spin_unlock_irqrestore(&bg
->lock
, flags
);
139 static void bt8xxgpio_gpio_set(struct gpio_chip
*gpio
,
140 unsigned nr
, int val
)
142 struct bt8xxgpio
*bg
= container_of(gpio
, struct bt8xxgpio
, gpio
);
146 spin_lock_irqsave(&bg
->lock
, flags
);
148 data
= bgread(BT848_GPIO_DATA
);
153 bgwrite(data
, BT848_GPIO_DATA
);
155 spin_unlock_irqrestore(&bg
->lock
, flags
);
158 static void bt8xxgpio_gpio_setup(struct bt8xxgpio
*bg
)
160 struct gpio_chip
*c
= &bg
->gpio
;
162 c
->label
= dev_name(&bg
->pdev
->dev
);
163 c
->owner
= THIS_MODULE
;
164 c
->direction_input
= bt8xxgpio_gpio_direction_input
;
165 c
->get
= bt8xxgpio_gpio_get
;
166 c
->direction_output
= bt8xxgpio_gpio_direction_output
;
167 c
->set
= bt8xxgpio_gpio_set
;
169 c
->base
= modparam_gpiobase
;
170 c
->ngpio
= BT8XXGPIO_NR_GPIOS
;
174 static int bt8xxgpio_probe(struct pci_dev
*dev
,
175 const struct pci_device_id
*pci_id
)
177 struct bt8xxgpio
*bg
;
180 bg
= kzalloc(sizeof(*bg
), GFP_KERNEL
);
185 spin_lock_init(&bg
->lock
);
187 err
= pci_enable_device(dev
);
189 printk(KERN_ERR
"bt8xxgpio: Can't enable device.\n");
192 if (!request_mem_region(pci_resource_start(dev
, 0),
193 pci_resource_len(dev
, 0),
195 printk(KERN_WARNING
"bt8xxgpio: Can't request iomem (0x%llx).\n",
196 (unsigned long long)pci_resource_start(dev
, 0));
201 pci_set_drvdata(dev
, bg
);
203 bg
->mmio
= ioremap(pci_resource_start(dev
, 0), 0x1000);
205 printk(KERN_ERR
"bt8xxgpio: ioremap() failed\n");
207 goto err_release_mem
;
210 /* Disable interrupts */
211 bgwrite(0, BT848_INT_MASK
);
214 bgwrite(0, BT848_GPIO_DMA_CTL
);
215 bgwrite(0, BT848_GPIO_REG_INP
);
216 bgwrite(0, BT848_GPIO_OUT_EN
);
218 bt8xxgpio_gpio_setup(bg
);
219 err
= gpiochip_add(&bg
->gpio
);
221 printk(KERN_ERR
"bt8xxgpio: Failed to register GPIOs\n");
222 goto err_release_mem
;
225 printk(KERN_INFO
"bt8xxgpio: Abusing BT8xx card for GPIOs %d to %d\n",
226 bg
->gpio
.base
, bg
->gpio
.base
+ BT8XXGPIO_NR_GPIOS
- 1);
231 release_mem_region(pci_resource_start(dev
, 0),
232 pci_resource_len(dev
, 0));
233 pci_set_drvdata(dev
, NULL
);
235 pci_disable_device(dev
);
242 static void bt8xxgpio_remove(struct pci_dev
*pdev
)
244 struct bt8xxgpio
*bg
= pci_get_drvdata(pdev
);
246 gpiochip_remove(&bg
->gpio
);
248 bgwrite(0, BT848_INT_MASK
);
249 bgwrite(~0x0, BT848_INT_STAT
);
250 bgwrite(0x0, BT848_GPIO_OUT_EN
);
253 release_mem_region(pci_resource_start(pdev
, 0),
254 pci_resource_len(pdev
, 0));
255 pci_disable_device(pdev
);
257 pci_set_drvdata(pdev
, NULL
);
262 static int bt8xxgpio_suspend(struct pci_dev
*pdev
, pm_message_t state
)
264 struct bt8xxgpio
*bg
= pci_get_drvdata(pdev
);
267 spin_lock_irqsave(&bg
->lock
, flags
);
269 bg
->saved_outen
= bgread(BT848_GPIO_OUT_EN
);
270 bg
->saved_data
= bgread(BT848_GPIO_DATA
);
272 bgwrite(0, BT848_INT_MASK
);
273 bgwrite(~0x0, BT848_INT_STAT
);
274 bgwrite(0x0, BT848_GPIO_OUT_EN
);
276 spin_unlock_irqrestore(&bg
->lock
, flags
);
278 pci_save_state(pdev
);
279 pci_disable_device(pdev
);
280 pci_set_power_state(pdev
, pci_choose_state(pdev
, state
));
285 static int bt8xxgpio_resume(struct pci_dev
*pdev
)
287 struct bt8xxgpio
*bg
= pci_get_drvdata(pdev
);
291 pci_set_power_state(pdev
, 0);
292 err
= pci_enable_device(pdev
);
295 pci_restore_state(pdev
);
297 spin_lock_irqsave(&bg
->lock
, flags
);
299 bgwrite(0, BT848_INT_MASK
);
300 bgwrite(0, BT848_GPIO_DMA_CTL
);
301 bgwrite(0, BT848_GPIO_REG_INP
);
302 bgwrite(bg
->saved_outen
, BT848_GPIO_OUT_EN
);
303 bgwrite(bg
->saved_data
& bg
->saved_outen
,
306 spin_unlock_irqrestore(&bg
->lock
, flags
);
311 #define bt8xxgpio_suspend NULL
312 #define bt8xxgpio_resume NULL
313 #endif /* CONFIG_PM */
315 static struct pci_device_id bt8xxgpio_pci_tbl
[] = {
316 { PCI_DEVICE(PCI_VENDOR_ID_BROOKTREE
, PCI_DEVICE_ID_BT848
) },
317 { PCI_DEVICE(PCI_VENDOR_ID_BROOKTREE
, PCI_DEVICE_ID_BT849
) },
318 { PCI_DEVICE(PCI_VENDOR_ID_BROOKTREE
, PCI_DEVICE_ID_BT878
) },
319 { PCI_DEVICE(PCI_VENDOR_ID_BROOKTREE
, PCI_DEVICE_ID_BT879
) },
322 MODULE_DEVICE_TABLE(pci
, bt8xxgpio_pci_tbl
);
324 static struct pci_driver bt8xxgpio_pci_driver
= {
326 .id_table
= bt8xxgpio_pci_tbl
,
327 .probe
= bt8xxgpio_probe
,
328 .remove
= bt8xxgpio_remove
,
329 .suspend
= bt8xxgpio_suspend
,
330 .resume
= bt8xxgpio_resume
,
333 static int __init
bt8xxgpio_init(void)
335 return pci_register_driver(&bt8xxgpio_pci_driver
);
337 module_init(bt8xxgpio_init
)
339 static void __exit
bt8xxgpio_exit(void)
341 pci_unregister_driver(&bt8xxgpio_pci_driver
);
343 module_exit(bt8xxgpio_exit
)
345 MODULE_LICENSE("GPL");
346 MODULE_AUTHOR("Michael Buesch");
347 MODULE_DESCRIPTION("Abuse a BT8xx framegrabber card as generic GPIO card");