blob: ba081f6f8c82c6818b93e11c50f4682c3e36bd43 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002
3 bttv-gpio.c -- gpio sub drivers
4
5 sysfs-based sub driver interface for bttv
6 mainly intented for gpio access
7
8
9 Copyright (C) 1996,97,98 Ralph Metzler (rjkm@thp.uni-koeln.de)
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -080010 & Marcus Metzler (mocm@thp.uni-koeln.de)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 (c) 1999-2003 Gerd Knorr <kraxel@bytesex.org>
12
13 This program is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2 of the License, or
16 (at your option) any later version.
17
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26
27*/
28
29#include <linux/module.h>
30#include <linux/init.h>
31#include <linux/delay.h>
32#include <linux/device.h>
33#include <asm/io.h>
34
35#include "bttvp.h"
36
37/* ----------------------------------------------------------------------- */
38/* internal: the bttv "bus" */
39
40static int bttv_sub_bus_match(struct device *dev, struct device_driver *drv)
41{
42 struct bttv_sub_driver *sub = to_bttv_sub_drv(drv);
43 int len = strlen(sub->wanted);
44
45 if (0 == strncmp(dev->bus_id, sub->wanted, len))
46 return 1;
47 return 0;
48}
49
Russell King348290a2006-01-06 11:42:03 +000050static int bttv_sub_probe(struct device *dev)
51{
52 struct bttv_sub_device *sdev = to_bttv_sub_dev(dev);
53 struct bttv_sub_driver *sub = to_bttv_sub_drv(dev->driver);
54
55 return sub->probe ? sub->probe(sdev) : -ENODEV;
56}
57
58static int bttv_sub_remove(struct device *dev)
59{
60 struct bttv_sub_device *sdev = to_bttv_sub_dev(dev);
61 struct bttv_sub_driver *sub = to_bttv_sub_drv(dev->driver);
62
63 if (sub->remove)
64 sub->remove(sdev);
65 return 0;
66}
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068struct bus_type bttv_sub_bus_type = {
Russell King348290a2006-01-06 11:42:03 +000069 .name = "bttv-sub",
70 .match = &bttv_sub_bus_match,
71 .probe = bttv_sub_probe,
72 .remove = bttv_sub_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -070073};
74EXPORT_SYMBOL(bttv_sub_bus_type);
75
76static void release_sub_device(struct device *dev)
77{
78 struct bttv_sub_device *sub = to_bttv_sub_dev(dev);
79 kfree(sub);
80}
81
82int bttv_sub_add_device(struct bttv_core *core, char *name)
83{
84 struct bttv_sub_device *sub;
85 int err;
86
Panagiotis Issaris74081872006-01-11 19:40:56 -020087 sub = kzalloc(sizeof(*sub),GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 if (NULL == sub)
89 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91 sub->core = core;
92 sub->dev.parent = &core->pci->dev;
93 sub->dev.bus = &bttv_sub_bus_type;
94 sub->dev.release = release_sub_device;
95 snprintf(sub->dev.bus_id,sizeof(sub->dev.bus_id),"%s%d",
96 name, core->nr);
97
98 err = device_register(&sub->dev);
99 if (0 != err) {
100 kfree(sub);
101 return err;
102 }
103 printk("bttv%d: add subdevice \"%s\"\n", core->nr, sub->dev.bus_id);
104 list_add_tail(&sub->list,&core->subs);
105 return 0;
106}
107
108int bttv_sub_del_devices(struct bttv_core *core)
109{
110 struct bttv_sub_device *sub;
111 struct list_head *item,*save;
112
113 list_for_each_safe(item,save,&core->subs) {
114 sub = list_entry(item,struct bttv_sub_device,list);
115 list_del(&sub->list);
116 device_unregister(&sub->dev);
117 }
118 return 0;
119}
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121/* ----------------------------------------------------------------------- */
122/* external: sub-driver register/unregister */
123
124int bttv_sub_register(struct bttv_sub_driver *sub, char *wanted)
125{
126 sub->drv.bus = &bttv_sub_bus_type;
127 snprintf(sub->wanted,sizeof(sub->wanted),"%s",wanted);
128 return driver_register(&sub->drv);
129}
130EXPORT_SYMBOL(bttv_sub_register);
131
132int bttv_sub_unregister(struct bttv_sub_driver *sub)
133{
134 driver_unregister(&sub->drv);
135 return 0;
136}
137EXPORT_SYMBOL(bttv_sub_unregister);
138
139/* ----------------------------------------------------------------------- */
140/* external: gpio access functions */
141
142void bttv_gpio_inout(struct bttv_core *core, u32 mask, u32 outbits)
143{
144 struct bttv *btv = container_of(core, struct bttv, c);
145 unsigned long flags;
146 u32 data;
147
148 spin_lock_irqsave(&btv->gpio_lock,flags);
149 data = btread(BT848_GPIO_OUT_EN);
150 data = data & ~mask;
151 data = data | (mask & outbits);
152 btwrite(data,BT848_GPIO_OUT_EN);
153 spin_unlock_irqrestore(&btv->gpio_lock,flags);
154}
155EXPORT_SYMBOL(bttv_gpio_inout);
156
157u32 bttv_gpio_read(struct bttv_core *core)
158{
159 struct bttv *btv = container_of(core, struct bttv, c);
160 u32 value;
161
162 value = btread(BT848_GPIO_DATA);
163 return value;
164}
165EXPORT_SYMBOL(bttv_gpio_read);
166
167void bttv_gpio_write(struct bttv_core *core, u32 value)
168{
169 struct bttv *btv = container_of(core, struct bttv, c);
170
171 btwrite(value,BT848_GPIO_DATA);
172}
173EXPORT_SYMBOL(bttv_gpio_write);
174
175void bttv_gpio_bits(struct bttv_core *core, u32 mask, u32 bits)
176{
177 struct bttv *btv = container_of(core, struct bttv, c);
178 unsigned long flags;
179 u32 data;
180
181 spin_lock_irqsave(&btv->gpio_lock,flags);
182 data = btread(BT848_GPIO_DATA);
183 data = data & ~mask;
184 data = data | (mask & bits);
185 btwrite(data,BT848_GPIO_DATA);
186 spin_unlock_irqrestore(&btv->gpio_lock,flags);
187}
188EXPORT_SYMBOL(bttv_gpio_bits);
189
190/*
191 * Local variables:
192 * c-basic-offset: 8
193 * End:
194 */