embeded/Cortex-M3 STM2026. 9. 8. 16:22

귀찮으니 오늘도 대충대충

그나저나 고스팅이란걸 겪어보니 참 난해하구만?

 

핀은 아래처럼 구성하고

 

C1~C4는 A0~A3에 연결함 (C1을 LSB로 보게 하기 위해서)

 

코드는 효율적이진 못하지만 일단 대충 이런느낌으로 작성

row를 high / low로 바꾸면서 col을 읽는구조로 해놨고(col - pin 0~3, row - pin 4~7)

#define BUF_SIZE 50
uint8_t usb_buf[BUF_SIZE];
uint32_t count = 0;
#if 1
int prev_val = 0;
void gpio_proc()
{
  int val = 0;
  // row
  // val |= (HAL_GPIO_ReadPin(GPIOA, GPIO_PIN_4) << 4);
  // val |= (HAL_GPIO_ReadPin(GPIOA, GPIO_PIN_5) << 5);
  // val |= (HAL_GPIO_ReadPin(GPIOA, GPIO_PIN_6) << 6);
  // val |= (HAL_GPIO_ReadPin(GPIOA, GPIO_PIN_7) << 7);

  char *swname[4][4] = {
    {"S1", "S2", "S3", "S4"},
    {"S5", "S6", "S7", "S8"},
    {"S9", "S10", "S11", "S12"},
    {"S13", "S14", "S15", "S16"}
  };

  for(uint16_t row_idx = 0; row_idx < 4; row_idx ++)
  {
    uint16_t pin_arr[] = {GPIO_PIN_4, GPIO_PIN_5, GPIO_PIN_6, GPIO_PIN_7};
    HAL_GPIO_WritePin(GPIOA, pin_arr[row_idx], GPIO_PIN_SET);
    HAL_Delay(1);

    // column
    val |= (HAL_GPIO_ReadPin(GPIOA, GPIO_PIN_0) << 0);
    val |= (HAL_GPIO_ReadPin(GPIOA, GPIO_PIN_1) << 1);
    val |= (HAL_GPIO_ReadPin(GPIOA, GPIO_PIN_2) << 2);
    val |= (HAL_GPIO_ReadPin(GPIOA, GPIO_PIN_3) << 3);

    HAL_GPIO_WritePin(GPIOA, pin_arr[row_idx], GPIO_PIN_RESET);

    int col_idx = 0;
    for(int col_idx = 0; col_idx < 4; col_idx++)
    {
      if((val >> col_idx) & 0x01)
      {
        char *name = swname[row_idx][col_idx];
        sprintf((char*)usb_buf + strlen(usb_buf), "%s ", name);
      }
    }

    val = 0;
  }

  sprintf((char*)usb_buf + strlen(usb_buf), " --- %d %X\r\n", count, val);
  CDC_Transmit_FS(usb_buf, BUF_SIZE);
  memset(usb_buf,0,BUF_SIZE);
  count++;

}
#endif

 

한 열에는 누르면 전부 인식되지만

 

한 행에 누르면 (S4 + S8 + S12)

해당 라인 자체가 눌리지 않은것으로 나온다. 이래서 다이오드 다는건가?

'embeded > Cortex-M3 STM' 카테고리의 다른 글

stm32 usb composite / report id  (0) 2026.09.04
로터리 엔코더.. 2?  (0) 2026.08.31
bluepill / 로터리 엔코더 테스트  (0) 2026.08.28
stm32 port 전체 한번에 출력 변경하기  (0) 2026.06.22
stm32 uart data bit  (0) 2026.03.17
Posted by 구차니
embeded/luckfox2026. 9. 8. 11:54

아래 링크 따라해봄

[링크 : https://wiki.luckfox.com/Luckfox-Pico-Plus-Mini/Flash-image]

 

soc toolkit은 관리자 권한으로 실행해야지 usb disk를 찾는다. 머냐.. 찜찜하게

ubuntu...zip 을 압축 풀고  update.img를 제외하고 전부 선택하면 된다.

 

 

DDR 306b9977f5 wesley.yao 23/12/21-09:28:37,fwver: v1.15
S5P1
4x
fc27
rgef0
rgef1
DDRConf1
DDR2, BW=16 Col=10 Bk=4 CS0 Row=13 CS=1 Size=64MB
528MHz
DDR bin out

U-Boot SPL board init
U-Boot SPL 2017.09 (Jun 26 2025 - 11:26:17)
Trying to boot from MMC2
ENVF: Primary 0x00000000 - 0x00008000
ENVF: Primary 0x00000000 - 0x00008000
No misc partition
Trying fit image at 0x440 sector
## Verified-boot: 0
## Checking uboot 0x00200000 (lzma @0x00400000) ... sha256(155eb2eff5...) + sha256(39851d494f...) + OK
## Checking fdt 0x00260998 ... sha256(9f596c5683...) + OK
Total: 428.120/510.978 ms

Jumping to U-Boot(0x00200000)


U-Boot 2017.09 (Mar 13 2025 - 22:07:02 +0800)

Model: Rockchip RV1106 EVB Board
MPIDR: 0xf00
PreSerial: 2, raw, 0xff4c0000
DRAM:  64 MiB
Sysmem: init
Relocation Offset: 03d81000
Relocation fdt: 02dfa778 - 02dfede0
CR: M/C/I
Using default environment

no mmc device at slot 1
ENVF: Primary 0x00000000 - 0x00008000
ENVF: Primary 0x00000000 - 0x00008000
mmc@ffa90000: 0, mmc@ffaa0000: 1 (SD)
Bootdev(atags): mmc 1
MMC1: Legacy, 52Mhz
PartType: ENV
DM: v2
No misc partition
boot mode: None
RESC: 'boot', blk@0x00001db6
resource: sha256+
FIT: no signed, no conf required
DTB: rk-kernel.dtb
HASH(c): OK
Model: Luckfox Pico Mini
## retrieving sd_update.txt ...
bad MBR sector signature 0x0000
** Invalid partition 1 **
CLK: (uboot. arm: enter 816000 KHz, init 816000 KHz, kernel 0N/A)
  apll 816000 KHz
  dpll 528000 KHz
  gpll 1188000 KHz
  cpll 1000000 KHz
  aclk_peri_root 400000 KHz
  hclK_peri_root 200000 KHz
  pclk_peri_root 100000 KHz
  aclk_bus_root 300000 KHz
  pclk_top_root 100000 KHz
  pclk_pmu_root 100000 KHz
  hclk_pmu_root 200000 KHz
No misc partition
Net:   eth0: ethernet@ffa80000
Hit key to stop autoboot('CTRL+C'):  0 
## Booting FIT Image at 0x290ab40 with size 0x002eec00
Fdt Ramdisk skip relocation
No misc partition
## Loading kernel from FIT Image at 0290ab40 ...
   Using 'conf' configuration
## Verified-boot: 0
   Trying 'kernel' kernel subimage
     Description:  unavailable
     Type:         Kernel Image
     Compression:  uncompressed
     Data Start:   0x02914140
     Data Size:    3036240 Bytes = 2.9 MiB
     Architecture: ARM
     OS:           Linux
     Load Address: 0x00008000
     Entry Point:  0x00008000
     Hash algo:    sha256
     Hash value:   771db266e47561fe03689039c5f37c245966055ca6c4b8626f8bbcb5a287d0c5
   Verifying Hash Integrity ... sha256+ OK
## Loading fdt from FIT Image at 0290ab40 ...
   Using 'conf' configuration
   Trying 'fdt' fdt subimage
     Description:  unavailable
     Type:         Flat Device Tree
     Compression:  uncompressed
     Data Start:   0x0290b340
     Data Size:    36058 Bytes = 35.2 KiB
     Architecture: ARM
     Load Address: 0x00c00000
     Hash algo:    sha256
     Hash value:   ec878326be328d02cf921dd47e26715622d000bcf412e78c8a936ec0f5bb3285
   Verifying Hash Integrity ... sha256+ OK
   Loading fdt from 0x0290ab40 to 0x00c00000
   Booting using the fdt blob at 0x00c00000
   Loading Kernel Image from 0x02914140 to 0x00008000 ... OK
   kernel loaded at 0x00008000, end = 0x002ed450
   Using Device Tree in place at 00c00000, end 00c0bcd9
Adding bank: 0x00000000 - 0x04000000 (size: 0x04000000)
Total: 937.378/1453.452 ms

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 5.10.160 (root@DESKTOP-RUMO6US) (arm-rockchip830-linux-uclibcgnueabihf-gcc (crosstool-NG 1.24.0) 8.3.0, GNU ld (crosstool-NG 1.24.05
[    0.000000] CPU: ARMv7 Processor [410fc075] revision 5 (ARMv7), cr=50c53c7d
[    0.000000] CPU: div instructions available: patching division code
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[    0.000000] OF: fdt: Machine model: Luckfox Pico Mini
[    0.000000] Memory policy: Data cache writeback
[    0.000000] cma: Reserved 1024 KiB at 0x03f00000
[    0.000000] Zone ranges:
[    0.000000]   Normal   [mem 0x0000000000000000-0x0000000003ffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000000000-0x0000000003ffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000003ffffff]
[    0.000000] CPU: All CPU(s) started in SVC mode.
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 16256
[    0.000000] Kernel command line: user_debug=31 storagemedia=sd androidboot.storagemedia=sd androidboot.mode=normal  rootwait earlycon=uart8250,mmio32,0xff4c05
[    0.000000] Dentry cache hash table entries: 8192 (order: 3, 32768 bytes, linear)
[    0.000000] Inode-cache hash table entries: 4096 (order: 2, 16384 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] Memory: 57176K/65536K available (3793K kernel code, 379K rwdata, 1816K rodata, 196K init, 138K bss, 7336K reserved, 1024K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[    0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
[    0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
[    0.000006] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
[    0.000018] Switching to timer-based delay loop, resolution 41ns
[    0.000513] Console: colour dummy device 80x30
[    0.000565] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=240000)
[    0.000581] pid_max: default: 4096 minimum: 301
[    0.000758] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.000772] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.001422] CPU: Testing write buffer coherency: ok
[    0.002107] Setting up static identity map for 0x81c0 - 0x81f8
[    0.002584] devtmpfs: initialized
[    0.009512] VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 5
[    0.009709] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.009729] futex hash table entries: 16 (order: -5, 192 bytes, linear)
[    0.009866] pinctrl core: initialized pinctrl subsystem
[    0.011124] NET: Registered protocol family 16
[    0.011568] DMA: failed to allocate 0 KiB pool for atomic coherent allocation
[    0.012163] Registered FIQ tty driver
[    0.012504] thermal_sys: Registered thermal governor 'step_wise'
[    0.012511] thermal_sys: Registered thermal governor 'user_space'
[    0.012752] cpuidle: using governor menu
[    0.026002] rockchip-gpio ff380000.gpio: probed /pinctrl/gpio@ff380000
[    0.026819] rockchip-gpio ff530000.gpio: probed /pinctrl/gpio@ff530000
[    0.027620] rockchip-gpio ff550000.gpio: probed /pinctrl/gpio@ff550000
[    0.028315] rockchip-gpio ff560000.gpio: probed /pinctrl/gpio@ff560000
[    0.028416] rockchip-pinctrl pinctrl: probed pinctrl
[    0.038327] fiq_debugger fiq_debugger.0: IRQ uart_irq not found
[    0.038352] fiq_debugger fiq_debugger.0: IRQ wakeup not found
[    0.038642] printk: console [ttyFIQ0] enabled
[    0.038867] Registered fiq debugger ttyFIQ0
[    0.041050] SCSI subsystem initialized
[    0.041273] usbcore: registered new interface driver usbfs
[    0.041322] usbcore: registered new interface driver hub
[    0.041372] usbcore: registered new device driver usb
[    0.041638] mc: Linux media interface: v0.10
[    0.041677] videodev: Linux video capture interface: v2.00
[    0.042883] Advanced Linux Sound Architecture Driver Initialized.
[    0.043708] rockchip-cpuinfo cpuinfo: SoC            : 11031000
[    0.043735] rockchip-cpuinfo cpuinfo: Serial         : 3c6d8f8ee95e4dd0
[    0.044129] rockchip,rknpor-powergood ff000000.syscon:rknpor-powergood: probe success!
[    0.044968] clocksource: Switched to clocksource arch_sys_counter
[    0.051609] NET: Registered protocol family 2
[    0.051855] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear)
[    0.052289] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes, linear)
[    0.052319] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.052336] TCP bind hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.052352] TCP: Hash tables configured (established 1024 bind 1024)
[    0.052467] UDP hash table entries: 256 (order: 0, 4096 bytes, linear)
[    0.052490] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes, linear)
[    0.052630] NET: Registered protocol family 1
[    0.053300] RPC: Registered named UNIX socket transport module.
[    0.053326] RPC: Registered udp transport module.
[    0.053332] RPC: Registered tcp transport module.
[    0.053339] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.054444] rockchip-thermal ff3c8000.tsadc: tsadc is probed successfully!
[    0.055591] Initialise system trusted keyrings
[    0.055864] workingset: timestamp_bits=30 max_order=14 bucket_order=0
[    0.059606] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.060492] NFS: Registering the id_resolver key type
[    0.060568] Key type id_resolver registered
[    0.060579] Key type id_legacy registered
[    0.060626] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[    0.061126] Key type asymmetric registered
[    0.061149] Asymmetric key parser 'x509' registered
[    0.061175] io scheduler mq-deadline registered
[    0.061568] rockchip-usb2phy ff3e0000.usb2-phy: IRQ index 0 not found
[    0.066562] dma-pl330 ff420000.dma-controller: Loaded driver for PL330 DMAC-241330
[    0.066592] dma-pl330 ff420000.dma-controller:       DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    0.067425] rockchip-pvtm ff240000.pvtm: pvtm@0 probed
[    0.067605] rockchip-pvtm ff390000.pvtm: pvtm@0 probed
[    0.067911] rockchip-system-monitor rockchip-system-monitor: system monitor probe
[    0.068472] Serial: 8250/16550 driver, 6 ports, IRQ sharing disabled
[    0.074189] random: crng init done
[    0.083411] brd: module loaded
[    0.089361] loop: module loaded
[    0.091595] spi-nand spi2.0: Winbond SPI NAND was found.
[    0.091625] spi-nand spi2.0: 128 MiB, block size: 128 KiB, page size: 2048, OOB size: 64
[    0.100923] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.101278] usbcore: registered new interface driver usb-storage
[    0.101472] gadgetfs: USB Gadget filesystem, version 24 Aug 2004
[    0.101527] Mass Storage Function, version: 2009/09/11
[    0.101541] LUN: removable file: (no medium)
[    0.101572] no file given for LUN0
[    0.101608] udc ffb00000.usb: failed to start g_mass_storage: -22
[    0.102147] i2c /dev entries driver
[    0.103735] i2c i2c-4: 1 i2c clients have been registered at 0x30
[    0.104130] i2c i2c-4: 2 i2c clients have been registered at 0x30
[    0.105229] usbcore: registered new interface driver uvcvideo

[    0.105247] USB Video Class driver (1.1.1)
Welcome to Ubuntu 22.04.3 LTS!
[    0.106016] cpu cpu0: leakage=15

[    0.106800] cpu cpu0: avs=0
[    0.106970] cpu cpu0: opp calibration done
[    0.107130] cpu cpu0: l=10000 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[    0.107595] Synopsys Designware Multimedia Card Interface Driver
[    0.108510] dtbocfg: 0.1.0
[    0.108583] dtbocfg: OK
[    0.110069] dwmmc_rockchip ffaa0000.mmc: No normal pinctrl state
[    0.110100] dwmmc_rockchip ffaa0000.mmc: No idle pinctrl state
[    0.110362] dwmmc_rockchip ffaa0000.mmc: IDMAC supports 32-bit address mode.
[    0.110415] dwmmc_rockchip ffaa0000.mmc: Using internal DMA controller.
[    0.110435] dwmmc_rockchip ffaa0000.mmc: Version ID is 270a
[    0.110481] dwmmc_rockchip ffaa0000.mmc: DW MMC controller at irq 48,32 bit host data width,256 deep fifo
[    0.112245] rv1106-acodec ff480000.acodec: current soc_id: rv1103
[    0.112355] rv1106-acodec ff480000.acodec: Use pa_ctl_gpio and pa_ctl_delay_ms: 0
[    0.114188] NET: Registered protocol family 17
[    0.114339] Key type dns_resolver registered
[    0.115458] Loading compiled-in X.509 certificates
[    0.131919] mmc_host mmc1: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0)
[    0.143640] input: adc-keys as /devices/platform/adc-keys/input/input0
[    0.199077] mmc_host mmc1: Bus speed (slot 0) = 49500000Hz (slot req 50000000Hz, actual 49500000HZ div = 0)
[    0.199234] mmc1: new high speed SDHC card at address aaaa
[    0.200185] mmcblk1: mmc1:aaaa SL08G 7.40 GiB 
[    0.201223]  mmcblk1: p1(env) p2(idblock) p3(uboot) p4(boot) p5(oem) p6(userdata) p7(rootfs)
[    0.228638] ALSA device list:
[    0.228673]   #0: rv-acodec
[    0.242141] EXT4-fs (mmcblk1p7): mounted filesystem with ordered data mode. Opts: (null)
[    0.242251] VFS: Mounted root (ext4 filesystem) readonly on device 179:7.
[    0.250194] devtmpfs: mounted
[    0.250425] Freeing unused kernel memory: 196K
[    0.250434] Kernel memory protection not selected by kernel config.
[    0.250467] Run /sbin/init as init process
[    0.736059] systemd[1]: System time before build time, advancing clock.
[    0.753328] systemd[1]: Failed to look up module alias 'autofs4': Function not implemented
[    0.773975] systemd[1]: systemd 249.11-0ubuntu3.11 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL )
[    0.774918] systemd[1]: Detected architecture arm.
[    1.903361] systemd[1]: Queued start job for default target Graphical Interface.
[    1.908512] systemd[1]: Created slice Slice /system/getty.
[  OK  ] Created slice Slice /system/getty.
[    1.911295] systemd[1]: Created slice Slice /system/modprobe.
[  OK  ] Created slice Slice /system/modprobe.
[    1.913680] systemd[1]: Created slice Slice /system/serial-getty.
[  OK  ] Created slice Slice /system/serial-getty.
[    1.915458] systemd[1]: Created slice User and Session Slice.
[  OK  ] Created slice User and Session Slice.
[    1.916576] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[  OK  ] Started Dispatch Password …ts to Console Directory Watch.
[    1.917599] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[  OK  ] Started Forward Password R…uests to Wall Directory Watch.
[    1.918557] systemd[1]: Condition check resulted in Arbitrary Executable File Formats File System Automount Point being skipped.
[  OK  ] Reached target Local Encrypted Volumes.
[    1.919104] systemd[1]: Reached target Local Encrypted Volumes.
[  OK  ] Reached target Remote File Systems.
[    1.920227] systemd[1]: Reached target Remote File Systems.
[  OK  ] Reached target Slice Units.
[    1.920820] systemd[1]: Reached target Slice Units.
[  OK  ] Reached target Swaps.
[    1.921465] systemd[1]: Reached target Swaps.
[  OK  ] Reached target Local Verity Protected Volumes.
[    1.922135] systemd[1]: Reached target Local Verity Protected Volumes.
[  OK  ] Listening on Syslog Socket.
[    1.923752] systemd[1]: Listening on Syslog Socket.
[  OK  ] Listening on initctl Compatibility Named Pipe.
[    1.924897] systemd[1]: Listening on initctl Compatibility Named Pipe.
[  OK  ] Listening on Journal Socket (/dev/log).
[    1.948168] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
[  OK  ] Listening on Journal Socket.
[    1.949378] systemd[1]: Listening on Journal Socket (/dev/log).
[  OK  ] Listening on udev Control Socket.
[    1.951076] systemd[1]: Listening on Journal Socket.
[  OK  ] Listening on udev Kernel Socket.
[    1.953737] systemd[1]: Listening on udev Control Socket.
         Mounting Kernel Debug File System...
[    1.955378] systemd[1]: Listening on udev Kernel Socket.
         Starting Journal Service...
[    1.956719] systemd[1]: Condition check resulted in Huge Pages File System being skipped.
         Starting Load Kernel Module configfs...
[    1.957447] systemd[1]: Condition check resulted in POSIX Message Queue File System being skipped.
         Starting Load Kernel Module drm...
[    1.961599] systemd[1]: Mounting Kernel Debug File System...
         Starting Load Kernel Module efi_pstore...
[    1.962951] systemd[1]: Condition check resulted in Kernel Trace File System being skipped.
         Starting Load Kernel Module fuse...
[    1.966082] systemd[1]: systemd-journald.service: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling.
         Starting Load Kernel Modules...
[    1.966136] systemd[1]: (This warning is only shown for the first unit using IP firewalling.)
         Starting Remount Root and Kernel File Systems...
[    1.976021] systemd[1]: Starting Journal Service...
         Starting Coldplug All udev Devices...
[    1.986332] systemd[1]: Condition check resulted in Create List of Static Device Nodes being skipped.
[  OK  ] Mounted Kernel Debug File System.
[    2.003514] systemd[1]: Starting Load Kernel Module configfs...
[    2.034590] systemd[1]: Starting Load Kernel Module drm...
[  OK  ] Finished Load Kernel Module configfs.
[    2.065952] systemd[1]: Starting Load Kernel Module efi_pstore...
[    2.092134] systemd[1]: Starting Load Kernel Module fuse...
[    2.127047] systemd[1]: Starting Load Kernel Modules...
[    2.149059] systemd[1]: Starting Remount Root and Kernel File Systems...
[    2.180449] systemd[1]: Starting Coldplug All udev Devices...
[    2.231724] systemd[1]: Mounted Kernel Debug File System.
[    2.242669] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[  OK  ] Finished Load Kernel Module drm.
[    2.255396] systemd[1]: Finished Load Kernel Module configfs.
[    2.306533] systemd[1]: modprobe@drm.service: Deactivated successfully.
[  OK  ] Finished Load Kernel Module efi_pstore.
[    2.307823] systemd[1]: Finished Load Kernel Module drm.
[    2.310247] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[  OK  ] Finished Load Kernel Module fuse.
[    2.323757] systemd[1]: Finished Load Kernel Module efi_pstore.
[  OK  ] Finished Load Kernel Modules.
[    2.331081] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[    2.340210] systemd[1]: Finished Load Kernel Module fuse.
[  OK  ] Finished Remount Root and Kernel File Systems.
[    2.345533] EXT4-fs (mmcblk1p7): re-mounted. Opts: (null)
[    2.351206] systemd[1]: Finished Load Kernel Modules.
[    2.375236] systemd[1]: Finished Remount Root and Kernel File Systems.
         Mounting Kernel Configuration File System...
[    2.377500] systemd[1]: Condition check resulted in FUSE Control File System being skipped.
[    2.395573] systemd[1]: Mounting Kernel Configuration File System...
[    2.405844] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
         Starting Load/Save Random Seed...
[    2.423654] systemd[1]: Starting Load/Save Random Seed...
[    2.455953] systemd[1]: Starting Apply Kernel Variables...
         Starting Apply Kernel Variables...
[    2.509363] systemd[1]: Starting Create System Users...
         Starting Create System Users...
[    2.562007] systemd[1]: Mounted Kernel Configuration File System.
[  OK  ] Mounted Kernel Configuration File System.
[    2.611546] systemd[1]: Started Journal Service.
[  OK  ] Started Journal Service.
         Starting Flush Journal to Persistent Storage...
[  OK  ] Finished Coldplug All udev Devices.
         Starting Helper to synchronize boot up for ifupdown...
[  OK  ] Finished Load/Save Random Seed.
[  OK  ] Finished Apply Kernel Variables.
[  OK  ] Finished Helper to synchronize boot up for ifupdown.
[  OK  ] Finished Create System Users.
         Starting Create Static Device Nodes in /dev...
[  OK  ] Finished Flush Journal to Persistent Storage.
[  OK  ] Finished Create Static Device Nodes in /dev.
[  OK  ] Reached target Preparation for Local File Systems.
         Starting Rule-based Manage…for Device Events and Files...
[  OK  ] Started Rule-based Manager for Device Events and Files.
         Starting Load Kernel Module efi_pstore...
         Starting Load Kernel Module fuse...
[  OK  ] Finished Load Kernel Module efi_pstore.
[  OK  ] Found device /dev/ttyFIQ0.
[  OK  ] Finished Load Kernel Module fuse.
[  OK  ] Found device /dev/mmcblk1p6.
[  OK  ] Found device /dev/mmcblk1p5.
[  OK  ] Reached target Hardware activated USB gadget.
         Mounting /oem...
         Mounting /userdata...
[  OK  ] Mounted /oem.
[  OK  ] Mounted /userdata.
[  OK  ] Reached target Local File Systems.
         Starting Raise network interfaces...
         Starting Create Volatile Files and Directories...
[  OK  ] Finished Create Volatile Files and Directories.
         Starting Network Name Resolution...
         Starting Record System Boot/Shutdown in UTMP...
[  OK  ] Finished Record System Boot/Shutdown in UTMP.
[  OK  ] Reached target System Initialization.
[  OK  ] Started ACPI Events Check.
[  OK  ] Started Daily apt download activities.
[  OK  ] Started Daily apt upgrade and clean activities.
[  OK  ] Started Daily dpkg database backup timer.
[  OK  ] Started Periodic ext4 Onli…ata Check for All Filesystems.
[  OK  ] Started Discard unused blocks once a week.
[  OK  ] Started Daily rotation of log files.
[  OK  ] Started Message of the Day.
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Reached target Path Units.
[  OK  ] Reached target Timer Units.
[  OK  ] Listening on ACPID Listen Socket.
[  OK  ] Reached target Socket Units.
[  OK  ] Reached target Basic System.
[  OK  ] Listening on D-Bus System Message Bus Socket.
         Starting Save/Restore Sound Card State...
[  OK  ] Started Regular background program processing daemon.
[  OK  ] Started D-Bus System Message Bus.
         Starting Network Manager...
[  OK  ] Started Save initial kernel messages after boot.
         Starting Remove Stale Onli…t4 Metadata Check Snapshots...
         Starting Dispatcher daemon for systemd-networkd...
         Starting Authorization Manager...
         Starting System Logging Service...
         Starting User Login Management...
         Starting WPA supplicant...
[  OK  ] Finished Raise network interfaces.
[  OK  ] Finished Save/Restore Sound Card State.
[  OK  ] Reached target Sound Card.
[  OK  ] Started System Logging Service.
[  OK  ] Started WPA supplicant.
[  OK  ] Started Authorization Manager.
         Starting Modem Manager...
[  OK  ] Started User Login Management.
[  OK  ] Started Network Manager.
[  OK  ] Started Network Name Resolution.
[  OK  ] Reached target Network.
[  OK  ] Reached target Host and Network Name Lookups.
         Starting Network Time Service...
         Starting /etc/rc.local Compatibility...
         Starting OpenBSD Secure Shell server...
         Starting Permit User Sessions...
         Starting vsftpd FTP server...
[  OK  ] Started vsftpd FTP server.
[  OK  ] Finished Permit User Sessions.
         Starting Hostname Service...
[  OK  ] Started Network Time Service.
[   14.188232] sc3336 4-0030: could not get default pinstate
[   14.188264] sc3336 4-0030: could not get sleep pinstate
[   15.104003] rkcif rkcif-mipi-lvds: failed to get dphy hw node
[   15.104056] : terminal subdev does not exist
[   15.104069] : terminal subdev does not exist
[   15.104077] : terminal subdev does not exist
[   15.104086] : terminal subdev does not exist
[   15.104097] : get_remote_sensor: video pad[0] is null
[   15.104108] : rkcif_update_sensor_info: stream[0] get remote sensor_sd failed!
[   15.104126] : get_remote_sensor: video pad[0] is null
[   15.104134] : rkcif_update_sensor_info: stream[0] get remote sensor_sd failed!
[   15.104149] : get_remote_sensor: video pad[0] is null
[   15.104156] : rkcif_update_sensor_info: stream[0] get remote sensor_sd failed!
[   15.104170] : get_remote_sensor: video pad[0] is null
[   15.104177] : rkcif_update_sensor_info: stream[0] get remote sensor_sd failed!
[   15.197383] rockchip-mipi-csi2: Async registered subdev
[   17.359228] rc.local[275]: 0
[   17.563134] mpp_vepu_pp ffa60000.rkvenc-pp: shared_rst_a_pp is not found!
[   17.563165] vepu_pp_init:526: No aclk reset resource define
[   17.563177] mpp_vepu_pp ffa60000.rkvenc-pp: shared_rst_h_pp is not found!
[   17.563185] vepu_pp_init:529: No hclk reset resource define
[   17.703716] RKNPU ff660000.npu: dev_pm_opp_set_regulators: no regulator (rknpu) found: -19
[   17.760752] rc.local[288]: Input      rkcif-mipi-lvds Format:SBGGR10_1X10 Size:2304x1296@30fps Offset(0,0)
[   24.032674] rc.local[356]: cat: '/sys/bus/sdio/devices/*/uevent': No such file or directory
[   24.084765] rc.local[358]: cat: '/sys/bus/sdio/devices/*/uevent': No such file or directory
[   24.120213] rc.local[360]: cat: '/sys/bus/sdio/devices/*/uevent': No such file or directory
[   24.146917] rc.local[362]: cat: '/sys/bus/sdio/devices/*/uevent': No such file or directory
[   24.174028] rc.local[364]: cat: '/sys/bus/usb/devices/*/uevent': No such file or directory
[   24.207367] rc.local[366]: cat: '/sys/bus/usb/devices/*/uevent': No such file or directory
[   24.232187] rc.local[368]: cat: '/sys/bus/usb/devices/*/uevent': No such file or directory
[   24.267132] rc.local[370]: cat: '/sys/bus/sdio/devices/*/uevent': No such file or directory
[   25.268919] rc.local[350]: wlan0 not found. Stop run rkwifi_server.
[   25.354028] rc.local[384]: resize2fs 1.46.5 (30-Dec-2021)
[   26.336900] rc.local[384]: Filesystem at /dev/mmcblk1p5 is mounted on /oem; on-line resizing required
[   26.338154] rc.local[384]: old_desc_blocks = 1, new_desc_blocks = 1
[   26.339087] rc.local[384]: The filesystem on /dev/mmcblk1p5 is now 131072 (4k) blocks long.
[   26.654170] rc.local[395]: resize2fs 1.46.5 (30-Dec-2021)
[   31.106295] rc.local[395]: Filesystem at /dev/mmcblk1p6 is mounted on /userdata; on-line resizing required
[   31.110425] rc.local[395]: old_desc_blocks = 1, new_desc_blocks = 1
[   31.118636] rc.local[395]: The filesystem on /dev/mmcblk1p6 is now 262144 (1k) blocks long.
[   31.269909] rc.local[404]: resize2fs 1.46.5 (30-Dec-2021)
[   36.048860] rc.local[404]: Filesystem at /dev/mmcblk1p7 is mounted on /; on-line resizing required
[   36.074125] rc.local[404]: old_desc_blocks = 1, new_desc_blocks = 1
[   36.075627] rc.local[404]: The filesystem on /dev/mmcblk1p7 is now 1572864 (4k) blocks long.
[   36.826968] rc.local[352]: Filesystem resized successfully.
[   38.315487] rc.local[352]: Swap successfully.
[   38.649020] rc.local[189]: /etc/rc.local: line 24: warning: command substitution: ignored null byte in input
[   38.701204] rc.local[473]: Debug: configfs_init
[   50.244421] rc.local[520]: /usr/bin/luckfox-config: line 234: warning: command substitution: ignored null byte in input
[   52.294743] rc.local[520]: Only Luckfox Pico Ultra /Luckfox Pico Ultra W support RGB
[   53.907365] rc.local[520]: Complete configuration loading
[   53.976024] rc.local[775]: hwclock: Cannot access the Hardware Clock via any known method.
[   53.979581] rc.local[775]: hwclock: Use the --verbose option to see the details of our search for an access method.

Ubuntu 22.04.3 LTS luckfox ttyFIQ0

[username:password] root:root pico:luckfox

luckfox login: root
Password: 


                                ====               ====
                              ========           ========
                              ===========     ===========
                              ====  ===============  ====
                              ====     =========     ====
                              ====                   ====
                             =                           =
                              ============    ============
                            ================================
                          ======      ==========      =======
                          =====         =======          =====
                          ==========      ===     ===========
                            ============        ============
                                  =======      ======
                                    ======    =====
                                      ============
                                        ========
                                          ====


  ===        ===    ===     =======    ===    ===  =========      ======    ===       ===
  ===        ===    ===   ===     ===  ===  ===    ===         ===      ===   ===   ===
  ===        ===    ===  ===           ======      ===        ===        ===    =====
  ===        ===    ===  ===           ======      =========  ===        ===    =====
  ===        ===    ===   ===     ===  ===  ===    ===         ===      ===   ===   ===
  =========    ======       =======    ===    ===  ===            ======    ===       ===


Welcome to Ubuntu 22.04.3 LTS (GNU/Linux 5.10.160 armv7l)

 * Documentation:  https://wiki.luckfox.com
 * Management:     https://www.luckfox.com

This system has been minimized by removing packages and content that are
not required on a system that users do not log into.

To restore this content, you can run the 'unminimize' command.

The programs included with the Ubuntu system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Ubuntu comes with ABSOLUTELY NO WARRANTY, to the extent permitted by
applicable law.

root@luckfox:~# 

