Merge tag 'pci-v4.8-changes' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci
[deliverable/linux.git] / drivers / media / i2c / cx25840 / cx25840-core.h
CommitLineData
31bc09b5 1/* cx25840 internal API header
bd985160
HV
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
31bc09b5
HV
20#ifndef _CX25840_CORE_H_
21#define _CX25840_CORE_H_
bd985160 22
cab462f7 23
bd985160 24#include <linux/videodev2.h>
9357b31c 25#include <media/v4l2-device.h>
e34e658b 26#include <media/v4l2-ctrls.h>
bd985160
HV
27#include <linux/i2c.h>
28
52fd3dda
AW
29struct cx25840_ir_state;
30
29d6a98b
HV
31enum cx25840_model {
32 CX23885_AV,
33 CX23887_AV,
34 CX23888_AV,
35 CX2310X_AV,
36 CX25840,
37 CX25841,
38 CX25842,
39 CX25843,
40 CX25836,
41 CX25837,
42};
43
7e4f23d5
MCC
44enum cx25840_media_pads {
45 CX25840_PAD_INPUT,
46 CX25840_PAD_VID_OUT,
47 CX25840_PAD_VBI_OUT,
48
49 CX25840_NUM_PADS
50};
51
bd985160 52struct cx25840_state {
21340ae0 53 struct i2c_client *c;
9357b31c 54 struct v4l2_subdev sd;
e34e658b
HV
55 struct v4l2_ctrl_handler hdl;
56 struct {
57 /* volume cluster */
58 struct v4l2_ctrl *volume;
59 struct v4l2_ctrl *mute;
60 };
a8bbf12a 61 int pvr150_workaround;
3faeeae4 62 int radio;
081b496a 63 v4l2_std_id std;
a8bbf12a
HV
64 enum cx25840_video_input vid_input;
65 enum cx25840_audio_input aud_input;
3578d3dd 66 u32 audclk_freq;
8a4b275f 67 int audmode;
3e3bf277 68 int vbi_line_offset;
29d6a98b 69 enum cx25840_model id;
3434eb7e 70 u32 rev;
c976bc82 71 int is_initialized;
cdf472d3 72 unsigned vbi_regs_offset;
21340ae0
HV
73 wait_queue_head_t fw_wait; /* wake up when the fw load is finished */
74 struct work_struct fw_work; /* work entry for fw load */
52fd3dda 75 struct cx25840_ir_state *ir_state;
8cd61969 76#if defined(CONFIG_MEDIA_CONTROLLER)
7e4f23d5 77 struct media_pad pads[CX25840_NUM_PADS];
8cd61969 78#endif
bd985160
HV
79};
80
9357b31c
HV
81static inline struct cx25840_state *to_state(struct v4l2_subdev *sd)
82{
83 return container_of(sd, struct cx25840_state, sd);
84}
85
e34e658b
HV
86static inline struct v4l2_subdev *to_sd(struct v4l2_ctrl *ctrl)
87{
88 return &container_of(ctrl->handler, struct cx25840_state, hdl)->sd;
89}
90
2a03f034
AW
91static inline bool is_cx2583x(struct cx25840_state *state)
92{
29d6a98b
HV
93 return state->id == CX25836 ||
94 state->id == CX25837;
2a03f034
AW
95}
96
97static inline bool is_cx231xx(struct cx25840_state *state)
98{
29d6a98b 99 return state->id == CX2310X_AV;
2a03f034
AW
100}
101
102static inline bool is_cx2388x(struct cx25840_state *state)
103{
29d6a98b
HV
104 return state->id == CX23885_AV ||
105 state->id == CX23887_AV ||
106 state->id == CX23888_AV;
2a03f034
AW
107}
108
52fd3dda
AW
109static inline bool is_cx23885(struct cx25840_state *state)
110{
29d6a98b 111 return state->id == CX23885_AV;
52fd3dda
AW
112}
113
114static inline bool is_cx23887(struct cx25840_state *state)
115{
29d6a98b 116 return state->id == CX23887_AV;
52fd3dda
AW
117}
118
119static inline bool is_cx23888(struct cx25840_state *state)
120{
29d6a98b 121 return state->id == CX23888_AV;
52fd3dda
AW
122}
123
bd985160
HV
124/* ----------------------------------------------------------------------- */
125/* cx25850-core.c */
126int cx25840_write(struct i2c_client *client, u16 addr, u8 value);
127int cx25840_write4(struct i2c_client *client, u16 addr, u32 value);
128u8 cx25840_read(struct i2c_client *client, u16 addr);
129u32 cx25840_read4(struct i2c_client *client, u16 addr);
e2b8cf4c 130int cx25840_and_or(struct i2c_client *client, u16 addr, unsigned mask, u8 value);
52fd3dda
AW
131int cx25840_and_or4(struct i2c_client *client, u16 addr, u32 and_mask,
132 u32 or_value);
cb5aa1c6 133void cx25840_std_setup(struct i2c_client *client);
bd985160
HV
134
135/* ----------------------------------------------------------------------- */
136/* cx25850-firmware.c */
137int cx25840_loadfw(struct i2c_client *client);
138
139/* ----------------------------------------------------------------------- */
140/* cx25850-audio.c */
a8bbf12a 141void cx25840_audio_set_path(struct i2c_client *client);
df1d5ed8 142int cx25840_s_clock_freq(struct v4l2_subdev *sd, u32 freq);
e34e658b
HV
143
144extern const struct v4l2_ctrl_ops cx25840_audio_ctrl_ops;
bd985160
HV
145
146/* ----------------------------------------------------------------------- */
147/* cx25850-vbi.c */
5393db43
HV
148int cx25840_s_raw_fmt(struct v4l2_subdev *sd, struct v4l2_vbi_format *fmt);
149int cx25840_s_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *fmt);
150int cx25840_g_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *fmt);
df1d5ed8 151int cx25840_decode_vbi_line(struct v4l2_subdev *sd, struct v4l2_decode_vbi_line *vbi);
bd985160 152
52fd3dda
AW
153/* ----------------------------------------------------------------------- */
154/* cx25850-ir.c */
155extern const struct v4l2_subdev_ir_ops cx25840_ir_ops;
156int cx25840_ir_log_status(struct v4l2_subdev *sd);
157int cx25840_ir_irq_handler(struct v4l2_subdev *sd, u32 status, bool *handled);
158int cx25840_ir_probe(struct v4l2_subdev *sd);
159int cx25840_ir_remove(struct v4l2_subdev *sd);
160
bd985160 161#endif
This page took 0.821616 seconds and 5 git commands to generate.