linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] mfd: cros_ec: instantiate CrOS FP and TP devices
@ 2019-03-07 17:52 Enric Balletbo i Serra
  2019-03-07 17:52 ` [PATCH 1/2] mfd: cros_ec: instantiate properly CrOS FP MCU device Enric Balletbo i Serra
  2019-03-07 17:52 ` [PATCH 2/2] mfd: cros_ec: instantiate properly CrOS Touchpad " Enric Balletbo i Serra
  0 siblings, 2 replies; 7+ messages in thread
From: Enric Balletbo i Serra @ 2019-03-07 17:52 UTC (permalink / raw)
  To: lee.jones; +Cc: groeck, gwendal, kernel, bleung, linux-kernel

Hi,

This patch adds support to instantiate two special CrOS EC devices, one
is fingerprint and another one is a touchpad. This patchset depends on
the following patches to apply cleanly and build.

- mfd: cros: Update EC protocol to match current EC code
  - https://lore.kernel.org/patchwork/patch/1046363

- mfd: cros_ec: instantiate properly CrOS ISH MCU device
  - https://lore.kernel.org/patchwork/patch/1047022

Best regards,
 Enric

Vincent Palatin (1):
  mfd: cros_ec: instantiate properly CrOS FP MCU device

Wei-Ning Huang (1):
  mfd: cros_ec: instantiate properly CrOS Touchpad MCU device

 drivers/mfd/cros_ec_dev.c   | 20 ++++++++++++++++++++
 include/linux/mfd/cros_ec.h |  2 ++
 2 files changed, 22 insertions(+)

-- 
2.20.1


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH 1/2] mfd: cros_ec: instantiate properly CrOS FP MCU device
  2019-03-07 17:52 [PATCH 0/2] mfd: cros_ec: instantiate CrOS FP and TP devices Enric Balletbo i Serra
@ 2019-03-07 17:52 ` Enric Balletbo i Serra
  2019-04-02  4:01   ` Lee Jones
  2019-03-07 17:52 ` [PATCH 2/2] mfd: cros_ec: instantiate properly CrOS Touchpad " Enric Balletbo i Serra
  1 sibling, 1 reply; 7+ messages in thread
From: Enric Balletbo i Serra @ 2019-03-07 17:52 UTC (permalink / raw)
  To: lee.jones; +Cc: groeck, gwendal, kernel, bleung, linux-kernel, Vincent Palatin

From: Vincent Palatin <vpalatin@chromium.org>

Support Fingerprint MCU as a special of CrOS EC devices. The current FP
MCU uses the same EC SPI protocol v3 as other CrOS EC devices on a SPI
bus.

When a MCU has fingerprint support (aka EC_FEATURE_FINGERPRINT), it is
instantiated as a special CrOS EC device with device name 'cros_fp'. So
regardless of the probing order between the actual cros_ec and cros_fp,
the userspace and other kernel drivers should not confuse them.

Signed-off-by: Vincent Palatin <vpalatin@chromium.org>
Signed-off-by: Enric Balletbo i Serra <enric.balletbo@collabora.com>
---

 drivers/mfd/cros_ec_dev.c   | 10 ++++++++++
 include/linux/mfd/cros_ec.h |  1 +
 2 files changed, 11 insertions(+)

diff --git a/drivers/mfd/cros_ec_dev.c b/drivers/mfd/cros_ec_dev.c
index e6f538eca72b..51b318cbc0ed 100644
--- a/drivers/mfd/cros_ec_dev.c
+++ b/drivers/mfd/cros_ec_dev.c
@@ -644,6 +644,16 @@ static int ec_device_probe(struct platform_device *pdev)
 	device_initialize(&ec->class_dev);
 	cdev_init(&ec->cdev, &fops);
 
+	/* Check whether this is actually a Fingerprint MCU rather than an EC */
+	if (cros_ec_check_features(ec, EC_FEATURE_FINGERPRINT)) {
+		dev_info(dev, "CrOS Fingerprint MCU detected.\n");
+		/*
+		 * Help userspace differentiating ECs from FP MCU,
+		 * regardless of the probing order.
+		 */
+		ec_platform->ec_name = CROS_EC_DEV_FP_NAME;
+	}
+
 	/*
 	 * Check whether this is actually an Integrated Sensor Hub (ISH)
 	 * rather than an EC.
diff --git a/include/linux/mfd/cros_ec.h b/include/linux/mfd/cros_ec.h
index 109292a60499..20fb5f298f73 100644
--- a/include/linux/mfd/cros_ec.h
+++ b/include/linux/mfd/cros_ec.h
@@ -23,6 +23,7 @@
 #include <linux/mutex.h>
 
 #define CROS_EC_DEV_NAME "cros_ec"
+#define CROS_EC_DEV_FP_NAME "cros_fp"
 #define CROS_EC_DEV_PD_NAME "cros_pd"
 #define CROS_EC_DEV_ISH_NAME "cros_ish"
 
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH 2/2] mfd: cros_ec: instantiate properly CrOS Touchpad MCU device
  2019-03-07 17:52 [PATCH 0/2] mfd: cros_ec: instantiate CrOS FP and TP devices Enric Balletbo i Serra
  2019-03-07 17:52 ` [PATCH 1/2] mfd: cros_ec: instantiate properly CrOS FP MCU device Enric Balletbo i Serra
