* [PATCH] ARM: tegra: defconfig updates @ 2012-08-15 17:39 Stephen Warren [not found] ` <1345052375-13374-1-git-send-email-swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org> 0 siblings, 1 reply; 11+ messages in thread From: Stephen Warren @ 2012-08-15 17:39 UTC (permalink / raw) To: Olof Johansson, Colin Cross Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA, Stephen Warren, Thierry Reding, Marc Dietrich From: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> Removed: * MACH_HARMONY * MACH_PAZ00 * MACH_TRIMSLICE These used to enable board support for individual boards. Now that we only support device tree, these options have been removed. Added: * TEGRA_PCI This used to be selected by the board options above. Select this explicitly now that the board options have been removed. * TEGRA_DEBUG_UART_AUTO_ODMDATA This makes the kernel automatically pick a UART for earlyprintk. It's likely to be a useful option for everyone. * PWM * PWM_TEGRA Enable the new PWM subsystem, and the Tegra driver within it. * GPIO_PCA953X * GPIO_PCA953X_IRQ * MFD_MAX8907 * REGULATOR_MAX8907 * RTC_DRV_MAX8907 Various drivers required for the Whistler board. Signed-off-by: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> Cc: Thierry Reding <thierry.reding-RM9K5IK7kjKj5M59NBduVrNAH6kLmebB@public.gmane.org> Cc: Marc Dietrich <marvin24-Mmb7MZpHnFY@public.gmane.org> --- arch/arm/configs/tegra_defconfig | 15 ++++++++++----- 1 files changed, 10 insertions(+), 5 deletions(-) diff --git a/arch/arm/configs/tegra_defconfig b/arch/arm/configs/tegra_defconfig index db22453..4f078e0 100644 --- a/arch/arm/configs/tegra_defconfig +++ b/arch/arm/configs/tegra_defconfig @@ -24,11 +24,11 @@ CONFIG_EFI_PARTITION=y # CONFIG_IOSCHED_DEADLINE is not set # CONFIG_IOSCHED_CFQ is not set CONFIG_ARCH_TEGRA=y +CONFIG_GPIO_PCA953X=y CONFIG_ARCH_TEGRA_2x_SOC=y CONFIG_ARCH_TEGRA_3x_SOC=y -CONFIG_MACH_HARMONY=y -CONFIG_MACH_PAZ00=y -CONFIG_MACH_TRIMSLICE=y +CONFIG_TEGRA_PCI=y +CONFIG_TEGRA_DEBUG_UART_AUTO_ODMDATA=y CONFIG_TEGRA_EMC_SCALING_ENABLE=y CONFIG_SMP=y CONFIG_PREEMPT=y @@ -105,17 +105,20 @@ CONFIG_I2C_MUX_PINCTRL=y CONFIG_I2C_TEGRA=y CONFIG_SPI=y CONFIG_SPI_TEGRA=y -CONFIG_GPIO_TPS65910=y +CONFIG_GPIO_PCA953X_IRQ=y CONFIG_GPIO_TPS6586X=y +CONFIG_GPIO_TPS65910=y CONFIG_POWER_SUPPLY=y CONFIG_BATTERY_SBS=y CONFIG_SENSORS_LM90=y CONFIG_MFD_TPS6586X=y CONFIG_MFD_TPS65910=y +CONFIG_MFD_MAX8907=y CONFIG_REGULATOR=y CONFIG_REGULATOR_FIXED_VOLTAGE=y CONFIG_REGULATOR_VIRTUAL_CONSUMER=y CONFIG_REGULATOR_GPIO=y +CONFIG_REGULATOR_MAX8907=y CONFIG_REGULATOR_TPS62360=y CONFIG_REGULATOR_TPS6586X=y CONFIG_REGULATOR_TPS65910=y @@ -123,7 +126,6 @@ CONFIG_SOUND=y CONFIG_SND=y # CONFIG_SND_SUPPORT_OLD_API is not set # CONFIG_SND_DRIVERS is not set -# CONFIG_SND_PCI is not set # CONFIG_SND_ARM is not set # CONFIG_SND_SPI is not set # CONFIG_SND_USB is not set @@ -143,6 +145,7 @@ CONFIG_MMC_SDHCI=y CONFIG_MMC_SDHCI_PLTFM=y CONFIG_MMC_SDHCI_TEGRA=y CONFIG_RTC_CLASS=y +CONFIG_RTC_DRV_MAX8907=y CONFIG_RTC_DRV_EM3027=y CONFIG_RTC_DRV_TEGRA=y CONFIG_STAGING=y @@ -156,6 +159,8 @@ CONFIG_TEGRA_IOMMU_GART=y CONFIG_TEGRA_IOMMU_SMMU=y CONFIG_MEMORY=y CONFIG_IIO=y +CONFIG_PWM=y +CONFIG_PWM_TEGRA=y CONFIG_EXT2_FS=y CONFIG_EXT2_FS_XATTR=y CONFIG_EXT2_FS_POSIX_ACL=y -- 1.7.0.4 ^ permalink raw reply related [flat|nested] 11+ messages in thread
[parent not found: <1345052375-13374-1-git-send-email-swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>]
* Re: [PATCH] ARM: tegra: defconfig updates [not found] ` <1345052375-13374-1-git-send-email-swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org> @ 2012-08-15 17:48 ` Stephen Warren [not found] ` <502BE0F2.7080903-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org> 2012-08-15 20:12 ` Thierry Reding 2012-08-16 8:06 ` Marc Dietrich 2 siblings, 1 reply; 11+ messages in thread From: Stephen Warren @ 2012-08-15 17:48 UTC (permalink / raw) To: Olof Johansson, Colin Cross Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA, Stephen Warren, Thierry Reding, Marc Dietrich On 08/15/2012 11:39 AM, Stephen Warren wrote: > From: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> > > Removed: > > * MACH_HARMONY > * MACH_PAZ00 > * MACH_TRIMSLICE > > These used to enable board support for individual boards. Now that we > only support device tree, these options have been removed. > > Added: > > * TEGRA_PCI > > This used to be selected by the board options above. Select this > explicitly now that the board options have been removed. > > * TEGRA_DEBUG_UART_AUTO_ODMDATA > > This makes the kernel automatically pick a UART for earlyprintk. It's > likely to be a useful option for everyone. > > * PWM > * PWM_TEGRA > > Enable the new PWM subsystem, and the Tegra driver within it. > > * GPIO_PCA953X > * GPIO_PCA953X_IRQ > * MFD_MAX8907 > * REGULATOR_MAX8907 > * RTC_DRV_MAX8907 > > Various drivers required for the Whistler board. I went ahead and applied this immediately to Tegra's for-3.7/defconfig. If anyone objects, I can easily pull it out or rework it. ^ permalink raw reply [flat|nested] 11+ messages in thread
[parent not found: <502BE0F2.7080903-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>]
* Re: [PATCH] ARM: tegra: defconfig updates [not found] ` <502BE0F2.7080903-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org> @ 2012-08-15 20:10 ` Thierry Reding 0 siblings, 0 replies; 11+ messages in thread From: Thierry Reding @ 2012-08-15 20:10 UTC (permalink / raw) To: Stephen Warren Cc: Olof Johansson, Colin Cross, linux-tegra-u79uwXL29TY76Z2rM5mHXA, Stephen Warren, Marc Dietrich [-- Attachment #1: Type: text/plain, Size: 1308 bytes --] On Wed, Aug 15, 2012 at 11:48:34AM -0600, Stephen Warren wrote: > On 08/15/2012 11:39 AM, Stephen Warren wrote: > > From: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> > > > > Removed: > > > > * MACH_HARMONY > > * MACH_PAZ00 > > * MACH_TRIMSLICE > > > > These used to enable board support for individual boards. Now that we > > only support device tree, these options have been removed. > > > > Added: > > > > * TEGRA_PCI > > > > This used to be selected by the board options above. Select this > > explicitly now that the board options have been removed. > > > > * TEGRA_DEBUG_UART_AUTO_ODMDATA > > > > This makes the kernel automatically pick a UART for earlyprintk. It's > > likely to be a useful option for everyone. > > > > * PWM > > * PWM_TEGRA > > > > Enable the new PWM subsystem, and the Tegra driver within it. > > > > * GPIO_PCA953X > > * GPIO_PCA953X_IRQ > > * MFD_MAX8907 > > * REGULATOR_MAX8907 > > * RTC_DRV_MAX8907 > > > > Various drivers required for the Whistler board. > > I went ahead and applied this immediately to Tegra's for-3.7/defconfig. > If anyone objects, I can easily pull it out or rework it. Just for the record, I have no objections. Those changes all make perfect sense. Thierry [-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] ARM: tegra: defconfig updates [not found] ` <1345052375-13374-1-git-send-email-swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org> 2012-08-15 17:48 ` Stephen Warren @ 2012-08-15 20:12 ` Thierry Reding [not found] ` <20120815201244.GF12870-RM9K5IK7kjIQXX3q8xo1gnVAuStQJXxyR5q1nwbD4aMs9pC9oP6+/A@public.gmane.org> 2012-08-16 8:06 ` Marc Dietrich 2 siblings, 1 reply; 11+ messages in thread From: Thierry Reding @ 2012-08-15 20:12 UTC (permalink / raw) To: Stephen Warren Cc: Olof Johansson, Colin Cross, linux-tegra-u79uwXL29TY76Z2rM5mHXA, Stephen Warren, Marc Dietrich [-- Attachment #1: Type: text/plain, Size: 1019 bytes --] On Wed, Aug 15, 2012 at 11:39:35AM -0600, Stephen Warren wrote: > From: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> > > Removed: > > * MACH_HARMONY > * MACH_PAZ00 > * MACH_TRIMSLICE > > These used to enable board support for individual boards. Now that we > only support device tree, these options have been removed. > > Added: > > * TEGRA_PCI > > This used to be selected by the board options above. Select this > explicitly now that the board options have been removed. > > * TEGRA_DEBUG_UART_AUTO_ODMDATA > > This makes the kernel automatically pick a UART for earlyprintk. It's > likely to be a useful option for everyone. > > * PWM > * PWM_TEGRA > > Enable the new PWM subsystem, and the Tegra driver within it. > > * GPIO_PCA953X > * GPIO_PCA953X_IRQ > * MFD_MAX8907 > * REGULATOR_MAX8907 > * RTC_DRV_MAX8907 > > Various drivers required for the Whistler board. Just a nitpick: this list is missing GPIO_TPS65910. Thierry [-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
[parent not found: <20120815201244.GF12870-RM9K5IK7kjIQXX3q8xo1gnVAuStQJXxyR5q1nwbD4aMs9pC9oP6+/A@public.gmane.org>]
* Re: [PATCH] ARM: tegra: defconfig updates [not found] ` <20120815201244.GF12870-RM9K5IK7kjIQXX3q8xo1gnVAuStQJXxyR5q1nwbD4aMs9pC9oP6+/A@public.gmane.org> @ 2012-08-15 20:16 ` Stephen Warren [not found] ` <502C0385.6010203-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org> 0 siblings, 1 reply; 11+ messages in thread From: Stephen Warren @ 2012-08-15 20:16 UTC (permalink / raw) To: Thierry Reding Cc: Olof Johansson, Colin Cross, linux-tegra-u79uwXL29TY76Z2rM5mHXA, Stephen Warren, Marc Dietrich On 08/15/2012 02:12 PM, Thierry Reding wrote: > On Wed, Aug 15, 2012 at 11:39:35AM -0600, Stephen Warren wrote: >> From: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> >> >> Removed: >> >> * MACH_HARMONY * MACH_PAZ00 * MACH_TRIMSLICE >> >> These used to enable board support for individual boards. Now >> that we only support device tree, these options have been >> removed. >> >> Added: >> >> * TEGRA_PCI >> >> This used to be selected by the board options above. Select this >> explicitly now that the board options have been removed. >> >> * TEGRA_DEBUG_UART_AUTO_ODMDATA >> >> This makes the kernel automatically pick a UART for earlyprintk. >> It's likely to be a useful option for everyone. >> >> * PWM * PWM_TEGRA >> >> Enable the new PWM subsystem, and the Tegra driver within it. >> >> * GPIO_PCA953X * GPIO_PCA953X_IRQ * MFD_MAX8907 * >> REGULATOR_MAX8907 * RTC_DRV_MAX8907 >> >> Various drivers required for the Whistler board. > > Just a nitpick: this list is missing GPIO_TPS65910. It jut got moved in the file; it wasn't added nor removed (well, perhaps it was both:-). ^ permalink raw reply [flat|nested] 11+ messages in thread
[parent not found: <502C0385.6010203-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>]
* Re: [PATCH] ARM: tegra: defconfig updates [not found] ` <502C0385.6010203-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org> @ 2012-08-15 20:21 ` Thierry Reding 0 siblings, 0 replies; 11+ messages in thread From: Thierry Reding @ 2012-08-15 20:21 UTC (permalink / raw) To: Stephen Warren Cc: Olof Johansson, Colin Cross, linux-tegra-u79uwXL29TY76Z2rM5mHXA, Stephen Warren, Marc Dietrich [-- Attachment #1: Type: text/plain, Size: 1350 bytes --] On Wed, Aug 15, 2012 at 02:16:05PM -0600, Stephen Warren wrote: > On 08/15/2012 02:12 PM, Thierry Reding wrote: > > On Wed, Aug 15, 2012 at 11:39:35AM -0600, Stephen Warren wrote: > >> From: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> > >> > >> Removed: > >> > >> * MACH_HARMONY * MACH_PAZ00 * MACH_TRIMSLICE > >> > >> These used to enable board support for individual boards. Now > >> that we only support device tree, these options have been > >> removed. > >> > >> Added: > >> > >> * TEGRA_PCI > >> > >> This used to be selected by the board options above. Select this > >> explicitly now that the board options have been removed. > >> > >> * TEGRA_DEBUG_UART_AUTO_ODMDATA > >> > >> This makes the kernel automatically pick a UART for earlyprintk. > >> It's likely to be a useful option for everyone. > >> > >> * PWM * PWM_TEGRA > >> > >> Enable the new PWM subsystem, and the Tegra driver within it. > >> > >> * GPIO_PCA953X * GPIO_PCA953X_IRQ * MFD_MAX8907 * > >> REGULATOR_MAX8907 * RTC_DRV_MAX8907 > >> > >> Various drivers required for the Whistler board. > > > > Just a nitpick: this list is missing GPIO_TPS65910. > > It jut got moved in the file; it wasn't added nor removed (well, > perhaps it was both:-). Yes, you're right =). Sorry for the noise. Thierry [-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] ARM: tegra: defconfig updates [not found] ` <1345052375-13374-1-git-send-email-swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org> 2012-08-15 17:48 ` Stephen Warren 2012-08-15 20:12 ` Thierry Reding @ 2012-08-16 8:06 ` Marc Dietrich 2012-08-16 16:51 ` Stephen Warren 2 siblings, 1 reply; 11+ messages in thread From: Marc Dietrich @ 2012-08-16 8:06 UTC (permalink / raw) To: Stephen Warren Cc: Olof Johansson, Colin Cross, linux-tegra-u79uwXL29TY76Z2rM5mHXA, Stephen Warren, Thierry Reding Hi Stephen, Am Mittwoch, 15. August 2012, 11:39:35 schrieb Stephen Warren: > From: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> > > Removed: > > * MACH_HARMONY > * MACH_PAZ00 > * MACH_TRIMSLICE > > These used to enable board support for individual boards. Now that we > only support device tree, these options have been removed. > > Added: > > * TEGRA_PCI > > This used to be selected by the board options above. Select this > explicitly now that the board options have been removed. > > * TEGRA_DEBUG_UART_AUTO_ODMDATA > > This makes the kernel automatically pick a UART for earlyprintk. It's > likely to be a useful option for everyone. > > * PWM > * PWM_TEGRA > > Enable the new PWM subsystem, and the Tegra driver within it. > > * GPIO_PCA953X > * GPIO_PCA953X_IRQ > * MFD_MAX8907 > * REGULATOR_MAX8907 > * RTC_DRV_MAX8907 > > Various drivers required for the Whistler board. any reason why Wifi is not enabled yet? Something like (pseudo patch): -# CONFIG_WIRELESS is not set +CONFIG_CFG80211=m +CONFIG_CFG80211_WEXT=y +CONFIG_MAC80211=m +CONFIG_MAC80211_LEDS=y +CONFIG_RFKILL=y +CONFIG_RFKILL_INPUT=y +CONFIG_RFKILL_GPIO=y +CONFIG_RT2X00=m +CONFIG_RT2800USB=m would be nice (rt2x00 is the wifi chip on paz00). The Wifi LED needs something like this: +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=y +CONFIG_LEDS_GPIO=y +CONFIG_LEDS_TRIGGER_GPIO=y Marc > Signed-off-by: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> > Cc: Thierry Reding <thierry.reding-RM9K5IK7kjKj5M59NBduVrNAH6kLmebB@public.gmane.org> > Cc: Marc Dietrich <marvin24-Mmb7MZpHnFY@public.gmane.org> > --- > arch/arm/configs/tegra_defconfig | 15 ++++++++++----- > 1 files changed, 10 insertions(+), 5 deletions(-) > > diff --git a/arch/arm/configs/tegra_defconfig > b/arch/arm/configs/tegra_defconfig index db22453..4f078e0 100644 > --- a/arch/arm/configs/tegra_defconfig > +++ b/arch/arm/configs/tegra_defconfig > @@ -24,11 +24,11 @@ CONFIG_EFI_PARTITION=y > # CONFIG_IOSCHED_DEADLINE is not set > # CONFIG_IOSCHED_CFQ is not set > CONFIG_ARCH_TEGRA=y > +CONFIG_GPIO_PCA953X=y > CONFIG_ARCH_TEGRA_2x_SOC=y > CONFIG_ARCH_TEGRA_3x_SOC=y > -CONFIG_MACH_HARMONY=y > -CONFIG_MACH_PAZ00=y > -CONFIG_MACH_TRIMSLICE=y > +CONFIG_TEGRA_PCI=y > +CONFIG_TEGRA_DEBUG_UART_AUTO_ODMDATA=y > CONFIG_TEGRA_EMC_SCALING_ENABLE=y > CONFIG_SMP=y > CONFIG_PREEMPT=y > @@ -105,17 +105,20 @@ CONFIG_I2C_MUX_PINCTRL=y > CONFIG_I2C_TEGRA=y > CONFIG_SPI=y > CONFIG_SPI_TEGRA=y > -CONFIG_GPIO_TPS65910=y > +CONFIG_GPIO_PCA953X_IRQ=y > CONFIG_GPIO_TPS6586X=y > +CONFIG_GPIO_TPS65910=y > CONFIG_POWER_SUPPLY=y > CONFIG_BATTERY_SBS=y > CONFIG_SENSORS_LM90=y > CONFIG_MFD_TPS6586X=y > CONFIG_MFD_TPS65910=y > +CONFIG_MFD_MAX8907=y > CONFIG_REGULATOR=y > CONFIG_REGULATOR_FIXED_VOLTAGE=y > CONFIG_REGULATOR_VIRTUAL_CONSUMER=y > CONFIG_REGULATOR_GPIO=y > +CONFIG_REGULATOR_MAX8907=y > CONFIG_REGULATOR_TPS62360=y > CONFIG_REGULATOR_TPS6586X=y > CONFIG_REGULATOR_TPS65910=y > @@ -123,7 +126,6 @@ CONFIG_SOUND=y > CONFIG_SND=y > # CONFIG_SND_SUPPORT_OLD_API is not set > # CONFIG_SND_DRIVERS is not set > -# CONFIG_SND_PCI is not set > # CONFIG_SND_ARM is not set > # CONFIG_SND_SPI is not set > # CONFIG_SND_USB is not set > @@ -143,6 +145,7 @@ CONFIG_MMC_SDHCI=y > CONFIG_MMC_SDHCI_PLTFM=y > CONFIG_MMC_SDHCI_TEGRA=y > CONFIG_RTC_CLASS=y > +CONFIG_RTC_DRV_MAX8907=y > CONFIG_RTC_DRV_EM3027=y > CONFIG_RTC_DRV_TEGRA=y > CONFIG_STAGING=y > @@ -156,6 +159,8 @@ CONFIG_TEGRA_IOMMU_GART=y > CONFIG_TEGRA_IOMMU_SMMU=y > CONFIG_MEMORY=y > CONFIG_IIO=y > +CONFIG_PWM=y > +CONFIG_PWM_TEGRA=y > CONFIG_EXT2_FS=y > CONFIG_EXT2_FS_XATTR=y > CONFIG_EXT2_FS_POSIX_ACL=y ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] ARM: tegra: defconfig updates 2012-08-16 8:06 ` Marc Dietrich @ 2012-08-16 16:51 ` Stephen Warren 0 siblings, 0 replies; 11+ messages in thread From: Stephen Warren @ 2012-08-16 16:51 UTC (permalink / raw) To: Marc Dietrich Cc: Olof Johansson, Colin Cross, linux-tegra-u79uwXL29TY76Z2rM5mHXA, Stephen Warren, Thierry Reding On 08/16/2012 02:06 AM, Marc Dietrich wrote: ... > any reason why Wifi is not enabled yet? No specific reason; just nobody sent a patch to do it. Feel free to do so for any feature that works. We'd have to be careful not to enable SDIO-based WiFi yet, since that causes instability issues on boards that contain it. However, looking at Wei's patches for that, simply enabling the config options is not going to cause any issues; it would need board .dts changes to actually instantiate the driver. ^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH] ARM: tegra: defconfig updates @ 2013-06-23 16:03 Marc Dietrich [not found] ` <8e7853ceafe5a53e52ef451e1c0d515a01aae62e.1372003325.git.marvin24-Mmb7MZpHnFY@public.gmane.org> 0 siblings, 1 reply; 11+ messages in thread From: Marc Dietrich @ 2013-06-23 16:03 UTC (permalink / raw) To: linux-tegra-u79uwXL29TY76Z2rM5mHXA; +Cc: Stephen Warren Enable: * SYSVIPC (needed for some apps, e.g. fakeroot) * Elantech touchpad (touchpad on AC100) Signed-off-by: Marc Dietrich <marvin24-Mmb7MZpHnFY@public.gmane.org> --- arch/arm/configs/tegra_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/configs/tegra_defconfig b/arch/arm/configs/tegra_defconfig index 1effb43..4623eb7 100644 --- a/arch/arm/configs/tegra_defconfig +++ b/arch/arm/configs/tegra_defconfig @@ -1,3 +1,4 @@ +CONFIG_SYSVIPC=y CONFIG_NO_HZ=y CONFIG_HIGH_RES_TIMERS=y CONFIG_IKCONFIG=y @@ -105,6 +106,7 @@ CONFIG_RT2800USB=m CONFIG_INPUT_EVDEV=y CONFIG_KEYBOARD_GPIO=y CONFIG_KEYBOARD_TEGRA=y +CONFIG_MOUSE_PS2_ELANTECH=y CONFIG_INPUT_MISC=y CONFIG_INPUT_MPU3050=y # CONFIG_LEGACY_PTYS is not set -- 1.7.9.5 ^ permalink raw reply related [flat|nested] 11+ messages in thread
[parent not found: <8e7853ceafe5a53e52ef451e1c0d515a01aae62e.1372003325.git.marvin24-Mmb7MZpHnFY@public.gmane.org>]
* Re: [PATCH] ARM: tegra: defconfig updates [not found] ` <8e7853ceafe5a53e52ef451e1c0d515a01aae62e.1372003325.git.marvin24-Mmb7MZpHnFY@public.gmane.org> @ 2013-07-15 18:28 ` Stephen Warren 0 siblings, 0 replies; 11+ messages in thread From: Stephen Warren @ 2013-07-15 18:28 UTC (permalink / raw) To: Marc Dietrich; +Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA On 06/23/2013 10:03 AM, Marc Dietrich wrote: > Enable: > * SYSVIPC (needed for some apps, e.g. fakeroot) > * Elantech touchpad (touchpad on AC100) Applied to Tegra's for-3.12/defconfig branch. Note that I'll squash any future defconfig changes into this. ^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH] ARM: tegra: defconfig updates @ 2012-06-04 18:03 Stephen Warren 0 siblings, 0 replies; 11+ messages in thread From: Stephen Warren @ 2012-06-04 18:03 UTC (permalink / raw) To: Olof Johansson, Colin Cross Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA, Stephen Warren From: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> Enable: * SND_SOC_TEGRA_WM8753 (new feature) Remove some deleted options: * MACH_KAEN * MACH_VENTANA * MACH_WARIO Signed-off-by: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> --- I'll be applying this immediately for 3.6. arch/arm/configs/tegra_defconfig | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/arch/arm/configs/tegra_defconfig b/arch/arm/configs/tegra_defconfig index 1198dd6..019a43e 100644 --- a/arch/arm/configs/tegra_defconfig +++ b/arch/arm/configs/tegra_defconfig @@ -25,11 +25,8 @@ CONFIG_ARCH_TEGRA=y CONFIG_ARCH_TEGRA_2x_SOC=y CONFIG_ARCH_TEGRA_3x_SOC=y CONFIG_MACH_HARMONY=y -CONFIG_MACH_KAEN=y CONFIG_MACH_PAZ00=y CONFIG_MACH_TRIMSLICE=y -CONFIG_MACH_WARIO=y -CONFIG_MACH_VENTANA=y CONFIG_TEGRA_EMC_SCALING_ENABLE=y CONFIG_NO_HZ=y CONFIG_HIGH_RES_TIMERS=y @@ -126,6 +123,7 @@ CONFIG_SND=y # CONFIG_SND_USB is not set CONFIG_SND_SOC=y CONFIG_SND_SOC_TEGRA=y +CONFIG_SND_SOC_TEGRA_WM8753=y CONFIG_SND_SOC_TEGRA_WM8903=y CONFIG_SND_SOC_TEGRA_TRIMSLICE=y CONFIG_SND_SOC_TEGRA_ALC5632=y -- 1.7.0.4 ^ permalink raw reply related [flat|nested] 11+ messages in thread
end of thread, other threads:[~2013-07-15 18:28 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2012-08-15 17:39 [PATCH] ARM: tegra: defconfig updates Stephen Warren [not found] ` <1345052375-13374-1-git-send-email-swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org> 2012-08-15 17:48 ` Stephen Warren [not found] ` <502BE0F2.7080903-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org> 2012-08-15 20:10 ` Thierry Reding 2012-08-15 20:12 ` Thierry Reding [not found] ` <20120815201244.GF12870-RM9K5IK7kjIQXX3q8xo1gnVAuStQJXxyR5q1nwbD4aMs9pC9oP6+/A@public.gmane.org> 2012-08-15 20:16 ` Stephen Warren [not found] ` <502C0385.6010203-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org> 2012-08-15 20:21 ` Thierry Reding 2012-08-16 8:06 ` Marc Dietrich 2012-08-16 16:51 ` Stephen Warren -- strict thread matches above, loose matches on Subject: below -- 2013-06-23 16:03 Marc Dietrich [not found] ` <8e7853ceafe5a53e52ef451e1c0d515a01aae62e.1372003325.git.marvin24-Mmb7MZpHnFY@public.gmane.org> 2013-07-15 18:28 ` Stephen Warren 2012-06-04 18:03 Stephen Warren
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).