root@luckfox:~# ifconfig
lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        loop  txqueuelen 1000  (Local Loopback)
        RX packets 190  bytes 14100 (14.1 KB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 190  bytes 14100 (14.1 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

usb0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 172.32.0.70  netmask 255.255.0.0  broadcast 172.32.255.255
        ether 3a:91:cb:ae:12:82  txqueuelen 1000  (Ethernet)
        RX packets 83  bytes 14315 (14.3 KB)
        RX errors 0  dropped 63  overruns 0  frame 0
        TX packets 0  bytes 0 (0.0 B)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

root@luckfox:~# netstat -tnlp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name    
tcp        0      0 127.0.0.1:5037          0.0.0.0:*               LISTEN      499/adbd            
tcp        0      0 0.0.0.0:5555            0.0.0.0:*               LISTEN      499/adbd            
tcp        0      0 127.0.0.53:53           0.0.0.0:*               LISTEN      128/systemd-resolve 
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      215/sshd: /usr/sbin 

root@luckfox:~# free -h
               total        used        free      shared  buff/cache   available
Mem:            56Mi        23Mi       4.0Mi       0.0Ki        27Mi        27Mi
Swap:          1.0Gi        16Mi       1.0Gi

root@luckfox:~# lsmod
Module                  Size  Used by
rve                    23436  0
rockit                225880  0
rknpu                  27019  0
mpp_vcodec            414257  1 rockit
rga3                   90762  1 rockit
phy_rockchip_csi2_dphy     9338  0
phy_rockchip_csi2_dphy_hw    10066  0
video_rkisp           171838  1 rockit
video_rkcif           162117  1 rockit
sc3336                  9940  1
rk_dvbm                 5941  2 mpp_vcodec,video_rkisp

root@luckfox:~# df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/root       5.9G  1.9G  3.8G  34% /
tmpfs            29M     0   29M   0% /dev/shm
tmpfs            12M  988K   11M   9% /run
tmpfs           5.0M  4.0K  5.0M   1% /run/lock
/dev/mmcblk1p5  488M   91M  375M  20% /oem
/dev/mmcblk1p6  238M   15K  233M   1% /userdata
tmpfs           5.7M     0  5.7M   0% /run/user/0

'embeded > luckfox' 카테고리의 다른 글

luckfox pico plus update on linux  (0) 2026.09.08
luckfox pico plus  (0) 2026.09.07
luckfox pico ultra - rknn 예제  (0) 2026.04.27
luckfox pico ultra 카메라 모션 디텍트 끄기  (0) 2026.04.27
luckfox pico ultra - rv1106 riscv  (0) 2026.04.24
Posted by 구차니
embeded/luckfox2026. 9. 8. 11:05

머.. 실행해보니 막상 별건 없는 느낌인데

$ ./upgrade_tool uf ../Luckfox_Pico_Plus_Flash_250607/update.img 
Using /home/minimonk/다운로드/my/luckfox/upgrade_tool_v2.17_for_linux/config.ini
Loading firmware...
Support Type:1106 FW Ver:0.0.00 FW Time:2025-06-26 11:28:18
Loader ver:1.01 Loader Time:2025-06-26 11:26:19
Start to upgrade firmware...
Download Boot Start
Download Boot Success
Wait For Maskrom Start
Wait For Maskrom Success
Test Device Start
Test Device Success
Check Chip Start
Check Chip Success
Get FlashInfo Start
Get FlashInfo Success
Prepare IDB Start
Prepare IDB Success
Download IDB Start
Download IDB Success
Download Firmware Start
Download Image... (100%)
Download Firmware Success
Upgrade firmware ok.

 

업데이트 관련해서는 별다른 메시지는 없는것 같다.

카메라 달지 않고 업데이트 이후 부팅

RKUART
DDR 306b9977f5 wesley.yao 23/12/21-09:28:37,fwver: v1.15                  
S5P1                                                                            
4x                                                                              
fc27                                                                            
F                                                                               
DDRConf1                                                                        
DDR2, BW=16 Col=10 Bk=4 CS0 Row=13 CS=1 Size=64MB                               
528MHz                                                                          
DDR bin out                                                                     
                                                                                
Boot1 Release Time: Feb  6 2024 17:30:35, version: 1.09 NO FTL                  
rom_version: 0x30303256                                                         
Boot from dev = 129                                                             
hamming_distance:1103 1106 2                                                    
chip_id:5256110300,0                                                            
ChipType = 27                                                                   
0xff3e0040: 0x49                                                                
sfc nor id: ff ef aa                                                            
sfc_nand id: ef aa 21                                                           
sfc_nand_density 40000                                                          
sfc_nand_density 3fc00                                                          
UsbBoot ...9656                                                                 
0xff3e0040: 0x49                                                                
powerOn 14807                                                                   
SoftReset, 56049DDR 306b9977f5 wesley.yao 23/12/21-09:28:37,fwver: v1.15        
S5P1                                                                            
4x                                                                              
fc27                                                                            
F                                                                               
DDRConf1                                                                        
DDR2, BW=16 Col=10 Bk=4 CS0 Row=13 CS=1 Size=64MB                               
528MHz                                                                          
DDR bin out                                                                     
                                                                                
U-Boot SPL board init                                                           
U-Boot SPL 2017.09 (Jun 26 2025 - 11:26:17)                                     
Trying to boot from MMC2                                                        
MMC: no card present                                                            
mmc_init: -123, time 1                                                          
MMC: no card present                                                            
mmc_init: -123, time 2                                                          
spl: mmc init failed with error: -123                                           
Trying to boot from MTD1                                                        
ENVF: Primary 0x00000000 - 0x00040000                                           
No misc partition                                                               
Trying fit image at 0x400 sector                                                
## Verified-boot: 0                                                             
## Checking uboot 0x00200000 (lzma @0x00400000) ... sha256(4d47532412...) + shaK
## Checking fdt 0x00261170 ... sha256(9f596c5683...) + OK                       
Total: 134.120/215.341 ms                                                       
                                                                                
Jumping to U-Boot(0x00200000)                                                   
                                                                                
                                                                                
U-Boot 2017.09 (Jun 26 2025 - 11:26:17 +0800)                                   
                                                                                
Model: Rockchip RV1106 EVB Board                                                
MPIDR: 0xf00                                                                    
PreSerial: 2, raw, 0xff4c0000                                                   
DRAM:  64 MiB                                                                   
Sysmem: init                                                                    
Relocation Offset: 03d80000                                                     
Relocation fdt: 02df9f58 - 02dfede8                                             
CR: M/C/I                                                                       
Using default environment                                                       
                                                                                
Bootdev(atags): mtd 1                                                           
ENVF: Primary 0x00000000 - 0x00040000                                           
PartType: ENV                                                                   
DM: v2                                                                          
No misc partition                                                               
boot mode: normal                                                               
RESC: 'boot', blk@0x00002002                                                    
resource: sha256+                                                               
FIT: no signed, no conf required                                                
DTB: rk-kernel.dtb                                                              
HASH(c): OK                                                                     
Model: Luckfox Pico Plus                                                        
## retrieving sd_update.txt ...                                                 
MMC: no card present                                                            
mmc_init: -123, time 2                                                          
CLK: (uboot. arm: enter 816000 KHz, init 816000 KHz, kernel 0N/A)               
  apll 816000 KHz                                                               
  dpll 528000 KHz                                                               
  gpll 1188000 KHz                                                              
  cpll 1000000 KHz                                                              
  aclk_peri_root 400000 KHz                                                     
  hclK_peri_root 200000 KHz                                                     
  pclk_peri_root 100000 KHz                                                     
  aclk_bus_root 300000 KHz                                                      
  pclk_top_root 100000 KHz                                                      
  pclk_pmu_root 100000 KHz                                                      
  hclk_pmu_root 200000 KHz                                                      
Net:   eth0: ethernet@ffa80000                                                  
Hit key to stop autoboot('CTRL+C'):  0                                          
## Booting FIT Image at 0x28f8b00 with size 0x00300400                          
Fdt Ramdisk skip relocation                                                     
No misc partition                                                               
## Loading kernel from FIT Image at 028f8b00 ...                                
   Using 'conf' configuration                                                   
## Verified-boot: 0                                                             
   Trying 'kernel' kernel subimage                                              
     Description:  unavailable                                                  
     Type:         Kernel Image                                                 
     Compression:  uncompressed                                                 
     Data Start:   0x02902100                                                   
     Data Size:    3108184 Bytes = 3 MiB                                        
     Architecture: ARM                                                          
     OS:           Linux                                                        
     Load Address: 0x00008000                                                   
     Entry Point:  0x00008000                                                   
     Hash algo:    sha256                                                       
     Hash value:   0392dc0511d1bf4d71172f243b3539e9a64ec2e4bc38da8376d2c12f033f7
   Verifying Hash Integrity ... sha256+ OK                                      
## Loading fdt from FIT Image at 028f8b00 ...                                   
   Using 'conf' configuration                                                   
   Trying 'fdt' fdt subimage                                                    
     Description:  unavailable                                                  
     Type:         Flat Device Tree                                             
     Compression:  uncompressed                                                 
     Data Start:   0x028f9300                                                   
     Data Size:    36148 Bytes = 35.3 KiB                                       
     Architecture: ARM                                                          
     Load Address: 0x00c00000                                                   
     Hash algo:    sha256                                                       
     Hash value:   b1e59866e424e3ea19754e15354aa22223981fe5eba6357dbc80cb718ac6d
   Verifying Hash Integrity ... sha256+ OK                                      
   Loading fdt from 0x028f8b00 to 0x00c00000                                    
   Booting using the fdt blob at 0x00c00000                                     
   Loading Kernel Image from 0x02902100 to 0x00008000 ... OK                    
   kernel loaded at 0x00008000, end = 0x002fed58                                
   Using Device Tree in place at 00c00000, end 00c0bd33                         
Adding bank: 0x00000000 - 0x04000000 (size: 0x04000000)                         
Total: 590.720/811.159 ms                                                       
                                                                                
Starting kernel ...                                                             
                                                                                
[    0.000000] Booting Linux on physical CPU 0x0                                
[    0.000000] Linux version 5.10.160 (hxj@luckfox-System-Product-Name) (arm-ro5
[    0.000000] CPU: ARMv7 Processor [410fc075] revision 5 (ARMv7), cr=50c53c7d  
[    0.000000] CPU: div instructions available: patching division code          
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instructie
[    0.000000] OF: fdt: Machine model: Luckfox Pico Plus                        
[    0.000000] Memory policy: Data cache writeback                              
[    0.000000] cma: Reserved 24576 KiB at 0x02800000                            
[    0.000000] Zone ranges:                                                     
[    0.000000]   Normal   [mem 0x0000000000000000-0x0000000003ffffff]           
[    0.000000] Movable zone start for each node                                 
[    0.000000] Early memory node ranges                                         
[    0.000000]   node   0: [mem 0x0000000000000000-0x0000000003ffffff]          
[    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000003ffffff] 
[    0.000000] CPU: All CPU(s) started in SVC mode.                             
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 16256     
[    0.000000] Kernel command line: user_debug=31 storagemedia=mtd androidboot.5
[    0.000000] Dentry cache hash table entries: 8192 (order: 3, 32768 bytes, li)
[    0.000000] Inode-cache hash table entries: 4096 (order: 2, 16384 bytes, lin)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off          
[    0.000000] Memory: 33452K/65536K available (3879K kernel code, 390K rwdata,)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1       
[    0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16                  
[    0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys).            
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycless
[    0.000007] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398s
[    0.000020] Switching to timer-based delay loop, resolution 41ns             
[    0.000520] Console: colour dummy device 80x30                               
[    0.000568] Calibrating delay loop (skipped), value calculated using timer f)
[    0.000586] pid_max: default: 4096 minimum: 301                              
[    0.000765] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, line)
[    0.000779] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes,)
[    0.001433] CPU: Testing write buffer coherency: ok                          
[    0.002114] Setting up static identity map for 0x81c0 - 0x81f8               
[    0.002601] devtmpfs: initialized                                            
[    0.009583] VFP support v0.3: implementor 41 architecture 2 part 30 variant 5
[    0.009829] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, ms
[    0.009861] futex hash table entries: 16 (order: -5, 192 bytes, linear)      
[    0.009957] pinctrl core: initialized pinctrl subsystem                      
[    0.011206] NET: Registered protocol family 16                               
[    0.011684] DMA: failed to allocate 0 KiB pool for atomic coherent allocation
[    0.012282] Registered FIQ tty driver                                        
[    0.012625] thermal_sys: Registered thermal governor 'step_wise'             
[    0.012631] thermal_sys: Registered thermal governor 'user_space'            
[    0.012875] cpuidle: using governor menu                                     
[    0.026579] rockchip-gpio ff380000.gpio: probed /pinctrl/gpio@ff380000       
[    0.027400] rockchip-gpio ff530000.gpio: probed /pinctrl/gpio@ff530000       
[    0.028191] rockchip-gpio ff550000.gpio: probed /pinctrl/gpio@ff550000       
[    0.028882] rockchip-gpio ff560000.gpio: probed /pinctrl/gpio@ff560000       
[    0.028985] rockchip-pinctrl pinctrl: probed pinctrl                         
[    0.039316] fiq_debugger fiq_debugger.0: IRQ uart_irq not found              
[    0.039342] fiq_debugger fiq_debugger.0: IRQ wakeup not found                
[    0.039626] printk: console [ttyFIQ0] enabled                                
[    0.039826] Registered fiq debugger ttyFIQ0                                  
[    0.041979] SCSI subsystem initialized                                       
[    0.042213] usbcore: registered new interface driver usbfs                   
[    0.042275] usbcore: registered new interface driver hub                     
[    0.042331] usbcore: registered new device driver usb                        
[    0.042582] mc: Linux media interface: v0.10                                 
[    0.042624] videodev: Linux video capture interface: v2.00                   
[    0.043859] Advanced Linux Sound Architecture Driver Initialized.            
[    0.044701] rockchip-cpuinfo cpuinfo: SoC            : 11031000              
[    0.044728] rockchip-cpuinfo cpuinfo: Serial         : 3c6d8f8ee95e4dd0      
[    0.045128] rockchip,rknpor-powergood ff000000.syscon:rknpor-powergood: prob!
[    0.045996] clocksource: Switched to clocksource arch_sys_counter            
[    0.052725] NET: Registered protocol family 2                                
[    0.052978] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linea)
[    0.053402] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096)
[    0.053438] TCP established hash table entries: 1024 (order: 0, 4096 bytes, )
[    0.053457] TCP bind hash table entries: 1024 (order: 0, 4096 bytes, linear) 
[    0.053474] TCP: Hash tables configured (established 1024 bind 1024)         
[    0.053589] UDP hash table entries: 256 (order: 0, 4096 bytes, linear)       
[    0.053614] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes, linear)  
[    0.053767] NET: Registered protocol family 1                                
[    0.054443] RPC: Registered named UNIX socket transport module.              
[    0.054466] RPC: Registered udp transport module.                            
[    0.054476] RPC: Registered tcp transport module.                            
[    0.054482] RPC: Registered tcp NFSv4.1 backchannel transport module.        
[    0.055561] rockchip-thermal ff3c8000.tsadc: tsadc is probed successfully!   
[    0.056753] Initialise system trusted keyrings                               
[    0.057084] workingset: timestamp_bits=30 max_order=14 bucket_order=0        
[    0.060817] squashfs: version 4.0 (2009/01/31) Phillip Lougher               
[    0.061647] NFS: Registering the id_resolver key type                        
[    0.061718] Key type id_resolver registered                                  
[    0.061728] Key type id_legacy registered                                    
[    0.061777] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.             
[    0.062293] Key type asymmetric registered                                   
[    0.062317] Asymmetric key parser 'x509' registered                          
[    0.062343] io scheduler mq-deadline registered                              
[    0.062762] rockchip-usb2phy ff3e0000.usb2-phy: IRQ index 0 not found        
[    0.067706] dma-pl330 ff420000.dma-controller: Loaded driver for PL330 DMAC-0
[    0.067745] dma-pl330 ff420000.dma-controller:       DBUFF-128x8bytes Num_Ch6
[    0.068595] rockchip-pvtm ff240000.pvtm: pvtm@0 probed                       
[    0.068786] rockchip-pvtm ff390000.pvtm: pvtm@0 probed                       
[    0.069143] rockchip-system-monitor rockchip-system-monitor: system monitor e
[    0.069703] Serial: 8250/16550 driver, 6 ports, IRQ sharing disabled         
[    0.075497] random: crng init done                                           
[    0.084473] brd: module loaded                                               
[    0.090458] loop: module loaded                                              
[    0.092715] spi-nand spi2.0: Winbond SPI NAND was found.                     
[    0.092744] spi-nand spi2.0: 128 MiB, block size: 128 KiB, page size: 2048, 4
[    0.093978] 7 cmdlinepart partitions found on MTD device spi-nand0           
[    0.093998] Creating 7 MTD partitions on "spi-nand0":                        
[    0.094014] 0x000000000000-0x000000040000 : "env"                            
[    0.095926] 0x000000040000-0x000000080000 : "idblock"                        
[    0.097819] 0x000000080000-0x000000100000 : "uboot"                          
[    0.099742] 0x000000100000-0x000000500000 : "boot"                           
[    0.101617] 0x000000500000-0x000002300000 : "oem"                            
[    0.103556] 0x000002300000-0x000002900000 : "userdata"                       
[    0.105521] 0x000002900000-0x000007e00000 : "rootfs"                         
[    0.109003] rk_gmac-dwmac ffa80000.ethernet: IRQ eth_lpi not found           
[    0.109201] rk_gmac-dwmac ffa80000.ethernet: PTP uses main clock             
[    0.109254] rk_gmac-dwmac ffa80000.ethernet: no regulator found              
[    0.109267] rk_gmac-dwmac ffa80000.ethernet: clock input or output? (input). 
[    0.109278] rk_gmac-dwmac ffa80000.ethernet: Can not read property: tx_delay.
[    0.109288] rk_gmac-dwmac ffa80000.ethernet: set tx_delay to 0xffffffff      
[    0.109297] rk_gmac-dwmac ffa80000.ethernet: Can not read property: rx_delay.
[    0.109307] rk_gmac-dwmac ffa80000.ethernet: set rx_delay to 0xffffffff      
[    0.109392] rk_gmac-dwmac ffa80000.ethernet: integrated PHY? (yes).          
[    0.109409] rk_gmac-dwmac ffa80000.ethernet: cannot get clock mac_clk_rx     
[    0.109422] rk_gmac-dwmac ffa80000.ethernet: cannot get clock mac_clk_tx     
[    0.109456] rk_gmac-dwmac ffa80000.ethernet: cannot get clock clk_mac_speed  
[    0.109464] rk_gmac-dwmac ffa80000.ethernet: clock input from PHY            
[    0.109705] rk_gmac-dwmac ffa80000.ethernet: init for RMII                   
[    0.109953] rk_gmac-dwmac ffa80000.ethernet: User ID: 0x30, Synopsys ID: 0x51
[    0.109974] rk_gmac-dwmac ffa80000.ethernet:         DWMAC4/5                
[    0.109990] rk_gmac-dwmac ffa80000.ethernet: DMA HW capability register suppd
[    0.110000] rk_gmac-dwmac ffa80000.ethernet: RX Checksum Offload Engine suppd
[    0.110009] rk_gmac-dwmac ffa80000.ethernet: TX Checksum insertion supported 
[    0.110016] rk_gmac-dwmac ffa80000.ethernet: Wake-Up On Lan supported        
[    0.110024] rk_gmac-dwmac ffa80000.ethernet: TSO supported                   
[    0.110032] rk_gmac-dwmac ffa80000.ethernet: Enable RX Mitigation via HW Watr
[    0.110042] rk_gmac-dwmac ffa80000.ethernet: TSO feature enabled             
[    0.110053] rk_gmac-dwmac ffa80000.ethernet: Using 40 bits DMA width         
[    0.117676] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver       
[    0.118038] usbcore: registered new interface driver usb-storage             
[    0.118189] usbcore: registered new interface driver usb_ch343               
[    0.118201] ch343: USB serial driver for ch342/ch343/ch344/ch347/ch9101/ch91.
[    0.118208] ch343: V1.5 On 2022.12                                           
[    0.118387] gadgetfs: USB Gadget filesystem, version 24 Aug 2004             
[    0.118436] Mass Storage Function, version: 2009/09/11                       
[    0.118450] LUN: removable file: (no medium)                                 
[    0.118486] no file given for LUN0                                           
[    0.118525] udc ffb00000.usb: failed to start g_mass_storage: -22            
[    0.119100] i2c /dev entries driver                                          
[    0.120736] i2c i2c-4: 1 i2c clients have been registered at 0x30            
[    0.121116] i2c i2c-4: 2 i2c clients have been registered at 0x30            
[    0.122128] usbcore: registered new interface driver uvcvideo                
[    0.122145] USB Video Class driver (1.1.1)                                   
[    0.122932] cpu cpu0: leakage=15                                             
[    0.123705] cpu cpu0: avs=0                                                  
[    0.123873] cpu cpu0: opp calibration done                                   
[    0.124052] cpu cpu0: l=10000 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_t0
[    0.124509] Synopsys Designware Multimedia Card Interface Driver             
[    0.125385] dtbocfg: 0.1.0                                                   
[    0.125442] dtbocfg: OK                                                      
[    0.127023] dwmmc_rockchip ffaa0000.mmc: No normal pinctrl state             
[    0.127056] dwmmc_rockchip ffaa0000.mmc: No idle pinctrl state               
[    0.127302] dwmmc_rockchip ffaa0000.mmc: IDMAC supports 32-bit address mode. 
[    0.127356] dwmmc_rockchip ffaa0000.mmc: Using internal DMA controller.      
[    0.127374] dwmmc_rockchip ffaa0000.mmc: Version ID is 270a                  
[    0.127423] dwmmc_rockchip ffaa0000.mmc: DW MMC controller at irq 50,32 bit o
[    0.127550] mmc_host mmc1: card is non-removable.                            
[    0.128732] usbcore: registered new interface driver snd-usb-audio           
[    0.129332] rv1106-acodec ff480000.acodec: current soc_id: rv1103            
[    0.129432] rv1106-acodec ff480000.acodec: Use pa_ctl_gpio and pa_ctl_delay_0
[    0.131231] NET: Registered protocol family 17                               
[    0.131347] Key type dns_resolver registered                                 
[    0.132394] Loading compiled-in X.509 certificates                           
[    0.149060] mmc_host mmc1: Bus speed (slot 0) = 400000Hz (slot req 400000Hz,)
[    0.160704] input: adc-keys as /devices/platform/adc-keys/input/input0       
[    0.188173] mmc_host mmc1: Bus speed (slot 0) = 300000Hz (slot req 300000Hz,)
[    0.239332] ubi0: attaching mtd6                                             
[    0.248728] mmc_host mmc1: Bus speed (slot 0) = 200000Hz (slot req 200000Hz,)
[    0.295952] mmc_host mmc1: Bus speed (slot 0) = 187500Hz (slot req 100000Hz,)
[    0.376680] ubi0: scanning is finished                                       
[    0.402041] ubi0: volume 0 ("rootfs") re-sized from 393 to 656 LEBs          
[    0.402694] ubi0: attached mtd6 (name "rootfs", size 85 MiB)                 
[    0.402716] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes   
[    0.402726] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048    
[    0.402736] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096  
[    0.402745] ubi0: good PEBs: 680, bad PEBs: 0, corrupted PEBs: 0             
[    0.402754] ubi0: user volume: 1, internal volumes: 1, max. volumes count: 18
[    0.402765] ubi0: max/mean erase counter: 1/0, WL threshold: 4096, image seq3
[    0.402775] ubi0: available PEBs: 0, total reserved PEBs: 680, PEBs reserved0
[    0.403967] ALSA device list:                                                
[    0.403990]   #0: rv-acodec                                                  
[    0.404649] ubi0: background thread "ubi_bgt0d" started, PID 55              
[    0.404891] UBIFS (ubi0:0): Mounting in unauthenticated mode                 
[    0.448841] UBIFS (ubi0:0): UBIFS: mounted UBI device 0, volume 0, name "rooe
[    0.448873] UBIFS (ubi0:0): LEB size: 126976 bytes (124 KiB), min./max. I/O s
[    0.448888] UBIFS (ubi0:0): FS size: 81899520 bytes (78 MiB, 645 LEBs), jour)
[    0.448898] UBIFS (ubi0:0): reserved for root: 0 bytes (0 KiB)               
[    0.448910] UBIFS (ubi0:0): media format: w4/r0 (latest is w5/r0), UUID C568l
[    0.454026] VFS: Mounted root (ubifs filesystem) readonly on device 0:14.    
[    0.456236] devtmpfs: mounted                                                
[    0.456458] Freeing unused kernel memory: 200K                               
[    0.456469] Kernel memory protection not selected by kernel config.          
[    0.456499] Run /sbin/init as init process                                   
[    0.479462] process '/bin/busybox' started with executable stack             
[    0.607684] UBIFS (ubi0:0): start fixing up free space                       
[    6.267389] UBIFS (ubi0:0): free space fixup complete                        
[    6.276168] UBIFS (ubi0:0): background thread "ubifs_bgt0_0" started, PID 58 
Saving 256 bits of creditable seed for next boot                                
Starting syslogd: OK                                                            
Starting klogd: OK                                                              
Running sysctl: OK                                                              
Populating /dev using udev: [    6.498043] udevd[88]: starting version 3.2.7    
[    6.514080] udevd[88]: specified group 'input' unknown                       
[    6.515135] udevd[88]: specified group 'kvm' unknown                         
[    6.538487] udevd[89]: starting eudev-3.2.7                                  
[    6.930451] udevd[102]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /y
[    6.934561] udevd[103]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /y
[    6.944669] udevd[104]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /y
[    6.955273] udevd[105]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /y
[    6.960659] udevd[106]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /y
[    6.969659] udevd[107]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /y
[    6.979129] udevd[108]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /y
done                                                                            
/etc/init.d/S20linkmount info: mount point path [IGNORE] not found, skip...     
***********/dev/ubi4_0 not exist***********                                     
***********/dev/ubi4 not exist***********                                       
[    7.406750] ubi4: attaching mtd4                                             
[    7.456924] ubi4: scanning is finished                                       
[    7.482199] ubi4: volume 0 ("oem") re-sized from 155 to 216 LEBs             
[    7.487133] ubi4: attached mtd4 (name "oem", size 30 MiB)                    
UBI device number 4, total 240 LEBs (30474240 bytes, 29.1 MiB), available 0 LEB)
[    7.487157] ubi4: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes   
[    7.487167] ubi4: min./max. I/O unit sizes: 2048/2048, sub-page size 2048    
try to make volume: /dev/ubi4_0 ...                                             
[    7.487177] ubi4: VID header offset: 2048 (aligned 2048), data offset: 4096  
[    7.487186] ubi4: good PEBs: 240, bad PEBs: 0, corrupted PEBs: 0             
ubimkvol: error!: bad volume size: "0"                                          
[    7.487196] ubi4: user volume: 1, internal volumes: 1, max. volumes count: 18
[    7.487206] ubi4: max/mean erase counter: 1/0, WL threshold: 4096, image seq3
[    7.487215] ubi4: available PEBs: 0, total reserved PEBs: 240, PEBs reserved0
[    7.488560] ubi4: background thread "ubi_bgt4d" started, PID 128             
[    7.543260] UBIFS (ubi4:0): Mounting in unauthenticated mode                 
[    7.544115] UBIFS (ubi4:0): background thread "ubifs_bgt4_0" started, PID 133
[    7.566468] UBIFS (ubi4:0): start fixing up free space                       
[    9.904302] UBIFS (ubi4:0): free space fixup complete                        
[    9.921198] UBIFS (ubi4:0): UBIFS: mounted UBI device 4, volume 0, name "oem"
[    9.921237] UBIFS (ubi4:0): LEB size: 126976 bytes (124 KiB), min./max. I/O s
[    9.921252] UBIFS (ubi4:0): FS size: 26157056 bytes (24 MiB, 206 LEBs), jour)
[    9.921261] UBIFS (ubi4:0): reserved for root: 0 bytes (0 KiB)               
[    9.921274] UBIFS (ubi4:0): media format: w4/r0 (latest is w5/r0), UUID 4666l
***********/dev/ubi5_0 not exist***********                                     
[    9.959310] ubi5: attaching mtd5                                             
***********/dev/ubi5 not exist***********                                       
[    9.967838] ubi5: scanning is finished                                       
[    9.992894] ubi5: volume 0 ("userdata") re-sized from 13 to 24 LEBs          
[    9.997890] ubi5: attached mtd5 (name "userdata", size 6 MiB)                
UBI device number 5, total 48 LEBs (6094848 bytes, 5.8 MiB), available 0 LEBs ()
[    9.997918] ubi5: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes   
[    9.997929] ubi5: min./max. I/O unit sizes: 2048/2048, sub-page size 2048    
try to make volume: /dev/ubi5_0 ...                                             
[    9.997938] ubi5: VID header offset: 2048 (aligned 2048), data offset: 4096  
ubimkvol: error!: bad volume size: "0"                                          
[    9.997946] ubi5: good PEBs: 48, bad PEBs: 0, corrupted PEBs: 0              
[    9.997956] ubi5: user volume: 1, internal volumes: 1, max. volumes count: 18
[    9.997966] ubi5: max/mean erase counter: 1/0, WL threshold: 4096, image seq2
[    9.997976] ubi5: available PEBs: 0, total reserved PEBs: 48, PEBs reserved 0
[   10.000248] ubi5: background thread "ubi_bgt5d" started, PID 142             
[   10.039661] UBIFS (ubi5:0): Mounting in unauthenticated mode                 
[   10.040418] UBIFS (ubi5:0): background thread "ubifs_bgt5_0" started, PID 147
[   10.062991] UBIFS (ubi5:0): start fixing up free space                       
[   10.086564] UBIFS (ubi5:0): free space fixup complete                        
[   10.105122] UBIFS (ubi5:0): UBIFS: mounted UBI device 5, volume 0, name "use"
[   10.105151] UBIFS (ubi5:0): LEB size: 126976 bytes (124 KiB), min./max. I/O s
[   10.105165] UBIFS (ubi5:0): FS size: 1777664 bytes (1 MiB, 14 LEBs), journal)
[   10.105173] UBIFS (ubi5:0): reserved for root: 0 bytes (0 KiB)               
Initializing random number generator... [   10.105186] UBIFS (ubi5:0): media fol
done.                                                                           
Starting network: /dev/ubi5_0 on /userdata type ubifs (rw,relatime,assert=read-)
[   10.261858] rk_dvbm ffa70000.rkdvbm: probe start                             
[   10.261908] rk_dvbm ffa70000.rkdvbm: dvbm ctx 6f55e22e                       
[   10.262480] rk_dvbm ffa70000.rkdvbm: probe success                           
[   10.286794] sc3336 4-0030: driver version: 00.01.01                          
[   10.286887] sc3336 4-0030: Failed to get reset-gpios                         
[   10.286948] sc3336 4-0030: could not get default pinstate                    
OK                                                                              
[   10.286960] sc3336 4-0030: could not get sleep pinstate                      
Starting ntpd: [   10.286988] sc3336 4-0030: supply avdd not found, using dummyr
[   10.287259] sc3336 4-0030: supply dovdd not found, using dummy regulator     
[   10.287350] sc3336 4-0030: supply dvdd not found, using dummy regulator      
[   10.305436] sc3336 4-0030: Unexpected sensor id(000000), ret(-5)             
[   10.378077] rkcifhw ffa10000.rkcif: no iommu attached, using non-iommu buffes
[   10.378115] rkcifhw ffa10000.rkcif: No reserved memory region assign to CIF  
[   10.378540] rkcif rkcif-mipi-lvds: rkcif driver version: v00.02.00           
[   10.378665] rkcif rkcif-mipi-lvds: attach to cif hw node                     
[   10.378681] rkcif rkcif-mipi-lvds: failed to get dphy hw node                
[   10.378691] rkcif rkcif-mipi-lvds: rkcif wait line 0                         
[   10.378702] rkcif rkcif-mipi-lvds: rkcif fastboot reserve bufs num 3         
[   10.378718] : terminal subdev does not exist                                 
[   10.378729] : terminal subdev does not exist                                 
[   10.378737] : terminal subdev does not exist                                 
[   10.378746] : terminal subdev does not exist                                 
[   10.378759] : get_remote_sensor: video pad[0] is null                        
[   10.378769] : rkcif_update_sensor_info: stream[0] get remote sensor_sd faile!
[   10.378781] : rkcif_scale_set_fmt: req(80, 60) src out(0, 0)                 
[   10.378789] : get_remote_sensor: video pad[0] is null                        
[   10.378796] : rkcif_update_sensor_info: stream[0] get remote sensor_sd faile!
[   10.378806] : rkcif_scale_set_fmt: req(80, 60) src out(0, 0)                 
[   10.378814] : get_remote_sensor: video pad[0] is null                        
[   10.378822] : rkcif_update_sensor_info: stream[0] get remote sensor_sd faile!
[   10.378830] : rkcif_scale_set_fmt: req(80, 60) src out(0, 0)                 
[   10.378839] : get_remote_sensor: video pad[0] is null                        
[   10.378845] : rkcif_update_sensor_info: stream[0] get remote sensor_sd faile!
[   10.378855] : rkcif_scale_set_fmt: req(80, 60) src out(0, 0)                 
[   10.393905] rkcif rkcif-mipi-lvds: No memory-region-thunderboot specified    
[   10.395203] rockchip-mipi-csi2-hw ffa20000.mipi-csi2-hw: enter mipi csi2 hw !
[   10.395431] rockchip-mipi-csi2-hw ffa20000.mipi-csi2-hw: probe success, v4l2!
[   10.395592] rockchip-mipi-csi2-hw ffa30000.mipi-csi2-hw: enter mipi csi2 hw !
[   10.395731] rockchip-mipi-csi2-hw ffa30000.mipi-csi2-hw: probe success, v4l2!
[   10.396315] rockchip-mipi-csi2 mipi0-csi2: attach to csi2 hw node            
[   10.396392] rkcif rkcif-mipi-lvds: Entity type for entity rockchip-mipi-csi2!
[   10.396415] rockchip-mipi-csi2: Async registered subdev                      
[   10.396425] rockchip-mipi-csi2: probe success, v4l2_dev:rkcif-mipi-lvds!     
[   10.461868] rkisp_hw ffa00000.rkisp: is_thunderboot: 0                       
[   10.461903] rkisp_hw ffa00000.rkisp: Missing rockchip,grf property           
[   10.461953] rkisp_hw ffa00000.rkisp: max input:0x0@0fps                      
[   10.462134] rkisp_hw ffa00000.rkisp: get sram size:253952                    
[   10.462152] rkisp_hw ffa00000.rkisp: no iommu attached, using non-iommu buffs
[   10.462163] rkisp_hw ffa00000.rkisp: No reserved memory region. default cma !
[   10.462612] rkisp rkisp-vir0: rkisp driver version: v02.05.00                
[   10.462765] rkisp rkisp-vir0: No memory-region-thunderboot specified         
[   10.464190] rkisp rkisp-vir0: Entity type for entity rkisp-isp-subdev was no!
[   10.497905] rockchip-csi2-dphy-hw ff3e8000.csi2-dphy-hw: csi2 dphy hw probe !
0                                                                               
[   10.515610] rockchip-csi2-dphy csi2-dphy0: csi2 dphy0 probe successfully!    
0                                                                               
[   10.835646] rkcif rkcif-mipi-lvds: clear unready subdev num: 3               
[   10.837405] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[0] get remote !
[   10.837434] rkcif-mipi-lvds: Async subdev notifier completed                 
[   10.837460] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[0] get remote !
[   10.837469] rkcif-mipi-lvds: There is not terminal subdev, not synchronized P
[   10.837510] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[0] get remote !
[   10.837519] rkcif-mipi-lvds: There is not terminal subdev, not synchronized P
[   10.838328] rkisp rkisp-vir0: clear unready subdev num: 1                    
[   10.838814] rkisp-vir0: Async subdev notifier completed                      
[   10.879695] rga: rga2, irq = 36, match scheduler                             
[   10.880987] rga: rga2 hardware loaded successfully, hw_version:3.3.87975.    
[   10.881014] rga: rga2 probe successfully                                     
[   10.881323] rga_iommu: IOMMU binding successfully, default mapping core[0x4] 
[   10.883248] rga: Module initialized. v1.3.1                                  
OK                                                                              
[   11.000806] mpp_vcodec: loading out-of-tree module taints kernel.            
[   11.016911] mpp_vcodec: init new                                             
[   11.017101] mpp_service mpp-srv: 424abb9b author: Yandong Lin 2024-04-29 [mph
[   11.017118] mpp_service mpp-srv: probe start                                 
[   11.019595] mpp_rkvenc_540c ffa50000.rkvenc: probing start                   
[   11.019887] mpp_rkvenc_540c ffa50000.rkvenc: probing finish                  
[   11.020382] mpp_vepu_pp ffa60000.rkvenc-pp: probe device                     
[   11.020515] mpp_vepu_pp ffa60000.rkvenc-pp: shared_rst_a_pp is not found!    
[   11.020528] vepu_pp_init:526: No aclk reset resource define                  
[   11.020537] mpp_vepu_pp ffa60000.rkvenc-pp: shared_rst_h_pp is not found!    
Input      (null) Format:SRGGB8_1X8 Size:800x600@4fps Offset(0,0)               
[   11.020546] vepu_pp_init:529: No hclk reset resource define                  
[   11.022279] mpp_vepu_pp ffa60000.rkvenc-pp: probing finish                   
ssh-keygen: generating new host keys: RSA [   11.022596] mpp_service mpp-srv: ps
[   11.055309] RKNPU ff660000.npu: RKNPU: rknpu iommu device-tree entry not foue
[   11.055904] RKNPU ff660000.npu: RKNPU: Initialized RKNPU driver: v0.9.2 for 5
[   11.056082] RKNPU ff660000.npu: dev_pm_opp_set_regulators: no regulator (rkn9
[   11.135270] rockit_load start                                                
[   11.169165] rockit_load end                                                  
[   11.191990] rve: rve_irq, irq = 52, match scheduler                          
[   11.196718] rve: Driver loaded successfully rve[2] ver:[2021]58.1a           
[   11.196746] rve: probe successfully                                          
[   11.198192] rve: Module initialized. v1.0.6                                  
/                                                                               
ln: /oem/usr/www/userdata: No such file or directory                            
ln: /oem/usr/www/usb0: No such file or directory                                
ln: /oem/usr/www/sdcard: No such file or directory                              
cat: can't open '/sys/bus/sdio/devices/*/uevent': No such file or directory     
cat: can't open '/sys/bus/sdio/devices/*/uevent': No such file or directory     
cat: can't open '/sys/bus/sdio/devices/*/uevent': No such file or directory     
Error: not found rkipc.ini !!!                                                  
/oem/usr/bin/RkLunch.sh: exit: line 107: Illegal number: -1                     
cat: can't open '/sys/bus/sdio/devices/*/uevent': No such file or directory     
cat: can't open '/sys/bus/sdio/devices/*/uevent': No such file or directory     
cat: can't open '/sys/bus/usb/devices/*/uevent': No such file or directory      
cat: can't open '/sys/bus/usb/devices/*/uevent': No such file or directory      
[   11.450841] rk_gmac-dwmac ffa80000.ethernet eth0: PHY [stmmac-0:02] driver [)
[   11.451244] dwmac4: Master AXI performs any burst length                     
[   11.451273] rk_gmac-dwmac ffa80000.ethernet eth0: No Safety Features supportd
cat: can't open '/sys/bus/usb/devices/*/uevent': No such file or directory      
[   11.451297] rk_gmac-dwmac ffa80000.ethernet eth0: PTP not supported by HW    
[   11.451632] rk_gmac-dwmac ffa80000.ethernet eth0: configuring for phy/rmii le
[   11.516818] udevd[306]: failed to execute '/lib/udev/v4l_id' 'v4l_id /dev/viy
cat: can't open '/sys/bus/sdio/devices/*/uevent': No such file or directory     
[   11.520880] udevd[307]: failed to execute '/lib/udev/v4l_id' 'v4l_id /dev/viy
[   11.522176] udevd[308]: failed to execute '/lib/udev/v4l_id' 'v4l_id /dev/viy
[   11.523245] udevd[309]: failed to execute '/lib/udev/v4l_id' 'v4l_id /dev/viy
[   11.524496] udevd[310]: failed to execute '/lib/udev/v4l_id' 'v4l_id /dev/viy
[   11.549618] udevd[315]: failed to execute '/lib/udev/v4l_id' 'v4l_id /dev/viy
[   11.554886] udevd[316]: failed to execute '/lib/udev/v4l_id' 'v4l_id /dev/viy
[   11.631542] udevd[321]: failed to execute '/lib/udev/v4l_id' 'v4l_id /dev/viy
[   11.632930] udevd[322]: failed to execute '/lib/udev/v4l_id' 'v4l_id /dev/viy
[   11.637540] udevd[324]: failed to execute '/lib/udev/v4l_id' 'v4l_id /dev/viy
wlan0 not found. Stop run rkwifi_server.                                        
[   13.526773] rk_gmac-dwmac ffa80000.ethernet eth0: Link is Up - 100Mbps/Full x
ECDSA ED25519                                                                   
Starting sshd: OK                                                               
Starting telnetd: OK                                                            
/etc/init.d/S50usbdevice: line 144: can't open : no such file                   
Debug: configfs_init                                                            
[   15.742929] file system registered                                           
mkdir: can't create directory '/sys/kernel/config/usb_gadget/rockchip/functionsy
[   15.761416] using random self ethernet address                               
[   15.761444] using random host ethernet address                               
mkdir: can't create directory '/sys/kernel/config/usb_gadget/rockchip/functionsy
[   15.775455] Mass Storage Function, version: 2009/09/11                       
[   15.775489] LUN: removable file: (no medium)                                 
[   15.862578] read descriptors                                                 
[   15.862779] read strings                                                     
[   16.858708] usb0: HOST MAC 46:4c:89:6a:73:1a                                 
[   16.858736] usb0: MAC 26:3b:89:4b:d2:1c                                      
[   16.977179] dwc3 ffb00000.usb: device reset                                  
[   17.095582] dwc3 ffb00000.usb: device reset                                  
[   17.222181] android_work: sent uevent USB_STATE=CONNECTED                    
[   17.227248] android_work: sent uevent USB_STATE=CONFIGURED                   
/usr/bin/luckfox-config: line 234: warning: command substitution: ignored null t
Only Luckfox Pico Ultra /Luckfox Pico Ultra W support RGB                       
Complete configuration loading                                                  
/root/main.py and /root/boot.py not exist ,pass...                              
OK                                                                              
hwclock: can't open '/dev/misc/rtc': No such file or directory                  
RTC does not require time calibration                                           
current_ip = 172.32.0.70                                                        
TARGET_IP = 172.32.0.93                                                         
luckfox : set usb0 ip                                                           
172.32.0.93                                                                     
usb0 config success                                                             
                                                                                
Welcome to luckfox pico                                                         
luckfox login: [  164.326325] rk_gmac-dwmac ffa80000.ethernet eth0: Link is Down

 

카메라 달고

DDR 306b9977f5 wesley.yao 23/12/21-09:28:37,fwver: v1.15
S5P1
4x
fc27
rgef0
rgef1
DDRConf1
DDR2, BW=16 Col=10 Bk=4 CS0 Row=13 CS=1 Size=64MB
528MHz
DDR bin out

U-Boot SPL board init
U-Boot SPL 2017.09 (Jun 26 2025 - 11:26:17)
Trying to boot from MMC2
MMC: no card present
mmc_init: -123, time 2
MMC: no card present
mmc_init: -123, time 2
spl: mmc init failed with error: -123
Trying to boot from MTD1
ENVF: Primary 0x00000000 - 0x00040000
No misc partition
Trying fit image at 0x400 sector
## Verified-boot: 0
## Checking uboot 0x00200000 (lzma @0x00400000) ... sha256(4d47532412...) + sha256(60a6b1a2c6...) + OK
## Checking fdt 0x00261170 ... sha256(9f596c5683...) + OK
Total: 133.963/216.804 ms

Jumping to U-Boot(0x00200000)


U-Boot 2017.09 (Jun 26 2025 - 11:26:17 +0800)

Model: Rockchip RV1106 EVB Board
MPIDR: 0xf00
PreSerial: 2, raw, 0xff4c0000
DRAM:  64 MiB
Sysmem: init
Relocation Offset: 03d80000
Relocation fdt: 02df9f58 - 02dfede8
CR: M/C/I
Using default environment

Bootdev(atags): mtd 1
ENVF: Primary 0x00000000 - 0x00040000
PartType: ENV
DM: v2
No misc partition
boot mode: None
RESC: 'boot', blk@0x00002002
resource: sha256+
FIT: no signed, no conf required
DTB: rk-kernel.dtb
HASH(c): OK
Model: Luckfox Pico Plus
## retrieving sd_update.txt ...
MMC: no card present
mmc_init: -123, time 2
CLK: (uboot. arm: enter 816000 KHz, init 816000 KHz, kernel 0N/A)
  apll 816000 KHz
  dpll 528000 KHz
  gpll 1188000 KHz
  cpll 1000000 KHz
  aclk_peri_root 400000 KHz
  hclK_peri_root 200000 KHz
  pclk_peri_root 100000 KHz
  aclk_bus_root 300000 KHz
  pclk_top_root 100000 KHz
  pclk_pmu_root 100000 KHz
  hclk_pmu_root 200000 KHz
Net:   eth0: ethernet@ffa80000
Hit key to stop autoboot('CTRL+C'):  0 
## Booting FIT Image at 0x28f8b00 with size 0x00300400
Fdt Ramdisk skip relocation
No misc partition
## Loading kernel from FIT Image at 028f8b00 ...
   Using 'conf' configuration
## Verified-boot: 0
   Trying 'kernel' kernel subimage
     Description:  unavailable
     Type:         Kernel Image
     Compression:  uncompressed
     Data Start:   0x02902100
     Data Size:    3108184 Bytes = 3 MiB
     Architecture: ARM
     OS:           Linux
     Load Address: 0x00008000
     Entry Point:  0x00008000
     Hash algo:    sha256
     Hash value:   0392dc0511d1bf4d71172f243b3539e9a64ec2e4bc38da8376d2c12f033f3687
   Verifying Hash Integrity ... sha256+ OK
## Loading fdt from FIT Image at 028f8b00 ...
   Using 'conf' configuration
   Trying 'fdt' fdt subimage
     Description:  unavailable
     Type:         Flat Device Tree
     Compression:  uncompressed
     Data Start:   0x028f9300
     Data Size:    36148 Bytes = 35.3 KiB
     Architecture: ARM
     Load Address: 0x00c00000
     Hash algo:    sha256
     Hash value:   b1e59866e424e3ea19754e15354aa22223981fe5eba6357dbc80cb718ac6adbd
   Verifying Hash Integrity ... sha256+ OK
   Loading fdt from 0x028f8b00 to 0x00c00000
   Booting using the fdt blob at 0x00c00000
   Loading Kernel Image from 0x02902100 to 0x00008000 ... OK
   kernel loaded at 0x00008000, end = 0x002fed58
   Using Device Tree in place at 00c00000, end 00c0bd33
Adding bank: 0x00000000 - 0x04000000 (size: 0x04000000)
Total: 593.829/815.731 ms

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 5.10.160 (hxj@luckfox-System-Product-Name) (arm-rockchip830-linux-uclibcgnueabihf-gcc (crosstool-NG 1.24.0) 8.3.0, GNU ld (crosstoo5
[    0.000000] CPU: ARMv7 Processor [410fc075] revision 5 (ARMv7), cr=50c53c7d
[    0.000000] CPU: div instructions available: patching division code
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[    0.000000] OF: fdt: Machine model: Luckfox Pico Plus
[    0.000000] Memory policy: Data cache writeback
[    0.000000] cma: Reserved 24576 KiB at 0x02800000
[    0.000000] Zone ranges:
[    0.000000]   Normal   [mem 0x0000000000000000-0x0000000003ffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000000000-0x0000000003ffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000003ffffff]
[    0.000000] CPU: All CPU(s) started in SVC mode.
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 16256
[    0.000000] Kernel command line: user_debug=31 storagemedia=mtd androidboot.storagemedia=mtd androidboot.mode=normal  rootwait earlycon=uart8250,mmio32,0xff45
[    0.000000] Dentry cache hash table entries: 8192 (order: 3, 32768 bytes, linear)
[    0.000000] Inode-cache hash table entries: 4096 (order: 2, 16384 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] Memory: 33452K/65536K available (3879K kernel code, 390K rwdata, 1884K rodata, 200K init, 139K bss, 7508K reserved, 24576K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[    0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
[    0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
[    0.000006] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
[    0.000019] Switching to timer-based delay loop, resolution 41ns
[    0.000517] Console: colour dummy device 80x30
[    0.000568] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=240000)
[    0.000586] pid_max: default: 4096 minimum: 301
[    0.000762] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.000775] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.001422] CPU: Testing write buffer coherency: ok
[    0.002110] Setting up static identity map for 0x81c0 - 0x81f8
[    0.002609] devtmpfs: initialized
[    0.009608] VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 5
[    0.009860] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.009888] futex hash table entries: 16 (order: -5, 192 bytes, linear)
[    0.009982] pinctrl core: initialized pinctrl subsystem
[    0.011220] NET: Registered protocol family 16
[    0.011699] DMA: failed to allocate 0 KiB pool for atomic coherent allocation
[    0.012300] Registered FIQ tty driver
[    0.012644] thermal_sys: Registered thermal governor 'step_wise'
[    0.012651] thermal_sys: Registered thermal governor 'user_space'
[    0.012902] cpuidle: using governor menu
[    0.026588] rockchip-gpio ff380000.gpio: probed /pinctrl/gpio@ff380000
[    0.027413] rockchip-gpio ff530000.gpio: probed /pinctrl/gpio@ff530000
[    0.028202] rockchip-gpio ff550000.gpio: probed /pinctrl/gpio@ff550000
[    0.028889] rockchip-gpio ff560000.gpio: probed /pinctrl/gpio@ff560000
[    0.028991] rockchip-pinctrl pinctrl: probed pinctrl
[    0.039296] fiq_debugger fiq_debugger.0: IRQ uart_irq not found
[    0.039320] fiq_debugger fiq_debugger.0: IRQ wakeup not found
[    0.039589] printk: console [ttyFIQ0] enabled
[    0.039790] Registered fiq debugger ttyFIQ0
[    0.041950] SCSI subsystem initialized
[    0.042177] usbcore: registered new interface driver usbfs
[    0.042240] usbcore: registered new interface driver hub
[    0.042291] usbcore: registered new device driver usb
[    0.042542] mc: Linux media interface: v0.10
[    0.042583] videodev: Linux video capture interface: v2.00
[    0.043815] Advanced Linux Sound Architecture Driver Initialized.
[    0.044649] rockchip-cpuinfo cpuinfo: SoC            : 11031000
[    0.044673] rockchip-cpuinfo cpuinfo: Serial         : 3c6d8f8ee95e4dd0
[    0.045079] rockchip,rknpor-powergood ff000000.syscon:rknpor-powergood: probe success!
[    0.045940] clocksource: Switched to clocksource arch_sys_counter
[    0.052700] NET: Registered protocol family 2
[    0.052955] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear)
[    0.053382] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes, linear)
[    0.053419] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.053437] TCP bind hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.053455] TCP: Hash tables configured (established 1024 bind 1024)
[    0.053568] UDP hash table entries: 256 (order: 0, 4096 bytes, linear)
[    0.053593] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes, linear)
[    0.053748] NET: Registered protocol family 1
[    0.054410] RPC: Registered named UNIX socket transport module.
[    0.054433] RPC: Registered udp transport module.
[    0.054440] RPC: Registered tcp transport module.
[    0.054446] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.055530] rockchip-thermal ff3c8000.tsadc: tsadc is probed successfully!
[    0.056716] Initialise system trusted keyrings
[    0.057048] workingset: timestamp_bits=30 max_order=14 bucket_order=0
[    0.060773] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.061613] NFS: Registering the id_resolver key type
[    0.061732] Key type id_resolver registered
[    0.061743] Key type id_legacy registered
[    0.061791] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[    0.062303] Key type asymmetric registered
[    0.062327] Asymmetric key parser 'x509' registered
[    0.062352] io scheduler mq-deadline registered
[    0.062768] rockchip-usb2phy ff3e0000.usb2-phy: IRQ index 0 not found
[    0.067717] dma-pl330 ff420000.dma-controller: Loaded driver for PL330 DMAC-241330
Seeding 256 bits and crediting
[    0.067754] dma-pl330 ff420000.dma-controller:       DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
Saving 256 bits of creditable seed for next boot
[    0.068604] rockchip-pvtm ff240000.pvtm: pvtm@0 probed
Starting syslogd: OK
[    0.068782] rockchip-pvtm ff390000.pvtm: pvtm@0 probed
Starting klogd: [    0.069130] rockchip-system-monitor rockchip-system-monitor: system monitor probe
OK
[    0.069686] Serial: 8250/16550 driver, 6 ports, IRQ sharing disabled
[    0.075490] random: crng init done
[    0.084526] brd: module loaded
[    0.090482] loop: module loaded
[    0.092740] spi-nand spi2.0: Winbond SPI NAND was found.
Running sysctl: [    0.092769] spi-nand spi2.0: 128 MiB, block size: 128 KiB, page size: 2048, OOB size: 64
[    0.094000] 7 cmdlinepart partitions found on MTD device spi-nand0
[    0.094019] Creating 7 MTD partitions on "spi-nand0":
[    0.094034] 0x000000000000-0x000000040000 : "env"
[    0.095937] 0x000000040000-0x000000080000 : "idblock"
[    0.097817] 0x000000080000-0x000000100000 : "uboot"
[    0.099725] 0x000000100000-0x000000500000 : "boot"
[    0.101586] 0x000000500000-0x000002300000 : "oem"
[    0.103538] 0x000002300000-0x000002900000 : "userdata"
OK
[    0.105484] 0x000002900000-0x000007e00000 : "rootfs"
Populating /dev using udev: [    0.109004] rk_gmac-dwmac ffa80000.ethernet: IRQ eth_lpi not found
[    0.109203] rk_gmac-dwmac ffa80000.ethernet: PTP uses main clock
[    0.109257] rk_gmac-dwmac ffa80000.ethernet: no regulator found
[    0.109270] rk_gmac-dwmac ffa80000.ethernet: clock input or output? (input).
[    0.109281] rk_gmac-dwmac ffa80000.ethernet: Can not read property: tx_delay.
[    0.109290] rk_gmac-dwmac ffa80000.ethernet: set tx_delay to 0xffffffff
[    0.109299] rk_gmac-dwmac ffa80000.ethernet: Can not read property: rx_delay.
[    0.109309] rk_gmac-dwmac ffa80000.ethernet: set rx_delay to 0xffffffff
[    0.109393] rk_gmac-dwmac ffa80000.ethernet: integrated PHY? (yes).
[    0.109409] rk_gmac-dwmac ffa80000.ethernet: cannot get clock mac_clk_rx
[    0.109421] rk_gmac-dwmac ffa80000.ethernet: cannot get clock mac_clk_tx
[    0.109456] rk_gmac-dwmac ffa80000.ethernet: cannot get clock clk_mac_speed
[    0.109465] rk_gmac-dwmac ffa80000.ethernet: clock input from PHY
[    0.109706] rk_gmac-dwmac ffa80000.ethernet: init for RMII
[    0.109952] rk_gmac-dwmac ffa80000.ethernet: User ID: 0x30, Synopsys ID: 0x51
[    0.109974] rk_gmac-dwmac ffa80000.ethernet:         DWMAC4/5
[    0.109990] rk_gmac-dwmac ffa80000.ethernet: DMA HW capability register supported
[    0.110001] rk_gmac-dwmac ffa80000.ethernet: RX Checksum Offload Engine supported
[    0.110009] rk_gmac-dwmac ffa80000.ethernet: TX Checksum insertion supported
[    0.110016] rk_gmac-dwmac ffa80000.ethernet: Wake-Up On Lan supported
[    0.110024] rk_gmac-dwmac ffa80000.ethernet: TSO supported
[    0.110033] rk_gmac-dwmac ffa80000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[    0.110042] rk_gmac-dwmac ffa80000.ethernet: TSO feature enabled
[    0.110054] rk_gmac-dwmac ffa80000.ethernet: Using 40 bits DMA width
[    0.117707] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.118072] usbcore: registered new interface driver usb-storage
[    0.118231] usbcore: registered new interface driver usb_ch343
[    0.118243] ch343: USB serial driver for ch342/ch343/ch344/ch347/ch9101/ch9102/ch9103/ch9104, etc.
[    0.118249] ch343: V1.5 On 2022.12
[    0.118426] gadgetfs: USB Gadget filesystem, version 24 Aug 2004
[    0.118472] Mass Storage Function, version: 2009/09/11
[    0.118486] LUN: removable file: (no medium)
[    0.118524] no file given for LUN0
[    0.118558] udc ffb00000.usb: failed to start g_mass_storage: -22
[    0.119151] i2c /dev entries driver
[    0.120751] i2c i2c-4: 1 i2c clients have been registered at 0x30
[    0.121132] i2c i2c-4: 2 i2c clients have been registered at 0x30
[    0.122143] usbcore: registered new interface driver uvcvideo
[    0.122160] USB Video Class driver (1.1.1)
[    0.122943] cpu cpu0: leakage=15
[    0.123711] cpu cpu0: avs=0
[    0.123882] cpu cpu0: opp calibration done
[    0.124064] cpu cpu0: l=10000 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[    0.124524] Synopsys Designware Multimedia Card Interface Driver
[    0.125422] dtbocfg: 0.1.0
[    0.125481] dtbocfg: OK
[    0.127049] dwmmc_rockchip ffaa0000.mmc: No normal pinctrl state
[    0.127083] dwmmc_rockchip ffaa0000.mmc: No idle pinctrl state
[    0.127332] dwmmc_rockchip ffaa0000.mmc: IDMAC supports 32-bit address mode.
[    0.127384] dwmmc_rockchip ffaa0000.mmc: Using internal DMA controller.
[    0.127402] dwmmc_rockchip ffaa0000.mmc: Version ID is 270a
[    0.127447] dwmmc_rockchip ffaa0000.mmc: DW MMC controller at irq 50,32 bit host data width,256 deep fifo
[    0.127571] mmc_host mmc1: card is non-removable.
[    0.128756] usbcore: registered new interface driver snd-usb-audio
[    0.129369] rv1106-acodec ff480000.acodec: current soc_id: rv1103
[    0.129470] rv1106-acodec ff480000.acodec: Use pa_ctl_gpio and pa_ctl_delay_ms: 0
[    0.131285] NET: Registered protocol family 17
[    0.131401] Key type dns_resolver registered
[    0.132447] Loading compiled-in X.509 certificates
[    0.149047] mmc_host mmc1: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0)
[    0.160683] input: adc-keys as /devices/platform/adc-keys/input/input0
[    0.188190] mmc_host mmc1: Bus speed (slot 0) = 300000Hz (slot req 300000Hz, actual 300000HZ div = 0)
[    0.239257] ubi0: attaching mtd6
[    0.248602] mmc_host mmc1: Bus speed (slot 0) = 200000Hz (slot req 200000Hz, actual 200000HZ div = 0)
[    0.296033] mmc_host mmc1: Bus speed (slot 0) = 187500Hz (slot req 100000Hz, actual 93750HZ div = 1)
[    0.412063] ubi0: scanning is finished
[    0.416880] ubi0: attached mtd6 (name "rootfs", size 85 MiB)
[    0.416907] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes
[    0.416916] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048
[    0.416925] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096
[    0.416934] ubi0: good PEBs: 680, bad PEBs: 0, corrupted PEBs: 0
[    0.416943] ubi0: user volume: 1, internal volumes: 1, max. volumes count: 128
[    0.416953] ubi0: max/mean erase counter: 2/0, WL threshold: 4096, image sequence number: 390075883
[    0.416963] ubi0: available PEBs: 0, total reserved PEBs: 680, PEBs reserved for bad PEB handling: 20
[    0.418189] ALSA device list:
[    0.418209]   #0: rv-acodec
[    0.418996] ubi0: background thread "ubi_bgt0d" started, PID 55
[    0.419102] UBIFS (ubi0:0): Mounting in unauthenticated mode
[    0.435641] UBIFS (ubi0:0): recovery needed
[    0.464321] UBIFS (ubi0:0): recovery deferred
[    0.464457] UBIFS (ubi0:0): UBIFS: mounted UBI device 0, volume 0, name "rootfs", R/O mode
[    0.464473] UBIFS (ubi0:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes
[    0.464487] UBIFS (ubi0:0): FS size: 81899520 bytes (78 MiB, 645 LEBs), journal size 9023488 bytes (8 MiB, 72 LEBs)
[    0.464496] UBIFS (ubi0:0): reserved for root: 0 bytes (0 KiB)
[    0.464508] UBIFS (ubi0:0): media format: w4/r0 (latest is w5/r0), UUID C56877BC-9B0F-4083-82F3-9ED0A04F937F, small LPT model
[    0.464937] VFS: Mounted root (ubifs filesystem) readonly on device 0:14.
[    0.465744] devtmpfs: mounted
[    0.466012] Freeing unused kernel memory: 200K
[    0.466023] Kernel memory protection not selected by kernel config.
[    0.466053] Run /sbin/init as init process
[    0.473350] process '/bin/busybox' started with executable stack
[    0.532097] UBIFS (ubi0:0): completing deferred recovery
[    0.567564] UBIFS (ubi0:0): background thread "ubifs_bgt0_0" started, PID 58
[    0.573267] UBIFS (ubi0:0): deferred recovery completed
[    0.800126] udevd[88]: starting version 3.2.7
[    0.816457] udevd[88]: specified group 'input' unknown
[    0.817463] udevd[88]: specified group 'kvm' unknown
[    0.840905] udevd[89]: starting eudev-3.2.7
[    1.250973] udevd[103]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /dev/mtd0ro': No such file or directory
[    1.255209] udevd[105]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /dev/mtd2ro': No such file or directory
[    1.255847] udevd[104]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /dev/mtd1ro': No such file or directory
[    1.259272] udevd[106]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /dev/mtd3ro': No such file or directory
[    1.260577] udevd[107]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /dev/mtd4ro': No such file or directory
[    1.289622] udevd[109]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /dev/mtd6ro': No such file or directory
[    1.294649] udevd[108]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /dev/mtd5ro': No such file or directory
done
/etc/init.d/S20linkmount info: mount point path [IGNORE] not found, skip...
***********/dev/ubi4_0 not exist***********
***********/dev/ubi4 not exist***********
[    1.724522] ubi4: attaching mtd4
[    1.784798] ubi4: scanning is finished
[    1.793420] ubi4: attached mtd4 (name "oem", size 30 MiB)
[    1.793451] ubi4: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes
UBI device number 4, total 240 LEBs (30474240 bytes, 29.1 MiB), available 0 LEBs (0 bytes), LEB size 126976 bytes (124.0 KiB)
[    1.793461] ubi4: min./max. I/O unit sizes: 2048/2048, sub-page size 2048
try to make volume: /dev/ubi4_0 ...
[    1.793471] ubi4: VID header offset: 2048 (aligned 2048), data offset: 4096
ubimkvol: error!: bad volume size: "0"
[    1.793479] ubi4: good PEBs: 240, bad PEBs: 0, corrupted PEBs: 0
[    1.793489] ubi4: user volume: 1, internal volumes: 1, max. volumes count: 128
[    1.793500] ubi4: max/mean erase counter: 2/0, WL threshold: 4096, image sequence number: 856855343
[    1.793509] ubi4: available PEBs: 0, total reserved PEBs: 240, PEBs reserved for bad PEB handling: 20
[    1.794785] ubi4: background thread "ubi_bgt4d" started, PID 129
[    1.822237] UBIFS (ubi4:0): Mounting in unauthenticated mode
[    1.822515] UBIFS (ubi4:0): background thread "ubifs_bgt4_0" started, PID 134
[    1.839833] UBIFS (ubi4:0): recovery needed
[    1.889204] UBIFS (ubi4:0): recovery completed
[    1.889326] UBIFS (ubi4:0): UBIFS: mounted UBI device 4, volume 0, name "oem"
[    1.889342] UBIFS (ubi4:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes
[    1.889355] UBIFS (ubi4:0): FS size: 26157056 bytes (24 MiB, 206 LEBs), journal size 4190208 bytes (3 MiB, 33 LEBs)
[    1.889364] UBIFS (ubi4:0): reserved for root: 0 bytes (0 KiB)
***********/dev/ubi5_0 not exist***********
[    1.889377] UBIFS (ubi4:0): media format: w4/r0 (latest is w5/r0), UUID 46669579-30C0-42F7-B140-BC1C222FA599, small LPT model
***********/dev/ubi5 not exist***********
[    1.929043] ubi5: attaching mtd5
[    1.941611] ubi5: scanning is finished
UBI device number 5, total 48 LEBs (6094848 bytes, 5.8 MiB), available 0 LEBs (0 bytes), LEB size 126976 bytes (124.0 KiB)
[    1.950211] ubi5: attached mtd5 (name "userdata", size 6 MiB)
try to make volume: /dev/ubi5_0 ...
[    1.950239] ubi5: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes
ubimkvol: error!: bad volume size: "0"
[    1.950248] ubi5: min./max. I/O unit sizes: 2048/2048, sub-page size 2048
[    1.950258] ubi5: VID header offset: 2048 (aligned 2048), data offset: 4096
[    1.950267] ubi5: good PEBs: 48, bad PEBs: 0, corrupted PEBs: 0
[    1.950276] ubi5: user volume: 1, internal volumes: 1, max. volumes count: 128
[    1.950286] ubi5: max/mean erase counter: 2/1, WL threshold: 4096, image sequence number: 1133520942
[    1.950297] ubi5: available PEBs: 0, total reserved PEBs: 48, PEBs reserved for bad PEB handling: 20
[    1.952447] ubi5: background thread "ubi_bgt5d" started, PID 143
[    1.973134] UBIFS (ubi5:0): Mounting in unauthenticated mode
[    1.973404] UBIFS (ubi5:0): background thread "ubifs_bgt5_0" started, PID 148
[    1.990342] UBIFS (ubi5:0): recovery needed
Initializing random number generator... [    2.039237] UBIFS (ubi5:0): recovery completed
[    2.039368] UBIFS (ubi5:0): UBIFS: mounted UBI device 5, volume 0, name "userdata"
[    2.039383] UBIFS (ubi5:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes
done.
[    2.039396] UBIFS (ubi5:0): FS size: 1777664 bytes (1 MiB, 14 LEBs), journal size 1142785 bytes (1 MiB, 9 LEBs)
[    2.039406] UBIFS (ubi5:0): reserved for root: 0 bytes (0 KiB)
[    2.039418] UBIFS (ubi5:0): media format: w4/r0 (latest is w5/r0), UUID CC149189-A83A-40F1-8FC2-61374A6C968F, small LPT model
/dev/ubi5_0 on /userdata type ubifs (rw,relatime,assert=read-only,ubi=5,vol=0)
Starting network: [    2.177175] rk_dvbm ffa70000.rkdvbm: probe start
[    2.177224] rk_dvbm ffa70000.rkdvbm: dvbm ctx f401c79f
[    2.177803] rk_dvbm ffa70000.rkdvbm: probe success
[    2.202066] sc3336 4-0030: driver version: 00.01.01
[    2.202159] sc3336 4-0030: Failed to get reset-gpios
[    2.202216] sc3336 4-0030: could not get default pinstate
OK
[    2.202226] sc3336 4-0030: could not get sleep pinstate
Starting ntpd: [    2.202253] sc3336 4-0030: supply avdd not found, using dummy regulator
[    2.202505] sc3336 4-0030: supply dovdd not found, using dummy regulator
[    2.202593] sc3336 4-0030: supply dvdd not found, using dummy regulator
[    2.220847] sc3336 4-0030: Detected OV00cc41 sensor
[    2.293353] rkcifhw ffa10000.rkcif: no iommu attached, using non-iommu buffers
[    2.293394] rkcifhw ffa10000.rkcif: No reserved memory region assign to CIF
[    2.293828] rkcif rkcif-mipi-lvds: rkcif driver version: v00.02.00
[    2.293954] rkcif rkcif-mipi-lvds: attach to cif hw node
[    2.293969] rkcif rkcif-mipi-lvds: failed to get dphy hw node
[    2.293981] rkcif rkcif-mipi-lvds: rkcif wait line 0
[    2.293993] rkcif rkcif-mipi-lvds: rkcif fastboot reserve bufs num 3
[    2.294009] : terminal subdev does not exist
[    2.294021] : terminal subdev does not exist
[    2.294028] : terminal subdev does not exist
[    2.294036] : terminal subdev does not exist
[    2.294047] : get_remote_sensor: video pad[0] is null
[    2.294058] : rkcif_update_sensor_info: stream[0] get remote sensor_sd failed!
[    2.294070] : rkcif_scale_set_fmt: req(80, 60) src out(0, 0)
[    2.294078] : get_remote_sensor: video pad[0] is null
[    2.294086] : rkcif_update_sensor_info: stream[0] get remote sensor_sd failed!
[    2.294094] : rkcif_scale_set_fmt: req(80, 60) src out(0, 0)
[    2.294102] : get_remote_sensor: video pad[0] is null
[    2.294109] : rkcif_update_sensor_info: stream[0] get remote sensor_sd failed!
[    2.294117] : rkcif_scale_set_fmt: req(80, 60) src out(0, 0)
[    2.294126] : get_remote_sensor: video pad[0] is null
[    2.294132] : rkcif_update_sensor_info: stream[0] get remote sensor_sd failed!
[    2.294141] : rkcif_scale_set_fmt: req(80, 60) src out(0, 0)
[    2.309171] rkcif rkcif-mipi-lvds: No memory-region-thunderboot specified
[    2.310491] rockchip-mipi-csi2-hw ffa20000.mipi-csi2-hw: enter mipi csi2 hw probe!
[    2.310691] rockchip-mipi-csi2-hw ffa20000.mipi-csi2-hw: probe success, v4l2_dev:mipi-csi2-hw!
[    2.310878] rockchip-mipi-csi2-hw ffa30000.mipi-csi2-hw: enter mipi csi2 hw probe!
[    2.311043] rockchip-mipi-csi2-hw ffa30000.mipi-csi2-hw: probe success, v4l2_dev:mipi-csi2-hw!
[    2.311529] rockchip-mipi-csi2 mipi0-csi2: attach to csi2 hw node
[    2.311600] rkcif rkcif-mipi-lvds: Entity type for entity rockchip-mipi-csi2 was not initialized!
[    2.311621] rockchip-mipi-csi2: Async registered subdev
[    2.311636] rockchip-mipi-csi2: probe success, v4l2_dev:rkcif-mipi-lvds!
[    2.376171] rkisp_hw ffa00000.rkisp: is_thunderboot: 0
[    2.376204] rkisp_hw ffa00000.rkisp: Missing rockchip,grf property
[    2.376254] rkisp_hw ffa00000.rkisp: max input:0x0@0fps
[    2.376434] rkisp_hw ffa00000.rkisp: get sram size:253952
[    2.376449] rkisp_hw ffa00000.rkisp: no iommu attached, using non-iommu buffers
[    2.376461] rkisp_hw ffa00000.rkisp: No reserved memory region. default cma area!
[    2.376889] rkisp rkisp-vir0: rkisp driver version: v02.05.00
[    2.377046] rkisp rkisp-vir0: No memory-region-thunderboot specified
[    2.378396] rkisp rkisp-vir0: Entity type for entity rkisp-isp-subdev was not initialized!
[    2.409710] rockchip-csi2-dphy-hw ff3e8000.csi2-dphy-hw: csi2 dphy hw probe successfully!
[    2.427277] rockchip-csi2-dphy csi2-dphy0: dphy0 matches m00_b_sc3336 4-0030:bus type 5
[    2.427309] rockchip-csi2-dphy csi2-dphy0: csi2 dphy0 probe successfully!
0
[    2.729629] rkcif rkcif-mipi-lvds: clear unready subdev num: 2
[    2.731510] rkcif-mipi-lvds: Async subdev notifier completed
[    2.732925] rkisp-vir0: Async subdev notifier completed
[    2.733794] rkisp rkisp-vir0: clear unready subdev num: 0
[    2.772340] rga: rga2, irq = 36, match scheduler
[    2.773451] rga: rga2 hardware loaded successfully, hw_version:3.3.87975.
[    2.773480] rga: rga2 probe successfully
[    2.773798] rga_iommu: IOMMU binding successfully, default mapping core[0x4]
[    2.775303] rga: Module initialized. v1.3.1
OK
[    2.899225] mpp_vcodec: loading out-of-tree module taints kernel.
[    2.918474] mpp_vcodec: init new
[    2.918675] mpp_service mpp-srv: 424abb9b author: Yandong Lin 2024-04-29 [mpp_enc]: fix wrap enc sw timeout when resolution switch
[    2.918690] mpp_service mpp-srv: probe start
[    2.920674] mpp_rkvenc_540c ffa50000.rkvenc: probing start
[    2.920967] mpp_rkvenc_540c ffa50000.rkvenc: probing finish
[    2.921468] mpp_vepu_pp ffa60000.rkvenc-pp: probe device
[    2.921582] mpp_vepu_pp ffa60000.rkvenc-pp: shared_rst_a_pp is not found!
[    2.921594] vepu_pp_init:526: No aclk reset resource define
[    2.921604] mpp_vepu_pp ffa60000.rkvenc-pp: shared_rst_h_pp is not found!
Input      rkcif-mipi-lvds Format:SBGGR10_1X10 Size:2304x1296@30fps Offset(0,0)
[    2.921611] vepu_pp_init:529: No hclk reset resource define
[    2.923359] mpp_vepu_pp ffa60000.rkvenc-pp: probing finish
[    2.923681] mpp_service mpp-srv: probe success
[    2.954319] RKNPU ff660000.npu: RKNPU: rknpu iommu device-tree entry not found!, using non-iommu mode
[    2.954918] RKNPU ff660000.npu: RKNPU: Initialized RKNPU driver: v0.9.2 for 20230825
[    2.955035] RKNPU ff660000.npu: dev_pm_opp_set_regulators: no regulator (rknpu) found: -19
Starting sshd: [    3.043190] rockit_load start
[    3.064704] rockit_load end
[    3.085357] rve: rve_irq, irq = 52, match scheduler
[    3.085926] rve: Driver loaded successfully rve[2] ver:[2021]58.1a
[    3.086005] rve: probe successfully
[    3.088428] rve: Module initialized. v1.0.6
/
ln: /oem/usr/www/userdata: No such file or directory
ln: /oem/usr/www/usb0: No such file or directory
ln: /oem/usr/www/sdcard: No such file or directory
cat: can't open '/sys/bus/sdio/devices/*/uevent': No such file or directory
cat: can't open '/sys/bus/sdio/devices/*/uevent': No such file or directory
sc3336                  9940  1 
cat: can't open '/sys/bus/sdio/devices/*/uevent': No such file or directory
cat: can't open '/sys/bus/sdio/devices/*/uevent': No such file or directory
cat: can't open '/sys/bus/sdio/devices/*/uevent': No such file or directory
cat: can't open '/sys/bus/usb/devices/*/uevent': No such file or directory
cat: can't open '/sys/bus/usb/devices/*/uevent': No such file or directory
cat: can't open '/sys/bus/usb/devices/*/uevent': No such file or directory
cat: can't open '/sys/bus/sdio/devices/*/uevent': No such file or directory
[    3.431562] rk_gmac-dwmac ffa80000.ethernet eth0: PHY [stmmac-0:02] driver [RK630 PHY] (irq=POLL)
[    3.431966] dwmac4: Master AXI performs any burst length
[    3.431997] rk_gmac-dwmac ffa80000.ethernet eth0: No Safety Features support found
[    3.432019] rk_gmac-dwmac ffa80000.ethernet eth0: PTP not supported by HW
[    3.432347] rk_gmac-dwmac ffa80000.ethernet eth0: configuring for phy/rmii link mode
OK
wlan0 not found. Stop run rkwifi_server.
Starting telnetd: OK
/etc/init.d/S50usbdevice: line 144: can't open : no such file
Debug: configfs_init
[    3.929663] file system registered
mkdir: can't create directory '/sys/kernel/config/usb_gadget/rockchip/functions/mtp.gs0': No such file or directory
[    3.971746] using random self ethernet address
[    3.971783] using random host ethernet address
mkdir: can't create directory '/sys/kernel/config/usb_gadget/rockchip/functions/acm.gs6': No such file or directory
[    3.998965] Mass Storage Function, version: 2009/09/11
[    3.998999] LUN: removable file: (no medium)
[    4.139705] read descriptors
[    4.139916] read strings
[common.c][rkipc_version_dump]:rkipc version: unknown rkipc version for missing VCS info
[common.c][rkipc_version_dump]:rkipc info: unknown rkipc build info
[common.c][rkipc_version_dump]:rkipc type: COMPILE_FOR_RV1103_IPC
[rkipc.c][main]:rkipc_ini_path_ is (null), rkipc_iq_file_path_ is /oem/usr/share/iqfiles, rkipc_log_level is 2
[param.c][rk_param_init]:g_ini_path_ is /userdata/rkipc.ini
[network.c][rk_net_proc]:Creat rk_net_proc thread!
[isp.c][rk_isp_init]:g_iq_file_dir_ is /oem/usr/share/iqfiles
[isp.c][rk_isp_init]:cam_id is 0, hdr_mode is close, scenario is normal
[    4.226884] stream_cif_mipi_id0: s_power 1, entity use_count 1
[network.c][ntp_client_thread]:refresh_time_s is 60, ntp_server is 119.28.183.184
[    4.227768] stream_cif_mipi_id0: s_power 0, entity use_count 0
rkaiq log level ff1
XCORE:K:rk_aiq_init_lib, ISP HW ver: 32
XCORE:K:
************************** VERSION INFOS **************************
version release date: 2024-2-18
         AIQ:       AIQ v5.0x5.0

git logs:
25bd14e RV1106: smart_door: release rga/isp/mpp for V1.3.0
99d080a RV1106/RV1103: Battery/Doorbell: release kmpp/rockit-ko for V1.3.2
6458e2a RV1106/RV1103: Battery/Doorbell: release kmpp/rockit-ko for V1.3.1
e8dab39 RV1106: CVR: release rga/isp/mpp for V1.1.0
a021b32 RV1106/RV1103: Battery/Doorbell: release kmpp/rockit-ko for V1.3.0

************************ VERSION INFOS END ************************

[isp.c][sample_common_isp_init]:ID: 0, sensor_name is m00_b_sc3336 4-0030, iqfiles is /oem/usr/share/iqfiles
XCORE:K:rk_aiq_uapi_sysctl_preInit_devBufCnt: dev_ent:rkraw_rx, buf_cnt:2
[isp.c][sample_common_isp_init]:main_scene is normal, sub_scene is day
[isp.c][sample_common_isp_init]:00:00:04.227150: rk_aiq_uapi2_sysctl_preInit_scene begin
XCORE:K:rk_aiq_uapi_sysctl_preInit_scene: main_scene: normal, sub_scene: day
[isp.c][sample_common_isp_init]:00:00:04.227444: rk_aiq_uapi2_sysctl_preInit_scene over
XCORE:E:invalid main scene len!

[    4.476021] stream_cif_mipi_id0: s_power 1, entity use_count 1
[    4.478694] stream_cif_mipi_id0: open video, entity use_countt 2
IPCSERVER:K:cid[0] Process path:/tmp/UNIX.domain0, sockfd:14
[    4.478940] stream_cif_mipi_id1: open video, entity use_countt 1
XCORE:K:cid[0] rk_aiq_uapi_sysctl_init success. iq:/oem/usr/share/iqfiles/sc3336_CMK-OT2119-PC1_30IRC-F16.json
[isp.c][sample_common_isp_init]:00:00:04.477478: rk_aiq_uapi2_sysctl_init over
[    4.512880] rkisp rkisp-vir0: first params buf queue
XCORE:K:cid[0] rk_aiq_uapi_sysctl_prepare success. mode:0 
[isp.c][sample_common_isp_run]:00:00:04.507136: rk_aiq_uapi2_sysctl_prepare succeed
CAMHW:K:cid[0] start success. isGroup:0, isOnline:1, isMultiIsp:0, init_ens:0x1bfc0ffc4739
XCORE:K:cid[0] rk_aiq_uapi_sysctl_start success.
[isp.c][sample_common_isp_run]:00:00:04.509710: rk_aiq_uapi2_sysctl_start succeed
failed to open /sys/class/pwm/pwmchip3/export
[isp.c][rk_isp_set_light_strength]:pwm3 init failed -2
[isp.c][rk_isp_set_blc_strength]:blc mode is not enabled
[isp.c][rk_isp_set_hlc_level]:hlc mode is not enabled
[isp.c][rk_isp_set_white_blance_red]:white blance is auto, not support set gain
[isp.c][rk_isp_set_white_blance_green]:white blance is auto, not support set gain
[isp.c][rk_isp_set_white_blance_blue]:white blance is auto, not support set gain
[    4.658110] vsys dev open 27
ALDCH:E:uapi want to disalbe ldch, but ldch has been disalbed!
[    4.674773] stream_cif_mipi_id0: open video, entity use_countt 3
ALDCH:E:uapi want to disalbe ldch, but ldch has been disalbed!
[    4.674880] stream_cif_mipi_id0: close video, entity use_count 2
rockit log path (null), log_size = 0, can use export rt_log_path=, export rt_log_size= change
[    4.682117] stream_cif_mipi_id0: open video, entity use_countt 3
log_file = (nil) 
[    4.683782] stream_cif_mipi_id0: close video, entity use_count 2
RTVersion        00:00:04-637 {dump              :064} ---------------------------------------------------------
[    4.699112] stream_cif_mipi_id0: open video, entity use_countt 3
RTVersion        00:00:04-638 {dump              :065} rockit version: git-4720dc10a Tue Apr 30 15:47:55 2024 +0800
[    4.699305] stream_cif_mipi_id0: close video, entity use_count 2
RTVersion        00:00:04-639 {dump              :066} rockit building: built- 2024-04-30 15:53:43
[    4.705241] stream_cif_mipi_id0: open video, entity use_countt 3
RTVersion        00:00:04-639 {dump              :067} ---------------------------------------------------------
[    4.705333] stream_cif_mipi_id0: close video, entity use_count 2
rockit default level 4, can use export rt_log_level=x, x=0,1,2,3,4,5,6 change
[    4.710484] rkisp-vir0: rockit wrap buf:0x2d12000
(null)           00:00:04-639 {read_log_level    :098} text is all=4
[    4.710507] rkisp queue buf done
(null)           00:00:04-640 {read_log_level    :100} module is all, log_level is 4
[    4.711239] rkisp-vir0: wrap_line mode can not set the mirror
(null)           00:00:04-644 {monitor_log_level :149} #Start monitor_log_level thread, arg:(nil)
[    4.711482] rkisp_hw ffa00000.rkisp: set isp clk = 198000000Hz
[video.c][rk_video_init]:enable_jpeg is 1, enable_venc_0 is 1, enable_venc_1 is 1, enable_rtsp is 1, enable_rtmp is 0
[    4.713347] rkcif-mipi-lvds: stream[0] start streaming
RKViDev          00:00:04-660 {vi_set_dev_attr   :612} VI_DEV_ATTR_S all parameter reserved
[    4.713501] rockchip-mipi-csi2 mipi0-csi2: stream on, src_sd: a2acbb11, sd_name:rockchip-csi2-dphy0
RTIsp3x          00:00:04-668 {ispInitDevice     :591} sensor name = m00_b_sc3336 4-0030
[    4.713516] rockchip-mipi-csi2 mipi0-csi2: stream ON
RTDeviceSensorV4 00:00:04-676 {ispOpenDevice     :502} v4l2_open(/dev/video0), handler=46
[    4.713576] rockchip-csi2-dphy0: dphy0, data_rate_mbps 510
RTDeviceSensorV4 00:00:04-676 {ispOpenDevice     :502} v4l2_open(/dev/v4l-subdev2), handler=48
[    4.713614] rockchip-csi2-dphy csi2-dphy0: csi2_dphy_s_stream stream on:1, dphy0, ret 0
RTDeviceSensorV4 00:00:04-677 {close             :112} do RTDeviceSensorV4L2 close
[    4.738775] rkisp-vir0: wrap_line mode can not set the mirror
RTDeviceSensorV4 00:00:04-678 {close             :112} do RTDeviceSensorV4L2 close
[    4.745841] mpp_vcodec: 45: num_chan = 0
[INFO  rtsp_demo.c:280:rtsp_new_demo] rtsp server demo starting on port 554
[    4.746211] mpp_vcodec: 387: attr->max_width = 2304, attr->max_height = 1296
[DEBUG rtsp_demo.c:480:rtsp_new_session] add session path: /live/0
[    4.756595] mpp_vcodec: 103: create channel 0 handle 0fc824ac online 1
rtsp streamq_alloc size is 1753484
[    4.781637] 836: MPP_ENC_SET_CFG in 
rtsp streamq_alloc size is 59884
[    4.781694] 532: MPP_ENC_SET_RC_CFG bps 11197440 [10497600 : 11897280] fps [30:30] gop 60
[DEBUG rtsp_demo.c:480:rtsp_new_session] add session path: /live/1
[    4.781718] h265e_proc_prep_cfg:422: MPP_ENC_SET_PREP_CFG w:h [2304:1296] stride [2304:1296]
rtsp streamq_alloc size is 1753484
[    4.781729] 270: send header for set cfg change input/format 
rtsp streamq_alloc size is 59884
[    4.783732] 836: MPP_ENC_SET_CFG in 
RKViChn          00:00:04-686 {prepareRuntime    :354} ---------------------------------------------------------
[    4.783757] 532: MPP_ENC_SET_RC_CFG bps 2048000 [1920000 : 2176000] fps [30:30] gop 50
RKViChn          00:00:04-686 {prepareRuntime    :356} vi version: 1.22, name:vvi
[    4.783770] 270: send header for set cfg change rc_mode/fps/gop
RKViChn          00:00:04-686 {prepareRuntime    :357} rockit-ko version: vmpi:28ee389dbc33
[    4.784004] 836: MPP_ENC_SET_CFG in 
RKViChn          00:00:04-686 {prepareRuntime    :358} rockit-ko building: -2024-05-24-18:15:06
[    4.784020] 532: MPP_ENC_SET_RC_CFG bps 2048000 [1920000 : 2176000] fps [25:25] gop 50
RKViChn          00:00:04-686 {prepareRuntime    :359} ---------------------------------------------------------
[    4.784032] 270: send header for set cfg change rc_mode/fps/gop
cmpi             00:00:04-690 {prepareRuntime    :378} mb pool create success, MBCnt= 2
[    4.784216] 836: MPP_ENC_SET_CFG in 
[video.c][rkipc_pipe_0_init]:set vi channel wrap line: 324, wrapBuffSize = 1119744
[    4.784236] 532: MPP_ENC_SET_RC_CFG bps 2048000 [1920000 : 2176000] fps [25:25] gop 50
cmpi             00:00:04-691 {updateWrapLine    :1968} tmp wrap_line: 324, cur wrap_line: 324, cur_w: 2304, cur_h: 1296, max_res_width: 2304
[    4.784247] 270: send header for set cfg change rc_mode/fps/gop
RTIsp3x          00:00:04-692 {ispInitDevice     :591} sensor name = m00_b_sc3336 4-0030
[    4.784765] 836: MPP_ENC_SET_CFG in 
cmpi             00:00:04-694 {createRuntime     :634} >>>>>>>>> Sensor link info dump: <<<<<<<<<
[    4.784793] 532: MPP_ENC_SET_RC_CFG bps 2048000 [1920000 : 2176000] fps [25:25] gop 50
cmpi             00:00:04-695 {createRuntime     :636}   vicap media name           : /dev/media0
[    4.784810] 270: send header for set cfg change rc_mode/fps/gop
cmpi             00:00:04-695 {createRuntime     :637}   vicap model name           : rkcif-mipi-lvds
[    4.788285] 836: MPP_ENC_SET_CFG in 
cmpi             00:00:04-695 {createRuntime     :638}   camera id                  : 0
[    4.788326] 532: MPP_ENC_SET_RC_CFG bps 2048000 [1920000 : 2176000] fps [25:25] gop 50
cmpi             00:00:04-695 {createRuntime     :639}   sensor name                : m00_b_sc3336 4-0030
[    4.788354] 270: send header for set cfg change rc_mode/fps/gop
cmpi             00:00:04-695 {createRuntime     :641}   stream_cif_mipi_id0 video name: /dev/video0
[    4.789179] 836: MPP_ENC_SET_CFG in 
cmpi             00:00:04-695 {createRuntime     :642}   stream_cif_mipi_id1 video name: /dev/video1
[    4.789201] 532: MPP_ENC_SET_RC_CFG bps 2048000 [1920000 : 2176000] fps [25:25] gop 50
cmpi             00:00:04-695 {createRuntime     :643}   stream_cif_mipi_id2 video name: /dev/video2
[    4.789214] 270: send header for set cfg change rc_mode/fps/gop
cmpi             00:00:04-695 {createRuntime     :644}   stream_cif_mipi_id3 video name: /dev/video3
[    4.789475] 1155: mode cbr bps [1920000:2048000:2176000] fps fix [25/1] -> fix [25/1] gop i [50] v [0]
cmpi             00:00:04-695 {createRuntime     :646}   sensor raw width           : 2304
[    4.793218] stream_cif_mipi_id0: open video, entity use_countt 3
cmpi             00:00:04-695 {createRuntime     :647}   sensor raw height          : 1296
[    4.793346] stream_cif_mipi_id0: close video, entity use_count 2
cmpi             00:00:04-695 {createRuntime     :648} ---------------------------------------------------------
[    4.807355] stream_cif_mipi_id0: open video, entity use_countt 3
cmpi             00:00:04-695 {createRuntime     :654}   isp media name           : /dev/media1
[    4.807476] stream_cif_mipi_id0: close video, entity use_count 2
cmpi             00:00:04-695 {createRuntime     :655}   isp model name           : rkisp0
[    4.809995] rkisp queue buf done
cmpi             00:00:04-695 {createRuntime     :656}   isp driver name          : rkisp-vir0
[    4.810240] rkisp-vir0: wrap_line mode can not set the mirror
cmpi             00:00:04-695 {createRuntime     :657}   isp dev name             : /dev/v4l-subdev3
[    4.811230] rkisp-vir0: wrap_line mode can not set the mirror
cmpi             00:00:04-695 {createRuntime     :659}   isp rawrd0_m_path        : /dev/video17
[    4.811924] mpp_vcodec: 45: num_chan = 1
cmpi             00:00:04-695 {createRuntime     :660}   isp rawrd1_l_path        : 
[    4.812113] mpp_vcodec: 387: attr->max_width = 704, attr->max_height = 576
cmpi             00:00:04-695 {createRuntime     :661}   isp rawrd2_s_path        : /dev/video18
[    4.813852] mpp_vcodec: 103: create channel 1 handle f1cc4be3 online 0
cmpi             00:00:04-695 {createRuntime     :664}   mainpath video name      : /dev/video11
[    4.814695] 836: MPP_ENC_SET_CFG in 
cmpi             00:00:04-696 {createRuntime     :665}   selfpath video name      : /dev/video12
[    4.814731] 532: MPP_ENC_SET_RC_CFG bps 1520640 [1425600 : 1615680] fps [30:30] gop 60
cmpi             00:00:04-696 {createRuntime     :666}   bypasspath video name    : /dev/video13
[    4.814753] h265e_proc_prep_cfg:422: MPP_ENC_SET_PREP_CFG w:h [704:576] stride [704:576]
cmpi             00:00:04-696 {createRuntime     :667}   sensor link type         : 2
[    4.814774] 270: send header for set cfg change input/format 
cmpi             00:00:04-696 {createRuntime     :668}   sensor is united         : 0
[    4.815178] 836: MPP_ENC_SET_CFG in 
cmpi             00:00:04-696 {createRuntime     :672} ---------------------------------------------------------
[    4.815201] 532: MPP_ENC_SET_RC_CFG bps 512000 [480000 : 544000] fps [30:30] gop 50
cmpi             00:00:04-696 {createRuntime     :708} [WRAP MODE]:set wrap buffer cnt = 2, wrap buff size = 1119744
[    4.815215] 270: send header for set cfg change rc_mode/fps/gop
RTIsp3x          00:00:04-699 {ispInitDevice     :591} sensor name = m00_b_sc3336 4-0030
[    4.815396] 836: MPP_ENC_SET_CFG in 
RTDeviceV4L2     00:00:04-701 {open              :137} cameraIndex:0, entityName:rkisp_mainpath
[    4.815419] 532: MPP_ENC_SET_RC_CFG bps 512000 [480000 : 544000] fps [30:30] gop 50
RTDeviceV4L2     00:00:04-701 {open              :143} open video name(/dev/video11)
[    4.815435] 270: send header for set cfg change rc_mode/fps/gop
RKViChn          00:00:04-701 {setFrameRate      :1469} [vi] dev(0) ch(0) illegal param s32SrcFrameRate(0) s32DstFrameRate(0)
[    4.815589] 836: MPP_ENC_SET_CFG in 
RTDeviceV4L2     00:00:04-702 {ispCameraInfo     :567} current device:/dev/video11 isn't compatible(cap:0x84201000) device,memoryType:4, retry:0
[    4.815605] 532: MPP_ENC_SET_RC_CFG bps 512000 [480000 : 544000] fps [30:30] gop 50
RTDeviceV4L2     00:00:04-702 {ispInitFormat     :767} ioctl VIDIOC_S_FMT OK
[    4.815617] 270: send header for set cfg change rc_mode/fps/gop
cmpi             00:00:04-704 {start             :1093} =========== vi Start startRuntime ===========
[    4.815725] 836: MPP_ENC_SET_CFG in 
RTDeviceV4L2     00:00:04-705 {ispStreamOn       :458} do ispStreamOn start
[    4.815738] 532: MPP_ENC_SET_RC_CFG bps 512000 [480000 : 544000] fps [30:30] gop 50
CAMHW:K:camId:0, notify_isp_stream_status on
[    4.815748] 270: send header for set cfg change rc_mode/fps/gop
RTDeviceV4L2     00:00:04-724 {ispStreamOn       :511} do ispStreamOn done
[    4.815921] 836: MPP_ENC_SET_CFG in 
[video.c][rk_video_set_frame_rate]:num is 25, den is 1
[    4.816098] 532: MPP_ENC_SET_RC_CFG bps 512000 [480000 : 544000] fps [30:30] gop 50
[video.c][rk_video_set_frame_rate]:old VI framerate is [-1:-1]
[    4.816114] 270: send header for set cfg change rc_mode/fps/gop
[video.c][rk_video_set_frame_rate]:new VI framerate is [25:25]
[    4.819363] 836: MPP_ENC_SET_CFG in 
MpiAdapterEncode 00:00:04-739 {ma_encode_create  :1743} ringbuf buf_size 1495040
[    4.819399] 532: MPP_ENC_SET_RC_CFG bps 512000 [480000 : 544000] fps [30:30] gop 50
MpiAdapterEncode 00:00:04-760 {ma_encode_create  :1782} mem_fd = 54
[    4.819420] 270: send header for set cfg change rc_mode/fps/gop
RKViChn          00:00:04-785 {prepareRuntime    :354} ---------------------------------------------------------
[    4.821509] mpp_vcodec: 45: num_chan = 2
RKViChn          00:00:04-785 {prepareRuntime    :356} vi version: 1.22, name:vvi
[    4.823223] mpp_vcodec: 103: create channel 4 handle 4f812336 online 1
RKViChn          00:00:04-785 {prepareRuntime    :357} rockit-ko version: vmpi:28ee389dbc33
[    4.823982] 836: MPP_ENC_SET_CFG in 
RKViChn          00:00:04-785 {prepareRuntime    :358} rockit-ko building: -2024-05-24-18:15:06
[    4.824049] 532: MPP_ENC_SET_RC_CFG bps 11197440 [10497600 : 11897280] fps [30:30] gop 60
RKViChn          00:00:04-785 {prepareRuntime    :359} ---------------------------------------------------------
[    4.824379] 836: MPP_ENC_SET_CFG in 
cmpi             00:00:04-785 {prepareRuntime    :378} mb pool create success, MBCnt= 4
[    4.824404] 532: MPP_ENC_SET_RC_CFG bps 11197440 [10497600 : 11897280] fps [30:30] gop 0
RTIsp3x          00:00:04-787 {ispInitDevice     :591} sensor name = m00_b_sc3336 4-0030
[    4.824560] 836: MPP_ENC_SET_CFG in 
cmpi             00:00:04-788 {createRuntime     :634} >>>>>>>>> Sensor link info dump: <<<<<<<<<
[    4.824578] 532: MPP_ENC_SET_RC_CFG bps 11197440 [10497600 : 11897280] fps [30:30] gop 0
cmpi             00:00:04-788 {createRuntime     :636}   vicap media name           : /dev/media0
[    4.832688] stream_cif_mipi_id0: open video, entity use_countt 3
cmpi             00:00:04-788 {createRuntime     :637}   vicap model name           : rkcif-mipi-lvds
[    4.832858] stream_cif_mipi_id0: close video, entity use_count 2
cmpi             00:00:04-788 {createRuntime     :638}   camera id                  : 0
[    4.857265] stream_cif_mipi_id0: open video, entity use_countt 3
cmpi             00:00:04-788 {createRuntime     :639}   sensor name                : m00_b_sc3336 4-0030
[    4.857488] stream_cif_mipi_id0: close video, entity use_count 2
cmpi             00:00:04-788 {createRuntime     :641}   stream_cif_mipi_id0 video name: /dev/video0
[    4.867636] 1155: mode cbr bps [480000:512000:544000] fps fix [30/1] -> fix [30/1] gop i [50] v [0]
cmpi             00:00:04-788 {createRuntime     :642}   stream_cif_mipi_id1 video name: /dev/video1
[    4.877511] rkisp queue buf done
cmpi             00:00:04-788 {createRuntime     :643}   stream_cif_mipi_id2 video name: /dev/video2
[    4.877688] rkisp-vir0: wrap_line mode can not set the mirror
cmpi             00:00:04-788 {createRuntime     :644}   stream_cif_mipi_id3 video name: /dev/video3
[    4.882209] vepu_pp_create_chn 0
cmpi             00:00:04-788 {createRuntime     :646}   sensor raw width           : 2304
[    5.140990] usb0: HOST MAC 02:a1:d6:cb:89:b1
cmpi             00:00:04-788 {createRuntime     :647}   sensor raw height          : 1296
[    5.141018] usb0: MAC 2e:22:e7:b1:0f:44
cmpi             00:00:04-789 {createRuntime     :648} ---------------------------------------------------------
[    5.270403] dwc3 ffb00000.usb: device reset
cmpi             00:00:04-789 {createRuntime     :654}   isp media name           : /dev/media1
[    5.387869] dwc3 ffb00000.usb: device reset
cmpi             00:00:04-789 {createRuntime     :655}   isp model name           : rkisp0
[    5.516631] android_work: sent uevent USB_STATE=CONNECTED
cmpi             00:00:04-789 {createRuntime     :656}   isp driver name          : rkisp-vir0
[    5.516752] android_work: sent uevent USB_STATE=CONFIGURED
cmpi             00:00:04-789 {createRuntime     :657}   isp dev name             : /dev/v4l-subdev3
cmpi             00:00:04-789 {createRuntime     :659}   isp rawrd0_m_path        : /dev/video17
cmpi             00:00:04-789 {createRuntime     :660}   isp rawrd1_l_path        : 
cmpi             00:00:04-789 {createRuntime     :661}   isp rawrd2_s_path        : /dev/video18
cmpi             00:00:04-789 {createRuntime     :664}   mainpath video name      : /dev/video11
cmpi             00:00:04-789 {createRuntime     :665}   selfpath video name      : /dev/video12
cmpi             00:00:04-789 {createRuntime     :666}   bypasspath video name    : /dev/video13
cmpi             00:00:04-789 {createRuntime     :667}   sensor link type         : 2
cmpi             00:00:04-789 {createRuntime     :668}   sensor is united         : 0
cmpi             00:00:04-789 {createRuntime     :672} ---------------------------------------------------------
cmpi             00:00:04-789 {createRuntime     :711} [non-WRAP MODE]: buff size = 608256
RTIsp3x          00:00:04-801 {ispInitDevice     :591} sensor name = m00_b_sc3336 4-0030
RTDeviceV4L2     00:00:04-802 {open              :137} cameraIndex:0, entityName:rkisp_selfpath
RTDeviceV4L2     00:00:04-803 {open              :143} open video name(/dev/video12)
RKViChn          00:00:04-803 {setFrameRate      :1469} [vi] dev(0) ch(1) illegal param s32SrcFrameRate(0) s32DstFrameRate(0)
RTDeviceV4L2     00:00:04-803 {ispCameraInfo     :567} current device:/dev/video12 isn't compatible(cap:0x84201000) device,memoryType:4, retry:0
RTDeviceV4L2     00:00:04-803 {ispInitFormat     :767} ioctl VIDIOC_S_FMT OK
cmpi             00:00:04-804 {start             :1093} =========== vi Start startRuntime ===========
RTDeviceV4L2     00:00:04-804 {ispStreamOn       :458} do ispStreamOn start
RTDeviceV4L2     00:00:04-804 {ispStreamOn       :511} do ispStreamOn done
[video.c][rk_video_set_frame_rate]:num is 30, den is 1
[video.c][rk_video_set_frame_rate]:old VI framerate is [-1:-1]
[video.c][rk_video_set_frame_rate]:new VI framerate is [25:30]
RKViChn          00:00:04-805 {setFrameRate      :1469} [vi] dev(0) ch(1) illegal param s32SrcFrameRate(25) s32DstFrameRate(30)
MpiAdapterEncode 00:00:04-805 {ma_encode_create  :1743} ringbuf buf_size 204800
MpiAdapterEncode 00:00:04-808 {ma_encode_create  :1782} mem_fd = 59
MpiAdapterEncode 00:00:04-815 {ma_encode_create  :1743} ringbuf buf_size 1048576
MpiAdapterEncode 00:00:04-817 {ma_encode_create  :1782} mem_fd = 61
RKViChn          00:00:04-824 {prepareRuntime    :354} ---------------------------------------------------------
RKViChn          00:00:04-824 {prepareRuntime    :356} vi version: 1.22, name:vvi
RKViChn          00:00:04-824 {prepareRuntime    :357} rockit-ko version: vmpi:28ee389dbc33
RKViChn          00:00:04-824 {prepareRuntime    :358} rockit-ko building: -2024-05-24-18:15:06
RKViChn          00:00:04-824 {prepareRuntime    :359} ---------------------------------------------------------
cmpi             00:00:04-825 {prepareRuntime    :378} mb pool create success, MBCnt= 2
RTIsp3x          00:00:04-826 {ispInitDevice     :591} sensor name = m00_b_sc3336 4-0030
MpiAdapterEncode 00:00:04-831 {ma_encode_get_pack:2079} map ptr: 0xa3e30000, fd 65
[DEBUG utils.c:186:rtsp_codec_data_parse_from_user_h265] vps 23
[DEBUG utils.c:194:rtsp_codec_data_parse_from_user_h265] sps 43
[DEBUG utils.c:202:rtsp_codec_data_parse_from_user_h265] pps 9
cmpi             00:00:04-839 {createRuntime     :634} >>>>>>>>> Sensor link info dump: <<<<<<<<<
cmpi             00:00:04-839 {createRuntime     :636}   vicap media name           : /dev/media0
cmpi             00:00:04-839 {createRuntime     :637}   vicap model name           : rkcif-mipi-lvds
cmpi             00:00:04-839 {createRuntime     :638}   camera id                  : 0
cmpi             00:00:04-839 {createRuntime     :639}   sensor name                : m00_b_sc3336 4-0030
cmpi             00:00:04-839 {createRuntime     :641}   stream_cif_mipi_id0 video name: /dev/video0
cmpi             00:00:04-839 {createRuntime     :642}   stream_cif_mipi_id1 video name: /dev/video1
cmpi             00:00:04-839 {createRuntime     :643}   stream_cif_mipi_id2 video name: /dev/video2
cmpi             00:00:04-839 {createRuntime     :644}   stream_cif_mipi_id3 video name: /dev/video3
cmpi             00:00:04-839 {createRuntime     :646}   sensor raw width           : 2304
cmpi             00:00:04-841 {createRuntime     :647}   sensor raw height          : 1296
cmpi             00:00:04-842 {createRuntime     :648} ---------------------------------------------------------
cmpi             00:00:04-842 {createRuntime     :654}   isp media name           : /dev/media1
cmpi             00:00:04-842 {createRuntime     :655}   isp model name           : rkisp0
cmpi             00:00:04-842 {createRuntime     :656}   isp driver name          : rkisp-vir0
cmpi             00:00:04-842 {createRuntime     :657}   isp dev name             : /dev/v4l-subdev3
cmpi             00:00:04-842 {createRuntime     :659}   isp rawrd0_m_path        : /dev/video17
cmpi             00:00:04-842 {createRuntime     :660}   isp rawrd1_l_path        : 
cmpi             00:00:04-842 {createRuntime     :661}   isp rawrd2_s_path        : /dev/video18
cmpi             00:00:04-843 {createRuntime     :664}   mainpath video name      : /dev/video11
cmpi             00:00:04-843 {createRuntime     :665}   selfpath video name      : /dev/video12
cmpi             00:00:04-843 {createRuntime     :666}   bypasspath video name    : /dev/video13
cmpi             00:00:04-843 {createRuntime     :667}   sensor link type         : 2
cmpi             00:00:04-843 {createRuntime     :668}   sensor is united         : 0
cmpi             00:00:04-843 {createRuntime     :672} ---------------------------------------------------------
cmpi             00:00:04-843 {createRuntime     :711} [non-WRAP MODE]: buff size = 290304
RTIsp3x          00:00:04-850 {ispInitDevice     :591} sensor name = m00_b_sc3336 4-0030
RTDeviceV4L2     00:00:04-859 {open              :137} cameraIndex:0, entityName:rkisp_bypasspath
RTDeviceV4L2     00:00:04-859 {open              :143} open video name(/dev/video13)
RKViChn          00:00:04-859 {setFrameRate      :1469} [vi] dev(0) ch(2) illegal param s32SrcFrameRate(0) s32DstFrameRate(0)
MpiAdapterEncode 00:00:04-864 {ma_encode_get_pack:2079} map ptr: 0xa3c30000, fd 67
MpiAdapterEncode 00:00:04-865 {ma_encode_get_pack:2079} map ptr: 0xa3bcc000, fd 69
[DEBUG utils.c:186:rtsp_codec_data_parse_from_user_h265] vps 23
[DEBUG utils.c:194:rtsp_codec_data_parse_from_user_h265] sps 43
[DEBUG utils.c:202:rtsp_codec_data_parse_from_user_h265] pps 9
RTDeviceV4L2     00:00:04-871 {ispCameraInfo     :567} current device:/dev/video13 isn't compatible(cap:0x84201000) device,memoryType:4, retry:0
RTDeviceV4L2     00:00:04-871 {ispInitFormat     :767} ioctl VIDIOC_S_FMT OK
cmpi             00:00:04-871 {start             :1093} =========== vi Start startRuntime ===========
RTDeviceV4L2     00:00:04-871 {ispStreamOn       :458} do ispStreamOn start
RTDeviceV4L2     00:00:04-871 {ispStreamOn       :511} do ispStreamOn done
[#Start osd_time_server thread, arg:(nil)
server.c][rkipc_server_thread]:#Start rkipc_server_thread thread, arg:(nil)
[storage.c][rkipc_storage_set_dev_attr]:mount path is /userdata, dev_path is /dev/ubi5_0
[storage.c][rkipc_storage_para_init]:DevAttr set:  AutoDel--1, FreeSizeDel--500~1000, Path--/userdata/video0, Limit--300
[storage.c][rkipc_storage_para_init]:DevAttr set:  AutoDel--1, FreeSizeDel--500~1000, Path--/userdata/video1, Limit--300
[storage.c][rkipc_storage_para_init]:DevAttr set:  AutoDel--1, FreeSizeDel--500~1000, Path--/userdata/video2, Limit--300
[osd.c][osd_time_server]:osd_time_id is 1
[osd.c][osd_time_server]:osd_data.text.font_color is fff799
[osd.c][osd_time_server]:osd_data.text.format is 24hour CHR-YYYY-MM-DD
[storage.c][rkipc_storage_auto_delete_init]:mountpath:/userdata,devpath:,devtype:,devattr:
[storage.c][rkipc_storage_file_scan_thread]:/userdata, /dev/ubi5_0, ubifs, rw,relatime,assert=read-only,ubi=5,vol=0
[storage.c][rkipc_storage_file_scan_thread]:[00:00:04.930737] i is 0, before rkipc_storage_read_file_list
[storage.c][rkipc_storage_file_scan_thread]:[00:00:04.931030] i is 0, after rkipc_storage_read_file_list
[storage.c][rkipc_storage_file_scan_thread]:[00:00:04.931247] i is 1, before rkipc_storage_read_file_list
[storage.c][rkipc_storage_file_scan_thread]:[00:00:04.931483] i is 1, after rkipc_storage_read_file_list
[storage.c][rkipc_storage_file_scan_thread]:[00:00:04.931609] i is 2, before rkipc_storage_read_file_list
[storage.c][rkipc_storage_file_scan_thread]:[00:00:04.931744] i is 2, after rkipc_storage_read_file_list
[storage.c][rkipc_storage_file_scan_thread]:total_size = 916, free_size = 868
[storage.c][rkipc_storage_file_monitor_thread]:pHandle->dev_sta.mount_status is 4
cmpi             00:00:04-965 {mb_create_pool    :231} allocated buffer(this=0x1e0210, data=0xa2bbb000, size=40960, id=225)
cmpi             00:00:04-966 {mb_create_pool    :231} allocated buffer(this=0x1eb5c8, data=0xa2bb1000, size=40960, id=226)
cmpi             00:00:04-973 {attachToChn       :594} The channel attr attach mapid: 0x0.
cmpi             00:00:04-974 {attachToChn       :594} The channel attr attach mapid: 0x0.
cmpi             00:00:04-974 {attachToChn       :594} The channel attr attach mapid: 0x0.
[network.c][rk_network_get_cable_state]:read Cable state
[network.c][rk_network_get_cable_state]:
[usb0] link down
[network.c][rk_network_get_cable_state]:read Cable state
[network.c][rk_network_get_cable_state]:
[usb0] link down
[network.c][rk_network_get_cable_state]:read Cable state
[network.c][rk_network_get_cable_state]:
[usb0] link up
route: SIOCDELRT: No such process
udhcpc: started, v1.36.1
udhcpc: broadcasting discover
/usr/bin/luckfox-config: line 234: warning: command substitution: ignored null byte in input
Only Luckfox Pico Ultra /Luckfox Pico Ultra W support RGB
udhcpc: broadcasting discover
udhcpc: broadcasting discover
udhcpc: no lease, forking to background
udhcpc: started, v1.36.1
udhcpc: broadcasting discover
udhcpc: broadcasting discover
Complete configuration loading
/root/main.py and /root/boot.py not exist ,pass...
OK
hwclock: can't open '/dev/misc/rtc': No such file or directory
RTC does not require time calibration
udhcpc: broadcasting discover
current_ip = 
TARGET_IP = 172.32.0.93
luckfox : set usb0 ip
172.32.0.93
usb0 config success

Welcome to luckfox pico
luckfox login: udhcpc: no lease, forking to background

 

카메라 앞을 알짱대면 이렇게 뜬다.

[video.c][rkipc_ivs_get_results]:MD: md_area is 184320, md_area_threshold is 55987
[video.c][rkipc_ivs_get_results]:MD: md_area is 184320, md_area_threshold is 55987

 

 

+

이미지 교체하고 나서 카메라 다니까 문제없이 작동한다.

이전 내역대로 신버전 vlc를 통해서 접속해야 하고 150ms 이하로 떨어지니 한번의 화면만 보이고 그 이후로 갱신되지 않는다.

 

크.. free 2.4M

여기서 먼가 웹 서비스 하는게 있을것 같은데 공식위키에서 좀 더 뒤져봐야 할 듯.

[root@luckfox bin]# free -h
              total        used        free      shared  buff/cache   available
Mem:          32.9M       20.4M        2.4M      252.0K       10.1M        9.4M
Swap:             0           0           0

[root@luckfox bin]# pwd
/oem/usr/bin
[root@luckfox bin]# ls -al
total 6104
drwxrwxr-x    2 1005     1005          8096 Jun 26  2025 .
drwxrwxr-x    7 1005     1005           480 Jun 12  2025 ..
-rwxr-xr-x    1 1005     1005           551 May 20  2025 RkLunch-stop.sh
-rwxr-xr-x    1 1005     1005          2789 May 20  2025 RkLunch.sh
-rwxr-xr-x    1 1005     1005         38656 Jun 26  2025 dumpsys
-rwxrwxr-x    1 1005     1005        534592 Jun 26  2025 fastboot_server
-rwxrwxr-x    1 1005     1005        470356 Jun 26  2025 j2s4b_dev
-rwxrwxr-x    1 1005     1005         26112 Jun 26  2025 luckfox_adc_test
-rwxrwxr-x    1 1005     1005         26580 Jun 26  2025 luckfox_gpio_test
-rwxrwxr-x    1 1005     1005         26124 Jun 26  2025 luckfox_i2c_test
-rwxrwxr-x    1 1005     1005         26192 Jun 26  2025 luckfox_pwm_test
-rwxrwxr-x    1 1005     1005         26208 Jun 26  2025 luckfox_spi_test
-rwxrwxr-x    1 1005     1005         26152 Jun 26  2025 luckfox_uart_test
-rwxr-xr-x    1 1005     1005         54936 Jun 26  2025 modetest
-rwxrwxr-x    1 1005     1005         92904 Jun 26  2025 mpi_enc_test
-rwxrwxr-x    1 1005     1005          9668 Jun 26  2025 mpp_info_test
-rwxrwxr-x    1 1005     1005         26364 Jun 26  2025 rgaImDemo
-rwxrwxr-x    1 1005     1005         21964 Jun 26  2025 rk_adc_test
-rwxrwxr-x    1 1005     1005         21976 Jun 26  2025 rk_event_test
-rwxrwxr-x    1 1005     1005         21968 Jun 26  2025 rk_gpio_test
-rwxrwxr-x    1 1005     1005         21964 Jun 26  2025 rk_led_test
-rwxr-xr-x    1 1005     1005         18020 Jun 26  2025 rk_mpi_adec_test
-rwxr-xr-x    1 1005     1005         18024 Jun 26  2025 rk_mpi_aenc_test
-rwxr-xr-x    1 1005     1005         17952 Jun 26  2025 rk_mpi_af_test
-rwxr-xr-x    1 1005     1005         46920 Jun 26  2025 rk_mpi_ai_test
-rwxr-xr-x    1 1005     1005         13792 Jun 26  2025 rk_mpi_amix_test
-rwxr-xr-x    1 1005     1005         26304 Jun 26  2025 rk_mpi_ao_test
-rwxr-xr-x    1 1005     1005         13796 Jun 26  2025 rk_mpi_avio_test
-rwxr-xr-x    1 1005     1005         75700 Jun 26  2025 rk_mpi_avs_test
-rwxr-xr-x    1 1005     1005         42740 Jun 26  2025 rk_mpi_dup_venc_test
-rwxr-xr-x    1 1005     1005         13896 Jun 26  2025 rk_mpi_mb_test
-rwxr-xr-x    1 1005     1005         13896 Jun 26  2025 rk_mpi_mmz_test
-rwxr-xr-x    1 1005     1005         67628 Jun 26  2025 rk_mpi_rgn_test
-rwxr-xr-x    1 1005     1005         17920 Jun 26  2025 rk_mpi_sys_test
-rwxr-xr-x    1 1005     1005         22124 Jun 26  2025 rk_mpi_tde_test
-rwxr-xr-x    1 1005     1005         55156 Jun 26  2025 rk_mpi_venc_test
-rwxr-xr-x    1 1005     1005         30424 Jun 26  2025 rk_mpi_vi_dup_test
-rwxr-xr-x    1 1005     1005         63352 Jun 26  2025 rk_mpi_vi_test
-rwxr-xr-x    1 1005     1005         55108 Jun 26  2025 rk_mpi_vpss_test
-rwxrwxr-x    1 1005     1005         21972 Jun 26  2025 rk_pwm_test
-rwxr-xr-x    1 1005     1005         21812 Jun 26  2025 rk_rve_sample_test
-rwxrwxr-x    1 1005     1005         21964 Jun 26  2025 rk_system_test
-rwxrwxr-x    1 1005     1005         21964 Jun 26  2025 rk_time_test
-rwxrwxr-x    1 1005     1005         21984 Jun 26  2025 rk_watchdog_test
-rwxrwxr-x    1 1005     1005         18032 Jun 26  2025 rkaiq_3A_server
-rwxrwxr-x    1 1005     1005        302132 Jun 26  2025 rkaiq_tool_server
-rwxr-xr-x    1 1005     1005        457488 Jun 26  2025 rkipc
-rwxrwxr-x    1 1005     1005        204140 Jun 26  2025 rkisp_demo
-rwxrwxr-x    1 1005     1005          9596 Jun 26  2025 sample_ai
-rwxrwxr-x    1 1005     1005         13872 Jun 26  2025 sample_ai_aenc
-rwxrwxr-x    1 1005     1005         22072 Jun 26  2025 sample_ai_aenc_adec_ao_stresstest
-rwxrwxr-x    1 1005     1005         22096 Jun 26  2025 sample_avs
-rwxrwxr-x    1 1005     1005         38808 Jun 26  2025 sample_avs_stresstest
-rwxrwxr-x    1 1005     1005        125408 Jun 26  2025 sample_demo_aiisp
-rwxrwxr-x    1 1005     1005        137740 Jun 26  2025 sample_demo_aiisp_stresstest
-rwxrwxr-x    1 1005     1005        121252 Jun 26  2025 sample_demo_dual_aiisp
-rwxrwxr-x    1 1005     1005        133580 Jun 26  2025 sample_demo_dual_aiisp_stresstest
-rwxrwxr-x    1 1005     1005        100400 Jun 26  2025 sample_demo_dual_camera
-rwxrwxr-x    1 1005     1005        104520 Jun 26  2025 sample_demo_dual_camera_wrap
-rwxrwxr-x    1 1005     1005        100364 Jun 26  2025 sample_demo_multi_camera_eptz
-rwxrwxr-x    1 1005     1005        117144 Jun 26  2025 sample_demo_vi_avs_venc
-rwxrwxr-x    1 1005     1005        121264 Jun 26  2025 sample_demo_vi_avs_venc_stresstest
-rwxrwxr-x    1 1005     1005        125364 Jun 26  2025 sample_demo_vi_venc
-rwxrwxr-x    1 1005     1005        137720 Jun 26  2025 sample_demo_vi_venc_stresstest
-rwxrwxr-x    1 1005     1005         30504 Jun 26  2025 sample_isp_stresstest
-rwxrwxr-x    1 1005     1005         34612 Jun 26  2025 sample_mulit_isp_stresstest
-rwxrwxr-x    1 1005     1005         22268 Jun 26  2025 sample_multi_vi
-rwxrwxr-x    1 1005     1005         30580 Jun 26  2025 sample_multi_vi_avs
-rwxrwxr-x    1 1005     1005        121300 Jun 26  2025 sample_multi_vi_avs_osd_venc
-rwxrwxr-x    1 1005     1005        112980 Jun 26  2025 sample_rgn_stresstest
-rwxrwxr-x    1 1005     1005        108840 Jun 26  2025 sample_rv1103_dual_memory_opt
-rwxrwxr-x    1 1005     1005        108624 Jun 26  2025 sample_venc_stresstest
-rwxrwxr-x    1 1005     1005         22260 Jun 26  2025 sample_vi
-rwxrwxr-x    1 1005     1005        113032 Jun 26  2025 sample_vi_vpss_osd_venc
-rwxrwxr-x    1 1005     1005         34680 Jun 26  2025 sample_vpss_stresstest
-rwxrwxr-x    1 1005     1005          9612 Jun 26  2025 simple_adec_bind_ao
-rwxrwxr-x    1 1005     1005         13820 Jun 26  2025 simple_adec_bind_ao_external_decoder
-rwxrwxr-x    1 1005     1005          9584 Jun 26  2025 simple_ai_bind_aenc
-rwxrwxr-x    1 1005     1005         13720 Jun 26  2025 simple_ai_bind_aenc_external_encoder
-rwxrwxr-x    1 1005     1005         13720 Jun 26  2025 simple_ai_get_frame
-rwxrwxr-x    1 1005     1005          9600 Jun 26  2025 simple_ao_send_frame
-rw-rw-r--    1 1005     1005          9683 Jun 26  2025 simple_cmd.txt
-rwxrwxr-x    1 1005     1005          9580 Jun 26  2025 simple_vi_bind_ivs
-rwxrwxr-x    1 1005     1005          9672 Jun 26  2025 simple_vi_bind_venc
-rwxrwxr-x    1 1005     1005         13752 Jun 26  2025 simple_vi_bind_venc_change_resolution_rv1106
-rwxrwxr-x    1 1005     1005         13780 Jun 26  2025 simple_vi_bind_venc_chn_sharebuf_rv1106
-rwxrwxr-x    1 1005     1005         17984 Jun 26  2025 simple_vi_bind_venc_combo_rv1106
-rwxrwxr-x    1 1005     1005          9680 Jun 26  2025 simple_vi_bind_venc_jpeg
-rwxrwxr-x    1 1005     1005         13788 Jun 26  2025 simple_vi_bind_venc_osd
-rwxrwxr-x    1 1005     1005         83732 Jun 26  2025 simple_vi_bind_venc_rtsp
-rwxrwxr-x    1 1005     1005         83752 Jun 26  2025 simple_vi_bind_venc_rtsp_dev_chn_sharebuf_rv1106
-rwxrwxr-x    1 1005     1005         83744 Jun 26  2025 simple_vi_bind_venc_rtsp_eptz
-rwxrwxr-x    1 1005     1005         83756 Jun 26  2025 simple_vi_bind_venc_rtsp_three_camera_rv1106
-rwxrwxr-x    1 1005     1005         84052 Jun 26  2025 simple_vi_bind_venc_svc_rtsp
-rwxrwxr-x    1 1005     1005         13780 Jun 26  2025 simple_vi_bind_venc_wrap_rv1106
-rwxrwxr-x    1 1005     1005         13796 Jun 26  2025 simple_vi_bind_vpss_bind_venc
-rwxrwxr-x    1 1005     1005          9636 Jun 26  2025 simple_vi_get_frame
-rwxrwxr-x    1 1005     1005         13884 Jun 26  2025 simple_vi_get_frame_rkaiq
-rwxrwxr-x    1 1005     1005          9628 Jun 26  2025 simple_vi_get_frame_send_vo_rv1106
-rwxrwxr-x    1 1005     1005         13880 Jun 26  2025 simple_vi_get_frame_tde
-rwxrwxr-x    1 1005     1005         13696 Jun 26  2025 vpu_api_test
[root@luckfox bin]# grep -rni http .
./j2s4b_dev:24024:not enough space for format expansion (Please submit full bug report at https://gcc.gnu.org/bugs/):
./rk_mpi_vi_test:9609:http://
./rk_mpi_vi_test:9610:https://
./rk_mpi_vi_dup_test:5474:http://
./rk_mpi_vi_dup_test:5475:https://
./rk_mpi_rgn_test:10174:http://
./rk_mpi_rgn_test:10175:https://
./rk_mpi_avs_test:11469:http://
./rk_mpi_avs_test:11470:https://
./rk_mpi_vpss_test:8634:http://
./rk_mpi_vpss_test:8635:https://

 

 

+

[링크 : https://wiki.luckfox.com/Luckfox-Pico-Pi/MPI/]

[링크 : https://wiki.luckfox.com/Luckfox-Pico-Plus-Mini/CSI-Camera/]

Posted by 구차니

작동은 3.3V

GPIO 입력 범위는 5V. RS232 같은거 아닌 i2c / ttl uart 등은 문제없이 볼 수 있겠네

high는 2~5.25V 라서 1.8 / 1.3V TTL은 무리고 3.3V 쪽까지는 무리없어 보인다.

[링크 : https://www.farnell.com/datasheets/1675007.pdf]

'하드웨어 > logic analyzer' 카테고리의 다른 글

CY7C68013A on linux  (0) 2026.09.07
sigrok(pulseview) + CY7C68013A  (0) 2026.09.07
EZ-USB FX2LP CY7C68013A  (0) 2026.09.03
Posted by 구차니

ez-usb 를 리눅스에서 어떻게 하지 찾아보는 중.

일단은 plugdev로 인식시키면 되는건가?

 

요게 영향을 주는진 모르겠다.

sudo usermod -a -G plugdev $(whoami)
sudo vim /etc/udev/rules.d/99-ezusb.rules
ATTRS{idVendor}=="04b4", ATTRS{idProduct}=="8613", MODE="660", GROUP="plugdev", TAG+="uaccess"

sudo udevadm control --reload-rules
sudo udevadm trigger

[링크 : https://github.com/mbed-ce/fxload]

 

+

2026.09.06

패키지를 두 개 설치해야 한다.

요건 pulseview gui 프로그램

$ sudo apt-cache search pulseview
pulseview - sigrok logic analyzer, oscilloscope, and MSO GUI

 

요건 fx2lafw 펌웨어 패키지

$ sudo apt-cache search fx2lafw
sigrok-firmware-fx2lafw - Firmware for Cypress FX2(LP) based logic analyzers

 

윈도우는 짧던데.. 싶어서 다시 보니 윈도우는 장치목록이 스크롤 생겨서 그랬던 듯.

fx2lafw를 선택한다

 

scan  하면 똭!

 

음 좋아좋아 잘되네

 

+

만약에 이런 에러가 난다면 펌웨어 패키지 없어서 그러니, 가장 위의 패키지 중 펌웨러를 설치해보면 될 듯.

 

$ pulseview 
Warning: Ignoring XDG_SESSION_TYPE=wayland on Gnome. Use QT_QPA_PLATFORM=wayland to run on Wayland anyway.
sr: resource: Failed to open resource 'fx2lafw-cypress-fx2.fw' (use loglevel 5/spew for details).
sr: fx2lafw: Firmware upload failed for device 1.43 (logical), name fx2lafw-cypress-fx2.fw.
sr: fx2lafw: Unable to get version info: LIBUSB_ERROR_TIMEOUT.
sr: fx2lafw: Failed to get firmware version.
sr: fx2lafw: Unable to open device.
Notifying user of session error: "generic/unspecified error"

 

'하드웨어 > logic analyzer' 카테고리의 다른 글

CY7C68013A 입력 전압범위  (0) 2026.09.08
sigrok(pulseview) + CY7C68013A  (0) 2026.09.07
EZ-USB FX2LP CY7C68013A  (0) 2026.09.03
Posted by 구차니

이전에 구매했던 로직 애널라이저용 프로그램이 먼가 해서 찾아보는데

 

pulseview 라는 프로그램을 쓰고 있다.

fx2law 라고 뜨는 드라이버를 어디서 받나..

[링크 : https://m.blog.naver.com/mymissu/221387059280]

 

보드는 아래와 같고, cypress FX2(LP) 개발보드인데 saleae logic의 클론이라고.

Lcsoft CY7C68013A Mini Board

[링크 : https://sigrok.org/wiki/Lcsoft_Mini_Board]

    [링크 :https://www.reddit.com/r/AskElectronics/comments/53rq3n/how_can_i_use_this_cy7c68013a56_board_as_a_basic/?tl=ko]

 

linux / window / mac  지원하는데  sigrok-cli도 한번 살펴는 봐야겠다.

[링크 : https://sigrok.org/wiki/Downloads]

 

드라이버 안깔고 교체는 되는데 이름이 unknown device #1 이라고 나와버림.

이름만 바꾸면 되려나?

 

zadig가 포함되어있진 않다.

 

zadig에서 드라이버 설치하기 전에는 이렇게 "scan for devices using driver above" 버튼을 눌러도 아무것도 안뜨는데

 

zadig에서 winusb로 교체하고 나서 scan을 누르면 cypress FX2 with 16 channels 라고 뜬다.

 

하고나서 보니 fx2lafw 라고 이름이 바뀌어있다. 아까는 그냥 이상한 이름이더니 머냐?

 

PORT B / PORT D 순서로 채널이 사용가능하고 총 16채널

 

[링크 : https://forum.hobbycomponents.com/viewtopic.php?t=1891]

[링크 : http://myfreescalewebpage.free.fr/toolbox/logic/logic.htm]

 

PB4/PB6 에서 gnd랑 쇼트 시키기

 

PD5/PD7 에서 gnd랑 쇼트 시키기

 

+

2026.09.08

Jumper Instruction

Jumper cap of 24C128: controlling the ability of data reading and writing. Plug in the cap, AT24C128 is closed; remove it, AT24C128 is started.
Jumper cap of D1, D2: controlling the power of LED light. Plug in the cap, the anode of LED 1 and 2 will be connected to the positive pole of power source through resistance. Remove the cap, the anode of D1 and D2 will be open.

[링크 : https://wiki.geeetech.com/index.php/CY7C68013]

'하드웨어 > logic analyzer' 카테고리의 다른 글

CY7C68013A 입력 전압범위  (0) 2026.09.08
CY7C68013A on linux  (0) 2026.09.07
EZ-USB FX2LP CY7C68013A  (0) 2026.09.03
Posted by 구차니
Linux/Ubuntu2026. 9. 7. 15:00

claude에게 festival로 한글 발음 해달라고 시키니 추천해준 프로그램

[링크 : https://discuss.pytorch.kr/t/espeak-ng-100-espeak-fork/4272]

[링크 : https://github.com/espeak-ng/espeak-ng]

 

teensy 4.0 보드를 위한 (cortex-M7@600Mhz) 포트가 있다고 하는데.. 아니 그 가격(5만원)이면 라즈베리 에서 돌리는게 쌀지도?

[링크 : https://github.com/vindar/espeak-ng_T4/]

    [링크 : https://forum.pjrc.com/index.php?threads/espeak-ng-tts-library-ported-to-teensy-4.77001/]

 

근데 -v ko 있나 없나 영어식 발음인건 여전한데...?

-p 50 -s 175 이 기본이고

-p 는 0~99 사이값.

-s는 분당 단어 갯수라 딱히 제한은 없는듯?

$ espeak-ng "hello"
$ espeak-ng "안녕하세요"
$ espeak-ng -v ko "안녕하세요"
$ espeak-ng -v ko -p 70 -s 300 "안녕하세요"

 

$ espeak-ng --help

eSpeak NG text-to-speech: 1.50  Data at: /usr/lib/x86_64-linux-gnu/espeak-ng-data

espeak-ng [options] ["<words>"]

-f <text file>   Text file to speak
--stdin    Read text input from stdin instead of a file

If neither -f nor --stdin, then <words> are spoken, or if none then text
is spoken from stdin, each line separately.

-a <integer>
   Amplitude, 0 to 200, default is 100
-d <device>
   Use the specified device to speak the audio on. If not specified, the
   default audio device is used.
-g <integer>
   Word gap. Pause between words, units of 10mS at the default speed
-k <integer>
   Indicate capital letters with: 1=sound, 2=the word "capitals",
   higher values indicate a pitch increase (try -k20).
-l <integer>
   Line length. If not zero (which is the default), consider
   lines less than this length as end-of-clause
-p <integer>
   Pitch adjustment, 0 to 99, default is 50
-s <integer>
   Speed in approximate words per minute. The default is 175
-v <voice name>
   Use voice file of this name from espeak-ng-data/voices
-w <wave file name>
   Write speech to this WAV file, rather than speaking it directly
-b    Input text encoding, 1=UTF8, 2=8 bit, 4=16 bit 
-m    Interpret SSML markup, and ignore other < > tags
-q    Quiet, don't produce any speech (may be useful with -x)
-x    Write phoneme mnemonics to stdout
-X    Write phonemes mnemonics and translation trace to stdout
-z    No final sentence pause at the end of the text
--compile=<voice name>
   Compile pronunciation rules and dictionary from the current
   directory. <voice name> specifies the language
--compile-debug=<voice name>
   Compile pronunciation rules and dictionary from the current
   directory, including line numbers for use with -X.
   <voice name> specifies the language
--compile-mbrola=<voice name>
   Compile an MBROLA voice
--compile-intonations
   Compile the intonation data
--compile-phonemes=<phsource-dir>
   Compile the phoneme data using <phsource-dir> or the default phsource directory
--ipa      Write phonemes to stdout using International Phonetic Alphabet
--path="<path>"
   Specifies the directory containing the espeak-ng-data directory
--pho      Write mbrola phoneme data (.pho) to stdout or to the file in --phonout
--phonout="<filename>"
   Write phoneme output from -x -X --ipa and --pho to this file
--punct="<characters>"
   Speak the names of punctuation characters during speaking.  If
   =<characters> is omitted, all punctuation is spoken.
--sep=<character>
   Separate phonemes (from -x --ipa) with <character>.
   Default is space, z means ZWJN character.
--split=<minutes>
   Starts a new WAV file every <minutes>.  Used with -w
--stdout   Write speech output to stdout
--tie=<character>
   Use a tie character within multi-letter phoneme names.
   Default is U+361, z means ZWJ character.
--version  Shows version number and date, and location of espeak-ng-data
--voices=<language>
   List the available voices for the specified language.
   If <language> is omitted, then list all voices.
--load     Load voice from a file in current directory by name.
-h, --help Show this help.

'Linux > Ubuntu' 카테고리의 다른 글

festival lite TTS  (0) 2026.09.07
ubuntu 22.04 24.04 설치 파티션 차이  (0) 2026.07.09
hp 2760p 우분투 26.02 설치 실패  (0) 2026.06.23
ubuntu 26.04 + 595.71.05 + CUDA 13.2  (0) 2026.06.17
festival - a text-to-speech system(TTS)  (0) 2026.05.06
Posted by 구차니
Linux/Ubuntu2026. 9. 7. 14:45

festival이 무거워서 가벼운 버전으로 만든거라는데..

mcu에서 돌릴수 있을 정도로 가벼운진 모르겠다.

[링크 : https://github.com/festvox/flite]

 

플래시가 좀 많이 필요한데 일단 esp32에서 돌아가는 듯?

[링크 : https://github.com/pschatzmann/arduino-flite]

'Linux > Ubuntu' 카테고리의 다른 글

espeak-ng TTS  (0) 2026.09.07
ubuntu 22.04 24.04 설치 파티션 차이  (0) 2026.07.09
hp 2760p 우분투 26.02 설치 실패  (0) 2026.06.23
ubuntu 26.04 + 595.71.05 + CUDA 13.2  (0) 2026.06.17
festival - a text-to-speech system(TTS)  (0) 2026.05.06
Posted by 구차니
embeded/luckfox2026. 9. 7. 10:25

중간 결과

- rndis 연결 실패

- uart 아니고 ttl

- 카메라 연결하면 정상부팅 못함 (SC3336 , 3MP)

pico ultra는 256MB / 8GB, 5M@30p 인데 반해

pico plus는 64MB / 128MB, 4M@30p 이다.

[링크 : https://wiki.luckfox.com/Luckfox-Pico-Plus-Mini]

[링크 : https://wiki.luckfox.com/Luckfox-Pico-Ultra/]

 

boot 안누르고 켜면 usb쪽은 전원만 공급되고 별다른 메시지나 tty 장치로 인식되진 않는다.

로그 보려면 결국에는 ttl 2 usb가 있어야 한단 말인데..

[ 1078.331129] usb 1-2: new high-speed USB device number 10 using xhci_hcd
[ 1078.459427] usb 1-2: New USB device found, idVendor=2207, idProduct=110c, bcdDevice= 1.00
[ 1078.459446] usb 1-2: New USB device strings: Mfr=0, Product=0, SerialNumber=0

 

이상하게 먼가 걸려있다가 늦게 뜬다. 머지?

$ lsusb -v -d 2207:110c

Bus 001 Device 010: ID 2207:110c Fuzhou Rockchip Electronics Company 
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            0 
  bDeviceSubClass         0 
  bDeviceProtocol         0 
  bMaxPacketSize0        64
  idVendor           0x2207 Fuzhou Rockchip Electronics Company
  idProduct          0x110c 
  bcdDevice            1.00
  iManufacturer           0 
  iProduct                0 
  iSerial                 0 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength       0x0020
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0x80
      (Bus Powered)
    MaxPower              400mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           2
      bInterfaceClass       255 Vendor Specific Class
      bInterfaceSubClass      6 
      bInterfaceProtocol      5 
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0200  1x 512 bytes
        bInterval               0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x02  EP 2 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0200  1x 512 bytes
        bInterval               0
Device Qualifier (for other device speed):
  bLength                10
  bDescriptorType         6
  bcdUSB               2.00
  bDeviceClass            0 
  bDeviceSubClass         0 
  bDeviceProtocol         0 
  bMaxPacketSize0        64
  bNumConfigurations      1

cannot read device status, Resource temporarily unavailable (11)

 

 

boot 누르지 않고 부팅시에는 아래와 같이 rndis가 뜬다.

[ 1249.278957] usb 1-2: new high-speed USB device number 11 using xhci_hcd
[ 1249.406378] usb 1-2: New USB device found, idVendor=2207, idProduct=0019, bcdDevice= 3.10
[ 1249.406397] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1249.406405] usb 1-2: Product: rk3xxx
[ 1249.406410] usb 1-2: Manufacturer: rockchip
[ 1249.406415] usb 1-2: SerialNumber: ca8ebbd389df2126
[ 1249.473826] rndis_host 1-2:1.0 usb0: register 'rndis_host' at usb-0000:00:14.0-2, RNDIS device, e6:cd:d4:2b:60:c6
[ 1249.474223] usbcore: registered new interface driver rndis_host
[ 1249.484915] rndis_host 1-2:1.0 enxe6cdd42b60c6: renamed from usb0

 

읭.. 아이피 안 잡히는데?

$ ifconfig
enxe6cdd42b60c6: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet6 fe80::201f:ab45:678e:15d5  prefixlen 64  scopeid 0x20<link>
        ether e6:cd:d4:2b:60:c6  txqueuelen 1000  (Ethernet)
        RX packets 0  bytes 0 (0.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 0  bytes 0 (0.0 B)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

 

음.. 장치식별자가 다르게 떴네?

$ lsusb -v -d 2207:0019

Bus 001 Device 011: ID 2207:0019 Fuzhou Rockchip Electronics Company rk3xxx
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            0 
  bDeviceSubClass         0 
  bDeviceProtocol         0 
  bMaxPacketSize0        64
  idVendor           0x2207 Fuzhou Rockchip Electronics Company
  idProduct          0x0019 
  bcdDevice            3.10
  iManufacturer           1 rockchip
  iProduct                2 rk3xxx
  iSerial                 3 ca8ebbd389df2126
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength       0x0062
    bNumInterfaces          3
    bConfigurationValue     1
    iConfiguration          4 
    bmAttributes         0x80
      (Bus Powered)
    MaxPower              500mA
    Interface Association:
      bLength                 8
      bDescriptorType        11
      bFirstInterface         0
      bInterfaceCount         2
      bFunctionClass        224 Wireless
      bFunctionSubClass       1 Radio Frequency
      bFunctionProtocol       3 RNDIS
      iFunction               7 RNDIS
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass       224 Wireless
      bInterfaceSubClass      1 Radio Frequency
      bInterfaceProtocol      3 RNDIS
      iInterface              5 RNDIS Communications Control
      ** UNRECOGNIZED:  05 24 00 10 01
      ** UNRECOGNIZED:  05 24 01 00 01
      ** UNRECOGNIZED:  04 24 02 00
      ** UNRECOGNIZED:  05 24 06 00 01
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x82  EP 2 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0008  1x 8 bytes
        bInterval               9
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       0
      bNumEndpoints           2
      bInterfaceClass        10 CDC Data
      bInterfaceSubClass      0 
      bInterfaceProtocol      0 
      iInterface              6 RNDIS Ethernet Data
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0200  1x 512 bytes
        bInterval               0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x01  EP 1 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0200  1x 512 bytes
        bInterval               0
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        2
      bAlternateSetting       0
      bNumEndpoints           2
      bInterfaceClass       255 Vendor Specific Class
      bInterfaceSubClass     66 
      bInterfaceProtocol      1 
      iInterface              9 ADB Interface
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x02  EP 2 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0200  1x 512 bytes
        bInterval               0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x83  EP 3 IN
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0200  1x 512 bytes
        bInterval               0
Device Qualifier (for other device speed):
  bLength                10
  bDescriptorType         6
  bcdUSB               2.00
  bDeviceClass            0 
  bDeviceSubClass         0 
  bDeviceProtocol         0 
  bMaxPacketSize0        64
  bNumConfigurations      1
Device Status:     0x0000
  (Bus Powered)

 

 

---

부트로그

판매된 상태 그대로 해봤는데 root/luckfox. buildroot 버전으로 되어있나 보다

DDR V1.10 ec2fae0c96 wesley.yao 22/11/15-10:58:09                               
S5P1                                                                            
fc27                                                                            
F                                                                               
DDRConf1                                                                        
DDR2, BW=16 Col=10 Bk=4 CS0 Row=13 CS=1 Die BW=16 Size=64MB                     
528MHz                                                                          
DDR bin out                                                                     
                                                                                
U-Boot SPL board init                                                           
U-Boot SPL 2017.09 (Jul 10 2024 - 15:27:08)                                     
unrecognized JEDEC id bytes: ff, ef, aa                                         
Trying to boot from MMC2                                                        
MMC: no card present                                                            
mmc_init: -123, time 2                                                          
spl: mmc init failed with error: -123                                           
Trying to boot from MTD1                                                        
ENVF: Primary 0x00000000 - 0x00040000                                           
ENVF: OK                                                                        
Trying fit image at 0x400 sector                                                
## Verified-boot: 0                                                             
## Checking uboot 0x00200000 (lzma @0x00400000) ... sha256(c2f767e435...) + shaK
## Checking fdt 0x0025bed0 ... sha256(51bba657c3...) + OK                       
Total: 241.332 ms                                                               
                                                                                
Jumping to U-Boot(0x00200000)                                                   
                                                                                
                                                                                
U-Boot 2017.09 (Jul 10 2024 - 15:27:08 +0800)                                   
                                                                                
Model: Rockchip RV1106 EVB Board                                                
PreSerial: 2, raw, 0xff4c0000                                                   
DRAM:  64 MiB                                                                   
Sysmem: init                                                                    
Relocation Offset: 03d85000                                                     
Relocation fdt: 02dfacb0 - 02dfede0                                             
CR: M/C/I                                                                       
Using default environment                                                       
                                                                                
Bootdev(atags): mtd 1                                                           
ENVF: Primary 0x00000000 - 0x00040000                                           
ENVF: OK                                                                        
PartType: ENV                                                                   
DM: v2                                                                          
No misc partition                                                               
boot mode: normal                                                               
FIT: no signed, no conf required                                                
DTB: rk-kernel.dtb                                                              
HASH(c): OK                                                                     
Model: Luckfox Pico Plus                                                        
CLK: (uboot. arm: enter 816000 KHz, init 816000 KHz, kernel 0N/A)               
  apll 816000 KHz                                                               
  dpll 528000 KHz                                                               
  gpll 1188000 KHz                                                              
  cpll 1000000 KHz                                                              
  aclk_peri_root 400000 KHz                                                     
  hclK_peri_root 200000 KHz                                                     
  pclk_peri_root 100000 KHz                                                     
  aclk_bus_root 300000 KHz                                                      
  pclk_top_root 100000 KHz                                                      
  pclk_pmu_root 100000 KHz                                                      
  hclk_pmu_root 200000 KHz                                                      
Net:   eth0: ethernet@ffa80000                                                  
Hit key to stop autoboot('CTRL+C'):  0                                          
## Booting FIT Image at 0x290da80 with size 0x002ec200                          
Fdt Ramdisk skip relocation                                                     
No misc partition                                                               
## Loading kernel from FIT Image at 0290da80 ...                                
   Using 'conf' configuration                                                   
## Verified-boot: 0                                                             
   Trying 'kernel' kernel subimage                                              
     Description:  unavailable                                                  
     Type:         Kernel Image                                                 
     Compression:  uncompressed                                                 
     Data Start:   0x02916a80                                                   
     Data Size:    3027200 Bytes = 2.9 MiB                                      
     Architecture: ARM                                                          
     OS:           Linux                                                        
     Load Address: 0x00008000                                                   
     Entry Point:  0x00008000                                                   
     Hash algo:    sha256                                                       
     Hash value:   66929aa0a4d3f91d2b47fa6dae6865e75d0a7a606cda288fb10179af657e7
   Verifying Hash Integrity ... sha256+ OK                                      
## Loading fdt from FIT Image at 0290da80 ...                                   
   Using 'conf' configuration                                                   
   Trying 'fdt' fdt subimage                                                    
     Description:  unavailable                                                  
     Type:         Flat Device Tree                                             
     Compression:  uncompressed                                                 
     Data Start:   0x0290e280                                                   
     Data Size:    34771 Bytes = 34 KiB                                         
     Architecture: ARM                                                          
     Load Address: 0x00c00000                                                   
     Hash algo:    sha256                                                       
     Hash value:   3692950246bab0e95c7f3f38c32aeedfaf37f07237d386d6a68d993ddadc1
   Verifying Hash Integrity ... sha256+ OK                                      
   Loading fdt from 0x0290da80 to 0x00c00000                                    
   Booting using the fdt blob at 0x00c00000                                     
   Loading Kernel Image from 0x02916a80 to 0x00008000 ... OK                    
   kernel loaded at 0x00008000, end = 0x002eb100                                
   Using Device Tree in place at 00c00000, end 00c0b7d2                         
Adding bank: 0x00000000 - 0x04000000 (size: 0x04000000)                         
Total: 602.555 ms                                                               
                                                                                
Starting kernel ...                                                             
                                                                                
[    0.000000] Booting Linux on physical CPU 0x0                                
[    0.000000] Linux version 5.10.110 (hxj@luckfox-System-Product-Name) (arm-ro4
[    0.000000] CPU: ARMv7 Processor [410fc075] revision 5 (ARMv7), cr=50c53c7d  
[    0.000000] CPU: div instructions available: patching division code          
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instructie
[    0.000000] OF: fdt: Machine model: Luckfox Pico Plus                        
[    0.000000] Memory policy: Data cache writeback                              
[    0.000000] cma: Reserved 24576 KiB at 0x02800000                            
[    0.000000] Zone ranges:                                                     
[    0.000000]   Normal   [mem 0x0000000000000000-0x0000000003ffffff]           
[    0.000000] Movable zone start for each node                                 
[    0.000000] Early memory node ranges                                         
[    0.000000]   node   0: [mem 0x0000000000000000-0x0000000003ffffff]          
[    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000003ffffff] 
[    0.000000] CPU: All CPU(s) started in SVC mode.                             
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 16256     
[    0.000000] Kernel command line: user_debug=31 storagemedia=mtd androidboot.)
[    0.000000] Dentry cache hash table entries: 8192 (order: 3, 32768 bytes, li)
[    0.000000] Inode-cache hash table entries: 4096 (order: 2, 16384 bytes, lin)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off          
[    0.000000] Memory: 33684K/65536K available (3784K kernel code, 319K rwdata,)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1       
[    0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16                  
[    0.000000] random: get_random_bytes called from start_kernel+0x1fb/0x360 wi0
[    0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys).            
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycless
[    0.000007] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398s
[    0.000019] Switching to timer-based delay loop, resolution 41ns             
[    0.000421] Console: colour dummy device 80x30                               
[    0.000467] Calibrating delay loop (skipped), value calculated using timer f)
[    0.000485] pid_max: default: 4096 minimum: 301                              
[    0.000658] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, line)
[    0.000674] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes,)
[    0.001297] CPU: Testing write buffer coherency: ok                          
[    0.001837] Setting up static identity map for 0x81c0 - 0x81f8               
[    0.002257] devtmpfs: initialized                                            
[    0.009055] VFP support v0.3: implementor 41 architecture 2 part 30 variant 5
[    0.009246] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, ms
[    0.009270] futex hash table entries: 16 (order: -5, 192 bytes, linear)      
[    0.009362] pinctrl core: initialized pinctrl subsystem                      
[    0.010224] NET: Registered protocol family 16                               
[    0.010665] DMA: failed to allocate 0 KiB pool for atomic coherent allocation
[    0.011467] thermal_sys: Registered thermal governor 'step_wise'             
[    0.011476] thermal_sys: Registered thermal governor 'user_space'            
[    0.011728] cpuidle: using governor menu                                     
[    0.011762] Registered FIQ tty driver                                        
[    0.024771] rockchip-gpio ff380000.gpio: probed /pinctrl/gpio@ff380000       
[    0.025554] rockchip-gpio ff530000.gpio: probed /pinctrl/gpio@ff530000       
[    0.026294] rockchip-gpio ff550000.gpio: probed /pinctrl/gpio@ff550000       
[    0.027025] rockchip-gpio ff560000.gpio: probed /pinctrl/gpio@ff560000       
[    0.027134] rockchip-pinctrl pinctrl: probed pinctrl                         
[    0.036453] fiq_debugger fiq_debugger.0: IRQ uart_irq not found              
[    0.036477] fiq_debugger fiq_debugger.0: IRQ wakeup not found                
[    0.036761] printk: console [ttyFIQ0] enabled                                
[    0.036993] Registered fiq debugger ttyFIQ0                                  
[    0.039062] SCSI subsystem initialized                                       
[    0.039294] usbcore: registered new interface driver usbfs                   
[    0.039344] usbcore: registered new interface driver hub                     
[    0.039395] usbcore: registered new device driver usb                        
[    0.039642] mc: Linux media interface: v0.10                                 
[    0.039689] videodev: Linux video capture interface: v2.00                   
[    0.040866] Advanced Linux Sound Architecture Driver Initialized.            
[    0.041629] rockchip-cpuinfo cpuinfo: SoC            : 11031000              
[    0.041653] rockchip-cpuinfo cpuinfo: Serial         : 3c6d8f8ee95e4dd0      
[    0.042024] rockchip,rknpor-powergood ff000000.syscon:rknpor-powergood: prob!
[    0.042808] clocksource: Switched to clocksource arch_sys_counter            
[    0.050354] NET: Registered protocol family 2                                
[    0.050543] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linea)
[    0.051023] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096)
[    0.051080] TCP established hash table entries: 1024 (order: 0, 4096 bytes, )
[    0.051111] TCP bind hash table entries: 1024 (order: 0, 4096 bytes, linear) 
[    0.051132] TCP: Hash tables configured (established 1024 bind 1024)         
[    0.051256] UDP hash table entries: 256 (order: 0, 4096 bytes, linear)       
[    0.051301] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes, linear)  
[    0.051451] NET: Registered protocol family 1                                
[    0.051964] RPC: Registered named UNIX socket transport module.              
[    0.051984] RPC: Registered udp transport module.                            
[    0.051992] RPC: Registered tcp transport module.                            
[    0.051999] RPC: Registered tcp NFSv4.1 backchannel transport module.        
[    0.053222] Initialise system trusted keyrings                               
[    0.053455] workingset: timestamp_bits=30 max_order=14 bucket_order=0        
[    0.057550] squashfs: version 4.0 (2009/01/31) Phillip Lougher               
[    0.058376] NFS: Registering the id_resolver key type                        
[    0.058447] Key type id_resolver registered                                  
[    0.058465] Key type id_legacy registered                                    
[    0.058531] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.             
[    0.059024] Key type asymmetric registered                                   
[    0.059051] Asymmetric key parser 'x509' registered                          
[    0.059077] io scheduler mq-deadline registered                              
[    0.059543] rockchip-usb2phy ff3e0000.usb2-phy: IRQ index 0 not found        
[    0.064429] dma-pl330 ff420000.dma-controller: Loaded driver for PL330 DMAC-0
[    0.064461] dma-pl330 ff420000.dma-controller:       DBUFF-128x8bytes Num_Ch6
[    0.065317] rockchip-pvtm ff240000.pvtm: pvtm@0 probed                       
[    0.065537] rockchip-pvtm ff390000.pvtm: pvtm@0 probed                       
[    0.066165] Serial: 8250/16550 driver, 6 ports, IRQ sharing disabled         
[    0.071109] random: fast init done                                           
[    0.071252] random: crng init done                                           
[    0.082400] brd: moduleSeeding 2048 bits and crediting                       
 loSaving 2048 bits of creditable seed for next boot                            
aded                                                                            
[    0.089031] loop: module loaded                                              
[    0.091499] spi-nand spi2.0: Winbond SPI NAND was found.                     
[    0.091529] spi-nand spi2.Starting syslogd: 0: 128 MiB, block size: 128 KiB,4
[    0.092911] 7 cmdlinepart partitions found oOK                               
n MTD device spi-nand0                                                          
[    0.092933] Creating 7 MTD partitions on "spi-nand0":                        
[    0.092965] 0x000000000000-0x000000040000 : "env"                            
[    0.094955] 0x000000040000-0x000000080000 Starting klogd: : "idblock"        
[    0.097043] 0x000000080000-0x000000100000 : "uboot"                          
[    0.098950] 0OK                                                              
x000000100000-0x000000500000 : "boot"                                           
[    0.101077] 0x000000500000-0x000002300000 : "oem"                            
[    0.103210] 0x000002300000-0x000002d00000 : "userdata"                       
[    0.105286] 0x000002d00000-0x000007d00000 : "rootfs"                         
[    0.108812] rk_gmac-dwmac ffa80000.ethernet: IRQ eth_lpi not found           
[    0.109010] rk_gmac-dwmac ffa80000.ethernet: PTP uses main clocRunning sysctk
[    0.109067] rk_gmac-dwmac ffa80000.ethernet: no regulator found              
[    0.109083] rk_gmac-dwmac ffa80000.ethernet: clock input or output? (input). 
[    0.109093] rk_gmac-dwmac ffa80000.ethernet: Can not read property: tx_delay.
[    0.109103] rk_gmac-dwmac ffa80000.ethernet: set tx_delay to 0xffffffff      
[    0.109112] rk_gmac-dwmac ffa80000.ethernet: Can not read property: rx_delay.
[    0.109121] rk_gmac-dwmac ffa80000.ethernet: set rx_delay to 0xffffffff      
[    0.109197] rk_gmac-dwmac ffa80000.ethernet: integrated PHY? (yes).          
[    0.109214] rk_gmac-dwmac ffa80000.ethernet: cannot get clock mac_clk_rx     
[    0.109227] rk_gmac-dwmac ffa80000.ethernet: cannot get clock mac_clk_tx     
[    0.109258] rk_gmac-dwmac ffa80000.ethernet: cannot get clock clk_mac_speed  
[    0.109267] rk_gmac-dwmac ffa80000.ethernet: clock input froOK               
m PHY                                                                           
[    0.109534] rk_gmac-dwmac ffa80000.ethernet: init for RMII                   
[    0.109761] rk_gmac-dwmac ffa80000.ethernet: UserPopulating /dev using udev:1
[    0.109794] rk_gmac-dwmac ffa80000.ethernet:         DWMAC4/5                
[    0.109808] rk_gmac-dwmac ffa80000.ethernet: DMA HW capability register suppd
[    0.109819] rk_gmac-dwmac ffa80000.ethernet: RX Checksum Offload Engine suppd
[    0.109827] rk_gmac-dwmac ffa80000.ethernet: TX Checksum insertion supported 
[    0.109835] rk_gmac-dwmac ffa80000.ethernet: Wake-Up On Lan supported        
[    0.109843] rk_gmac-dwmac ffa80000.ethernet: TSO supported                   
[    0.109851] rk_gmac-dwmac ffa80000.ethernet: Enable RX Mitigation via HW Watr
[    0.109860] rk_gmac-dwmac ffa80000.ethernet: TSO feature enabled             
[    0.109872] rk_gmac-dwmac ffa80000.ethernet: Using 40 bits DMA width         
[    0.117749] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver       
[    0.118161] usbcore: registered new interface driver usb-storage             
[    0.118386] gadgetfs: USB Gadget filesystem, version 24 Aug 2004             
[    0.118449] Mass Storage Function, version: 2009/09/11                       
[    0.118474] LUN: removable file: (no medium)                                 
[    0.118514] no file given for LUN0                                           
[    0.118570] udc ffb00000.usb: failed to start g_mass_storage: -22            
[    0.119107] i2c /dev entries driver                                          
[    0.120691] i2c i2c-4: 1 i2c clients have been registered at 0x30            
[    0.121160] i2c i2c-4: 2 i2c clients have been registered at 0x30            
[    0.122325] usbcore: registered new interface driver uvcvideo                
[    0.122348] USB Video Class driver (1.1.1)                                   
[    0.123675] rockchip-thermal ff3c8000.tsadc: tsadc is probed successfully!   
[    0.125184] cpu cpu0: failed to register system monitor                      
[    0.125703] Synopsys Designware Multimedia Card Interface Driver             
[    0.126748] dwmmc_rockchip ffaa0000.mmc: IDMAC supports 32-bit address mode. 
[    0.126815] dwmmc_rockchip ffaa0000.mmc: Using internal DMA controller.      
[    0.126834] dwmmc_rockchip ffaa0000.mmc: Version ID is 270a                  
[    0.126885] dwmmc_rockchip ffaa0000.mmc: DW MMC controller at irq 47,32 bit o
[    0.128103] dtbocfg: 0.1.0                                                   
[    0.128179] dtbocfg: OK                                                      
[    0.130541] rv1106-acodec ff480000.acodec: current soc_id: rv1103            
[    0.130669] rv1106-acodec ff480000.acodec: Use pa_ctl_gpio and pa_ctl_delay_0
[    0.132603] NET: Registered protocol family 17                               
[    0.132727] Key type dns_resolver registered                                 
[    0.133787] Loading compiled-in X.509 certificates                           
[    0.134519]                                                                  
[    0.134559] *****************************************************************
[    0.134569] **     NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE         *
[    0.134576] **                                                              *
[    0.134582] **  WRITEABLE clk DebugFS SUPPORT HAS BEEN ENABLED IN THIS KERNE*
[    0.134588] **                                                              *
[    0.134595] ** This means that this kernel is built to expose clk operations*
[    0.134602] ** such as parent or rate setting, enabling, disabling, etc.    *
[    0.134607] ** to userspace, which may compromise security on your system.  *
[    0.134614] **                                                              *
[    0.134620] ** If you see this message and you are not debugging the        *
[    0.134626] ** kernel, report this immediately to your vendor!              *
[    0.134633] **                                                              *
[    0.134639] **     NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE         *
[    0.134646] *****************************************************************
[    0.139659] mmc_host mmc1: Bus speed (slot 0) = 400000Hz (slot req 400000Hz,)
[    0.155143] input: adc-keys as /devices/platform/adc-keys/input/input0       
[    0.224541] ubi0: attaching mtd6                                             
[    0.410622] ubi0: scanning is finished                                       
[    0.415841] ubi0: attached mtd6 (name "rootfs", size 80 MiB)                 
[    0.415870] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes   
[    0.415880] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048    
[    0.415889] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096  
[    0.415907] ubi0: good PEBs: 640, bad PEBs: 0, corrupted PEBs: 0             
[    0.415918] ubi0: user volume: 1, internal volumes: 1, max. volumes count: 18
[    0.415929] ubi0: max/mean erase counter: 3/0, WL threshold: 4096, image seq0
[    0.415940] ubi0: available PEBs: 0, total reserved PEBs: 640, PEBs reserved0
[    0.417286] ALSA device list:                                                
[    0.417324]   #0: rv-acodec                                                  
[    0.417997] ubi0: background thread "ubi_bgt0d" started, PID 54              
[    0.418278] UBIFS (ubi0:0): Mounting in unauthenticated mode                 
[    0.458242] UBIFS (ubi0:0): UBIFS: mounted UBI device 0, volume 0, name "rooe
[    0.458274] UBIFS (ubi0:0): LEB size: 126976 bytes (124 KiB), min./max. I/O s
[    0.458288] UBIFS (ubi0:0): FS size: 76820480 bytes (73 MiB, 605 LEBs), jour)
[    0.458298] UBIFS (ubi0:0): reserved for root: 0 bytes (0 KiB)               
[    0.458311] UBIFS (ubi0:0): media format: w4/r0 (latest is w5/r0), UUID C0F1l
[    0.459698] VFS: Mounted root (ubifs filesystem) readonly on device 0:14.    
[    0.461056] devtmpfs: mounted                                                
[    0.461292] Freeing unused kernel memory: 200K                               
[    0.461311] Kernel memory protection not selected by kernel config.          
[    0.461349] Run /sbin/init as init process                                   
[    0.470270] process '/bin/busybox' started with executable stack             
[    0.553321] UBIFS (ubi0:0): background thread "ubifs_bgt0_0" started, PID 57 
[    0.865309] udevd[87]: starting version 3.2.7                                
[    0.883630] udevd[87]: specified group 'input' unknown                       
[    0.884758] udevd[87]: specified group 'kvm' unknown                         
[    0.911391] udevd[88]: starting eudev-3.2.7                                  
[    1.423720] udevd[99]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /dy
[    1.424925] udevd[98]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /dy
[    1.430435] udevd[100]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /y
[    1.460574] udevd[105]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /y
[    1.473155] udevd[106]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /y
[    1.478034] udevd[107]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /y
[    1.485157] udevd[108]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /y
done                                                                            
/etc/init.d/S20linkmount info: mount point path [IGNORE] not found, skip...     
***********/dev/ubi4_0 not exist***********                                     
***********/dev/ubi4 not exist***********                                       
[    1.923025] ubi4: attaching mtd4                                             
[    1.993176] ubi4: scanning is finished                                       
[    2.002030] ubi4: attached mtd4 (name "oem", size 30 MiB)                    
[    2.002062] ubi4: PEB size: 131072 UBI device numbebytr 4, total 240 LEBs (3)
es (128 KiB), LEB size: 126976 bytes                                            
[    2.002072] ubi4: min./max. I/O unit sizes: 2048/2048, sub-page size 2048    
[    2.002081] ubi4: VID header offset: 2048 (aligned 204try to make volume: /d.
8), data offset: 4096                                                           
[    2.002090] ubi4: good PEBs: 240, bad PEBs: 0, corrupted PEBs: 0ubimkvol: er"
                                                                                
[    2.002100] ubi4: user volume: 1, internal volumes: 1, max. volumes count: 18
[    2.002109] ubi4: max/mean erase counter: 2/0, WL threshold: 4096, image seq0
[    2.002121] ubi4: available PEBs: 0, total reserved PEBs: 240, PEBs reserved0
[    2.004817] ubi4: background thread "ubi_bgt4d" started, PID 128             
[    2.054562] UBIFS (ubi4:0): Mounting in unauthenticated mode                 
[    2.054835] UBIFS (ubi4:0): background thread "ubifs_bgt4_0" started, PID 133
[    2.090346] UBIFS (ubi4:0): UBIFS: mounted UBI device 4, volume 0, name "oem"
[    2.090378] UBIFS (ubi4:0): LEB size: 126976 bytes (124 KiB), min./max. I/O s
[    2.090391] UBIFS (ubi4:0): FS size: 26157056 bytes (24 MiB, 206 LEBs), jour)
[    2.090400] UBIFS (ubi4:0): reserved for root: 0 bytes (0 KiB)               
[    2.090414] UBIFS (ubi4:0): media format: w4/r0 (latest is w5/r0), UUID 1631*
***********/dev/ubi5 not exist***********                                       
 LPT model                                                                      
[    2.145543] ubi5: attaching mtd5                                             
[    2.169507] ubi5: scanning is finished                                       
[    2.178203] ubi5: attached mtd5 (name "userdata", size 10 MiB)               
[    2.178233] ubi5: PEUBI device number 5, total 80 LEBBs (10158080 bytes, 9.7)
ze: 131072 bytes (128 KiB), LEB size: 126976 bytes                              
[    2.178243] ubi5: min./max. I/O unit sizes: 2048/2048, sub-page size 2048    
[    2.178252] ubi5: VID headertry to make volume: /dev/ubi5_0 ...              
 offset: 2048 (aligned 2048), data offseubimkvol: error!: bad volume size: "0"  
t: 4096                                                                         
[    2.178261] ubi5: good PEBs: 80, bad PEBs: 0, corrupted PEBs: 0              
[    2.178270] ubi5: user volume: 1, internal volumes: 1, max. volumes count: 18
[    2.178280] ubi5: max/mean erase counter: 2/1, WL threshold: 4096, image seq0
[    2.178291] ubi5: available PEBs: 0, total reserved PEBs: 80, PEBs reserved 0
[    2.183510] ubi5: background thread "ubi_bgt5d" started, PID 142             
[    2.224482] UBIFS (ubi5:0): Mounting in unauthenticated mode                 
[    2.224771] UBIFS (ubi5:0): background thread "ubifs_bgt5_0" started, PID 147
[    2.273879] UBIFS (ubi5:0): UBIFS: mounted UBI device 5, volume 0, name "use"
[    2.273918] UBIFS (ubi5:0): LEB size: 126976 bytes (124 KiB), min./max. I/O s
[    2.273932] UBIFS (ubi5:0): FS size: 5840896 bytes (5 MiB,Initializing rando)
[    2.273941] UBIFS (ubi5:0): reserved for root: 0 bytes (0 KiB)               
[    2.273954] UBIFS (ubi5:0): media format: w4/r0 (latest is w5/r0), UUID 84E3.
                                                                                
/dev/ubi5_0 on /userdata type ubifs (rw,relatime,assert=read-only,ubi=5,vol=0)  
Starting network: [    2.441037] rk_dvbm ffa70000.rkdvbm: probe start           
[    2.441241] rk_dvbm ffa70000.rkdvbm: dvbm ctx d552a72b                       
[    2.441704] rk_dvbm ffa70000.rkdvbm: probe success                           
[    2.495691] rkcifhw ffa10000.rkcif: no iommu attached, using non-iommu buffes
[    2.495735] rkcifhw ffa10000.rkcif: No reserved memory region assign to CIF  
[    2.497984] rkcif rkcif-mipi-lvds: rkcif driver version: v00.01.0a           
[    2.498115] rkcif rkcif-mipi-lvds: attach to cif hw node                     
[    2.498130] rkcif rkcif-mipi-lvds: failed to getOK                           
 dphy hw node                                                                   
[    2.498160] rkcif rkcif-mipi-lvds: rkcif wait line 0                         
[    2.498176] : terminal subdev does not exist                                 
[    2.498186] : terminal subdev does not exist                                 
[    2.498195] : terminal subdev does Starting ntpd: not exist                  
[    2.498204] : terminal subdev does not exist                                 
[    2.498215] : get_remote_sensor: video pad[0] is null                        
[    2.498225] : rkcif_update_sensor_info: stream[0] get remote sensor_sd faile!
[    2.498237] : get_remote_sensor: video pad[0] is null                        
[    2.498245] : rkcif_update_sensor_info: stream[0] get remote sensor_sd faile!
[    2.498255] : get_remote_sensor: video pad[0] is null                        
[    2.498262] : rkcif_update_sensor_info: stream[0] get remote sensor_sd faile!
[    2.498271] : get_remote_sensor: video pad[0] is null                        
[    2.498279] : rkcif_update_sensor_info: stream[0] get remote sensor_sd faile!
[    2.512294] rkcif rkcif-mipi-lvds: No memory-region-thunderboot specified    
[    2.518070] rkcif rkcif-mipi-lvds: Entity type for entity rockchip-mipi-csi2!
[    2.518109] rockchip-mipi-csi2: Async registered subdev                      
[    2.518122] rockchip-mipi-csi2: probe success, v4l2_dev:rkcif-mipi-lvds!     
[    2.573387] rkisp_hw ffa00000.rkisp: is_thunderboot: 0                       
[    2.573418] rkisp_hw ffa00000.rkisp: max input:0x0@0fps                      
[    2.573431] rkisp_hw ffa00000.rkisp: Missing rockchip,grf property           
[    2.573667] rkisp_hw ffa00000.rkisp: get sram size:258048                    
[    2.573685] rkisp_hw ffa00000.rkisp: no iommu attached, using non-iommu buffs
[    2.573695] rkisp_hw ffa00000.rkisp: No reserved memory region. default cma !
[    2.575828] rkisp rkisp-vir0: rkisp driver version: v02.00.00                
[    2.578525] rkisp rkisp-vir0: Entity type for entity rkisp-isp-subdev was no!
[    2.612266] rockchip-csi2-dphy-hw ff3e8000.csi2-dphy-hw: csi2 dphy hw probe !
[    2.637162] rockchip-csi2-dphy csi2-dphy0: csi2 dphy0 probe successfully!    
[    2.686934] sc4336 4-0030-1: driver version: 00.01.01                        
[    2.687075] sc4336 4-0030-1: Failed to get reset-gpios                       
[    2.687136] sc4336 4-0030-1: could not get default pinstate                  
[    2.687147] sc4336 4-0030-1: could not get sleep pinstate                    
[    2.687174] sc4336 4-0030-1: supply avdd not found, using dummy regulator    
[    2.688294] sc4336 4-0030-1: supply dovdd not found, using dummy regulator   
[    2.688589] sc4336 4-0030-1: supply dvdd not found, using dummy regulator    
[    2.703539] sc4336 4-0030-1: Unexpected sensor id(000000), ret(-5)           
[    2.728583] sc3336 4-0030: driver version: 00.01.01                          
[    2.728732] sc3336 4-0030: Failed to get reset-gpios                         
[    2.728825] sc3336 4-0030: could not get default pinstate                    
[    2.728847] sc3336 4-0030: could not get sleep pinstate                      
[    2.728972] sc3336 4-0030: supply avdd not found, using dummy regulator      
[    2.730694] sc3336 4-0030: supply dovdd not found, using dummy regulator     
[    2.731001] sc3336 4-0030: supply dvdd not found, using dummy regulator      
[    2.745173] sc3336 4-0030: Unexpected sensor id(000000), ret(-5)             
[    2.767700] sc530ai 4-0030-2: driver version: 00.01.01                       
[    2.767787] sc530ai 4-0030-2: lane_num = 2                                   
[    2.767986] sc530ai 4-0030-2: Failed to get reset-gpios                      
[    2.768189] sc530ai 4-0030-2: could not get default pinstate                 
[    2.768209] sc530ai 4-0030-2: could not get sleep pinstate                   
[    2.768304] sc530ai 4-0030-2: supply avdd not found, using dummy regulator   
[    2.769290] sc530ai 4-0030-2: supply dovdd not found, using dummy regulator  
[    2.770488] sc530ai 4-0030-2: supply dvdd not found, using dummy regulator   
[    2.776088] sc530ai 4-0030-2: Unexpected sensor id(000000), ret(-5)          
[    2.778962] rkcif rkcif-mipi-lvds: clear unready subdev num: 3               
[    2.778997] rockchip-csi2-dphy0: No link between dphy and sensor             
[    2.780538] rockchip-csi2-dphy0: No link between dphy and sensor             
[    2.780619] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[0] get remote !
[    2.780638] rkcif-mipi-lvds: Async subdev notifier completed                 
[    2.780664] rockchip-csi2-dphy0: No link between dphy and sensor             
[    2.780974] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[0] get remote !
[    2.780991] rkcif-mipi-lvds: There is not terminal subdev, not synchronized P
[    2.781024] rockchip-csi2-dphy0: No link between dphy and sensor             
[    2.781048] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[0] get remote !
[    2.781055] rkcif-mipi-lvds: There is not terminal subdev, not synchronized P
[    2.781789] rkisp rkisp-vir0: clear unready subdev num: 1                    
[    2.782475] rkisp-vir0: Async subdev notifier completed                      
[    2.826833] rga: rga2, irq = 35, match scheduler                             
[    2.827294] rga: rga2 hardware loaded successfully, hw_version:3.3.87975.    
[    2.827318] rga: rga2 probe successfully                                     
[    2.828750] rga_iommu: IOMMU binding successfully, default mapping core[0x4] 
[    2.830946] rga: Module initialized. v1.2.23                                 
[    2.939128] mpp_vcodec: loading out-of-tree module taints kernel.            
[    2.960544] mpp_vcodec: init new                                             
[    2.960731] mpp_service mpp-srv: 3760314f author: Zhihua Wang 2023-01-12 [vcy
[    2.960748] mpp_service mpp-srv: probe start                                 
[    2.963073] mpp_rkvenc_540c ffa50000.rkvenc: probing start                   
[    2.965160] mpp_rkvenc_540c ffa50000.rkvenc: probing finish                  
[    2.965661] mpp_vepu_pp ffa60000.rkvenc-pp: probe device                     
[    2.965794] mpp_vepu_pp ffa60000.rkvenc-pp: shared_rst_a_pp is not found!    
[    2.965807] vepu_pp_init:528: No aclk reset resource define                  
OK                                                                              
[    2.965819] mpp_vepu_pp ffa60000.rkvenc-pp: shared_rst_h_pp is not found!    
[    2.965828] vepu_pp_init:531: No hclk reset resource define                  
[    2.967978] mpp_vepu_pp ffa60000.rkvenc-pp: probing finish                   
[    2.968298] mpp_service mpp-srv: probe success                               
[    3.011043] RKNPU ff660000.npu: RKNPU: rknpu iommu device-tree entry not foue
[    3.013646] RKNPU ff660000.npu: RKNPU: Initialized RKNPU driver: v0.8.2 for 9
[    3.013783] RKNPU ff660000.npu: dev_pm_opp_set_regulators: no regulator (rkn9
Starting sshd: rmmod: can't unload module 'sc530ai': No such file or directory  
[    3.302084] rockit_load start                                                
/                                                                               
insmod_ko.sh: line 78: /oem/usr/ko/insmod_wifi.sh: not found                    
ln: /usr/www/userdata: No such file or directory                                
ln: /usr/www/usb0: No such file or directory                                    
ln: /usr/www/sdcard: No such file or directory                                  
md5sum: can't open '/tmp/rkipc-factory-config.ini': No such file or directory   
OK                                                                              
Starting telnetd: Error: not found rkipc.ini !!!                                
/oem/usr/bin/RkLunch.sh: exit: line 110: Illegal number: -1                     
OK                                                                              
[    3.322912] rockit_load end                                                  
[    3.619362] rk_gmac-dwmac ffa80000.ethernet eth0: PHY [stmmac-0:02] driver [)
[    3.620090] dwmac4: Master AXI performs any burst length                     
[    3.620134] rk_gmac-dwmac ffa80000.ethernet eth0: No Safety Features suppor/d
[    3.620154] rk_gmac-dwmac ffa80000.ethernet eth0: PTP not supported by HW    
[    3.620495] rk_gmac-                                                         
dwmDebug: configfs_ac ffa80000.ethernet eth0: configuring for phy/rmii link mode
init                                                                            
udhcpc: started, v1.36.1                                                        
[    3.954090] file system registered                                           
udhcpc: broadcasting discover                                                   
mkdir: can't create directory '/sys/kernel/config/usb_gadget/rockchip/functionsy
[    3.992730] using random self ethernet address                               
[    3.992773] using random host ethernet address                               
mkdir: can't create directory '/sys/kernel/config/usb_gadget/rockchip/functionsy
[    4.015607] Mass Storage Function, version: 2009/09/11                       
[    4.015737] LUN: removable file: (no medium)                                 
[    4.108248] read descriptors                                                 
[    4.108463] read strings                                                     
[    5.107771] usb0: HOST MAC 3a:69:03:70:4d:6d                                 
[    5.107800] usb0: MAC 0a:e4:8f:13:0f:28                                      
[    5.226195] dwc3 ffb00000.usb: device reset                                  
[    5.343848] dwc3 ffb00000.usb: device reset                                  
[    5.467486] android_work: sent uevent USB_STATE=CONNECTED                    
[    5.473710] android_work: sent uevent USB_STATE=CONFIGURED                   
[    5.656830] rk_gmac-dwmac ffa80000.ethernet eth0: Link is Up - 100Mbps/Full x
current_ip = 172.32.0.70                                                        
TARGET_IP = 172.32.0.93                                                         
luckfox : set usb0 ip                                                           
172.32.0.93                                                                     
usb0 config success                                                             
Starting SMB services: udhcpc: broadcasting discover                            
udhcpc: broadcasting select for 192.168.40.202, server 192.168.40.1             
udhcpc: lease of 192.168.40.202 obtained from 192.168.40.1, lease time 14400    
deleting routers                                                                
adding dns 172.16.5.2                                                           
OK                                                                              
Starting NMB services: OK                                                       
rm: can't remove '/tmp/.pin_diagram.txt': No such file or directory             
/usr/bin/luckfox-config: line 46: warning: command substitution: ignored null bt
Only Luckfox Pico Ultra /Luckfox Pico Ultra W support RGB                       
Complete configuration loading                                                  
Found ADC keys device: /dev/input/event0                                        
/root/main.py and /root/boot.py not exist ,pass...                              
OK                                                                              
hwclock: can't open '/dev/misc/rtc': No such file or directory                  
RTC does not require time calibration                                           
                                                                                
Welcome to luckfox pico                                                         
luckfox login: root                                                             
Password:                                                                       
[root@luckfox root]# 

 

서비스는 ssh 외에는 도는게 없는 것 같다. 카메라 안달아서 그런가?

[root@luckfox root]# df -h                                                      
Filesystem                Size      Used Available Use% Mounted on              
ubi0:rootfs              67.1M     61.9M      5.2M  92% /                       
devtmpfs                 16.4M         0     16.4M   0% /dev                    
tmpfs                    16.5M         0     16.5M   0% /dev/shm                
tmpfs                    16.5M    168.0K     16.4M   1% /tmp                    
tmpfs                    16.5M    524.0K     16.0M   3% /run                    
/dev/ubi4_0              22.4M     17.1M      5.3M  76% /oem                    
/dev/ubi5_0               4.5M     24.0K      4.5M   1% /userdata               

[root@luckfox root]# netstat -tnl                                               
Active Internet connections (only servers)                                      
Proto Recv-Q Send-Q Local Address           Foreign Address         State       
tcp        0      0 0.0.0.0:139             0.0.0.0:*               LISTEN      
tcp        0      0 127.0.0.1:5037          0.0.0.0:*               LISTEN      
tcp        0      0 0.0.0.0:5555            0.0.0.0:*               LISTEN      
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      
tcp        0      0 0.0.0.0:23              0.0.0.0:*               LISTEN      
tcp        0      0 0.0.0.0:445             0.0.0.0:*               LISTEN      
netstat: /proc/net/tcp6: No such file or directory                              

[root@luckfox root]# cat /proc/cpuinfo                                          
processor       : 0                                                             
model name      : ARMv7 Processor rev 5 (v7l)                                   
BogoMIPS        : 48.00                                                         
Features        : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt 
CPU implementer : 0x41                                                          
CPU architecture: 7                                                             
CPU variant     : 0x0                                                           
CPU part        : 0xc07                                                         
CPU revision    : 5                                                             
                                                                                
Hardware        : Generic DT based system                                       
Revision        : 0000                                                          
Serial          : ca8ebbd389df2126                                              

[root@luckfox root]# free -h                                                    
              total        used        free      shared  buff/cache   available 
Mem:          33.1M       15.0M        3.1M      692.0K       15.0M       14.6M 
Swap:             0           0           0      

 

+

요건

luckfox pico ultra의 카메라를 달고 켠 거. 로그인 자체를 못한다.

DDR V1.10 ec2fae0c96 wesley.yao 22/11/15-10:58:09
S5P1
fc27
rgef0
rgef1
DDRConf1
DDR2, BW=16 Col=10 Bk=4 CS0 Row=13 CS=1 Die BW=16 Size=64MB
528MHz
DDR bin out

U-Boot SPL board init
U-Boot SPL 2017.09 (Jul 10 2024 - 15:27:08)
unrecognized JEDEC id bytes: ff, ef, aa
Trying to boot from MMC2
MMC: no card present
mmc_init: -123, time 2
spl: mmc init failed with error: -123
Trying to boot from MTD1
ENVF: Primary 0x00000000 - 0x00040000
ENVF: OK
Trying fit image at 0x400 sector
## Verified-boot: 0
## Checking uboot 0x00200000 (lzma @0x00400000) ... sha256(c2f767e435...) + sha256(0cd7e36c53...) + OK
## Checking fdt 0x0025bed0 ... sha256(51bba657c3...) + OK
Total: 241.436 ms

Jumping to U-Boot(0x00200000)


U-Boot 2017.09 (Jul 10 2024 - 15:27:08 +0800)

Model: Rockchip RV1106 EVB Board
PreSerial: 2, raw, 0xff4c0000
DRAM:  64 MiB
Sysmem: init
Relocation Offset: 03d85000
Relocation fdt: 02dfacb0 - 02dfede0
CR: M/C/I
Using default environment

Bootdev(atags): mtd 1
ENVF: Primary 0x00000000 - 0x00040000
ENVF: OK
PartType: ENV
DM: v2
No misc partition
boot mode: None
FIT: no signed, no conf required
DTB: rk-kernel.dtb
HASH(c): OK
Model: Luckfox Pico Plus
CLK: (uboot. arm: enter 816000 KHz, init 816000 KHz, kernel 0N/A)
  apll 816000 KHz
  dpll 528000 KHz
  gpll 1188000 KHz
  cpll 1000000 KHz
  aclk_peri_root 400000 KHz
  hclK_peri_root 200000 KHz
  pclk_peri_root 100000 KHz
  aclk_bus_root 300000 KHz
  pclk_top_root 100000 KHz
  pclk_pmu_root 100000 KHz
  hclk_pmu_root 200000 KHz
Net:   eth0: ethernet@ffa80000
Hit key to stop autoboot('CTRL+C'):  0 
## Booting FIT Image at 0x290da80 with size 0x002ec200
Fdt Ramdisk skip relocation
No misc partition
## Loading kernel from FIT Image at 0290da80 ...
   Using 'conf' configuration
## Verified-boot: 0
   Trying 'kernel' kernel subimage
     Description:  unavailable
     Type:         Kernel Image
     Compression:  uncompressed
     Data Start:   0x02916a80
     Data Size:    3027200 Bytes = 2.9 MiB
     Architecture: ARM
     OS:           Linux
     Load Address: 0x00008000
     Entry Point:  0x00008000
     Hash algo:    sha256
     Hash value:   66929aa0a4d3f91d2b47fa6dae6865e75d0a7a606cda288fb10179af657ecf17
   Verifying Hash Integrity ... sha256+ OK
## Loading fdt from FIT Image at 0290da80 ...
   Using 'conf' configuration
   Trying 'fdt' fdt subimage
     Description:  unavailable
     Type:         Flat Device Tree
     Compression:  uncompressed
     Data Start:   0x0290e280
     Data Size:    34771 Bytes = 34 KiB
     Architecture: ARM
     Load Address: 0x00c00000
     Hash algo:    sha256
     Hash value:   3692950246bab0e95c7f3f38c32aeedfaf37f07237d386d6a68d993ddadc0dd1
   Verifying Hash Integrity ... sha256+ OK
   Loading fdt from 0x0290da80 to 0x00c00000
   Booting using the fdt blob at 0x00c00000
   Loading Kernel Image from 0x02916a80 to 0x00008000 ... OK
   kernel loaded at 0x00008000, end = 0x002eb100
   Using Device Tree in place at 00c00000, end 00c0b7d2
Adding bank: 0x00000000 - 0x04000000 (size: 0x04000000)
Total: 602.567 ms

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 5.10.110 (hxj@luckfox-System-Product-Name) (arm-rockchip830-linux-uclibcgnueabihf-gcc (crosstool-N4
[    0.000000] CPU: ARMv7 Processor [410fc075] revision 5 (ARMv7), cr=50c53c7d
[    0.000000] CPU: div instructions available: patching division code
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[    0.000000] OF: fdt: Machine model: Luckfox Pico Plus
[    0.000000] Memory policy: Data cache writeback
[    0.000000] cma: Reserved 24576 KiB at 0x02800000
[    0.000000] Zone ranges:
[    0.000000]   Normal   [mem 0x0000000000000000-0x0000000003ffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000000000-0x0000000003ffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000003ffffff]
[    0.000000] CPU: All CPU(s) started in SVC mode.
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 16256
[    0.000000] Kernel command line: user_debug=31 storagemedia=mtd androidboot.storagemedia=mtd androidboot.mode=normal  rootwa)
[    0.000000] Dentry cache hash table entries: 8192 (order: 3, 32768 bytes, linear)
[    0.000000] Inode-cache
[    0.000000] Memory: 33684K/65536K available (3784K kernel code, 319K rwdata, 1824K rodata, 200K init, 140K bss, 7276K reserv)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[    0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
[    0.000000] random: get_random_bytes called from start_kernel+0x1fb/0x360 with crng_init=0
[    0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
[    0.000007] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
[    0.000019] Switching to timer-based delay loop, resolution 41ns
[    0.000413] Console: colour dummy device 80x30
[    0.000457] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=80000)
[    0.000474] pid_max: default: 4096 minimum: 301
[    0.000649] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.000665] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.001305] CPU: Testing write buffer coherency: ok
[    0.001831] Setting up static identity map for 0x81c0 - 0x81f8
[    0.002248] devtmpfs: initialized
[    0.009046] VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 5
[    0.009234] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    0.009259] futex hash table entries: 16 (order: -5, 192 bytes, linear)
[    0.009350] pinctrl core: initialized pinctrl subsystem
[    0.010225] NET: Registered protocol family 16
[    0.010658] DMA: failed to allocate 0 KiB pool for atomic coherent allocation
[    0.011449] thermal_sys: Registered thermal governor 'step_wise'
[    0.011459] thermal_sys: Registered thermal governor 'user_space'
[    0.011723] cpuidle: using governor menu
[    0.011759] Registered FIQ tty driver
[    0.024770] rockchip-gpio ff380000.gpio: probed /pinctrl/gpio@ff380000
[    0.025544] rockchip-gpio ff530000.gpio: probed /pinctrl/gpio@ff530000
[    0.026274] rockchip-gpio ff550000.gpio: probed /pinctrl/gpio@ff550000
[    0.027015] rockchip-gpio ff560000.gpio: probed /pinctrl/gpio@ff560000
[    0.027122] rockchip-pinctrl pinctrl: probed pinctrl
[    0.036479] fiq_debugger fiq_debugger.0: IRQ uart_irq not found
[    0.036505] fiq_debugger fiq_debugger.0: IRQ wakeup not found
[    0.036780] printk: console [ttyFIQ0] enabled
[    0.037022] Registered fiq debugger ttyFIQ0
[    0.039066] SCSI subsystem initialized
[    0.039294] usbcore: registered new interface driver usbfs
[    0.039342] usbcore: registered new interface driver hub
[    0.039395] usbcore: registered new device driver usb
[    0.039645] mc: Linux media interface: v0.10
[    0.039692] videodev: Linux video capture interface: v2.00
[    0.040848] Advanced Linux Sound Architecture Driver Initialized.
[    0.041602] rockchip-cpuinfo cpuinfo: SoC            : 11031000
[    0.041629] rockchip-cpuinfo cpuinfo: Serial         : 3c6d8f8ee95e4dd0
[    0.041992] rockchip,rknpor-powergood ff000000.syscon:rknpor-powergood: probe success!
[    0.042768] clocksource: Switchedgetall
getall
getall
 to clocksource arch_sys_counter
[    0.050292] NET: Registered protocol family 2
[    0.050462] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear)
[    0.050948] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes, linear)
[    0.051008] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.051039] TCP bind hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.051056] TCP: Hash tables configured (established 1024 bind 1024)
[    0.051177] UDP hash table entries: 256 (order: 0, 4096 bytes, linear)
[    0.0512295] RPC: Registered named UNIX socket transport module.
[    0.051913] RPC: Registered udp transport module.
[    0.051922] RPC: Registered tcp transport module.
[    0.051929] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.053163] Initialise system trusted keyrings
[    0.053399] workingset: timestamp_bits=30 max_order=14 bucket_order=0
[    0.057490] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.058309] NFS: Registering the id_resolver key type
[    0.058368] Key type id_resolver registered
[    0.058386] Key type id_legacy registered
[    0.058455] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[    0.058940] Key type asymmetric registered
[    0.058971] Asymmetric key parser 'x509' registered
[    0.058994] io scheduler mq-deadline registered
[    0.059480] rockchip-usb2phy ff3e0000.usb2-phy: IRQ index 0 not found
[    0.064348] dma-pl330 ff420000.dma-controller: Loaded driver for PL330 DMAC-241330
[    0.064378]ge tall
dma-pl330 ff420000.dma-controller:      DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    0.065260] rockchip-pvtm ff240000.pvtm: pvtm@0 probed
[    0.065476] rockchip-pvtm ff390000.pvtm: pvtm@0 probed
[    0.066081] Serial: 8250/16550 driver, 6 ports, IRQ sharing disabled
[    0.071061] random: fast init done
[    0.071201] random: crng init done
[    0.082278] brd: module loaded
[    0.088954] loop: module loaded
[    0.091404] spi-nand spi2.0: Winbond SPI NAND was found.
[    0.091432] spi-nand spi2.0: 128 MiB, block size: 128 KiB, page size: 2048, OOB size: 64
[    0.092757] 7 cmdlinepart partitions found on MTD device spi-nand0
[    0.092812] Creating 7 MTD partitions on "spi-nand0":
[    0.092861] 0x000000000000-0x000000040000 : "env"
[    0.094853] 0x000000040000-0x000000080000 : "idblock"
[    0.096922] 0x000000080000-0x000000100000 : "uboot"
[    0.098825] 0x000000100000-0x0Seeding 2048 bits and crediting
000Saving 2048 bits of creditable seed for next boot
00500000 : "boot"
[    0.100940] 0x000000500000-0x000002300000 : "oem"
[    0.103089] 0x000002300000-0x000002d00000 : "userdata"
[  Starting syslogd:   0.105126] 0x000002d00000-0x000007d00000 : "rootfs"
[    0.108717] rk_gmac-dwmac ffa80000.ethernet: IRQ eth_OK
lpi not found
[    0.108913] rk_gmac-dwc ffa80000.ethernet: PTP uses main clock
[    0.108970] rk_gmac-dwmac ffa80000.ethernet: no regulator found
[    0.108985] rk_gmac-dwmacStarting klogd:  ffa80000.ethernet: clock input or output? (input).
[    0.108996] rk_gmac-dwmac fOK
fa80000.ethernet: Can not read property: tx_delay.
[    0.109006] rk_gmac-dwmac ffa80000.ethernet: set tx_delay to 0xffffffff
[    0.109015] rk_gmac-dwmac ffa80000.ethgeretall
net: Can not read property: rx_delay.
[    0.109024] rk_gmac-dwmac ffa80000.ethernet: set rx_delay to 0xffffffff
[    0.109100] rk_gmac-dwmac ffa80000.ethernet: intRunning sysctl: egrated PHY? (yes).
[    0.109115] rk_gmac-dwmac ffa80000.ethernet: cannot get clock mac_clk_rx
[    0.109126] rk_gmac-dwmac ffa80000.ethernet: cannot get clock mac_clk_tx
[    0.109158] rk_gmac-dwmac ffa80000.ethernet: cannot get clock clk_mac_speed
[    0.109169] rk_gmac-dwmac ffa80000.ethernet: clock input from PHY
[    0.109423] rk_gmac-dwmac ffa80000.ethernet: init for RMII
[    0.109680] rk_gmac-dwmac ffa80000.ethernet: User ID: 0x30, Synopsys ID: 0x51
[    0.109711] rk_gmac-dwmac ffa80000.ethernet:         DWMAC4/5
[    0.109728] rk_gmac-dwmac ffa80000.ethernet: DMA HW capability register supported
[    0.109739] rk_gmac-dwmac ffa80000.ethernet: RX Checksum Offload Engine supported
[    0.109748] rk_gmac-dwmac ffa80000.ethernet: TX Checksum insertion supported
[    0.109756] rk_gmac-dwmac ffa80000.ethernet: Wake-Up On Lan supported
[    0.109763]OK
 rk_gmac-dwmac ffa80000.ethernet: TSO supported
