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