Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

perf: imx_perf: add support for i.MX91 platform

This will add compatible and identifier for i.MX91 platform.

Signed-off-by: Xu Yang <xu.yang_2@nxp.com>
Reviewed-by: Frank Li <Frank.Li@nxp.com>
Link: https://lore.kernel.org/r/20240924061251.3387850-2-xu.yang_2@nxp.com
Signed-off-by: Will Deacon <will@kernel.org>

authored by

Xu Yang and committed by
Will Deacon
44798fe1 0263a1e4

+5
+5
drivers/perf/fsl_imx9_ddr_perf.c
··· 81 81 int id; 82 82 }; 83 83 84 + static const struct imx_ddr_devtype_data imx91_devtype_data = { 85 + .identifier = "imx91", 86 + }; 87 + 84 88 static const struct imx_ddr_devtype_data imx93_devtype_data = { 85 89 .identifier = "imx93", 86 90 }; ··· 104 100 } 105 101 106 102 static const struct of_device_id imx_ddr_pmu_dt_ids[] = { 103 + { .compatible = "fsl,imx91-ddr-pmu", .data = &imx91_devtype_data }, 107 104 { .compatible = "fsl,imx93-ddr-pmu", .data = &imx93_devtype_data }, 108 105 { .compatible = "fsl,imx95-ddr-pmu", .data = &imx95_devtype_data }, 109 106 { /* sentinel */ }