[    0.109772] rk_gmac-dwmac ffa80000.ethernet: Enable RX Mitigation via HPopulating /dev using udev: W Watchdog Timer
[    0.109781] rk_gmac-dwmac ffa80000.ethernet: TSO feature enabled
[    0.109793] rk_gmac-dwmac ffa80000.ethernet: Using 40 bits DMA width
[    0.117700] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.118116] usbcore: registered new interface driver usb-storage
[    0.118345] gadgetfs: USB Gadget filesystem, version 24 Aug 2004
[    0.118412] Mass Storage Function, version: 2009/09/11
[    0.118453] LUN: removable file: (no medium)
[    0.118496] no file given fgeotall
r LUN0
[    0.118541] udc f have been registered at 0x30
[    0.121102] i2c i2c-4: 2 i2c clients have been registered at 0x30
[    0.122262] usbcore: registered new interface driver uvcvideo
[    0.122284] USB Video Class driver (1.1.1)
[    0.123616] rockchip-thermal ff3c8000.tsadc: tsadc is probed successfully!
[    0.125122] cpu cpu0: failed to register system monitor
[    0.125638] Synopsys Designware Multimedia Card Interface Driver
[    0.126679] dwmmc_rockchip ffaa0000.mmc: IDMAC supports 32-bit address mode.
[    0.126745] dwmmc_rockchip ffaa0000.mmc: Using internal DMA controller.
[    0.126763] dwmmc_rockchip ffaa0000.mmc: Version ID is 270a
[    0.126813] dwmmc_rockchip ffaa0000.mmc: DW MMC controller at irq 47,32 bit host data width,256 deep fifo
[    0.128037] dtbocfg: 0.1.0
[    0.128118] dtbocfg: OK
[    0.130461] rv1106-acodec ff480000.acodec: current soc_id: rv1103
[    0.130600] rv1106-acodec ff480000.acodec: Use pa_ctl_gpio and pa_ctl_delay_ms: 0
[    0.132534] NET: Registered protocol family 17
[    0.132661] Key type dns_resolver registered
[    0.133706] Loading compiled-in X.509 certificates
[    0.134427] 
[    0.134464] ********************************************************************
[    0.134476] **     NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE           **
[    0.134483] **                                                                **
[    0.134489] **  WRITEABLE clk DebugFS SUPPORT HAS BEEN ENABLED IN THIS KERNEL **
[    0.134495] **                                                                **
[ getall
   0.134502] ** This means that this kernel is built to expose clk operations  **
