akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 1 | /* |
Mauro Carvalho Chehab | f7abcd3 | 2005-11-08 21:38:25 -0800 | [diff] [blame] | 2 | em28xx-i2c.c - driver for Empia EM2800/EM2820/2840 USB video capture devices |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 3 | |
Mauro Carvalho Chehab | f7abcd3 | 2005-11-08 21:38:25 -0800 | [diff] [blame] | 4 | Copyright (C) 2005 Ludovico Cavedon <cavedon@sssup.it> |
| 5 | Markus Rechberger <mrechberger@gmail.com> |
Mauro Carvalho Chehab | 2e7c6dc | 2006-04-03 07:53:40 -0300 | [diff] [blame] | 6 | Mauro Carvalho Chehab <mchehab@infradead.org> |
Mauro Carvalho Chehab | f7abcd3 | 2005-11-08 21:38:25 -0800 | [diff] [blame] | 7 | Sascha Sommer <saschasommer@freenet.de> |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 8 | |
| 9 | This program is free software; you can redistribute it and/or modify |
| 10 | it under the terms of the GNU General Public License as published by |
| 11 | the Free Software Foundation; either version 2 of the License, or |
| 12 | (at your option) any later version. |
| 13 | |
| 14 | This program is distributed in the hope that it will be useful, |
| 15 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | GNU General Public License for more details. |
| 18 | |
| 19 | You should have received a copy of the GNU General Public License |
| 20 | along with this program; if not, write to the Free Software |
| 21 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 22 | */ |
| 23 | |
| 24 | #include <linux/module.h> |
| 25 | #include <linux/kernel.h> |
| 26 | #include <linux/usb.h> |
| 27 | #include <linux/i2c.h> |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 28 | |
Mauro Carvalho Chehab | f7abcd3 | 2005-11-08 21:38:25 -0800 | [diff] [blame] | 29 | #include "em28xx.h" |
Mauro Carvalho Chehab | 6c362c8 | 2007-10-29 23:36:12 -0300 | [diff] [blame] | 30 | #include "tuner-xc2028.h" |
Michael Krufky | 5e453dc | 2006-01-09 15:32:31 -0200 | [diff] [blame] | 31 | #include <media/v4l2-common.h> |
Mauro Carvalho Chehab | d5e5265 | 2005-11-08 21:37:32 -0800 | [diff] [blame] | 32 | #include <media/tuner.h> |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 33 | |
| 34 | /* ----------------------------------------------------------- */ |
| 35 | |
Douglas Schilling Landgraf | ff699e6 | 2008-04-22 14:41:48 -0300 | [diff] [blame] | 36 | static unsigned int i2c_scan; |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 37 | module_param(i2c_scan, int, 0444); |
| 38 | MODULE_PARM_DESC(i2c_scan, "scan i2c bus at insmod time"); |
| 39 | |
Douglas Schilling Landgraf | ff699e6 | 2008-04-22 14:41:48 -0300 | [diff] [blame] | 40 | static unsigned int i2c_debug; |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 41 | module_param(i2c_debug, int, 0644); |
| 42 | MODULE_PARM_DESC(i2c_debug, "enable debug messages [i2c]"); |
| 43 | |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 44 | /* |
Frank Schaefer | f5ae371 | 2013-01-03 14:27:02 -0300 | [diff] [blame] | 45 | * em2800_i2c_send_bytes() |
| 46 | * send up to 4 bytes to the em2800 i2c device |
Mauro Carvalho Chehab | 596d92d | 2005-11-08 21:37:24 -0800 | [diff] [blame] | 47 | */ |
Frank Schaefer | f5ae371 | 2013-01-03 14:27:02 -0300 | [diff] [blame] | 48 | static int em2800_i2c_send_bytes(struct em28xx *dev, u8 addr, u8 *buf, u16 len) |
Mauro Carvalho Chehab | 596d92d | 2005-11-08 21:37:24 -0800 | [diff] [blame] | 49 | { |
| 50 | int ret; |
| 51 | int write_timeout; |
Frank Schaefer | a6bad04 | 2012-12-16 14:23:27 -0300 | [diff] [blame] | 52 | u8 b2[6]; |
Frank Schaefer | f5ae371 | 2013-01-03 14:27:02 -0300 | [diff] [blame] | 53 | |
| 54 | if (len < 1 || len > 4) |
| 55 | return -EOPNOTSUPP; |
| 56 | |
Mauro Carvalho Chehab | 596d92d | 2005-11-08 21:37:24 -0800 | [diff] [blame] | 57 | BUG_ON(len < 1 || len > 4); |
| 58 | b2[5] = 0x80 + len - 1; |
| 59 | b2[4] = addr; |
| 60 | b2[3] = buf[0]; |
| 61 | if (len > 1) |
| 62 | b2[2] = buf[1]; |
| 63 | if (len > 2) |
| 64 | b2[1] = buf[2]; |
| 65 | if (len > 3) |
| 66 | b2[0] = buf[3]; |
| 67 | |
Frank Schaefer | 2fcc82d | 2013-01-03 14:27:03 -0300 | [diff] [blame] | 68 | /* trigger write */ |
Mauro Carvalho Chehab | 3acf280 | 2005-11-08 21:38:27 -0800 | [diff] [blame] | 69 | ret = dev->em28xx_write_regs(dev, 4 - len, &b2[4 - len], 2 + len); |
Mauro Carvalho Chehab | 596d92d | 2005-11-08 21:37:24 -0800 | [diff] [blame] | 70 | if (ret != 2 + len) { |
Frank Schaefer | 45f04e8 | 2013-01-03 14:27:05 -0300 | [diff] [blame] | 71 | em28xx_warn("failed to trigger write to i2c address 0x%x " |
| 72 | "(error=%i)\n", addr, ret); |
| 73 | return (ret < 0) ? ret : -EIO; |
Mauro Carvalho Chehab | 596d92d | 2005-11-08 21:37:24 -0800 | [diff] [blame] | 74 | } |
Frank Schaefer | 2fcc82d | 2013-01-03 14:27:03 -0300 | [diff] [blame] | 75 | /* wait for completion */ |
| 76 | for (write_timeout = EM2800_I2C_XFER_TIMEOUT; write_timeout > 0; |
Mauro Carvalho Chehab | 596d92d | 2005-11-08 21:37:24 -0800 | [diff] [blame] | 77 | write_timeout -= 5) { |
Mauro Carvalho Chehab | 3acf280 | 2005-11-08 21:38:27 -0800 | [diff] [blame] | 78 | ret = dev->em28xx_read_reg(dev, 0x05); |
Frank Schaefer | 45f04e8 | 2013-01-03 14:27:05 -0300 | [diff] [blame] | 79 | if (ret == 0x80 + len - 1) { |
Mauro Carvalho Chehab | 596d92d | 2005-11-08 21:37:24 -0800 | [diff] [blame] | 80 | return len; |
Frank Schaefer | 45f04e8 | 2013-01-03 14:27:05 -0300 | [diff] [blame] | 81 | } else if (ret == 0x94 + len - 1) { |
| 82 | return -ENODEV; |
| 83 | } else if (ret < 0) { |
| 84 | em28xx_warn("failed to get i2c transfer status from " |
| 85 | "bridge register (error=%i)\n", ret); |
| 86 | return ret; |
| 87 | } |
Markus Rechberger | e8e41da | 2006-02-07 06:49:11 -0200 | [diff] [blame] | 88 | msleep(5); |
Mauro Carvalho Chehab | 596d92d | 2005-11-08 21:37:24 -0800 | [diff] [blame] | 89 | } |
Frank Schaefer | 45f04e8 | 2013-01-03 14:27:05 -0300 | [diff] [blame] | 90 | em28xx_warn("write to i2c device at 0x%x timed out\n", addr); |
Mauro Carvalho Chehab | 596d92d | 2005-11-08 21:37:24 -0800 | [diff] [blame] | 91 | return -EIO; |
| 92 | } |
| 93 | |
| 94 | /* |
Mauro Carvalho Chehab | 596d92d | 2005-11-08 21:37:24 -0800 | [diff] [blame] | 95 | * em2800_i2c_recv_bytes() |
Frank Schaefer | 2fcc82d | 2013-01-03 14:27:03 -0300 | [diff] [blame] | 96 | * read up to 4 bytes from the em2800 i2c device |
Mauro Carvalho Chehab | 596d92d | 2005-11-08 21:37:24 -0800 | [diff] [blame] | 97 | */ |
Frank Schaefer | a6bad04 | 2012-12-16 14:23:27 -0300 | [diff] [blame] | 98 | static int em2800_i2c_recv_bytes(struct em28xx *dev, u8 addr, u8 *buf, u16 len) |
Mauro Carvalho Chehab | 596d92d | 2005-11-08 21:37:24 -0800 | [diff] [blame] | 99 | { |
Frank Schaefer | 2fcc82d | 2013-01-03 14:27:03 -0300 | [diff] [blame] | 100 | u8 buf2[4]; |
Mauro Carvalho Chehab | 596d92d | 2005-11-08 21:37:24 -0800 | [diff] [blame] | 101 | int ret; |
Frank Schaefer | 2fcc82d | 2013-01-03 14:27:03 -0300 | [diff] [blame] | 102 | int read_timeout; |
| 103 | int i; |
Frank Schaefer | f5ae371 | 2013-01-03 14:27:02 -0300 | [diff] [blame] | 104 | |
| 105 | if (len < 1 || len > 4) |
| 106 | return -EOPNOTSUPP; |
| 107 | |
Frank Schaefer | 2fcc82d | 2013-01-03 14:27:03 -0300 | [diff] [blame] | 108 | /* trigger read */ |
| 109 | buf2[1] = 0x84 + len - 1; |
| 110 | buf2[0] = addr; |
| 111 | ret = dev->em28xx_write_regs(dev, 0x04, buf2, 2); |
| 112 | if (ret != 2) { |
| 113 | em28xx_warn("failed to trigger read from i2c address 0x%x " |
| 114 | "(error=%i)\n", addr, ret); |
| 115 | return (ret < 0) ? ret : -EIO; |
Mauro Carvalho Chehab | 596d92d | 2005-11-08 21:37:24 -0800 | [diff] [blame] | 116 | } |
Frank Schaefer | 2fcc82d | 2013-01-03 14:27:03 -0300 | [diff] [blame] | 117 | |
| 118 | /* wait for completion */ |
| 119 | for (read_timeout = EM2800_I2C_XFER_TIMEOUT; read_timeout > 0; |
| 120 | read_timeout -= 5) { |
| 121 | ret = dev->em28xx_read_reg(dev, 0x05); |
| 122 | if (ret == 0x84 + len - 1) { |
| 123 | break; |
| 124 | } else if (ret == 0x94 + len - 1) { |
| 125 | return -ENODEV; |
| 126 | } else if (ret < 0) { |
| 127 | em28xx_warn("failed to get i2c transfer status from " |
| 128 | "bridge register (error=%i)\n", ret); |
| 129 | return ret; |
| 130 | } |
| 131 | msleep(5); |
Mauro Carvalho Chehab | 596d92d | 2005-11-08 21:37:24 -0800 | [diff] [blame] | 132 | } |
Frank Schaefer | 2fcc82d | 2013-01-03 14:27:03 -0300 | [diff] [blame] | 133 | if (ret != 0x84 + len - 1) |
| 134 | em28xx_warn("read from i2c device at 0x%x timed out\n", addr); |
| 135 | |
| 136 | /* get the received message */ |
| 137 | ret = dev->em28xx_read_reg_req_len(dev, 0x00, 4-len, buf2, len); |
| 138 | if (ret != len) { |
| 139 | em28xx_warn("reading from i2c device at 0x%x failed: " |
| 140 | "couldn't get the received message from the bridge " |
| 141 | "(error=%i)\n", addr, ret); |
| 142 | return (ret < 0) ? ret : -EIO; |
| 143 | } |
| 144 | for (i = 0; i < len; i++) |
| 145 | buf[i] = buf2[len - 1 - i]; |
| 146 | |
Mauro Carvalho Chehab | 596d92d | 2005-11-08 21:37:24 -0800 | [diff] [blame] | 147 | return ret; |
| 148 | } |
| 149 | |
| 150 | /* |
Frank Schaefer | 2fcc82d | 2013-01-03 14:27:03 -0300 | [diff] [blame] | 151 | * em2800_i2c_check_for_device() |
| 152 | * check if there is an i2c device at the supplied address |
| 153 | */ |
| 154 | static int em2800_i2c_check_for_device(struct em28xx *dev, u8 addr) |
| 155 | { |
| 156 | u8 buf; |
| 157 | int ret; |
| 158 | |
| 159 | ret = em2800_i2c_recv_bytes(dev, addr, &buf, 1); |
| 160 | if (ret == 1) |
| 161 | return 0; |
| 162 | return (ret < 0) ? ret : -EIO; |
| 163 | } |
| 164 | |
| 165 | /* |
Mauro Carvalho Chehab | 3acf280 | 2005-11-08 21:38:27 -0800 | [diff] [blame] | 166 | * em28xx_i2c_send_bytes() |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 167 | */ |
Frank Schaefer | a6bad04 | 2012-12-16 14:23:27 -0300 | [diff] [blame] | 168 | static int em28xx_i2c_send_bytes(struct em28xx *dev, u16 addr, u8 *buf, |
| 169 | u16 len, int stop) |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 170 | { |
Mauro Carvalho Chehab | bbc70e6 | 2011-07-09 19:36:11 -0300 | [diff] [blame] | 171 | int write_timeout, ret; |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 172 | |
Frank Schaefer | f5ae371 | 2013-01-03 14:27:02 -0300 | [diff] [blame] | 173 | if (len < 1 || len > 64) |
| 174 | return -EOPNOTSUPP; |
Frank Schaefer | 45f04e8 | 2013-01-03 14:27:05 -0300 | [diff] [blame] | 175 | /* NOTE: limited by the USB ctrl message constraints |
| 176 | * Zero length reads always succeed, even if no device is connected */ |
Frank Schaefer | f5ae371 | 2013-01-03 14:27:02 -0300 | [diff] [blame] | 177 | |
Frank Schaefer | 45f04e8 | 2013-01-03 14:27:05 -0300 | [diff] [blame] | 178 | /* Write to i2c device */ |
| 179 | ret = dev->em28xx_write_regs_req(dev, stop ? 2 : 3, addr, buf, len); |
| 180 | if (ret != len) { |
| 181 | if (ret < 0) { |
| 182 | em28xx_warn("writing to i2c device at 0x%x failed " |
| 183 | "(error=%i)\n", addr, ret); |
| 184 | return ret; |
| 185 | } else { |
| 186 | em28xx_warn("%i bytes write to i2c device at 0x%x " |
| 187 | "requested, but %i bytes written\n", |
| 188 | len, addr, ret); |
| 189 | return -EIO; |
| 190 | } |
| 191 | } |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 192 | |
Frank Schaefer | 45f04e8 | 2013-01-03 14:27:05 -0300 | [diff] [blame] | 193 | /* Check success of the i2c operation */ |
Frank Schaefer | 2fcc82d | 2013-01-03 14:27:03 -0300 | [diff] [blame] | 194 | for (write_timeout = EM2800_I2C_XFER_TIMEOUT; write_timeout > 0; |
Mauro Carvalho Chehab | bbc70e6 | 2011-07-09 19:36:11 -0300 | [diff] [blame] | 195 | write_timeout -= 5) { |
| 196 | ret = dev->em28xx_read_reg(dev, 0x05); |
Frank Schaefer | 45f04e8 | 2013-01-03 14:27:05 -0300 | [diff] [blame] | 197 | if (ret == 0) { /* success */ |
| 198 | return len; |
| 199 | } else if (ret == 0x10) { |
| 200 | return -ENODEV; |
| 201 | } else if (ret < 0) { |
| 202 | em28xx_warn("failed to read i2c transfer status from " |
| 203 | "bridge (error=%i)\n", ret); |
| 204 | return ret; |
| 205 | } |
Mauro Carvalho Chehab | bbc70e6 | 2011-07-09 19:36:11 -0300 | [diff] [blame] | 206 | msleep(5); |
Frank Schaefer | 45f04e8 | 2013-01-03 14:27:05 -0300 | [diff] [blame] | 207 | /* NOTE: do we really have to wait for success ? |
| 208 | Never seen anything else than 0x00 or 0x10 |
| 209 | (even with high payload) ... */ |
Mauro Carvalho Chehab | bbc70e6 | 2011-07-09 19:36:11 -0300 | [diff] [blame] | 210 | } |
Frank Schaefer | 45f04e8 | 2013-01-03 14:27:05 -0300 | [diff] [blame] | 211 | em28xx_warn("write to i2c device at 0x%x timed out\n", addr); |
| 212 | return -EIO; |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 213 | } |
| 214 | |
| 215 | /* |
Mauro Carvalho Chehab | 3acf280 | 2005-11-08 21:38:27 -0800 | [diff] [blame] | 216 | * em28xx_i2c_recv_bytes() |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 217 | * read a byte from the i2c device |
| 218 | */ |
Frank Schaefer | a6bad04 | 2012-12-16 14:23:27 -0300 | [diff] [blame] | 219 | static int em28xx_i2c_recv_bytes(struct em28xx *dev, u16 addr, u8 *buf, u16 len) |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 220 | { |
| 221 | int ret; |
Frank Schaefer | f5ae371 | 2013-01-03 14:27:02 -0300 | [diff] [blame] | 222 | |
| 223 | if (len < 1 || len > 64) |
| 224 | return -EOPNOTSUPP; |
Frank Schaefer | 45f04e8 | 2013-01-03 14:27:05 -0300 | [diff] [blame] | 225 | /* NOTE: limited by the USB ctrl message constraints |
| 226 | * Zero length reads always succeed, even if no device is connected */ |
Frank Schaefer | f5ae371 | 2013-01-03 14:27:02 -0300 | [diff] [blame] | 227 | |
Frank Schaefer | 45f04e8 | 2013-01-03 14:27:05 -0300 | [diff] [blame] | 228 | /* Read data from i2c device */ |
Mauro Carvalho Chehab | 3acf280 | 2005-11-08 21:38:27 -0800 | [diff] [blame] | 229 | ret = dev->em28xx_read_reg_req_len(dev, 2, addr, buf, len); |
Frank Schaefer | 45f04e8 | 2013-01-03 14:27:05 -0300 | [diff] [blame] | 230 | if (ret != len) { |
| 231 | if (ret < 0) { |
| 232 | em28xx_warn("reading from i2c device at 0x%x failed " |
| 233 | "(error=%i)\n", addr, ret); |
| 234 | return ret; |
| 235 | } else { |
| 236 | em28xx_warn("%i bytes requested from i2c device at " |
| 237 | "0x%x, but %i bytes received\n", |
| 238 | len, addr, ret); |
| 239 | return -EIO; |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | /* Check success of the i2c operation */ |
| 244 | ret = dev->em28xx_read_reg(dev, 0x05); |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 245 | if (ret < 0) { |
Frank Schaefer | 45f04e8 | 2013-01-03 14:27:05 -0300 | [diff] [blame] | 246 | em28xx_warn("failed to read i2c transfer status from " |
| 247 | "bridge (error=%i)\n", ret); |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 248 | return ret; |
| 249 | } |
Frank Schaefer | 45f04e8 | 2013-01-03 14:27:05 -0300 | [diff] [blame] | 250 | if (ret > 0) { |
| 251 | if (ret == 0x10) { |
| 252 | return -ENODEV; |
| 253 | } else { |
| 254 | em28xx_warn("unknown i2c error (status=%i)\n", ret); |
| 255 | return -EIO; |
| 256 | } |
| 257 | } |
| 258 | return len; |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 259 | } |
| 260 | |
| 261 | /* |
Mauro Carvalho Chehab | 3acf280 | 2005-11-08 21:38:27 -0800 | [diff] [blame] | 262 | * em28xx_i2c_check_for_device() |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 263 | * check if there is a i2c_device at the supplied address |
| 264 | */ |
Frank Schaefer | a6bad04 | 2012-12-16 14:23:27 -0300 | [diff] [blame] | 265 | static int em28xx_i2c_check_for_device(struct em28xx *dev, u16 addr) |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 266 | { |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 267 | int ret; |
Frank Schaefer | 45f04e8 | 2013-01-03 14:27:05 -0300 | [diff] [blame] | 268 | u8 buf; |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 269 | |
Frank Schaefer | 45f04e8 | 2013-01-03 14:27:05 -0300 | [diff] [blame] | 270 | ret = em28xx_i2c_recv_bytes(dev, addr, &buf, 1); |
| 271 | if (ret == 1) |
| 272 | return 0; |
| 273 | return (ret < 0) ? ret : -EIO; |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | /* |
Mauro Carvalho Chehab | 3acf280 | 2005-11-08 21:38:27 -0800 | [diff] [blame] | 277 | * em28xx_i2c_xfer() |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 278 | * the main i2c transfer function |
| 279 | */ |
Mauro Carvalho Chehab | 3acf280 | 2005-11-08 21:38:27 -0800 | [diff] [blame] | 280 | static int em28xx_i2c_xfer(struct i2c_adapter *i2c_adap, |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 281 | struct i2c_msg msgs[], int num) |
| 282 | { |
Mauro Carvalho Chehab | 3acf280 | 2005-11-08 21:38:27 -0800 | [diff] [blame] | 283 | struct em28xx *dev = i2c_adap->algo_data; |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 284 | int addr, rc, i, byte; |
| 285 | |
| 286 | if (num <= 0) |
| 287 | return 0; |
| 288 | for (i = 0; i < num; i++) { |
| 289 | addr = msgs[i].addr << 1; |
Frank Schaefer | d90f067 | 2013-03-03 15:37:36 -0300 | [diff] [blame] | 290 | if (i2c_debug) |
Frank Schaefer | d7a80ea | 2013-03-03 15:37:35 -0300 | [diff] [blame] | 291 | printk(KERN_DEBUG "%s at %s: %s %s addr=%02x len=%d:", |
| 292 | dev->name, __func__ , |
| 293 | (msgs[i].flags & I2C_M_RD) ? "read" : "write", |
| 294 | i == num - 1 ? "stop" : "nonstop", |
| 295 | addr, msgs[i].len); |
Douglas Schilling Landgraf | 6ea54d9 | 2008-04-17 21:41:10 -0300 | [diff] [blame] | 296 | if (!msgs[i].len) { /* no len: check only for device presence */ |
Mauro Carvalho Chehab | 505b6d0 | 2008-11-25 09:39:50 -0300 | [diff] [blame] | 297 | if (dev->board.is_em2800) |
Mauro Carvalho Chehab | 596d92d | 2005-11-08 21:37:24 -0800 | [diff] [blame] | 298 | rc = em2800_i2c_check_for_device(dev, addr); |
| 299 | else |
Mauro Carvalho Chehab | 3acf280 | 2005-11-08 21:38:27 -0800 | [diff] [blame] | 300 | rc = em28xx_i2c_check_for_device(dev, addr); |
Frank Schaefer | 45f04e8 | 2013-01-03 14:27:05 -0300 | [diff] [blame] | 301 | if (rc == -ENODEV) { |
Frank Schaefer | d90f067 | 2013-03-03 15:37:36 -0300 | [diff] [blame] | 302 | if (i2c_debug) |
Frank Schaefer | 45f04e8 | 2013-01-03 14:27:05 -0300 | [diff] [blame] | 303 | printk(" no device\n"); |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 304 | return rc; |
| 305 | } |
Mauro Carvalho Chehab | 596d92d | 2005-11-08 21:37:24 -0800 | [diff] [blame] | 306 | } else if (msgs[i].flags & I2C_M_RD) { |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 307 | /* read bytes */ |
Mauro Carvalho Chehab | 505b6d0 | 2008-11-25 09:39:50 -0300 | [diff] [blame] | 308 | if (dev->board.is_em2800) |
Mauro Carvalho Chehab | 596d92d | 2005-11-08 21:37:24 -0800 | [diff] [blame] | 309 | rc = em2800_i2c_recv_bytes(dev, addr, |
| 310 | msgs[i].buf, |
| 311 | msgs[i].len); |
| 312 | else |
Mauro Carvalho Chehab | 3acf280 | 2005-11-08 21:38:27 -0800 | [diff] [blame] | 313 | rc = em28xx_i2c_recv_bytes(dev, addr, |
Mauro Carvalho Chehab | 596d92d | 2005-11-08 21:37:24 -0800 | [diff] [blame] | 314 | msgs[i].buf, |
| 315 | msgs[i].len); |
Frank Schaefer | d90f067 | 2013-03-03 15:37:36 -0300 | [diff] [blame] | 316 | if (i2c_debug) { |
Douglas Schilling Landgraf | 6ea54d9 | 2008-04-17 21:41:10 -0300 | [diff] [blame] | 317 | for (byte = 0; byte < msgs[i].len; byte++) |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 318 | printk(" %02x", msgs[i].buf[byte]); |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 319 | } |
| 320 | } else { |
| 321 | /* write bytes */ |
Frank Schaefer | d90f067 | 2013-03-03 15:37:36 -0300 | [diff] [blame] | 322 | if (i2c_debug) { |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 323 | for (byte = 0; byte < msgs[i].len; byte++) |
| 324 | printk(" %02x", msgs[i].buf[byte]); |
| 325 | } |
Mauro Carvalho Chehab | 505b6d0 | 2008-11-25 09:39:50 -0300 | [diff] [blame] | 326 | if (dev->board.is_em2800) |
Mauro Carvalho Chehab | 596d92d | 2005-11-08 21:37:24 -0800 | [diff] [blame] | 327 | rc = em2800_i2c_send_bytes(dev, addr, |
| 328 | msgs[i].buf, |
| 329 | msgs[i].len); |
| 330 | else |
Mauro Carvalho Chehab | 3acf280 | 2005-11-08 21:38:27 -0800 | [diff] [blame] | 331 | rc = em28xx_i2c_send_bytes(dev, addr, |
Mauro Carvalho Chehab | 596d92d | 2005-11-08 21:37:24 -0800 | [diff] [blame] | 332 | msgs[i].buf, |
| 333 | msgs[i].len, |
| 334 | i == num - 1); |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 335 | } |
Frank Schaefer | 45f04e8 | 2013-01-03 14:27:05 -0300 | [diff] [blame] | 336 | if (rc < 0) { |
Frank Schaefer | d90f067 | 2013-03-03 15:37:36 -0300 | [diff] [blame] | 337 | if (i2c_debug) |
Frank Schaefer | 45f04e8 | 2013-01-03 14:27:05 -0300 | [diff] [blame] | 338 | printk(" ERROR: %i\n", rc); |
| 339 | return rc; |
| 340 | } |
Frank Schaefer | d90f067 | 2013-03-03 15:37:36 -0300 | [diff] [blame] | 341 | if (i2c_debug) |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 342 | printk("\n"); |
| 343 | } |
| 344 | |
| 345 | return num; |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 346 | } |
| 347 | |
Mauro Carvalho Chehab | 03910cc | 2007-11-03 21:20:59 -0300 | [diff] [blame] | 348 | /* based on linux/sunrpc/svcauth.h and linux/hash.h |
| 349 | * The original hash function returns a different value, if arch is x86_64 |
| 350 | * or i386. |
| 351 | */ |
| 352 | static inline unsigned long em28xx_hash_mem(char *buf, int length, int bits) |
| 353 | { |
| 354 | unsigned long hash = 0; |
| 355 | unsigned long l = 0; |
| 356 | int len = 0; |
| 357 | unsigned char c; |
| 358 | do { |
| 359 | if (len == length) { |
| 360 | c = (char)len; |
| 361 | len = -1; |
| 362 | } else |
| 363 | c = *buf++; |
| 364 | l = (l << 8) | c; |
| 365 | len++; |
| 366 | if ((len & (32 / 8 - 1)) == 0) |
| 367 | hash = ((hash^l) * 0x9e370001UL); |
| 368 | } while (len); |
| 369 | |
| 370 | return (hash >> (32 - bits)) & 0xffffffffUL; |
| 371 | } |
| 372 | |
Mauro Carvalho Chehab | 3acf280 | 2005-11-08 21:38:27 -0800 | [diff] [blame] | 373 | static int em28xx_i2c_eeprom(struct em28xx *dev, unsigned char *eedata, int len) |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 374 | { |
Frank Schaefer | 87b5243 | 2013-03-03 15:37:40 -0300 | [diff] [blame^] | 375 | unsigned char buf[2], *p = eedata; |
Mauro Carvalho Chehab | 3acf280 | 2005-11-08 21:38:27 -0800 | [diff] [blame] | 376 | struct em28xx_eeprom *em_eeprom = (void *)eedata; |
Frank Schaefer | 9027196 | 2013-01-03 14:27:06 -0300 | [diff] [blame] | 377 | int i, err, size = len, block, block_max; |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 378 | |
| 379 | dev->i2c_client.addr = 0xa0 >> 1; |
Mauro Carvalho Chehab | 596d92d | 2005-11-08 21:37:24 -0800 | [diff] [blame] | 380 | |
| 381 | /* Check if board has eeprom */ |
Frank Schaefer | 87b5243 | 2013-03-03 15:37:40 -0300 | [diff] [blame^] | 382 | err = i2c_master_recv(&dev->i2c_client, buf, 0); |
Douglas Schilling Landgraf | f2a01a0 | 2008-09-08 03:27:20 -0300 | [diff] [blame] | 383 | if (err < 0) { |
Frank Schaefer | 12d7ce1 | 2013-03-03 15:37:34 -0300 | [diff] [blame] | 384 | em28xx_info("board has no eeprom\n"); |
Mauro Carvalho Chehab | c41109fc9 | 2008-11-15 23:44:14 -0300 | [diff] [blame] | 385 | memset(eedata, 0, len); |
| 386 | return -ENODEV; |
Douglas Schilling Landgraf | f2a01a0 | 2008-09-08 03:27:20 -0300 | [diff] [blame] | 387 | } |
Mauro Carvalho Chehab | 596d92d | 2005-11-08 21:37:24 -0800 | [diff] [blame] | 388 | |
Frank Schaefer | 87b5243 | 2013-03-03 15:37:40 -0300 | [diff] [blame^] | 389 | /* Select address memory address 0x00(00) */ |
| 390 | buf[0] = 0; |
| 391 | buf[1] = 0; |
| 392 | err = i2c_master_send(&dev->i2c_client, buf, 1 + dev->eeprom_addrwidth_16bit); |
| 393 | if (err != 1 + dev->eeprom_addrwidth_16bit) { |
Frank Schaefer | 12d7ce1 | 2013-03-03 15:37:34 -0300 | [diff] [blame] | 394 | em28xx_errdev("failed to read eeprom (err=%d)\n", err); |
Douglas Schilling Landgraf | f2a01a0 | 2008-09-08 03:27:20 -0300 | [diff] [blame] | 395 | return err; |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 396 | } |
Frank Schaefer | 9027196 | 2013-01-03 14:27:06 -0300 | [diff] [blame] | 397 | |
Frank Schaefer | 87b5243 | 2013-03-03 15:37:40 -0300 | [diff] [blame^] | 398 | /* Read eeprom content */ |
Frank Schaefer | 9027196 | 2013-01-03 14:27:06 -0300 | [diff] [blame] | 399 | if (dev->board.is_em2800) |
| 400 | block_max = 4; |
| 401 | else |
| 402 | block_max = 64; |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 403 | while (size > 0) { |
Frank Schaefer | 9027196 | 2013-01-03 14:27:06 -0300 | [diff] [blame] | 404 | if (size > block_max) |
| 405 | block = block_max; |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 406 | else |
| 407 | block = size; |
| 408 | |
| 409 | if (block != |
| 410 | (err = i2c_master_recv(&dev->i2c_client, p, block))) { |
Frank Schaefer | 12d7ce1 | 2013-03-03 15:37:34 -0300 | [diff] [blame] | 411 | em28xx_errdev("i2c eeprom read error (err=%d)\n", err); |
Douglas Schilling Landgraf | f2a01a0 | 2008-09-08 03:27:20 -0300 | [diff] [blame] | 412 | return err; |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 413 | } |
| 414 | size -= block; |
| 415 | p += block; |
| 416 | } |
Frank Schaefer | 87b5243 | 2013-03-03 15:37:40 -0300 | [diff] [blame^] | 417 | |
| 418 | /* Display eeprom content */ |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 419 | for (i = 0; i < len; i++) { |
Frank Schaefer | 87b5243 | 2013-03-03 15:37:40 -0300 | [diff] [blame^] | 420 | if (0 == (i % 16)) { |
| 421 | if (dev->eeprom_addrwidth_16bit) |
| 422 | em28xx_info("i2c eeprom %04x:", i); |
| 423 | else |
| 424 | em28xx_info("i2c eeprom %02x:", i); |
| 425 | } |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 426 | printk(" %02x", eedata[i]); |
| 427 | if (15 == (i % 16)) |
| 428 | printk("\n"); |
| 429 | } |
| 430 | |
Frank Schaefer | 87b5243 | 2013-03-03 15:37:40 -0300 | [diff] [blame^] | 431 | if (dev->eeprom_addrwidth_16bit && |
| 432 | eedata[0] == 0x26 && eedata[3] == 0x00) { |
| 433 | /* new eeprom format; size 4-64kb */ |
| 434 | dev->hash = em28xx_hash_mem(eedata, len, 32); |
| 435 | em28xx_info("EEPROM hash = 0x%08lx\n", dev->hash); |
| 436 | em28xx_info("EEPROM info: boot page address = 0x%02x04, " |
| 437 | "boot configuration = 0x%02x\n", |
| 438 | eedata[1], eedata[2]); |
| 439 | /* boot configuration (address 0x0002): |
| 440 | * [0] microcode download speed: 1 = 400 kHz; 0 = 100 kHz |
| 441 | * [1] always selects 12 kb RAM |
| 442 | * [2] USB device speed: 1 = force Full Speed; 0 = auto detect |
| 443 | * [4] 1 = force fast mode and no suspend for device testing |
| 444 | * [5:7] USB PHY tuning registers; determined by device |
| 445 | * characterization |
| 446 | */ |
| 447 | |
| 448 | /* FIXME: |
| 449 | * - read more than 256 bytes / addresses above 0x00ff |
| 450 | * - find offset for device config dataset and extract it |
| 451 | * - decrypt eeprom data for camera bridges (em25xx, em276x+) |
| 452 | * - use separate/different eeprom hashes (not yet used) |
| 453 | */ |
| 454 | |
| 455 | return 0; |
| 456 | } else if (em_eeprom->id[0] != 0x1a || em_eeprom->id[1] != 0xeb || |
| 457 | em_eeprom->id[2] != 0x67 || em_eeprom->id[3] != 0x95) { |
| 458 | em28xx_info("unknown eeprom format or eeprom corrupted !\n"); |
Frank Schaefer | f55eacb | 2013-03-03 15:37:37 -0300 | [diff] [blame] | 459 | return -ENODEV; |
| 460 | } |
| 461 | |
| 462 | dev->hash = em28xx_hash_mem(eedata, len, 32); |
Mauro Carvalho Chehab | 03910cc | 2007-11-03 21:20:59 -0300 | [diff] [blame] | 463 | |
Frank Schaefer | 0c28dcc | 2013-03-03 15:37:38 -0300 | [diff] [blame] | 464 | em28xx_info("EEPROM ID = %02x %02x %02x %02x, EEPROM hash = 0x%08lx\n", |
| 465 | em_eeprom->id[0], em_eeprom->id[1], |
| 466 | em_eeprom->id[2], em_eeprom->id[3], dev->hash); |
Mauro Carvalho Chehab | 1bee018 | 2008-11-25 10:06:21 -0300 | [diff] [blame] | 467 | |
Frank Schaefer | 12d7ce1 | 2013-03-03 15:37:34 -0300 | [diff] [blame] | 468 | em28xx_info("EEPROM info:\n"); |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 469 | |
Frank Schaefer | 0c28dcc | 2013-03-03 15:37:38 -0300 | [diff] [blame] | 470 | switch (le16_to_cpu(em_eeprom->chip_conf) >> 4 & 0x3) { |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 471 | case 0: |
Frank Schaefer | 12d7ce1 | 2013-03-03 15:37:34 -0300 | [diff] [blame] | 472 | em28xx_info("\tNo audio on board.\n"); |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 473 | break; |
| 474 | case 1: |
Frank Schaefer | 12d7ce1 | 2013-03-03 15:37:34 -0300 | [diff] [blame] | 475 | em28xx_info("\tAC97 audio (5 sample rates)\n"); |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 476 | break; |
| 477 | case 2: |
Frank Schaefer | 12d7ce1 | 2013-03-03 15:37:34 -0300 | [diff] [blame] | 478 | em28xx_info("\tI2S audio, sample rate=32k\n"); |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 479 | break; |
| 480 | case 3: |
Frank Schaefer | 12d7ce1 | 2013-03-03 15:37:34 -0300 | [diff] [blame] | 481 | em28xx_info("\tI2S audio, 3 sample rates\n"); |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 482 | break; |
| 483 | } |
| 484 | |
Frank Schaefer | 0c28dcc | 2013-03-03 15:37:38 -0300 | [diff] [blame] | 485 | if (le16_to_cpu(em_eeprom->chip_conf) & 1 << 3) |
Frank Schaefer | 12d7ce1 | 2013-03-03 15:37:34 -0300 | [diff] [blame] | 486 | em28xx_info("\tUSB Remote wakeup capable\n"); |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 487 | |
Frank Schaefer | 0c28dcc | 2013-03-03 15:37:38 -0300 | [diff] [blame] | 488 | if (le16_to_cpu(em_eeprom->chip_conf) & 1 << 2) |
Frank Schaefer | 12d7ce1 | 2013-03-03 15:37:34 -0300 | [diff] [blame] | 489 | em28xx_info("\tUSB Self power capable\n"); |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 490 | |
Frank Schaefer | 0c28dcc | 2013-03-03 15:37:38 -0300 | [diff] [blame] | 491 | switch (le16_to_cpu(em_eeprom->chip_conf) & 0x3) { |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 492 | case 0: |
Frank Schaefer | 12d7ce1 | 2013-03-03 15:37:34 -0300 | [diff] [blame] | 493 | em28xx_info("\t500mA max power\n"); |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 494 | break; |
| 495 | case 1: |
Frank Schaefer | 12d7ce1 | 2013-03-03 15:37:34 -0300 | [diff] [blame] | 496 | em28xx_info("\t400mA max power\n"); |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 497 | break; |
| 498 | case 2: |
Frank Schaefer | 12d7ce1 | 2013-03-03 15:37:34 -0300 | [diff] [blame] | 499 | em28xx_info("\t300mA max power\n"); |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 500 | break; |
| 501 | case 3: |
Frank Schaefer | 12d7ce1 | 2013-03-03 15:37:34 -0300 | [diff] [blame] | 502 | em28xx_info("\t200mA max power\n"); |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 503 | break; |
| 504 | } |
Frank Schaefer | 12d7ce1 | 2013-03-03 15:37:34 -0300 | [diff] [blame] | 505 | em28xx_info("\tTable at offset 0x%02x, strings=0x%04x, 0x%04x, 0x%04x\n", |
| 506 | em_eeprom->string_idx_table, |
Frank Schaefer | 0c28dcc | 2013-03-03 15:37:38 -0300 | [diff] [blame] | 507 | le16_to_cpu(em_eeprom->string1), |
| 508 | le16_to_cpu(em_eeprom->string2), |
| 509 | le16_to_cpu(em_eeprom->string3)); |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 510 | |
| 511 | return 0; |
| 512 | } |
| 513 | |
| 514 | /* ----------------------------------------------------------- */ |
| 515 | |
| 516 | /* |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 517 | * functionality() |
| 518 | */ |
| 519 | static u32 functionality(struct i2c_adapter *adap) |
| 520 | { |
Frank Schaefer | eaf33c4 | 2013-01-03 14:27:04 -0300 | [diff] [blame] | 521 | struct em28xx *dev = adap->algo_data; |
| 522 | u32 func_flags = I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL; |
| 523 | if (dev->board.is_em2800) |
| 524 | func_flags &= ~I2C_FUNC_SMBUS_WRITE_BLOCK_DATA; |
| 525 | return func_flags; |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 526 | } |
| 527 | |
Mauro Carvalho Chehab | 3acf280 | 2005-11-08 21:38:27 -0800 | [diff] [blame] | 528 | static struct i2c_algorithm em28xx_algo = { |
| 529 | .master_xfer = em28xx_i2c_xfer, |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 530 | .functionality = functionality, |
| 531 | }; |
| 532 | |
Mauro Carvalho Chehab | 3acf280 | 2005-11-08 21:38:27 -0800 | [diff] [blame] | 533 | static struct i2c_adapter em28xx_adap_template = { |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 534 | .owner = THIS_MODULE, |
Mauro Carvalho Chehab | 3acf280 | 2005-11-08 21:38:27 -0800 | [diff] [blame] | 535 | .name = "em28xx", |
Mauro Carvalho Chehab | 3acf280 | 2005-11-08 21:38:27 -0800 | [diff] [blame] | 536 | .algo = &em28xx_algo, |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 537 | }; |
| 538 | |
Mauro Carvalho Chehab | 3acf280 | 2005-11-08 21:38:27 -0800 | [diff] [blame] | 539 | static struct i2c_client em28xx_client_template = { |
| 540 | .name = "em28xx internal", |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 541 | }; |
| 542 | |
| 543 | /* ----------------------------------------------------------- */ |
| 544 | |
| 545 | /* |
| 546 | * i2c_devs |
| 547 | * incomplete list of known devices |
| 548 | */ |
| 549 | static char *i2c_devs[128] = { |
Frank Schaefer | 0b3966e | 2013-01-13 10:15:08 -0300 | [diff] [blame] | 550 | [0x3e >> 1] = "remote IR sensor", |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 551 | [0x4a >> 1] = "saa7113h", |
Martin Blumenstingl | 729841e | 2012-06-12 18:19:27 -0300 | [diff] [blame] | 552 | [0x52 >> 1] = "drxk", |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 553 | [0x60 >> 1] = "remote IR sensor", |
Markus Rechberger | da45a2a | 2005-11-08 21:37:31 -0800 | [diff] [blame] | 554 | [0x8e >> 1] = "remote IR sensor", |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 555 | [0x86 >> 1] = "tda9887", |
| 556 | [0x80 >> 1] = "msp34xx", |
| 557 | [0x88 >> 1] = "msp34xx", |
| 558 | [0xa0 >> 1] = "eeprom", |
Vitaly Wool | 2bd1d9eb | 2009-03-04 08:27:52 -0300 | [diff] [blame] | 559 | [0xb0 >> 1] = "tda9874", |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 560 | [0xb8 >> 1] = "tvp5150a", |
Mauro Carvalho Chehab | 791a08f | 2009-07-03 15:36:18 -0300 | [diff] [blame] | 561 | [0xba >> 1] = "webcam sensor or tvp5150a", |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 562 | [0xc0 >> 1] = "tuner (analog)", |
| 563 | [0xc2 >> 1] = "tuner (analog)", |
| 564 | [0xc4 >> 1] = "tuner (analog)", |
| 565 | [0xc6 >> 1] = "tuner (analog)", |
| 566 | }; |
| 567 | |
| 568 | /* |
| 569 | * do_i2c_scan() |
| 570 | * check i2c address range for devices |
| 571 | */ |
Sascha Sommer | fad7b95 | 2007-11-04 08:06:48 -0300 | [diff] [blame] | 572 | void em28xx_do_i2c_scan(struct em28xx *dev) |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 573 | { |
Sascha Sommer | fad7b95 | 2007-11-04 08:06:48 -0300 | [diff] [blame] | 574 | u8 i2c_devicelist[128]; |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 575 | unsigned char buf; |
| 576 | int i, rc; |
| 577 | |
Sascha Sommer | fad7b95 | 2007-11-04 08:06:48 -0300 | [diff] [blame] | 578 | memset(i2c_devicelist, 0, ARRAY_SIZE(i2c_devicelist)); |
| 579 | |
Mauro Carvalho Chehab | 53c4e95 | 2007-03-29 08:42:30 -0300 | [diff] [blame] | 580 | for (i = 0; i < ARRAY_SIZE(i2c_devs); i++) { |
Sascha Sommer | fad7b95 | 2007-11-04 08:06:48 -0300 | [diff] [blame] | 581 | dev->i2c_client.addr = i; |
| 582 | rc = i2c_master_recv(&dev->i2c_client, &buf, 0); |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 583 | if (rc < 0) |
| 584 | continue; |
Sascha Sommer | fad7b95 | 2007-11-04 08:06:48 -0300 | [diff] [blame] | 585 | i2c_devicelist[i] = i; |
Frank Schaefer | 12d7ce1 | 2013-03-03 15:37:34 -0300 | [diff] [blame] | 586 | em28xx_info("found i2c device @ 0x%x [%s]\n", |
| 587 | i << 1, i2c_devs[i] ? i2c_devs[i] : "???"); |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 588 | } |
Sascha Sommer | fad7b95 | 2007-11-04 08:06:48 -0300 | [diff] [blame] | 589 | |
| 590 | dev->i2c_hash = em28xx_hash_mem(i2c_devicelist, |
| 591 | ARRAY_SIZE(i2c_devicelist), 32); |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 592 | } |
| 593 | |
| 594 | /* |
Mauro Carvalho Chehab | 3acf280 | 2005-11-08 21:38:27 -0800 | [diff] [blame] | 595 | * em28xx_i2c_register() |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 596 | * register i2c bus |
| 597 | */ |
Mauro Carvalho Chehab | 3acf280 | 2005-11-08 21:38:27 -0800 | [diff] [blame] | 598 | int em28xx_i2c_register(struct em28xx *dev) |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 599 | { |
Douglas Schilling Landgraf | f2a01a0 | 2008-09-08 03:27:20 -0300 | [diff] [blame] | 600 | int retval; |
| 601 | |
Mauro Carvalho Chehab | 3acf280 | 2005-11-08 21:38:27 -0800 | [diff] [blame] | 602 | BUG_ON(!dev->em28xx_write_regs || !dev->em28xx_read_reg); |
| 603 | BUG_ON(!dev->em28xx_write_regs_req || !dev->em28xx_read_reg_req); |
| 604 | dev->i2c_adap = em28xx_adap_template; |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 605 | dev->i2c_adap.dev.parent = &dev->udev->dev; |
| 606 | strcpy(dev->i2c_adap.name, dev->name); |
| 607 | dev->i2c_adap.algo_data = dev; |
Douglas Schilling Landgraf | f2cf250 | 2009-03-31 17:10:58 -0300 | [diff] [blame] | 608 | i2c_set_adapdata(&dev->i2c_adap, &dev->v4l2_dev); |
Douglas Schilling Landgraf | f2a01a0 | 2008-09-08 03:27:20 -0300 | [diff] [blame] | 609 | |
| 610 | retval = i2c_add_adapter(&dev->i2c_adap); |
| 611 | if (retval < 0) { |
| 612 | em28xx_errdev("%s: i2c_add_adapter failed! retval [%d]\n", |
| 613 | __func__, retval); |
| 614 | return retval; |
| 615 | } |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 616 | |
Mauro Carvalho Chehab | 3acf280 | 2005-11-08 21:38:27 -0800 | [diff] [blame] | 617 | dev->i2c_client = em28xx_client_template; |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 618 | dev->i2c_client.adapter = &dev->i2c_adap; |
| 619 | |
Douglas Schilling Landgraf | f2a01a0 | 2008-09-08 03:27:20 -0300 | [diff] [blame] | 620 | retval = em28xx_i2c_eeprom(dev, dev->eedata, sizeof(dev->eedata)); |
Mauro Carvalho Chehab | c41109fc9 | 2008-11-15 23:44:14 -0300 | [diff] [blame] | 621 | if ((retval < 0) && (retval != -ENODEV)) { |
Douglas Schilling Landgraf | f2a01a0 | 2008-09-08 03:27:20 -0300 | [diff] [blame] | 622 | em28xx_errdev("%s: em28xx_i2_eeprom failed! retval [%d]\n", |
| 623 | __func__, retval); |
Mauro Carvalho Chehab | c41109fc9 | 2008-11-15 23:44:14 -0300 | [diff] [blame] | 624 | |
Douglas Schilling Landgraf | f2a01a0 | 2008-09-08 03:27:20 -0300 | [diff] [blame] | 625 | return retval; |
| 626 | } |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 627 | |
| 628 | if (i2c_scan) |
Sascha Sommer | fad7b95 | 2007-11-04 08:06:48 -0300 | [diff] [blame] | 629 | em28xx_do_i2c_scan(dev); |
Mauro Carvalho Chehab | c41109fc9 | 2008-11-15 23:44:14 -0300 | [diff] [blame] | 630 | |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 631 | return 0; |
| 632 | } |
| 633 | |
| 634 | /* |
Mauro Carvalho Chehab | 3acf280 | 2005-11-08 21:38:27 -0800 | [diff] [blame] | 635 | * em28xx_i2c_unregister() |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 636 | * unregister i2c_bus |
| 637 | */ |
Mauro Carvalho Chehab | 3acf280 | 2005-11-08 21:38:27 -0800 | [diff] [blame] | 638 | int em28xx_i2c_unregister(struct em28xx *dev) |
akpm@osdl.org | a6c2ba2 | 2005-11-08 21:37:07 -0800 | [diff] [blame] | 639 | { |
| 640 | i2c_del_adapter(&dev->i2c_adap); |
| 641 | return 0; |
| 642 | } |