lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Fri, 10 Apr 2015 10:41:54 -0700
From:	Dmitry Torokhov <dmitry.torokhov@...il.com>
To:	Olof Johansson <olof@...om.net>
Cc:	Benson Leung <bleung@...omium.org>,
	Nick Dyer <nick.dyer@...ev.co.uk>, linux-kernel@...r.kernel.org
Subject: Re: [PATCH v2] platform/chrome: chromeos_laptop - do not probe
 devices on Pixel 1

On Thu, Apr 09, 2015 at 04:57:59PM -0700, Dmitry Torokhov wrote:
> Atmel MXT devices use different i2c addresses, depending on the current
> mode of operation (bootloader or application). The new Atmel MXT driver
> expects i2c client's address contain the application address of the
> chip, and calculates the expected bootloader address form the
> application address. Unfortunately chromeos_laptop does probe the
> devices and if touchpad (or touchscreen, or both) comes up in bootloader
> mode, the i2c device gets instantiated with the bootloader address
> instead of application address, which confuses the driver.
> 
> Given that hardware on Pixel is set and is not going to change let's not
> try to probe devices to see if they are present or not, but rather
> instantiate them always at expected addresses.
> 
> Since all devices are now probed and/or instantiated at given address,
> we no longer need to support probing multiple addresses for the same

Hmm, that strategy won't work on C720 since there are devices with touchscreen
and without one, so we do want to probe but always instantiate at primary
address. V3 will be upcoming...

