af9015.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /*
  2. * DVB USB Linux driver for Afatech AF9015 DVB-T USB2.0 receiver
  3. *
  4. * Copyright (C) 2007 Antti Palosaari <crope@iki.fi>
  5. *
  6. * Thanks to Afatech who kindly provided information.
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. */
  19. #ifndef AF9015_H
  20. #define AF9015_H
  21. #include <linux/hash.h>
  22. #include <linux/regmap.h>
  23. #include "dvb_usb.h"
  24. #include "af9013.h"
  25. #include "dvb-pll.h"
  26. #include "mt2060.h"
  27. #include "qt1010.h"
  28. #include "tda18271.h"
  29. #include "mxl5005s.h"
  30. #include "mc44s803.h"
  31. #include "tda18218.h"
  32. #include "mxl5007t.h"
  33. #define AF9015_FIRMWARE "dvb-usb-af9015.fw"
  34. #define AF9015_I2C_EEPROM 0x50
  35. #define AF9015_I2C_DEMOD 0x1c
  36. #define AF9015_USB_TIMEOUT 2000
  37. /* EEPROM locations */
  38. #define AF9015_EEPROM_IR_MODE 0x18
  39. #define AF9015_EEPROM_IR_REMOTE_TYPE 0x34
  40. #define AF9015_EEPROM_TS_MODE 0x31
  41. #define AF9015_EEPROM_DEMOD2_I2C 0x32
  42. #define AF9015_EEPROM_SAW_BW1 0x35
  43. #define AF9015_EEPROM_XTAL_TYPE1 0x36
  44. #define AF9015_EEPROM_SPEC_INV1 0x37
  45. #define AF9015_EEPROM_IF1L 0x38
  46. #define AF9015_EEPROM_IF1H 0x39
  47. #define AF9015_EEPROM_MT2060_IF1L 0x3a
  48. #define AF9015_EEPROM_MT2060_IF1H 0x3b
  49. #define AF9015_EEPROM_TUNER_ID1 0x3c
  50. #define AF9015_EEPROM_SAW_BW2 0x45
  51. #define AF9015_EEPROM_XTAL_TYPE2 0x46
  52. #define AF9015_EEPROM_SPEC_INV2 0x47
  53. #define AF9015_EEPROM_IF2L 0x48
  54. #define AF9015_EEPROM_IF2H 0x49
  55. #define AF9015_EEPROM_MT2060_IF2L 0x4a
  56. #define AF9015_EEPROM_MT2060_IF2H 0x4b
  57. #define AF9015_EEPROM_TUNER_ID2 0x4c
  58. #define AF9015_EEPROM_OFFSET (AF9015_EEPROM_SAW_BW2 - AF9015_EEPROM_SAW_BW1)
  59. struct req_t {
  60. u8 cmd; /* [0] */
  61. /* seq */ /* [1] */
  62. u8 i2c_addr; /* [2] */
  63. u16 addr; /* [3|4] */
  64. u8 mbox; /* [5] */
  65. u8 addr_len; /* [6] */
  66. u8 data_len; /* [7] */
  67. u8 *data;
  68. };
  69. enum af9015_cmd {
  70. GET_CONFIG = 0x10,
  71. DOWNLOAD_FIRMWARE = 0x11,
  72. BOOT = 0x13,
  73. READ_MEMORY = 0x20,
  74. WRITE_MEMORY = 0x21,
  75. READ_WRITE_I2C = 0x22,
  76. COPY_FIRMWARE = 0x23,
  77. RECONNECT_USB = 0x5a,
  78. WRITE_VIRTUAL_MEMORY = 0x26,
  79. GET_IR_CODE = 0x27,
  80. READ_I2C,
  81. WRITE_I2C,
  82. };
  83. enum af9015_ir_mode {
  84. AF9015_IR_MODE_DISABLED = 0,
  85. AF9015_IR_MODE_HID,
  86. AF9015_IR_MODE_RLC,
  87. AF9015_IR_MODE_RC6,
  88. AF9015_IR_MODE_POLLING, /* just guess */
  89. };
  90. #define BUF_LEN 63
  91. struct af9015_state {
  92. struct regmap *regmap;
  93. u8 buf[BUF_LEN]; /* bulk USB control message */
  94. u8 ir_mode;
  95. u8 rc_repeat;
  96. u32 rc_keycode;
  97. u8 rc_last[4];
  98. bool rc_failed;
  99. u8 dual_mode;
  100. u8 seq; /* packet sequence number */
  101. u16 mt2060_if1[2];
  102. u16 firmware_size;
  103. u16 firmware_checksum;
  104. u32 eeprom_sum;
  105. struct af9013_platform_data af9013_pdata[2];
  106. struct i2c_client *demod_i2c_client[2];
  107. u8 af9013_i2c_addr[2];
  108. bool usb_ts_if_configured[2];
  109. /* for demod callback override */
  110. int (*set_frontend[2]) (struct dvb_frontend *fe);
  111. int (*read_status[2]) (struct dvb_frontend *fe, enum fe_status *status);
  112. int (*init[2]) (struct dvb_frontend *fe);
  113. int (*sleep[2]) (struct dvb_frontend *fe);
  114. int (*tuner_init[2]) (struct dvb_frontend *fe);
  115. int (*tuner_sleep[2]) (struct dvb_frontend *fe);
  116. struct mutex fe_mutex;
  117. };
  118. enum af9015_remote {
  119. AF9015_REMOTE_NONE = 0,
  120. /* 1 */ AF9015_REMOTE_A_LINK_DTU_M,
  121. AF9015_REMOTE_MSI_DIGIVOX_MINI_II_V3,
  122. AF9015_REMOTE_MYGICTV_U718,
  123. AF9015_REMOTE_DIGITTRADE_DVB_T,
  124. /* 5 */ AF9015_REMOTE_AVERMEDIA_KS,
  125. };
  126. #endif