blob: 6f1f3042e21a54a5ce3f70be303601d66d5670dc [file] [log] [blame]
Patrick Boettcherfb41f5a72005-07-07 17:58:23 -07001/* Common header file of Linux driver for the WideView/ Yakumo/ Hama/
2 * Typhoon/ Yuan DVB-T USB2.0 receiver.
Johannes Stezenbach776338e2005-06-23 22:02:35 -07003 *
4 * Copyright (C) 2004-5 Patrick Boettcher (patrick.boettcher@desy.de)
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation, version 2.
9 *
10 * see Documentation/dvb/README.dvb-usb for more information
11 */
12#ifndef _DVB_USB_DTT200U_H_
13#define _DVB_USB_DTT200U_H_
14
15#define DVB_USB_LOG_PREFIX "dtt200u"
16#include "dvb-usb.h"
17
18extern int dvb_usb_dtt200u_debug;
19#define deb_info(args...) dprintk(dvb_usb_dtt200u_debug,0x01,args)
20#define deb_xfer(args...) dprintk(dvb_usb_dtt200u_debug,0x02,args)
21
22/* guessed protocol description (reverse engineered):
23 * read
24 * 00 - USB type 0x02 for usb2.0, 0x01 for usb1.1
Johannes Stezenbach776338e2005-06-23 22:02:35 -070025 * 88 - locking 2 bytes (0x80 0x40 == no signal, 0x89 0x20 == nice signal)
Johannes Stezenbach776338e2005-06-23 22:02:35 -070026 */
27
Patrick Boettcherd590f9c2005-07-07 17:58:33 -070028#define GET_SPEED 0x00
29#define GET_TUNE_STATUS 0x81
30#define GET_RC_CODE 0x84
31#define GET_CONFIGURATION 0x88
32#define GET_AGC 0x89
33#define GET_SNR 0x8a
34#define GET_VIT_ERR_CNT 0x8c
35#define GET_RS_ERR_CNT 0x8d
36#define GET_RS_UNCOR_BLK_CNT 0x8e
Johannes Stezenbach776338e2005-06-23 22:02:35 -070037
38/* write
Patrick Boettcherd590f9c2005-07-07 17:58:33 -070039 * 01 - init
Johannes Stezenbach776338e2005-06-23 22:02:35 -070040 * 02 - frequency (divided by 250000)
41 * 03 - bandwidth
42 * 04 - pid table (index pid(7:0) pid(12:8))
43 * 05 - reset the pid table
Patrick Boettcherd590f9c2005-07-07 17:58:33 -070044 * 08 - transfer switch
Johannes Stezenbach776338e2005-06-23 22:02:35 -070045 */
46
Patrick Boettcherd590f9c2005-07-07 17:58:33 -070047#define SET_INIT 0x01
48#define SET_RF_FREQ 0x02
Johannes Stezenbach776338e2005-06-23 22:02:35 -070049#define SET_BANDWIDTH 0x03
50#define SET_PID_FILTER 0x04
51#define RESET_PID_FILTER 0x05
Patrick Boettcherd590f9c2005-07-07 17:58:33 -070052#define SET_STREAMING 0x08
Johannes Stezenbach776338e2005-06-23 22:02:35 -070053
54extern struct dvb_frontend * dtt200u_fe_attach(struct dvb_usb_device *d);
55
56#endif