1 /****************************************************************
3 Siano Mobile Silicon, Inc.
4 MDTV receiver kernel modules.
5 Copyright (C) 2006-2008, Uri Shkolnik, Anatoly Greenblat
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.
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.
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/>.
20 ****************************************************************/
22 #ifndef __SMS_CORE_API_H__
23 #define __SMS_CORE_API_H__
25 #include <linux/device.h>
26 #include <linux/list.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>
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_)
44 * Define the firmware names used by the driver.
45 * Those should match what's used at smscoreapi.c and sms-cards.c
46 * including the MODULE_FIRMWARE() macros at the end of smscoreapi.c
48 #define SMS_FW_ATSC_DENVER "atsc_denver.inp"
49 #define SMS_FW_CMMB_MING_APP "cmmb_ming_app.inp"
50 #define SMS_FW_CMMB_VEGA_12MHZ "cmmb_vega_12mhz.inp"
51 #define SMS_FW_CMMB_VENICE_12MHZ "cmmb_venice_12mhz.inp"
52 #define SMS_FW_DVBH_RIO "dvbh_rio.inp"
53 #define SMS_FW_DVB_NOVA_12MHZ_B0 "dvb_nova_12mhz_b0.inp"
54 #define SMS_FW_DVB_NOVA_12MHZ "dvb_nova_12mhz.inp"
55 #define SMS_FW_DVB_RIO "dvb_rio.inp"
56 #define SMS_FW_FM_RADIO "fm_radio.inp"
57 #define SMS_FW_FM_RADIO_RIO "fm_radio_rio.inp"
58 #define SMS_FW_DVBT_HCW_55XXX "sms1xxx-hcw-55xxx-dvbt-02.fw"
59 #define SMS_FW_ISDBT_HCW_55XXX "sms1xxx-hcw-55xxx-isdbt-02.fw"
60 #define SMS_FW_ISDBT_NOVA_12MHZ_B0 "isdbt_nova_12mhz_b0.inp"
61 #define SMS_FW_ISDBT_NOVA_12MHZ "isdbt_nova_12mhz.inp"
62 #define SMS_FW_ISDBT_PELE "isdbt_pele.inp"
63 #define SMS_FW_ISDBT_RIO "isdbt_rio.inp"
64 #define SMS_FW_DVBT_NOVA_A "sms1xxx-nova-a-dvbt-01.fw"
65 #define SMS_FW_DVBT_NOVA_B "sms1xxx-nova-b-dvbt-01.fw"
66 #define SMS_FW_DVBT_STELLAR "sms1xxx-stellar-dvbt-01.fw"
67 #define SMS_FW_TDMB_DENVER "tdmb_denver.inp"
68 #define SMS_FW_TDMB_NOVA_12MHZ_B0 "tdmb_nova_12mhz_b0.inp"
69 #define SMS_FW_TDMB_NOVA_12MHZ "tdmb_nova_12mhz.inp"
71 #define SMS_PROTOCOL_MAX_RAOUNDTRIP_MS (10000)
72 #define SMS_ALLOC_ALIGNMENT 128
73 #define SMS_DMA_ALIGNMENT 16
74 #define SMS_ALIGN_ADDRESS(addr) \
75 ((((uintptr_t)(addr)) + (SMS_DMA_ALIGNMENT-1)) & ~(SMS_DMA_ALIGNMENT-1))
77 #define SMS_DEVICE_FAMILY1 0
78 #define SMS_DEVICE_FAMILY2 1
79 #define SMS_ROM_NO_RESPONSE 2
80 #define SMS_DEVICE_NOT_READY 0x8000000
82 enum sms_device_type_st
{
83 SMS_UNKNOWN_TYPE
= -1,
94 SMS_NUM_OF_DEVICE_TYPES
97 enum sms_power_mode_st
{
98 SMS_POWER_MODE_ACTIVE
,
99 SMS_POWER_MODE_SUSPENDED
102 struct smscore_device_t
;
103 struct smscore_client_t
;
104 struct smscore_buffer_t
;
106 typedef int (*hotplug_t
)(struct smscore_device_t
*coredev
,
107 struct device
*device
, int arrival
);
109 typedef int (*setmode_t
)(void *context
, int mode
);
110 typedef void (*detectmode_t
)(void *context
, int *mode
);
111 typedef int (*sendrequest_t
)(void *context
, void *buffer
, size_t size
);
112 typedef int (*loadfirmware_t
)(void *context
, void *buffer
, size_t size
);
113 typedef int (*preload_t
)(void *context
);
114 typedef int (*postload_t
)(void *context
);
116 typedef int (*onresponse_t
)(void *context
, struct smscore_buffer_t
*cb
);
117 typedef void (*onremove_t
)(void *context
);
119 struct smscore_buffer_t
{
120 /* public members, once passed to clients can be changed freely */
121 struct list_head entry
;
125 /* private members, read-only for clients */
128 unsigned long offset_in_common
;
131 struct smsdevice_params_t
{
132 struct device
*device
;
140 setmode_t setmode_handler
;
141 detectmode_t detectmode_handler
;
142 sendrequest_t sendrequest_handler
;
143 preload_t preload_handler
;
144 postload_t postload_handler
;
147 enum sms_device_type_st device_type
;
150 struct smsclient_params_t
{
153 onresponse_t onresponse_handler
;
154 onremove_t onremove_handler
;
158 struct smscore_device_t
{
159 struct list_head entry
;
161 struct list_head clients
;
162 struct list_head subclients
;
163 spinlock_t clientslock
;
165 struct list_head buffers
;
166 spinlock_t bufferslock
;
170 int common_buffer_size
;
171 dma_addr_t common_buffer_phys
;
174 struct device
*device
;
177 unsigned long device_flags
;
179 setmode_t setmode_handler
;
180 detectmode_t detectmode_handler
;
181 sendrequest_t sendrequest_handler
;
182 preload_t preload_handler
;
183 postload_t postload_handler
;
185 int mode
, modes_supported
;
187 /* host <--> device messages */
188 struct completion version_ex_done
, data_download_done
, trigger_done
;
189 struct completion data_validity_done
, device_ready_done
;
190 struct completion init_device_done
, reload_start_done
, resume_done
;
191 struct completion gpio_configuration_done
, gpio_set_level_done
;
192 struct completion gpio_get_level_done
, ir_init_done
;
194 /* Buffer management */
195 wait_queue_head_t buffer_mng_waitq
;
200 /* Target hardware board */
212 * Identify if device is USB or not.
213 * Used by smsdvb-sysfs to know the root node for debugfs
220 /* GPIO definitions for antenna frequency domain control (SMS8021) */
221 #define SMS_ANTENNA_GPIO_0 1
222 #define SMS_ANTENNA_GPIO_1 0
224 enum sms_bandwidth_mode
{
239 #define MSG_HDR_FLAG_SPLIT_MSG 4
241 #define MAX_GPIO_PIN_NUMBER 31
244 #define HIF_TASK_SLAVE 22
245 #define HIF_TASK_SLAVE2 33
246 #define HIF_TASK_SLAVE3 44
247 #define SMS_HOST_LIB 150
248 #define DVBT_BDA_CONTROL_MSG_ID 201
250 #define SMS_MAX_PAYLOAD_SIZE 240
251 #define SMS_TUNE_TIMEOUT 500
254 MSG_TYPE_BASE_VAL
= 500,
255 MSG_SMS_GET_VERSION_REQ
= 503,
256 MSG_SMS_GET_VERSION_RES
= 504,
257 MSG_SMS_MULTI_BRIDGE_CFG
= 505,
258 MSG_SMS_GPIO_CONFIG_REQ
= 507,
259 MSG_SMS_GPIO_CONFIG_RES
= 508,
260 MSG_SMS_GPIO_SET_LEVEL_REQ
= 509,
261 MSG_SMS_GPIO_SET_LEVEL_RES
= 510,
262 MSG_SMS_GPIO_GET_LEVEL_REQ
= 511,
263 MSG_SMS_GPIO_GET_LEVEL_RES
= 512,
264 MSG_SMS_EEPROM_BURN_IND
= 513,
265 MSG_SMS_LOG_ENABLE_CHANGE_REQ
= 514,
266 MSG_SMS_LOG_ENABLE_CHANGE_RES
= 515,
267 MSG_SMS_SET_MAX_TX_MSG_LEN_REQ
= 516,
268 MSG_SMS_SET_MAX_TX_MSG_LEN_RES
= 517,
269 MSG_SMS_SPI_HALFDUPLEX_TOKEN_HOST_TO_DEVICE
= 518,
270 MSG_SMS_SPI_HALFDUPLEX_TOKEN_DEVICE_TO_HOST
= 519,
271 MSG_SMS_BACKGROUND_SCAN_FLAG_CHANGE_REQ
= 520,
272 MSG_SMS_BACKGROUND_SCAN_FLAG_CHANGE_RES
= 521,
273 MSG_SMS_BACKGROUND_SCAN_SIGNAL_DETECTED_IND
= 522,
274 MSG_SMS_BACKGROUND_SCAN_NO_SIGNAL_IND
= 523,
275 MSG_SMS_CONFIGURE_RF_SWITCH_REQ
= 524,
276 MSG_SMS_CONFIGURE_RF_SWITCH_RES
= 525,
277 MSG_SMS_MRC_PATH_DISCONNECT_REQ
= 526,
278 MSG_SMS_MRC_PATH_DISCONNECT_RES
= 527,
279 MSG_SMS_RECEIVE_1SEG_THROUGH_FULLSEG_REQ
= 528,
280 MSG_SMS_RECEIVE_1SEG_THROUGH_FULLSEG_RES
= 529,
281 MSG_SMS_RECEIVE_VHF_VIA_VHF_INPUT_REQ
= 530,
282 MSG_SMS_RECEIVE_VHF_VIA_VHF_INPUT_RES
= 531,
283 MSG_WR_REG_RFT_REQ
= 533,
284 MSG_WR_REG_RFT_RES
= 534,
285 MSG_RD_REG_RFT_REQ
= 535,
286 MSG_RD_REG_RFT_RES
= 536,
287 MSG_RD_REG_ALL_RFT_REQ
= 537,
288 MSG_RD_REG_ALL_RFT_RES
= 538,
290 MSG_RUN_SCRIPT_INT
= 540,
291 MSG_SMS_EWS_INBAND_REQ
= 541,
292 MSG_SMS_EWS_INBAND_RES
= 542,
293 MSG_SMS_RFS_SELECT_REQ
= 543,
294 MSG_SMS_RFS_SELECT_RES
= 544,
295 MSG_SMS_MB_GET_VER_REQ
= 545,
296 MSG_SMS_MB_GET_VER_RES
= 546,
297 MSG_SMS_MB_WRITE_CFGFILE_REQ
= 547,
298 MSG_SMS_MB_WRITE_CFGFILE_RES
= 548,
299 MSG_SMS_MB_READ_CFGFILE_REQ
= 549,
300 MSG_SMS_MB_READ_CFGFILE_RES
= 550,
301 MSG_SMS_RD_MEM_REQ
= 552,
302 MSG_SMS_RD_MEM_RES
= 553,
303 MSG_SMS_WR_MEM_REQ
= 554,
304 MSG_SMS_WR_MEM_RES
= 555,
305 MSG_SMS_UPDATE_MEM_REQ
= 556,
306 MSG_SMS_UPDATE_MEM_RES
= 557,
307 MSG_SMS_ISDBT_ENABLE_FULL_PARAMS_SET_REQ
= 558,
308 MSG_SMS_ISDBT_ENABLE_FULL_PARAMS_SET_RES
= 559,
309 MSG_SMS_RF_TUNE_REQ
= 561,
310 MSG_SMS_RF_TUNE_RES
= 562,
311 MSG_SMS_ISDBT_ENABLE_HIGH_MOBILITY_REQ
= 563,
312 MSG_SMS_ISDBT_ENABLE_HIGH_MOBILITY_RES
= 564,
313 MSG_SMS_ISDBT_SB_RECEPTION_REQ
= 565,
314 MSG_SMS_ISDBT_SB_RECEPTION_RES
= 566,
315 MSG_SMS_GENERIC_EPROM_WRITE_REQ
= 567,
316 MSG_SMS_GENERIC_EPROM_WRITE_RES
= 568,
317 MSG_SMS_GENERIC_EPROM_READ_REQ
= 569,
318 MSG_SMS_GENERIC_EPROM_READ_RES
= 570,
319 MSG_SMS_EEPROM_WRITE_REQ
= 571,
320 MSG_SMS_EEPROM_WRITE_RES
= 572,
321 MSG_SMS_CUSTOM_READ_REQ
= 574,
322 MSG_SMS_CUSTOM_READ_RES
= 575,
323 MSG_SMS_CUSTOM_WRITE_REQ
= 576,
324 MSG_SMS_CUSTOM_WRITE_RES
= 577,
325 MSG_SMS_INIT_DEVICE_REQ
= 578,
326 MSG_SMS_INIT_DEVICE_RES
= 579,
327 MSG_SMS_ATSC_SET_ALL_IP_REQ
= 580,
328 MSG_SMS_ATSC_SET_ALL_IP_RES
= 581,
329 MSG_SMS_ATSC_START_ENSEMBLE_REQ
= 582,
330 MSG_SMS_ATSC_START_ENSEMBLE_RES
= 583,
331 MSG_SMS_SET_OUTPUT_MODE_REQ
= 584,
332 MSG_SMS_SET_OUTPUT_MODE_RES
= 585,
333 MSG_SMS_ATSC_IP_FILTER_GET_LIST_REQ
= 586,
334 MSG_SMS_ATSC_IP_FILTER_GET_LIST_RES
= 587,
335 MSG_SMS_SUB_CHANNEL_START_REQ
= 589,
336 MSG_SMS_SUB_CHANNEL_START_RES
= 590,
337 MSG_SMS_SUB_CHANNEL_STOP_REQ
= 591,
338 MSG_SMS_SUB_CHANNEL_STOP_RES
= 592,
339 MSG_SMS_ATSC_IP_FILTER_ADD_REQ
= 593,
340 MSG_SMS_ATSC_IP_FILTER_ADD_RES
= 594,
341 MSG_SMS_ATSC_IP_FILTER_REMOVE_REQ
= 595,
342 MSG_SMS_ATSC_IP_FILTER_REMOVE_RES
= 596,
343 MSG_SMS_ATSC_IP_FILTER_REMOVE_ALL_REQ
= 597,
344 MSG_SMS_ATSC_IP_FILTER_REMOVE_ALL_RES
= 598,
345 MSG_SMS_WAIT_CMD
= 599,
346 MSG_SMS_ADD_PID_FILTER_REQ
= 601,
347 MSG_SMS_ADD_PID_FILTER_RES
= 602,
348 MSG_SMS_REMOVE_PID_FILTER_REQ
= 603,
349 MSG_SMS_REMOVE_PID_FILTER_RES
= 604,
350 MSG_SMS_FAST_INFORMATION_CHANNEL_REQ
= 605,
351 MSG_SMS_FAST_INFORMATION_CHANNEL_RES
= 606,
352 MSG_SMS_DAB_CHANNEL
= 607,
353 MSG_SMS_GET_PID_FILTER_LIST_REQ
= 608,
354 MSG_SMS_GET_PID_FILTER_LIST_RES
= 609,
355 MSG_SMS_POWER_DOWN_REQ
= 610,
356 MSG_SMS_POWER_DOWN_RES
= 611,
357 MSG_SMS_ATSC_SLT_EXIST_IND
= 612,
358 MSG_SMS_ATSC_NO_SLT_IND
= 613,
359 MSG_SMS_GET_STATISTICS_REQ
= 615,
360 MSG_SMS_GET_STATISTICS_RES
= 616,
361 MSG_SMS_SEND_DUMP
= 617,
362 MSG_SMS_SCAN_START_REQ
= 618,
363 MSG_SMS_SCAN_START_RES
= 619,
364 MSG_SMS_SCAN_STOP_REQ
= 620,
365 MSG_SMS_SCAN_STOP_RES
= 621,
366 MSG_SMS_SCAN_PROGRESS_IND
= 622,
367 MSG_SMS_SCAN_COMPLETE_IND
= 623,
368 MSG_SMS_LOG_ITEM
= 624,
369 MSG_SMS_DAB_SUBCHANNEL_RECONFIG_REQ
= 628,
370 MSG_SMS_DAB_SUBCHANNEL_RECONFIG_RES
= 629,
371 MSG_SMS_HO_PER_SLICES_IND
= 630,
372 MSG_SMS_HO_INBAND_POWER_IND
= 631,
373 MSG_SMS_MANUAL_DEMOD_REQ
= 632,
374 MSG_SMS_HO_TUNE_ON_REQ
= 636,
375 MSG_SMS_HO_TUNE_ON_RES
= 637,
376 MSG_SMS_HO_TUNE_OFF_REQ
= 638,
377 MSG_SMS_HO_TUNE_OFF_RES
= 639,
378 MSG_SMS_HO_PEEK_FREQ_REQ
= 640,
379 MSG_SMS_HO_PEEK_FREQ_RES
= 641,
380 MSG_SMS_HO_PEEK_FREQ_IND
= 642,
381 MSG_SMS_MB_ATTEN_SET_REQ
= 643,
382 MSG_SMS_MB_ATTEN_SET_RES
= 644,
383 MSG_SMS_ENABLE_STAT_IN_I2C_REQ
= 649,
384 MSG_SMS_ENABLE_STAT_IN_I2C_RES
= 650,
385 MSG_SMS_SET_ANTENNA_CONFIG_REQ
= 651,
386 MSG_SMS_SET_ANTENNA_CONFIG_RES
= 652,
387 MSG_SMS_GET_STATISTICS_EX_REQ
= 653,
388 MSG_SMS_GET_STATISTICS_EX_RES
= 654,
389 MSG_SMS_SLEEP_RESUME_COMP_IND
= 655,
390 MSG_SMS_SWITCH_HOST_INTERFACE_REQ
= 656,
391 MSG_SMS_SWITCH_HOST_INTERFACE_RES
= 657,
392 MSG_SMS_DATA_DOWNLOAD_REQ
= 660,
393 MSG_SMS_DATA_DOWNLOAD_RES
= 661,
394 MSG_SMS_DATA_VALIDITY_REQ
= 662,
395 MSG_SMS_DATA_VALIDITY_RES
= 663,
396 MSG_SMS_SWDOWNLOAD_TRIGGER_REQ
= 664,
397 MSG_SMS_SWDOWNLOAD_TRIGGER_RES
= 665,
398 MSG_SMS_SWDOWNLOAD_BACKDOOR_REQ
= 666,
399 MSG_SMS_SWDOWNLOAD_BACKDOOR_RES
= 667,
400 MSG_SMS_GET_VERSION_EX_REQ
= 668,
401 MSG_SMS_GET_VERSION_EX_RES
= 669,
402 MSG_SMS_CLOCK_OUTPUT_CONFIG_REQ
= 670,
403 MSG_SMS_CLOCK_OUTPUT_CONFIG_RES
= 671,
404 MSG_SMS_I2C_SET_FREQ_REQ
= 685,
405 MSG_SMS_I2C_SET_FREQ_RES
= 686,
406 MSG_SMS_GENERIC_I2C_REQ
= 687,
407 MSG_SMS_GENERIC_I2C_RES
= 688,
408 MSG_SMS_DVBT_BDA_DATA
= 693,
409 MSG_SW_RELOAD_REQ
= 697,
410 MSG_SMS_DATA_MSG
= 699,
411 MSG_TABLE_UPLOAD_REQ
= 700,
412 MSG_TABLE_UPLOAD_RES
= 701,
413 MSG_SW_RELOAD_START_REQ
= 702,
414 MSG_SW_RELOAD_START_RES
= 703,
415 MSG_SW_RELOAD_EXEC_REQ
= 704,
416 MSG_SW_RELOAD_EXEC_RES
= 705,
417 MSG_SMS_SPI_INT_LINE_SET_REQ
= 710,
418 MSG_SMS_SPI_INT_LINE_SET_RES
= 711,
419 MSG_SMS_GPIO_CONFIG_EX_REQ
= 712,
420 MSG_SMS_GPIO_CONFIG_EX_RES
= 713,
421 MSG_SMS_WATCHDOG_ACT_REQ
= 716,
422 MSG_SMS_WATCHDOG_ACT_RES
= 717,
423 MSG_SMS_LOOPBACK_REQ
= 718,
424 MSG_SMS_LOOPBACK_RES
= 719,
425 MSG_SMS_RAW_CAPTURE_START_REQ
= 720,
426 MSG_SMS_RAW_CAPTURE_START_RES
= 721,
427 MSG_SMS_RAW_CAPTURE_ABORT_REQ
= 722,
428 MSG_SMS_RAW_CAPTURE_ABORT_RES
= 723,
429 MSG_SMS_RAW_CAPTURE_COMPLETE_IND
= 728,
430 MSG_SMS_DATA_PUMP_IND
= 729,
431 MSG_SMS_DATA_PUMP_REQ
= 730,
432 MSG_SMS_DATA_PUMP_RES
= 731,
433 MSG_SMS_FLASH_DL_REQ
= 732,
434 MSG_SMS_EXEC_TEST_1_REQ
= 734,
435 MSG_SMS_EXEC_TEST_1_RES
= 735,
436 MSG_SMS_ENBALE_TS_INTERFACE_REQ
= 736,
437 MSG_SMS_ENBALE_TS_INTERFACE_RES
= 737,
438 MSG_SMS_SPI_SET_BUS_WIDTH_REQ
= 738,
439 MSG_SMS_SPI_SET_BUS_WIDTH_RES
= 739,
440 MSG_SMS_SEND_EMM_REQ
= 740,
441 MSG_SMS_SEND_EMM_RES
= 741,
442 MSG_SMS_DISABLE_TS_INTERFACE_REQ
= 742,
443 MSG_SMS_DISABLE_TS_INTERFACE_RES
= 743,
444 MSG_SMS_IS_BUF_FREE_REQ
= 744,
445 MSG_SMS_IS_BUF_FREE_RES
= 745,
446 MSG_SMS_EXT_ANTENNA_REQ
= 746,
447 MSG_SMS_EXT_ANTENNA_RES
= 747,
448 MSG_SMS_CMMB_GET_NET_OF_FREQ_REQ_OBSOLETE
= 748,
449 MSG_SMS_CMMB_GET_NET_OF_FREQ_RES_OBSOLETE
= 749,
450 MSG_SMS_BATTERY_LEVEL_REQ
= 750,
451 MSG_SMS_BATTERY_LEVEL_RES
= 751,
452 MSG_SMS_CMMB_INJECT_TABLE_REQ_OBSOLETE
= 752,
453 MSG_SMS_CMMB_INJECT_TABLE_RES_OBSOLETE
= 753,
454 MSG_SMS_FM_RADIO_BLOCK_IND
= 754,
455 MSG_SMS_HOST_NOTIFICATION_IND
= 755,
456 MSG_SMS_CMMB_GET_CONTROL_TABLE_REQ_OBSOLETE
= 756,
457 MSG_SMS_CMMB_GET_CONTROL_TABLE_RES_OBSOLETE
= 757,
458 MSG_SMS_CMMB_GET_NETWORKS_REQ
= 760,
459 MSG_SMS_CMMB_GET_NETWORKS_RES
= 761,
460 MSG_SMS_CMMB_START_SERVICE_REQ
= 762,
461 MSG_SMS_CMMB_START_SERVICE_RES
= 763,
462 MSG_SMS_CMMB_STOP_SERVICE_REQ
= 764,
463 MSG_SMS_CMMB_STOP_SERVICE_RES
= 765,
464 MSG_SMS_CMMB_ADD_CHANNEL_FILTER_REQ
= 768,
465 MSG_SMS_CMMB_ADD_CHANNEL_FILTER_RES
= 769,
466 MSG_SMS_CMMB_REMOVE_CHANNEL_FILTER_REQ
= 770,
467 MSG_SMS_CMMB_REMOVE_CHANNEL_FILTER_RES
= 771,
468 MSG_SMS_CMMB_START_CONTROL_INFO_REQ
= 772,
469 MSG_SMS_CMMB_START_CONTROL_INFO_RES
= 773,
470 MSG_SMS_CMMB_STOP_CONTROL_INFO_REQ
= 774,
471 MSG_SMS_CMMB_STOP_CONTROL_INFO_RES
= 775,
472 MSG_SMS_ISDBT_TUNE_REQ
= 776,
473 MSG_SMS_ISDBT_TUNE_RES
= 777,
474 MSG_SMS_TRANSMISSION_IND
= 782,
475 MSG_SMS_PID_STATISTICS_IND
= 783,
476 MSG_SMS_POWER_DOWN_IND
= 784,
477 MSG_SMS_POWER_DOWN_CONF
= 785,
478 MSG_SMS_POWER_UP_IND
= 786,
479 MSG_SMS_POWER_UP_CONF
= 787,
480 MSG_SMS_POWER_MODE_SET_REQ
= 790,
481 MSG_SMS_POWER_MODE_SET_RES
= 791,
482 MSG_SMS_DEBUG_HOST_EVENT_REQ
= 792,
483 MSG_SMS_DEBUG_HOST_EVENT_RES
= 793,
484 MSG_SMS_NEW_CRYSTAL_REQ
= 794,
485 MSG_SMS_NEW_CRYSTAL_RES
= 795,
486 MSG_SMS_CONFIG_SPI_REQ
= 796,
487 MSG_SMS_CONFIG_SPI_RES
= 797,
488 MSG_SMS_I2C_SHORT_STAT_IND
= 798,
489 MSG_SMS_START_IR_REQ
= 800,
490 MSG_SMS_START_IR_RES
= 801,
491 MSG_SMS_IR_SAMPLES_IND
= 802,
492 MSG_SMS_CMMB_CA_SERVICE_IND
= 803,
493 MSG_SMS_SLAVE_DEVICE_DETECTED
= 804,
494 MSG_SMS_INTERFACE_LOCK_IND
= 805,
495 MSG_SMS_INTERFACE_UNLOCK_IND
= 806,
496 MSG_SMS_SEND_ROSUM_BUFF_REQ
= 810,
497 MSG_SMS_SEND_ROSUM_BUFF_RES
= 811,
498 MSG_SMS_ROSUM_BUFF
= 812,
499 MSG_SMS_SET_AES128_KEY_REQ
= 815,
500 MSG_SMS_SET_AES128_KEY_RES
= 816,
501 MSG_SMS_MBBMS_WRITE_REQ
= 817,
502 MSG_SMS_MBBMS_WRITE_RES
= 818,
503 MSG_SMS_MBBMS_READ_IND
= 819,
504 MSG_SMS_IQ_STREAM_START_REQ
= 820,
505 MSG_SMS_IQ_STREAM_START_RES
= 821,
506 MSG_SMS_IQ_STREAM_STOP_REQ
= 822,
507 MSG_SMS_IQ_STREAM_STOP_RES
= 823,
508 MSG_SMS_IQ_STREAM_DATA_BLOCK
= 824,
509 MSG_SMS_GET_EEPROM_VERSION_REQ
= 825,
510 MSG_SMS_GET_EEPROM_VERSION_RES
= 826,
511 MSG_SMS_SIGNAL_DETECTED_IND
= 827,
512 MSG_SMS_NO_SIGNAL_IND
= 828,
513 MSG_SMS_MRC_SHUTDOWN_SLAVE_REQ
= 830,
514 MSG_SMS_MRC_SHUTDOWN_SLAVE_RES
= 831,
515 MSG_SMS_MRC_BRINGUP_SLAVE_REQ
= 832,
516 MSG_SMS_MRC_BRINGUP_SLAVE_RES
= 833,
517 MSG_SMS_EXTERNAL_LNA_CTRL_REQ
= 834,
518 MSG_SMS_EXTERNAL_LNA_CTRL_RES
= 835,
519 MSG_SMS_SET_PERIODIC_STATISTICS_REQ
= 836,
520 MSG_SMS_SET_PERIODIC_STATISTICS_RES
= 837,
521 MSG_SMS_CMMB_SET_AUTO_OUTPUT_TS0_REQ
= 838,
522 MSG_SMS_CMMB_SET_AUTO_OUTPUT_TS0_RES
= 839,
524 LOCAL_IFFT_H_ICI
= 851,
525 MSG_RESYNC_REQ
= 852,
526 MSG_SMS_CMMB_GET_MRC_STATISTICS_REQ
= 853,
527 MSG_SMS_CMMB_GET_MRC_STATISTICS_RES
= 854,
528 MSG_SMS_LOG_EX_ITEM
= 855,
529 MSG_SMS_DEVICE_DATA_LOSS_IND
= 856,
530 MSG_SMS_MRC_WATCHDOG_TRIGGERED_IND
= 857,
531 MSG_SMS_USER_MSG_REQ
= 858,
532 MSG_SMS_USER_MSG_RES
= 859,
533 MSG_SMS_SMART_CARD_INIT_REQ
= 860,
534 MSG_SMS_SMART_CARD_INIT_RES
= 861,
535 MSG_SMS_SMART_CARD_WRITE_REQ
= 862,
536 MSG_SMS_SMART_CARD_WRITE_RES
= 863,
537 MSG_SMS_SMART_CARD_READ_IND
= 864,
538 MSG_SMS_TSE_ENABLE_REQ
= 866,
539 MSG_SMS_TSE_ENABLE_RES
= 867,
540 MSG_SMS_CMMB_GET_SHORT_STATISTICS_REQ
= 868,
541 MSG_SMS_CMMB_GET_SHORT_STATISTICS_RES
= 869,
542 MSG_SMS_LED_CONFIG_REQ
= 870,
543 MSG_SMS_LED_CONFIG_RES
= 871,
544 MSG_PWM_ANTENNA_REQ
= 872,
545 MSG_PWM_ANTENNA_RES
= 873,
546 MSG_SMS_CMMB_SMD_SN_REQ
= 874,
547 MSG_SMS_CMMB_SMD_SN_RES
= 875,
548 MSG_SMS_CMMB_SET_CA_CW_REQ
= 876,
549 MSG_SMS_CMMB_SET_CA_CW_RES
= 877,
550 MSG_SMS_CMMB_SET_CA_SALT_REQ
= 878,
551 MSG_SMS_CMMB_SET_CA_SALT_RES
= 879,
552 MSG_SMS_NSCD_INIT_REQ
= 880,
553 MSG_SMS_NSCD_INIT_RES
= 881,
554 MSG_SMS_NSCD_PROCESS_SECTION_REQ
= 882,
555 MSG_SMS_NSCD_PROCESS_SECTION_RES
= 883,
556 MSG_SMS_DBD_CREATE_OBJECT_REQ
= 884,
557 MSG_SMS_DBD_CREATE_OBJECT_RES
= 885,
558 MSG_SMS_DBD_CONFIGURE_REQ
= 886,
559 MSG_SMS_DBD_CONFIGURE_RES
= 887,
560 MSG_SMS_DBD_SET_KEYS_REQ
= 888,
561 MSG_SMS_DBD_SET_KEYS_RES
= 889,
562 MSG_SMS_DBD_PROCESS_HEADER_REQ
= 890,
563 MSG_SMS_DBD_PROCESS_HEADER_RES
= 891,
564 MSG_SMS_DBD_PROCESS_DATA_REQ
= 892,
565 MSG_SMS_DBD_PROCESS_DATA_RES
= 893,
566 MSG_SMS_DBD_PROCESS_GET_DATA_REQ
= 894,
567 MSG_SMS_DBD_PROCESS_GET_DATA_RES
= 895,
568 MSG_SMS_NSCD_OPEN_SESSION_REQ
= 896,
569 MSG_SMS_NSCD_OPEN_SESSION_RES
= 897,
570 MSG_SMS_SEND_HOST_DATA_TO_DEMUX_REQ
= 898,
571 MSG_SMS_SEND_HOST_DATA_TO_DEMUX_RES
= 899,
572 MSG_LAST_MSG_TYPE
= 900,
575 #define SMS_INIT_MSG_EX(ptr, type, src, dst, len) do { \
576 (ptr)->msg_type = type; \
577 (ptr)->msg_src_id = src; \
578 (ptr)->msg_dst_id = dst; \
579 (ptr)->msg_length = len; \
580 (ptr)->msg_flags = 0; \
583 #define SMS_INIT_MSG(ptr, type, len) \
584 SMS_INIT_MSG_EX(ptr, type, 0, HIF_TASK, len)
586 enum SMS_DVB3_EVENTS
{
591 DVB3_EVENT_FE_UNLOCK
,
596 enum SMS_DEVICE_MODE
{
597 DEVICE_MODE_NONE
= -1,
598 DEVICE_MODE_DVBT
= 0,
600 DEVICE_MODE_DAB_TDMB
,
601 DEVICE_MODE_DAB_TDMB_DABIP
,
602 DEVICE_MODE_DVBT_BDA
,
604 DEVICE_MODE_ISDBT_BDA
,
606 DEVICE_MODE_RAW_TUNER
,
607 DEVICE_MODE_FM_RADIO
,
608 DEVICE_MODE_FM_RADIO_BDA
,
617 u16 msg_length
; /* length of entire message, including header */
621 struct sms_msg_data
{
622 struct sms_msg_hdr x_msg_header
;
626 struct sms_msg_data2
{
627 struct sms_msg_hdr x_msg_header
;
631 struct sms_msg_data4
{
632 struct sms_msg_hdr x_msg_header
;
636 struct sms_data_download
{
637 struct sms_msg_hdr x_msg_header
;
639 u8 payload
[SMS_MAX_PAYLOAD_SIZE
];
642 struct sms_version_res
{
643 struct sms_msg_hdr x_msg_header
;
645 u16 chip_model
; /* e.g. 0x1102 for SMS-1102 "Nova" */
646 u8 step
; /* 0 - step A */
647 u8 metal_fix
; /* 0 - Metal 0 */
649 /* firmware_id 0xFF if ROM, otherwise the
650 * value indicated by SMSHOSTLIB_DEVICE_MODES_E */
652 /* supported_protocols Bitwise OR combination of
653 * supported protocols */
654 u8 supported_protocols
;
659 u8 version_field_patch
;
664 u8 rom_ver_field_patch
;
669 struct sms_firmware
{
676 /* statistics information returned as response for
677 * SmsHostApiGetstatistics_Req */
679 u32 reserved
; /* reserved */
681 /* Common parameters */
682 u32 is_rf_locked
; /* 0 - not locked, 1 - locked */
683 u32 is_demod_locked
; /* 0 - not locked, 1 - locked */
684 u32 is_external_lna_on
; /* 0 - external LNA off, 1 - external LNA on */
686 /* Reception quality */
688 u32 ber
; /* Post Viterbi ber [1E-5] */
689 u32 FIB_CRC
; /* CRC errors percentage, valid only for DAB */
690 u32 ts_per
; /* Transport stream PER,
691 0xFFFFFFFF indicate N/A, valid only for DVB-T/H */
692 u32 MFER
; /* DVB-H frame error rate in percentage,
693 0xFFFFFFFF indicate N/A, valid only for DVB-H */
695 s32 in_band_pwr
; /* In band power in dBM */
696 s32 carrier_offset
; /* Carrier Offset in bin/1024 */
698 /* Transmission parameters */
699 u32 frequency
; /* frequency in Hz */
700 u32 bandwidth
; /* bandwidth in MHz, valid only for DVB-T/H */
701 u32 transmission_mode
; /* Transmission Mode, for DAB modes 1-4,
702 for DVB-T/H FFT mode carriers in Kilos */
703 u32 modem_state
; /* from SMSHOSTLIB_DVB_MODEM_STATE_ET,
704 valid only for DVB-T/H */
705 u32 guard_interval
; /* Guard Interval from
706 SMSHOSTLIB_GUARD_INTERVALS_ET, valid only for DVB-T/H */
707 u32 code_rate
; /* Code Rate from SMSHOSTLIB_CODE_RATE_ET,
708 valid only for DVB-T/H */
709 u32 lp_code_rate
; /* Low Priority Code Rate from
710 SMSHOSTLIB_CODE_RATE_ET, valid only for DVB-T/H */
711 u32 hierarchy
; /* hierarchy from SMSHOSTLIB_HIERARCHY_ET,
712 valid only for DVB-T/H */
713 u32 constellation
; /* constellation from
714 SMSHOSTLIB_CONSTELLATION_ET, valid only for DVB-T/H */
716 /* Burst parameters, valid only for DVB-H */
717 u32 burst_size
; /* Current burst size in bytes,
718 valid only for DVB-H */
719 u32 burst_duration
; /* Current burst duration in mSec,
720 valid only for DVB-H */
721 u32 burst_cycle_time
; /* Current burst cycle time in mSec,
722 valid only for DVB-H */
723 u32 calc_burst_cycle_time
;/* Current burst cycle time in mSec,
724 as calculated by demodulator, valid only for DVB-H */
725 u32 num_of_rows
; /* Number of rows in MPE table,
726 valid only for DVB-H */
727 u32 num_of_padd_cols
; /* Number of padding columns in MPE table,
728 valid only for DVB-H */
729 u32 num_of_punct_cols
; /* Number of puncturing columns in MPE table,
730 valid only for DVB-H */
731 u32 error_ts_packets
; /* Number of erroneous
732 transport-stream packets */
733 u32 total_ts_packets
; /* Total number of transport-stream packets */
734 u32 num_of_valid_mpe_tlbs
; /* Number of MPE tables which do not include
735 errors after MPE RS decoding */
736 u32 num_of_invalid_mpe_tlbs
;/* Number of MPE tables which include errors
737 after MPE RS decoding */
738 u32 num_of_corrected_mpe_tlbs
;/* Number of MPE tables which were
739 corrected by MPE RS decoding */
741 u32 ber_error_count
; /* Number of errornous SYNC bits. */
742 u32 ber_bit_count
; /* Total number of SYNC bits. */
744 /* Interface information */
745 u32 sms_to_host_tx_errors
; /* Total number of transmission errors. */
748 u32 pre_ber
; /* DAB/T-DMB only: Pre Viterbi ber [1E-5] */
750 /* DVB-H TPS parameters */
751 u32 cell_id
; /* TPS Cell ID in bits 15..0, bits 31..16 zero;
752 if set to 0xFFFFFFFF cell_id not yet recovered */
753 u32 dvbh_srv_ind_hp
; /* DVB-H service indication info, bit 1 -
754 Time Slicing indicator, bit 0 - MPE-FEC indicator */
755 u32 dvbh_srv_ind_lp
; /* DVB-H service indication info, bit 1 -
756 Time Slicing indicator, bit 0 - MPE-FEC indicator */
758 u32 num_mpe_received
; /* DVB-H, Num MPE section received */
760 u32 reservedFields
[10]; /* reserved */
763 struct sms_msg_statistics_info
{
766 struct sms_stats stat
;
768 /* Split the calc of the SNR in DAB */
774 struct sms_isdbt_layer_stats
{
775 /* Per-layer information */
776 u32 code_rate
; /* Code Rate from SMSHOSTLIB_CODE_RATE_ET,
777 * 255 means layer does not exist */
778 u32 constellation
; /* constellation from SMSHOSTLIB_CONSTELLATION_ET,
779 * 255 means layer does not exist */
780 u32 ber
; /* Post Viterbi ber [1E-5], 0xFFFFFFFF indicate N/A */
781 u32 ber_error_count
; /* Post Viterbi Error Bits Count */
782 u32 ber_bit_count
; /* Post Viterbi Total Bits Count */
783 u32 pre_ber
; /* Pre Viterbi ber [1E-5], 0xFFFFFFFF indicate N/A */
784 u32 ts_per
; /* Transport stream PER [%], 0xFFFFFFFF indicate N/A */
785 u32 error_ts_packets
; /* Number of erroneous transport-stream packets */
786 u32 total_ts_packets
; /* Total number of transport-stream packets */
787 u32 ti_ldepth_i
; /* Time interleaver depth I parameter,
788 * 255 means layer does not exist */
789 u32 number_of_segments
; /* Number of segments in layer A,
790 * 255 means layer does not exist */
791 u32 tmcc_errors
; /* TMCC errors */
794 struct sms_isdbt_stats
{
795 u32 statistics_type
; /* Enumerator identifying the type of the
796 * structure. Values are the same as
797 * SMSHOSTLIB_DEVICE_MODES_E
799 * This field MUST always be first in any
800 * statistics structure */
802 u32 full_size
; /* Total size of the structure returned by the modem.
803 * If the size requested by the host is smaller than
804 * full_size, the struct will be truncated */
806 /* Common parameters */
807 u32 is_rf_locked
; /* 0 - not locked, 1 - locked */
808 u32 is_demod_locked
; /* 0 - not locked, 1 - locked */
809 u32 is_external_lna_on
; /* 0 - external LNA off, 1 - external LNA on */
811 /* Reception quality */
814 s32 in_band_pwr
; /* In band power in dBM */
815 s32 carrier_offset
; /* Carrier Offset in Hz */
817 /* Transmission parameters */
818 u32 frequency
; /* frequency in Hz */
819 u32 bandwidth
; /* bandwidth in MHz */
820 u32 transmission_mode
; /* ISDB-T transmission mode */
821 u32 modem_state
; /* 0 - Acquisition, 1 - Locked */
822 u32 guard_interval
; /* Guard Interval, 1 divided by value */
823 u32 system_type
; /* ISDB-T system type (ISDB-T / ISDB-Tsb) */
824 u32 partial_reception
; /* TRUE - partial reception, FALSE otherwise */
825 u32 num_of_layers
; /* Number of ISDB-T layers in the network */
827 /* Per-layer information */
828 /* Layers A, B and C */
829 struct sms_isdbt_layer_stats layer_info
[3];
830 /* Per-layer statistics, see sms_isdbt_layer_stats */
832 /* Interface information */
833 u32 sms_to_host_tx_errors
; /* Total number of transmission errors. */
836 struct sms_isdbt_stats_ex
{
837 u32 statistics_type
; /* Enumerator identifying the type of the
838 * structure. Values are the same as
839 * SMSHOSTLIB_DEVICE_MODES_E
841 * This field MUST always be first in any
842 * statistics structure */
844 u32 full_size
; /* Total size of the structure returned by the modem.
845 * If the size requested by the host is smaller than
846 * full_size, the struct will be truncated */
848 /* Common parameters */
849 u32 is_rf_locked
; /* 0 - not locked, 1 - locked */
850 u32 is_demod_locked
; /* 0 - not locked, 1 - locked */
851 u32 is_external_lna_on
; /* 0 - external LNA off, 1 - external LNA on */
853 /* Reception quality */
856 s32 in_band_pwr
; /* In band power in dBM */
857 s32 carrier_offset
; /* Carrier Offset in Hz */
859 /* Transmission parameters */
860 u32 frequency
; /* frequency in Hz */
861 u32 bandwidth
; /* bandwidth in MHz */
862 u32 transmission_mode
; /* ISDB-T transmission mode */
863 u32 modem_state
; /* 0 - Acquisition, 1 - Locked */
864 u32 guard_interval
; /* Guard Interval, 1 divided by value */
865 u32 system_type
; /* ISDB-T system type (ISDB-T / ISDB-Tsb) */
866 u32 partial_reception
; /* TRUE - partial reception, FALSE otherwise */
867 u32 num_of_layers
; /* Number of ISDB-T layers in the network */
869 u32 segment_number
; /* Segment number for ISDB-Tsb */
870 u32 tune_bw
; /* Tuned bandwidth - BW_ISDBT_1SEG / BW_ISDBT_3SEG */
872 /* Per-layer information */
873 /* Layers A, B and C */
874 struct sms_isdbt_layer_stats layer_info
[3];
875 /* Per-layer statistics, see sms_isdbt_layer_stats */
877 /* Interface information */
878 u32 reserved1
; /* Was sms_to_host_tx_errors - obsolete . */
879 /* Proprietary information */
880 u32 ext_antenna
; /* Obsolete field. */
881 u32 reception_quality
;
882 u32 ews_alert_active
; /* signals if EWS alert is currently on */
883 u32 lna_on_off
; /* Internal LNA state: 0: OFF, 1: ON */
885 u32 rf_agc_level
; /* RF AGC Level [linear units], full gain = 65535 (20dB) */
886 u32 bb_agc_level
; /* Baseband AGC level [linear units], full gain = 65535 (71.5dB) */
887 u32 fw_errors_counter
; /* Application errors - should be always zero */
888 u8 FwErrorsHistoryArr
[8]; /* Last FW errors IDs - first is most recent, last is oldest */
890 s32 MRC_SNR
; /* dB */
891 u32 snr_full_res
; /* dB x 65536 */
896 struct sms_pid_stats_data
{
911 struct sms_pid_data
{
914 struct sms_pid_stats_data pid_statistics
;
917 #define CORRECT_STAT_RSSI(_stat) ((_stat).RSSI *= -1)
918 #define CORRECT_STAT_BANDWIDTH(_stat) (_stat.bandwidth = 8 - _stat.bandwidth)
919 #define CORRECT_STAT_TRANSMISSON_MODE(_stat) \
920 if (_stat.transmission_mode == 0) \
921 _stat.transmission_mode = 2; \
922 else if (_stat.transmission_mode == 1) \
923 _stat.transmission_mode = 8; \
925 _stat.transmission_mode = 4;
927 struct sms_tx_stats
{
928 u32 frequency
; /* frequency in Hz */
929 u32 bandwidth
; /* bandwidth in MHz */
930 u32 transmission_mode
; /* FFT mode carriers in Kilos */
931 u32 guard_interval
; /* Guard Interval from
932 SMSHOSTLIB_GUARD_INTERVALS_ET */
933 u32 code_rate
; /* Code Rate from SMSHOSTLIB_CODE_RATE_ET */
934 u32 lp_code_rate
; /* Low Priority Code Rate from
935 SMSHOSTLIB_CODE_RATE_ET */
936 u32 hierarchy
; /* hierarchy from SMSHOSTLIB_HIERARCHY_ET */
937 u32 constellation
; /* constellation from
938 SMSHOSTLIB_CONSTELLATION_ET */
940 /* DVB-H TPS parameters */
941 u32 cell_id
; /* TPS Cell ID in bits 15..0, bits 31..16 zero;
942 if set to 0xFFFFFFFF cell_id not yet recovered */
943 u32 dvbh_srv_ind_hp
; /* DVB-H service indication info, bit 1 -
944 Time Slicing indicator, bit 0 - MPE-FEC indicator */
945 u32 dvbh_srv_ind_lp
; /* DVB-H service indication info, bit 1 -
946 Time Slicing indicator, bit 0 - MPE-FEC indicator */
947 u32 is_demod_locked
; /* 0 - not locked, 1 - locked */
950 struct sms_rx_stats
{
951 u32 is_rf_locked
; /* 0 - not locked, 1 - locked */
952 u32 is_demod_locked
; /* 0 - not locked, 1 - locked */
953 u32 is_external_lna_on
; /* 0 - external LNA off, 1 - external LNA on */
955 u32 modem_state
; /* from SMSHOSTLIB_DVB_MODEM_STATE_ET */
957 u32 ber
; /* Post Viterbi ber [1E-5] */
958 u32 ber_error_count
; /* Number of erroneous SYNC bits. */
959 u32 ber_bit_count
; /* Total number of SYNC bits. */
960 u32 ts_per
; /* Transport stream PER,
961 0xFFFFFFFF indicate N/A */
962 u32 MFER
; /* DVB-H frame error rate in percentage,
963 0xFFFFFFFF indicate N/A, valid only for DVB-H */
965 s32 in_band_pwr
; /* In band power in dBM */
966 s32 carrier_offset
; /* Carrier Offset in bin/1024 */
967 u32 error_ts_packets
; /* Number of erroneous
968 transport-stream packets */
969 u32 total_ts_packets
; /* Total number of transport-stream packets */
971 s32 MRC_SNR
; /* dB */
972 s32 MRC_RSSI
; /* dBm */
973 s32 mrc_in_band_pwr
; /* In band power in dBM */
976 struct sms_rx_stats_ex
{
977 u32 is_rf_locked
; /* 0 - not locked, 1 - locked */
978 u32 is_demod_locked
; /* 0 - not locked, 1 - locked */
979 u32 is_external_lna_on
; /* 0 - external LNA off, 1 - external LNA on */
981 u32 modem_state
; /* from SMSHOSTLIB_DVB_MODEM_STATE_ET */
983 u32 ber
; /* Post Viterbi ber [1E-5] */
984 u32 ber_error_count
; /* Number of erroneous SYNC bits. */
985 u32 ber_bit_count
; /* Total number of SYNC bits. */
986 u32 ts_per
; /* Transport stream PER,
987 0xFFFFFFFF indicate N/A */
988 u32 MFER
; /* DVB-H frame error rate in percentage,
989 0xFFFFFFFF indicate N/A, valid only for DVB-H */
991 s32 in_band_pwr
; /* In band power in dBM */
992 s32 carrier_offset
; /* Carrier Offset in bin/1024 */
993 u32 error_ts_packets
; /* Number of erroneous
994 transport-stream packets */
995 u32 total_ts_packets
; /* Total number of transport-stream packets */
1000 s32 MRC_SNR
; /* dB */
1001 s32 MRC_RSSI
; /* dBm */
1002 s32 mrc_in_band_pwr
; /* In band power in dBM */
1006 /* statistics information returned as response for
1007 * SmsHostApiGetstatisticsEx_Req for DVB applications, SMS1100 and up */
1008 struct sms_stats_dvb
{
1010 struct sms_rx_stats reception_data
;
1012 /* Transmission parameters */
1013 struct sms_tx_stats transmission_data
;
1015 /* Burst parameters, valid only for DVB-H */
1016 #define SRVM_MAX_PID_FILTERS 8
1017 struct sms_pid_data pid_data
[SRVM_MAX_PID_FILTERS
];
1020 /* statistics information returned as response for
1021 * SmsHostApiGetstatisticsEx_Req for DVB applications, SMS1100 and up */
1022 struct sms_stats_dvb_ex
{
1024 struct sms_rx_stats_ex reception_data
;
1026 /* Transmission parameters */
1027 struct sms_tx_stats transmission_data
;
1029 /* Burst parameters, valid only for DVB-H */
1030 #define SRVM_MAX_PID_FILTERS 8
1031 struct sms_pid_data pid_data
[SRVM_MAX_PID_FILTERS
];
1034 struct sms_srvm_signal_status
{
1050 struct sms_i2c_req
{
1051 u32 device_address
; /* I2c device address */
1052 u32 write_count
; /* number of bytes to write */
1053 u32 read_count
; /* number of bytes to read */
1057 struct sms_i2c_res
{
1058 u32 status
; /* non-zero value in case of failure */
1059 u32 read_count
; /* number of bytes read */
1064 struct smscore_config_gpio
{
1065 #define SMS_GPIO_DIRECTION_INPUT 0
1066 #define SMS_GPIO_DIRECTION_OUTPUT 1
1069 #define SMS_GPIO_PULLUPDOWN_NONE 0
1070 #define SMS_GPIO_PULLUPDOWN_PULLDOWN 1
1071 #define SMS_GPIO_PULLUPDOWN_PULLUP 2
1072 #define SMS_GPIO_PULLUPDOWN_KEEPER 3
1075 #define SMS_GPIO_INPUTCHARACTERISTICS_NORMAL 0
1076 #define SMS_GPIO_INPUTCHARACTERISTICS_SCHMITT 1
1077 u8 inputcharacteristics
;
1080 #define SMS_GPIO_OUTPUT_SLEW_RATE_FAST 0
1081 #define SMS_GPIO_OUTPUT_SLEW_WRATE_SLOW 1
1084 #define SMS_GPIO_OUTPUT_SLEW_RATE_0_45_V_NS 0
1085 #define SMS_GPIO_OUTPUT_SLEW_RATE_0_9_V_NS 1
1086 #define SMS_GPIO_OUTPUT_SLEW_RATE_1_7_V_NS 2
1087 #define SMS_GPIO_OUTPUT_SLEW_RATE_3_3_V_NS 3
1092 #define SMS_GPIO_OUTPUTDRIVING_S_4mA 0
1093 #define SMS_GPIO_OUTPUTDRIVING_S_8mA 1
1094 #define SMS_GPIO_OUTPUTDRIVING_S_12mA 2
1095 #define SMS_GPIO_OUTPUTDRIVING_S_16mA 3
1098 #define SMS_GPIO_OUTPUTDRIVING_1_5mA 0
1099 #define SMS_GPIO_OUTPUTDRIVING_2_8mA 1
1100 #define SMS_GPIO_OUTPUTDRIVING_4mA 2
1101 #define SMS_GPIO_OUTPUTDRIVING_7mA 3
1102 #define SMS_GPIO_OUTPUTDRIVING_10mA 4
1103 #define SMS_GPIO_OUTPUTDRIVING_11mA 5
1104 #define SMS_GPIO_OUTPUTDRIVING_14mA 6
1105 #define SMS_GPIO_OUTPUTDRIVING_16mA 7
1110 char *smscore_translate_msg(enum msg_types msgtype
);
1112 extern int smscore_registry_getmode(char *devpath
);
1114 extern int smscore_register_hotplug(hotplug_t hotplug
);
1115 extern void smscore_unregister_hotplug(hotplug_t hotplug
);
1117 extern int smscore_register_device(struct smsdevice_params_t
*params
,
1118 struct smscore_device_t
**coredev
);
1119 extern void smscore_unregister_device(struct smscore_device_t
*coredev
);
1121 extern int smscore_start_device(struct smscore_device_t
*coredev
);
1122 extern int smscore_load_firmware(struct smscore_device_t
*coredev
,
1124 loadfirmware_t loadfirmware_handler
);
1126 extern int smscore_set_device_mode(struct smscore_device_t
*coredev
, int mode
);
1127 extern int smscore_get_device_mode(struct smscore_device_t
*coredev
);
1129 extern int smscore_register_client(struct smscore_device_t
*coredev
,
1130 struct smsclient_params_t
*params
,
1131 struct smscore_client_t
**client
);
1132 extern void smscore_unregister_client(struct smscore_client_t
*client
);
1134 extern int smsclient_sendrequest(struct smscore_client_t
*client
,
1135 void *buffer
, size_t size
);
1136 extern void smscore_onresponse(struct smscore_device_t
*coredev
,
1137 struct smscore_buffer_t
*cb
);
1139 extern int smscore_get_common_buffer_size(struct smscore_device_t
*coredev
);
1140 extern int smscore_map_common_buffer(struct smscore_device_t
*coredev
,
1141 struct vm_area_struct
*vma
);
1142 extern int smscore_send_fw_file(struct smscore_device_t
*coredev
,
1143 u8
*ufwbuf
, int size
);
1146 struct smscore_buffer_t
*smscore_getbuffer(struct smscore_device_t
*coredev
);
1147 extern void smscore_putbuffer(struct smscore_device_t
*coredev
,
1148 struct smscore_buffer_t
*cb
);
1150 /* old GPIO management */
1151 int smscore_configure_gpio(struct smscore_device_t
*coredev
, u32 pin
,
1152 struct smscore_config_gpio
*pinconfig
);
1153 int smscore_set_gpio(struct smscore_device_t
*coredev
, u32 pin
, int level
);
1155 /* new GPIO management */
1156 extern int smscore_gpio_configure(struct smscore_device_t
*coredev
, u8 pin_num
,
1157 struct smscore_config_gpio
*p_gpio_config
);
1158 extern int smscore_gpio_set_level(struct smscore_device_t
*coredev
, u8 pin_num
,
1160 extern int smscore_gpio_get_level(struct smscore_device_t
*coredev
, u8 pin_num
,
1163 void smscore_set_board_id(struct smscore_device_t
*core
, int id
);
1164 int smscore_get_board_id(struct smscore_device_t
*core
);
1166 int smscore_led_state(struct smscore_device_t
*core
, int led
);
1169 /* ------------------------------------------------------------------------ */
1174 #define sms_printk(kern, fmt, arg...) \
1175 printk(kern "%s: " fmt "\n", __func__, ##arg)
1177 #define dprintk(kern, lvl, fmt, arg...) do {\
1178 if (sms_dbg & lvl) \
1179 sms_printk(kern, fmt, ##arg); \
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)
1192 #endif /* __SMS_CORE_API_H__ */