1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
|
Index: linux/drivers/media/video/bttv-cards.c
===================================================================
RCS file: /cvs/video4linux/v4l-dvb/linux/drivers/media/video/bttv-cards.c,v
retrieving revision 1.104
diff -u -r1.104 bttv-cards.c
--- linux/drivers/media/video/bttv-cards.c 4 Dec 2005 12:21:15 -0000 1.104
+++ linux/drivers/media/video/bttv-cards.c 8 Dec 2005 02:31:39 -0000
@@ -2163,7 +2163,6 @@
.has_remote = 1,
.gpiomask = 0x1b,
.no_gpioirq = 1,
- .any_irq = 1,
},
[BTTV_BOARD_PV143] = {
/* Jorge Boncompte - DTI2 <jorge@dti2.net> */
@@ -3445,8 +3444,6 @@
btv->has_remote=1;
if (!bttv_tvcards[btv->c.type].no_gpioirq)
btv->gpioirq=1;
- if (bttv_tvcards[btv->c.type].any_irq)
- btv->any_irq = 1;
if (bttv_tvcards[btv->c.type].audio_hook)
btv->audio_hook=bttv_tvcards[btv->c.type].audio_hook;
Index: linux/drivers/media/video/bttv-driver.c
===================================================================
RCS file: /cvs/video4linux/v4l-dvb/linux/drivers/media/video/bttv-driver.c,v
retrieving revision 1.79
diff -u -r1.79 bttv-driver.c
--- linux/drivers/media/video/bttv-driver.c 7 Dec 2005 15:29:32 -0000 1.79
+++ linux/drivers/media/video/bttv-driver.c 8 Dec 2005 02:31:47 -0000
@@ -3731,8 +3731,8 @@
btv=(struct bttv *)dev_id;
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
- if (btv->any_irq)
- handled = bttv_any_irq(&btv->c);
+ if (btv->custom_irq)
+ handled = btv->custom_irq(btv);
#endif
count=0;
@@ -3769,10 +3769,10 @@
if (astat&BT848_INT_VSYNC)
btv->field_count++;
- if (astat & BT848_INT_GPINT) {
+ if ((astat & BT848_INT_GPINT) && btv->remote) {
wake_up(&btv->gpioq);
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
- bttv_gpio_irq(&btv->c);
+ bttv_input_irq(btv);
#endif
}
@@ -4112,6 +4112,8 @@
bttv_sub_add_device(&btv->c, "dvb");
#endif
+ bttv_input_init(btv);
+
/* everything is fine */
bttv_num++;
return 0;
@@ -4146,8 +4148,9 @@
/* tell gpio modules we are leaving ... */
btv->shutdown=1;
wake_up(&btv->gpioq);
+ bttv_input_fini(btv);
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
- bttv_sub_del_devices(&btv->c);
+ //bttv_sub_del_devices(&btv->c);
#endif
/* unregister i2c_bus + input */
Index: linux/drivers/media/video/bttv-gpio.c
===================================================================
RCS file: /cvs/video4linux/v4l-dvb/linux/drivers/media/video/bttv-gpio.c,v
retrieving revision 1.9
diff -u -r1.9 bttv-gpio.c
--- linux/drivers/media/video/bttv-gpio.c 8 Nov 2005 18:02:29 -0000 1.9
+++ linux/drivers/media/video/bttv-gpio.c 8 Dec 2005 02:31:47 -0000
@@ -114,24 +114,6 @@
}
}
-int bttv_any_irq(struct bttv_core *core)
-{
- struct bttv_sub_driver *drv;
- struct bttv_sub_device *dev;
- struct list_head *item;
- int handled = 0;
-
- list_for_each(item,&core->subs) {
- dev = list_entry(item,struct bttv_sub_device,list);
- drv = to_bttv_sub_drv(dev->dev.driver);
- if (drv && drv->any_irq) {
- if (drv->any_irq(dev))
- handled = 1;
- }
- }
- return handled;
-}
-
/* ----------------------------------------------------------------------- */
/* external: sub-driver register/unregister */
Index: linux/drivers/media/video/bttv.h
===================================================================
RCS file: /cvs/video4linux/v4l-dvb/linux/drivers/media/video/bttv.h,v
retrieving revision 1.35
diff -u -r1.35 bttv.h
--- linux/drivers/media/video/bttv.h 25 Nov 2005 21:37:36 -0000 1.35
+++ linux/drivers/media/video/bttv.h 8 Dec 2005 02:31:49 -0000
@@ -18,6 +18,8 @@
#include "compat.h"
#include <linux/videodev.h>
#include <linux/i2c.h>
+#include <media/ir-common.h>
+#include <media/ir-kbd-i2c.h>
/* ---------------------------------------------------------- */
/* exported by bttv-cards.c */
@@ -213,6 +215,34 @@
struct bttv;
+
+struct bttv_ir {
+ struct input_dev *dev;
+ struct ir_input_state ir;
+ char name[32];
+ char phys[32];
+
+ /* Usual gpio signalling */
+
+ u32 mask_keycode;
+ u32 mask_keydown;
+ u32 mask_keyup;
+ u32 polling;
+ u32 last_gpio;
+ struct work_struct work;
+ struct timer_list timer;
+
+ /* RC5 gpio */
+ u32 rc5_gpio;
+ struct timer_list timer_end; /* timer_end for code completion */
+ struct timer_list timer_keyup; /* timer_end for key release */
+ u32 last_rc5; /* last good rc5 code */
+ u32 last_bit; /* last raw bit seen */
+ u32 code; /* raw code under construction */
+ struct timeval base_time; /* time of last seen code */
+ int active; /* building raw code */
+};
+
struct tvcard
{
char *name;
@@ -238,7 +268,6 @@
unsigned int has_dvb:1;
unsigned int has_remote:1;
unsigned int no_gpioirq:1;
- unsigned int any_irq:1;
/* other settings */
unsigned int pll;
@@ -345,7 +374,6 @@
struct device_driver drv;
char wanted[BUS_ID_SIZE];
void (*gpio_irq)(struct bttv_sub_device *sub);
- int (*any_irq)(struct bttv_sub_device *sub);
};
#define to_bttv_sub_drv(x) container_of((x), struct bttv_sub_driver, drv)
@@ -381,6 +409,10 @@
unsigned char b2, int both);
extern void bttv_readee(struct bttv *btv, unsigned char *eedata, int addr);
+extern int bttv_input_init(struct bttv *dev);
+extern void bttv_input_fini(struct bttv *dev);
+extern void bttv_input_irq(struct bttv *dev);
+
#endif /* _BTTV_H_ */
/*
* Local variables:
Index: linux/drivers/media/video/bttvp.h
===================================================================
RCS file: /cvs/video4linux/v4l-dvb/linux/drivers/media/video/bttvp.h,v
retrieving revision 1.28
diff -u -r1.28 bttvp.h
--- linux/drivers/media/video/bttvp.h 7 Dec 2005 11:18:39 -0000 1.28
+++ linux/drivers/media/video/bttvp.h 8 Dec 2005 02:31:55 -0000
@@ -218,7 +218,6 @@
int bttv_sub_add_device(struct bttv_core *core, char *name);
int bttv_sub_del_devices(struct bttv_core *core);
void bttv_gpio_irq(struct bttv_core *core);
-int bttv_any_irq(struct bttv_core *core);
#endif
@@ -288,7 +287,8 @@
struct bttv_pll_info pll;
int triton1;
int gpioirq;
- int any_irq;
+ int (*custom_irq)(struct bttv *btv);
+
int use_i2c_hw;
/* old gpio interface */
@@ -313,7 +313,7 @@
/* infrared remote */
int has_remote;
- struct bttv_input *remote;
+ struct bttv_ir *remote;
/* locking */
spinlock_t s_lock;
Index: v4l/Makefile
===================================================================
RCS file: /cvs/video4linux/v4l-dvb/v4l/Makefile,v
retrieving revision 1.117
diff -u -r1.117 Makefile
--- v4l/Makefile 7 Dec 2005 23:31:52 -0000 1.117
+++ v4l/Makefile 8 Dec 2005 02:32:00 -0000
@@ -16,7 +16,7 @@
# drivers objects
bttv-objs := bttv-driver.o bttv-cards.o bttv-risc.o bttv-if.o \
- bttv-vbi.o bttv-i2c.o
+ bttv-vbi.o bttv-i2c.o bttv-input.o
saa7134-objs := saa7134-core.o saa7134-i2c.o saa7134-video.o \
saa7134-vbi.o saa7134-tvaudio.o \
saa7134-cards.o saa7134-ts.o saa7134-input.o
@@ -127,7 +127,7 @@
ifeq ($(VERSION).$(PATCHLEVEL),2.6)
ifeq ($(CONFIG_VIDEO_BTTV),m)
bttv-objs += bttv-gpio.o
- obj-$(CONFIG_VIDEO_IR) += ir-kbd-gpio.o ir-kbd-i2c.o
+ obj-$(CONFIG_VIDEO_IR) += ir-kbd-i2c.o
endif
ifeq ($(CONFIG_VIDEO_SAA7134),m)
obj-$(CONFIG_VIDEO_IR) += ir-kbd-i2c.o
@@ -241,7 +241,7 @@
inst_video := btcx-risc.ko bttv.ko tda9887.ko tuner.ko tvaudio.ko tveeprom.ko saa6588.ko
inst_video += tvmixer.ko v4l1-compat.ko v4l2-common.ko wm8775.ko cs53l32a.ko
inst_video += video-buf.ko video-buf-dvb.ko
-inst_video += ir-kbd-gpio.ko ir-kbd-i2c.ko msp3400.ko
+inst_video += ir-kbd-i2c.ko msp3400.ko
inst_video += tvp5150.ko saa711x.ko saa7134-alsa.ko saa7134-oss.ko
inst_video += saa7115.ko cx25840.ko saa7127.ko compat_ioctl32.ko
inst_cx88 := cx8800.ko cx8802.ko cx88-alsa.ko
|