All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] ARM: tegra: defconfig updates for 3.8
@ 2012-11-15 21:44 Thierry Reding
       [not found] ` <1353015894-20003-1-git-send-email-thierry.reding-RM9K5IK7kjKj5M59NBduVrNAH6kLmebB@public.gmane.org>
  0 siblings, 1 reply; 5+ messages in thread
From: Thierry Reding @ 2012-11-15 21:44 UTC (permalink / raw)
  To: Stephen Warren; +Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA

The following set of patches enables the Tegra DRM driver along with the
framebuffer console and the PWM backlight driver to light up panels that
are driven by the DRM driver. A third patch enables SquashFS, which is
used as the root filesystem on Tamonten-based boards.

Thierry

Thierry Reding (3):
  ARM: tegra: Update default configuration (backlight)
  ARM: tegra: Update default configuration (DRM)
  ARM: tegra: Update default configuration (squashfs)

 arch/arm/configs/tegra_defconfig | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

-- 
1.8.0

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

* [PATCH 1/3] ARM: tegra: Update default configuration (backlight)
       [not found] ` <1353015894-20003-1-git-send-email-thierry.reding-RM9K5IK7kjKj5M59NBduVrNAH6kLmebB@public.gmane.org>
@ 2012-11-15 21:44   ` Thierry Reding
  2012-11-15 21:44   ` [PATCH 2/3] ARM: tegra: Update default configuration (DRM) Thierry Reding
                     ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Thierry Reding @ 2012-11-15 21:44 UTC (permalink / raw)
  To: Stephen Warren; +Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA

Enable the pwm-backlight driver that is used to light up the display on
many Tegra boards.

Signed-off-by: Thierry Reding <thierry.reding-RM9K5IK7kjKj5M59NBduVrNAH6kLmebB@public.gmane.org>
---
 arch/arm/configs/tegra_defconfig | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/arch/arm/configs/tegra_defconfig b/arch/arm/configs/tegra_defconfig
index 39107b1..4e910ec 100644
--- a/arch/arm/configs/tegra_defconfig
+++ b/arch/arm/configs/tegra_defconfig
@@ -143,6 +143,11 @@ CONFIG_MEDIA_SUPPORT=y
 CONFIG_MEDIA_CAMERA_SUPPORT=y
 CONFIG_MEDIA_USB_SUPPORT=y
 CONFIG_USB_VIDEO_CLASS=m
+CONFIG_BACKLIGHT_LCD_SUPPORT=y
+# CONFIG_LCD_CLASS_DEVICE is not set
+CONFIG_BACKLIGHT_CLASS_DEVICE=y
+# CONFIG_BACKLIGHT_GENERIC is not set
+CONFIG_BACKLIGHT_PWM=y
 CONFIG_SOUND=y
 CONFIG_SND=y
 # CONFIG_SND_SUPPORT_OLD_API is not set
-- 
1.8.0

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

* [PATCH 2/3] ARM: tegra: Update default configuration (DRM)
       [not found] ` <1353015894-20003-1-git-send-email-thierry.reding-RM9K5IK7kjKj5M59NBduVrNAH6kLmebB@public.gmane.org>
  2012-11-15 21:44   ` [PATCH 1/3] ARM: tegra: Update default configuration (backlight) Thierry Reding
@ 2012-11-15 21:44   ` Thierry Reding
  2012-11-15 21:44   ` [PATCH 3/3] ARM: tegra: Update default configuration (squashfs) Thierry Reding
  2012-11-15 22:27   ` [PATCH 0/3] ARM: tegra: defconfig updates for 3.8 Stephen Warren
  3 siblings, 0 replies; 5+ messages in thread
From: Thierry Reding @ 2012-11-15 21:44 UTC (permalink / raw)
  To: Stephen Warren; +Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA

Enable the NVIDIA Tegra DRM driver along with CMA to support large
contiguous buffer allocations. While at it, also enable the framebuffer
console that can be used on top of tegra-drm.

Signed-off-by: Thierry Reding <thierry.reding-RM9K5IK7kjKj5M59NBduVrNAH6kLmebB@public.gmane.org>
---
 arch/arm/configs/tegra_defconfig | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/arch/arm/configs/tegra_defconfig b/arch/arm/configs/tegra_defconfig
index 4e910ec..e05ac6c 100644
--- a/arch/arm/configs/tegra_defconfig
+++ b/arch/arm/configs/tegra_defconfig
@@ -80,6 +80,7 @@ CONFIG_RFKILL_GPIO=y
 CONFIG_DEVTMPFS=y
 CONFIG_DEVTMPFS_MOUNT=y
 # CONFIG_FIRMWARE_IN_KERNEL is not set
+CONFIG_CMA=y
 CONFIG_MTD=y
 CONFIG_MTD_CHAR=y
 CONFIG_MTD_M25P80=y
@@ -107,7 +108,6 @@ CONFIG_RT2800USB=m
 CONFIG_INPUT_EVDEV=y
 CONFIG_INPUT_MISC=y
 CONFIG_INPUT_MPU3050=y
-# CONFIG_VT is not set
 # CONFIG_LEGACY_PTYS is not set
 # CONFIG_DEVKMEM is not set
 CONFIG_SERIAL_8250=y
@@ -143,11 +143,15 @@ CONFIG_MEDIA_SUPPORT=y
 CONFIG_MEDIA_CAMERA_SUPPORT=y
 CONFIG_MEDIA_USB_SUPPORT=y
 CONFIG_USB_VIDEO_CLASS=m
+CONFIG_DRM=y
+CONFIG_DRM_TEGRA=y
 CONFIG_BACKLIGHT_LCD_SUPPORT=y
 # CONFIG_LCD_CLASS_DEVICE is not set
 CONFIG_BACKLIGHT_CLASS_DEVICE=y
 # CONFIG_BACKLIGHT_GENERIC is not set
 CONFIG_BACKLIGHT_PWM=y
+CONFIG_FRAMEBUFFER_CONSOLE=y
+CONFIG_LOGO=y
 CONFIG_SOUND=y
 CONFIG_SND=y
 # CONFIG_SND_SUPPORT_OLD_API is not set
-- 
1.8.0

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

* [PATCH 3/3] ARM: tegra: Update default configuration (squashfs)
       [not found] ` <1353015894-20003-1-git-send-email-thierry.reding-RM9K5IK7kjKj5M59NBduVrNAH6kLmebB@public.gmane.org>
  2012-11-15 21:44   ` [PATCH 1/3] ARM: tegra: Update default configuration (backlight) Thierry Reding
  2012-11-15 21:44   ` [PATCH 2/3] ARM: tegra: Update default configuration (DRM) Thierry Reding
