blob: 783ed2000102de4464613696d9fe5420e4a0d7e6 [file] [log] [blame]
Henrik Kureliddf4846c2008-08-01 10:00:45 +02001/*
Stefan Richter612262a2008-08-26 00:17:30 +02002 * FireDTV driver (formerly known as FireSAT)
Henrik Kureliddf4846c2008-08-01 10:00:45 +02003 *
Stefan Richter612262a2008-08-26 00:17:30 +02004 * Copyright (C) 2004 Andreas Monitzer <andy@monitzer.com>
5 * Copyright (C) 2008 Henrik Kurelid <henrik@kurelid.se>
Henrik Kureliddf4846c2008-08-01 10:00:45 +02006 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 */
12
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -080013#include <linux/dvb/ca.h>
Stefan Richter612262a2008-08-26 00:17:30 +020014#include <linux/fs.h>
15#include <linux/module.h>
16
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -080017#include <dvbdev.h>
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -080018
Stefan Richter612262a2008-08-26 00:17:30 +020019#include "avc_api.h"
20#include "firesat.h"
21#include "firesat-ci.h"
22
Henrik Kureliddf4846c2008-08-01 10:00:45 +020023static int firesat_ca_ready(ANTENNA_INPUT_INFO *info)
24{
Henrik Kureliddf4846c2008-08-01 10:00:45 +020025 return info->CaInitializationStatus == 1 &&
Stefan Richter8ae83cd2008-11-02 13:45:00 +010026 info->CaErrorFlag == 0 &&
27 info->CaDvbFlag == 1 &&
28 info->CaModulePresentStatus == 1;
Henrik Kureliddf4846c2008-08-01 10:00:45 +020029}
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -080030
Henrik Kureliddf4846c2008-08-01 10:00:45 +020031static int firesat_get_ca_flags(ANTENNA_INPUT_INFO *info)
32{
33 int flags = 0;
Stefan Richter8ae83cd2008-11-02 13:45:00 +010034
Henrik Kureliddf4846c2008-08-01 10:00:45 +020035 if (info->CaModulePresentStatus == 1)
36 flags |= CA_CI_MODULE_PRESENT;
37 if (info->CaInitializationStatus == 1 &&
38 info->CaErrorFlag == 0 &&
39 info->CaDvbFlag == 1)
40 flags |= CA_CI_MODULE_READY;
41 return flags;
42}
43
44static int firesat_ca_reset(struct firesat *firesat)
45{
Stefan Richter8ae83cd2008-11-02 13:45:00 +010046 return avc_ca_reset(firesat) ? -EFAULT : 0;
Henrik Kureliddf4846c2008-08-01 10:00:45 +020047}
48
Stefan Richter8ae83cd2008-11-02 13:45:00 +010049static int firesat_ca_get_caps(void *arg)
Henrik Kureliddf4846c2008-08-01 10:00:45 +020050{
Stefan Richter8ae83cd2008-11-02 13:45:00 +010051 struct ca_caps *cap = arg;
Henrik Kureliddf4846c2008-08-01 10:00:45 +020052
Stefan Richter8ae83cd2008-11-02 13:45:00 +010053 cap->slot_num = 1;
54 cap->slot_type = CA_CI;
55 cap->descr_num = 1;
56 cap->descr_type = CA_ECD;
57 return 0;
Henrik Kureliddf4846c2008-08-01 10:00:45 +020058}
59
60static int firesat_ca_get_slot_info(struct firesat *firesat, void *arg)
61{
62 ANTENNA_INPUT_INFO info;
Stefan Richter8ae83cd2008-11-02 13:45:00 +010063 struct ca_slot_info *slot = arg;
Henrik Kureliddf4846c2008-08-01 10:00:45 +020064
Stefan Richter8ae83cd2008-11-02 13:45:00 +010065 if (avc_tuner_status(firesat, &info))
Henrik Kureliddf4846c2008-08-01 10:00:45 +020066 return -EFAULT;
67
Stefan Richter8ae83cd2008-11-02 13:45:00 +010068 if (slot->num != 0)
Henrik Kureliddf4846c2008-08-01 10:00:45 +020069 return -EFAULT;
Stefan Richter8ae83cd2008-11-02 13:45:00 +010070
71 slot->type = CA_CI;
72 slot->flags = firesat_get_ca_flags(&info);
Henrik Kureliddf4846c2008-08-01 10:00:45 +020073 return 0;
74}
75
76static int firesat_ca_app_info(struct firesat *firesat, void *arg)
77{
Stefan Richter8ae83cd2008-11-02 13:45:00 +010078 struct ca_msg *reply = arg;
Henrik Kureliddf4846c2008-08-01 10:00:45 +020079
Stefan Richter8ae83cd2008-11-02 13:45:00 +010080 return
81 avc_ca_app_info(firesat, reply->msg, &reply->length) ? -EFAULT : 0;
Henrik Kureliddf4846c2008-08-01 10:00:45 +020082}
83
84static int firesat_ca_info(struct firesat *firesat, void *arg)
85{
Stefan Richter8ae83cd2008-11-02 13:45:00 +010086 struct ca_msg *reply = arg;
Henrik Kureliddf4846c2008-08-01 10:00:45 +020087
Stefan Richter8ae83cd2008-11-02 13:45:00 +010088 return avc_ca_info(firesat, reply->msg, &reply->length) ? -EFAULT : 0;
Henrik Kureliddf4846c2008-08-01 10:00:45 +020089}
90
91static int firesat_ca_get_mmi(struct firesat *firesat, void *arg)
92{
Stefan Richter8ae83cd2008-11-02 13:45:00 +010093 struct ca_msg *reply = arg;
Henrik Kureliddf4846c2008-08-01 10:00:45 +020094
Stefan Richter8ae83cd2008-11-02 13:45:00 +010095 return
96 avc_ca_get_mmi(firesat, reply->msg, &reply->length) ? -EFAULT : 0;
Henrik Kureliddf4846c2008-08-01 10:00:45 +020097}
98
99static int firesat_ca_get_msg(struct firesat *firesat, void *arg)
100{
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200101 ANTENNA_INPUT_INFO info;
Stefan Richter8ae83cd2008-11-02 13:45:00 +0100102 int err;
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200103
104 switch (firesat->ca_last_command) {
105 case TAG_APP_INFO_ENQUIRY:
106 err = firesat_ca_app_info(firesat, arg);
107 break;
108 case TAG_CA_INFO_ENQUIRY:
109 err = firesat_ca_info(firesat, arg);
110 break;
111 default:
Stefan Richter8ae83cd2008-11-02 13:45:00 +0100112 if (avc_tuner_status(firesat, &info))
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200113 err = -EFAULT;
Stefan Richter8ae83cd2008-11-02 13:45:00 +0100114 else if (info.CaMmi == 1)
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200115 err = firesat_ca_get_mmi(firesat, arg);
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200116 else {
117 printk(KERN_INFO "%s: Unhandled message 0x%08X\n",
118 __func__, firesat->ca_last_command);
119 err = -EFAULT;
120 }
121 }
122 firesat->ca_last_command = 0;
123 return err;
124}
125
126static int firesat_ca_pmt(struct firesat *firesat, void *arg)
127{
Stefan Richter8ae83cd2008-11-02 13:45:00 +0100128 struct ca_msg *msg = arg;
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200129 int data_pos;
Henrik Kurelid7199e522008-12-05 10:00:16 +0100130 int data_length;
131 int i;
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200132
Henrik Kurelid7199e522008-12-05 10:00:16 +0100133 data_pos = 4;
134 if (msg->msg[3] & 0x80) {
135 data_length = 0;
136 for (i = 0; i < (msg->msg[3] & 0x7F); i++)
137 data_length = (data_length << 8) + msg->msg[data_pos++];
138 } else {
139 data_length = msg->msg[3];
140 }
Stefan Richter8ae83cd2008-11-02 13:45:00 +0100141
Henrik Kurelid7199e522008-12-05 10:00:16 +0100142 return avc_ca_pmt(firesat, &msg->msg[data_pos], data_length) ?
143 -EFAULT : 0;
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200144}
145
146static int firesat_ca_send_msg(struct firesat *firesat, void *arg)
147{
Stefan Richter8ae83cd2008-11-02 13:45:00 +0100148 struct ca_msg *msg = arg;
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200149 int err;
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200150
Stefan Richter8ae83cd2008-11-02 13:45:00 +0100151 /* Do we need a semaphore for this? */
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200152 firesat->ca_last_command =
Stefan Richter8ae83cd2008-11-02 13:45:00 +0100153 (msg->msg[0] << 16) + (msg->msg[1] << 8) + msg->msg[2];
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200154 switch (firesat->ca_last_command) {
155 case TAG_CA_PMT:
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200156 err = firesat_ca_pmt(firesat, arg);
157 break;
158 case TAG_APP_INFO_ENQUIRY:
Stefan Richter8ae83cd2008-11-02 13:45:00 +0100159 /* handled in ca_get_msg */
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -0800160 err = 0;
161 break;
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200162 case TAG_CA_INFO_ENQUIRY:
Stefan Richter8ae83cd2008-11-02 13:45:00 +0100163 /* handled in ca_get_msg */
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200164 err = 0;
165 break;
166 case TAG_ENTER_MENU:
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200167 err = avc_ca_enter_menu(firesat);
168 break;
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -0800169 default:
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200170 printk(KERN_ERR "%s: Unhandled unknown message 0x%08X\n",
171 __func__, firesat->ca_last_command);
172 err = -EFAULT;
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -0800173 }
174 return err;
175}
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -0800176
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200177static int firesat_ca_ioctl(struct inode *inode, struct file *file,
178 unsigned int cmd, void *arg)
179{
Stefan Richter8ae83cd2008-11-02 13:45:00 +0100180 struct dvb_device *dvbdev = file->private_data;
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200181 struct firesat *firesat = dvbdev->priv;
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200182 ANTENNA_INPUT_INFO info;
Stefan Richter8ae83cd2008-11-02 13:45:00 +0100183 int err;
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200184
185 switch(cmd) {
186 case CA_RESET:
187 err = firesat_ca_reset(firesat);
188 break;
189 case CA_GET_CAP:
Stefan Richter8ae83cd2008-11-02 13:45:00 +0100190 err = firesat_ca_get_caps(arg);
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200191 break;
192 case CA_GET_SLOT_INFO:
193 err = firesat_ca_get_slot_info(firesat, arg);
194 break;
195 case CA_GET_MSG:
196 err = firesat_ca_get_msg(firesat, arg);
197 break;
198 case CA_SEND_MSG:
199 err = firesat_ca_send_msg(firesat, arg);
200 break;
201 default:
202 printk(KERN_INFO "%s: Unhandled ioctl, command: %u\n",__func__,
203 cmd);
204 err = -EOPNOTSUPP;
205 }
206
Stefan Richter8ae83cd2008-11-02 13:45:00 +0100207 /* FIXME Is this necessary? */
208 avc_tuner_status(firesat, &info);
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200209
210 return err;
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -0800211}
212
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200213static unsigned int firesat_ca_io_poll(struct file *file, poll_table *wait)
214{
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -0800215 return POLLIN;
216}
217
218static struct file_operations firesat_ca_fops = {
Stefan Richter8ae83cd2008-11-02 13:45:00 +0100219 .owner = THIS_MODULE,
220 .ioctl = dvb_generic_ioctl,
221 .open = dvb_generic_open,
222 .release = dvb_generic_release,
223 .poll = firesat_ca_io_poll,
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -0800224};
225
226static struct dvb_device firesat_ca = {
Stefan Richter8ae83cd2008-11-02 13:45:00 +0100227 .users = 1,
228 .readers = 1,
229 .writers = 1,
230 .fops = &firesat_ca_fops,
231 .kernel_ioctl = firesat_ca_ioctl,
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -0800232};
233
Stefan Richter8ae83cd2008-11-02 13:45:00 +0100234int firesat_ca_register(struct firesat *firesat)
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200235{
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200236 ANTENNA_INPUT_INFO info;
Stefan Richter8ae83cd2008-11-02 13:45:00 +0100237 int err;
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -0800238
Stefan Richter8ae83cd2008-11-02 13:45:00 +0100239 if (avc_tuner_status(firesat, &info))
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200240 return -EINVAL;
241
Stefan Richter8ae83cd2008-11-02 13:45:00 +0100242 if (!firesat_ca_ready(&info))
243 return -EFAULT;
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200244
Stefan Richter8ae83cd2008-11-02 13:45:00 +0100245 err = dvb_register_device(&firesat->adapter, &firesat->cadev,
246 &firesat_ca, firesat, DVB_DEVICE_CA);
247
248 if (info.CaApplicationInfo == 0)
249 printk(KERN_ERR "%s: CaApplicationInfo is not set.\n",
250 __func__);
251 if (info.CaDateTimeRequest == 1)
252 avc_ca_get_time_date(firesat, &firesat->ca_time_interval);
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200253
254 return err;
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -0800255}
256
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200257void firesat_ca_release(struct firesat *firesat)
258{
259 if (firesat->cadev)
Stefan Richter8ae83cd2008-11-02 13:45:00 +0100260 dvb_unregister_device(firesat->cadev);
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -0800261}