linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/4] ARM: multi_v7_defconfig: Enable Tegra ACTMON support
@ 2015-03-30 14:40 Tomeu Vizoso
  2015-03-30 14:40 ` [PATCH 2/4] ARM: multi_v7_defconfig: Enable support for ELAN i2c trackpads Tomeu Vizoso
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Tomeu Vizoso @ 2015-03-30 14:40 UTC (permalink / raw)
  To: linux-arm-kernel

This brings the DevFreq framework in and builds the ACTMON driver that
on Tegra124 will scale the external memory clock based on current load.

Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
---
 arch/arm/configs/multi_v7_defconfig | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index ac96ce1..8e174ea 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -533,6 +533,8 @@ CONFIG_MSM_MMCC_8960=y
 CONFIG_MSM_MMCC_8974=y
 CONFIG_TEGRA_IOMMU_GART=y
 CONFIG_TEGRA_IOMMU_SMMU=y
+CONFIG_PM_DEVFREQ=y
+CONFIG_ARM_TEGRA_DEVFREQ=m
 CONFIG_MEMORY=y
 CONFIG_TI_AEMIF=y
 CONFIG_IIO=y
-- 
2.1.0

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

* [PATCH 2/4] ARM: multi_v7_defconfig: Enable support for ELAN i2c trackpads
  2015-03-30 14:40 [PATCH 1/4] ARM: multi_v7_defconfig: Enable Tegra ACTMON support Tomeu Vizoso
@ 2015-03-30 14:40 ` Tomeu Vizoso
  2015-03-30 14:40 ` [PATCH 3/4] ARM: multi_v7_defconfig: Build the Marvell WiFi-Ex driver as a module Tomeu Vizoso
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Tomeu Vizoso @ 2015-03-30 14:40 UTC (permalink / raw)
  To: linux-arm-kernel

Needed in several Chromebook models such as the Tegra-based ones.

Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
---
 arch/arm/configs/multi_v7_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index 8e174ea..5b4d1c8 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -208,6 +208,7 @@ CONFIG_KEYBOARD_SPEAR=y
 CONFIG_KEYBOARD_ST_KEYSCAN=y
 CONFIG_KEYBOARD_CROS_EC=y
 CONFIG_MOUSE_PS2_ELANTECH=y
+CONFIG_MOUSE_ELAN_I2C=y
 CONFIG_INPUT_TOUCHSCREEN=y
 CONFIG_TOUCHSCREEN_ATMEL_MXT=y
 CONFIG_TOUCHSCREEN_ST1232=m
-- 
2.1.0

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

* [PATCH 3/4] ARM: multi_v7_defconfig: Build the Marvell WiFi-Ex driver as a module
  2015-03-30 14:40 [PATCH 1/4] ARM: multi_v7_defconfig: Enable Tegra ACTMON support Tomeu Vizoso
  2015-03-30 14:40 ` [PATCH 2/4] ARM: multi_v7_defconfig: Enable support for ELAN i2c trackpads Tomeu Vizoso
@ 2015-03-30 14:40 ` Tomeu Vizoso
  2015-03-30 14:40 ` [PATCH 4/4] ARM: multi_v7_defconfig: Add gpio-restart driver Tomeu Vizoso
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Tomeu Vizoso @ 2015-03-30 14:40 UTC (permalink / raw)
  To: linux-arm-kernel

Needed in several Chromebook models such as the Tegra-based ones.

Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
---
 arch/arm/configs/multi_v7_defconfig | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index 5b4d1c8..7ffa4aa 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -133,6 +133,9 @@ CONFIG_CAN_BCM=y
 CONFIG_CAN_DEV=y
 CONFIG_CAN_XILINXCAN=y
 CONFIG_CAN_MCP251X=y
+CONFIG_BT=m
+CONFIG_BT_MRVL=m
+CONFIG_BT_MRVL_SDIO=m
 CONFIG_CFG80211=m
 CONFIG_MAC80211=m
 CONFIG_RFKILL=y
@@ -200,6 +203,8 @@ CONFIG_USB_NET_SMSC95XX=y
 CONFIG_BRCMFMAC=m
 CONFIG_RT2X00=m
 CONFIG_RT2800USB=m
+CONFIG_MWIFIEX=m
+CONFIG_MWIFIEX_SDIO=m
 CONFIG_INPUT_JOYDEV=y
 CONFIG_INPUT_EVDEV=y
 CONFIG_KEYBOARD_GPIO=y
-- 
2.1.0

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

