Multi Source Translation Content

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

Multi Source Translation Content

讨论

排序依据:
[ABUSE] Post By: @JohnKlug / Board: imx-processors / Reported by: ozdazue ozdazue has reported the post Could not invoke dnf for external kernel module in Yocto kirkstone posted by @JohnKlug for the following reasons: Reason: Plagiarism Details: http://www.batshaw.qc.ca/fr/node/177"> http://shop.ls-s.ru/product/10115"> http://hr-life.ru/node/53789"> https://www.albatrosplus.ru/pharmacy-online-8"> https://new.roger24.de/pharmacy-online-1"> https://www.albatrosplus.ru/pharmacy-online-8"> https://museusvalenciapre.grupotecopy.es/en/node/3714"> https://www.itconnecta.es/pharmacy-online"> https://tylkoastronomia.pl/node/9909"> https://spdm.dambo.me/forums/miscellaneous/advertisement/pharmacy-online-2"> https://www.availcalendar.com/calendar/25585"> https://www.ccunitedway.org/pharmacy-online-2"> https://satto.vtranet.com/binh-luan-387"> https://www.torontopersians.com/ads/pharmacy-online-1"> http://ph-ed-plus.nspu.ru/article/17934"> https://masters.adminskiracing.com/node/413298"> https://www.jobwebby.com/domainasname-stockwell-services/pharmacy-online-1"> https://kmet.ru/reviews"> https://spdm.dambo.me/forums/miscellaneous/advertisement/pharmacy-online-2"> https://www.torontopersians.com/ads/pharmacy-online-1"> http://student.dolivanov.ru/content/pharmacy-online-10"> https://www.cableman.ru/node/84347"> https://cadel.ru/pharmacy-online-1"> https://darkmetalmush.net/history/pharmacy-online-24"> https://theanubianwar.com/node/6398"> http://www.gradspot.com/qa/pharmacy-online-3"> https://stage.cc.radiant.digital/node/3053"> http://hr-life.ru/node/53789"> https://www.vgame.ca/node/46828"> http://hr-life.ru/node/53789"> https://spdm.dambo.me/forums/miscellaneous/advertisement/pharmacy-online-2"> https://www.geofak85.ru/pharmacy-online-8"> http://hubram.cz/content/pharmacy-online-7"> https://www.onlyhomebuyers.com/for-sale-by-owner-homes/gu/29"> https://www.player1.app/team/post/733423506/1223"> https://rus.langnotes.ru/literature/pharmacy-online"> https://asafestival.com/de/node/3796"> http://xn--37-6kci4a9aahjr0a.xn--p1ai/pharmacy-online-ivanovo-9"> https://facultypage.com/node/467"> https://www.tripmayntra.com/pharmacy-online-11"> Post link: https://community.nxp.com/t5/i-MX-Processors/Could-not-invoke-dnf-for-external-kernel-module-in-Yocto/m-p/1627964#M203740 Post author: @JohnKlug | Email Author Reported by: ozdazue | Email Reporter The reported post has 2 replies.
查看全文
[不正使用] 投稿者: @JohnKlug / ボード: imx-プロセッサ / 報告者: jzpwpyj jzpwpyj は、 @JohnKlug が投稿した 「Could not invoke dnf for external kernel module in Yocto kirkstone」という 投稿について、以下の理由で報告しました: 理由:詐欺または不正行為 詳細: %EB%%94%%91%%EC%%B4/%%98%%EA%%88%%B0%%EB%%91%%9D% 投稿リンク: https://community.nxp.com/t5/i-MX-Processors/Could-not-invoke-dnf-for-external-kernel-module-in-Yocto/mp/1627964#M203740 投稿者: @JohnKlug |メール著者 報告者: jzpwpyj |メールレポーター 報告された投稿には 2 件の返信があります。
查看全文
FXLS8974CF、FXLS8974_Arduino Lib、しきい値とデバウンス値の設定方法 目標: Xの動きが検出されるとすぐにLED_X(高)をトリガーし、Xの動きが止まるまで高を維持する しきい値とデバウンスの設定に問題がある 製品 FRDM-STBI-A8974 シールドを Arduino Uno (3.3V) にコネクテッドFXLS8974CF、3軸低g加速度センサ、データシート FXLS89xx_Arduino ライブラリの使用FXLS89xx_Arduino/README.md (メイン) · ryraki/FXLS89xx_Arduino · GitHub シリアルで見たもの: WHO_AM_I = 0x86 19 19 E0 0x86 - 良好 19、19、E0 はライブラリから出力されたエラーだと思いますが、その情報はシリアルに送信されていません。 src 変数に正しい情報が返されません。何が足りないのか分かりません。 Z 軸に変更すると、LED はハイのままになり、Y 軸にスイッチすると LED は時々点滅します。_XYZ では、LED が非常に速くオン/オフに点滅しますが、_X__ では何も表示されません。何かを適切に初期化していないようです。正しい方向へのどんな刺激でも大歓迎です。 コード: #include "FXLS89xx_Arduino.h" #include #define FXLS8974CF_ADDR 0x18 FXLS89xx fxls89xx; int LED_X = 8; int INT1_PIN = 2; void setup() { pinMode(LED_X, OUTPUT); pinMode(INT1_PIN, INPUT); Serial.begin(115200); Wire.begin(); uint8_t whoami = fxls89xx.init(); Serial.print("WHO_AM_I = 0x"); Serial.println(whoami, HEX); fxls89xx.wake_odr = FXLS89xx::_6_25HZ; fxls89xx.wake_pm = FXLS89xx::_HPM; fxls89xx.sensor_range = FXLS89xx::_2G; // Absolute mode, X-axis, ±25 mg thresholds, debounce=5 samples fxls89xx.sdcd(FXLS89xx::_ABSOLUTE, FXLS89xx::_X__, 25.0f, 25.0f, 5); } void loop() { // Poll INT1 pin if (digitalRead(INT1_PIN)) { uint8_t src=fxls89xx.reg_r(FXLS89xx::_SDCD_INT_SRC1); //Serial.println(src); if (src & 0x01) { digitalWrite(LED_X, HIGH); Serial.println("Motion detected on X-axis!"); } if (src & 0x08) { digitalWrite(LED_X, LOW); Serial.println("Motion ended on X-axis."); } } delay(50); } Re: FXLS8974CF, FXLS8974_Arduino Lib and how to set thresholds and debounce values こんにちは、グレン。 SDCD を使用して X 軸の動きを検出するには、SDCD_INT_SRC1 レジスタの正しいビットを確認してください。 - OT_EAは閾値外イベント情報がアクティブであることを示します - X_OT_EFはX軸が原因であることを確認します また、割り込みを有効にして適切にルーティングします。 - INT_EN[SDCD_OT_EN] = 1 を設定し、INT_PIN_SEL 経由で INT1 にルーティングします。 - SENS_CONFIG4 をアクティブハイ、プッシュプル出力用に設定する(またはハードウェアに合わせて設定する) 最後に、fxls89xx.run() を呼び出します。スタンバイ モードを終了するには、構成後に行います。Arduino ライブラリのしきい値は mg 単位で、デバウンス数は ODR 期間に基づいています。SDCD_INT_SRC1 を読み取ると、ラッチされたフラグがクリアされます。 お役に立てれば幸いです。 BRs、トーマス
查看全文
Etnaviv GPU: MMU fault - Page not present Hi,  I am using an i.MX8MN board with mainline linux kernel 6.13 and Mesa 22.0.3.  Etnaviv is enabled and kmscube is installed. When I run kmscube -D /dev/dri/card0, I get repeated MMU faults: kmscube -D /dev/dri/card0 <5>[ 33.672597] random: crng init done Using display 0xffffa0979330 with EGL version 1.4 =================================== EGL information: version: "1.4" vendor: "Mesa Project" client extensions: "EGL_EXT_client_extensions EGL_EXT_device_base EGL_EXT_device_enumeration EGL_EXT_device_query EGL_EXT_platform_base EGL_KHR_client_get_all_proc_addresses EGL_KHR_debug EGL_EXT_platform_device EGL_MESA_platform_gbm EGL_KHR_plat form_gbm EGL_MESA_platform_surfaceless" display extensions: "EGL_ANDROID_blob_cache EGL_ANDROID_native_fence_sync EGL_EXT_buffer_age EGL_EXT_image_dma_buf_import EGL_EXT_image_dma_buf_import_modifiers EGL_KHR_cl_event2 EGL_KHR_config_attribs EGL_KHR_create_context EGL_KHR_create_contex t_no_error EGL_KHR_fence_sync EGL_KHR_get_all_proc_addresses EGL_KHR_gl_colorspace EGL_KHR_gl_renderbuffer_image EGL_KHR_gl_texture_2D_image EGL_KHR_gl_texture_3D_image EGL_KHR_gl_texture_cubemap_image EGL_KHR_image EGL_KHR_image_base EGL_KHR_image _pixmap EGL_KHR_no_config_context EGL_KHR_reusable_sync EGL_KHR_surfaceless_context EGL_EXT_pixel_format_float EGL_KHR_wait_sync EGL_MESA_configless_context EGL_MESA_drm_image EGL_MESA_image_dma_buf_export EGL_MESA_query_driver " =================================== OpenGL ES 2.x information: version: "OpenGL ES 2.0 Mesa 22.0.3" shading language version: "OpenGL ES GLSL ES 1.0.16" vendor: "etnaviv" renderer: "Vivante GC7000 rev 6203" extensions: "GL_EXT_blend_minmax GL_EXT_multi_draw_arrays GL_EXT_texture_filter_anisotropic GL_EXT_texture_compression_s3tc GL_EXT_texture_compression_dxt1 GL_EXT_texture_format_BGRA8888 GL_OES_compressed_ETC1_RGB8_texture GL_OES_depth24 GL_OES_e lement_index_uint GL_OES_fbo_render_mipmap GL_OES_mapbuffer GL_OES_rgb8_rgba8 GL_OES_standard_derivatives GL_OES_stencil8 GL_OES_texture_3D GL_OES_texture_half_float GL_OES_texture_npot GL_OES_vertex_half_float GL_OES_EGL_image GL_OES_depth_texture GL_AMD_performance_monitor GL_OES_packed_depth_stencil GL_EXT_texture_type_2_10_10_10_REV GL_OES_get_program_binary GL_APPLE_texture_max_level GL_EXT_discard_framebuffer GL_EXT_read_format_bgra GL_EXT_frag_depth GL_NV_fbo_color_attachments GL_OES_ EGL_image_external GL_OES_EGL_sync GL_OES_vertex_array_object GL_ANGLE_pack_reverse_row_order GL_ANGLE_texture_compression_dxt3 GL_ANGLE_texture_compression_dxt5 GL_EXT_occlusion_query_boolean GL_EXT_texture_rg GL_EXT_unpack_subimage GL_NV_draw_buf fers GL_NV_read_buffer GL_NV_read_depth GL_NV_read_depth_stencil GL_NV_read_stencil GL_EXT_draw_buffers GL_EXT_map_buffer_range GL_KHR_debug GL_KHR_texture_compression_astc_ldr GL_NV_pixel_buffer_object GL_OES_required_internalformat GL_OES_surface less_context GL_EXT_separate_shader_objects GL_EXT_compressed_ETC1_RGB8_sub_texture GL_EXT_draw_elements_base_vertex GL_EXT_texture_border_clamp GL_KHR_context_flush_control GL_OES_draw_elements_base_vertex GL_OES_texture_border_clamp GL_KHR_no_err or GL_KHR_texture_compression_astc_sliced_3d GL_EXT_texture_compression_s3tc_srgb GL_KHR_parallel_shader_compile GL_INTEL_blackhole_render GL_MESA_bgra " =================================== Rendered 125 frames in 2.015083 sec (62.032200 fps) Rendered 250 frames in 4.030185 sec (62.031886 fps) DMESG <3>[ 33.808034] etnaviv-gpu 38000000.gpu: MMU fault status 0x00000002 <3>[ 33.808072] etnaviv-gpu 38000000.gpu: MMU 0 fault (page not present) addr 0x00000000 <3>[ 33.911138] etnaviv-gpu 38000000.gpu: recover hung GPU! <3>[ 33.911267] etnaviv-gpu 38000000.gpu: offending task: kmscube (kmscube -D /dev/dri/card0) <3>[ 34.470517] etnaviv-gpu 38000000.gpu: MMU fault status 0x00000002 <3>[ 34.470556] etnaviv-gpu 38000000.gpu: MMU 0 fault (page not present) addr 0x00000000 <3>[ 34.470637] etnaviv-gpu 38000000.gpu: recover hung GPU! <3>[ 34.470690] etnaviv-gpu 38000000.gpu: offending task: kmscube (kmscube -D /dev/dri/card0) <3>[ 34.482908] etnaviv-gpu 38000000.gpu: MMU fault status 0x00000002 <3>[ 34.482926] etnaviv-gpu 38000000.gpu: MMU 0 fault (page not present) addr 0x00000000 <3>[ 34.482977] etnaviv-gpu 38000000.gpu: recover hung GPU! <3>[ 34.483018] etnaviv-gpu 38000000.gpu: offending task: kmscube (kmscube -D /dev/dri/card0) <3>[ 34.498776] etnaviv-gpu 38000000.gpu: MMU fault status 0x00000002 <3>[ 34.498795] etnaviv-gpu 38000000.gpu: MMU 0 fault (page not present) addr 0x00000000 <3>[ 34.498838] etnaviv-gpu 38000000.gpu: recover hung GPU! <3>[ 34.498873] etnaviv-gpu 38000000.gpu: offending task: kmscube (kmscube -D /dev/dri/card0) <3>[ 34.514863] etnaviv-gpu 38000000.gpu: MMU fault status 0x00000002 <3>[ 34.514879] etnaviv-gpu 38000000.gpu: MMU 0 fault (page not present) addr 0x00000000 <3>[ 34.514924] etnaviv-gpu 38000000.gpu: recover hung GPU! <3>[ 34.514956] etnaviv-gpu 38000000.gpu: offending task: kmscube (kmscube -D /dev/dri/card0) <3>[ 34.530980] etnaviv-gpu 38000000.gpu: MMU fault status 0x00000002 <3>[ 34.530997] etnaviv-gpu 38000000.gpu: MMU 0 fault (page not present) addr 0x00000000 <3>[ 34.531042] etnaviv-gpu 38000000.gpu: recover hung GPU! The display backlight turns on, but nothing is shown. The display pipeline is working, modetest -s 38:1024x600 displays a test pattern. ls -l /dev/dri/ crw------- 1 root root 226, 0 Jan 1 00:08 card0 crw------- 1 root root 226, 1 Jan 1 00:08 card1 crw------- 1 root root 226, 128 Jan 1 00:08 renderD128 My RAM is 512MB, mapped at 0x40000000–0x60000000. I tried reserving memory for GPU as below, reserved-memory { #address-cells = <2>; #size-cells = <2>; ranges; linux,cma { compatible = "shared-dma-pool"; reusable; size = <0 0x8000000>; alloc-ranges = <0 0x40000000 0 0x20000000>; linux,cma-default; }; gpu_reserved: gpu@50000000 { reg = <0 0x50000000 0 0x8000000>; no-map; }; }; I have tried both CMA and reserved memory for the GPU, but the error persists. Is there a known issue with etnaviv on i.MX8MN in mainline, or a required device tree/kernel config for GPU memory? Any advice is appreciated. Thank you! Re: Etnaviv GPU: MMU fault - Page not present Hi @blessyAbraham  First, I would like to clarify that the mainline GPU driver is not within NXP's support scope. I checked this mainline driver. There is no code to read the memory range in dts. So there should be another way to define or modify it. The NXP driver will define memory range in dtsi and read it in driver. But in mainline driver, i don't see such code. You can try to debug the code here to confirm the real memory base in mainline driver. Add more printf in drivers/gpu/drm/etnaviv/etnaviv_mmu.c, drivers/gpu/drm/etnaviv/etnaviv_iommu_v2.c and drivers/gpu/drm/etnaviv/etnaviv_iommu.c cmdbuf_paddr = ALIGN_DOWN(etnaviv_cmdbuf_get_pa(&gpu->buffer), SZ_128M); if (!(gpu->identity.features & chipFeatures_PIPE_3D) || (gpu->identity.minor_features0 & chipMinorFeatures0_MC20) || (gpu->identity.minor_features1 & chipMinorFeatures1_MMU_VERSION)) { if (cmdbuf_paddr >= SZ_2G) priv->mmu_global->memory_base = SZ_2G; else priv->mmu_global->memory_base = cmdbuf_paddr; } else if (cmdbuf_paddr + SZ_128M >= SZ_2G) { dev_info(gpu->dev, "Need to move linear window on MC1.0, disabling TS\n"); gpu->identity.features &= ~chipFeatures_FAST_CLEAR; priv->mmu_global->memory_base = SZ_2G; } Best Regards, Zhiming Re: Etnaviv GPU: MMU fault - Page not present Hi team, Thankyou for the clarification.  I have verified the memory base verification and it is as per the CMA specified in the device tree.  206: 14 0 GICv3 50 Level 32e10000.dsi 207: 902 0 GICv3 37 Level mxsfb-drm 208: 0 0 GICv3 35 Level 38000000.gpu i see that the gpu interrupts are not incrementing and still hitting the GPU hang issue.  Re: Etnaviv GPU: MMU fault - Page not present Hi, I got this issue resolved by updating Mesa to 23.2.1 version.  Thank you. 
查看全文
[ABUSE] Post By: @JohnKlug / Board: imx-processors / Reported by: gxupohb gxupohb has reported the post Could not invoke dnf for external kernel module in Yocto kirkstone posted by @JohnKlug for the following reasons: Reason: Plagiarism Details: https://localautosforsale.com/local-autos/sd/30/shelby/18i-4dr-wagon/2011/8689"> https://www.ziveknihy.sk/autor/pharmacy-online"> https://tylkoastronomia.pl/node/9900"> https://www.spinsheet.com/century-club-log/pharmacy-online-2"> https://www.intellectualpedia.org/audiologistwholesale-pharmacy-online-1"> http://ru.ph-ed-plus.nspu.ru/article/17939"> https://neweddingday.com/your-couple-name-2334"> https://oregonweddingday.com/your-couple-name-2335"> https://www.danduo168.com/en/artworks/692/pharmacy-online-2"> https://museusvalenciades.grupotecopy.es/en/node/2365"> https://darkmetalmush.net/history/pharmacy-online-7"> http://www.le-cercle-des-sourires.fr/session/3345"> https://stage.cc.radiant.digital/node/3054"> http://onlyforsalebyowner.com/for-sale-by-owner-homes/ga/17"> https://stage.cc.radiant.digital/node/3054"> https://spdm.dambo.me/forums/miscellaneous/news-and-announcements/pharmacy-online-4"> http://old-liege.jeunescathos.org/fr/content/pharmacy-online-72"> https://satto.vtranet.com/binh-luan-390"> http://en.sp-journal.ru/article/19175"> http://dev.nikol-buket.com/content/pharmacy-online-2"> https://okwiki.ru/catalog/pharmacy-online-13"> https://www.ziveknihy.sk/autor/pharmacy-online"> http://onlyforsalebyowner.com/for-sale-by-owner-homes/ga/17"> https://oregonweddingday.com/your-couple-name-2335"> http://hubram.cz/content/pharmacy-online-8"> http://polden.info/story/pharmacy-online-4"> http://fictioneer.org/content/pharmacy-online-2"> http://03otvet.ru/voprosy/ginekologiya/pharmacy-online"> https://www.onlyhomebuyers.com/for-sale-by-owner-homes/md/60"> https://sitepe.iiec.unam.mx/node/6213"> https://www.martensfamily.co.za/node/2957"> https://mail.globalrealtor.co.in/node/4228"> http://www.beautynbrushes.com/services-provided/makeup-services-eagerprickedagd"> https://new.roger24.de/pharmacy-online-0"> https://www.vgame.ca/node/46841"> http://old-liege.jeunescathos.org/fr/content/pharmacy-online-72"> https://www.danduo168.com/en/artworks/692/pharmacy-online-2"> https://www.thebiketube.com/daytona-kathy"> https://www.globalrealtor.co.in/node/4214"> https://www.intimuscare.com/pharmacy-online-2"> Post link: https://community.nxp.com/t5/i-MX-Processors/Could-not-invoke-dnf-for-external-kernel-module-in-Yocto/m-p/1627964#M203740 Post author: @JohnKlug | Email Author Reported by: gxupohb | Email Reporter The reported post has 2 replies.
查看全文
iMX8M Plus LPDDR4 Config Tool failure First design using iMX8M Plus. Lots of prior experience with iMX8M Mini. I am using NXP i.MX Config Tools v16.1 to check LPDDR4 on new custom hardware. Using uuu -lsusb, I get the following output when custom board connected to PC: uuu (Universal Update Utility) for nxp imx chips -- libuuu_1.5.182-0-gda3cd53 Connected Known USB Devices Path Chip Pro Vid Pid BcdVersion Serial_no ==================================================================== 1:3 MX865 SDPS: 0x1FC9 0x0146 0x0002 0D10180085FE787F So I believe the board is connecting properly via USB. The problem, I think, is that our custom board is using debug console UART1 on different pins due to muxing limitations. So I have modified the lpddr4_config.ds to have the following lines: ################step 0: configure debug uart port. Assumes use of UART IO Pads. ##### ##### If using non-UART pads (i.e. using other pads to mux out the UART signals), ##### ##### then it is up to the user to overwrite the following IO register settings ##### # Custom UART IOMUX config memory set 0x3033019C 32 0x00000004 #IOMUXC_SW_MUX_CTL_PAD_SAI2_RXFS memory set 0x303301A0 32 0x00000004 #IOMUXC_SW_MUX_CTL_PAD_SAI2_RXC memory set 0x303303FC 32 0x00000016 #IOMUXC_SW_PAD_CTL_PAD_SAI2_RXFS memory set 0x30330400 32 0x00000016 #IOMUXC_SW_PAD_CTL_PAD_SAI2_RXC memory set 0x303305E8 32 0x00000003 #IOMUXC_SW_MUX_UART1_SEL_RXD #memory set 0x30330220 32 0x00000000 #IOMUXC_SW_MUX_UART1_RXD #memory set 0x30330224 32 0x00000000 #IOMUXC_SW_MUX_UART1_TXD #memory set 0x30330480 32 0x00000016 #IOMUXC_SW_PAD_UART1_RXD #memory set 0x30330484 32 0x00000016 #IOMUXC_SW_PAD_UART1_TXD #memory set 0x303305E8 32 0x00000004 #IOMUXC_SW_MUX_UART1_SEL_RXD sysparam set debug_uart 0 #UART index from 0 ('0' = UART1, '1' = UART2, '2' = UART3, '3' = UART4) Unfortunately, this is as far as the Logs get when doing the Firmware Init test: #################### Result for: phy_init ###### Run 1 #############################################Microsoft Windows [Version 10.0.22631.4317] (c) Microsoft Corporation. All rights reserved. C:\nxp\i.MX_CFG_v16.1\bin>prompt test-prefix : test-prefix : "C:/nxp/i.MX_CFG_v16.1/bin/python3/python" "C:/nxp/i.MX_CFG_v16.1/bin/python3/memtool/memtool_entry.py" -t "runtest" -d "C:/ProgramData/NXP/mcu_data_v16/processors/MIMX8ML6xxxKZ/ksdk2_0/mem_validation/ddrc" -p "C:/Users/evanc/AppData/Local/Temp/mem_validation/phy_training_phy_test_0_0_.log" -l INFO "C:/Users/evanc/AppData/Local/Temp/mem_validation/connect.json" "C:/Users/evanc/AppData/Local/Temp/mem_validation/test.json" "C:/Users/evanc/AppData/Local/Temp/mem_validation/phy.json" "C:/Users/evanc/AppData/Local/Temp/mem_validation/ddrc_registers.json" "C:/Users/evanc/AppData/Local/Temp/mem_validation/ddrc_config.json" "C:/Users/evanc/AppData/Local/Temp/mem_validation/ddrc_config_in.json" INFO memtool.utils.helper *****C:/Users/evanc/AppData/Local/Temp/mem_validation/connect.json INFO memtool.utils.helper *****C:/Users/evanc/AppData/Local/Temp/mem_validation/test.json INFO memtool.utils.helper *****C:/Users/evanc/AppData/Local/Temp/mem_validation/phy.json INFO memtool.utils.helper *****C:/Users/evanc/AppData/Local/Temp/mem_validation/ddrc_registers.json INFO memtool.utils.helper *****C:/Users/evanc/AppData/Local/Temp/mem_validation/ddrc_config.json INFO memtool.utils.helper *****C:/Users/evanc/AppData/Local/Temp/mem_validation/ddrc_config_in.json INFO memtool.phyinit.phy_init Run phyinit for 2020.06\lpddr4 INFO memtool.comm.serial_channel Using serial: COM8 ERROR memtool.comm.serial_channel Cannot receive data from target ERROR:memtool.comm.serial_channel:Cannot receive data from target (63930ms since start, serial_channel.py:357) ERROR memtool.common.base_test Application is not waiting for input state. ERROR:memtool.common.base_test:Application is not waiting for input state. (63931ms since start, base_test.py:548) Any ideas? If schematic is required, I can provide via email. Thanks! Re: iMX8M Plus LPDDR4 Config Tool failure Hello, just for your information, I have also problems with the DDR tool in version 16 and above of the Config Tools. IOMUX configuration for UART2: # Custom IOMUX config memory set 0x303301C4 32 0x4 memory set 0x303301C8 32 0x4 memory set 0x30330424 32 0x16 memory set 0x30330428 32 0x16 memory set 0x303305F0 32 0x4 Last version that worked was 15.1. If I access the UART port here in a terminal, I actually get a new line when hitting any key. With the newer versions the input seems to be not processed, so maybe the firmware does not listen at the port or the firmware hangs after the hardware_init: ==================hardware_init======================= [DEBUG]: Clock setup... [INFO]: ARM core clock rate is 1800MHz... [INFO]: DDR Dram frequency is 2000MHz... [DEBUG]: Clock setup ended... ==================hardware_init exit================== > > > > > Maybe this helps in some way. Would be glad to be able to use newer versions of the Config Tool for the i.MX8M Plus as well. Best regards. Re: iMX8M Plus LPDDR4 Config Tool failure Jorge, I figured this out offline with @brenolima 's assistance. He spotted that my LPDDR part had 2 CS lines and 16 rows instead of 1CS and 17 rows. I tried with the older tool, and it passed calibration & stress test. DS files attached. I imported the same exact DS file to Config Tools and it failed. So maybe some error / difference between the two tools. I also tried with attached UART1 ds script on our modified UART1 pins and that worked just fine. I would, however, like to be kept in the loop if the root cause of this issue is discovered and fixed. Re: iMX8M Plus LPDDR4 Config Tool failure Hello, The only thing that I double check is the second chip select that is marked as NC in your LPDDR4 device. Please check that this is not an issue with your IC manufacturer. Your RPA file is also correctly configured. From first DDR tool log, I still thinking that the root cause is UART connection since is not able to stablish the connection. Since it is a custom board design and manufacturing technology are different from NXP reference board, and board related parameters may differ from initial DDR script, so please try tunning: ODTImpedance Desired ODT impedance in Ohm. Valid values for DDR4=240,120,80,60,40. Valid values for DDR3L=high-impedance,120,60,40. Valid values for LPDDR4=240,120,80,60,40 TxImpedance Write Driver Impedance for DQ/DQS in ohm (Valid values for all DDR type= 240, 120, 80, 60, 48, 40, 34) ATxImpedance Write Driver Impedance for Address/Command (AC) bus in ohm (Valid values for all DDR type = 120, 60, 40, 30, 24, 20) Did you check signal integrity with a lower clock speed? Best regards. Re: iMX8M Plus LPDDR4 Config Tool failure See attached. Also see updated RPA.. the one I posted previously wasn't saved with the changes I made for our specific LPDDR4. Re: iMX8M Plus LPDDR4 Config Tool failure Hello, Could you please share your LPDDR connections? Best regards. Re: iMX8M Plus LPDDR4 Config Tool failure Also, there's no issue with USB-UART - using an external FTDI cable. Re: iMX8M Plus LPDDR4 Config Tool failure Jorge, Per @brenolima 's suggestion via email, I tried using the older DRAM tool (https://community.nxp.com/t5/i-MX-Processors-Knowledge-Base/i-MX-8M-Family-DDR-Tool-Release/ta-p/1104467). With that, the process went further, but still failed. Download is complete Waiting for the target board boot... ********Found PMIC PCA9450********** hardware_init exit ************************************************************************* ************************************************************************* ************************************************************************* MX8 DDR Stress Test V3.30 Built on Nov 24 2021 13:52:12 ************************************************************************* Waiting for board configuration from PC-end... --Set up the MMU and enable I and D cache-- - This is the Cortex-A53 core - Check if I cache is enabled - Enabling I cache since it was disabled - Push base address of TTB to TTBR0_EL3 - Config TCR_EL3 - Config MAIR_EL3 - Enable MMU - Data Cache has been enabled - Check system memory register, only for debug - VMCR Check: - ttbr0_el3: 0x97d000 - tcr_el3: 0x2051c - mair_el3: 0x774400 - sctlr_el3: 0xc01815 - id_aa64mmfr0_el1: 0x1122 - MMU and cache setup complete ************************************************************************* ARM clock(CA53) rate: 1800MHz DDR Clock: 2000MHz ============================================ DDR configuration DDR type is LPDDR4 Data width: 32, bank num: 8 Row size: 17, col size: 10 One chip select is used Number of DDR controllers used on the SoC: 1 Density per chip select: 4096MB Density per controller is: 4096MB Total density detected on the board is: 4096MB ============================================ MX8M-plus: Cortex-A53 is found ************************************************************************* ============ Step 1: DDRPHY Training... ============ ---DDR 1D-Training @2000Mhz... [Process] End of CA training [Process] End of initialization [Process] End of read enable training [Process] End of fine write leveling [Process] End of read DQ deskew training [Process] End of MPR read delay center optimization [Process] End of Write Leveling coarse delay [Process] End of write delay center optimization [Process] End of read delay center optimization [Process] End of max read latency training [Result] PASS ---DDR 2D-Training @2000Mhz... [Process] End of initialization [Process] End of 2D write delay/voltage center optimization [Process] End of 2D write delay/voltage center optimization [Process] End of 2D read delay/voltage center optimization [Process] End of 2D read delay/voltage center optimization [Result] PASS ============ Step 2: DDR memory accessing... ============ Verifying DDR frequency [email protected] of failure: 0x0000000040080000 Data read was: 0x0000000040000038 But pattern was: 0x0000000040000000 Failed Please modify DDRC/DFI parameters!!! Using the RPA spreadsheet tool (attached, but doesn't show the modified UART lines), and modifying the UART lines in the ds script, as I had attempted to do thru the Config GUI, ds file is attached. Re: iMX8M Plus LPDDR4 Config Tool failure Hello, The device is correctly detected in serial download mode. It is not stablishing the UART connection and causing a time out. After the UART port change in DDR tool you should be able to run the DDR stress test. Could you please confirm that there is not an issue in UART-USB section of your design? Best regards.
查看全文
[滥用] 发布者:@JohnKlug / 板:imx-processors / 举报人:sylykphk sylykphk 报告了 @JohnKlug 发布的帖子 Could not invoke dnf for external kernel module in Yocto kirkstone, 原因如下: 原因: 详情: < a href="https://www.thebiketube.com/salsa-aryanna"> https://facultypage.com/node/462"> http://alabasirah.com/node/8264"> https://investor18.ru/investors/pharmacy-online-5"> http://ph-ed-plus.nspu.ru/article/17938"> https://app.feizufenqi.com/fp/content/pharmacy-online-0"> https://primfootball.com/pharmacy-online-11"> https://evere.co/articles/pharmacy-online-6"> < a href="https://www.twelvestepjournaling.com/content/pharmacy-online"> https://stage.cc.radiant.digital/node/3045"> https://golemobuchino.com/content/2467/pharmacy-online"> http://www.sccu.chula.ac.th/node/926"> < a href="https://greenexport.vn/en/binh-luan-359"> https://totalhockeymanagement.com/pharmacy-online-2"> https://tojuzbylo.pl/node/9320"> https://greenexport.vn/en/binh-luan-359"> http://www.batshaw.qc.ca/fr/node/164"> < a href="https://carros-usados.us/pharmacy-online-7"> https://dev.worldwar1luton.com/forum-topic/pharmacy-online-2"> http://prosti-proshay.ru/lyudi/pharmacy-online-9"> http://prosti-proshay.ru/lyudi/pharmacy-online-9"> https://totalhockeymanagement.com/pharmacy-online-2"> https://enki.ua/applications/16928"> < a href="https://investor18.ru/investors/pharmacy-online-5"> https://jeunescathos-bxl.org/fr/content/pharmacy-online-0"> https://theanubianwar.com/node/6402"> https://lotteryobzor.com/forum/pharmacy-online-10"> http://prosti-proshay.ru/lyudi/pharmacy-online-9"> https://spdm.dambo.me/forums/miscellaneous/advertisement/pharmacy-online-0"> https://jeunescathos-bxl.org/fr/content/pharmacy-online-0"> https://reflexologie-cerilly.fr/en/node/4243"> https://stage.cc.radiant.digital/node/3045"> https://totalhockeymanagement.com/pharmacy-online-2"> https://californiaweddingday.com/your-couple-name-2386"> https://www.musicinafrica.net/newsfeed/213463/373134"> https://stage.cc.radiant.digital/node/3045"> https://mail.globalrealtor.co.in/node/4225"> < a href="https://www.player1.app/team/post/501948428/1235"> https://slp.millingtonpubliclibrary.org/content/pharmacy-online-8"> < a href="https://primfootball.com/pharmacy-online-11"> 发布链接: https://community.nxp.com/t5/i-MX-Processors/Could-not-invoke-dnf-for-external-kernel-module-in-Yocto/m-p/1627964#M203740 帖子作者 @JohnKlug|Email Author 报告人:sylykphk |Email Reporter 报告的帖子有 2 个回复。
查看全文
[ABUSE] Post By: @JohnKlug / Board: imx-processors / Reported by: bpbttp bpbttp has reported the post Could not invoke dnf for external kernel module in Yocto kirkstone posted by @JohnKlug for the following reasons: Reason: Spam Details: http://xn--80ab2anoq0a.xn--p1ai/art/pharmacy-online-0"> https://sitepe.iiec.unam.mx/node/6211"> https://neweddingday.com/your-couple-name-2350"> https://www.intimuscare.com/pharmacy-online-19"> https://satto.vtranet.com/binh-luan-381"> http://www.beautynbrushes.com/services-provided/bundle-color-vitalitymythicls"> https://recruitment.kenet.or.ke/node/2040"> http://03otvet.ru/voprosy/urologiya/pharmacy-online"> https://dev.beautynbrushes.com/services-provided/kids-mani-pedi-maroonimmortalep"> https://www.geofak85.ru/pharmacy-online-10"> https://mail.globalrealtor.co.in/node/4225"> https://primfootball.com/pharmacy-online-11"> http://www.beautynbrushes.com/services-provided/bundle-color-vitalitymythicls"> http://hubram.cz/content/pharmacy-online-11"> https://mnbride.com/your-couple-name-2381"> https://reflexologie-cerilly.fr/en/node/4243"> https://darkmetalmush.net/history/pharmacy-online-5"> http://lsdsng.com/node/4269"> https://masters.adminskiracing.com/node/413290"> http://old.jeunescathos.org/fr/content/pharmacy-online-10"> https://investor18.ru/investors/pharmacy-online-5"> https://www.torontopersians.com/ads/pharmacy-online-9"> https://www.geofak85.ru/pharmacy-online-10"> https://neweddingday.com/your-couple-name-2350"> https://mnbride.com/your-couple-name-2381"> https://slp.millingtonpubliclibrary.org/content/pharmacy-online-8"> https://greenexport.vn/en/binh-luan-359"> http://www.hudebniburza.cz/dilo/pharmacy-online-7"> http://xn--80ab2anoq0a.xn--p1ai/art/pharmacy-online-0"> https://museusvalenciades.grupotecopy.es/en/node/2360"> http://ru.ph-ed-plus.nspu.ru/article/17947"> https://www.rapidservice.com.ec/es/content/1-caja-o-paquete-1757"> http://en.sp-journal.ru/article/19192"> http://shop.ls-s.ru/product/10110"> https://recruitment.kenet.or.ke/node/2040"> http://www.batshaw.qc.ca/fr/node/164"> https://darkmetalmush.net/history/pharmacy-online-5"> https://rahuldolas.com/forum/general-discussion/topic/729/pharmacy-online"> http://dev.nikol-buket.com/content/pharmacy-online-0"> http://ph-ed-plus.nspu.ru/article/17938"> Post link: https://community.nxp.com/t5/i-MX-Processors/Could-not-invoke-dnf-for-external-kernel-module-in-Yocto/m-p/1627964#M203740 Post author: @JohnKlug | Email Author Reported by: bpbttp | Email Reporter The reported post has 2 replies.
查看全文
[乱用] 投稿者: @JohnKlug / ボード: imx-processors / 報告者: bcndjb bcndjb は、 @JohnKlug が投稿した 「Could not invoke dnf for external kernel module in Yocto kirkstone」という 投稿について、以下の理由で報告しました: 理由:その他 詳細: 投稿リンク: https://community.nxp.com/t5/i-MX-Processors/Could-not-invoke-dnf-for-external-kernel-module-in-Yocto/mp/1627964#M203740 投稿者: @JohnKlug |メール著者 報告者: bcndjb |メールレポーター 報告された投稿には 2 件の返信があります。
查看全文
[乱用] 投稿者: @JohnKlug / ボード: imx-プロセッサ / 報告者: erzcqqy erzcqqy は、 @JohnKlug が投稿した 「Could not invoke dnf for external kernel module in Yocto kirkstone」という 投稿について、以下の理由で報告しました: 理由:嫌がらせ 詳細: %EB%%94%%91%%EC%%B4/%%98%%EA%%88%%B0%%EB%%91%%9D% 投稿リンク: https://community.nxp.com/t5/i-MX-Processors/Could-not-invoke-dnf-for-external-kernel-module-in-Yocto/mp/1627964#M203740 投稿者: @JohnKlug |メール著者 報告者: erzcqqy |メールレポーター 報告された投稿には 2 件の返信があります。
查看全文
[滥用] 发布者:@JohnKlug / 板:imx-processors / 举报人:jocufob jocufob 报告了 @JohnKlug 发表的帖子 Could not invoke dnf for external kernel module in Yocto kirkstone ,原因如下: 原因: 裸体或性活动 详情: < a href="http://surfing.4fan.cz/node/148"> https://hetnieuweteamwerken.be/forums/forum/pharmacy-online"> https://obzorpoker.info/forum/pharmacy-online-4"> https://lotteryobzor.com/forum/pharmacy-online-0"> https://www.cableman.ru/node/84340"> https://app.feizufenqi.com/fp/content/pharmacy-online-16"> https://www.ziveknihy.sk/autor/pharmacy-online"> http://pi5ny.com/node/4957"> < a href="https://rahuldolas.com/forum/general-discussion/topic/717/pharmacy-online"> https://museusvalenciades.grupotecopy.es/en/node/2365"> https://darkmetal2039.com/history/pharmacy-online-16"> https://cadel.ru/forum/pharmacy-online-3"> < a href="https://www.castnblastadvisor.com/outfitters/pharmacy-online"> http://xn--80ab2anoq0a.xn--p1ai/story/pharmacy-online-1"> http://pi5ny.com/node/4957"> < a href="https://forum.auc.org.ua/faq/28092025-0606"> http://xn--80ab2anoq0a.xn--p1ai/story/pharmacy-online-1"> https://www.torontopersians.com/ads/pharmacy-online-13"> https://www.tripmayntra.com/pharmacy-online-8"> https://www.siriuspup.com/breeders/pharmacy-online-7"> http://ru.ph-ed-plus.nspu.ru/article/17939"> http://xn--80aah2bgapnqg.xn--p1ai/blog/8094/pharmacy-online"> https://enki.ua/advert/16932"> < a href="https://wibride.com/your-couple-name-2363"> https://www.drupalcamp.cr/es/node/4819"> https://www.siriuspup.com/breeders/pharmacy-online-7"> http://shop.ls-s.ru/product/10105"> http://www.gradspot.com/qa/pharmacy-online-1"> https://sitepe.iiec.unam.mx/node/6213"> https://hetnieuweteamwerken.be/forums/forum/pharmacy-online"> http://www.gradspot.com/qa/pharmacy-online-1"> https://new.roger24.de/pharmacy-online-0"> http://ru.ph-ed-plus.nspu.ru/article/17939"> https://localautosforsale.com/local-autos/sd/30/shelby/18i-4dr-wagon/2011/8689"> http://03otvet.ru/voprosy/ginekologiya/pharmacy-online"> < a href="https://www.nadietah.ru/otzyv/136674-howtostandup/468799-pharmacy-online"> http://student.dolivanov.ru/content/pharmacy-online"> https://facultypage.com/node/468"> https://reflexologie-cerilly.fr/en/node/4249"> https://wibride.com/your-couple-name-2363"> 发布链接: https://community.nxp.com/t5/i-MX-Processors/Could-not-invoke-dnf-for-external-kernel-module-in-Yocto/m-p/1627964#M203740 帖子作者 @JohnKlug|Email Author 报告人:jocufob |Email Reporter 报告的帖子有 2 个回复。
查看全文
[不正使用] 投稿者: @JohnKlug / ボード: imx-プロセッサ / 報告者: vbmkyxl vbmkyxl は、 @JohnKlug が投稿した 「Could not invoke dnf for external kernel module in Yocto kirkstone」という 投稿について、以下の理由で報告しました: 理由:盗作 詳細: 投稿リンク: https://community.nxp.com/t5/i-MX-Processors/Could-not-invoke-dnf-for-external-kernel-module-in-Yocto/mp/1627964#M203740 投稿者: @JohnKlug |メール著者 報告者: vbmkyxl |メールレポーター 報告された投稿には 2 件の返信があります。
查看全文
[ABUSE] Post By: @JohnKlug / Board: imx-processors / Reported by: immvsol immvsol has reported the post Could not invoke dnf for external kernel module in Yocto kirkstone posted by @JohnKlug for the following reasons: Reason: Misleading or False information Details: https://www.inserthere.me/sitereview/pharmacy-online-6"> https://www.old.ts3bots.de/node/1028"> https://www.vgame.ca/node/46834"> https://www.availcalendar.com/calendar/25589"> https://investor18.ru/investors/pharmacy-online-13"> https://eventandjudge.com/node/24423"> http://en.sp-journal.ru/article/19188"> https://neweddingday.com/your-couple-name-2395"> https://www.lawtech.ru/subscribe/26815-16102025"> https://darkmetalmush.net/history/pharmacy-online-0"> https://dev.worldwar1luton.com/forum-topic/pharmacy-online-6"> http://alabasirah.com/node/8253"> https://cadel.ru/forum/pharmacy-online-2"> https://totalhockeymanagement.com/pharmacy-online-6"> https://www.ziveknihy.sk/audiokniha/pharmacy-online-4"> https://dev.worldwar1luton.com/forum-topic/pharmacy-online-6"> http://ru.ph-ed-plus.nspu.ru/article/17936"> https://rus.langnotes.ru/vocabularies/pharmacy-online"> http://ru.ph-ed-plus.nspu.ru/article/17936"> https://liderforum.webconfmep.gate1.campuz.org/ru/content/pharmacy-online-2"> https://www.drupalcamp.cr/es/node/4823"> http://gamblingobzor.net/forum/pharmacy-online-7"> http://alabasirah.com/node/8253"> https://dev.worldwar1luton.com/forum-topic/pharmacy-online-6"> https://recruitment.kenet.or.ke/node/2036"> http://old-namur.jeunescathos.org/fr/content/pharmacy-online-41"> https://www.twelvestepjournaling.com/content/pharmacy-online-1"> https://www.intimus.pt/pharmacy-online-9"> https://reflexologie-cerilly.fr/en/node/4236"> https://www.inserthere.me/sitereview/pharmacy-online-6"> https://www.lawtech.ru/subscribe/26815-16102025"> https://neweddingday.com/your-couple-name-2395"> http://santorini.cz/node/6336"> https://darkmetal2039.com/history/pharmacy-online-2"> http://hubram.cz/content/pharmacy-online-5"> https://www.chstm.org/node/79783"> https://liderforum.webconfmep.gate1.campuz.org/ru/content/pharmacy-online-2"> https://investor18.ru/investors/pharmacy-online-13"> https://carros-usados.us/pharmacy-online-5"> http://pbgpersonnel.ru/forum/pharmacy-online-2"> Post link: https://community.nxp.com/t5/i-MX-Processors/Could-not-invoke-dnf-for-external-kernel-module-in-Yocto/m-p/1627964#M203740 Post author: @JohnKlug | Email Author Reported by: immvsol | Email Reporter The reported post has 2 replies.
查看全文
[滥用] 发布者:@JohnKlug /板:imx-processors/举报人:ieeioct ieeioct 报告了 @JohnKlug 发表的帖子 Could not invoke dnf for external kernel module in Yocto kirkstone, 原因如下: 原因:骚扰 详情: < a href="https://www.itconnecta.es/pharmacy-online-0"> http://shop.ls-s.ru/product/10109"> https://jeunescathos-bxl.org/fr/content/pharmacy-online-49"> https://wibride.com/your-couple-name-2390"> http://old.jeunescathos.org/fr/content/pharmacy-online-18"> https://www.tripmayntra.com/pharmacy-online-5"> https://www.drupalcamp.cr/es/node/4820"> https://www.cableman.ru/node/84350"> https://www.intimus.pt/pharmacy-online-21"> https://reflexologie-cerilly.fr/en/node/4250"> https://stage.cc.radiant.digital/node/3057"> http://old-bxl.jeunescathos.org/fr/content/pharmacy-online-4"> https://www.e123.hk/zh-hant/e-center/personal-wall/81576/933273"> https://www.rapidservice.com.ec/es/content/1-carga-pesada-14480"> https://www.globalrealtor.co.in/node/4222"> < a href="https://darkmetal2039.com/history/pharmacy-online-4"> https://www.vgame.ca/node/46822"> http://www.alsongs.com.hk/node/15605"> http://ysrp.bnl.bm/review/pharmacy-online-4"> https://www.thebiketube.com/owleye-yasmine"> https://www.vgame.ca/node/46822"> https://www.jobwebby.com/domainasname-erma-gmbh/pharmacy-online-1"> https://www.itconnecta.es/pharmacy-online-0"> https://www.jobwebby.com/domainasname-erma-gmbh/pharmacy-online-1"> http://dev.nikol-buket.com/content/pharmacy-online-5"> https://primfootball.com/pharmacy-online-12"> https://sitepe.iiec.unam.mx/node/6205"> https://californiaweddingday.com/your-couple-name-2365"> https://backend.dawahnigeria.com/audit/304763"> http://surfing.4fan.cz/node/136"> http://ru.ph-ed-plus.nspu.ru/article/17952"> http://xn--37-6kci4a9aahjr0a.xn--p1ai/pharmacy-online-ivanovo-10"> https://www.geofak85.ru/pharmacy-online-0"> https://www.drupalcamp.cr/es/node/4820"> https://evere.co/articles/pharmacy-online-1"> < a href="https://investor18.ru/investors/pharmacy-online-3"> http://ru.ph-ed-plus.nspu.ru/article/17952"> http://xn--80ab2anoq0a.xn--p1ai/story/pharmacy-online-3"> http://old.jeunescathos.org/fr/content/pharmacy-online-18"> http://fictioneer.org/content/pharmacy-online-14"> 发布链接: https://community.nxp.com/t5/i-MX-Processors/Could-not-invoke-dnf-for-external-kernel-module-in-Yocto/m-p/1627964#M203740 帖子作者 @JohnKlug|Email Author 报告人:ieeioct |Email Reporter 报告的帖子有 2 个回复。
查看全文
[ABUSE] Post By: @JohnKlug / Board: imx-processors / Reported by: wtppkzvr wtppkzvr has reported the post Could not invoke dnf for external kernel module in Yocto kirkstone posted by @JohnKlug for the following reasons: Reason: Spam Details: http://www.batshaw.qc.ca/fr/node/175"> https://openreviewhub.org/applicant-reviewers/goodwinbustard/become-reviewer"> https://new.roger24.de/pharmacy-online-4"> http://ru.ph-ed-plus.nspu.ru/article/17932"> http://www.hudebniburza.cz/dilo/pharmacy-online-4"> https://www.lawtech.ru/subscribe/26803-27092025"> https://www.availcalendar.com/calendar/25578"> https://enki.ua/advert/16923"> https://oregonweddingday.com/your-couple-name-2326"> http://ysrp.bnl.bm/review/pharmacy-online"> http://stage.isupportveterans.org/node/5260"> https://eventandjudge.com/node/24447"> http://santorini.cz/node/6337"> https://carros-usados.us/pharmacy-online-9"> https://mnbride.com/your-couple-name-2393"> https://www.isupportveterans.org/node/3030"> https://www.lawtech.ru/subscribe/26803-27092025"> https://museusvalenciades.grupotecopy.es/en/node/2366"> https://www.tundus.hu/gyik/pharmacy-online-0"> http://xn--80ab2anoq0a.xn--p1ai/story/pharmacy-online-2"> http://fictioneer.org/content/pharmacy-online-7"> http://ysrp.bnl.bm/review/pharmacy-online"> https://dev.worldwar1luton.com/forum-topic/pharmacy-online-10"> https://www.jobwebby.ilovemarkso.com/domainasname-anthony-gmbh/pharmacy-online-0"> https://www.tundus.hu/gyik/pharmacy-online-0"> https://www.tripmayntra.com/pharmacy-online-6"> https://spdm.dambo.me/forums/miscellaneous/news-and-announcements/pharmacy-online-3"> https://www.globalrealtor.co.in/node/4202"> https://enki.ua/advert/16923"> https://www.tundus.hu/gyik/pharmacy-online-0"> https://www.dambo.me/forums/%EB%B0%94%EB%91%91%EC%9D%B4/%ED%98%84%EA%B8%88%EB%B0%94%EB%91%91%EC%9D%B4/pharmacy-online-4"> https://dev.worldwar1luton.com/forum-topic/pharmacy-online-10"> https://rus.langnotes.ru/songs/pharmacy-online"> https://www.intellectualpedia.org/countyelectron-pharmacy-online-2"> https://createc.mhesi.go.th/node/236953"> http://ph-ed-plus.nspu.ru/article/17929"> https://wibride.com/your-couple-name-2348"> https://www.lawtech.ru/subscribe/26803-27092025"> https://www.trustcirclenetworks.org/issues/2221"> https://www.isupportveterans.org/node/3030"> Post link: https://community.nxp.com/t5/i-MX-Processors/Could-not-invoke-dnf-for-external-kernel-module-in-Yocto/m-p/1627964#M203740 Post author: @JohnKlug | Email Author Reported by: wtppkzvr | Email Reporter The reported post has 2 replies.
查看全文
[ABUSE] Post By: @JohnKlug / Board: imx-processors / Reported by: ieeioct ieeioct has reported the post Could not invoke dnf for external kernel module in Yocto kirkstone posted by @JohnKlug for the following reasons: Reason: Harassment Details: https://www.itconnecta.es/pharmacy-online-0"> http://shop.ls-s.ru/product/10109"> https://jeunescathos-bxl.org/fr/content/pharmacy-online-49"> https://wibride.com/your-couple-name-2390"> http://old.jeunescathos.org/fr/content/pharmacy-online-18"> https://www.tripmayntra.com/pharmacy-online-5"> https://www.drupalcamp.cr/es/node/4820"> https://www.cableman.ru/node/84350"> https://www.intimus.pt/pharmacy-online-21"> https://reflexologie-cerilly.fr/en/node/4250"> https://stage.cc.radiant.digital/node/3057"> http://old-bxl.jeunescathos.org/fr/content/pharmacy-online-4"> https://www.e123.hk/zh-hant/e-center/personal-wall/81576/933273"> https://www.rapidservice.com.ec/es/content/1-carga-pesada-14480"> https://www.globalrealtor.co.in/node/4222"> https://darkmetal2039.com/history/pharmacy-online-4"> https://www.vgame.ca/node/46822"> http://www.alsongs.com.hk/node/15605"> http://ysrp.bnl.bm/review/pharmacy-online-4"> https://www.thebiketube.com/owleye-yasmine"> https://www.vgame.ca/node/46822"> https://www.jobwebby.com/domainasname-erma-gmbh/pharmacy-online-1"> https://www.itconnecta.es/pharmacy-online-0"> https://www.jobwebby.com/domainasname-erma-gmbh/pharmacy-online-1"> http://dev.nikol-buket.com/content/pharmacy-online-5"> https://primfootball.com/pharmacy-online-12"> https://sitepe.iiec.unam.mx/node/6205"> https://californiaweddingday.com/your-couple-name-2365"> https://backend.dawahnigeria.com/audit/304763"> http://surfing.4fan.cz/node/136"> http://ru.ph-ed-plus.nspu.ru/article/17952"> http://xn--37-6kci4a9aahjr0a.xn--p1ai/pharmacy-online-ivanovo-10"> https://www.geofak85.ru/pharmacy-online-0"> https://www.drupalcamp.cr/es/node/4820"> https://evere.co/articles/pharmacy-online-1"> https://investor18.ru/investors/pharmacy-online-3"> http://ru.ph-ed-plus.nspu.ru/article/17952"> http://xn--80ab2anoq0a.xn--p1ai/story/pharmacy-online-3"> http://old.jeunescathos.org/fr/content/pharmacy-online-18"> http://fictioneer.org/content/pharmacy-online-14"> Post link: https://community.nxp.com/t5/i-MX-Processors/Could-not-invoke-dnf-for-external-kernel-module-in-Yocto/m-p/1627964#M203740 Post author: @JohnKlug | Email Author Reported by: ieeioct | Email Reporter The reported post has 2 replies.
查看全文
S32K3_HSE on how secure boot combined with HSE prevents malicious version fallbacks Hello: There is a question about S32K3 about mass production, information security. It's about bt version fallback. Let's say I have a bt version that is higher, and someone gets a bt that has a vulnerability from a previous version that is lower, and then attempts to swipe that bt version in. Is there any way to avoid this at the secure boot level? Because secure boot also verifies the MAC information of the fixed flash address. If I write a low version of the signature checking data is also OK, how to avoid this situation? Is it possible to use the HSE internal secure area for this kind of signature verification? Or do I need to do version management with the upgraded version? Which approach is currently used by everyone? Re: S32K3_HSE关于安全启动结合HSE如何防止恶意版本回退 Hi @rujunzhou  Common approach is like this: use a signed version field in the app header and an HSE monotonic counter as the freshness gate. Before installing a new update, read the HSE counter (device’s minimum accepted version) and compare it against the authenticated fw_version in the update image. If fw_version < counter, reject the update, else proceed. After a successful update, increment the monotonic counter so the device can’t accept older, vulnerable images later. Regards, Lukas
查看全文
How select "Language standard" Hello, if I create a new SDK project (from the SDK project wizard), after selecting board and other configuration (device packages, project type, components...), I get "Advanced project settings" screen where I can select the MCU C Compiler. By default, "Language standard" points to "Compiler default", but I can choose if I want "GNU C90 (-std=gnu90). However, if I create a new C project (not SDK), I can't see this screen and I can't choose "Language standard". How can I change that? Thanks. Re: How select "Language standard" Great breakdown on choosing the right language standard—your explanation really clears up a lot of confusion I’ve seen around this topic. While experimenting with different settings, I stumbled on some Elvish translation tips that made testing character sets a bit more fun. It’s interesting how adjusting standards can change the behavior of compilers in subtle ways. Looking forward to more posts like this! Re: How select "Language standard" Hi ptcaos, If you right click in your project click in properties->C/C++ Build->Settings->MCU C Compiler->Dialect you can select the language: Best Regards, Alexis Andalon
查看全文
i.MX7ULPでタンパーピンを使用する i.MX7ULP のタンパー ピンを使用してタンパー イベント情報を処理するために、カーネルで SECVIO を有効にしました。 適切な改ざんピンの構成と検出のために、デバイス ツリー (DTS) または U-Boot で何かを変更する必要はありますか? さらに、ユーザー空間でタンパー ハンドラーを使用する方法を示すアクセス可能な例やアプリケーションはありますか? i.MX7ULP Security Re: Using Tamper Pin on i.MX7ULP こんにちは、 i.MX7ULP での適切な改ざんピンの設定と検出: 1. デバイスツリー構成: カーネルで SECVIO がすでに有効になっている場合は、改ざん機能のためにデバイス ツリー (DTS) を必ずしも変更する必要はありません。タンパー ピンは通常、デバイス ツリー内の標準 GPIO 構成ではなく、SNVS (セキュア不揮発性ストレージ) モジュールとそのドライバによって処理されます。 2. U-Boot 構成: U-Boot でも改ざん検出を使用する予定の場合は、U-Boot defconfig に「CONFIG_IMX_TAMPER=y」を追加して再構築する必要があります。これにより、ブートローダーの改ざん検出機能が有効になります。 3. ユーザー空間の改ざんハンドラー: ユーザー空間アプリケーションの場合、i.MX7ULP 専用の標準化されたサンプル アプリケーションはありません。ただし、改ざんのメカニズムはこれらのプラットフォーム間で基本的に同様であるため、i.MX6UL や i.MX7D などの同様のプラットフォームからの実装を適応させることができます。 実装のガイダンスについては、以下を参照してください。 - i.MX7リファレンスマニュアルのセクション3.1.4.2(改ざん検出) - アプリケーションノート「i.MX7Dsabresd の改ざん防止アプリケーション」(AN12210.pdf) カーネル内の SECVIO ドライバは改ざんイベント情報を処理し、改ざんが検出された場合に適切なセキュリティ対策をトリガーするように構成できます。これらのイベント情報は、SNVS_LP ステータス レジスタ (LPSR) を通じて監視し、SNVS_LP タンパー検出器構成レジスタ (LPTDCR) を通じて管理できます。 よろしくお願いします。
查看全文
[ABUSE] Post By: @JohnKlug / Board: imx-processors / Reported by: srpglav srpglav has reported the post Could not invoke dnf for external kernel module in Yocto kirkstone posted by @JohnKlug for the following reasons: Reason: Nudity or Sexual activity Details: https://www.trustcirclenetworks.org/issues/2226"> https://jeunescathos-bxl.org/fr/content/pharmacy-online-1"> https://www.onlyhomebuyers.com/for-sale-by-owner-homes/sc/45"> https://www.vgame.ca/node/46834"> https://jeunescathos-bxl.org/fr/content/pharmacy-online-1"> http://www.hudebniburza.cz/dilo/pharmacy-online-5"> https://museusvalenciapre.grupotecopy.es/en/node/3707"> https://eventandjudge.com/node/24423"> https://ufa-help.ru/content/pharmacy-online-1"> https://wibride.com/your-couple-name-2327"> https://ruckup.org/caregivers-forum/topic/6378"> https://www.aairlab.com/IDev/?q=node/259"> https://ufa-help.ru/content/pharmacy-online-1"> https://hetnieuweteamwerken.be/forums/forum/pharmacy-online-1"> https://futbal.totalhockeymanagement.com/pharmacy-online-16"> http://lsdsng.com/node/4267"> https://www.siriuspup.com/breeders/pharmacy-online-6"> https://new.roger24.de/pharmacy-online-9"> https://www.w2wdev.spartlow.com/song/16565"> https://www.lawtech.ru/subscribe/26815-16102025"> https://www.intimus.pt/pharmacy-online-9"> https://www.07acg.com/node/43310"> https://www.tripmayntra.com/pharmacy-online-3"> https://www.vgame.ca/node/46834"> https://futbal.totalhockeymanagement.com/pharmacy-online-16"> http://old.jeunescathos.org/fr/content/pharmacy-online-5"> https://slp.millingtonpubliclibrary.org/content/pharmacy-online-11"> https://eventandjudge.com/node/24423"> https://escolesvalenciades.grupotecopy.es/val/node/1299"> https://gglabs.us/node/5698"> https://californiaweddingday.com/your-couple-name-2366"> https://www.isupportveterans.org/node/3037"> https://www.jobwebby.com/domainasname-erma-gmbh/pharmacy-online-2"> https://obzorpoker.info/forum/pharmacy-online-7"> https://carros-usados.us/pharmacy-online-5"> https://jeunescathos-bxl.org/fr/content/pharmacy-online-1"> http://onlyforsalebyowner.com/for-sale-by-owner-homes/pr/76-0"> https://gglabs.us/node/5698"> https://enki.ua/advert/16930"> https://www.chstm.org/node/79783"> Post link: https://community.nxp.com/t5/i-MX-Processors/Could-not-invoke-dnf-for-external-kernel-module-in-Yocto/m-p/1627964#M203740 Post author: @JohnKlug | Email Author Reported by: srpglav | Email Reporter The reported post has 2 replies.
查看全文