cx25840-core.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. /* cx25840 internal API header
  2. *
  3. * Copyright (C) 2003-2004 Chris Kennedy
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License
  7. * as published by the Free Software Foundation; either version 2
  8. * of the License, or (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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  18. */
  19. #ifndef _CX25840_CORE_H_
  20. #define _CX25840_CORE_H_
  21. #include <linux/videodev2.h>
  22. #include <media/v4l2-device.h>
  23. #include <media/v4l2-chip-ident.h>
  24. #include <linux/i2c.h>
  25. struct cx25840_ir_state;
  26. struct cx25840_state {
  27. struct i2c_client *c;
  28. struct v4l2_subdev sd;
  29. int pvr150_workaround;
  30. int radio;
  31. v4l2_std_id std;
  32. enum cx25840_video_input vid_input;
  33. enum cx25840_audio_input aud_input;
  34. u32 audclk_freq;
  35. int audmode;
  36. int unmute_volume; /* -1 if not muted */
  37. int default_volume;
  38. int vbi_line_offset;
  39. u32 id;
  40. u32 rev;
  41. int is_initialized;
  42. wait_queue_head_t fw_wait; /* wake up when the fw load is finished */
  43. struct work_struct fw_work; /* work entry for fw load */
  44. struct cx25840_ir_state *ir_state;
  45. };
  46. static inline struct cx25840_state *to_state(struct v4l2_subdev *sd)
  47. {
  48. return container_of(sd, struct cx25840_state, sd);
  49. }
  50. static inline bool is_cx2583x(struct cx25840_state *state)
  51. {
  52. return state->id == V4L2_IDENT_CX25836 ||
  53. state->id == V4L2_IDENT_CX25837;
  54. }
  55. static inline bool is_cx231xx(struct cx25840_state *state)
  56. {
  57. return state->id == V4L2_IDENT_CX2310X_AV;
  58. }
  59. static inline bool is_cx2388x(struct cx25840_state *state)
  60. {
  61. return state->id == V4L2_IDENT_CX23885_AV ||
  62. state->id == V4L2_IDENT_CX23887_AV ||
  63. state->id == V4L2_IDENT_CX23888_AV;
  64. }
  65. static inline bool is_cx23885(struct cx25840_state *state)
  66. {
  67. return state->id == V4L2_IDENT_CX23885_AV;
  68. }
  69. static inline bool is_cx23887(struct cx25840_state *state)
  70. {
  71. return state->id == V4L2_IDENT_CX23887_AV;
  72. }
  73. static inline bool is_cx23888(struct cx25840_state *state)
  74. {
  75. return state->id == V4L2_IDENT_CX23888_AV;
  76. }
  77. /* ----------------------------------------------------------------------- */
  78. /* cx25850-core.c */
  79. int cx25840_write(struct i2c_client *client, u16 addr, u8 value);
  80. int cx25840_write4(struct i2c_client *client, u16 addr, u32 value);
  81. u8 cx25840_read(struct i2c_client *client, u16 addr);
  82. u32 cx25840_read4(struct i2c_client *client, u16 addr);
  83. int cx25840_and_or(struct i2c_client *client, u16 addr, unsigned mask, u8 value);
  84. int cx25840_and_or4(struct i2c_client *client, u16 addr, u32 and_mask,
  85. u32 or_value);
  86. void cx25840_std_setup(struct i2c_client *client);
  87. /* ----------------------------------------------------------------------- */
  88. /* cx25850-firmware.c */
  89. int cx25840_loadfw(struct i2c_client *client);
  90. /* ----------------------------------------------------------------------- */
  91. /* cx25850-audio.c */
  92. void cx25840_audio_set_path(struct i2c_client *client);
  93. int cx25840_s_clock_freq(struct v4l2_subdev *sd, u32 freq);
  94. int cx25840_audio_g_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl);
  95. int cx25840_audio_s_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl);
  96. /* ----------------------------------------------------------------------- */
  97. /* cx25850-vbi.c */
  98. int cx25840_s_raw_fmt(struct v4l2_subdev *sd, struct v4l2_vbi_format *fmt);
  99. int cx25840_s_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *fmt);
  100. int cx25840_g_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *fmt);
  101. int cx25840_decode_vbi_line(struct v4l2_subdev *sd, struct v4l2_decode_vbi_line *vbi);
  102. /* ----------------------------------------------------------------------- */
  103. /* cx25850-ir.c */
  104. extern const struct v4l2_subdev_ir_ops cx25840_ir_ops;
  105. int cx25840_ir_log_status(struct v4l2_subdev *sd);
  106. int cx25840_ir_irq_handler(struct v4l2_subdev *sd, u32 status, bool *handled);
  107. int cx25840_ir_probe(struct v4l2_subdev *sd);
  108. int cx25840_ir_remove(struct v4l2_subdev *sd);
  109. #endif