[    0.134509] ** such as parent or rate setting, enabling, disabling, etc.      **
[    0.134514] ** to userspace, which may compromise security on your system.    **
[    0.134520] **                                                                **
[    0.134526] ** If you see this message and you are not debugging the          **
[    0.134532] ** kernel, report this immediately to your vendor!                **
[    0.134538] **                                                                **
[    0.134544] **     NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE           **
[    0.134551] ********************************************************************
[    0.139780] mmc_host mmc1: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0)
[    0.155071] input: adc-keys as /devices/platform/adc-keys/input/input0
[    0.224530] ubi0: attaching mtd6
[    0.410207] ubi0: scanning is finished
[    0.415351] ubi0: attached mtd6 (name "rootfs", size 80 MiB)
[    0.415379] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes
[    0.415388] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048
[    0.415397] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096
[    0.415405] ubi0: good PEBs: 640, bad PEBs: 0, corrupted PEBs: 0
[    0.415425] ubi0: user volume: 1, internal volumes: 1, max. volumes count: 128
[    0.415437] ubi0: max/mean erase counter: 3/0, WL threshold: 4096, image sequence number: 1782365620
[    0.415447] ubi0: available PEBs: 0, total reserved PEBs: 640, PEBs reserved for bad PEB handling: 20
[    0.416813] ALSA device lgeitall
st:
[    0.416851]   #0: rv-acodec
[    0.417522] ubi0: background thread "ubi_bgt0d" started, PID 54
[    0.417794] UBIFS (ubi0:0): Mounting in unauthenticated mode
[    0.436663] UBIFS (ubi0:0): recovery needed
[    0.461644] UBIFS (ubi0:0): recovery deferred
[    0.461791] UBIFS (ubi0:0): UBIFS: mounted UBI device 0, volume 0, name "rootfs", R/O mode
[    0.461823] UBIFS (ubi0:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes
[    0.461836] UBIFS (ubi0:0): FS size: 76820480 bytes (73 MiB, 605 LEBs), journal size 9023488 bytes (8 MiB, 72 LEBs)
[    0.461847] UBIFS (ubi0:0): reserved for root: 0 bytes (0 KiB)
[    0.461859] UBIFS (ubi0:0): media format: w4/r0 (latest is w5/r0), UUID C0F1C630-BECF-4CF7-89D7-42AD86B7C7A8, small LPT model
[    0.463259] VFS: Mounted root (ubifs filesystem) readonly on device 0:14.
[    0.464620] devtmpfs: mounted
[    0.464858] Freeing unused kernel memory: 200K
[    0.464870] Kernel memory protection not selected by kernel config.
[    0.464908] Run /sbin/init as init process
[    0.473762] process '/bin/busybox' started with executable stack
[    0.555827] UBIFS (ubi0:0): completing deferred recovery
[    0.596282] UBIFS (ubi0:0): background thread "ubifs_bgt0_0" started, PID 57
[    0.600356] UBIFS (ubi0:0): deferred recovery completed
[    0.917202] udevd[87]: starting version 3.2.7
[    0.935692] udevd[87]: specified group 'input' unknown
[    0.937498] udevd[87]: specified group 'kvm' unknown
[    0.964065] udevd[88]: starting eudev-3.2.7
getall
[    1.459063] udevd[97]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /dev/mtd0ro': No such file or directory
[    1.466668] udevd[98]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /dev/mtd1ro': No such file or directory
[    1.481389] udevd[99]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /dev/mtd2ro': No such file or directory
[    1.489896] udevd[100]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /dev/mtd3ro': No such file or directory
[    1.501307] udevd[101]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /dev/mtd4ro': No such file or directory
[    1.509915] udevd[102]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /dev/mtd5ro': No such file or directory
[    1.519815] udevd[103]: failed to execute '/lib/udev/mtd_probe' 'mtd_probe /dev/mtd6ro': No such file or directory
getall
getall
done
getall
/etc/init.d/S20linkmount info: mount point path [IGNORE] not found, skip...
***********/dev/ubi4_0 not exist***********
***********/dev/ubi4 not exist***********
[    1.957887] ubi4: attaching mtd4
getall
[    2.028114] ubi4: scanning is finished
[    2.037090] ubi4: attached mtd4 (name "oem", size 30 MiB)
[    2.037121] ubi4: PEBUBI device numbe size: 1310r 4, total 240 LEBs (30474240 bytes, 29.1 MiB), available 0 LEBs (0 bytes), )
72 bytes (128 KiB), LEB size: 126976 bytes
[    2.037132] ubi4: min./max. I/O unit sizes: 2048/2048, sub-page size 2048
[    2.037142] ubi4: VID header offset: 2048 (aligntry to make volume: /dev/ubi4_0 ...
ed 2048), data offset: 4096
[    2.037151] ubi4: good PEBs: 240, bad PEBs: 0, corrupted PEBsubimkvol: error!: bad volume size: "0"
: 0
[    2.037160] ubi4: user volume: 1, internal volumes: 1, max. volumes count: 128
[    2.037171] ubi4: max/mean erase counter: 2/0, WL threshold: 4096, image sequence number: 1080680260
[    2.037182] ubi4: available PEBs: 0, total reserved PEBs: 240, PEBs reserved for bad PEB handling: 20
[    2.038728] ubi4: background thread "ubi_bgt4d" started, PID 124
[    2.089279] UBIFS (ubi4:0): Mounting in unauthenticated mode
[    2.089965] UBIFS (ubi4:0): background thread "ubifs_bgt4_0" started, PID 129
[    2.109234] UBIFS (ubi4:0): recovery needed
getall
[    2.170793] UBIFS (ubi4:0): recovery completed
[    2.171917] UBIFS (ubi4:0): UBIFS: mounted UBI device 4, volume 0, name "oem"
[    2.171933] UBIFS (ubi4:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes
[    2.1946] UBIFS (ubi4:0): FS size: 26157056 bytes (24 MiB, 206 LEBs), journal size 4190208 bytes (3 MiB, 33 LEBs)
[    2.171954] UBIFS (ubi4:0): reserved for root: 0 bytes (0 KiB)
[    2.171965] UBIFS (ubi4:0): media format: w4/r0 (latest is w5/r0), UUID 1631A162-8837-4D93-BCE4-F871D6865CB1, small LPT model
***********/dev/ubi5_0 not exist***********
***********/dev/ubi5 not exist***********
[    2.226923] ubi5: attaching mtd5
[    2.250828] ubi5: scanning is finished
[    2.259430] ubi5: attached mtd5 (name "userdata", size 10 MiB)
[    2.2595UBI device number 5, total 80 LEB02] ubi5: Ps (10158080 bytes, 9.7 MiB), available 0 LEBs (0 bytes), LEB size 126976)
EB size: 131072 bytes (128 KiB), LEB size: 126976 bytes
[    2.259514] ubi5: min./max. I/O unit sizes: 2048/2048, sub-page size 2048
[    2.25952ge2ta]ll
 ubi5: VItry to make volume: /dev/ubi5_0 ...
