blob: e63f582378bfff5193078f5bcdc6fe15713b8247 [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
Rambaldia70f81c2009-01-17 14:47:34 +010048static int fdtv_ca_get_caps(void *arg)
49{
50 struct ca_caps *cap = arg;
51
52 cap->slot_num = 1;
53 cap->slot_type = CA_CI;
54 cap->descr_num = 1;
55 cap->descr_type = CA_ECD;
56 return 0;
57}
58
59static int fdtv_ca_get_slot_info(struct firedtv *fdtv, void *arg)
60{
Stefan Richter15490792009-02-23 14:21:10 +010061 struct firedtv_tuner_status stat;
Rambaldia70f81c2009-01-17 14:47:34 +010062 struct ca_slot_info *slot = arg;
Stefan Richter686a9482011-07-06 15:54:48 -030063 int err;
Rambaldia70f81c2009-01-17 14:47:34 +010064
Stefan Richter686a9482011-07-06 15:54:48 -030065 err = avc_tuner_status(fdtv, &stat);
66 if (err)
67 return err;
Rambaldia70f81c2009-01-17 14:47:34 +010068
69 if (slot->num != 0)
Stefan Richter686a9482011-07-06 15:54:48 -030070 return -EACCES;
Rambaldia70f81c2009-01-17 14:47:34 +010071
72 slot->type = CA_CI;
Stefan Richter15490792009-02-23 14:21:10 +010073 slot->flags = fdtv_get_ca_flags(&stat);
Rambaldia70f81c2009-01-17 14:47:34 +010074 return 0;
75}
76
77static int fdtv_ca_app_info(struct firedtv *fdtv, void *arg)
78{
79 struct ca_msg *reply = arg;
80
Stefan Richter686a9482011-07-06 15:54:48 -030081 return avc_ca_app_info(fdtv, reply->msg, &reply->length);
Rambaldia70f81c2009-01-17 14:47:34 +010082}
83
84static int fdtv_ca_info(struct firedtv *fdtv, void *arg)
85{
86 struct ca_msg *reply = arg;
87
Stefan Richter686a9482011-07-06 15:54:48 -030088 return avc_ca_info(fdtv, reply->msg, &reply->length);
Rambaldia70f81c2009-01-17 14:47:34 +010089}
90
91static int fdtv_ca_get_mmi(struct firedtv *fdtv, void *arg)
92{
93 struct ca_msg *reply = arg;
94
Stefan Richter686a9482011-07-06 15:54:48 -030095 return avc_ca_get_mmi(fdtv, reply->msg, &reply->length);
Rambaldia70f81c2009-01-17 14:47:34 +010096}
97
98static int fdtv_ca_get_msg(struct firedtv *fdtv, void *arg)
99{
Stefan Richter15490792009-02-23 14:21:10 +0100100 struct firedtv_tuner_status stat;
Rambaldia70f81c2009-01-17 14:47:34 +0100101 int err;
102
103 switch (fdtv->ca_last_command) {
Stefan Richter15490792009-02-23 14:21:10 +0100104 case EN50221_TAG_APP_INFO_ENQUIRY:
Rambaldia70f81c2009-01-17 14:47:34 +0100105 err = fdtv_ca_app_info(fdtv, arg);
106 break;
Stefan Richter15490792009-02-23 14:21:10 +0100107 case EN50221_TAG_CA_INFO_ENQUIRY:
Rambaldia70f81c2009-01-17 14:47:34 +0100108 err = fdtv_ca_info(fdtv, arg);
109 break;
110 default:
Stefan Richter686a9482011-07-06 15:54:48 -0300111 err = avc_tuner_status(fdtv, &stat);
112 if (err)
113 break;
114 if (stat.ca_mmi == 1)
Rambaldia70f81c2009-01-17 14:47:34 +0100115 err = fdtv_ca_get_mmi(fdtv, arg);
116 else {
Stefan Richter15490792009-02-23 14:21:10 +0100117 dev_info(fdtv->device, "unhandled CA message 0x%08x\n",
118 fdtv->ca_last_command);
Stefan Richter686a9482011-07-06 15:54:48 -0300119 err = -EACCES;
Rambaldia70f81c2009-01-17 14:47:34 +0100120 }
121 }
122 fdtv->ca_last_command = 0;
123 return err;
124}
125
126static int fdtv_ca_pmt(struct firedtv *fdtv, void *arg)
127{
128 struct ca_msg *msg = arg;
129 int data_pos;
130 int data_length;
131 int i;
132
133 data_pos = 4;
134 if (msg->msg[3] & 0x80) {
135 data_length = 0;
Stefan Richter15490792009-02-23 14:21:10 +0100136 for (i = 0; i < (msg->msg[3] & 0x7f); i++)
Rambaldia70f81c2009-01-17 14:47:34 +0100137 data_length = (data_length << 8) + msg->msg[data_pos++];
138 } else {
139 data_length = msg->msg[3];
140 }
141
Stefan Richter686a9482011-07-06 15:54:48 -0300142 return avc_ca_pmt(fdtv, &msg->msg[data_pos], data_length);
Rambaldia70f81c2009-01-17 14:47:34 +0100143}
144
145static int fdtv_ca_send_msg(struct firedtv *fdtv, void *arg)
146{
147 struct ca_msg *msg = arg;
148 int err;
149
150 /* Do we need a semaphore for this? */
151 fdtv->ca_last_command =
152 (msg->msg[0] << 16) + (msg->msg[1] << 8) + msg->msg[2];
153 switch (fdtv->ca_last_command) {
Stefan Richter15490792009-02-23 14:21:10 +0100154 case EN50221_TAG_CA_PMT:
Rambaldia70f81c2009-01-17 14:47:34 +0100155 err = fdtv_ca_pmt(fdtv, arg);
156 break;
Stefan Richter15490792009-02-23 14:21:10 +0100157 case EN50221_TAG_APP_INFO_ENQUIRY:
Rambaldia70f81c2009-01-17 14:47:34 +0100158 /* handled in ca_get_msg */
159 err = 0;
160 break;
Stefan Richter15490792009-02-23 14:21:10 +0100161 case EN50221_TAG_CA_INFO_ENQUIRY:
Rambaldia70f81c2009-01-17 14:47:34 +0100162 /* handled in ca_get_msg */
163 err = 0;
164 break;
Stefan Richter15490792009-02-23 14:21:10 +0100165 case EN50221_TAG_ENTER_MENU:
Rambaldia70f81c2009-01-17 14:47:34 +0100166 err = avc_ca_enter_menu(fdtv);
167 break;
168 default:
Stefan Richter15490792009-02-23 14:21:10 +0100169 dev_err(fdtv->device, "unhandled CA message 0x%08x\n",
170 fdtv->ca_last_command);
Stefan Richter686a9482011-07-06 15:54:48 -0300171 err = -EACCES;
Rambaldia70f81c2009-01-17 14:47:34 +0100172 }
173 return err;
174}
175
Arnd Bergmann16ef8de2010-04-27 00:24:00 +0200176static int fdtv_ca_ioctl(struct file *file, unsigned int cmd, void *arg)
Rambaldia70f81c2009-01-17 14:47:34 +0100177{
178 struct dvb_device *dvbdev = file->private_data;
179 struct firedtv *fdtv = dvbdev->priv;
Stefan Richter15490792009-02-23 14:21:10 +0100180 struct firedtv_tuner_status stat;
Rambaldia70f81c2009-01-17 14:47:34 +0100181 int err;
182
Stefan Richter15490792009-02-23 14:21:10 +0100183 switch (cmd) {
Rambaldia70f81c2009-01-17 14:47:34 +0100184 case CA_RESET:
Stefan Richter686a9482011-07-06 15:54:48 -0300185 err = avc_ca_reset(fdtv);
Rambaldia70f81c2009-01-17 14:47:34 +0100186 break;
187 case CA_GET_CAP:
188 err = fdtv_ca_get_caps(arg);
189 break;
190 case CA_GET_SLOT_INFO:
191 err = fdtv_ca_get_slot_info(fdtv, arg);
192 break;
193 case CA_GET_MSG:
194 err = fdtv_ca_get_msg(fdtv, arg);
195 break;
196 case CA_SEND_MSG:
197 err = fdtv_ca_send_msg(fdtv, arg);
198 break;
199 default:
Stefan Richter15490792009-02-23 14:21:10 +0100200 dev_info(fdtv->device, "unhandled CA ioctl %u\n", cmd);
Rambaldia70f81c2009-01-17 14:47:34 +0100201 err = -EOPNOTSUPP;
202 }
203
204 /* FIXME Is this necessary? */
Stefan Richter15490792009-02-23 14:21:10 +0100205 avc_tuner_status(fdtv, &stat);
Rambaldia70f81c2009-01-17 14:47:34 +0100206
207 return err;
208}
209
210static unsigned int fdtv_ca_io_poll(struct file *file, poll_table *wait)
211{
212 return POLLIN;
213}
214
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700215static const struct file_operations fdtv_ca_fops = {
Rambaldia70f81c2009-01-17 14:47:34 +0100216 .owner = THIS_MODULE,
Arnd Bergmann16ef8de2010-04-27 00:24:00 +0200217 .unlocked_ioctl = dvb_generic_ioctl,
Rambaldia70f81c2009-01-17 14:47:34 +0100218 .open = dvb_generic_open,
219 .release = dvb_generic_release,
220 .poll = fdtv_ca_io_poll,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200221 .llseek = noop_llseek,
Rambaldia70f81c2009-01-17 14:47:34 +0100222};
223
224static struct dvb_device fdtv_ca = {
225 .users = 1,
226 .readers = 1,
227 .writers = 1,
228 .fops = &fdtv_ca_fops,
229 .kernel_ioctl = fdtv_ca_ioctl,
230};
231
232int fdtv_ca_register(struct firedtv *fdtv)
233{
Stefan Richter15490792009-02-23 14:21:10 +0100234 struct firedtv_tuner_status stat;
Rambaldia70f81c2009-01-17 14:47:34 +0100235 int err;
236
Stefan Richter15490792009-02-23 14:21:10 +0100237 if (avc_tuner_status(fdtv, &stat))
Rambaldia70f81c2009-01-17 14:47:34 +0100238 return -EINVAL;
239
Stefan Richter15490792009-02-23 14:21:10 +0100240 if (!fdtv_ca_ready(&stat))
Rambaldia70f81c2009-01-17 14:47:34 +0100241 return -EFAULT;
242
243 err = dvb_register_device(&fdtv->adapter, &fdtv->cadev,
244 &fdtv_ca, fdtv, DVB_DEVICE_CA);
245
Stefan Richter15490792009-02-23 14:21:10 +0100246 if (stat.ca_application_info == 0)
247 dev_err(fdtv->device, "CaApplicationInfo is not set\n");
248 if (stat.ca_date_time_request == 1)
Rambaldia70f81c2009-01-17 14:47:34 +0100249 avc_ca_get_time_date(fdtv, &fdtv->ca_time_interval);
250
251 return err;
252}
253
254void fdtv_ca_release(struct firedtv *fdtv)
255{
Markus Elfringd3fe22f2014-11-20 06:49:07 -0300256 dvb_unregister_device(fdtv->cadev);
Rambaldia70f81c2009-01-17 14:47:34 +0100257}