Merge tag 'block-5.11-2021-01-10' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / drivers / media / i2c / wm8739.c
blobed533834db5474f2d244f00aa595fd27c346bd42
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * wm8739
5 * Copyright (C) 2005 T. Adachi <tadachi@tadachi-net.com>
7 * Copyright (C) 2005 Hans Verkuil <hverkuil@xs4all.nl>
8 * - Cleanup
9 */
11 #include <linux/module.h>
12 #include <linux/types.h>
13 #include <linux/slab.h>
14 #include <linux/ioctl.h>
15 #include <linux/uaccess.h>
16 #include <linux/i2c.h>
17 #include <linux/videodev2.h>
18 #include <media/v4l2-device.h>
19 #include <media/v4l2-ctrls.h>
21 MODULE_DESCRIPTION("wm8739 driver");
22 MODULE_AUTHOR("T. Adachi, Hans Verkuil");
23 MODULE_LICENSE("GPL");
25 static int debug;
27 module_param(debug, int, 0644);
29 MODULE_PARM_DESC(debug, "Debug level (0-1)");
32 /* ------------------------------------------------------------------------ */
34 enum {
35 R0 = 0, R1,
36 R5 = 5, R6, R7, R8, R9, R15 = 15,
37 TOT_REGS
40 struct wm8739_state {
41 struct v4l2_subdev sd;
42 struct v4l2_ctrl_handler hdl;
43 struct {
44 /* audio cluster */
45 struct v4l2_ctrl *volume;
46 struct v4l2_ctrl *mute;
47 struct v4l2_ctrl *balance;
49 u32 clock_freq;
52 static inline struct wm8739_state *to_state(struct v4l2_subdev *sd)
54 return container_of(sd, struct wm8739_state, sd);
57 static inline struct v4l2_subdev *to_sd(struct v4l2_ctrl *ctrl)
59 return &container_of(ctrl->handler, struct wm8739_state, hdl)->sd;
62 /* ------------------------------------------------------------------------ */
64 static int wm8739_write(struct v4l2_subdev *sd, int reg, u16 val)
66 struct i2c_client *client = v4l2_get_subdevdata(sd);
67 int i;
69 if (reg < 0 || reg >= TOT_REGS) {
70 v4l2_err(sd, "Invalid register R%d\n", reg);
71 return -1;
74 v4l2_dbg(1, debug, sd, "write: %02x %02x\n", reg, val);
76 for (i = 0; i < 3; i++)
77 if (i2c_smbus_write_byte_data(client,
78 (reg << 1) | (val >> 8), val & 0xff) == 0)
79 return 0;
80 v4l2_err(sd, "I2C: cannot write %03x to register R%d\n", val, reg);
81 return -1;
84 static int wm8739_s_ctrl(struct v4l2_ctrl *ctrl)
86 struct v4l2_subdev *sd = to_sd(ctrl);
87 struct wm8739_state *state = to_state(sd);
88 unsigned int work_l, work_r;
89 u8 vol_l; /* +12dB to -34.5dB 1.5dB step (5bit) def:0dB */
90 u8 vol_r; /* +12dB to -34.5dB 1.5dB step (5bit) def:0dB */
91 u16 mute;
93 switch (ctrl->id) {
94 case V4L2_CID_AUDIO_VOLUME:
95 break;
97 default:
98 return -EINVAL;
101 /* normalize ( 65535 to 0 -> 31 to 0 (12dB to -34.5dB) ) */
102 work_l = (min(65536 - state->balance->val, 32768) * state->volume->val) / 32768;
103 work_r = (min(state->balance->val, 32768) * state->volume->val) / 32768;
105 vol_l = (long)work_l * 31 / 65535;
106 vol_r = (long)work_r * 31 / 65535;
108 /* set audio volume etc. */
109 mute = state->mute->val ? 0x80 : 0;
111 /* Volume setting: bits 0-4, 0x1f = 12 dB, 0x00 = -34.5 dB
112 * Default setting: 0x17 = 0 dB
114 wm8739_write(sd, R0, (vol_l & 0x1f) | mute);
115 wm8739_write(sd, R1, (vol_r & 0x1f) | mute);
116 return 0;
119 /* ------------------------------------------------------------------------ */
121 static int wm8739_s_clock_freq(struct v4l2_subdev *sd, u32 audiofreq)
123 struct wm8739_state *state = to_state(sd);
125 state->clock_freq = audiofreq;
126 /* de-activate */
127 wm8739_write(sd, R9, 0x000);
128 switch (audiofreq) {
129 case 44100:
130 /* 256fps, fs=44.1k */
131 wm8739_write(sd, R8, 0x020);
132 break;
133 case 48000:
134 /* 256fps, fs=48k */
135 wm8739_write(sd, R8, 0x000);
136 break;
137 case 32000:
138 /* 256fps, fs=32k */
139 wm8739_write(sd, R8, 0x018);
140 break;
141 default:
142 break;
144 /* activate */
145 wm8739_write(sd, R9, 0x001);
146 return 0;
149 static int wm8739_log_status(struct v4l2_subdev *sd)
151 struct wm8739_state *state = to_state(sd);
153 v4l2_info(sd, "Frequency: %u Hz\n", state->clock_freq);
154 v4l2_ctrl_handler_log_status(&state->hdl, sd->name);
155 return 0;
158 /* ----------------------------------------------------------------------- */
160 static const struct v4l2_ctrl_ops wm8739_ctrl_ops = {
161 .s_ctrl = wm8739_s_ctrl,
164 static const struct v4l2_subdev_core_ops wm8739_core_ops = {
165 .log_status = wm8739_log_status,
168 static const struct v4l2_subdev_audio_ops wm8739_audio_ops = {
169 .s_clock_freq = wm8739_s_clock_freq,
172 static const struct v4l2_subdev_ops wm8739_ops = {
173 .core = &wm8739_core_ops,
174 .audio = &wm8739_audio_ops,
177 /* ------------------------------------------------------------------------ */
179 /* i2c implementation */
181 static int wm8739_probe(struct i2c_client *client,
182 const struct i2c_device_id *id)
184 struct wm8739_state *state;
185 struct v4l2_subdev *sd;
187 /* Check if the adapter supports the needed features */
188 if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA))
189 return -EIO;
191 v4l_info(client, "chip found @ 0x%x (%s)\n",
192 client->addr << 1, client->adapter->name);
194 state = devm_kzalloc(&client->dev, sizeof(*state), GFP_KERNEL);
195 if (state == NULL)
196 return -ENOMEM;
197 sd = &state->sd;
198 v4l2_i2c_subdev_init(sd, client, &wm8739_ops);
199 v4l2_ctrl_handler_init(&state->hdl, 2);
200 state->volume = v4l2_ctrl_new_std(&state->hdl, &wm8739_ctrl_ops,
201 V4L2_CID_AUDIO_VOLUME, 0, 65535, 65535 / 100, 50736);
202 state->mute = v4l2_ctrl_new_std(&state->hdl, &wm8739_ctrl_ops,
203 V4L2_CID_AUDIO_MUTE, 0, 1, 1, 0);
204 state->balance = v4l2_ctrl_new_std(&state->hdl, &wm8739_ctrl_ops,
205 V4L2_CID_AUDIO_BALANCE, 0, 65535, 65535 / 100, 32768);
206 sd->ctrl_handler = &state->hdl;
207 if (state->hdl.error) {
208 int err = state->hdl.error;
210 v4l2_ctrl_handler_free(&state->hdl);
211 return err;
213 v4l2_ctrl_cluster(3, &state->volume);
215 state->clock_freq = 48000;
217 /* Initialize wm8739 */
219 /* reset */
220 wm8739_write(sd, R15, 0x00);
221 /* filter setting, high path, offet clear */
222 wm8739_write(sd, R5, 0x000);
223 /* ADC, OSC, Power Off mode Disable */
224 wm8739_write(sd, R6, 0x000);
225 /* Digital Audio interface format:
226 Enable Master mode, 24 bit, MSB first/left justified */
227 wm8739_write(sd, R7, 0x049);
228 /* sampling control: normal, 256fs, 48KHz sampling rate */
229 wm8739_write(sd, R8, 0x000);
230 /* activate */
231 wm8739_write(sd, R9, 0x001);
232 /* set volume/mute */
233 v4l2_ctrl_handler_setup(&state->hdl);
234 return 0;
237 static int wm8739_remove(struct i2c_client *client)
239 struct v4l2_subdev *sd = i2c_get_clientdata(client);
240 struct wm8739_state *state = to_state(sd);
242 v4l2_device_unregister_subdev(sd);
243 v4l2_ctrl_handler_free(&state->hdl);
244 return 0;
247 static const struct i2c_device_id wm8739_id[] = {
248 { "wm8739", 0 },
251 MODULE_DEVICE_TABLE(i2c, wm8739_id);
253 static struct i2c_driver wm8739_driver = {
254 .driver = {
255 .name = "wm8739",
257 .probe = wm8739_probe,
258 .remove = wm8739_remove,
259 .id_table = wm8739_id,
262 module_i2c_driver(wm8739_driver);