@ 2012-11-15 21:44   ` Thierry Reding
  2012-11-15 22:27   ` [PATCH 0/3] ARM: tegra: defconfig updates for 3.8 Stephen Warren
  3 siblings, 0 replies; 5+ messages in thread
From: Thierry Reding @ 2012-11-15 21:44 UTC (permalink / raw)
  To: Stephen Warren; +Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA

Enable SquashFS which is used as the root filesystem on boards based on
the Tamonten processor module.

Signed-off-by: Thierry Reding <thierry.reding-RM9K5IK7kjKj5M59NBduVrNAH6kLmebB@public.gmane.org>
---
 arch/arm/configs/tegra_defconfig | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/arch/arm/configs/tegra_defconfig b/arch/arm/configs/tegra_defconfig
index e05ac6c..a7827fd 100644
--- a/arch/arm/configs/tegra_defconfig
+++ b/arch/arm/configs/tegra_defconfig
@@ -219,6 +219,9 @@ CONFIG_EXT4_FS=y
 CONFIG_VFAT_FS=y
 CONFIG_TMPFS=y
 CONFIG_TMPFS_POSIX_ACL=y
+CONFIG_SQUASHFS=y
+CONFIG_SQUASHFS_LZO=y
+CONFIG_SQUASHFS_XZ=y
 CONFIG_NFS_FS=y
 CONFIG_ROOT_NFS=y
 CONFIG_NLS_CODEPAGE_437=y
-- 
1.8.0

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

* Re: [PATCH 0/3] ARM: tegra: defconfig updates for 3.8
       [not found] ` <1353015894-20003-1-git-send-email-thierry.reding-RM9K5IK7kjKj5M59NBduVrNAH6kLmebB@public.gmane.org>
                     ` (2 preceding siblings ...)
  2012-11-15 21:44   ` [PATCH 3/3] ARM: tegra: Update default configuration (squashfs) Thierry Reding
@ 2012-11-15 22:27   ` Stephen Warren
  3 siblings, 0 replies; 5+ messages in thread
From: Stephen Warren @ 2012-11-15 22:27 UTC (permalink / raw)
  To: Thierry Reding; +Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA

On 11/15/2012 02:44 PM, Thierry Reding wrote:
> The following set of patches enables the Tegra DRM driver along with the
> framebuffer console and the PWM backlight driver to light up panels that
> are driven by the DRM driver. A third patch enables SquashFS, which is
> used as the root filesystem on Tamonten-based boards.

Thanks, I have squashed the series into Tegra's for-3.8/defconfig
branch. Squashed rather than applied since there's still a desire to
keep the number of defconfig-related commits minimal.

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

end of thread, other threads:[~2012-11-15 22:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-11-15 21:44 [PATCH 0/3] ARM: tegra: defconfig updates for 3.8 Thierry Reding
     [not found] ` <1353015894-20003-1-git-send-email-thierry.reding-RM9K5IK7kjKj5M59NBduVrNAH6kLmebB@public.gmane.org>
2012-11-15 21:44   ` [PATCH 1/3] ARM: tegra: Update default configuration (backlight) Thierry Reding
2012-11-15 21:44   ` [PATCH 2/3] ARM: tegra: Update default configuration (DRM) Thierry Reding
2012-11-15 21:44   ` [PATCH 3/3] ARM: tegra: Update default configuration (squashfs) Thierry Reding
2012-11-15 22:27   ` [PATCH 0/3] ARM: tegra: defconfig updates for 3.8 Stephen Warren

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.