All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ezequiel Garcia <ezequiel@collabora.com>
To: Catalin Marinas <catalin.marinas@arm.com>,
	Will Deacon <will.deacon@arm.com>,
	Heiko Stuebner <heiko@sntech.de>
Cc: Enric Balletbo i Serra <enric.balletbo@collabora.com>,
	linux-rockchip@lists.infradead.org, kernel@collabora.com,
	linux-arm-kernel@lists.infradead.org
Subject: [PATCH 3/7] arm64: defconfig: Enable ChromeOS EC drivers for supported Chromebooks.
Date: Mon, 16 Apr 2018 11:39:58 -0300	[thread overview]
Message-ID: <20180416144002.15569-4-ezequiel@collabora.com> (raw)
In-Reply-To: <20180416144002.15569-1-ezequiel@collabora.com>

From: Enric Balletbo i Serra <enric.balletbo@collabora.com>

Enable following drivers for merged devices:
- ChromeOS EC RTC driver.
- ChromeOS EC userspace interface.
- ChromeOS EC light and proximity sensors.
- ChromeOS EC Barometer Sensor driver.

Signed-off-by: Enric Balletbo i Serra <enric.balletbo@collabora.com>
---
 arch/arm64/configs/defconfig | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 7e3b3f0484b9..397bc0b42a86 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -363,6 +363,7 @@ CONFIG_MFD_AXP20X_RSB=y
 CONFIG_MFD_CROS_EC=y
 CONFIG_MFD_CROS_EC_I2C=y
 CONFIG_MFD_CROS_EC_SPI=y
+CONFIG_MFD_CROS_EC_CHARDEV=m
 CONFIG_MFD_EXYNOS_LPASS=m
 CONFIG_MFD_HI6421_PMIC=y
 CONFIG_MFD_HI655X_PMIC=y
@@ -516,6 +517,7 @@ CONFIG_RTC_DRV_SUN6I=y
 CONFIG_RTC_DRV_ARMADA38X=y
 CONFIG_RTC_DRV_TEGRA=y
 CONFIG_RTC_DRV_XGENE=y
+CONFIG_RTC_DRV_CROS_EC=y
 CONFIG_DMADEVICES=y
 CONFIG_DMA_BCM2835=m
 CONFIG_K3_DMA=y
@@ -576,6 +578,10 @@ CONFIG_TEGRA_MC=y
 CONFIG_IIO=y
 CONFIG_EXYNOS_ADC=y
 CONFIG_ROCKCHIP_SARADC=m
+CONFIG_IIO_CROS_EC_SENSORS_CORE=m
+CONFIG_IIO_CROS_EC_SENSORS=m
+CONFIG_IIO_CROS_EC_LIGHT_PROX=m
+CONFIG_IIO_CROS_EC_BARO=m
 CONFIG_PWM=y
 CONFIG_PWM_BCM2835=m
 CONFIG_PWM_CROS_EC=m
-- 
2.16.3

WARNING: multiple messages have this Message-ID (diff)
From: ezequiel@collabora.com (Ezequiel Garcia)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 3/7] arm64: defconfig: Enable ChromeOS EC drivers for supported Chromebooks.
Date: Mon, 16 Apr 2018 11:39:58 -0300	[thread overview]
Message-ID: <20180416144002.15569-4-ezequiel@collabora.com> (raw)
In-Reply-To: <20180416144002.15569-1-ezequiel@collabora.com>

From: Enric Balletbo i Serra <enric.balletbo@collabora.com>

Enable following drivers for merged devices:
- ChromeOS EC RTC driver.
- ChromeOS EC userspace interface.
- ChromeOS EC light and proximity sensors.
- ChromeOS EC Barometer Sensor driver.

Signed-off-by: Enric Balletbo i Serra <enric.balletbo@collabora.com>
---
 arch/arm64/configs/defconfig | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 7e3b3f0484b9..397bc0b42a86 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -363,6 +363,7 @@ CONFIG_MFD_AXP20X_RSB=y
 CONFIG_MFD_CROS_EC=y
 CONFIG_MFD_CROS_EC_I2C=y
 CONFIG_MFD_CROS_EC_SPI=y