D header offset: 2048 (aligned 2048), datubimkvol: error!: bad volume size: "0"
a offset: 4096
[    2.259532] ubi5: good PEBs: 80, bad PEBs: 0, corrupted PEBs: 0
[    2.259541] ubi5: user volume: 1, internal volumes: 1, max. volumes count: 128
[    2.259552] ubi5: max/mean erase counter: 2/1, WL threshold: 4096, image sequence number: 1196530650
[    2.259563] ubi5: available PEBs: 0, total reserved PEBs: 80, PEBs reserved for bad PEB handling: 20
[    2.262144] ubi5: background thread "ubi_bgt5d" started, PID 138
[    2.305713] UBIFS (ubi5:0): Mounting in unauthenticated mode
[    2.306000] UBIFS (ubi5:0): background thread "ubifs_bgt5_0" started, PID 143
[    2.325440] UBIFS (ubi5:0): recovery needed
[    2.383117] UBIFS (ubi5:0): recovery completed
[    2.384251] UBIFS (ubi5:0): UBIFS: mounted UBI device 5, volume 0, name "userdata"
[    2.384268] UBIFS (ubi5:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes
[    2.384280] UBIFS (ubi5Initializing random number generator... :0): FS size: 5840896 bytes (5 MiB, 46 LEBs), journal size 16)
[    2.384290] UBIFS (ubi5:0): reserved for root: 0 bytes (0 KiB)
[    2.384304] UBIFS (ubi5:0): media format: w4/r0 (latest is w5/r0), UUID 84E36239-DB7A-4done.
A82-8602-F4CC6E064CA7, small LPT model
getall
/dev/ubi5_0 on /userdata type ubifs (rw,relatime,assert=read-only,ubi=5,vol=0)
Starting network: [    2.552909] rk_dvbm ffa70000.rkdvbm: probe start
[    2.553012] rk_dvbm ffa70000.rkdvbm: dvbm ctx 0d587ef5
[    2.553434] rk_dvbm ffa70000.rkdvbm: probe success
getall
[    2.608538] rkcifhw ffa10000.rkcif: no iommu attached, using non-iommu buffers
[    2.608580] rkcifhw ffa10000.rkcif: No reserved memory region assign to CIF
[    2.612551] rkcif rkcif-mipi-lvds: rkcif driver version: v00.01.0a
[    2.612683] rkcOK
if rkcif-mipi-lvds: attach to cif hw node
[    2.612698] rkcif rkcif-mipi-lvds: failed to get dphy hw node
[    2.612728] rkcif rkcif-mipi-lvds: rkcif wait line 0
[    2.612745] : terminal subdev does not exist
[    2.612802] : terminal subdev does not exist
[    2.612813] : terminaStarting ntpd: l subdev does not exist
[    2.612822] : terminal subdev does not exist
[    2.612833] : get_remote_sensor: video pad[0] is null
[    2.612843] : rkcif_update_sensor_info: stream[0] get remote sensor_sd failed!
[    2.612854] : get_remote_sensor: video pad[0] is null
[    2.612861] : rkcif_update_sensor_info: stream[0] get remote sensor_sd failed!
[    2.612871] : get_remote_sensor: video pad[0] is null
[    2.612879] : rkcif_update_sensor_info: stream[0] get remote sensor_sd failed!
[    2.612887] : get_remote_sensor: video pad[0] is null
[    2.612895] : rkcif_update_sensor_info: stream[0] get remote sensor_sd failed!
[    2.628877] rkcif rkcif-mipi-lvds: No memory-region-thunderboot specified
[    2.634612] rkcif rkcif-mipi-lvds: Entity type for entity rockchip-mipi-csi2 was not initialized!
[    2.634648] rockchip-mipi-csi2: Async registered subdev
[    2.634660] rockchip-mipi-csi2: probe success, v4l2_dev:rkcif-mipi-lvds!
[    2.692496get] allrkisp
_hw ffa00000.rkisp: is_thunderboot: 0
[    2.692541] rkisp_hw ffa00000.rkisp: max input:0x0@0fps
[    2.692555] rkisp_hw ffa00000.rkisp: Missing rockchip,grf property
[    2.693952] rkisp_hw ffa00000.rkisp: get sram size:258048
[    2.693975] rkisp_hw ffa00000.rkisp: no iommu attached, using non-iommu buffers
[    2.693988] rkisp_hw ffa00000.rkisp: No reserved memory region. default cma area!
[    2.696941] rkisp rkisp-vir0: rkisp driver version: v02.00.00
[    2.698631] rkisp rkisp-vir0: Entity type for entity rkisp-isp-subdev was not initialized!
[    2.733626] rockchip-csi2-dphy-hw ff3e8000.csi2-dphy-hw: csi2 dphy hw probe successfully!
[    2.758970] rockchip-csi2-dphy csi2-dphy0: csi2 dphy0 probe successfully!
[    2.807430] sc4336 4-0030-1: driver version: 00.01.01
[    2.807782] sc4336 4-0030-1: Failed to get reset-gpios
[    2.808139] sc4336 4-0030-1: could not get default pinstate
[    2.808167] sc4336 4-0030-1: could not get sleep pinstate
[    2.808313] sc4336 4-0030-1: supply avdd not found, using dummy regulator
[    2.811937] sc4336 4-0030-1: supply dovdd not found, using dummy regulator
[    2.812064] sc4336 4-0030-1: supply dvdd not found, using dummy regulator
[    2.827234] sc4336 4-0030-1: Unexpected sensor id(00cc41), ret(0)
[    2.850500] sc3336 4-0030: driver version: 00.01.01
[    2.850696] sc3336 4-0030: Failed to get reset-gpios
[    2.850897] sc3336 4-0030: could not get default pinstate
[    2.850917] sc3336 4-0030: could not get sleep pinstate
[    2.851026] sc3336 4-0030: supply avdd not found, using dummy regulator
[    2.852039] sc3336 4-0030: supply dovdd not found, using dummy regulator
[    2.852285] sc3336 g4etall
-0030: supply dvdd not found, using dummy regulator
[    2.866382] sc3336 4-0030: Detected OV00cc41 sensor
[    2.866456] rockchip-csi2-dphy csi2-dphy0: dphy0 matches m00_b_sc3336 4-0030:bus type 5
[    2.888893] rockchip-pinctrl pinctrl: pin gpio3-20 already requested by 4-0030; cannot claim for 4-0030-2
[    2.888930] rockchip-pinctrl pinctrl: pin-116 (4-0030-2) status -22
[    2.888944] rockchip-pinctrl pinctrl: could not request pin 116 (gpio3-20) from group mipi-refclk-out0  on device rockchip-pl
[    2.888956] sc530ai 4-0030-2: Error applying setting, reverse things back
[    2.888985] sc530ai: probe of 4-0030-2 failed with error -22
[    2.892256] rkcif rkcif-mipi-lvds: clear unready subdev num: 2
[    2.894589] rkcif-mipi-lvds: Async subdev notifier completed
[    2.896606] rkisp-vir0: Async subdev notifier completed
[    2.898080] rkisp rkisp-vir0: clear unready subdev num: 0
[    2.943450] rga: rga2, irq = 35, match scheduler
[    2.943953] rga: rga2 hardware loaded successfully, hw_version:3.3.87975.
[    2.943978] rga: rga2 probe successfully
[    2.945238] rga_iommu: IOMMU binding successfully, default mapping core[0x4]
[    2.947583] rga: Module initialized. v1.2.23
getall
[    3.058852] mpp_vcodec: loading out-of-tree module taints kernel.
[    3.078525] mpp_vcodec: init new
[    3.078749] mpp_service mpp-srv: 3760314f author: Zhihua Wang 2023-01-12 [vcodec]: check chan create when destroy
[    3.078765] mpp_service mpp-srv: probe start
[    3.083363] mpp_rkvenc_540c ffa50000.rkvenc: probing start
[    3.085471] mpp_rkvenc_540c ffa50000.rkvenc: probing finish
[    3.085996] mpp_vepu_pp ffa60000.rkvenc-pp: probe device
[    3OK
.087597] mpp_vepu_pp ffa60000.rkvenc-pp: shared_rst_a_pp is not found!
[    3.087624] vepu_pp_init:528: No aclk reset resource define
[    3.087637] mpp_vepu_pp ffa60000.rkvenc-pp: shared_rst_h_pp is not found!
[    3.087646] vepu_pp_init:531: No hclk reset resource define
[    3.089028] mpp_vepu_pp ffa60000.rkvenc-pp: probing finish
[    3.089353] mpp_service mpp-srv: probe success
[    3.142027] RKNPU ff660000.npu: RKNPU: rknpu iommu device-tree entry not found!, using non-iommu mode
[    3.144419] RKNPU ff660000.npu: RKNPU: Initialized RKNPU driver: v0.8.2 for 20220829
[    3.144556] RKNPU ff660000.npu: dev_pm_opp_set_regulators: no regulator (rknpu) found: -19
getall
Starting sshd: rmmod: can't unload module 'sc530ai': No such file or directory
getall
sc3336                  9940  1 
[    3.391964] rockit_load start
/
insmod_ko.sh: line 78: /oem/usr/ko/insmod_wifi.sh: not found
ln: /usr/www/userdata: No such file or directory
ln: /usr/www/usb0: No such file or directory
getall
ln: /usr/www/sdcard: No such file or directory
sc3336                  9940  1 
getall
OK
Starting telnetd: deac78ead81e5b4c211d690607e01c39
OK
[    3.408321] rockit_load end
[    3.723649] rk_gmac-dwmac ffa80000.ethernet eth0: PHY [stmmac-0:02] driver [RK630 PHY] (irq=POLL)
[    3.724127] dwmac4: Master AXI performs any burst length
[    3.724163] rk_gmac-dwmac ffa80000.ethernet eth0: No Safety Features support found
[    3.724185] rk_gmac-dwmac ffa80000.ethernet eth0: PTP not supported by HW
[    3.724527] rk_gmac-dwmac ffa80000.ethernet eth0: configuring for phy/rmii link mode
getall
udhcpc: started, v1.36.1
/etc/init.d/S50usbdevice: line 144: can't open : no such file
Debug: configfs_init
getall
getall
udhcpc: broadcasting discover
[    4.174808] file system registered
mkdir: can't create directory '/sys/kernel/config/usb_gadget/rockchip/functions/mtp.gs0': No such file or directory
[    4.224769] using random self ethernet address
[    4.224812] using random host ethernet address
getall
mkdir: can't create directory '/sys/kernel/config/usb_gadget/rockchip/functions/acm.gs6': No such file or directory
[    4.265288] Mass Storage Function, version: 2009/09/11
[    4.265517] LUN: removable file: (no medium)
getall
[    4.454614] read descriptors
[rkipc.c][main]:rkipc_ini_path_ is (null), rkipc_iq_file_path_ is /oem/usr/share/iqfiles, rkipc_log_level is 2
[param.c][rk_param_init]:g_ini_path_ is /userdata/rkipc.ini
[    4.454841] read strings
[rockiva.c][rkipc_rockiva_init]:begin
[network.c][rk_net_proc]:Creat rk_net_proc thread!
[network.c][ntp_client_thread]:refresh_time_s is 60, ntp_server is 119.28.183.184
getall
[rockiva.c][rkipc_rockiva_init]:ROCKIVA_BA_Init success
create rknn_list success
[rockiva.c][rkipc_rockiva_init]:end
[isp.c][rk_isp_init]:g_iq_file_dir_ is /oem/usr/share/iqfiles
[isp.c][rk_isp_init]:cam_id is 0, hdr_mode is close, scenario is normal
rkaiq log level ff0
getall
[    4.700151] stream_cif_mipi_id0: s_power 1, entity use_count 1
[isp.c][sample_common_isp_init]:ID: 0, sensor_name is m00_b_sc3336 4-0030, iqfiles is /oem/usr/share/iqfiles
[isp.c][sample_common_isp_init]:main_scene is normal, sub_scene is day
[isp.c][sample_common_isp_init]:00:00:04.713425: rk_aiq_uapi2_sysctl_preInit_scene begin
[isp.c][sample_common_isp_init]:00:00:04.721228: rk_aiq_uapi2_sysctl_preInit_scene over
[    4.700964] stream_cif_mipi_id0: s_power 0, entity use_count 0
getall
[    4.972363] stream_cif_mipi_id0: s_power 1, entity use_count 1
[    4.974992] stream_cif_mipi_id0: open video, entity use_countt 2
[    4.975313] stream[_cisp.c][sample_common_isp_init]:00:00:04.977843: rk_aiq_uapi2_sgetall
ifysctl_init over
_mipi_id1: open video, entity use_countt 1
[isp.c][sample_common_isp_run]:00:00:05.015251: rk_aiq_uapi2_sysctl_prepare succeed
[    5.025670] rkisp rkisp-vir0: first params buf queue
[isp.c][sample_common_isp_run]:00:00:05.025669: rk_aiq_uapi2_sysctl_start succeed
getall
failed to open /sys/class/pwm/pwmchip3/export
[isp.c][rk_isp_set_light_strength]:pwm3 init failed -2
[isp.c][rk_isp_set_blc_ste blance is auto, not support set gain
[isp.c][rk_isp_set_white_blance_green]:white blance is auto, not support set gain
[isp.c][rk_isp_set_white_blance_blue]:white blance is auto, not support set gain
rockit log path (null), log_size = 0, can use export rt_log_path=, export rt_log_size= change
log_file = (nil) 
RTVersion        00:00:05-188 {dump              :064} ---------------------------------------------------------
RTVersion        00:00:05-205 {dump              :065} rockit version: git-8cb4d25b8 Tue Feb 28 11:12:39 2023 +0800
RTVersion        00:00:05-216 {dump              :066} rockit building: built- 2023-02-28 15:23:19
RTVersion        00:00:05-224 {dump              :067} ---------------------------------------------------------
rockit default level 4, can use export rt_log_level=x, x=0,1,2,3,4,5,6 change
(null)           00:00:05-243 {read_log_level    :093} text is all=4
(null)           00:00:05-249 {read_log_level    :095} module is all, log_level is 4
(null)           00:00:05-259 {monitor_log_level :144} #Start monitor_log_level thread, arg:(nil)
RTIsp3x          00:00:05-278 {ispInitDevice     :208} sensor name = m00_b_sc3336 4-0030
RTIsp3x         getall
 00:00:05-281 {ispInitDevice     :211} sensor_index = 0
RTIsp3x          00:00:05-294 {ispInitDevice     :208} sensor name = m00_b_sc3336 4-0030
RTIsp3x          00:00:05-298 {ispInitDevice     :211} sensor_index = 0
[video.c][rk_video_init]:enable_jpeg is 1, enable_venc_0 is 1, enable_venc_1 is 1, enable_rtsp is 1, enable_rtmp is 0
RKViDev          00:00:05-321 {vi_set_dev_attr   :440} VI_DEV_ATTR_S all parameter reserved
[INFO  rtsp_demo.c:280:rtsp_new_demo] rtsp server demo starting on port 554
[DEBUG rtsp_demo.c:480:rtsp_new_session] add session path: /live/0
[DEBUG rtsp_demo.c:480:rtsp_new_session] add session path: /live/1
rtsp streamq_alloc size is 1753484
rtsp streamq_alloc size is 1753484
  === VI ATTRS INFO: ===  
        devId  :      0
        chnId  :      0
        buffcnt:      0
        buffSize:     0
        width:        0
        height:       0
        Maxwidth:     0
        Maxwidth:     0
        streaming:    0
RKViChn          00:00:05-371 {prepareRuntime    :334} ---------------------------------------------------------
RKViChn          00:00:05-380 {prepareRuntime    :336} vi version: 1.86, name:vvi
RKViChn          00:00:05-388 {prepareRuntime    :337} rockit-ko version: vmpi:fb2eed2be49e
RKViChn          00:00:05-396 {prepareRuntime    :338} rockit-ko building: -2023-02-09-11:04:49
RKViChn          00:00:05-404 {prepareRuntime    :339} ---------------------------------------------------------
RKViChn          00:00:05-427 {prepareRuntime    :358} mb pool create success, MBCnt= 2
[video.cgetall
][rkipc_pipe_0_init]:set vi channel wrap line: 324, wrapBuffSize = 1119744
[    5.273923] vsys dev o[network.c][rk_network_get_cable_state]:read Cable stapen 26
[    5.442419] usb0: HOST MAC 7a:5d:02:a4:te
72:ab
[    5.442450] usb0: MAC d2:a8:17:cf:2b:0f
cmpi             00:00:05-454 {updateWrapLine    :1643} tmp wrap_line: 324, cur wrap_line: 324, cur_w: 2304, cur_h: 1296, max_r4
etwork.c][rk_network_get_cable_state]:
[usb0cmpi             00:00:05-470 {createRuntime     :542} [WRAP MODE]:set wrap buffer cnt = 2, wrap buff size = 1119744
] link down
RTIsp3x          00:00:05-492 {ispInitDevice     :208} sensor name = m00_b_sc3336 4-0030
RTIsp3x          00:00:05-496 {ispInitDevice     :211} sensor_index = 0
RTDeviceV4L2     00:00:05-506 {open              :138} open video name(/dev/video11)
[network.c][rk_network_get_cable_state]:read Cable state
RKViChn          00:00:05-517 {setFrameRate      :1153} [vi] dev(0) ch(0) illegal param s32SrcFrameRate(0) s32DstFrameRate(0)
[network.c][rk_network_get_cable_state]:
[usb0] link down
RTDeviceV4L2     00:00:05-536 {ispCameraInfo     :549} current device:/dev/video11 isn't compatible(cap:0x84201000) device,memo0
RTDeviceV4L2     00:00:05-554 {ispInitFormat     :726} ioctl VIDIOC_S_FMT OK
RKViChn          00:00:05-556 {start             :[    5.559565] rkisp queue buf done
[    813} =========== vi Start startRuntime ===========
RTDeviceV4L2     00:00:05-570 {ispStreamOn       :440} do ispStreamOn start
5.565642] dwc3 ffb00000.usb: device reset
[    5.g58etall
0929] rkisp-vir0: wrap_line mode can not set the mirror
[    5.581368] rkisp_hw ffa00000.rkisp: set isp clk = 198000000Hz
[    5.581455] rkcif-mipi-lvds: sditf_reinit_modRTDeviceV4L2     00:00:05-598 {ispStreamOn       :493} do ie, modspStreamOn donm
ode->name rkisp-vir0, link_mode 1
[    5.581487]RKVencChannel    00:00:05-612 {VencInvoke        :139} venc get_rc_param invoke error: ctx->hw 0x234de0, ctx->hw_!
 rkincChannel    00:00:05-624 {getRcParam        :2350} return the user setting value on failure to get rc param from mpp fail.
