mt2060.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * Driver for Microtune MT2060 "Single chip dual conversion broadband tuner"
  3. *
  4. * Copyright (c) 2006 Olivier DANET <odanet@caramail.com>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. *
  15. * GNU General Public License for more details.
  16. */
  17. #ifndef MT2060_H
  18. #define MT2060_H
  19. struct dvb_frontend;
  20. struct i2c_adapter;
  21. /*
  22. * I2C address
  23. * 0x60, ...
  24. */
  25. /**
  26. * struct mt2060_platform_data - Platform data for the mt2060 driver
  27. * @clock_out: Clock output setting. 0 = off, 1 = CLK/4, 2 = CLK/2, 3 = CLK/1.
  28. * @if1: First IF used [MHz]. 0 defaults to 1220.
  29. * @i2c_write_max: Maximum number of bytes I2C adapter can write at once.
  30. * 0 defaults to maximum.
  31. * @dvb_frontend: DVB frontend.
  32. */
  33. struct mt2060_platform_data {
  34. u8 clock_out;
  35. u16 if1;
  36. unsigned int i2c_write_max:5;
  37. struct dvb_frontend *dvb_frontend;
  38. };
  39. /* configuration struct for mt2060_attach() */
  40. struct mt2060_config {
  41. u8 i2c_address;
  42. u8 clock_out; /* 0 = off, 1 = CLK/4, 2 = CLK/2, 3 = CLK/1 */
  43. };
  44. #if IS_REACHABLE(CONFIG_MEDIA_TUNER_MT2060)
  45. extern struct dvb_frontend * mt2060_attach(struct dvb_frontend *fe, struct i2c_adapter *i2c, struct mt2060_config *cfg, u16 if1);
  46. #else
  47. static inline struct dvb_frontend * mt2060_attach(struct dvb_frontend *fe, struct i2c_adapter *i2c, struct mt2060_config *cfg, u16 if1)
  48. {
  49. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  50. return NULL;
  51. }
  52. #endif // CONFIG_MEDIA_TUNER_MT2060
  53. #endif