From patchwork Sun Apr 4 14:14:54 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jean Delvare X-Patchwork-Id: 90572 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.3) with ESMTP id o34EExjM028564 for ; Sun, 4 Apr 2010 14:14:59 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754305Ab0DDOO6 (ORCPT ); Sun, 4 Apr 2010 10:14:58 -0400 Received: from bamako.nerim.net ([62.4.17.28]:65516 "EHLO bamako.nerim.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753741Ab0DDOO5 (ORCPT ); Sun, 4 Apr 2010 10:14:57 -0400 Received: from localhost (localhost [127.0.0.1]) by bamako.nerim.net (Postfix) with ESMTP id 2BBA739DE5D; Sun, 4 Apr 2010 16:14:54 +0200 (CEST) X-Virus-Scanned: amavisd-new at nerim.net Received: from bamako.nerim.net ([127.0.0.1]) by localhost (bamako.nerim.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id NvddENTKblip; Sun, 4 Apr 2010 16:14:53 +0200 (CEST) Received: from hyperion.delvare (jdelvare.pck.nerim.net [62.212.121.182]) by bamako.nerim.net (Postfix) with ESMTP id C0EC439DE5A; Sun, 4 Apr 2010 16:14:52 +0200 (CEST) Date: Sun, 4 Apr 2010 16:14:54 +0200 From: Jean Delvare To: Linux I2C , LMML Subject: [PATCH 2/2] V4L/DVB: Use custom I2C probing function mechanism Message-ID: <20100404161454.0f99cc06@hyperion.delvare> X-Mailer: Claws Mail 3.5.0 (GTK+ 2.14.4; i586-suse-linux-gnu) Mime-Version: 1.0 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Sun, 04 Apr 2010 14:15:01 +0000 (UTC) --- linux-2.6.34-rc3.orig/drivers/media/video/cx23885/cx23885-i2c.c 2010-04-04 09:06:38.000000000 +0200 +++ linux-2.6.34-rc3/drivers/media/video/cx23885/cx23885-i2c.c 2010-04-04 13:34:34.000000000 +0200 @@ -28,6 +28,7 @@ #include "cx23885.h" #include +#include static unsigned int i2c_debug; module_param(i2c_debug, int, 0644); @@ -365,17 +366,8 @@ int cx23885_i2c_register(struct cx23885_ memset(&info, 0, sizeof(struct i2c_board_info)); strlcpy(info.type, "ir_video", I2C_NAME_SIZE); - /* - * We can't call i2c_new_probed_device() because it uses - * quick writes for probing and the IR receiver device only - * replies to reads. - */ - if (i2c_smbus_xfer(&bus->i2c_adap, addr_list[0], 0, - I2C_SMBUS_READ, 0, I2C_SMBUS_QUICK, - NULL) >= 0) { - info.addr = addr_list[0]; - i2c_new_device(&bus->i2c_adap, &info); - } + i2c_new_probed_device(&bus->i2c_adap, &info, addr_list, + ir_i2c_probe); } return bus->i2c_rc; --- linux-2.6.34-rc3.orig/drivers/media/video/cx88/cx88-i2c.c 2010-04-04 09:06:38.000000000 +0200 +++ linux-2.6.34-rc3/drivers/media/video/cx88/cx88-i2c.c 2010-04-04 13:34:34.000000000 +0200 @@ -34,6 +34,7 @@ #include "cx88.h" #include +#include static unsigned int i2c_debug; module_param(i2c_debug, int, 0644); @@ -188,24 +189,11 @@ int cx88_i2c_init(struct cx88_core *core 0x18, 0x6b, 0x71, I2C_CLIENT_END }; - const unsigned short *addrp; memset(&info, 0, sizeof(struct i2c_board_info)); strlcpy(info.type, "ir_video", I2C_NAME_SIZE); - /* - * We can't call i2c_new_probed_device() because it uses - * quick writes for probing and at least some R receiver - * devices only reply to reads. - */ - for (addrp = addr_list; *addrp != I2C_CLIENT_END; addrp++) { - if (i2c_smbus_xfer(&core->i2c_adap, *addrp, 0, - I2C_SMBUS_READ, 0, - I2C_SMBUS_QUICK, NULL) >= 0) { - info.addr = *addrp; - i2c_new_device(&core->i2c_adap, &info); - break; - } - } + i2c_new_probed_device(&core->i2c_adap, &info, addr_list, + ir_i2c_probe); } return core->i2c_rc; } --- linux-2.6.34-rc3.orig/drivers/media/IR/ir-functions.c 2010-03-18 17:06:30.000000000 +0100 +++ linux-2.6.34-rc3/drivers/media/IR/ir-functions.c 2010-04-04 14:30:29.000000000 +0200 @@ -23,6 +23,7 @@ #include #include #include +#include #include /* -------------------------------------------------------------------------- */ @@ -353,3 +354,14 @@ void ir_rc5_timer_keyup(unsigned long da ir_input_nokey(ir->dev, &ir->ir); } EXPORT_SYMBOL_GPL(ir_rc5_timer_keyup); + +/* Some functions only needed for I2C devices */ +#if defined CONFIG_I2C || defined CONFIG_I2C_MODULE +/* use quick read command for probe, some IR chips don't support writes */ +int ir_i2c_probe(struct i2c_adapter *i2c, unsigned short addr) +{ + return i2c_smbus_xfer(i2c, addr, 0, I2C_SMBUS_READ, 0, + I2C_SMBUS_QUICK, NULL) >= 0; +} +EXPORT_SYMBOL_GPL(ir_i2c_probe); +#endif --- linux-2.6.34-rc3.orig/include/media/ir-common.h 2010-03-18 17:06:30.000000000 +0100 +++ linux-2.6.34-rc3/include/media/ir-common.h 2010-04-04 14:29:54.000000000 +0200 @@ -97,6 +97,11 @@ u32 ir_rc5_decode(unsigned int code); void ir_rc5_timer_end(unsigned long data); void ir_rc5_timer_keyup(unsigned long data); +#if defined CONFIG_I2C || defined CONFIG_I2C_MODULE +struct i2c_adapter; +int ir_i2c_probe(struct i2c_adapter *i2c, unsigned short addr); +#endif + /* scancode->keycode map tables from ir-keymaps.c */ extern struct ir_scancode_table ir_codes_empty_table;