af9013.h 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*
  2. * Afatech AF9013 demodulator driver
  3. *
  4. * Copyright (C) 2007 Antti Palosaari <crope@iki.fi>
  5. * Copyright (C) 2011 Antti Palosaari <crope@iki.fi>
  6. *
  7. * Thanks to Afatech who kindly provided information.
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. */
  20. #ifndef AF9013_H
  21. #define AF9013_H
  22. #include <linux/dvb/frontend.h>
  23. /*
  24. * I2C address: 0x1c, 0x1d
  25. */
  26. /**
  27. * struct af9013_platform_data - Platform data for the af9013 driver
  28. * @clk: Clock frequency.
  29. * @tuner: Used tuner model.
  30. * @if_frequency: IF frequency.
  31. * @ts_mode: TS mode.
  32. * @ts_output_pin: TS output pin.
  33. * @spec_inv: Input spectrum inverted.
  34. * @api_version: Firmware API version.
  35. * @gpio: GPIOs.
  36. * @get_dvb_frontend: Get DVB frontend callback.
  37. * @get_i2c_adapter: Get I2C adapter.
  38. * @pid_filter_ctrl: Control PID filter.
  39. * @pid_filter: Set PID to PID filter.
  40. */
  41. struct af9013_platform_data {
  42. /*
  43. * 20480000, 25000000, 28000000, 28800000
  44. */
  45. u32 clk;
  46. #define AF9013_TUNER_MXL5003D 3 /* MaxLinear */
  47. #define AF9013_TUNER_MXL5005D 13 /* MaxLinear */
  48. #define AF9013_TUNER_MXL5005R 30 /* MaxLinear */
  49. #define AF9013_TUNER_ENV77H11D5 129 /* Panasonic */
  50. #define AF9013_TUNER_MT2060 130 /* Microtune */
  51. #define AF9013_TUNER_MC44S803 133 /* Freescale */
  52. #define AF9013_TUNER_QT1010 134 /* Quantek */
  53. #define AF9013_TUNER_UNKNOWN 140 /* for can tuners ? */
  54. #define AF9013_TUNER_MT2060_2 147 /* Microtune */
  55. #define AF9013_TUNER_TDA18271 156 /* NXP */
  56. #define AF9013_TUNER_QT1010A 162 /* Quantek */
  57. #define AF9013_TUNER_MXL5007T 177 /* MaxLinear */
  58. #define AF9013_TUNER_TDA18218 179 /* NXP */
  59. u8 tuner;
  60. u32 if_frequency;
  61. #define AF9013_TS_MODE_USB 0
  62. #define AF9013_TS_MODE_PARALLEL 1
  63. #define AF9013_TS_MODE_SERIAL 2
  64. u8 ts_mode;
  65. u8 ts_output_pin;
  66. bool spec_inv;
  67. u8 api_version[4];
  68. #define AF9013_GPIO_ON (1 << 0)
  69. #define AF9013_GPIO_EN (1 << 1)
  70. #define AF9013_GPIO_O (1 << 2)
  71. #define AF9013_GPIO_I (1 << 3)
  72. #define AF9013_GPIO_LO (AF9013_GPIO_ON|AF9013_GPIO_EN)
  73. #define AF9013_GPIO_HI (AF9013_GPIO_ON|AF9013_GPIO_EN|AF9013_GPIO_O)
  74. #define AF9013_GPIO_TUNER_ON (AF9013_GPIO_ON|AF9013_GPIO_EN)
  75. #define AF9013_GPIO_TUNER_OFF (AF9013_GPIO_ON|AF9013_GPIO_EN|AF9013_GPIO_O)
  76. u8 gpio[4];
  77. struct dvb_frontend* (*get_dvb_frontend)(struct i2c_client *);
  78. struct i2c_adapter* (*get_i2c_adapter)(struct i2c_client *);
  79. int (*pid_filter_ctrl)(struct dvb_frontend *, int);
  80. int (*pid_filter)(struct dvb_frontend *, u8, u16, int);
  81. };
  82. /*
  83. * AF9013/5 GPIOs (mostly guessed)
  84. * demod#1-gpio#0 - set demod#2 i2c-addr for dual devices
  85. * demod#1-gpio#1 - xtal setting (?)
  86. * demod#1-gpio#3 - tuner#1
  87. * demod#2-gpio#0 - tuner#2
  88. * demod#2-gpio#1 - xtal setting (?)
  89. */
  90. #endif /* AF9013_H */