]> Pileus Git - ~andy/linux/blob - drivers/media/common/siano/smscoreapi.h
[media] siano: add MODULE_FIRMWARE() macros
[~andy/linux] / drivers / media / common / siano / smscoreapi.h
1 /****************************************************************
2
3 Siano Mobile Silicon, Inc.
4 MDTV receiver kernel modules.
5 Copyright (C) 2006-2008, Uri Shkolnik, Anatoly Greenblat
6
7 This program is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 2 of the License, or
10 (at your option) any later version.
11
12  This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
20 ****************************************************************/
21
22 #ifndef __SMS_CORE_API_H__
23 #define __SMS_CORE_API_H__
24
25 #include <linux/device.h>
26 #include <linux/list.h>
27 #include <linux/mm.h>
28 #include <linux/scatterlist.h>
29 #include <linux/types.h>
30 #include <linux/mutex.h>
31 #include <linux/wait.h>
32 #include <linux/timer.h>
33
34 #include <asm/page.h>
35
36 #include "smsir.h"
37
38 #define kmutex_init(_p_) mutex_init(_p_)
39 #define kmutex_lock(_p_) mutex_lock(_p_)
40 #define kmutex_trylock(_p_) mutex_trylock(_p_)
41 #define kmutex_unlock(_p_) mutex_unlock(_p_)
42
43 #ifndef min
44 #define min(a, b) (((a) < (b)) ? (a) : (b))
45 #endif
46
47 /*
48  * Define the firmware names used by the driver.
49  * Those should match what's used at smscoreapi.c and sms-cards.c
50  * including the MODULE_FIRMWARE() macros at the end of smscoreapi.c
51  */
52 #define SMS_FW_ATSC_DENVER         "atsc_denver.inp"
53 #define SMS_FW_CMMB_MING_APP       "cmmb_ming_app.inp"
54 #define SMS_FW_CMMB_VEGA_12MHZ     "cmmb_vega_12mhz.inp"
55 #define SMS_FW_CMMB_VENICE_12MHZ   "cmmb_venice_12mhz.inp"
56 #define SMS_FW_DVBH_RIO            "dvbh_rio.inp"
57 #define SMS_FW_DVB_NOVA_12MHZ_B0   "dvb_nova_12mhz_b0.inp"
58 #define SMS_FW_DVB_NOVA_12MHZ      "dvb_nova_12mhz.inp"
59 #define SMS_FW_DVB_RIO             "dvb_rio.inp"
60 #define SMS_FW_FM_RADIO            "fm_radio.inp"
61 #define SMS_FW_FM_RADIO_RIO        "fm_radio_rio.inp"
62 #define SMS_FW_DVBT_HCW_55XXX      "sms1xxx-hcw-55xxx-dvbt-02.fw"
63 #define SMS_FW_ISDBT_HCW_55XXX     "sms1xxx-hcw-55xxx-isdbt-02.fw"
64 #define SMS_FW_ISDBT_NOVA_12MHZ_B0 "isdbt_nova_12mhz_b0.inp"
65 #define SMS_FW_ISDBT_NOVA_12MHZ    "isdbt_nova_12mhz.inp"
66 #define SMS_FW_ISDBT_PELE          "isdbt_pele.inp"
67 #define SMS_FW_ISDBT_RIO           "isdbt_rio.inp"
68 #define SMS_FW_DVBT_NOVA_A         "sms1xxx-nova-a-dvbt-01.fw"
69 #define SMS_FW_DVBT_NOVA_B         "sms1xxx-nova-b-dvbt-01.fw"
70 #define SMS_FW_DVBT_STELLAR        "sms1xxx-stellar-dvbt-01.fw"
71 #define SMS_FW_TDMB_DENVER         "tdmb_denver.inp"
72 #define SMS_FW_TDMB_NOVA_12MHZ_B0  "tdmb_nova_12mhz_b0.inp"
73 #define SMS_FW_TDMB_NOVA_12MHZ     "tdmb_nova_12mhz.inp"
74
75 #define SMS_PROTOCOL_MAX_RAOUNDTRIP_MS                  (10000)
76 #define SMS_ALLOC_ALIGNMENT                             128
77 #define SMS_DMA_ALIGNMENT                               16
78 #define SMS_ALIGN_ADDRESS(addr) \
79         ((((uintptr_t)(addr)) + (SMS_DMA_ALIGNMENT-1)) & ~(SMS_DMA_ALIGNMENT-1))
80
81 #define SMS_DEVICE_FAMILY1                              0
82 #define SMS_DEVICE_FAMILY2                              1
83 #define SMS_ROM_NO_RESPONSE                             2
84 #define SMS_DEVICE_NOT_READY                            0x8000000
85
86 enum sms_device_type_st {
87         SMS_UNKNOWN_TYPE = -1,
88         SMS_STELLAR = 0,
89         SMS_NOVA_A0,
90         SMS_NOVA_B0,
91         SMS_VEGA,
92         SMS_VENICE,
93         SMS_MING,
94         SMS_PELE,
95         SMS_RIO,
96         SMS_DENVER_1530,
97         SMS_DENVER_2160,
98         SMS_NUM_OF_DEVICE_TYPES
99 };
100
101 enum sms_power_mode_st {
102         SMS_POWER_MODE_ACTIVE,
103         SMS_POWER_MODE_SUSPENDED
104 };
105
106 struct smscore_device_t;
107 struct smscore_client_t;
108 struct smscore_buffer_t;
109
110 typedef int (*hotplug_t)(struct smscore_device_t *coredev,
111                          struct device *device, int arrival);
112
113 typedef int (*setmode_t)(void *context, int mode);
114 typedef void (*detectmode_t)(void *context, int *mode);
115 typedef int (*sendrequest_t)(void *context, void *buffer, size_t size);
116 typedef int (*loadfirmware_t)(void *context, void *buffer, size_t size);
117 typedef int (*preload_t)(void *context);
118 typedef int (*postload_t)(void *context);
119
120 typedef int (*onresponse_t)(void *context, struct smscore_buffer_t *cb);
121 typedef void (*onremove_t)(void *context);
122
123 struct smscore_buffer_t {
124         /* public members, once passed to clients can be changed freely */
125         struct list_head entry;
126         int size;
127         int offset;
128
129         /* private members, read-only for clients */
130         void *p;
131         dma_addr_t phys;
132         unsigned long offset_in_common;
133 };
134
135 struct smsdevice_params_t {
136         struct device   *device;
137
138         int                             buffer_size;
139         int                             num_buffers;
140
141         char                    devpath[32];
142         unsigned long   flags;
143
144         setmode_t               setmode_handler;
145         detectmode_t    detectmode_handler;
146         sendrequest_t   sendrequest_handler;
147         preload_t               preload_handler;
148         postload_t              postload_handler;
149
150         void                    *context;
151         enum sms_device_type_st device_type;
152 };
153
154 struct smsclient_params_t {
155         int                             initial_id;
156         int                             data_type;
157         onresponse_t    onresponse_handler;
158         onremove_t              onremove_handler;
159         void                    *context;
160 };
161
162 struct smscore_device_t {
163         struct list_head entry;
164
165         struct list_head clients;
166         struct list_head subclients;
167         spinlock_t clientslock;
168
169         struct list_head buffers;
170         spinlock_t bufferslock;
171         int num_buffers;
172
173         void *common_buffer;
174         int common_buffer_size;
175         dma_addr_t common_buffer_phys;
176
177         void *context;
178         struct device *device;
179
180         char devpath[32];
181         unsigned long device_flags;
182
183         setmode_t setmode_handler;
184         detectmode_t detectmode_handler;
185         sendrequest_t sendrequest_handler;
186         preload_t preload_handler;
187         postload_t postload_handler;
188
189         int mode, modes_supported;
190
191         /* host <--> device messages */
192         struct completion version_ex_done, data_download_done, trigger_done;
193         struct completion data_validity_done, device_ready_done;
194         struct completion init_device_done, reload_start_done, resume_done;
195         struct completion gpio_configuration_done, gpio_set_level_done;
196         struct completion gpio_get_level_done, ir_init_done;
197
198         /* Buffer management */
199         wait_queue_head_t buffer_mng_waitq;
200
201         /* GPIO */
202         int gpio_get_res;
203
204         /* Target hardware board */
205         int board_id;
206
207         /* Firmware */
208         u8 *fw_buf;
209         u32 fw_buf_size;
210         u16 fw_version;
211
212         /* Infrared (IR) */
213         struct ir_t ir;
214
215         /*
216          * Identify if device is USB or not.
217          * Used by smsdvb-sysfs to know the root node for debugfs
218          */
219         bool is_usb_device;
220
221         int led_state;
222 };
223
224 /* GPIO definitions for antenna frequency domain control (SMS8021) */
225 #define SMS_ANTENNA_GPIO_0                                      1
226 #define SMS_ANTENNA_GPIO_1                                      0
227
228 enum sms_bandwidth_mode {
229         BW_8_MHZ = 0,
230         BW_7_MHZ = 1,
231         BW_6_MHZ = 2,
232         BW_5_MHZ = 3,
233         BW_ISDBT_1SEG = 4,
234         BW_ISDBT_3SEG = 5,
235         BW_2_MHZ = 6,
236         BW_FM_RADIO = 7,
237         BW_ISDBT_13SEG = 8,
238         BW_1_5_MHZ = 15,
239         BW_UNKNOWN = 0xffff
240 };
241
242
243 #define MSG_HDR_FLAG_SPLIT_MSG                          4
244
245 #define MAX_GPIO_PIN_NUMBER                                     31
246
247 #define HIF_TASK                                                        11
248 #define HIF_TASK_SLAVE                                  22
249 #define HIF_TASK_SLAVE2                                 33
250 #define HIF_TASK_SLAVE3                                 44
251 #define SMS_HOST_LIB                                            150
252 #define DVBT_BDA_CONTROL_MSG_ID                         201
253
254 #define SMS_MAX_PAYLOAD_SIZE                            240
255 #define SMS_TUNE_TIMEOUT                                        500
256
257 enum msg_types {
258         MSG_TYPE_BASE_VAL = 500,
259         MSG_SMS_GET_VERSION_REQ = 503,
260         MSG_SMS_GET_VERSION_RES = 504,
261         MSG_SMS_MULTI_BRIDGE_CFG = 505,
262         MSG_SMS_GPIO_CONFIG_REQ = 507,
263         MSG_SMS_GPIO_CONFIG_RES = 508,
264         MSG_SMS_GPIO_SET_LEVEL_REQ = 509,
265         MSG_SMS_GPIO_SET_LEVEL_RES = 510,
266         MSG_SMS_GPIO_GET_LEVEL_REQ = 511,
267         MSG_SMS_GPIO_GET_LEVEL_RES = 512,
268         MSG_SMS_EEPROM_BURN_IND = 513,
269         MSG_SMS_LOG_ENABLE_CHANGE_REQ = 514,
270         MSG_SMS_LOG_ENABLE_CHANGE_RES = 515,
271         MSG_SMS_SET_MAX_TX_MSG_LEN_REQ = 516,
272         MSG_SMS_SET_MAX_TX_MSG_LEN_RES = 517,
273         MSG_SMS_SPI_HALFDUPLEX_TOKEN_HOST_TO_DEVICE = 518,
274         MSG_SMS_SPI_HALFDUPLEX_TOKEN_DEVICE_TO_HOST = 519,
275         MSG_SMS_BACKGROUND_SCAN_FLAG_CHANGE_REQ = 520,
276         MSG_SMS_BACKGROUND_SCAN_FLAG_CHANGE_RES = 521,
277         MSG_SMS_BACKGROUND_SCAN_SIGNAL_DETECTED_IND = 522,
278         MSG_SMS_BACKGROUND_SCAN_NO_SIGNAL_IND = 523,
279         MSG_SMS_CONFIGURE_RF_SWITCH_REQ = 524,
280         MSG_SMS_CONFIGURE_RF_SWITCH_RES = 525,
281         MSG_SMS_MRC_PATH_DISCONNECT_REQ = 526,
282         MSG_SMS_MRC_PATH_DISCONNECT_RES = 527,
283         MSG_SMS_RECEIVE_1SEG_THROUGH_FULLSEG_REQ = 528,
284         MSG_SMS_RECEIVE_1SEG_THROUGH_FULLSEG_RES = 529,
285         MSG_SMS_RECEIVE_VHF_VIA_VHF_INPUT_REQ = 530,
286         MSG_SMS_RECEIVE_VHF_VIA_VHF_INPUT_RES = 531,
287         MSG_WR_REG_RFT_REQ = 533,
288         MSG_WR_REG_RFT_RES = 534,
289         MSG_RD_REG_RFT_REQ = 535,
290         MSG_RD_REG_RFT_RES = 536,
291         MSG_RD_REG_ALL_RFT_REQ = 537,
292         MSG_RD_REG_ALL_RFT_RES = 538,
293         MSG_HELP_INT = 539,
294         MSG_RUN_SCRIPT_INT = 540,
295         MSG_SMS_EWS_INBAND_REQ = 541,
296         MSG_SMS_EWS_INBAND_RES = 542,
297         MSG_SMS_RFS_SELECT_REQ = 543,
298         MSG_SMS_RFS_SELECT_RES = 544,
299         MSG_SMS_MB_GET_VER_REQ = 545,
300         MSG_SMS_MB_GET_VER_RES = 546,
301         MSG_SMS_MB_WRITE_CFGFILE_REQ = 547,
302         MSG_SMS_MB_WRITE_CFGFILE_RES = 548,
303         MSG_SMS_MB_READ_CFGFILE_REQ = 549,
304         MSG_SMS_MB_READ_CFGFILE_RES = 550,
305         MSG_SMS_RD_MEM_REQ = 552,
306         MSG_SMS_RD_MEM_RES = 553,
307         MSG_SMS_WR_MEM_REQ = 554,
308         MSG_SMS_WR_MEM_RES = 555,
309         MSG_SMS_UPDATE_MEM_REQ = 556,
310         MSG_SMS_UPDATE_MEM_RES = 557,
311         MSG_SMS_ISDBT_ENABLE_FULL_PARAMS_SET_REQ = 558,
312         MSG_SMS_ISDBT_ENABLE_FULL_PARAMS_SET_RES = 559,
313         MSG_SMS_RF_TUNE_REQ = 561,
314         MSG_SMS_RF_TUNE_RES = 562,
315         MSG_SMS_ISDBT_ENABLE_HIGH_MOBILITY_REQ = 563,
316         MSG_SMS_ISDBT_ENABLE_HIGH_MOBILITY_RES = 564,
317         MSG_SMS_ISDBT_SB_RECEPTION_REQ = 565,
318         MSG_SMS_ISDBT_SB_RECEPTION_RES = 566,
319         MSG_SMS_GENERIC_EPROM_WRITE_REQ = 567,
320         MSG_SMS_GENERIC_EPROM_WRITE_RES = 568,
321         MSG_SMS_GENERIC_EPROM_READ_REQ = 569,
322         MSG_SMS_GENERIC_EPROM_READ_RES = 570,
323         MSG_SMS_EEPROM_WRITE_REQ = 571,
324         MSG_SMS_EEPROM_WRITE_RES = 572,
325         MSG_SMS_CUSTOM_READ_REQ = 574,
326         MSG_SMS_CUSTOM_READ_RES = 575,
327         MSG_SMS_CUSTOM_WRITE_REQ = 576,
328         MSG_SMS_CUSTOM_WRITE_RES = 577,
329         MSG_SMS_INIT_DEVICE_REQ = 578,
330         MSG_SMS_INIT_DEVICE_RES = 579,
331         MSG_SMS_ATSC_SET_ALL_IP_REQ = 580,
332         MSG_SMS_ATSC_SET_ALL_IP_RES = 581,
333         MSG_SMS_ATSC_START_ENSEMBLE_REQ = 582,
334         MSG_SMS_ATSC_START_ENSEMBLE_RES = 583,
335         MSG_SMS_SET_OUTPUT_MODE_REQ = 584,
336         MSG_SMS_SET_OUTPUT_MODE_RES = 585,
337         MSG_SMS_ATSC_IP_FILTER_GET_LIST_REQ = 586,
338         MSG_SMS_ATSC_IP_FILTER_GET_LIST_RES = 587,
339         MSG_SMS_SUB_CHANNEL_START_REQ = 589,
340         MSG_SMS_SUB_CHANNEL_START_RES = 590,
341         MSG_SMS_SUB_CHANNEL_STOP_REQ = 591,
342         MSG_SMS_SUB_CHANNEL_STOP_RES = 592,
343         MSG_SMS_ATSC_IP_FILTER_ADD_REQ = 593,
344         MSG_SMS_ATSC_IP_FILTER_ADD_RES = 594,
345         MSG_SMS_ATSC_IP_FILTER_REMOVE_REQ = 595,
346         MSG_SMS_ATSC_IP_FILTER_REMOVE_RES = 596,
347         MSG_SMS_ATSC_IP_FILTER_REMOVE_ALL_REQ = 597,
348         MSG_SMS_ATSC_IP_FILTER_REMOVE_ALL_RES = 598,
349         MSG_SMS_WAIT_CMD = 599,
350         MSG_SMS_ADD_PID_FILTER_REQ = 601,
351         MSG_SMS_ADD_PID_FILTER_RES = 602,
352         MSG_SMS_REMOVE_PID_FILTER_REQ = 603,
353         MSG_SMS_REMOVE_PID_FILTER_RES = 604,
354         MSG_SMS_FAST_INFORMATION_CHANNEL_REQ = 605,
355         MSG_SMS_FAST_INFORMATION_CHANNEL_RES = 606,
356         MSG_SMS_DAB_CHANNEL = 607,
357         MSG_SMS_GET_PID_FILTER_LIST_REQ = 608,
358         MSG_SMS_GET_PID_FILTER_LIST_RES = 609,
359         MSG_SMS_POWER_DOWN_REQ = 610,
360         MSG_SMS_POWER_DOWN_RES = 611,
361         MSG_SMS_ATSC_SLT_EXIST_IND = 612,
362         MSG_SMS_ATSC_NO_SLT_IND = 613,
363         MSG_SMS_GET_STATISTICS_REQ = 615,
364         MSG_SMS_GET_STATISTICS_RES = 616,
365         MSG_SMS_SEND_DUMP = 617,
366         MSG_SMS_SCAN_START_REQ = 618,
367         MSG_SMS_SCAN_START_RES = 619,
368         MSG_SMS_SCAN_STOP_REQ = 620,
369         MSG_SMS_SCAN_STOP_RES = 621,
370         MSG_SMS_SCAN_PROGRESS_IND = 622,
371         MSG_SMS_SCAN_COMPLETE_IND = 623,
372         MSG_SMS_LOG_ITEM = 624,
373         MSG_SMS_DAB_SUBCHANNEL_RECONFIG_REQ = 628,
374         MSG_SMS_DAB_SUBCHANNEL_RECONFIG_RES = 629,
375         MSG_SMS_HO_PER_SLICES_IND = 630,
376         MSG_SMS_HO_INBAND_POWER_IND = 631,
377         MSG_SMS_MANUAL_DEMOD_REQ = 632,
378         MSG_SMS_HO_TUNE_ON_REQ = 636,
379         MSG_SMS_HO_TUNE_ON_RES = 637,
380         MSG_SMS_HO_TUNE_OFF_REQ = 638,
381         MSG_SMS_HO_TUNE_OFF_RES = 639,
382         MSG_SMS_HO_PEEK_FREQ_REQ = 640,
383         MSG_SMS_HO_PEEK_FREQ_RES = 641,
384         MSG_SMS_HO_PEEK_FREQ_IND = 642,
385         MSG_SMS_MB_ATTEN_SET_REQ = 643,
386         MSG_SMS_MB_ATTEN_SET_RES = 644,
387         MSG_SMS_ENABLE_STAT_IN_I2C_REQ = 649,
388         MSG_SMS_ENABLE_STAT_IN_I2C_RES = 650,
389         MSG_SMS_SET_ANTENNA_CONFIG_REQ = 651,
390         MSG_SMS_SET_ANTENNA_CONFIG_RES = 652,
391         MSG_SMS_GET_STATISTICS_EX_REQ = 653,
392         MSG_SMS_GET_STATISTICS_EX_RES = 654,
393         MSG_SMS_SLEEP_RESUME_COMP_IND = 655,
394         MSG_SMS_SWITCH_HOST_INTERFACE_REQ = 656,
395         MSG_SMS_SWITCH_HOST_INTERFACE_RES = 657,
396         MSG_SMS_DATA_DOWNLOAD_REQ = 660,
397         MSG_SMS_DATA_DOWNLOAD_RES = 661,
398         MSG_SMS_DATA_VALIDITY_REQ = 662,
399         MSG_SMS_DATA_VALIDITY_RES = 663,
400         MSG_SMS_SWDOWNLOAD_TRIGGER_REQ = 664,
401         MSG_SMS_SWDOWNLOAD_TRIGGER_RES = 665,
402         MSG_SMS_SWDOWNLOAD_BACKDOOR_REQ = 666,
403         MSG_SMS_SWDOWNLOAD_BACKDOOR_RES = 667,
404         MSG_SMS_GET_VERSION_EX_REQ = 668,
405         MSG_SMS_GET_VERSION_EX_RES = 669,
406         MSG_SMS_CLOCK_OUTPUT_CONFIG_REQ = 670,
407         MSG_SMS_CLOCK_OUTPUT_CONFIG_RES = 671,
408         MSG_SMS_I2C_SET_FREQ_REQ = 685,
409         MSG_SMS_I2C_SET_FREQ_RES = 686,
410         MSG_SMS_GENERIC_I2C_REQ = 687,
411         MSG_SMS_GENERIC_I2C_RES = 688,
412         MSG_SMS_DVBT_BDA_DATA = 693,
413         MSG_SW_RELOAD_REQ = 697,
414         MSG_SMS_DATA_MSG = 699,
415         MSG_TABLE_UPLOAD_REQ = 700,
416         MSG_TABLE_UPLOAD_RES = 701,
417         MSG_SW_RELOAD_START_REQ = 702,
418         MSG_SW_RELOAD_START_RES = 703,
419         MSG_SW_RELOAD_EXEC_REQ = 704,
420         MSG_SW_RELOAD_EXEC_RES = 705,
421         MSG_SMS_SPI_INT_LINE_SET_REQ = 710,
422         MSG_SMS_SPI_INT_LINE_SET_RES = 711,
423         MSG_SMS_GPIO_CONFIG_EX_REQ = 712,
424         MSG_SMS_GPIO_CONFIG_EX_RES = 713,
425         MSG_SMS_WATCHDOG_ACT_REQ = 716,
426         MSG_SMS_WATCHDOG_ACT_RES = 717,
427         MSG_SMS_LOOPBACK_REQ = 718,
428         MSG_SMS_LOOPBACK_RES = 719,
429         MSG_SMS_RAW_CAPTURE_START_REQ = 720,
430         MSG_SMS_RAW_CAPTURE_START_RES = 721,
431         MSG_SMS_RAW_CAPTURE_ABORT_REQ = 722,
432         MSG_SMS_RAW_CAPTURE_ABORT_RES = 723,
433         MSG_SMS_RAW_CAPTURE_COMPLETE_IND = 728,
434         MSG_SMS_DATA_PUMP_IND = 729,
435         MSG_SMS_DATA_PUMP_REQ = 730,
436         MSG_SMS_DATA_PUMP_RES = 731,
437         MSG_SMS_FLASH_DL_REQ = 732,
438         MSG_SMS_EXEC_TEST_1_REQ = 734,
439         MSG_SMS_EXEC_TEST_1_RES = 735,
440         MSG_SMS_ENBALE_TS_INTERFACE_REQ = 736,
441         MSG_SMS_ENBALE_TS_INTERFACE_RES = 737,
442         MSG_SMS_SPI_SET_BUS_WIDTH_REQ = 738,
443         MSG_SMS_SPI_SET_BUS_WIDTH_RES = 739,
444         MSG_SMS_SEND_EMM_REQ = 740,
445         MSG_SMS_SEND_EMM_RES = 741,
446         MSG_SMS_DISABLE_TS_INTERFACE_REQ = 742,
447         MSG_SMS_DISABLE_TS_INTERFACE_RES = 743,
448         MSG_SMS_IS_BUF_FREE_REQ = 744,
449         MSG_SMS_IS_BUF_FREE_RES = 745,
450         MSG_SMS_EXT_ANTENNA_REQ = 746,
451         MSG_SMS_EXT_ANTENNA_RES = 747,
452         MSG_SMS_CMMB_GET_NET_OF_FREQ_REQ_OBSOLETE = 748,
453         MSG_SMS_CMMB_GET_NET_OF_FREQ_RES_OBSOLETE = 749,
454         MSG_SMS_BATTERY_LEVEL_REQ = 750,
455         MSG_SMS_BATTERY_LEVEL_RES = 751,
456         MSG_SMS_CMMB_INJECT_TABLE_REQ_OBSOLETE = 752,
457         MSG_SMS_CMMB_INJECT_TABLE_RES_OBSOLETE = 753,
458         MSG_SMS_FM_RADIO_BLOCK_IND = 754,
459         MSG_SMS_HOST_NOTIFICATION_IND = 755,
460         MSG_SMS_CMMB_GET_CONTROL_TABLE_REQ_OBSOLETE = 756,
461         MSG_SMS_CMMB_GET_CONTROL_TABLE_RES_OBSOLETE = 757,
462         MSG_SMS_CMMB_GET_NETWORKS_REQ = 760,
463         MSG_SMS_CMMB_GET_NETWORKS_RES = 761,
464         MSG_SMS_CMMB_START_SERVICE_REQ = 762,
465         MSG_SMS_CMMB_START_SERVICE_RES = 763,
466         MSG_SMS_CMMB_STOP_SERVICE_REQ = 764,
467         MSG_SMS_CMMB_STOP_SERVICE_RES = 765,
468         MSG_SMS_CMMB_ADD_CHANNEL_FILTER_REQ = 768,
469         MSG_SMS_CMMB_ADD_CHANNEL_FILTER_RES = 769,
470         MSG_SMS_CMMB_REMOVE_CHANNEL_FILTER_REQ = 770,
471         MSG_SMS_CMMB_REMOVE_CHANNEL_FILTER_RES = 771,
472         MSG_SMS_CMMB_START_CONTROL_INFO_REQ = 772,
473         MSG_SMS_CMMB_START_CONTROL_INFO_RES = 773,
474         MSG_SMS_CMMB_STOP_CONTROL_INFO_REQ = 774,
475         MSG_SMS_CMMB_STOP_CONTROL_INFO_RES = 775,
476         MSG_SMS_ISDBT_TUNE_REQ = 776,
477         MSG_SMS_ISDBT_TUNE_RES = 777,
478         MSG_SMS_TRANSMISSION_IND = 782,
479         MSG_SMS_PID_STATISTICS_IND = 783,
480         MSG_SMS_POWER_DOWN_IND = 784,
481         MSG_SMS_POWER_DOWN_CONF = 785,
482         MSG_SMS_POWER_UP_IND = 786,
483         MSG_SMS_POWER_UP_CONF = 787,
484         MSG_SMS_POWER_MODE_SET_REQ = 790,
485         MSG_SMS_POWER_MODE_SET_RES = 791,
486         MSG_SMS_DEBUG_HOST_EVENT_REQ = 792,
487         MSG_SMS_DEBUG_HOST_EVENT_RES = 793,
488         MSG_SMS_NEW_CRYSTAL_REQ = 794,
489         MSG_SMS_NEW_CRYSTAL_RES = 795,
490         MSG_SMS_CONFIG_SPI_REQ = 796,
491         MSG_SMS_CONFIG_SPI_RES = 797,
492         MSG_SMS_I2C_SHORT_STAT_IND = 798,
493         MSG_SMS_START_IR_REQ = 800,
494         MSG_SMS_START_IR_RES = 801,
495         MSG_SMS_IR_SAMPLES_IND = 802,
496         MSG_SMS_CMMB_CA_SERVICE_IND = 803,
497         MSG_SMS_SLAVE_DEVICE_DETECTED = 804,
498         MSG_SMS_INTERFACE_LOCK_IND = 805,
499         MSG_SMS_INTERFACE_UNLOCK_IND = 806,
500         MSG_SMS_SEND_ROSUM_BUFF_REQ = 810,
501         MSG_SMS_SEND_ROSUM_BUFF_RES = 811,
502         MSG_SMS_ROSUM_BUFF = 812,
503         MSG_SMS_SET_AES128_KEY_REQ = 815,
504         MSG_SMS_SET_AES128_KEY_RES = 816,
505         MSG_SMS_MBBMS_WRITE_REQ = 817,
506         MSG_SMS_MBBMS_WRITE_RES = 818,
507         MSG_SMS_MBBMS_READ_IND = 819,
508         MSG_SMS_IQ_STREAM_START_REQ = 820,
509         MSG_SMS_IQ_STREAM_START_RES = 821,
510         MSG_SMS_IQ_STREAM_STOP_REQ = 822,
511         MSG_SMS_IQ_STREAM_STOP_RES = 823,
512         MSG_SMS_IQ_STREAM_DATA_BLOCK = 824,
513         MSG_SMS_GET_EEPROM_VERSION_REQ = 825,
514         MSG_SMS_GET_EEPROM_VERSION_RES = 826,
515         MSG_SMS_SIGNAL_DETECTED_IND = 827,
516         MSG_SMS_NO_SIGNAL_IND = 828,
517         MSG_SMS_MRC_SHUTDOWN_SLAVE_REQ = 830,
518         MSG_SMS_MRC_SHUTDOWN_SLAVE_RES = 831,
519         MSG_SMS_MRC_BRINGUP_SLAVE_REQ = 832,
520         MSG_SMS_MRC_BRINGUP_SLAVE_RES = 833,
521         MSG_SMS_EXTERNAL_LNA_CTRL_REQ = 834,
522         MSG_SMS_EXTERNAL_LNA_CTRL_RES = 835,
523         MSG_SMS_SET_PERIODIC_STATISTICS_REQ = 836,
524         MSG_SMS_SET_PERIODIC_STATISTICS_RES = 837,
525         MSG_SMS_CMMB_SET_AUTO_OUTPUT_TS0_REQ = 838,
526         MSG_SMS_CMMB_SET_AUTO_OUTPUT_TS0_RES = 839,
527         LOCAL_TUNE = 850,
528         LOCAL_IFFT_H_ICI = 851,
529         MSG_RESYNC_REQ = 852,
530         MSG_SMS_CMMB_GET_MRC_STATISTICS_REQ = 853,
531         MSG_SMS_CMMB_GET_MRC_STATISTICS_RES = 854,
532         MSG_SMS_LOG_EX_ITEM = 855,
533         MSG_SMS_DEVICE_DATA_LOSS_IND = 856,
534         MSG_SMS_MRC_WATCHDOG_TRIGGERED_IND = 857,
535         MSG_SMS_USER_MSG_REQ = 858,
536         MSG_SMS_USER_MSG_RES = 859,
537         MSG_SMS_SMART_CARD_INIT_REQ = 860,
538         MSG_SMS_SMART_CARD_INIT_RES = 861,
539         MSG_SMS_SMART_CARD_WRITE_REQ = 862,
540         MSG_SMS_SMART_CARD_WRITE_RES = 863,
541         MSG_SMS_SMART_CARD_READ_IND = 864,
542         MSG_SMS_TSE_ENABLE_REQ = 866,
543         MSG_SMS_TSE_ENABLE_RES = 867,
544         MSG_SMS_CMMB_GET_SHORT_STATISTICS_REQ = 868,
545         MSG_SMS_CMMB_GET_SHORT_STATISTICS_RES = 869,
546         MSG_SMS_LED_CONFIG_REQ = 870,
547         MSG_SMS_LED_CONFIG_RES = 871,
548         MSG_PWM_ANTENNA_REQ = 872,
549         MSG_PWM_ANTENNA_RES = 873,
550         MSG_SMS_CMMB_SMD_SN_REQ = 874,
551         MSG_SMS_CMMB_SMD_SN_RES = 875,
552         MSG_SMS_CMMB_SET_CA_CW_REQ = 876,
553         MSG_SMS_CMMB_SET_CA_CW_RES = 877,
554         MSG_SMS_CMMB_SET_CA_SALT_REQ = 878,
555         MSG_SMS_CMMB_SET_CA_SALT_RES = 879,
556         MSG_SMS_NSCD_INIT_REQ = 880,
557         MSG_SMS_NSCD_INIT_RES = 881,
558         MSG_SMS_NSCD_PROCESS_SECTION_REQ = 882,
559         MSG_SMS_NSCD_PROCESS_SECTION_RES = 883,
560         MSG_SMS_DBD_CREATE_OBJECT_REQ = 884,
561         MSG_SMS_DBD_CREATE_OBJECT_RES = 885,
562         MSG_SMS_DBD_CONFIGURE_REQ = 886,
563         MSG_SMS_DBD_CONFIGURE_RES = 887,
564         MSG_SMS_DBD_SET_KEYS_REQ = 888,
565         MSG_SMS_DBD_SET_KEYS_RES = 889,
566         MSG_SMS_DBD_PROCESS_HEADER_REQ = 890,
567         MSG_SMS_DBD_PROCESS_HEADER_RES = 891,
568         MSG_SMS_DBD_PROCESS_DATA_REQ = 892,
569         MSG_SMS_DBD_PROCESS_DATA_RES = 893,
570         MSG_SMS_DBD_PROCESS_GET_DATA_REQ = 894,
571         MSG_SMS_DBD_PROCESS_GET_DATA_RES = 895,
572         MSG_SMS_NSCD_OPEN_SESSION_REQ = 896,
573         MSG_SMS_NSCD_OPEN_SESSION_RES = 897,
574         MSG_SMS_SEND_HOST_DATA_TO_DEMUX_REQ = 898,
575         MSG_SMS_SEND_HOST_DATA_TO_DEMUX_RES = 899,
576         MSG_LAST_MSG_TYPE = 900,
577 };
578
579 #define SMS_INIT_MSG_EX(ptr, type, src, dst, len) do { \
580         (ptr)->msgType = type; (ptr)->msgSrcId = src; (ptr)->msgDstId = dst; \
581         (ptr)->msgLength = len; (ptr)->msgFlags = 0; \
582 } while (0)
583
584 #define SMS_INIT_MSG(ptr, type, len) \
585         SMS_INIT_MSG_EX(ptr, type, 0, HIF_TASK, len)
586
587 enum SMS_DVB3_EVENTS {
588         DVB3_EVENT_INIT = 0,
589         DVB3_EVENT_SLEEP,
590         DVB3_EVENT_HOTPLUG,
591         DVB3_EVENT_FE_LOCK,
592         DVB3_EVENT_FE_UNLOCK,
593         DVB3_EVENT_UNC_OK,
594         DVB3_EVENT_UNC_ERR
595 };
596
597 enum SMS_DEVICE_MODE {
598         DEVICE_MODE_NONE = -1,
599         DEVICE_MODE_DVBT = 0,
600         DEVICE_MODE_DVBH,
601         DEVICE_MODE_DAB_TDMB,
602         DEVICE_MODE_DAB_TDMB_DABIP,
603         DEVICE_MODE_DVBT_BDA,
604         DEVICE_MODE_ISDBT,
605         DEVICE_MODE_ISDBT_BDA,
606         DEVICE_MODE_CMMB,
607         DEVICE_MODE_RAW_TUNER,
608         DEVICE_MODE_FM_RADIO,
609         DEVICE_MODE_FM_RADIO_BDA,
610         DEVICE_MODE_ATSC,
611         DEVICE_MODE_MAX,
612 };
613
614 struct SmsMsgHdr_ST {
615         u16     msgType;
616         u8      msgSrcId;
617         u8      msgDstId;
618         u16     msgLength; /* Length of entire message, including header */
619         u16     msgFlags;
620 };
621
622 struct SmsMsgData_ST {
623         struct SmsMsgHdr_ST xMsgHeader;
624         u32 msgData[1];
625 };
626
627 struct SmsMsgData_ST2 {
628         struct SmsMsgHdr_ST xMsgHeader;
629         u32 msgData[2];
630 };
631
632 struct SmsMsgData_ST4 {
633         struct SmsMsgHdr_ST xMsgHeader;
634         u32 msgData[4];
635 };
636
637 struct SmsDataDownload_ST {
638         struct SmsMsgHdr_ST     xMsgHeader;
639         u32                     MemAddr;
640         u8                      Payload[SMS_MAX_PAYLOAD_SIZE];
641 };
642
643 struct SmsVersionRes_ST {
644         struct SmsMsgHdr_ST     xMsgHeader;
645
646         u16             ChipModel; /* e.g. 0x1102 for SMS-1102 "Nova" */
647         u8              Step; /* 0 - Step A */
648         u8              MetalFix; /* 0 - Metal 0 */
649
650         /* FirmwareId 0xFF if ROM, otherwise the
651          * value indicated by SMSHOSTLIB_DEVICE_MODES_E */
652         u8 FirmwareId;
653         /* SupportedProtocols Bitwise OR combination of
654                                              * supported protocols */
655         u8 SupportedProtocols;
656
657         u8              VersionMajor;
658         u8              VersionMinor;
659         u8              VersionPatch;
660         u8              VersionFieldPatch;
661
662         u8              RomVersionMajor;
663         u8              RomVersionMinor;
664         u8              RomVersionPatch;
665         u8              RomVersionFieldPatch;
666
667         u8              TextLabel[34];
668 };
669
670 struct SmsFirmware_ST {
671         u32                     CheckSum;
672         u32                     Length;
673         u32                     StartAddress;
674         u8                      Payload[1];
675 };
676
677 /* Statistics information returned as response for
678  * SmsHostApiGetStatistics_Req */
679 struct SMSHOSTLIB_STATISTICS_ST {
680         u32 Reserved;           /* Reserved */
681
682         /* Common parameters */
683         u32 IsRfLocked;         /* 0 - not locked, 1 - locked */
684         u32 IsDemodLocked;      /* 0 - not locked, 1 - locked */
685         u32 IsExternalLNAOn;    /* 0 - external LNA off, 1 - external LNA on */
686
687         /* Reception quality */
688         s32 SNR;                /* dB */
689         u32 BER;                /* Post Viterbi BER [1E-5] */
690         u32 FIB_CRC;            /* CRC errors percentage, valid only for DAB */
691         u32 TS_PER;             /* Transport stream PER,
692         0xFFFFFFFF indicate N/A, valid only for DVB-T/H */
693         u32 MFER;               /* DVB-H frame error rate in percentage,
694         0xFFFFFFFF indicate N/A, valid only for DVB-H */
695         s32 RSSI;               /* dBm */
696         s32 InBandPwr;          /* In band power in dBM */
697         s32 CarrierOffset;      /* Carrier Offset in bin/1024 */
698
699         /* Transmission parameters */
700         u32 Frequency;          /* Frequency in Hz */
701         u32 Bandwidth;          /* Bandwidth in MHz, valid only for DVB-T/H */
702         u32 TransmissionMode;   /* Transmission Mode, for DAB modes 1-4,
703         for DVB-T/H FFT mode carriers in Kilos */
704         u32 ModemState;         /* from SMSHOSTLIB_DVB_MODEM_STATE_ET,
705         valid only for DVB-T/H */
706         u32 GuardInterval;      /* Guard Interval from
707         SMSHOSTLIB_GUARD_INTERVALS_ET,  valid only for DVB-T/H */
708         u32 CodeRate;           /* Code Rate from SMSHOSTLIB_CODE_RATE_ET,
709         valid only for DVB-T/H */
710         u32 LPCodeRate;         /* Low Priority Code Rate from
711         SMSHOSTLIB_CODE_RATE_ET, valid only for DVB-T/H */
712         u32 Hierarchy;          /* Hierarchy from SMSHOSTLIB_HIERARCHY_ET,
713         valid only for DVB-T/H */
714         u32 Constellation;      /* Constellation from
715         SMSHOSTLIB_CONSTELLATION_ET, valid only for DVB-T/H */
716
717         /* Burst parameters, valid only for DVB-H */
718         u32 BurstSize;          /* Current burst size in bytes,
719         valid only for DVB-H */
720         u32 BurstDuration;      /* Current burst duration in mSec,
721         valid only for DVB-H */
722         u32 BurstCycleTime;     /* Current burst cycle time in mSec,
723         valid only for DVB-H */
724         u32 CalculatedBurstCycleTime;/* Current burst cycle time in mSec,
725         as calculated by demodulator, valid only for DVB-H */
726         u32 NumOfRows;          /* Number of rows in MPE table,
727         valid only for DVB-H */
728         u32 NumOfPaddCols;      /* Number of padding columns in MPE table,
729         valid only for DVB-H */
730         u32 NumOfPunctCols;     /* Number of puncturing columns in MPE table,
731         valid only for DVB-H */
732         u32 ErrorTSPackets;     /* Number of erroneous
733         transport-stream packets */
734         u32 TotalTSPackets;     /* Total number of transport-stream packets */
735         u32 NumOfValidMpeTlbs;  /* Number of MPE tables which do not include
736         errors after MPE RS decoding */
737         u32 NumOfInvalidMpeTlbs;/* Number of MPE tables which include errors
738         after MPE RS decoding */
739         u32 NumOfCorrectedMpeTlbs;/* Number of MPE tables which were
740         corrected by MPE RS decoding */
741         /* Common params */
742         u32 BERErrorCount;      /* Number of errornous SYNC bits. */
743         u32 BERBitCount;        /* Total number of SYNC bits. */
744
745         /* Interface information */
746         u32 SmsToHostTxErrors;  /* Total number of transmission errors. */
747
748         /* DAB/T-DMB */
749         u32 PreBER;             /* DAB/T-DMB only: Pre Viterbi BER [1E-5] */
750
751         /* DVB-H TPS parameters */
752         u32 CellId;             /* TPS Cell ID in bits 15..0, bits 31..16 zero;
753          if set to 0xFFFFFFFF cell_id not yet recovered */
754         u32 DvbhSrvIndHP;       /* DVB-H service indication info, bit 1 -
755         Time Slicing indicator, bit 0 - MPE-FEC indicator */
756         u32 DvbhSrvIndLP;       /* DVB-H service indication info, bit 1 -
757         Time Slicing indicator, bit 0 - MPE-FEC indicator */
758
759         u32 NumMPEReceived;     /* DVB-H, Num MPE section received */
760
761         u32 ReservedFields[10]; /* Reserved */
762 };
763
764 struct SmsMsgStatisticsInfo_ST {
765         u32 RequestResult;
766
767         struct SMSHOSTLIB_STATISTICS_ST Stat;
768
769         /* Split the calc of the SNR in DAB */
770         u32 Signal; /* dB */
771         u32 Noise; /* dB */
772
773 };
774
775 struct SMSHOSTLIB_ISDBT_LAYER_STAT_ST {
776         /* Per-layer information */
777         u32 CodeRate; /* Code Rate from SMSHOSTLIB_CODE_RATE_ET,
778                        * 255 means layer does not exist */
779         u32 Constellation; /* Constellation from SMSHOSTLIB_CONSTELLATION_ET,
780                             * 255 means layer does not exist */
781         u32 BER; /* Post Viterbi BER [1E-5], 0xFFFFFFFF indicate N/A */
782         u32 BERErrorCount; /* Post Viterbi Error Bits Count */
783         u32 BERBitCount; /* Post Viterbi Total Bits Count */
784         u32 PreBER; /* Pre Viterbi BER [1E-5], 0xFFFFFFFF indicate N/A */
785         u32 TS_PER; /* Transport stream PER [%], 0xFFFFFFFF indicate N/A */
786         u32 ErrorTSPackets; /* Number of erroneous transport-stream packets */
787         u32 TotalTSPackets; /* Total number of transport-stream packets */
788         u32 TILdepthI; /* Time interleaver depth I parameter,
789                         * 255 means layer does not exist */
790         u32 NumberOfSegments; /* Number of segments in layer A,
791                                * 255 means layer does not exist */
792         u32 TMCCErrors; /* TMCC errors */
793 };
794
795 struct SMSHOSTLIB_STATISTICS_ISDBT_ST {
796         u32 StatisticsType; /* Enumerator identifying the type of the
797                                 * structure.  Values are the same as
798                                 * SMSHOSTLIB_DEVICE_MODES_E
799                                 *
800                                 * This field MUST always be first in any
801                                 * statistics structure */
802
803         u32 FullSize; /* Total size of the structure returned by the modem.
804                        * If the size requested by the host is smaller than
805                        * FullSize, the struct will be truncated */
806
807         /* Common parameters */
808         u32 IsRfLocked; /* 0 - not locked, 1 - locked */
809         u32 IsDemodLocked; /* 0 - not locked, 1 - locked */
810         u32 IsExternalLNAOn; /* 0 - external LNA off, 1 - external LNA on */
811
812         /* Reception quality */
813         s32  SNR; /* dB */
814         s32  RSSI; /* dBm */
815         s32  InBandPwr; /* In band power in dBM */
816         s32  CarrierOffset; /* Carrier Offset in Hz */
817
818         /* Transmission parameters */
819         u32 Frequency; /* Frequency in Hz */
820         u32 Bandwidth; /* Bandwidth in MHz */
821         u32 TransmissionMode; /* ISDB-T transmission mode */
822         u32 ModemState; /* 0 - Acquisition, 1 - Locked */
823         u32 GuardInterval; /* Guard Interval, 1 divided by value */
824         u32 SystemType; /* ISDB-T system type (ISDB-T / ISDB-Tsb) */
825         u32 PartialReception; /* TRUE - partial reception, FALSE otherwise */
826         u32 NumOfLayers; /* Number of ISDB-T layers in the network */
827
828         /* Per-layer information */
829         /* Layers A, B and C */
830         struct SMSHOSTLIB_ISDBT_LAYER_STAT_ST   LayerInfo[3];
831         /* Per-layer statistics, see SMSHOSTLIB_ISDBT_LAYER_STAT_ST */
832
833         /* Interface information */
834         u32 SmsToHostTxErrors; /* Total number of transmission errors. */
835 };
836
837 struct SMSHOSTLIB_STATISTICS_ISDBT_EX_ST {
838         u32 StatisticsType; /* Enumerator identifying the type of the
839                                 * structure.  Values are the same as
840                                 * SMSHOSTLIB_DEVICE_MODES_E
841                                 *
842                                 * This field MUST always be first in any
843                                 * statistics structure */
844
845         u32 FullSize; /* Total size of the structure returned by the modem.
846                        * If the size requested by the host is smaller than
847                        * FullSize, the struct will be truncated */
848
849         /* Common parameters */
850         u32 IsRfLocked; /* 0 - not locked, 1 - locked */
851         u32 IsDemodLocked; /* 0 - not locked, 1 - locked */
852         u32 IsExternalLNAOn; /* 0 - external LNA off, 1 - external LNA on */
853
854         /* Reception quality */
855         s32  SNR; /* dB */
856         s32  RSSI; /* dBm */
857         s32  InBandPwr; /* In band power in dBM */
858         s32  CarrierOffset; /* Carrier Offset in Hz */
859
860         /* Transmission parameters */
861         u32 Frequency; /* Frequency in Hz */
862         u32 Bandwidth; /* Bandwidth in MHz */
863         u32 TransmissionMode; /* ISDB-T transmission mode */
864         u32 ModemState; /* 0 - Acquisition, 1 - Locked */
865         u32 GuardInterval; /* Guard Interval, 1 divided by value */
866         u32 SystemType; /* ISDB-T system type (ISDB-T / ISDB-Tsb) */
867         u32 PartialReception; /* TRUE - partial reception, FALSE otherwise */
868         u32 NumOfLayers; /* Number of ISDB-T layers in the network */
869
870         u32 SegmentNumber; /* Segment number for ISDB-Tsb */
871         u32 TuneBW;        /* Tuned bandwidth - BW_ISDBT_1SEG / BW_ISDBT_3SEG */
872
873         /* Per-layer information */
874         /* Layers A, B and C */
875         struct SMSHOSTLIB_ISDBT_LAYER_STAT_ST   LayerInfo[3];
876         /* Per-layer statistics, see SMSHOSTLIB_ISDBT_LAYER_STAT_ST */
877
878         /* Interface information */
879         u32 Reserved1;    /* Was SmsToHostTxErrors - obsolete . */
880  /* Proprietary information */
881         u32 ExtAntenna;    /* Obsolete field. */
882         u32 ReceptionQuality;
883         u32 EwsAlertActive;   /* Signals if EWS alert is currently on */
884         u32 LNAOnOff;   /* Internal LNA state: 0: OFF, 1: ON */
885
886         u32 RfAgcLevel;  /* RF AGC Level [linear units], full gain = 65535 (20dB) */
887         u32 BbAgcLevel;    /* Baseband AGC level [linear units], full gain = 65535 (71.5dB) */
888         u32 FwErrorsCounter;   /* Application errors - should be always zero */
889         u8 FwErrorsHistoryArr[8]; /* Last FW errors IDs - first is most recent, last is oldest */
890
891         s32  MRC_SNR;     /* dB */
892         u32 SNRFullRes;    /* dB x 65536 */
893         u32 Reserved4[4];
894 };
895
896
897 struct PID_STATISTICS_DATA_S {
898         struct PID_BURST_S {
899                 u32 size;
900                 u32 padding_cols;
901                 u32 punct_cols;
902                 u32 duration;
903                 u32 cycle;
904                 u32 calc_cycle;
905         } burst;
906
907         u32 tot_tbl_cnt;
908         u32 invalid_tbl_cnt;
909         u32 tot_cor_tbl;
910 };
911
912 struct PID_DATA_S {
913         u32 pid;
914         u32 num_rows;
915         struct PID_STATISTICS_DATA_S pid_statistics;
916 };
917
918 #define CORRECT_STAT_RSSI(_stat) ((_stat).RSSI *= -1)
919 #define CORRECT_STAT_BANDWIDTH(_stat) (_stat.Bandwidth = 8 - _stat.Bandwidth)
920 #define CORRECT_STAT_TRANSMISSON_MODE(_stat) \
921         if (_stat.TransmissionMode == 0) \
922                 _stat.TransmissionMode = 2; \
923         else if (_stat.TransmissionMode == 1) \
924                 _stat.TransmissionMode = 8; \
925                 else \
926                         _stat.TransmissionMode = 4;
927
928 struct TRANSMISSION_STATISTICS_S {
929         u32 Frequency;          /* Frequency in Hz */
930         u32 Bandwidth;          /* Bandwidth in MHz */
931         u32 TransmissionMode;   /* FFT mode carriers in Kilos */
932         u32 GuardInterval;      /* Guard Interval from
933         SMSHOSTLIB_GUARD_INTERVALS_ET */
934         u32 CodeRate;           /* Code Rate from SMSHOSTLIB_CODE_RATE_ET */
935         u32 LPCodeRate;         /* Low Priority Code Rate from
936         SMSHOSTLIB_CODE_RATE_ET */
937         u32 Hierarchy;          /* Hierarchy from SMSHOSTLIB_HIERARCHY_ET */
938         u32 Constellation;      /* Constellation from
939         SMSHOSTLIB_CONSTELLATION_ET */
940
941         /* DVB-H TPS parameters */
942         u32 CellId;             /* TPS Cell ID in bits 15..0, bits 31..16 zero;
943          if set to 0xFFFFFFFF cell_id not yet recovered */
944         u32 DvbhSrvIndHP;       /* DVB-H service indication info, bit 1 -
945          Time Slicing indicator, bit 0 - MPE-FEC indicator */
946         u32 DvbhSrvIndLP;       /* DVB-H service indication info, bit 1 -
947          Time Slicing indicator, bit 0 - MPE-FEC indicator */
948         u32 IsDemodLocked;      /* 0 - not locked, 1 - locked */
949 };
950
951 struct RECEPTION_STATISTICS_S {
952         u32 IsRfLocked;         /* 0 - not locked, 1 - locked */
953         u32 IsDemodLocked;      /* 0 - not locked, 1 - locked */
954         u32 IsExternalLNAOn;    /* 0 - external LNA off, 1 - external LNA on */
955
956         u32 ModemState;         /* from SMSHOSTLIB_DVB_MODEM_STATE_ET */
957         s32 SNR;                /* dB */
958         u32 BER;                /* Post Viterbi BER [1E-5] */
959         u32 BERErrorCount;      /* Number of erronous SYNC bits. */
960         u32 BERBitCount;        /* Total number of SYNC bits. */
961         u32 TS_PER;             /* Transport stream PER,
962         0xFFFFFFFF indicate N/A */
963         u32 MFER;               /* DVB-H frame error rate in percentage,
964         0xFFFFFFFF indicate N/A, valid only for DVB-H */
965         s32 RSSI;               /* dBm */
966         s32 InBandPwr;          /* In band power in dBM */
967         s32 CarrierOffset;      /* Carrier Offset in bin/1024 */
968         u32 ErrorTSPackets;     /* Number of erroneous
969         transport-stream packets */
970         u32 TotalTSPackets;     /* Total number of transport-stream packets */
971
972         s32 MRC_SNR;            /* dB */
973         s32 MRC_RSSI;           /* dBm */
974         s32 MRC_InBandPwr;      /* In band power in dBM */
975 };
976
977 struct RECEPTION_STATISTICS_EX_S {
978         u32 IsRfLocked;         /* 0 - not locked, 1 - locked */
979         u32 IsDemodLocked;      /* 0 - not locked, 1 - locked */
980         u32 IsExternalLNAOn;    /* 0 - external LNA off, 1 - external LNA on */
981
982         u32 ModemState;         /* from SMSHOSTLIB_DVB_MODEM_STATE_ET */
983         s32 SNR;                /* dB */
984         u32 BER;                /* Post Viterbi BER [1E-5] */
985         u32 BERErrorCount;      /* Number of erronous SYNC bits. */
986         u32 BERBitCount;        /* Total number of SYNC bits. */
987         u32 TS_PER;             /* Transport stream PER,
988         0xFFFFFFFF indicate N/A */
989         u32 MFER;               /* DVB-H frame error rate in percentage,
990         0xFFFFFFFF indicate N/A, valid only for DVB-H */
991         s32 RSSI;               /* dBm */
992         s32 InBandPwr;          /* In band power in dBM */
993         s32 CarrierOffset;      /* Carrier Offset in bin/1024 */
994         u32 ErrorTSPackets;     /* Number of erroneous
995         transport-stream packets */
996         u32 TotalTSPackets;     /* Total number of transport-stream packets */
997
998         s32  RefDevPPM;
999         s32  FreqDevHz;
1000
1001         s32 MRC_SNR;            /* dB */
1002         s32 MRC_RSSI;           /* dBm */
1003         s32 MRC_InBandPwr;      /* In band power in dBM */
1004 };
1005
1006
1007 /* Statistics information returned as response for
1008  * SmsHostApiGetStatisticsEx_Req for DVB applications, SMS1100 and up */
1009 struct SMSHOSTLIB_STATISTICS_DVB_S {
1010         /* Reception */
1011         struct RECEPTION_STATISTICS_S ReceptionData;
1012
1013         /* Transmission parameters */
1014         struct TRANSMISSION_STATISTICS_S TransmissionData;
1015
1016         /* Burst parameters, valid only for DVB-H */
1017 #define SRVM_MAX_PID_FILTERS 8
1018         struct PID_DATA_S PidData[SRVM_MAX_PID_FILTERS];
1019 };
1020
1021 /* Statistics information returned as response for
1022  * SmsHostApiGetStatisticsEx_Req for DVB applications, SMS1100 and up */
1023 struct SMSHOSTLIB_STATISTICS_DVB_EX_S {
1024         /* Reception */
1025         struct RECEPTION_STATISTICS_EX_S ReceptionData;
1026
1027         /* Transmission parameters */
1028         struct TRANSMISSION_STATISTICS_S TransmissionData;
1029
1030         /* Burst parameters, valid only for DVB-H */
1031 #define SRVM_MAX_PID_FILTERS 8
1032         struct PID_DATA_S PidData[SRVM_MAX_PID_FILTERS];
1033 };
1034
1035 struct SRVM_SIGNAL_STATUS_S {
1036         u32 result;
1037         u32 snr;
1038         u32 tsPackets;
1039         u32 etsPackets;
1040         u32 constellation;
1041         u32 hpCode;
1042         u32 tpsSrvIndLP;
1043         u32 tpsSrvIndHP;
1044         u32 cellId;
1045         u32 reason;
1046
1047         s32 inBandPower;
1048         u32 requestId;
1049 };
1050
1051 struct SMSHOSTLIB_I2C_REQ_ST {
1052         u32     DeviceAddress; /* I2c device address */
1053         u32     WriteCount; /* number of bytes to write */
1054         u32     ReadCount; /* number of bytes to read */
1055         u8      Data[1];
1056 };
1057
1058 struct SMSHOSTLIB_I2C_RES_ST {
1059         u32     Status; /* non-zero value in case of failure */
1060         u32     ReadCount; /* number of bytes read */
1061         u8      Data[1];
1062 };
1063
1064
1065 struct smscore_config_gpio {
1066 #define SMS_GPIO_DIRECTION_INPUT  0
1067 #define SMS_GPIO_DIRECTION_OUTPUT 1
1068         u8 direction;
1069
1070 #define SMS_GPIO_PULLUPDOWN_NONE     0
1071 #define SMS_GPIO_PULLUPDOWN_PULLDOWN 1
1072 #define SMS_GPIO_PULLUPDOWN_PULLUP   2
1073 #define SMS_GPIO_PULLUPDOWN_KEEPER   3
1074         u8 pullupdown;
1075
1076 #define SMS_GPIO_INPUTCHARACTERISTICS_NORMAL  0
1077 #define SMS_GPIO_INPUTCHARACTERISTICS_SCHMITT 1
1078         u8 inputcharacteristics;
1079
1080         /* 10xx */
1081 #define SMS_GPIO_OUTPUT_SLEW_RATE_FAST 0
1082 #define SMS_GPIO_OUTPUT_SLEW_WRATE_SLOW 1
1083
1084         /* 11xx */
1085 #define SMS_GPIO_OUTPUT_SLEW_RATE_0_45_V_NS     0
1086 #define SMS_GPIO_OUTPUT_SLEW_RATE_0_9_V_NS      1
1087 #define SMS_GPIO_OUTPUT_SLEW_RATE_1_7_V_NS      2
1088 #define SMS_GPIO_OUTPUT_SLEW_RATE_3_3_V_NS      3
1089
1090         u8 outputslewrate;
1091
1092         /* 10xx */
1093 #define SMS_GPIO_OUTPUTDRIVING_S_4mA  0
1094 #define SMS_GPIO_OUTPUTDRIVING_S_8mA  1
1095 #define SMS_GPIO_OUTPUTDRIVING_S_12mA 2
1096 #define SMS_GPIO_OUTPUTDRIVING_S_16mA 3
1097
1098         /* 11xx*/
1099 #define SMS_GPIO_OUTPUTDRIVING_1_5mA    0
1100 #define SMS_GPIO_OUTPUTDRIVING_2_8mA    1
1101 #define SMS_GPIO_OUTPUTDRIVING_4mA      2
1102 #define SMS_GPIO_OUTPUTDRIVING_7mA      3
1103 #define SMS_GPIO_OUTPUTDRIVING_10mA     4
1104 #define SMS_GPIO_OUTPUTDRIVING_11mA     5
1105 #define SMS_GPIO_OUTPUTDRIVING_14mA     6
1106 #define SMS_GPIO_OUTPUTDRIVING_16mA     7
1107
1108         u8 outputdriving;
1109 };
1110
1111 char *smscore_translate_msg(enum msg_types msgtype);
1112
1113 extern int smscore_registry_getmode(char *devpath);
1114
1115 extern int smscore_register_hotplug(hotplug_t hotplug);
1116 extern void smscore_unregister_hotplug(hotplug_t hotplug);
1117
1118 extern int smscore_register_device(struct smsdevice_params_t *params,
1119                                    struct smscore_device_t **coredev);
1120 extern void smscore_unregister_device(struct smscore_device_t *coredev);
1121
1122 extern int smscore_start_device(struct smscore_device_t *coredev);
1123 extern int smscore_load_firmware(struct smscore_device_t *coredev,
1124                                  char *filename,
1125                                  loadfirmware_t loadfirmware_handler);
1126
1127 extern int smscore_set_device_mode(struct smscore_device_t *coredev, int mode);
1128 extern int smscore_get_device_mode(struct smscore_device_t *coredev);
1129
1130 extern int smscore_register_client(struct smscore_device_t *coredev,
1131                                     struct smsclient_params_t *params,
1132                                     struct smscore_client_t **client);
1133 extern void smscore_unregister_client(struct smscore_client_t *client);
1134
1135 extern int smsclient_sendrequest(struct smscore_client_t *client,
1136                                  void *buffer, size_t size);
1137 extern void smscore_onresponse(struct smscore_device_t *coredev,
1138                                struct smscore_buffer_t *cb);
1139
1140 extern int smscore_get_common_buffer_size(struct smscore_device_t *coredev);
1141 extern int smscore_map_common_buffer(struct smscore_device_t *coredev,
1142                                       struct vm_area_struct *vma);
1143 extern int smscore_send_fw_file(struct smscore_device_t *coredev,
1144                                 u8 *ufwbuf, int size);
1145
1146 extern
1147 struct smscore_buffer_t *smscore_getbuffer(struct smscore_device_t *coredev);
1148 extern void smscore_putbuffer(struct smscore_device_t *coredev,
1149                               struct smscore_buffer_t *cb);
1150
1151 /* old GPIO management */
1152 int smscore_configure_gpio(struct smscore_device_t *coredev, u32 pin,
1153                            struct smscore_config_gpio *pinconfig);
1154 int smscore_set_gpio(struct smscore_device_t *coredev, u32 pin, int level);
1155
1156 /* new GPIO management */
1157 extern int smscore_gpio_configure(struct smscore_device_t *coredev, u8 PinNum,
1158                 struct smscore_config_gpio *pGpioConfig);
1159 extern int smscore_gpio_set_level(struct smscore_device_t *coredev, u8 PinNum,
1160                 u8 NewLevel);
1161 extern int smscore_gpio_get_level(struct smscore_device_t *coredev, u8 PinNum,
1162                 u8 *level);
1163
1164 void smscore_set_board_id(struct smscore_device_t *core, int id);
1165 int smscore_get_board_id(struct smscore_device_t *core);
1166
1167 int smscore_led_state(struct smscore_device_t *core, int led);
1168
1169
1170 /* ------------------------------------------------------------------------ */
1171
1172 #define DBG_INFO 1
1173 #define DBG_ADV  2
1174
1175 #define sms_printk(kern, fmt, arg...) \
1176         printk(kern "%s: " fmt "\n", __func__, ##arg)
1177
1178 #define dprintk(kern, lvl, fmt, arg...) do {\
1179         if (sms_dbg & lvl) \
1180                 sms_printk(kern, fmt, ##arg); } while (0)
1181
1182 #define sms_log(fmt, arg...) sms_printk(KERN_INFO, fmt, ##arg)
1183 #define sms_err(fmt, arg...) \
1184         sms_printk(KERN_ERR, "line: %d: " fmt, __LINE__, ##arg)
1185 #define sms_warn(fmt, arg...)  sms_printk(KERN_WARNING, fmt, ##arg)
1186 #define sms_info(fmt, arg...) \
1187         dprintk(KERN_INFO, DBG_INFO, fmt, ##arg)
1188 #define sms_debug(fmt, arg...) \
1189         dprintk(KERN_DEBUG, DBG_ADV, fmt, ##arg)
1190
1191
1192 #endif /* __SMS_CORE_API_H__ */