Multi Source Translation Content

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Multi Source Translation Content

Discussions

Sort by:
Issues with IMX95 15x15 package DDR5 Hi NXP I'm currently debugging an .imx95 15x15 packaged DDR5 and have encountered a problem. DDR5: RS2G32LO5D4FB-31BT 1. I used ConfigTools for i.MX 26.06, verification, using the .bin file compiled with lpddr5_timing.c, during flashing, the M33 core showed DDR...OEI: done, err = -1 2. I reduced the DDR speed to 1866 MT/s, but I still got a -1 error. 3. I noticed that the SDK does not include an official version of the IMX9596 15x15 DDR5. Re: imx95 15x15封装 DDR5的问题 Hi @yrj The IMX95 does not support DDR5. B.R Re: imx95 15x15封装 DDR5的问题 HI @pengyong_zhang Is it LPDDR5? Does it support it? Re: imx95 15x15封装 DDR5的问题 HI @yrj Yes, it supports LPDDR5 and LPDDR4X. B.R Re: imx95 15x15封装 DDR5的问题 The part is LPDDR5 and you may need to review the schematics 
View full article
i.MX8M Plus HiFi4 DSP(Zephyr):SDMA 循环发送回调触发一次后停止 在运行 Zephyr 的 i.MX8MP HiFi4 DSP 上,我正在使用 Zephyr nxp,dai-sai (SAI3) 和 nxp,sdma (SDMA3) 驱动程序以循环模式启动硬件端点播放路径。开始播放时,SDMA 通道完成回调恰好触发一次,然后不会再发生 SDMA 中断。我想请教一下,为什么循环 SDMA 传输不会持续产生周期性中断? 硬件/启动 - 板:i.MX8MP EVK,DTS:imx8mp-evk-dsp.dts - DSP核心:HiFi4(Cadence Xtensa),目标板为imx8mp_evk/mimx8ml8/adsp - 编解码器:WM8960 - 外设:SAI3、SDMA3 建筑和版本细节: - 架构概述: https://audioreach.github.io/platform/nxp.html#architecture-overview - 版本详情: - Yocto: https://audioreach.github.io/platform/nxp.html#step-1-create-a-yocto-image - Linux(控制/主机):Yocto(scarthgap)、linux-imx。 - 仓库清单:imx-6.6.52-2.2.0.xml - Zephyr DSP 镜像: https://audioreach.github.io/platform/nxp.html#step-2-create-a-zephyr-image - Zephyr (v4.2.0), AudioReach Engine信号处理框架,运行于 HiFi4 上。 我正在建造的东西 DSP 映像中的一个自定义硬件端点(接收器)模块,其功能如下: 1.通过 Zephyr DAI API 配置 SAI3。 2.建立从 动态随机存取存储器 (DRAM) 环到 SAI TX FIFO 的循环 SDMA 传输(2 个缓冲区描述符,MEMORY_TO_PERIPHERAL)。 3.使用 SDMA 完成回调来通知信号处理框架重新填充环。 音频格式 - 48 kHz,16 位,单声道音频流;SAI 线 = 16 位 × 2 个插槽(WM8960 的立体声 I2S 帧),BCLK = 1.536兆赫兹。 - DMA 周期 = 192 字节(48 帧 × 2 字节 × 2 个时隙),2 个描述符,384 字节环 已启用相关 Kconfig(DSP 映像)。 CONFIG_DAI=y CONFIG_DMA=y CONFIG_DAI_NXP_SAI=y CONFIG_DMA_NXP_SDMA=y CONFIG_SAI_HAS_MCLK_CONFIG_OPTION=y CONFIG_CLOCK_CONTROL_FIXED_RATE_CLOCK=y 设备树叠加(DSP 应用): 链接: app/boards/imx8mp_evk_mimx8ml8_adsp.overlay mclk1:mclk { 状态 = "正常"; }; &sdma3 { 状态 = "正常"; }; &sai3 { rx-fifo-watermark = <65>; tx-fifo-watermark = <65>; 先进先出深度 = <128>; rx-sync-mode = <1>; 状态 = "正常"; }; &micfil { 状态 = "正常"; }; 使用的DAI/DMA配置(DSP) - dai_config: type=DAI_IMX_SAI, dai_index=3, format= DAI_PROTO_I2S (SAI 从设备), rate=48000, channels=2, word_size=16. - SAI 定制:mclk_rate=12288000,fsync_rate=48000,bclk_rate=1536000,tdm_slots=2,tx_slots=rx_slots=0x3,tdm_slot_width=16。 - DMA(struct dma_config):channel_direction=MEMORY_TO_PERIPHERAL,source_data_size=4,dest_data_size=4,source_burst_length=4,cyclic=1,block_count=2,dma_slot 来自 SAI 握手,dma_callback 设置。两个 dma_block_config BD 指向 dma_src_addr[0/192] 源代码参考: endpoint/capi/src/capi_nxp_device_utils.c 应用程序处理器: - DTS:imx8mp-evk-dsp.dts https://github.com/nxp-imx/linux-imx/blob/lf-6.6.y/arch/arm64/boot/dts/freescale/imx8mp-evk-dsp.dts - 使用虚拟 DAI 和虚拟平台枚举带有 wm8960 编解码器的 PCM 设备。 附件: - DSP 日志(sdma,sai) - 修改了 imx8mp-evk-dsp.dts 我很乐意提供其他任何细节。 i.MX 8M | i.MX 8M Mini | i.MX 8M Nano 多媒体 Re: i.MX8M Plus HiFi4 DSP (Zephyr): SDMA cyclic TX callback fires once then stops 在恩智浦技术支持有机会查看此问题之前,我只想指出: 开始播放时,SDMA 通道完成回调函数会触发一次。 此中断发生在 SDMA 脚本完成运行通道 0(用于加载固件)之后,因此没有实际的传输发生。我会开始检查SAI配置和时钟。看起来没有SDMA请求。
View full article
Plug & Trust 中间件中是否计划支持 SE05x 的 Mbed TLS 4.x / PSA 加密驱动程序? 你好, NXP 是否计划在 Plug & Trust 中间件中集成对 Mbed TLS 4.x 的支持? SE050 Re: Plans for Mbed TLS 4.x / PSA Crypto driver support for SE05x in Plug & Trust Middleware? 嗨@ph-yac , Mbed TLS 4.x 正在考虑于 2027 年第一季度版本。 祝你有美好的一天, 坎 ------------------------------------------------------------------------------- 笔记: - 如果此回复解答了您的问题,请点击“标记为正确答案”按钮。谢谢你! - 我们会持续关注帖子,从最后一条回复发出后持续7周,之后的回复将被忽略。 如果您之后有相关问题,请另开新帖并引用已关闭的帖子。 -------------------------------------------------------------------------------
View full article
Profinet移植到iMX95EVK 您好, 我正在尝试将 NXP-Port GMBH 提供的 Profinet 协议栈移植到我的 iMX95 EVK 上,该芯片运行在 Linux 内核上。 我找到了以下链接,其中在i.MX-RT1180和 iMX94 上都进行了测试。 Profinet堆栈链接 我的问题是: 1. 请确认 imx95 支持此功能,并且该协议栈可以移植用于评估目的。 2. 请分享一些我可以参考的文档,以便将此技术栈移植到 Linux 上。 如果您还需要我提供任何其他信息,请告诉我。 谢谢! 高拉夫 Re: Profinet porting on iMX95EVK 希望你一切安好。 目前,i.mx95 不支持 PROFINET 工业以太网协议软件。 仅限上述设备: Re: Profinet porting on iMX95EVK 嗨@Oswalag , 谢谢回复。 我已经检查过 imx94 和 imx95 非常相似,如果该协议栈在 imx94 上运行正常,那么经过一些努力,它应该可以移植到 imx95 上。 我有几个问题: 1. 请确认 MMX94 上的 M7 内核或 Linux 内核是否移植了 Profinet 协议栈。 2. 是否有任何文档可以帮助将程序移植到 IMX94 上? 谢谢! 高拉夫 Re: Profinet porting on iMX95EVK 你好, 关于这个问题有任何进展吗?
View full article
i.MX95基板上にMAX96717/MAX96724を搭載したOX05B1S GMSL2カメラ こんにちは、NXP チームの皆様、 Linuxを動かすi.MX95 19x19 EVKでOX05B1S GMSL2カメラをテストしています。 設定: OX05B1S カメラ - MAX96717 - GMSL2 - MX95MBDESER01 MAX96724 - i.MX95 MX95MBDES10001キットに付属のOX03C10カメラは、同じデシリアライザボードで動作し、cam -lコマンドで確認できます。 しかし、MAX96717を搭載したOX05B1Sカメラはcam -lコマンドではリストに表示されません。 BSPにはox05b1s.koが含まれています。max96724.ko、max96717_lib.ko、およびOX05B1S DTBファイル。 OX05B1S DTBは直接MIPI接続について記述しているようで、一方OX03C10 DTBにはMAX96724トポロジーが含まれている。 NXPはこの構成に対応したリファレンスデバイスツリー構成を提供していますか? OX05B1S - MAX96717 - MAX96724 - i.MX95 もしなければ、このOX05B1S GMSL2カメラをMX95MBDESER01ボードで使うにはどんな変更が必要か教えていただけますか? よろしくお願いします。 よろしくお願いします、 タルン Re: OX05B1S GMSL2 camera with MAX96717/MAX96724 on i.MX95 ご説明いただきありがとうございます。現在のBSPは公式には直接MIPI-CSIインターフェースを通じてOX05B1Sをサポートしており、OX03C10にはMAX96717/MAX96724 SerDesサポートが提供されていると理解しています。 OX05B1SカメラモジュールとMAX96717シリアライザーをMAX96724デシリアライザー経由でi.MX95に接続しています。GMSL2リンクは正常にロックされ、MAX96717はリモートI2Cチャネルを通じてアクセス可能です。 OX05B1S + MAX96717 + MAX96724は現在BSPでサポートされていないため、カスタムドライバー/デバイスツリー統合が必要になるのでしょうか?あるいは、この組み合わせに対応するリファレンス実装やパッチは存在しますか? Re: OX05B1S GMSL2 camera with MAX96717/MAX96724 on i.MX95 現在のBSPは、miniSASコネクタMIPI_CSI IMX95ボードを直接接続するためのOX05B1Sをサポートしています。Omnivision OX03C10 センサは、以下のベンダーのシリアライザー/デシリアライザーソリューションを用いて i.MX 95でサポートされています。 • アナログ・デバイセズ:MAX96717/MAX96724 • テキサス・インスツルメンツ:DS0UB953/DS0UV960 詳細については、第6.1.3章を参照してください。カメラのリファレンス・マニュアル https://www.nxp.com/docs/en/reference-manual/RM00293.pdf Re: OX05B1S GMSL2 camera with MAX96717/MAX96724 on i.MX95 はい、ドライバーのmx95mbcam.cを参照してくださいカメラをOX03C10使うので、もしカメラを変えたいなら、このドライバーを完全に変えるべきです。 https://github.com/nxp-imx/linux-imx/blob/lf-6.18.y/drivers/media/i2c/mx95mbcam.c
View full article
OX05B1S GMSL2 camera with MAX96717/MAX96724 on i.MX95 Hi NXP Team, We are testing an OX05B1S GMSL2 camera on an i.MX95 19x19 EVK running Linux. Setup: OX05B1S camera - MAX96717 - GMSL2 - MX95MBDESER01 MAX96724 - i.MX95 The OX03C10 camera supplied with the MX95MBDES10001 kit works with the same deserializer board and is visible using cam -l. However, the OX05B1S camera with MAX96717 is not listed by cam -l. The BSP contains ox05b1s.ko, max96724.ko, max96717_lib.ko, and OX05B1S DTB files. The OX05B1S DTB appears to describe a direct MIPI connection, while the OX03C10 DTB contains the MAX96724 topology. Does NXP provide a reference device tree configuration for this setup? OX05B1S - MAX96717 - MAX96724 - i.MX95 If not, could you please advise what changes are required to use this OX05B1S GMSL2 camera with the MX95MBDESER01 board? Thank you. Best regards, Tharun Re: OX05B1S GMSL2 camera with MAX96717/MAX96724 on i.MX95 Thank you for the clarification. We understand that the current BSP officially supports OX05B1S through the direct MIPI-CSI interface, while MAX96717/MAX96724 SerDes support is provided for OX03C10. We are using an OX05B1S camera module with a MAX96717 serializer connected to the i.MX95 through the MAX96724 deserializer. The GMSL2 link locks successfully, and the MAX96717 is accessible over the remote I2C channel. Is OX05B1S + MAX96717 + MAX96724 currently unsupported by the BSP, meaning that a custom driver/device-tree integration is required? Or is there any reference implementation or patch available for this combination? Re: OX05B1S GMSL2 camera with MAX96717/MAX96724 on i.MX95 current bsp supports  OX05B1S with MIPI_CSI miniSAS connector to connect imx95 board directly, The Omnivision OX03C10 sensor is supported on i.MX 95 using serializer/deserializer solutions from the following vendors: • Analog Devices: MAX96717/MAX96724 • Texas Instruments: DS0UB953/DS0UV960 for more detailed information, pls refer to the chapter 6.1.3 Cameras of reference manual https://www.nxp.com/docs/en/reference-manual/RM00293.pdf Re: OX05B1S GMSL2 camera with MAX96717/MAX96724 on i.MX95 yes, refer to the driver mx95mbcam.c which uses OX03C10, if you need change the camera, you should change this driver totally,  https://github.com/nxp-imx/linux-imx/blob/lf-6.18.y/drivers/media/i2c/mx95mbcam.c
View full article
IMX95のディスプレイコントローラセクションが欠落しています i.MX95リファレンスマニュアルのディスプレイコントローラに関するセクションは、意図的に1ページのみに限定され、詳細な説明はほとんどないようだ。なぜそうなのでしょうか? i.MX8のリファレンスマニュアルでは、このセクションははるかに詳細に記載されていることに気づきました。このドキュメントの変更には、何か特別な理由があるのでしょうか? Re: Imx95 missing display controller section こんにちは、 NXP Semiconductors製品にご関心をお寄せいただきありがとうございます。 i.MX 95はまだ試作段階であり、プロセッサやドキュメントは今後変更される可能性があります。製品リリース時には、お客様のディスプレイ使用に関する適切なドキュメントを含むリファレンスマニュアルが提供されることを期待しています。 よろしくお願いします。 Re: Imx95 missing display controller section これは、現時点でi.MX95リファレンスマニュアルRev. 1.0がまだ試産マニュアルのままであるためです。NXPのサポートチームにより、不完全なディスプレイコントローラ部分は意図的であり、ドキュメントもまだ変更中であることが確認されています。プロセッサが入手可能になった際には、リファレンスマニュアルの表示機能が強化されることが期待されています。 したがって、i.MX95ディスプレイコントローラの性能がi.MX8の実装と劣っているわけではありません。代わりに、現在のRMはお客様向けのドキュメントに関して未完成のままです。NXP製品ページでは、2026年3月30日付のi.MX95 RMのバージョンがRev. 1.0として表示されています。
View full article
Unable to Configure Tasks and ISRs in AUTOSAR OS for S32K144 Hi, I am currently integrating the AUTOSAR OS on the S32K144 MCU and have installed the S32K_AUTOSAR_OS_4_0_98_RTM_1_0_0 DTM package. After importing the OS module into EB tresos, I can only see the OSCounter container in the configuration editor. However, the OS User Manual describes additional configuration elements such as Tasks, ISRs, and other OS objects. Could you please clarify: Why are only OSCounter configurations visible in EB tresos? Is there any additional plugin, license, or configuration step required to enable Task and ISR configuration? What is the correct procedure for creating and configuring Tasks and ISRs for the S32K144 AUTOSAR OS? Also I want to configure task, ISR and OS related configuration. Any guidance or example project would be greatly appreciated. Thanks Re: Unable to Configure Tasks and ISRs in AUTOSAR OS for S32K144 Hi @Julián_AragónM , Thank you for your response. Currently I'm using v29.0.0 version of EB Tresos Could you please suggest the appropriate RTD version that is compatible with this EB tresos release? Thank you for your support. Best Regards, Devi Re: Unable to Configure Tasks and ISRs in AUTOSAR OS for S32K144 Hi @Devi_55, SW32K14-OS401-RTM-1.0.0 b4.0.98 is legacy SW and no longer maintained. It is strongly recommended to transition to the newer RTDs (Real-Time Drivers for S32K1). For any further assistance or support, please reach out to your NXP representative.  After installing SW32K14-OS401-RTM-1.0.0 b4.0.98 RTM, I can see all of the included ones below. The release notes for this SW package mentions EB Tresos v21.0.0, pelase confirm you are using this build.   EB tresos Studio 21.0.0 b160607-0933  Best regards, Julián Re: Unable to Configure Tasks and ISRs in AUTOSAR OS for S32K144 Hi @Devi_55, Latest release of RTD for S32K1 (S32K1_S32M24x Real-Time Drivers AUTOSAR R21-11 Version 3.0.0 QLP07) uses EB Tresos v29.0.0: Best regards, Julián Re: Unable to Configure Tasks and ISRs in AUTOSAR OS for S32K144 Hello  I apologize; this was an oversight by my part.  RTD 3.0.0 QLP07 is the crypto release for the RTD drivers, QLP06 contains all of the base drivers (Adc, Can, Os, etc.): Best regards, Julián Re: Unable to Configure Tasks and ISRs in AUTOSAR OS for S32K144 Hello @Julián_AragónM , I have installed the S32K1_S32M24x Real-Time Drivers AUTOSAR R21-11 Version 3.0.0 QLP07 package, which is compatible with EB tresos v29.0.0. However, after reviewing the available plugins, I could not find several expected modules such as OS, ADC, Port, Dio, Spi, Can, Mcu, and other MCAL components. Could you please suggest which RTD/AUTOSAR package I should use if I need access to the complete set of MCAL drivers along with an AUTOSAR OS? If a different version of EB tresos is required for compatibility, I am willing to install and use the recommended version. I would appreciate your guidance on the appropriate package and toolchain for the S32K144. Thank you. Best Regards, Devi Re: Unable to Configure Tasks and ISRs in AUTOSAR OS for S32K144 Hello @Julián_AragónM  Thank you for your response. I will verify this with the mentioned RTD version. Thanks Best Regards, Devi 
View full article
S32K312 安全启动认证 当启用安全启动时,切换到不同的 FBL 时,通过 HMAC 密钥生成的 META 数据值会发生变化。由于 FBL 发生更改,HSE 需要使用 HMAC 密钥重新计算 META 数据;但是,由于新的 FBL 删除了 HMAC 密钥,因此无法重新计算 META 数据。因此,由于 FBL 验证失败,发生 RESET,导致应用程序无法启动。是否可以通过HMAC密钥重新验证已更改的FBL,从而使FBL和应用程序都能正常运行? 运行 HSE_SRV_ID_SMR_ENTRY_INSTALL 服务时,HseResponse 返回 0xA5AA5317。这对应于以下定义: #define HSE_SRV_RSP_KEY_EMPTY ((hseSrvResponse_t)0xA5AA5317UL) 这表示钥匙为空。(正如我之前所问,我怀疑出现此回复是因为该区域已被擦除。) 我已经检查了 smrEntry 值。当我在 SecureBootState 为 0 的位置设置断点时,我确认 smrEntry 完全为 0。当我在 Fota_S32k3_SecureBootProcess 结束的返回点设置断点时,我确认这些值出现了。返回时,SecureBootState 值为 1。 如果您能指导我如何注入密钥或以其他方式解决此问题,我将不胜感激。 1) 当在 if(SecureBootState == 0) 处设置断点时 / 结果:smrEntry = 0 2) 在返回 secureBootProcessResult 处设置断点,这是 Fota_S32k3_SecureBootProcess 函数的最后一部分。 Re: S32K312 Secureboot Authentication 除了 HSE_KEY_TYPE_SHE 密钥类型之外,NVM 和 RAM 密钥目录中声明的所有加密密钥都可以配置(即,由主机通过密钥导入服务初始化和更新,该服务由结构 hseImportKeySrv_t 定义。 SHE 密钥由主机通过 hseSheLoadKeySrv_t 或 hseSheLoadPlainKeySrv_t 服务进行配置。密钥可以以明文或加密文本的形式安装,如上图所示,在演示中,所有密钥均以明文形式安装。 您是否尝试过 \S32K3_HSE_DemoExamples\ 中的 S32K344_Update_NVM_keys_related_test 参考,引用代码? # 更新 NVM 密钥。 1. 目标 本示例的主要目的是导入对称密钥和 AES GMAC 生成密钥。 2. 程序 实现这一目标的具体步骤如下: 1.格式化关键目录。 2.声明将更新初始版本的 HMAC 密钥信息。 3.声明一个密钥容器。 4.将密钥信息复制到密钥容器中。 5.复制容器中的密钥数据。 6. *您可以向容器中添加任何其他数据* 。 7.将 AES 配置密钥副本导入 RAM,以便使用 HSE 对容器进行签名。 8.对容器进行签名并生成 GMAC。 3. 硬件 本示例需要以下硬件才能正确运行: - S32K344-EVB 或 S32K344-CVB。 -如果使用 S32K344-CVB,则还需要外部调试器(PEmicro Multilink rev. C)。 Re: S32K312 Secureboot Authentication 嗨@jeongwoo 目前阻碍进一步进展的主要问题似乎是我们不知道 HMAC 密钥是否仍然可用。 首先,请您确认是否已按照我之前建议的方法进行检查,以及检查结果如何? “要确认密钥是否已被擦除,您可以使用服务 HSE_SRV_ID_GET_KEY_INFO,结构 struct hseGetKeyInfoSrv_t。使用此服务,您将在 hseKeyInfo_t 中获取信息,以便您可以检查密钥的状态。 一旦我们确认了密钥的状态,就可以进行下一步操作了。如果密钥丢失或已被删除,我们可以尝试重新安装。或者,您也可以尝试使用与最初配置过程中相同的步骤直接安装密钥,看看操作是否成功。 此致, Lukas Re: S32K312 Secureboot Authentication 密钥可通过 HSE 服务 HSE_SRV_ID_IMPORT_KEY 导入或更新。 请查看 HSE 固件参考手册修订版中的这些表格。2.7: 表47. 在 NVM 密钥目录中将密钥导入到空槽位时,密钥配置的使用情况 表48。在 NVM 密钥目录中更新密钥(非空槽位)时,密钥配置的使用情况 这解释了何时可以以明文形式导入密钥,以及何时需要进行身份验证和加密。 如果密钥槽为空且您拥有 SU 权限,则可以无需身份验证即可直接导入密钥。如果密钥槽不为空(您正在更新密钥)并且您拥有 SU 权限,则身份验证是强制性的,加密是可选的。 仅使用用户权限时,无论插槽是否为空,身份验证和加密始终是强制性的。 S32K344_Update_NVM_keys_related_test 示例仅展示了如何准备和签署用于身份验证密钥导入的密钥容器。但是,在这个例子中,密钥并没有被导入。 例如,S32K344_AES_EncryptDecrypt 中显示了密钥的导入。本项目中使用的 AES 密钥 API 为 LoadAesKey。对于 HMAC,可以使用 LoadHmacKey API。这可用于以明文形式导入 HMAC 密钥,无需身份验证或加密。 Re: S32K312 Secureboot Authentication 如果使用加密驱动程序,则可以使用 API Crypto_43_HSE_KeyElementSet 和 Crypto_43_HSE_KeySetValid 导入密钥。 您可以查看类似这样的RTD软件示例(或类似的示例,具体取决于您的RTD版本): c:\NXP\SW32K3_S32M27x_RTD_R23-11_7.0.0_QLP02\eclipse\plugins\Crypto_43_HSE_TS_T40D34M70I0R0\examples\S32DS\S32K3XX\Crypto_43_HSE_SymmetricPrimitives_S32K388\ Crypto 模块中没有用于请求超级用户权限的 API。 该程序在 HSE 固件参考手册修订版的“8.5 超级用户权限请求”部分中进行了描述。2.7. 您还可以参考 hse_crypto.c 文件中的 Grant_SuperUser_Rights() 函数。可以在 HSE DemoExamples 包中找到: https://www.nxp.com/webapp/Download?colCode=S32K3_HSE_DemoExamples 此致, Lukas Re: S32K312 Secureboot Authentication 你好,卢卡斯。 我在 Crypto_hse.c 中定义并调用了您提到的 HSE_SRV_ID_GET_KEY_INFO API。 但是,GetKeyInfo 中的 If 语句没有被执行,所以我无法引用 KeyInfo 值。如果密钥丢失或已被删除,您可以尝试重新安装。 或者,您能否指导我如何使用与配置过程中相同的步骤直接安装密钥,并验证该操作是否成功? 我接着导入了一个新的 HSE,并在生命周期现场管理中添加了一个不同的 FBL。如何获得SU权限?
View full article
CodeWarrior 版本错误 我偶尔会遇到版本错误: mingw32-make:*** 没有规则可以创建目标 Dropbox//Projects/\Project_x/\Project_Headers/\../\Sources/\Events.c'`Sources/Events_c.obj` 需要此文件。  停止。 文件 Events_c.obj 当然存在,但通常的解决方法却不起作用。我尝试了全新版本,删除了 Events_c.obj 文件。我删除了整个 Flash 文件夹,也尝试过关机重启,但都没用。最后我新建了一个项目,然后剪切粘贴了源文件的内容。这个问题每隔几周就会发生一次,而且有几次,在电脑“休眠”后,问题就自行消失了。 Re: CodeWarrior Build error 谢谢,同步问题确实有道理,但我需要几天时间才能尝试。 Re: CodeWarrior Build error 这听起来不太像是 .obj 文件的问题。文件本身有问题,更像是生成的 Makefile 中存在过时或格式错误的依赖路径。Dropbox//Projects/\Project_x... 路径中奇怪的斜杠是一个重要的线索。我会检查项目是否直接从 Dropbox 同步的文件夹构建,并尝试将其移动到本地的非同步目录。此外,请将出现问题时生成的依赖项/Makefile 条目与正常版本时生成的条目进行比较。如果Dropbox文件夹同步或电脑唤醒后错误消失,则进一步表明问题出在Dropbox/文件系统的时序问题上,而不是源文件本身。
View full article
imx95 15x15封装 DDR5的问题 Hi NXP     我现在正在调试imx95 15x15封装的DDR5,遇到了问题,DDR5:RS2G32LO5D4FB-31BT     1.我通过Config Tools for i.MX 26.06,校验,使用lpddr5_timing.c编译的.bin文件,烧录时,M33核出现了DDR OEI: done, err = -1     2.我将ddr的速率降到1866MT/s,还是出现-1的错误     3.我看sdk中没有发布官板的imx9596 15x15 ddr5 Re: imx95 15x15封装 DDR5的问题 Hi @yrj  imx95 不支持DDR5。 B.R Re: imx95 15x15封装 DDR5的问题 HI @pengyong_zhang       是lpddr5,支持吗 Re: imx95 15x15封装 DDR5的问题 该器件是LPDDR5,您可能需要查看其原理图。 Re: imx95 15x15封装 DDR5的问题 HI @yrj  对的,支持LPDDR5和LPDDR4X。 B.R
View full article
S32K312 Secureboot Authentication When changing to a different FBL while Secureboot is enabled, the META Data values ​​generated via the HMAC Key change. As the FBL is changed, the HSE needs to recalculate the META Data using the HMAC Key; however, because the HMAC Key is deleted due to the new FBL, recalculating the META Data becomes impossible. Consequently, a reset occurs due to a verification failure at the FBL, making it impossible to launch the application. Is there a way to re-authenticate the changed FBL using the HMAC Key, thereby allowing both the FBL and the application to run normally?  When running the HSE_SRV_ID_SMR_ENTRY_INSTALL service, HseResponse returns 0xA5AA5317. This corresponds to the following definition: #define HSE_SRV_RSP_KEY_EMPTY ((hseSrvResponse_t)0xA5AA5317UL) This indicates that the key is empty. (As I asked previously, I suspect this response appears because that region has been erased.) I have checked the smrEntry values. When I set a breakpoint at the point where SecureBootState is 0, I confirmed that smrEntry was entirely 0. When I set a breakpoint at the return point where Fota_S32k3_SecureBootProcess ends, I confirmed that the values appeared. At the time of return, the SecureBootState value was 1. I would greatly appreciate it if you could guide me on how to inject the key or otherwise resolve this issue. 1) When a breakpoint is set at if(SecureBootState == 0) / Result: smrEntry = 0 2) A breakpoint at return secureBootProcessResult, the last part of the Fota_S32k3_SecureBootProcess function Re: S32K312 Secureboot Authentication All cryptographic keys declared within the NVM and RAM key catalogs, except for the key type HSE_KEY_TYPE_SHE, can be provisioned (i.e. initialized and updated) by the host via a key import service, defined by the structure hseImportKeySrv_t. The SHE keys is provisioned by the host via services hseSheLoadKeySrv_t or hseSheLoadPlainKeySrv_t.The keys can be installed in plain or encrypted text as shown in the above figure, in the demo all keys are installed in plain text. Do you try the reference code about S32K344_Update_NVM_keys_related_test at \S32K3_HSE_DemoExamples\? # Update NVM keys. ## 1. Objective The main purpose of this example is to a import symmetric key and AES GMAC generate keys. ## 2. Procedure The steps followed to achieve this are: 1. Format Key Catalogs. 2. Declare the HMAC key info that will update initial version. 3. Declare a key container. 4. Copy the key info to the key container. 5. Copy the key data in the container. 6. *You can add any other data to the container*. 7. Import in RAM a copy of the AES provision key to sign the container using the HSE. 8. Sign the container and generate GMAC ## 3. Hardware This example requires the following hardware in order to properly execute: - S32K344-EVB or S32K344-CVB. - If using S32K344-CVB, then an external debugger is also required (PEmicro Multilink rev. C). Re: S32K312 Secureboot Authentication Hi @jeongwoo  It seems that the primary issue currently blocking further progress is that we do not know whether the HMAC key is still available. As a first step, could you please confirm whether you have performed the check I suggested previously and what the result was? “To confirm if the key is erased or not, you can use service HSE_SRV_ID_GET_KEY_INFO, structure struct hseGetKeyInfoSrv_t. Using this service, you will get information in hseKeyInfo_t, so you can check the state of key.” Once we have confirmed the state of the key, we can proceed with the next steps. If the key is missing or has been erased, we can try to install it again. Alternatively, you could also attempt to install the key directly using the same procedure that was originally used during provisioning and see whether the operation succeeds. Regards, Lukas Re: S32K312 Secureboot Authentication A key can be imported or update by HSE service HSE_SRV_ID_IMPORT_KEY. Take a look at these tables in HSE Firmware reference manual rev. 2.7: Table 47. Key provisioning usage when importing a key in an empty slot in the NVM key catalog Table 48. Key provisioning usage when updating  a key (non-empty slot) in the NVM Key Catalog This explains when a key can be imported in plain and when authentication and encryption is needed. If a key slot is empty and you have SU rights, a key can be imported in plain without authentication. If a key slot is not empty (you are updating a key) and you have SU rights, authentication is mandatory and encryption is optional. With user rights only, authentication and encryption is always mandatory regardless of fact that a slot is empty or not. S32K344_Update_NVM_keys_related_test example only shows, how to prepare and sign a key container which is needed for authenticated key import. But the key is not imported in this example. Import of a key is shown in S32K344_AES_EncryptDecrypt, for example. Used API for AES key is LoadAesKey in this project. For HMAC, there’s LoadHmacKey API. This can be used for import of HMAC key in plain without authentication or encryption. Re: S32K312 Secureboot Authentication If Crypto driver is used, a key can be imported using API Crypto_43_HSE_KeyElementSet and Crypto_43_HSE_KeySetValid. You can check RTD SW example like this one (or similar, depending or RTD version you have): c:\NXP\SW32K3_S32M27x_RTD_R23-11_7.0.0_QLP02\eclipse\plugins\Crypto_43_HSE_TS_T40D34M70I0R0\examples\S32DS\S32K3XX\Crypto_43_HSE_SymmetricPrimitives_S32K388\ There’s no API to request super user rights in Crypto module. The procedure is described in section “8.5  Request for Super User rights” in HSE firmware reference manual rev. 2.7. You can also follow function Grant_SuperUser_Rights() in file hse_crypto.c which can be found in HSE DemoExamples package: https://www.nxp.com/webapp/Download?colCode=S32K3_HSE_DemoExamples Regards, Lukas Re: S32K312 Secureboot Authentication Hello Lukas I defined and called the HSE_SRV_ID_GET_KEY_INFO API you mentioned in Crypto_hse.c. However, the If statement in GetKeyInfo is not entered, so I am unable to reference the KeyInfo value. If the key is missing or has been erased, you can try installing it again. Alternatively, could you guide me on how to install the key directly using the same procedure used during provisioning and verify if that operation succeeds? I proceeded by importing a new HSE and adding a different FBL in the Life-Cycle In-Field. How can I obtain SU privileges?
View full article
Profinet porting on iMX95EVK Hi, I am trying to port NXP-Port GMBH provided profinet stack on my iMX95 EVK on linux core I have found access to below link where it is tested on i.MX-RT1180 and also on iMX94. Profinet stack link  My queries are: 1. Please confirm imx95 supports this and this stack can be ported for evaluation purpose. 2. Please also share any documents that I can refer to port this stack on linux. Please let me know if you need any other information from my end. Thanks Gaurav  Re: Profinet porting on iMX95EVK I hope his email finds you well,  At this moment, i.mx95 doesn't support the PROFINET Industrial Ethernet Protocol Software. Only the mentioned devices:  Re: Profinet porting on iMX95EVK Hi @Oswalag , Thanks for the reply. I have checked that imx94 and imx95 are quite similar and if the stack is working on imx94 then with some efforts it should be portable on imx95. I have few queries: 1. Please confirm whether profinet stack is ported on M7 core or linux core  on IMX94. 2. Are there any documents available that can help with porting on IMX94? Thanks, Gaurav Re: Profinet porting on iMX95EVK Hi, Any update on this query.
View full article
S32K312 Secureboot認証 Securebootが有効になっている状態で別のFBLに変更すると、HMACキーを介して生成されるMETAデータ値が変更されます。FBLが変更されると、HSEはHMACキーを使用してメタデータを再計算する必要があります。しかし、新しいFBLによってHMACキーが削除されるため、メタデータの再計算が不可能になります。その結果、FBLでの検証失敗によりリセットが発生し、アプリケーションの起動が不可能になります。HMACキーを使って変更されたFBLを再認証し、FBLとアプリケーションの両方が正常に動作できるようにする方法はありますか? HSE_SRV_ID_SMR_ENTRY_INSTALL サービスを実行すると、HseResponse は 0xA5AA5317 を返します。これは以下の定義に相当します。 #define HSE_SRV_RSP_KEY_EMPTY ((hseSrvResponse_t)0xA5AA5317UL) これは、鍵が空であることを示しています。(以前にも質問したように、この応答が表示されるのは、その領域が削除されたためではないかと推測しています。) smrEntryの値を確認しました。SecureBootStateが0になる箇所にブレークポイントを設定したところ、smrEntryが完全に0であることを確認しました。Fota_S32k3_SecureBootProcessが終了する戻り点にブレークポイントを設定したところ、値が表示されることを確認しました。帰還時のSecureBootStateの値は1でした。 キーの注入方法やこの問題の解決方法について、ぜひご案内いただけると大変ありがたいです。 1) if(SecureBootState == 0) にブレークポイントが設定された場合 / 結果: smrEntry = 0 2) Fota_S32k3_SecureBootProcess 関数の最後の部分である return secureBootProcessResult にブレークポイントを設定します。 Re: S32K312 Secureboot Authentication NVMおよびRAMキーカタログ内で宣言されたすべての暗号鍵は、鍵タイプHSE_KEY_TYPE_SHEを除き、プロビジョニング可能です(すなわち、ホストによって初期化および更新されるキーインポートサービスは、構造体 hseImportKeySrv_t で定義されます。 SHE鍵はホストがサービスhseSheLoadKeySrv_tまたはhseSheLoadPlainKeySrv_tを通じて提供します。鍵は上記の図のようにプレーンテキストまたは暗号化テキストでインストールでき、デモではすべてのキーがプレーンテキストでインストールされています。 \S32K3_HSE_DemoExamples\にあるS32K344_Update_NVM_keys_related_testに関するリファレンスコードを試してみましたか? # NVMキーを更新します。 ## 1. 目的 この例の主な目的は対称鍵をインポートし、AES GMACが鍵を生成することです。 ## 2. 手順 これを実現するために取られた手順は以下のとおりです。 1.キーカタログのフォーマット。 2.初期バージョンを更新するためのHMACキー情報を宣言します。 3.キーコンテナを宣言します。 4.キー情報をキーコンテナにコピーします。 5.コンテナ内のキーデータをコピーします。 6. *コンテナに他のデータを追加CAN*。 7. HSEを使ってコンテナに署名するためのAESプロビジョニングキーのコピーをRAMにインポートします。 8.コンテナに署名し、GMACを生成する ## 3. ハードウェア この例を正しく実行するには、以下のハードウェアが必要です。 - S32K344-EVB または S32K344-CVB。 - S32K344-CVBを使用する場合は、外部デバッガ(PEmicro Multilink rev. C)も必要です。 Re: S32K312 Secureboot Authentication こんにちは、 @jeongwoo 現在、さらなる進展を阻んでいる主な問題は、HMACキーがまだ利用可能かどうか不明であることのようです。 まず最初に、先ほど提案した検査を行ったか、また結果を教えていただけますか? 「キーが消去されているかどうかを確認するには、サービスHSE_SRV_ID_GET_KEY_INFO、構造構造hseGetKeyInfoSrv_tを使えます。このサービスを使うと、hseKeyInfo_tの情報を得られるので、キーの状態を確認できます。」 キーの状態を確認したら、次のステップに進めます。もしキーが欠けているか消去されていれば、再インストールを試みることができます。あるいは、プロビジョニング時に最初に使った手順と同じ手順でキーを直接インストールしてみて、操作が成功するかどうかを確認することもできます。 よろしくお願いいたします。 ルーカス Re: S32K312 Secureboot Authentication 鍵はHSEサービスHSE_SRV_ID_IMPORT_KEYによってインポートまたは更新可能です。 HSEファームウェアのリファレンスマニュアルのこれらの表を見てみてください。2.7: 表47。NVMキーカタログの空きスロットにキーをインポートする際のキープロビジョニングの使用方法 表48。NVMキーカタログ内のキー(空きスロット以外)を更新する際のキープロビジョニングの使用 これにより、鍵を単純にインポートできる場合や認証や暗号化が必要な場合が説明されます。 キースロットが空でSU権限がある場合、認証なしで単純にインポートできます。キースロットが空でない場合(鍵を更新している場合)、そしてSU(鍵の更新)権限がある場合、認証は必須で暗号化は任意です。 ユーザー権限のみの場合、スロットが空いているかどうかに関わらず認証と暗号化が常に義務付けられます。 S32K344_Update_NVM_keys_related_test の例では、認証済みキーのインポートに必要なキーコンテナを準備して署名する方法のみを示しています。しかし、この例ではキーはインポートされていません。 鍵のインポートは、例えばS32K344_AES_EncryptDecrypt関数で示されています。このプロジェクトでAESキーに使われているAPIはLoadAesKeyです。HMACについては、LoadHmacKey APIがあります。認証や暗号化なしで、HMAC鍵を平文でインポートするために使用できます。 Re: S32K312 Secureboot Authentication Cryptoドライバーを使用する場合、API Crypto_43_HSE_KeyElementSetとCrypto_43_HSE_KeySetValidを使って鍵をインポートできます。 RTDのソフトウェア例(またはRTDバージョンによっては類似)を確認できます。 c:\NXP\SW32K3_S32M27x_RTD_R23-11_7.0.0_QLP02\eclipse\plugins\Crypto_43_HSE_TS_T40D34M70I0R0\examples\S32DS\S32K3XX\Crypto_43_HSE_SymmetricPrimitives_S32K388\ Cryptoモジュールにはスーパーユーザー権利を要求するAPIはありません。 手順はHSEファームウェアリファレンスマニュアルrevの「8.5 スーパーユーザー権利の要求」セクションで説明されています。2.7. ファイルhse_crypto.cの関数Grant_SuperUser_Rights()に従うこともできますこれはHSEのDemoExamplesパッケージで見つけることができます: https://www.nxp.com/webapp/Download?colCode=S32K3_HSE_DemoExamples よろしくお願いいたします。 ルーカス Re: S32K312 Secureboot Authentication こんにちは、ルーカス Crypto_hse.c で、ご指摘いただいた HSE_SRV_ID_GET_KEY_INFO API を定義し、呼び出しました。 しかし、GetKeyInfoのIf文は入力されていないため、KeyInfoの値を参照できません。キーが欠けているか消去されている場合は、再度インストールを試すことができます。 あるいは、プロビジョニング時に使った手順と同じ手順でキーを直接インストールし、その操作が成功したかどうかを教えてもらえますか? 新しいHSEをインポートし、ライフサイクル・インフィールドに別のFBLを追加することで作業を進めました。SU特権はどうやって取得できますか?
View full article
Imx95 缺少显示控制器部分 看来i.MX95参考手册中的显示控制器部分故意仅限于一页,几乎没有细节。为什么会这样呢? 我注意到,在i.MX8参考手册中,本节要全面得多。文件编制方法的这种变化有什么具体原因吗? Re: Imx95 missing display controller section 您好, 感谢您对恩智浦半导体产品的关注, i.MX 95 仍处于预生产阶段,处理器作为文档仍可能发生变化,在版本后,我希望有一本参考手册,其中包含适合客户显示器使用的显示文档。 此致 Re: Imx95 missing display controller section 这是因为,目前 i.MX95 参考手册 Rev. 1.0 仍是预生产手册。NXP 支持团队已确认,显示控制器部分内容不完整是故意的,并且文档仍在不断修改中。他们希望处理器上市后,参考手册中能有更完善的显示部分。 因此,这并不意味着 i.MX95 显示控制器的性能比 i.MX8 实现的性能要差。然而,目前的RM在面向客户的文档方面仍未完成。NXP 产品页面目前显示 i.MX95 RM 的版本为 Rev. 1.0,日期为 2026 年 3 月 30 日。
View full article
IMX95 15x15パッケージDDR5に関する問題 こんにちは、 NXPさん 現在、.imx95 15x15パッケージのDDR5をデバッグしているのですが、問題が発生しました。DDR5: RS2G32LO5D4FB-31BT 1. Configを使用しましたi.MX 26.06 用ツール、検証、lpddr5_timing.c でコンパイルされた .bin ファイルを使用、フラッシュ中に、M33 コアは DDR... を表示しました。OEI: 完了、エラー = -1 2. DDRの速度を1866 MT/sに下げましたが、それでも-1のエラーが発生しました。 3. SDKにはIMX9596 15x15 DDR5の公式バージョンが含まれていないことに気づきました。 Re: imx95 15x15封装 DDR5的问题 こんにちは、 @yrj さん IMX95はDDR5をサポートしていません。 B.R Re: imx95 15x15封装 DDR5的问题 こんにちは@pengyong_zhang LPDDR5に対応していますか? Re: imx95 15x15封装 DDR5的问题 部品はLPDDR5です。回路図を確認する必要があるかもしれません。 Re: imx95 15x15封装 DDR5的问题 こんにちは、 @yrjさん はい、LPDDR5とLPDDR4Xに対応しています。 B.R
View full article
CodeWarrior Build error Every so-often I get a build error:- mingw32-make: *** No rule to make target Dropbox//Projects/\Project_x/\Project_Headers/\../\Sources/\Events.c',                     needed by `Sources/Events_c.obj'.  Stop. The file Events_c.obj does, of course, exist, but the usual remedies do not work. I tried a Clean build, I deleted Events_c.obj', I deleted the whole Flash folder, I tried shutting down and re-starting but nothing worked. I ended up creating a new project and cut and pasted the source file content. This problem occurs once every few weeks and on a couple of occasions, after the computer was "sleeping", the problem cleared itself. Re: CodeWarrior Build error This sounds less like an issue with the .obj file itself and more like a stale or malformed dependency path in the generated Makefile. The Dropbox//Projects/\Project_x... path with the odd slashes is a big clue. I’d check whether the project is being built directly from a Dropbox-synced folder and try moving it to a local, non-synced directory. Also, compare the generated dependency/Makefile entries when the problem occurs with a working build. If the error disappears after the Dropbox folder syncs or the PC wakes, that would further point toward Dropbox/file-system timing rather than the source file.      Re: CodeWarrior Build error Thanks, the sync issue makes sense, but it will be a few days before I can try it.
View full article
CodeWarriorのビルドエラー 時々ビルドエラーが出ます: mingw32-make: *** ターゲットにするルールはありません Dropbox//Projects/\Project_x/\Project_Headers/\../\Sources/\イベント情報.c',`Sources/Events_c.obj` で必要です。  停止。 ファイル Events_c.obj は確かに存在しますが、通常の対処法では解決しません。クリーンビルドを試しました。Events_c.obj を削除しました。Flashフォルダ全体を削除し、シャットダウンと再起動も試しましたが、何も効果がありませんでした。結局、新しいプロジェクトを作成し、ソースファイルの内容をコピー&ペーストしました。この問題は数週間に一度発生し、数回はコンピューターが「スリープ状態」になった後に自然に解消されました。 Re: CodeWarrior Build error ありがとうございます。同期の問題は納得できますが、試せるまで数日かかりそうです。 Re: CodeWarrior Build error これは.objファイルの問題というよりは、ファイル自体、あるいは生成された Makefile 内の古いまたは不正な依存関係パスのようなものです。Dropbox//Projects/\Project_x... というパスに奇妙なスラッシュが含まれていることが大きな手がかりです。プロジェクトがDropboxと同期されたフォルダから直接ビルドされているかどうかを確認し、ローカルの同期されていないディレクトリに移動してみてください。また、問題が発生した際に生成された依存関係/Makefileのエントリを、正常にビルドできた場合と比較してください。Dropboxフォルダの同期後、またはPCのスリープ解除後にエラーが解消される場合は、ソースファイルではなく、Dropbox/ファイルシステムのタイミングに問題がある可能性が高いでしょう。
View full article
Plans for Mbed TLS 4.x / PSA Crypto driver support for SE05x in Plug & Trust Middleware? Hello, does NXP plan to integrate support for Mbed TLS 4.x in the Plug & Trust Middleware? SE050 Re: Plans for Mbed TLS 4.x / PSA Crypto driver support for SE05x in Plug & Trust Middleware? Hi @ph-yac , Mbed TLS 4.x is being considered for the Q1 2027 release. Have a great day, Kan ------------------------------------------------------------------------------- Note: - If this post answers your question, please click the "Mark Correct" button. Thank you! - We are following threads for 7 weeks after the last post, later replies are ignored Please open a new thread and refer to the closed one, if you have a related question at a later point in time. -------------------------------------------------------------------------------
View full article
OX05B1S GMSL2 相机,配备 MAX96717/MAX96724,搭载于 i.MX95 上 您好,NXP团队: 我们正在测试运行 Linux 的 i.MX95 19x19 EVK 上的 OX05B1S GMSL2 相机。 设置: OX05B1S 相机 - MAX96717 - GMSL2 - MX95MBDESER01 MAX96724 - i.MX95 MX95MBDES10001 套件附带的 OX03C10 摄像头与相同的解串器板配合使用,并且可以使用 cam -l 命令查看。 但是,cam -l 并未列出配备 MAX96717 的 OX05B1S 相机。 BSP包含ox05b1s.ko,max96724.ko,max96717_lib.ko,以及 OX05B1S DTB 文件。 OX05B1S DTB 似乎描述了直接的 MIPI 连接,而 OX03C10 DTB 包含 MAX96724 拓扑结构。 NXP是否为这种配置提供参考设备树配置? OX05B1S - MAX96717 - MAX96724 - i.MX95 如果不行,请问要将这款 OX05B1S GMSL2 相机与 MX95MBDESER01 板配合使用,需要进行哪些更改? 谢谢! 此致, 塔伦 Re: OX05B1S GMSL2 camera with MAX96717/MAX96724 on i.MX95 谢谢你的解释。我们了解到,目前的 电路板支持包 正式支持通过直接 MIPI-CSI 接口实现的 OX05B1S,而 MAX96717/MAX96724 SerDes 支持则用于 OX03C10。 我们使用 OX05B1S 相机模块,该模块通过 MAX96724 解串器连接到 i.MX95,并带有 MAX96717 串行器。GMSL2 链路锁定成功,MAX96717 可通过远程 I2C 通道访问。 目前 电路板支持包 是否不支持 OX05B1S + MAX96717 + MAX96724,这意味着需要自定义驱动程序/设备树集成?或者是否有针对这种组合的参考实现或补丁? Re: OX05B1S GMSL2 camera with MAX96717/MAX96724 on i.MX95 当前 电路板支持包 支持使用 MIPI_CSI miniSAS 连接器直接连接 i.MX95 板的 OX05B1S 传感器。Omnivision OX03C10 传感器可通过以下供应商提供的串行器/解串器解决方案在 i.MX 95 上获得支持: • Analog Devices:MAX96717/MAX96724 • 德州仪器:DS0UB953/DS0UV960 更多详细信息,请参阅第 6.1.3 章。相机参考手册 https://www.nxp.com/docs/en/reference-manual/RM00293.pdf Re: OX05B1S GMSL2 camera with MAX96717/MAX96724 on i.MX95 是的,请参考驱动程序 MX95mbcam.c如果使用 OX03C10 驱动程序,并且需要更换摄像头,则必须完全更换该驱动程序。 https://github.com/nxp-imx/linux-imx/blob/lf-6.18.y/drivers/media/i2c/mx95mbcam.c
View full article