max2165_priv.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * Driver for Maxim MAX2165 silicon tuner
  3. *
  4. * Copyright (c) 2009 David T. L. Wong <davidtlwong@gmail.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 __MAX2165_PRIV_H__
  18. #define __MAX2165_PRIV_H__
  19. #define REG_NDIV_INT 0x00
  20. #define REG_NDIV_FRAC2 0x01
  21. #define REG_NDIV_FRAC1 0x02
  22. #define REG_NDIV_FRAC0 0x03
  23. #define REG_TRACK_FILTER 0x04
  24. #define REG_LNA 0x05
  25. #define REG_PLL_CFG 0x06
  26. #define REG_TEST 0x07
  27. #define REG_SHUTDOWN 0x08
  28. #define REG_VCO_CTRL 0x09
  29. #define REG_BASEBAND_CTRL 0x0A
  30. #define REG_DC_OFFSET_CTRL 0x0B
  31. #define REG_DC_OFFSET_DAC 0x0C
  32. #define REG_ROM_TABLE_ADDR 0x0D
  33. /* Read Only Registers */
  34. #define REG_ROM_TABLE_DATA 0x10
  35. #define REG_STATUS 0x11
  36. #define REG_AUTOTUNE 0x12
  37. struct max2165_priv {
  38. struct max2165_config *config;
  39. struct i2c_adapter *i2c;
  40. u32 frequency;
  41. u32 bandwidth;
  42. u8 tf_ntch_low_cfg;
  43. u8 tf_ntch_hi_cfg;
  44. u8 tf_balun_low_ref;
  45. u8 tf_balun_hi_ref;
  46. u8 bb_filter_7mhz_cfg;
  47. u8 bb_filter_8mhz_cfg;
  48. };
  49. #endif