blob: 03e80278dc10b03b776ed1334465e84142d74421 [file] [log] [blame]
Hans Verkuil6fb377f2007-12-18 19:40:44 -03001/*
2 * cs5345 Cirrus Logic 24-bit, 192 kHz Stereo Audio ADC
3 * Copyright (C) 2007 Hans Verkuil
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.
Hans Verkuil6fb377f2007-12-18 19:40:44 -030014 */
15
16
Hans Verkuil6fb377f2007-12-18 19:40:44 -030017#include <linux/module.h>
18#include <linux/kernel.h>
19#include <linux/i2c.h>
20#include <linux/videodev2.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Hans Verkuilb3ee7e22008-12-19 10:34:22 -030022#include <media/v4l2-device.h>
Hans Verkuil34a078d2010-12-12 07:53:28 -030023#include <media/v4l2-ctrls.h>
Hans Verkuil6fb377f2007-12-18 19:40:44 -030024
25MODULE_DESCRIPTION("i2c device driver for cs5345 Audio ADC");
26MODULE_AUTHOR("Hans Verkuil");
27MODULE_LICENSE("GPL");
28
Rusty Russell90ab5ee2012-01-13 09:32:20 +103029static bool debug;
Hans Verkuil6fb377f2007-12-18 19:40:44 -030030
31module_param(debug, bool, 0644);
32
Niels de Vos61a2d072008-07-31 00:07:23 -070033MODULE_PARM_DESC(debug, "Debugging messages, 0=Off (default), 1=On");
Hans Verkuil6fb377f2007-12-18 19:40:44 -030034
Hans Verkuil34a078d2010-12-12 07:53:28 -030035struct cs5345_state {
36 struct v4l2_subdev sd;
37 struct v4l2_ctrl_handler hdl;
38};
39
40static inline struct cs5345_state *to_state(struct v4l2_subdev *sd)
41{
42 return container_of(sd, struct cs5345_state, sd);
43}
44
45static inline struct v4l2_subdev *to_sd(struct v4l2_ctrl *ctrl)
46{
47 return &container_of(ctrl->handler, struct cs5345_state, hdl)->sd;
48}
Hans Verkuil6fb377f2007-12-18 19:40:44 -030049
50/* ----------------------------------------------------------------------- */
51
Hans Verkuilb3ee7e22008-12-19 10:34:22 -030052static inline int cs5345_write(struct v4l2_subdev *sd, u8 reg, u8 value)
Hans Verkuil6fb377f2007-12-18 19:40:44 -030053{
Hans Verkuilb3ee7e22008-12-19 10:34:22 -030054 struct i2c_client *client = v4l2_get_subdevdata(sd);
55
Hans Verkuil6fb377f2007-12-18 19:40:44 -030056 return i2c_smbus_write_byte_data(client, reg, value);
57}
58
Hans Verkuilb3ee7e22008-12-19 10:34:22 -030059static inline int cs5345_read(struct v4l2_subdev *sd, u8 reg)
Hans Verkuil6fb377f2007-12-18 19:40:44 -030060{
Hans Verkuilb3ee7e22008-12-19 10:34:22 -030061 struct i2c_client *client = v4l2_get_subdevdata(sd);
62
Hans Verkuil6fb377f2007-12-18 19:40:44 -030063 return i2c_smbus_read_byte_data(client, reg);
64}
65
Hans Verkuil5325b422009-04-02 11:26:22 -030066static int cs5345_s_routing(struct v4l2_subdev *sd,
67 u32 input, u32 output, u32 config)
Hans Verkuilb3ee7e22008-12-19 10:34:22 -030068{
Hans Verkuil5325b422009-04-02 11:26:22 -030069 if ((input & 0xf) > 6) {
70 v4l2_err(sd, "Invalid input %d.\n", input);
Hans Verkuilb3ee7e22008-12-19 10:34:22 -030071 return -EINVAL;
72 }
Hans Verkuil5325b422009-04-02 11:26:22 -030073 cs5345_write(sd, 0x09, input & 0xf);
74 cs5345_write(sd, 0x05, input & 0xf0);
Hans Verkuilb3ee7e22008-12-19 10:34:22 -030075 return 0;
76}
77
Hans Verkuil34a078d2010-12-12 07:53:28 -030078static int cs5345_s_ctrl(struct v4l2_ctrl *ctrl)
Hans Verkuilb3ee7e22008-12-19 10:34:22 -030079{
Hans Verkuil34a078d2010-12-12 07:53:28 -030080 struct v4l2_subdev *sd = to_sd(ctrl);
Hans Verkuilb3ee7e22008-12-19 10:34:22 -030081
Hans Verkuil34a078d2010-12-12 07:53:28 -030082 switch (ctrl->id) {
83 case V4L2_CID_AUDIO_MUTE:
84 cs5345_write(sd, 0x04, ctrl->val ? 0x80 : 0);
85 return 0;
86 case V4L2_CID_AUDIO_VOLUME:
87 cs5345_write(sd, 0x07, ((u8)ctrl->val) & 0x3f);
88 cs5345_write(sd, 0x08, ((u8)ctrl->val) & 0x3f);
Hans Verkuilb3ee7e22008-12-19 10:34:22 -030089 return 0;
90 }
Hans Verkuil34a078d2010-12-12 07:53:28 -030091 return -EINVAL;
Hans Verkuilb3ee7e22008-12-19 10:34:22 -030092}
93
94#ifdef CONFIG_VIDEO_ADV_DEBUG
Hans Verkuilaecde8b52008-12-30 07:14:19 -030095static int cs5345_g_register(struct v4l2_subdev *sd, struct v4l2_dbg_register *reg)
Hans Verkuilb3ee7e22008-12-19 10:34:22 -030096{
Hans Verkuilaecde8b52008-12-30 07:14:19 -030097 reg->size = 1;
Hans Verkuilb3ee7e22008-12-19 10:34:22 -030098 reg->val = cs5345_read(sd, reg->reg & 0x1f);
99 return 0;
100}
101
Hans Verkuil977ba3b12013-03-24 08:28:46 -0300102static int cs5345_s_register(struct v4l2_subdev *sd, const struct v4l2_dbg_register *reg)
Hans Verkuilb3ee7e22008-12-19 10:34:22 -0300103{
Hans Verkuilb3ee7e22008-12-19 10:34:22 -0300104 cs5345_write(sd, reg->reg & 0x1f, reg->val & 0xff);
105 return 0;
106}
107#endif
108
Hans Verkuilb3ee7e22008-12-19 10:34:22 -0300109static int cs5345_log_status(struct v4l2_subdev *sd)
110{
111 u8 v = cs5345_read(sd, 0x09) & 7;
112 u8 m = cs5345_read(sd, 0x04);
113 int vol = cs5345_read(sd, 0x08) & 0x3f;
114
115 v4l2_info(sd, "Input: %d%s\n", v,
116 (m & 0x80) ? " (muted)" : "");
117 if (vol >= 32)
118 vol = vol - 64;
119 v4l2_info(sd, "Volume: %d dB\n", vol);
120 return 0;
121}
122
Hans Verkuil6fb377f2007-12-18 19:40:44 -0300123/* ----------------------------------------------------------------------- */
124
Hans Verkuil34a078d2010-12-12 07:53:28 -0300125static const struct v4l2_ctrl_ops cs5345_ctrl_ops = {
126 .s_ctrl = cs5345_s_ctrl,
127};
128
Hans Verkuilb3ee7e22008-12-19 10:34:22 -0300129static const struct v4l2_subdev_core_ops cs5345_core_ops = {
130 .log_status = cs5345_log_status,
Hans Verkuilb3ee7e22008-12-19 10:34:22 -0300131#ifdef CONFIG_VIDEO_ADV_DEBUG
132 .g_register = cs5345_g_register,
133 .s_register = cs5345_s_register,
134#endif
135};
136
137static const struct v4l2_subdev_audio_ops cs5345_audio_ops = {
138 .s_routing = cs5345_s_routing,
139};
140
141static const struct v4l2_subdev_ops cs5345_ops = {
142 .core = &cs5345_core_ops,
143 .audio = &cs5345_audio_ops,
144};
145
146/* ----------------------------------------------------------------------- */
147
Jean Delvared2653e92008-04-29 23:11:39 +0200148static int cs5345_probe(struct i2c_client *client,
149 const struct i2c_device_id *id)
Hans Verkuil6fb377f2007-12-18 19:40:44 -0300150{
Hans Verkuil34a078d2010-12-12 07:53:28 -0300151 struct cs5345_state *state;
Hans Verkuilb3ee7e22008-12-19 10:34:22 -0300152 struct v4l2_subdev *sd;
153
Hans Verkuil6fb377f2007-12-18 19:40:44 -0300154 /* Check if the adapter supports the needed features */
155 if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA))
156 return -EIO;
157
158 v4l_info(client, "chip found @ 0x%x (%s)\n",
159 client->addr << 1, client->adapter->name);
160
Laurent Pinchartc02b2112013-05-02 08:29:43 -0300161 state = devm_kzalloc(&client->dev, sizeof(*state), GFP_KERNEL);
Hans Verkuil34a078d2010-12-12 07:53:28 -0300162 if (state == NULL)
Hans Verkuilb3ee7e22008-12-19 10:34:22 -0300163 return -ENOMEM;
Hans Verkuil34a078d2010-12-12 07:53:28 -0300164 sd = &state->sd;
Hans Verkuilb3ee7e22008-12-19 10:34:22 -0300165 v4l2_i2c_subdev_init(sd, client, &cs5345_ops);
166
Hans Verkuil34a078d2010-12-12 07:53:28 -0300167 v4l2_ctrl_handler_init(&state->hdl, 2);
168 v4l2_ctrl_new_std(&state->hdl, &cs5345_ctrl_ops,
169 V4L2_CID_AUDIO_MUTE, 0, 1, 1, 0);
170 v4l2_ctrl_new_std(&state->hdl, &cs5345_ctrl_ops,
171 V4L2_CID_AUDIO_VOLUME, -24, 24, 1, 0);
172 sd->ctrl_handler = &state->hdl;
173 if (state->hdl.error) {
174 int err = state->hdl.error;
175
176 v4l2_ctrl_handler_free(&state->hdl);
Hans Verkuil34a078d2010-12-12 07:53:28 -0300177 return err;
178 }
179 /* set volume/mute */
180 v4l2_ctrl_handler_setup(&state->hdl);
181
Hans Verkuilb3ee7e22008-12-19 10:34:22 -0300182 cs5345_write(sd, 0x02, 0x00);
183 cs5345_write(sd, 0x04, 0x01);
184 cs5345_write(sd, 0x09, 0x01);
185 return 0;
186}
187
188/* ----------------------------------------------------------------------- */
189
190static int cs5345_remove(struct i2c_client *client)
191{
192 struct v4l2_subdev *sd = i2c_get_clientdata(client);
Hans Verkuil34a078d2010-12-12 07:53:28 -0300193 struct cs5345_state *state = to_state(sd);
Hans Verkuilb3ee7e22008-12-19 10:34:22 -0300194
195 v4l2_device_unregister_subdev(sd);
Hans Verkuil34a078d2010-12-12 07:53:28 -0300196 v4l2_ctrl_handler_free(&state->hdl);
Hans Verkuil6fb377f2007-12-18 19:40:44 -0300197 return 0;
198}
199
200/* ----------------------------------------------------------------------- */
201
Jean Delvareaf294862008-05-18 20:49:40 +0200202static const struct i2c_device_id cs5345_id[] = {
203 { "cs5345", 0 },
204 { }
205};
206MODULE_DEVICE_TABLE(i2c, cs5345_id);
207
Hans Verkuil51e86842010-09-15 15:00:07 -0300208static struct i2c_driver cs5345_driver = {
209 .driver = {
Hans Verkuil51e86842010-09-15 15:00:07 -0300210 .name = "cs5345",
211 },
212 .probe = cs5345_probe,
213 .remove = cs5345_remove,
214 .id_table = cs5345_id,
Hans Verkuil6fb377f2007-12-18 19:40:44 -0300215};
Hans Verkuil51e86842010-09-15 15:00:07 -0300216
Axel Linc6e8d862012-02-12 06:56:32 -0300217module_i2c_driver(cs5345_driver);