usb: dwc_otg_310: Fixed that otg-host cannot transport LS device data.
[firefly-linux-kernel-4.4.55.git] / drivers / cmmb / siano / sms-cards.h
1 /*
2  *  Card-specific functions for the Siano SMS1xxx USB dongle
3  *
4  *  Copyright (c) 2008 Michael Krufky <mkrufky@linuxtv.org>
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License version 2 as
8  *  published by the Free Software Foundation;
9  *
10  *  Software distributed under the License is distributed on an "AS IS"
11  *  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
12  *
13  *  See the GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program; if not, write to the Free Software
17  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19
20 #ifndef __SMS_CARDS_H__
21 #define __SMS_CARDS_H__
22
23 #include <linux/usb.h>
24 #include "smscoreapi.h"
25
26 #define SMS_BOARD_UNKNOWN 0
27 #define SMS1XXX_BOARD_SIANO_STELLAR 1
28 #define SMS1XXX_BOARD_SIANO_NOVA_A  2
29 #define SMS1XXX_BOARD_SIANO_NOVA_B  3
30 #define SMS1XXX_BOARD_SIANO_VEGA    4
31 #define SMS1XXX_BOARD_HAUPPAUGE_CATAMOUNT 5
32 #define SMS1XXX_BOARD_HAUPPAUGE_OKEMO_A 6
33 #define SMS1XXX_BOARD_HAUPPAUGE_OKEMO_B 7
34 #define SMS1XXX_BOARD_HAUPPAUGE_WINDHAM 8
35 #define SMS1XXX_BOARD_HAUPPAUGE_TIGER_MINICARD 9
36 #define SMS1XXX_BOARD_HAUPPAUGE_TIGER_MINICARD_R2 10
37 #define SMS1XXX_BOARD_SIANO_NICE        11
38 #define SMS1XXX_BOARD_SIANO_VENICE      12
39
40 struct sms_board_gpio_cfg {
41         int foreign_lna0_ctrl;
42         int foreign_lna1_ctrl;
43         int foreign_lna2_ctrl;
44         int lna_vhf_exist;
45         int lna_vhf_ctrl;
46         int lna_uhf_exist;
47         int lna_uhf_ctrl;
48         int lna_uhf_d_ctrl;
49         int lna_sband_exist;
50         int lna_sband_ctrl;
51         int lna_sband_d_ctrl;
52         int leds_power;
53         int led0;
54         int led1;
55         int led2;
56         int led3;
57         int led4;
58         int ir;
59         int eeprom_wp;
60         int mrc_sense;
61         int mrc_pdn_resetn;
62         int mrc_gp0; /* mrcs spi int */
63         int mrc_gp1;
64         int mrc_gp2;
65         int mrc_gp3;
66         int mrc_gp4;
67         int host_spi_gsp_ts_int;
68 };
69
70 struct sms_board {
71         enum sms_device_type_st type;
72         char *name, *fw[DEVICE_MODE_MAX];
73         struct sms_board_gpio_cfg board_cfg;
74 };
75
76 struct sms_board *sms_get_board(int id);
77
78 extern struct usb_device_id smsusb_id_table[];
79 extern struct smscore_device_t *coredev;
80
81 enum SMS_BOARD_EVENTS {
82         BOARD_EVENT_POWER_INIT,
83         BOARD_EVENT_POWER_SUSPEND,
84         BOARD_EVENT_POWER_RESUME,
85         BOARD_EVENT_BIND,
86         BOARD_EVENT_SCAN_PROG,
87         BOARD_EVENT_SCAN_COMP,
88         BOARD_EVENT_EMERGENCY_WARNING_SIGNAL,
89         BOARD_EVENT_FE_LOCK,
90         BOARD_EVENT_FE_UNLOCK,
91         BOARD_EVENT_DEMOD_LOCK,
92         BOARD_EVENT_DEMOD_UNLOCK,
93         BOARD_EVENT_RECEPTION_MAX_4,
94         BOARD_EVENT_RECEPTION_3,
95         BOARD_EVENT_RECEPTION_2,
96         BOARD_EVENT_RECEPTION_1,
97         BOARD_EVENT_RECEPTION_LOST_0,
98         BOARD_EVENT_MULTIPLEX_OK,
99         BOARD_EVENT_MULTIPLEX_ERRORS
100 };
101
102 int sms_board_event(struct smscore_device_t *coredev,
103                 enum SMS_BOARD_EVENTS gevent);
104
105 #endif /* __SMS_CARDS_H__ */