1145 lines · c
1/* SPDX-License-Identifier: GPL-2.0-or-later */2/****************************************************************3 4Siano Mobile Silicon, Inc.5MDTV receiver kernel modules.6Copyright (C) 2006-2008, Uri Shkolnik, Anatoly Greenblat7 8 9****************************************************************/10 11#ifndef __SMS_CORE_API_H__12#define __SMS_CORE_API_H__13 14#define pr_fmt(fmt) "%s:%s: " fmt, KBUILD_MODNAME, __func__15 16#include <linux/device.h>17#include <linux/list.h>18#include <linux/mm.h>19#include <linux/scatterlist.h>20#include <linux/types.h>21#include <linux/mutex.h>22#include <linux/wait.h>23#include <linux/timer.h>24 25#include <media/media-device.h>26 27#include <asm/page.h>28 29#include "smsir.h"30 31/*32 * Define the firmware names used by the driver.33 * Those should match what's used at smscoreapi.c and sms-cards.c34 * including the MODULE_FIRMWARE() macros at the end of smscoreapi.c35 */36#define SMS_FW_ATSC_DENVER "atsc_denver.inp"37#define SMS_FW_CMMB_MING_APP "cmmb_ming_app.inp"38#define SMS_FW_CMMB_VEGA_12MHZ "cmmb_vega_12mhz.inp"39#define SMS_FW_CMMB_VENICE_12MHZ "cmmb_venice_12mhz.inp"40#define SMS_FW_DVBH_RIO "dvbh_rio.inp"41#define SMS_FW_DVB_NOVA_12MHZ_B0 "dvb_nova_12mhz_b0.inp"42#define SMS_FW_DVB_NOVA_12MHZ "dvb_nova_12mhz.inp"43#define SMS_FW_DVB_RIO "dvb_rio.inp"44#define SMS_FW_FM_RADIO "fm_radio.inp"45#define SMS_FW_FM_RADIO_RIO "fm_radio_rio.inp"46#define SMS_FW_DVBT_HCW_55XXX "sms1xxx-hcw-55xxx-dvbt-02.fw"47#define SMS_FW_ISDBT_HCW_55XXX "sms1xxx-hcw-55xxx-isdbt-02.fw"48#define SMS_FW_ISDBT_NOVA_12MHZ_B0 "isdbt_nova_12mhz_b0.inp"49#define SMS_FW_ISDBT_NOVA_12MHZ "isdbt_nova_12mhz.inp"50#define SMS_FW_ISDBT_PELE "isdbt_pele.inp"51#define SMS_FW_ISDBT_RIO "isdbt_rio.inp"52#define SMS_FW_DVBT_NOVA_A "sms1xxx-nova-a-dvbt-01.fw"53#define SMS_FW_DVBT_NOVA_B "sms1xxx-nova-b-dvbt-01.fw"54#define SMS_FW_DVBT_STELLAR "sms1xxx-stellar-dvbt-01.fw"55#define SMS_FW_TDMB_DENVER "tdmb_denver.inp"56#define SMS_FW_TDMB_NOVA_12MHZ_B0 "tdmb_nova_12mhz_b0.inp"57#define SMS_FW_TDMB_NOVA_12MHZ "tdmb_nova_12mhz.inp"58 59#define SMS_PROTOCOL_MAX_RAOUNDTRIP_MS (10000)60#define SMS_ALLOC_ALIGNMENT 12861#define SMS_DMA_ALIGNMENT 1662#define SMS_ALIGN_ADDRESS(addr) \63 ((((uintptr_t)(addr)) + (SMS_DMA_ALIGNMENT-1)) & ~(SMS_DMA_ALIGNMENT-1))64 65#define SMS_DEVICE_FAMILY1 066#define SMS_DEVICE_FAMILY2 167#define SMS_ROM_NO_RESPONSE 268#define SMS_DEVICE_NOT_READY 0x800000069 70enum sms_device_type_st {71 SMS_UNKNOWN_TYPE = -1,72 SMS_STELLAR = 0,73 SMS_NOVA_A0,74 SMS_NOVA_B0,75 SMS_VEGA,76 SMS_VENICE,77 SMS_MING,78 SMS_PELE,79 SMS_RIO,80 SMS_DENVER_1530,81 SMS_DENVER_2160,82 SMS_NUM_OF_DEVICE_TYPES83};84 85enum sms_power_mode_st {86 SMS_POWER_MODE_ACTIVE,87 SMS_POWER_MODE_SUSPENDED88};89 90struct smscore_device_t;91struct smscore_client_t;92struct smscore_buffer_t;93 94typedef int (*hotplug_t)(struct smscore_device_t *coredev,95 struct device *device, int arrival);96 97typedef int (*setmode_t)(void *context, int mode);98typedef void (*detectmode_t)(void *context, int *mode);99typedef int (*sendrequest_t)(void *context, void *buffer, size_t size);100typedef int (*preload_t)(void *context);101typedef int (*postload_t)(void *context);102 103typedef int (*onresponse_t)(void *context, struct smscore_buffer_t *cb);104typedef void (*onremove_t)(void *context);105 106struct smscore_buffer_t {107 /* public members, once passed to clients can be changed freely */108 struct list_head entry;109 int size;110 int offset;111 112 /* private members, read-only for clients */113 void *p;114 dma_addr_t phys;115 unsigned long offset_in_common;116};117 118struct smsdevice_params_t {119 struct device *device;120 struct usb_device *usb_device;121 122 int buffer_size;123 int num_buffers;124 125 char devpath[32];126 unsigned long flags;127 128 setmode_t setmode_handler;129 detectmode_t detectmode_handler;130 sendrequest_t sendrequest_handler;131 preload_t preload_handler;132 postload_t postload_handler;133 134 void *context;135 enum sms_device_type_st device_type;136};137 138struct smsclient_params_t {139 int initial_id;140 int data_type;141 onresponse_t onresponse_handler;142 onremove_t onremove_handler;143 void *context;144};145 146struct smscore_device_t {147 struct list_head entry;148 149 struct list_head clients;150 struct list_head subclients;151 spinlock_t clientslock;152 153 struct list_head buffers;154 spinlock_t bufferslock;155 int num_buffers;156 157 void *common_buffer;158 int common_buffer_size;159 dma_addr_t common_buffer_phys;160 161 void *context;162 struct device *device;163 struct usb_device *usb_device;164 165 char devpath[32];166 unsigned long device_flags;167 168 setmode_t setmode_handler;169 detectmode_t detectmode_handler;170 sendrequest_t sendrequest_handler;171 preload_t preload_handler;172 postload_t postload_handler;173 174 int mode, modes_supported;175 176 gfp_t gfp_buf_flags;177 178 /* host <--> device messages */179 struct completion version_ex_done, data_download_done, trigger_done;180 struct completion data_validity_done, device_ready_done;181 struct completion init_device_done, reload_start_done, resume_done;182 struct completion gpio_configuration_done, gpio_set_level_done;183 struct completion gpio_get_level_done, ir_init_done;184 185 /* Buffer management */186 wait_queue_head_t buffer_mng_waitq;187 188 /* GPIO */189 int gpio_get_res;190 191 /* Target hardware board */192 int board_id;193 194 /* Firmware */195 u8 *fw_buf;196 u32 fw_buf_size;197 u16 fw_version;198 199 /* Infrared (IR) */200 struct ir_t ir;201 202 /*203 * Identify if device is USB or not.204 * Used by smsdvb-sysfs to know the root node for debugfs205 */206 bool is_usb_device;207 208 int led_state;209 210#if defined(CONFIG_MEDIA_CONTROLLER_DVB)211 struct media_device *media_dev;212#endif213};214 215/* GPIO definitions for antenna frequency domain control (SMS8021) */216#define SMS_ANTENNA_GPIO_0 1217#define SMS_ANTENNA_GPIO_1 0218 219enum sms_bandwidth_mode {220 BW_8_MHZ = 0,221 BW_7_MHZ = 1,222 BW_6_MHZ = 2,223 BW_5_MHZ = 3,224 BW_ISDBT_1SEG = 4,225 BW_ISDBT_3SEG = 5,226 BW_2_MHZ = 6,227 BW_FM_RADIO = 7,228 BW_ISDBT_13SEG = 8,229 BW_1_5_MHZ = 15,230 BW_UNKNOWN = 0xffff231};232 233 234#define MSG_HDR_FLAG_SPLIT_MSG 4235 236#define MAX_GPIO_PIN_NUMBER 31237 238#define HIF_TASK 11239#define HIF_TASK_SLAVE 22240#define HIF_TASK_SLAVE2 33241#define HIF_TASK_SLAVE3 44242#define SMS_HOST_LIB 150243#define DVBT_BDA_CONTROL_MSG_ID 201244 245#define SMS_MAX_PAYLOAD_SIZE 240246#define SMS_TUNE_TIMEOUT 500247 248enum msg_types {249 MSG_TYPE_BASE_VAL = 500,250 MSG_SMS_GET_VERSION_REQ = 503,251 MSG_SMS_GET_VERSION_RES = 504,252 MSG_SMS_MULTI_BRIDGE_CFG = 505,253 MSG_SMS_GPIO_CONFIG_REQ = 507,254 MSG_SMS_GPIO_CONFIG_RES = 508,255 MSG_SMS_GPIO_SET_LEVEL_REQ = 509,256 MSG_SMS_GPIO_SET_LEVEL_RES = 510,257 MSG_SMS_GPIO_GET_LEVEL_REQ = 511,258 MSG_SMS_GPIO_GET_LEVEL_RES = 512,259 MSG_SMS_EEPROM_BURN_IND = 513,260 MSG_SMS_LOG_ENABLE_CHANGE_REQ = 514,261 MSG_SMS_LOG_ENABLE_CHANGE_RES = 515,262 MSG_SMS_SET_MAX_TX_MSG_LEN_REQ = 516,263 MSG_SMS_SET_MAX_TX_MSG_LEN_RES = 517,264 MSG_SMS_SPI_HALFDUPLEX_TOKEN_HOST_TO_DEVICE = 518,265 MSG_SMS_SPI_HALFDUPLEX_TOKEN_DEVICE_TO_HOST = 519,266 MSG_SMS_BACKGROUND_SCAN_FLAG_CHANGE_REQ = 520,267 MSG_SMS_BACKGROUND_SCAN_FLAG_CHANGE_RES = 521,268 MSG_SMS_BACKGROUND_SCAN_SIGNAL_DETECTED_IND = 522,269 MSG_SMS_BACKGROUND_SCAN_NO_SIGNAL_IND = 523,270 MSG_SMS_CONFIGURE_RF_SWITCH_REQ = 524,271 MSG_SMS_CONFIGURE_RF_SWITCH_RES = 525,272 MSG_SMS_MRC_PATH_DISCONNECT_REQ = 526,273 MSG_SMS_MRC_PATH_DISCONNECT_RES = 527,274 MSG_SMS_RECEIVE_1SEG_THROUGH_FULLSEG_REQ = 528,275 MSG_SMS_RECEIVE_1SEG_THROUGH_FULLSEG_RES = 529,276 MSG_SMS_RECEIVE_VHF_VIA_VHF_INPUT_REQ = 530,277 MSG_SMS_RECEIVE_VHF_VIA_VHF_INPUT_RES = 531,278 MSG_WR_REG_RFT_REQ = 533,279 MSG_WR_REG_RFT_RES = 534,280 MSG_RD_REG_RFT_REQ = 535,281 MSG_RD_REG_RFT_RES = 536,282 MSG_RD_REG_ALL_RFT_REQ = 537,283 MSG_RD_REG_ALL_RFT_RES = 538,284 MSG_HELP_INT = 539,285 MSG_RUN_SCRIPT_INT = 540,286 MSG_SMS_EWS_INBAND_REQ = 541,287 MSG_SMS_EWS_INBAND_RES = 542,288 MSG_SMS_RFS_SELECT_REQ = 543,289 MSG_SMS_RFS_SELECT_RES = 544,290 MSG_SMS_MB_GET_VER_REQ = 545,291 MSG_SMS_MB_GET_VER_RES = 546,292 MSG_SMS_MB_WRITE_CFGFILE_REQ = 547,293 MSG_SMS_MB_WRITE_CFGFILE_RES = 548,294 MSG_SMS_MB_READ_CFGFILE_REQ = 549,295 MSG_SMS_MB_READ_CFGFILE_RES = 550,296 MSG_SMS_RD_MEM_REQ = 552,297 MSG_SMS_RD_MEM_RES = 553,298 MSG_SMS_WR_MEM_REQ = 554,299 MSG_SMS_WR_MEM_RES = 555,300 MSG_SMS_UPDATE_MEM_REQ = 556,301 MSG_SMS_UPDATE_MEM_RES = 557,302 MSG_SMS_ISDBT_ENABLE_FULL_PARAMS_SET_REQ = 558,303 MSG_SMS_ISDBT_ENABLE_FULL_PARAMS_SET_RES = 559,304 MSG_SMS_RF_TUNE_REQ = 561,305 MSG_SMS_RF_TUNE_RES = 562,306 MSG_SMS_ISDBT_ENABLE_HIGH_MOBILITY_REQ = 563,307 MSG_SMS_ISDBT_ENABLE_HIGH_MOBILITY_RES = 564,308 MSG_SMS_ISDBT_SB_RECEPTION_REQ = 565,309 MSG_SMS_ISDBT_SB_RECEPTION_RES = 566,310 MSG_SMS_GENERIC_EPROM_WRITE_REQ = 567,311 MSG_SMS_GENERIC_EPROM_WRITE_RES = 568,312 MSG_SMS_GENERIC_EPROM_READ_REQ = 569,313 MSG_SMS_GENERIC_EPROM_READ_RES = 570,314 MSG_SMS_EEPROM_WRITE_REQ = 571,315 MSG_SMS_EEPROM_WRITE_RES = 572,316 MSG_SMS_CUSTOM_READ_REQ = 574,317 MSG_SMS_CUSTOM_READ_RES = 575,318 MSG_SMS_CUSTOM_WRITE_REQ = 576,319 MSG_SMS_CUSTOM_WRITE_RES = 577,320 MSG_SMS_INIT_DEVICE_REQ = 578,321 MSG_SMS_INIT_DEVICE_RES = 579,322 MSG_SMS_ATSC_SET_ALL_IP_REQ = 580,323 MSG_SMS_ATSC_SET_ALL_IP_RES = 581,324 MSG_SMS_ATSC_START_ENSEMBLE_REQ = 582,325 MSG_SMS_ATSC_START_ENSEMBLE_RES = 583,326 MSG_SMS_SET_OUTPUT_MODE_REQ = 584,327 MSG_SMS_SET_OUTPUT_MODE_RES = 585,328 MSG_SMS_ATSC_IP_FILTER_GET_LIST_REQ = 586,329 MSG_SMS_ATSC_IP_FILTER_GET_LIST_RES = 587,330 MSG_SMS_SUB_CHANNEL_START_REQ = 589,331 MSG_SMS_SUB_CHANNEL_START_RES = 590,332 MSG_SMS_SUB_CHANNEL_STOP_REQ = 591,333 MSG_SMS_SUB_CHANNEL_STOP_RES = 592,334 MSG_SMS_ATSC_IP_FILTER_ADD_REQ = 593,335 MSG_SMS_ATSC_IP_FILTER_ADD_RES = 594,336 MSG_SMS_ATSC_IP_FILTER_REMOVE_REQ = 595,337 MSG_SMS_ATSC_IP_FILTER_REMOVE_RES = 596,338 MSG_SMS_ATSC_IP_FILTER_REMOVE_ALL_REQ = 597,339 MSG_SMS_ATSC_IP_FILTER_REMOVE_ALL_RES = 598,340 MSG_SMS_WAIT_CMD = 599,341 MSG_SMS_ADD_PID_FILTER_REQ = 601,342 MSG_SMS_ADD_PID_FILTER_RES = 602,343 MSG_SMS_REMOVE_PID_FILTER_REQ = 603,344 MSG_SMS_REMOVE_PID_FILTER_RES = 604,345 MSG_SMS_FAST_INFORMATION_CHANNEL_REQ = 605,346 MSG_SMS_FAST_INFORMATION_CHANNEL_RES = 606,347 MSG_SMS_DAB_CHANNEL = 607,348 MSG_SMS_GET_PID_FILTER_LIST_REQ = 608,349 MSG_SMS_GET_PID_FILTER_LIST_RES = 609,350 MSG_SMS_POWER_DOWN_REQ = 610,351 MSG_SMS_POWER_DOWN_RES = 611,352 MSG_SMS_ATSC_SLT_EXIST_IND = 612,353 MSG_SMS_ATSC_NO_SLT_IND = 613,354 MSG_SMS_GET_STATISTICS_REQ = 615,355 MSG_SMS_GET_STATISTICS_RES = 616,356 MSG_SMS_SEND_DUMP = 617,357 MSG_SMS_SCAN_START_REQ = 618,358 MSG_SMS_SCAN_START_RES = 619,359 MSG_SMS_SCAN_STOP_REQ = 620,360 MSG_SMS_SCAN_STOP_RES = 621,361 MSG_SMS_SCAN_PROGRESS_IND = 622,362 MSG_SMS_SCAN_COMPLETE_IND = 623,363 MSG_SMS_LOG_ITEM = 624,364 MSG_SMS_DAB_SUBCHANNEL_RECONFIG_REQ = 628,365 MSG_SMS_DAB_SUBCHANNEL_RECONFIG_RES = 629,366 MSG_SMS_HO_PER_SLICES_IND = 630,367 MSG_SMS_HO_INBAND_POWER_IND = 631,368 MSG_SMS_MANUAL_DEMOD_REQ = 632,369 MSG_SMS_HO_TUNE_ON_REQ = 636,370 MSG_SMS_HO_TUNE_ON_RES = 637,371 MSG_SMS_HO_TUNE_OFF_REQ = 638,372 MSG_SMS_HO_TUNE_OFF_RES = 639,373 MSG_SMS_HO_PEEK_FREQ_REQ = 640,374 MSG_SMS_HO_PEEK_FREQ_RES = 641,375 MSG_SMS_HO_PEEK_FREQ_IND = 642,376 MSG_SMS_MB_ATTEN_SET_REQ = 643,377 MSG_SMS_MB_ATTEN_SET_RES = 644,378 MSG_SMS_ENABLE_STAT_IN_I2C_REQ = 649,379 MSG_SMS_ENABLE_STAT_IN_I2C_RES = 650,380 MSG_SMS_SET_ANTENNA_CONFIG_REQ = 651,381 MSG_SMS_SET_ANTENNA_CONFIG_RES = 652,382 MSG_SMS_GET_STATISTICS_EX_REQ = 653,383 MSG_SMS_GET_STATISTICS_EX_RES = 654,384 MSG_SMS_SLEEP_RESUME_COMP_IND = 655,385 MSG_SMS_SWITCH_HOST_INTERFACE_REQ = 656,386 MSG_SMS_SWITCH_HOST_INTERFACE_RES = 657,387 MSG_SMS_DATA_DOWNLOAD_REQ = 660,388 MSG_SMS_DATA_DOWNLOAD_RES = 661,389 MSG_SMS_DATA_VALIDITY_REQ = 662,390 MSG_SMS_DATA_VALIDITY_RES = 663,391 MSG_SMS_SWDOWNLOAD_TRIGGER_REQ = 664,392 MSG_SMS_SWDOWNLOAD_TRIGGER_RES = 665,393 MSG_SMS_SWDOWNLOAD_BACKDOOR_REQ = 666,394 MSG_SMS_SWDOWNLOAD_BACKDOOR_RES = 667,395 MSG_SMS_GET_VERSION_EX_REQ = 668,396 MSG_SMS_GET_VERSION_EX_RES = 669,397 MSG_SMS_CLOCK_OUTPUT_CONFIG_REQ = 670,398 MSG_SMS_CLOCK_OUTPUT_CONFIG_RES = 671,399 MSG_SMS_I2C_SET_FREQ_REQ = 685,400 MSG_SMS_I2C_SET_FREQ_RES = 686,401 MSG_SMS_GENERIC_I2C_REQ = 687,402 MSG_SMS_GENERIC_I2C_RES = 688,403 MSG_SMS_DVBT_BDA_DATA = 693,404 MSG_SW_RELOAD_REQ = 697,405 MSG_SMS_DATA_MSG = 699,406 MSG_TABLE_UPLOAD_REQ = 700,407 MSG_TABLE_UPLOAD_RES = 701,408 MSG_SW_RELOAD_START_REQ = 702,409 MSG_SW_RELOAD_START_RES = 703,410 MSG_SW_RELOAD_EXEC_REQ = 704,411 MSG_SW_RELOAD_EXEC_RES = 705,412 MSG_SMS_SPI_INT_LINE_SET_REQ = 710,413 MSG_SMS_SPI_INT_LINE_SET_RES = 711,414 MSG_SMS_GPIO_CONFIG_EX_REQ = 712,415 MSG_SMS_GPIO_CONFIG_EX_RES = 713,416 MSG_SMS_WATCHDOG_ACT_REQ = 716,417 MSG_SMS_WATCHDOG_ACT_RES = 717,418 MSG_SMS_LOOPBACK_REQ = 718,419 MSG_SMS_LOOPBACK_RES = 719,420 MSG_SMS_RAW_CAPTURE_START_REQ = 720,421 MSG_SMS_RAW_CAPTURE_START_RES = 721,422 MSG_SMS_RAW_CAPTURE_ABORT_REQ = 722,423 MSG_SMS_RAW_CAPTURE_ABORT_RES = 723,424 MSG_SMS_RAW_CAPTURE_COMPLETE_IND = 728,425 MSG_SMS_DATA_PUMP_IND = 729,426 MSG_SMS_DATA_PUMP_REQ = 730,427 MSG_SMS_DATA_PUMP_RES = 731,428 MSG_SMS_FLASH_DL_REQ = 732,429 MSG_SMS_EXEC_TEST_1_REQ = 734,430 MSG_SMS_EXEC_TEST_1_RES = 735,431 MSG_SMS_ENABLE_TS_INTERFACE_REQ = 736,432 MSG_SMS_ENABLE_TS_INTERFACE_RES = 737,433 MSG_SMS_SPI_SET_BUS_WIDTH_REQ = 738,434 MSG_SMS_SPI_SET_BUS_WIDTH_RES = 739,435 MSG_SMS_SEND_EMM_REQ = 740,436 MSG_SMS_SEND_EMM_RES = 741,437 MSG_SMS_DISABLE_TS_INTERFACE_REQ = 742,438 MSG_SMS_DISABLE_TS_INTERFACE_RES = 743,439 MSG_SMS_IS_BUF_FREE_REQ = 744,440 MSG_SMS_IS_BUF_FREE_RES = 745,441 MSG_SMS_EXT_ANTENNA_REQ = 746,442 MSG_SMS_EXT_ANTENNA_RES = 747,443 MSG_SMS_CMMB_GET_NET_OF_FREQ_REQ_OBSOLETE = 748,444 MSG_SMS_CMMB_GET_NET_OF_FREQ_RES_OBSOLETE = 749,445 MSG_SMS_BATTERY_LEVEL_REQ = 750,446 MSG_SMS_BATTERY_LEVEL_RES = 751,447 MSG_SMS_CMMB_INJECT_TABLE_REQ_OBSOLETE = 752,448 MSG_SMS_CMMB_INJECT_TABLE_RES_OBSOLETE = 753,449 MSG_SMS_FM_RADIO_BLOCK_IND = 754,450 MSG_SMS_HOST_NOTIFICATION_IND = 755,451 MSG_SMS_CMMB_GET_CONTROL_TABLE_REQ_OBSOLETE = 756,452 MSG_SMS_CMMB_GET_CONTROL_TABLE_RES_OBSOLETE = 757,453 MSG_SMS_CMMB_GET_NETWORKS_REQ = 760,454 MSG_SMS_CMMB_GET_NETWORKS_RES = 761,455 MSG_SMS_CMMB_START_SERVICE_REQ = 762,456 MSG_SMS_CMMB_START_SERVICE_RES = 763,457 MSG_SMS_CMMB_STOP_SERVICE_REQ = 764,458 MSG_SMS_CMMB_STOP_SERVICE_RES = 765,459 MSG_SMS_CMMB_ADD_CHANNEL_FILTER_REQ = 768,460 MSG_SMS_CMMB_ADD_CHANNEL_FILTER_RES = 769,461 MSG_SMS_CMMB_REMOVE_CHANNEL_FILTER_REQ = 770,462 MSG_SMS_CMMB_REMOVE_CHANNEL_FILTER_RES = 771,463 MSG_SMS_CMMB_START_CONTROL_INFO_REQ = 772,464 MSG_SMS_CMMB_START_CONTROL_INFO_RES = 773,465 MSG_SMS_CMMB_STOP_CONTROL_INFO_REQ = 774,466 MSG_SMS_CMMB_STOP_CONTROL_INFO_RES = 775,467 MSG_SMS_ISDBT_TUNE_REQ = 776,468 MSG_SMS_ISDBT_TUNE_RES = 777,469 MSG_SMS_TRANSMISSION_IND = 782,470 MSG_SMS_PID_STATISTICS_IND = 783,471 MSG_SMS_POWER_DOWN_IND = 784,472 MSG_SMS_POWER_DOWN_CONF = 785,473 MSG_SMS_POWER_UP_IND = 786,474 MSG_SMS_POWER_UP_CONF = 787,475 MSG_SMS_POWER_MODE_SET_REQ = 790,476 MSG_SMS_POWER_MODE_SET_RES = 791,477 MSG_SMS_DEBUG_HOST_EVENT_REQ = 792,478 MSG_SMS_DEBUG_HOST_EVENT_RES = 793,479 MSG_SMS_NEW_CRYSTAL_REQ = 794,480 MSG_SMS_NEW_CRYSTAL_RES = 795,481 MSG_SMS_CONFIG_SPI_REQ = 796,482 MSG_SMS_CONFIG_SPI_RES = 797,483 MSG_SMS_I2C_SHORT_STAT_IND = 798,484 MSG_SMS_START_IR_REQ = 800,485 MSG_SMS_START_IR_RES = 801,486 MSG_SMS_IR_SAMPLES_IND = 802,487 MSG_SMS_CMMB_CA_SERVICE_IND = 803,488 MSG_SMS_SLAVE_DEVICE_DETECTED = 804,489 MSG_SMS_INTERFACE_LOCK_IND = 805,490 MSG_SMS_INTERFACE_UNLOCK_IND = 806,491 MSG_SMS_SEND_ROSUM_BUFF_REQ = 810,492 MSG_SMS_SEND_ROSUM_BUFF_RES = 811,493 MSG_SMS_ROSUM_BUFF = 812,494 MSG_SMS_SET_AES128_KEY_REQ = 815,495 MSG_SMS_SET_AES128_KEY_RES = 816,496 MSG_SMS_MBBMS_WRITE_REQ = 817,497 MSG_SMS_MBBMS_WRITE_RES = 818,498 MSG_SMS_MBBMS_READ_IND = 819,499 MSG_SMS_IQ_STREAM_START_REQ = 820,500 MSG_SMS_IQ_STREAM_START_RES = 821,501 MSG_SMS_IQ_STREAM_STOP_REQ = 822,502 MSG_SMS_IQ_STREAM_STOP_RES = 823,503 MSG_SMS_IQ_STREAM_DATA_BLOCK = 824,504 MSG_SMS_GET_EEPROM_VERSION_REQ = 825,505 MSG_SMS_GET_EEPROM_VERSION_RES = 826,506 MSG_SMS_SIGNAL_DETECTED_IND = 827,507 MSG_SMS_NO_SIGNAL_IND = 828,508 MSG_SMS_MRC_SHUTDOWN_SLAVE_REQ = 830,509 MSG_SMS_MRC_SHUTDOWN_SLAVE_RES = 831,510 MSG_SMS_MRC_BRINGUP_SLAVE_REQ = 832,511 MSG_SMS_MRC_BRINGUP_SLAVE_RES = 833,512 MSG_SMS_EXTERNAL_LNA_CTRL_REQ = 834,513 MSG_SMS_EXTERNAL_LNA_CTRL_RES = 835,514 MSG_SMS_SET_PERIODIC_STATISTICS_REQ = 836,515 MSG_SMS_SET_PERIODIC_STATISTICS_RES = 837,516 MSG_SMS_CMMB_SET_AUTO_OUTPUT_TS0_REQ = 838,517 MSG_SMS_CMMB_SET_AUTO_OUTPUT_TS0_RES = 839,518 LOCAL_TUNE = 850,519 LOCAL_IFFT_H_ICI = 851,520 MSG_RESYNC_REQ = 852,521 MSG_SMS_CMMB_GET_MRC_STATISTICS_REQ = 853,522 MSG_SMS_CMMB_GET_MRC_STATISTICS_RES = 854,523 MSG_SMS_LOG_EX_ITEM = 855,524 MSG_SMS_DEVICE_DATA_LOSS_IND = 856,525 MSG_SMS_MRC_WATCHDOG_TRIGGERED_IND = 857,526 MSG_SMS_USER_MSG_REQ = 858,527 MSG_SMS_USER_MSG_RES = 859,528 MSG_SMS_SMART_CARD_INIT_REQ = 860,529 MSG_SMS_SMART_CARD_INIT_RES = 861,530 MSG_SMS_SMART_CARD_WRITE_REQ = 862,531 MSG_SMS_SMART_CARD_WRITE_RES = 863,532 MSG_SMS_SMART_CARD_READ_IND = 864,533 MSG_SMS_TSE_ENABLE_REQ = 866,534 MSG_SMS_TSE_ENABLE_RES = 867,535 MSG_SMS_CMMB_GET_SHORT_STATISTICS_REQ = 868,536 MSG_SMS_CMMB_GET_SHORT_STATISTICS_RES = 869,537 MSG_SMS_LED_CONFIG_REQ = 870,538 MSG_SMS_LED_CONFIG_RES = 871,539 MSG_PWM_ANTENNA_REQ = 872,540 MSG_PWM_ANTENNA_RES = 873,541 MSG_SMS_CMMB_SMD_SN_REQ = 874,542 MSG_SMS_CMMB_SMD_SN_RES = 875,543 MSG_SMS_CMMB_SET_CA_CW_REQ = 876,544 MSG_SMS_CMMB_SET_CA_CW_RES = 877,545 MSG_SMS_CMMB_SET_CA_SALT_REQ = 878,546 MSG_SMS_CMMB_SET_CA_SALT_RES = 879,547 MSG_SMS_NSCD_INIT_REQ = 880,548 MSG_SMS_NSCD_INIT_RES = 881,549 MSG_SMS_NSCD_PROCESS_SECTION_REQ = 882,550 MSG_SMS_NSCD_PROCESS_SECTION_RES = 883,551 MSG_SMS_DBD_CREATE_OBJECT_REQ = 884,552 MSG_SMS_DBD_CREATE_OBJECT_RES = 885,553 MSG_SMS_DBD_CONFIGURE_REQ = 886,554 MSG_SMS_DBD_CONFIGURE_RES = 887,555 MSG_SMS_DBD_SET_KEYS_REQ = 888,556 MSG_SMS_DBD_SET_KEYS_RES = 889,557 MSG_SMS_DBD_PROCESS_HEADER_REQ = 890,558 MSG_SMS_DBD_PROCESS_HEADER_RES = 891,559 MSG_SMS_DBD_PROCESS_DATA_REQ = 892,560 MSG_SMS_DBD_PROCESS_DATA_RES = 893,561 MSG_SMS_DBD_PROCESS_GET_DATA_REQ = 894,562 MSG_SMS_DBD_PROCESS_GET_DATA_RES = 895,563 MSG_SMS_NSCD_OPEN_SESSION_REQ = 896,564 MSG_SMS_NSCD_OPEN_SESSION_RES = 897,565 MSG_SMS_SEND_HOST_DATA_TO_DEMUX_REQ = 898,566 MSG_SMS_SEND_HOST_DATA_TO_DEMUX_RES = 899,567 MSG_LAST_MSG_TYPE = 900,568};569 570#define SMS_INIT_MSG_EX(ptr, type, src, dst, len) do { \571 (ptr)->msg_type = type; \572 (ptr)->msg_src_id = src; \573 (ptr)->msg_dst_id = dst; \574 (ptr)->msg_length = len; \575 (ptr)->msg_flags = 0; \576} while (0)577 578#define SMS_INIT_MSG(ptr, type, len) \579 SMS_INIT_MSG_EX(ptr, type, 0, HIF_TASK, len)580 581enum SMS_DVB3_EVENTS {582 DVB3_EVENT_INIT = 0,583 DVB3_EVENT_SLEEP,584 DVB3_EVENT_HOTPLUG,585 DVB3_EVENT_FE_LOCK,586 DVB3_EVENT_FE_UNLOCK,587 DVB3_EVENT_UNC_OK,588 DVB3_EVENT_UNC_ERR589};590 591enum SMS_DEVICE_MODE {592 DEVICE_MODE_NONE = -1,593 DEVICE_MODE_DVBT = 0,594 DEVICE_MODE_DVBH,595 DEVICE_MODE_DAB_TDMB,596 DEVICE_MODE_DAB_TDMB_DABIP,597 DEVICE_MODE_DVBT_BDA,598 DEVICE_MODE_ISDBT,599 DEVICE_MODE_ISDBT_BDA,600 DEVICE_MODE_CMMB,601 DEVICE_MODE_RAW_TUNER,602 DEVICE_MODE_FM_RADIO,603 DEVICE_MODE_FM_RADIO_BDA,604 DEVICE_MODE_ATSC,605 DEVICE_MODE_MAX,606};607 608struct sms_msg_hdr {609 u16 msg_type;610 u8 msg_src_id;611 u8 msg_dst_id;612 u16 msg_length; /* length of entire message, including header */613 u16 msg_flags;614};615 616struct sms_msg_data {617 struct sms_msg_hdr x_msg_header;618 u32 msg_data;619};620 621struct sms_msg_data2 {622 struct sms_msg_hdr x_msg_header;623 u32 msg_data[2];624};625 626struct sms_msg_data5 {627 struct sms_msg_hdr x_msg_header;628 u32 msg_data[5];629};630 631struct sms_data_download {632 struct sms_msg_hdr x_msg_header;633 u32 mem_addr;634 u8 payload[SMS_MAX_PAYLOAD_SIZE];635};636 637struct sms_version_res {638 struct sms_msg_hdr x_msg_header;639 640 u16 chip_model; /* e.g. 0x1102 for SMS-1102 "Nova" */641 u8 step; /* 0 - step A */642 u8 metal_fix; /* 0 - Metal 0 */643 644 /* firmware_id 0xFF if ROM, otherwise the645 * value indicated by SMSHOSTLIB_DEVICE_MODES_E */646 u8 firmware_id;647 /* supported_protocols Bitwise OR combination of648 * supported protocols */649 u8 supported_protocols;650 651 u8 version_major;652 u8 version_minor;653 u8 version_patch;654 u8 version_field_patch;655 656 u8 rom_ver_major;657 u8 rom_ver_minor;658 u8 rom_ver_patch;659 u8 rom_ver_field_patch;660 661 u8 TextLabel[34];662};663 664struct sms_firmware {665 u32 check_sum;666 u32 length;667 u32 start_address;668 u8 payload[];669};670 671/* statistics information returned as response for672 * SmsHostApiGetstatistics_Req */673struct sms_stats {674 u32 reserved; /* reserved */675 676 /* Common parameters */677 u32 is_rf_locked; /* 0 - not locked, 1 - locked */678 u32 is_demod_locked; /* 0 - not locked, 1 - locked */679 u32 is_external_lna_on; /* 0 - external LNA off, 1 - external LNA on */680 681 /* Reception quality */682 s32 SNR; /* dB */683 u32 ber; /* Post Viterbi ber [1E-5] */684 u32 FIB_CRC; /* CRC errors percentage, valid only for DAB */685 u32 ts_per; /* Transport stream PER,686 0xFFFFFFFF indicate N/A, valid only for DVB-T/H */687 u32 MFER; /* DVB-H frame error rate in percentage,688 0xFFFFFFFF indicate N/A, valid only for DVB-H */689 s32 RSSI; /* dBm */690 s32 in_band_pwr; /* In band power in dBM */691 s32 carrier_offset; /* Carrier Offset in bin/1024 */692 693 /* Transmission parameters */694 u32 frequency; /* frequency in Hz */695 u32 bandwidth; /* bandwidth in MHz, valid only for DVB-T/H */696 u32 transmission_mode; /* Transmission Mode, for DAB modes 1-4,697 for DVB-T/H FFT mode carriers in Kilos */698 u32 modem_state; /* from SMSHOSTLIB_DVB_MODEM_STATE_ET,699 valid only for DVB-T/H */700 u32 guard_interval; /* Guard Interval from701 SMSHOSTLIB_GUARD_INTERVALS_ET, valid only for DVB-T/H */702 u32 code_rate; /* Code Rate from SMSHOSTLIB_CODE_RATE_ET,703 valid only for DVB-T/H */704 u32 lp_code_rate; /* Low Priority Code Rate from705 SMSHOSTLIB_CODE_RATE_ET, valid only for DVB-T/H */706 u32 hierarchy; /* hierarchy from SMSHOSTLIB_HIERARCHY_ET,707 valid only for DVB-T/H */708 u32 constellation; /* constellation from709 SMSHOSTLIB_CONSTELLATION_ET, valid only for DVB-T/H */710 711 /* Burst parameters, valid only for DVB-H */712 u32 burst_size; /* Current burst size in bytes,713 valid only for DVB-H */714 u32 burst_duration; /* Current burst duration in mSec,715 valid only for DVB-H */716 u32 burst_cycle_time; /* Current burst cycle time in mSec,717 valid only for DVB-H */718 u32 calc_burst_cycle_time;/* Current burst cycle time in mSec,719 as calculated by demodulator, valid only for DVB-H */720 u32 num_of_rows; /* Number of rows in MPE table,721 valid only for DVB-H */722 u32 num_of_padd_cols; /* Number of padding columns in MPE table,723 valid only for DVB-H */724 u32 num_of_punct_cols; /* Number of puncturing columns in MPE table,725 valid only for DVB-H */726 u32 error_ts_packets; /* Number of erroneous727 transport-stream packets */728 u32 total_ts_packets; /* Total number of transport-stream packets */729 u32 num_of_valid_mpe_tlbs; /* Number of MPE tables which do not include730 errors after MPE RS decoding */731 u32 num_of_invalid_mpe_tlbs;/* Number of MPE tables which include errors732 after MPE RS decoding */733 u32 num_of_corrected_mpe_tlbs;/* Number of MPE tables which were734 corrected by MPE RS decoding */735 /* Common params */736 u32 ber_error_count; /* Number of erroneous SYNC bits. */737 u32 ber_bit_count; /* Total number of SYNC bits. */738 739 /* Interface information */740 u32 sms_to_host_tx_errors; /* Total number of transmission errors. */741 742 /* DAB/T-DMB */743 u32 pre_ber; /* DAB/T-DMB only: Pre Viterbi ber [1E-5] */744 745 /* DVB-H TPS parameters */746 u32 cell_id; /* TPS Cell ID in bits 15..0, bits 31..16 zero;747 if set to 0xFFFFFFFF cell_id not yet recovered */748 u32 dvbh_srv_ind_hp; /* DVB-H service indication info, bit 1 -749 Time Slicing indicator, bit 0 - MPE-FEC indicator */750 u32 dvbh_srv_ind_lp; /* DVB-H service indication info, bit 1 -751 Time Slicing indicator, bit 0 - MPE-FEC indicator */752 753 u32 num_mpe_received; /* DVB-H, Num MPE section received */754 755 u32 reservedFields[10]; /* reserved */756};757 758struct sms_msg_statistics_info {759 u32 request_result;760 761 struct sms_stats stat;762 763 /* Split the calc of the SNR in DAB */764 u32 signal; /* dB */765 u32 noise; /* dB */766 767};768 769struct sms_isdbt_layer_stats {770 /* Per-layer information */771 u32 code_rate; /* Code Rate from SMSHOSTLIB_CODE_RATE_ET,772 * 255 means layer does not exist */773 u32 constellation; /* constellation from SMSHOSTLIB_CONSTELLATION_ET,774 * 255 means layer does not exist */775 u32 ber; /* Post Viterbi ber [1E-5], 0xFFFFFFFF indicate N/A */776 u32 ber_error_count; /* Post Viterbi Error Bits Count */777 u32 ber_bit_count; /* Post Viterbi Total Bits Count */778 u32 pre_ber; /* Pre Viterbi ber [1E-5], 0xFFFFFFFF indicate N/A */779 u32 ts_per; /* Transport stream PER [%], 0xFFFFFFFF indicate N/A */780 u32 error_ts_packets; /* Number of erroneous transport-stream packets */781 u32 total_ts_packets; /* Total number of transport-stream packets */782 u32 ti_ldepth_i; /* Time interleaver depth I parameter,783 * 255 means layer does not exist */784 u32 number_of_segments; /* Number of segments in layer A,785 * 255 means layer does not exist */786 u32 tmcc_errors; /* TMCC errors */787};788 789struct sms_isdbt_stats {790 u32 statistics_type; /* Enumerator identifying the type of the791 * structure. Values are the same as792 * SMSHOSTLIB_DEVICE_MODES_E793 *794 * This field MUST always be first in any795 * statistics structure */796 797 u32 full_size; /* Total size of the structure returned by the modem.798 * If the size requested by the host is smaller than799 * full_size, the struct will be truncated */800 801 /* Common parameters */802 u32 is_rf_locked; /* 0 - not locked, 1 - locked */803 u32 is_demod_locked; /* 0 - not locked, 1 - locked */804 u32 is_external_lna_on; /* 0 - external LNA off, 1 - external LNA on */805 806 /* Reception quality */807 s32 SNR; /* dB */808 s32 RSSI; /* dBm */809 s32 in_band_pwr; /* In band power in dBM */810 s32 carrier_offset; /* Carrier Offset in Hz */811 812 /* Transmission parameters */813 u32 frequency; /* frequency in Hz */814 u32 bandwidth; /* bandwidth in MHz */815 u32 transmission_mode; /* ISDB-T transmission mode */816 u32 modem_state; /* 0 - Acquisition, 1 - Locked */817 u32 guard_interval; /* Guard Interval, 1 divided by value */818 u32 system_type; /* ISDB-T system type (ISDB-T / ISDB-Tsb) */819 u32 partial_reception; /* TRUE - partial reception, FALSE otherwise */820 u32 num_of_layers; /* Number of ISDB-T layers in the network */821 822 /* Per-layer information */823 /* Layers A, B and C */824 struct sms_isdbt_layer_stats layer_info[3];825 /* Per-layer statistics, see sms_isdbt_layer_stats */826 827 /* Interface information */828 u32 sms_to_host_tx_errors; /* Total number of transmission errors. */829};830 831struct sms_isdbt_stats_ex {832 u32 statistics_type; /* Enumerator identifying the type of the833 * structure. Values are the same as834 * SMSHOSTLIB_DEVICE_MODES_E835 *836 * This field MUST always be first in any837 * statistics structure */838 839 u32 full_size; /* Total size of the structure returned by the modem.840 * If the size requested by the host is smaller than841 * full_size, the struct will be truncated */842 843 /* Common parameters */844 u32 is_rf_locked; /* 0 - not locked, 1 - locked */845 u32 is_demod_locked; /* 0 - not locked, 1 - locked */846 u32 is_external_lna_on; /* 0 - external LNA off, 1 - external LNA on */847 848 /* Reception quality */849 s32 SNR; /* dB */850 s32 RSSI; /* dBm */851 s32 in_band_pwr; /* In band power in dBM */852 s32 carrier_offset; /* Carrier Offset in Hz */853 854 /* Transmission parameters */855 u32 frequency; /* frequency in Hz */856 u32 bandwidth; /* bandwidth in MHz */857 u32 transmission_mode; /* ISDB-T transmission mode */858 u32 modem_state; /* 0 - Acquisition, 1 - Locked */859 u32 guard_interval; /* Guard Interval, 1 divided by value */860 u32 system_type; /* ISDB-T system type (ISDB-T / ISDB-Tsb) */861 u32 partial_reception; /* TRUE - partial reception, FALSE otherwise */862 u32 num_of_layers; /* Number of ISDB-T layers in the network */863 864 u32 segment_number; /* Segment number for ISDB-Tsb */865 u32 tune_bw; /* Tuned bandwidth - BW_ISDBT_1SEG / BW_ISDBT_3SEG */866 867 /* Per-layer information */868 /* Layers A, B and C */869 struct sms_isdbt_layer_stats layer_info[3];870 /* Per-layer statistics, see sms_isdbt_layer_stats */871 872 /* Interface information */873 u32 reserved1; /* Was sms_to_host_tx_errors - obsolete . */874 /* Proprietary information */875 u32 ext_antenna; /* Obsolete field. */876 u32 reception_quality;877 u32 ews_alert_active; /* signals if EWS alert is currently on */878 u32 lna_on_off; /* Internal LNA state: 0: OFF, 1: ON */879 880 u32 rf_agc_level; /* RF AGC Level [linear units], full gain = 65535 (20dB) */881 u32 bb_agc_level; /* Baseband AGC level [linear units], full gain = 65535 (71.5dB) */882 u32 fw_errors_counter; /* Application errors - should be always zero */883 u8 FwErrorsHistoryArr[8]; /* Last FW errors IDs - first is most recent, last is oldest */884 885 s32 MRC_SNR; /* dB */886 u32 snr_full_res; /* dB x 65536 */887 u32 reserved4[4];888};889 890 891struct sms_pid_stats_data {892 struct PID_BURST_S {893 u32 size;894 u32 padding_cols;895 u32 punct_cols;896 u32 duration;897 u32 cycle;898 u32 calc_cycle;899 } burst;900 901 u32 tot_tbl_cnt;902 u32 invalid_tbl_cnt;903 u32 tot_cor_tbl;904};905 906struct sms_pid_data {907 u32 pid;908 u32 num_rows;909 struct sms_pid_stats_data pid_statistics;910};911 912#define CORRECT_STAT_RSSI(_stat) ((_stat).RSSI *= -1)913#define CORRECT_STAT_BANDWIDTH(_stat) (_stat.bandwidth = 8 - _stat.bandwidth)914#define CORRECT_STAT_TRANSMISSON_MODE(_stat) \915 if (_stat.transmission_mode == 0) \916 _stat.transmission_mode = 2; \917 else if (_stat.transmission_mode == 1) \918 _stat.transmission_mode = 8; \919 else \920 _stat.transmission_mode = 4;921 922struct sms_tx_stats {923 u32 frequency; /* frequency in Hz */924 u32 bandwidth; /* bandwidth in MHz */925 u32 transmission_mode; /* FFT mode carriers in Kilos */926 u32 guard_interval; /* Guard Interval from927 SMSHOSTLIB_GUARD_INTERVALS_ET */928 u32 code_rate; /* Code Rate from SMSHOSTLIB_CODE_RATE_ET */929 u32 lp_code_rate; /* Low Priority Code Rate from930 SMSHOSTLIB_CODE_RATE_ET */931 u32 hierarchy; /* hierarchy from SMSHOSTLIB_HIERARCHY_ET */932 u32 constellation; /* constellation from933 SMSHOSTLIB_CONSTELLATION_ET */934 935 /* DVB-H TPS parameters */936 u32 cell_id; /* TPS Cell ID in bits 15..0, bits 31..16 zero;937 if set to 0xFFFFFFFF cell_id not yet recovered */938 u32 dvbh_srv_ind_hp; /* DVB-H service indication info, bit 1 -939 Time Slicing indicator, bit 0 - MPE-FEC indicator */940 u32 dvbh_srv_ind_lp; /* DVB-H service indication info, bit 1 -941 Time Slicing indicator, bit 0 - MPE-FEC indicator */942 u32 is_demod_locked; /* 0 - not locked, 1 - locked */943};944 945struct sms_rx_stats {946 u32 is_rf_locked; /* 0 - not locked, 1 - locked */947 u32 is_demod_locked; /* 0 - not locked, 1 - locked */948 u32 is_external_lna_on; /* 0 - external LNA off, 1 - external LNA on */949 950 u32 modem_state; /* from SMSHOSTLIB_DVB_MODEM_STATE_ET */951 s32 SNR; /* dB */952 u32 ber; /* Post Viterbi ber [1E-5] */953 u32 ber_error_count; /* Number of erroneous SYNC bits. */954 u32 ber_bit_count; /* Total number of SYNC bits. */955 u32 ts_per; /* Transport stream PER,956 0xFFFFFFFF indicate N/A */957 u32 MFER; /* DVB-H frame error rate in percentage,958 0xFFFFFFFF indicate N/A, valid only for DVB-H */959 s32 RSSI; /* dBm */960 s32 in_band_pwr; /* In band power in dBM */961 s32 carrier_offset; /* Carrier Offset in bin/1024 */962 u32 error_ts_packets; /* Number of erroneous963 transport-stream packets */964 u32 total_ts_packets; /* Total number of transport-stream packets */965 966 s32 MRC_SNR; /* dB */967 s32 MRC_RSSI; /* dBm */968 s32 mrc_in_band_pwr; /* In band power in dBM */969};970 971struct sms_rx_stats_ex {972 u32 is_rf_locked; /* 0 - not locked, 1 - locked */973 u32 is_demod_locked; /* 0 - not locked, 1 - locked */974 u32 is_external_lna_on; /* 0 - external LNA off, 1 - external LNA on */975 976 u32 modem_state; /* from SMSHOSTLIB_DVB_MODEM_STATE_ET */977 s32 SNR; /* dB */978 u32 ber; /* Post Viterbi ber [1E-5] */979 u32 ber_error_count; /* Number of erroneous SYNC bits. */980 u32 ber_bit_count; /* Total number of SYNC bits. */981 u32 ts_per; /* Transport stream PER,982 0xFFFFFFFF indicate N/A */983 u32 MFER; /* DVB-H frame error rate in percentage,984 0xFFFFFFFF indicate N/A, valid only for DVB-H */985 s32 RSSI; /* dBm */986 s32 in_band_pwr; /* In band power in dBM */987 s32 carrier_offset; /* Carrier Offset in bin/1024 */988 u32 error_ts_packets; /* Number of erroneous989 transport-stream packets */990 u32 total_ts_packets; /* Total number of transport-stream packets */991 992 s32 ref_dev_ppm;993 s32 freq_dev_hz;994 995 s32 MRC_SNR; /* dB */996 s32 MRC_RSSI; /* dBm */997 s32 mrc_in_band_pwr; /* In band power in dBM */998};999 1000#define SRVM_MAX_PID_FILTERS 81001 1002/* statistics information returned as response for1003 * SmsHostApiGetstatisticsEx_Req for DVB applications, SMS1100 and up */1004struct sms_stats_dvb {1005 /* Reception */1006 struct sms_rx_stats reception_data;1007 1008 /* Transmission parameters */1009 struct sms_tx_stats transmission_data;1010 1011 /* Burst parameters, valid only for DVB-H */1012 struct sms_pid_data pid_data[SRVM_MAX_PID_FILTERS];1013};1014 1015/* statistics information returned as response for1016 * SmsHostApiGetstatisticsEx_Req for DVB applications, SMS1100 and up */1017struct sms_stats_dvb_ex {1018 /* Reception */1019 struct sms_rx_stats_ex reception_data;1020 1021 /* Transmission parameters */1022 struct sms_tx_stats transmission_data;1023 1024 /* Burst parameters, valid only for DVB-H */1025 struct sms_pid_data pid_data[SRVM_MAX_PID_FILTERS];1026};1027 1028struct sms_srvm_signal_status {1029 u32 result;1030 u32 snr;1031 u32 ts_packets;1032 u32 ets_packets;1033 u32 constellation;1034 u32 hp_code;1035 u32 tps_srv_ind_lp;1036 u32 tps_srv_ind_hp;1037 u32 cell_id;1038 u32 reason;1039 1040 s32 in_band_power;1041 u32 request_id;1042};1043 1044struct smscore_config_gpio {1045#define SMS_GPIO_DIRECTION_INPUT 01046#define SMS_GPIO_DIRECTION_OUTPUT 11047 u8 direction;1048 1049#define SMS_GPIO_PULLUPDOWN_NONE 01050#define SMS_GPIO_PULLUPDOWN_PULLDOWN 11051#define SMS_GPIO_PULLUPDOWN_PULLUP 21052#define SMS_GPIO_PULLUPDOWN_KEEPER 31053 u8 pullupdown;1054 1055#define SMS_GPIO_INPUTCHARACTERISTICS_NORMAL 01056#define SMS_GPIO_INPUTCHARACTERISTICS_SCHMITT 11057 u8 inputcharacteristics;1058 1059 /* 10xx */1060#define SMS_GPIO_OUTPUT_SLEW_RATE_FAST 01061#define SMS_GPIO_OUTPUT_SLEW_WRATE_SLOW 11062 1063 /* 11xx */1064#define SMS_GPIO_OUTPUT_SLEW_RATE_0_45_V_NS 01065#define SMS_GPIO_OUTPUT_SLEW_RATE_0_9_V_NS 11066#define SMS_GPIO_OUTPUT_SLEW_RATE_1_7_V_NS 21067#define SMS_GPIO_OUTPUT_SLEW_RATE_3_3_V_NS 31068 1069 u8 outputslewrate;1070 1071 /* 10xx */1072#define SMS_GPIO_OUTPUTDRIVING_S_4mA 01073#define SMS_GPIO_OUTPUTDRIVING_S_8mA 11074#define SMS_GPIO_OUTPUTDRIVING_S_12mA 21075#define SMS_GPIO_OUTPUTDRIVING_S_16mA 31076 1077 /* 11xx*/1078#define SMS_GPIO_OUTPUTDRIVING_1_5mA 01079#define SMS_GPIO_OUTPUTDRIVING_2_8mA 11080#define SMS_GPIO_OUTPUTDRIVING_4mA 21081#define SMS_GPIO_OUTPUTDRIVING_7mA 31082#define SMS_GPIO_OUTPUTDRIVING_10mA 41083#define SMS_GPIO_OUTPUTDRIVING_11mA 51084#define SMS_GPIO_OUTPUTDRIVING_14mA 61085#define SMS_GPIO_OUTPUTDRIVING_16mA 71086 1087 u8 outputdriving;1088};1089 1090char *smscore_translate_msg(enum msg_types msgtype);1091 1092extern int smscore_registry_getmode(char *devpath);1093 1094extern int smscore_register_hotplug(hotplug_t hotplug);1095extern void smscore_unregister_hotplug(hotplug_t hotplug);1096 1097extern int smscore_register_device(struct smsdevice_params_t *params,1098 struct smscore_device_t **coredev,1099 gfp_t gfp_buf_flags,1100 void *mdev);1101extern void smscore_unregister_device(struct smscore_device_t *coredev);1102 1103extern int smscore_start_device(struct smscore_device_t *coredev);1104 1105extern int smscore_set_device_mode(struct smscore_device_t *coredev, int mode);1106extern int smscore_get_device_mode(struct smscore_device_t *coredev);1107 1108extern int smscore_register_client(struct smscore_device_t *coredev,1109 struct smsclient_params_t *params,1110 struct smscore_client_t **client);1111extern void smscore_unregister_client(struct smscore_client_t *client);1112 1113extern int smsclient_sendrequest(struct smscore_client_t *client,1114 void *buffer, size_t size);1115extern void smscore_onresponse(struct smscore_device_t *coredev,1116 struct smscore_buffer_t *cb);1117 1118extern1119struct smscore_buffer_t *smscore_getbuffer(struct smscore_device_t *coredev);1120extern void smscore_putbuffer(struct smscore_device_t *coredev,1121 struct smscore_buffer_t *cb);1122 1123/* old GPIO management */1124int smscore_configure_gpio(struct smscore_device_t *coredev, u32 pin,1125 struct smscore_config_gpio *pinconfig);1126int smscore_set_gpio(struct smscore_device_t *coredev, u32 pin, int level);1127 1128/* new GPIO management */1129extern int smscore_gpio_configure(struct smscore_device_t *coredev, u8 pin_num,1130 struct smscore_config_gpio *p_gpio_config);1131extern int smscore_gpio_set_level(struct smscore_device_t *coredev, u8 pin_num,1132 u8 new_level);1133extern int smscore_gpio_get_level(struct smscore_device_t *coredev, u8 pin_num,1134 u8 *level);1135 1136void smscore_set_board_id(struct smscore_device_t *core, int id);1137int smscore_get_board_id(struct smscore_device_t *core);1138 1139int smscore_led_state(struct smscore_device_t *core, int led);1140 1141 1142/* ------------------------------------------------------------------------ */1143 1144#endif /* __SMS_CORE_API_H__ */1145