blob: 00e39edc0837117cab38f2156bc678cd6d4c1724 [file] [log] [blame]
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001/*
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -08002 em28xx-i2c.c - driver for Empia EM2800/EM2820/2840 USB video capture devices
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08003
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -08004 Copyright (C) 2005 Ludovico Cavedon <cavedon@sssup.it>
5 Markus Rechberger <mrechberger@gmail.com>
Mauro Carvalho Chehab2e7c6dc2006-04-03 07:53:40 -03006 Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -08007 Sascha Sommer <saschasommer@freenet.de>
Frank Schaefera3ea4bf2013-03-26 13:38:36 -03008 Copyright (C) 2013 Frank Schäfer <fschaefer.oss@googlemail.com>
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08009
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 */
24
Mauro Carvalho Chehab8314d402016-10-12 07:26:47 -030025#include "em28xx.h"
26
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080027#include <linux/module.h>
28#include <linux/kernel.h>
29#include <linux/usb.h>
30#include <linux/i2c.h>
Mauro Carvalho Chehab4b836262014-01-04 05:42:11 -030031#include <linux/jiffies.h>
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080032
Mauro Carvalho Chehab6c362c82007-10-29 23:36:12 -030033#include "tuner-xc2028.h"
Michael Krufky5e453dc2006-01-09 15:32:31 -020034#include <media/v4l2-common.h>
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -080035#include <media/tuner.h>
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080036
37/* ----------------------------------------------------------- */
38
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030039static unsigned int i2c_scan;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080040module_param(i2c_scan, int, 0444);
41MODULE_PARM_DESC(i2c_scan, "scan i2c bus at insmod time");
42
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030043static unsigned int i2c_debug;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080044module_param(i2c_debug, int, 0644);
Mauro Carvalho Chehab50f0a9d2013-12-28 08:23:30 -030045MODULE_PARM_DESC(i2c_debug, "i2c debug message level (1: normal debug, 2: show I2C transfers)");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080046
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -020047#define dprintk(level, fmt, arg...) do { \
48 if (i2c_debug > level) \
49 dev_printk(KERN_DEBUG, &dev->udev->dev, \
50 "i2c: %s: " fmt, __func__, ## arg); \
51} while (0)
52
53
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080054/*
Frank Schaeferf5ae3712013-01-03 14:27:02 -030055 * em2800_i2c_send_bytes()
56 * send up to 4 bytes to the em2800 i2c device
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -080057 */
Frank Schaeferf5ae3712013-01-03 14:27:02 -030058static int em2800_i2c_send_bytes(struct em28xx *dev, u8 addr, u8 *buf, u16 len)
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -080059{
Mauro Carvalho Chehabd1b72132014-01-05 09:45:50 -030060 unsigned long timeout = jiffies + msecs_to_jiffies(EM28XX_I2C_XFER_TIMEOUT);
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -080061 int ret;
Frank Schaefera6bad042012-12-16 14:23:27 -030062 u8 b2[6];
Frank Schaeferf5ae3712013-01-03 14:27:02 -030063
64 if (len < 1 || len > 4)
65 return -EOPNOTSUPP;
66
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -080067 BUG_ON(len < 1 || len > 4);
68 b2[5] = 0x80 + len - 1;
69 b2[4] = addr;
70 b2[3] = buf[0];
71 if (len > 1)
72 b2[2] = buf[1];
73 if (len > 2)
74 b2[1] = buf[2];
75 if (len > 3)
76 b2[0] = buf[3];
77
Frank Schaefer2fcc82d2013-01-03 14:27:03 -030078 /* trigger write */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -080079 ret = dev->em28xx_write_regs(dev, 4 - len, &b2[4 - len], 2 + len);
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -080080 if (ret != 2 + len) {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -020081 dev_warn(&dev->udev->dev,
82 "failed to trigger write to i2c address 0x%x (error=%i)\n",
Frank Schaeferd230d5a2013-03-24 14:58:03 -030083 addr, ret);
Frank Schaefer45f04e82013-01-03 14:27:05 -030084 return (ret < 0) ? ret : -EIO;
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -080085 }
Frank Schaefer2fcc82d2013-01-03 14:27:03 -030086 /* wait for completion */
Mauro Carvalho Chehab4b836262014-01-04 05:42:11 -030087 while (time_is_after_jiffies(timeout)) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -080088 ret = dev->em28xx_read_reg(dev, 0x05);
Mauro Carvalho Chehab4b836262014-01-04 05:42:11 -030089 if (ret == 0x80 + len - 1)
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -080090 return len;
Mauro Carvalho Chehab4b836262014-01-04 05:42:11 -030091 if (ret == 0x94 + len - 1) {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -020092 dprintk(1, "R05 returned 0x%02x: I2C ACK error\n", ret);
Mauro Carvalho Chehabe63b0092014-01-04 05:42:11 -030093 return -ENXIO;
Mauro Carvalho Chehab4b836262014-01-04 05:42:11 -030094 }
95 if (ret < 0) {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -020096 dev_warn(&dev->udev->dev,
97 "failed to get i2c transfer status from bridge register (error=%i)\n",
Mauro Carvalho Chehab2a96f602016-10-12 07:32:23 -030098 ret);
Frank Schaefer45f04e82013-01-03 14:27:05 -030099 return ret;
100 }
Markus Rechbergere8e41da2006-02-07 06:49:11 -0200101 msleep(5);
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -0800102 }
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200103 dprintk(0, "write to i2c device at 0x%x timed out\n", addr);
Mauro Carvalho Chehabe63b0092014-01-04 05:42:11 -0300104 return -ETIMEDOUT;
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -0800105}
106
107/*
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -0800108 * em2800_i2c_recv_bytes()
Frank Schaefer2fcc82d2013-01-03 14:27:03 -0300109 * read up to 4 bytes from the em2800 i2c device
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -0800110 */
Frank Schaefera6bad042012-12-16 14:23:27 -0300111static int em2800_i2c_recv_bytes(struct em28xx *dev, u8 addr, u8 *buf, u16 len)
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -0800112{
Mauro Carvalho Chehabd1b72132014-01-05 09:45:50 -0300113 unsigned long timeout = jiffies + msecs_to_jiffies(EM28XX_I2C_XFER_TIMEOUT);
Frank Schaefer2fcc82d2013-01-03 14:27:03 -0300114 u8 buf2[4];
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -0800115 int ret;
Frank Schaefer2fcc82d2013-01-03 14:27:03 -0300116 int i;
Frank Schaeferf5ae3712013-01-03 14:27:02 -0300117
118 if (len < 1 || len > 4)
119 return -EOPNOTSUPP;
120
Frank Schaefer2fcc82d2013-01-03 14:27:03 -0300121 /* trigger read */
122 buf2[1] = 0x84 + len - 1;
123 buf2[0] = addr;
124 ret = dev->em28xx_write_regs(dev, 0x04, buf2, 2);
125 if (ret != 2) {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200126 dev_warn(&dev->udev->dev,
127 "failed to trigger read from i2c address 0x%x (error=%i)\n",
128 addr, ret);
Frank Schaefer2fcc82d2013-01-03 14:27:03 -0300129 return (ret < 0) ? ret : -EIO;
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -0800130 }
Frank Schaefer2fcc82d2013-01-03 14:27:03 -0300131
132 /* wait for completion */
Mauro Carvalho Chehab4b836262014-01-04 05:42:11 -0300133 while (time_is_after_jiffies(timeout)) {
Frank Schaefer2fcc82d2013-01-03 14:27:03 -0300134 ret = dev->em28xx_read_reg(dev, 0x05);
Mauro Carvalho Chehab4b836262014-01-04 05:42:11 -0300135 if (ret == 0x84 + len - 1)
Frank Schaefer2fcc82d2013-01-03 14:27:03 -0300136 break;
Mauro Carvalho Chehab4b836262014-01-04 05:42:11 -0300137 if (ret == 0x94 + len - 1) {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200138 dprintk(1, "R05 returned 0x%02x: I2C ACK error\n",
139 ret);
Mauro Carvalho Chehabe63b0092014-01-04 05:42:11 -0300140 return -ENXIO;
Mauro Carvalho Chehab4b836262014-01-04 05:42:11 -0300141 }
142 if (ret < 0) {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200143 dev_warn(&dev->udev->dev,
144 "failed to get i2c transfer status from bridge register (error=%i)\n",
145 ret);
Frank Schaefer2fcc82d2013-01-03 14:27:03 -0300146 return ret;
147 }
148 msleep(5);
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -0800149 }
Mauro Carvalho Chehab50f0a9d2013-12-28 08:23:30 -0300150 if (ret != 0x84 + len - 1) {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200151 dprintk(0, "read from i2c device at 0x%x timed out\n", addr);
Mauro Carvalho Chehab50f0a9d2013-12-28 08:23:30 -0300152 }
Frank Schaefer2fcc82d2013-01-03 14:27:03 -0300153
154 /* get the received message */
155 ret = dev->em28xx_read_reg_req_len(dev, 0x00, 4-len, buf2, len);
156 if (ret != len) {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200157 dev_warn(&dev->udev->dev,
158 "reading from i2c device at 0x%x failed: couldn't get the received message from the bridge (error=%i)\n",
159 addr, ret);
Frank Schaefer2fcc82d2013-01-03 14:27:03 -0300160 return (ret < 0) ? ret : -EIO;
161 }
162 for (i = 0; i < len; i++)
163 buf[i] = buf2[len - 1 - i];
164
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -0800165 return ret;
166}
167
168/*
Frank Schaefer2fcc82d2013-01-03 14:27:03 -0300169 * em2800_i2c_check_for_device()
170 * check if there is an i2c device at the supplied address
171 */
172static int em2800_i2c_check_for_device(struct em28xx *dev, u8 addr)
173{
174 u8 buf;
175 int ret;
176
177 ret = em2800_i2c_recv_bytes(dev, addr, &buf, 1);
178 if (ret == 1)
179 return 0;
180 return (ret < 0) ? ret : -EIO;
181}
182
183/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800184 * em28xx_i2c_send_bytes()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800185 */
Frank Schaefera6bad042012-12-16 14:23:27 -0300186static int em28xx_i2c_send_bytes(struct em28xx *dev, u16 addr, u8 *buf,
187 u16 len, int stop)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800188{
Mauro Carvalho Chehabd1b72132014-01-05 09:45:50 -0300189 unsigned long timeout = jiffies + msecs_to_jiffies(EM28XX_I2C_XFER_TIMEOUT);
Mauro Carvalho Chehab4b836262014-01-04 05:42:11 -0300190 int ret;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800191
Frank Schaeferf5ae3712013-01-03 14:27:02 -0300192 if (len < 1 || len > 64)
193 return -EOPNOTSUPP;
Frank Schaeferfa74aca2013-03-24 17:09:59 -0300194 /*
195 * NOTE: limited by the USB ctrl message constraints
196 * Zero length reads always succeed, even if no device is connected
197 */
Frank Schaeferf5ae3712013-01-03 14:27:02 -0300198
Frank Schaefer45f04e82013-01-03 14:27:05 -0300199 /* Write to i2c device */
200 ret = dev->em28xx_write_regs_req(dev, stop ? 2 : 3, addr, buf, len);
201 if (ret != len) {
202 if (ret < 0) {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200203 dev_warn(&dev->udev->dev,
204 "writing to i2c device at 0x%x failed (error=%i)\n",
205 addr, ret);
Frank Schaefer45f04e82013-01-03 14:27:05 -0300206 return ret;
207 } else {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200208 dev_warn(&dev->udev->dev,
209 "%i bytes write to i2c device at 0x%x requested, but %i bytes written\n",
210 len, addr, ret);
Frank Schaefer45f04e82013-01-03 14:27:05 -0300211 return -EIO;
212 }
213 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800214
Mauro Carvalho Chehab4b836262014-01-04 05:42:11 -0300215 /* wait for completion */
216 while (time_is_after_jiffies(timeout)) {
Mauro Carvalho Chehabbbc70e62011-07-09 19:36:11 -0300217 ret = dev->em28xx_read_reg(dev, 0x05);
Mauro Carvalho Chehab4b836262014-01-04 05:42:11 -0300218 if (ret == 0) /* success */
Frank Schaefer45f04e82013-01-03 14:27:05 -0300219 return len;
Mauro Carvalho Chehab4b836262014-01-04 05:42:11 -0300220 if (ret == 0x10) {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200221 dprintk(1, "I2C ACK error on writing to addr 0x%02x\n",
222 addr);
Mauro Carvalho Chehabe63b0092014-01-04 05:42:11 -0300223 return -ENXIO;
Mauro Carvalho Chehab4b836262014-01-04 05:42:11 -0300224 }
225 if (ret < 0) {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200226 dev_warn(&dev->udev->dev,
227 "failed to get i2c transfer status from bridge register (error=%i)\n",
228 ret);
Frank Schaefer45f04e82013-01-03 14:27:05 -0300229 return ret;
230 }
Mauro Carvalho Chehabbbc70e62011-07-09 19:36:11 -0300231 msleep(5);
Frank Schaeferfa74aca2013-03-24 17:09:59 -0300232 /*
233 * NOTE: do we really have to wait for success ?
234 * Never seen anything else than 0x00 or 0x10
235 * (even with high payload) ...
236 */
Mauro Carvalho Chehabbbc70e62011-07-09 19:36:11 -0300237 }
Frank Schaefer123a17d2014-01-19 18:48:35 -0300238
239 if (ret == 0x02 || ret == 0x04) {
240 /* NOTE: these errors seem to be related to clock stretching */
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200241 dprintk(0,
242 "write to i2c device at 0x%x timed out (status=%i)\n",
243 addr, ret);
Frank Schaefer123a17d2014-01-19 18:48:35 -0300244 return -ETIMEDOUT;
245 }
246
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200247 dev_warn(&dev->udev->dev,
248 "write to i2c device at 0x%x failed with unknown error (status=%i)\n",
249 addr, ret);
Frank Schaefer123a17d2014-01-19 18:48:35 -0300250 return -EIO;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800251}
252
253/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800254 * em28xx_i2c_recv_bytes()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800255 * read a byte from the i2c device
256 */
Frank Schaefera6bad042012-12-16 14:23:27 -0300257static int em28xx_i2c_recv_bytes(struct em28xx *dev, u16 addr, u8 *buf, u16 len)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800258{
259 int ret;
Frank Schaeferf5ae3712013-01-03 14:27:02 -0300260
261 if (len < 1 || len > 64)
262 return -EOPNOTSUPP;
Frank Schaeferfa74aca2013-03-24 17:09:59 -0300263 /*
264 * NOTE: limited by the USB ctrl message constraints
265 * Zero length reads always succeed, even if no device is connected
266 */
Frank Schaeferf5ae3712013-01-03 14:27:02 -0300267
Frank Schaefer45f04e82013-01-03 14:27:05 -0300268 /* Read data from i2c device */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800269 ret = dev->em28xx_read_reg_req_len(dev, 2, addr, buf, len);
Frank Schaefer7f6301d2013-03-10 07:25:25 -0300270 if (ret < 0) {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200271 dev_warn(&dev->udev->dev,
272 "reading from i2c device at 0x%x failed (error=%i)\n",
273 addr, ret);
Frank Schaefer7f6301d2013-03-10 07:25:25 -0300274 return ret;
Frank Schaefer45f04e82013-01-03 14:27:05 -0300275 }
Frank Schaeferfa74aca2013-03-24 17:09:59 -0300276 /*
277 * NOTE: some devices with two i2c busses have the bad habit to return 0
Frank Schaefer7f6301d2013-03-10 07:25:25 -0300278 * bytes if we are on bus B AND there was no write attempt to the
279 * specified slave address before AND no device is present at the
280 * requested slave address.
Mauro Carvalho Chehabe63b0092014-01-04 05:42:11 -0300281 * Anyway, the next check will fail with -ENXIO in this case, so avoid
Frank Schaefer7f6301d2013-03-10 07:25:25 -0300282 * spamming the system log on device probing and do nothing here.
283 */
Frank Schaefer45f04e82013-01-03 14:27:05 -0300284
285 /* Check success of the i2c operation */
286 ret = dev->em28xx_read_reg(dev, 0x05);
Mauro Carvalho Chehab4b836262014-01-04 05:42:11 -0300287 if (ret == 0) /* success */
288 return len;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800289 if (ret < 0) {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200290 dev_warn(&dev->udev->dev,
291 "failed to get i2c transfer status from bridge register (error=%i)\n",
292 ret);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800293 return ret;
294 }
Mauro Carvalho Chehabd845fb32014-01-06 09:17:53 -0300295 if (ret == 0x10) {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200296 dprintk(1, "I2C ACK error on writing to addr 0x%02x\n",
297 addr);
Mauro Carvalho Chehabe63b0092014-01-04 05:42:11 -0300298 return -ENXIO;
Mauro Carvalho Chehabd845fb32014-01-06 09:17:53 -0300299 }
Mauro Carvalho Chehab4b836262014-01-04 05:42:11 -0300300
Frank Schaefer123a17d2014-01-19 18:48:35 -0300301 if (ret == 0x02 || ret == 0x04) {
302 /* NOTE: these errors seem to be related to clock stretching */
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200303 dprintk(0,
304 "write to i2c device at 0x%x timed out (status=%i)\n",
305 addr, ret);
Frank Schaefer123a17d2014-01-19 18:48:35 -0300306 return -ETIMEDOUT;
307 }
308
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200309 dev_warn(&dev->udev->dev,
310 "write to i2c device at 0x%x failed with unknown error (status=%i)\n",
311 addr, ret);
Frank Schaefer123a17d2014-01-19 18:48:35 -0300312 return -EIO;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800313}
314
315/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800316 * em28xx_i2c_check_for_device()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800317 * check if there is a i2c_device at the supplied address
318 */
Frank Schaefera6bad042012-12-16 14:23:27 -0300319static int em28xx_i2c_check_for_device(struct em28xx *dev, u16 addr)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800320{
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800321 int ret;
Frank Schaefer45f04e82013-01-03 14:27:05 -0300322 u8 buf;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800323
Frank Schaefer45f04e82013-01-03 14:27:05 -0300324 ret = em28xx_i2c_recv_bytes(dev, addr, &buf, 1);
325 if (ret == 1)
326 return 0;
327 return (ret < 0) ? ret : -EIO;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800328}
329
330/*
Frank Schaefera3ea4bf2013-03-26 13:38:36 -0300331 * em25xx_bus_B_send_bytes
332 * write bytes to the i2c device
333 */
334static int em25xx_bus_B_send_bytes(struct em28xx *dev, u16 addr, u8 *buf,
335 u16 len)
336{
337 int ret;
338
339 if (len < 1 || len > 64)
340 return -EOPNOTSUPP;
341 /*
342 * NOTE: limited by the USB ctrl message constraints
343 * Zero length reads always succeed, even if no device is connected
344 */
345
346 /* Set register and write value */
347 ret = dev->em28xx_write_regs_req(dev, 0x06, addr, buf, len);
348 if (ret != len) {
349 if (ret < 0) {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200350 dev_warn(&dev->udev->dev,
351 "writing to i2c device at 0x%x failed (error=%i)\n",
352 addr, ret);
Frank Schaefera3ea4bf2013-03-26 13:38:36 -0300353 return ret;
354 } else {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200355 dev_warn(&dev->udev->dev,
356 "%i bytes write to i2c device at 0x%x requested, but %i bytes written\n",
357 len, addr, ret);
Frank Schaefera3ea4bf2013-03-26 13:38:36 -0300358 return -EIO;
359 }
360 }
361 /* Check success */
362 ret = dev->em28xx_read_reg_req(dev, 0x08, 0x0000);
363 /*
364 * NOTE: the only error we've seen so far is
365 * 0x01 when the slave device is not present
366 */
367 if (!ret)
368 return len;
Mauro Carvalho Chehabd845fb32014-01-06 09:17:53 -0300369 else if (ret > 0) {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200370 dprintk(1, "Bus B R08 returned 0x%02x: I2C ACK error\n", ret);
Mauro Carvalho Chehabe63b0092014-01-04 05:42:11 -0300371 return -ENXIO;
Mauro Carvalho Chehabd845fb32014-01-06 09:17:53 -0300372 }
Frank Schaefera3ea4bf2013-03-26 13:38:36 -0300373
374 return ret;
375 /*
376 * NOTE: With chip types (other chip IDs) which actually don't support
377 * this operation, it seems to succeed ALWAYS ! (even if there is no
378 * slave device or even no second i2c bus provided)
379 */
380}
381
382/*
383 * em25xx_bus_B_recv_bytes
384 * read bytes from the i2c device
385 */
386static int em25xx_bus_B_recv_bytes(struct em28xx *dev, u16 addr, u8 *buf,
387 u16 len)
388{
389 int ret;
390
391 if (len < 1 || len > 64)
392 return -EOPNOTSUPP;
393 /*
394 * NOTE: limited by the USB ctrl message constraints
395 * Zero length reads always succeed, even if no device is connected
396 */
397
398 /* Read value */
399 ret = dev->em28xx_read_reg_req_len(dev, 0x06, addr, buf, len);
400 if (ret < 0) {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200401 dev_warn(&dev->udev->dev,
402 "reading from i2c device at 0x%x failed (error=%i)\n",
403 addr, ret);
Frank Schaefera3ea4bf2013-03-26 13:38:36 -0300404 return ret;
405 }
406 /*
407 * NOTE: some devices with two i2c busses have the bad habit to return 0
408 * bytes if we are on bus B AND there was no write attempt to the
409 * specified slave address before AND no device is present at the
410 * requested slave address.
Mauro Carvalho Chehabe63b0092014-01-04 05:42:11 -0300411 * Anyway, the next check will fail with -ENXIO in this case, so avoid
Frank Schaefera3ea4bf2013-03-26 13:38:36 -0300412 * spamming the system log on device probing and do nothing here.
413 */
414
415 /* Check success */
416 ret = dev->em28xx_read_reg_req(dev, 0x08, 0x0000);
417 /*
418 * NOTE: the only error we've seen so far is
419 * 0x01 when the slave device is not present
420 */
421 if (!ret)
422 return len;
Mauro Carvalho Chehabd845fb32014-01-06 09:17:53 -0300423 else if (ret > 0) {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200424 dprintk(1, "Bus B R08 returned 0x%02x: I2C ACK error\n", ret);
Mauro Carvalho Chehabe63b0092014-01-04 05:42:11 -0300425 return -ENXIO;
Mauro Carvalho Chehabd845fb32014-01-06 09:17:53 -0300426 }
Frank Schaefera3ea4bf2013-03-26 13:38:36 -0300427
428 return ret;
429 /*
430 * NOTE: With chip types (other chip IDs) which actually don't support
431 * this operation, it seems to succeed ALWAYS ! (even if there is no
432 * slave device or even no second i2c bus provided)
433 */
434}
435
436/*
437 * em25xx_bus_B_check_for_device()
438 * check if there is a i2c device at the supplied address
439 */
440static int em25xx_bus_B_check_for_device(struct em28xx *dev, u16 addr)
441{
442 u8 buf;
443 int ret;
444
445 ret = em25xx_bus_B_recv_bytes(dev, addr, &buf, 1);
446 if (ret < 0)
447 return ret;
448
449 return 0;
450 /*
451 * NOTE: With chips which do not support this operation,
452 * it seems to succeed ALWAYS ! (even if no device connected)
453 */
454}
455
456static inline int i2c_check_for_device(struct em28xx_i2c_bus *i2c_bus, u16 addr)
457{
458 struct em28xx *dev = i2c_bus->dev;
459 int rc = -EOPNOTSUPP;
460
461 if (i2c_bus->algo_type == EM28XX_I2C_ALGO_EM28XX)
462 rc = em28xx_i2c_check_for_device(dev, addr);
463 else if (i2c_bus->algo_type == EM28XX_I2C_ALGO_EM2800)
464 rc = em2800_i2c_check_for_device(dev, addr);
465 else if (i2c_bus->algo_type == EM28XX_I2C_ALGO_EM25XX_BUS_B)
466 rc = em25xx_bus_B_check_for_device(dev, addr);
Frank Schaefera3ea4bf2013-03-26 13:38:36 -0300467 return rc;
468}
469
470static inline int i2c_recv_bytes(struct em28xx_i2c_bus *i2c_bus,
471 struct i2c_msg msg)
472{
473 struct em28xx *dev = i2c_bus->dev;
474 u16 addr = msg.addr << 1;
Mauro Carvalho Chehab50f0a9d2013-12-28 08:23:30 -0300475 int rc = -EOPNOTSUPP;
Frank Schaefera3ea4bf2013-03-26 13:38:36 -0300476
477 if (i2c_bus->algo_type == EM28XX_I2C_ALGO_EM28XX)
478 rc = em28xx_i2c_recv_bytes(dev, addr, msg.buf, msg.len);
479 else if (i2c_bus->algo_type == EM28XX_I2C_ALGO_EM2800)
480 rc = em2800_i2c_recv_bytes(dev, addr, msg.buf, msg.len);
481 else if (i2c_bus->algo_type == EM28XX_I2C_ALGO_EM25XX_BUS_B)
482 rc = em25xx_bus_B_recv_bytes(dev, addr, msg.buf, msg.len);
Frank Schaefera3ea4bf2013-03-26 13:38:36 -0300483 return rc;
484}
485
486static inline int i2c_send_bytes(struct em28xx_i2c_bus *i2c_bus,
487 struct i2c_msg msg, int stop)
488{
489 struct em28xx *dev = i2c_bus->dev;
490 u16 addr = msg.addr << 1;
Mauro Carvalho Chehab50f0a9d2013-12-28 08:23:30 -0300491 int rc = -EOPNOTSUPP;
Frank Schaefera3ea4bf2013-03-26 13:38:36 -0300492
Frank Schaefera3ea4bf2013-03-26 13:38:36 -0300493 if (i2c_bus->algo_type == EM28XX_I2C_ALGO_EM28XX)
494 rc = em28xx_i2c_send_bytes(dev, addr, msg.buf, msg.len, stop);
495 else if (i2c_bus->algo_type == EM28XX_I2C_ALGO_EM2800)
496 rc = em2800_i2c_send_bytes(dev, addr, msg.buf, msg.len);
497 else if (i2c_bus->algo_type == EM28XX_I2C_ALGO_EM25XX_BUS_B)
498 rc = em25xx_bus_B_send_bytes(dev, addr, msg.buf, msg.len);
499 return rc;
500}
501
502/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800503 * em28xx_i2c_xfer()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800504 * the main i2c transfer function
505 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800506static int em28xx_i2c_xfer(struct i2c_adapter *i2c_adap,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800507 struct i2c_msg msgs[], int num)
508{
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300509 struct em28xx_i2c_bus *i2c_bus = i2c_adap->algo_data;
510 struct em28xx *dev = i2c_bus->dev;
511 unsigned bus = i2c_bus->bus;
Frank Schaefera3ea4bf2013-03-26 13:38:36 -0300512 int addr, rc, i;
Mauro Carvalho Chehab3190fbe2013-03-21 06:03:27 -0300513 u8 reg;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800514
Shuah Khancc5c5d22014-07-11 18:25:55 -0300515 /* prevent i2c xfer attempts after device is disconnected
516 some fe's try to do i2c writes/reads from their release
517 interfaces when called in disconnect path */
518 if (dev->disconnected)
519 return -ENODEV;
520
Dan Carpentere44c1532016-05-09 05:22:55 -0300521 if (!rt_mutex_trylock(&dev->i2c_bus_lock))
522 return -EAGAIN;
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300523
524 /* Switch I2C bus if needed */
Frank Schaefera3ea4bf2013-03-26 13:38:36 -0300525 if (bus != dev->cur_i2c_bus &&
526 i2c_bus->algo_type == EM28XX_I2C_ALGO_EM28XX) {
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300527 if (bus == 1)
Mauro Carvalho Chehab3190fbe2013-03-21 06:03:27 -0300528 reg = EM2874_I2C_SECONDARY_BUS_SELECT;
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300529 else
Mauro Carvalho Chehab3190fbe2013-03-21 06:03:27 -0300530 reg = 0;
531 em28xx_write_reg_bits(dev, EM28XX_R06_I2C_CLK, reg,
532 EM2874_I2C_SECONDARY_BUS_SELECT);
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300533 dev->cur_i2c_bus = bus;
534 }
535
536 if (num <= 0) {
537 rt_mutex_unlock(&dev->i2c_bus_lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800538 return 0;
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300539 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800540 for (i = 0; i < num; i++) {
541 addr = msgs[i].addr << 1;
Mauro Carvalho Chehabe63b0092014-01-04 05:42:11 -0300542 if (!msgs[i].len) {
543 /*
544 * no len: check only for device presence
545 * This code is only called during device probe.
546 */
Frank Schaefera3ea4bf2013-03-26 13:38:36 -0300547 rc = i2c_check_for_device(i2c_bus, addr);
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200548
549 if (rc == -ENXIO)
550 rc = -ENODEV;
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -0800551 } else if (msgs[i].flags & I2C_M_RD) {
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800552 /* read bytes */
Frank Schaefera3ea4bf2013-03-26 13:38:36 -0300553 rc = i2c_recv_bytes(i2c_bus, msgs[i]);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800554 } else {
555 /* write bytes */
Frank Schaefera3ea4bf2013-03-26 13:38:36 -0300556 rc = i2c_send_bytes(i2c_bus, msgs[i], i == num - 1);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800557 }
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200558
559 if (rc < 0)
560 goto error;
561
562 dprintk(2, "%s %s addr=%02x len=%d: %*ph\n",
563 (msgs[i].flags & I2C_M_RD) ? "read" : "write",
564 i == num - 1 ? "stop" : "nonstop",
565 addr, msgs[i].len,
566 msgs[i].len, msgs[i].buf);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800567 }
568
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300569 rt_mutex_unlock(&dev->i2c_bus_lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800570 return num;
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200571
572error:
573 dprintk(2, "%s %s addr=%02x len=%d: %sERROR: %i\n",
574 (msgs[i].flags & I2C_M_RD) ? "read" : "write",
575 i == num - 1 ? "stop" : "nonstop",
576 addr, msgs[i].len,
577 (rc == -ENODEV) ? "no device " : "",
578 rc);
579
580 rt_mutex_unlock(&dev->i2c_bus_lock);
581 return rc;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800582}
583
Frank Schaeferfa74aca2013-03-24 17:09:59 -0300584/*
585 * based on linux/sunrpc/svcauth.h and linux/hash.h
Mauro Carvalho Chehab03910cc2007-11-03 21:20:59 -0300586 * The original hash function returns a different value, if arch is x86_64
Frank Schaeferfa74aca2013-03-24 17:09:59 -0300587 * or i386.
Mauro Carvalho Chehab03910cc2007-11-03 21:20:59 -0300588 */
589static inline unsigned long em28xx_hash_mem(char *buf, int length, int bits)
590{
591 unsigned long hash = 0;
592 unsigned long l = 0;
593 int len = 0;
594 unsigned char c;
Mauro Carvalho Chehabfdf1bc92014-11-28 08:34:15 -0300595
Mauro Carvalho Chehab03910cc2007-11-03 21:20:59 -0300596 do {
597 if (len == length) {
598 c = (char)len;
599 len = -1;
600 } else
601 c = *buf++;
602 l = (l << 8) | c;
603 len++;
604 if ((len & (32 / 8 - 1)) == 0)
605 hash = ((hash^l) * 0x9e370001UL);
606 } while (len);
607
608 return (hash >> (32 - bits)) & 0xffffffffUL;
609}
610
Frank Schaeferfa74aca2013-03-24 17:09:59 -0300611/*
612 * Helper function to read data blocks from i2c clients with 8 or 16 bit
613 * address width, 8 bit register width and auto incrementation been activated
614 */
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300615static int em28xx_i2c_read_block(struct em28xx *dev, unsigned bus, u16 addr,
616 bool addr_w16, u16 len, u8 *data)
Frank Schaeferd832c5b2013-03-03 15:37:41 -0300617{
618 int remain = len, rsize, rsize_max, ret;
619 u8 buf[2];
620
621 /* Sanity check */
622 if (addr + remain > (addr_w16 * 0xff00 + 0xff + 1))
623 return -EINVAL;
624 /* Select address */
625 buf[0] = addr >> 8;
626 buf[1] = addr & 0xff;
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300627 ret = i2c_master_send(&dev->i2c_client[bus], buf + !addr_w16, 1 + addr_w16);
Frank Schaeferd832c5b2013-03-03 15:37:41 -0300628 if (ret < 0)
629 return ret;
630 /* Read data */
631 if (dev->board.is_em2800)
632 rsize_max = 4;
633 else
634 rsize_max = 64;
635 while (remain > 0) {
636 if (remain > rsize_max)
637 rsize = rsize_max;
638 else
639 rsize = remain;
640
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300641 ret = i2c_master_recv(&dev->i2c_client[bus], data, rsize);
Frank Schaeferd832c5b2013-03-03 15:37:41 -0300642 if (ret < 0)
643 return ret;
644
645 remain -= rsize;
646 data += rsize;
647 }
648
649 return len;
650}
651
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300652static int em28xx_i2c_eeprom(struct em28xx *dev, unsigned bus,
653 u8 **eedata, u16 *eedata_len)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800654{
Frank Schaefer510e8842013-03-03 15:37:43 -0300655 const u16 len = 256;
Frank Schaeferfa74aca2013-03-24 17:09:59 -0300656 /*
657 * FIXME common length/size for bytes to read, to display, hash
Frank Schaefer510e8842013-03-03 15:37:43 -0300658 * calculation and returned device dataset. Simplifies the code a lot,
Frank Schaeferfa74aca2013-03-24 17:09:59 -0300659 * but we might have to deal with multiple sizes in the future !
660 */
Mauro Carvalho Chehab50f0a9d2013-12-28 08:23:30 -0300661 int err;
Frank Schaefer510e8842013-03-03 15:37:43 -0300662 struct em28xx_eeprom *dev_config;
663 u8 buf, *data;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800664
Frank Schaefera2179682013-03-03 15:37:42 -0300665 *eedata = NULL;
Frank Schaefer510e8842013-03-03 15:37:43 -0300666 *eedata_len = 0;
Frank Schaefera2179682013-03-03 15:37:42 -0300667
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300668 /* EEPROM is always on i2c bus 0 on all known devices. */
669
670 dev->i2c_client[bus].addr = 0xa0 >> 1;
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -0800671
672 /* Check if board has eeprom */
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300673 err = i2c_master_recv(&dev->i2c_client[bus], &buf, 0);
Douglas Schilling Landgraff2a01a02008-09-08 03:27:20 -0300674 if (err < 0) {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200675 dev_info(&dev->udev->dev, "board has no eeprom\n");
Mauro Carvalho Chehabc41109fc92008-11-15 23:44:14 -0300676 return -ENODEV;
Douglas Schilling Landgraff2a01a02008-09-08 03:27:20 -0300677 }
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -0800678
Frank Schaefera2179682013-03-03 15:37:42 -0300679 data = kzalloc(len, GFP_KERNEL);
680 if (data == NULL)
681 return -ENOMEM;
682
Frank Schaeferd832c5b2013-03-03 15:37:41 -0300683 /* Read EEPROM content */
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300684 err = em28xx_i2c_read_block(dev, bus, 0x0000,
685 dev->eeprom_addrwidth_16bit,
Frank Schaefera2179682013-03-03 15:37:42 -0300686 len, data);
Frank Schaeferd832c5b2013-03-03 15:37:41 -0300687 if (err != len) {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200688 dev_err(&dev->udev->dev,
689 "failed to read eeprom (err=%d)\n", err);
Frank Schaefer510e8842013-03-03 15:37:43 -0300690 goto error;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800691 }
Frank Schaefer90271962013-01-03 14:27:06 -0300692
Mauro Carvalho Chehab50f0a9d2013-12-28 08:23:30 -0300693 if (i2c_debug) {
694 /* Display eeprom content */
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200695 print_hex_dump(KERN_DEBUG, "em28xx eeprom ", DUMP_PREFIX_OFFSET,
Mauro Carvalho Chehab50f0a9d2013-12-28 08:23:30 -0300696 16, 1, data, len, true);
697
698 if (dev->eeprom_addrwidth_16bit)
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200699 dev_info(&dev->udev->dev,
700 "eeprom %06x: ... (skipped)\n", 256);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800701 }
702
Frank Schaefer87b52432013-03-03 15:37:40 -0300703 if (dev->eeprom_addrwidth_16bit &&
Frank Schaefera2179682013-03-03 15:37:42 -0300704 data[0] == 0x26 && data[3] == 0x00) {
Frank Schaefer87b52432013-03-03 15:37:40 -0300705 /* new eeprom format; size 4-64kb */
Frank Schaefer510e8842013-03-03 15:37:43 -0300706 u16 mc_start;
707 u16 hwconf_offset;
708
Frank Schaefera2179682013-03-03 15:37:42 -0300709 dev->hash = em28xx_hash_mem(data, len, 32);
Frank Schaefer510e8842013-03-03 15:37:43 -0300710 mc_start = (data[1] << 8) + 4; /* usually 0x0004 */
711
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200712 dev_info(&dev->udev->dev,
713 "EEPROM ID = %02x %02x %02x %02x, EEPROM hash = 0x%08lx\n",
714 data[0], data[1], data[2], data[3], dev->hash);
715 dev_info(&dev->udev->dev,
716 "EEPROM info:\n");
717 dev_info(&dev->udev->dev,
718 "\tmicrocode start address = 0x%04x, boot configuration = 0x%02x\n",
719 mc_start, data[2]);
Frank Schaeferfa74aca2013-03-24 17:09:59 -0300720 /*
721 * boot configuration (address 0x0002):
Frank Schaefer87b52432013-03-03 15:37:40 -0300722 * [0] microcode download speed: 1 = 400 kHz; 0 = 100 kHz
723 * [1] always selects 12 kb RAM
724 * [2] USB device speed: 1 = force Full Speed; 0 = auto detect
725 * [4] 1 = force fast mode and no suspend for device testing
726 * [5:7] USB PHY tuning registers; determined by device
727 * characterization
728 */
729
Frank Schaeferfa74aca2013-03-24 17:09:59 -0300730 /*
731 * Read hardware config dataset offset from address
732 * (microcode start + 46)
733 */
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300734 err = em28xx_i2c_read_block(dev, bus, mc_start + 46, 1, 2,
735 data);
Frank Schaefer510e8842013-03-03 15:37:43 -0300736 if (err != 2) {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200737 dev_err(&dev->udev->dev,
738 "failed to read hardware configuration data from eeprom (err=%d)\n",
739 err);
Frank Schaefer510e8842013-03-03 15:37:43 -0300740 goto error;
741 }
Frank Schaefer87b52432013-03-03 15:37:40 -0300742
Frank Schaefer510e8842013-03-03 15:37:43 -0300743 /* Calculate hardware config dataset start address */
744 hwconf_offset = mc_start + data[0] + (data[1] << 8);
745
746 /* Read hardware config dataset */
Frank Schaeferfa74aca2013-03-24 17:09:59 -0300747 /*
748 * NOTE: the microcode copy can be multiple pages long, but
Frank Schaefer510e8842013-03-03 15:37:43 -0300749 * we assume the hardware config dataset is the same as in
750 * the old eeprom and not longer than 256 bytes.
751 * tveeprom is currently also limited to 256 bytes.
752 */
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300753 err = em28xx_i2c_read_block(dev, bus, hwconf_offset, 1, len,
754 data);
Frank Schaefer510e8842013-03-03 15:37:43 -0300755 if (err != len) {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200756 dev_err(&dev->udev->dev,
757 "failed to read hardware configuration data from eeprom (err=%d)\n",
758 err);
Frank Schaefer510e8842013-03-03 15:37:43 -0300759 goto error;
760 }
761
762 /* Verify hardware config dataset */
763 /* NOTE: not all devices provide this type of dataset */
764 if (data[0] != 0x1a || data[1] != 0xeb ||
765 data[2] != 0x67 || data[3] != 0x95) {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200766 dev_info(&dev->udev->dev,
767 "\tno hardware configuration dataset found in eeprom\n");
Frank Schaefer510e8842013-03-03 15:37:43 -0300768 kfree(data);
769 return 0;
770 }
771
772 /* TODO: decrypt eeprom data for camera bridges (em25xx, em276x+) */
773
774 } else if (!dev->eeprom_addrwidth_16bit &&
775 data[0] == 0x1a && data[1] == 0xeb &&
776 data[2] == 0x67 && data[3] == 0x95) {
777 dev->hash = em28xx_hash_mem(data, len, 32);
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200778 dev_info(&dev->udev->dev,
779 "EEPROM ID = %02x %02x %02x %02x, EEPROM hash = 0x%08lx\n",
780 data[0], data[1], data[2], data[3], dev->hash);
781 dev_info(&dev->udev->dev,
782 "EEPROM info:\n");
Frank Schaefer510e8842013-03-03 15:37:43 -0300783 } else {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200784 dev_info(&dev->udev->dev,
785 "unknown eeprom format or eeprom corrupted !\n");
Frank Schaefer510e8842013-03-03 15:37:43 -0300786 err = -ENODEV;
787 goto error;
Frank Schaeferf55eacb2013-03-03 15:37:37 -0300788 }
789
Frank Schaefera2179682013-03-03 15:37:42 -0300790 *eedata = data;
Frank Schaefer510e8842013-03-03 15:37:43 -0300791 *eedata_len = len;
Alban Browaeys32bf7c62013-07-16 18:57:53 -0300792 dev_config = (void *)*eedata;
Frank Schaefera2179682013-03-03 15:37:42 -0300793
Frank Schaefer510e8842013-03-03 15:37:43 -0300794 switch (le16_to_cpu(dev_config->chip_conf) >> 4 & 0x3) {
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800795 case 0:
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200796 dev_info(&dev->udev->dev, "\tNo audio on board.\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800797 break;
798 case 1:
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200799 dev_info(&dev->udev->dev, "\tAC97 audio (5 sample rates)\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800800 break;
801 case 2:
Frank Schaefer687ff8b2013-12-22 11:17:46 -0300802 if (dev->chip_id < CHIP_ID_EM2860)
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200803 dev_info(&dev->udev->dev,
804 "\tI2S audio, sample rate=32k\n");
Frank Schaefer687ff8b2013-12-22 11:17:46 -0300805 else
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200806 dev_info(&dev->udev->dev,
807 "\tI2S audio, 3 sample rates\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800808 break;
809 case 3:
Frank Schaefer687ff8b2013-12-22 11:17:46 -0300810 if (dev->chip_id < CHIP_ID_EM2860)
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200811 dev_info(&dev->udev->dev,
812 "\tI2S audio, 3 sample rates\n");
Frank Schaefer687ff8b2013-12-22 11:17:46 -0300813 else
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200814 dev_info(&dev->udev->dev,
815 "\tI2S audio, 5 sample rates\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800816 break;
817 }
818
Frank Schaefer510e8842013-03-03 15:37:43 -0300819 if (le16_to_cpu(dev_config->chip_conf) & 1 << 3)
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200820 dev_info(&dev->udev->dev, "\tUSB Remote wakeup capable\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800821
Frank Schaefer510e8842013-03-03 15:37:43 -0300822 if (le16_to_cpu(dev_config->chip_conf) & 1 << 2)
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200823 dev_info(&dev->udev->dev, "\tUSB Self power capable\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800824
Frank Schaefer510e8842013-03-03 15:37:43 -0300825 switch (le16_to_cpu(dev_config->chip_conf) & 0x3) {
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800826 case 0:
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200827 dev_info(&dev->udev->dev, "\t500mA max power\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800828 break;
829 case 1:
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200830 dev_info(&dev->udev->dev, "\t400mA max power\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800831 break;
832 case 2:
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200833 dev_info(&dev->udev->dev, "\t300mA max power\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800834 break;
835 case 3:
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200836 dev_info(&dev->udev->dev, "\t200mA max power\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800837 break;
838 }
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200839 dev_info(&dev->udev->dev,
840 "\tTable at offset 0x%02x, strings=0x%04x, 0x%04x, 0x%04x\n",
841 dev_config->string_idx_table,
842 le16_to_cpu(dev_config->string1),
843 le16_to_cpu(dev_config->string2),
844 le16_to_cpu(dev_config->string3));
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800845
846 return 0;
Frank Schaefer510e8842013-03-03 15:37:43 -0300847
848error:
849 kfree(data);
850 return err;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800851}
852
853/* ----------------------------------------------------------- */
854
855/*
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800856 * functionality()
857 */
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300858static u32 functionality(struct i2c_adapter *i2c_adap)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800859{
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300860 struct em28xx_i2c_bus *i2c_bus = i2c_adap->algo_data;
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300861
Frank Schaefera3ea4bf2013-03-26 13:38:36 -0300862 if ((i2c_bus->algo_type == EM28XX_I2C_ALGO_EM28XX) ||
863 (i2c_bus->algo_type == EM28XX_I2C_ALGO_EM25XX_BUS_B)) {
864 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
865 } else if (i2c_bus->algo_type == EM28XX_I2C_ALGO_EM2800) {
866 return (I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL) &
867 ~I2C_FUNC_SMBUS_WRITE_BLOCK_DATA;
868 }
869
870 WARN(1, "Unknown i2c bus algorithm.\n");
871 return 0;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800872}
873
Julia Lawall78f2c502016-08-29 10:12:01 -0300874static const struct i2c_algorithm em28xx_algo = {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800875 .master_xfer = em28xx_i2c_xfer,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800876 .functionality = functionality,
877};
878
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800879static struct i2c_adapter em28xx_adap_template = {
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800880 .owner = THIS_MODULE,
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800881 .name = "em28xx",
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800882 .algo = &em28xx_algo,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800883};
884
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800885static struct i2c_client em28xx_client_template = {
886 .name = "em28xx internal",
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800887};
888
889/* ----------------------------------------------------------- */
890
891/*
892 * i2c_devs
893 * incomplete list of known devices
894 */
895static char *i2c_devs[128] = {
Wilson Michaels9aa785b2014-11-11 19:43:51 -0300896 [0x1c >> 1] = "lgdt330x",
Frank Schaefer0b3966e2013-01-13 10:15:08 -0300897 [0x3e >> 1] = "remote IR sensor",
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800898 [0x4a >> 1] = "saa7113h",
Martin Blumenstingl729841e2012-06-12 18:19:27 -0300899 [0x52 >> 1] = "drxk",
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800900 [0x60 >> 1] = "remote IR sensor",
Markus Rechbergerda45a2a2005-11-08 21:37:31 -0800901 [0x8e >> 1] = "remote IR sensor",
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800902 [0x86 >> 1] = "tda9887",
903 [0x80 >> 1] = "msp34xx",
904 [0x88 >> 1] = "msp34xx",
905 [0xa0 >> 1] = "eeprom",
Vitaly Wool2bd1d9eb2009-03-04 08:27:52 -0300906 [0xb0 >> 1] = "tda9874",
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800907 [0xb8 >> 1] = "tvp5150a",
Mauro Carvalho Chehab791a08f2009-07-03 15:36:18 -0300908 [0xba >> 1] = "webcam sensor or tvp5150a",
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800909 [0xc0 >> 1] = "tuner (analog)",
910 [0xc2 >> 1] = "tuner (analog)",
911 [0xc4 >> 1] = "tuner (analog)",
912 [0xc6 >> 1] = "tuner (analog)",
913};
914
915/*
916 * do_i2c_scan()
917 * check i2c address range for devices
918 */
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300919void em28xx_do_i2c_scan(struct em28xx *dev, unsigned bus)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800920{
Sascha Sommerfad7b952007-11-04 08:06:48 -0300921 u8 i2c_devicelist[128];
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800922 unsigned char buf;
923 int i, rc;
924
Sascha Sommerfad7b952007-11-04 08:06:48 -0300925 memset(i2c_devicelist, 0, ARRAY_SIZE(i2c_devicelist));
926
Mauro Carvalho Chehab53c4e952007-03-29 08:42:30 -0300927 for (i = 0; i < ARRAY_SIZE(i2c_devs); i++) {
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300928 dev->i2c_client[bus].addr = i;
929 rc = i2c_master_recv(&dev->i2c_client[bus], &buf, 0);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800930 if (rc < 0)
931 continue;
Sascha Sommerfad7b952007-11-04 08:06:48 -0300932 i2c_devicelist[i] = i;
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200933 dev_info(&dev->udev->dev,
934 "found i2c device @ 0x%x on bus %d [%s]\n",
935 i << 1, bus, i2c_devs[i] ? i2c_devs[i] : "???");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800936 }
Sascha Sommerfad7b952007-11-04 08:06:48 -0300937
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300938 if (bus == dev->def_i2c_bus)
939 dev->i2c_hash = em28xx_hash_mem(i2c_devicelist,
940 ARRAY_SIZE(i2c_devicelist), 32);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800941}
942
943/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800944 * em28xx_i2c_register()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800945 * register i2c bus
946 */
Frank Schaefera3ea4bf2013-03-26 13:38:36 -0300947int em28xx_i2c_register(struct em28xx *dev, unsigned bus,
948 enum em28xx_i2c_algo_type algo_type)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800949{
Douglas Schilling Landgraff2a01a02008-09-08 03:27:20 -0300950 int retval;
951
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800952 BUG_ON(!dev->em28xx_write_regs || !dev->em28xx_read_reg);
953 BUG_ON(!dev->em28xx_write_regs_req || !dev->em28xx_read_reg_req);
Douglas Schilling Landgraff2a01a02008-09-08 03:27:20 -0300954
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300955 if (bus >= NUM_I2C_BUSES)
956 return -ENODEV;
957
958 dev->i2c_adap[bus] = em28xx_adap_template;
959 dev->i2c_adap[bus].dev.parent = &dev->udev->dev;
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200960 strcpy(dev->i2c_adap[bus].name, dev_name(&dev->udev->dev));
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300961
962 dev->i2c_bus[bus].bus = bus;
Frank Schaefera3ea4bf2013-03-26 13:38:36 -0300963 dev->i2c_bus[bus].algo_type = algo_type;
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300964 dev->i2c_bus[bus].dev = dev;
965 dev->i2c_adap[bus].algo_data = &dev->i2c_bus[bus];
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300966
967 retval = i2c_add_adapter(&dev->i2c_adap[bus]);
Douglas Schilling Landgraff2a01a02008-09-08 03:27:20 -0300968 if (retval < 0) {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200969 dev_err(&dev->udev->dev,
970 "%s: i2c_add_adapter failed! retval [%d]\n",
971 __func__, retval);
Douglas Schilling Landgraff2a01a02008-09-08 03:27:20 -0300972 return retval;
973 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800974
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300975 dev->i2c_client[bus] = em28xx_client_template;
976 dev->i2c_client[bus].adapter = &dev->i2c_adap[bus];
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800977
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300978 /* Up to now, all eeproms are at bus 0 */
979 if (!bus) {
980 retval = em28xx_i2c_eeprom(dev, bus, &dev->eedata, &dev->eedata_len);
981 if ((retval < 0) && (retval != -ENODEV)) {
Mauro Carvalho Chehabce8591f2016-10-20 08:42:03 -0200982 dev_err(&dev->udev->dev,
983 "%s: em28xx_i2_eeprom failed! retval [%d]\n",
984 __func__, retval);
Mauro Carvalho Chehabc41109fc92008-11-15 23:44:14 -0300985
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300986 return retval;
987 }
Douglas Schilling Landgraff2a01a02008-09-08 03:27:20 -0300988 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800989
990 if (i2c_scan)
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -0300991 em28xx_do_i2c_scan(dev, bus);
Mauro Carvalho Chehabc41109fc92008-11-15 23:44:14 -0300992
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800993 return 0;
994}
995
996/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800997 * em28xx_i2c_unregister()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800998 * unregister i2c_bus
999 */
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -03001000int em28xx_i2c_unregister(struct em28xx *dev, unsigned bus)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001001{
Mauro Carvalho Chehabaab31252013-03-05 06:55:28 -03001002 if (bus >= NUM_I2C_BUSES)
1003 return -ENODEV;
1004
1005 i2c_del_adapter(&dev->i2c_adap[bus]);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001006 return 0;
1007}