@ 2019-03-07 17:52 ` Enric Balletbo i Serra
  2019-04-02  4:01   ` Lee Jones
  1 sibling, 1 reply; 7+ messages in thread
From: Enric Balletbo i Serra @ 2019-03-07 17:52 UTC (permalink / raw)
  To: lee.jones; +Cc: groeck, gwendal, kernel, bleung, linux-kernel, Wei-Ning Huang

From: Wei-Ning Huang <wnhuang@google.com>

Support Touchpad MCU as a special of CrOS EC devices. The current
Touchpad MCU is used on Eve Chromebook and used the same protocol as
other CrOS EC devices.

When a MCU has touchpad support (aka EC_FEATURE_TOUCHPAD), it is
instantiated as a special CrOS EC device with device name 'cros_tp'. So
regardless of the probing order between the actual cros_ec and cros_tp,
the userspace and other kernel drivers should not confuse them.

Signed-off-by: Wei-Ning Huang <wnhuang@google.com>
Signed-off-by: Enric Balletbo i Serra <enric.balletbo@collabora.com>
---

 drivers/mfd/cros_ec_dev.c   | 10 ++++++++++
 include/linux/mfd/cros_ec.h |  1 +
 2 files changed, 11 insertions(+)

diff --git a/drivers/mfd/cros_ec_dev.c b/drivers/mfd/cros_ec_dev.c
index 51b318cbc0ed..dd49dd3956be 100644
--- a/drivers/mfd/cros_ec_dev.c
+++ b/drivers/mfd/cros_ec_dev.c
@@ -667,6 +667,16 @@ static int ec_device_probe(struct platform_device *pdev)
 		ec_platform->ec_name = CROS_EC_DEV_ISH_NAME;
 	}
 
