diff options
author | Paul Elder <paul.elder@ideasonboard.com> | 2024-02-16 20:09:52 +0900 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2024-02-23 15:18:34 +0200 |
commit | 059bbcdc34e7d887ee02fdd47613bd6e0eb70d16 (patch) | |
tree | 27c8fd6446b155aa11aface83aec034a901b186a /src | |
parent | d2436c57d70d2e1f8985f0f421b086c31f581ddc (diff) |
ipa: rkisp1: Support the i.MX8MP ISP version
Handle the RKISP1_V_IMX8MP version in the rkisp1 IPA. This enables basic
support of the i.MX8MP, excluding the processing blocks specific to the
new ISP version. Those will be supported later.
Signed-off-by: Paul Elder <paul.elder@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Stefan Klug <stefan.klug@ideasonboard.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/ipa/rkisp1/rkisp1.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ipa/rkisp1/rkisp1.cpp b/src/ipa/rkisp1/rkisp1.cpp index 44401af8..9dc5f53c 100644 --- a/src/ipa/rkisp1/rkisp1.cpp +++ b/src/ipa/rkisp1/rkisp1.cpp @@ -136,6 +136,7 @@ int IPARkISP1::init(const IPASettings &settings, unsigned int hwRevision, /* \todo Add support for other revisions */ switch (hwRevision) { case RKISP1_V10: + case RKISP1_V_IMX8MP: context_.hw = &ipaHwSettingsV10; break; case RKISP1_V12: |