Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Mobile and Embedded
  4. QT5 camera video record only once.
Forum Updated to NodeBB v4.3 + New Features

QT5 camera video record only once.

Scheduled Pinned Locked Moved Unsolved Mobile and Embedded
21 Posts 4 Posters 2.0k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • B Offline
    B Offline
    Bonty
    wrote on last edited by
    #1

    Hi,

    I am working on camera recording application. When I run application the camera recording done once, at second time the application and camera freezes.

    Please help!!

    1 Reply Last reply
    0
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #2

      Hi,

      You should add:

      • Which version of Qt 5
      • Which OS
      • Device you run that on
      • Camera type

      Did you check the system logs to see if there was something about the camera going on ?

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      0
      • B Offline
        B Offline
        Bonty
        wrote on last edited by
        #3
        • Which version of Qt 5 = Qt5.15
        • Which OS =Linux
        • Device you run that on = imx8m-mini processor board by nxp
        • Camera type = raw video out

        Using h264 codec.

        How can I check system logs?

        On debug window I am getting below messeges:-

        qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
        Unable to query the parameter info: QCameraImageProcessingControl::WhiteBalancePreset : "Invalid argument"
        Unable to query the parameter info: QCameraImageProcessingControl::ColorTemperature : "Invalid argument"
        Unable to query the parameter info: QCameraImageProcessingControl::ContrastAdjustment : "Invalid argument"
        Unable to query the parameter info: QCameraImageProcessingControl::SaturationAdjustment : "Invalid argument"
        Unable to query the parameter info: QCameraImageProcessingControl::BrightnessAdjustment : "Invalid argument"
        Unable to query the parameter info: QCameraImageProcessingControl::SharpeningAdjustment : "Invalid argument"
        
        jsulmJ 1 Reply Last reply
        0
        • B Bonty
          • Which version of Qt 5 = Qt5.15
          • Which OS =Linux
          • Device you run that on = imx8m-mini processor board by nxp
          • Camera type = raw video out

          Using h264 codec.

          How can I check system logs?

          On debug window I am getting below messeges:-

          qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
          Unable to query the parameter info: QCameraImageProcessingControl::WhiteBalancePreset : "Invalid argument"
          Unable to query the parameter info: QCameraImageProcessingControl::ColorTemperature : "Invalid argument"
          Unable to query the parameter info: QCameraImageProcessingControl::ContrastAdjustment : "Invalid argument"
          Unable to query the parameter info: QCameraImageProcessingControl::SaturationAdjustment : "Invalid argument"
          Unable to query the parameter info: QCameraImageProcessingControl::BrightnessAdjustment : "Invalid argument"
          Unable to query the parameter info: QCameraImageProcessingControl::SharpeningAdjustment : "Invalid argument"
          
          jsulmJ Offline
          jsulmJ Offline
          jsulm
          Lifetime Qt Champion
          wrote on last edited by
          #4

          @Bonty said in QT5 camera video record only once.:

          How can I check system logs?

          You can use the command "dmesg" to see kernel logs.
          Linux: which one?

          https://forum.qt.io/topic/113070/qt-code-of-conduct

          1 Reply Last reply
          0
          • B Offline
            B Offline
            Bonty
            wrote on last edited by Bonty
            #5

            Custom yocto based linux.

            Also when I re-initialise camera and recorder every-time when I start new recording, its working but a small glitch occurs.

            jsulmJ 1 Reply Last reply
            0
            • B Bonty

              Custom yocto based linux.

              Also when I re-initialise camera and recorder every-time when I start new recording, its working but a small glitch occurs.

              jsulmJ Offline
              jsulmJ Offline
              jsulm
              Lifetime Qt Champion
              wrote on last edited by
              #6

              @Bonty The question is: what Linux distribution and version. You posted the Linux kernel version.

              https://forum.qt.io/topic/113070/qt-code-of-conduct

              1 Reply Last reply
              0
              • B Offline
                B Offline
                Bonty
                wrote on last edited by
                #7

                Gstreamer and ffmpeg working fine.

                Here is my code:-

                #include "mainwindow.h"
                #include "ui_mainwindow.h"
                #include <QPushButton>
                uint32_t videoCounter = 0;
                MainWindow::MainWindow(QWidget *parent)
                    : QMainWindow(parent)
                    , ui(new Ui::MainWindow)
                    , recording(false)
                {
                    ui->setupUi(this);
                    // Initialize camera
                    const QList<QCameraInfo> cameras = QCameraInfo::availableCameras();
                    camera.reset(new QCamera(cameras.value(1)));
                    imageCapture = new QCameraImageCapture(camera.data(), this);
                    camera->setViewfinder(ui->widget);
                    camera->setCaptureMode(QCamera::CaptureVideo);
                    ui->widget->setAspectRatioMode(Qt::IgnoreAspectRatio);
                
                
                    // Initialize Media Recorder
                    mediaRecorder = new QMediaRecorder(camera.data(), this);
                    QVideoEncoderSettings videoSettings;
                
                    videoSettings.setCodec("video/x-vp8");
                    videoSettings.setResolution(640, 512);
                    videoSettings.setFrameRate(60.0);
                    mediaRecorder->setVideoSettings(videoSettings);
                    mediaRecorder->setContainerFormat("video/x-matroska");
                
                    // Initialize Image Capture
                    imageCapture = new QCameraImageCapture(camera.data(), this);
                
                
                    //Initialize Serial Port
                    serialPort = new QSerialPort(this);
                    serialPort->setPortName("/dev/ttymxc2");        ///dev/ttyUSB0
                    serialPort->setBaudRate(QSerialPort::Baud115200);
                    serialPort->setDataBits(QSerialPort::Data8);
                    serialPort->setParity(QSerialPort::NoParity);
                    serialPort->setStopBits(QSerialPort::OneStop);
                    if(serialPort->open(QIODevice::ReadWrite))
                    {
                        qDebug() << "port initialized";
                    }
                    else
                    {
                        qDebug() << "port not initialized";
                    }
                    connect(serialPort, &QSerialPort::readyRead, this, &MainWindow::readData);
                
                
                
                    // Btton initialize
                
                    // ui->pushButton_VideoRecord->setText("abc");
                    ui->pushButton_VideoRecord->setVisible(false);
                
                
                    // Start the camera
                    camera->start();
                    qDebug() << "codecs : " << mediaRecorder->supportedVideoCodecs();
                    qDebug() << "containers : " << mediaRecorder->supportedContainers();
                }
                
                MainWindow::~MainWindow()
                {
                    delete ui;
                    delete viewfinder;
                    delete imageCapture;
                    delete mediaRecorder;
                }
                
                
                void MainWindow::readData()
                {
                    videoCounter++;
                    QByteArray rxData = serialPort->read(1);
                    qDebug() << "rxData" << rxData;
                    int rxValue = rxData.at(0) - 48;
                
                    qDebug() << "rxValue: " << rxValue;
                    switch(rxValue)
                    {
                    case 0:
                        // user Code
                        qDebug()<<"Inside Level:" << rxValue;
                        break;
                    case 1:
                        //user code
                        qDebug()<<"Inside Level:" << rxValue;
                
                        break;
                    case 2:
                        // user Code
                        qDebug()<<"Inside Level:" << rxValue;
                        if(mediaRecorder->state() == QMediaRecorder::StoppedState)
                        {
                
                
                            QString fileName = "vid_" + QString::number(videoCounter) + ".mkv";
                            qDebug() << "file name: " << fileName;
                            mediaRecorder->setOutputLocation(QUrl::fromLocalFile(fileName));
                
                
                            qDebug()<<mediaRecorder->state();
                            qDebug()<<mediaRecorder->status();
                            qDebug()<<mediaRecorder->error();
                
                            qDebug()<<"Recording Start: " << mediaRecorder->state();
                            ui->pushButton_VideoRecord->setVisible(true);
                            mediaRecorder->record();
                
                        }
                        break;
                    case 3:
                        //user code
                        qDebug()<<"Inside Level:" << rxValue;
                        // startStopRecording();
                
                        break;
                    case 4:
                        // user Code
                        qDebug()<<"Inside Level:" << rxValue;
                        //imageCapture->capture();
                        //qDebug()<<"Image Captured" ;
                        break;
                    case 5:
                        //user code
                        qDebug()<<"Inside Level:" << rxValue;
                
                        break;
                    case 6:
                        // user Code
                        qDebug()<<"Inside Level:" << rxValue;
                
                        break;
                    case 7:
                        //user code
                        qDebug()<<"Inside Level:" << rxValue;
                        break;
                    case 8:
                        //user code
                        qDebug()<<"Inside Level:" << rxValue;
                
                        if(mediaRecorder->state() == QMediaRecorder::RecordingState)
                        {
                
                            mediaRecorder->stop();
                            qDebug()<<mediaRecorder->state();
                            qDebug()<<mediaRecorder->status();
                            qDebug()<<mediaRecorder->error();
                            qDebug()<<"Recording stop: " << mediaRecorder->state();
                            ui->pushButton_VideoRecord->setVisible(false);
                        }
                
                        break;
                    default:
                        break;
                
                
                    }
                    rxData[0] = '\0';
                }
                
                
                

                Trigger record and stop video on serial event.

                Please help !!!!

                1 Reply Last reply
                0
                • B Offline
                  B Offline
                  Bonty
                  wrote on last edited by
                  #8

                  Below are the available codecs and containers available on processor:-

                  ====== V4L2ENC: 1.18.5 build on Nov  9 2021 07:44:26. ======
                  codecs :  ("video/x-h264", "video/x-vp8", "video/x-vp8, variant=(string)itu", "image/jpeg", "image/png", "image/x-portable-bitmap", "image/x-portable-graymap", "image/x-portable-pixmap", "image/x-portable-anymap", "video/x-theora", "image/webp", "application/x-yuv4mpeg", "video/x-amv", "video/x-asus", "image/bmp", "video/x-cinepak", "video/x-cirrus-logic-accupak", "video/x-dnxhd", "video/x-dv, systemstream=(boolean)false", "video/x-ffv", "video/x-gst-av-ffvhuff", "video/x-flash-screen", "video/x-flash-screen2", "video/x-flash-video", "video/x-h261", "video/x-h263, variant=(string)itu", "video/x-huffyuv", "image/x-j2c", "video/mpeg, mpegversion=(int)1, systemstream=(boolean)false", "video/mpeg, mpegversion=(int)2, systemstream=(boolean)false", "video/mpeg, mpegversion=(int)4, systemstream=(boolean)false", "video/x-divx", "video/x-msmpeg", "video/x-msvideocodec", "image/pbm", "image/x-pcx", "video/x-gst-av-pgmyuv", "image/ppm", "video/x-prores", "video/x-rle, layout=(string)quicktime", "video/x-gst-av-roqvideo", "video/x-pn-realvideo", "image/x-sgi", "image/x-sun-raster", "video/x-svq", "image/x-tga", "image/tiff", "video/x-wmv, wmvversion=(int)1", "video/x-wmv, wmvversion=(int)2", "video/x-zmbv")
                  containers :  ("video/quicktime, variant=(string)3gpp", "audio/x-aiff", "video/x-ms-asf", "video/mpegts, systemstream=(boolean)true", "video/x-msvideo", "video/x-flv", "video/quicktime, variant=(string)iso-fragmented", "video/x-matroska", "video/x-matroska-3d", "audio/x-matroska", "video/mj2", "video/quicktime, variant=(string)iso", "video/mpeg, mpegversion=(int)2, systemstream=(boolean)true", "application/mxf", "application/ogg", "audio/ogg", "video/ogg", "video/quicktime, variant=(string)apple", "video/quicktime", "audio/x-wav", "audio/x-rf64", "video/webm", "audio/webm", "video/quicktime, variant=(string)3g2", "application/x-gst-av-a64", "application/x-gst-av-adx", "audio/x-amr-nb-sh", "application/x-gst-av-apng", "application/x-gst-av-ast", "audio/x-au", "application/x-gst-av-avm2", "application/x-gst-av-bit", "application/x-gst-av-caf", "application/x-gst-av-codec2", "application/x-gst-av-dash", "application/x-gst-av-daud", "video/x-dv, systemstream=(boolean)true", "application/x-gst-av-dvd", "application/x-gst-av-f4v", "application/x-gst-av-film_cpk", "application/x-gst-av-filmstrip", "application/x-gst-av-fits", "application/gxf", "application/x-gst-av-hash", "application/x-gst-av-hds", "application/x-gst-av-hls", "application/x-gst-av-ico", "application/x-gst-av-ilbc", "video/quicktime, variant=(string)ipod", "application/x-gst-av-ircam", "application/x-gst-av-ismv", "video/x-ivf", "application/x-gst-av-kvag", "application/x-gst-av-latm", "application/x-gst-av-md5", "application/x-gst-av-mkvtimestamp_v2", "application/x-gst-av-mmf", "video/mpeg, systemstream=(boolean)true", "application/x-gst-av-mxf_opatom", "application/x-gst-av-nut", "application/x-gst-av-oga", "application/x-gst-av-ogv", "application/x-gst-av-oma", "application/x-gst-av-opus", "video/quicktime, variant=(string)psp", "application/x-pn-realmedia, systemstream=(boolean)true", "application/x-gst-av-rso", "application/x-gst-av-rtsp", "application/x-gst-av-sap", "application/x-gst-av-singlejpeg", "application/x-gst-av-smjpeg", "application/x-gst-av-smoothstreaming", "application/x-gst-av-sox", "application/x-gst-av-spdif", "application/x-gst-av-spx", "application/x-gst-av-streamhash", "application/x-gst-av-svcd", "application/x-shockwave-flash", "audio/x-ttafile", "application/x-gst-av-uncodedframecrc", "application/x-gst-av-vc1test", "application/x-gst-av-vcd", "application/x-gst-av-vidc", "application/x-gst-av-vob", "audio/x-voc", "application/x-gst-av-w64", "application/x-gst-av-webp", "application/x-gst-av-wtv", "audio/mpeg, mpegversion=(int)1")
                  qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
                  
                  1 Reply Last reply
                  0
                  • SGaistS Offline
                    SGaistS Offline
                    SGaist
                    Lifetime Qt Champion
                    wrote on last edited by
                    #9

                    Remove your serial code for the moment and use buttons for starting and stopping. This way you reduce your application complexity.

                    Note that your serial port code does not take into account the size of the data received so you might just be handling the wrong value.

                    Interested in AI ? www.idiap.ch
                    Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                    1 Reply Last reply
                    0
                    • B Offline
                      B Offline
                      Bonty
                      wrote on last edited by
                      #10

                      I have only one usb port on the board and also I cant able to use usb hub, so I have no option for mouse to connect. I have only serial port to control. Is there any other way to test?

                      jsulmJ 1 Reply Last reply
                      0
                      • B Bonty

                        I have only one usb port on the board and also I cant able to use usb hub, so I have no option for mouse to connect. I have only serial port to control. Is there any other way to test?

                        jsulmJ Offline
                        jsulmJ Offline
                        jsulm
                        Lifetime Qt Champion
                        wrote on last edited by
                        #11

                        @Bonty said in QT5 camera video record only once.:

                        Is there any other way to test?

                        Didn't @SGaist provide you a suggestion what to try?

                        https://forum.qt.io/topic/113070/qt-code-of-conduct

                        1 Reply Last reply
                        0
                        • B Offline
                          B Offline
                          Bonty
                          wrote on last edited by
                          #12

                          I have tried with timer but still same problem, camera freezes. Is there any way to reset camera without blinking the screen because on reinitializing camera the problem solved but there is a blink on screen.

                          1 Reply Last reply
                          0
                          • B Offline
                            B Offline
                            Bonty
                            wrote on last edited by
                            #13

                            @jsulm I don't have option for mouse button.

                            1 Reply Last reply
                            0
                            • SGaistS Offline
                              SGaistS Offline
                              SGaist
                              Lifetime Qt Champion
                              wrote on last edited by
                              #14

                              Did you try to understand why the USB hub was not properly detected ? I would venture that it would be of help to improve development experience on your device.

                              Interested in AI ? www.idiap.ch
                              Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                              1 Reply Last reply
                              0
                              • B Offline
                                B Offline
                                Bonty
                                wrote on last edited by
                                #15

                                Actually I am working on minimal compact and low power SOC, so I can't run both mouse and camera at a same time using hub, it shows power issue.

                                1 Reply Last reply
                                0
                                • SGaistS Offline
                                  SGaistS Offline
                                  SGaist
                                  Lifetime Qt Champion
                                  wrote on last edited by
                                  #16

                                  Did you consider using a powered USB Hub ?

                                  Interested in AI ? www.idiap.ch
                                  Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                                  1 Reply Last reply
                                  0
                                  • B Offline
                                    B Offline
                                    Bonty
                                    wrote on last edited by
                                    #17

                                    No, I didn't find powered USB Hub.

                                    1 Reply Last reply
                                    0
                                    • R Offline
                                      R Offline
                                      Riya21
                                      wrote on last edited by Riya21
                                      #18
                                      This post is deleted!
                                      1 Reply Last reply
                                      0
                                      • SGaistS Offline
                                        SGaistS Offline
                                        SGaist
                                        Lifetime Qt Champion
                                        wrote on last edited by
                                        #19

                                        May I recommend to search a bit more ?
                                        That will make your life easier.

                                        You did not answer the question related to grabbing the system log.

                                        Interested in AI ? www.idiap.ch
                                        Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                                        1 Reply Last reply
                                        0
                                        • B Offline
                                          B Offline
                                          Bonty
                                          wrote on last edited by Bonty
                                          #20

                                          Hi @SGaist

                                          Please find below system log:-

                                          root@imx8mmevk:~# dmesg
                                          
                                          [    0.103414] usbcore: registered new interface driver usbfs
                                          [    0.103451] usbcore: registered new interface driver hub
                                          [    0.103481] usbcore: registered new device driver usb
                                          [    0.104771] mc: Linux media interface: v0.10
                                          [    0.104797] videodev: Linux video capture interface: v2.00
                                          [    0.104861] pps_core: LinuxPPS API ver. 1 registered
                                          [    0.104868] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
                                          [    0.104885] PTP clock support registered
                                          [    0.105043] EDAC MC: Ver: 3.0.0
                                          [    0.106171] FPGA manager framework
                                          [    0.106249] Advanced Linux Sound Architecture Driver Initialized.
                                          [    0.106871] Bluetooth: Core ver 2.22
                                          [    0.106899] NET: Registered protocol family 31
                                          [    0.106905] Bluetooth: HCI device and connection manager initialized
                                          [    0.106917] Bluetooth: HCI socket layer initialized
                                          [    0.106925] Bluetooth: L2CAP socket layer initialized
                                          [    0.106938] Bluetooth: SCO socket layer initialized
                                          [    0.107695] clocksource: Switched to clocksource arch_sys_counter
                                          [    0.107869] VFS: Disk quotas dquot_6.6.0
                                          [    0.107921] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
                                          [    0.108113] pnp: PnP ACPI: disabled
                                          [    0.114060] NET: Registered protocol family 2
                                          [    0.114183] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
                                          [    0.115073] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
                                          [    0.115104] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
                                          [    0.115241] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear)
                                          [    0.115477] TCP: Hash tables configured (established 16384 bind 16384)
                                          [    0.115563] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
                                          [    0.115607] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
                                          [    0.115783] NET: Registered protocol family 1
                                          [    0.116112] RPC: Registered named UNIX socket transport module.
                                          [    0.116119] RPC: Registered udp transport module.
                                          [    0.116125] RPC: Registered tcp transport module.
                                          [    0.116132] RPC: Registered tcp NFSv4.1 backchannel transport module.
                                          [    0.116853] PCI: CLS 0 bytes, default 64
                                          [    0.117474] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
                                          [    0.118197] kvm [1]: IPA Size Limit: 40 bits
                                          [    0.119641] kvm [1]: GICv3: no GICV resource entry
                                          [    0.119648] kvm [1]: disabling GICv2 emulation
                                          [    0.119669] kvm [1]: GIC system register CPU interface enabled
                                          [    0.119767] kvm [1]: vgic interrupt IRQ9
                                          [    0.119869] kvm [1]: Hyp mode initialized successfully
                                          [    0.122703] Initialise system trusted keyrings
                                          [    0.122816] workingset: timestamp_bits=42 max_order=19 bucket_order=0
                                          [    0.128609] squashfs: version 4.0 (2009/01/31) Phillip Lougher
                                          [    0.129204] NFS: Registering the id_resolver key type
                                          [    0.129229] Key type id_resolver registered
                                          [    0.129236] Key type id_legacy registered
                                          [    0.129316] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
                                          [    0.129323] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
                                          [    0.129345] jffs2: version 2.2. (NAND) \xc2\xa9 2001-2006 Red Hat, Inc.
                                          [    0.129699] 9p: Installing v9fs 9p2000 file system support
                                          [    0.165842] Key type asymmetric registered
                                          [    0.165851] Asymmetric key parser 'x509' registered
                                          [    0.165885] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 241)
                                          [    0.165893] io scheduler mq-deadline registered
                                          [    0.165898] io scheduler kyber registered
                                          [    0.172155] EINJ: ACPI disabled.
                                          [    0.181328] imx-sdma 302c0000.dma-controller: Direct firmware load for imx/sdma/sdma-imx7d.bin failed with error -2
                                          [    0.181344] imx-sdma 302c0000.dma-controller: Falling back to sysfs fallback for: imx/sdma/sdma-imx7d.bin
                                          [    0.189332] mxs-dma 33000000.dma-controller: initialized
                                          [    0.191396] Bus freq driver module loaded
                                          [    0.197188] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
                                          [    0.199574] 30860000.serial: ttymxc0 at MMIO 0x30860000 (irq = 47, base_baud = 5000000) is a IMX
                                          [    0.200385] 30880000.serial: ttymxc2 at MMIO 0x30880000 (irq = 48, base_baud = 5000000) is a IMX
                                          [    0.200936] 30890000.serial: ttymxc1 at MMIO 0x30890000 (irq = 49, base_baud = 1500000) is a IMX
                                          [    1.196705] printk: console [ttymxc1] enabled
                                          [    1.208249] imx-drm 32c00000.bus:display-subsystem: bound imx-lcdif-crtc.0 (ops lcdif_crtc_ops)
                                          [    1.217104] imx_sec_dsim_drv 32e10000.mipi_dsi: version number is 0x1060200
                                          [    1.224136] imx_sec_dsim_drv 32e10000.mipi_dsi: Failed to attach bridge: 32e10000.mipi_dsi
                                          [    1.232410] imx_sec_dsim_drv 32e10000.mipi_dsi: failed to bind sec dsim bridge: -517
                                          [    1.251028] loop: module loaded
                                          [    1.255202] of_reserved_mem_lookup() returned NULL
                                          [    1.260126] megasas: 07.714.04.00-rc1
                                          [    1.265328] imx ahci driver is registered.
                                          [    1.273691] spi-nor spi0.0: n25q256ax1 (32768 Kbytes)
                                          [    1.285916] libphy: Fixed MDIO Bus: probed
                                          [    1.291412] tun: Universal TUN/TAP device driver, 1.6
                                          [    1.297234] thunder_xcv, ver 1.0
                                          [    1.300506] thunder_bgx, ver 1.0
                                          [    1.303774] nicpf, ver 1.0
                                          [    1.307403] pps pps0: new PPS source ptp0
                                          [    1.316462] libphy: fec_enet_mii_bus: probed
                                          [    1.322505] fec 30be0000.ethernet eth0: registered PHC device 0
                                          [    1.330779] hclge is initializing
                                          [    1.334138] hns3: Hisilicon Ethernet Network Driver for Hip08 Family - version
                                          [    1.341369] hns3: Copyright (c) 2017 Huawei Corporation.
                                          [    1.346764] e1000: Intel(R) PRO/1000 Network Driver
                                          [    1.351654] e1000: Copyright (c) 1999-2006 Intel Corporation.
                                          [    1.357449] e1000e: Intel(R) PRO/1000 Network Driver
                                          [    1.362423] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
                                          [    1.368385] igb: Intel(R) Gigabit Ethernet Network Driver
                                          [    1.373790] igb: Copyright (c) 2007-2014 Intel Corporation.
                                          [    1.379399] igbvf: Intel(R) Gigabit Virtual Function Network Driver
                                          [    1.385672] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
                                          [    1.391787] sky2: driver version 1.30
                                          [    1.396041] usbcore: registered new interface driver r8152
                                          [    1.401563] usbcore: registered new interface driver asix
                                          [    1.406996] usbcore: registered new interface driver ax88179_178a
                                          [    1.413128] usbcore: registered new interface driver cdc_ether
                                          [    1.418994] usbcore: registered new interface driver net1080
                                          [    1.424685] usbcore: registered new interface driver cdc_subset
                                          [    1.430636] usbcore: registered new interface driver zaurus
                                          [    1.436253] usbcore: registered new interface driver cdc_ncm
                                          [    1.442167] VFIO - User Level meta-driver version: 0.3
                                          [    1.449686] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
                                          [    1.456267] ehci-pci: EHCI PCI platform driver
                                          [    1.460755] ehci-platform: EHCI generic platform driver
                                          [    1.466191] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
                                          [    1.472408] ohci-pci: OHCI PCI platform driver
                                          [    1.476891] ohci-platform: OHCI generic platform driver
                                          [    1.482925] usbcore: registered new interface driver uas
                                          [    1.488288] usbcore: registered new interface driver usb-storage
                                          [    1.494374] usbcore: registered new interface driver usbserial_generic
                                          [    1.500925] usbserial: USB Serial support registered for generic
                                          [    1.506961] usbcore: registered new interface driver ftdi_sio
                                          [    1.512729] usbserial: USB Serial support registered for FTDI USB Serial Device
                                          [    1.520070] usbcore: registered new interface driver usb_serial_simple
                                          [    1.526622] usbserial: USB Serial support registered for carelink
                                          [    1.532737] usbserial: USB Serial support registered for zio
                                          [    1.538417] usbserial: USB Serial support registered for funsoft
                                          [    1.544444] usbserial: USB Serial support registered for flashloader
                                          [    1.550821] usbserial: USB Serial support registered for google
                                          [    1.556765] usbserial: USB Serial support registered for libtransistor
                                          [    1.563315] usbserial: USB Serial support registered for vivopay
                                          [    1.569343] usbserial: USB Serial support registered for moto_modem
                                          [    1.575629] usbserial: USB Serial support registered for motorola_tetra
                                          [    1.582264] usbserial: USB Serial support registered for novatel_gps
                                          [    1.588641] usbserial: USB Serial support registered for hp4x
                                          [    1.594408] usbserial: USB Serial support registered for suunto
                                          [    1.600352] usbserial: USB Serial support registered for siemens_mpi
                                          [    1.606740] usbcore: registered new interface driver usb_ehset_test
                                          [    1.616151] input: 30370000.snvs:snvs-powerkey as /devices/platform/soc@0/30000000.bus/30370000.snvs/30370000.snvs:snvs-powerkey/input/input0
                                          [    1.631012] snvs_rtc 30370000.snvs:snvs-rtc-lp: registered as rtc0
                                          [    1.637235] snvs_rtc 30370000.snvs:snvs-rtc-lp: setting system clock to 1970-01-01T00:00:00 UTC (0)
                                          [    1.646483] i2c /dev entries driver
                                          [    1.650955] mx6s-csi 32e20000.csi1_bridge: initialising
                                          [    1.656903] mxc_mipi-csi 32e30000.mipi_csi: supply mipi-phy not found, using dummy regulator
                                          [    1.665597] mxc_mipi-csi 32e30000.mipi_csi: mipi csi v4l2 device registered
                                          [    1.672575] CSI: Registered sensor subdevice: mxc_mipi-csi.0
                                          [    1.678257] mxc_mipi-csi 32e30000.mipi_csi: lanes: 2, hs_settle: 13, clk_settle: 2, wclk: 1, freq: 333000000
                                          [    1.691276] Bluetooth: HCI UART driver ver 2.3
                                          [    1.695761] Bluetooth: HCI UART protocol H4 registered
                                          [    1.700910] Bluetooth: HCI UART protocol BCSP registered
                                          [    1.706254] Bluetooth: HCI UART protocol LL registered
                                          [    1.711402] Bluetooth: HCI UART protocol ATH3K registered
                                          [    1.716824] Bluetooth: HCI UART protocol Three-wire (H5) registered
                                          [    1.723181] Bluetooth: HCI UART protocol Broadcom registered
                                          [    1.728870] Bluetooth: HCI UART protocol QCA registered
                                          [    1.735706] sdhci: Secure Digital Host Controller Interface driver
                                          [    1.741904] sdhci: Copyright(c) Pierre Ossman
                                          [    1.746633] Synopsys Designware Multimedia Card Interface Driver
                                          [    1.753288] sdhci-pltfm: SDHCI platform and OF driver helper
                                          [    1.760067] sdhci-esdhc-imx 30b40000.mmc: voltage-ranges unspecified
                                          [    1.760659] sdhci-esdhc-imx 30b50000.mmc: voltage-ranges unspecified
                                          [    1.768351] sdhci-esdhc-imx 30b60000.mmc: voltage-ranges unspecified
                                          [    1.779476] ledtrig-cpu: registered to indicate activity on CPUs
                                          [    1.786385] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
                                          [    1.793337] usbcore: registered new interface driver usbhid
                                          [    1.798921] usbhid: USB HID core driver
                                          [    1.809058] optee: probing for conduit method.
                                          [    1.812151] mmc2: SDHCI controller on 30b60000.mmc [30b60000.mmc] using ADMA
                                          [    1.813604] optee: revision 3.15 (186e6de2)
                                          [    1.822006] optee: dynamic shared memory is enabled
                                          [    1.831513] optee: initialized driver
                                          [    1.837096] galcore: clk_get vg clock failed, disable vg!
                                          [    1.842890] Galcore version 6.4.3.p2.336687
                                          [    1.908427] [drm] Initialized vivante 1.0.0 20170808 for 38000000.gpu on minor 0
                                          [    1.918009] hantrodec 0 : module inserted. Major = 510
                                          [    1.923912] hantrodec 1 : module inserted. Major = 510
                                          [    1.930050] hx280enc: module inserted. Major <509>
                                          [    1.949740] mmc2: new HS400 Enhanced strobe MMC card at address 0001
                                          [    1.957351] mmcblk2: mmc2:0001 DG4016 14.7 GiB 
                                          [    1.962088] mmcblk2boot0: mmc2:0001 DG4016 partition 1 4.00 MiB
                                          [    1.968179] mmcblk2boot1: mmc2:0001 DG4016 partition 2 4.00 MiB
                                          [    1.974895] mmcblk2rpmb: mmc2:0001 DG4016 partition 3 4.00 MiB, chardev (511:0)
                                          [    1.984783] fsl-micfil-dai 30080000.micfil: GET IRQ: 24
                                          [    1.990112] fsl-micfil-dai 30080000.micfil: GET IRQ: 25
                                          [    1.990364]  mmcblk2: p1 p2
                                          [    1.995361] fsl-micfil-dai 30080000.micfil: GET IRQ: 26
                                          [    2.003429] fsl-micfil-dai 30080000.micfil: GET IRQ: 27
                                          [    2.020806] NET: Registered protocol family 26
                                          [    2.025746] NET: Registered protocol family 10
                                          [    2.031559] Segment Routing with IPv6
                                          [    2.035287] NET: Registered protocol family 17
                                          [    2.040449] Bluetooth: RFCOMM TTY layer initialized
                                          [    2.045340] Bluetooth: RFCOMM socket layer initialized
                                          [    2.050506] Bluetooth: RFCOMM ver 1.11
                                          [    2.054285] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
                                          [    2.059610] Bluetooth: BNEP filters: protocol multicast
                                          [    2.064845] Bluetooth: BNEP socket layer initialized
                                          [    2.069815] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
                                          [    2.075744] Bluetooth: HIDP socket layer initialized
                                          [    2.080745] 8021q: 802.1Q VLAN Support v1.8
                                          [    2.084949] lib80211: common routines for IEEE802.11 drivers
                                          [    2.090615] lib80211_crypt: registered algorithm 'NULL'
                                          [    2.090619] lib80211_crypt: registered algorithm 'WEP'
                                          [    2.090623] lib80211_crypt: registered algorithm 'CCMP'
                                          [    2.090627] lib80211_crypt: registered algorithm 'TKIP'
                                          [    2.090718] 9pnet: Installing 9P2000 support
                                          [    2.095027] tsn generic netlink module v1 init...
                                          [    2.099817] Key type dns_resolver registered
                                          [    2.104679] registered taskstats version 1
                                          [    2.108809] Loading compiled-in X.509 certificates
                                          [    2.135214] usb_phy_generic usbphynop1: supply vcc not found, using dummy regulator
                                          [    2.143135] usb_phy_generic usbphynop2: supply vcc not found, using dummy regulator
                                          [    2.152926] nxp-pca9450 0-0025: Read device id error
                                          [    2.158098] i2c i2c-0: IMX I2C adapter registered
                                          [    2.164238] adv7511 1-003d: supply avdd not found, using dummy regulator
                                          [    2.171070] adv7511 1-003d: supply dvdd not found, using dummy regulator
                                          [    2.177827] adv7511 1-003d: supply pvdd not found, using dummy regulator
                                          [    2.184568] adv7511 1-003d: supply a2vdd not found, using dummy regulator
                                          [    2.191398] adv7511 1-003d: supply v3p3 not found, using dummy regulator
                                          [    2.198159] adv7511 1-003d: supply v1p2 not found, using dummy regulator
                                          [    2.225009] i2c i2c-1: IMX I2C adapter registered
                                          [    2.231640] ak4458 2-0010: Failed to request supplies: -517
                                          [    2.237631] ak4458 2-0012: Failed to request supplies: -517
                                          [    2.244569] ov5640_mipi 2-003c: No sensor reset pin available
                                          [    2.250359] ov5640_mipi 2-003c: supply DOVDD not found, using dummy regulator
                                          [    2.257601] ov5640_mipi 2-003c: supply DVDD not found, using dummy regulator
                                          [    2.264696] ov5640_mipi 2-003c: supply AVDD not found, using dummy regulator
                                          [    2.284020] ov5640_mipi 2-003c: Read reg error: reg=300a
                                          [    2.289342] ov5640_mipi 2-003c: Camera is not found
                                          [    2.294476] i2c i2c-2: IMX I2C adapter registered
                                          [    2.300914] SoC: i.MX8MM revision 1.0
                                          [    2.301272] imx6q-pcie 33800000.pcie: supply epdev_on not found, using dummy regulator
                                          [    2.304954] imx-cpufreq-dt imx-cpufreq-dt: cpu speed grade 3 mkt segment 0 supported-hw 0x8 0x1
                                          [    2.312843] imx6q-pcie 33800000.pcie: EXT REF_CLK is used!.
                                          [    2.325457] imx-drm 32c00000.bus:display-subsystem: bound imx-lcdif-crtc.0 (ops lcdif_crtc_ops)
                                          [    2.335644] imx_sec_dsim_drv 32e10000.mipi_dsi: version number is 0x1060200
                                          [    2.343174] imx-drm 32c00000.bus:display-subsystem: bound 32e10000.mipi_dsi (ops imx_sec_dsim_ops)
                                          [    2.352078] imx6q-pcie 33800000.pcie: PCIe PLL locked after 20 us.
                                          [    2.352745] [drm] Initialized imx-drm 1.0.0 20120507 for 32c00000.bus:display-subsystem on minor 1
                                          [    2.358380] imx6q-pcie 33800000.pcie: host bridge /soc@0/pcie@33800000 ranges:
                                          [    2.374541] imx6q-pcie 33800000.pcie:       IO 0x001ff80000..0x001ff8ffff -> 0x0000000000
                                          [    2.382741] imx6q-pcie 33800000.pcie:      MEM 0x0018000000..0x001fefffff -> 0x0018000000
                                          [    2.391012] imx6q-pcie 33800000.pcie: invalid resource
                                          [    2.436374] random: fast init done
                                          [    2.528805] Console: switching to colour frame buffer device 240x67
                                          [    2.566928] imx-drm 32c00000.bus:display-subsystem: [drm] fb0: imx-drmdrmfb frame buffer device
                                          [    2.588102] sdhci-esdhc-imx 30b40000.mmc: voltage-ranges unspecified
                                          [    2.589181] sdhci-esdhc-imx 30b50000.mmc: voltage-ranges unspecified
                                          [    2.594540] sdhci-esdhc-imx 30b40000.mmc: allocated mmc-pwrseq
                                          [    2.600932] sdhci-esdhc-imx 30b50000.mmc: Got CD GPIO
                                          [    2.609201] debugfs: File 'Playback' in directory 'dapm' already present!
                                          [    2.618587] debugfs: File 'Capture' in directory 'dapm' already present!
                                          [    2.634681] OF: graph: no port node found in /soc@0/bus@30800000/i2c@30a30000/tcpc@50/connector
                                          [    2.639735] mmc0: SDHCI controller on 30b40000.mmc [30b40000.mmc] using ADMA
                                          [    2.643479] OF: graph: no port node found in /soc@0/bus@30800000/i2c@30a30000/tcpc@50/connector
                                          [    2.645108] mmc1: SDHCI controller on 30b50000.mmc [30b50000.mmc] using ADMA
                                          [    2.676442] ak4458 2-0010: Failed to request supplies: -517
                                          [    2.682329] ak4458 2-0012: Failed to request supplies: -517
                                          [    2.691038] ak4458 2-0010: Failed to request supplies: -517
                                          [    2.696900] ak4458 2-0012: Failed to request supplies: -517
                                          [    2.706617] cfg80211: Loading compiled-in X.509 certificates for regulatory database
                                          [    2.710047] mmc0: queuing unknown CIS tuple 0x01 (3 bytes)
                                          [    2.716318] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
                                          [    2.727769] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
                                          [    2.735809] ALSA device list:
                                          [    2.736411] platform regulatory.0: Falling back to sysfs fallback for: regulatory.db
                                          [    2.739369]   #0: imx-spdif
                                          [    2.739373]   #1: imx-audio-micfil
                                          [    2.753345]   #2: bt-sco-audio
                                          [    2.753724] mmc0: queuing unknown CIS tuple 0x1a (5 bytes)
                                          [    2.756421]   #3: wm8524-audio
                                          [    2.765275] mmc0: queuing unknown CIS tuple 0x1b (8 bytes)
                                          [    2.771444] mmc0: queuing unknown CIS tuple 0x14 (0 bytes)
                                          [    2.823549] mmc0: queuing unknown CIS tuple 0x80 (1 bytes)
                                          [    2.829681] mmc0: queuing unknown CIS tuple 0x81 (1 bytes)
                                          [    2.836120] mmc0: queuing unknown CIS tuple 0x82 (1 bytes)
                                          [    2.842231] mmc0: new ultra high speed SDR104 SDIO card at address 0001
                                          [    3.302277] ci_hdrc ci_hdrc.0: EHCI Host Controller
                                          [    3.307182] ci_hdrc ci_hdrc.0: new USB bus registered, assigned bus number 1
                                          [    3.327704] ci_hdrc ci_hdrc.0: USB 2.0 started, EHCI 1.00
                                          [    3.334260] hub 1-0:1.0: USB hub found
                                          [    3.338058] hub 1-0:1.0: 1 port detected
                                          [    3.342639] ak4458 2-0010: Failed to request supplies: -517
                                          [    3.348554] ak4458 2-0012: Failed to request supplies: -517
                                          [    3.357258] ak4458 2-0010: Failed to request supplies: -517
                                          [    3.402198] imx6q-pcie 33800000.pcie: Phy link never came up
                                          [    3.407909] imx6q-pcie 33800000.pcie: failed to initialize host
                                          [    3.413836] imx6q-pcie 33800000.pcie: unable to add pcie port.
                                          [    3.646810] EXT4-fs (mmcblk2p2): recovery complete
                                          [    3.652162] EXT4-fs (mmcblk2p2): mounted filesystem with ordered data mode. Opts: (null)
                                          [    3.660331] VFS: Mounted root (ext4 filesystem) on device 179:2.
                                          [    3.666747] devtmpfs: mounted
                                          [    3.670680] Freeing unused kernel memory: 2944K
                                          [    3.675307] Run /sbin/init as init process
                                          [    3.679427]   with arguments:
                                          [    3.679430]     /sbin/init
                                          [    3.679433]   with environment:
                                          [    3.679435]     HOME=/
                                          [    3.679438]     TERM=linux
                                          [    3.735748] systemd[1]: System time before build time, advancing clock.
                                          [    3.752141] systemd[1]: systemd 247 running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR -SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -ZSTD -SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN -PCRE2 default-hierarchy=hybrid)
                                          [    3.774526] systemd[1]: Detected architecture arm64.
                                          [    3.820247] systemd[1]: Set hostname to <imx8mmevk>.
                                          [    3.875416] systemd-sysv-generator[216]: SysV service '/etc/init.d/halt' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
                                          [    3.899240] systemd-sysv-generator[216]: SysV service '/etc/init.d/reboot' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
                                          [    3.924348] systemd-sysv-generator[216]: SysV service '/etc/init.d/sendsigs' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
                                          [    3.948696] systemd-sysv-generator[216]: SysV service '/etc/init.d/rc.local' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
                                          [    3.973167] systemd-sysv-generator[216]: SysV service '/etc/init.d/single' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
                                          [    3.997053] systemd-sysv-generator[216]: SysV service '/etc/init.d/umountfs' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
                                          [    4.021739] systemd-sysv-generator[216]: SysV service '/etc/init.d/save-rtc.sh' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
                                          [    4.047221] systemd-sysv-generator[216]: SysV service '/etc/init.d/umountnfs.sh' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
                                          [    4.207658] systemd[1]: /lib/systemd/system/docker.socket:6: ListenStream= references a path below legacy directory /var/run/, updating /var/run/docker.sock \xe2\x86\x92 /run/docker.sock; please update the unit file accordingly.
                                          [    4.334599] systemd[1]: Queued start job for default target Graphical Interface.
                                          [    4.343228] random: systemd: uninitialized urandom read (16 bytes read)
                                          [    4.409190] systemd[1]: Created slice system-getty.slice.
                                          [    4.431851] random: systemd: uninitialized urandom read (16 bytes read)
                                          [    4.440504] systemd[1]: Created slice system-modprobe.slice.
                                          [    4.463850] random: systemd: uninitialized urandom read (16 bytes read)
                                          [    4.472585] systemd[1]: Created slice system-serial\x2dgetty.slice.
                                          [    4.497712] systemd[1]: Created slice User and Session Slice.
                                          [    4.520469] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
                                          [    4.543997] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
                                          [    4.568055] systemd[1]: Reached target Host and Network Name Lookups.
                                          [    4.591842] systemd[1]: Reached target Paths.
                                          [    4.607832] systemd[1]: Reached target Remote File Systems.
                                          [    4.627822] systemd[1]: Reached target Slices.
                                          [    4.644218] systemd[1]: Reached target Swap.
                                          [    4.662663] systemd[1]: Listening on RPCbind Server Activation Socket.
                                          [    4.684267] systemd[1]: Reached target RPC Port Mapper.
                                          [    4.704263] systemd[1]: Listening on Syslog Socket.
                                          [    4.724150] systemd[1]: Listening on initctl Compatibility Named Pipe.
                                          [    4.748515] systemd[1]: Listening on Journal Audit Socket.
                                          [    4.768203] systemd[1]: Listening on Journal Socket (/dev/log).
                                          [    4.792320] systemd[1]: Listening on Journal Socket.
                                          [    4.812857] systemd[1]: Listening on Network Service Netlink Socket.
                                          [    4.838009] systemd[1]: Listening on udev Control Socket.
                                          [    4.860231] systemd[1]: Listening on udev Kernel Socket.
                                          [    4.880205] systemd[1]: Listening on User Database Manager Socket.
                                          [    4.907501] systemd[1]: Mounting Huge Pages File System...
                                          [    4.931452] systemd[1]: Mounting POSIX Message Queue File System...
                                          [    4.955444] systemd[1]: Mounting Kernel Debug File System...
                                          [    4.976256] systemd[1]: Condition check resulted in Kernel Trace File System being skipped.
                                          [    4.989679] systemd[1]: Mounting Temporary Directory (/tmp)...
                                          [    5.012769] systemd[1]: Starting Create list of static device nodes for the current kernel...
                                          [    5.039552] systemd[1]: Starting Load Kernel Module configfs...
                                          [    5.063174] systemd[1]: Starting Load Kernel Module drm...
                                          [    5.087099] systemd[1]: Starting Load Kernel Module fuse...
                                          [    5.097395] fuse: init (API version 7.32)
                                          [    5.112277] systemd[1]: Starting RPC Bind...
                                          [    5.127996] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
                                          [    5.137692] systemd[1]: systemd-journald.service: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling.
                                          [    5.150597] systemd[1]: (This warning is only shown for the first unit using IP firewalling.)
                                          [    5.164018] systemd[1]: Starting Journal Service...
                                          [    5.186092] systemd[1]: Condition check resulted in Load Kernel Modules being skipped.
                                          [    5.197979] systemd[1]: Starting Remount Root and Kernel File Systems...
                                          [    5.216164] EXT4-fs (mmcblk2p2): re-mounted. Opts: (null)
                                          [    5.235555] systemd[1]: Starting Apply Kernel Variables...
                                          [    5.259873] systemd[1]: Starting Coldplug All udev Devices...
                                          [    5.284023] systemd[1]: Starting Setup Virtual Console...
                                          [    5.310496] systemd[1]: Started RPC Bind.
                                          [    5.328427] systemd[1]: Started Journal Service.
                                          [    5.625504] systemd-journald[228]: Received client request to flush runtime journal.
                                          [    6.330977] Registered IR keymap rc-empty
                                          [    6.339912] rc rc0: gpio_ir_recv as /devices/platform/ir-receiver/rc/rc0
                                          [    6.352592] input: gpio_ir_recv as /devices/platform/ir-receiver/rc/rc0/input1
                                          [    6.365516] ak4458 2-0012: Failed to request supplies: -517
                                          [    6.375430] ak4458 2-0010: Failed to request supplies: -517
                                          [    6.376785] caam-snvs 30370000.caam-snvs: violation handlers armed - init state
                                          [    6.390211] caam 30900000.crypto: device ID = 0x0a16040100000000 (Era 9)
                                          [    6.398562] caam 30900000.crypto: job rings = 1, qi = 0
                                          [    6.407987] ak4458 2-0012: Failed to request supplies: -517
                                          [    6.417626] ak4458 2-0010: Failed to request supplies: -517
                                          [    6.448823] ak4458 2-0012: Failed to request supplies: -517
                                          [    6.461644] ak4458 2-0010: Failed to request supplies: -517
                                          [    6.767853] usb 1-1: new high-speed USB device number 2 using ci_hdrc
                                          [    6.788732] imx-sdma 302b0000.dma-controller: firmware found.
                                          [    6.788794] imx-sdma 30bd0000.dma-controller: firmware found.
                                          [    6.794639] imx-sdma 302b0000.dma-controller: loaded firmware 4.6
                                          [    6.806928] imx-sdma 302c0000.dma-controller: firmware found.
                                          [    6.934263] ak4458 2-0012: Failed to request supplies: -517
                                          [    6.944688] ak4458 2-0010: Failed to request supplies: -517
                                          [    7.287027] caam algorithms registered in /proc/crypto
                                          [    7.290231] caam 30900000.crypto: caam pkc algorithms registered in /proc/crypto
                                          [    7.290251] caam 30900000.crypto: registering rng-caam
                                          [    7.295598] Device caam-keygen registered
                                          [    7.296166] ak4458 2-0012: Failed to request supplies: -517
                                          [    7.300094] ak4458 2-0010: Failed to request supplies: -517
                                          [    7.302769] random: crng init done
                                          [    7.302782] random: 7 urandom warning(s) missed due to ratelimiting
                                          [    7.403634] cdc_acm 1-1:1.2: ttyACM0: USB ACM device
                                          [    7.405552] ak4458 2-0012: Failed to request supplies: -517
                                          [    7.409738] ak4458 2-0010: Failed to request supplies: -517
                                          [    7.409843] usbcore: registered new interface driver cdc_acm
                                          [    7.409849] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
                                          [    7.410170] ak4458 2-0012: Failed to request supplies: -517
                                          [    7.414460] ak4458 2-0010: Failed to request supplies: -517
                                          [    7.418309] ak4458 2-0012: Failed to request supplies: -517
                                          [    7.420116] uvcvideo: Unknown video format 3132564e-0000-0010-8000-00aa00389b71
                                          [    7.420139] uvcvideo: Found UVC 1.00 device Boson (09cb:4007)
                                          [    7.422897] ak4458 2-0010: Failed to request supplies: -517
                                          [    7.426914] ak4458 2-0012: Failed to request supplies: -517
                                          [    7.430876] ak4458 2-0010: Failed to request supplies: -517
                                          [    7.433164] usbcore: registered new interface driver uvcvideo
                                          [    7.433175] USB Video Class driver (1.1.1)
                                          [    7.568784] Qualcomm Atheros AR8031/AR8033 30be0000.ethernet-1:00: attached PHY driver [Qualcomm Atheros AR8031/AR8033] (mii_bus:phy_addr=30be0000.ethernet-1:00, irq=POLL)
                                          [    8.242191] audit: type=1006 audit(1719233041.529:2): pid=572 uid=0 old-auid=4294967295 auid=0 tty=(none) old-ses=4294967295 ses=1 res=1
                                          [    8.709167] audit: type=1006 audit(1719233041.997:3): pid=559 uid=0 old-auid=4294967295 auid=0 tty=tty7 old-ses=4294967295 ses=2 res=1
                                          [   11.648977] fec 30be0000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
                                          [   11.656773] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
                                          [   33.760415] VSD_3V3: disabling
                                          [  599.425579] fec 30be0000.ethernet eth0: Link is Down
                                          [  664.962153] fec 30be0000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
                                          [  664.969944] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
                                          [  746.018444] rc rc0: two consecutive events of type space
                                          [ 2483.738866] audit: type=1006 audit(1719289801.533:4): pid=636 uid=0 old-auid=4294967295 auid=0 tty=(none) old-ses=4294967295 ses=3 res=1
                                          [ 3853.639037] fec 30be0000.ethernet eth0: Link is Down
                                          [ 3858.759114] fec 30be0000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
                                          [ 3858.766908] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
                                          [ 6083.709937] audit: type=1006 audit(1719293401.594:5): pid=677 uid=0 old-auid=4294967295 auid=0 tty=(none) old-ses=4294967295 ses=4 res=1
                                          [ 6306.044435] fec 30be0000.ethernet eth0: Link is Down
                                          [ 6339.836364] fec 30be0000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
                                          [ 6339.844153] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
                                          root@imx8mmevk:~# 
                                          
                                          

                                          Some of the logs have deleted because of words limitation in forum.

                                          1 Reply Last reply
                                          0

                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Users
                                          • Groups
                                          • Search
                                          • Get Qt Extensions
                                          • Unsolved