mirror of
git://git.yoctoproject.org/linux-yocto.git
synced 2025-10-22 23:13:01 +02:00
media: nxp: imx8-isi: Add i.MX8ULP support
Add ISI support for i.MX8ULP. Signed-off-by: Guoniu.zhou <guoniu.zhou@nxp.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Link: https://lore.kernel.org/r/20241012084732.1036652-2-guoniu.zhou@oss.nxp.com Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
This commit is contained in:
parent
288517a3c6
commit
ab2fd4a0ca
|
@ -307,6 +307,19 @@ static const struct mxc_isi_plat_data mxc_imx8mp_data = {
|
|||
.has_36bit_dma = true,
|
||||
};
|
||||
|
||||
static const struct mxc_isi_plat_data mxc_imx8ulp_data = {
|
||||
.model = MXC_ISI_IMX8ULP,
|
||||
.num_ports = 1,
|
||||
.num_channels = 1,
|
||||
.reg_offset = 0x0,
|
||||
.ier_reg = &mxc_imx8_isi_ier_v2,
|
||||
.set_thd = &mxc_imx8_isi_thd_v1,
|
||||
.clks = mxc_imx8mn_clks,
|
||||
.num_clks = ARRAY_SIZE(mxc_imx8mn_clks),
|
||||
.buf_active_reverse = true,
|
||||
.has_36bit_dma = false,
|
||||
};
|
||||
|
||||
static const struct mxc_isi_plat_data mxc_imx93_data = {
|
||||
.model = MXC_ISI_IMX93,
|
||||
.num_ports = 1,
|
||||
|
@ -528,6 +541,7 @@ static void mxc_isi_remove(struct platform_device *pdev)
|
|||
static const struct of_device_id mxc_isi_of_match[] = {
|
||||
{ .compatible = "fsl,imx8mn-isi", .data = &mxc_imx8mn_data },
|
||||
{ .compatible = "fsl,imx8mp-isi", .data = &mxc_imx8mp_data },
|
||||
{ .compatible = "fsl,imx8ulp-isi", .data = &mxc_imx8ulp_data },
|
||||
{ .compatible = "fsl,imx93-isi", .data = &mxc_imx93_data },
|
||||
{ /* sentinel */ },
|
||||
};
|
||||
|
|
|
@ -158,6 +158,7 @@ struct mxc_gasket_ops {
|
|||
enum model {
|
||||
MXC_ISI_IMX8MN,
|
||||
MXC_ISI_IMX8MP,
|
||||
MXC_ISI_IMX8ULP,
|
||||
MXC_ISI_IMX93,
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user