diff options
author | 2021-12-12 15:24:07 +0900 | |
---|---|---|
committer | 2021-12-16 11:06:40 +0100 | |
commit | 6ea966fca0841174b6bafca58e56f9c11d3af157 (patch) | |
tree | 87b2c5c093de6085db816757f0c25cd410144ac4 | |
parent | drm/format-helper: Add drm_fb_xrgb8888_to_xrgb2101010_toio() (diff) | |
download | wireguard-linux-6ea966fca0841174b6bafca58e56f9c11d3af157.tar.xz wireguard-linux-6ea966fca0841174b6bafca58e56f9c11d3af157.zip |
drm/simpledrm: Add [AX]RGB2101010 formats
This is the format used by the bootloader framebuffer on Apple ARM64
platforms.
Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de>
Signed-off-by: Hector Martin <marcan@marcan.st>
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Link: https://patchwork.freedesktop.org/patch/msgid/20211212062407.138309-4-marcan@marcan.st
-rw-r--r-- | drivers/gpu/drm/tiny/simpledrm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/tiny/simpledrm.c b/drivers/gpu/drm/tiny/simpledrm.c index 2f999915b9aa..b977f5c94562 100644 --- a/drivers/gpu/drm/tiny/simpledrm.c +++ b/drivers/gpu/drm/tiny/simpledrm.c @@ -571,8 +571,8 @@ static const uint32_t simpledrm_default_formats[] = { //DRM_FORMAT_XRGB1555, //DRM_FORMAT_ARGB1555, DRM_FORMAT_RGB888, - //DRM_FORMAT_XRGB2101010, - //DRM_FORMAT_ARGB2101010, + DRM_FORMAT_XRGB2101010, + DRM_FORMAT_ARGB2101010, }; static const uint64_t simpledrm_format_modifiers[] = { |