sp-vir0: flip not support width wrap function
[    5.583526] rkcif-mipi-lvds: stream[0] start streaming
 6fd142d9, sd_name:rockchip-csi2-dphy00000.mipi-csi2: stMpiAdapterEncode 00:00:05-650 {ma_encode_create  :1ream on, src_sd:653}0
[    5.583743] rockchip-mipi-csi2 ffa20000.mipi-c
si2: stream ON
[    5.583799] rockchip-csi2-d45] rockchip-csi2-dphy csi2-dphy0: csi2_dphy_s_stream stream on:1, dphy0
[    5.677922] mpp_vcodec: 44: num_chan = 0
[    5.678761] mpp_vcodec: 368: attr->max_width = 2304, attr->max_height = 1296
[    5.682879] dwc3 ffb00000.usb: device rese  === VI ATTRS INFO: ===  
        devId  :      0
        chnId  :      0
        buffcnt:      0
        buffSize:     0t
[    5.694575]
 mpp_vc width:        0
        height:       0
        Maxwidth:     0
        Maxwidth:     0odec: 103: chan_entry->handle d1c55faf, enc d1
        streaming:    0getall
c55faf 
[    5.703727] 755: MPP
_RKViChn          00:00:05-734 {prepareRuntime    :334} ---------------------------------------------------------
RKViChn          00:00:05-744 {prepareRuntime    :336} vi version: 1.86, name:vvi
RKViChn          00:00:05-751 {prepareRuntime    :337} rockit-ko veENC_SET_CFG in 
rsion: vmpi:fb2eed2be49e
RKViChn          00:00:05-761 {pr[    5.703781] 524: MPP_ENC_SET_RC_CFG bps 11197440 [104epareRuntime    :338} rockit-ko buildi9
[network.c][rk_network_get_cable_state]:read Cable state
 [30:3ViChn          00:00:05-780 {prepareRuntime    :0 : 118972339} -------------80] f---------------------------------ps------
0] gop 60
[    5.703800RKViChn         ] h2 00:00:05-793 {pr65e_proc_prep_cfg:414: MPP_ENC_SET_PREP_CFG w:h [2304:12epareRuntime    :96] ]
[    5.703831] 271: send header358} mb pool crea fte success, MBCntor set cfg change input/fo= 4
MpiAdapterEncode 00:00:05-814 {ma_encode_get_pack:rma1978} mat 
[    5.705123]p ptr: 0xa3d74000
[network.c][rk_network_get_cable_statecmpi             00:00:05-818 {createRuntime     : 75546} [non-WRAP MO5: MPP_EDE]: buff s6
]:
[NC_SET_CFG in 
[    5.705156] 5eth0] link up
24: MPP_ENC_SET_RC_CFG bps 2048[DEBUG utils.c:1000 [1986:rtsp_codec_dat20000 : 2176000] fps [30:30] gop 50
[    5.705169] 271: send header fora_parse_from_user set c_h265] vps 23fg change rc_mode/fps/gop
[    5.706
068] [DEBUG utils.c:194:rtsp_codec_data_parse_from_user_h265] sps 43
[DEBUG utils.c:2755: MPP_ENC_SET_CFG in 
[    5.706152] 524: M02:rtsp_codec_datPPa_parse_from_user_ENC_SET_RC_CFG bps 2048000 [1920000 : 2176000] fps [25:25] gop 5_h2659
RTIsp3x         getall
 00:00:05-858 {is0
pInitDevice     :208} sensor name = m00_b_sc3336 4-0030[    5.706174] 271: send header for set cfg change rc_mode/fps/gop
[    5.707632] 755: MPP_ENC_SET_CFG i

[   RTIsp3x          5.707 00:00:05-901 {is685] 524: MPP_ENC_SET_RC_CpInitDevice     :211} sensor_index = 0FG bps 2048000 [19200
00] fps [25:25] gop 50
[    5.707709] 271: send header for set cfg change rc_mode/fps/gop
[    5.707853] 755: MPP_ENC_SET_CFG in 
[    5.707882] 524: MPP_ENC_SET_RC_CFG bps 2048000 [1920000 : 2176000] fps [25:25] gop 50
[    5.707899] 271: send header for set cfg change rc_mode/fps/gop
G in 5.709496] 755: MPP_ERTDeviceV4L2    NC 00:00:05-941 {op_Sen              :ET_CF138} open video name(/dev/video12)
[    5.709520] 524: MPP_ENC_SET_RC_CFG bps 2048000 [1920000 : 2176000] fps [25:25] gop 50
[    5.709535] 271: send header for set c
fg chaRKViChn         nge rc_mode/fps/gop
[    5.728202] 1062: mode cbr bps [1 00:00:05-963 {se920000tFrameRate      ::2048000:2176000] fps fix [25/1] 1153} [v-> fix [25]
s/Full 767480] lrk_gmaclegal param s32S-dwmarcFrameRate(0) s3c ffa80000.ethernet2DstFrameRate(0)eth0: Link is Up - 100Mbp[0m
- flow control rxRTDeviceV4L2    /tx
 00:00:05-994 {isc3 ffb00000.usb: device reset
[    5.8pCameraInfo     :62988] dwc3 ffb00000.usb: device reset
549} current device:/dev/video12 isn't compatible(cap:0x84201000) device,memoryType:4, retry:0
RTDeviceV4L2     00:00:06-030 {ispInitFormat     :726} ioctl VIDIOC_S_FMT Ogetall
K
RKViChn          00:00:06-034 {start             :813} =========== vi Start startRuntime ===========
RTDeviceV4L2     00:00:06-053 {ispStreamOn       :[    6.037196] rkisp queue buf done
[    6.065588] dwc3 ffb00000.usb: device reset
440} do ispStreamOn start
RTDeviceV4L2     00:00:06-070 {ispStreamOn       :493} do ispStreamOn done
Killed
RKVencChannel    00:00:06-100 {VencInvoke        :139} venc get_rc_param invoke error: ctx->hw 0x23e1c8, ctx->hw_create 0!
RKVencChannel    00:00:06-106 {getRcParam        :2350} return the user setting value on failure to get rc param from mpp fail.
MpiAdapterEncode 00:00:06-132 {ma_encode_create  :1653} ringbuf buf_size 204800
[    6.072384] rkisp-vir0: wrap_line mode can not set the mirror
[    6.139683] mpp_vcodec: 44: num_chan = 1
[    6.140014] mpp_vcodec: 368: attr->max_width = 704, attr->max_height = 576
[    6.142229] mpp_vcodec: 103: chan_entry->handle f9440017, enc f9440017 
[    6.146615] 755: MPP_ENC_SET_CFG in 
[    6.146747] 524: MPP_ENC_SET_RC_CFG bps 1520640 [1425600 : 1615680] fps [30:30] gop 60
[    6.146782] h265e_proc_prep_MpiAdapterEncodecfg:414: MPP_ENC_SET_PREP_CFG w:h [704:576] s 00:00:06-172 {matride_encode_creatl
:576]
put/format 96] 271: send header for set cfngbuf buf_size 10g change in48576
[    6.151358] 755: MPP_ENC_SET_CFG in 
[    6.151486] 524: MPP_ENC_SET_RC_CFG bps 512000 [480000 : 544000] fps 
MpiAdapterEncode 00:00:06-204 {ma[30:30] gop 50
[    6.151508] 271: send header for set cfg change rc_mo_encode_get_pack:1978} made/fps/gop
[    6.152490] 755: MPP_ENC_SET_CFG in 
[    6.152529] 524: MPP_ENC_SET_RC_CFG bps 512000 [480000 : 544000] fps [30:30] gop 50
s/gop6.152547] 271: send header for set cfg change rc_mop ptr: 0xa3b10000de/fp
[    6.155256] 755: MPP_ENC_SET_CFG in 
[    6.155295] 524: MPP_ENC_SET_RC_CFG bps 512000
route: SIOCDELRT: No such process
 [480000 : 544000] fps [30:30] gop 50
