4 * CI driver in conjunction with NetUp Dual DVB-T/C RF CI card
6 * Copyright (C) 2010,2011 NetUP Inc.
7 * Copyright (C) 2010,2011 Igor M. Liplianin <liplianin@netup.ru>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 * currently cx23885 GPIO's used.
29 * GPIO-2 ~reset chips out
30 * GPIO-3 to GPIO-10 data/addr for CA in/out
41 * Bit definitions for MC417_RWD and MC417_OEN registers
46 * bit 15 bit 14 bit 13 bit 12 bit 11 bit 10 bit 9 bit 8
47 * +-------+-------+-------+-------+-------+-------+-------+-------+
48 * | TDI | TDO | TCK | RDY# | #RD | #WR | AD_RG | #CS |
49 * +-------+-------+-------+-------+-------+-------+-------+-------+
50 * bit 7 bit 6 bit 5 bit 4 bit 3 bit 2 bit 1 bit 0
51 * +-------+-------+-------+-------+-------+-------+-------+-------+
52 * | DATA7| DATA6| DATA5| DATA4| DATA3| DATA2| DATA1| DATA0|
53 * +-------+-------+-------+-------+-------+-------+-------+-------+
55 #include <media/videobuf-dma-sg.h>
56 #include <media/videobuf-dvb.h>
57 #include "altera-ci.h"
58 #include "dvb_ca_en50221.h"
61 #define NETUP_CI_INT_CTRL 0x00
62 #define NETUP_CI_BUSCTRL2 0x01
63 #define NETUP_CI_ADDR0 0x04
64 #define NETUP_CI_ADDR1 0x05
65 #define NETUP_CI_DATA 0x06
66 #define NETUP_CI_BUSCTRL 0x07
67 #define NETUP_CI_PID_ADDR0 0x08
68 #define NETUP_CI_PID_ADDR1 0x09
69 #define NETUP_CI_PID_DATA 0x0a
70 #define NETUP_CI_TSA_DIV 0x0c
71 #define NETUP_CI_TSB_DIV 0x0d
72 #define NETUP_CI_REVISION 0x0f
75 #define NETUP_CI_FLG_CTL 1
76 #define NETUP_CI_FLG_RD 1
77 #define NETUP_CI_FLG_AD 1
79 static unsigned int ci_dbg
;
80 module_param(ci_dbg
, int, 0644);
81 MODULE_PARM_DESC(ci_dbg
, "Enable CI debugging");
83 static unsigned int pid_dbg
;
84 module_param(pid_dbg
, int, 0644);
85 MODULE_PARM_DESC(pid_dbg
, "Enable PID filtering debugging");
87 MODULE_DESCRIPTION("altera FPGA CI module");
88 MODULE_AUTHOR("Igor M. Liplianin <liplianin@netup.ru>");
89 MODULE_LICENSE("GPL");
91 #define ci_dbg_print(args...) \
94 printk(KERN_DEBUG args); \
97 #define pid_dbg_print(args...) \
100 printk(KERN_DEBUG args); \
103 struct altera_ci_state
;
104 struct netup_hw_pid_filter
;
106 struct fpga_internal
{
108 struct mutex fpga_mutex
;/* two CI's on the same fpga */
109 struct netup_hw_pid_filter
*pid_filt
[2];
110 struct altera_ci_state
*state
[2];
111 struct work_struct work
;
112 int (*fpga_rw
) (void *dev
, int flag
, int data
, int rw
);
118 /* stores all private variables for communication with CI */
119 struct altera_ci_state
{
120 struct fpga_internal
*internal
;
121 struct dvb_ca_en50221 ca
;
126 /* stores all private variables for hardware pid filtering */
127 struct netup_hw_pid_filter
{
128 struct fpga_internal
*internal
;
129 struct dvb_demux
*demux
;
130 /* save old functions */
131 int (*start_feed
)(struct dvb_demux_feed
*feed
);
132 int (*stop_feed
)(struct dvb_demux_feed
*feed
);
138 /* internal params node */
140 /* pointer for internal params, one for each pair of CI's */
141 struct fpga_internal
*internal
;
142 struct fpga_inode
*next_inode
;
145 /* first internal params */
146 static struct fpga_inode
*fpga_first_inode
;
148 /* find chip by dev */
149 static struct fpga_inode
*find_inode(void *dev
)
151 struct fpga_inode
*temp_chip
= fpga_first_inode
;
153 if (temp_chip
== NULL
)
157 Search for the last fpga CI chip or
159 while ((temp_chip
!= NULL
) &&
160 (temp_chip
->internal
->dev
!= dev
))
161 temp_chip
= temp_chip
->next_inode
;
166 static struct fpga_internal
*check_filter(struct fpga_internal
*temp_int
,
167 void *demux_dev
, int filt_nr
)
169 if (temp_int
== NULL
)
172 if ((temp_int
->pid_filt
[filt_nr
]) == NULL
)
175 if (temp_int
->pid_filt
[filt_nr
]->demux
== demux_dev
)
181 /* find chip by demux */
182 static struct fpga_inode
*find_dinode(void *demux_dev
)
184 struct fpga_inode
*temp_chip
= fpga_first_inode
;
185 struct fpga_internal
*temp_int
;
188 * Search of the last fpga CI chip or
191 while (temp_chip
!= NULL
) {
192 if (temp_chip
->internal
!= NULL
) {
193 temp_int
= temp_chip
->internal
;
194 if (check_filter(temp_int
, demux_dev
, 0))
196 if (check_filter(temp_int
, demux_dev
, 1))
200 temp_chip
= temp_chip
->next_inode
;
206 /* deallocating chip */
207 static void remove_inode(struct fpga_internal
*internal
)
209 struct fpga_inode
*prev_node
= fpga_first_inode
;
210 struct fpga_inode
*del_node
= find_inode(internal
->dev
);
212 if (del_node
!= NULL
) {
213 if (del_node
== fpga_first_inode
) {
214 fpga_first_inode
= del_node
->next_inode
;
216 while (prev_node
->next_inode
!= del_node
)
217 prev_node
= prev_node
->next_inode
;
219 if (del_node
->next_inode
== NULL
)
220 prev_node
->next_inode
= NULL
;
222 prev_node
->next_inode
=
223 prev_node
->next_inode
->next_inode
;
230 /* allocating new chip */
231 static struct fpga_inode
*append_internal(struct fpga_internal
*internal
)
233 struct fpga_inode
*new_node
= fpga_first_inode
;
235 if (new_node
== NULL
) {
236 new_node
= kmalloc(sizeof(struct fpga_inode
), GFP_KERNEL
);
237 fpga_first_inode
= new_node
;
239 while (new_node
->next_inode
!= NULL
)
240 new_node
= new_node
->next_inode
;
242 new_node
->next_inode
=
243 kmalloc(sizeof(struct fpga_inode
), GFP_KERNEL
);
244 if (new_node
->next_inode
!= NULL
)
245 new_node
= new_node
->next_inode
;
250 if (new_node
!= NULL
) {
251 new_node
->internal
= internal
;
252 new_node
->next_inode
= NULL
;
258 static int netup_fpga_op_rw(struct fpga_internal
*inter
, int addr
,
261 inter
->fpga_rw(inter
->dev
, NETUP_CI_FLG_AD
, addr
, 0);
262 return inter
->fpga_rw(inter
->dev
, 0, val
, read
);
265 /* flag - mem/io, read - read/write */
266 static int altera_ci_op_cam(struct dvb_ca_en50221
*en50221
, int slot
,
267 u8 flag
, u8 read
, int addr
, u8 val
)
270 struct altera_ci_state
*state
= en50221
->data
;
271 struct fpga_internal
*inter
= state
->internal
;
279 mutex_lock(&inter
->fpga_mutex
);
281 netup_fpga_op_rw(inter
, NETUP_CI_ADDR0
, ((addr
<< 1) & 0xfe), 0);
282 netup_fpga_op_rw(inter
, NETUP_CI_ADDR1
, ((addr
>> 7) & 0x7f), 0);
283 store
= netup_fpga_op_rw(inter
, NETUP_CI_BUSCTRL
, 0, NETUP_CI_FLG_RD
);
286 store
|= ((state
->nr
<< 7) | (flag
<< 6));
288 netup_fpga_op_rw(inter
, NETUP_CI_BUSCTRL
, store
, 0);
289 mem
= netup_fpga_op_rw(inter
, NETUP_CI_DATA
, val
, read
);
291 mutex_unlock(&inter
->fpga_mutex
);
293 ci_dbg_print("%s: %s: addr=[0x%02x], %s=%x\n", __func__
,
294 (read
) ? "read" : "write", addr
,
295 (flag
== NETUP_CI_FLG_CTL
) ? "ctl" : "mem",
301 static int altera_ci_read_attribute_mem(struct dvb_ca_en50221
*en50221
,
304 return altera_ci_op_cam(en50221
, slot
, 0, NETUP_CI_FLG_RD
, addr
, 0);
307 static int altera_ci_write_attribute_mem(struct dvb_ca_en50221
*en50221
,
308 int slot
, int addr
, u8 data
)
310 return altera_ci_op_cam(en50221
, slot
, 0, 0, addr
, data
);
313 static int altera_ci_read_cam_ctl(struct dvb_ca_en50221
*en50221
,
316 return altera_ci_op_cam(en50221
, slot
, NETUP_CI_FLG_CTL
,
317 NETUP_CI_FLG_RD
, addr
, 0);
320 static int altera_ci_write_cam_ctl(struct dvb_ca_en50221
*en50221
, int slot
,
323 return altera_ci_op_cam(en50221
, slot
, NETUP_CI_FLG_CTL
, 0, addr
, data
);
326 static int altera_ci_slot_reset(struct dvb_ca_en50221
*en50221
, int slot
)
328 struct altera_ci_state
*state
= en50221
->data
;
329 struct fpga_internal
*inter
= state
->internal
;
330 /* reasonable timeout for CI reset is 10 seconds */
331 unsigned long t_out
= jiffies
+ msecs_to_jiffies(9999);
334 ci_dbg_print("%s\n", __func__
);
339 mutex_lock(&inter
->fpga_mutex
);
341 ret
= netup_fpga_op_rw(inter
, NETUP_CI_BUSCTRL
, 0, NETUP_CI_FLG_RD
);
342 netup_fpga_op_rw(inter
, NETUP_CI_BUSCTRL
,
343 (ret
& 0xcf) | (1 << (5 - state
->nr
)), 0);
345 mutex_unlock(&inter
->fpga_mutex
);
350 mutex_lock(&inter
->fpga_mutex
);
352 ret
= netup_fpga_op_rw(inter
, NETUP_CI_BUSCTRL
,
354 mutex_unlock(&inter
->fpga_mutex
);
356 if ((ret
& (1 << (5 - state
->nr
))) == 0)
358 if (time_after(jiffies
, t_out
))
363 ci_dbg_print("%s: %d msecs\n", __func__
,
364 jiffies_to_msecs(jiffies
+ msecs_to_jiffies(9999) - t_out
));
369 static int altera_ci_slot_shutdown(struct dvb_ca_en50221
*en50221
, int slot
)
371 /* not implemented */
375 static int altera_ci_slot_ts_ctl(struct dvb_ca_en50221
*en50221
, int slot
)
377 struct altera_ci_state
*state
= en50221
->data
;
378 struct fpga_internal
*inter
= state
->internal
;
381 ci_dbg_print("%s\n", __func__
);
386 mutex_lock(&inter
->fpga_mutex
);
388 ret
= netup_fpga_op_rw(inter
, NETUP_CI_BUSCTRL
, 0, NETUP_CI_FLG_RD
);
389 netup_fpga_op_rw(inter
, NETUP_CI_BUSCTRL
,
390 (ret
& 0x0f) | (1 << (3 - state
->nr
)), 0);
392 mutex_unlock(&inter
->fpga_mutex
);
398 static void netup_read_ci_status(struct work_struct
*work
)
400 struct fpga_internal
*inter
=
401 container_of(work
, struct fpga_internal
, work
);
404 ci_dbg_print("%s\n", __func__
);
406 mutex_lock(&inter
->fpga_mutex
);
408 ret
= netup_fpga_op_rw(inter
, NETUP_CI_INT_CTRL
, 0, NETUP_CI_FLG_RD
);
409 ret
= netup_fpga_op_rw(inter
, NETUP_CI_BUSCTRL
, 0, NETUP_CI_FLG_RD
);
411 mutex_unlock(&inter
->fpga_mutex
);
413 if (inter
->state
[1] != NULL
) {
414 inter
->state
[1]->status
=
416 DVB_CA_EN50221_POLL_CAM_PRESENT
|
417 DVB_CA_EN50221_POLL_CAM_READY
: 0);
418 ci_dbg_print("%s: setting CI[1] status = 0x%x\n",
419 __func__
, inter
->state
[1]->status
);
422 if (inter
->state
[0] != NULL
) {
423 inter
->state
[0]->status
=
425 DVB_CA_EN50221_POLL_CAM_PRESENT
|
426 DVB_CA_EN50221_POLL_CAM_READY
: 0);
427 ci_dbg_print("%s: setting CI[0] status = 0x%x\n",
428 __func__
, inter
->state
[0]->status
);
433 int altera_ci_irq(void *dev
)
435 struct fpga_inode
*temp_int
= NULL
;
436 struct fpga_internal
*inter
= NULL
;
438 ci_dbg_print("%s\n", __func__
);
441 temp_int
= find_inode(dev
);
442 if (temp_int
!= NULL
) {
443 inter
= temp_int
->internal
;
444 schedule_work(&inter
->work
);
450 EXPORT_SYMBOL(altera_ci_irq
);
452 static int altera_poll_ci_slot_status(struct dvb_ca_en50221
*en50221
,
455 struct altera_ci_state
*state
= en50221
->data
;
460 return state
->status
;
463 static void altera_hw_filt_release(void *main_dev
, int filt_nr
)
465 struct fpga_inode
*temp_int
= find_inode(main_dev
);
466 struct netup_hw_pid_filter
*pid_filt
= NULL
;
468 ci_dbg_print("%s\n", __func__
);
470 if (temp_int
!= NULL
) {
471 pid_filt
= temp_int
->internal
->pid_filt
[filt_nr
- 1];
472 /* stored old feed controls */
473 pid_filt
->demux
->start_feed
= pid_filt
->start_feed
;
474 pid_filt
->demux
->stop_feed
= pid_filt
->stop_feed
;
476 if (((--(temp_int
->internal
->filts_used
)) <= 0) &&
477 ((temp_int
->internal
->cis_used
) <= 0)) {
479 ci_dbg_print("%s: Actually removing\n", __func__
);
481 remove_inode(temp_int
->internal
);
482 kfree(pid_filt
->internal
);
490 EXPORT_SYMBOL(altera_hw_filt_release
);
492 void altera_ci_release(void *dev
, int ci_nr
)
494 struct fpga_inode
*temp_int
= find_inode(dev
);
495 struct altera_ci_state
*state
= NULL
;
497 ci_dbg_print("%s\n", __func__
);
499 if (temp_int
!= NULL
) {
500 state
= temp_int
->internal
->state
[ci_nr
- 1];
501 altera_hw_filt_release(dev
, ci_nr
);
504 if (((temp_int
->internal
->filts_used
) <= 0) &&
505 ((--(temp_int
->internal
->cis_used
)) <= 0)) {
507 ci_dbg_print("%s: Actually removing\n", __func__
);
509 remove_inode(temp_int
->internal
);
510 kfree(state
->internal
);
514 if (state
->ca
.data
!= NULL
)
515 dvb_ca_en50221_release(&state
->ca
);
522 EXPORT_SYMBOL(altera_ci_release
);
524 static void altera_pid_control(struct netup_hw_pid_filter
*pid_filt
,
527 struct fpga_internal
*inter
= pid_filt
->internal
;
530 /* pid 0-0x1f always enabled, don't touch them */
531 if ((pid
== 0x2000) || (pid
< 0x20))
534 mutex_lock(&inter
->fpga_mutex
);
536 netup_fpga_op_rw(inter
, NETUP_CI_PID_ADDR0
, (pid
>> 3) & 0xff, 0);
537 netup_fpga_op_rw(inter
, NETUP_CI_PID_ADDR1
,
538 ((pid
>> 11) & 0x03) | (pid_filt
->nr
<< 2), 0);
540 store
= netup_fpga_op_rw(inter
, NETUP_CI_PID_DATA
, 0, NETUP_CI_FLG_RD
);
542 if (onoff
)/* 0 - on, 1 - off */
543 store
|= (1 << (pid
& 7));
545 store
&= ~(1 << (pid
& 7));
547 netup_fpga_op_rw(inter
, NETUP_CI_PID_DATA
, store
, 0);
549 mutex_unlock(&inter
->fpga_mutex
);
551 pid_dbg_print("%s: (%d) set pid: %5d 0x%04x '%s'\n", __func__
,
552 pid_filt
->nr
, pid
, pid
, onoff
? "off" : "on");
555 static void altera_toggle_fullts_streaming(struct netup_hw_pid_filter
*pid_filt
,
556 int filt_nr
, int onoff
)
558 struct fpga_internal
*inter
= pid_filt
->internal
;
562 pid_dbg_print("%s: pid_filt->nr[%d] now %s\n", __func__
, pid_filt
->nr
,
563 onoff
? "off" : "on");
565 if (onoff
)/* 0 - on, 1 - off */
566 store
= 0xff;/* ignore pid */
568 store
= 0;/* enable pid */
570 mutex_lock(&inter
->fpga_mutex
);
572 for (i
= 0; i
< 1024; i
++) {
573 netup_fpga_op_rw(inter
, NETUP_CI_PID_ADDR0
, i
& 0xff, 0);
575 netup_fpga_op_rw(inter
, NETUP_CI_PID_ADDR1
,
576 ((i
>> 8) & 0x03) | (pid_filt
->nr
<< 2), 0);
577 /* pid 0-0x1f always enabled */
578 netup_fpga_op_rw(inter
, NETUP_CI_PID_DATA
,
579 (i
> 3 ? store
: 0), 0);
582 mutex_unlock(&inter
->fpga_mutex
);
585 static int altera_pid_feed_control(void *demux_dev
, int filt_nr
,
586 struct dvb_demux_feed
*feed
, int onoff
)
588 struct fpga_inode
*temp_int
= find_dinode(demux_dev
);
589 struct fpga_internal
*inter
= temp_int
->internal
;
590 struct netup_hw_pid_filter
*pid_filt
= inter
->pid_filt
[filt_nr
- 1];
592 altera_pid_control(pid_filt
, feed
->pid
, onoff
? 0 : 1);
593 /* call old feed proc's */
595 pid_filt
->start_feed(feed
);
597 pid_filt
->stop_feed(feed
);
599 if (feed
->pid
== 0x2000)
600 altera_toggle_fullts_streaming(pid_filt
, filt_nr
,
605 EXPORT_SYMBOL(altera_pid_feed_control
);
607 static int altera_ci_start_feed(struct dvb_demux_feed
*feed
, int num
)
609 altera_pid_feed_control(feed
->demux
, num
, feed
, 1);
614 static int altera_ci_stop_feed(struct dvb_demux_feed
*feed
, int num
)
616 altera_pid_feed_control(feed
->demux
, num
, feed
, 0);
621 static int altera_ci_start_feed_1(struct dvb_demux_feed
*feed
)
623 return altera_ci_start_feed(feed
, 1);
626 static int altera_ci_stop_feed_1(struct dvb_demux_feed
*feed
)
628 return altera_ci_stop_feed(feed
, 1);
631 static int altera_ci_start_feed_2(struct dvb_demux_feed
*feed
)
633 return altera_ci_start_feed(feed
, 2);
636 static int altera_ci_stop_feed_2(struct dvb_demux_feed
*feed
)
638 return altera_ci_stop_feed(feed
, 2);
641 static int altera_hw_filt_init(struct altera_ci_config
*config
, int hw_filt_nr
)
643 struct netup_hw_pid_filter
*pid_filt
= NULL
;
644 struct fpga_inode
*temp_int
= find_inode(config
->dev
);
645 struct fpga_internal
*inter
= NULL
;
648 pid_filt
= kzalloc(sizeof(struct netup_hw_pid_filter
), GFP_KERNEL
);
650 ci_dbg_print("%s\n", __func__
);
657 if (temp_int
!= NULL
) {
658 inter
= temp_int
->internal
;
659 (inter
->filts_used
)++;
660 ci_dbg_print("%s: Find Internal Structure!\n", __func__
);
662 inter
= kzalloc(sizeof(struct fpga_internal
), GFP_KERNEL
);
668 temp_int
= append_internal(inter
);
669 inter
->filts_used
= 1;
670 inter
->dev
= config
->dev
;
671 inter
->fpga_rw
= config
->fpga_rw
;
672 mutex_init(&inter
->fpga_mutex
);
674 ci_dbg_print("%s: Create New Internal Structure!\n", __func__
);
677 ci_dbg_print("%s: setting hw pid filter = %p for ci = %d\n", __func__
,
678 pid_filt
, hw_filt_nr
- 1);
679 inter
->pid_filt
[hw_filt_nr
- 1] = pid_filt
;
680 pid_filt
->demux
= config
->demux
;
681 pid_filt
->internal
= inter
;
682 pid_filt
->nr
= hw_filt_nr
- 1;
683 /* store old feed controls */
684 pid_filt
->start_feed
= config
->demux
->start_feed
;
685 pid_filt
->stop_feed
= config
->demux
->stop_feed
;
686 /* replace with new feed controls */
687 if (hw_filt_nr
== 1) {
688 pid_filt
->demux
->start_feed
= altera_ci_start_feed_1
;
689 pid_filt
->demux
->stop_feed
= altera_ci_stop_feed_1
;
690 } else if (hw_filt_nr
== 2) {
691 pid_filt
->demux
->start_feed
= altera_ci_start_feed_2
;
692 pid_filt
->demux
->stop_feed
= altera_ci_stop_feed_2
;
695 altera_toggle_fullts_streaming(pid_filt
, 0, 1);
699 ci_dbg_print("%s: Can't init hardware filter: Error %d\n",
706 EXPORT_SYMBOL(altera_hw_filt_init
);
708 int altera_ci_init(struct altera_ci_config
*config
, int ci_nr
)
710 struct altera_ci_state
*state
;
711 struct fpga_inode
*temp_int
= find_inode(config
->dev
);
712 struct fpga_internal
*inter
= NULL
;
716 state
= kzalloc(sizeof(struct altera_ci_state
), GFP_KERNEL
);
718 ci_dbg_print("%s\n", __func__
);
725 if (temp_int
!= NULL
) {
726 inter
= temp_int
->internal
;
728 inter
->fpga_rw
= config
->fpga_rw
;
729 ci_dbg_print("%s: Find Internal Structure!\n", __func__
);
731 inter
= kzalloc(sizeof(struct fpga_internal
), GFP_KERNEL
);
737 temp_int
= append_internal(inter
);
739 inter
->dev
= config
->dev
;
740 inter
->fpga_rw
= config
->fpga_rw
;
741 mutex_init(&inter
->fpga_mutex
);
743 ci_dbg_print("%s: Create New Internal Structure!\n", __func__
);
746 ci_dbg_print("%s: setting state = %p for ci = %d\n", __func__
,
748 state
->internal
= inter
;
749 state
->nr
= ci_nr
- 1;
751 state
->ca
.owner
= THIS_MODULE
;
752 state
->ca
.read_attribute_mem
= altera_ci_read_attribute_mem
;
753 state
->ca
.write_attribute_mem
= altera_ci_write_attribute_mem
;
754 state
->ca
.read_cam_control
= altera_ci_read_cam_ctl
;
755 state
->ca
.write_cam_control
= altera_ci_write_cam_ctl
;
756 state
->ca
.slot_reset
= altera_ci_slot_reset
;
757 state
->ca
.slot_shutdown
= altera_ci_slot_shutdown
;
758 state
->ca
.slot_ts_enable
= altera_ci_slot_ts_ctl
;
759 state
->ca
.poll_slot_status
= altera_poll_ci_slot_status
;
760 state
->ca
.data
= state
;
762 ret
= dvb_ca_en50221_init(config
->adapter
,
769 inter
->state
[ci_nr
- 1] = state
;
771 altera_hw_filt_init(config
, ci_nr
);
773 if (inter
->strt_wrk
) {
774 INIT_WORK(&inter
->work
, netup_read_ci_status
);
778 ci_dbg_print("%s: CI initialized!\n", __func__
);
780 mutex_lock(&inter
->fpga_mutex
);
783 netup_fpga_op_rw(inter
, NETUP_CI_TSA_DIV
, 0x0, 0);
784 netup_fpga_op_rw(inter
, NETUP_CI_TSB_DIV
, 0x0, 0);
787 store
= netup_fpga_op_rw(inter
, NETUP_CI_BUSCTRL2
, 0, NETUP_CI_FLG_RD
);
789 netup_fpga_op_rw(inter
, NETUP_CI_BUSCTRL2
, store
, 0);
791 ret
= netup_fpga_op_rw(inter
, NETUP_CI_REVISION
, 0, NETUP_CI_FLG_RD
);
793 netup_fpga_op_rw(inter
, NETUP_CI_INT_CTRL
, 0x44, 0);
795 mutex_unlock(&inter
->fpga_mutex
);
797 ci_dbg_print("%s: NetUP CI Revision = 0x%x\n", __func__
, ret
);
799 schedule_work(&inter
->work
);
803 ci_dbg_print("%s: Cannot initialize CI: Error %d.\n", __func__
, ret
);
809 EXPORT_SYMBOL(altera_ci_init
);
811 int altera_ci_tuner_reset(void *dev
, int ci_nr
)
813 struct fpga_inode
*temp_int
= find_inode(dev
);
814 struct fpga_internal
*inter
= NULL
;
817 ci_dbg_print("%s\n", __func__
);
819 if (temp_int
== NULL
)
822 if (temp_int
->internal
== NULL
)
825 inter
= temp_int
->internal
;
827 mutex_lock(&inter
->fpga_mutex
);
829 store
= netup_fpga_op_rw(inter
, NETUP_CI_BUSCTRL2
, 0, NETUP_CI_FLG_RD
);
830 store
&= ~(4 << (2 - ci_nr
));
831 netup_fpga_op_rw(inter
, NETUP_CI_BUSCTRL2
, store
, 0);
833 store
|= (4 << (2 - ci_nr
));
834 netup_fpga_op_rw(inter
, NETUP_CI_BUSCTRL2
, store
, 0);
836 mutex_unlock(&inter
->fpga_mutex
);
840 EXPORT_SYMBOL(altera_ci_tuner_reset
);