diff options
author | Joel Stanley <joel@jms.id.au> | 2019-04-03 10:49:08 +1030 |
---|---|---|
committer | Joel Stanley <joel@jms.id.au> | 2019-04-04 11:57:34 +1030 |
commit | 4f2a8f5898ecd806cc0ccece1df4c0f143f80a74 (patch) | |
tree | fd039e5b9430fd7c004859fd06170ca22e1630b8 /drivers/gpu/drm/aspeed/Kconfig | |
parent | eff9f244c1237f681c41dd66b811efec590e9deb (diff) | |
download | linux-4f2a8f5898ecd806cc0ccece1df4c0f143f80a74.tar.bz2 |
drm: Add ASPEED GFX driver
This driver is for the ASPEED BMC SoC's GFX display hardware. This
driver runs on the ARM based BMC systems, unlike the ast driver which
runs on a host CPU and is is for a PCI graphics device.
Signed-off-by: Joel Stanley <joel@jms.id.au>
Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Reviewed-by: Noralf Trønnes <noralf@tronnes.org>
Reviewed-by: Sam Ravnborg <sam@ravnborg.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20190403001909.31637-3-joel@jms.id.au
Diffstat (limited to 'drivers/gpu/drm/aspeed/Kconfig')
-rw-r--r-- | drivers/gpu/drm/aspeed/Kconfig | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/drivers/gpu/drm/aspeed/Kconfig b/drivers/gpu/drm/aspeed/Kconfig new file mode 100644 index 000000000000..42b74d18a41b --- /dev/null +++ b/drivers/gpu/drm/aspeed/Kconfig @@ -0,0 +1,14 @@ +config DRM_ASPEED_GFX + tristate "ASPEED BMC Display Controller" + depends on DRM && OF + select DRM_KMS_HELPER + select DRM_KMS_CMA_HELPER + select DRM_PANEL + select DMA_CMA + select CMA + select MFD_SYSCON + help + Chose this option if you have an ASPEED AST2500 SOC Display + Controller (aka GFX). + + If M is selected this module will be called aspeed_gfx. |