blob: 853e04b7cb361d45257f80dcafdcf121cd340c63 [file] [log] [blame]
Rambaldia70f81c2009-01-17 14:47:34 +01001/*
2 * FireDTV driver (formerly known as FireSAT)
3 *
4 * Copyright (C) 2004 Andreas Monitzer <andy@monitzer.com>
5 * Copyright (C) 2008 Henrik Kurelid <henrik@kurelid.se>
6 *
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
Stefan Richter15490792009-02-23 14:21:10 +010013#include <linux/device.h>
Rambaldia70f81c2009-01-17 14:47:34 +010014#include <linux/dvb/ca.h>
15#include <linux/fs.h>
16#include <linux/module.h>
17
18#include <dvbdev.h>
19
Rambaldia70f81c2009-01-17 14:47:34 +010020#include "firedtv.h"
Rambaldia70f81c2009-01-17 14:47:34 +010021
Stefan Richter15490792009-02-23 14:21:10 +010022#define EN50221_TAG_APP_INFO_ENQUIRY 0x9f8020
23#define EN50221_TAG_CA_INFO_ENQUIRY 0x9f8030
24#define EN50221_TAG_CA_PMT 0x9f8032
25#define EN50221_TAG_ENTER_MENU 0x9f8022
26
27static int fdtv_ca_ready(struct firedtv_tuner_status *stat)
Rambaldia70f81c2009-01-17 14:47:34 +010028{
Stefan Richter15490792009-02-23 14:21:10 +010029 return stat->ca_initialization_status == 1 &&
30 stat->ca_error_flag == 0 &&
31 stat->ca_dvb_flag == 1 &&
32 stat->ca_module_present_status == 1;
Rambaldia70f81c2009-01-17 14:47:34 +010033}
34
Stefan Richter15490792009-02-23 14:21:10 +010035static int fdtv_get_ca_flags(struct firedtv_tuner_status *stat)
Rambaldia70f81c2009-01-17 14:47:34 +010036{
37 int flags = 0;
38
Stefan Richter15490792009-02-23 14:21:10 +010039 if (stat->ca_module_present_status == 1)
Rambaldia70f81c2009-01-17 14:47:34 +010040 flags |= CA_CI_MODULE_PRESENT;
Stefan Richter15490792009-02-23 14:21:10 +010041 if (stat->ca_initialization_status == 1 &&
42 stat->ca_error_flag == 0 &&
43 stat->ca_dvb_flag == 1)
Rambaldia70f81c2009-01-17 14:47:34 +010044 flags |= CA_CI_MODULE_READY;
45 return flags;
46}
47
48static int fdtv_ca_reset(struct firedtv *fdtv)
49{
50 return avc_ca_reset(fdtv) ? -EFAULT : 0;
51}
52
53static int fdtv_ca_get_caps(void *arg)
54{
55 struct ca_caps *cap = arg;
56
57 cap->slot_num = 1;
58 cap->slot_type = CA_CI;
59 cap->descr_num = 1;
60 cap->descr_type = CA_ECD;
61 return 0;
62}
63
64static int fdtv_ca_get_slot_info(struct firedtv *fdtv, void *arg)
65{
Stefan Richter15490792009-02-23 14:21:10 +010066 struct firedtv_tuner_status stat;
Rambaldia70f81c2009-01-17 14:47:34 +010067 struct ca_slot_info *slot = arg;
68
Stefan Richter15490792009-02-23 14:21:10 +010069 if (avc_tuner_status(fdtv, &stat))
Rambaldia70f81c2009-01-17 14:47:34 +010070 return -EFAULT;
71
72 if (slot->num != 0)
73 return -EFAULT;
74
75 slot->type = CA_CI;
Stefan Richter15490792009-02-23 14:21:10 +010076 slot->flags = fdtv_get_ca_flags(&stat);
Rambaldia70f81c2009-01-17 14:47:34 +010077 return 0;
78}
79
80static int fdtv_ca_app_info(struct firedtv *fdtv, void *arg)
81{
82 struct ca_msg *reply = arg;
83
Stefan Richter15490792009-02-23 14:21:10 +010084 return avc_ca_app_info(fdtv, reply->msg, &reply->length) ? -EFAULT : 0;
Rambaldia70f81c2009-01-17 14:47:34 +010085}
86
87static int fdtv_ca_info(struct firedtv *fdtv, void *arg)
88{
89 struct ca_msg *reply = arg;
90
91 return avc_ca_info(fdtv, reply->msg, &reply->length) ? -EFAULT : 0;
92}
93
94static int fdtv_ca_get_mmi(struct firedtv *fdtv, void *arg)
95{
96 struct ca_msg *reply = arg;
97
Stefan Richter15490792009-02-23 14:21:10 +010098 return avc_ca_get_mmi(fdtv, reply->msg, &reply->length) ? -EFAULT : 0;
Rambaldia70f81c2009-01-17 14:47:34 +010099}
100
101static int fdtv_ca_get_msg(struct firedtv *fdtv, void *arg)
102{
Stefan Richter15490792009-02-23 14:21:10 +0100103 struct firedtv_tuner_status stat;
Rambaldia70f81c2009-01-17 14:47:34 +0100104 int err;
105
106 switch (fdtv->ca_last_command) {
Stefan Richter15490792009-02-23 14:21:10 +0100107 case EN50221_TAG_APP_INFO_ENQUIRY:
Rambaldia70f81c2009-01-17 14:47:34 +0100108 err = fdtv_ca_app_info(fdtv, arg);
109 break;
Stefan Richter15490792009-02-23 14:21:10 +0100110 case EN50221_TAG_CA_INFO_ENQUIRY:
Rambaldia70f81c2009-01-17 14:47:34 +0100111 err = fdtv_ca_info(fdtv, arg);
112 break;
113 default:
Stefan Richter15490792009-02-23 14:21:10 +0100114 if (avc_tuner_status(fdtv, &stat))
Rambaldia70f81c2009-01-17 14:47:34 +0100115 err = -EFAULT;
Stefan Richter15490792009-02-23 14:21:10 +0100116 else if (stat.ca_mmi == 1)
Rambaldia70f81c2009-01-17 14:47:34 +0100117 err = fdtv_ca_get_mmi(fdtv, arg);
118 else {
Stefan Richter15490792009-02-23 14:21:10 +0100119 dev_info(fdtv->device, "unhandled CA message 0x%08x\n",
120 fdtv->ca_last_command);
Rambaldia70f81c2009-01-17 14:47:34 +0100121 err = -EFAULT;
122 }
123 }
124 fdtv->ca_last_command = 0;
125 return err;
126}
127
128static int fdtv_ca_pmt(struct firedtv *fdtv, void *arg)
129{
130 struct ca_msg *msg = arg;
131 int data_pos;
132 int data_length;
133 int i;
134
135 data_pos = 4;
136 if (msg->msg[3] & 0x80) {
137 data_length = 0;
Stefan Richter15490792009-02-23 14:21:10 +0100138 for (i = 0; i < (msg->msg[3] & 0x7f); i++)
Rambaldia70f81c2009-01-17 14:47:34 +0100139 data_length = (data_length << 8) + msg->msg[data_pos++];
140 } else {
141 data_length = msg->msg[3];
142 }
143
Stefan Richter15490792009-02-23 14:21:10 +0100144 return avc_ca_pmt(fdtv, &msg->msg[data_pos], data_length) ? -EFAULT : 0;
Rambaldia70f81c2009-01-17 14:47:34 +0100145}
146
147static int fdtv_ca_send_msg(struct firedtv *fdtv, void *arg)
148{
149 struct ca_msg *msg = arg;
150 int err;
151
152 /* Do we need a semaphore for this? */
153 fdtv->ca_last_command =
154 (msg->msg[0] << 16) + (msg->msg[1] << 8) + msg->msg[2];
155 switch (fdtv->ca_last_command) {
Stefan Richter15490792009-02-23 14:21:10 +0100156 case EN50221_TAG_CA_PMT:
Rambaldia70f81c2009-01-17 14:47:34 +0100157 err = fdtv_ca_pmt(fdtv, arg);
158 break;
Stefan Richter15490792009-02-23 14:21:10 +0100159 case EN50221_TAG_APP_INFO_ENQUIRY:
Rambaldia70f81c2009-01-17 14:47:34 +0100160 /* handled in ca_get_msg */
161 err = 0;
162 break;
Stefan Richter15490792009-02-23 14:21:10 +0100163 case EN50221_TAG_CA_INFO_ENQUIRY:
Rambaldia70f81c2009-01-17 14:47:34 +0100164 /* handled in ca_get_msg */
165 err = 0;
166 break;
Stefan Richter15490792009-02-23 14:21:10 +0100167 case EN50221_TAG_ENTER_MENU:
Rambaldia70f81c2009-01-17 14:47:34 +0100168 err = avc_ca_enter_menu(fdtv);
169 break;
170 default:
Stefan Richter15490792009-02-23 14:21:10 +0100171 dev_err(fdtv->device, "unhandled CA message 0x%08x\n",
172 fdtv->ca_last_command);
Rambaldia70f81c2009-01-17 14:47:34 +0100173 err = -EFAULT;
174 }
175 return err;
176}
177
178static int fdtv_ca_ioctl(struct inode *inode, struct file *file,
179 unsigned int cmd, void *arg)
180{
181 struct dvb_device *dvbdev = file->private_data;
182 struct firedtv *fdtv = dvbdev->priv;
Stefan Richter15490792009-02-23 14:21:10 +0100183 struct firedtv_tuner_status stat;
Rambaldia70f81c2009-01-17 14:47:34 +0100184 int err;
185
Stefan Richter15490792009-02-23 14:21:10 +0100186 switch (cmd) {
Rambaldia70f81c2009-01-17 14:47:34 +0100187 case CA_RESET:
188 err = fdtv_ca_reset(fdtv);
189 break;
190 case CA_GET_CAP:
191 err = fdtv_ca_get_caps(arg);
192 break;
193 case CA_GET_SLOT_INFO:
194 err = fdtv_ca_get_slot_info(fdtv, arg);
195 break;
196 case CA_GET_MSG:
197 err = fdtv_ca_get_msg(fdtv, arg);
198 break;
199 case CA_SEND_MSG:
200 err = fdtv_ca_send_msg(fdtv, arg);
201 break;
202 default:
Stefan Richter15490792009-02-23 14:21:10 +0100203 dev_info(fdtv->device, "unhandled CA ioctl %u\n", cmd);
Rambaldia70f81c2009-01-17 14:47:34 +0100204 err = -EOPNOTSUPP;
205 }
206
207 /* FIXME Is this necessary? */
Stefan Richter15490792009-02-23 14:21:10 +0100208 avc_tuner_status(fdtv, &stat);
Rambaldia70f81c2009-01-17 14:47:34 +0100209
210 return err;
211}
212
213static unsigned int fdtv_ca_io_poll(struct file *file, poll_table *wait)
214{
215 return POLLIN;
216}
217
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700218static const struct file_operations fdtv_ca_fops = {
Rambaldia70f81c2009-01-17 14:47:34 +0100219 .owner = THIS_MODULE,
220 .ioctl = dvb_generic_ioctl,
221 .open = dvb_generic_open,
222 .release = dvb_generic_release,
223 .poll = fdtv_ca_io_poll,
224};
225
226static struct dvb_device fdtv_ca = {
227 .users = 1,
228 .readers = 1,
229 .writers = 1,
230 .fops = &fdtv_ca_fops,
231 .kernel_ioctl = fdtv_ca_ioctl,
232};
233
234int fdtv_ca_register(struct firedtv *fdtv)
235{
Stefan Richter15490792009-02-23 14:21:10 +0100236 struct firedtv_tuner_status stat;
Rambaldia70f81c2009-01-17 14:47:34 +0100237 int err;
238
Stefan Richter15490792009-02-23 14:21:10 +0100239 if (avc_tuner_status(fdtv, &stat))
Rambaldia70f81c2009-01-17 14:47:34 +0100240 return -EINVAL;
241
Stefan Richter15490792009-02-23 14:21:10 +0100242 if (!fdtv_ca_ready(&stat))
Rambaldia70f81c2009-01-17 14:47:34 +0100243 return -EFAULT;
244
245 err = dvb_register_device(&fdtv->adapter, &fdtv->cadev,
246 &fdtv_ca, fdtv, DVB_DEVICE_CA);
247
Stefan Richter15490792009-02-23 14:21:10 +0100248 if (stat.ca_application_info == 0)
249 dev_err(fdtv->device, "CaApplicationInfo is not set\n");
250 if (stat.ca_date_time_request == 1)
Rambaldia70f81c2009-01-17 14:47:34 +0100251 avc_ca_get_time_date(fdtv, &fdtv->ca_time_interval);
252
253 return err;
254}
255
256void fdtv_ca_release(struct firedtv *fdtv)
257{
258 if (fdtv->cadev)
259 dvb_unregister_device(fdtv->cadev);
260}