1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
/*
* Copyright(c) 2008 SEC Corp. All Rights Reserved
*
* File name : dmbdrv_wrap_fc8050.h
*
* Description : fc8050 tuner control driver
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* History :
* ----------------------------------------------------------------------
*
*/
#ifndef __DMBDRV_WRAP_FC8050_H
#define __DMBDRV_WRAP_FC8050_H
#include <linux/string.h>
#include <linux/delay.h>
#define TDMB_SUCCESS 1
#define TDMB_FAIL 0
#define USER_APPL_NUM_MAX 12
#define USER_APPL_DATA_SIZE_MAX 24
struct sub_channel_info_type {
unsigned short uiEnsembleID;
unsigned char ucSubchID;
unsigned short uiStartAddress;
unsigned char ucTMId;
unsigned char ucServiceType;
unsigned long ulServiceID;
unsigned char num_of_user_appl;
unsigned short user_appl_type[USER_APPL_NUM_MAX];
unsigned char user_appl_length[USER_APPL_NUM_MAX];
unsigned char user_appl_data
[USER_APPL_NUM_MAX][USER_APPL_DATA_SIZE_MAX];
};
void dmb_drv_isr(void);
unsigned char dmb_drv_init(void);
unsigned char dmb_drv_deinit(void);
unsigned char dmb_drv_scan_ch(unsigned long frequency);
int dmb_drv_get_dmb_sub_ch_cnt(void);
int dmb_drv_get_dab_sub_ch_cnt(void);
char *dmb_drv_get_ensemble_label(void);
char *dmb_drv_get_sub_ch_dmb_label(int subchannel_count);
char *dmb_drv_get_sub_ch_dab_label(int subchannel_count);
struct sub_channel_info_type *dmb_drv_get_fic_dmb(int subchannel_count);
struct sub_channel_info_type *dmb_drv_get_fic_dab(int subchannel_count);
unsigned char dmb_drv_set_ch(
unsigned long frequency
, unsigned char subchannel
, unsigned char sevice_type);
unsigned short dmb_drv_get_ber(void);
unsigned char dmb_drv_get_ant(void);
signed short dmb_drv_get_rssi(void);
int tdmb_interrupt_fic_callback(u32 userdata, u8 *data, int length);
int tdmb_interrupt_msc_callback(
u32 userdata, u8 subchannel_id, u8 *data, int length);
#endif
|