aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Toth <stoth@hauppauge.com>2008-05-22 14:48:54 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-07-20 06:20:03 -0400
commit9e4fb5e7122ce67769719e715159baed5e5d7247 (patch)
treeda773df268aec49615011c2c1453442cb35f8001
parent955e9ca3cdeae62e8067ede204b5a02dcde6813e (diff)
V4L/DVB (8264): sms1xxx: remove smstypes.h
Signed-off-by: Steven Toth <stoth@hauppauge.com> Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
-rw-r--r--drivers/media/mdtv/smscoreapi.c1
-rw-r--r--drivers/media/mdtv/smscoreapi.h361
-rw-r--r--drivers/media/mdtv/smsdvb.c1
-rw-r--r--drivers/media/mdtv/smstypes.h361
-rw-r--r--drivers/media/mdtv/smsusb.c1
5 files changed, 361 insertions, 364 deletions
diff --git a/drivers/media/mdtv/smscoreapi.c b/drivers/media/mdtv/smscoreapi.c
index a30be8301429..715dde034e8a 100644
--- a/drivers/media/mdtv/smscoreapi.c
+++ b/drivers/media/mdtv/smscoreapi.c
@@ -30,7 +30,6 @@
30#include <linux/firmware.h> 30#include <linux/firmware.h>
31 31
32#include "smscoreapi.h" 32#include "smscoreapi.h"
33#include "smstypes.h"
34 33
35typedef struct _smscore_device_notifyee 34typedef struct _smscore_device_notifyee
36{ 35{
diff --git a/drivers/media/mdtv/smscoreapi.h b/drivers/media/mdtv/smscoreapi.h
index 43ebee68f77b..61fed88cf1c5 100644
--- a/drivers/media/mdtv/smscoreapi.h
+++ b/drivers/media/mdtv/smscoreapi.h
@@ -92,6 +92,367 @@ typedef struct _smsclient_params
92 void *context; 92 void *context;
93} smsclient_params_t; 93} smsclient_params_t;
94 94
95/* Begin types.h */
96
97// GPIO definitions for antenna frequency domain control (SMS8021)
98#define SMS_ANTENNA_GPIO_0 1
99#define SMS_ANTENNA_GPIO_1 0
100
101#define BW_8_MHZ 0
102#define BW_7_MHZ 1
103#define BW_6_MHZ 2
104#define BW_5_MHZ 3
105#define BW_ISDBT_1SEG 4
106#define BW_ISDBT_3SEG 5
107
108#define MSG_HDR_FLAG_SPLIT_MSG 4
109
110#define MAX_GPIO_PIN_NUMBER 31
111
112#define HIF_TASK 11
113#define SMS_HOST_LIB 150
114#define DVBT_BDA_CONTROL_MSG_ID 201
115
116#define SMS_MAX_PAYLOAD_SIZE 240
117#define SMS_TUNE_TIMEOUT 500
118
119#define MSG_SMS_GPIO_CONFIG_REQ 507
120#define MSG_SMS_GPIO_CONFIG_RES 508
121#define MSG_SMS_GPIO_SET_LEVEL_REQ 509
122#define MSG_SMS_GPIO_SET_LEVEL_RES 510
123#define MSG_SMS_GPIO_GET_LEVEL_REQ 511
124#define MSG_SMS_GPIO_GET_LEVEL_RES 512
125#define MSG_SMS_RF_TUNE_REQ 561
126#define MSG_SMS_RF_TUNE_RES 562
127#define MSG_SMS_INIT_DEVICE_REQ 578
128#define MSG_SMS_INIT_DEVICE_RES 579
129#define MSG_SMS_ADD_PID_FILTER_REQ 601
130#define MSG_SMS_ADD_PID_FILTER_RES 602
131#define MSG_SMS_REMOVE_PID_FILTER_REQ 603
132#define MSG_SMS_REMOVE_PID_FILTER_RES 604
133#define MSG_SMS_DAB_CHANNEL 607
134#define MSG_SMS_GET_PID_FILTER_LIST_REQ 608
135#define MSG_SMS_GET_PID_FILTER_LIST_RES 609
136#define MSG_SMS_GET_STATISTICS_REQ 615
137#define MSG_SMS_GET_STATISTICS_RES 616
138#define MSG_SMS_SET_ANTENNA_CONFIG_REQ 651
139#define MSG_SMS_SET_ANTENNA_CONFIG_RES 652
140#define MSG_SMS_GET_STATISTICS_EX_REQ 653
141#define MSG_SMS_GET_STATISTICS_EX_RES 654
142#define MSG_SMS_SLEEP_RESUME_COMP_IND 655
143#define MSG_SMS_DATA_DOWNLOAD_REQ 660
144#define MSG_SMS_DATA_DOWNLOAD_RES 661
145#define MSG_SMS_SWDOWNLOAD_TRIGGER_REQ 664
146#define MSG_SMS_SWDOWNLOAD_TRIGGER_RES 665
147#define MSG_SMS_SWDOWNLOAD_BACKDOOR_REQ 666
148#define MSG_SMS_SWDOWNLOAD_BACKDOOR_RES 667
149#define MSG_SMS_GET_VERSION_EX_REQ 668
150#define MSG_SMS_GET_VERSION_EX_RES 669
151#define MSG_SMS_SET_CLOCK_OUTPUT_REQ 670
152#define MSG_SMS_I2C_SET_FREQ_REQ 685
153#define MSG_SMS_GENERIC_I2C_REQ 687
154#define MSG_SMS_GENERIC_I2C_RES 688
155#define MSG_SMS_DVBT_BDA_DATA 693
156#define MSG_SW_RELOAD_REQ 697
157#define MSG_SMS_DATA_MSG 699
158#define MSG_SW_RELOAD_START_REQ 702
159#define MSG_SW_RELOAD_START_RES 703
160#define MSG_SW_RELOAD_EXEC_REQ 704
161#define MSG_SW_RELOAD_EXEC_RES 705
162#define MSG_SMS_SPI_INT_LINE_SET_REQ 710
163#define MSG_SMS_ISDBT_TUNE_REQ 776
164#define MSG_SMS_ISDBT_TUNE_RES 777
165
166#define SMS_INIT_MSG_EX(ptr, type, src, dst, len) do { \
167 (ptr)->msgType = type; (ptr)->msgSrcId = src; (ptr)->msgDstId = dst; \
168 (ptr)->msgLength = len; (ptr)->msgFlags = 0; \
169} while (0)
170#define SMS_INIT_MSG(ptr, type, len) SMS_INIT_MSG_EX(ptr, type, 0, HIF_TASK, len)
171
172typedef enum
173{
174 DEVICE_MODE_NONE = -1,
175 DEVICE_MODE_DVBT = 0,
176 DEVICE_MODE_DVBH,
177 DEVICE_MODE_DAB_TDMB,
178 DEVICE_MODE_DAB_TDMB_DABIP,
179 DEVICE_MODE_DVBT_BDA,
180 DEVICE_MODE_ISDBT,
181 DEVICE_MODE_ISDBT_BDA,
182 DEVICE_MODE_CMMB,
183 DEVICE_MODE_RAW_TUNER,
184 DEVICE_MODE_MAX,
185} SMS_DEVICE_MODE;
186
187typedef unsigned char UINT8;
188typedef unsigned short UINT16;
189typedef unsigned int UINT32;
190typedef int INT32;
191
192typedef struct SmsMsgHdr_S
193{
194 UINT16 msgType;
195 UINT8 msgSrcId;
196 UINT8 msgDstId;
197 UINT16 msgLength; // Length is of the entire message, including header
198 UINT16 msgFlags;
199} SmsMsgHdr_ST;
200
201typedef struct SmsMsgData_S
202{
203 SmsMsgHdr_ST xMsgHeader;
204 UINT32 msgData[1];
205} SmsMsgData_ST;
206
207typedef struct SmsDataDownload_S
208{
209 SmsMsgHdr_ST xMsgHeader;
210 UINT32 MemAddr;
211 UINT8 Payload[SMS_MAX_PAYLOAD_SIZE];
212} SmsDataDownload_ST;
213
214typedef struct SmsVersionRes_S
215{
216 SmsMsgHdr_ST xMsgHeader;
217
218 UINT16 ChipModel; // e.g. 0x1102 for SMS-1102 "Nova"
219 UINT8 Step; // 0 - Step A
220 UINT8 MetalFix; // 0 - Metal 0
221
222 UINT8 FirmwareId; // 0xFF � ROM, otherwise the value indicated by SMSHOSTLIB_DEVICE_MODES_E
223 UINT8 SupportedProtocols; // Bitwise OR combination of supported protocols
224
225 UINT8 VersionMajor;
226 UINT8 VersionMinor;
227 UINT8 VersionPatch;
228 UINT8 VersionFieldPatch;
229
230 UINT8 RomVersionMajor;
231 UINT8 RomVersionMinor;
232 UINT8 RomVersionPatch;
233 UINT8 RomVersionFieldPatch;
234
235 UINT8 TextLabel[34];
236} SmsVersionRes_ST;
237
238typedef struct SmsFirmware_S
239{
240 UINT32 CheckSum;
241 UINT32 Length;
242 UINT32 StartAddress;
243 UINT8 Payload[1];
244} SmsFirmware_ST;
245
246typedef struct SMSHOSTLIB_STATISTICS_S
247{
248 UINT32 Reserved; //!< Reserved
249
250 /// Common parameters
251 UINT32 IsRfLocked; //!< 0 - not locked, 1 - locked
252 UINT32 IsDemodLocked; //!< 0 - not locked, 1 - locked
253 UINT32 IsExternalLNAOn; //!< 0 - external LNA off, 1 - external LNA on
254
255 /// Reception quality
256 INT32 SNR; //!< dB
257 UINT32 BER; //!< Post Viterbi BER [1E-5]
258 UINT32 FIB_CRC; //!< CRC errors percentage, valid only for DAB
259 UINT32 TS_PER; //!< Transport stream PER, 0xFFFFFFFF indicate N/A, valid only for DVB-T/H
260 UINT32 MFER; //!< DVB-H frame error rate in percentage, 0xFFFFFFFF indicate N/A, valid only for DVB-H
261 INT32 RSSI; //!< dBm
262 INT32 InBandPwr; //!< In band power in dBM
263 INT32 CarrierOffset; //!< Carrier Offset in bin/1024
264
265 /// Transmission parameters
266 UINT32 Frequency; //!< Frequency in Hz
267 UINT32 Bandwidth; //!< Bandwidth in MHz, valid only for DVB-T/H
268 UINT32 TransmissionMode; //!< Transmission Mode, for DAB modes 1-4, for DVB-T/H FFT mode carriers in Kilos
269 UINT32 ModemState; //!< from SMS_DvbModemState_ET , valid only for DVB-T/H
270 UINT32 GuardInterval; //!< Guard Interval, 1 divided by value , valid only for DVB-T/H
271 UINT32 CodeRate; //!< Code Rate from SMS_DvbModemState_ET, valid only for DVB-T/H
272 UINT32 LPCodeRate; //!< Low Priority Code Rate from SMS_DvbModemState_ET, valid only for DVB-T/H
273 UINT32 Hierarchy; //!< Hierarchy from SMS_Hierarchy_ET, valid only for DVB-T/H
274 UINT32 Constellation; //!< Constellation from SMS_Constellation_ET, valid only for DVB-T/H
275
276 /// Burst parameters, valid only for DVB-H
277 UINT32 BurstSize; //!< Current burst size in bytes, valid only for DVB-H
278 UINT32 BurstDuration; //!< Current burst duration in mSec, valid only for DVB-H
279 UINT32 BurstCycleTime; //!< Current burst cycle time in mSec, valid only for DVB-H
280 UINT32 CalculatedBurstCycleTime;//!< Current burst cycle time in mSec, as calculated by demodulator, valid only for DVB-H
281 UINT32 NumOfRows; //!< Number of rows in MPE table, valid only for DVB-H
282 UINT32 NumOfPaddCols; //!< Number of padding columns in MPE table, valid only for DVB-H
283 UINT32 NumOfPunctCols; //!< Number of puncturing columns in MPE table, valid only for DVB-H
284 UINT32 ErrorTSPackets; //!< Number of erroneous transport-stream packets
285 UINT32 TotalTSPackets; //!< Total number of transport-stream packets
286 UINT32 NumOfValidMpeTlbs; //!< Number of MPE tables which do not include errors after MPE RS decoding
287 UINT32 NumOfInvalidMpeTlbs; //!< Number of MPE tables which include errors after MPE RS decoding
288 UINT32 NumOfCorrectedMpeTlbs; //!< Number of MPE tables which were corrected by MPE RS decoding
289 /// Common params
290 UINT32 BERErrorCount; //!< Number of errornous SYNC bits.
291 UINT32 BERBitCount; //!< Total number of SYNC bits.
292
293 /// Interface information
294 UINT32 SmsToHostTxErrors; //!< Total number of transmission errors.
295
296 /// DAB/T-DMB
297 UINT32 PreBER; //!< DAB/T-DMB only: Pre Viterbi BER [1E-5]
298
299 /// DVB-H TPS parameters
300 UINT32 CellId; //!< TPS Cell ID in bits 15..0, bits 31..16 zero; if set to 0xFFFFFFFF cell_id not yet recovered
301
302} SMSHOSTLIB_STATISTICS_ST;
303
304typedef struct
305{
306 UINT32 RequestResult;
307
308 SMSHOSTLIB_STATISTICS_ST Stat;
309
310 // Split the calc of the SNR in DAB
311 UINT32 Signal; //!< dB
312 UINT32 Noise; //!< dB
313
314} SmsMsgStatisticsInfo_ST;
315
316typedef struct SMSHOSTLIB_ISDBT_LAYER_STAT_S
317{
318 // Per-layer information
319 UINT32 CodeRate; //!< Code Rate from SMSHOSTLIB_CODE_RATE_ET, 255 means layer does not exist
320 UINT32 Constellation; //!< Constellation from SMSHOSTLIB_CONSTELLATION_ET, 255 means layer does not exist
321 UINT32 BER; //!< Post Viterbi BER [1E-5], 0xFFFFFFFF indicate N/A
322 UINT32 BERErrorCount; //!< Post Viterbi Error Bits Count
323 UINT32 BERBitCount; //!< Post Viterbi Total Bits Count
324 UINT32 PreBER; //!< Pre Viterbi BER [1E-5], 0xFFFFFFFF indicate N/A
325 UINT32 TS_PER; //!< Transport stream PER [%], 0xFFFFFFFF indicate N/A
326 UINT32 ErrorTSPackets; //!< Number of erroneous transport-stream packets
327 UINT32 TotalTSPackets; //!< Total number of transport-stream packets
328 UINT32 TILdepthI; //!< Time interleaver depth I parameter, 255 means layer does not exist
329 UINT32 NumberOfSegments; //!< Number of segments in layer A, 255 means layer does not exist
330 UINT32 TMCCErrors; //!< TMCC errors
331} SMSHOSTLIB_ISDBT_LAYER_STAT_ST;
332
333typedef struct SMSHOSTLIB_STATISTICS_ISDBT_S
334{
335 UINT32 StatisticsType; //!< Enumerator identifying the type of the structure. Values are the same as SMSHOSTLIB_DEVICE_MODES_E
336 //!< This fiels MUST always first in any statistics structure
337
338 UINT32 FullSize; //!< Total size of the structure returned by the modem. If the size requested by
339 //!< the host is smaller than FullSize, the struct will be truncated
340
341 // Common parameters
342 UINT32 IsRfLocked; //!< 0 - not locked, 1 - locked
343 UINT32 IsDemodLocked; //!< 0 - not locked, 1 - locked
344 UINT32 IsExternalLNAOn; //!< 0 - external LNA off, 1 - external LNA on
345
346 // Reception quality
347 INT32 SNR; //!< dB
348 INT32 RSSI; //!< dBm
349 INT32 InBandPwr; //!< In band power in dBM
350 INT32 CarrierOffset; //!< Carrier Offset in Hz
351
352 // Transmission parameters
353 UINT32 Frequency; //!< Frequency in Hz
354 UINT32 Bandwidth; //!< Bandwidth in MHz
355 UINT32 TransmissionMode; //!< ISDB-T transmission mode
356 UINT32 ModemState; //!< 0 - Acquisition, 1 - Locked
357 UINT32 GuardInterval; //!< Guard Interval, 1 divided by value
358 UINT32 SystemType; //!< ISDB-T system type (ISDB-T / ISDB-Tsb)
359 UINT32 PartialReception; //!< TRUE - partial reception, FALSE otherwise
360 UINT32 NumOfLayers; //!< Number of ISDB-T layers in the network
361
362 // Per-layer information
363 // Layers A, B and C
364 SMSHOSTLIB_ISDBT_LAYER_STAT_ST LayerInfo[3]; //!< Per-layer statistics, see SMSHOSTLIB_ISDBT_LAYER_STAT_ST
365
366 // Interface information
367 UINT32 SmsToHostTxErrors; //!< Total number of transmission errors.
368
369} SMSHOSTLIB_STATISTICS_ISDBT_ST;
370
371typedef struct SMSHOSTLIB_STATISTICS_DVB_S
372{
373 UINT32 StatisticsType; //!< Enumerator identifying the type of the structure. Values are the same as SMSHOSTLIB_DEVICE_MODES_E
374 //!< This fiels MUST always first in any statistics structure
375
376 UINT32 FullSize; //!< Total size of the structure returned by the modem. If the size requested by
377 //!< the host is smaller than FullSize, the struct will be truncated
378 // Common parameters
379 UINT32 IsRfLocked; //!< 0 - not locked, 1 - locked
380 UINT32 IsDemodLocked; //!< 0 - not locked, 1 - locked
381 UINT32 IsExternalLNAOn; //!< 0 - external LNA off, 1 - external LNA on
382
383 // Reception quality
384 INT32 SNR; //!< dB
385 UINT32 BER; //!< Post Viterbi BER [1E-5]
386 UINT32 BERErrorCount; //!< Number of errornous SYNC bits.
387 UINT32 BERBitCount; //!< Total number of SYNC bits.
388 UINT32 TS_PER; //!< Transport stream PER, 0xFFFFFFFF indicate N/A
389 UINT32 MFER; //!< DVB-H frame error rate in percentage, 0xFFFFFFFF indicate N/A, valid only for DVB-H
390 INT32 RSSI; //!< dBm
391 INT32 InBandPwr; //!< In band power in dBM
392 INT32 CarrierOffset; //!< Carrier Offset in bin/1024
393
394 // Transmission parameters
395 UINT32 Frequency; //!< Frequency in Hz
396 UINT32 Bandwidth; //!< Bandwidth in MHz
397 UINT32 ModemState; //!< from SMSHOSTLIB_DVB_MODEM_STATE_ET
398 UINT32 TransmissionMode; //!< FFT mode carriers in Kilos
399 UINT32 GuardInterval; //!< Guard Interval, 1 divided by value
400 UINT32 CodeRate; //!< Code Rate from SMSHOSTLIB_CODE_RATE_ET
401 UINT32 LPCodeRate; //!< Low Priority Code Rate from SMSHOSTLIB_CODE_RATE_ET
402 UINT32 Hierarchy; //!< Hierarchy from SMSHOSTLIB_HIERARCHY_ET
403 UINT32 Constellation; //!< Constellation from SMSHOSTLIB_CONSTELLATION_ET
404
405 // Burst parameters, valid only for DVB-H
406 UINT32 BurstSize; //!< Current burst size in bytes, valid only for DVB-H
407 UINT32 BurstDuration; //!< Current burst duration in mSec, valid only for DVB-H
408 UINT32 BurstCycleTime; //!< Current burst cycle time in mSec, valid only for DVB-H
409 UINT32 CalculatedBurstCycleTime;//!< Current burst cycle time in mSec, as calculated by demodulator, valid only for DVB-H
410 UINT32 NumOfRows; //!< Number of rows in MPE table, valid only for DVB-H
411 UINT32 NumOfPaddCols; //!< Number of padding columns in MPE table, valid only for DVB-H
412 UINT32 NumOfPunctCols; //!< Number of puncturing columns in MPE table, valid only for DVB-H
413 UINT32 ErrorTSPackets; //!< Number of erroneous transport-stream packets
414 UINT32 TotalTSPackets; //!< Total number of transport-stream packets
415 UINT32 NumOfValidMpeTlbs; //!< Number of MPE tables which do not include errors after MPE RS decoding, valid only for DVB-H
416 UINT32 NumOfInvalidMpeTlbs; //!< Number of MPE tables which include errors after MPE RS decoding, valid only for DVB-H
417 UINT32 NumOfCorrectedMpeTlbs; //!< Number of MPE tables which were corrected by MPE RS decoding, valid only for DVB-H
418 UINT32 NumMPEReceived; //!< DVB-H, Num MPE section received
419
420 // DVB-H TPS parameters
421 UINT32 CellId; //!< TPS Cell ID in bits 15..0, bits 31..16 zero; if set to 0xFFFFFFFF cell_id not yet recovered
422 UINT32 DvbhSrvIndHP; //!< DVB-H service indication info, bit 1 - Time Slicing indicator, bit 0 - MPE-FEC indicator
423 UINT32 DvbhSrvIndLP; //!< DVB-H service indication info, bit 1 - Time Slicing indicator, bit 0 - MPE-FEC indicator
424
425 // Interface information
426 UINT32 SmsToHostTxErrors; //!< Total number of transmission errors.
427
428} SMSHOSTLIB_STATISTICS_DVB_ST;
429
430typedef struct SMSHOSTLIB_GPIO_CONFIG_S
431{
432 UINT8 Direction; //!< GPIO direction: Input - 0, Output - 1
433 UINT8 PullUpDown; //!< PullUp/PullDown: None - 0, PullDown - 1, PullUp - 2, Keeper - 3
434 UINT8 InputCharacteristics; //!< Input Characteristics: Normal - 0, Schmitt trigger - 1
435 UINT8 OutputSlewRate; //!< Output Slew Rate: Fast slew rate - 0, Slow slew rate - 1
436 UINT8 OutputDriving; //!< Output driving capability: 4mA - 0, 8mA - 1, 12mA - 2, 16mA - 3
437} SMSHOSTLIB_GPIO_CONFIG_ST;
438
439typedef struct SMSHOSTLIB_I2C_REQ_S
440{
441 UINT32 DeviceAddress; // I2c device address
442 UINT32 WriteCount; // number of bytes to write
443 UINT32 ReadCount; // number of bytes to read
444 UINT8 Data[1];
445} SMSHOSTLIB_I2C_REQ_ST;
446
447typedef struct SMSHOSTLIB_I2C_RES_S
448{
449 UINT32 Status; // non-zero value in case of failure
450 UINT32 ReadCount; // number of bytes read
451 UINT8 Data[1];
452} SMSHOSTLIB_I2C_RES_ST;
453
454/* End types.h */
455
95extern void smscore_registry_setmode(char *devpath, int mode); 456extern void smscore_registry_setmode(char *devpath, int mode);
96extern int smscore_registry_getmode(char *devpath); 457extern int smscore_registry_getmode(char *devpath);
97 458
diff --git a/drivers/media/mdtv/smsdvb.c b/drivers/media/mdtv/smsdvb.c
index 11a9b0b11cb2..e941a0b97f2c 100644
--- a/drivers/media/mdtv/smsdvb.c
+++ b/drivers/media/mdtv/smsdvb.c
@@ -7,7 +7,6 @@
7#include "dvb_frontend.h" 7#include "dvb_frontend.h"
8 8
9#include "smscoreapi.h" 9#include "smscoreapi.h"
10#include "smstypes.h"
11 10
12DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr); 11DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
13 12
diff --git a/drivers/media/mdtv/smstypes.h b/drivers/media/mdtv/smstypes.h
deleted file mode 100644
index 011cd904d0f1..000000000000
--- a/drivers/media/mdtv/smstypes.h
+++ /dev/null
@@ -1,361 +0,0 @@
1#ifndef __smstypes_h__
2#define __smstypes_h__
3
4// GPIO definitions for antenna frequency domain control (SMS8021)
5#define SMS_ANTENNA_GPIO_0 1
6#define SMS_ANTENNA_GPIO_1 0
7
8#define BW_8_MHZ 0
9#define BW_7_MHZ 1
10#define BW_6_MHZ 2
11#define BW_5_MHZ 3
12#define BW_ISDBT_1SEG 4
13#define BW_ISDBT_3SEG 5
14
15#define MSG_HDR_FLAG_SPLIT_MSG 4
16
17#define MAX_GPIO_PIN_NUMBER 31
18
19#define HIF_TASK 11
20#define SMS_HOST_LIB 150
21#define DVBT_BDA_CONTROL_MSG_ID 201
22
23#define SMS_MAX_PAYLOAD_SIZE 240
24#define SMS_TUNE_TIMEOUT 500
25
26#define MSG_SMS_GPIO_CONFIG_REQ 507
27#define MSG_SMS_GPIO_CONFIG_RES 508
28#define MSG_SMS_GPIO_SET_LEVEL_REQ 509
29#define MSG_SMS_GPIO_SET_LEVEL_RES 510
30#define MSG_SMS_GPIO_GET_LEVEL_REQ 511
31#define MSG_SMS_GPIO_GET_LEVEL_RES 512
32#define MSG_SMS_RF_TUNE_REQ 561
33#define MSG_SMS_RF_TUNE_RES 562
34#define MSG_SMS_INIT_DEVICE_REQ 578
35#define MSG_SMS_INIT_DEVICE_RES 579
36#define MSG_SMS_ADD_PID_FILTER_REQ 601
37#define MSG_SMS_ADD_PID_FILTER_RES 602
38#define MSG_SMS_REMOVE_PID_FILTER_REQ 603
39#define MSG_SMS_REMOVE_PID_FILTER_RES 604
40#define MSG_SMS_DAB_CHANNEL 607
41#define MSG_SMS_GET_PID_FILTER_LIST_REQ 608
42#define MSG_SMS_GET_PID_FILTER_LIST_RES 609
43#define MSG_SMS_GET_STATISTICS_REQ 615
44#define MSG_SMS_GET_STATISTICS_RES 616
45#define MSG_SMS_SET_ANTENNA_CONFIG_REQ 651
46#define MSG_SMS_SET_ANTENNA_CONFIG_RES 652
47#define MSG_SMS_GET_STATISTICS_EX_REQ 653
48#define MSG_SMS_GET_STATISTICS_EX_RES 654
49#define MSG_SMS_SLEEP_RESUME_COMP_IND 655
50#define MSG_SMS_DATA_DOWNLOAD_REQ 660
51#define MSG_SMS_DATA_DOWNLOAD_RES 661
52#define MSG_SMS_SWDOWNLOAD_TRIGGER_REQ 664
53#define MSG_SMS_SWDOWNLOAD_TRIGGER_RES 665
54#define MSG_SMS_SWDOWNLOAD_BACKDOOR_REQ 666
55#define MSG_SMS_SWDOWNLOAD_BACKDOOR_RES 667
56#define MSG_SMS_GET_VERSION_EX_REQ 668
57#define MSG_SMS_GET_VERSION_EX_RES 669
58#define MSG_SMS_SET_CLOCK_OUTPUT_REQ 670
59#define MSG_SMS_I2C_SET_FREQ_REQ 685
60#define MSG_SMS_GENERIC_I2C_REQ 687
61#define MSG_SMS_GENERIC_I2C_RES 688
62#define MSG_SMS_DVBT_BDA_DATA 693
63#define MSG_SW_RELOAD_REQ 697
64#define MSG_SMS_DATA_MSG 699
65#define MSG_SW_RELOAD_START_REQ 702
66#define MSG_SW_RELOAD_START_RES 703
67#define MSG_SW_RELOAD_EXEC_REQ 704
68#define MSG_SW_RELOAD_EXEC_RES 705
69#define MSG_SMS_SPI_INT_LINE_SET_REQ 710
70#define MSG_SMS_ISDBT_TUNE_REQ 776
71#define MSG_SMS_ISDBT_TUNE_RES 777
72
73#define SMS_INIT_MSG_EX(ptr, type, src, dst, len) do { \
74 (ptr)->msgType = type; (ptr)->msgSrcId = src; (ptr)->msgDstId = dst; \
75 (ptr)->msgLength = len; (ptr)->msgFlags = 0; \
76} while (0)
77#define SMS_INIT_MSG(ptr, type, len) SMS_INIT_MSG_EX(ptr, type, 0, HIF_TASK, len)
78
79typedef enum
80{
81 DEVICE_MODE_NONE = -1,
82 DEVICE_MODE_DVBT = 0,
83 DEVICE_MODE_DVBH,
84 DEVICE_MODE_DAB_TDMB,
85 DEVICE_MODE_DAB_TDMB_DABIP,
86 DEVICE_MODE_DVBT_BDA,
87 DEVICE_MODE_ISDBT,
88 DEVICE_MODE_ISDBT_BDA,
89 DEVICE_MODE_CMMB,
90 DEVICE_MODE_RAW_TUNER,
91 DEVICE_MODE_MAX,
92} SMS_DEVICE_MODE;
93
94typedef unsigned char UINT8;
95typedef unsigned short UINT16;
96typedef unsigned int UINT32;
97typedef int INT32;
98
99typedef struct SmsMsgHdr_S
100{
101 UINT16 msgType;
102 UINT8 msgSrcId;
103 UINT8 msgDstId;
104 UINT16 msgLength; // Length is of the entire message, including header
105 UINT16 msgFlags;
106} SmsMsgHdr_ST;
107
108typedef struct SmsMsgData_S
109{
110 SmsMsgHdr_ST xMsgHeader;
111 UINT32 msgData[1];
112} SmsMsgData_ST;
113
114typedef struct SmsDataDownload_S
115{
116 SmsMsgHdr_ST xMsgHeader;
117 UINT32 MemAddr;
118 UINT8 Payload[SMS_MAX_PAYLOAD_SIZE];
119} SmsDataDownload_ST;
120
121typedef struct SmsVersionRes_S
122{
123 SmsMsgHdr_ST xMsgHeader;
124
125 UINT16 ChipModel; // e.g. 0x1102 for SMS-1102 "Nova"
126 UINT8 Step; // 0 - Step A
127 UINT8 MetalFix; // 0 - Metal 0
128
129 UINT8 FirmwareId; // 0xFF � ROM, otherwise the value indicated by SMSHOSTLIB_DEVICE_MODES_E
130 UINT8 SupportedProtocols; // Bitwise OR combination of supported protocols
131
132 UINT8 VersionMajor;
133 UINT8 VersionMinor;
134 UINT8 VersionPatch;
135 UINT8 VersionFieldPatch;
136
137 UINT8 RomVersionMajor;
138 UINT8 RomVersionMinor;
139 UINT8 RomVersionPatch;
140 UINT8 RomVersionFieldPatch;
141
142 UINT8 TextLabel[34];
143} SmsVersionRes_ST;
144
145typedef struct SmsFirmware_S
146{
147 UINT32 CheckSum;
148 UINT32 Length;
149 UINT32 StartAddress;
150 UINT8 Payload[1];
151} SmsFirmware_ST;
152
153typedef struct SMSHOSTLIB_STATISTICS_S
154{
155 UINT32 Reserved; //!< Reserved
156
157 /// Common parameters
158 UINT32 IsRfLocked; //!< 0 - not locked, 1 - locked
159 UINT32 IsDemodLocked; //!< 0 - not locked, 1 - locked
160 UINT32 IsExternalLNAOn; //!< 0 - external LNA off, 1 - external LNA on
161
162 /// Reception quality
163 INT32 SNR; //!< dB
164 UINT32 BER; //!< Post Viterbi BER [1E-5]
165 UINT32 FIB_CRC; //!< CRC errors percentage, valid only for DAB
166 UINT32 TS_PER; //!< Transport stream PER, 0xFFFFFFFF indicate N/A, valid only for DVB-T/H
167 UINT32 MFER; //!< DVB-H frame error rate in percentage, 0xFFFFFFFF indicate N/A, valid only for DVB-H
168 INT32 RSSI; //!< dBm
169 INT32 InBandPwr; //!< In band power in dBM
170 INT32 CarrierOffset; //!< Carrier Offset in bin/1024
171
172 /// Transmission parameters
173 UINT32 Frequency; //!< Frequency in Hz
174 UINT32 Bandwidth; //!< Bandwidth in MHz, valid only for DVB-T/H
175 UINT32 TransmissionMode; //!< Transmission Mode, for DAB modes 1-4, for DVB-T/H FFT mode carriers in Kilos
176 UINT32 ModemState; //!< from SMS_DvbModemState_ET , valid only for DVB-T/H
177 UINT32 GuardInterval; //!< Guard Interval, 1 divided by value , valid only for DVB-T/H
178 UINT32 CodeRate; //!< Code Rate from SMS_DvbModemState_ET, valid only for DVB-T/H
179 UINT32 LPCodeRate; //!< Low Priority Code Rate from SMS_DvbModemState_ET, valid only for DVB-T/H
180 UINT32 Hierarchy; //!< Hierarchy from SMS_Hierarchy_ET, valid only for DVB-T/H
181 UINT32 Constellation; //!< Constellation from SMS_Constellation_ET, valid only for DVB-T/H
182
183 /// Burst parameters, valid only for DVB-H
184 UINT32 BurstSize; //!< Current burst size in bytes, valid only for DVB-H
185 UINT32 BurstDuration; //!< Current burst duration in mSec, valid only for DVB-H
186 UINT32 BurstCycleTime; //!< Current burst cycle time in mSec, valid only for DVB-H
187 UINT32 CalculatedBurstCycleTime;//!< Current burst cycle time in mSec, as calculated by demodulator, valid only for DVB-H
188 UINT32 NumOfRows; //!< Number of rows in MPE table, valid only for DVB-H
189 UINT32 NumOfPaddCols; //!< Number of padding columns in MPE table, valid only for DVB-H
190 UINT32 NumOfPunctCols; //!< Number of puncturing columns in MPE table, valid only for DVB-H
191 UINT32 ErrorTSPackets; //!< Number of erroneous transport-stream packets
192 UINT32 TotalTSPackets; //!< Total number of transport-stream packets
193 UINT32 NumOfValidMpeTlbs; //!< Number of MPE tables which do not include errors after MPE RS decoding
194 UINT32 NumOfInvalidMpeTlbs; //!< Number of MPE tables which include errors after MPE RS decoding
195 UINT32 NumOfCorrectedMpeTlbs; //!< Number of MPE tables which were corrected by MPE RS decoding
196 /// Common params
197 UINT32 BERErrorCount; //!< Number of errornous SYNC bits.
198 UINT32 BERBitCount; //!< Total number of SYNC bits.
199
200 /// Interface information
201 UINT32 SmsToHostTxErrors; //!< Total number of transmission errors.
202
203 /// DAB/T-DMB
204 UINT32 PreBER; //!< DAB/T-DMB only: Pre Viterbi BER [1E-5]
205
206 /// DVB-H TPS parameters
207 UINT32 CellId; //!< TPS Cell ID in bits 15..0, bits 31..16 zero; if set to 0xFFFFFFFF cell_id not yet recovered
208
209} SMSHOSTLIB_STATISTICS_ST;
210
211typedef struct
212{
213 UINT32 RequestResult;
214
215 SMSHOSTLIB_STATISTICS_ST Stat;
216
217 // Split the calc of the SNR in DAB
218 UINT32 Signal; //!< dB
219 UINT32 Noise; //!< dB
220
221} SmsMsgStatisticsInfo_ST;
222
223typedef struct SMSHOSTLIB_ISDBT_LAYER_STAT_S
224{
225 // Per-layer information
226 UINT32 CodeRate; //!< Code Rate from SMSHOSTLIB_CODE_RATE_ET, 255 means layer does not exist
227 UINT32 Constellation; //!< Constellation from SMSHOSTLIB_CONSTELLATION_ET, 255 means layer does not exist
228 UINT32 BER; //!< Post Viterbi BER [1E-5], 0xFFFFFFFF indicate N/A
229 UINT32 BERErrorCount; //!< Post Viterbi Error Bits Count
230 UINT32 BERBitCount; //!< Post Viterbi Total Bits Count
231 UINT32 PreBER; //!< Pre Viterbi BER [1E-5], 0xFFFFFFFF indicate N/A
232 UINT32 TS_PER; //!< Transport stream PER [%], 0xFFFFFFFF indicate N/A
233 UINT32 ErrorTSPackets; //!< Number of erroneous transport-stream packets
234 UINT32 TotalTSPackets; //!< Total number of transport-stream packets
235 UINT32 TILdepthI; //!< Time interleaver depth I parameter, 255 means layer does not exist
236 UINT32 NumberOfSegments; //!< Number of segments in layer A, 255 means layer does not exist
237 UINT32 TMCCErrors; //!< TMCC errors
238} SMSHOSTLIB_ISDBT_LAYER_STAT_ST;
239
240typedef struct SMSHOSTLIB_STATISTICS_ISDBT_S
241{
242 UINT32 StatisticsType; //!< Enumerator identifying the type of the structure. Values are the same as SMSHOSTLIB_DEVICE_MODES_E
243 //!< This fiels MUST always first in any statistics structure
244
245 UINT32 FullSize; //!< Total size of the structure returned by the modem. If the size requested by
246 //!< the host is smaller than FullSize, the struct will be truncated
247
248 // Common parameters
249 UINT32 IsRfLocked; //!< 0 - not locked, 1 - locked
250 UINT32 IsDemodLocked; //!< 0 - not locked, 1 - locked
251 UINT32 IsExternalLNAOn; //!< 0 - external LNA off, 1 - external LNA on
252
253 // Reception quality
254 INT32 SNR; //!< dB
255 INT32 RSSI; //!< dBm
256 INT32 InBandPwr; //!< In band power in dBM
257 INT32 CarrierOffset; //!< Carrier Offset in Hz
258
259 // Transmission parameters
260 UINT32 Frequency; //!< Frequency in Hz
261 UINT32 Bandwidth; //!< Bandwidth in MHz
262 UINT32 TransmissionMode; //!< ISDB-T transmission mode
263 UINT32 ModemState; //!< 0 - Acquisition, 1 - Locked
264 UINT32 GuardInterval; //!< Guard Interval, 1 divided by value
265 UINT32 SystemType; //!< ISDB-T system type (ISDB-T / ISDB-Tsb)
266 UINT32 PartialReception; //!< TRUE - partial reception, FALSE otherwise
267 UINT32 NumOfLayers; //!< Number of ISDB-T layers in the network
268
269 // Per-layer information
270 // Layers A, B and C
271 SMSHOSTLIB_ISDBT_LAYER_STAT_ST LayerInfo[3]; //!< Per-layer statistics, see SMSHOSTLIB_ISDBT_LAYER_STAT_ST
272
273 // Interface information
274 UINT32 SmsToHostTxErrors; //!< Total number of transmission errors.
275
276} SMSHOSTLIB_STATISTICS_ISDBT_ST;
277
278typedef struct SMSHOSTLIB_STATISTICS_DVB_S
279{
280 UINT32 StatisticsType; //!< Enumerator identifying the type of the structure. Values are the same as SMSHOSTLIB_DEVICE_MODES_E
281 //!< This fiels MUST always first in any statistics structure
282
283 UINT32 FullSize; //!< Total size of the structure returned by the modem. If the size requested by
284 //!< the host is smaller than FullSize, the struct will be truncated
285 // Common parameters
286 UINT32 IsRfLocked; //!< 0 - not locked, 1 - locked
287 UINT32 IsDemodLocked; //!< 0 - not locked, 1 - locked
288 UINT32 IsExternalLNAOn; //!< 0 - external LNA off, 1 - external LNA on
289
290 // Reception quality
291 INT32 SNR; //!< dB
292 UINT32 BER; //!< Post Viterbi BER [1E-5]
293 UINT32 BERErrorCount; //!< Number of errornous SYNC bits.
294 UINT32 BERBitCount; //!< Total number of SYNC bits.
295 UINT32 TS_PER; //!< Transport stream PER, 0xFFFFFFFF indicate N/A
296 UINT32 MFER; //!< DVB-H frame error rate in percentage, 0xFFFFFFFF indicate N/A, valid only for DVB-H
297 INT32 RSSI; //!< dBm
298 INT32 InBandPwr; //!< In band power in dBM
299 INT32 CarrierOffset; //!< Carrier Offset in bin/1024
300
301 // Transmission parameters
302 UINT32 Frequency; //!< Frequency in Hz
303 UINT32 Bandwidth; //!< Bandwidth in MHz
304 UINT32 ModemState; //!< from SMSHOSTLIB_DVB_MODEM_STATE_ET
305 UINT32 TransmissionMode; //!< FFT mode carriers in Kilos
306 UINT32 GuardInterval; //!< Guard Interval, 1 divided by value
307 UINT32 CodeRate; //!< Code Rate from SMSHOSTLIB_CODE_RATE_ET
308 UINT32 LPCodeRate; //!< Low Priority Code Rate from SMSHOSTLIB_CODE_RATE_ET
309 UINT32 Hierarchy; //!< Hierarchy from SMSHOSTLIB_HIERARCHY_ET
310 UINT32 Constellation; //!< Constellation from SMSHOSTLIB_CONSTELLATION_ET
311
312 // Burst parameters, valid only for DVB-H
313 UINT32 BurstSize; //!< Current burst size in bytes, valid only for DVB-H
314 UINT32 BurstDuration; //!< Current burst duration in mSec, valid only for DVB-H
315 UINT32 BurstCycleTime; //!< Current burst cycle time in mSec, valid only for DVB-H
316 UINT32 CalculatedBurstCycleTime;//!< Current burst cycle time in mSec, as calculated by demodulator, valid only for DVB-H
317 UINT32 NumOfRows; //!< Number of rows in MPE table, valid only for DVB-H
318 UINT32 NumOfPaddCols; //!< Number of padding columns in MPE table, valid only for DVB-H
319 UINT32 NumOfPunctCols; //!< Number of puncturing columns in MPE table, valid only for DVB-H
320 UINT32 ErrorTSPackets; //!< Number of erroneous transport-stream packets
321 UINT32 TotalTSPackets; //!< Total number of transport-stream packets
322 UINT32 NumOfValidMpeTlbs; //!< Number of MPE tables which do not include errors after MPE RS decoding, valid only for DVB-H
323 UINT32 NumOfInvalidMpeTlbs; //!< Number of MPE tables which include errors after MPE RS decoding, valid only for DVB-H
324 UINT32 NumOfCorrectedMpeTlbs; //!< Number of MPE tables which were corrected by MPE RS decoding, valid only for DVB-H
325 UINT32 NumMPEReceived; //!< DVB-H, Num MPE section received
326
327 // DVB-H TPS parameters
328 UINT32 CellId; //!< TPS Cell ID in bits 15..0, bits 31..16 zero; if set to 0xFFFFFFFF cell_id not yet recovered
329 UINT32 DvbhSrvIndHP; //!< DVB-H service indication info, bit 1 - Time Slicing indicator, bit 0 - MPE-FEC indicator
330 UINT32 DvbhSrvIndLP; //!< DVB-H service indication info, bit 1 - Time Slicing indicator, bit 0 - MPE-FEC indicator
331
332 // Interface information
333 UINT32 SmsToHostTxErrors; //!< Total number of transmission errors.
334
335} SMSHOSTLIB_STATISTICS_DVB_ST;
336
337typedef struct SMSHOSTLIB_GPIO_CONFIG_S
338{
339 UINT8 Direction; //!< GPIO direction: Input - 0, Output - 1
340 UINT8 PullUpDown; //!< PullUp/PullDown: None - 0, PullDown - 1, PullUp - 2, Keeper - 3
341 UINT8 InputCharacteristics; //!< Input Characteristics: Normal - 0, Schmitt trigger - 1
342 UINT8 OutputSlewRate; //!< Output Slew Rate: Fast slew rate - 0, Slow slew rate - 1
343 UINT8 OutputDriving; //!< Output driving capability: 4mA - 0, 8mA - 1, 12mA - 2, 16mA - 3
344} SMSHOSTLIB_GPIO_CONFIG_ST;
345
346typedef struct SMSHOSTLIB_I2C_REQ_S
347{
348 UINT32 DeviceAddress; // I2c device address
349 UINT32 WriteCount; // number of bytes to write
350 UINT32 ReadCount; // number of bytes to read
351 UINT8 Data[1];
352} SMSHOSTLIB_I2C_REQ_ST;
353
354typedef struct SMSHOSTLIB_I2C_RES_S
355{
356 UINT32 Status; // non-zero value in case of failure
357 UINT32 ReadCount; // number of bytes read
358 UINT8 Data[1];
359} SMSHOSTLIB_I2C_RES_ST;
360
361#endif // __smstypes_h__
diff --git a/drivers/media/mdtv/smsusb.c b/drivers/media/mdtv/smsusb.c
index c076c046bf52..1da0209fc56f 100644
--- a/drivers/media/mdtv/smsusb.c
+++ b/drivers/media/mdtv/smsusb.c
@@ -5,7 +5,6 @@
5#include <linux/firmware.h> 5#include <linux/firmware.h>
6 6
7#include "smscoreapi.h" 7#include "smscoreapi.h"
8#include "smstypes.h"
9 8
10#define USB_VID_SIANO 0x187f 9#define USB_VID_SIANO 0x187f
11#define USB_PID_0010 0x0010 10#define USB_PID_0010 0x0010