2 * Card-specific functions for the Siano SMS1xxx USB dongle
4 * Copyright (c) 2008 Michael Krufky <mkrufky@linuxtv.org>
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;
10 * Software distributed under the License is distributed on an "AS IS"
11 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
13 * See the GNU General Public License for more details.
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.
20 #ifndef __SMS_CARDS_H__
21 #define __SMS_CARDS_H__
23 #include <linux/usb.h>
24 #include "smscoreapi.h"
27 #define SMS_BOARD_UNKNOWN 0
28 #define SMS1XXX_BOARD_SIANO_STELLAR 1
29 #define SMS1XXX_BOARD_SIANO_NOVA_A 2
30 #define SMS1XXX_BOARD_SIANO_NOVA_B 3
31 #define SMS1XXX_BOARD_SIANO_VEGA 4
32 #define SMS1XXX_BOARD_HAUPPAUGE_CATAMOUNT 5
33 #define SMS1XXX_BOARD_HAUPPAUGE_OKEMO_A 6
34 #define SMS1XXX_BOARD_HAUPPAUGE_OKEMO_B 7
35 #define SMS1XXX_BOARD_HAUPPAUGE_WINDHAM 8
36 #define SMS1XXX_BOARD_HAUPPAUGE_TIGER_MINICARD 9
37 #define SMS1XXX_BOARD_HAUPPAUGE_TIGER_MINICARD_R2 10
38 #define SMS1XXX_BOARD_SIANO_NICE 11
39 #define SMS1XXX_BOARD_SIANO_VENICE 12
40 #define SMS1XXX_BOARD_SIANO_STELLAR_ROM 13
41 #define SMS1XXX_BOARD_ZTE_DVB_DATA_CARD 14
42 #define SMS1XXX_BOARD_ONDA_MDTV_DATA_CARD 15
43 #define SMS1XXX_BOARD_SIANO_MING 16
44 #define SMS1XXX_BOARD_SIANO_PELE 17
45 #define SMS1XXX_BOARD_SIANO_RIO 18
46 #define SMS1XXX_BOARD_SIANO_DENVER_1530 19
47 #define SMS1XXX_BOARD_SIANO_DENVER_2160 20
49 struct sms_board_gpio_cfg
{
58 int foreign_lna0_ctrl
;
59 int foreign_lna1_ctrl
;
60 int foreign_lna2_ctrl
;
74 int mrc_gp0
; /* mrcs spi int */
79 int host_spi_gsp_ts_int
;
83 enum sms_device_type_st type
;
84 char *name
, *fw
[DEVICE_MODE_MAX
];
85 struct sms_board_gpio_cfg board_cfg
;
86 char *rc_codes
; /* Name of IR codes table */
89 int led_power
, led_hi
, led_lo
, lna_ctrl
, rf_switch
;
95 struct sms_antenna_config_ST
*antenna_config
;
98 struct sms_board
*sms_get_board(unsigned id
);
100 extern struct smscore_device_t
*coredev
;
102 enum SMS_BOARD_EVENTS
{
103 BOARD_EVENT_POWER_INIT
,
104 BOARD_EVENT_POWER_SUSPEND
,
105 BOARD_EVENT_POWER_RESUME
,
107 BOARD_EVENT_SCAN_PROG
,
108 BOARD_EVENT_SCAN_COMP
,
109 BOARD_EVENT_EMERGENCY_WARNING_SIGNAL
,
111 BOARD_EVENT_FE_UNLOCK
,
112 BOARD_EVENT_DEMOD_LOCK
,
113 BOARD_EVENT_DEMOD_UNLOCK
,
114 BOARD_EVENT_RECEPTION_MAX_4
,
115 BOARD_EVENT_RECEPTION_3
,
116 BOARD_EVENT_RECEPTION_2
,
117 BOARD_EVENT_RECEPTION_1
,
118 BOARD_EVENT_RECEPTION_LOST_0
,
119 BOARD_EVENT_MULTIPLEX_OK
,
120 BOARD_EVENT_MULTIPLEX_ERRORS
123 int sms_board_event(struct smscore_device_t
*coredev
,
124 enum SMS_BOARD_EVENTS gevent
);
126 int sms_board_setup(struct smscore_device_t
*coredev
);
128 #define SMS_LED_OFF 0
131 int sms_board_led_feedback(struct smscore_device_t
*coredev
, int led
);
132 int sms_board_power(struct smscore_device_t
*coredev
, int onoff
);
133 int sms_board_lna_control(struct smscore_device_t
*coredev
, int onoff
);
135 extern int sms_board_load_modules(int id
);
137 #endif /* __SMS_CARDS_H__ */