[    [DEBUG utils.c:186:rtsp_codec_dat6.155317] 271: send header for set cfg change rc_mode/fps/gop
[    6.158044] 755: MPP_ENC_SET_CFG in 
[    6.158093] 524: MPP_ENC_SET_RC_CFG bps 512000 [480000 : 544000] fps [30:30] gop 50
[    6.158118] 271: send header for set cfg change rca_parse_from_user_mode/fps/gop
[    6.164733] 755: MPP_ENC_SET_CFG in 
[    6.164766] 524: MPP_ENC_SET_RC_CFG bps 512000 [480000 : 544000] fps [30:30] gop 50
[    6.164783] 271: send_h265] vps 23 header for set c
fg change rc[DEBUG utils.c:1_mode/fps/gop
[    6.199951] 1062: mode cbr bps [480000:512000:544000] fps fix [94:rtsp_codec_dat30/1] -> fix [30/1] gop i [50] v [0]
[    6.210409] mpp_vcodec: 44: num_chan = 2
[    6.2200a_parse_from_user_h265] sps 43
  === VI ATTRS INFO: ===  
entry->handle ec 00:00:06-319 {ma_encode_get_pack:1978} ma49] mpp_pvcodec ptr: 0xa3710000: 103: chan_
        devId  :      0
        chnId  :      0getall

        32de74, enc ec3buffcnt:      02de74 
