cxd2841er.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. * cxd2841er.h
  3. *
  4. * Sony CXD2441ER digital demodulator driver public definitions
  5. *
  6. * Copyright 2012 Sony Corporation
  7. * Copyright (C) 2014 NetUP Inc.
  8. * Copyright (C) 2014 Sergey Kozlov <serjk@netup.ru>
  9. * Copyright (C) 2014 Abylay Ospan <aospan@netup.ru>
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License as published by
  13. * the Free Software Foundation; either version 2 of the License, or
  14. * (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. */
  21. #ifndef CXD2841ER_H
  22. #define CXD2841ER_H
  23. #include <linux/dvb/frontend.h>
  24. #define CXD2841ER_USE_GATECTRL 1 /* bit 0 */
  25. #define CXD2841ER_AUTO_IFHZ 2 /* bit 1 */
  26. #define CXD2841ER_TS_SERIAL 4 /* bit 2 */
  27. #define CXD2841ER_ASCOT 8 /* bit 3 */
  28. #define CXD2841ER_EARLY_TUNE 16 /* bit 4 */
  29. #define CXD2841ER_NO_WAIT_LOCK 32 /* bit 5 */
  30. #define CXD2841ER_NO_AGCNEG 64 /* bit 6 */
  31. #define CXD2841ER_TSBITS 128 /* bit 7 */
  32. enum cxd2841er_xtal {
  33. SONY_XTAL_20500, /* 20.5 MHz */
  34. SONY_XTAL_24000, /* 24 MHz */
  35. SONY_XTAL_41000 /* 41 MHz */
  36. };
  37. struct cxd2841er_config {
  38. u8 i2c_addr;
  39. enum cxd2841er_xtal xtal;
  40. u32 flags;
  41. };
  42. #if IS_REACHABLE(CONFIG_DVB_CXD2841ER)
  43. extern struct dvb_frontend *cxd2841er_attach_s(struct cxd2841er_config *cfg,
  44. struct i2c_adapter *i2c);
  45. extern struct dvb_frontend *cxd2841er_attach_t_c(struct cxd2841er_config *cfg,
  46. struct i2c_adapter *i2c);
  47. #else
  48. static inline struct dvb_frontend *cxd2841er_attach_s(
  49. struct cxd2841er_config *cfg,
  50. struct i2c_adapter *i2c)
  51. {
  52. pr_warn("%s: driver disabled by Kconfig\n", __func__);
  53. return NULL;
  54. }
  55. static inline struct dvb_frontend *cxd2841er_attach_t_c(
  56. struct cxd2841er_config *cfg, struct i2c_adapter *i2c)
  57. {
  58. pr_warn("%s: driver disabled by Kconfig\n", __func__);
  59. return NULL;
  60. }
  61. #endif
  62. #endif