All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <05abf54038b2fb066c64d0975ca2fe06e8c5be7f.camel@mediatek.com>

diff --git a/N1/2.bin b/N1/2.bin
new file mode 100644
index 0000000..a48581a
--- /dev/null
+++ b/N1/2.bin
@@ -0,0 +1,106 @@
+<html><body><p>
+<pre>
+On&#32;Wed,&#32;2025-04-09&#32;at&#32;15:13&#32;+0200,&#32;AngeloGioacchino&#32;Del&#32;Regno&#32;wrote:
+&gt;&#32;External&#32;email&#32;:&#32;Please&#32;do&#32;not&#32;click&#32;links&#32;or&#32;open&#32;attachments&#32;until&#32;you&#32;have&#32;verified&#32;the&#32;sender&#32;or&#32;the&#32;content.
+&gt;&#32;
+&gt;&#32;
+&gt;&#32;In&#32;preparation&#32;for&#32;adding&#32;support&#32;for&#32;additional&#32;color&#32;formats,
+&gt;&#32;add&#32;local&#32;helpers&#32;to&#32;map&#32;media&#32;bus&#32;format&#32;parameters&#32;to&#32;this
+&gt;&#32;driver&#39;s&#32;bit_num,&#32;channel_swap&#32;and&#32;color_format.
+&gt;&#32;
+&gt;&#32;This&#32;commit&#32;brings&#32;no&#32;functional&#32;changes.
+
+Reviewed-by:&#32;CK&#32;Hu&#32;&lt;ck.hu@mediatek.com&gt;
+
+&gt;&#32;
+&gt;&#32;Signed-off-by:&#32;AngeloGioacchino&#32;Del&#32;Regno&#32;&lt;angelogioacchino.delregno@collabora.com&gt;
+&gt;&#32;---
+&gt;&#32;&#32;drivers/gpu/drm/mediatek/mtk_dpi.c&#32;|&#32;46&#32;++++++++++++++++++++++++++----
+&gt;&#32;&#32;1&#32;file&#32;changed,&#32;40&#32;insertions(+),&#32;6&#32;deletions(-)
+&gt;&#32;
+&gt;&#32;diff&#32;--git&#32;a/drivers/gpu/drm/mediatek/mtk_dpi.c&#32;b/drivers/gpu/drm/mediatek/mtk_dpi.c
+&gt;&#32;index&#32;d735398e97f8..5a66dfe3ad40&#32;100644
+&gt;&#32;---&#32;a/drivers/gpu/drm/mediatek/mtk_dpi.c
+&gt;&#32;+++&#32;b/drivers/gpu/drm/mediatek/mtk_dpi.c
+&gt;&#32;@@&#32;-738,6&#32;+738,43&#32;@@&#32;static&#32;u32&#32;*mtk_dpi_bridge_atomic_get_input_bus_fmts(struct&#32;drm_bridge&#32;*bridge,
+&gt;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;return&#32;input_fmts;
+&gt;&#32;&#32;}
+&gt;&#32;
+&gt;&#32;+static&#32;unsigned&#32;int&#32;mtk_dpi_bus_fmt_bit_num(unsigned&#32;int&#32;out_bus_format)
+&gt;&#32;+{
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;switch&#32;(out_bus_format)&#32;{
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;default:
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;case&#32;MEDIA_BUS_FMT_RGB888_1X24:
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;case&#32;MEDIA_BUS_FMT_RGB888_2X12_LE:
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;case&#32;MEDIA_BUS_FMT_RGB888_2X12_BE:
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;case&#32;MEDIA_BUS_FMT_YUYV8_1X16:
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;return&#32;MTK_DPI_OUT_BIT_NUM_8BITS;
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;}
+&gt;&#32;+}
+&gt;&#32;+
+&gt;&#32;+static&#32;unsigned&#32;int&#32;mtk_dpi_bus_fmt_channel_swap(unsigned&#32;int&#32;out_bus_format)
+&gt;&#32;+{
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;switch&#32;(out_bus_format)&#32;{
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;default:
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;case&#32;MEDIA_BUS_FMT_RGB888_1X24:
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;case&#32;MEDIA_BUS_FMT_RGB888_2X12_LE:
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;case&#32;MEDIA_BUS_FMT_RGB888_2X12_BE:
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;case&#32;MEDIA_BUS_FMT_YUYV8_1X16:
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;return&#32;MTK_DPI_OUT_CHANNEL_SWAP_RGB;
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;}
+&gt;&#32;+}
+&gt;&#32;+
+&gt;&#32;+static&#32;unsigned&#32;int&#32;mtk_dpi_bus_fmt_color_format(unsigned&#32;int&#32;out_bus_format)
+&gt;&#32;+{
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;switch&#32;(out_bus_format)&#32;{
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;default:
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;case&#32;MEDIA_BUS_FMT_RGB888_1X24:
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;case&#32;MEDIA_BUS_FMT_RGB888_2X12_LE:
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;case&#32;MEDIA_BUS_FMT_RGB888_2X12_BE:
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;return&#32;MTK_DPI_COLOR_FORMAT_RGB;
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;case&#32;MEDIA_BUS_FMT_YUYV8_1X16:
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;return&#32;MTK_DPI_COLOR_FORMAT_YCBCR_422;
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;}
+&gt;&#32;+}
+&gt;&#32;+
+&gt;&#32;&#32;static&#32;int&#32;mtk_dpi_bridge_atomic_check(struct&#32;drm_bridge&#32;*bridge,
+&gt;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;struct&#32;drm_bridge_state&#32;*bridge_state,
+&gt;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;struct&#32;drm_crtc_state&#32;*crtc_state,
+&gt;&#32;@@&#32;-757,13&#32;+794,10&#32;@@&#32;static&#32;int&#32;mtk_dpi_bridge_atomic_check(struct&#32;drm_bridge&#32;*bridge,
+&gt;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;bridge_state-&gt;output_bus_cfg.format);
+&gt;&#32;
+&gt;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;dpi-&gt;output_fmt&#32;=&#32;out_bus_format;
+&gt;&#32;-&#32;&#32;&#32;&#32;&#32;&#32;&#32;dpi-&gt;bit_num&#32;=&#32;MTK_DPI_OUT_BIT_NUM_8BITS;
+&gt;&#32;-&#32;&#32;&#32;&#32;&#32;&#32;&#32;dpi-&gt;channel_swap&#32;=&#32;MTK_DPI_OUT_CHANNEL_SWAP_RGB;
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;dpi-&gt;bit_num&#32;=&#32;mtk_dpi_bus_fmt_bit_num(out_bus_format);
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;dpi-&gt;channel_swap&#32;=&#32;mtk_dpi_bus_fmt_channel_swap(out_bus_format);
+&gt;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;dpi-&gt;yc_map&#32;=&#32;MTK_DPI_OUT_YC_MAP_RGB;
+&gt;&#32;-&#32;&#32;&#32;&#32;&#32;&#32;&#32;if&#32;(out_bus_format&#32;==&#32;MEDIA_BUS_FMT_YUYV8_1X16)
+&gt;&#32;-&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;dpi-&gt;color_format&#32;=&#32;MTK_DPI_COLOR_FORMAT_YCBCR_422;
+&gt;&#32;-&#32;&#32;&#32;&#32;&#32;&#32;&#32;else
+&gt;&#32;-&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;dpi-&gt;color_format&#32;=&#32;MTK_DPI_COLOR_FORMAT_RGB;
+&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;dpi-&gt;color_format&#32;=&#32;mtk_dpi_bus_fmt_color_format(out_bus_format);
+&gt;&#32;
+&gt;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;return&#32;0;
+&gt;&#32;&#32;}
+&gt;&#32;--
+&gt;&#32;2.49.0
+&gt;&#32;
+
+
+</pre>
+</p></body></html><!--type:text--><!--{--><pre>************* MEDIATEK Confidentiality Notice
+ ********************
+The information contained in this e-mail message (including any 
+attachments) may be confidential, proprietary, privileged, or otherwise
+exempt from disclosure under applicable laws. It is intended to be 
+conveyed only to the designated recipient(s). Any use, dissemination, 
+distribution, printing, retaining or copying of this e-mail (including its 
+attachments) by unintended recipient(s) is strictly prohibited and may 
+be unlawful. If you are not an intended recipient of this e-mail, or believe
+ 
+that you have received this e-mail in error, please notify the sender 
+immediately (by replying to this e-mail), delete any and all copies of 
+this e-mail (including any attachments) from your system, and do not
+disclose the content of this e-mail to any other person. Thank you!
+</pre><!--}-->
diff --git a/N1/2.hdr b/N1/2.hdr
new file mode 100644
index 0000000..da1f671
--- /dev/null
+++ b/N1/2.hdr
@@ -0,0 +1,3 @@
+Content-Type: text/html;
+	charset="utf-8"
+Content-Transfer-Encoding: base64
diff --git a/a/content_digest b/N1/content_digest
index e63ec3c..074835f 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -18,7 +18,7 @@
   matthias.bgg@gmail.com <matthias.bgg@gmail.com>
   linux-mediatek@lists.infradead.org <linux-mediatek@lists.infradead.org>
  " kernel@collabora.com <kernel@collabora.com>\0"