[    6.230291] 755: MPP_ENC_SET_CFG in
current_ip = 172.32.0.70
TARGET_IP = 172.32.0.93

[       buffSize:     06.230347] 524: MP
[DEBUG utils.c:202:rtsp_codec_data_parse_from_userP_ENC_SET_RC_CFG bps 111974_h265] pps 940 [10497600 : 11897280] fps [30:30] g0
[    6
        width:        0.230982] 
        height:       0755: 
        Maxwidth:     0MPP_ENC_SET_CFG in 
[    6.231017] 524: MPP_ENC_SET_R
C_CFG bps 1119744       Maxwidth:     00 [10497
600 : 118       streaming:    097280] fps
 [30:30] gop 0
[ RKViChn            6.231206 00:00:06-378 {prepareRuntime    :334} ------------] 755: MPP_ENC_SET_CFG in 
[    6.231225] 524: MPP_ENC_SET_RC_CFG bps 11197440 [10497600 : 11897280] fps [30:30] gop 0
[    6.252410] 755: MPP_ENC_SET_CFG in 
[    6.252539] 524: MPP_ENC_SET_RC_CFG----------------- bps -----------------11197440 [10497600 : 11897280]-----------
RKViChn          00:00:06-411 {pr fps [30:30] gop 0
[    6.273443] dwc3 ffb00000.epareRuntime    :usb: device reset
336} vi version: 1.86, name:vvi
RKViChn          00:00:06-428 {prepareRuntime    :337} rockit-ko version: vmpi:fb2eed2be49e
RKViChn          00:00:06-433 {prepareRuntime    :338} rockit-ko building: -2023-02-09-11:04:49
RKViChn          00:00:06-450 {prepareRuntime    :339} ---------------------------------------------------------
RKViChn          00:00:06-460 {prepareRuntime    :358} mb pool create success, MBCnt= 3
cmpi             00:00:06-468 {cr[    6.481790] dwc3 ffb00000.usb: device reset
getall
eateRuntime     :546} [non-WRAP MODE]: buff size = 290304
RTIsp3x          00:00:06-491 {ispInitDevice     :208} sensor name = m00_b_sc3336 4-0030
RTIsp3x          00:00:06-496 {ispInitDevice     :211} sensor_index = 0
udhcpc: started, v1.36.1
RTDeviceV4L2     00:00:06-509 {open              :138} open video name(/dev/video13)
RKViChn          00:00:06-521 {setFrameRate      :1153} [vi] dev(0) ch(2) illegal param s32SrcFrameRate(0) s32DstFrameRate(0)
RTDeviceV4L2     00:00:06-533 {ispCameraInfo     :549} current device:/dev/video13 isn't compatible(cap:0x84201000) device,memo0
RTDeviceV4L2     00:00:06-544 {ispInitFormat     :726} ioctl VIDIOC_S_FMT OK
RKViChn          00:00:06-552 {start             :813} =========== vi Start startRuntime ===========
RTDeviceV4L2     00:00:06-567 {ispStreamOn       :440} do ispStreamOn start
[    6.555483] rkisp queue buf done
RTDeviceV4L2     00:00:06-577 {ispStreamOn       :493} do ispStreamOn done
[    6.575129] rkisp-vir0: wrap_line mode can not set the mirror
[    6.597396] vepu_pp_create_chn 0
cmpi             00:00:06-608 {mb_create_pool    :222} allocated buffer(this=0x254738, data=0xa3259000, size=746496, id=188)
cmpi             00:00:06-620 {attachToChn       :480} The channel attr attach mapid: 0x0.
getall
cmpi             00:00:06-677 {mb_get_buffer_by_i:422} allocated buffer(this=0x26d590, data=(nil), size=0, id=-1)
RKViChn          00:00:06-689 {getFrameRuntime   :1031} -------------------------------vviBuf->buf_size: 290816
[video.c][rkipc_ivs_get_results]:OD flag:1
[audio.c][rkipc_ai_init]:aiAttr.u8CardName is #Starosd_time_server thread, arg:(nil)
hw:0,0udhcpc: broadcasting discover

[audio.c][rkipc_audio_vqe_init]:stAiVqeConfig.aCfgFile = udhcpc: broadcasting select for 192.168.40.202, server 192.168.40.1
/oem/usr/share/vqefiles/config_aivqe.jsonudhcpc: lease of 192.168.40.202 obtained from 192.168.40.1, lease time 14400

[osd.c][osd_time_server]:osd_time_id is [    6.71
45179] dwc3 f[fb000osd.c00.usb: ][osd_time_serverdevice reset
]:osd_data.text.font_color is fff799
RKAiChn          00:00:06-752 {setAedAttr        :789} pstAedConfig = cmpi             00:00:06-759 {mb_get_buffer_by_i:422} al)
(nil), set mAedEnable = false
geta[osd.c][osd_time_server]:osd_data.text.format is ll
24hour CHR-YYYY-MM-DD
RKAiChn          00:00:06-787 {setBcdAttr        :852} pstBcdConfig = rga_api version 1.7.3_[6]
(nil), set mBcdEnable = false
RKViChn          00:00:06-811 {getFrameRuntime   :1031} -------------------------------vviBuf->buf_size: 290816
RKAiChn          00:00:06-824 {setBuzAttr        :915} pstBuzConfig = (nil), set mBuzEnable = false
luckfox : set usb0 ip
RKAiChn          00:00:06-835 {setGbsAttr        :979} pstGbsConfig = (nil), set mGbsEnable = false
[    6.865501] dwc3 ffb00000.usb: device reset
RKAiChn          00:00:06-866 {prepareGraph      :221} check enabled - vqe:1 aed:0 bcd:0 buz:0 gbs:0
cmpi             00:00:06-892 {mb_create_pool    :222} allocated buffer(this=0x273650, data=0xa2db4000, size=65536, id=190)
cmpi             00:00:06-909 {mb_create_pool    :222} allocated buffer(this=0x2705f8, data=0xa2da400getall
0, size=65536, id=191)
deleting routers
cmpi             00:00:06-940 {attachToChn       :480} The channel attr attach mapid: 0x0.
cmpi             00:00:07-003 {attachToChn       :480} The channel attr attach mapid: 0x0.
cmpi             00:00:07-011 {attachToChn       :480} The channel attr attach mapid: 0x0.
[    7.073530] dwc3 ffb00000.usb: device reset
172.32.0.93
usb0 config success
getall
cmpi             00:00:07-157 {mb_get_buffer_by_i:422} allocated buffer(this=0x26cc88, data=(nil), size=0, id=-1)
RKViChn          00:00:07-171 {getFrameRuntime   :1031} -------------------------------vviBuf->buf_size: 290816
RTFlowGraph      00:00:07-187 {setMaxInputStreamQ:287} ai: Illegal operation, no input port exists.
getall
Starting SMB services: [    7.282026] dwc3 ffb00000.usb: device reset
adding dns 172.16.5.2
getall
[    7.489576] dwc3 ffb00000.usb: device reset
getall
(null)           00:00:07-587 {dlsymSkv          :103} load skv dynamic symbols: 0x253da8
RTNodeAFilterSkv 00:00:07-591 {open              :157} current skv config is: 1
LOG (rkaudio_preprocess_init(): ,107), out_size is 256
LOG (skv_aec_state_init(): ,254), AEC-RELEASE-VERSION 2.1,RELEASE DATE 2022-12-09

LOG (skv_aec_state_init(): ,259), This AEC version is used for no more than 2 microphones!

getall
LOG (skv_preprocess_state_init(): ,614), BEAMFORM-RELEASE-VERSION 2.1,RELEASE DATE 2022-12-19

LOG (skv_preprocess_state_init(): ,623), This Beamform version is only used for 2 microphones!

rtsp streamq_alloc size is 59884
rtsp streamq_alloc size is 59884
[[    7.761599] dwc3 ffb00000.usb: device reset
server.c][rkipc_server_thread]:#Start rkipc_server_thread thread, arg:(nil)
[storage.c][rkipc_storage_set_dev_attr]:mount path is /userdata, dev_path is /dev/ubi5_0
[storage.c][rkipc_storage_para_init]:DevAttr set:  AutoDel--1, FreeSizeDel--500~1000, Path--/userdata/video0, Limit--300
[storage.c][rkipc_storage_para_init]:DevAttr set:  AutoDel--1, FreeSizeDel--500~1000, Path--/userdata/video1, Limit--300
[storage.c][rkipc_storage_para_init]:DevAttr set:  AutoDel--1, FreeSizeDel--500~1000, Path--/userdata/video2, Limit--300
[storage.c][rkipc_storage_auto_delete_init]:mountpath:/userdata,devpath:,devtype:,devattr:
getall
[storage.c][rkipc_storage_file_scan_thread]:/userdata, /dev/ubi5_0, ubifs, rw,relatime,assert=read-only,ubi=5,vol=0
[storage.c][rkipc_storage_file_scan_thread]:[00:00:07.861813] i is 0, before rkipc_storage_read_file_list
[storage.c][rkipc_storage_file_scan_thread]:[00:00:07.869392] i is 0, after rkipc_sto[    7.887366] dwc3 ffb00000.usb: device rt
rage_read_file_list
[storage.c][rkipc_storage_file_scan_thread]:[00:00:07.893789] i is 1, before rkipc_storage_read_file_list
[storage.c][rkipc_storage_file_scan_thread]:[00:00:07.904382] i is 1, after rkipc_storage_read_file_list
[storage.c][rkipc_storage_file_scan_thread]:[00:00:07.911375] i is 2, before rkipc_storage_read_file_list
[storage.c][rkipc_storage_file_scan_thread]:[00:00:07.945398] i is 2, after rkipc_storage_read_file_list
[storage.c][rkipc_storage_file_scan_thread]:total_size = 4584, free_size = 4548
getall
[storage.c][rkipc_storage_file_monitor_thread]:pHandle->dev_sta.mount_status is 4
[    8.089598] dwc3 ffb00000.usb: device reset
getall
getall
[    8.297503] dwc3 ffb00000.usb: device reset
getall
[    8.505420] dwc3 ffb00000.usb: device reset
getall
[    8.713800] dwc3 ffb00000.usb: device reset
getall
getall
getall
getall
getall
[    9.350539] dwc3 ffb00000.usb: device reset
[    9.464897] dwc3 ffb00000.usb: device reset
getall
[    9.588598] dwc3 ffb00000.usb: device reset
getall
getall
[    9.793415] dwc3 ffb00000.usb: device reset
getall
[   10.002380] dwc3 ffb00000.usb: device reset
getall
[   10.209630] dwc3 ffb00000.usb: device reset
getall
getall
[   10.417522] dwc3 ffb00000.usb: device reset
l
[   10.541451] dwc3 ffb00000.usb: device reset
getall
[   10.745400] dwc3 ffb00000.usb: device reset
getall
[   10.953326] dwc3 ffb00000.usb: device reset
getall
getall
[   11.162407] dwc3 ffb00000.usb: device reset
getall
[   11.434255] dwc3 ffb00000.usb: device reset
getall
[   11.499877] dwc3 ffb00000.usb: device reset
getall
[   11.705404] dwc3 ffb00000.usb: device reset
getall
getall
[   11.913327] dwc3 ffb00000.usb: device reset
getall
[   12.122219] dwc3 ffb00000.usb: device reset
getall
[   12.329599] dwc3 ffb00000.usb: device reset
getall
getall
getall
getall
[   12.965364] dwc3 ffb00000.usb: device reset
[   13.083381] dwc3 ffb00000.usb: device reset
getall
getall
[   13.300676] dwc3 ffb00000.usb: device reset
[   13.366603] dwc3 ffb00000.usb: device reset
getall
getall
[   13.569407] dwc3 ffb00000.usb: device reset
getall
[   13.777314] dwc3 ffb00000.usb: device reset
getall
getall
[   13.986230] dwc3 ffb00000.usb: device reset
getall
[   14.193479] dwc3 ffb00000.usb: device reset
getall
[   14.307810] dwc3 ffb00000.usb: device reset
[   14.372776] dwc3 ffb00000.usb: device reset
getall
[   14.577298] dwc3 ffb00000.usb: device reset
getall
getall
[   14.785235] dwc3 ffb00000.usb: device reset
getall
[   14.993306] dwc3 ffb00000.usb: device reset
getall
getall
[   15.265273] dwc3 ffb00000.usb: device reset
[   15.330562] dwc3 ffb00000.usb: device reset
getall
getall
[   15.529308] dwc3 ffb00000.usb: device reset
getall
getall
getall
getall
OK
Starting NMB services: [   16.202340] dwc3 ffb00000.usb: device reset
getall
[   16.269588] dwc3 ffb00000.usb: device reset
getall
[   16.473325] dwc3 ffb00000.usb: device reset
getall
[   16.682402] dwc3 ffb00000.usb: device reset
getall
getall
[   16.888996] dwc3 ffb00000.usb: device reset
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getgetall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
OK
getall
getall
getall

getall
getall
getall
getall
rm: can't remove '/tmp/.pin_diagram.txt': No such file or directory
getall
/usr/bin/luckfox-config: line 46: warning: command substitution: ignored null byte in input
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
Only Luckfox Pico Ultra /Luckfox Pico Ultra W support RGB
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
Complete configuration loading
Found ADC keys device: /dev/input/event0
getall
/root/main.py and /root/boot.py not exist ,pass...
OK
hwclock: can't open '/dev/misc/rtc': No such file or directory
RTC does not require time calibration

Welcome to luckfox pico
luckfox login: getall
Password: 
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
rogetall
ogetall
tgetall

getall
getall
getall
getall
getall
getall
getall
Login incorrect
luckfox login: getall
Password: 
getall
getall
lgetall
ugetall
ckgetall
getall
fogetall
xgetall

getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
Login incorrect
luckfox login: getall
Password: 
getall
getall
getall
getall
getall
getall
getall
rgetall
ogetall
ogetall
t
getall
getall
getall
getall
getall
getall
getall
getall
getall
Login incorrect
getall
getall
getall
getall
getall
getall

Welcome to luckfox pico
luckfox login: getall
Password: 
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
Login incorrect
luckfox login: getall
Password: 
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
getall
Login incorrect
luckfox login: getall
Password: 
getall
getall
getall
getall
getall
getall
Posted by 구차니

어우 개 한놈 빨고 뻗음

'개소리 왈왈 > 육아관련 주저리' 카테고리의 다른 글

아 몰라 또 질러 ㅋㅋㅋ  (0) 2026.08.31
피아노 줍줍  (0) 2026.08.30
개피곤  (0) 2026.08.29
와.. 설마 에어컨 고장?  (2) 2026.08.24
입추 그리고 시원해짐  (2) 2026.08.10
Posted by 구차니