| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | /*
 | 
					
						
							|  |  |  |    cx231xx-i2c.c - driver for Conexant Cx23100/101/102 USB video capture devices | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Copyright (C) 2008 <srinivasa.deevi at conexant dot com> | 
					
						
							| 
									
										
										
										
											2009-03-04 17:49:01 -03:00
										 |  |  | 		Based on em28xx driver | 
					
						
							|  |  |  | 		Based on Cx23885 driver | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  |    This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |    it under the terms of the GNU General Public License as published by | 
					
						
							|  |  |  |    the Free Software Foundation; either version 2 of the License, or | 
					
						
							|  |  |  |    (at your option) any later version. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |    but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |    GNU General Public License for more details. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  |    along with this program; if not, write to the Free Software | 
					
						
							|  |  |  |    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-01 08:09:44 -03:00
										 |  |  | #include "cx231xx.h"
 | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | #include <linux/module.h>
 | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							|  |  |  | #include <linux/i2c.h>
 | 
					
						
							| 
									
										
										
										
											2014-10-02 02:21:03 -03:00
										 |  |  | #include <linux/i2c-mux.h>
 | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | #include <media/v4l2-common.h>
 | 
					
						
							|  |  |  | #include <media/tuner.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ----------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static unsigned int i2c_scan; | 
					
						
							|  |  |  | module_param(i2c_scan, int, 0444); | 
					
						
							|  |  |  | MODULE_PARM_DESC(i2c_scan, "scan i2c bus at insmod time"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static unsigned int i2c_debug; | 
					
						
							|  |  |  | module_param(i2c_debug, int, 0644); | 
					
						
							|  |  |  | MODULE_PARM_DESC(i2c_debug, "enable debug messages [i2c]"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define dprintk1(lvl, fmt, args...)			\
 | 
					
						
							|  |  |  | do {							\ | 
					
						
							|  |  |  | 	if (i2c_debug >= lvl) {				\ | 
					
						
							| 
									
										
										
										
											2009-03-10 21:16:26 -03:00
										 |  |  | 		printk(fmt, ##args);			\ | 
					
						
							|  |  |  | 		}					\ | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | } while (0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define dprintk2(lvl, fmt, args...)			\
 | 
					
						
							|  |  |  | do {							\ | 
					
						
							|  |  |  | 	if (i2c_debug >= lvl) {				\ | 
					
						
							|  |  |  | 		printk(KERN_DEBUG "%s at %s: " fmt,	\ | 
					
						
							|  |  |  | 		       dev->name, __func__ , ##args);	\ | 
					
						
							|  |  |  |       } 						\ | 
					
						
							|  |  |  | } while (0) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-02 02:21:01 -03:00
										 |  |  | static inline int get_real_i2c_port(struct cx231xx *dev, int bus_nr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (bus_nr == 1) | 
					
						
							|  |  |  | 		return dev->port_3_switch_enabled ? I2C_1_MUX_3 : I2C_1_MUX_1; | 
					
						
							|  |  |  | 	return bus_nr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-30 09:03:24 -03:00
										 |  |  | static inline bool is_tuner(struct cx231xx *dev, struct cx231xx_i2c *bus, | 
					
						
							|  |  |  | 			const struct i2c_msg *msg, int tuner_type) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-10-02 02:21:01 -03:00
										 |  |  | 	int i2c_port = get_real_i2c_port(dev, bus->nr); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (i2c_port != dev->board.tuner_i2c_master) | 
					
						
							| 
									
										
										
										
											2011-01-30 09:03:24 -03:00
										 |  |  | 		return false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (msg->addr != dev->board.tuner_addr) | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (dev->tuner_type != tuner_type) | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * cx231xx_i2c_send_bytes() | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2012-10-27 14:02:49 -03:00
										 |  |  | static int cx231xx_i2c_send_bytes(struct i2c_adapter *i2c_adap, | 
					
						
							|  |  |  | 				  const struct i2c_msg *msg) | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct cx231xx_i2c *bus = i2c_adap->algo_data; | 
					
						
							|  |  |  | 	struct cx231xx *dev = bus->dev; | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 	struct cx231xx_i2c_xfer_data req_data; | 
					
						
							|  |  |  | 	int status = 0; | 
					
						
							|  |  |  | 	u16 size = 0; | 
					
						
							|  |  |  | 	u8 loop = 0; | 
					
						
							|  |  |  | 	u8 saddr_len = 1; | 
					
						
							|  |  |  | 	u8 *buf_ptr = NULL; | 
					
						
							|  |  |  | 	u16 saddr = 0; | 
					
						
							|  |  |  | 	u8 need_gpio = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-30 09:03:24 -03:00
										 |  |  | 	if (is_tuner(dev, bus, msg, TUNER_XC5000)) { | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 		size = msg->len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (size == 2) {	/* register write sub addr */ | 
					
						
							| 
									
										
										
										
											2009-03-10 21:16:26 -03:00
										 |  |  | 			/* Just writing sub address will cause problem
 | 
					
						
							|  |  |  | 			* to XC5000. So ignore the request */ | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 			return 0; | 
					
						
							|  |  |  | 		} else if (size == 4) {	/* register write with sub addr */ | 
					
						
							|  |  |  | 			if (msg->len >= 2) | 
					
						
							|  |  |  | 				saddr = msg->buf[0] << 8 | msg->buf[1]; | 
					
						
							|  |  |  | 			else if (msg->len == 1) | 
					
						
							|  |  |  | 				saddr = msg->buf[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			switch (saddr) { | 
					
						
							|  |  |  | 			case 0x0000:	/* start tuner calibration mode */ | 
					
						
							|  |  |  | 				need_gpio = 1; | 
					
						
							| 
									
										
										
										
											2009-03-04 17:49:01 -03:00
										 |  |  | 				/* FW Loading is done */ | 
					
						
							|  |  |  | 				dev->xc_fw_load_done = 1; | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 				break; | 
					
						
							|  |  |  | 			case 0x000D:	/* Set signal source */ | 
					
						
							|  |  |  | 			case 0x0001:	/* Set TV standard - Video */ | 
					
						
							|  |  |  | 			case 0x0002:	/* Set TV standard - Audio */ | 
					
						
							|  |  |  | 			case 0x0003:	/* Set RF Frequency */ | 
					
						
							|  |  |  | 				need_gpio = 1; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			default: | 
					
						
							|  |  |  | 				if (dev->xc_fw_load_done) | 
					
						
							|  |  |  | 					need_gpio = 1; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (need_gpio) { | 
					
						
							|  |  |  | 				dprintk1(1, | 
					
						
							| 
									
										
										
										
											2009-03-04 17:49:01 -03:00
										 |  |  | 				"GPIO WRITE: addr 0x%x, len %d, saddr 0x%x\n", | 
					
						
							|  |  |  | 				msg->addr, msg->len, saddr); | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				return dev->cx231xx_gpio_i2c_write(dev, | 
					
						
							|  |  |  | 								   msg->addr, | 
					
						
							|  |  |  | 								   msg->buf, | 
					
						
							|  |  |  | 								   msg->len); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* special case for Xc5000 tuner case */ | 
					
						
							|  |  |  | 		saddr_len = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* adjust the length to correct length */ | 
					
						
							|  |  |  | 		size -= saddr_len; | 
					
						
							|  |  |  | 		buf_ptr = (u8 *) (msg->buf + 1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		do { | 
					
						
							|  |  |  | 			/* prepare xfer_data struct */ | 
					
						
							|  |  |  | 			req_data.dev_addr = msg->addr; | 
					
						
							|  |  |  | 			req_data.direction = msg->flags; | 
					
						
							|  |  |  | 			req_data.saddr_len = saddr_len; | 
					
						
							|  |  |  | 			req_data.saddr_dat = msg->buf[0]; | 
					
						
							|  |  |  | 			req_data.buf_size = size > 16 ? 16 : size; | 
					
						
							|  |  |  | 			req_data.p_buffer = (u8 *) (buf_ptr + loop * 16); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			bus->i2c_nostop = (size > 16) ? 1 : 0; | 
					
						
							|  |  |  | 			bus->i2c_reserve = (loop == 0) ? 0 : 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			/* usb send command */ | 
					
						
							|  |  |  | 			status = dev->cx231xx_send_usb_command(bus, &req_data); | 
					
						
							|  |  |  | 			loop++; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (size >= 16) | 
					
						
							|  |  |  | 				size -= 16; | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				size = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		} while (size > 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		bus->i2c_nostop = 0; | 
					
						
							|  |  |  | 		bus->i2c_reserve = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} else {		/* regular case */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* prepare xfer_data struct */ | 
					
						
							|  |  |  | 		req_data.dev_addr = msg->addr; | 
					
						
							|  |  |  | 		req_data.direction = msg->flags; | 
					
						
							|  |  |  | 		req_data.saddr_len = 0; | 
					
						
							|  |  |  | 		req_data.saddr_dat = 0; | 
					
						
							|  |  |  | 		req_data.buf_size = msg->len; | 
					
						
							|  |  |  | 		req_data.p_buffer = msg->buf; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* usb send command */ | 
					
						
							|  |  |  | 		status = dev->cx231xx_send_usb_command(bus, &req_data); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return status < 0 ? status : 0; | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * cx231xx_i2c_recv_bytes() | 
					
						
							|  |  |  |  * read a byte from the i2c device | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int cx231xx_i2c_recv_bytes(struct i2c_adapter *i2c_adap, | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 				  const struct i2c_msg *msg) | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 	struct cx231xx_i2c *bus = i2c_adap->algo_data; | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 	struct cx231xx *dev = bus->dev; | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 	struct cx231xx_i2c_xfer_data req_data; | 
					
						
							|  |  |  | 	int status = 0; | 
					
						
							|  |  |  | 	u16 saddr = 0; | 
					
						
							|  |  |  | 	u8 need_gpio = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-30 09:03:24 -03:00
										 |  |  | 	if (is_tuner(dev, bus, msg, TUNER_XC5000)) { | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 		if (msg->len == 2) | 
					
						
							|  |  |  | 			saddr = msg->buf[0] << 8 | msg->buf[1]; | 
					
						
							|  |  |  | 		else if (msg->len == 1) | 
					
						
							|  |  |  | 			saddr = msg->buf[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (dev->xc_fw_load_done) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			switch (saddr) { | 
					
						
							|  |  |  | 			case 0x0009:	/* BUSY check */ | 
					
						
							|  |  |  | 				dprintk1(1, | 
					
						
							| 
									
										
										
										
											2009-03-04 17:49:01 -03:00
										 |  |  | 				"GPIO R E A D: Special case BUSY check \n"); | 
					
						
							|  |  |  | 				/*Try read BUSY register, just set it to zero*/ | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 				msg->buf[0] = 0; | 
					
						
							|  |  |  | 				if (msg->len == 2) | 
					
						
							|  |  |  | 					msg->buf[1] = 0; | 
					
						
							|  |  |  | 				return 0; | 
					
						
							|  |  |  | 			case 0x0004:	/* read Lock status */ | 
					
						
							|  |  |  | 				need_gpio = 1; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (need_gpio) { | 
					
						
							| 
									
										
										
										
											2009-03-04 17:49:01 -03:00
										 |  |  | 				/* this is a special case to handle Xceive tuner
 | 
					
						
							|  |  |  | 				clock stretch issue with gpio based I2C */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 				dprintk1(1, | 
					
						
							| 
									
										
										
										
											2009-03-04 17:49:01 -03:00
										 |  |  | 				"GPIO R E A D: addr 0x%x, len %d, saddr 0x%x\n", | 
					
						
							|  |  |  | 				msg->addr, msg->len, | 
					
						
							|  |  |  | 				msg->buf[0] << 8 | msg->buf[1]); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 				status = | 
					
						
							|  |  |  | 				    dev->cx231xx_gpio_i2c_write(dev, msg->addr, | 
					
						
							|  |  |  | 								msg->buf, | 
					
						
							|  |  |  | 								msg->len); | 
					
						
							|  |  |  | 				status = | 
					
						
							|  |  |  | 				    dev->cx231xx_gpio_i2c_read(dev, msg->addr, | 
					
						
							|  |  |  | 							       msg->buf, | 
					
						
							|  |  |  | 							       msg->len); | 
					
						
							|  |  |  | 				return status; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* prepare xfer_data struct */ | 
					
						
							|  |  |  | 		req_data.dev_addr = msg->addr; | 
					
						
							|  |  |  | 		req_data.direction = msg->flags; | 
					
						
							|  |  |  | 		req_data.saddr_len = msg->len; | 
					
						
							|  |  |  | 		req_data.saddr_dat = msg->buf[0] << 8 | msg->buf[1]; | 
					
						
							|  |  |  | 		req_data.buf_size = msg->len; | 
					
						
							|  |  |  | 		req_data.p_buffer = msg->buf; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* usb send command */ | 
					
						
							|  |  |  | 		status = dev->cx231xx_send_usb_command(bus, &req_data); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* prepare xfer_data struct */ | 
					
						
							|  |  |  | 		req_data.dev_addr = msg->addr; | 
					
						
							|  |  |  | 		req_data.direction = msg->flags; | 
					
						
							|  |  |  | 		req_data.saddr_len = 0; | 
					
						
							|  |  |  | 		req_data.saddr_dat = 0; | 
					
						
							|  |  |  | 		req_data.buf_size = msg->len; | 
					
						
							|  |  |  | 		req_data.p_buffer = msg->buf; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* usb send command */ | 
					
						
							|  |  |  | 		status = dev->cx231xx_send_usb_command(bus, &req_data); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return status < 0 ? status : 0; | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * cx231xx_i2c_recv_bytes_with_saddr() | 
					
						
							|  |  |  |  * read a byte from the i2c device | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int cx231xx_i2c_recv_bytes_with_saddr(struct i2c_adapter *i2c_adap, | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 					     const struct i2c_msg *msg1, | 
					
						
							|  |  |  | 					     const struct i2c_msg *msg2) | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 	struct cx231xx_i2c *bus = i2c_adap->algo_data; | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 	struct cx231xx *dev = bus->dev; | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 	struct cx231xx_i2c_xfer_data req_data; | 
					
						
							|  |  |  | 	int status = 0; | 
					
						
							|  |  |  | 	u16 saddr = 0; | 
					
						
							|  |  |  | 	u8 need_gpio = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (msg1->len == 2) | 
					
						
							|  |  |  | 		saddr = msg1->buf[0] << 8 | msg1->buf[1]; | 
					
						
							|  |  |  | 	else if (msg1->len == 1) | 
					
						
							|  |  |  | 		saddr = msg1->buf[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-30 09:03:24 -03:00
										 |  |  | 	if (is_tuner(dev, bus, msg2, TUNER_XC5000)) { | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 		if ((msg2->len < 16)) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			dprintk1(1, | 
					
						
							| 
									
										
										
										
											2009-03-04 17:49:01 -03:00
										 |  |  | 			"i2c_read: addr 0x%x, len %d, saddr 0x%x, len %d\n", | 
					
						
							|  |  |  | 			msg2->addr, msg2->len, saddr, msg1->len); | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			switch (saddr) { | 
					
						
							|  |  |  | 			case 0x0008:	/* read FW load status */ | 
					
						
							|  |  |  | 				need_gpio = 1; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			case 0x0004:	/* read Lock status */ | 
					
						
							|  |  |  | 				need_gpio = 1; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (need_gpio) { | 
					
						
							|  |  |  | 				status = | 
					
						
							|  |  |  | 				    dev->cx231xx_gpio_i2c_write(dev, msg1->addr, | 
					
						
							|  |  |  | 								msg1->buf, | 
					
						
							|  |  |  | 								msg1->len); | 
					
						
							|  |  |  | 				status = | 
					
						
							|  |  |  | 				    dev->cx231xx_gpio_i2c_read(dev, msg2->addr, | 
					
						
							|  |  |  | 							       msg2->buf, | 
					
						
							|  |  |  | 							       msg2->len); | 
					
						
							|  |  |  | 				return status; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* prepare xfer_data struct */ | 
					
						
							|  |  |  | 	req_data.dev_addr = msg2->addr; | 
					
						
							|  |  |  | 	req_data.direction = msg2->flags; | 
					
						
							|  |  |  | 	req_data.saddr_len = msg1->len; | 
					
						
							|  |  |  | 	req_data.saddr_dat = saddr; | 
					
						
							|  |  |  | 	req_data.buf_size = msg2->len; | 
					
						
							|  |  |  | 	req_data.p_buffer = msg2->buf; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* usb send command */ | 
					
						
							|  |  |  | 	status = dev->cx231xx_send_usb_command(bus, &req_data); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return status < 0 ? status : 0; | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * cx231xx_i2c_check_for_device() | 
					
						
							|  |  |  |  * check if there is a i2c_device at the supplied address | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int cx231xx_i2c_check_for_device(struct i2c_adapter *i2c_adap, | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 					const struct i2c_msg *msg) | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 	struct cx231xx_i2c *bus = i2c_adap->algo_data; | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 	struct cx231xx *dev = bus->dev; | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 	struct cx231xx_i2c_xfer_data req_data; | 
					
						
							|  |  |  | 	int status = 0; | 
					
						
							| 
									
										
										
										
											2014-11-01 17:19:21 -03:00
										 |  |  | 	u8 buf[1]; | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 	/* prepare xfer_data struct */ | 
					
						
							|  |  |  | 	req_data.dev_addr = msg->addr; | 
					
						
							| 
									
										
										
										
											2014-11-01 17:19:21 -03:00
										 |  |  | 	req_data.direction = I2C_M_RD; | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 	req_data.saddr_len = 0; | 
					
						
							|  |  |  | 	req_data.saddr_dat = 0; | 
					
						
							| 
									
										
										
										
											2014-11-01 17:19:21 -03:00
										 |  |  | 	req_data.buf_size = 1; | 
					
						
							|  |  |  | 	req_data.p_buffer = buf; | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 	/* usb send command */ | 
					
						
							|  |  |  | 	status = dev->cx231xx_send_usb_command(bus, &req_data); | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 	return status < 0 ? status : 0; | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * cx231xx_i2c_xfer() | 
					
						
							|  |  |  |  * the main i2c transfer function | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int cx231xx_i2c_xfer(struct i2c_adapter *i2c_adap, | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 			    struct i2c_msg msgs[], int num) | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct cx231xx_i2c *bus = i2c_adap->algo_data; | 
					
						
							|  |  |  | 	struct cx231xx *dev = bus->dev; | 
					
						
							|  |  |  | 	int addr, rc, i, byte; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (num <= 0) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2010-07-06 18:12:25 -03:00
										 |  |  | 	mutex_lock(&dev->i2c_lock); | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 	for (i = 0; i < num; i++) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-12 17:41:10 -03:00
										 |  |  | 		addr = msgs[i].addr; | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-12 17:41:10 -03:00
										 |  |  | 		dprintk2(2, "%s %s addr=0x%x len=%d:", | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 			 (msgs[i].flags & I2C_M_RD) ? "read" : "write", | 
					
						
							|  |  |  | 			 i == num - 1 ? "stop" : "nonstop", addr, msgs[i].len); | 
					
						
							| 
									
										
										
										
											2009-03-04 17:49:01 -03:00
										 |  |  | 		if (!msgs[i].len) { | 
					
						
							|  |  |  | 			/* no len: check only for device presence */ | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 			rc = cx231xx_i2c_check_for_device(i2c_adap, &msgs[i]); | 
					
						
							|  |  |  | 			if (rc < 0) { | 
					
						
							|  |  |  | 				dprintk2(2, " no device\n"); | 
					
						
							| 
									
										
										
										
											2010-10-21 16:22:14 -03:00
										 |  |  | 				mutex_unlock(&dev->i2c_lock); | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 				return rc; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		} else if (msgs[i].flags & I2C_M_RD) { | 
					
						
							|  |  |  | 			/* read bytes */ | 
					
						
							|  |  |  | 			rc = cx231xx_i2c_recv_bytes(i2c_adap, &msgs[i]); | 
					
						
							|  |  |  | 			if (i2c_debug >= 2) { | 
					
						
							|  |  |  | 				for (byte = 0; byte < msgs[i].len; byte++) | 
					
						
							| 
									
										
										
										
											2013-12-23 08:12:21 -03:00
										 |  |  | 					printk(KERN_CONT " %02x", msgs[i].buf[byte]); | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} else if (i + 1 < num && (msgs[i + 1].flags & I2C_M_RD) && | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 			   msgs[i].addr == msgs[i + 1].addr | 
					
						
							| 
									
										
										
										
											2010-07-06 18:12:25 -03:00
										 |  |  | 			   && (msgs[i].len <= 2) && (bus->nr < 3)) { | 
					
						
							| 
									
										
										
										
											2013-12-12 17:41:10 -03:00
										 |  |  | 			/* write bytes */ | 
					
						
							|  |  |  | 			if (i2c_debug >= 2) { | 
					
						
							|  |  |  | 				for (byte = 0; byte < msgs[i].len; byte++) | 
					
						
							| 
									
										
										
										
											2013-12-23 08:12:21 -03:00
										 |  |  | 					printk(KERN_CONT " %02x", msgs[i].buf[byte]); | 
					
						
							|  |  |  | 				printk(KERN_CONT "\n"); | 
					
						
							| 
									
										
										
										
											2013-12-12 17:41:10 -03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 			/* read bytes */ | 
					
						
							| 
									
										
										
										
											2013-12-12 17:41:10 -03:00
										 |  |  | 			dprintk2(2, "plus %s %s addr=0x%x len=%d:", | 
					
						
							|  |  |  | 				(msgs[i+1].flags & I2C_M_RD) ? "read" : "write", | 
					
						
							|  |  |  | 				i+1 == num - 1 ? "stop" : "nonstop", addr, msgs[i+1].len); | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 			rc = cx231xx_i2c_recv_bytes_with_saddr(i2c_adap, | 
					
						
							|  |  |  | 							       &msgs[i], | 
					
						
							|  |  |  | 							       &msgs[i + 1]); | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 			if (i2c_debug >= 2) { | 
					
						
							| 
									
										
										
										
											2013-12-12 17:41:10 -03:00
										 |  |  | 				for (byte = 0; byte < msgs[i+1].len; byte++) | 
					
						
							| 
									
										
										
										
											2013-12-23 08:12:21 -03:00
										 |  |  | 					printk(KERN_CONT " %02x", msgs[i+1].buf[byte]); | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 			i++; | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 		} else { | 
					
						
							|  |  |  | 			/* write bytes */ | 
					
						
							|  |  |  | 			if (i2c_debug >= 2) { | 
					
						
							|  |  |  | 				for (byte = 0; byte < msgs[i].len; byte++) | 
					
						
							| 
									
										
										
										
											2013-12-23 08:12:21 -03:00
										 |  |  | 					printk(KERN_CONT " %02x", msgs[i].buf[byte]); | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 			rc = cx231xx_i2c_send_bytes(i2c_adap, &msgs[i]); | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		if (rc < 0) | 
					
						
							|  |  |  | 			goto err; | 
					
						
							|  |  |  | 		if (i2c_debug >= 2) | 
					
						
							| 
									
										
										
										
											2013-12-23 08:12:21 -03:00
										 |  |  | 			printk(KERN_CONT "\n"); | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-07-06 18:12:25 -03:00
										 |  |  | 	mutex_unlock(&dev->i2c_lock); | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 	return num; | 
					
						
							| 
									
										
										
										
											2009-03-04 17:49:01 -03:00
										 |  |  | err: | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 	dprintk2(2, " ERROR: %i\n", rc); | 
					
						
							| 
									
										
										
										
											2010-07-06 18:12:25 -03:00
										 |  |  | 	mutex_unlock(&dev->i2c_lock); | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 	return rc; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ----------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * functionality() | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static u32 functionality(struct i2c_adapter *adap) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return I2C_FUNC_SMBUS_EMUL | I2C_FUNC_I2C; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct i2c_algorithm cx231xx_algo = { | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 	.master_xfer = cx231xx_i2c_xfer, | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 	.functionality = functionality, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct i2c_adapter cx231xx_adap_template = { | 
					
						
							|  |  |  | 	.owner = THIS_MODULE, | 
					
						
							|  |  |  | 	.name = "cx231xx", | 
					
						
							|  |  |  | 	.algo = &cx231xx_algo, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ----------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * i2c_devs | 
					
						
							|  |  |  |  * incomplete list of known devices | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2014-11-02 07:53:25 -03:00
										 |  |  | static const char *i2c_devs[128] = { | 
					
						
							|  |  |  | 	[0x20 >> 1] = "demod", | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 	[0x60 >> 1] = "colibri", | 
					
						
							|  |  |  | 	[0x88 >> 1] = "hammerhead", | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 	[0x8e >> 1] = "CIR", | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 	[0x32 >> 1] = "GeminiIII", | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 	[0x02 >> 1] = "Aquarius", | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 	[0xa0 >> 1] = "eeprom", | 
					
						
							| 
									
										
										
										
											2011-01-30 09:03:24 -03:00
										 |  |  | 	[0xc0 >> 1] = "tuner", | 
					
						
							|  |  |  | 	[0xc2 >> 1] = "tuner", | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * cx231xx_do_i2c_scan() | 
					
						
							|  |  |  |  * check i2c address range for devices | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2014-10-02 02:20:53 -03:00
										 |  |  | void cx231xx_do_i2c_scan(struct cx231xx *dev, int i2c_port) | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | { | 
					
						
							|  |  |  | 	unsigned char buf; | 
					
						
							|  |  |  | 	int i, rc; | 
					
						
							| 
									
										
										
										
											2014-10-02 02:20:53 -03:00
										 |  |  | 	struct i2c_client client; | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-02 02:21:05 -03:00
										 |  |  | 	if (!i2c_scan) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-01 10:06:12 -03:00
										 |  |  | 	/* Don't generate I2C errors during scan */ | 
					
						
							|  |  |  | 	dev->i2c_scan_running = true; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-02 02:20:53 -03:00
										 |  |  | 	memset(&client, 0, sizeof(client)); | 
					
						
							| 
									
										
										
										
											2014-10-02 02:20:59 -03:00
										 |  |  | 	client.adapter = cx231xx_get_i2c_adap(dev, i2c_port); | 
					
						
							| 
									
										
										
										
											2014-10-02 02:20:53 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 	for (i = 0; i < 128; i++) { | 
					
						
							| 
									
										
										
										
											2014-10-02 02:20:53 -03:00
										 |  |  | 		client.addr = i; | 
					
						
							|  |  |  | 		rc = i2c_master_recv(&client, &buf, 0); | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 		if (rc < 0) | 
					
						
							|  |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2014-11-03 06:07:38 -03:00
										 |  |  | 		dev_info(dev->dev, | 
					
						
							| 
									
										
										
										
											2014-11-02 08:34:34 -03:00
										 |  |  | 			 "i2c scan: found device @ port %d addr 0x%x  [%s]\n", | 
					
						
							|  |  |  | 			 i2c_port, | 
					
						
							| 
									
										
										
										
											2014-11-02 07:21:44 -03:00
										 |  |  | 			 i << 1, | 
					
						
							|  |  |  | 			 i2c_devs[i] ? i2c_devs[i] : "???"); | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-11-01 10:06:12 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	dev->i2c_scan_running = false; | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * cx231xx_i2c_register() | 
					
						
							|  |  |  |  * register i2c bus | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | int cx231xx_i2c_register(struct cx231xx_i2c *bus) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 	struct cx231xx *dev = bus->dev; | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-03 06:14:34 -03:00
										 |  |  | 	BUG_ON(!dev->cx231xx_send_usb_command); | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-27 12:52:53 -03:00
										 |  |  | 	bus->i2c_adap = cx231xx_adap_template; | 
					
						
							| 
									
										
										
										
											2014-11-03 06:07:38 -03:00
										 |  |  | 	bus->i2c_adap.dev.parent = dev->dev; | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-02 02:20:56 -03:00
										 |  |  | 	snprintf(bus->i2c_adap.name, sizeof(bus->i2c_adap.name), "%s-%d", bus->dev->name, bus->nr); | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	bus->i2c_adap.algo_data = bus; | 
					
						
							| 
									
										
										
										
											2009-03-20 23:33:48 -03:00
										 |  |  | 	i2c_set_adapdata(&bus->i2c_adap, &dev->v4l2_dev); | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 	i2c_add_adapter(&bus->i2c_adap); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-02 02:21:05 -03:00
										 |  |  | 	if (0 != bus->i2c_rc) | 
					
						
							| 
									
										
										
										
											2014-11-03 06:07:38 -03:00
										 |  |  | 		dev_warn(dev->dev, | 
					
						
							| 
									
										
										
										
											2014-11-02 07:21:44 -03:00
										 |  |  | 			 "i2c bus %d register FAILED\n", bus->nr); | 
					
						
							| 
									
										
										
										
											2009-03-03 14:37:50 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return bus->i2c_rc; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * cx231xx_i2c_unregister() | 
					
						
							|  |  |  |  * unregister i2c_bus | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | int cx231xx_i2c_unregister(struct cx231xx_i2c *bus) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	i2c_del_adapter(&bus->i2c_adap); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-10-02 02:20:59 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-02 02:21:03 -03:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * cx231xx_i2c_mux_select() | 
					
						
							|  |  |  |  * switch i2c master number 1 between port1 and port3 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int cx231xx_i2c_mux_select(struct i2c_adapter *adap, | 
					
						
							|  |  |  | 			void *mux_priv, u32 chan_id) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct cx231xx *dev = mux_priv; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return cx231xx_enable_i2c_port_3(dev, chan_id); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int cx231xx_i2c_mux_register(struct cx231xx *dev, int mux_no) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct i2c_adapter *i2c_parent = &dev->i2c_bus[1].i2c_adap; | 
					
						
							|  |  |  | 	/* what is the correct mux_dev? */ | 
					
						
							| 
									
										
										
										
											2014-11-03 06:07:38 -03:00
										 |  |  | 	struct device *mux_dev = dev->dev; | 
					
						
							| 
									
										
										
										
											2014-10-02 02:21:03 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	dev->i2c_mux_adap[mux_no] = i2c_add_mux_adapter(i2c_parent, | 
					
						
							|  |  |  | 				mux_dev, | 
					
						
							|  |  |  | 				dev /* mux_priv */, | 
					
						
							|  |  |  | 				0, | 
					
						
							|  |  |  | 				mux_no /* chan_id */, | 
					
						
							|  |  |  | 				0 /* class */, | 
					
						
							|  |  |  | 				&cx231xx_i2c_mux_select, | 
					
						
							|  |  |  | 				NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!dev->i2c_mux_adap[mux_no]) | 
					
						
							| 
									
										
										
										
											2014-11-03 06:07:38 -03:00
										 |  |  | 		dev_warn(dev->dev, | 
					
						
							| 
									
										
										
										
											2014-11-02 07:21:44 -03:00
										 |  |  | 			 "i2c mux %d register FAILED\n", mux_no); | 
					
						
							| 
									
										
										
										
											2014-10-02 02:21:03 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void cx231xx_i2c_mux_unregister(struct cx231xx *dev, int mux_no) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	i2c_del_mux_adapter(dev->i2c_mux_adap[mux_no]); | 
					
						
							|  |  |  | 	dev->i2c_mux_adap[mux_no] = NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-02 02:20:59 -03:00
										 |  |  | struct i2c_adapter *cx231xx_get_i2c_adap(struct cx231xx *dev, int i2c_port) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	switch (i2c_port) { | 
					
						
							|  |  |  | 	case I2C_0: | 
					
						
							|  |  |  | 		return &dev->i2c_bus[0].i2c_adap; | 
					
						
							|  |  |  | 	case I2C_1: | 
					
						
							|  |  |  | 		return &dev->i2c_bus[1].i2c_adap; | 
					
						
							|  |  |  | 	case I2C_2: | 
					
						
							|  |  |  | 		return &dev->i2c_bus[2].i2c_adap; | 
					
						
							|  |  |  | 	case I2C_1_MUX_1: | 
					
						
							| 
									
										
										
										
											2014-10-02 02:21:03 -03:00
										 |  |  | 		return dev->i2c_mux_adap[0]; | 
					
						
							| 
									
										
										
										
											2014-10-02 02:20:59 -03:00
										 |  |  | 	case I2C_1_MUX_3: | 
					
						
							| 
									
										
										
										
											2014-10-02 02:21:03 -03:00
										 |  |  | 		return dev->i2c_mux_adap[1]; | 
					
						
							| 
									
										
										
										
											2014-10-02 02:20:59 -03:00
										 |  |  | 	default: | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL_GPL(cx231xx_get_i2c_adap); |