Multi Source Translation Content

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

Multi Source Translation Content

Discussions

Sort by:
Maxmimum pulse frequency supported by TPM EXTCLK ALT function in imx93 Hi, Could you please let me know the maximum pulse frequency supported by  TPM EXTCLK (tpm6.EXTCLK) pins in imx93 processor? Regards, Anushree Re: Maxmimum pulse frequency supported by TPM EXTCLK ALT function in imx93 The TPM6 EXTCLK limit on i.MX93 is not given as a standalone pad maximum; it is specified relative to the TPM counter clock: the external clock source must be less than half of the TPM counter clock frequency because the input is synchronized before use. For tpm6_clk_root , the i.MX93 clock root table lists a maximum frequency of 83.33 MHz . So, if TPM6 is clocked at that maximum rate, the practical upper limit for tpm6.EXTCLK pulses is: The TPM control register confirms that TPM6 can count on the rising edge of EXTCLK , or on both edges, with the signal synchronized to the TPM counter clock. Also note that the TPM prescaler is still used when EXTCLK is selected. Use <41.7 MHz only when the TPM6 counter clock is at its 83.33 MHz maximum; otherwise use EXTCLK < TPM counter clock / 2 .
View full article
SJA1105 SGMII driver Petalinux 2020.1 Hi everyone, I am currently working with PetaLinux 2020.1 and an SJA1105SEL switch, and I would like to know whether SGMII is supported in this software release. From what I have seen so far, I am not sure if the SGMII interface is supported by the driver available in PetaLinux 2020.1, or if support was added in a later Linux kernel / driver version. Could anyone clarify: Is it possible to use the SGMII port of the SJA1105SEL when running PetaLinux 2020.1  or it is needed a patch code? Does the SJA1105 driver included with that release support SGMII operation? If SGMII is not supported in PetaLinux 2020.1, in which Linux kernel version (or PetaLinux release) was support for SGMII added to the sja1105 driver? Any information, references to patches, commits, or documentation would be greatly appreciated. Thanks in advance! Linux Re: SJA1105 SGMII driver Petalinux 2020.1 Hello, Which processor are you using?  Re: SJA1105 SGMII driver Petalinux 2020.1 I am using a Xilinx Zynq UltraScale+ MPSoC with PetaLinux 2022.2. The SJA1105SEL is connected through an SGMII interface. My question is whether SGMII is supported by the sja1105 driver included in PetaLinux 2022.1, or if support was added in a later kernel/driver version.
View full article
S32K358 multi core data sharing Hello , I am trying to use shared memory in s32k358 multi core. I am following user define example,  When i try to assign some value in buzzer_state_shared_data_U32 ( currently only core 0 is accessing this memory), core 0 is hanging and swt resetting the controller. But when i flash the code in debug flash, its running properly. With power on reset, core 0 is hanging.  Why its running properly in when flashing and not running in power off and on. Re: S32K358 multi core data sharing Hello @Julián_AragónM , Thank you for your quick response, I check the startup files, SRAM Init is happening. I have attached my startup files and linker files. Please support me to resolve this issue Re: S32K358 multi core data sharing Hello @nirmal_masilamani, But when i flash the code in debug flash, its running properly. With power on reset, core 0 is hanging.  This is most likely caused by ECC RAM error. Usually, debuggers initialize the ECC on volatile memories, however, when powering on and off, debugger does not initialize RAM, and hardfault occurs when trying to access memory. This is usually done in the startup code, before main. The section should be also configured as non-cacheable. Regarding your second issue: but when i try to access it from timer ISR or OS task, core 0 going to hardfault. You can try to trace back your hardfault. Halt the core in the HardFault_Handler(), and find the SP value in the core registers: How To Debug A Fault Exception On ARM Cortex-M(V7M) MCU(S32K3XX). Best regards, Julián Re: S32K358 multi core data sharing Hello, When i access shared memory in main(), its working fine even in power off and on, but when i try to access it from timer ISR or OS task, core 0 going to hardfault. Please support me in this. Re: S32K358 multi core data sharing Hello @Julián_AragónM , Please support on this query. What i am missing here? Re: S32K358 multi core data sharing Hello @nirmal_masilamani, Are you able to access shared memory in main() after POR reset without debugger? Was the issue RAM initialization? but when i try to access it from timer ISR or OS task, core 0 going to hardfault. Were you able to identify the fault type as I mentioned in my previous reply? Have you also made sure the variable is placed in a non-cacheable area, or the cache is disabled? As suggestions: Keep volatile on core1Status and use __DMB()/__DSB() barriers on both the read (Core0) and write (Core1) sides. Your issue could also be caused by MPU configuration, if MPU_ENABLE is defined, please call the MPU config before any ISR or OS task starts executing. You can refer to the following links: Arm Cortex-M7 Devices Generic User Guide r1p2 & AN14715: S32K3XX Hardware Resource Isolation and Protection. Best regards, Julián
View full article
在基于 MC9S12X256 16 位处理器的 SCI 系统上实现 I2C MC9S12XS256 微控制器没有专用的 I2C 端口,但是 SCI 子系统能否用于与 I2C 显示器或类似配件通信? Re: implementing I2c on the sci system on an MC9S12X256 16 BIT I2C 无法与 SCI/LIN 直接通信,因为它们的硬件引脚定义不同。 如果必须使用 I2C 通信,则可能需要使用网关来传输协议(例如 MC9S12)。 Re: implementing I2c on the sci system on an MC9S12X256 16 BIT 嗨@fluffyflex , 它只能通过GPIO进行模拟: https://www.nxp.com/docs/en/application-note/AN5264.pdf https://www.nxp.com/docs/en/application-note-software/AN5264SW.zip 此致, 丹尼尔 Re: implementing I2c on the sci system on an MC9S12X256 16 BIT 谢谢你提供的信息!我会利用这些信息来实现模拟I2C。 此致
View full article
SJA1105 SGMII 驱动程序 Petalinux 2020.1 大家好, 我目前正在使用PetaLinux 2020.1和SJA1105SEL交换机,我想知道此软件版本是否支持 SGMII 。 就我目前所见,我不确定 PetaLinux 2020.1 中提供的驱动程序是否支持 SGMII 接口,或者是否在后来的 Linux 内核/驱动程序版本中添加了支持。 请问有人能解释一下吗? 运行PetaLinux 2020.1时是否可以使用 SJA1105SEL 的SGMII 端口,还是需要补丁代码? 该版本中包含的 SJA1105 驱动程序是否支持 SGMII 操作? 如果 PetaLinux 2020.1 不支持 SGMII,那么在哪个 Linux 内核版本(或 PetaLinux 版本)中, sja1105驱动程序添加了对 SGMII 的支持? 任何信息、补丁、提交记录或文档的参考资料都将不胜感激。 提前感谢! Linux Re: SJA1105 SGMII driver Petalinux 2020.1 你好, 你使用的是哪款处理器? Re: SJA1105 SGMII driver Petalinux 2020.1 我使用的是搭载 PetaLinux 2022.2 的 Xilinx Zynq UltraScale+ MPSoC。SJA1105SEL 通过 SGMII 接口连接。我的问题是,SGMII 是否受 PetaLinux 2022.1 中包含的 sja1105 驱动程序支持,或者是否在后续的内核/驱动程序版本中添加了支持。
View full article
S32K358 多核数据共享 你好 , 我正在尝试在 s32k358 多核处理器中使用共享内存。 我正在学习用户自定义示例, 当我尝试在buzzer_state_shared_data_U32 中赋值时(目前只有核心 0 访问此内存),核心 0 挂起并 swt 重置控制器。 但是当我把代码烧录到调试闪存中时,它运行正常。上电复位后,核心 0 卡住。 为什么刷机时运行正常,而断电重启后却无法运行? Re: S32K358 multi core data sharing 你好@Julián_AragónM , 感谢您的快速回复。 我检查了启动文件,SRAM 初始化正在进行。 我已附上启动文件和链接器文件。请协助我解决这个问题。 Re: S32K358 multi core data sharing 你好@nirmal_masilamani , 但是当我把代码烧录到调试闪存中时,它运行正常。上电复位后,核心 0 卡住。 这很可能是由ECC RAM错误引起的。通常情况下,调试器会在易失性存储器上初始化 ECC,但是,在开机和关机时,调试器不会初始化 RAM,因此在尝试访问内存时会发生硬故障。 这通常是在启动代码中,在 main 函数之前完成的。 该部分还应配置为不可缓存。 关于你的第二个问题:但是当我尝试从定时器中断服务例程或操作系统任务访问它时,核心 0 会发生硬故障。 您可以尝试追溯硬故障。在 HardFault_Handler() 中停止内核,并在内核寄存器中找到 SP 值:如何调试 ARM Cortex-M(V7M) MCU(S32K3XX) 上的故障异常。 此致, 朱利安 Re: S32K358 multi core data sharing 你好, 当我在 main() 中访问共享内存时,即使在断电重启后也能正常工作,但是当我尝试从定时器中断服务例程或操作系统任务中访问它时,核心 0 会发生硬故障。 请支持我。 Re: S32K358 multi core data sharing 你好@Julián_AragónM , 请协助解答此问题。我到底漏掉了什么? Re: S32K358 multi core data sharing 你好@nirmal_masilamani , 在不使用调试器的情况下,能否在 POR RESET 后通过 main() 函数访问共享内存?问题是否出在内存初始化上? 但是当我尝试从定时器中断服务例程或操作系统任务访问它时,核心 0 会发生硬故障。 您是否能够像我上次回复中提到的那样,确定故障类型? 您是否也确保将变量放置在不可缓存的区域中,或者禁用了缓存? 建议如下: 对 core1Status 保持 volatile 状态,并在读取(Core0)和写入(Core1)两侧使用__DMB()/__ DSB() 屏障。 您的问题也可能是由 MPU 配置引起的,如果定义了 MPU_ENABLE,请在任何 ISR 或 OS 任务开始执行之前调用 MPU 配置。 您可以参考以下链接: Arm Cortex-M7 设备通用用户指南 r1p2和AN14715:S32K3XX 硬件资源隔离和保护。 此致, 朱利安
View full article
implementing I2c on the sci system on an MC9S12X256 16 BIT The MC9S12XS256 microcontroller does not have a dedicated I2C port, But can the SCI subsystem be used to communicate with I2c displays or similar accessories? Re: implementing I2c on the sci system on an MC9S12X256 16 BIT I2C can not communicate withSCI/LIN directly since they are different hardware pin defination. You may need to use a gateway to transfer the protocol if I2C is must with MC9S12 Re: implementing I2c on the sci system on an MC9S12X256 16 BIT Hi @fluffyflex, It can only be emulated using GPIOs: https://www.nxp.com/docs/en/application-note/AN5264.pdf https://www.nxp.com/docs/en/application-note-software/AN5264SW.zip Regards, Daniel Re: implementing I2c on the sci system on an MC9S12X256 16 BIT Thank you for that information!, I will utilize that to incorporate a simulated I2C. Regards
View full article
関連するEBライセンスが許容される最大数量を超えています 7月にリリースされたアクティブコードですが、最後のコードではアクティベートできません
View full article
S32K358マルチコアデータ共有 こんにちは 、 私はs32k358マルチコアで共有メモリを使用しようとしています。 私はユーザー定義の例に従っています。 buzzer_state_shared_data_U32で値を割り当てようとすると(現在はコア0のみがこのメモリにアクセスしています)、コア0がハングし、SWTがコントローラーをリセットします。 しかし、デバッグフラッシュにコードを書き込むと、正常に動作します。電源リセット後、コア0がハングアップしています。 フラッシュ中は正常に動作するのに、電源のオンオフでは動作しないのはなぜですか? Re: S32K358 multi core data sharing こんにちは、 @Julián_AragónM さん、 迅速なご対応ありがとうございます。 起動ファイルを確認したところ、SRAMの初期化が実行されている。 起動ファイルとリンカーファイルを添付しました。この問題を解決するために、ぜひ私をサポートしてください Re: S32K358 multi core data sharing こんにちは、 @nirmal_masilamani さん、 しかし、デバッグフラッシュにコードを書き込むと、正常に動作します。電源リセット後、コア0がハングアップしています。 これはおそらくECC RAMのエラーが原因です。通常、デバッガは揮発性メモリ上でECCを初期化しますが、電源オン・オフ時にRAMを初期化せず、メモリへのアクセス時にハードフォールトが発生します。 これは通常、メイン関数の前に実行される起動コード内で行われます。 このセクションはキャッシュ不可に設定する必要があります。 2つ目の問題についてですが、タイマーISRやOSタスクからアクセスしようとすると、コア0がハードフォールに切り替わります。 ハードフォルトを遡って追跡してみることもできます。HardFault_Handler()でコアを停止し、コアレジスタでSP値を見つけます:How To Debug A Fault Exception On ARM Cortex-M(V7M) MCU(S32K3XX)。 よろしくお願いします、 ジュリアン Re: S32K358 multi core data sharing こんにちは、 main()で共有メモリにアクセスすると、電源オフ・オンでも問題なく動作しますが、タイマーISRやOSタスクからアクセスしようとすると、コア0がハードフォールに切り替わります。 どうか私をサポートしてください。 Re: S32K358 multi core data sharing こんにちは、 @Julián_AragónM さん、 この質問についてサポートしてください。私が何か見落としているのでしょうか? Re: S32K358 multi core data sharing こんにちは、 @nirmal_masilamani さん、 PORリセット後にデバッガなしでmain()の共有メモリにアクセスできますか?問題はRAMの初期化だったのでしょうか? しかし、タイマー、ISR、OSタスクからアクセスしようとすると、コア0がハードフォールトに切り替わります。 前回の返信でお伝えしたように、故障の種類を特定できましたか? 変数がキャッシュされない領域に配置されているか、またはキャッシュが無効になっていることを確認しましたか? 提案として: core1Status を揮発性のままにしておき、読み取り側 (Core0) と書き込み側 (Core1) の両方で__DMB()/__ DSB() バリアを使用します。 問題がMPU設定が原因かもしれません。もし定義MPU_ENABLEなら、ISRやOSタスクが実行される前にMPU設定を呼び出してください。 以下のリンクを参照してください:Arm Cortex-M7 デバイス汎用ユーザーガイド r1p2 & AN14715: S32K3XX ハードウェアリソースのアイソレータと保護。 よろしくお願いします、 ジュリアン
View full article
SJA1105 SGMIIドライバー Petalinux 2020.1 こんにちは、皆さん 現在、 PetaLinux 2020.1 と SJA1105SEL スイッチを使って作業しており、 このソフトウェアリリースでSGMIIがサポートされているかどうか知りたいです。 これまでのところ、PetaLinux 2020.1のドライバでSGMIIインターフェースがサポートされているのか、それとも後のLinuxカーネルやドライババージョンでサポートが追加されたのかはわかりません。 どなたか詳しく教えてもらえますか: PetaLinux 2020.1を実行している場合、SJA1105SELのSGMIIポートを使用することは可能ですか?それともパッチコードが必要ですか? そのリリースに付属しているSJA1105ドライバはSGMIIの動作をサポートしていますか? PetaLinux 2020.1でSGMIIがサポートされていない場合、どのLinuxカーネルバージョン(またはPetaLinuxリリース)が sja1105 ドライバに追加されたのでしょうか? パッチやコミット、ドキュメントなどの情報や参考文献があれば大変ありがたいです。 よろしくお願いいたします! Linux Re: SJA1105 SGMII driver Petalinux 2020.1 こんにちは、 どのプロセッサを使っていますか? Re: SJA1105 SGMII driver Petalinux 2020.1 私はPetaLinux 2022.2を搭載したXilinx Zynq UltraScale+ MPSoCを使用しています。SJA1105SELはSGMIIインターフェースを介して接続されています。質問は、PetaLinux 2022.1に含まれるsja1105ドライバーがSGMIIをサポートしているのか、それとも後のカーネルやドライバーバージョンでサポートが追加されたのかということです。
View full article
MC9S12X256 16ビットのSCIシステムでI2Cを実装する MC9S12XS256マイクロコントローラには専用のI2Cポートはありませんが、SCIサブシステムはI2Cディスプレイや類似のアクセサリと通信するために使えますか? Re: implementing I2c on the sci system on an MC9S12X256 16 BIT I2CはSCI/LINとは異なるハードウェアピン定義であるため、直接通信できません。 MC9S12でI2Cが必須の場合、プロトコルを転送するためにゲートウェイを使用する必要があるかもしれません。 Re: implementing I2c on the sci system on an MC9S12X256 16 BIT こんにちは、 @fluffyflex さん。 GPIOを用いてのみエミュレート可能です: https://www.nxp.com/docs/en/application-note/AN5264.pdf https://www.nxp.com/docs/en/application-note-software/AN5264SW.zip よろしくお願いいたします。 ダニエル Re: implementing I2c on the sci system on an MC9S12X256 16 BIT 情報ありがとうございます!それを参考に、I2Cのシミュレーションを組み込んでみます。 よろしくお願いします。
View full article
相关EB许可证的数量超过了允许的最大数量。 激活码是七月份发布的,但我用最新的激活码无法激活。
View full article
The Related EB Lisence exceeds maximum quanity allowed The activecode released at July,but I can't actived using the last code 
View full article
i.MX93RM – TPM Channel Count Correction The table below contains notable updates to the Rev 7 release of the i.MX 93 Applications Processor Reference Manual. Affected Modules Issue Summary Description Date Chapter 1 - Introduction Incorrect TPM channel count  Section 1.1.2 - Features: States that each TPM instance “Includes 6 channels that can be configured for input capture, output compare, edge-aligned PWM mode, or center-aligned PWM mode.” Correct information: Includes 4 channels that can be configured for input capture, output compare, edge-aligned PWM mode, or center-aligned PWM mode. 07-07-2026 Correction to an inconsistent TPM channel count description in the i.MX 93 Reference Manual Rev. 7. 
View full article
Step-by-Step Guide to Running the GenAVB/TSN Stack FreeRTOS Evaluation Use Case on i.MX RT1180 1. Abstract The GenAVB/TSN Stack FreeRTOS Evaluation User's Guide (version:8.0 Release) covers multiple hardware platforms, software configurations, and evaluation use cases. While comprehensive, the document can be challenging for first-time users to follow due to the large amount of information and the variety of supported scenarios. This article focuses on a specific use case from the User's Guide and provides a detailed, step-by-step walkthrough with screenshots, configuration examples, expected results, and troubleshooting tips. The goal is to help users better understand the setup process and successfully evaluate the GenAVB/TSN stack on NXP platforms. This article walks through Section 4.4, TSN Network Only with TSN Bridge and Standalone Endpoint i.MX RT1180, from the GenAVB/TSN Stack FreeRTOS Evaluation User's Guide. It explains the required hardware setup, firmware build and flashing procedure, board configuration, TSN configuration, execution steps, expected results, and basic troubleshooting tips. 2. Setup 2.1 Hardware Preparation Two i.MX RT1180 boards A PC with a serial terminal emulator. MobaXterm Portable is recommended. At least two USB cables and three Ethernet cables 2.2 Firmware Preparation 2.2.1 Setup IDE and SDK Refer to the NXP GenAVB/TSN MCUXpresso User's Guide to install the required software environment for the selected platform and project. A successful project build confirms that the build environment has been installed and configured correctly. VS Code and MCUXpresso for Visual Studio Code are recommended. 2.2.2 Build Image Note:  The specific operating procedures should still be based on GenAVB/TSN MCUXpresso User's Guide . The explanation below is intended only as a supplement to the original document. For GenAVB_TSN-rtos-apps version 8.0, the CM7 Kconfig file needs to be fixed manually before building the image. Kconfig file path: Add two lines like the following: Set the Build Configurations of the CM33 project to release_no_enetc0, and then build the project. Set the Build Configurations of the CM7 project to release_enetc0, and then build the project. Note: If you are using MCUXpresso for VS Code, you may not be able to import both the CM33 and CM7 projects of the TSN application into the same workspace at the same time, like the following: If this occurs, remove the existing project from the workspace before importing the project for the other core. This issue is expected to be fixed in a future release. After both the CM33 and CM7 projects are built successfully, the generated .bin files and .elf files can be found in the corresponding output directories: 2.2.3 Flash Image Make sure the board's boot configuration switch is set to Serial Downloader mode. For SDP mode, SW5[1..4] should be set to 0001. Set jumper J1 to position 7–8 so that the evaluation board can be powered through the Debug USB port. Connect one USB cable between the PC and the USB_OTG1 port , which is used for firmware downloading. Connect another USB cable between the PC and the Debug USB port, which is used for power supply and serial communication. Then reset the board. Refer to Chapter 10, "Multi core (Cortex-M33 + Cortex-M7) images flashing" in the GenAVB/TSN MCUXpresso User's Guide. Flash the following generated binaries to the target device: genavb_tsn_rtos_apps\...\release_no_enetc0\evkmimxrt1180_tsn_app_cm33_cm33.bin genavb_tsn_rtos_apps\...\release_enetc0\evkmimxrt1180_tsn_app_cm7_cm7.bin 2.3 Check the Status of the Boards After the flashing operation is completed on both boards, restore the boot configuration switch on each board to Quad SPI mode. For QSPI mode, SW5[1..4] should be set to 0100. Then reset both boards. Remove the jumper on JP7 so that the debug port on each board can enumerate two serial ports. The CM33 and CM7 serial terminal interfaces are provided through the two serial ports enumerated by the debug port. After the boards restart, the red LED D7 should blink, indicating that the TSN application is running. Then, check the hardware connection: 2.4 TSN Configuration and Evaluation i.MX RT1180 Controller i.MX RT1180 IO Device 1 Step 1. Configure the Controller Standalone TSN Endpoint and IO Device Standalone TSN Endpoint respectively. CM33 shell: Press INSERT key mkdir -p /m7/tsn_app write /m7/boot 1 write /m7/tsn_app/role 0 write /m7/tsn_app/mode 2 write /m7/tsn_app/port_id 1 write /m7/tsn_app/num_io_devices 1 write /m7/tsn_app/period_ns 250000 CM33 shell: Press INSERT key mkdir -p /m7/tsn_app write /m7/boot 1 write /m7/tsn_app/role 1 write /m7/tsn_app/mode 2 write /m7/tsn_app/port_id 1 write /m7/tsn_app/period_ns 250000 Step 2. Reset the boards Reset Reset Step 3. Set hardware address CM33 shell: mkdir -p port0 mkdir -p port1 mkdir -p port2 mkdir -p port3 mkdir -p port4 mkdir -p port5 write port0/hw_addr 54:27:8D:00:00:00 write port1/hw_addr 54:27:8D:00:00:01 write port2/hw_addr 54:27:8D:00:00:02 write port3/hw_addr 54:27:8D:00:00:03 write port4/hw_addr 54:27:8D:00:00:04 write port5/hw_addr 54:27:8D:00:00:05 CM33 shell: mkdir -p port0 mkdir -p port1 mkdir -p port2 mkdir -p port3 mkdir -p port4 mkdir -p port5 write port0/hw_addr 54:27:8D:00:01:00 write port1/hw_addr 54:27:8D:00:01:01 write port2/hw_addr 54:27:8D:00:01:02 write port3/hw_addr 54:27:8D:00:01:03 write port4/hw_addr 54:27:8D:00:01:04 write port5/hw_addr 54:27:8D:00:01:05 Step 4. Set gPTP / (Devices without this command configured remain GM devices.) CM33 shell: mkdir -p fgptp write fgptp/priority1 248 Step 5. VLAN and FDB entry settings BRIDGE>> vlan_update 2 3 -c 1 -p BRIDGE>> vlan_update 2 4 -c 1 -p BRIDGE>> fdb_update 91:e0:f0:00:fe:70 2 4 -c 1 -p BRIDGE>> fdb_update 91:e0:f0:00:fe:71 2 3 -c 1 -p / Step 6. Scheduled Traffic settings CM33 shell: BRIDGE>> cd / BRIDGE>> qbv_set 4 -b 35000 -c 250000 -C 0 -l 08,80000 -l f7,170000 -p BRIDGE>> qbv_set 3 -b 160000 -c 250000 -C 0 -l 08,80000 -l f7,170000 -p CM7 shell: CONTROLLER>> qbv_set 1 -b 35000 -c 250000 -C 0 -l 02,80000 -l fd,170000 CM7 shell: IO_DEVICE_0>> qbv_set 1 -b 160000 -c 250000 -C 0 -l 02,80000 -l fd,170000 Step 7. Reset the boards and evaluate Scheduled Traffic / Step 8. Configure Time-Specific Departure (TSD) CM33 shell: Press INSERT key write /m7/tsn_app/tx_time_enabled 1 write /m7/tsn_app/tx_time_offset_ns 38000 CM33 shell: Press INSERT key write /m7/tsn_app/tx_time_enabled 1 write /m7/tsn_app/tx_time_offset_ns 38000 Step 9. Reset the boards and evaluate Time-Specific Departure (TSD) / Note: All use cases require the hardware address and gPTP configurations. The original User's Guide does not fully describe this part, so these steps are explicitly included in this article for clarity. 3. Conclusion This guide summarizes the complete workflow for evaluating the GenAVB/TSN Stack FreeRTOS use case on the i.MX RT1180 platform. It covers the required hardware preparation, firmware build process, image flashing procedure, board boot configuration, serial port verification, and TSN configuration steps. By following the configuration sequence in this document, users can set up the Controller and IO Device roles, configure gPTP, VLAN, FDB entries, Scheduled Traffic, and Time-Specific Departure, and then verify the expected TSN behavior between the two i.MX RT1180 boards.
View full article
i.MX8MPのBluetooth こんにちは、エキスパートさん、 私はIMX8MP上でAW-CM358SMのテストを行っています。Wi-Fiは正常に動作していますが、UART3でBluetoothをテストするとエラーが表示されます。エラーメッセージは以下のとおりです。いろいろな方法を試しましたが、まだ成功していません。何か直すアイデアはありますか?ご協力いただければ大変ありがたいです。 エラーログ: Bluetooth: hci0: FW already running. [ 46.628430] Bluetooth: hci0: Opcode 0x0c03 failed: -110 dts: &uart3 { /* BT */ pinctrl-names = "default"; pinctrl-0 = <&pinctrl_uart3 &pinctrl_bt_ctrl>; 割り当てクロック = <&clk IMX8MP_CLK_UART3>; 割り当てられたクロック親 = <&clk IMX8MP_SYS_PLL1_80M>; uart-has-rtscts; ステータス = "正常"; ブルートゥース { compatible = "nxp,88w8987-bt"; device-wakeup-gpios = <&gpio2 10 GPIO_ACTIVE_HIGH>; }; }; pinctrl_uart3: uart3grp { fsl、pins = < MX8MP_IOMUXC_ECSPI1_SCLK__UART3_DCE_RX 0x140 MX8MP_IOMUXC_ECSPI1_MOSI__UART3_DCE_TX 0x140 MX8MP_IOMUXC_ECSPI1_MISO__UART3_DCE_CTS 0x140 MX8MP_IOMUXC_ECSPI1_SS0__UART3_DCE_RTS 0x140 >; }; pinctrl_bt_ctrl: btctrlgrp { fsl、pins = < MX8MP_IOMUXC_SD1_RESET_B__GPIO2_IO10 0x10 /* HOST_WAKE_BT */ MX8MP_IOMUXC_SD1_STROBE__GPIO2_IO11 0x140 /* BT_HOST_WAKE */ >; }; wifi_mod_para.conf SD8987 = { cfg80211_wext=0xf wfd_name=p2p max_vir_bss=1 cal_data_cfg=なし drv_mode=7 ps_mode=2 auto_ds=2 fw_name=nxp/sdiouart8987_combo_v0.bin } カーネルログ カーネルを起動中… [ 0.000000] 物理CPUでLinuxを起動0x0000000000 [0x410fd034] [ 0.000000] Linux バージョン 6.6.52-rt43-gd377c9049508-dirty(root@fbdebian)(aarch64-linux-gnu-gcc (Debian 12.2.0-14)12.2.0、GNU ld(Debian用GNU Binutils)2.40) #1 SMP PREEMPT 2026年7月2日(木)11:19:58 CST [ 0.00000] KASLRがシード不足で無効化 [ 0.000000] 機械モデル:G3 i.MX8MPlus EVKボード [ 0.000000] EFI: UEFIが見つかりません。 [ 0.000000] 予約メモリ:CMAリージョンの設定ができません [ 0.000000] OF: reserved mem: node Linux, cma compatible matching fail [ 0.000000] OF: 予約された記憶: 0x0000000000900000...0x000000000096ffff(448 KiB)ノーマップ 再利用不可ocram@900000 [ 0.000000] ゾーン範囲: [0.000000] DMA [記憶0x0000000040000000-0x00000000ffffffff] [ 0.000000] DMA32 空 [0.000000] 正常 [記憶0x0000000100000000-0x000000013fffffff] [ 0.000000] 各ノードの可動域開始 [ 0.000000] 初期のメモリノード範囲 [ 0.000000] ノード0: [記憶 0x0000000040000000-0x000000013fffffff] [ 0.000000] イニシテムセットアップノード0 [メモリ0x0000000040000000-0x000000013fffffff] [ 0.000000] CMA:ノード-1の0x00000000ff800000で8 MiBを予約 [ 0.000000] PSCI:DTからの導管の**方法**のプロービング。 [ 0.000000] PSCI:ファームウェアでPSCIv1.1を検出。 [ 0.000000] psci: 標準のPSCI v0.2関数IDを使用しています [ 0.000000] psci: MIGRATE_INFO_TYPE はサポートされていません。 [ 0.00000] psci: SMC Calling Convention v1.4 [ 0.000000] percpu: 組み込み 20ページ/cpu s43368 r8192 d30360 u81920 [ 0.000000] CPU0でVIPT Iキャッシュを検出 [ 0.000000] CPU機能:検出:GICシステムレジスタCPUインターフェース [ 0.000000] CPU機能:検出:ARMエラタム845719 [ 0.00000] 代替手段:ブート代替の適用 [ 0.000000] カーネルコマンドライン: console=ttymxc1,115200 root=PARTUUID=6a120481-03 rw rootwait [ 0.00000] Dentry キャッシュ ハッシュテーブルエントリ:524288(順序:10、4194304バイト、線形) [ 0.000000] Inodeキャッシュハッシュテーブルエントリ:262144(順序:9、2097152バイト、線形) [ 0.00000] ゾーンリストを1つ作成、モビリティグループオン。総ページ数:1032192 [ 0.000000] mem auto-init: stack:all(zero), heap alloc:off、heap free:off [ 0.000000] ソフトウェア IO TLB: エリア番号4。 [ 0.000000] ソフトウェアIO TLB: マッピング済み[記憶 0x00000000fb800000-0x00000000ff800000] (64MB) [ 0.000000] メモリ:4012020K/4194304Kが利用可能(カーネルコード16192K、rwdata1688K、rodata5064K、3520K初init、541K bss、174092Kリザーブ、8192K cmaリザーブ) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] rcu:プリエンプティブ階層的RCU実装。 [ 0.000000] rcu: RCU は CPU を NR_CPUS=256 から nr_cpu_ids=4 に制限します。 [ 0.000000] タスク RCU のトランポリン バリアントが有効になりました。 [ 0.000000] タスク RCU のトレースバリアントが有効になりました。 [ 0.000000] rcu: RCU が計算したスケジューラ登録遅延の値は 25 ジフィーです。 [ 0.000000] rcu: rcu_fanout_leaf=16、nr_cpu_ids=4 のジオメトリを調整しています [ 0.000000] NR_IRQS: 64、nr_irqs: 64、事前割り当て済みirqs: 0 [ 0.000000] GICv3: GIC: 分割EOI/非アクティブ化モードを使用 [ 0.000000] GICv3: 160 の SPI が実装されました [ 0.000000] GICv3: 0個の拡張SPIが実装されました [ 0.000000] ルートIRQハンドラ: gic_handle_irq [ 0.000000] GICv3: GICv3 機能: 16 PPI [ 0.000000] GICv3: CPU0: 再分配器 0 領域 0:0x0000000038880000 が見つかりました [ 0.000000] ITS: ITSが利用できないため、LPIは有効にしません [ 0.000000] rcu: srcu_init: 競合に基づいて srcu_struct のサイズを設定します。 [ 0.000000] arch_timer: cp15 タイマーが 8.00MHz (物理) で動作しています。 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x1d854df40, max_idle_ns: 440795202120 ns [ 0.000000] sched_clock: 56ビット、8MHz、分解能125ns、2199023255500nsごとにラップアラウンド [ 0.000475] コンソール: カラーダミーデバイス 80x25 [ 0.000519] 遅延ループのキャリブレーション(スキップ)、タイマー周波数を使用して計算された値。16.00 BogoMIPS (lpj=32000) [ 0.000528] pid_max: デフォルト値: 32768 最小値: 301 [ 0.000602] LSM: lsm=capability,integrity を初期化しています [ 0.000695] マウントキャッシュハッシュテーブルのエントリ数: 8192 (次数: 4、65536 バイト、線形) [ 0.000711] マウントポイントキャッシュハッシュテーブルのエントリ数: 8192 (次数: 4、65536 バイト、線形) [ 0.002173] RCUタスク: シフトを2、リミットを1に設定 rcu_task_cb_adjust=1。 [ 0.002240] RCUタスクトレース: シフトを2、リミットを1に設定 rcu_task_cb_adjust=1。 [ 0.002415] rcu: 階層型 SRCU 実装。 [ 0.002418] rcu: 最大フェーズ遅延なしインスタンス数は 1000 です。 [ 0.004206] EFI サービスは利用できません。 [ 0.0044444] smp: セカンダリCPUを起動中... [ 0.004903] CPU1でVIPT Iキャッシュを検出 [ 0.004964] GICv3: CPU1: リディストリビューター1 リージョン0:0x00000000388a0000 [ 0.005000] CPU1: セカンダリプロセッサを起動0x0000000001 [0x410fd034] [ 0.005523] CPU2でVIPT Iキャッシュを検出 [ 0.005565] GICv3: CPU2: リディストリビューター2 リージョン0:0x00000000388c0000 [ 0.005585] CPU2: 起動済みのセカンダリプロセッサ0x0000000002 [0x410fd034] [ 0.006045 CPU3でVIPT Iキャッシュを検出 [ 0.006083] GICv3: CPU3: リディストリビューター3 リージョン0:0x00000000388e0000 [ 0.006100] CPU3: 起動されたセカンダリプロセッサ 0x0000000003 [0x410fd034] [ 0.006165] smp: ノード1台、CPU4台を起動しました [ 0.006173] SMP:合計4つのプロセッサが起動。 [ 0.006177] CPU機能:検出:32ビットEL0サポート [ 0.006181] CPU機能:検出済み:CRC32命令 [ 0.006243] CPU:すべてのCPUはEL2からスタートしました [ 0.006246] 代替案:システム全体の代替案の適用 [ 0.008002] devtmpfs: initialized [ 0.016979] 時計ソース:ジフィーズ:マスク:0xffffffff max_cycles:0xffffffff、max_idle_ns:7645041785100000 NS [ 0.017001] Futex ハッシュテーブルエントリ数:1024(順序:4、65536バイト、線形) [ 0.017422] pinCtrl コア:初期化されたpinCtrlサブシステム [ 0.020051] DMIは存在しないか無効です。 [ 0.020689] NET:登録済みPF_NETLINK/PF_ROUTEプロトコルファミリ [ 0.022304] DMA:原子割り当て用に事前割り当てされた512 KiB GFP_KERNELプール [ 0.023375] DMA: 事前割り当て512 KiB GFP_KERNEL|GFP_DMA原子割り当てプール [ 0.024665] DMA: 事前割り当て512 KiB GFP_KERNEL|GFP_DMA32原子割り当てプール [ 0.024748] 監査:NetLinkサブシステムの初期化(無効) [ 0.024932] 監査:type=2000 監査(0.024:1):state=initialized audit_enabled=0 res=1 [ 0.025352] thermal_sys: サーマルガバナー「step_wise」を登録しました [ 0.025356] thermal_sys: サーマルガバナー「power_allocator」を登録しました [ 0.025401] cpuidle: ガバナーメニューを使用しています [ 0.025566] hw-breakpoint: ブレークポイントレジスタが 6 つ、ウォッチポイントレジスタが 4 つ見つかりました。 [ 0.025647] ASIDアロケーターが65536エントリで初期化 [ 0.026696] シリアル番号:AMBA PL011 UARTドライバ [ 0.026763] IMX MUドライバが登録されています。 [ 0.026785] IMX RPMSGドライバが登録されています。 [ 0.032936] プラットフォームsoc@0:固定依存サイクル(/soc@0/bus@30000000/efuse@30350000/unique-id@8 [ 0.035120] プラットフォーム 30330000.pinctrl:/soc@0/bus@30000000/pinctrl@30330000/hoggrp との依存関係サイクルを修正しました [ 0.035566] imx8mp-pinctrl 30330000.pinctrl:IMX pinCtrlドライバーを初期化しました [ 0.036067] プラットフォーム 30350000.efuse:/soc@0/bus@30000000/クロックcontroller@30380000の固定依存サイクル [ 0.037099] プラットフォーム30350000.efuse:/soc@0/bus@30000000/クロックcontroller@30380000の固定依存サイクル [ 0.049206] モジュール:非PLT用途の範囲内25968ページ [ 0.049215] モジュール:PLT使用範囲内の517488ページ [ 0.049877] HugeTLB: 登録済み1.00 GiBページサイズ、事前割り当て0ページ [ 0.049884] HugeTLB: 0 KiB vmemmapを1.00 GiBページ用に解放可能 [ 0.049889] HugeTLB: 登録済み32.0 MiBページサイズ、事前割り当て0ページ [ 0.049892] HugeTLB: 0 KiB vmemmapを32.0 MiBページ用に解放可能 [ 0.049896] HugeTLB: 登録済み2.00 MiBページサイズ、事前割り当て0ページ [ 0.049902] HugeTLB: 0 KiB vmemmapを2.00 MiBページで解放可能 [ 0.049909] HugeTLB: 登録済み 64.0 KiB ページサイズ、事前割り当て 0ページ [ 0.049912] HugeTLB: 0 KiB vmemmapを64.0 KiBページに解放可能 [ 0.052093] iommu: デフォルトドメインタイプ: 翻訳済み [ 0.052102] iommu: DMAドメインTLB無効化ポリシー:厳格モード [ 0.052394] SCSIサブシステムが初期化されました [ 0.052679] USBコア:登録済みの新しいインターフェースドライバー USBFS [ 0.052709] USBCORE:登録済みの新しいインターフェースドライバハブ [ 0.052742] usbcore: 登録済みの新しいデバイスドライバー USB [ 0.053603] pps_core: LinuxPPS API ver. 1 登録済み [ 0.053607 ] pps_core: ソフトウェア版5.3.6 - Copyright 2005-2007 Rodolfo Giometti [ 0.053619 ] PTPクロックサポートが登録されています [ 0.053886] EDAC MC: バージョン: 3.0.0 [ 0.054304] scmi_core: SCMIプロトコルバス登録済み [ 0.055327] Bluetooth: Core ver 2.22 [0.055356] NET:登録済みPF_BLUETOOTHプロトコルファミリ [ 0.055361] Bluetooth:HCIデバイスと接続マネージャの初期化 [ 0.055370] Bluetooth:HCIソケット層の初期化 [ 0.055375] Bluetooth:L2CAPソケット層の初期化済み [ 0.055387] Bluetooth:SCOソケット層の初期化済み [ 0.055707] vgaarb: loaded [ 0.056088] クロックソース:クロックソースarch_sys_counterに切り替えました [ 0.056287] VFS: ディスククォータ dquot_6.6.0 [ 0.056396] VFS: Dquotキャッシュハッシュテーブルエントリ:512(次数0、4096バイト) [ 0.063310] NET: 登録済みPF_INETプロトコルファミリ [ 0.063495] IPが識別するハッシュテーブルエントリ:65536(順序:7、524288バイト、線形) [ 0.066275] tcp_listen_portaddr_hash ハッシュテーブルエントリ数:2048(順序:3、32768バイト、線形) [ 0.066325] テーブル・パーターブハッシュテーブルエントリ数:65536(順序:6、262144バイト、線形) [ 0.066337] TCPはハッシュテーブルエントリを確立しました:32768(順序:6、262144バイト、線形) [ 0.066585] TCP バインドハッシュテーブルエントリ:32768(順序:8、1048576バイト、線形) [ 0.067521] TCP: ハッシュテーブルの設定済み(確立済み 32768 bind 32768) [ 0.067635] UDPハッシュテーブルエントリ数:2048(順序:4,65536バイト、線形) [ 0.067720] UDP-Lite ハッシュテーブルエントリ数:2048(順序:4,65536バイト、線形) [ 0.067927] NET:登録済みPF_UNIX/PF_LOCALプロトコルファミリ [ 0.068373] RPC: 登録済みのUNIXソケットトランスポートモジュール。 [ 0.068379] RPC: UDPトランスポートモジュールを登録しました。 [ 0.068381] RPC: TCPトランスポートモジュールを登録しました。 [ 0.068384] RPC: tcp-with-tls トランスポート モジュールを登録しました。 [ 0.068386] RPC: tcp NFSv4.1 バックチャネル トランスポート モジュールを登録しました。 [ 0.069403] PCI: CLS 0バイト、デフォルト64 [ 0.070488] システムの信頼キーリングを初期化する [ 0.070625] ワーキングセット: timestamp_bits=46 max_order=20 bucket_order=0 [ 0.070895] スカッシュフス:バージョン4.0(2009年1月31日) フィリップ・ラウアー [ 0.071096] NFS: id_resolverキータイプの登録 [ 0.071116 登録キータイプid_resolver [ 0.071120 登録キータイプid_legacy [ 0.071137] nfs4filelayout_init: NFSv4 ファイルレイアウトドライバーの登録中... [ 0.071142] nfs4flexfilelayout_init: NFSv4 Flexfile レイアウトドライバーが登録中... [ 0.071159] JFFS2: バージョン2.2。(NAND) © 2001-2006年 レッドハット社 [ 0.071346] 9p: v9fs 9p2000ファイルシステムサポートのインストール [ 0.100048] ジッターエントロピー:ホストが要件に準拠していないため初期化失敗:9 [ 0.100055] キータイプ非対称登録 [ 0.100059] 非対称キーパーサー 'x509' 登録済み [ 0.100104] ブロック層 SCSI ジェネリック(BSG)ドライバーバージョン0.4 ロード(メジャー246) [ 0.100110] IOスケジューラーMQ-期限登録済み [ 0.100114] IO スケジューラー カイバー登録 [ 0.100139] IOスケジューラーBFQ登録済み [ 0.115771] IMX-SDMA 30BD0000.DMA-コントローラー:imx/sdma/sdma-imx7d.binの直接ファームウェアロードがエラー-2で失敗しました [ 0.115787] imx-sdma 30bd0000.dma-コントローラ:imx/sdma/sdma-imx7d.bin のsysfsフォールバックにフォールバックします [ 0.117292] mxs-dma 33000000.dma-apbh:初期化 [ 0.118069] SoC: i.MX8MPリビジョン1.1 [ 0.118477] バス周波数ドライバモジュールのロード完了 [ 0.135536] シリアル:8250/16550 ドライバ、4ポート、IRQ共有有効 [ 0.138454] 30880000.serial:ttymxc2 (MMIO 0x30880000、irq = 16、base_baud = 5000000) は IMX です [ 0.138703] シリアル serial0: tty ポート ttymxc2 が登録されました [ 0.139315] 30890000.serial:ttymxc1 は MMIO 0x30890000(irq = 17、base_baud = 1500000)において IMX です。 [ 0.139350] Printk: レガシーコンソール [ttymxc1] 有効化 [ 1.222791] ループ:モジュールロード完了 [ 1.227149] of_reserved_mem_lookup() NULL を返しました [ 1.237919] tun: Universal TUN/TAPデバイスドライバ、1.6 [ 1.244863] Sky2: ドライバーバージョン1.30 [ 1.249061] USBCORE: 登録された新しいデバイスドライバ R8152-CFGセレクター [ 1.255367] USBコア:登録済みの新しいインターフェースドライバーR8152 [ 1.261230] VFIO - ユーザーレベルのメタドライバーバージョン:0.3 [ 1.271293] USBコア:登録済みの新しいインターフェースドライバーUAS [ 1.276669] USBコア:登録済みの新しいインターフェースドライバーUSBストレージ [ 1.282753] USBコア:新しいインターフェースドライバーを登録usbserial_generic [ 1.289312] usbserial: 汎用として登録されたUSBシリアルサポート [ 1.295346] USBCORE:登録済みの新しいインターフェースドライバー ftdi_sio [ 1.301121] usbserial: FTDI USB シリアルデバイスに登録されたUSBシリアルサポート [ 1.308467] USBコア:登録済みの新しいインターフェースドライバー usb_serial_simple [ 1.315022] usbserial: carelinkに登録されたUSBシリアルサポート [ 1.321145] USBシリアル:フラッシュローダーに登録されたUSBシリアルサポート [ 1.327526] usbserial: Funsoftに登録されたUSBシリアルサポート [ 1.333554] usbserial: Googleに登録されたUSBシリアルサポート [ 1.339503] usbserial: hp4xに登録されたUSBシリアルサポート [ 1.345284] usbserial: カウフマンに登録されたUSBシリアルサポート [ 1.351402] USBシリアル:USBシリアル対応 LibTransistorに登録 [ 1.357961] usbserial: USBシリアルサポート登録済み moto_modem [ 1.364256] usbserial: USBシリアルサポート登録済み motorola_tetra [ 1.370900] usbserial: Nokiaに登録されたUSBシリアルサポート [ 1.376765] usbserial: USBシリアルサポート登録済み novatel_gps [ 1.383149] usbserial: siemens_mpi に登録されたUSBシリアルサポート [ 1.389527] usbserial: suuntoに登録されたUSBシリアルサポート [ 1.395476] usbserial: vivopayに登録されたUSBシリアルサポート [ 1.401511] usbserial: zioに登録されたUSBシリアルサポート [ 1.407203] USBコア:新しいインターフェースドライバーが登録usb_ehset_test [ 1.413528] USBCORE:オンボードの新しいデバイスドライバー登録済み [ 1.422006] snvs_rtc 30370000.snvs:snvs-rtc-lp:rtc0として登録されました [ 1.428227] snvs_rtc 30370000.snvs:snvs-rtc-lp:システムクロックを1970-01-01T00:00:00 UTC(0)に設定 [ 1.437427] i2c_dev: i2c /dev ententry ドライバ [ 1.445729] Bluetooth: HCI UARTドライバ バージョン2.3 [ 1.450203 ] Bluetooth: HCI UARTプロトコルH4登録済み [ 1.455351] Bluetooth: HCI UARTプロトコルBCSP登録済み [ 1.460695] Bluetooth: HCI UARTプロトコルLL登録済み [ 1.465847] Bluetooth: HCI UARTプロトコルATH3K登録 [ 1.471280 Bluetooth: HCI UARTプロトコル 3線式(H5)登録済み [ 1.477642 Bluetooth: HCI UARTプロトコル Broadcom登録 [ 1.483333] Bluetooth: HCI UARTプロトコルQCA登録済み [ 1.488739] EDAC MC: ECCが有効化されていません [ 1.493561] sdhci:セキュア・デジタルホストコントローラーインターフェースドライバ [ 1.499762] SDHCI: 著作権(c) ピエール・オスマン [ 1.504580 Synopsys Designware マルチメディアカードインターフェースドライバ [ 1.511193] SDHCI-pltfm:SDHCIプラットフォームおよびOFドライバヘルパー [ 1.519372] ledtrig-cpu: CPUの活動を示すために登録 [ 1.526326] SMCCC: SOC_ID: ARCH_SOC_ID実装されていません、スキップ... [ 1.535249] ハードウェア性能:armv8_cortex_a53 PMUドライバで有効、7つのカウンターを利用可能 [ 1.545746] プラットフォームsoc@0:固定依存サイクル(/soc@0/bus@30000000/efuse@30350000 [ 1.548948] mmc2: 30b60000.mmc 上のSDHCIコントローラー [30b60000.mmc]ADMAの使用 [ 1.555377] 被依頼者:導管法のプロービング。 [ 1.565851] OPEE:API UIDの不一致 [ 1.569678] optee: Probe of firmware:optee エラー -22 で失敗 [ 1.576620 ] NET: 登録PF_LLCプロトコルファミリ [ 1.581492] U32 分類器 [ 1.584247] 入力デバイスチェックオン [ 1.587910] アクション構成 [ 1.591634] NET:登録PF_INET6プロトコルファミリ [ 1.598148] IPv6によるセグメントルーティング [ 1.601891] IPv6を用いた現地OAM(IOAM) [ 1.605875] NET: 登録済みPF_PACKETプロトコルファミリ [ 1.610955] ブリッジ:ARP/IP/IPv6Tablesによるフィルタリングは、デフォルトでは利用できません。必要ならスクリプトを更新してbr_netfilterを読み込んでください。 [ 1.625927] Bluetooth: RFCOMM TTYレイヤーの初期化 [ 1.630834] Bluetooth:RFCOMMソケット層の初期化 [ 1.634392 ] MMC2:新しいHS400強化ストロボMMCカード アドレス0001 [ 1.636001] Bluetooth: RFCOMM バージョン 1.11 [ 1.642888 ] mmcblk2: mmc2:0001 064G90 58.2 GiB [ 1.646098] Bluetooth: BNEP(イーサネットエミュレーション) バージョン1.3 [ 1.653585] MMCBLK2: P1 P2 P3 [ 1.655851] Bluetooth: BNEPフィルター: プロトコルマルチキャスト [ 1.661320 ] mmcblk2boot0: mmc2:0001 064G90 8.00 MiB [ 1.664139] Bluetooth:BNEPソケット層の初期化 [ 1.670589 ] mmcblk2boot1: mmc2:0001 064G90 8.00 MiB [ 1.674997] 8021q: 802.1Q VLAN サポート v1.8 [ 1.680430 ] mmcblk2rpmb: mmc2:0001 064G90 16.0 MiB, chardev (238:0) [ 1.683109] lib80211:IEEE802.11ドライバーの共通ルーチン [ 1.695071] 9pnet: 9P2000サポートのインストール [ 1.699490 登録キータイプdns_resolver [ 1.704490] NET: 登録プロトコルファミリー PF_VSOCK [ 1.719723] 登録タスク統計 バージョン1 [ 1.723967] コンパイルされたX.509証明書の読み込み [ 1.751680] GPIO gpiochip0: GPIOベースの静的割り当ては廃止されました。動的割り当てを使用してください。 [ 1.762305] gpio gpiochip1: GPIO ベースの静的割り当ては非推奨です。動的割り当てを使用してください。 [ 1.772790] gpio gpiochip2: GPIO ベースの静的割り当ては非推奨です。動的割り当てを使用してください。 [ 1.783311] gpio gpiochip3: GPIO ベースの静的割り当ては非推奨です。動的割り当てを使用してください。 [ 1.793861] gpio gpiochip4: GPIO ベースの静的割り当ては非推奨です。動的割り当てを使用してください。 [ 1.806692] i2c i2c-0: IMX I2Cアダプタが登録されました [ 1.813480] rtc-rx8111 2-0032: rtc1として登録されました [ 1.820041] ina238 2-0043: 電力モニタ ina237 (Rshunt = 50000 uΩ、ゲイン = 4) [ 1.821839] nxp-pca9450 0-0025: pca9450bc がプローブされました。 [ 1.827481] i2c i2c-2: IMX I2Cアダプタが登録されました [ 1.869694] usb251xb 3-002c: ハブの設定が成功しました。 [ 1.875553] usb251xb 3-002c: ハブのプローブに成功しました [ 1.880583] i2c i2c-3: IMX I2Cアダプタが登録されました [ 1.885922] imx8mq-usb-phy 381f0040.usb-phy:電源Vbusが見つかりません。ダミーレギュレータを使用します。 [ 1.894643] imx8mq-usb-phy 382f0040.usb-phy:電源Vbusが見つかりません。ダミーレギュレータを使用します。 [ 1.912708] 30a60000.serial:ttymxc3はMMIO 0x30a60000(irq = 199、base_baud = 1500000)においてIMXです [ 1.922917] IMX-DWMAC 30bf0000.イーサネット:IRQ eth_lpi見つかりません [ 1.929740] imx-dwmac 30bf0000.イーサネット:ユーザーID:0x10、Synopsys ID:0x51 [ 1.936555] IMX-DWMAC 30bf0000.イーサネット:DWMAC4/5 [ 1.941361] imx-dwmac 30bf0000.イーサネット:DMAハードウェア機能レジスタのサポート [ 1.948509] IMX-DWMAC 30bf0000.イーサネット:RXチェックサムオフロードエンジンのサポート [ 1.955650] IMX-DWMAC 30bf0000.イーサネット:TXチェックサム挿入のサポート [ 1.962359] IMX-DWMAC 30bf0000.イーサネット:ウェイクアップ・オン・ラン支援 [ 1.968520] IMX-DWMAC 30bf0000.イーサネット:ハードウェアウォッチドッグタイマーによるRX軽減を有効にする [ 1.976199] IMX-DWMAC 30bf0000.イーサネット:デバイスMACアドレス2a:c5:99:84:66:bb [ 1.983350] IMX-DWMAC 30bf0000.イーサネット:有効化されたL3L4フローTC(エントリ=8) [ 1.990152] imx-dwmac 30bf0000.イーサネット:有効化されたRFSフローTC(エントリ=10) [ 1.996965] IMX-DWMAC 30bf0000.イーサネット:ハードウェアTCの有効化(エントリ=256、 max_off=256) [ 2.004554] imx-dwmac 30bf0000.イーサネット:34/40ビットDMAホスト/デバイス幅の使用 [ 2.158192 Realtek-MDIO STMMAC-1:00:RTL8363NBスイッチを発見 [ 2.164168 Realtek-MDIO STMMAC-1:00: スイッチを登録できません ret = -517 [ 2.175037] XHCi-HCD.1.auto:xHCIホストコントローラ [ 2.180572] XHCi-HCD.1.auto:新しいUSBバスが登録され、バス番号1が割り当てられました [ 2.188568] XHCi-HCD.1.auto:HCCパラメータ0x0220fe6d HCIバージョン0x110クワーク0x000000a001000010 [ 2.198006 ] XHCI-HCD、XHCI-HCD.1.オート:IRQ 203、IO MEM 0x38200000 [ 2.204153] XHCI-HCD-HCD.1.auto:xHCIホストコントローラ [ 2.209668] XHCi-HCD、XHCI-HCD.1.auto:新しいUSBバスが登録され、バス番号2が割り当てられました [ 2.217339] XHCi-HCD.1.auto:ホストはUSB 3.0 SuperSpeedに対応しています [ 2.226380] ハブ 1-0:1.0:USBハブが見つかりました [ 2.230477] ハブ 1-0:1.0: 1つのポートが検出されました [ 2.236611] usb usb2: このホストの LPM のアルゴリズムがわからないため、LPM を無効にします。 [ 2.246489] ハブ 2-0:1.0:USBハブが見つかりました [ 2.250581] ハブ 2-0:1.0: 1つのポートが検出されました [ 2.256296] imx-cpufreq-dt imx-cpufreq-dt: CPU スピード グレード 5 mkt セグメント 0 supported-hw 0x20 0x1 [ 2.268964] sdhci-esdhc-imx 30b40000.mmc:mmc-pwrseq を割り当てました [ 2.269069] sdhci-esdhc-imx 30b50000.mmc:CD GPIOを入手しました [ 2.313534] mmc1: 30b50000.mmc 上のSDHCIコントローラ [30b50000.mmc]ADMAの使用 [ 2.413613] mmc0: 30b40000.mmc 上のSDHCIコントローラ [30b40000.mmc]ADMAの使用 [ 2.414283 Realtek-MDIO STMMAC-1:00:RTL8363NBスイッチを発見 [ 2.492421] USB 1-1:XHCI-HCDを使用した新しい高速USBデバイス番号2 [ 2.540131] MMC0:アドレス0001に新しい超高速SDR104 SDIOカード [ 2.600919] Realtek-MDIO STMMAC-1:00: 固定/RGMIIリンクモードの設定 [ 2.610450] realtek-mdio stmmac-1:00: リンクが稼働中 - 1Gbps/フル - フロー制御オフ [ 2.644563] realtek-mdio stmmac-1:00 eth1 (未初期化): PHY [dsa-0.0:01]ドライバー [Generic PHY] (irq=POLL) [ 2.684441] realtek-mdio stmmac-1:00 eth2(初期化されていない):PHY [dsa-0.0:03]ドライバー [Generic PHY] (irq=POLL) [ 2.699335] DSA: ツリー0セットアップ [ 2.704695] 入力:GPIO-keys//device/platform/gpio-keys/input/input0 [ 2.704785] ハブ 1-1:1.0:USBハブが見つかった [ 2.712031] 入力:cpu_inputs /devices/platform/cpu_inputs/input/input1 [ 2.715286] ハブ 1-1:1.0:4ポート検出 [ 2.722488] cfg80211: 規制データベース用のコンパイル済みX.509証明書の読み込み [ 2.734966] 装載済み X.509 cert 'sforshee: 00b28ddf47aef9cea7' [ 2.741369] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600' [ 2.748657] clk: 未使用時計を無効化 [ 2.752652] プラットフォーム regulatory.0:regulatory.dbの直接ファームウェアロードはエラー-2で失敗しました。 [ 2.761287] プラットフォーム regulatory.0:regulatory.db の sysfs フォールバックにフォールバックします [ 2.865310] ハブ 1-1:1.0:USBハブが見つかりました [ 2.869427] ハブ 1-1:1.0: 4つのポートが検出されました [ 3.269517] EXT4-fs (mmcblk2p3): リカバリ完了 [ 3.275227] EXT4-fs (mmcblk2p3): ファイルシステム 057d8de8-a7e7-4440-9fea-c9670c0c5df9 を順序付きデータモードで読み書き可能にマウントしました。クォータモード:なし。 [ 3.287379] VFS: デバイス 179:3 にルート (ext4 ファイルシステム) をマウントしました。 [ 3.294319] devtmpfs: マウントされました [ 3.298268] 未使用のカーネルメモリを解放中: 3520K [ 3.302934] /sbin/init を init プロセスとして実行 [ 3.423469] systemd[1]: システム時刻がビルド時刻より前なので、クロックを進めます。 [ 3.450897] systemd[1]: systemd 252.39-1~deb12u2 がシステムモードで実行されています (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) [ 3.483986] systemd[1]: アーキテクチャ arm64 を検出しました。 Debian GNU/Linux 12(ブックワーム)へようこそ! [ 3.506158] systemd[1]: ホスト名が に設定されました。 [ 3.512764] systemd[1]: 乱数生成器からマシンIDを初期化しています。 [ 3.558947] systemd[1]: memfd_create() が MFD_EXEC または MFD_NOEXEC_SEAL が設定されていない状態で呼び出されました [ 3.931119] systemd[1]: デフォルトターゲット graphical.target の開始ジョブをキューに追加しました。 [ 3.968011] systemd[1]: スライス system-getty.slice を作成しました - スライス /system/getty。 [ OK ] スライス system-getty.slice を作成しました - スライス /system/getty。 [ 3.993796] systemd[1]: スライス system-modprobe.slice を作成しました - スライス /system/modprobe。 [ OK ] スライス system-modpr…lice を作成しました - スライス /system/modprobe。 [ 4.022309] systemd[1]: system-serial\x2dgetty.slice - スライス /system/serial-gettyを生成しました。 [ OK ]Created slice system-seria... - Slice /system/serial-getty. [ 4.049678] systemd[1]: system-systemd\x2dfsck.slice - スライス /system/systemd-fsck を作成した。 [ OK ]スライス system-syste を作成しました... - スライス /system/systemd-fsck。 [ 4.077353] systemd[1]: ユーザーおよびセッションスライスを user.slice 作成しました。 [ OK ]ユーザーとセッションスライスを生成しました。 [ 4.100497] systemd[1]: systemd-ask-password-console.path を開始しました - パスワード要求をコンソールディレクトリ監視にディスパッチします。 [ OK ] コンソールディレクトリ監視への systemd-ask-passwo…quests を開始しました。 [ 4.128453] systemd[1]: systemd-ask-password-wall.path を開始しました - パスワード要求をウォールディレクトリ監視に転送します。 [ OK ] systemd-ask-passwo を開始しました… Wall ディレクトリ監視へのリクエスト。 [ 4.156396] systemd[1]: proc-sys-fs-binfmt_misc.automount - 条件チェックが満たされなかったため、任意の実行可能ファイル形式ファイルシステム自動マウントポイントがスキップされました (ConditionPathExists=/proc/sys/fs/binfmt_misc)。 [ 4.175866] systemd[1]: デバイス dev-mmcblk2p1.device - /dev/mmcblk2p1... を待機しています デバイス dev-mmcblk2p1.device - /dev/mmcblk2p1 を待機しています... [ 4.200472] systemd[1]: デバイス dev-ttymxc1.device - /dev/ttymxc1 を待機しています... デバイス dev-ttymxc1.device - /dev/ttymxc1 を待機しています... [ 4.224224] systemd[1]: ターゲット cryptsetup.target - Local Encrypted Volumes に到達しました。 [ OK ] ターゲット cryptsetup.…get に到達しました- ローカル暗号化ボリューム。 [ 4.248610] systemd[1]: ターゲット integritysetup.target - Local Integrity Protected Volumes に到達しました。 [ OK ] 目標の整合性に到達しました…ローカル整合性保護ボリューム。 [ 4.276289] systemd[1]: ターゲット paths.target - Path Units に到達しました。 [ OK ] ターゲット paths.target - パスユニットに到達しました。 [ 4.296264] systemd[1]: ターゲット remote-fs.target - Remote File Systems に到達しました。 [ OK ] ターゲット remote-fs.target - リモートファイルシステムに到達しました。 [ 4.320247] systemd[1]: ターゲット slices.target - Slice Units に到達しました。 [ OK ] 目標スライス数に到達しました。target - スライスユニット。 [ 4.340224] systemd[1]: ターゲット swap.target - Swaps に到達しました。 [ OK ] ターゲット swap.target - Swaps に到達しました。 [ 4.360269] systemd[1]: ターゲット veritysetup.target - Local Verity Protected Volumes に到達しました。 [ OK ] ターゲット veritysetup に到達しました… - ローカル Verity 保護ボリューム。 [ 4.384758] systemd[1]: systemd-fsckd.socket でリッスンしています - fsck から fsckd への通信ソケット。 [ OK ] systemd-fsckd…sck から fsckd への通信ソケットをリッスンしています。 [ 4.412536] systemd[1]: systemd-initctl.socket - initctl 互換性名前付きパイプでリッスンしています。 [ OK ] systemd-initc でリッスンしています… initctl 互換性名前付きパイプ。 [ 4.441749] systemd[1]: systemd-journald-audit.socket - Journal Audit Socket でリッスンしています。 [ OK ] systemd-journ…socket - Journal Audit Socket でリッスンしています。 [ 4.468740] systemd[1]: systemd-journald-dev-log.socket でリッスンしています - ジャーナルソケット (/dev/log)。 [ OK ] systemd-journ…t - Journal Socket (/dev/log) でリッスンしています。 [ 4.496878] systemd[1]: systemd-journald.socket - Journal Socket でリッスンしています。 [ OK ] systemd-journald.socket - ジャーナルソケットでリッスンしています。 [ 4.520946] systemd[1]: systemd-networkd.socket - ネットワークサービス Netlink ソケットでリッスンしています。 [ OK ] systemd-netwo でリッスンしています… - ネットワーク サービス Netlink ソケット。 [ 4.557127] systemd[1]: systemd-udevd-control.socket - udev コントロール ソケットでリッスンしています。 [ OK ] systemd-udevd…ソケットでリッスンしています- udev コントロールソケット。 [ 4.584722] systemd[1]: systemd-udevd-kernel.socket - udev カーネル ソケットでリッスンします。 [ OK ] systemd-udevd…l.socket でリッスンしています- udevカーネルソケット。 [ 4.624665] systemd[1]: dev-hugepages.mount をマウントしています - Huge Pages File System... dev-hugepages.mount をマウントしています - Huge Pages ファイルシステム... [ 4.651859] systemd[1]: dev-mqueue.mount - POSIX メッセージキューファイルシステムをマウントしています... dev-mqueue.mountをマウントしています▒▒POSIXメッセージキューファイルシステム... [ 4.680049] systemd[1]: sys-kernel-debug.mount - カーネルデバッグファイルシステムをマウントしています... sys-kernel-debug.… - カーネルデバッグファイルシステムをマウントしています... [ 4.709270] systemd[1]: sys-kernel-tracing.mount - カーネルトレースファイルシステムは、条件チェックが満たされなかったためスキップされました (ConditionPathExists=/sys/kernel/tracing)。 [ 4.724518] systemd[1]: kmod-static-nodes.service - 条件チェックが満たされなかったため、静的デバイスノードのリストの作成がスキップされました (ConditionFileNotEmpty=/lib/modules/6.6.52-rt43-gd377c9049508-dirty/modules.devname)。 [ 4.757545] systemd[1]: [email protected] を開始しています - カーネルモジュール configfs をロードしています... modprobe@configfs…m を起動しています - カーネルモジュール configfs をロードしています... [ 4.788352] systemd[1]: modprobe@dm_mod.service を開始しています - カーネルモジュール dm_mod をロードしています... modprobe@dm_mod.sを開始しています…[0m- ロードカーネルモジュールdm_mod... [ 4.816731] systemd[1]: [email protected] - カーネルモジュールDRMをロード開始... [email protected] 開始 - カーネルモジュールDRMをロード... [ 4.848481] systemd[1]: modprobe@efi_pstore.service - カーネルモジュールefi_pstoreをロード... modprobe@efi_psto開始...- カーネルモジュールefi_pstoreをロード... [ 4.876748] systemd[1]: [email protected] 開始 - カーネルモジュールのヒューズをロード... modprobe@fuse、始めて...e - カーネルモジュールヒューズをロード... [ 4.904963] systemd[1]: [email protected] - カーネルモジュールループのロード開始... [email protected]から始めて...e - ロードカーネルモジュールループ... [ 4.928580] systemd[1]: systemd-fsck-root.service - ルートデバイス上のファイルシステムチェックは条件チェックが満たされなかったためスキップされました(ConditionPathIsReadWrite=!/)。 [ 4.968886] systemd[1]: systemd-journald.service - ジャーナルサービス... systemd-journald.service - ジャーナルサービス... [ 5.004486] systemd[1]: systemd-modules-load.service - カーネルモジュールを起動中... systemd-modules-l...rvice - カーネルモジュールをロード... [ 5.031531] systemd[1]: systemd-network-generator.service を起動中 - カーネルコマンドラインからネットワークユニットを生成... systemd-network-gを起動中...カーネルコマンドラインのユニット... [ 5.084818] systemd[1]: systemd-remount-fs.service - ルートおよびカーネルファイルシステムの再マウントを開始する... システムドリマウント開始中...ルートおよびカーネルファイルシステム... [ 5.115743] systemd[1]: systemd-udev-trigger.service - コールドプラグ すべてのudevデバイス... systemd-udev-trigを起動中...[0m - コールドプラグ すべてのudev デバイス... [ 5.136505] EXT4-fs(MMCBLK2P3):再装着 057D8DE8-A7E7-4440-9FEA-C9670C0C5DF9 R/W。クォータモード:なし。 [ 5.153130] systemd[1]: systemd-journald.service - ジャーナルサービスを開始しました。 [ OK ] systemd-journald.service - ジャーナルサービスを開始しました。 [ OK ] dev-hugepages.mount - Huge Pages ファイルシステムをマウントしました。 [ OK ] dev-mqueue.mount をマウントしました▒▒-POSIXメッセージキューファイルシステム。 [ OK ]マウントされたsys-kernel-debug.m...nt - カーネルデバッグファイルシステム。 [ OK ] modprobe@configfs が完了しました…[0m - カーネルモジュール configfs をロードします。 [ OK ] modprobe@dm_mod.s…e が完了しました- カーネルモジュール dm_mod をロードします。 [ OK ] [email protected] - カーネルモジュール drm のロードが完了しました。 [ OK ] modprobe@efi_psto…m - カーネルモジュール efi_pstore のロードが完了しました。 [ OK ] [email protected] - カーネルモジュール fuse のロードが完了しました。 [ OK ] [email protected] - Load Kernel Module loop が完了しました。 [ OK ] systemd-modules-l…service - カーネルモジュールのロードが完了しました。 [ OK ] カーネルコマンドラインから systemd-network-g…rk ユニットの処理が完了しました。 [ OK ] systemd-remount-f…ルートファイルシステムとカーネルファイルシステムのマウントが完了しました。 [ OK ] ターゲット network-pre…get に到達しました - ネットワークの準備。 sys-kernel-config…カーネル設定ファイルシステムをマウントしています… systemd-journal-f…hジャーナルを永続ストレージに起動しています… [ 5.501074] systemd-journald[137]: ランタイムジャーナルをフラッシュするためのクライアント要求を受信しました。 systemd-random-se…ice を起動しています - 乱数シードの読み込み/保存... systemd-sysctl.seを起動しています…ce- カーネル変数の適用... systemd-sysuserを起動します...rvice - システムユーザーの作成... [ OK ]systemd-udev-trigを終えた...e - Coldplug すべてのudevデバイス。 [ OK ] sys-kernel-config をマウントしました。カーネル設定ファイルシステム。 [ OK ] systemd-journal-f…ジャーナルを永続ストレージに書き込む処理が完了しました。 [ OK ] systemd-sysctl.service - カーネル変数の適用が完了しました。 ifupdown-pre.serv の同期を開始しています…起動してIFを起動して上下... [ OK ]systemd-sysusers.service - システムユーザー作成を完了。 systemd-tmpfiles-…ate の /dev 内の静的デバイスノードを起動しています... [ OK ] systemd-tmpfiles-…/dev に静的デバイスノードを作成する処理が完了しました。 [ OK ] ローカルファイルシステムの修復のため、ターゲット local-fs-pr に到達しました。 [ OK ] ターゲット local-fs.target - ローカルファイルシステムに到達しました。 systemd-tmpファイルの起動中-...システムファイルとディレクトリ... スタート中systemd-udevd.ser...デバイスイベント情報とファイルのためのger... [ OK ]systemd-tmpファイルは完了しました-...eateシステムファイルおよびディレクトリ。 systemd-timesyncd開始中... - ネットワーク時間同期... systemd-update-utを起動中...UTMPでのRDシステムブート/シャットダウン... [ OK ]systemd-update-ut...UTMPでのコードシステムの起動/シャットダウン。 [ OK ]systemd-udevd.servを起動しました...デバイスイベントやファイルにはイベント情報。 systemd-networkd.ice を起動しています - ネットワーク設定... [ OK ] デバイス dev-ttymxc1.device - /dev/ttymxc1 が見つかりました。 [ OK ] systemd-timesyncd を開始しました。…0m - ネットワーク時刻同期。 [ OK ] ターゲット sysinit.target - システム初期化に到達しました。 [ OK ] systemd-tmpfiles-c を開始しました… 一時ディレクトリのクリーンアップ。 [ OK ] 目標時刻 time-set.target に到達しました - システム時刻設定。 [ OK ] apt-daily.timer を開始しました - 毎日の apt ダウンロード アクティビティ。 [OK] apt-daily-upgradeを開始しました。適切なアップグレードとクリーンな活動。 [ OK ] dpkg-db-backup.tim を開始しました…dpkgデータベースのデイリーバックアップタイマー。 [ OK ] e2scrub_all.timer▒▒etadata を開始しましたすべてのファイルシステムをチェックします。 [ OK ] fstrim.timer を開始しました - 未使用のブロックを週に一度破棄します。 [ OK ] logrotate.timer を開始しました - ログファイルの毎日のローテーション。 [ OK ] man-db.timer を開始しました - man-db の毎日の再生成。 [ OK ] sysstat-collect.ti を開始しました…会計ツールは10分ごとに実行されます。 [ OK ] sysstat-summary.ti…を開始しました昨日のプロセス会計。 [ OK ] 目標の timers.target - タイマーユニットに到達しました。 [ OK ] dbus.socket▒▒でリッスン中D-Busシステムメッセージバスソケット。 [ OK ] ターゲットに到達しました[ 6.421751] cfg80211: regulatory.db の読み込みに失敗しました t sockets.target - ソケットユニット。 [ OK ] ターゲット basic.target - 基本システムに到達しました。 [ OK ] Started cron.service -…kground program プロセッシング daemon. dbus.service - D-Bus システムメッセージバス開始中... [ 6.524255] IMX-SDMA 30BD0000.DMA-コントローラー:imx/sdma/sdma-imx7d.bin のファームウェアの直接ロードがエラー -2 で失敗しました [ 6.537384] IMX-SDMA 30BD0000.DMA-コントローラー:sysfsへのフォールバック:imx/sdma/sdma-imx7d.bin [ OK ]firmwared.service - Linux Firmware Loader Daemonを起動しました。 [ 6.563260] IMX-SDMA 30BD0000.DMA-コントローラー:外部ファームウェアが見つかりませんでした。ROMファームウェアを使用します。 kexec-load.servic を起動しています…B:kexec...でカーネルイメージを読み込んでください。 lm-センサ.servicを起動中...izeハードウェア、センサ... platcfg.service 開始中▒▒rさまざまなNXP i.MX/LS プラットフォーム... [ OK ]開始したseatd.service - シート管理デーモン。 [ OK ] strongswan-starter…Ev1/IKEv2デーモンをipsec.confを使用して起動しました。 sysstat.service を開始しています - システムアクティビティログをリセットします... systemd-logind.seを起動しています…ice- ユーザーログインマネジメント... [ OK ] Started systemd-networkd.service - ネットワーク設定を開始しました。 [ OK ]upup-down.serv...ifupdown の起動を同期します。 [ OK ] e2scrub_reap.serv…ine が完了しましたext4メタデータチェックスナップショット。 [ OK ]sysstat.service を完了 - システムアクティビティログのリセット。 [ OK ]lm-センサ.servicを終えました...アライゼハードウェア監視センサ。 [ OK ] kexec-load.service を開始しました…LSB:kexecを使ってカーネルイメージをロードする。 [ OK ] デバイス dev-mmcblk2p1.device - /dev/mmcblk2p1 が見つかりました。 [ OK ] ターゲットの usb-gadget に到達しました。- ハードウェアで起動するUSBガジェット。 networking.service 起動中 - ネットワークインターフェースを起動... systemd-fsck@dev-...開始/dev/mmcblk2p1のシステムチェック... [ OK ]systemd-fsckd.servを起動しました...テムデーモンの状態を確認してください。 [ OK ] /dev/mmcblk2p1 の systemd-fsck@dev-…le システムチェックが完了しました。 [ 7.297245] imx-dwmac 30bf0000.イーサネット eth0: Register MEM_TYPE_PAGE_POOL RxQ-0 [ 7.305583] imx-dwmac 30bf0000.イーサネット eth0: セーフティ機能のサポートなし [ 7.312850] imx-dwmac 30bf0000.イーサネット eth0: IEEE 1588-2008 Advanced Timestamp supported Mounting boot.mount - /boot... [ 7.324878] imx-dwmac 30bf0000.イーサネット eth0: registered PTP clock [ 7.336555] imx-dwmac 30bf0000.イーサネット eth0: FPE workqueue start [ 7.343570] imx-dwmac 30bf0000.イーサネット eth0: configuring for fixed/rgmii-id link mode [ 7.353100] imx-dwmac 30bf0000.イーサネット eth0: Link is Up - 1Gbps/Full - flow control off [ 7.353244] EXT4-fs (mmcblk2p1): mounted filesystem 45d36d6d-da2c-4fa0-ae4f-46086176bf89 r/w with ordered data mode. クォータモード:なし。 [ 7.354853] 8021q: デバイスeth0のハードウェアフィルタにVLAN 0を追加 [ OK ] boot.mount - /boot をマウントしました。 [ 7.484902 Realtek-MDIO STMMAC-1:00 ETH1: PHY/GMII リンクモードの設定 [ 7.499221] 8021q: eth1 デバイス上のハードウェアフィルターにVLAN 0を追加する [ 7.722835] Realtek-MDIO STMMAC-1:00 ETH2: PHY/GMIIリンクモードの設定 [ 7.758421] 8021q: eth2のデバイス上のハードウェアフィルターにVLAN 0を追加する [ OK ]networking.service を完了 - ネットワークインターフェースを上げる。 [ 7.988116] ランダム:CRNG init完了 [ OK ]systemd-random-seを終えました...rvice - ランダムシードのロード/セーブ。 [ OK ]dbus.service - D-Bus システムメッセージバスを開始しました。 wpa_supplicant.service 開始 - WPAの請願者... [ OK ]systemd-logind.service - ユーザーログイン マネジメントを開始しました。 [ OK ]wpa_supplicant.serviceを始めました - WPAの請求者。 [ OK ]目標に到達しました network.target - ネットワーク。 mosquitto.service - Mosquitto MQTT Brokerを起動中... ssh.service - OpenBSD Secure Shellサーバーを起動中... Starting systemd-hostnamed.service - Hostname Service... systemd-user-sessを起動中...vice - ユーザーセッションを許可... [ OK ]systemd-user-sessを終えました...ervice - ユーザーセッションを許可する。 [ OK ] [email protected] - Getty on tty1 を開始しました。 [ OK ] serial-getty@ttymx…ice - Serial Getty を ttymxc1 で開始しました。 [ OK ] ターゲット getty.target - ログインプロンプトに到達しました。 [ OK ] systemd-hostnamed.service - ホスト名サービスを開始しました。 [ OK ] ssh.service - OpenBSD Secure Shellサーバーを開始しました。 [ OK ] mosquitto.service - Mosquitto MQTT ブローカーを開始しました。 [ OK ]ターゲットに到達しました multi-user.target - マルチユーザーシステム。 [ OK ]ターゲットに到達しました graphical.target - グラフィカルインターフェース。 systemd-update-ut を起動しています… UTMP でランレベルの変更を記録します… [ OK ] platcfg.service▒▒が完了しましたさまざまなNXP i.MX/LS プラットフォーム。 [ OK ] systemd-update-ut が完了しました… - UTMP でランレベルの変更を記録しました。 Debian GNU/Linux 12 imx8mpevk ttymxc1 NXP Linux SDK 2506 Debianサーバー(NXP特有のハードウェアアクセラレーションで最適化) imx8mpevk login: root パスワード: Linux imx8mpevk 6.6.52-rt43-gd377c9049508-dirty#1 SMP PREEMPT 2026年7月2日(木) 11:19:58 CST aarch64 Debian GNU/Linuxシステムに含まれるプログラムはフリーソフトウェアであり、 各プログラムの正確な分布項は以下の通りです。 /usr/share/doc/*/copyright の個別ファイル。 Debian GNU/Linuxには、保証が全くありません 適用法で許可されている。 root@imx8mpevk:~# root@imx8mpevk:~# modprobe moal mod_para=nxp/wifi_mod_para.conf [ 27.658951] mlan: ツリー外モジュールのロードによりカーネルが汚染されます。 [ 27.688908] wlan: MWLANドライバのロード [ 27.693279] WLAN: バスドライバへ登録... [ 27.697621] vendor=0x02DF device=0x9149 class=0 function=1 [ 27.703270] モアルハンドル操作を取り付けて、カードインターフェースタイプ:0x105 [ 27.709133] モジュールパラメータからRPSを0に設定 [ 27.713466] SD8987: usr cfg からの init モジュールパラメータ [ 27.718305 ] card_type: SD8987、設定ブロック: 0 [ 27.722765] cfg80211_wext=0xf [ 27.725757] max_vir_bss=1 [ 27.728391] cal_data_cfg=なし [ 27.731362 ps_mode = 1 [ 27.733821 auto_ds = 1 [ 27.736295] host_mlme=enable [ 27.739186] fw_name=NXP/sdiouart8987_combo_v0.bin [ 27.743918] SDIO: max_segs=128 max_seg_size=65535 [ 27.748647] rx_work=1 cpu_num=4 [ 27.751795] moal_recv_amsdu_packet を有効にする [ 27.755832] MLANアダプタ操作をアタッチします。card_typeは0x105です。 [ 27.762044] wlan: TX SG モードを有効にする [ 27.765551] wlan: RX SG モードを有効にする [ 27.776176] ファームウェアのリクエスト: nxp/sdiouart8987_combo_v0.bin [ 28.073628] Wlan: ファームウェアのダウンロードが完了しました。ファームウェアの長さ=626584、ダウンロード済み617556 [ 28.944747] WLAN FW がアクティブです [ 28.947734] on_time は 28943658375 です [ 29.003401] VDLLイメージ: 長さ=9028 [29.006743] FWの国コードWWはUSと一致しません [ 29.012026] fw_cap_info=0x181d6f03、dev_cap_mask=0xffffffff [ 29.017672] max_p2p_conn = 8、max_sta_conn = 8 [ 29.022438] SDIO rx aggr: 1 block_size=512 [ 29.026600] wlan: RX SG モードを有効にする [ 29.030117] mpa_rx_buf_size=65280 [ 29.054744] NXP 802.11アダプタmlan0を登録 [ 29.061163] NXP 802.11アダプタuap0を登録 [ 29.069437] NXP 802.11アダプタwfd0を登録 [ 29.073887] wlan: バージョン = SD8987----16.92.21.p142.3-MM6X16505.p4-GPL-(FP92) [ 29.083234] wlan: バス運転手への登録完了 [ 29.088229] wlan: ドライバのロードが正常に完了 root@imx8mpevk:~# [ 29.430504] WLAN: mlan0 スキャン開始 [ 33.741685] WLAN: スキャン完了: スキャン済み APカウント=6 root@imx8mpevk:~# root@imx8mpevk:~# mod[ 38.754412] wlan: mlan0 スキャン開始 プローブ btnxpuart [ 43.549431] btnxpuart serial0-0: ipgクロック有効、レート=80000000 [ 43.555634] btnxpuart serial0-0: クロックごとの有効、レート=80000000 root@imx8mpevk:~# [ 43.743746] wlan: スキャン完了: スキャンしたAP数=14 [ 44.580103] Bluetooth: hci0: FW は既に実行中です。 [ 46.628430] Bluetooth: hci0: オペコード 0x0c03 が失敗しました: -110 [ 48.756247] wlan: mlan0 スキャン開始 [ 53.744943] wlan: スキャン完了: スキャンしたAP数=16 [ 53.753462] wlan: スキャン開始のスケジュールを設定 Re: Bluetooth on i.MX8MP こんにちは@wanggg 現在使用している8MPボードはどれですか?ハードウェア接続を共有してもらえますか? よろしくお願いいたします。 ショーン Re: Bluetooth on i.MX8MP こんにちは、 @shaun_wu ハードウェアの問題は既に特定済みです。助けてくれてありがとう。
View full article
Cool Cove AC Features and Benefits You Should Know Cool Cove Staying comfortable indoors during warm weather is essential, whether you're working, relaxing, or sleeping. A compact and portable cooling device can make a noticeable difference without requiring permanent installation or taking up valuable space. Cool Cove AC is designed to offer a practical and convenient way to improve indoor comfort while fitting seamlessly into a variety of living and working environments. With its lightweight construction, user-friendly controls, and modern appearance, Cool Cove is an excellent option for those looking for a flexible cooling solution. Compact Design for Any Room One of the standout features of Cool Cove is its compact, space-saving design. Unlike larger cooling units that require significant floor space, Cool Cove AC is designed to fit comfortably on desks, bedside tables, shelves, or countertops. Its small footprint makes it suitable for apartments, dorm rooms, home offices, bedrooms, living rooms, and other indoor spaces where space may be limited. Cool Cove Because of its streamlined design, users can enjoy additional comfort without rearranging furniture or sacrificing valuable room. The compact size also allows the device to blend naturally into both small and large indoor settings.
View full article
S32DS activation code expired Hi,  My S32DS ARM Version 2018.R1 license has expired.  Could you please extend the license for me? Here is the code : EB6D-13A1-B079-08B8 Thank you so much. Re: S32DS activation code expired Hi, I have the same problem. Can you please extend my license as well. S32 Design Studio for ARM v2018 R1 Activation Code: FF6A-EDA4-CDF0-7186. Thanks Re: S32DS activation code expired Many thanks Peter, it works. Re: S32DS activation code expired Hello, The code you have posted is for ARMv2018. S32 Design Studio_2018R1 you have different code. So just to bu sure we have extended both for you. Your new keys are: 3071-183A-BD61-E8C0 18C0-96C0-44BB-F8E2 Best regards, Peter  
View full article
S32K312 ISELED NXPのエキスパートの方、こんにちは。S32K312NHT0MPAITはどの世代のISELEDに対応していますか?第1世代のみに対応しているのでしょうか?
View full article
i.MX95 Boot ROM does not fall back from eMMC Boot0 to Boot1 after AHAB container corruption Hello Experts, On the i.MX95, does the Boot ROM support automatic failover between eMMC Boot0 and Boot1 when the selected boot partition contains an invalid AHAB container? I programmed the same flash.bin into both Boot0 and Boot1. After setting BOOT_PARTITION_ENABLE = Boot0, I corrupted the first 4 KB of Boot0 (destroying the beginning of the AHAB container). The board reports: Boot stage: Primary Image set: 0 Parse seco container failed -14 SPL: failed to boot from all boot devices If I manually switch BOOT_PARTITION_ENABLE to Boot1, the board boots normally. Based on some older i.MX8 forum discussions, I expected the ROM to automatically try Boot1. Is automatic Boot0→Boot1 fallback supported on i.MX95? If so, what conditions trigger it? If not, what is the recommended redundancy mechanism for bootloader recovery? Steps for reproduction: Flash the same imx-boot-imx95-19x19-verdin-sd.bin-flash_all to eMMC Boot0 and Boot1. Following is the script that I have used to flash both banks of emmc (attached in attachments) Verify both partitions contain the same image. Set:   mmc partconf 0 0 1 0   (Boot0 selected) Corrupt the first 4 KB of Boot0:   dd if=/dev/zero of=/dev/mmcblk0boot0 bs=512 count=8 conv=fsync   Reboot. Observe:   U-Boot SPL 2025.04-g99518e6b6f20 (Feb 02 2026 - 05:52:54 +0000) SYS Boot reason: por, origin: -1, errid: -1 SYS shutdown reason: por, origin: -1, errid: -1 Normal Boot Trying to boot from MMC1 Boot stage: Primary Image set: 0, offset: 0x0 Parse seco container failed -14 Load image from MMC/SD 0x0 mmc_load_image_raw_sector: mmc block read error Error: -38 SPL: failed to boot from all boot devices ### ERROR ### Please RESET the board ###   Change PARTITION_CONFIG to Boot1:   mmc partconf 0 0 2 0   The board boots successfully from Boot1. In short, I would like to get clarification on the following  Does the i.MX95 Boot ROM support automatic eMMC Boot0↔Boot1 failover, or is the redundancy mechanism expected to be implemented differently (e.g., via image sets, software updates, or an alternate boot device)? BR, Arun Kumar Re: i.MX95 Boot ROM does not fall back from eMMC Boot0 to Boot1 after AHAB container corruption Thank you @ Zhiming_Liu, I would like to understand Under what conditions does the i.MX95 Boot ROM set boot_stage = Secondary for eMMC Boot0/Boot1? BR, Arun Kumar Re: i.MX95 Boot ROM does not fall back from eMMC Boot0 to Boot1 after AHAB container corruption Hi @arun16598  The i.MX95 support it, but need SPL support this feature. Based on what you've described, it appears that the version of U-Boot you're using does not include the following patch. LFU-890-1 imx: image-container: Support iMX95 and iMX94 secondary boot · nxp-imx/uboot-imx@02d75ab · GitHub Best Regards, Zhiming
View full article