tw28.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * Copyright (C) 2010 Bluecherry, LLC www.bluecherrydvr.com
  3. * Copyright (C) 2010 Ben Collins <bcollins@bluecherry.net>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. */
  19. #ifndef __SOLO6X10_TW28_H
  20. #define __SOLO6X10_TW28_H
  21. #include "solo6x10.h"
  22. #define TW_NUM_CHIP 4
  23. #define TW_BASE_ADDR 0x28
  24. #define TW_CHIP_OFFSET_ADDR(n) (TW_BASE_ADDR + (n))
  25. /* tw2815 */
  26. #define TW_AV_STAT_ADDR 0x5a
  27. #define TW_HUE_ADDR(n) (0x07 | ((n) << 4))
  28. #define TW_SATURATION_ADDR(n) (0x08 | ((n) << 4))
  29. #define TW_CONTRAST_ADDR(n) (0x09 | ((n) << 4))
  30. #define TW_BRIGHTNESS_ADDR(n) (0x0a | ((n) << 4))
  31. #define TW_AUDIO_OUTPUT_VOL_ADDR 0x70
  32. #define TW_AUDIO_INPUT_GAIN_ADDR(n) (0x60 + ((n > 1) ? 1 : 0))
  33. /* tw286x */
  34. #define TW286X_AV_STAT_ADDR 0xfd
  35. #define TW286x_HUE_ADDR(n) (0x06 | ((n) << 4))
  36. #define TW286x_SATURATIONU_ADDR(n) (0x04 | ((n) << 4))
  37. #define TW286x_SATURATIONV_ADDR(n) (0x05 | ((n) << 4))
  38. #define TW286x_CONTRAST_ADDR(n) (0x02 | ((n) << 4))
  39. #define TW286x_BRIGHTNESS_ADDR(n) (0x01 | ((n) << 4))
  40. #define TW286x_SHARPNESS(n) (0x03 | ((n) << 4))
  41. #define TW286x_AUDIO_OUTPUT_VOL_ADDR 0xdf
  42. #define TW286x_AUDIO_INPUT_GAIN_ADDR(n) (0xD0 + ((n > 1) ? 1 : 0))
  43. int solo_tw28_init(struct solo_dev *solo_dev);
  44. int tw28_set_ctrl_val(struct solo_dev *solo_dev, u32 ctrl, u8 ch, s32 val);
  45. int tw28_get_ctrl_val(struct solo_dev *solo_dev, u32 ctrl, u8 ch, s32 *val);
  46. u8 tw28_get_audio_gain(struct solo_dev *solo_dev, u8 ch);
  47. void tw28_set_audio_gain(struct solo_dev *solo_dev, u8 ch, u8 val);
  48. int tw28_get_video_status(struct solo_dev *solo_dev, u8 ch);
  49. #if 0
  50. unsigned int tw2815_get_audio_status(struct SOLO *solo);
  51. void tw2815_Set_AudioOutVol(struct SOLO *solo, unsigned int u_val);
  52. #endif
  53. #endif /* __SOLO6X10_TW28_H */