2 * cs5345 Cirrus Logic 24-bit, 192 kHz Stereo Audio ADC
3 * Copyright (C) 2007 Hans Verkuil
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.
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.
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., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include <linux/version.h>
22 #include <linux/module.h>
23 #include <linux/kernel.h>
24 #include <linux/i2c.h>
25 #include <linux/videodev2.h>
26 #include <media/v4l2-device.h>
27 #include <media/v4l2-chip-ident.h>
28 #include <media/v4l2-i2c-drv.h>
30 MODULE_DESCRIPTION("i2c device driver for cs5345 Audio ADC");
31 MODULE_AUTHOR("Hans Verkuil");
32 MODULE_LICENSE("GPL");
36 module_param(debug, bool, 0644);
38 MODULE_PARM_DESC(debug, "Debugging messages, 0=Off (default), 1=On");
41 /* ----------------------------------------------------------------------- */
43 static inline int cs5345_write(struct v4l2_subdev *sd, u8 reg, u8 value)
45 struct i2c_client *client = v4l2_get_subdevdata(sd);
47 return i2c_smbus_write_byte_data(client, reg, value);
50 static inline int cs5345_read(struct v4l2_subdev *sd, u8 reg)
52 struct i2c_client *client = v4l2_get_subdevdata(sd);
54 return i2c_smbus_read_byte_data(client, reg);
57 static int cs5345_s_routing(struct v4l2_subdev *sd, const struct v4l2_routing *route)
59 if ((route->input & 0xf) > 6) {
60 v4l2_err(sd, "Invalid input %d.\n", route->input);
63 cs5345_write(sd, 0x09, route->input & 0xf);
64 cs5345_write(sd, 0x05, route->input & 0xf0);
68 static int cs5345_g_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl)
70 if (ctrl->id == V4L2_CID_AUDIO_MUTE) {
71 ctrl->value = (cs5345_read(sd, 0x04) & 0x08) != 0;
74 if (ctrl->id != V4L2_CID_AUDIO_VOLUME)
76 ctrl->value = cs5345_read(sd, 0x07) & 0x3f;
77 if (ctrl->value >= 32)
78 ctrl->value = ctrl->value - 64;
82 static int cs5345_s_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl)
84 if (ctrl->id == V4L2_CID_AUDIO_MUTE) {
85 cs5345_write(sd, 0x04, ctrl->value ? 0x80 : 0);
88 if (ctrl->id != V4L2_CID_AUDIO_VOLUME)
90 if (ctrl->value > 24 || ctrl->value < -24)
92 cs5345_write(sd, 0x07, ((u8)ctrl->value) & 0x3f);
93 cs5345_write(sd, 0x08, ((u8)ctrl->value) & 0x3f);
97 #ifdef CONFIG_VIDEO_ADV_DEBUG
98 static int cs5345_g_register(struct v4l2_subdev *sd, struct v4l2_register *reg)
100 struct i2c_client *client = v4l2_get_subdevdata(sd);
102 if (!v4l2_chip_match_i2c_client(client,
103 reg->match_type, reg->match_chip))
105 if (!capable(CAP_SYS_ADMIN))
107 reg->val = cs5345_read(sd, reg->reg & 0x1f);
111 static int cs5345_s_register(struct v4l2_subdev *sd, struct v4l2_register *reg)
113 struct i2c_client *client = v4l2_get_subdevdata(sd);
115 if (!v4l2_chip_match_i2c_client(client,
116 reg->match_type, reg->match_chip))
118 if (!capable(CAP_SYS_ADMIN))
120 cs5345_write(sd, reg->reg & 0x1f, reg->val & 0xff);
125 static int cs5345_g_chip_ident(struct v4l2_subdev *sd, struct v4l2_chip_ident *chip)
127 struct i2c_client *client = v4l2_get_subdevdata(sd);
129 return v4l2_chip_ident_i2c_client(client, chip, V4L2_IDENT_CS5345, 0);
132 static int cs5345_log_status(struct v4l2_subdev *sd)
134 u8 v = cs5345_read(sd, 0x09) & 7;
135 u8 m = cs5345_read(sd, 0x04);
136 int vol = cs5345_read(sd, 0x08) & 0x3f;
138 v4l2_info(sd, "Input: %d%s\n", v,
139 (m & 0x80) ? " (muted)" : "");
142 v4l2_info(sd, "Volume: %d dB\n", vol);
146 static int cs5345_command(struct i2c_client *client, unsigned cmd, void *arg)
148 return v4l2_subdev_command(i2c_get_clientdata(client), cmd, arg);
151 /* ----------------------------------------------------------------------- */
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,
164 static const struct v4l2_subdev_audio_ops cs5345_audio_ops = {
165 .s_routing = cs5345_s_routing,
168 static const struct v4l2_subdev_ops cs5345_ops = {
169 .core = &cs5345_core_ops,
170 .audio = &cs5345_audio_ops,
173 /* ----------------------------------------------------------------------- */
175 static int cs5345_probe(struct i2c_client *client,
176 const struct i2c_device_id *id)
178 struct v4l2_subdev *sd;
180 /* Check if the adapter supports the needed features */
181 if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA))
184 v4l_info(client, "chip found @ 0x%x (%s)\n",
185 client->addr << 1, client->adapter->name);
187 sd = kzalloc(sizeof(struct v4l2_subdev), GFP_KERNEL);
190 v4l2_i2c_subdev_init(sd, client, &cs5345_ops);
192 cs5345_write(sd, 0x02, 0x00);
193 cs5345_write(sd, 0x04, 0x01);
194 cs5345_write(sd, 0x09, 0x01);
198 /* ----------------------------------------------------------------------- */
200 static int cs5345_remove(struct i2c_client *client)
202 struct v4l2_subdev *sd = i2c_get_clientdata(client);
204 v4l2_device_unregister_subdev(sd);
209 /* ----------------------------------------------------------------------- */
211 static const struct i2c_device_id cs5345_id[] = {
215 MODULE_DEVICE_TABLE(i2c, cs5345_id);
217 static struct v4l2_i2c_driver_data v4l2_i2c_data = {
219 .driverid = I2C_DRIVERID_CS5345,
220 .command = cs5345_command,
221 .probe = cs5345_probe,
222 .remove = cs5345_remove,
223 .id_table = cs5345_id,