Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | tda9840 - i2c-driver for the tda9840 by SGS Thomson |
| 3 | |
| 4 | Copyright (C) 1998-2003 Michael Hunold <michael@mihu.de> |
Hans Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 5 | Copyright (C) 2008 Hans Verkuil <hverkuil@xs4all.nl> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | |
| 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 Chehab | a8733ca | 2006-03-17 10:37:02 -0300 | [diff] [blame] | 28 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/module.h> |
| 30 | #include <linux/ioctl.h> |
| 31 | #include <linux/i2c.h> |
Hans Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 32 | #include <media/v4l2-common.h> |
| 33 | #include <media/v4l2-i2c-drv-legacy.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include "tda9840.h" |
| 35 | |
Hans Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 36 | MODULE_AUTHOR("Michael Hunold <michael@mihu.de>"); |
| 37 | MODULE_DESCRIPTION("tda9840 driver"); |
| 38 | MODULE_LICENSE("GPL"); |
Hans Verkuil | f87086e | 2008-07-18 00:50:58 -0300 | [diff] [blame] | 39 | |
Hans Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 40 | static int debug; |
| 41 | module_param(debug, int, 0644); |
| 42 | |
| 43 | MODULE_PARM_DESC(debug, "Debug level (0-1)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
| 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 Chehab | 09df1c1 | 2006-03-18 08:31:34 -0300 | [diff] [blame] | 51 | static unsigned short normal_i2c[] = { I2C_ADDR_TDA9840, I2C_CLIENT_END }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
| 53 | /* magic definition of all other variables and things */ |
| 54 | I2C_CLIENT_INSMOD; |
| 55 | |
Hans Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 56 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
Hans Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 63 | static int tda9840_command(struct i2c_client *client, unsigned cmd, void *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | { |
| 65 | int result; |
| 66 | int byte = *(int *)arg; |
| 67 | |
| 68 | switch (cmd) { |
| 69 | case TDA9840_SWITCH: |
Hans Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 70 | v4l_dbg(1, debug, client, "TDA9840_SWITCH: 0x%02x\n", byte); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
| 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 Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 83 | tda9840_write(client, SWITCH, byte); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | break; |
| 85 | |
| 86 | case TDA9840_LEVEL_ADJUST: |
Hans Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 87 | v4l_dbg(1, debug, client, "TDA9840_LEVEL_ADJUST: %d\n", byte); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | |
| 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 Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 99 | tda9840_write(client, LEVEL_ADJUST, byte); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | break; |
| 101 | |
| 102 | case TDA9840_STEREO_ADJUST: |
Hans Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 103 | v4l_dbg(1, debug, client, "TDA9840_STEREO_ADJUST: %d\n", byte); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | |
| 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 Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 116 | tda9840_write(client, STEREO_ADJUST, byte); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | 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 Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 124 | v4l_dbg(1, debug, client, |
| 125 | "i2c_smbus_read_byte_data() failed\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | return -EIO; |
| 127 | } |
| 128 | |
Hans Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 129 | if (byte & 0x80) { |
| 130 | v4l_dbg(1, debug, client, |
| 131 | "TDA9840_DETECT: register contents invalid\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | return -EINVAL; |
| 133 | } |
| 134 | |
Hans Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 135 | v4l_dbg(1, debug, client, "TDA9840_DETECT: byte: 0x%02x\n", byte); |
| 136 | *ret = (byte & 0x60) >> 5; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | result = 0; |
| 138 | break; |
| 139 | } |
| 140 | case TDA9840_TEST: |
Hans Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 141 | v4l_dbg(1, debug, client, "TDA9840_TEST: 0x%02x\n", byte); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
| 143 | /* mask out irrelevant bits */ |
| 144 | byte &= 0x3; |
| 145 | |
Hans Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 146 | tda9840_write(client, TEST, byte); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | break; |
| 148 | default: |
| 149 | return -ENOIOCTLCMD; |
| 150 | } |
| 151 | |
| 152 | if (result) |
| 153 | return -EIO; |
| 154 | |
| 155 | return 0; |
| 156 | } |
| 157 | |
Hans Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 158 | static int tda9840_probe(struct i2c_client *client, |
| 159 | const struct i2c_device_id *id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | { |
Hans Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 161 | int result; |
| 162 | int byte; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | |
| 164 | /* let's see whether this adapter can support what we need */ |
Hans Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 165 | if (!i2c_check_functionality(client->adapter, |
| 166 | I2C_FUNC_SMBUS_READ_BYTE_DATA | |
| 167 | I2C_FUNC_SMBUS_WRITE_BYTE_DATA)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | |
Hans Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 170 | v4l_info(client, "chip found @ 0x%x (%s)\n", |
| 171 | client->addr << 1, client->adapter->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | |
| 173 | /* set initial values for level & stereo - adjustment, mode */ |
| 174 | byte = 0; |
Hans Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 175 | result = tda9840_command(client, TDA9840_LEVEL_ADJUST, &byte); |
| 176 | result += tda9840_command(client, TDA9840_STEREO_ADJUST, &byte); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | byte = TDA9840_SET_MONO; |
Hans Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 178 | result = tda9840_command(client, TDA9840_SWITCH, &byte); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | if (result) { |
Hans Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 180 | v4l_dbg(1, debug, client, "could not initialize tda9840\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | return -ENODEV; |
| 182 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | return 0; |
| 184 | } |
| 185 | |
Hans Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 186 | static int tda9840_legacy_probe(struct i2c_adapter *adapter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | { |
Hans Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 188 | /* 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | } |
Hans Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 192 | static const struct i2c_device_id tda9840_id[] = { |
| 193 | { "tda9840", 0 }, |
| 194 | { } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | }; |
Hans Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 196 | MODULE_DEVICE_TABLE(i2c, tda9840_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | |
Hans Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 198 | static struct v4l2_i2c_driver_data v4l2_i2c_data = { |
Jean Delvare | fae91e7 | 2005-08-15 19:57:04 +0200 | [diff] [blame] | 199 | .name = "tda9840", |
Hans Verkuil | a832781 | 2008-07-25 10:31:23 -0300 | [diff] [blame^] | 200 | .driverid = I2C_DRIVERID_TDA9840, |
| 201 | .command = tda9840_command, |
| 202 | .probe = tda9840_probe, |
| 203 | .legacy_probe = tda9840_legacy_probe, |
| 204 | .id_table = tda9840_id, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | }; |