blob: 57deeb89331857d70e7d656f5f501077318a8491 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001 /*
2 tda9840 - i2c-driver for the tda9840 by SGS Thomson
3
4 Copyright (C) 1998-2003 Michael Hunold <michael@mihu.de>
Hans Verkuila8327812008-07-25 10:31:23 -03005 Copyright (C) 2008 Hans Verkuil <hverkuil@xs4all.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
7 The tda9840 is a stereo/dual sound processor with digital
8 identification. It can be found at address 0x84 on the i2c-bus.
9
10 For detailed informations download the specifications directly
11 from SGS Thomson at http://www.st.com
12
13 This program is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2 of the License, or
16 (at your option) any later version.
17
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 */
27
Mauro Carvalho Chehaba8733ca2006-03-17 10:37:02 -030028
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/module.h>
30#include <linux/ioctl.h>
31#include <linux/i2c.h>
Hans Verkuila8327812008-07-25 10:31:23 -030032#include <media/v4l2-common.h>
33#include <media/v4l2-i2c-drv-legacy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "tda9840.h"
35
Hans Verkuila8327812008-07-25 10:31:23 -030036MODULE_AUTHOR("Michael Hunold <michael@mihu.de>");
37MODULE_DESCRIPTION("tda9840 driver");
38MODULE_LICENSE("GPL");
Hans Verkuilf87086e2008-07-18 00:50:58 -030039
Hans Verkuila8327812008-07-25 10:31:23 -030040static int debug;
41module_param(debug, int, 0644);
42
43MODULE_PARM_DESC(debug, "Debug level (0-1)");
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#define SWITCH 0x00
46#define LEVEL_ADJUST 0x02
47#define STEREO_ADJUST 0x03
48#define TEST 0x04
49
50/* addresses to scan, found only at 0x42 (7-Bit) */
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -030051static unsigned short normal_i2c[] = { I2C_ADDR_TDA9840, I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53/* magic definition of all other variables and things */
54I2C_CLIENT_INSMOD;
55
Hans Verkuila8327812008-07-25 10:31:23 -030056static void tda9840_write(struct i2c_client *client, u8 reg, u8 val)
57{
58 if (i2c_smbus_write_byte_data(client, reg, val))
59 v4l_dbg(1, debug, client, "error writing %02x to %02x\n",
60 val, reg);
61}
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Hans Verkuila8327812008-07-25 10:31:23 -030063static int tda9840_command(struct i2c_client *client, unsigned cmd, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
65 int result;
66 int byte = *(int *)arg;
67
68 switch (cmd) {
69 case TDA9840_SWITCH:
Hans Verkuila8327812008-07-25 10:31:23 -030070 v4l_dbg(1, debug, client, "TDA9840_SWITCH: 0x%02x\n", byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72 if (byte != TDA9840_SET_MONO
73 && byte != TDA9840_SET_MUTE
74 && byte != TDA9840_SET_STEREO
75 && byte != TDA9840_SET_LANG1
76 && byte != TDA9840_SET_LANG2
77 && byte != TDA9840_SET_BOTH
78 && byte != TDA9840_SET_BOTH_R
79 && byte != TDA9840_SET_EXTERNAL) {
80 return -EINVAL;
81 }
82
Hans Verkuila8327812008-07-25 10:31:23 -030083 tda9840_write(client, SWITCH, byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 break;
85
86 case TDA9840_LEVEL_ADJUST:
Hans Verkuila8327812008-07-25 10:31:23 -030087 v4l_dbg(1, debug, client, "TDA9840_LEVEL_ADJUST: %d\n", byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89 /* check for correct range */
90 if (byte > 25 || byte < -20)
91 return -EINVAL;
92
93 /* calculate actual value to set, see specs, page 18 */
94 byte /= 5;
95 if (0 < byte)
96 byte += 0x8;
97 else
98 byte = -byte;
Hans Verkuila8327812008-07-25 10:31:23 -030099 tda9840_write(client, LEVEL_ADJUST, byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 break;
101
102 case TDA9840_STEREO_ADJUST:
Hans Verkuila8327812008-07-25 10:31:23 -0300103 v4l_dbg(1, debug, client, "TDA9840_STEREO_ADJUST: %d\n", byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105 /* check for correct range */
106 if (byte > 25 || byte < -24)
107 return -EINVAL;
108
109 /* calculate actual value to set */
110 byte /= 5;
111 if (0 < byte)
112 byte += 0x20;
113 else
114 byte = -byte;
115
Hans Verkuila8327812008-07-25 10:31:23 -0300116 tda9840_write(client, STEREO_ADJUST, byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 break;
118
119 case TDA9840_DETECT: {
120 int *ret = (int *)arg;
121
122 byte = i2c_smbus_read_byte_data(client, STEREO_ADJUST);
123 if (byte == -1) {
Hans Verkuila8327812008-07-25 10:31:23 -0300124 v4l_dbg(1, debug, client,
125 "i2c_smbus_read_byte_data() failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 return -EIO;
127 }
128
Hans Verkuila8327812008-07-25 10:31:23 -0300129 if (byte & 0x80) {
130 v4l_dbg(1, debug, client,
131 "TDA9840_DETECT: register contents invalid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 return -EINVAL;
133 }
134
Hans Verkuila8327812008-07-25 10:31:23 -0300135 v4l_dbg(1, debug, client, "TDA9840_DETECT: byte: 0x%02x\n", byte);
136 *ret = (byte & 0x60) >> 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 result = 0;
138 break;
139 }
140 case TDA9840_TEST:
Hans Verkuila8327812008-07-25 10:31:23 -0300141 v4l_dbg(1, debug, client, "TDA9840_TEST: 0x%02x\n", byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 /* mask out irrelevant bits */
144 byte &= 0x3;
145
Hans Verkuila8327812008-07-25 10:31:23 -0300146 tda9840_write(client, TEST, byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 break;
148 default:
149 return -ENOIOCTLCMD;
150 }
151
152 if (result)
153 return -EIO;
154
155 return 0;
156}
157
Hans Verkuila8327812008-07-25 10:31:23 -0300158static int tda9840_probe(struct i2c_client *client,
159 const struct i2c_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Hans Verkuila8327812008-07-25 10:31:23 -0300161 int result;
162 int byte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 /* let's see whether this adapter can support what we need */
Hans Verkuila8327812008-07-25 10:31:23 -0300165 if (!i2c_check_functionality(client->adapter,
166 I2C_FUNC_SMBUS_READ_BYTE_DATA |
167 I2C_FUNC_SMBUS_WRITE_BYTE_DATA))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Hans Verkuila8327812008-07-25 10:31:23 -0300170 v4l_info(client, "chip found @ 0x%x (%s)\n",
171 client->addr << 1, client->adapter->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 /* set initial values for level & stereo - adjustment, mode */
174 byte = 0;
Hans Verkuila8327812008-07-25 10:31:23 -0300175 result = tda9840_command(client, TDA9840_LEVEL_ADJUST, &byte);
176 result += tda9840_command(client, TDA9840_STEREO_ADJUST, &byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 byte = TDA9840_SET_MONO;
Hans Verkuila8327812008-07-25 10:31:23 -0300178 result = tda9840_command(client, TDA9840_SWITCH, &byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 if (result) {
Hans Verkuila8327812008-07-25 10:31:23 -0300180 v4l_dbg(1, debug, client, "could not initialize tda9840\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return -ENODEV;
182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return 0;
184}
185
Hans Verkuila8327812008-07-25 10:31:23 -0300186static int tda9840_legacy_probe(struct i2c_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
Hans Verkuila8327812008-07-25 10:31:23 -0300188 /* Let's see whether this is a known adapter we can attach to.
189 Prevents conflicts with tvaudio.c. */
190 return adapter->id == I2C_HW_SAA7146;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}
Hans Verkuila8327812008-07-25 10:31:23 -0300192static const struct i2c_device_id tda9840_id[] = {
193 { "tda9840", 0 },
194 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195};
Hans Verkuila8327812008-07-25 10:31:23 -0300196MODULE_DEVICE_TABLE(i2c, tda9840_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Hans Verkuila8327812008-07-25 10:31:23 -0300198static struct v4l2_i2c_driver_data v4l2_i2c_data = {
Jean Delvarefae91e72005-08-15 19:57:04 +0200199 .name = "tda9840",
Hans Verkuila8327812008-07-25 10:31:23 -0300200 .driverid = I2C_DRIVERID_TDA9840,
201 .command = tda9840_command,
202 .probe = tda9840_probe,
203 .legacy_probe = tda9840_legacy_probe,
204 .id_table = tda9840_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205};