diff options
author | Arto Merilainen <amerilainen@nvidia.com> | 2013-03-22 16:34:08 +0200 |
---|---|---|
committer | Thierry Reding <thierry.reding@avionic-design.de> | 2013-04-22 12:40:04 +0200 |
commit | de2ba664c30fcdb0f678ab6cbb57e01a0b206085 (patch) | |
tree | ff5cca80336ae30f9d050305750a89332d4198a8 /drivers/gpu/host1x/drm/Kconfig | |
parent | 692e6d7be8099225f04b2d97299bc03479a5fcdb (diff) | |
download | op-kernel-dev-de2ba664c30fcdb0f678ab6cbb57e01a0b206085.zip op-kernel-dev-de2ba664c30fcdb0f678ab6cbb57e01a0b206085.tar.gz |
gpu: host1x: drm: Add memory manager and fb
This patch introduces a memory manager for tegra drm and moves
existing parts to use it. As cma framebuffer helpers can no more
be used, this patch adds also a separate framebuffer driver for
tegra.
Signed-off-by: Arto Merilainen <amerilainen@nvidia.com>
Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com>
Reviewed-by: Thierry Reding <thierry.reding@avionic-design.de>
Tested-by: Thierry Reding <thierry.reding@avionic-design.de>
Tested-by: Erik Faye-Lund <kusmabite@gmail.com>
Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
Diffstat (limited to 'drivers/gpu/host1x/drm/Kconfig')
-rw-r--r-- | drivers/gpu/host1x/drm/Kconfig | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/gpu/host1x/drm/Kconfig b/drivers/gpu/host1x/drm/Kconfig index 33f8f7a..9a28901 100644 --- a/drivers/gpu/host1x/drm/Kconfig +++ b/drivers/gpu/host1x/drm/Kconfig @@ -2,11 +2,9 @@ config DRM_TEGRA bool "NVIDIA Tegra DRM" depends on DRM && OF select DRM_KMS_HELPER - select DRM_GEM_CMA_HELPER - select DRM_KMS_CMA_HELPER - select FB_CFB_FILLRECT - select FB_CFB_COPYAREA - select FB_CFB_IMAGEBLIT + select FB_SYS_FILLRECT + select FB_SYS_COPYAREA + select FB_SYS_IMAGEBLIT help Choose this option if you have an NVIDIA Tegra SoC. |