blob: 5bd4fb4d3a42a79e201a512395795fd3dec6106a [file] [log] [blame]
Michael Krufky1c11d542008-06-18 22:09:55 -03001/*
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
Michael Krufky09a29b72008-09-03 16:48:17 -03007 * it under the terms of the GNU General Public License version 2 as
Michael Krufky1c11d542008-06-18 22:09:55 -03008 * 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
Michael Krufkycf1cfe12008-06-28 16:45:36 -030027#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
Michael Krufky44f71c32008-06-28 23:55:36 -030031#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
Michael Krufky3f7d99f2008-11-22 11:21:02 -030035#define SMS1XXX_BOARD_HAUPPAUGE_TIGER_MINICARD 9
Michael Krufkydff65742008-11-22 14:33:00 -030036#define SMS1XXX_BOARD_HAUPPAUGE_TIGER_MINICARD_R2 10
Michael Krufky1c11d542008-06-18 22:09:55 -030037
Uri Shkolnik3b2d18e2009-05-14 16:31:23 -030038struct sms_board_gpio_cfg {
39 int lna_vhf_exist;
40 int lna_vhf_ctrl;
41 int lna_uhf_exist;
42 int lna_uhf_ctrl;
43 int lna_uhf_d_ctrl;
44 int lna_sband_exist;
45 int lna_sband_ctrl;
46 int lna_sband_d_ctrl;
47 int foreign_lna0_ctrl;
48 int foreign_lna1_ctrl;
49 int foreign_lna2_ctrl;
50 int rf_switch_vhf;
51 int rf_switch_uhf;
52 int rf_switch_sband;
53 int leds_power;
54 int led0;
55 int led1;
56 int led2;
57 int led3;
58 int led4;
59 int ir;
60 int eeprom_wp;
61 int mrc_sense;
62 int mrc_pdn_resetn;
63 int mrc_gp0; /* mrcs spi int */
64 int mrc_gp1;
65 int mrc_gp2;
66 int mrc_gp3;
67 int mrc_gp4;
68 int host_spi_gsp_ts_int;
69};
70
Michael Krufky1c11d542008-06-18 22:09:55 -030071struct sms_board {
Michael Krufky1c11d542008-06-18 22:09:55 -030072 enum sms_device_type_st type;
Michael Krufky02aea4f2008-06-26 04:58:30 -030073 char *name, *fw[DEVICE_MODE_MAX];
Uri Shkolnik3b2d18e2009-05-14 16:31:23 -030074 struct sms_board_gpio_cfg board_cfg;
Michael Krufky250fa672008-11-16 22:45:42 -030075
76 /* gpios */
Michael Krufkyd54093a2008-12-16 02:56:08 -030077 int led_power, led_hi, led_lo, lna_ctrl, rf_switch;
Michael Krufky1c11d542008-06-18 22:09:55 -030078};
79
80struct sms_board *sms_get_board(int id);
81
Michael Krufky250fa672008-11-16 22:45:42 -030082int sms_board_setup(struct smscore_device_t *coredev);
83
Michael Krufky7b29e102008-11-22 15:32:19 -030084#define SMS_LED_OFF 0
85#define SMS_LED_LO 1
86#define SMS_LED_HI 2
87int sms_board_led_feedback(struct smscore_device_t *coredev, int led);
Michael Krufky7a6fbed2008-11-22 14:26:37 -030088int sms_board_power(struct smscore_device_t *coredev, int onoff);
Michael Krufkyd54093a2008-12-16 02:56:08 -030089int sms_board_lna_control(struct smscore_device_t *coredev, int onoff);
Michael Krufky7a6fbed2008-11-22 14:26:37 -030090
Michael Krufky05860f22008-08-31 17:39:58 -030091extern int sms_board_load_modules(int id);
92
Michael Krufky1c11d542008-06-18 22:09:55 -030093#endif /* __SMS_CARDS_H__ */