* [PATCH 4/4] ARM: multi_v7_defconfig: Add gpio-restart driver
  2015-03-30 14:40 [PATCH 1/4] ARM: multi_v7_defconfig: Enable Tegra ACTMON support Tomeu Vizoso
  2015-03-30 14:40 ` [PATCH 2/4] ARM: multi_v7_defconfig: Enable support for ELAN i2c trackpads Tomeu Vizoso
  2015-03-30 14:40 ` [PATCH 3/4] ARM: multi_v7_defconfig: Build the Marvell WiFi-Ex driver as a module Tomeu Vizoso
@ 2015-03-30 14:40 ` Tomeu Vizoso
  2015-03-31 10:41 ` [PATCH 1/4] ARM: multi_v7_defconfig: Enable Tegra ACTMON support Marcel Ziswiler
  2015-04-03 20:53 ` Olof Johansson
  4 siblings, 0 replies; 6+ messages in thread
From: Tomeu Vizoso @ 2015-03-30 14:40 UTC (permalink / raw)
  To: linux-arm-kernel

Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
---
 arch/arm/configs/multi_v7_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index 7ffa4aa..17e89b0 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -314,6 +314,7 @@ CONFIG_BATTERY_SBS=y
 CONFIG_CHARGER_TPS65090=y
 CONFIG_POWER_RESET_AS3722=y
 CONFIG_POWER_RESET_GPIO=y
+CONFIG_POWER_RESET_GPIO_RESTART=y
 CONFIG_POWER_RESET_KEYSTONE=y
 CONFIG_POWER_RESET_SUN6I=y
 CONFIG_POWER_RESET_RMOBILE=y
-- 
2.1.0

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

* [PATCH 1/4] ARM: multi_v7_defconfig: Enable Tegra ACTMON support
  2015-03-30 14:40 [PATCH 1/4] ARM: multi_v7_defconfig: Enable Tegra ACTMON support Tomeu Vizoso
                   ` (2 preceding siblings ...)
  2015-03-30 14:40 ` [PATCH 4/4] ARM: multi_v7_defconfig: Add gpio-restart driver Tomeu Vizoso
@ 2015-03-31 10:41 ` Marcel Ziswiler
  2015-04-03 20:53 ` Olof Johansson
  4 siblings, 0 replies; 6+ messages in thread
From: Marcel Ziswiler @ 2015-03-31 10:41 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, 2015-03-30 at 16:40 +0200, Tomeu Vizoso wrote:
> This brings the DevFreq framework in and builds the ACTMON driver that
> on Tegra124 will scale the external memory clock based on current load.
> 
> Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>

The series,
Acked-by: Marcel Ziswiler <marcel@ziswiler.com>

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

* [PATCH 1/4] ARM: multi_v7_defconfig: Enable Tegra ACTMON support
  2015-03-30 14:40 [PATCH 1/4] ARM: multi_v7_defconfig: Enable Tegra ACTMON support Tomeu Vizoso
                   ` (3 preceding siblings ...)
  2015-03-31 10:41 ` [PATCH 1/4] ARM: multi_v7_defconfig: Enable Tegra ACTMON support Marcel Ziswiler
@ 2015-04-03 20:53 ` Olof Johansson
  4 siblings, 0 replies; 6+ messages in thread
From: Olof Johansson @ 2015-04-03 20:53 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Mar 30, 2015 at 04:40:13PM +0200, Tomeu Vizoso wrote:
> This brings the DevFreq framework in and builds the ACTMON driver that
> on Tegra124 will scale the external memory clock based on current load.
> 
> Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
> ---

Thanks, applied 1-4. In the future you can squash into one commit if you want.

-Olof

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

end of thread, other threads:[~2015-04-03 20:53 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-30 14:40 [PATCH 1/4] ARM: multi_v7_defconfig: Enable Tegra ACTMON support Tomeu Vizoso
2015-03-30 14:40 ` [PATCH 2/4] ARM: multi_v7_defconfig: Enable support for ELAN i2c trackpads Tomeu Vizoso
2015-03-30 14:40 ` [PATCH 3/4] ARM: multi_v7_defconfig: Build the Marvell WiFi-Ex driver as a module Tomeu Vizoso
2015-03-30 14:40 ` [PATCH 4/4] ARM: multi_v7_defconfig: Add gpio-restart driver Tomeu Vizoso
2015-03-31 10:41 ` [PATCH 1/4] ARM: multi_v7_defconfig: Enable Tegra ACTMON support Marcel Ziswiler
2015-04-03 20:53 ` Olof Johansson

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).