From: "CK Hu (胡俊光)" <ck.hu@mediatek.com>
To: "sumit.semwal@linaro.org" <sumit.semwal@linaro.org>,
"christian.koenig@amd.com" <christian.koenig@amd.com>,
"mchehab@kernel.org" <mchehab@kernel.org>,
"conor+dt@kernel.org" <conor+dt@kernel.org>,
"robh@kernel.org" <robh@kernel.org>,
"matthias.bgg@gmail.com" <matthias.bgg@gmail.com>,
"krzk+dt@kernel.org" <krzk+dt@kernel.org>,
"AngeloGioacchino Del Regno"
<angelogioacchino.delregno@collabora.com>,
"Shu-hsiang Yang (楊舒翔)" <Shu-hsiang.Yang@mediatek.com>
Cc: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"linux-mediatek@lists.infradead.org"
<linux-mediatek@lists.infradead.org>,
"yunkec@chromium.org" <yunkec@chromium.org>,
"linaro-mm-sig@lists.linaro.org" <linaro-mm-sig@lists.linaro.org>,
"linux-media@vger.kernel.org" <linux-media@vger.kernel.org>,
"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
"Yaya Chang (張雅清)" <Yaya.Chang@mediatek.com>,
Project_Global_Chrome_Upstream_Group
<Project_Global_Chrome_Upstream_Group@mediatek.com>,
"dri-devel@lists.freedesktop.org"
<dri-devel@lists.freedesktop.org>,
"Teddy Chen (陳乾元)" <Teddy.Chen@mediatek.com>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>,
"hidenorik@chromium.org" <hidenorik@chromium.org>,
"Shun-Yi Wang (王順億)" <Shun-Yi.Wang@mediatek.com>
Subject: Re: [PATCH v1 06/10] media: platform: mediatek: add isp_7x utility
Date: Mon, 14 Oct 2024 05:21:21 +0000 [thread overview]
Message-ID: <330f06069eaa7b6843709bb0d29c3ad5f23a4f3c.camel@mediatek.com> (raw)
In-Reply-To: <20241009111551.27052-7-Shu-hsiang.Yang@mediatek.com>
Hi, Shu-hsiang:
On Wed, 2024-10-09 at 19:15 +0800, Shu-hsiang Yang wrote:
> Introduces utility files for the MediaTek ISP7.x camsys driver. These
> utilities provide essential platform definitions, debugging tools, and
> management functions to support ISP operations and SCP communication.
> Key functionalities include:
> 1.Hardware pipeline and register definitions for managing image
> processing modules.
> 2.DMA debugging utilities and buffer management functions.
> 3.Definitions of supported image formats for proper data handling.
> 4.IPI and SCP communication structures for module state management and
> configuring ISP.
> 5.Metadata parameters for configuring image processing.
>
> Signed-off-by: Shu-hsiang Yang <Shu-hsiang.Yang@mediatek.com>
> ---
[snip]
> +/*
> + * V 4 L 2 M E T A B U F F E R L A Y O U T
> + */
> +
> +/*
> + * struct mtk_cam_uapi_meta_raw_stats_cfg
> + *
> + * @ae_awb_enable: To indicate if AE and AWB should be enblaed or not. If
> + * it is 1, it means that we enable the following parts of
> + * hardware:
> + * (1) AE/AWB
> + * (2) aao
> + * (3) aaho
> + * @af_enable: To indicate if AF should be enabled or not. If it is 1,
> + * it means that the AF and afo is enabled.
> + * @dgn_enable: To indicate if dgn module should be enabled or not.
> + * @flk_enable: If it is 1, it means flk and flko is enable. If ie is 0,
> + * both flk and flko is disabled.
> + * @tsf_enable: If it is 1, it means tsfs and tsfso is enable. If ie is 0,
> + * both tsfs and tsfso is disabled.
> + * @wb_enable: To indicate if wb module should be enabled or not.
> + * @pde_enable: To indicate if pde module should be enabled or not.
> + * @ae_param: AE Statistic window config
> + * @awb_param: AWB statistic configuration control
> + * @dgn_param: DGN settings
> + * @flk_param: Flicker statistic configuration
> + * @tsf_param: tsf statistic configuration
> + * @wb_param: WB settings
> + * @pde_param: pde settings
> + */
> +struct mtk_cam_uapi_meta_raw_stats_cfg {
struct mtk_cam_uapi_meta_raw_stats_cfg{} is useless, so drop it.
Regards,
CK
> + s8 ae_awb_enable;
> + s8 af_enable;
> + s8 dgn_enable;
> + s8 flk_enable;
> + s8 tsf_enable;
> + s8 wb_enable;
> + s8 pde_enable;
> + u8 rsv;
> +
> + struct mtk_cam_uapi_ae_param ae_param;
> + struct mtk_cam_uapi_awb_param awb_param;
> + struct mtk_cam_uapi_af_param af_param;
> + struct mtk_cam_uapi_dgn_param dgn_param;
> + struct mtk_cam_uapi_flk_param flk_param;
> + struct mtk_cam_uapi_tsf_param tsf_param;
> + struct mtk_cam_uapi_wb_param wb_param;
> + struct mtk_cam_uapi_pde_param pde_param;
> +
> + struct mtk_cam_uapi_prot {
> + /* The following top control are generated by script */
> + u8 drzh2n_r1_tuning_enable;
> + u8 drzh2n_r2_tuning_enable;
> + u8 drzh2n_r3_tuning_enable;
> + u8 drzh2n_r4_tuning_enable;
> + u8 drzh2n_r5_tuning_enable;
> + u8 drzh2n_r6_tuning_enable;
> + u8 drzh2n_r7_tuning_enable;
> + u8 drzh2n_r8_tuning_enable;
> + u8 drzs4n_r1_tuning_enable;
> + u8 drzs4n_r2_tuning_enable;
> + u8 drzs4n_r3_tuning_enable;
> + u8 dm_tuning_enable;
> + u8 drzs8t_r1_tuning_enable;
> + u8 drzs8t_r2_tuning_enable;
> + u8 ggm_r1_tuning_enable;
> + u8 ggm_r2_tuning_enable;
> + u8 ggm_r3_tuning_enable;
> + u8 bpc_r1_enable;
> + u8 bpc_r2_enable;
> + u8 ccm_r1_enable;
> + u8 ccm_r2_enable;
> + u8 ccm_r3_enable;
> + u8 fus_enable;
> + u8 g2c_r1_enable;
> + u8 g2c_r2_enable;
> + u8 g2c_r3_enable;
> + u8 hlr_enable;
> + u8 lsc_enable;
> + u8 ltm_enable;
> + u8 ltms_enable;
> + u8 obc_r1_enable;
> + u8 obc_r2_enable;
> + u8 tcy_r1_enable;
> + u8 tcy_r2_enable;
> + u8 tcy_r3_enable;
> + u8 tncs_r1_enable;
> +
> + struct mtk_cam_uapi_ccm_param_prot ccm_r1_param;
> + struct mtk_cam_uapi_ccm_param_prot ccm_r2_param;
> + struct mtk_cam_uapi_ccm_param_prot ccm_r3_param;
> + struct mtk_cam_uapi_drzh2n_param_prot drzh2n_r1_param;
> + struct mtk_cam_uapi_drzh2n_param_prot drzh2n_r2_param;
> + struct mtk_cam_uapi_drzh2n_param_prot drzh2n_r3_param;
> + struct mtk_cam_uapi_drzh2n_param_prot drzh2n_r4_param;
> + struct mtk_cam_uapi_drzh2n_param_prot drzh2n_r5_param;
> + struct mtk_cam_uapi_drzh2n_param_prot drzh2n_r6_param;
> + struct mtk_cam_uapi_drzh2n_param_prot drzh2n_r7_param;
> + struct mtk_cam_uapi_drzh2n_param_prot drzh2n_r8_param;
> + struct mtk_cam_uapi_drzs4n_param_prot drzs4n_r1_param;
> + struct mtk_cam_uapi_drzs4n_param_prot drzs4n_r2_param;
> + struct mtk_cam_uapi_drzs4n_param_prot drzs4n_r3_param;
> + struct mtk_cam_uapi_tncs_param_prot tncs_param;
> + /* script generation done */
> + struct mtk_cam_uapi_drzs8t_param_prot drzs8t_r1_param;
> + struct mtk_cam_uapi_drzs8t_param_prot drzs8t_r2_param;
> + struct mtk_cam_uapi_awb_param_prot awb_param;
> + struct mtk_cam_uapi_bpc_param_prot bpc_param;
> + struct mtk_cam_uapi_lsc_param_prot lsc_param;
> + struct mtk_cam_uapi_slk_param_prot slk_param;
> + struct mtk_cam_uapi_wb_param_prot wb_param;
> + struct mtk_cam_uapi_ltms_param_prot ltms_param;
> + struct mtk_cam_uapi_yuvo_param_prot yuvo_r2_param;
> + struct mtk_cam_uapi_yuvo_param_prot yuvo_r4_param;
> + /* The following module stuctures are generated by script */
> + struct mtk_cam_uapi_regmap_raw_bpc bpc_r1;
> + struct mtk_cam_uapi_regmap_raw_bpc bpc_r2;
> + struct mtk_cam_uapi_regmap_raw_ccm ccm_r1;
> + struct mtk_cam_uapi_regmap_raw_ccm ccm_r2;
> + struct mtk_cam_uapi_regmap_raw_ccm ccm_r3;
> + struct mtk_cam_uapi_regmap_raw_dm dm_r1;
> + u8 rsv1[116];
> + struct mtk_cam_uapi_regmap_raw_g2c g2c_r1;
> + struct mtk_cam_uapi_regmap_raw_g2c g2c_r2;
> + struct mtk_cam_uapi_regmap_raw_g2c g2c_r3;
> + struct mtk_cam_uapi_regmap_raw_ggm ggm_r1;
> + struct mtk_cam_uapi_regmap_raw_ggm ggm_r2;
> + struct mtk_cam_uapi_regmap_raw_ggm ggm_r3;
> + u8 rsv2[68];
> + struct mtk_cam_uapi_regmap_raw_lsc lsc_r1;
> + struct mtk_cam_uapi_regmap_raw_ltm ltm_r1;
> + struct mtk_cam_uapi_regmap_raw_ltms ltms_r1;
> + struct mtk_cam_uapi_regmap_raw_obc obc_r1;
> + struct mtk_cam_uapi_regmap_raw_obc obc_r2;
> + u8 rsv3[1420];
> + struct mtk_cam_uapi_regmap_raw_tsfs tsfs_r1;
> + u8 rsv4[50080];
> + /* script generation done */
> + } __packed prot;
> +} __packed;
> +
next prev parent reply other threads:[~2024-10-14 5:21 UTC|newest]
Thread overview: 93+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-09 11:15 [PATCH v1 00/10] Add MediaTek ISP7 camera system driver Shu-hsiang Yang
2024-10-09 11:15 ` [PATCH v1 01/10] dt-bindings: media: mediatek: add camsys device Shu-hsiang Yang
2024-10-09 21:00 ` Rob Herring
2024-10-11 1:29 ` CK Hu (胡俊光)
2024-10-11 3:20 ` CK Hu (胡俊光)
2024-10-22 5:36 ` Krzysztof Kozlowski
2024-11-11 1:37 ` CK Hu (胡俊光)
2024-11-11 2:38 ` CK Hu (胡俊光)
2024-10-09 11:15 ` [PATCH v1 02/10] media: platform: mediatek: add seninf controller Shu-hsiang Yang
2024-10-09 12:50 ` AngeloGioacchino Del Regno
2024-10-11 1:36 ` CK Hu (胡俊光)
2024-10-11 2:38 ` CK Hu (胡俊光)
2024-10-22 4:16 ` CK Hu (胡俊光)
2024-10-28 1:55 ` CK Hu (胡俊光)
2024-10-09 11:15 ` [PATCH v1 03/10] media: platform: mediatek: add isp_7x seninf unit Shu-hsiang Yang
2024-10-14 9:25 ` CK Hu (胡俊光)
2024-10-18 8:54 ` CK Hu (胡俊光)
2024-10-28 1:27 ` CK Hu (胡俊光)
2024-10-28 1:30 ` CK Hu (胡俊光)
2024-11-06 5:58 ` CK Hu (胡俊光)
2024-11-18 9:23 ` CK Hu (胡俊光)
2024-11-18 9:28 ` CK Hu (胡俊光)
2024-11-19 1:46 ` CK Hu (胡俊光)
2024-11-19 1:50 ` CK Hu (胡俊光)
2024-11-20 6:35 ` CK Hu (胡俊光)
2024-10-09 11:15 ` [PATCH v1 04/10] media: platform: mediatek: add isp_7x cam-raw unit Shu-hsiang Yang
2024-10-10 12:49 ` AngeloGioacchino Del Regno
2024-10-11 2:23 ` CK Hu (胡俊光)
2024-10-11 2:55 ` CK Hu (胡俊光)
2024-10-11 5:40 ` CK Hu (胡俊光)
2024-10-11 6:03 ` CK Hu (胡俊光)
2024-10-22 5:43 ` Krzysztof Kozlowski
2024-10-22 6:14 ` CK Hu (胡俊光)
2024-10-22 6:30 ` CK Hu (胡俊光)
2024-10-23 10:05 ` CK Hu (胡俊光)
2024-10-25 6:30 ` CK Hu (胡俊光)
2024-10-28 6:48 ` CK Hu (胡俊光)
2024-11-04 2:35 ` CK Hu (胡俊光)
2024-11-04 8:04 ` CK Hu (胡俊光)
2024-11-05 3:01 ` CK Hu (胡俊光)
2024-10-09 11:15 ` [PATCH v1 05/10] media: platform: mediatek: add isp_7x camsys unit Shu-hsiang Yang
2024-10-14 9:40 ` CK Hu (胡俊光)
2024-10-16 3:43 ` CK Hu (胡俊光)
2024-11-19 5:56 ` CK Hu (胡俊光)
2024-10-22 5:44 ` Krzysztof Kozlowski
2024-10-22 6:48 ` CK Hu (胡俊光)
2024-10-29 2:35 ` CK Hu (胡俊光)
2024-10-29 6:47 ` CK Hu (胡俊光)
2024-10-29 7:03 ` CK Hu (胡俊光)
2024-10-30 3:20 ` CK Hu (胡俊光)
2024-10-30 5:43 ` CK Hu (胡俊光)
2024-11-04 6:08 ` CK Hu (胡俊光)
2024-11-04 13:06 ` [PATCH " Markus Elfring
2024-11-06 7:52 ` [PATCH v1 " CK Hu (胡俊光)
2024-11-13 7:24 ` CK Hu (胡俊光)
2024-11-20 6:10 ` CK Hu (胡俊光)
2024-10-09 11:15 ` [PATCH v1 06/10] media: platform: mediatek: add isp_7x utility Shu-hsiang Yang
2024-10-14 5:21 ` CK Hu (胡俊光) [this message]
2024-10-22 5:30 ` CK Hu (胡俊光)
2024-10-28 3:46 ` CK Hu (胡俊光)
2024-10-29 5:35 ` CK Hu (胡俊光)
2024-11-04 2:26 ` CK Hu (胡俊光)
2024-11-05 3:33 ` CK Hu (胡俊光)
2024-11-05 8:43 ` CK Hu (胡俊光)
2024-11-05 9:14 ` CK Hu (胡俊光)
2024-11-06 3:35 ` CK Hu (胡俊光)
2024-11-06 3:41 ` CK Hu (胡俊光)
2024-11-06 3:48 ` CK Hu (胡俊光)
2024-11-06 7:01 ` CK Hu (胡俊光)
2024-11-19 8:23 ` CK Hu (胡俊光)
2024-11-19 8:29 ` CK Hu (胡俊光)
2024-11-19 9:41 ` CK Hu (胡俊光)
2024-11-20 2:21 ` CK Hu (胡俊光)
2024-11-20 6:03 ` CK Hu (胡俊光)
2024-11-20 5:21 ` CK Hu (胡俊光)
2024-10-09 11:15 ` [PATCH v1 07/10] media: platform: mediatek: add isp_7x video ops Shu-hsiang Yang
2024-11-04 3:24 ` CK Hu (胡俊光)
2024-11-20 1:05 ` CK Hu (胡俊光)
2024-10-09 11:15 ` [PATCH v1 08/10] media: platform: mediatek: add isp_7x state ctrl Shu-hsiang Yang
2024-10-16 1:35 ` CK Hu (胡俊光)
2024-10-28 5:20 ` CK Hu (胡俊光)
2024-10-28 5:25 ` CK Hu (胡俊光)
2024-10-28 5:34 ` CK Hu (胡俊光)
2024-10-09 11:15 ` [PATCH v1 09/10] media: platform: mediatek: add isp_7x build config Shu-hsiang Yang
2024-10-16 1:56 ` CK Hu (胡俊光)
2024-10-09 11:15 ` [PATCH v1 10/10] uapi: linux: add mediatek isp_7x camsys user api Shu-hsiang Yang
2024-10-11 7:47 ` CK Hu (胡俊光)
2024-10-14 5:56 ` CK Hu (胡俊光)
2024-11-06 13:04 ` Laurent Pinchart
2024-11-18 9:58 ` Laurent Pinchart
2024-11-05 5:36 ` CK Hu (胡俊光)
2024-10-15 18:40 ` [PATCH v1 00/10] Add MediaTek ISP7 camera system driver Nicolas Dufresne
2024-11-18 10:00 ` Laurent Pinchart
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=330f06069eaa7b6843709bb0d29c3ad5f23a4f3c.camel@mediatek.com \
--to=ck.hu@mediatek.com \
--cc=Project_Global_Chrome_Upstream_Group@mediatek.com \
--cc=Shu-hsiang.Yang@mediatek.com \
--cc=Shun-Yi.Wang@mediatek.com \
--cc=Teddy.Chen@mediatek.com \
--cc=Yaya.Chang@mediatek.com \
--cc=angelogioacchino.delregno@collabora.com \
--cc=christian.koenig@amd.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=hidenorik@chromium.org \
--cc=krzk+dt@kernel.org \
--cc=linaro-mm-sig@lists.linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=matthias.bgg@gmail.com \
--cc=mchehab@kernel.org \
--cc=robh@kernel.org \
--cc=sumit.semwal@linaro.org \
--cc=yunkec@chromium.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).