diff options
Diffstat (limited to 'drivers/gpu/ipu-v3')
-rw-r--r-- | drivers/gpu/ipu-v3/ipu-common.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/gpu/ipu-v3/ipu-common.c b/drivers/gpu/ipu-v3/ipu-common.c index f5a4e1ac2b50..49ee990b4d1f 100644 --- a/drivers/gpu/ipu-v3/ipu-common.c +++ b/drivers/gpu/ipu-v3/ipu-common.c | |||
@@ -101,6 +101,19 @@ enum ipu_color_space ipu_pixelformat_to_colorspace(u32 pixelformat) | |||
101 | } | 101 | } |
102 | EXPORT_SYMBOL_GPL(ipu_pixelformat_to_colorspace); | 102 | EXPORT_SYMBOL_GPL(ipu_pixelformat_to_colorspace); |
103 | 103 | ||
104 | enum ipu_color_space ipu_mbus_code_to_colorspace(u32 mbus_code) | ||
105 | { | ||
106 | switch (mbus_code & 0xf000) { | ||
107 | case 0x1000: | ||
108 | return IPUV3_COLORSPACE_RGB; | ||
109 | case 0x2000: | ||
110 | return IPUV3_COLORSPACE_YUV; | ||
111 | default: | ||
112 | return IPUV3_COLORSPACE_UNKNOWN; | ||
113 | } | ||
114 | } | ||
115 | EXPORT_SYMBOL_GPL(ipu_mbus_code_to_colorspace); | ||
116 | |||
104 | struct ipuv3_channel *ipu_idmac_get(struct ipu_soc *ipu, unsigned num) | 117 | struct ipuv3_channel *ipu_idmac_get(struct ipu_soc *ipu, unsigned num) |
105 | { | 118 | { |
106 | struct ipuv3_channel *channel; | 119 | struct ipuv3_channel *channel; |