diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2008-12-19 08:34:22 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-12-30 06:39:33 -0500 |
commit | b3ee7e21f25cdd50cccc906dc09e547f36166372 (patch) | |
tree | 677a492e0713af630aca42b6e9d5dfd168dd1673 /drivers/media/video/cs5345.c | |
parent | 12f91a3fac52ea0fb0913b4e0e66e7357f31251c (diff) |
V4L/DVB (9967): cs5345: convert to v4l2_subdev and fix broken s_ctrl.
Converted to v4l2_subdev. While doing that I also discovered a stray 'break'
that broke the S_CTRL handling. Fixed that as well.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/cs5345.c')
-rw-r--r-- | drivers/media/video/cs5345.c | 227 |
1 files changed, 138 insertions, 89 deletions
diff --git a/drivers/media/video/cs5345.c b/drivers/media/video/cs5345.c index a662b15d5b90..70fcd0d5de13 100644 --- a/drivers/media/video/cs5345.c +++ b/drivers/media/video/cs5345.c | |||
@@ -23,9 +23,9 @@ | |||
23 | #include <linux/kernel.h> | 23 | #include <linux/kernel.h> |
24 | #include <linux/i2c.h> | 24 | #include <linux/i2c.h> |
25 | #include <linux/videodev2.h> | 25 | #include <linux/videodev2.h> |
26 | #include <media/v4l2-i2c-drv.h> | 26 | #include <media/v4l2-device.h> |
27 | #include <media/v4l2-common.h> | ||
28 | #include <media/v4l2-chip-ident.h> | 27 | #include <media/v4l2-chip-ident.h> |
28 | #include <media/v4l2-i2c-drv.h> | ||
29 | 29 | ||
30 | MODULE_DESCRIPTION("i2c device driver for cs5345 Audio ADC"); | 30 | MODULE_DESCRIPTION("i2c device driver for cs5345 Audio ADC"); |
31 | MODULE_AUTHOR("Hans Verkuil"); | 31 | MODULE_AUTHOR("Hans Verkuil"); |
@@ -40,111 +40,143 @@ MODULE_PARM_DESC(debug, "Debugging messages, 0=Off (default), 1=On"); | |||
40 | 40 | ||
41 | /* ----------------------------------------------------------------------- */ | 41 | /* ----------------------------------------------------------------------- */ |
42 | 42 | ||
43 | static inline int cs5345_write(struct i2c_client *client, u8 reg, u8 value) | 43 | static inline int cs5345_write(struct v4l2_subdev *sd, u8 reg, u8 value) |
44 | { | 44 | { |
45 | struct i2c_client *client = v4l2_get_subdevdata(sd); | ||
46 | |||
45 | return i2c_smbus_write_byte_data(client, reg, value); | 47 | return i2c_smbus_write_byte_data(client, reg, value); |
46 | } | 48 | } |
47 | 49 | ||
48 | static inline int cs5345_read(struct i2c_client *client, u8 reg) | 50 | static inline int cs5345_read(struct v4l2_subdev *sd, u8 reg) |
49 | { | 51 | { |
52 | struct i2c_client *client = v4l2_get_subdevdata(sd); | ||
53 | |||
50 | return i2c_smbus_read_byte_data(client, reg); | 54 | return i2c_smbus_read_byte_data(client, reg); |
51 | } | 55 | } |
52 | 56 | ||
53 | static int cs5345_command(struct i2c_client *client, unsigned cmd, void *arg) | 57 | static int cs5345_s_routing(struct v4l2_subdev *sd, const struct v4l2_routing *route) |
54 | { | 58 | { |
55 | struct v4l2_routing *route = arg; | 59 | if ((route->input & 0xf) > 6) { |
56 | struct v4l2_control *ctrl = arg; | 60 | v4l2_err(sd, "Invalid input %d.\n", route->input); |
57 | 61 | return -EINVAL; | |
58 | switch (cmd) { | ||
59 | case VIDIOC_INT_G_AUDIO_ROUTING: | ||
60 | route->input = cs5345_read(client, 0x09) & 7; | ||
61 | route->input |= cs5345_read(client, 0x05) & 0x70; | ||
62 | route->output = 0; | ||
63 | break; | ||
64 | |||
65 | case VIDIOC_INT_S_AUDIO_ROUTING: | ||
66 | if ((route->input & 0xf) > 6) { | ||
67 | v4l_err(client, "Invalid input %d.\n", route->input); | ||
68 | return -EINVAL; | ||
69 | } | ||
70 | cs5345_write(client, 0x09, route->input & 0xf); | ||
71 | cs5345_write(client, 0x05, route->input & 0xf0); | ||
72 | break; | ||
73 | |||
74 | case VIDIOC_G_CTRL: | ||
75 | if (ctrl->id == V4L2_CID_AUDIO_MUTE) { | ||
76 | ctrl->value = (cs5345_read(client, 0x04) & 0x08) != 0; | ||
77 | break; | ||
78 | } | ||
79 | if (ctrl->id != V4L2_CID_AUDIO_VOLUME) | ||
80 | return -EINVAL; | ||
81 | ctrl->value = cs5345_read(client, 0x07) & 0x3f; | ||
82 | if (ctrl->value >= 32) | ||
83 | ctrl->value = ctrl->value - 64; | ||
84 | break; | ||
85 | |||
86 | case VIDIOC_S_CTRL: | ||
87 | break; | ||
88 | if (ctrl->id == V4L2_CID_AUDIO_MUTE) { | ||
89 | cs5345_write(client, 0x04, ctrl->value ? 0x80 : 0); | ||
90 | break; | ||
91 | } | ||
92 | if (ctrl->id != V4L2_CID_AUDIO_VOLUME) | ||
93 | return -EINVAL; | ||
94 | if (ctrl->value > 24 || ctrl->value < -24) | ||
95 | return -EINVAL; | ||
96 | cs5345_write(client, 0x07, ((u8)ctrl->value) & 0x3f); | ||
97 | cs5345_write(client, 0x08, ((u8)ctrl->value) & 0x3f); | ||
98 | break; | ||
99 | |||
100 | #ifdef CONFIG_VIDEO_ADV_DEBUG | ||
101 | case VIDIOC_DBG_G_REGISTER: | ||
102 | case VIDIOC_DBG_S_REGISTER: | ||
103 | { | ||
104 | struct v4l2_register *reg = arg; | ||
105 | |||
106 | if (!v4l2_chip_match_i2c_client(client, | ||
107 | reg->match_type, reg->match_chip)) | ||
108 | return -EINVAL; | ||
109 | if (!capable(CAP_SYS_ADMIN)) | ||
110 | return -EPERM; | ||
111 | if (cmd == VIDIOC_DBG_G_REGISTER) | ||
112 | reg->val = cs5345_read(client, reg->reg & 0x1f); | ||
113 | else | ||
114 | cs5345_write(client, reg->reg & 0x1f, reg->val & 0xff); | ||
115 | break; | ||
116 | } | 62 | } |
117 | #endif | 63 | cs5345_write(sd, 0x09, route->input & 0xf); |
64 | cs5345_write(sd, 0x05, route->input & 0xf0); | ||
65 | return 0; | ||
66 | } | ||
118 | 67 | ||
119 | case VIDIOC_G_CHIP_IDENT: | 68 | static int cs5345_g_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl) |
120 | return v4l2_chip_ident_i2c_client(client, | 69 | { |
121 | arg, V4L2_IDENT_CS5345, 0); | 70 | if (ctrl->id == V4L2_CID_AUDIO_MUTE) { |
122 | 71 | ctrl->value = (cs5345_read(sd, 0x04) & 0x08) != 0; | |
123 | case VIDIOC_LOG_STATUS: | 72 | return 0; |
124 | { | 73 | } |
125 | u8 v = cs5345_read(client, 0x09) & 7; | 74 | if (ctrl->id != V4L2_CID_AUDIO_VOLUME) |
126 | u8 m = cs5345_read(client, 0x04); | ||
127 | int vol = cs5345_read(client, 0x08) & 0x3f; | ||
128 | |||
129 | v4l_info(client, "Input: %d%s\n", v, | ||
130 | (m & 0x80) ? " (muted)" : ""); | ||
131 | if (vol >= 32) | ||
132 | vol = vol - 64; | ||
133 | v4l_info(client, "Volume: %d dB\n", vol); | ||
134 | break; | ||
135 | } | ||
136 | |||
137 | default: | ||
138 | return -EINVAL; | 75 | return -EINVAL; |
76 | ctrl->value = cs5345_read(sd, 0x07) & 0x3f; | ||
77 | if (ctrl->value >= 32) | ||
78 | ctrl->value = ctrl->value - 64; | ||
79 | return 0; | ||
80 | } | ||
81 | |||
82 | static int cs5345_s_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl) | ||
83 | { | ||
84 | if (ctrl->id == V4L2_CID_AUDIO_MUTE) { | ||
85 | cs5345_write(sd, 0x04, ctrl->value ? 0x80 : 0); | ||
86 | return 0; | ||
139 | } | 87 | } |
88 | if (ctrl->id != V4L2_CID_AUDIO_VOLUME) | ||
89 | return -EINVAL; | ||
90 | if (ctrl->value > 24 || ctrl->value < -24) | ||
91 | return -EINVAL; | ||
92 | cs5345_write(sd, 0x07, ((u8)ctrl->value) & 0x3f); | ||
93 | cs5345_write(sd, 0x08, ((u8)ctrl->value) & 0x3f); | ||
94 | return 0; | ||
95 | } | ||
96 | |||
97 | #ifdef CONFIG_VIDEO_ADV_DEBUG | ||
98 | static int cs5345_g_register(struct v4l2_subdev *sd, struct v4l2_register *reg) | ||
99 | { | ||
100 | struct i2c_client *client = v4l2_get_subdevdata(sd); | ||
101 | |||
102 | if (!v4l2_chip_match_i2c_client(client, | ||
103 | reg->match_type, reg->match_chip)) | ||
104 | return -EINVAL; | ||
105 | if (!capable(CAP_SYS_ADMIN)) | ||
106 | return -EPERM; | ||
107 | reg->val = cs5345_read(sd, reg->reg & 0x1f); | ||
108 | return 0; | ||
109 | } | ||
110 | |||
111 | static int cs5345_s_register(struct v4l2_subdev *sd, struct v4l2_register *reg) | ||
112 | { | ||
113 | struct i2c_client *client = v4l2_get_subdevdata(sd); | ||
114 | |||
115 | if (!v4l2_chip_match_i2c_client(client, | ||
116 | reg->match_type, reg->match_chip)) | ||
117 | return -EINVAL; | ||
118 | if (!capable(CAP_SYS_ADMIN)) | ||
119 | return -EPERM; | ||
120 | cs5345_write(sd, reg->reg & 0x1f, reg->val & 0xff); | ||
140 | return 0; | 121 | return 0; |
141 | } | 122 | } |
123 | #endif | ||
124 | |||
125 | static int cs5345_g_chip_ident(struct v4l2_subdev *sd, struct v4l2_chip_ident *chip) | ||
126 | { | ||
127 | struct i2c_client *client = v4l2_get_subdevdata(sd); | ||
128 | |||
129 | return v4l2_chip_ident_i2c_client(client, chip, V4L2_IDENT_CS5345, 0); | ||
130 | } | ||
131 | |||
132 | static int cs5345_log_status(struct v4l2_subdev *sd) | ||
133 | { | ||
134 | u8 v = cs5345_read(sd, 0x09) & 7; | ||
135 | u8 m = cs5345_read(sd, 0x04); | ||
136 | int vol = cs5345_read(sd, 0x08) & 0x3f; | ||
137 | |||
138 | v4l2_info(sd, "Input: %d%s\n", v, | ||
139 | (m & 0x80) ? " (muted)" : ""); | ||
140 | if (vol >= 32) | ||
141 | vol = vol - 64; | ||
142 | v4l2_info(sd, "Volume: %d dB\n", vol); | ||
143 | return 0; | ||
144 | } | ||
145 | |||
146 | static int cs5345_command(struct i2c_client *client, unsigned cmd, void *arg) | ||
147 | { | ||
148 | return v4l2_subdev_command(i2c_get_clientdata(client), cmd, arg); | ||
149 | } | ||
150 | |||
151 | /* ----------------------------------------------------------------------- */ | ||
152 | |||
153 | static const struct v4l2_subdev_core_ops cs5345_core_ops = { | ||
154 | .log_status = cs5345_log_status, | ||
155 | .g_chip_ident = cs5345_g_chip_ident, | ||
156 | .g_ctrl = cs5345_g_ctrl, | ||
157 | .s_ctrl = cs5345_s_ctrl, | ||
158 | #ifdef CONFIG_VIDEO_ADV_DEBUG | ||
159 | .g_register = cs5345_g_register, | ||
160 | .s_register = cs5345_s_register, | ||
161 | #endif | ||
162 | }; | ||
163 | |||
164 | static const struct v4l2_subdev_audio_ops cs5345_audio_ops = { | ||
165 | .s_routing = cs5345_s_routing, | ||
166 | }; | ||
167 | |||
168 | static const struct v4l2_subdev_ops cs5345_ops = { | ||
169 | .core = &cs5345_core_ops, | ||
170 | .audio = &cs5345_audio_ops, | ||
171 | }; | ||
142 | 172 | ||
143 | /* ----------------------------------------------------------------------- */ | 173 | /* ----------------------------------------------------------------------- */ |
144 | 174 | ||
145 | static int cs5345_probe(struct i2c_client *client, | 175 | static int cs5345_probe(struct i2c_client *client, |
146 | const struct i2c_device_id *id) | 176 | const struct i2c_device_id *id) |
147 | { | 177 | { |
178 | struct v4l2_subdev *sd; | ||
179 | |||
148 | /* Check if the adapter supports the needed features */ | 180 | /* Check if the adapter supports the needed features */ |
149 | if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA)) | 181 | if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA)) |
150 | return -EIO; | 182 | return -EIO; |
@@ -152,9 +184,25 @@ static int cs5345_probe(struct i2c_client *client, | |||
152 | v4l_info(client, "chip found @ 0x%x (%s)\n", | 184 | v4l_info(client, "chip found @ 0x%x (%s)\n", |
153 | client->addr << 1, client->adapter->name); | 185 | client->addr << 1, client->adapter->name); |
154 | 186 | ||
155 | cs5345_write(client, 0x02, 0x00); | 187 | sd = kzalloc(sizeof(struct v4l2_subdev), GFP_KERNEL); |
156 | cs5345_write(client, 0x04, 0x01); | 188 | if (sd == NULL) |
157 | cs5345_write(client, 0x09, 0x01); | 189 | return -ENOMEM; |
190 | v4l2_i2c_subdev_init(sd, client, &cs5345_ops); | ||
191 | |||
192 | cs5345_write(sd, 0x02, 0x00); | ||
193 | cs5345_write(sd, 0x04, 0x01); | ||
194 | cs5345_write(sd, 0x09, 0x01); | ||
195 | return 0; | ||
196 | } | ||
197 | |||
198 | /* ----------------------------------------------------------------------- */ | ||
199 | |||
200 | static int cs5345_remove(struct i2c_client *client) | ||
201 | { | ||
202 | struct v4l2_subdev *sd = i2c_get_clientdata(client); | ||
203 | |||
204 | v4l2_device_unregister_subdev(sd); | ||
205 | kfree(sd); | ||
158 | return 0; | 206 | return 0; |
159 | } | 207 | } |
160 | 208 | ||
@@ -171,5 +219,6 @@ static struct v4l2_i2c_driver_data v4l2_i2c_data = { | |||
171 | .driverid = I2C_DRIVERID_CS5345, | 219 | .driverid = I2C_DRIVERID_CS5345, |
172 | .command = cs5345_command, | 220 | .command = cs5345_command, |
173 | .probe = cs5345_probe, | 221 | .probe = cs5345_probe, |
222 | .remove = cs5345_remove, | ||
174 | .id_table = cs5345_id, | 223 | .id_table = cs5345_id, |
175 | }; | 224 | }; |