+CONFIG_MFD_CROS_EC_CHARDEV=m
 CONFIG_MFD_EXYNOS_LPASS=m
 CONFIG_MFD_HI6421_PMIC=y
 CONFIG_MFD_HI655X_PMIC=y
@@ -516,6 +517,7 @@ CONFIG_RTC_DRV_SUN6I=y
 CONFIG_RTC_DRV_ARMADA38X=y
 CONFIG_RTC_DRV_TEGRA=y
 CONFIG_RTC_DRV_XGENE=y
+CONFIG_RTC_DRV_CROS_EC=y
 CONFIG_DMADEVICES=y
 CONFIG_DMA_BCM2835=m
 CONFIG_K3_DMA=y
@@ -576,6 +578,10 @@ CONFIG_TEGRA_MC=y
 CONFIG_IIO=y
 CONFIG_EXYNOS_ADC=y
 CONFIG_ROCKCHIP_SARADC=m
+CONFIG_IIO_CROS_EC_SENSORS_CORE=m
+CONFIG_IIO_CROS_EC_SENSORS=m
+CONFIG_IIO_CROS_EC_LIGHT_PROX=m
+CONFIG_IIO_CROS_EC_BARO=m
 CONFIG_PWM=y
 CONFIG_PWM_BCM2835=m
 CONFIG_PWM_CROS_EC=m
-- 
2.16.3

  parent reply	other threads:[~2018-04-16 14:39 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-04-16 14:39 [PATCH 0/7] Defconfig updates for RK3399 Ezequiel Garcia
2018-04-16 14:39 ` Ezequiel Garcia
2018-04-16 14:39 ` [PATCH 1/7] arm64: defconfig: Enable typec-phy and extcon-usbc-cros-ec for rk3399 Ezequiel Garcia
2018-04-16 14:39   ` Ezequiel Garcia
2018-04-16 14:39 ` [PATCH 2/7] arm64: defconfig: Enable Rockchip io-domain driver Ezequiel Garcia
2018-04-16 14:39   ` Ezequiel Garcia
2018-04-16 14:39 ` Ezequiel Garcia [this message]
2018-04-16 14:39   ` [PATCH 3/7] arm64: defconfig: Enable ChromeOS EC drivers for supported Chromebooks Ezequiel Garcia
2018-04-16 14:39 ` [PATCH 4/7] arm64: defconfig: Enable HID over I2C drivers Ezequiel Garcia
2018-04-16 14:39   ` Ezequiel Garcia
2018-04-16 14:40 ` [PATCH 5/7] arm64: defconfig: Enable Atmel Maxtouch driver Ezequiel Garcia
2018-04-16 14:40   ` Ezequiel Garcia
2018-04-16 14:40 ` [PATCH 6/7] arm64: defconfig: Enable Marvell WiFi-Ex PCIe driver Ezequiel Garcia
2018-04-16 14:40   ` Ezequiel Garcia
2018-04-16 14:40 ` [PATCH 7/7] arm64: defconfig: Enable bluetooth USB support Ezequiel Garcia
2018-04-16 14:40   ` Ezequiel Garcia
     [not found] ` <20180416144002.15569-1-ezequiel-ZGY8ohtN/8qB+jHODAdFcQ@public.gmane.org>
2018-04-28 16:57   ` [PATCH 0/7] Defconfig updates for RK3399 Heiko Stuebner
2018-04-28 16:57     ` Heiko Stuebner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180416144002.15569-4-ezequiel@collabora.com \
    --to=ezequiel@collabora.com \
    --cc=catalin.marinas@arm.com \
    --cc=enric.balletbo@collabora.com \
    --cc=heiko@sntech.de \
    --cc=kernel@collabora.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-rockchip@lists.infradead.org \
    --cc=will.deacon@arm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.