- "\00:1\0"
+ "\01:1\0"
  "b\0"
  "On Wed, 2025-04-09 at 15:13 +0200, AngeloGioacchino Del Regno wrote:\n"
  "> External email : Please do not click links or open attachments until you have verified the sender or the content.\n"
@@ -106,5 +106,113 @@
  "> --\n"
  "> 2.49.0\n"
  >
+ "\01:2\0"
+ "b\0"
+ "<html><body><p>\r\n"
+ "<pre>\r\n"
+ "On&#32;Wed,&#32;2025-04-09&#32;at&#32;15:13&#32;+0200,&#32;AngeloGioacchino&#32;Del&#32;Regno&#32;wrote:\r\n"
+ "&gt;&#32;External&#32;email&#32;:&#32;Please&#32;do&#32;not&#32;click&#32;links&#32;or&#32;open&#32;attachments&#32;until&#32;you&#32;have&#32;verified&#32;the&#32;sender&#32;or&#32;the&#32;content.\r\n"
+ "&gt;&#32;\r\n"
+ "&gt;&#32;\r\n"
+ "&gt;&#32;In&#32;preparation&#32;for&#32;adding&#32;support&#32;for&#32;additional&#32;color&#32;formats,\r\n"
+ "&gt;&#32;add&#32;local&#32;helpers&#32;to&#32;map&#32;media&#32;bus&#32;format&#32;parameters&#32;to&#32;this\r\n"
+ "&gt;&#32;driver&#39;s&#32;bit_num,&#32;channel_swap&#32;and&#32;color_format.\r\n"
+ "&gt;&#32;\r\n"
+ "&gt;&#32;This&#32;commit&#32;brings&#32;no&#32;functional&#32;changes.\r\n"
+ "\r\n"
+ "Reviewed-by:&#32;CK&#32;Hu&#32;&lt;ck.hu@mediatek.com&gt;\r\n"
+ "\r\n"
+ "&gt;&#32;\r\n"
+ "&gt;&#32;Signed-off-by:&#32;AngeloGioacchino&#32;Del&#32;Regno&#32;&lt;angelogioacchino.delregno@collabora.com&gt;\r\n"
+ "&gt;&#32;---\r\n"
+ "&gt;&#32;&#32;drivers/gpu/drm/mediatek/mtk_dpi.c&#32;|&#32;46&#32;++++++++++++++++++++++++++----\r\n"
+ "&gt;&#32;&#32;1&#32;file&#32;changed,&#32;40&#32;insertions(+),&#32;6&#32;deletions(-)\r\n"
+ "&gt;&#32;\r\n"
+ "&gt;&#32;diff&#32;--git&#32;a/drivers/gpu/drm/mediatek/mtk_dpi.c&#32;b/drivers/gpu/drm/mediatek/mtk_dpi.c\r\n"
+ "&gt;&#32;index&#32;d735398e97f8..5a66dfe3ad40&#32;100644\r\n"
+ "&gt;&#32;---&#32;a/drivers/gpu/drm/mediatek/mtk_dpi.c\r\n"
+ "&gt;&#32;+++&#32;b/drivers/gpu/drm/mediatek/mtk_dpi.c\r\n"
+ "&gt;&#32;@@&#32;-738,6&#32;+738,43&#32;@@&#32;static&#32;u32&#32;*mtk_dpi_bridge_atomic_get_input_bus_fmts(struct&#32;drm_bridge&#32;*bridge,\r\n"
+ "&gt;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;return&#32;input_fmts;\r\n"
+ "&gt;&#32;&#32;}\r\n"
+ "&gt;&#32;\r\n"
+ "&gt;&#32;+static&#32;unsigned&#32;int&#32;mtk_dpi_bus_fmt_bit_num(unsigned&#32;int&#32;out_bus_format)\r\n"
+ "&gt;&#32;+{\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;switch&#32;(out_bus_format)&#32;{\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;default:\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;case&#32;MEDIA_BUS_FMT_RGB888_1X24:\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;case&#32;MEDIA_BUS_FMT_RGB888_2X12_LE:\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;case&#32;MEDIA_BUS_FMT_RGB888_2X12_BE:\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;case&#32;MEDIA_BUS_FMT_YUYV8_1X16:\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;return&#32;MTK_DPI_OUT_BIT_NUM_8BITS;\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;}\r\n"
+ "&gt;&#32;+}\r\n"
+ "&gt;&#32;+\r\n"
+ "&gt;&#32;+static&#32;unsigned&#32;int&#32;mtk_dpi_bus_fmt_channel_swap(unsigned&#32;int&#32;out_bus_format)\r\n"
+ "&gt;&#32;+{\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;switch&#32;(out_bus_format)&#32;{\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;default:\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;case&#32;MEDIA_BUS_FMT_RGB888_1X24:\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;case&#32;MEDIA_BUS_FMT_RGB888_2X12_LE:\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;case&#32;MEDIA_BUS_FMT_RGB888_2X12_BE:\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;case&#32;MEDIA_BUS_FMT_YUYV8_1X16:\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;return&#32;MTK_DPI_OUT_CHANNEL_SWAP_RGB;\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;}\r\n"
+ "&gt;&#32;+}\r\n"
+ "&gt;&#32;+\r\n"
+ "&gt;&#32;+static&#32;unsigned&#32;int&#32;mtk_dpi_bus_fmt_color_format(unsigned&#32;int&#32;out_bus_format)\r\n"
+ "&gt;&#32;+{\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;switch&#32;(out_bus_format)&#32;{\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;default:\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;case&#32;MEDIA_BUS_FMT_RGB888_1X24:\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;case&#32;MEDIA_BUS_FMT_RGB888_2X12_LE:\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;case&#32;MEDIA_BUS_FMT_RGB888_2X12_BE:\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;return&#32;MTK_DPI_COLOR_FORMAT_RGB;\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;case&#32;MEDIA_BUS_FMT_YUYV8_1X16:\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;return&#32;MTK_DPI_COLOR_FORMAT_YCBCR_422;\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;}\r\n"
+ "&gt;&#32;+}\r\n"
+ "&gt;&#32;+\r\n"
+ "&gt;&#32;&#32;static&#32;int&#32;mtk_dpi_bridge_atomic_check(struct&#32;drm_bridge&#32;*bridge,\r\n"
+ "&gt;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;struct&#32;drm_bridge_state&#32;*bridge_state,\r\n"
+ "&gt;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;struct&#32;drm_crtc_state&#32;*crtc_state,\r\n"
+ "&gt;&#32;@@&#32;-757,13&#32;+794,10&#32;@@&#32;static&#32;int&#32;mtk_dpi_bridge_atomic_check(struct&#32;drm_bridge&#32;*bridge,\r\n"
+ "&gt;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;bridge_state-&gt;output_bus_cfg.format);\r\n"
+ "&gt;&#32;\r\n"
+ "&gt;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;dpi-&gt;output_fmt&#32;=&#32;out_bus_format;\r\n"
+ "&gt;&#32;-&#32;&#32;&#32;&#32;&#32;&#32;&#32;dpi-&gt;bit_num&#32;=&#32;MTK_DPI_OUT_BIT_NUM_8BITS;\r\n"
+ "&gt;&#32;-&#32;&#32;&#32;&#32;&#32;&#32;&#32;dpi-&gt;channel_swap&#32;=&#32;MTK_DPI_OUT_CHANNEL_SWAP_RGB;\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;dpi-&gt;bit_num&#32;=&#32;mtk_dpi_bus_fmt_bit_num(out_bus_format);\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;dpi-&gt;channel_swap&#32;=&#32;mtk_dpi_bus_fmt_channel_swap(out_bus_format);\r\n"
+ "&gt;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;dpi-&gt;yc_map&#32;=&#32;MTK_DPI_OUT_YC_MAP_RGB;\r\n"
+ "&gt;&#32;-&#32;&#32;&#32;&#32;&#32;&#32;&#32;if&#32;(out_bus_format&#32;==&#32;MEDIA_BUS_FMT_YUYV8_1X16)\r\n"
+ "&gt;&#32;-&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;dpi-&gt;color_format&#32;=&#32;MTK_DPI_COLOR_FORMAT_YCBCR_422;\r\n"
+ "&gt;&#32;-&#32;&#32;&#32;&#32;&#32;&#32;&#32;else\r\n"
+ "&gt;&#32;-&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;dpi-&gt;color_format&#32;=&#32;MTK_DPI_COLOR_FORMAT_RGB;\r\n"
+ "&gt;&#32;+&#32;&#32;&#32;&#32;&#32;&#32;&#32;dpi-&gt;color_format&#32;=&#32;mtk_dpi_bus_fmt_color_format(out_bus_format);\r\n"
+ "&gt;&#32;\r\n"
+ "&gt;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;return&#32;0;\r\n"
+ "&gt;&#32;&#32;}\r\n"
+ "&gt;&#32;--\r\n"
+ "&gt;&#32;2.49.0\r\n"
+ "&gt;&#32;\r\n"
+ "\r\n"
+ "\r\n"
+ "</pre>\r\n"
+ "</p></body></html><!--type:text--><!--{--><pre>************* MEDIATEK Confidentiality Notice\r\n"
+ " ********************\r\n"
+ "The information contained in this e-mail message (including any \r\n"
+ "attachments) may be confidential, proprietary, privileged, or otherwise\r\n"
+ "exempt from disclosure under applicable laws. It is intended to be \r\n"
+ "conveyed only to the designated recipient(s). Any use, dissemination, \r\n"
+ "distribution, printing, retaining or copying of this e-mail (including its \r\n"
+ "attachments) by unintended recipient(s) is strictly prohibited and may \r\n"
+ "be unlawful. If you are not an intended recipient of this e-mail, or believe\r\n"
+ " \r\n"
+ "that you have received this e-mail in error, please notify the sender \r\n"
+ "immediately (by replying to this e-mail), delete any and all copies of \r\n"
+ "this e-mail (including any attachments) from your system, and do not\r\n"
+ "disclose the content of this e-mail to any other person. Thank you!\r\n"
+ </pre><!--}-->
 
-bd817b45d8199442b8d7b7407d9d2ed9be9e41ac9c4282b1de6bc9c6c7177311
+3114d4ec66c95bdacbbfeb65c19cd5a289334779eaf3b3d655712af685f8a12b

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.