2 * av7110_ca.c: CA and CI stuff
4 * Copyright (C) 1999-2002 Ralph Metzler
5 * & Marcus Metzler for convergence integrated media GmbH
7 * originally based on code by:
8 * Copyright (C) 1998,1999 Christian Theiss <mistert@rz.fh-augsburg.de>
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
28 * the project's page is at http://www.linuxtv.org/
31 #include <linux/kernel.h>
32 #include <linux/types.h>
33 #include <linux/delay.h>
35 #include <linux/timer.h>
36 #include <linux/poll.h>
37 #include <linux/gfp.h>
40 #include "av7110_hw.h"
41 #include "av7110_ca.h"
44 void CI_handle(struct av7110
*av7110
, u8
*data
, u16 len
)
46 dprintk(8, "av7110:%p\n",av7110
);
52 if (data
[2] != 1 && data
[2] != 2)
56 av7110
->ci_slot
[data
[2] - 1].flags
= 0;
59 av7110
->ci_slot
[data
[2] - 1].flags
|= CA_CI_MODULE_PRESENT
;
62 av7110
->ci_slot
[data
[2] - 1].flags
|= CA_CI_MODULE_READY
;
66 case CI_SWITCH_PRG_REPLY
:
67 //av7110->ci_stat=data[1];
75 void ci_get_data(struct dvb_ringbuffer
*cibuf
, u8
*data
, int len
)
77 if (dvb_ringbuffer_free(cibuf
) < len
+ 2)
80 DVB_RINGBUFFER_WRITE_BYTE(cibuf
, len
>> 8);
81 DVB_RINGBUFFER_WRITE_BYTE(cibuf
, len
& 0xff);
82 dvb_ringbuffer_write(cibuf
, data
, len
);
83 wake_up_interruptible(&cibuf
->queue
);
87 /******************************************************************************
88 * CI link layer file ops
89 ******************************************************************************/
91 static int ci_ll_init(struct dvb_ringbuffer
*cirbuf
, struct dvb_ringbuffer
*ciwbuf
, int size
)
93 struct dvb_ringbuffer
*tab
[] = { cirbuf
, ciwbuf
, NULL
}, **p
;
96 for (p
= tab
; *p
; p
++) {
105 dvb_ringbuffer_init(*p
, data
, size
);
110 static void ci_ll_flush(struct dvb_ringbuffer
*cirbuf
, struct dvb_ringbuffer
*ciwbuf
)
112 dvb_ringbuffer_flush_spinlock_wakeup(cirbuf
);
113 dvb_ringbuffer_flush_spinlock_wakeup(ciwbuf
);
116 static void ci_ll_release(struct dvb_ringbuffer
*cirbuf
, struct dvb_ringbuffer
*ciwbuf
)
124 static int ci_ll_reset(struct dvb_ringbuffer
*cibuf
, struct file
*file
,
125 int slots
, ca_slot_info_t
*slot
)
129 u8 msg
[8] = { 0x00, 0x06, 0x00, 0x00, 0xff, 0x02, 0x00, 0x00 };
131 for (i
= 0; i
< 2; i
++) {
132 if (slots
& (1 << i
))
136 if (dvb_ringbuffer_free(cibuf
) < len
)
139 for (i
= 0; i
< 2; i
++) {
140 if (slots
& (1 << i
)) {
142 dvb_ringbuffer_write(cibuf
, msg
, 8);
150 static ssize_t
ci_ll_write(struct dvb_ringbuffer
*cibuf
, struct file
*file
,
151 const char __user
*buf
, size_t count
, loff_t
*ppos
)
154 int non_blocking
= file
->f_flags
& O_NONBLOCK
;
155 u8
*page
= (u8
*)__get_free_page(GFP_USER
);
166 if (copy_from_user(page
, buf
, count
))
169 free
= dvb_ringbuffer_free(cibuf
);
170 if (count
+ 2 > free
) {
175 if (wait_event_interruptible(cibuf
->queue
,
176 (dvb_ringbuffer_free(cibuf
) >= count
+ 2)))
180 DVB_RINGBUFFER_WRITE_BYTE(cibuf
, count
>> 8);
181 DVB_RINGBUFFER_WRITE_BYTE(cibuf
, count
& 0xff);
183 res
= dvb_ringbuffer_write(cibuf
, page
, count
);
185 free_page((unsigned long)page
);
189 static ssize_t
ci_ll_read(struct dvb_ringbuffer
*cibuf
, struct file
*file
,
190 char __user
*buf
, size_t count
, loff_t
*ppos
)
193 int non_blocking
= file
->f_flags
& O_NONBLOCK
;
196 if (!cibuf
->data
|| !count
)
198 if (non_blocking
&& (dvb_ringbuffer_empty(cibuf
)))
200 if (wait_event_interruptible(cibuf
->queue
,
201 !dvb_ringbuffer_empty(cibuf
)))
203 avail
= dvb_ringbuffer_avail(cibuf
);
206 len
= DVB_RINGBUFFER_PEEK(cibuf
, 0) << 8;
207 len
|= DVB_RINGBUFFER_PEEK(cibuf
, 1);
208 if (avail
< len
+ 2 || count
< len
)
210 DVB_RINGBUFFER_SKIP(cibuf
, 2);
212 return dvb_ringbuffer_read_user(cibuf
, buf
, len
);
215 static int dvb_ca_open(struct inode
*inode
, struct file
*file
)
217 struct dvb_device
*dvbdev
= file
->private_data
;
218 struct av7110
*av7110
= dvbdev
->priv
;
219 int err
= dvb_generic_open(inode
, file
);
221 dprintk(8, "av7110:%p\n",av7110
);
225 ci_ll_flush(&av7110
->ci_rbuffer
, &av7110
->ci_wbuffer
);
229 static unsigned int dvb_ca_poll (struct file
*file
, poll_table
*wait
)
231 struct dvb_device
*dvbdev
= file
->private_data
;
232 struct av7110
*av7110
= dvbdev
->priv
;
233 struct dvb_ringbuffer
*rbuf
= &av7110
->ci_rbuffer
;
234 struct dvb_ringbuffer
*wbuf
= &av7110
->ci_wbuffer
;
235 unsigned int mask
= 0;
237 dprintk(8, "av7110:%p\n",av7110
);
239 poll_wait(file
, &rbuf
->queue
, wait
);
240 poll_wait(file
, &wbuf
->queue
, wait
);
242 if (!dvb_ringbuffer_empty(rbuf
))
243 mask
|= (POLLIN
| POLLRDNORM
);
245 if (dvb_ringbuffer_free(wbuf
) > 1024)
246 mask
|= (POLLOUT
| POLLWRNORM
);
251 static int dvb_ca_ioctl(struct file
*file
, unsigned int cmd
, void *parg
)
253 struct dvb_device
*dvbdev
= file
->private_data
;
254 struct av7110
*av7110
= dvbdev
->priv
;
255 unsigned long arg
= (unsigned long) parg
;
257 dprintk(8, "av7110:%p\n",av7110
);
261 return ci_ll_reset(&av7110
->ci_wbuffer
, file
, arg
, &av7110
->ci_slot
[0]);
268 cap
.slot_type
= (FW_CI_LL_SUPPORT(av7110
->arm_app
) ?
269 CA_CI_LINK
: CA_CI
) | CA_DESCR
;
271 cap
.descr_type
= CA_ECD
;
272 memcpy(parg
, &cap
, sizeof(cap
));
276 case CA_GET_SLOT_INFO
:
278 ca_slot_info_t
*info
=(ca_slot_info_t
*)parg
;
280 if (info
->num
< 0 || info
->num
> 1)
282 av7110
->ci_slot
[info
->num
].num
= info
->num
;
283 av7110
->ci_slot
[info
->num
].type
= FW_CI_LL_SUPPORT(av7110
->arm_app
) ?
285 memcpy(info
, &av7110
->ci_slot
[info
->num
], sizeof(ca_slot_info_t
));
295 case CA_GET_DESCR_INFO
:
297 ca_descr_info_t info
;
301 memcpy(parg
, &info
, sizeof (info
));
307 ca_descr_t
*descr
= (ca_descr_t
*) parg
;
309 if (descr
->index
>= 16)
311 if (descr
->parity
> 1)
313 av7110_fw_cmd(av7110
, COMTYPE_PIDFILTER
, SetDescr
, 5,
314 (descr
->index
<<8)|descr
->parity
,
315 (descr
->cw
[0]<<8)|descr
->cw
[1],
316 (descr
->cw
[2]<<8)|descr
->cw
[3],
317 (descr
->cw
[4]<<8)|descr
->cw
[5],
318 (descr
->cw
[6]<<8)|descr
->cw
[7]);
328 static ssize_t
dvb_ca_write(struct file
*file
, const char __user
*buf
,
329 size_t count
, loff_t
*ppos
)
331 struct dvb_device
*dvbdev
= file
->private_data
;
332 struct av7110
*av7110
= dvbdev
->priv
;
334 dprintk(8, "av7110:%p\n",av7110
);
335 return ci_ll_write(&av7110
->ci_wbuffer
, file
, buf
, count
, ppos
);
338 static ssize_t
dvb_ca_read(struct file
*file
, char __user
*buf
,
339 size_t count
, loff_t
*ppos
)
341 struct dvb_device
*dvbdev
= file
->private_data
;
342 struct av7110
*av7110
= dvbdev
->priv
;
344 dprintk(8, "av7110:%p\n",av7110
);
345 return ci_ll_read(&av7110
->ci_rbuffer
, file
, buf
, count
, ppos
);
348 static const struct file_operations dvb_ca_fops
= {
349 .owner
= THIS_MODULE
,
351 .write
= dvb_ca_write
,
352 .unlocked_ioctl
= dvb_generic_ioctl
,
354 .release
= dvb_generic_release
,
356 .llseek
= default_llseek
,
359 static struct dvb_device dvbdev_ca
= {
363 .fops
= &dvb_ca_fops
,
364 .kernel_ioctl
= dvb_ca_ioctl
,
368 int av7110_ca_register(struct av7110
*av7110
)
370 return dvb_register_device(&av7110
->dvb_adapter
, &av7110
->ca_dev
,
371 &dvbdev_ca
, av7110
, DVB_DEVICE_CA
);
374 void av7110_ca_unregister(struct av7110
*av7110
)
376 dvb_unregister_device(av7110
->ca_dev
);
379 int av7110_ca_init(struct av7110
* av7110
)
381 return ci_ll_init(&av7110
->ci_rbuffer
, &av7110
->ci_wbuffer
, 8192);
384 void av7110_ca_exit(struct av7110
* av7110
)
386 ci_ll_release(&av7110
->ci_rbuffer
, &av7110
->ci_wbuffer
);