+	/* Check whether this is actually a Touchpad MCU rather than an EC */
+	if (cros_ec_check_features(ec, EC_FEATURE_TOUCHPAD)) {
+		dev_info(dev, "CrOS Touchpad MCU detected.\n");
+		/*
+		 * Help userspace differentiating ECs from TP MCU,
+		 * regardless of the probing order.
+		 */
+		ec_platform->ec_name = CROS_EC_DEV_TP_NAME;
+	}
+
 	/*
 	 * Add the class device
 	 * Link to the character device for creating the /dev entry
diff --git a/include/linux/mfd/cros_ec.h b/include/linux/mfd/cros_ec.h
index 20fb5f298f73..2acbbec75eeb 100644
--- a/include/linux/mfd/cros_ec.h
+++ b/include/linux/mfd/cros_ec.h
@@ -25,6 +25,7 @@
 #define CROS_EC_DEV_NAME "cros_ec"
 #define CROS_EC_DEV_FP_NAME "cros_fp"
 #define CROS_EC_DEV_PD_NAME "cros_pd"
+#define CROS_EC_DEV_TP_NAME "cros_tp"
 #define CROS_EC_DEV_ISH_NAME "cros_ish"
 
 /*
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH 1/2] mfd: cros_ec: instantiate properly CrOS FP MCU device
  2019-03-07 17:52 ` [PATCH 1/2] mfd: cros_ec: instantiate properly CrOS FP MCU device Enric Balletbo i Serra
@ 2019-04-02  4:01   ` Lee Jones
  2019-04-03  3:27     ` Lee Jones
  0 siblings, 1 reply; 7+ messages in thread
From: Lee Jones @ 2019-04-02  4:01 UTC (permalink / raw)
  To: Enric Balletbo i Serra
  Cc: groeck, gwendal, kernel, bleung, linux-kernel, Vincent Palatin

On Thu, 07 Mar 2019, Enric Balletbo i Serra wrote:

> From: Vincent Palatin <vpalatin@chromium.org>
> 
> Support Fingerprint MCU as a special of CrOS EC devices. The current FP
> MCU uses the same EC SPI protocol v3 as other CrOS EC devices on a SPI
> bus.
> 
> When a MCU has fingerprint support (aka EC_FEATURE_FINGERPRINT), it is
> instantiated as a special CrOS EC device with device name 'cros_fp'. So
> regardless of the probing order between the actual cros_ec and cros_fp,
> the userspace and other kernel drivers should not confuse them.
> 
> Signed-off-by: Vincent Palatin <vpalatin@chromium.org>
> Signed-off-by: Enric Balletbo i Serra <enric.balletbo@collabora.com>
> ---
> 
>  drivers/mfd/cros_ec_dev.c   | 10 ++++++++++
>  include/linux/mfd/cros_ec.h |  1 +
>  2 files changed, 11 insertions(+)

Applied, thanks.

-- 
Lee Jones [李琼斯]
Linaro Services Technical Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 2/2] mfd: cros_ec: instantiate properly CrOS Touchpad MCU device
  2019-03-07 17:52 ` [PATCH 2/2] mfd: cros_ec: instantiate properly CrOS Touchpad " Enric Balletbo i Serra
@ 2019-04-02  4:01   ` Lee Jones
  2019-04-03  3:27     ` Lee Jones
  0 siblings, 1 reply; 7+ messages in thread
From: Lee Jones @ 2019-04-02  4:01 UTC (permalink / raw)
  To: Enric Balletbo i Serra
  Cc: groeck, gwendal, kernel, bleung, linux-kernel, Wei-Ning Huang

On Thu, 07 Mar 2019, Enric Balletbo i Serra wrote:

> From: Wei-Ning Huang <wnhuang@google.com>
> 
> Support Touchpad MCU as a special of CrOS EC devices. The current
> Touchpad MCU is used on Eve Chromebook and used the same protocol as
> other CrOS EC devices.
> 
> When a MCU has touchpad support (aka EC_FEATURE_TOUCHPAD), it is
> instantiated as a special CrOS EC device with device name 'cros_tp'. So
> regardless of the probing order between the actual cros_ec and cros_tp,
> the userspace and other kernel drivers should not confuse them.
> 
> Signed-off-by: Wei-Ning Huang <wnhuang@google.com>
> Signed-off-by: Enric Balletbo i Serra <enric.balletbo@collabora.com>
> ---
> 
>  drivers/mfd/cros_ec_dev.c   | 10 ++++++++++
>  include/linux/mfd/cros_ec.h |  1 +
>  2 files changed, 11 insertions(+)

Applied, thanks.

-- 
Lee Jones [李琼斯]
Linaro Services Technical Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 1/2] mfd: cros_ec: instantiate properly CrOS FP MCU device
  2019-04-02  4:01   ` Lee Jones
@ 2019-04-03  3:27     ` Lee Jones
  0 siblings, 0 replies; 7+ messages in thread
From: Lee Jones @ 2019-04-03  3:27 UTC (permalink / raw)
  To: Enric Balletbo i Serra
  Cc: groeck, gwendal, kernel, bleung, linux-kernel, Vincent Palatin

On Tue, 02 Apr 2019, Lee Jones wrote:

> On Thu, 07 Mar 2019, Enric Balletbo i Serra wrote:
> 
> > From: Vincent Palatin <vpalatin@chromium.org>
> > 
> > Support Fingerprint MCU as a special of CrOS EC devices. The current FP
> > MCU uses the same EC SPI protocol v3 as other CrOS EC devices on a SPI
> > bus.
> > 
> > When a MCU has fingerprint support (aka EC_FEATURE_FINGERPRINT), it is
> > instantiated as a special CrOS EC device with device name 'cros_fp'. So
> > regardless of the probing order between the actual cros_ec and cros_fp,
> > the userspace and other kernel drivers should not confuse them.
> > 
> > Signed-off-by: Vincent Palatin <vpalatin@chromium.org>
> > Signed-off-by: Enric Balletbo i Serra <enric.balletbo@collabora.com>
> > ---
> > 
> >  drivers/mfd/cros_ec_dev.c   | 10 ++++++++++
> >  include/linux/mfd/cros_ec.h |  1 +
> >  2 files changed, 11 insertions(+)
> 
> Applied, thanks.

Looks like this depends on:

  mfd: cros: Update EC protocol to match current EC code

Removing until it's applied.

-- 
Lee Jones [李琼斯]
Linaro Services Technical Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 2/2] mfd: cros_ec: instantiate properly CrOS Touchpad MCU device
  2019-04-02  4:01   ` Lee Jones
@ 2019-04-03  3:27     ` Lee Jones
  0 siblings, 0 replies; 7+ messages in thread
From: Lee Jones @ 2019-04-03  3:27 UTC (permalink / raw)
  To: Enric Balletbo i Serra
  Cc: groeck, gwendal, kernel, bleung, linux-kernel, Wei-Ning Huang

On Tue, 02 Apr 2019, Lee Jones wrote:

> On Thu, 07 Mar 2019, Enric Balletbo i Serra wrote:
> 
> > From: Wei-Ning Huang <wnhuang@google.com>
> > 
> > Support Touchpad MCU as a special of CrOS EC devices. The current
> > Touchpad MCU is used on Eve Chromebook and used the same protocol as
> > other CrOS EC devices.
> > 
> > When a MCU has touchpad support (aka EC_FEATURE_TOUCHPAD), it is
> > instantiated as a special CrOS EC device with device name 'cros_tp'. So
> > regardless of the probing order between the actual cros_ec and cros_tp,
> > the userspace and other kernel drivers should not confuse them.
> > 
> > Signed-off-by: Wei-Ning Huang <wnhuang@google.com>
> > Signed-off-by: Enric Balletbo i Serra <enric.balletbo@collabora.com>
> > ---
> > 
> >  drivers/mfd/cros_ec_dev.c   | 10 ++++++++++
> >  include/linux/mfd/cros_ec.h |  1 +
> >  2 files changed, 11 insertions(+)
> 
> Applied, thanks.

Looks like this depends on:
  
  mfd: cros: Update EC protocol to match current EC code
  
Removing until it's applied.

-- 
Lee Jones [李琼斯]
Linaro Services Technical Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2019-04-03  3:27 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-07 17:52 [PATCH 0/2] mfd: cros_ec: instantiate CrOS FP and TP devices Enric Balletbo i Serra
2019-03-07 17:52 ` [PATCH 1/2] mfd: cros_ec: instantiate properly CrOS FP MCU device Enric Balletbo i Serra
2019-04-02  4:01   ` Lee Jones
2019-04-03  3:27     ` Lee Jones
2019-03-07 17:52 ` [PATCH 2/2] mfd: cros_ec: instantiate properly CrOS Touchpad " Enric Balletbo i Serra
2019-04-02  4:01   ` Lee Jones
2019-04-03  3:27     ` Lee Jones

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).