2 * saa7706.c Philips SAA7706H Car Radio DSP driver
3 * Copyright (c) 2009 Intel Corporation
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 #include <linux/module.h>
20 #include <linux/init.h>
21 #include <linux/delay.h>
22 #include <linux/errno.h>
23 #include <linux/kernel.h>
24 #include <linux/interrupt.h>
25 #include <linux/i2c.h>
26 #include <linux/slab.h>
27 #include <media/v4l2-device.h>
28 #include <media/v4l2-ctrls.h>
30 #define DRIVER_NAME "saa7706h"
32 /* the I2C memory map looks like this
34 $1C00 - $FFFF Not Used
35 $2200 - $3FFF Reserved YRAM (DSP2) space
36 $2000 - $21FF YRAM (DSP2)
37 $1FF0 - $1FFF Hardware Registers
38 $1280 - $1FEF Reserved XRAM (DSP2) space
39 $1000 - $127F XRAM (DSP2)
41 $0A00 - $0FFE Reserved
42 $0980 - $09FF Reserved YRAM (DSP1) space
43 $0800 - $097F YRAM (DSP1)
44 $0200 - $07FF Not Used
45 $0180 - $01FF Reserved XRAM (DSP1) space
46 $0000 - $017F XRAM (DSP1)
49 #define SAA7706H_REG_CTRL 0x0fff
50 #define SAA7706H_CTRL_BYP_PLL 0x0001
51 #define SAA7706H_CTRL_PLL_DIV_MASK 0x003e
52 #define SAA7706H_CTRL_PLL3_62975MHZ 0x003e
53 #define SAA7706H_CTRL_DSP_TURBO 0x0040
54 #define SAA7706H_CTRL_PC_RESET_DSP1 0x0080
55 #define SAA7706H_CTRL_PC_RESET_DSP2 0x0100
56 #define SAA7706H_CTRL_DSP1_ROM_EN_MASK 0x0600
57 #define SAA7706H_CTRL_DSP1_FUNC_PROM 0x0000
58 #define SAA7706H_CTRL_DSP2_ROM_EN_MASK 0x1800
59 #define SAA7706H_CTRL_DSP2_FUNC_PROM 0x0000
60 #define SAA7706H_CTRL_DIG_SIL_INTERPOL 0x8000
62 #define SAA7706H_REG_EVALUATION 0x1ff0
63 #define SAA7706H_EVAL_DISABLE_CHARGE_PUMP 0x000001
64 #define SAA7706H_EVAL_DCS_CLOCK 0x000002
65 #define SAA7706H_EVAL_GNDRC1_ENABLE 0x000004
66 #define SAA7706H_EVAL_GNDRC2_ENABLE 0x000008
68 #define SAA7706H_REG_CL_GEN1 0x1ff3
69 #define SAA7706H_CL_GEN1_MIN_LOOPGAIN_MASK 0x00000f
70 #define SAA7706H_CL_GEN1_LOOPGAIN_MASK 0x0000f0
71 #define SAA7706H_CL_GEN1_COARSE_RATION 0xffff00
73 #define SAA7706H_REG_CL_GEN2 0x1ff4
74 #define SAA7706H_CL_GEN2_WSEDGE_FALLING 0x000001
75 #define SAA7706H_CL_GEN2_STOP_VCO 0x000002
76 #define SAA7706H_CL_GEN2_FRERUN 0x000004
77 #define SAA7706H_CL_GEN2_ADAPTIVE 0x000008
78 #define SAA7706H_CL_GEN2_FINE_RATIO_MASK 0x0ffff0
80 #define SAA7706H_REG_CL_GEN4 0x1ff6
81 #define SAA7706H_CL_GEN4_BYPASS_PLL1 0x001000
82 #define SAA7706H_CL_GEN4_PLL1_DIV_MASK 0x03e000
83 #define SAA7706H_CL_GEN4_DSP1_TURBO 0x040000
85 #define SAA7706H_REG_SEL 0x1ff7
86 #define SAA7706H_SEL_DSP2_SRCA_MASK 0x000007
87 #define SAA7706H_SEL_DSP2_FMTA_MASK 0x000031
88 #define SAA7706H_SEL_DSP2_SRCB_MASK 0x0001c0
89 #define SAA7706H_SEL_DSP2_FMTB_MASK 0x000e00
90 #define SAA7706H_SEL_DSP1_SRC_MASK 0x003000
91 #define SAA7706H_SEL_DSP1_FMT_MASK 0x01c003
92 #define SAA7706H_SEL_SPDIF2 0x020000
93 #define SAA7706H_SEL_HOST_IO_FMT_MASK 0x1c0000
94 #define SAA7706H_SEL_EN_HOST_IO 0x200000
96 #define SAA7706H_REG_IAC 0x1ff8
97 #define SAA7706H_REG_CLK_SET 0x1ff9
98 #define SAA7706H_REG_CLK_COEFF 0x1ffa
99 #define SAA7706H_REG_INPUT_SENS 0x1ffb
100 #define SAA7706H_INPUT_SENS_RDS_VOL_MASK 0x0003f
101 #define SAA7706H_INPUT_SENS_FM_VOL_MASK 0x00fc0
102 #define SAA7706H_INPUT_SENS_FM_MPX 0x01000
103 #define SAA7706H_INPUT_SENS_OFF_FILTER_A_EN 0x02000
104 #define SAA7706H_INPUT_SENS_OFF_FILTER_B_EN 0x04000
105 #define SAA7706H_REG_PHONE_NAV_AUDIO 0x1ffc
106 #define SAA7706H_REG_IO_CONF_DSP2 0x1ffd
107 #define SAA7706H_REG_STATUS_DSP2 0x1ffe
108 #define SAA7706H_REG_PC_DSP2 0x1fff
110 #define SAA7706H_DSP1_MOD0 0x0800
111 #define SAA7706H_DSP1_ROM_VER 0x097f
112 #define SAA7706H_DSP2_MPTR0 0x1000
114 #define SAA7706H_DSP1_MODPNTR 0x0000
116 #define SAA7706H_DSP2_XMEM_CONTLLCW 0x113e
117 #define SAA7706H_DSP2_XMEM_BUSAMP 0x114a
118 #define SAA7706H_DSP2_XMEM_FDACPNTR 0x11f9
119 #define SAA7706H_DSP2_XMEM_IIS1PNTR 0x11fb
121 #define SAA7706H_DSP2_YMEM_PVGA 0x212a
122 #define SAA7706H_DSP2_YMEM_PVAT1 0x212b
123 #define SAA7706H_DSP2_YMEM_PVAT 0x212c
124 #define SAA7706H_DSP2_YMEM_ROM_VER 0x21ff
126 #define SUPPORTED_DSP1_ROM_VER 0x667
128 struct saa7706h_state
{
129 struct v4l2_subdev sd
;
130 struct v4l2_ctrl_handler hdl
;
134 static inline struct saa7706h_state
*to_state(struct v4l2_subdev
*sd
)
136 return container_of(sd
, struct saa7706h_state
, sd
);
139 static int saa7706h_i2c_send(struct i2c_client
*client
, const u8
*data
, int len
)
141 int err
= i2c_master_send(client
, data
, len
);
144 return err
> 0 ? -EIO
: err
;
147 static int saa7706h_i2c_transfer(struct i2c_client
*client
,
148 struct i2c_msg
*msgs
, int num
)
150 int err
= i2c_transfer(client
->adapter
, msgs
, num
);
153 return err
> 0 ? -EIO
: err
;
156 static int saa7706h_set_reg24(struct v4l2_subdev
*sd
, u16 reg
, u32 val
)
158 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
162 buf
[pos
++] = reg
>> 8;
164 buf
[pos
++] = val
>> 16;
165 buf
[pos
++] = val
>> 8;
168 return saa7706h_i2c_send(client
, buf
, pos
);
171 static int saa7706h_set_reg24_err(struct v4l2_subdev
*sd
, u16 reg
, u32 val
,
174 return *err
? *err
: saa7706h_set_reg24(sd
, reg
, val
);
177 static int saa7706h_set_reg16(struct v4l2_subdev
*sd
, u16 reg
, u16 val
)
179 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
183 buf
[pos
++] = reg
>> 8;
185 buf
[pos
++] = val
>> 8;
188 return saa7706h_i2c_send(client
, buf
, pos
);
191 static int saa7706h_set_reg16_err(struct v4l2_subdev
*sd
, u16 reg
, u16 val
,
194 return *err
? *err
: saa7706h_set_reg16(sd
, reg
, val
);
197 static int saa7706h_get_reg16(struct v4l2_subdev
*sd
, u16 reg
)
199 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
202 u8 regaddr
[] = {reg
>> 8, reg
};
203 struct i2c_msg msg
[] = {
205 .addr
= client
->addr
,
206 .len
= sizeof(regaddr
),
210 .addr
= client
->addr
,
217 err
= saa7706h_i2c_transfer(client
, msg
, ARRAY_SIZE(msg
));
221 return buf
[0] << 8 | buf
[1];
224 static int saa7706h_unmute(struct v4l2_subdev
*sd
)
226 struct saa7706h_state
*state
= to_state(sd
);
229 err
= saa7706h_set_reg16_err(sd
, SAA7706H_REG_CTRL
,
230 SAA7706H_CTRL_PLL3_62975MHZ
| SAA7706H_CTRL_PC_RESET_DSP1
|
231 SAA7706H_CTRL_PC_RESET_DSP2
, &err
);
233 /* newer versions of the chip requires a small sleep after reset */
236 err
= saa7706h_set_reg16_err(sd
, SAA7706H_REG_CTRL
,
237 SAA7706H_CTRL_PLL3_62975MHZ
, &err
);
239 err
= saa7706h_set_reg24_err(sd
, SAA7706H_REG_EVALUATION
, 0, &err
);
241 err
= saa7706h_set_reg24_err(sd
, SAA7706H_REG_CL_GEN1
, 0x040022, &err
);
243 err
= saa7706h_set_reg24_err(sd
, SAA7706H_REG_CL_GEN2
,
244 SAA7706H_CL_GEN2_WSEDGE_FALLING
, &err
);
246 err
= saa7706h_set_reg24_err(sd
, SAA7706H_REG_CL_GEN4
, 0x024080, &err
);
248 err
= saa7706h_set_reg24_err(sd
, SAA7706H_REG_SEL
, 0x200080, &err
);
250 err
= saa7706h_set_reg24_err(sd
, SAA7706H_REG_IAC
, 0xf4caed, &err
);
252 err
= saa7706h_set_reg24_err(sd
, SAA7706H_REG_CLK_SET
, 0x124334, &err
);
254 err
= saa7706h_set_reg24_err(sd
, SAA7706H_REG_CLK_COEFF
, 0x004a1a,
257 err
= saa7706h_set_reg24_err(sd
, SAA7706H_REG_INPUT_SENS
, 0x0071c7,
260 err
= saa7706h_set_reg24_err(sd
, SAA7706H_REG_PHONE_NAV_AUDIO
,
263 err
= saa7706h_set_reg24_err(sd
, SAA7706H_REG_IO_CONF_DSP2
, 0x001ff8,
266 err
= saa7706h_set_reg24_err(sd
, SAA7706H_REG_STATUS_DSP2
, 0x080003,
269 err
= saa7706h_set_reg24_err(sd
, SAA7706H_REG_PC_DSP2
, 0x000004, &err
);
271 err
= saa7706h_set_reg16_err(sd
, SAA7706H_DSP1_MOD0
, 0x0c6c, &err
);
273 err
= saa7706h_set_reg24_err(sd
, SAA7706H_DSP2_MPTR0
, 0x000b4b, &err
);
275 err
= saa7706h_set_reg24_err(sd
, SAA7706H_DSP1_MODPNTR
, 0x000600, &err
);
277 err
= saa7706h_set_reg24_err(sd
, SAA7706H_DSP1_MODPNTR
, 0x0000c0, &err
);
279 err
= saa7706h_set_reg24_err(sd
, SAA7706H_DSP2_XMEM_CONTLLCW
, 0x000819,
282 err
= saa7706h_set_reg24_err(sd
, SAA7706H_DSP2_XMEM_CONTLLCW
, 0x00085a,
285 err
= saa7706h_set_reg24_err(sd
, SAA7706H_DSP2_XMEM_BUSAMP
, 0x7fffff,
288 err
= saa7706h_set_reg24_err(sd
, SAA7706H_DSP2_XMEM_FDACPNTR
, 0x2000cb,
291 err
= saa7706h_set_reg24_err(sd
, SAA7706H_DSP2_XMEM_IIS1PNTR
, 0x2000cb,
294 err
= saa7706h_set_reg16_err(sd
, SAA7706H_DSP2_YMEM_PVGA
, 0x0f80, &err
);
296 err
= saa7706h_set_reg16_err(sd
, SAA7706H_DSP2_YMEM_PVAT1
, 0x0800,
299 err
= saa7706h_set_reg16_err(sd
, SAA7706H_DSP2_YMEM_PVAT
, 0x0800, &err
);
301 err
= saa7706h_set_reg24_err(sd
, SAA7706H_DSP2_XMEM_CONTLLCW
, 0x000905,
308 static int saa7706h_mute(struct v4l2_subdev
*sd
)
310 struct saa7706h_state
*state
= to_state(sd
);
313 err
= saa7706h_set_reg16(sd
, SAA7706H_REG_CTRL
,
314 SAA7706H_CTRL_PLL3_62975MHZ
| SAA7706H_CTRL_PC_RESET_DSP1
|
315 SAA7706H_CTRL_PC_RESET_DSP2
);
321 static int saa7706h_s_ctrl(struct v4l2_ctrl
*ctrl
)
323 struct saa7706h_state
*state
=
324 container_of(ctrl
->handler
, struct saa7706h_state
, hdl
);
327 case V4L2_CID_AUDIO_MUTE
:
329 return saa7706h_mute(&state
->sd
);
330 return saa7706h_unmute(&state
->sd
);
335 static const struct v4l2_ctrl_ops saa7706h_ctrl_ops
= {
336 .s_ctrl
= saa7706h_s_ctrl
,
339 static const struct v4l2_subdev_core_ops saa7706h_core_ops
= {
340 .g_ext_ctrls
= v4l2_subdev_g_ext_ctrls
,
341 .try_ext_ctrls
= v4l2_subdev_try_ext_ctrls
,
342 .s_ext_ctrls
= v4l2_subdev_s_ext_ctrls
,
343 .g_ctrl
= v4l2_subdev_g_ctrl
,
344 .s_ctrl
= v4l2_subdev_s_ctrl
,
345 .queryctrl
= v4l2_subdev_queryctrl
,
346 .querymenu
= v4l2_subdev_querymenu
,
349 static const struct v4l2_subdev_ops saa7706h_ops
= {
350 .core
= &saa7706h_core_ops
,
355 * concerning the addresses: i2c wants 7 bit (without the r/w bit), so '>>1'
358 static int saa7706h_probe(struct i2c_client
*client
,
359 const struct i2c_device_id
*id
)
361 struct saa7706h_state
*state
;
362 struct v4l2_subdev
*sd
;
365 /* Check if the adapter supports the needed features */
366 if (!i2c_check_functionality(client
->adapter
, I2C_FUNC_SMBUS_BYTE_DATA
))
369 v4l_info(client
, "chip found @ 0x%02x (%s)\n",
370 client
->addr
<< 1, client
->adapter
->name
);
372 state
= kzalloc(sizeof(struct saa7706h_state
), GFP_KERNEL
);
376 v4l2_i2c_subdev_init(sd
, client
, &saa7706h_ops
);
378 v4l2_ctrl_handler_init(&state
->hdl
, 4);
379 v4l2_ctrl_new_std(&state
->hdl
, &saa7706h_ctrl_ops
,
380 V4L2_CID_AUDIO_MUTE
, 0, 1, 1, 1);
381 sd
->ctrl_handler
= &state
->hdl
;
382 err
= state
->hdl
.error
;
386 /* check the rom versions */
387 err
= saa7706h_get_reg16(sd
, SAA7706H_DSP1_ROM_VER
);
390 if (err
!= SUPPORTED_DSP1_ROM_VER
)
391 v4l2_warn(sd
, "Unknown DSP1 ROM code version: 0x%x\n", err
);
394 /* startup in a muted state */
395 err
= saa7706h_mute(sd
);
402 v4l2_device_unregister_subdev(sd
);
403 v4l2_ctrl_handler_free(&state
->hdl
);
406 printk(KERN_ERR DRIVER_NAME
": Failed to probe: %d\n", err
);
411 static int saa7706h_remove(struct i2c_client
*client
)
413 struct v4l2_subdev
*sd
= i2c_get_clientdata(client
);
414 struct saa7706h_state
*state
= to_state(sd
);
417 v4l2_device_unregister_subdev(sd
);
418 v4l2_ctrl_handler_free(&state
->hdl
);
423 static const struct i2c_device_id saa7706h_id
[] = {
428 MODULE_DEVICE_TABLE(i2c
, saa7706h_id
);
430 static struct i2c_driver saa7706h_driver
= {
432 .owner
= THIS_MODULE
,
435 .probe
= saa7706h_probe
,
436 .remove
= saa7706h_remove
,
437 .id_table
= saa7706h_id
,
440 module_i2c_driver(saa7706h_driver
);
442 MODULE_DESCRIPTION("SAA7706H Car Radio DSP driver");
443 MODULE_AUTHOR("Mocean Laboratories");
444 MODULE_LICENSE("GPL v2");