blob: 78cc28f36914bcf3fde09f2ce7c74328f063a0ae [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
Stefan Richter612262a2008-08-26 00:17:30 +020013#ifndef _FIREDTV_H
14#define _FIREDTV_H
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -080015
Stefan Richter612262a2008-08-26 00:17:30 +020016#include <linux/dvb/dmx.h>
17#include <linux/dvb/frontend.h>
18#include <linux/list.h>
Stefan Richter87918332009-11-08 18:30:54 -030019#include <linux/mod_devicetable.h>
Stefan Richter612262a2008-08-26 00:17:30 +020020#include <linux/mutex.h>
21#include <linux/spinlock_types.h>
22#include <linux/types.h>
23#include <linux/wait.h>
24#include <linux/workqueue.h>
Stefan Richter612262a2008-08-26 00:17:30 +020025
26#include <demux.h>
27#include <dmxdev.h>
28#include <dvb_demux.h>
Stefan Richter8ae83cd2008-11-02 13:45:00 +010029#include <dvb_frontend.h>
Stefan Richter612262a2008-08-26 00:17:30 +020030#include <dvb_net.h>
31#include <dvbdev.h>
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -080032
Stefan Richter15490792009-02-23 14:21:10 +010033struct firedtv_tuner_status {
34 unsigned active_system:8;
35 unsigned searching:1;
36 unsigned moving:1;
37 unsigned no_rf:1;
38 unsigned input:1;
39 unsigned selected_antenna:7;
40 unsigned ber:32;
41 unsigned signal_strength:8;
42 unsigned raster_frequency:2;
43 unsigned rf_frequency:22;
44 unsigned man_dep_info_length:8;
45 unsigned front_end_error:1;
46 unsigned antenna_error:1;
47 unsigned front_end_power_status:1;
48 unsigned power_supply:1;
49 unsigned carrier_noise_ratio:16;
50 unsigned power_supply_voltage:8;
51 unsigned antenna_voltage:8;
52 unsigned firewire_bus_voltage:8;
53 unsigned ca_mmi:1;
54 unsigned ca_pmt_reply:1;
55 unsigned ca_date_time_request:1;
56 unsigned ca_application_info:1;
57 unsigned ca_module_present_status:1;
58 unsigned ca_dvb_flag:1;
59 unsigned ca_error_flag:1;
60 unsigned ca_initialization_status:1;
61};
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -080062
63enum model_type {
Rambaldia70f81c2009-01-17 14:47:34 +010064 FIREDTV_UNKNOWN = 0,
65 FIREDTV_DVB_S = 1,
66 FIREDTV_DVB_C = 2,
67 FIREDTV_DVB_T = 3,
68 FIREDTV_DVB_S2 = 4,
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -080069};
70
Stefan Richter15490792009-02-23 14:21:10 +010071struct device;
Stefan Richter8ae83cd2008-11-02 13:45:00 +010072struct input_dev;
Stefan Richter15490792009-02-23 14:21:10 +010073struct firedtv;
74
75struct firedtv_backend {
Stefan Richter3fb80ef2009-11-18 16:02:01 -030076 int (*lock)(struct firedtv *fdtv, u64 addr, void *data);
Stefan Richter53756592009-11-18 16:01:34 -030077 int (*read)(struct firedtv *fdtv, u64 addr, void *data);
Stefan Richter15490792009-02-23 14:21:10 +010078 int (*write)(struct firedtv *fdtv, u64 addr, void *data, size_t len);
79 int (*start_iso)(struct firedtv *fdtv);
80 void (*stop_iso)(struct firedtv *fdtv);
81};
Stefan Richter612262a2008-08-26 00:17:30 +020082
Rambaldia70f81c2009-01-17 14:47:34 +010083struct firedtv {
Stefan Richter15490792009-02-23 14:21:10 +010084 struct device *device;
85 struct list_head list;
86
Stefan Richter8ae83cd2008-11-02 13:45:00 +010087 struct dvb_adapter adapter;
88 struct dmxdev dmxdev;
89 struct dvb_demux demux;
90 struct dmx_frontend frontend;
91 struct dvb_net dvbnet;
92 struct dvb_frontend fe;
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -080093
Stefan Richter8ae83cd2008-11-02 13:45:00 +010094 struct dvb_device *cadev;
95 int ca_last_command;
96 int ca_time_interval;
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -080097
Stefan Richter8ae83cd2008-11-02 13:45:00 +010098 struct mutex avc_mutex;
99 wait_queue_head_t avc_wait;
100 bool avc_reply_received;
101 struct work_struct remote_ctrl_work;
102 struct input_dev *remote_ctrl_dev;
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -0800103
Stefan Richter15490792009-02-23 14:21:10 +0100104 enum model_type type;
105 char subunit;
106 char isochannel;
107 fe_sec_voltage_t voltage;
108 fe_sec_tone_mode_t tone;
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -0800109
Stefan Richter15490792009-02-23 14:21:10 +0100110 const struct firedtv_backend *backend;
111 void *backend_data;
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -0800112
Stefan Richter15490792009-02-23 14:21:10 +0100113 struct mutex demux_mutex;
114 unsigned long channel_active;
115 u16 channel_pid[16];
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -0800116
Stefan Richter3fb80ef2009-11-18 16:02:01 -0300117 int avc_data_length;
118 u8 avc_data[512];
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200119};
120
Stefan Richter15490792009-02-23 14:21:10 +0100121/* firedtv-1394.c */
122#ifdef CONFIG_DVB_FIREDTV_IEEE1394
Stefan Richter87918332009-11-08 18:30:54 -0300123int fdtv_1394_init(void);
Stefan Richter15490792009-02-23 14:21:10 +0100124void fdtv_1394_exit(void);
125#else
Stefan Richter87918332009-11-08 18:30:54 -0300126static inline int fdtv_1394_init(void) { return 0; }
Stefan Richter15490792009-02-23 14:21:10 +0100127static inline void fdtv_1394_exit(void) {}
128#endif
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200129
Stefan Richter15490792009-02-23 14:21:10 +0100130/* firedtv-avc.c */
131int avc_recv(struct firedtv *fdtv, void *data, size_t length);
132int avc_tuner_status(struct firedtv *fdtv, struct firedtv_tuner_status *stat);
133struct dvb_frontend_parameters;
134int avc_tuner_dsd(struct firedtv *fdtv, struct dvb_frontend_parameters *params);
135int avc_tuner_set_pids(struct firedtv *fdtv, unsigned char pidc, u16 pid[]);
136int avc_tuner_get_ts(struct firedtv *fdtv);
137int avc_identify_subunit(struct firedtv *fdtv);
138struct dvb_diseqc_master_cmd;
139int avc_lnb_control(struct firedtv *fdtv, char voltage, char burst,
140 char conttone, char nrdiseq,
141 struct dvb_diseqc_master_cmd *diseqcmd);
142void avc_remote_ctrl_work(struct work_struct *work);
143int avc_register_remote_control(struct firedtv *fdtv);
144int avc_ca_app_info(struct firedtv *fdtv, char *app_info, unsigned int *len);
145int avc_ca_info(struct firedtv *fdtv, char *app_info, unsigned int *len);
146int avc_ca_reset(struct firedtv *fdtv);
147int avc_ca_pmt(struct firedtv *fdtv, char *app_info, int length);
148int avc_ca_get_time_date(struct firedtv *fdtv, int *interval);
149int avc_ca_enter_menu(struct firedtv *fdtv);
150int avc_ca_get_mmi(struct firedtv *fdtv, char *mmi_object, unsigned int *len);
151int cmp_establish_pp_connection(struct firedtv *fdtv, int plug, int channel);
152void cmp_break_pp_connection(struct firedtv *fdtv, int plug, int channel);
Henrik Kureliddf4846c2008-08-01 10:00:45 +0200153
Stefan Richter15490792009-02-23 14:21:10 +0100154/* firedtv-ci.c */
155int fdtv_ca_register(struct firedtv *fdtv);
156void fdtv_ca_release(struct firedtv *fdtv);
Stefan Richter612262a2008-08-26 00:17:30 +0200157
Rambaldia70f81c2009-01-17 14:47:34 +0100158/* firedtv-dvb.c */
159int fdtv_start_feed(struct dvb_demux_feed *dvbdmxfeed);
160int fdtv_stop_feed(struct dvb_demux_feed *dvbdmxfeed);
Stefan Richter15490792009-02-23 14:21:10 +0100161int fdtv_dvb_register(struct firedtv *fdtv);
162void fdtv_dvb_unregister(struct firedtv *fdtv);
163struct firedtv *fdtv_alloc(struct device *dev,
164 const struct firedtv_backend *backend,
165 const char *name, size_t name_len);
166extern const char *fdtv_model_names[];
Stefan Richter87918332009-11-08 18:30:54 -0300167extern const struct ieee1394_device_id fdtv_id_table[];
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -0800168
Rambaldia70f81c2009-01-17 14:47:34 +0100169/* firedtv-fe.c */
170void fdtv_frontend_init(struct firedtv *fdtv);
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -0800171
Stefan Richter87918332009-11-08 18:30:54 -0300172/* firedtv-fw.c */
173#ifdef CONFIG_DVB_FIREDTV_FIREWIRE
174int fdtv_fw_init(void);
175void fdtv_fw_exit(void);
176#else
177static inline int fdtv_fw_init(void) { return 0; }
178static inline void fdtv_fw_exit(void) {}
179#endif
180
Stefan Richter15490792009-02-23 14:21:10 +0100181/* firedtv-rc.c */
182#ifdef CONFIG_DVB_FIREDTV_INPUT
183int fdtv_register_rc(struct firedtv *fdtv, struct device *dev);
184void fdtv_unregister_rc(struct firedtv *fdtv);
185void fdtv_handle_rc(struct firedtv *fdtv, unsigned int code);
186#else
187static inline int fdtv_register_rc(struct firedtv *fdtv,
188 struct device *dev) { return 0; }
189static inline void fdtv_unregister_rc(struct firedtv *fdtv) {}
190static inline void fdtv_handle_rc(struct firedtv *fdtv, unsigned int code) {}
191#endif
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -0800192
Stefan Richter612262a2008-08-26 00:17:30 +0200193#endif /* _FIREDTV_H */