> device.
> 
> Reviewed-by: Benson Leung <bleung@...omium.org>
> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@...il.com>
> ---
> 
> Changes:
> 
> - v2 - addressed Bensons comments - removed Atmel bootloader addresses;
> 
> Olof,
> 
> We might want to mark this for stable as well as otherwise Pixel is
> pretty broken if either touchpad or touchscreen resets to bootloader
> mode.
> 
> Thanks,
> Dmitry
> 
>  drivers/platform/chrome/chromeos_laptop.c | 72 ++++++-------------------------
>  1 file changed, 13 insertions(+), 59 deletions(-)
> 
> diff --git a/drivers/platform/chrome/chromeos_laptop.c b/drivers/platform/chrome/chromeos_laptop.c
> index b84fdd6..3dc258d 100644
> --- a/drivers/platform/chrome/chromeos_laptop.c
> +++ b/drivers/platform/chrome/chromeos_laptop.c
> @@ -30,9 +30,7 @@
>  #include <linux/platform_device.h>
>  
>  #define ATMEL_TP_I2C_ADDR	0x4b
> -#define ATMEL_TP_I2C_BL_ADDR	0x25
>  #define ATMEL_TS_I2C_ADDR	0x4a
> -#define ATMEL_TS_I2C_BL_ADDR	0x26
>  #define CYAPA_TP_I2C_ADDR	0x67
>  #define ISL_ALS_I2C_ADDR	0x44
>  #define TAOS_ALS_I2C_ADDR	0x29
> @@ -129,12 +127,12 @@ static struct i2c_board_info atmel_1664s_device = {
>  	.flags		= I2C_CLIENT_WAKE,
>  };
>  
> -static struct i2c_client *__add_probed_i2c_device(
> -		const char *name,
> -		int bus,
> -		struct i2c_board_info *info,
> -		const unsigned short *addrs)
> +static struct i2c_client *add_i2c_device(const char *name,
> +					 int bus,
> +					 struct i2c_board_info *info,
> +					 bool probe)
>  {
> +	const unsigned short addrs[] = { info->addr, I2C_CLIENT_END };
>  	const struct dmi_device *dmi_dev;
>  	const struct dmi_dev_onboard *dev_data;
>  	struct i2c_adapter *adapter;
> @@ -170,7 +168,8 @@ static struct i2c_client *__add_probed_i2c_device(
>  	}
>  
>  	/* add the i2c device */
> -	client = i2c_new_probed_device(adapter, info, addrs, NULL);
> +	client = probe ? i2c_new_probed_device(adapter, info, addrs, NULL) :
> +			 i2c_new_device(adapter, info);
>  	if (!client)
>  		pr_notice("%s failed to register device %d-%02x\n",
>  			  __func__, bus, info->addr);
> @@ -225,78 +224,33 @@ static int find_i2c_adapter_num(enum i2c_adapter_type type)
>  	return adapter->nr;
>  }
>  
> -/*
> - * Takes a list of addresses in addrs as such :
> - * { addr1, ... , addrn, I2C_CLIENT_END };
> - * add_probed_i2c_device will use i2c_new_probed_device
> - * and probe for devices at all of the addresses listed.
> - * Returns NULL if no devices found.
> - * See Documentation/i2c/instantiating-devices for more information.
> - */
> -static struct i2c_client *add_probed_i2c_device(
> -		const char *name,
> -		enum i2c_adapter_type type,
> -		struct i2c_board_info *info,
> -		const unsigned short *addrs)
> -{
> -	return __add_probed_i2c_device(name,
> -				       find_i2c_adapter_num(type),
> -				       info,
> -				       addrs);
> -}
> -
> -/*
> - * Probes for a device at a single address, the one provided by
> - * info->addr.
> - * Returns NULL if no device found.
> - */
> -static struct i2c_client *add_i2c_device(const char *name,
> -						enum i2c_adapter_type type,
> -						struct i2c_board_info *info)
> -{
> -	const unsigned short addr_list[] = { info->addr, I2C_CLIENT_END };
> -
> -	return __add_probed_i2c_device(name,
> -				       find_i2c_adapter_num(type),
> -				       info,
> -				       addr_list);
> -}
> -
>  static int setup_cyapa_tp(enum i2c_adapter_type type)
>  {
>  	if (tp)
>  		return 0;
>  
>  	/* add cyapa touchpad */
> -	tp = add_i2c_device("trackpad", type, &cyapa_device);
> +	tp = add_i2c_device("trackpad", type, &cyapa_device, true);
>  	return (!tp) ? -EAGAIN : 0;
>  }
>  
>  static int setup_atmel_224s_tp(enum i2c_adapter_type type)
>  {
> -	const unsigned short addr_list[] = { ATMEL_TP_I2C_BL_ADDR,
> -					     ATMEL_TP_I2C_ADDR,
> -					     I2C_CLIENT_END };
>  	if (tp)
>  		return 0;
>  
>  	/* add atmel mxt touchpad */
> -	tp = add_probed_i2c_device("trackpad", type,
> -				   &atmel_224s_tp_device, addr_list);
> +	tp = add_i2c_device("trackpad", type, &atmel_224s_tp_device, false);
>  	return (!tp) ? -EAGAIN : 0;
>  }
>  
>  static int setup_atmel_1664s_ts(enum i2c_adapter_type type)
>  {
> -	const unsigned short addr_list[] = { ATMEL_TS_I2C_BL_ADDR,
> -					     ATMEL_TS_I2C_ADDR,
> -					     I2C_CLIENT_END };
>  	if (ts)
>  		return 0;
>  
>  	/* add atmel mxt touch device */
> -	ts = add_probed_i2c_device("touchscreen", type,
> -				   &atmel_1664s_device, addr_list);
> +	ts = add_i2c_device("touchscreen", type, &atmel_1664s_device, false);
>  	return (!ts) ? -EAGAIN : 0;
>  }
>  
> @@ -306,7 +260,7 @@ static int setup_isl29018_als(enum i2c_adapter_type type)
>  		return 0;
>  
>  	/* add isl29018 light sensor */
> -	als = add_i2c_device("lightsensor", type, &isl_als_device);
> +	als = add_i2c_device("lightsensor", type, &isl_als_device, true);
>  	return (!als) ? -EAGAIN : 0;
>  }
>  
> @@ -316,7 +270,7 @@ static int setup_tsl2583_als(enum i2c_adapter_type type)
>  		return 0;
>  
>  	/* add tsl2583 light sensor */
> -	als = add_i2c_device(NULL, type, &tsl2583_als_device);
> +	als = add_i2c_device(NULL, type, &tsl2583_als_device, true);
>  	return (!als) ? -EAGAIN : 0;
>  }
>  
> @@ -326,7 +280,7 @@ static int setup_tsl2563_als(enum i2c_adapter_type type)
>  		return 0;
>  
>  	/* add tsl2563 light sensor */
> -	als = add_i2c_device(NULL, type, &tsl2563_als_device);
> +	als = add_i2c_device(NULL, type, &tsl2563_als_device, true);
>  	return (!als) ? -EAGAIN : 0;
>  }
>  
> -- 
> 2.2.0.rc0.207.ga3a616c
> 
> 
> -- 
> Dmitry

-- 
Dmitry
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