Navigation

    全志在线开发者论坛

    • Register
    • Login
    • Search
    • Categories
    • Tags
    • 在线文档
    • 社区主页
    1. Home
    2. Popular
    Log in to post
    • All categories
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All Time
    • Day
    • Week
    • Month

    • 公告
    • 芯片
    •          T Series
    •          A Series
    •          V Series
    •          MR Series
    •          H/F/TV Series
    •          Wireless & Analog Series
    • Special
    •          创龙科技专区
    •          飞凌嵌入式专区
    •          爱搞机专区
    • Technical topics
    •          RTOS
    •          Linux
    •          GUI
    • Others
    •          代码下载问题专区
    •          编译和烧写问题专区
    •          其它全志芯片讨论区
    •          灌水区
    • A

      XR829的LPCLK
      Wireless & Analog Series • Posted at • allspace123

      0 Votes
      2 Replies
      1677 Views

      A Replied at

      @awwwwa 谢谢回复。所以XR829的LPCLK是可以接地的吧? 知道内部RC不准确,只要不影响WIFI工作就好。

      2
    • X

      T113 Tina上面增加配置了gstreamer之后,编译会报下面的错误
      编译和烧写问题专区 • Posted at • xiaoxiongsnail

      0 Votes
      2 Replies
      1454 Views

      D Replied at

      我找到了解决方案:

      在 gst1-omx Makefile(位于 t113-sdk/package/multimedia/gst1-omx)中,您需要将 t113 添加到 TARGET_BOARD_PLATFORM

      之前:
      ifeq ($(TARGET_BOARD_PLATFORM),$(filter $(TARGET_BOARD_PLATFORM), r16 r311 r58 r40 g102 r11 r7 r528))
      OMX_COMPILE_TOOL_CHAIN = arm-openwrt-linux
      endif

      之后:
      ifeq ($(TARGET_BOARD_PLATFORM),$(filter $(TARGET_BOARD_PLATFORM), r16 r311 r58 r40 g102 r11 r7 r528 t113))
      OMX_COMPILE_TOOL_CHAIN = arm-openwrt-linux
      endif

      2
    • M

      关于V851S的opencv问题
      V Series • Posted at • mysteryli

      0 Votes
      2 Replies
      1717 Views

      M Replied at

      但是patch中修改的文件,例如cap_v4l.cpp等
      我只能在out中找到他们
      0ac1d8f0-227f-4250-be9e-0da2bc8b9b43-image.png

      2
    • M

      yolov5部署,onnx-npu模型转换问题
      V Series • Posted at • masterlin

      0 Votes
      2 Replies
      1625 Views

      M Replied at

      @awwwwa 大佬您好,请问您有修复过这方面的经验吗,求分享😘

      2
    • D

      V851S Tina 5.0 SDK 无法使用文件锁的问题
      V Series • Posted at • dream

      0 Votes
      2 Replies
      1647 Views

      D Replied at

      @dream 同步最新的信息, 已经使用了 mutex 的方式,替换文件锁,可以解决 opkg remove 和 opkg list 等指令不能正常使用的问题,目前 opkg install 会出现段错误。

      原以为解决了文件锁,就能解决 opkg 不能使用的问题,没想到只解决了一半🙄

      *** libopkg\opkg_conf.c 2022-02-25 04:27:58.000000000 +0800 --- libopkg\opkg_conf.c 2024-03-03 14:20:36.000000000 +0800 *************** *** 19,30 **** --- 19,31 ---- #include <stdio.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <glob.h> #include <unistd.h> + #include <sys/mman.h> #include "opkg_conf.h" #include "pkg_vec.h" #include "pkg.h" #include "xregex.h" #include "sprintf_alloc.h" *************** *** 423,436 **** --- 424,452 ---- int opkg_conf_init(void) { pkg_src_list_init(&conf->pkg_src_list); pkg_dest_list_init(&conf->pkg_dest_list); pkg_dest_list_init(&conf->tmp_dest_list); nv_pair_list_init(&conf->arch_list); + + conf->mlock = mmap(NULL, sizeof(struct mt_lock), PROT_READ|PROT_WRITE, MAP_SHARED|MAP_ANON, -1, 0); + memset(conf->mlock, 0, sizeof(struct mt_lock)); + pthread_mutexattr_init(&conf->mlock->mutexattr); + pthread_mutexattr_setpshared(&conf->mlock->mutexattr, PTHREAD_PROCESS_SHARED); + pthread_mutex_init(&conf->mlock->mutex, &conf->mlock->mutexattr); return 0; + } + + static int my_lockf(int fd, int cmd, off_t len) + { + switch(cmd){ + case F_TLOCK: return pthread_mutex_trylock(&conf->mlock->mutex); + case F_ULOCK: return pthread_mutex_unlock(&conf->mlock->mutex); + } + return -22; } int opkg_conf_load(void) { int i, glob_ret; char *tmp, *tmp_dir_base, **tmp_val; *************** *** 498,510 **** lock_fd = creat(lock_file, S_IRUSR | S_IWUSR | S_IRGRP); if (lock_fd == -1) { opkg_perror(ERROR, "Could not create lock file %s", lock_file); goto err2; } ! if (lockf(lock_fd, F_TLOCK, (off_t) 0) == -1) { opkg_perror(ERROR, "Could not lock %s", lock_file); if (close(lock_fd) == -1) opkg_perror(ERROR, "Couldn't close descriptor %d (%s)", lock_fd, lock_file); lock_fd = -1; goto err2; --- 514,526 ---- lock_fd = creat(lock_file, S_IRUSR | S_IWUSR | S_IRGRP); if (lock_fd == -1) { opkg_perror(ERROR, "Could not create lock file %s", lock_file); goto err2; } ! if (my_lockf(lock_fd, F_TLOCK, (off_t) 0) == -1) { opkg_perror(ERROR, "Could not lock %s", lock_file); if (close(lock_fd) == -1) opkg_perror(ERROR, "Couldn't close descriptor %d (%s)", lock_fd, lock_file); lock_fd = -1; goto err2; *************** *** 573,585 **** hash_table_deinit(&conf->file_hash); hash_table_deinit(&conf->obs_file_hash); if (rmdir(conf->tmp_dir) == -1) opkg_perror(ERROR, "Couldn't remove dir %s", conf->tmp_dir); err3: ! if (lockf(lock_fd, F_ULOCK, (off_t) 0) == -1) opkg_perror(ERROR, "Couldn't unlock %s", lock_file); if (close(lock_fd) == -1) opkg_perror(ERROR, "Couldn't close descriptor %d (%s)", lock_fd, lock_file); if (unlink(lock_file) == -1) --- 589,601 ---- hash_table_deinit(&conf->file_hash); hash_table_deinit(&conf->obs_file_hash); if (rmdir(conf->tmp_dir) == -1) opkg_perror(ERROR, "Couldn't remove dir %s", conf->tmp_dir); err3: ! if (my_lockf(lock_fd, F_ULOCK, (off_t) 0) == -1) opkg_perror(ERROR, "Couldn't unlock %s", lock_file); if (close(lock_fd) == -1) opkg_perror(ERROR, "Couldn't close descriptor %d (%s)", lock_fd, lock_file); if (unlink(lock_file) == -1) *************** *** 652,664 **** pkg_hash_deinit(); hash_table_deinit(&conf->file_hash); hash_table_deinit(&conf->obs_file_hash); if (lock_fd != -1) { ! if (lockf(lock_fd, F_ULOCK, (off_t) 0) == -1) opkg_perror(ERROR, "Couldn't unlock %s", lock_file); if (close(lock_fd) == -1) opkg_perror(ERROR, "Couldn't close descriptor %d (%s)", lock_fd, lock_file); --- 668,680 ---- pkg_hash_deinit(); hash_table_deinit(&conf->file_hash); hash_table_deinit(&conf->obs_file_hash); if (lock_fd != -1) { ! if (my_lockf(lock_fd, F_ULOCK, (off_t) 0) == -1) opkg_perror(ERROR, "Couldn't unlock %s", lock_file); if (close(lock_fd) == -1) opkg_perror(ERROR, "Couldn't close descriptor %d (%s)", lock_fd, lock_file); *** libopkg\opkg_conf.h 2022-02-25 04:27:58.000000000 +0800 --- libopkg\opkg_conf.h 2024-03-03 14:20:05.000000000 +0800 *************** *** 20,31 **** --- 20,32 ---- typedef struct opkg_conf opkg_conf_t; extern opkg_conf_t *conf; #include <stdarg.h> #include <fnmatch.h> /* FNM_CASEFOLD */ + #include <pthread.h> #include "hash_table.h" #include "pkg_src_list.h" #include "pkg_dest_list.h" #include "nv_pair_list.h" *************** *** 39,50 **** --- 40,56 ---- /* In case the config file defines no dest */ #define OPKG_CONF_DEFAULT_DEST_NAME "root" #define OPKG_CONF_DEFAULT_DEST_ROOT_DIR "/" #define OPKG_CONF_DEFAULT_HASH_LEN 1024 + + struct mt_lock { + pthread_mutex_t mutex; + pthread_mutexattr_t mutexattr; + }; struct opkg_conf { pkg_src_list_t pkg_src_list; pkg_dest_list_t pkg_dest_list; pkg_dest_list_t tmp_dest_list; nv_pair_list_t arch_list; *************** *** 105,116 **** --- 111,125 ---- char *signature_ca_file; char *signature_ca_path; hash_table_t pkg_hash; hash_table_t file_hash; hash_table_t obs_file_hash; + + // replace file lock + struct mt_lock *mlock; }; enum opkg_option_type { OPKG_OPT_TYPE_BOOL, OPKG_OPT_TYPE_INT, OPKG_OPT_TYPE_STRING
      2
    • J

      Tina-linux f133-evb1 打包提示 ERROR: booto files are all invalid files, now exit
      MR Series • Posted at • Justyu666

      0 Votes
      2 Replies
      1140 Views

      J Replied at

      @awwwwa 大佬,我执行 mboot 的时候显示 boot0 和 uboot 都编译成功的,那是要怎么操作呢?

      2
    • Y

      请教t113 uboot cpu时钟怎么修改
      编译和烧写问题专区 • Posted at • yichen

      0 Votes
      2 Replies
      1658 Views

      Y Replied at

      @awwwwa 这儿改了也没用。
      我都测过了,即使一起改了sys_config.fex和uboot-board.dts里面的,仍然不起作用。

      我这个应该时韦老师的sdk搞得鬼,他给spl的clock.c里面强制写了个1008M,不受配置文件的控制了。

      2
    • Z

      板子启动时发生错误
      编译和烧写问题专区 • Posted at • ZiFeiYu

      0 Votes
      2 Replies
      841 Views

      Z Replied at

      @daizebin 那要怎么解决这个问题呢

      2
    • F

      Tina 添加tmux,fftw库
      MR Series • Posted at • fanhuacloud

      0 Votes
      2 Replies
      1595 Views

      F Replied at

      @lyg116 自带fbviewer的

      2
    • W

      关于T113的SDK下载问题
      代码下载问题专区 • Posted at • WD15365693548

      1 Votes
      2 Replies
      1476 Views

      H Replied at

      新版ubuntu就这样。
      报错已经说明了
      要安装python2就使用

      sudo apt-get install python2

      要安装python3就使用

      sudo apt-get install pyhton3

      要使用python这个执行名称,就安装python-is-python3,即将python链接到python3.

      2
    • Z

      H618安卓12电视盒子无法开机了
      H/F/TV Series • Posted at • zack84369982

      3 Votes
      2 Replies
      1216 Views

      M Replied at

      @zack84369982 请问你用的哪一个刷机软件?

      2
    • F

      T113-S3 Tplayer flac格式的音乐无法设置循环播放
      MR Series • Posted at • fanhuacloud

      0 Votes
      2 Replies
      873 Views

      F Replied at

      @lyg116 微信he1157173310

      2
    • D

      T113-S3 板子上用到PB2,PB3,PB4,PB5串口4和串口5 怎么配置才能用起来呢?
      MR Series • Posted at • damiaa

      0 Votes
      2 Replies
      1068 Views

      D Replied at

      @leomini5 谢谢 OK了

      2
    • Z

      只用的全志的板子,怎么才能往rootfs中添加文件
      Linux • Posted at • ZiFeiYu

      0 Votes
      2 Replies
      1165 Views

      K Replied at

      @awwwwa 如果存在同名文件,还是会被默认编译生成的文件覆盖,怎么解决呢?比如自定义 password

      2
    • Z

      将系统文件设置ext4格式,启动提示no filesystem could mount root
      Linux • Posted at • ZiFeiYu

      0 Votes
      2 Replies
      1261 Views

      Z Replied at

      @awwwwa 好的谢谢

      2
    • F

      851S相关资料
      其它全志芯片讨论区 • Posted at • flydream2008

      0 Votes
      2 Replies
      795 Views

      V Replied at

      请问tiny5.0Linux sdk如何获取?

      2
    • L

      PhoenixMC 下载链接
      A Series • Posted at • liker292

      1 Votes
      2 Replies
      1425 Views

      D Replied at

      yes. where is the latest version?

      2
    • L

      T113 usb0 acm cdc 无法使用 ttyGS0 直接卡主啦
      MR Series • Posted at • leomini5

      1 Votes
      2 Replies
      1716 Views

      X Replied at

      @leomini5 弄出来了麻烦共享出来给大伙做个参考呀,这样才能营造和谐社会嘛😁

      2
    • W

      请问一下,t113-i tina系统procd-init 怎么更换为busybox-init
      Linux • Posted at • wyljkl

      0 Votes
      2 Replies
      1226 Views

      F Replied at

      @vc915813805 签NDA会有5.0的tina

      2
    • X

      D1S无法进入系统,硬件为Norflash,只将默认的串口0改为了串口3,其他未变,求大佬帮助
      MR Series • Posted at • xyz743508968

      0 Votes
      2 Replies
      1106 Views

      X Replied at

      后来发现 我插入鼠标有反应,说明系统已经起来了,控制台却无法使用,boot和内核都能打印,应该不是这两个地方的问题,猜测是文件系统配置的问题,进入SDK /tina-d1-h/target/allwinner/d1s-nezha_nor/base-files/etc下的inittab 文件:ttyS0::askfirst:/bin/ash --login 控制台串口并没有改过来,改为ttyS3就能进入系统了。

      2
    • H

      请问T113-S3 的Linux内核源码怎样修改成以HYP模式启动CPU
      Linux • Posted at • hyezzz

      0 Votes
      2 Replies
      1186 Views

      D Replied at

      @hyezzz 请问楼主解决了吗,如何改为hyp模式的

      2
    • D

      发现个全志异构核soc的设计缺陷
      其它全志芯片讨论区 • Posted at • duanlin

      2 Votes
      2 Replies
      1560 Views

      D Replied at

      @whycanservice
      全开再关并不傻,因为有的场景是不需要关的。即使后关也不影响低功耗目的。
      反而言之,先不开,然后其他人自己开不开才叫真傻。
      有很多种方法可以停住core,没有vector并不影响。

      什么是 bootloader,是启动 core 的,那么一个异构 soc 的 bootloader(这里指的是一级bootrom)无论是异构系统的哪个 arch 的 core 负责 boot,应该做什么?应该 boot the soc 而不是 boot itself。

      2
    • W

      T113 编译出错make
      编译和烧写问题专区 • Posted at • WD15365693548

      0 Votes
      2 Replies
      1618 Views

      W Replied at

      @null037 谢谢佬,我自己在家用的虚拟机就是18.04,确实没有出现这些问题,编译运行很顺利。但是日常工作的电脑是20.04的系统,遇到这个问题也是想解决一下

      2
    • A

      usb模块的问题
      其它全志芯片讨论区 • Posted at • aaabbb222

      0 Votes
      2 Replies
      1927 Views

      A Replied at

      @nideyida 在 usb模块的问题 中说:

      @aaabbb222 在 usb模块的问题 中说:

      nanopi neo

      nanopi neo 用的是哪颗芯片?

      H3

      2
    • X

      T113-s3 adb push文件使文件系统变为只读
      其它全志芯片讨论区 • Posted at • xlq123

      1 Votes
      2 Replies
      1539 Views

      X Replied at

      已解决,是硬件spi设计问题。

      2
    • E

      V853如何配置usb口的无线网卡
      V Series • Posted at • erdan

      0 Votes
      2 Replies
      1196 Views

      E Replied at

      @jingyan 感谢提示,现在解决了,是因为买的韦东山的扩展板,需要去掉几个电阻,链接 https://forums.100ask.net/t/topic/5550

      2
    • L

      TLT507添加敦泰触摸屏驱动
      创龙科技专区 • Posted at • lgzlgzlgz

      3 Votes
      2 Replies
      1304 Views

      J Replied at

      @lgzlgzlgz 40e95456-773b-430a-80b1-699a2abb30e5-image.png
      0x48状态是没有回复ACK,外设无响应。请检查设备驱动是否正常

      2
    • J

      T507配置UART为4M波特率,传输数据出现乱码
      飞凌嵌入式专区 • Posted at • Jeper

      0 Votes
      2 Replies
      1667 Views

      J Replied at

      @jingyan
      有测过两块T507互发互收,都是用2M波特率,这样测试又是没有乱码。所以感觉理论上回环也是没有乱码的,跟PC端传输才有乱码。有空我再测一下回环。

      2
    • X

      【D1S SDK安装】D1S拉取SDK卡在29%
      MR Series • Posted at • xh_timmo

      1 Votes
      2 Replies
      1038 Views

      X Replied at

      @xh_timmo 问题解决了,就是多等等,多等等,就好了

      2
    • Z

      tina linux怎么设置开机自启动
      Linux • Posted at • ZiFeiYu

      1 Votes
      2 Replies
      1660 Views

      Z Replied at

      @zifeiyu @admin5 Tina OpenWRT系统的rc.final已经屏蔽了/etc/init.d/S*服务自启动方式,新创建的自启动服务(S90auto)可以添加到/etc/init.d/load_script.conf

      --- a/t113s2-evb1/busybox-init-base-files/etc/init.d/rc.final +++ b/t113s2-evb1/busybox-init-base-files/etc/init.d/rc.final #for i in /etc/init.d/S??* ;do # Ignore dangling symlinks (if any). # [ ! -f "$i" ] && continue # case "$i" in # *.sh) # Source shell script for speed. # ( # trap - INT QUIT TSTP # set start # . $i # ) # ;; # *) # No sh extension, so fork subprocess. # $i start # ;; # esac #done
      2
    • W

      R128s2 Devkit Windows cygwin编译各种错误
      MR Series • Posted at • wangeshen

      0 Votes
      2 Replies
      1183 Views

      Z Replied at

      😩 建议使用 Linux 编译环境,windows 编译环境太慢了,一个工程编译下来要七八分钟

      2
    • C

      T113-i usb0 能在电脑端识别,但是PhoenixSuit不能检测到设备,一点反应都没有
      编译和烧写问题专区 • Posted at • cdzlll

      2 Votes
      2 Replies
      1362 Views

      W Replied at

      你搞错了呀,你图上的是全志的设备驱动,跟工具识别到设备没有直接关系,这个主要是烧录的时候用的,让工具识别的设备主要是adb驱动,把主板usb配置成设备模式呢

      2
    • J

      T113增加I2C设备无法找到总线设备,没跑probe
      MR Series • Posted at • Jacky502

      0 Votes
      2 Replies
      1118 Views

      J Replied at

      @jingyan 谢谢了,已解决,I2C基础地址不能写A0

      2
    • K

      t113烧写spi nand卡在 [08.895]fill gap start: volume mbr sects 0x7f80
      编译和烧写问题专区 • Posted at • kkkkkkkk

      0 Votes
      2 Replies
      1681 Views

      K Replied at

      @fanhuacloud 都有上拉的

      2
    • Z

      SPI nand 打包出错
      V Series • Posted at • zzc775

      0 Votes
      2 Replies
      1601 Views

      Z Replied at

      @daizebin 搞错了flash类型,已经切换回nor flash,这个问题不存在了

      2
    • S

      全志TINA5.0-T113解码H264动态裸流出错,能搞的重谢!
      T Series • Posted at • szzgx

      1 Votes
      2 Replies
      1064 Views

      No one has replied

      2
    • baiwen

      AvaotaSBC 系列 A1 自带SPI显示屏 T527 开源版来啦!!!
      T Series • Posted at • 100ask

      1 Votes
      2 Replies
      2249 Views

      KunYi Replied at

      @radxiaohe
        官方網站 https://avaota.fun/
        源代碼在 github 上 https://github.com/AvaotaSBC

      2
    • C

      注册了全志的企业账号就可以看到全志所有的芯片资料吗
      灌水区 • Posted at • caibin

      0 Votes
      2 Replies
      922 Views

      C Replied at

      只能看见被授权的芯片

      2
    • S

      env.cfg partitions=${partitions} 这个变量在哪儿赋值
      V Series • Posted at • super0759

      0 Votes
      2 Replies
      1421 Views

      S Replied at

      谢谢 ,我遇到一个问题, 问了创龙的人他们说是打包的时候生成的
      uboot 打印
      => print
      aw-ubi-spinand.ubootblks=24
      boot_fastboot=fastboot
      boot_normal=sunxi_flash read 44800000 ${boot_partition};bootm 44800000
      boot_partition=boot
      boot_recovery=sunxi_flash read 44800000 extend;bootm 44800000
      bootcmd=run setargs_nand_ubi boot_normal
      bootdelay=1
      bootreason=button
      coherent_pool=32K
      console=ttyS0,115200
      earlyprintk=sunxi-uart,0x02500000
      fastboot_key_value_max=0x8
      fastboot_key_value_min=0x2
      fdtcontroladdr=41eaee70
      filesize=10000
      force_normal_boot=1
      init=/init
      initcall_debug=0
      loglevel=8
      mmc_root=/dev/mmcblk0p4
      mtd_name=sys
      mtdids=nand0=nand
      mtdparts=mtdparts=nand:1024k@0(boot0)ro,3072k@1048576(uboot)ro,1024k@4194304(secure_storage)ro,-(sys)
      nand_root=/dev/ubiblock0_4
      nor_root=/dev/mtdblock3
      partition=nand0,0
      partitions=mbr@ubi0_0:boot-res@ubi0_1:env@ubi0_2:boot@ubi0_3:rootfs@ubi0_4:UDISK@ubi0_5:
      rdinit=/rdinit
      recovery_key_value_max=0x13
      recovery_key_value_min=0x10
      root_partition=rootfs
      rootfstype=squashfs
      rotpk_status=0
      setargs_mmc=setenv bootargs earlyprintk=${earlyprintk} clk_ignore_unused initcall_debug=${initcall_debug} console=${console} loglevel=${loglevel} root=${mmc_root} rootwait init=${init} partitions=${partitions} cma=${cma} mac_addr=${mac} wifi_mac=${wifi_mac} bt_mac=${bt_mac} selinux=${selinux} specialstr=${specialstr} coherent_pool=${coherent_pool} ion_carveout_list=${reserve_list}
      setargs_nand=setenv bootargs earlyprintk=${earlyprintk} clk_ignore_unused initcall_debug=${initcall_debug} console=${console} loglevel=${loglevel} ubi.mtd=${mtd_name} root=${nand_root} rootfstype=${rootfstype} rootwait init=${init} rdinit=${rdinit} partitions=${partitions} cma=${cma} mac_addr=${mac} wifi_mac=${wifi_mac} bt_mac=${bt_mac} selinux=${selinux} specialstr=${specialstr} coherent_pool=${coherent_pool} ion_carveout_list=${reserve_list}
      setargs_nand_ubi=setenv bootargs ubi.mtd=${mtd_name} ubi.block=0,${root_partition} earlyprintk=${earlyprintk} clk_ignore_unused initcall_debug=${initcall_debug} console=${console} loglevel=${loglevel} root=${nand_root} rootfstype=${rootfstype} init=${init} partitions=${partitions} cma=${cma} snum=${snum} mac_addr=${mac} wifi_mac=${wifi_mac} bt_mac=${bt_mac} specialstr=${specialstr} gpt=1
      setargs_nor=setenv bootargs earlyprintk=${earlyprintk} clk_ignore_unused initcall_debug=${initcall_debug} console=${console} loglevel=${loglevel} root=${nor_root} rootwait init=${init} rdinit=${rdinit} partitions=${partitions} cma=${cma} coherent_pool=${coherent_pool} ion_carveout_list=${reserve_list}
      ubi_attach_mtdnum=3
      verify=N

      Environment size: 2581/131068 bytes
      =>

      2
    • F

      V853 yolov5 目标检测
      V Series • Posted at • forOdetD

      0 Votes
      2 Replies
      1143 Views

      F Replied at

      @null037谢谢大佬!😬

      2
    • T

      d1s的spi nand flash的spi接口修改spi1如何修改
      MR Series • Posted at • TouchUU

      0 Votes
      2 Replies
      1222 Views

      T Replied at

      @jingyan 感谢,已经发现了不行

      2
    • C

      T113 tina5.0 无法进入uboot命令行
      其它全志芯片讨论区 • Posted at • Cohen0415

      0 Votes
      2 Replies
      1629 Views

      D Replied at

      @cohen0415 你好。抱歉问另一个问题,但请问您从哪里获得 T113-S3 的 Tina 5.0 系统?我购买 T113 的供应商毫无用处 :')

      2
    • M

      Tina-sdk T113编译报错-intltool-0.51.0 FAQ
      编译和烧写问题专区 • Posted at • mr_yan

      1 Votes
      2 Replies
      2502 Views

      S Replied at

      我在编的时候正好遇到这个问题, 采用相同的解决方法, 确认有效
      另外WSL1下, 不要用win的目录

      2
    • H

      发现论坛通知处一个显示异常
      灌水区 • Posted at • hooke

      0 Votes
      2 Replies
      1090 Views

      aozima Replied at

      好奇这BUG是怎么产生的。。

      2
    • J

      求助,如何实现T113-s3无线通信
      MR Series • Posted at • Jhogy

      0 Votes
      2 Replies
      1081 Views

      Y Replied at

      @jhogy 直接网络通信啊 tpc udp http mqtt 等等 其他协议都可以。只要能ping 的通,网络不是随便完吗

      2
    • S

      请教,T113S3用spi驱动st7789屏,tplayerdemo播放无画面
      MR Series • Posted at • shangwudong

      0 Votes
      2 Replies
      1439 Views

      S Replied at

      @yuqingli 我也很纳闷,驱动正常,估计是tplayerdemo对fb0的缓存有要求,暂时还不知道怎么改。tinyversion的v851se只有spi屏幕,不知道能不能tplayerdemo播放。

      2
    • livpo

      全志T527芯片详解【四】:工业级品质
      T Series • Posted at • livpo

      0 Votes
      2 Replies
      2008 Views

      livpo Replied at

      @cohen0415 Tina Linux, Android都支持呢

      2
    • q1215200171

      全志V853芯片配套辅助驾驶算法介绍
      V Series • Posted at • budbool

      1 Votes
      2 Replies
      1590 Views

      G Replied at

      请问下,可以联系谁,有DMS场景的算法SDK的需求,想对接下看合适不?

      2
    • K

      PhoenixSuit无法获取到映射目录问题。
      编译和烧写问题专区 • Posted at • kohvyuan

      1 Votes
      2 Replies
      1266 Views

      A Replied at

      @kohvyuan 8328c328-85ed-4009-b303-5f218f9f4260-1743644532514.jpg
      试试输入IP地址?

      2
    • M

      NPU开发工具在哪里下载
      V Series • Posted at • minjialong

      0 Votes
      2 Replies
      1584 Views

      M Replied at

      @null037 谢谢你哈

      2
    • X

      V851S用AIC8800D80报错
      V Series • Posted at • xiaok

      1 Votes
      2 Replies
      2025 Views

      X Replied at

      @syk1324 没有解决,后面换RTL8821CS和RTL8189FS全都正常,AIC8800不行。

      2
    • V

      T113-i tina 启动时卡在uboot 显示emmc出错
      创龙科技专区 • Posted at • vc

      2 Votes
      2 Replies
      1603 Views

      T Replied at

      出现了同样的问题,您后俩有解决吗?

      2
    • H

      T113 Tina SDK的prebuilt中现在没有ARM文件吗?
      编译和烧写问题专区 • Posted at • hanyeaaa

      1 Votes
      2 Replies
      1098 Views

      F Replied at

      开源的是d1s和d1h的SDK,支持T113需要另外添加补丁

      2
    • S

      使用repo下载 R329 sdk失败,请问如何处理
      代码下载问题专区 • Posted at • sunsy

      0 Votes
      2 Replies
      1254 Views

      R Replied at

      @sunsy 在 使用repo下载 R329 sdk失败,请问如何处理 中说:

      gnutls_handshake() failed: Handshake failed

      gnutls_handshake() failed: Handshake failed,是不是设置了代理?把代理去掉试试呢

      2
    • N

      hello world 编写执行文件没出来,文件我都有,为什么没找到
      V Series • Posted at • nannan220

      0 Votes
      2 Replies
      927 Views

      N Replied at

      @awwwwa 好的 已经解决了 谢谢

      2
    • L

      学习路线 RoadMap
      灌水区 • Posted at • liyanshan

      0 Votes
      2 Replies
      1265 Views

      L Replied at

      @xiaowenge 多谢前辈鼓励和推荐,我去学习一下

      2
    • M

      关于NPU开发中onnx中op Split的疑似bug问题反馈
      V Series • Posted at • minjialong

      0 Votes
      2 Replies
      1453 Views

      M Replied at

      @awwwwa 我用的是acuity-toolkit-binary-6.6.1,确实存在split算子有一些问题。不过我最后修改算子,解决了这个问题,用slice算子替换了split算子。

      2
    • D

      T113-S3: tplayer seamless switching
      T Series • Posted at • dazb3

      0 Votes
      2 Replies
      1299 Views

      D Replied at

      @whycanservice2 非常感谢您的回复。

      我一直在参考 tplayerdemo,您说得对,它可以播放文件夹中的多个文件。

      但是对于我的用例,我想在后台加载第二个视频,同时仍在播放第一个视频,然后无缝切换。

      您知道这样做的任何示例吗?查看 tplayerdemo 和 tplayer,似乎它们实际上只能在 1 个层上一次处理 1 个视频。

      我也尝试运行多个 tplayerdemo 实例,查看底层 tplayer 代码,似乎它总是绘制到同一层,因此我无法在不清除层缓冲区的情况下初始化 1 个 tplayerdemo。

      任何帮助都将不胜感激。谢谢。

      2
    • Y

      更改分区
      其它全志芯片讨论区 • Posted at • yyyyppppp

      0 Votes
      2 Replies
      1002 Views

      Y Replied at

      @bigfly 感谢!!!

      2
    • J

      T113-i WIFI模块(cyfmac55572-sdio)移植求助!!!
      Linux • Posted at • joehuang

      0 Votes
      2 Replies
      1646 Views

      J Replied at

      @touchuu 非常好意思,前段时间在调试其他模块,没有继续跟踪这个问题,sdc1 pins并没有单独配置1.8v,请问可以分享一下reg_pio1_8节点的内容吗?我会尝试一下这个改动。
      非常感谢!

      2
    • D

      大家有荔枝派Dock的资料吗
      MR Series • Posted at • didiao

      0 Votes
      2 Replies
      967 Views

      D Replied at

      好的,.............谢谢您

      2
    • gharibi

      付費開發 - 需要幫助!(R128-S2/3)
      A Series • Posted at • gharibi

      0 Votes
      2 Replies
      1851 Views

      gharibi Replied at

      @ddrddr 你好!

      2
    • D

      ubuntu使用scp传文件给Tina 2.0 SDK
      MR Series • Posted at • didiao

      1 Votes
      2 Replies
      1127 Views

      D Replied at

      @awwwwa 使用cat shadow查看密码

      root:$1$vG3nUl9z$3dfKx.qvxATtNKJsHP8pi.:19948:0:99999:7::: daemon:*:0:0:99999:7::: ftp:*:0:0:99999:7::: network:*:0:0:99999:7::: nobody:*:0:0:99999:7::: dnsmasq:x:0:0:99999:7::: sshd:x:0:0:99999:7:::

      但是shadow中有密码,是不是说明本来是有密码的?并且我用passwd修改密码,之后查看cat shadow 还是一样的。是为啥?

      2
    • J

      T507开发板如何在系统起来以后更换dtb文件
      T Series • Posted at • jnafm324

      0 Votes
      2 Replies
      780 Views

      J Replied at

      @wyljkl 我使用dd命令替换了整个分区以后 还是不正确呢。

      2
    • W

      h618源码拉取可行性问题
      代码下载问题专区 • Posted at • wcqniuniu

      1 Votes
      2 Replies
      902 Views

      xiaowenge Replied at

      这个芯片要找商务签NDA下载

      2
    • F

      V821有没有人拿到?具体规格是啥?
      V Series • Posted at • fe3o4

      0 Votes
      2 Replies
      1138 Views

      W Replied at

      @fe3o4 还有这个芯片?啥规格说一下呗

      2
    • A

      V853 SDK: VIN/ISP问题
      V Series • Posted at • Alb702

      0 Votes
      2 Replies
      1131 Views

      A Replied at

      @soso90
      cfg.tar.gz 另外:内核配置和 + device tree

      2
    • N

      T113-s3 适配EMMC(THGBMJG6C1LBAIL等)持续更新!!!
      其它全志芯片讨论区 • Posted at • NathanLiu

      0 Votes
      2 Replies
      1296 Views

      W Replied at

      VCCQ 1.8V肯定不行,我使用EMMC都很久了,我还在S4上使用妙存的32G EMMC

      2
    • N

      Tina Linux文件系统只读问题
      V Series • Posted at • NathanLiu

      0 Votes
      2 Replies
      1085 Views

      N Replied at

      @wyljkl 感谢

      2
    • B

      T113i更换10.1寸MIPI显示屏后,内核无法启动!
      其它全志芯片讨论区 • Posted at • boguang_li

      0 Votes
      2 Replies
      1261 Views

      B Replied at

      @whycanservice2

      跟踪驱动代码,发现程序死在drv_lcd_open_callback里面,如图
      ee0453fe-6932-49c1-9374-ff7edb64c86b-1725615111987.png

      分别使用开发板的uboot-board-mipi-lcd.dts 和更换后的uboot-board-mipi-lcd.dts,编译内核,烧录运行,情况如下:
      fdb36222-1d34-4ff0-bfa3-0d5b3e0df891-1725615752442.png

      很明显drv_lcd_open_callback这个回调函数进入后,没有再次执行。
      if (flow->func[i].delay == 0) 这个delay应该是定时器递减的吧,为什么定时器没有运行起来呢?

      希望前辈给指点一下

      2
    • C

      H618 LPDDR4 layout 等长设计规则
      H/F/TV Series • Posted at • ct991218620

      0 Votes
      2 Replies
      1301 Views

      C Replied at

      @yuzukitsuru 您好,这个表格不是太明白 clk和数据地址线也需要做等长么?请教下,我按图中的设置有没有什么问题?![替代文字](捕获.PNG 图片地址)

      2
    • Y

      Avaota - A1 t527只能用TF卡旺开发板烧写镜像吗?不能像t113用一样的PhoenixSuit.exe吗?
      T Series • Posted at • yyyyppppp

      0 Votes
      2 Replies
      758 Views

      Y Replied at

      @yuzukitsuru 只能用TF卡烧写.img镜像吗?

      2
    • Z

      全志V853编译的时候出现这个问题/build/mkcmd.sh: line 1134: ./buildserver: cannot execute binary file: Exec format error
      V Series • Posted at • zxhnb666

      0 Votes
      2 Replies
      581 Views

      Z Replied at

      @zxhnb666 我用的是ubuntn20.04版本,在拉取SDK的时候并没有报错,重新拉也是显示这个错误,有大佬能指点一二吗

      2
    • J

      交叉编译工具链下载地址
      V Series • Posted at • jfkkf123

      0 Votes
      2 Replies
      689 Views

      N Replied at

      @jfkkf123 https://v853.docs.aw-ol.com/study/study_6helloword/#_2

      2
    • Z

      全志v536 4k编解码
      V Series • Posted at • zhangerhu

      0 Votes
      2 Replies
      686 Views

      Z Replied at

      @awwwwa 在 全志v536 4k编解码 中说:

      瓶颈估计在带宽上
      嗯嗯,多谢多谢~

      2
    • S

      编译boot时执行make报错
      MR Series • Posted at • shuijingyelong

      1 Votes
      2 Replies
      732 Views

      Z Replied at

      @shuijingyelong 👍 👍

      2
    • W

      t113-s3 sdk中有两个版本的bluez工具,怎么切换呢?
      Linux • Posted at • wyljkl

      0 Votes
      2 Replies
      638 Views

      W Replied at

      @xlbwxbl 可以切换了,修改makefile,然后需要去掉patch文件夹的patch,里面patch内容不匹配

      2
    • Q

      求助,V851S无法烧录
      编译和烧写问题专区 • Posted at • q87552

      0 Votes
      2 Replies
      754 Views

      L Replied at

      @q87552 进入FEL模式再重新安装驱动

      2
    • W

      [T113S ] 如何设置spi1软件片选
      其它全志芯片讨论区 • Posted at • wayneyao

      0 Votes
      2 Replies
      591 Views

      W Replied at

      @jingyan 非常感谢 大佬 我现在才看到 感谢感谢

      2
    • B

      如何在uboot阶段加载R核
      T Series • Posted at • bloath

      0 Votes
      2 Replies
      779 Views

      B Replied at

      @bloath 上述问题找到了

      需要在板级配置里, 设置LICHEE_RTOS_PROJECT_NAME, 使用build.sh rtos就可以编译了, 关键的一步在

      '$BSP/rtos/lichee/rtos/build/$BOARD/img/rt_system.elf' -> '$BSP/device/config/chips/t527/configs/$BOARD/bin/amp_rv0.bin'
      2
    • L

      求助想增加UDISK分区录
      编译和烧写问题专区 • Posted at • lknn2012

      0 Votes
      2 Replies
      817 Views

      L Replied at

      @zoenggit 在 求助想增加UDISK分区录 中说:

      @lknn2012 不用配,好像是uboot里会自动新增

      不行吧 请加我QQ 398575402 付费求助

      2
    • aiit111

      内核阶段开机logo会出现黑线,黑线位置随机
      MR Series • Posted at • aiit111

      0 Votes
      2 Replies
      546 Views

      xiaowenge Replied at

      看着是boot里的屏幕没配好,查查屏幕配置和驱动

      2
    • K

      求固件
      爱搞机专区 • Posted at • kedren

      0 Votes
      2 Replies
      390 Views

      livpo Replied at

      @kedren 现代车机?66666

      2
    • X

      在哪里可以下载到A523的SDK?
      Linux • Posted at • xiajian

      0 Votes
      2 Replies
      453 Views

      M Replied at

      @livpo 应该要签nda才能下载吧

      2
    • I

      T113-I的固件如何解压
      创龙科技专区 • Posted at • idiotao

      1 Votes
      2 Replies
      493 Views

      Z Replied at

      @idiotao
      可将已开发的相关程序放到 LinuxSDK 下的"out/t113_i/tl113-evm-emmc/longan/buildroot/target/usr/bin"路径下,重新编译打包生成系统镜像即可。

      2
    • L

      有在玩tinyvision板子的么?
      灌水区 • Posted at • leslie_li

      0 Votes
      2 Replies
      495 Views

      J Replied at

      @fdag43262g32 生成的镜像用PhoenixCard烧写成启动卡

      2
    • C

      如何让H6芯片进入FEL模式
      H/F/TV Series • Posted at • cjy12123

      0 Votes
      2 Replies
      780 Views

      C Replied at

      @momoyu 好了,是我的硬件问题

      2
    • B

      T113-S3 uart4 选PD7, PD8引脚只能发送不能接收问题
      T Series • Posted at • bestikun

      2 Votes
      2 Replies
      521 Views

      No one has replied

      2
    • I

      对R128模块原理图的疑问
      A Series • Posted at • ideapad2009

      0 Votes
      2 Replies
      766 Views

      I Replied at

      @awwwwa 360截图20241204200005112.jpg 内部VDD_AON与VDD12_PSM已经连在一起。外部就没必要连在一起了吧。image-20230319105749537.png

      2
    • S

      python交叉编译
      Linux • Posted at • Simon

      3 Votes
      2 Replies
      812 Views

      H Replied at

      准备交叉编译工具链
      确认已经安装适用于 T113-S3 的 ARM 交叉编译工具链。

      工具链路径: 根据您提供的信息,交叉编译工具链路径是 /opt/EmbedSky/Tina/bin/arm-linux-gnueabi-gcc。
      验证工具链是否正确安装:
      bash
      复制代码
      /opt/EmbedSky/Tina/bin/arm-linux-gnueabi-gcc --version
      输出应显示 GCC 的版本信息。
      2. 确认 Python 环境
      安装目标设备的 Python 环境
      T113-S3 通常运行的是 Linux (ARM),需要确保目标设备上有适配的 Python 解释器。

      检查设备上的 Python 版本:
      bash
      复制代码
      python3 --version
      如果没有,可以从源码编译 Python 并安装到设备中,或从官方/社区仓库获取预编译的 ARM Python 包。
      确定项目所需依赖
      在 Ubuntu 16.04 虚拟机中创建一个与目标设备一致的 Python 环境,确保所有依赖可以在目标设备上运行。

      bash
      复制代码
      pip freeze > requirements.txt
      3. 将 Python 项目打包为独立可执行文件
      在目标设备上可能需要减少依赖。因此可以将 Python 项目打包为独立的二进制文件。

      使用 pyinstaller
      安装 pyinstaller:
      bash
      复制代码
      pip install pyinstaller
      使用交叉编译生成 ARM 平台的可执行文件:
      bash
      复制代码
      pyinstaller --onefile --distpath=./build-arm --specpath=./specfile your_project.py
      如果需要在 ARM 上运行,需确保交叉工具链和运行环境匹配。
      4. 交叉编译 C 扩展或其他依赖库
      如果 Python 项目中依赖 C 扩展模块(例如 numpy 或 scipy),则需要交叉编译这些库。

      安装所需工具: 确保您的交叉编译工具链包含 arm-linux-gnueabi-gcc 和其他必要的工具,如 make、cmake。
      设置环境变量:
      bash
      复制代码
      export CC=/opt/EmbedSky/Tina/bin/arm-linux-gnueabi-gcc
      export CXX=/opt/EmbedSky/Tina/bin/arm-linux-gnueabi-g++
      export PATH=/opt/EmbedSky/Tina/bin:$PATH
      交叉编译库:
      bash
      复制代码
      python3 setup.py build_ext --plat-name=linux-armv7l
      5. 打包项目并传输到目标设备
      将项目和依赖打包为一个目录并传输到目标设备。

      方法 1:直接打包
      打包为 tar 压缩包:
      bash
      复制代码
      tar -czvf project.tar.gz your_project/
      使用 scp 或 sftp 将文件传输到设备:
      bash
      复制代码
      scp project.tar.gz user@device_ip:/path/to/destination
      方法 2:构建 Docker 镜像
      如果目标设备支持 Docker,可以构建一个运行环境镜像,并在设备上运行容器。

      在目标设备上运行
      解压项目:
      bash
      复制代码
      tar -xzvf project.tar.gz
      cd your_project
      运行项目: 如果是通过 PyInstaller 生成的二进制文件:
      bash
      复制代码
      ./your_project
      如果是通过 Python 脚本运行:
      bash
      复制代码
      python3 your_project.py
      2
    • G

      wifi跑不起来
      H/F/TV Series • Posted at • gwx123

      0 Votes
      2 Replies
      907 Views

      G Replied at

      @awwwwa 日志如下

      -------- beginning of main 01-01 08:00:05.964 174 174 W lowmemorykiller: LMKD : whitelist android.signature.cts.api.hiddenapi_blacklist_api_27;android.signature.cts.api.hiddenapi_blacklist_api_28;android.signature.cts.api.hiddenapi_blacklist_current;android.media.cts;android.process.media;com.antutu.ABenchMark;com.antutu.benchmark.full;com.antutu.benchmark.full:unity;com.antutu.ABenchMark:push;com.futuremark.dmandroid.application;com.allwinner.batterytest;cn.xender;com.socialnmobile.dictapps.notepad.color.note;org.videolan.vlc; 01-01 08:00:05.964 174 174 I lowmemorykiller: Using psi monitors for memory pressure detection 01-01 08:00:05.966 174 174 I lowmemorykiller: Process polling is supported --------- beginning of kernel 01-01 08:00:02.196 0 0 I : Booting Linux on physical CPU 0x0000000000 [0x410fd034] 01-01 08:00:02.196 0 0 I : Linux version 5.4.125+ (robin@robin) (Android (7485623, based on r416183b1) clang version 12.0.7 (https://android.googlesource.com/toolchain/llvm-project c935d99d7cf2016289302412d708641d52d2f7ee), LLD 12.0.7 (/buildbot/src/android/llvm-r416183/out/llvm-project/lld c935d99d7cf2016289302412d708641d52d2f7ee)) #3 SMP PREEMPT Tue Dec 10 15:33:55 CST 2024 01-01 08:00:02.196 0 0 I Machine model: sun50iw9 01-01 08:00:02.196 0 0 I earlycon: uart8250 at MMIO32 0x0000000005000000 (options '') 01-01 08:00:02.196 0 0 I printk : bootconsole [uart8250] enabled 01-01 08:00:02.196 0 0 I cma : Reserved 8 MiB at 0x00000000bf800000 01-01 08[ 8.365780][ T248] cutils-trace: Error opening trace file: No such file or directory (2) :00:02.196 0 0 D : On node 0 totalpages: 524288 01-01 08:00:02.196 0 0 D DMA32 zone: 8192 pages used for memmap 01-01 08:00:02.196 0 0 D DMA32 zone: 0 pages reserved 01-01 08:00:02.196 0 0 D DMA32 zone: 524288 pages, LIFO batch:63 01-01 08:00:02.196 0 0 I psci : probing for conduit method from DT. 01-01 08:00:02.196 0 0 I psci : PSCIv1.0 detected in firmware. 01-01 08:00:02.196 0 0 I psci : Using standard PSCI v0.2 function IDs 01-01 08:00:02.196 0 0 I psci : Trusted OS migration not required 01-01 08:00:02.196 0 0 I psci : SMC Calling Convention v1.0 01-01 08:00:02.196 0 0 I percpu : Embedded 22 pages/cpu s49944 r8192 d31976 u90112 01-01 08:00:02.196 0 0 D pcpu-alloc: s49944 r8192 d31976 u90112 alloc=22*4096 01-01 08:00:02.196 0 0 D pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 01-01 08:00:02.196 0 0 I : Detected VIPT I-cache on CPU0 01-01 08:00:02.196 0 0 I CPU features: detected: ARM erratum 845719 01-01 08:00:02.196 0 0 I : Built 1 zonelists, mobility grouping on. Total pages: 516096 01-01 08:00:02.196 0 0 I : Kernel command line: earlycon=uart8250,mmio32,0x05000000 clk_ignore_unused initcall_debug=0 console=ttyAS0,115200 loglevel=4 root=/dev/mmcblk0p4 init=/init cma=8M snum=0c001050010248d1f91 mac_addr= wifi_mac= bt_mac= specialstr= gpt=1 androidboot.force_normal_boot=1 androidboot.slot_suffix=_a androidboot.vbmeta.avb_version=2.0 androidboot.vbmeta.hash_alg=sha256 androidboot.vbmeta.size=7872 androidboot.vbmeta.digest=5b1037089489ad2fa0c62cd98e9ae2801bc6e393fd0b59a89d303bac5f3f4f8e androidboot.vbmeta.device_state=locked androidboot.veritymode=enforcing androidboot.mode=normal androidboot.serialno=0c001050010248d1f91 androidboot.hardware=sun50iw9p1 boot_type=2 androidboot.boot_type=2 androidboot.secure_os_exist=1 androidboot.trustchain=false androidboot.drmkey=false gpt=1 uboot_message=2018.07-gb99798b(04/04/2023-13:23:26) mbr_offset=1032192 disp_reserve=3686400,0xbbf21000 bootreason=unknow androidboot.dramfreq=720 androidboot.dramsize=2048 loop.max_part=4 android 01-01 08:00:02.196 0 0 I : Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 01-01 08:00:02.196 0 0 I : Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) 01-01 08:00:02.196 0 0 I mem auto-init: stack:off, heap alloc:off, heap free:off 01-01 08:00:02.196 0 0 I Memory : 1990540K/2097152K available (14076K kernel code, 1366K rwdata, 5684K rodata, 1024K init, 778K bss, 98420K reserved, 8192K cma-reserved) 01-01 08:00:02.196 0 0 I SLUB : HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 01-01 08:00:02.196 0 0 I rcu : Preemptible hierarchical RCU implementation. 01-01 08:00:02.196 0 0 I : Tasks RCU enabled. 01-01 08:00:02.196 0 0 I rcu : RCU calculated value of scheduler-enlistment delay is 25 jiffies. 01-01 08:00:02.196 0 0 I NR_IRQS : 64, nr_irqs: 64, preallocated irqs: 0 01-01 08:00:02.196 0 0 I kfence : initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____) 01-01 08:00:02.196 0 0 I random : get_random_bytes called from start_kernel+0x224/0x434 with crng_init=0 01-01 08:00:02.196 0 0 I arch_timer: cp15 timer(s) running at 24.00MHz (virt). 01-01 08:00:02.196 0 0 I clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 01-01 08:00:02.196 0 0 I sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 01-01 08:00:02.197 0 0 I clocksource: timer: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635851949 ns 01-01 08:00:02.197 0 0 I : Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 01-01 08:00:02.197 0 0 I pid_max : default: 32768 minimum: 301 01-01 08:00:02.197 0 0 I LSM : Security Framework initializing 01-01 08:00:02.197 0 0 I SELinux : Initializing. 01-01 08:00:02.197 0 0 I : Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) 01-01 08:00:02.197 0 0 I : Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) 01-01 08:00:02.198 1 1 I : ASID allocator initialised with 32768 entries 01-01 08:00:02.198 1 1 I rcu : Hierarchical SRCU implementation. 01-01 08:00:02.201 1 1 E BOOTEVENT: 4.206998: ON 01-01 08:00:02.206 1 1 I smp : Bringing up secondary CPUs ... 01-01 08:00:02.206 0 0 I : Detected VIPT I-cache on CPU1 01-01 08:00:02.206 0 0 I CPU1 : Booted secondary processor 0x0000000001 [0x410fd034] 01-01 08:00:02.207 0 0 I : Detected VIPT I-cache on CPU2 01-01 08:00:02.207 0 0 I CPU2 : Booted secondary processor 0x0000000002 [0x410fd034] 01-01 08:00:02.207 0 0 I : Detected VIPT I-cache on CPU3 01-01 08:00:02.207 0 0 I CPU3 : Booted secondary processor 0x0000000003 [0x410fd034] 01-01 08:00:02.207 1 1 I smp : Brought up 1 node, 4 CPUs 01-01 08:00:02.207 1 1 I SMP : Total of 4 processors activated. 01-01 08:00:02.207 1 1 I CPU features: detected: 32-bit EL0 Support 01-01 08:00:02.207 1 1 I CPU features: detected: CRC32 instructions 01-01 08:00:02.207 1 1 I CPU features: emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching 01-01 08:00:02.207 1 1 I : CPU: All CPU(s) started at EL1 01-01 08:00:02.207 12 12 I alternatives: patching kernel code 01-01 08:00:02.208 1 1 I CPU3 : update max cpu_capacity 1024 01-01 08:00:02.209 1 1 I devtmpfs: initialized 01-01 08:00:02.210 0 0 I [ C1] CPU1: update max cpu_capacity 1024 01-01 08:00:02.217 1 1 I : Registered cp15_barrier emulation handler 01-01 08:00:02.217 1 1 I : Registered setend emulation handler 01-01 08:00:02.217 1 1 I clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 01-01 08:00:02.217 1 1 I : futex hash table entries: 1024 (order: 4, 65536 bytes, linear) 01-01 08:00:02.217 1 1 I pinctrl core: initialized pinctrl subsystem 01-01 08:00:02.218 1 1 I NET : Registered protocol family 16 01-01 08:00:02.220 1 1 I DMA : preallocated 256 KiB pool for atomic allocations 01-01 08:00:02.220 1 1 I audit : initializing netlink subsys (disabled) 01-01 08:00:00.020 173 173 W auditd : type=2000 audit(0.0:1): state=initialized audit_enabled=0 res=1 01-01 08:00:02.220 1 1 I cpuidle : using governor menu 01-01 08:00:02.220 1 1 I hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 01-01 08:00:02.243 1 1 I ccu : sunxi ccu init OK 01-01 08:00:02.243 1 1 I r_ccu : sunxi ccu init OK 01-01 08:00:02.243 1 1 D : Sunxi ccu sun50iw9-r init OK 01-01 08:00:02.243 1 1 I sun50iw9-r-pinctrl 7022000.pinctrl: initialized sunXi PIO driver 01-01 08:00:02.252 1 1 I cryptd : max_cpu_qlen set to 1000 01-01 08:00:02.263 1 1 I iommu : Default domain type: Translated 01-01 08:00:02.263 1 1 I sunxi iommu: irq = 39 01-01 08:00:02.264 1 1 I : SCSI subsystem initialized 01-01 08:00:02.264 1 1 I usbcore : registered new interface driver usbfs 01-01 08:00:02.264 1 1 I usbcore : registered new interface driver hub 01-01 08:00:02.264 1 1 I usbcore : registered new device driver usb 01-01 08:00:02.264 1 1 I videodev: Linux video capture interface: v2.00 01-01 08:00:02.265 1 1 I : Advanced Linux Sound Architecture Driver Initialized. 01-01 08:00:02.265 1 1 I Bluetooth: Core ver 2.22 01-01 08:00:02.265 1 1 I NET : Registered protocol family 31 01-01 08:00:02.265 1 1 I Bluetooth: HCI device and connection manager initialized 01-01 08:00:02.265 1 1 I Bluetooth: HCI socket layer initialized 01-01 08:00:02.265 1 1 I Bluetooth: L2CAP socket layer initialized 01-01 08:00:02.265 1 1 I Bluetooth: SCO socket layer initialized 01-01 08:00:02.265 1 1 I : pwm module init! 01-01 08:00:02.266 1 1 W sun50iw9-r-pinctrl 7022000.pinctrl: 7022000.pinctrl supply vcc-pl not found, using dummy regulator 01-01 08:00:02.266 1 1 W sunxi-i2c5: sunxi-i2c5 supply twi not found, using dummy regulator 01-01 08:00:02.267 1 1 I axp20x-i2c 5-0036: AXP20x variant AXP1530 found 01-01 08:00:02.269 1 1 I axp1530-dcdc1: supplied by regulator-dummy 01-01 08:00:02.269 1 1 I axp1530-dcdc2: supplied by regulator-dummy 01-01 08:00:02.270 1 1 I axp1530-dcdc3: supplied by regulator-dummy 01-01 08:00:02.271 1 1 I axp1530-aldo1: supplied by regulator-dummy 01-01 08:00:02.271 1 1 I axp1530-dldo1: supplied by regulator-dummy 01-01 08:00:02.272 1 1 I axp20x-i2c 5-0036: AXP20X driver loaded 01-01 08:00:02.272 1 1 I sunxi-i2c5: probe success 01-01 08:00:02.272 1 1 I clocksource: Switched to clocksource arch_sys_counter 01-01 08:00:02.273 1 1 I VFS : Disk quotas dquot_6.6.0 01-01 08:00:02.273 1 1 I VFS : Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 01-01 08:00:02.274 1 1 I thermal_sys: Registered thermal governor 'step_wise' 01-01 08:00:02.274 1 1 I thermal_sys: Registered thermal governor 'power_allocator' 01-01 08:00:02.274 1 1 I NET : Registered protocol family 2 01-01 08:00:02.275 1 1 I : IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) 01-01 08:00:02.275 1 1 I : tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear) 01-01 08:00:02.275 1 1 I : TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) 01-01 08:00:02.275 1 1 I : TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear) 01-01 08:00:02.276 1 1 I TCP : Hash tables configured (established 16384 bind 16384) 01-01 08:00:02.276 1 1 I : UDP hash table entries: 1024 (order: 3, 32768 bytes, linear) 01-01 08:00:02.276 1 1 I : UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear) 01-01 08:00:02.276 1 1 I NET : Registered protocol family 1 01-01 08:00:02.276 1 1 I RPC : Registered named UNIX socket transport module. 01-01 08:00:02.276 1 1 I RPC : Registered udp transport module. 01-01 08:00:02.276 1 1 I RPC : Registered tcp transport module. 01-01 08:00:02.276 1 1 I RPC : Registered tcp NFSv4.1 backchannel transport module. 01-01 08:00:02.277 1 1 I NET : Registered protocol family 44 01-01 08:00:02.277 1 1 I : Trying to unpack rootfs image as initramfs... 01-01 08:00:02.394 1 1 I : Freeing initrd memory: 12456K 01-01 08:00:02.398 1 1 I : Initialise system trusted keyrings 01-01 08:00:02.398 1 1 I workingset: timestamp_bits=62 max_order=19 bucket_order=0 01-01 08:00:02.402 1 1 I : Key type cifs.idmap registered 01-01 08:00:02.402 1 1 I fuse : init (API version 7.31) 01-01 08:00:02.434 1 1 I NET : Registered protocol family 38 01-01 08:00:02.434 1 1 I : Key type asymmetric registered 01-01 08:00:02.434 1 1 I : Asymmetric key parser 'x509' registered 01-01 08:00:02.434 1 1 I : Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249) 01-01 08:00:02.434 1 1 I : io scheduler mq-deadline registered 01-01 08:00:02.434 1 1 I : io scheduler kyber registered 01-01 08:00:02.434 1 1 I atomic64_test: passed 01-01 08:00:02.436 1 1 E : failed to get standby led pin assign 01-01 08:00:02.441 1 1 E : failed to get network led pin assign 01-01 08:00:02.447 1 1 E : failed to get gpio_sdcard_reused assign 01-01 08:00:02.453 1 1 E : get config err! 01-01 08:00:02.457 1 1 I : [DISP]disp_module_init 01-01 08:00:02.457 1 1 I disp 1000000.disp: Adding to iommu group 0 01-01 08:00:02.458 1 1 D display_fb_request,fb_id: 0 01-01 08:00:02.466 1 1 I : [DISP]disp_module_init finish 01-01 08:00:02.466 1 1 I rtc_ccu : sunxi ccu init OK 01-01 08:00:02.467 1 1 W : sunxi_sid_init()737 - insmod ok 01-01 08:00:02.467 1 1 I Serial : 8250/16550 driver, 4 ports, IRQ sharing disabled 01-01 08:00:02.469 1 1 I : misc dump reg init 01-01 08:00:02.469 1 1 I g2d 1480000.g2d: Adding to iommu group 0 01-01 08:00:02.470 1 1 I G2D : Module initialized.major:246 01-01 08:00:02.470 1 1 I deinterlace 1420000.deinterlace: Adding to iommu group 0 01-01 08:00:02.470 1 1 I deinterlace 1420000.deinterlace: version[1.0.0], ip=0x0 01-01 08:00:02.470 1 1 I : Gralloc Module initialized. 01-01 08:00:02.470 13 13 W cacheinfo: Unable to detect cache hierarchy for CPU 0 01-01 08:00:02.475 1 1 I brd : module loaded 01-01 08:00:02.478 1 1 I loop : module loaded 01-01 08:00:02.479 1 1 I zram : Added device: zram0 01-01 08:00:02.479 1 1 E : [NAND][NE] Not found valid nand node on dts 01-01 08:00:02.486 1 1 D [ADDR_MGT] addr_mgt_probe: module version: v1.0.11 01-01 08:00:02.486 1 1 D [ADDR_MGT] addr_mgt_probe: success. 01-01 08:00:02.487 1 1 I libphy : Fixed MDIO Bus: probed 01-01 08:00:02.487 1 1 I tun : Universal TUN/TAP device driver, 1.6 01-01 08:00:02.487 1 1 I : PPP generic driver version 2.4.2 01-01 08:00:02.487 1 1 I : PPP BSD Compression module registered 01-01 08:00:02.487 1 1 I : PPP Deflate Compression module registered 01-01 08:00:02.487 1 1 I : PPP MPPE Compression module registered 01-01 08:00:02.487 1 1 I NET : Registered protocol family 24 01-01 08:00:02.487 1 1 I : PPTP driver version 0.8.5 01-01 08:00:02.488 1 1 I ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 01-01 08:00:02.488 1 1 I ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 01-01 08:00:02.488 1 1 I usbcore : registered new interface driver uas 01-01 08:00:02.488 1 1 I usbcore : registered new interface driver usb-storage 01-01 08:00:02.488 1 1 I usbcore : registered new interface driver ums-alauda 01-01 08:00:02.488 1 1 I usbcore : registered new interface driver ums-cypress 01-01 08:00:02.488 1 1 I usbcore : registered new interface driver ums-datafab 01-01 08:00:02.488 1 1 I usbcore : registered new interface driver ums_eneub6250 01-01 08:00:02.488 1 1 I usbcore : registered new interface driver ums-freecom 01-01 08:00:02.488 1 1 I usbcore : registered new interface driver ums-isd200 01-01 08:00:02.488 1 1 I usbcore : registered new interface driver ums-jumpshot 01-01 08:00:02.488 1 1 I usbcore : registered new interface driver ums-karma 01-01 08:00:02.488 1 1 I usbcore : registered new interface driver ums-onetouch 01-01 08:00:02.488 1 1 I usbcore : registered new interface driver ums-realtek 01-01 08:00:02.488 1 1 I usbcore : registered new interface driver ums-sddr09 01-01 08:00:02.488 1 1 I usbcore : registered new interface driver ums-sddr55 01-01 08:00:02.488 1 1 I usbcore : registered new interface driver ums-usbat 01-01 08:00:02.488 1 1 I usbcore : registered new interface driver xpad 01-01 08:00:02.488 1 1 I usbcore : registered new interface driver usb_acecad 01-01 08:00:02.488 1 1 I usbcore : registered new interface driver aiptek 01-01 08:00:02.488 1 1 I usbcore : registered new interface driver gtco 01-01 08:00:02.488 1 1 I usbcore : registered new interface driver hanwang 01-01 08:00:02.488 1 1 I usbcore : registered new interface driver kbtab 01-01 08:00:02.489 1 1 E axp2101_pek: axp2101-pek can not register without irq 01-01 08:00:02.496 1 1 W axp2101-pek: probe of axp2101-pek.0 failed with error -22 01-01 08:00:02.496 1 1 E sunxi-rtc 7000000.rtc: reset_control_get() failed 01-01 08:00:02.503 1 1 W sunxi-rtc 7000000.rtc: Fail to get clock 'rtc-spi' 01-01 08:00:02.503 1 1 I sunxi-rtc 7000000.rtc: errata__fix_alarm_day_reg_default_value(): ALARM0_DAY_REG=0, set it to 1 01-01 08:00:02.503 1 1 I sunxi-rtc 7000000.rtc: registered as rtc0 01-01 08:00:02.503 1 1 I sunxi-rtc 7000000.rtc: setting system clock to 1970-01-01T00:00:02 UTC (2) 01-01 08:00:02.503 1 1 I sunxi-rtc 7000000.rtc: sunxi rtc probed 01-01 08:00:02.504 1 1 I : i2c /dev entries driver 01-01 08:00:02.504 1 1 I : IR NEC protocol handler initialized 01-01 08:00:02.504 1 1 I : IR RC5(x/sz) protocol handler initialized 01-01 08:00:02.504 1 1 I uvcvideo: Unable to create debugfs directory 01-01 08:00:02.504 1 1 I usbcore : registered new interface driver uvcvideo 01-01 08:00:02.504 1 1 I : USB Video Class driver (1.1.1) 01-01 08:00:02.504 1 1 D : sunxi cedar version 1.1 01-01 08:00:02.504 1 1 I sunxi-cedar 1c0e000.ve: Adding to iommu group 0 01-01 08:00:02.504 1 1 D VE : install start!!! 01-01 08:00:02.504 1 1 I VE : cedar-ve the get irq is 20 01-01 08:00:02.504 1 1 D VE : install end!!! 01-01 08:00:02.505 1 1 I sunxi-cedar soc@3000000: ve1@1c0e000: Adding to iommu group 0 01-01 08:00:02.505 1 1 I VE : device ve1 just use to add iommu master 01-01 08:00:02.505 1 1 I sunxi-wdt 30090a0.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) 01-01 08:00:02.505 1 1 I device-mapper: uevent: version 1.0.3 01-01 08:00:02.506 1 1 I device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com 01-01 08:00:02.507 1 1 I hidraw : raw HID events driver (C) Jiri Kosina 01-01 08:00:02.509 1 1 I usbcore : registered new interface driver usbhid 01-01 08:00:02.509 1 1 I usbhid : USB HID core driver 01-01 08:00:02.509 1 1 I ashmem : initialized 01-01 08:00:02.510 1 1 I optee : probing for conduit method from DT. 01-01 08:00:02.510 1 1 I optee : revision 2.5 01-01 08:00:02.510 1 1 I optee : initialized driver 01-01 08:00:02.510 1 1 D : drm_base=0x40000000 01-01 08:00:02.510 1 1 D : drm_size=0x0 01-01 08:00:02.510 1 1 D : tee_base=0x2000000 01-01 08:00:02.510 1 1 I usbcore : registered new interface driver snd-usb-audio 01-01 08:00:02.511 1 1 I netem : version 1.3 01-01 08:00:02.511 1 1 I : u32 classifier 01-01 08:00:02.511 1 1 I : input device check on 01-01 08:00:02.511 1 1 I : Actions configured 01-01 08:00:02.511 1 1 I xt_time : kernel timezone is -0000 01-01 08:00:02.511 1 1 I ipip : IPv4 and MPLS over IPv4 tunneling driver 01-01 08:00:02.512 1 1 I gre : GRE over IPv4 demultiplexor driver 01-01 08:00:02.512 1 1 I ip_gre : GRE over IPv4 tunneling driver 01-01 08:00:02.512 1 1 I : IPv4 over IPsec tunneling driver 01-01 08:00:02.513 1 1 I : Initializing XFRM netlink socket 01-01 08:00:02.513 1 1 I : IPsec XFRM device driver 01-01 08:00:02.513 1 1 I NET : Registered protocol family 10 01-01 08:00:02.514 1 1 I : Segment Routing with IPv6 01-01 08:00:02.514 1 1 I mip6 : Mobile IPv6 01-01 08:00:02.515 1 1 I sit : IPv6, IPv4 and MPLS over IPv4 tunneling driver 01-01 08:00:02.515 1 1 I ip6_gre : GRE over IPv6 tunneling driver 01-01 08:00:02.516 1 1 I NET : Registered protocol family 17 01-01 08:00:02.516 1 1 I NET : Registered protocol family 15 01-01 08:00:02.516 1 1 I Bluetooth: RFCOMM TTY layer initialized 01-01 08:00:02.516 1 1 I Bluetooth: RFCOMM socket layer initialized 01-01 08:00:02.516 1 1 I Bluetooth: RFCOMM ver 1.11 01-01 08:00:02.516 1 1 I Bluetooth: HIDP (Human Interface Emulation) ver 1.2 01-01 08:00:02.516 1 1 I Bluetooth: HIDP socket layer initialized 01-01 08:00:02.516 1 1 I l2tp_core: L2TP core driver, V2.0 01-01 08:00:02.516 1 1 I l2tp_ppp: PPPoL2TP kernel driver, V2.0 01-01 08:00:02.516 1 1 I tipc : Activated (version 2.0.0) 01-01 08:00:02.516 1 1 I NET : Registered protocol family 30 01-01 08:00:02.516 1 1 I tipc : Started in single node mode 01-01 08:00:02.516 1 1 I : registered taskstats version 1 01-01 08:00:02.516 1 1 I : Loading compiled-in X.509 certificates 01-01 08:00:02.516 1 1 I : Key type ._fscrypt registered 01-01 08:00:02.516 1 1 I : Key type .fscrypt registered 01-01 08:00:02.516 1 1 I : Key type fscrypt-provisioning registered 01-01 08:0Gatekeeper_TA_CreateEntryPoint0:02.517 1 1 I : HDMI 2.0 driver init start! 01-01 08:00:02.517 1 1 I : boot_hdmi=false 01-01 08:00:02.518 1 1 I : Can not find the node of esm 01-01 08:00:02.518 1 1 E : ERROR: pinctrl_get for HDMI2.0 DDC fail 01-01 08:00:02.524 1 1 I Get hdmi_power0: aldo1 01-01 08:00:02.524 1 1 W : (NULL device *): deviceless supply aldo1 not found, using dummy regulator 01-01 08:00:02.524 1 1 I Get hdmi_power1: dcdc1 01-01 08:00:02.524 1 1 W : (NULL device *): deviceless supply dcdc1 not found, using dummy regulator 01-01 08:00:02.526 1 1 I : hdmi_cec_init 01-01 08:00:02.526 1 1 I : HDMI2.0 module init end 01-01 08:00:02.526 1 1 E : tv_probe()1574 - of_property_read_string tv_power failed! 01-01 08:00:02.534 1 1 D : tv probe finished! 01-01 08:00:03.160 17 17 I [HDMI receive params]: tv mode: 0xa format:0x0 data bits:0x0 eotf:0x4 cs:0x101 dvi_hdmi:2 range:2 scan:0 aspect_ratio:8 01-01 08:00:03.840 0 0 I [ C0] random: fast init done 01-01 08:00:04.185 17 17 W [DISP] de_rtmx_mgr_apply,line: 456: 01-01 08:00:04.185 17 17 W : ctx->output.hdr_type=0 01-01 08:00:04.185 17 17 W [DISP] de_rtmx_mgr_apply,line: 474: 01-01 08:00:04.185 17 17 W : ctx->output.hdr_type=0 01-01 08:00:04.209 17 17 W [DISP] disp_device_attached_and_enable,line: 235: 01-01 08:00:04.209 17 17 W : attached ok, mgr0<-->dev0 01-01 08:00:04.209 17 17 W [DISP] disp_device_attached_and_enable,line: 248: 01-01 08:00:04.209 17 17 W type : 4,mode:10,fmt:rgb,bits:8bits,eotf:4,cs:257 dvi_hdmi:2, range:2 scan:0 ratio:8 01-01 08:00:04.215 33 33 I sun50iw9-pinctrl 300b000.pinctrl: initialized sunXi PIO driver 01-01 08:00:04.216 33 33 W sun50iw9-pinctrl 300b000.pinctrl: 300b000.pinctrl supply vcc-pc not found, using dummy regulator 01-01 08:00:04.216 33 33 I sunxi-mmc 4022000.sdmmc: SD/MMC/SDIO Host Controller Driver(v4.20 2021-12-17 11:02) 01-01 08:00:04.216 33 33 I sunxi-mmc 4022000.sdmmc: ***ctl-spec-caps*** 308 01-01 08:00:04.216 33 33 E sunxi-mmc 4022000.sdmmc: sdmmc1111 device,check dts 01-01 08:00:04.224 33 33 I sunxi-mmc 4022000.sdmmc: No vdmmc regulator found 01-01 08:00:04.224 33 33 I sunxi-mmc 4022000.sdmmc: No vd33sw regulator found 01-01 08:00:04.224 33 33 I sunxi-mmc 4022000.sdmmc: No vd18sw regulator found 01-01 08:00:04.224 33 33 I sunxi-mmc 4022000.sdmmc: No vq33sw regulator found 01-01 08:00:04.224 33 33 I sunxi-mmc 4022000.sdmmc: No vq18sw regulator found 01-01 08:00:04.224 33 33 W sunxi-mmc 4022000.sdmmc: Cann't get pin bias hs pinstate,check if needed 01-01 08:00:04.225 33 33 I sunxi-mmc 4022000.sdmmc: sdc set ios:clk 0Hz bm PP pm UP vdd 23 width 1 timing LEGACY(SDR12) dt B 01-01 08:00:04.238 33 33 I sunxi-mmc 4022000.sdmmc: sdc set ios:clk 400000Hz bm PP pm ON vdd 23 width 1 timing LEGACY(SDR12) dt B 01-01 08:00:04.250 33 33 I sunxi-mmc 4022000.sdmmc: detmode:alway in(non removable) 01-01 08:00:04.251 33 33 I sunxi-mmc 4020000.sdmmc: SD/MMC/SDIO Host Controller Driver(v4.20 2021-12-17 11:02) 01-01 08:00:04.251 33 33 I sunxi-mmc 4020000.sdmmc: ***ctl-spec-caps*** 8 01-01 08:00:04.251 33 33 E sunxi-mmc 4020000.sdmmc: sdmmc1111 device,check dts 01-01 08:00:04.258 127 127 I sunxi-mmc 4022000.sdmmc: sdc set ios:clk 400000Hz bm PP pm ON vdd 23 width 1 timing LEGACY(SDR12) dt B 01-01 08:00:04.260 33 33 I sunxi-mmc 4020000.sdmmc: No vqmmc regulator found 01-01 08:00:04.260 33 33 I sunxi-mmc 4020000.sdmmc: No vdmmc regulator found 01-01 08:00:04.261 33 33 I sunxi-mmc 4020000.sdmmc: Got CD GPIO 01-01 08:00:04.261 33 33 I sunxi-mmc 4020000.sdmmc: sdc set ios:clk 0Hz bm PP pm UP vdd 23 width 1 timing LEGACY(SDR12) dt B 01-01 08:00:04.261 33 33 I sunxi-mmc 4020000.sdmmc: no vqmmc,Check if there is regulator 01-01 08:00:04.261 127 127 I sunxi-mmc 4022000.sdmmc: sdc set ios:clk 400000Hz bm PP pm ON vdd 23 width 1 timing LEGACY(SDR12) dt B 01-01 08:00:04.262 127 127 I sunxi-mmc 4022000.sdmmc: sdc set ios:clk 400000Hz bm OD pm ON vdd 23 width 1 timing LEGACY(SDR12) dt B 01-01 08:00:04.274 33 33 I sunxi-mmc 4020000.sdmmc: sdc set ios:clk 400000Hz bm PP pm ON vdd 23 width 1 timing LEGACY(SDR12) dt B 01-01 08:00:04.285 33 33 I sunxi-mmc 4020000.sdmmc: detmode:gpio irq 01-01 08:00:04.285 33 33 I sunxi-mmc 4021000.sdmmc: SD/MMC/SDIO Host Controller Driver(v4.20 2021-12-17 11:02) 01-01 08:00:04.285 33 33 I sunxi-mmc 4021000.sdmmc: ***ctl-spec-caps*** 8 01-01 08:00:04.285 33 33 E sunxi-mmc 4021000.sdmmc: sdmmc1111 device,check dts 01-01 08:00:04.292 130 130 I sunxi-mmc 4020000.sdmmc: sdc set ios:clk 0Hz bm PP pm OFF vdd 0 width 1 timing LEGACY(SDR12) dt B 01-01 08:00:04.293 33 33 I sunxi-mmc 4021000.sdmmc: No vdmmc regulator found 01-01 08:00:04.293 33 33 I sunxi-mmc 4021000.sdmmc: No vd33sw regulator found 01-01 08:00:04.293 33 33 I sunxi-mmc 4021000.sdmmc: No vd18sw regulator found 01-01 08:00:04.293 33 33 I sunxi-mmc 4021000.sdmmc: No vq33sw regulator found 01-01 08:00:04.293 33 33 I sunxi-mmc 4021000.sdmmc: No vq18sw regulator found 01-01 08:00:04.293 33 33 W sunxi-mmc 4021000.sdmmc: Cann't get pin bias hs pinstate,check if needed 01-01 08:00:04.294 33 33 I sunxi-mmc 4021000.sdmmc: sdc set ios:clk 0Hz bm PP pm UP vdd 23 width 1 timing LEGACY(SDR12) dt B 01-01 08:00:04.298 127 127 I sunxi-mmc 4022000.sdmmc: sdc set ios:clk 400000Hz bm OD pm ON vdd 23 width 1 timing LEGACY(SDR12) dt B 01-01 08:00:04.298 127 127 I sunxi-mmc 4022000.sdmmc: sdc set ios:clk 400000Hz bm OD pm ON vdd 23 width 1 timing LEGACY(SDR12) dt B 01-01 08:00:04.301 127 127 I sunxi-mmc 4022000.sdmmc: sdc set ios:clk 400000Hz bm OD pm ON vdd 23 width 1 timing LEGACY(SDR12) dt B 01-01 08:00:04.304 33 33 I sunxi-mmc 4021000.sdmmc: sdc set ios:clk 400000Hz bm PP pm ON vdd 23 width 1 timing LEGACY(SDR12) dt B 01-01 08:00:04.315 33 33 I sunxi-mmc 4021000.sdmmc: detmode:manually by software 01-01 08:00:04.315 33 33 W sun50iw9-pinctrl 300b000.pinctrl: 300b000.pinctrl supply vcc-ph not found, using dummy regulator 01-01 08:00:04.315 33 33 E uart0 : get regulator failed 01-01 08:00:04.321 33 33 W uart0 : uart0 supply uart not found, using dummy regulator 01-01 08:00:04.321 33 33 E uart0 : uart0 error to get fifo size property 01-01 08:00:04.328 33 33 I uart0 : ttyAS0 at MMIO 0x5000000 (irq = 43, base_baud = 1500000) is a SUNXI 01-01 08:00:04.328 33 33 W : sw_console_setup()1807 - console setup baud 115200 parity n bits 8, flow n 01-01 08:00:04.328 33 33 I printk : console [ttyAS0] enabled 01-01 08:00:04.328 33 33 I printk : bootconsole [uart8250] disabled 01-01 08:00:04.329 33 33 E uart1 : get regulator failed 01-01 08:00:04.329 0 0 E : [ C0] sunxi-mmc 4021000.sdmmc: smc 2 p1 err, cmd 52, RTO !! 01-01 08:00:04.334 33 33 W uart1 : uart1 supply uart not found, using dummy regulator 01-01 08:00:04.342 127 127 I sunxi-mmc 4022000.sdmmc: sdc set ios:clk 400000Hz bm PP pm ON vdd 23 width 1 timing LEGACY(SDR12) dt B 01-01 08:00:04.342 33 33 I uart1 : ttyAS1 at MMIO 0x5000400 (irq = 44, base_baud = 1500000) is a SUNXI 01-01 08:00:04.343 0 0 E : [ C0] sunxi-mmc 4021000.sdmmc: smc 2 p1 err, cmd 52, RTO !! 01-01 08:00:04.343 33 33 E sun50iw9-pinctrl 300b000.pinctrl: unsupported function io_disabled on pin PA0 01-01 08:00:04.360 130 130 I sunxi-mmc 4021000.sdmmc: sdc set ios:clk 400000Hz bm PP pm ON vdd 23 width 1 timing LEGACY(SDR12) dt B 01-01 08:00:04.360 33 33 E sun50iw9-pinctrl 300b000.pinctrl: unsupported function io_disabled on pin PA1 01-01 08:00:04.370 33 33 E sun50iw9-pinctrl 300b000.pinctrl: unsupported function io_disabled on pin PA2 01-01 08:00:04.380 33 33 E sun50iw9-pinctrl 300b000.pinctrl: unsupported function io_disabled on pin PA3 01-01 08:00:04.390 130 130 I sunxi-mmc 4021000.sdmmc: sdc set ios:clk 400000Hz bm PP pm ON vdd 23 width 1 timing LEGACY(SDR12) dt B 01-01 08:00:04.390 33 33 E sun50iw9-pinctrl 300b000.pinctrl: unsupported function io_disabled on pin PA4 01-01 08:00:04.400 127 127 E sunxi-mmc 4022000.sdmmc: avoid to switch power_off_notification to POWERED_ON(0x01) 01-01 08:00:04.410 127 127 E sunxi-mmc 4022000.sdmmc: avoid to switch power_off_notification to POWERED_ON(0x01) 01-01 08:00:04.421 130 130 W sunxi-mmc 4021000.sdmmc: card claims to support voltages below defined range 01-01 08:00:04.421 33 33 E sun50iw9-pinctrl 300b000.pinctrl: unsupported function io_disabled on pin PA5 01-01 08:00:04.431 127 127 E sunxi-mmc 4022000.sdmmc: avoid to switch power_off_notification to POWERED_ON(0x01) 01-01 08:00:04.441 33 33 E sun50iw9-pinctrl 300b000.pinctrl: unsupported function io_disabled on pin PA6 01-01 08:00:04.451 127 127 E sunxi-mmc 4022000.sdmmc: avoid to switch power_off_notification to POWERED_ON(0x01) 01-01 08:00:04.462 33 33 E sun50iw9-pinctrl 300b000.pinctrl: unsupported function io_disabled on pin PA7 01-01 08:00:04.472 33 33 E sun50iw9-pinctrl 300b000.pinctrl: unsupported function io_disabled on pin PA8 01-01 08:00:04.482 33 33 E sun50iw9-pinctrl 300b000.pinctrl: unsupported function io_disabled on pin PA9 01-01 08:00:04.491 127 127 I sunxi-mmc 4022000.sdmmc: sdc set ios:clk 400000Hz bm PP pm ON vdd 23 width 8 timing LEGACY(SDR12) dt B 01-01 08:00:04.492 33 33 W sun50iw9-pinctrl 300b000.pinctrl: 300b000.pinctrl supply vcc-pa not found, using dummy regulator 01-01 08:00:04.492 33 33 I : sunxi gmac driver's version: 1.0.0 01-01 08:00:04.492 33 33 I gmac-power0: NULL 01-01 08:00:04.492 33 33 I gmac-power1: NULL 01-01 08:00:04.492 33 33 I gmac-power2: NULL 01-01 08:00:04.493 33 33 E sunxi_ir_startup: get ir protocol failed 01-01 08:00:04.494 33 33 I : Registered IR keymap rc_map_sunxi 01-01 08:00:04.500 127 127 I sunxi-mmc 4022000.sdmmc: sdc set ios:clk 400000Hz bm PP pm ON vdd 23 width 8 timing MMC-HS200 dt B 01-01 08:00:04.500 33 33 I rc0 : sunxi-ir as /devices/platform/soc@3000000/7040000.s_cir/rc/rc0 01-01 08:00:04.500 33 33 I input : sunxi-ir as /devices/platform/soc@3000000/7040000.s_cir/rc/rc0/s_cir_rx 01-01 08:00:04.500 127 127 I sunxi-mmc 4022000.sdmmc: sdc set ios:clk 100000000Hz bm PP pm ON vdd 23 width 8 timing MMC-HS200 dt B 01-01 08:00:04.501 127 127 I sunxi-mmc 4022000.sdmmc: sdc set ios:clk 100000000Hz bm PP pm ON vdd 23 width 8 timing MMC-HS(SDR20) dt B 01-01 08:00:04.501 127 127 I sunxi-mmc 4022000.sdmmc: sdc set ios:clk 52000000Hz bm PP pm ON vdd 23 width 8 timing MMC-HS(SDR20) dt B 01-01 08:00:04.502 127 127 I sunxi-mmc 4022000.sdmmc: sdc set ios:clk 50000000Hz bm PP pm ON vdd 23 width 8 timing MMC-HS400 dt B 01-01 08:00:04.502 127 127 I sunxi-mmc 4022000.sdmmc: sdc set ios:clk 100000000Hz bm PP pm ON vdd 23 width 8 timing MMC-HS400 dt B 01-01 08:00:04.502 33 33 E : failed to get standby led pin assign 01-01 08:00:04.508 33 33 E : failed to get network led pin assign 01-01 08:00:04.514 33 33 E : failed to get gpio_sdcard_reused assign 01-01 08:00:04.520 33 33 I : gpio_pin_1(230) gpio_is_valid 01-01 08:00:04.520 127 127 I mmc0 : new HS400 MMC card at address 0001 01-01 08:00:04.521 127 127 I mmcblk0 : mmc0:0001 AQB11T 14.6 GiB 01-01 08:00:04.521 127 127 I mmcblk0boot0: mmc0:0001 AQB11T partition 1 4.00 MiB 01-01 08:00:04.522 127 127 I mmcblk0boot1: mmc0:0001 AQB11T partition 2 4.00 MiB 01-01 08:00:04.522 127 127 I mmcblk0rpmb: mmc0:0001 AQB11T partition 3 4.00 MiB, chardev (244:0) 01-01 08:00:04.523 33 33 I gpio : 230, name: PH6, ret = 0 01-01 08:00:04.523 33 33 I : gpio-sunxi probe success 01-01 08:00:04.525 33 33 W energy_model: pd0: hertz/watts ratio non-monotonically decreasing: em_cap_state 1 >= em_cap_state0 01-01 08:00:04.525 33 33 D energy_model: Created perf domain 0-3 01-01 08:00:04.525 127 127 I mmcblk0 : p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19 p20 p21 p22 p23 p24 p25 01-01 08:00:04.541 1 1 I sunxi-snd-mach soc@3000000: codec_mach: 5096000.codec <-> soc@3000000:codec_plat mapping ok 01-01 08:00:04.541 1 1 I sunxi-snd-mach soc@3000000: ahub_dam_mach: snd-soc-dummy-dai <-> 5097000.ahub_dam_plat mapping ok 01-01 08:00:04.542 1 1 I sunxi-snd-mach soc@3000000: ahub1_mach: snd-soc-dummy-dai <-> soc@3000000:ahub1_plat mapping ok 01-01 08:00:04.543 1 1 I sunxi-snd-mach soc@3000000: ahub2_mach: snd-soc-dummy-dai <-> soc@3000000:ahub2_plat mapping ok 01-01 08:00:04.544 1 1 I cfg80211: Loading compiled-in X.509 certificates for regulatory database 01-01 08:00:04.545 1 1 I cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' 01-01 08:00:04.545 34 34 W platform regulatory.0: Direct firmware load for regulatory.db failed with error -2 01-01 08:00:04.545 34 34 W platform regulatory.0: Falling back to sysfs fallback for: regulatory.db 01-01 08:00:04.545 1 1 W clk : Not disabling unused clocks 01-01 08:00:04.545 1 1 E : get_key_map_info()187 - Failed to find "oe" in dts. 01-01 08:00:04.553 0 0 E : [ C0] sunxi-i2c sunxi-i2c5: SLA+W has been transmitted; ACK not received 01-01 08:00:04.562 1 1 E sunxi-i2c5: engine-mode: xfer failed(dev addr:0x10) 01-01 08:00:04.570 1 1 I : of_property_read_string ac200.tv_regulator_name fail 01-01 08:00:04.570 1 1 E : [ac200] get ave_regulator_name failed! 01-01 08:00:04.576 1 1 E : [ac200] pwm enable 01-01 08:00:04.581 1 1 I : ALSA device list: 01-01 08:00:04.581 1 1 I : #0: audiocodec 01-01 08:00:04.581 1 1 I : #1: ahubdam 01-01 08:00:04.581 1 1 I : #2: ahubhdmi 01-01 08:00:04.581 1 1 I : #3: ahubi2s2 01-01 08:00:04.581 1 1 W alloc_fd: slot 0 not NULL! 01-01 08:00:04.581 1 1 I : Freeing unused kernel memory: 1024K 01-01 08:00:04.596 1 1 E : Kernel init done 01-01 08:00:04.600 1 1 I : Run /init as init process 01-01 08:00:04.672 1 1 I init : init first stage started! 01-01 08:00:04.673 1 1 I init : Unable to open /lib/modules, skipping module loading. 01-01 08:00:04.673 1 1 I init : Copied ramdisk prop to /second_stage_resources/system/etc/ramdisk/build.prop 01-01 08:00:04.673 1 1 I init : Switching root to '/first_stage_ramdisk' 01-01 08:00:04.674 1 1 I init : [libfs_mgr]ReadFstabFromDt(): failed to read fstab from dt 01-01 08:00:04.676 1 1 I init : Using Android DT directory /proc/device-tree/firmware/android/ 01-01 08:00:04.693 1 1 I init : [libfs_mgr]Invalid ext4 superblock on '/dev/block/by-name/metadata' 01-01 08:00:04.694 1 1 E EXT4-fs (mmcblk0p19): VFS: Can't find ext4 filesystem 01-01 08:00:04.702 1 1 I init : [libfs_mgr]__mount(source=/dev/block/by-name/metadata,target=/metadata,type=ext4)=-1: Invalid argument 01-01 08:00:04.703 1 1 I random : init: uninitialized urandom read (16 bytes read) 01-01 08:00:04.704 1 1 I init : [libfs_mgr]Created logical partition system_a on device /dev/block/dm-0 01-01 08:00:04.704 1 1 I init : [libfs_mgr]Skipping zero-length logical partition: system_b 01-01 08:00:04.704 1 1 I random : init: uninitialized urandom read (16 bytes read) 01-01 08:00:04.705 1 1 I random : init: uninitialized urandom read (16 bytes read) 01-01 08:00:04.711 1 1 I EXT4-fs (dm-0): mounted filesystem without journal. Opts: barrier=1 01-01 08:00:04.718 1 1 I EXT4-fs (dm-1): mounted filesystem without journal. Opts: barrier=1 01-01 08:00:04.721 1 1 I EXT4-fs (dm-3): mounted filesystem without journal. Opts: barrier=1 01-01 08:00:04.724 1 1 I EXT4-fs (dm-2): mounted filesystem without journal. Opts: barrier=1 01-01 08:00:04.730 1 1 I newfs_msdos: executing /system/bin/newfs_msdos failed: No such file or directory 01-01 08:00:04.731 1 1 I newfs_msdos: newfs_msdos terminated by exit(255) 01-01 08:00:04.732 1 1 E FAT-fs (mmcblk0p23): bogus number of reserved sectors 01-01 08:00:04.739 1 1 I FAT-fs (mmcblk0p23): Can't find a valid FAT filesystem 01-01 08:00:04.770 1 1 W printk : init: 21 output lines suppressed due to ratelimiting 01-01 08:00:04.936 1 1 W init : DM_DEV_STATUS failed for system_ext_a: No such device or address 01-01 08:00:04.936 1 1 E init : Could not update logical partition 01-01 08:00:04.942 1 1 I init : Opening SELinux policy 01-01 08:00:04.952 1 1 I init : Loading SELinux policy 01-01 08:00:04.973 1 1 I SELinux : Permission nlmsg_getneigh in class netlink_route_socket not defined in policy. 01-01 08:00:04.973 1 1 I SELinux : the above unknown classes and permissions will be denied 01-01 08:00:04.973 1 1 I SELinux : policy capability network_peer_controls=1 01-01 08:00:04.973 1 1 I SELinux : policy capability open_perms=1 01-01 08:00:04.973 1 1 I SELinux : policy capability extended_socket_class=1 01-01 08:00:04.973 1 1 I SELinux : policy capability always_check_network=0 01-01 08:00:04.973 1 1 I SELinux : policy capability cgroup_seclabel=0 01-01 08:00:04.973 1 1 I SELinux : policy capability nnp_nosuid_transition=1 01-01 08:00:04.996 173 173 W auditd : type=1403 audit(0.0:2): auid=4294967295 ses=4294967295 lsm=selinux res=1 01-01 08:00:05.008 1 1 I selinux : SELinux: Loaded file_contexts 01-01 08:00:05.008 1 1 I selinux : 01-01 08:00:05.085 1 1 I init : init second stage started! 01-01 08:00:05.086 1 1 E FAT-fs (mmcblk0p23): bogus number of reserved sectors 01-01 08:00:05.094 1 1 I FAT-fs (mmcblk0p23): Can't find a valid FAT filesystem 01-01 08:00:05.094 1 1 E init : mount media_data fail*****Invalid argument 01-01 08:00:05.160 1 1 I init : Using Android DT directory /proc/device-tree/firmware/android/ 01-01 08:00:05.167 1 1 W init : Overriding previous property 'persist.sys.usb.config':'none' with new value 'adb' 01-01 08:00:05.168 1 1 W init : Overriding previous property 'persist.sys.usb.config':'adb' with new value 'none' 01-01 08:00:05.168 1 1 W init : Couldn't load property file '/vendor/default.prop': open() failed: No such file or directory: No such file or directory 01-01 08:00:05.174 1 1 W init : Couldn't load property file '/odm_dlkm/etc/build.prop': open() failed: No such file or directory: No such file or directory 01-01 08:00:05.176 1 1 W init : Couldn't load property file '/oem/build.prop': open() failed: No such file or directory: No such file or directory 01-01 08:00:05.177 1 1 E init : Could not set 'ro.boot.dynamic_partitions' to 'true' while loading .prop filesRead-only property was already set 01-01 08:00:05.191 1 1 E init : Could not set 'ro.boot.dynamic_partitions_retrofit' to 'true' while loading .prop filesRead-only property was already set 01-01 08:00:05.328 1 1 E cgroup1 : Unknown subsys name 'blkio' 01-01 08:00:05.337 1 1 E cgroup1 : Unknown subsys name 'memory' 01-01 08:00:06.010 175 175 W SELinux : Multiple same specifications for softwinner\.multiir. 01-01 08:00:05.548 161 161 I ueventd : ueventd started! 01-01 08:00:06.011 177 177 I SELinux : SELinux: Loaded service_contexts from: 01-01 08:00:06.011 177 177 I SELinux : /vendor/etc/selinux/vndservice_contexts 01-01 08:00:05.553 161 161 I selinux : SELinux: Loaded file_contexts 01-01 08:00:05.553 161 161 I selinux : 01-01 08:00:05.553 161 161 I ueventd : Parsing file /system/etc/ueventd.rc... 01-01 08:00:05.553 161 161 I ueventd : Added '/vendor/etc/ueventd.rc' to import list 01-01 08:00:05.553 161 161 I ueventd : Added '/odm/etc/ueventd.rc' to import list 01-01 08:00:05.554 161 161 I ueventd : Parsing file /vendor/etc/ueventd.rc... 01-01 08:00:05.554 161 161 I ueventd : Unable to read config file '/vendor/etc/ueventd.rc': open() failed: No such file or directory 01-01 08:00:05.554 161 161 I ueventd : Parsing file /odm/etc/ueventd.rc... 01-01 08:00:05.554 161 161 I ueventd : Unable to read config file '/odm/etc/ueventd.rc': open() failed: No such file or directory 01-01 08:00:05.797 158 158 I sunxi-rfkill soc@3000000: rfkill: module version: v1.0.9 01-01 08:00:05.797 158 158 W sunxi-rfkill soc@3000000: rfkill: pinctrl_lookup_state(default) failed! return ffffffffffffffed 01-01 08:00:05.797 158 158 E sunxi-rfkill soc@3000000: rfkill: get gpio chip_en failed 01-01 08:00:05.805 158 158 E sunxi-rfkill soc@3000000: rfkill: get gpio power_en failed 01-01 08:00:05.813 158 158 I sunxi-rfkill soc@3000000: rfkill: wlan_busnum (1) 01-01 08:00:05.813 158 158 W sunxi-rfkill soc@3000000: rfkill: Missing wlan_power. 01-01 08:00:05.813 158 158 I sunxi-rfkill soc@3000000: rfkill: wlan_regon gpio=210 assert=0 01-01 08:00:05.813 158 158 I sunxi-rfkill soc@3000000: rfkill: wlan_hostwake gpio=207 assert=0 01-01 08:00:05.813 158 158 I sunxi-rfkill soc@3000000: rfkill: wakeup source is enabled 01-01 08:00:05.813 158 158 W sunxi-rfkill soc@3000000: rfkill: Missing bt_power. 01-01 08:00:05.813 158 158 I sunxi-rfkill soc@3000000: rfkill: bt_rst gpio=211 assert=0 01-01 08:00:05.892 124 124 I : hdmi_hpd_sys_config_release 01-01 08:00:05.933 1 1 I : Registered swp emulation handler 01-01 08:00:05.977 173 173 I logd.auditd: start 01-01 08:00:06.013 175 175 I SELinux : SELinux: Loaded service_contexts from: 01-01 08:00:06.013 175 175 I SELinux : /system/etc/selinux/plat_service_contexts 01-01 08:00:06.013 175 175 I SELinux : /system_ext/etc/selinux/system_ext_service_contexts 01-01 08:00:06.013 175 175 I SELinux : /vendor/etc/selinux/vendor_service_contexts 01-01 08:00:06.017 176 176 I hwservicemanager: getFrameworkHalManifest: Reading VINTF information. 01-01 08:00:06.028 176 176 I hwservicemanager: getDeviceHalManifest: Reading VINTF information. 01-01 08:00:06.032 185 185 I format_device: Start format /dev/block/by-name/Reserve0 01-01 08:00:06.033 189 189 I format_device: fork to format /dev/block/by-name/Reserve0 01-01 08:00:06.046 1 1 I make_f2fs: 01-01 08:00:06.046 1 1 I make_f2fs: F2FS-tools: mkfs.f2fs Ver: 1.14.0 (2020-08-24) 01-01 08:00:06.046 1 1 I make_f2fs: 01-01 08:00:06.046 1 1 I make_f2fs: Info: Disable heap-based policy 01-01 08:00:06.046 1 1 I make_f2fs: Info: Debug level = 1 01-01 08:00:06.046 1 1 I make_f2fs: Info: Trim is enabled 01-01 08:00:06.046 1 1 I make_f2fs: Info: Set conf for android 01-01 08:00:06.046 1 1 I make_f2fs: Info: Enable utf8 with casefolding 01-01 08:00:06.046 1 1 I make_f2fs: Info: Enable Project quota 01-01 08:00:06.048 1 1 I make_f2fs: Info: No support kernel version! 01-01 08:00:06.049 176 176 I hwservicemanager: getDeviceHalManifest: Successfully processed VINTF information 01-01 08:00:06.049 176 176 I hwservicemanager: getFrameworkHalManifest: Successfully processed VINTF information 01-01 08:00:06.051 176 176 I hwservicemanager: hwservicemanager is ready now. 01-01 08:00:06.056 185 185 I format_device: format /dev/block/by-name/Reserve0 ok

      目前排查到应该是sdio问题,sdio3.0的话无法注册wifi,sdio2.0可以注册,但是项目需要支持sdio3.0的,目前是安卓12内核5.4的,sdio3.0怎么才能用呢

      2
    • C

      关于全志H6的uboot+内核编译+rootf所遇到的问题
      H/F/TV Series • Posted at • cjy12123

      0 Votes
      2 Replies
      993 Views

      T Replied at

      我什么时候能做出这样的板子啊,加油

      2
    • L

      设备驱动调试,sys_config.fex文件修改后编译内核,文件内容变回未修改的状态
      创龙科技专区 • Posted at • lgzlgzlgz

      0 Votes
      2 Replies
      831 Views

      Tronlong_support Replied at

      @lgzlgzlgz 请问使用的是哪一个平台

      2
    • D

      怎么解决这个编译报错
      编译和烧写问题专区 • Posted at • dingzhen

      0 Votes
      2 Replies
      571 Views

      M Replied at

      请问老哥解决了吗,我也遇到这个问题呀

      2
    • L

      求T113-S3/4的最新官方资料和SDK
      T Series • Posted at • lichangjiang

      0 Votes
      2 Replies
      712 Views

      L Replied at

      @anna_wuyan 加了

      2
    • L

      A133 android10.0 rtl8189ftv打不开wifi
      A Series • Posted at • lu1688

      0 Votes
      2 Replies
      900 Views

      L Replied at

      手动加载ko成功,然后在设置打开wifi开关,驱动会被卸载

      [ 1316.238104] RTW: module init start
      [ 1316.242275] RTW: rtl8189fs v5.15.12-7-g4c86cb3ae.20231020
      [ 1316.248600] RTW: build time: Dec 14 2024 10:06:13
      [ 1316.254120] sunxi-wlan soc@03000000:wlan@0: bus_index: 1
      [ 1316.266467] sunxi-wlan soc@03000000:wlan@0: check wlan wlan_power voltage: 3300000
      [ 1316.385043] RTW: platform_wifi_power_on: power up, rescan card.
      [ 1316.385124] sunxi-mmc sdc1: smc 2 p1 err, cmd 7, RTO !!
      [ 1316.391769] sunxi-mmc sdc1: smc 2 p1 err, cmd 7, RTO !!
      [ 1316.397618] sunxi-mmc sdc1: smc 2 p1 err, cmd 7, RTO !!
      [ 1316.403465] sunxi-mmc sdc1: smc 2 p1 err, cmd 7, RTO !!
      [ 1316.410214] mmc2: card 0001 removed
      [ 1316.410720] sunxi-mmc sdc1: sdc set ios:clk 0Hz bm PP pm OFF vdd 0 width 1 timing LEGACY(SDR12) dt B
      [ 1316.411897] sunxi-mmc sdc1: sdc set ios:clk 0Hz bm PP pm UP vdd 21 width 1 timing LEGACY(SDR12) dt B
      [ 1316.412028] sunxi-mmc sdc1: no vqmmc,Check if there is regulator
      [ 1316.426258] sunxi-mmc sdc1: sdc set ios:clk 400000Hz bm PP pm ON vdd 21 width 1 timing LEGACY(SDR12) dt B
      [ 1316.459512] sunxi-mmc sdc1: smc 2 p1 err, cmd 52, RTO !!
      [ 1316.465799] sunxi-mmc sdc1: smc 2 p1 err, cmd 52, RTO !!
      [ 1316.465864] sunxi-mmc sdc1: sdc set ios:clk 400000Hz bm PP pm ON vdd 21 width 1 timing LEGACY(SDR12) dt B
      [ 1316.473051] sunxi-mmc sdc1: sdc set ios:clk 400000Hz bm PP pm ON vdd 21 width 1 timing LEGACY(SDR12) dt B
      [ 1316.494394] RTW: rtw_inetaddr_notifier_register
      [ 1316.500086] RTW: module init ret=0
      [ 1316.512279] sunxi-mmc sdc1: sdc set ios:clk 400000Hz bm PP pm ON vdd 21 width 1 timing SD-HS(SDR25) dt B
      [ 1316.522982] sunxi-mmc sdc1: sdc set ios:clk 50000000Hz bm PP pm ON vdd 21 width 1 timing SD-HS(SDR25) dt B
      [ 1316.533893] sunxi-mmc sdc1: sdc set ios:clk 50000000Hz bm PP pm ON vdd 21 width 4 timing SD-HS(SDR25) dt B
      [ 1316.545403] mmc2: new high speed SDIO card at address 0001
      [ 1316.552631] RTW: == SDIO Card Info ==
      [ 1316.556814] RTW: card: ffffffc079fab800
      [ 1316.561446] RTW: clock: 50000000 Hz
      [ 1316.565648] RTW: timing spec: sd high-speed
      [ 1316.570712] RTW: sd3_bus_mode: FALSE
      [ 1316.575087] RTW: func num: 1
      [ 1316.578603] RTW: func1: ffffffc04bbb0000 (*)
      [ 1316.583692] RTW: max_byte_size: 512
      [ 1316.587858] RTW: ================
      [ 1316.591678] RTW: CHIP TYPE: RTL8188F
      [ 1316.595903] RTW: loadparam, Select P2P interface: iface_id:1
      [ 1316.603086] RTW: Chip Version Info: CHIP_8188F_S2_1T1R_RomVer(0)
      [ 1316.610407] RTW: SetHwReg: hci_sus_state=1
      [ 1316.618182] RTW: SetHwReg: bMacPwrCtrlOn=1
      [ 1316.622785] RTW: SetHwReg: hci_sus_state=2
      [ 1316.627715] RTW: sdio_power_on_check: val_mix:0x0000063f, res:0x0000063f
      [ 1316.635257] RTW: sdio_power_on_check: 0x100 the result of cmd52 and cmd53 is the same.
      [ 1316.644282] RTW: sdio_power_on_check: 0x1B8 test Pass.
      [ 1316.650118] RTW: EEPROM type is E-FUSE
      [ 1316.654999] RTW: hal_EfuseSwitchToBank: Efuse switch bank to 0
      [ 1316.666678] RTW: hal_ReadEFuse_WiFi: data end at address=0x12
      [ 1316.673235] RTW: HW EFUSE
      [ 1316.676278] RTW: 0x000: 29 81 03 CC 00 00 50 00 00 00 04 CC 0A 0C 00 00
      [ 1316.684552] RTW: 0x010: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.692653] RTW: 0x020: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.700771] RTW: 0x030: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.708993] RTW: 0x040: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.717142] RTW: 0x050: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.725264] RTW: 0x060: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.733478] RTW: 0x070: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.741658] RTW: 0x080: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.749706] RTW: 0x090: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.757736] RTW: 0x0A0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.765735] RTW: 0x0B0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.773795] RTW: 0x0C0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.781892] RTW: 0x0D0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.789960] RTW: 0x0E0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.798048] RTW: 0x0F0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.806121] RTW: 0x100: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.814204] RTW: 0x110: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.822808] RTW: 0x120: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.831419] RTW: 0x130: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.839911] RTW: 0x140: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.847921] RTW: 0x150: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.855928] RTW: 0x160: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.863972] RTW: 0x170: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.871984] RTW: 0x180: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.880013] RTW: 0x190: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.888514] RTW: 0x1A0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.897107] RTW: 0x1B0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.905682] RTW: 0x1C0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.913701] RTW: 0x1D0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.921728] RTW: 0x1E0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.929747] RTW: 0x1F0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.937862] RTW: retriveFromFile openFile path:/system/etc/wifi/wifi_efuse_8189fs.map fp=ffffffc058173500
      [ 1316.948595] RTW: retriveFromFile readFile, ret:1421
      [ 1316.954190] RTW: efuse file:/system/etc/wifi/wifi_efuse_8189fs.map, 0x1d0 byte content read
      [ 1316.963701] RTW: EFUSE FILE
      [ 1316.966993] RTW: 0x000: 29 81 03 7C 01 08 28 00 42 07 0D 45 10 00 00 00
      [ 1316.975583] RTW: 0x010: 30 30 30 30 2F 2F 31 31 31 2F 2F 02 FF FF FF FF
      [ 1316.984348] RTW: 0x020: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1316.992600] RTW: 0x030: FF FF FF FF FF FF FF FF FF FF 30 30 30 30 2F 2F
      [ 1317.000685] RTW: 0x040: 31 31 31 2F 2F 02 FF FF FF FF FF FF FF FF FF FF
      [ 1317.008720] RTW: 0x050: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1317.016737] RTW: 0x060: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1317.024766] RTW: 0x070: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1317.032778] RTW: 0x080: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1317.040780] RTW: 0x090: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1317.049390] RTW: 0x0A0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1317.057982] RTW: 0x0B0: FF FF FF FF FF FF FF FF 20 20 25 00 00 00 FF FF
      [ 1317.066496] RTW: 0x0C0: FF 39 20 51 00 00 00 FF 00 FF 10 FF FF FF FF FF
      [ 1317.074636] RTW: 0x0D0: 3E 10 01 02 23 00 00 FF 20 04 4C 02 23 B7 21 02
      [ 1317.082645] RTW: 0x0E0: 0C 00 22 04 00 08 00 32 FF 21 02 0C 00 22 2A 01
      [ 1317.090679] RTW: 0x0F0: 01 00 00 00 00 00 00 00 00 00 00 00 02 00 FF FF
      [ 1317.098688] RTW: 0x100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
      [ 1317.106733] RTW: 0x110: 00 EB 00 6E 01 00 00 00 00 FF 00 E0 4C B7 23 01
      [ 1317.114746] RTW: 0x120: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1317.123298] RTW: 0x130: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1317.131919] RTW: 0x140: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1317.140362] RTW: 0x150: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1317.148385] RTW: 0x160: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1317.156582] RTW: 0x170: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1317.164600] RTW: 0x180: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1317.172625] RTW: 0x190: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1317.180634] RTW: 0x1A0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1317.188666] RTW: 0x1B0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1317.197226] RTW: 0x1C0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1317.205771] RTW: 0x1D0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1317.214279] RTW: 0x1E0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1317.222287] RTW: 0x1F0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
      [ 1317.230675] RTW: hal_EfuseSwitchToBank: Efuse switch bank to 0
      [ 1317.240566] RTW: hal_ReadEFuse_WiFi: data end at address=0x12
      [ 1317.247075] RTW: rtw_read_macaddr_from_file /data/wifimac.txt is not readable
      [ 1317.255430] RTW: kfree Pwr Trim flag:1
      [ 1317.259634] RTW: bb_gain:0
      [ 1317.262724] RTW: rtl8188f_FirmwareDownload((null)) tmp_ps=3
      [ 1317.269106] RTW: rtl8188f_FirmwareDownload fw: FW_NIC, size: 20874
      [ 1317.276159] RTW: rtl8188f_FirmwareDownload: fw_ver=f fw_subver=0002 sig=0x88f1, Month=05, Date=10, Hour=11, Minute=05
      [ 1317.288224] RTW: rtl8188f_FirmwareDownload(): Shift for fw header!
      [ 1317.295327] RTW: rtl8188f_FirmwareDownload by IO write!
      [ 1317.440421] RTW: polling_fwdl_chksum: Checksum report OK! (1, 0ms), REG_MCUFWDL:0x07050105
      [ 1317.450028] RTW: _8051Reset8188: Finish
      [ 1317.463563] RTW: _FWFreeToGo: Polling FW ready OK! (131, 13ms), REG_MCUFWDL:0x070501c6
      [ 1317.472459] RTW: rtl8188f_FirmwareDownload: DLFW OK !
      [ 1317.478169] RTW: rtl8188f_FirmwareDownload success. write_fw:1, 183ms
      [ 1317.485473] RTW: <=== rtl8188f_FirmwareDownload()
      [ 1317.491188] RTW: hal_read_mac_hidden_rpt OK! (1, 0ms), fwdl:1, id:0x19
      [ 1317.499057] RTW: SetHwReg: bMacPwrCtrlOn=0
      [ 1317.503671] RTW: SetHwReg: hci_sus_state=3
      [ 1317.508932] RTW: SetHwReg: hci_sus_state=0
      [ 1317.513543] RTW: rtw_hal_read_chip_info in 903 ms
      [ 1317.518868] RTW: [RF_PATH] ver_id.RF_TYPE:RF_1T1R
      [ 1317.524176] RTW: [RF_PATH] HALSPEC's rf_reg_trx_path_bmp:0x11, rf_reg_path_avail_num:1, max_tx_cnt:1
      [ 1317.534447] RTW: [RF_PATH] PG's trx_path_bmp:0x00, max_tx_cnt:0
      [ 1317.541144] RTW: [RF_PATH] Registry's trx_path_bmp:0x00, tx_path_lmt:0, rx_path_lmt:0
      [ 1317.549961] RTW: [RF_PATH] HALDATA's trx_path_bmp:0x11, max_tx_cnt:1
      [ 1317.557120] RTW: [RF_PATH] HALDATA's rf_type:RF_1T1R, NumTotalRFPath:1
      [ 1317.564477] RTW: rtw_hal_rfpath_init trx_path_bmp:0x11(RF_1T1R), NumTotalRFPath:1, max_tx_cnt:1
      [ 1317.574279] RTW: [TRX_Nss] HALSPEC - tx_nss:1, rx_nss:1
      [ 1317.580180] RTW: [TRX_Nss] Registry - tx_nss:0, rx_nss:0
      [ 1317.586150] RTW: [TRX_Nss] HALDATA - tx_nss:1, rx_nss:1
      [ 1317.592035] RTW: rtw_hal_trxnss_init tx_nss:1, rx_nss:1
      [ 1317.597934] RTW: txpath=0x1, rxpath=0x1
      [ 1317.602273] RTW: txpath_1ss:0x1, num:1
      [ 1317.606520] RTW: devobj_decide_init_chplan alpha2:{255,255}
      [ 1317.612788] RTW: devobj_decide_init_chplan chplan:0x20
      [ 1317.618573] RTW: devobj_decide_init_chplan chplan_6g:0x00
      [ 1317.624657] RTW: devobj_decide_init_chplan disable_sw_chplan:0
      [ 1317.631217] RTW: rtw_rfctl_decide_init_chplan chplan:0x20
      [ 1317.637396] RTW: init_mlme_default_rate_set: support CCK
      [ 1317.643392] RTW: init_mlme_default_rate_set: support OFDM
      [ 1317.650058] RTW: rtw_alloc_macid((null)) if1, mac_addr:ff:ff:ff:ff:ff:ff macid:1
      [ 1317.658345] RTW: rtw_init_pwrctrl_priv: IPS_mode=1, LPS_mode=2, LPS_level=1
      [ 1317.666502] RTW: Init_ODM_ComInfo bb_opmode set to 0
      [ 1317.672072] RTW: IQK FW offload:disable
      [ 1317.676370] RTW: Init_ODM_ComInfo_8188f(): Fv=0 Cv=12
      [ 1317.682095] RTW: rtw_regsty_chk_target_tx_power_valid return _FALSE for band:0, path:0, rs:0, t:-1
      [ 1317.692133] RTW: phy_ConfigBBWithPgParaFile(): No File PHY_REG_PG.txt, Load from HWImg Array!
      [ 1317.701687] RTW: default power by rate loaded
      [ 1317.706584] RTW: rtw_chset_apply_from_rtk_priv chplan:0x20 chplan_6g:0x00
      [ 1317.714189] RTW: rtw_rfctl_chset_apply_regulatory ch num:13
      [ 1317.720754] RTW: ERROR invalid mac addr:00:00:00:00:00:00, assign random MAC
      [ 1317.728624] RTW: rtw_macaddr_cfg mac addr:00:e0:4c:64:1e:8e
      [ 1317.734989] RTW: bDriverStopped:True, bSurpriseRemoved:False, bup:0, hw_init_completed:0
      [ 1317.744286] RTW: loadparam, Select P2P interface: iface_id:1
      [ 1317.750955] RTW: init_mlme_default_rate_set: support CCK
      [ 1317.756988] RTW: init_mlme_default_rate_set: support OFDM
      [ 1317.764547] RTW: rtw_alloc_macid((null)) if2, mac_addr:ff:ff:ff:ff:ff:ff macid:1
      [ 1317.772969] RTW: rtw_drv_add_vir_if if2 mac_addr : 02:e0:4c:64:1e:8e
      [ 1317.780254] RTW: rtw_cfg80211_init_wiphy_band:rf_type=0
      [ 1317.786331] RTW: [HT] HAL Support STBC = 0x01
      [ 1317.791369] RTW: rtw_wiphy_alloc(phy2)
      [ 1317.795722] RTW: rtw_wdev_alloc(padapter=ffffff80096fa000)
      [ 1317.802074] RTW: rtw_wdev_alloc(padapter=ffffff8009efc000)
      [ 1317.808310] RTW: rtw_wiphy_register(phy2)
      [ 1317.812912] RTW: Register RTW cfg80211 vendor cmd(0x67) interface
      [ 1317.821955] RTW: rtw_ndev_init(wlan0) if1 mac_addr=00:e0:4c:64:1e:8e
      [ 1317.830096] RTW: rtw_ndev_notifier_call(wlan0) state:16
      [ 1317.841535] RTW: cfg80211_rtw_get_txpower(wlan0) total max: -10000 mbm
      [ 1317.849231] RTW: rtw_ndev_notifier_call(wlan0) state:5
      [ 1317.855174] RTW: rtw_ndev_init(wlan1) if2 mac_addr=02:e0:4c:64:1e:8e
      [ 1317.863095] RTW: rtw_ndev_notifier_call(wlan1) state:16
      [ 1317.872213] RTW: cfg80211_rtw_get_txpower(wlan1) total max: -10000 mbm
      [ 1317.879784] RTW: rtw_ndev_notifier_call(wlan1) state:5
      [ 1326.138311] healthd: battery none chg=au
      [ 1329.325934] logd: logdr: UID=2000 GID=2000 PID=4821 b tail=0 logMask=19 pid=0 start=0ns timeout=0ns
      [ 1336.164880] healthd: battery none chg=au
      [ 1344.895128] healthd: battery none chg=au
      [ 1345.283140] logd: logdr: UID=2000 GID=2000 PID=4853 b tail=0 logMask=19 pid=0 start=0ns timeout=0ns
      [ 1346.190467] healthd: battery none chg=au
      [ 1346.535754] init: Received control message 'interface_start' for 'android.hardware.wifi@1.0::IWifi/default' from pid: 1674 (/system/bin/hwservicemanager)
      [ 1346.553535] init: starting service 'vendor.wifi_hal_legacy'...
      [ 1346.563990] init: Received control message 'interface_start' for 'android.hardware.wifi@1.0::IWifi/default' from pid: 1674 (/system/bin/hwservicemanager)
      [ 1346.637086] init: Received control message 'interface_start' for 'android.hardware.wifi.supplicant@1.0::ISupplicant/default' from pid: 1674 (/system/bin/hwservicemanager)
      [ 1346.656749] init: starting service 'wpa_supplicant'...
      [ 1346.672327] init: Created socket '/dev/socket/wpa_wlan0', mode 660, user 1010, group 1010
      [ 1346.846853] RTW: rtw_ndev_notifier_call(wlan0) state:13
      [ 1346.852843] RTW: _netdev_open(wlan0) , bup=0
      [ 1346.858775] RTW: FW does not exist before power on!!
      [ 1346.864777] RTW: SetHwReg: hci_sus_state=1
      [ 1346.872262] RTW: SetHwReg: bMacPwrCtrlOn=1
      [ 1346.876947] RTW: SetHwReg: hci_sus_state=2
      [ 1346.882198] RTW: sdio_power_on_check: val_mix:0x0000063f, res:0x0000063f
      [ 1346.889806] RTW: sdio_power_on_check: 0x100 the result of cmd52 and cmd53 is the same.
      [ 1346.898934] RTW: sdio_power_on_check: 0x1B8 test Pass.
      [ 1346.904801] RTW: Power on ok!
      [ 1346.908367] RTW: rtl8188f_FirmwareDownload(wlan0) tmp_ps=3
      [ 1346.914525] RTW: rtl8188f_FirmwareDownload fw: FW_NIC, size: 20874
      [ 1346.921459] RTW: rtl8188f_FirmwareDownload: fw_ver=f fw_subver=0002 sig=0x88f1, Month=05, Date=10, Hour=11, Minute=05
      [ 1346.933320] RTW: rtl8188f_FirmwareDownload(): Shift for fw header!
      [ 1346.940290] RTW: rtl8188f_FirmwareDownload by IO write!
      [ 1347.129170] RTW: polling_fwdl_chksum: Checksum report OK! (1, 0ms), REG_MCUFWDL:0x00050105
      [ 1347.138917] RTW: _8051Reset8188: Finish
      [ 1347.152456] RTW: _FWFreeToGo: Polling FW ready OK! (93, 13ms), REG_MCUFWDL:0x000501c6
      [ 1347.161256] RTW: rtl8188f_FirmwareDownload: DLFW OK !
      [ 1347.167046] RTW: rtl8188f_FirmwareDownload success. write_fw:1, 226ms
      [ 1347.174365] RTW: <=== rtl8188f_FirmwareDownload()
      [ 1347.179790] RTW: HalDetectPwrDownMode(): PDN=0
      [ 1347.184877] RTW: Set RF Chip ID to RF_6052 and RF type to 0.
      [ 1347.194465] RTW: WARN init_reg_0x63c:0x10100a0a != 0x0e0e0a0a
      [ 1347.534905] RTW: rtw_hal_set_macaddr_port wlan0- hw port(0) mac_addr =00:e0:4c:64:1e:8e
      [ 1347.544129] RTW: rtw_hal_set_macaddr_port wlan1- hw port(1) mac_addr =02:e0:4c:64:1e:8e
      [ 1347.553565] RTW: [HW_VAR_ENABLE_RX_BAR] 0x6A2=0x500
      [ 1347.562943] RTW: rtw_hal_set_macaddr_port wlan0- hw port(0) mac_addr =00:e0:4c:64:1e:8e
      [ 1347.572282] RTW: #### hw_var_set_opmode() -4562 hw_port(0) mode = 2 ####
      [ 1347.580207] RTW: rtw_rf_get_kfree_tx_gain_offset path:0, ch:6, bb_gain_sel:0, kfree_offset:0
      [ 1347.590353] RTW: kfree gain_offset 0x55:0x82060 RTW: after :0x2060
      [ 1347.598289] RTW: MAC Address = 00:e0:4c:64:1e:8e
      [ 1347.603473] RTW: rtw_start_drv_threads(wlan0) enter
      [ 1347.609478] RTW: rtw_start_drv_threads(wlan0) start RTW_XMIT_THREAD
      [ 1347.618828] RTW: rtw_start_drv_threads(wlan0) start RTW_CMD_THREAD
      [ 1347.626135] RTW: rtl8188f_start_thread(wlan0) start RTWHALXT
      [ 1347.632671] RTW: start rtl8188fs_xmit_thread(wlan0)
      [ 1347.633306] RTW: _netdev_vir_if_open(wlan1) , bup=0
      [ 1347.633311] RTW: rtw_start_drv_threads(wlan1) enter
      [ 1347.633316] RTW: rtl8188f_start_thread(wlan1) start RTWHALXT
      [ 1347.633471] RTW: _netdev_vir_if_open(wlan1) (bup=1) exit
      [ 1347.633476] RTW: -871x_drv - drv_open, bup=1
      [ 1347.633478] RTW: start rtl8188fs_xmit_thread(wlan1)
      [ 1347.633581] RTW: cfg80211_rtw_set_power_mgmt(wlan0) enabled:1, timeout:-1
      [ 1347.633609] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
      [ 1347.633616] RTW: rtw_ndev_notifier_call(wlan0) state:1
      [ 1347.653312] RTW: cfg80211_rtw_get_txpower(wlan1) total max: -10000 mbm
      [ 1347.653322] RTW: cfg80211_rtw_get_txpower(wlan0) total max: -10000 mbm
      [ 1347.694907] RTW: cfg80211_rtw_get_txpower(wlan0) total max: -10000 mbm
      [ 1347.695087] RTW: cfg80211_rtw_get_txpower(wlan0) total max: -10000 mbm
      [ 1347.696117] RTW: cfg80211_rtw_get_txpower(wlan0) total max: -10000 mbm
      [ 1347.696333] RTW: cfg80211_rtw_get_txpower(wlan0) total max: -10000 mbm
      [ 1347.703944] RTW: cfg80211_rtw_get_txpower(wlan0) total max: -10000 mbm
      [ 1347.704179] RTW: rtw_ndev_notifier_call(wlan0) state:4
      [ 1347.734496] RTW: cfg80211_rtw_flush_pmksa(wlan0)
      [ 1347.764216] RTW: rtw_ndev_notifier_call(wlan0) state:9
      [ 1347.770135] RTW: netdev_close(wlan0) , bup=1
      [ 1347.774946] RTW: (2)871x_drv - drv_close, bup=1, hw_init_completed=_TRUE
      [ 1347.782694] RTW: rtw_hal_set_bssid wlan0- hw port -0 BSSID: 00:00:00:00:00:00
      [ 1347.790813] RTW: rtw_set_rts_bw connect_to_8812=0,enable=1
      [ 1347.797016] RTW: rtw_phydm_update_ap_vendor_ie ODM_CMNINFO_HUAWEI_HWID:0 ATHEROS_HWID:0
      [ 1347.805997] RTW: rtw_phydm_update_ap_vendor_ie ODM_CMNINFO_BROADCOM_HWID:0 ODM_CMNINFO_RALINK_HWID:0
      [ 1347.816461] RTW: rtw_cfg80211_indicate_disconnect(wlan0) ,reason = 0
      [ 1347.823702] RTW: rtw_cfg80211_indicate_disconnect(wlan0) call cfg80211_disconnected, reason:0
      [ 1347.833425] RTW: rtw_reset_securitypriv(wlan0) - End to Disconnect
      [ 1347.840394] RTW: rtw_free_assoc_resources-wlan0 tgt_network MacAddress=00:00:00:00:00:00 ssid=
      [ 1347.850092] RTW: ERROR Free disconnecting network of scanned_queue failed due to pwlan == NULL
      [ 1347.850092]
      [ 1347.861490] RTW: -871x_drv - drv_close, bup=1
      [ 1347.866546] RTW: rtw_ndev_notifier_call(wlan0) state:2
      [ 1347.872508] RTW: cfg80211_rtw_del_key(wlan0) key_index=0, addr= (null)
      [ 1347.880752] RTW: cfg80211_rtw_del_key(wlan0) key_index=1, addr= (null)
      [ 1347.888961] RTW: cfg80211_rtw_del_key(wlan0) key_index=2, addr= (null)
      [ 1347.897511] RTW: cfg80211_rtw_del_key(wlan0) key_index=3, addr= (null)
      [ 1347.905754] RTW: cfg80211_rtw_del_key(wlan0) key_index=4, addr= (null)
      [ 1347.914103] RTW: cfg80211_rtw_del_key(wlan0) key_index=5, addr= (null)
      [ 1347.925942] RTW: cfg80211_rtw_get_txpower(wlan1) total max: -10000 mbm
      [ 1347.933320] RTW: cfg80211_rtw_get_txpower(wlan0) total max: -10000 mbm
      [ 1347.944495] RTW: module exit start
      [ 1347.948601] RTW: rtw_wdev_unregister(wdev=ffffffc04e76d000)
      [ 1347.955804] RTW: cfg80211_rtw_get_txpower(wlan0) total max: -10000 mbm
      [ 1347.979733] RTW: rtw_ndev_notifier_call(wlan0) state:6
      [ 1347.985562] RTW: rtw_ndev_uninit(wlan0) if1
      [ 1347.998870] init: Service 'wpa_supplicant' (pid 4864) exited with status 0
      [ 1348.006652] init: Sending signal 9 to service 'wpa_supplicant' (pid 4864) process group...
      [ 1348.016349] libprocessgroup: Successfully killed process cgroup uid 0 pid 4864 in 0ms
      [ 1348.026575] RTW: rtw_ndev_notifier_call(wlan0) state:17
      [ 1348.052878] RTW: rtw_wdev_unregister(wdev=ffffffc04e76ce00)
      [ 1348.059369] RTW: cfg80211_rtw_get_txpower(wlan1) total max: -10000 mbm
      [ 1348.096592] RTW: rtw_ndev_notifier_call(wlan1) state:6
      [ 1348.102538] RTW: rtw_ndev_uninit(wlan1) if2
      [ 1348.139567] RTW: rtw_ndev_notifier_call(wlan1) state:17
      [ 1348.166248] RTW: rtw_wiphy_unregister(phy2)
      [ 1348.171027] RTW: Vendor: Unregister RTW cfg80211 vendor interface
      [ 1348.193209] RTW: rtw_pm_set_ips IPS mode: IPS_NONE
      [ 1348.198738] RTW: rtw_cmd_thread(wlan0) Exit
      [ 1348.203776] RTW: rtw_drv_stop_vir_if(wlan1) enter
      [ 1348.209294] RTW: rtw_stop_drv_threads(wlan1) enter
      [ 1348.214761] RTW: rtl8188fs_xmit_thread(wlan1) Exit
      [ 1348.220337] RTW: ==> rtw_dev_unload(wlan0)
      [ 1348.225042] RTW: rtw_stop_drv_threads(wlan0) enter
      [ 1348.230582] RTW: rtw_xmit_thread(wlan0) Exit
      [ 1348.235476] RTW: rtl8188fs_xmit_thread(wlan0) Exit
      [ 1348.241031] RTW: CheckIPSStatus(): Read 0x100=0xff 0x86=0x00
      [ 1348.247503] RTW: rtw_dev_unload: driver not in IPS
      [ 1348.261738] RTW: SetHwReg: bMacPwrCtrlOn=0
      [ 1348.266381] RTW: SetHwReg: hci_sus_state=3
      [ 1348.271904] RTW: SetHwReg: hci_sus_state=0
      [ 1348.276557] RTW: <== rtw_dev_unload(wlan0)
      [ 1348.281190] RTW: +r871xu_dev_remove, hw_init_completed=0
      [ 1348.287718] RTW: rtw_wdev_free(wdev=ffffffc04e76d000)
      [ 1348.293475] RTW: rtw_drv_free_vir_if(wlan1)
      [ 1348.298580] RTW: rtw_wdev_free(wdev=ffffffc04e76ce00)
      [ 1348.304470] RTW: rtw_wiphy_free(phy2)
      [ 1348.308807] sunxi-wlan soc@03000000:wlan@0: bus_index: 1
      [ 1348.314826] platform_wifi_power_off===== 1
      [ 1348.420687] RTW: platform_wifi_power_off: remove card, power off.
      [ 1348.427600] RTW: rtw_inetaddr_notifier_unregister
      [ 1348.449525] RTW: module exit success
      [ 1356.216530] healthd: battery none chg=au
      [ 1366.238860] healthd: battery none chg=au
      [ 1376.269096] healthd: battery none chg=au
      [ 1386.300625] healthd: battery none chg=au
      [ 1396.323567] healthd: battery none chg=au

      --------- beginning of system
      12-18 16:14:24.271 2040 2370 D PackageManager: Instant App installer not found with android.intent.action.INSTALL_INSTANT_APP_PACKAGE
      12-18 16:14:24.271 2040 2370 D PackageManager: Clear ephemeral installer activity
      --------- beginning of main
      12-18 16:14:24.247 1829 3236 I chatty : uid=1041(audioserver) writer expire 4 lines
      12-18 16:14:24.269 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:24.276 2327 3296 D SettingsActivity: Enabled state changed for some tiles, reloading all categories {com.android.settings/com.android.settings.Settings$PowerUsageSummaryActivity},
      12-18 16:14:24.284 2327 4841 W TileUtils: Found com.android.settings.Settings$DataUsageSummaryActivity for intent Intent { act=com.android.settings.action.SETTINGS pkg=com.android.settings } missing metadata com.android.settings.category
      12-18 16:14:24.290 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:24.482 1829 3236 I chatty : uid=1041(audioserver) writer identical 9 lines
      12-18 16:14:24.503 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:24.515 1840 1840 I AW_PowerHAL_Platform: ==NORMAL MODE==
      12-18 16:14:24.515 1840 1840 D AW_PowerHAL: c-s = 18
      12-18 16:14:24.524 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:25.165 1829 3236 I chatty : uid=1041(audioserver) writer identical 30 lines
      12-18 16:14:25.186 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:25.205 2040 2069 E system_server: No package ID 7f found for ID 0x7f08024a.
      12-18 16:14:25.206 2040 2069 E system_server: No package ID 7f found for ID 0x7f1211a1.
      12-18 16:14:25.206 2040 2069 E system_server: No package ID 7f found for ID 0x7f080249.
      12-18 16:14:25.206 2040 2069 E system_server: No package ID 7f found for ID 0x7f1204e0.
      12-18 16:14:25.206 2040 2069 E system_server: No package ID 7f found for ID 0x7f080248.
      12-18 16:14:25.206 2040 2069 E system_server: No package ID 7f found for ID 0x7f120afa.
      12-18 16:14:25.208 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:25.213 2268 2268 E PhoneInterfaceManager: [PhoneIntfMgr] getCarrierPackageNamesForIntent: No UICC
      12-18 16:14:25.213 2268 2268 D CarrierSvcBindHelper: No carrier app for: 0
      12-18 16:14:25.226 2327 4841 W TileUtils: Found com.android.settings.Settings$DataUsageSummaryActivity for intent Intent { act=com.android.settings.action.SETTINGS pkg=com.android.settings } missing metadata com.android.settings.category
      12-18 16:14:25.229 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:25.235 2040 2040 D DeviceIdleController: find package null
      12-18 16:14:25.248 2040 2140 I InputReader: Reconfiguring input devices. changes=0x00000010
      12-18 16:14:25.250 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:25.269 2040 2040 I Telecom : DefaultDialerCache: Refreshing default dialer for user 0: now null: DDC.oR@AAw
      12-18 16:14:25.286 2040 2069 W VoiceInteractionManagerService: no available voice interaction services found for user 0
      12-18 16:14:26.050 2040 2598 E TaskPersister: File error accessing recents directory (directory doesn't exist?).
      12-18 16:14:27.128 1829 3236 I chatty : uid=1041(audioserver) writer identical 88 lines
      12-18 16:14:27.150 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:27.159 1829 1829 D audio_hw_primary: out_standby
      12-18 16:14:31.546 2327 2327 W SettingsMetricsFeature: action(Pair<Integer, Object>... taggedData) is deprecated, Use action(int, int, int, String, int) instead.
      12-18 16:14:31.549 2040 3190 I WifiService: setWifiEnabled package=com.android.settings uid=1000 enable=true
      12-18 16:14:31.550 2040 2149 D WifiController: StaEnabledState.enter()
      12-18 16:14:31.551 2040 2150 D WifiActiveModeWarden: received a message in WifiDisabledState: { when=-1ms what=0 target=com.android.internal.util.StateMachine$SmHandler }
      12-18 16:14:31.551 2040 2150 D WifiActiveModeWarden: Switching from WifiDisabledState to ClientMode
      12-18 16:14:31.551 2040 2150 D WifiActiveModeWarden: Entering ClientModeActiveState
      12-18 16:14:31.557 1829 3236 D audio_hw_primary: start_output_stream
      12-18 16:14:31.557 1829 3236 V audio_platform: disable backend pcm(direction:PCM_OUT)
      12-18 16:14:31.557 1829 3236 D audio_route: Apply path: out-reset
      12-18 16:14:31.558 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:31.558 1829 3236 D audio_route: Apply path: media-speaker
      12-18 16:14:31.558 1829 3236 D audio_hw_primary: select device(out):pdev:OUT_DULSPK, path:media-speaker
      12-18 16:14:31.559 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:31.559 1829 3236 D audio_hw_primary: +++++++++++++++ start_output_stream: pcm sample_rate: 48000,pcm fmt: 0x00000000,pcm channels: 2
      12-18 16:14:31.560 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:31.560 2040 2150 D WifiClientModeManager: entering IdleState
      12-18 16:14:31.560 2040 2150 D WifiActiveModeWarden: State changed from client mode. state = 2
      12-18 16:14:31.568 2040 2040 D WifiP2pService: Wifi enabled=false, P2P Interface availability=true
      12-18 16:14:31.577 2040 2150 I ServiceManagement: getService: Trying again for android.hardware.wifi@1.0::IWifi/default...
      12-18 16:14:31.638 1835 1990 D sunxihwc: checkPerformance: PerfMonitor total[w]: 75 acquire: 1 submit: 0 release: 74
      12-18 16:14:31.655 4861 4861 I android.hardware.wifi@1.0-service-lazy: Wifi Hal is booting up...
      12-18 16:14:31.656 4861 4861 I android.hardware.wifi@1.0-service-lazy: Registering HAL: android.hardware.wifi@1.3::IWifi with name: default
      12-18 16:14:31.658 2040 2491 D HalDevMgr: IWifi registration notification: fqName=android.hardware.wifi@1.0::IWifi, name=default, preexisting=false
      12-18 16:14:31.658 4861 4861 I ServiceManagement: Registered android.hardware.wifi@1.3::IWifi/default (start delay of 65ms)
      12-18 16:14:31.658 4861 4861 I ServiceManagement: Removing namespace from process name android.hardware.wifi@1.0-service-lazy to wifi@1.0-service-lazy.
      12-18 16:14:31.660 2040 2150 I android_os_HwBinder: HwBinder: Starting thread pool for getting: android.hardware.wifi@1.0::IWifi/default
      12-18 16:14:31.668 4861 4861 D WifiHWInfo: Start to load wireless module hardware info table...
      12-18 16:14:31.668 4861 4861 D WifiHWInfo: Entry [01], ID: 0x00018179, Name: rtl8189es.
      12-18 16:14:31.668 4861 4861 D WifiHWInfo: Entry [02], ID: 0x0001B723, Name: rtl8723bs_vq0.
      12-18 16:14:31.668 4861 4861 D WifiHWInfo: Entry [03], ID: 0x0001B703, Name: rtl8723cs.
      12-18 16:14:31.668 4861 4861 D WifiHWInfo: Entry [04], ID: 0x0001D723, Name: rtl8723ds.
      12-18 16:14:31.668 4861 4861 D WifiHWInfo: Entry [05], ID: 0x00008179, Name: rtl8188etv.
      12-18 16:14:31.668 4861 4861 D WifiHWInfo: Entry [06], ID: 0x00000179, Name: rtl8188eu.
      12-18 16:14:31.668 4861 4861 D WifiHWInfo: Entry [07], ID: 0x0000818B, Name: rtl8192eu.
      12-18 16:14:31.668 4861 4861 D WifiHWInfo: Entry [08], ID: 0x0000B720, Name: rtl8723bu.
      12-18 16:14:31.668 4861 4861 D WifiHWInfo: Entry [09], ID: 0x0001F179, Name: rtl8189fs.
      12-18 16:14:31.668 4861 4861 D WifiHWInfo: Entry [10], ID: 0x0001B822, Name: rtl88x2bs.
      12-18 16:14:31.668 4861 4861 D WifiHWInfo: Entry [11], ID: 0x0001A9A6, Name: ap6212.
      12-18 16:14:31.668 4861 4861 D WifiHWInfo: Entry [12], ID: 0x00014330, Name: ap6330.
      12-18 16:14:31.668 4861 4861 D WifiHWInfo: Entry [13], ID: 0x00014356, Name: ap6356s.
      12-18 16:14:31.668 4861 4861 D WifiHWInfo: Entry [14], ID: 0x0001A9BF, Name: ap6255.
      12-18 16:14:31.668 4861 4861 D WifiHWInfo: Entry [15], ID: 0x00012281, Name: xr819.
      12-18 16:14:31.668 4861 4861 D WifiHWInfo: Entry [16], ID: 0x00012282, Name: xr829.
      12-18 16:14:31.669 4861 4861 D WifiHWInfo: Entry [17], ID: 0x0001050A, Name: qca6174a.
      12-18 16:14:31.669 4861 4861 D WifiHWInfo: Entry [18], ID: 0x00013030, Name: ssv6x5x.
      12-18 16:14:31.669 4861 4861 D WifiHWInfo: Entry [19], ID: 0x00010000, Name: uwe5622.
      12-18 16:14:31.669 4861 4861 D WifiHWInfo: Entry [20], ID: 0x00010145, Name: aic8800.
      12-18 16:14:31.669 4861 4861 D WifiHWInfo: Entry [21], ID: 0x000018F0, Name: dummy.
      12-18 16:14:31.669 4861 4861 I android.hardware.wifi@1.0-service-lazy: Driver 8189fs not load? I'm not sure.
      12-18 16:14:31.669 4861 4861 D wifi_hal-auto-detect: libwifi hal name: libwifi-hal-rtk.so
      12-18 16:14:31.671 4861 4861 I android.hardware.wifi@1.0-service-lazy: Wifi HAL started
      12-18 16:14:31.672 2040 2150 I WifiVendorHal: Vendor Hal started successfully
      12-18 16:14:31.673 2040 2150 I SupplicantStaIfaceHal: Starting supplicant using HIDL
      12-18 16:14:31.673 2040 2151 I WifiP2pNative: Registering for interface available listener
      12-18 16:14:31.675 2040 2150 D SupplicantStaIfaceHal: Successfully triggered start of supplicant using HIDL
      12-18 16:14:31.678 2040 2151 I WifiP2pNative: Registering for interface available listener
      12-18 16:14:31.678 2040 2151 D WifiP2pNative: P2P InterfaceAvailableListener true
      12-18 16:14:31.678 2040 2151 D WifiP2pService: Wifi enabled=false, P2P Interface availability=true, Number of clients=1
      12-18 16:14:31.678 2040 2151 D WifiP2pService: Wifi enabled=false, P2P Interface availability=true
      12-18 16:14:31.763 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:31.774 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:31.780 4864 4864 D wpa_supplicant: wpa_supplicant v2.8-devel-10
      12-18 16:14:31.780 4864 4864 D wpa_supplicant: Global control interface '@android:wpa_wlan0'
      12-18 16:14:31.780 4864 4864 D wpa_supplicant: Using Android control socket 'wpa_wlan0'
      12-18 16:14:31.780 4864 4864 D wpa_supplicant: Initing hidl control
      12-18 16:14:31.780 4864 4864 I wpa_supplicant: Processing hidl events on FD 4
      12-18 16:14:31.783 4864 4864 I ServiceManagement: Registered android.hardware.wifi.supplicant@1.2::ISupplicant/default (start delay of 80ms)
      12-18 16:14:31.783 4864 4864 I wpa_supplicant: Successfully initialized wpa_supplicant
      12-18 16:14:31.783 1847 2007 D AudioFlinger: mixer(0xf6a925c0) throttle end: throttle time(9)
      12-18 16:14:31.784 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:31.785 2040 2491 I android_os_HwBinder: HwBinder: Starting thread pool for getting: android.hardware.wifi.supplicant@1.0::ISupplicant/default
      12-18 16:14:31.785 2040 2491 I SupplicantStaIfaceHal: Completed initialization of ISupplicant.
      12-18 16:14:31.805 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:32.648 1829 3236 I chatty : uid=1041(audioserver) writer identical 39 lines
      12-18 16:14:32.670 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:32.673 4861 4861 I WifiHAL : Initializing wifi, version : v1.0.2
      12-18 16:14:32.674 4861 4861 I WifiHAL : Creating socket
      12-18 16:14:32.674 2040 2061 I EthernetTracker: interfaceLinkStateChanged, iface: wlan0, up: false
      12-18 16:14:32.677 4861 4861 I WifiHAL : Initialized Wifi HAL Successfully; vendor cmd = 103
      12-18 16:14:32.677 4861 4861 I android.hardware.wifi@1.0-service-lazy: Adding interface handle for wlan0
      12-18 16:14:32.677 4861 4861 I android.hardware.wifi@1.0-service-lazy: Adding interface handle for wlan1
      12-18 16:14:32.677 4861 4861 W android.hardware.wifi@1.0-service-lazy: No active wlan interfaces in use! Using default
      12-18 16:14:32.678 4861 4861 E android.hardware.wifi@1.0-service-lazy: Failed to register radio mode change callback
      12-18 16:14:32.678 4861 4861 W android.hardware.wifi@1.0-service-lazy: No active wlan interfaces in use! Using default
      12-18 16:14:32.678 4861 4861 E WifiHAL : Failed to register debug response; result = -95
      12-18 16:14:32.678 4861 4861 E android.hardware.wifi@1.0-service-lazy: Failed to get driver version: SUCCESS
      12-18 16:14:32.678 4861 4861 I android.hardware.wifi@1.0-service-lazy: Configured chip in mode 0
      12-18 16:14:32.678 4861 4861 W android.hardware.wifi@1.0-service-lazy: No active wlan interfaces in use! Using default
      12-18 16:14:32.680 2040 2150 D HalDevMgr: updateRttController: no one is interested in RTT controllers
      12-18 16:14:32.681 4861 4861 E android.hardware.wifi@1.0-service-lazy: Failed to set DFS flag; DFS channels may be unavailable.
      12-18 16:14:32.692 2040 2150 D WificondControl: Setting up interface for client mode
      12-18 16:14:32.693 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:32.696 1895 1895 I wificond: create scanner for interface with index: 14
      12-18 16:14:32.696 1895 1895 I wificond: subscribe scan result for interface with index: 14
      12-18 16:14:32.698 1674 1674 I hwservicemanager: getTransport: Cannot find entry android.hardware.wifi.offload@1.0::IOffload/default in either framework or device manifest.
      12-18 16:14:32.699 1895 1895 E wificond: No Offload Service available
      12-18 16:14:32.699 1895 1895 I wificond: Offload HAL not supported
      12-18 16:14:32.702 2040 2150 E SupplicantStaIfaceHal: Can't call setupIface, ISupplicantStaIface is null
      12-18 16:14:32.707 2040 2150 I android_os_HwBinder: HwBinder: Starting thread pool for getting: android.hardware.wifi.supplicant@1.0::ISupplicant/default
      12-18 16:14:32.709 4864 4864 D wpa_supplicant: Override interface parameter: ctrl_interface ('(null)' -> '/data/vendor/wifi/wpa/sockets')
      12-18 16:14:32.709 4864 4864 D wpa_supplicant: Initializing interface 'wlan0' conf '/data/vendor/wifi/wpa/wpa_supplicant.conf' driver 'nl80211' ctrl_interface '/data/vendor/wifi/wpa/sockets' bridge 'N/A'
      12-18 16:14:32.709 4864 4864 D wpa_supplicant: Configuration file '/data/vendor/wifi/wpa/wpa_supplicant.conf' -> '/data/vendor/wifi/wpa/wpa_supplicant.conf'
      12-18 16:14:32.709 4864 4864 D wpa_supplicant: Reading configuration file '/data/vendor/wifi/wpa/wpa_supplicant.conf'
      12-18 16:14:32.710 4864 4864 D wpa_supplicant: update_config=1
      12-18 16:14:32.710 4864 4864 D wpa_supplicant: eapol_version=1
      12-18 16:14:32.710 4864 4864 D wpa_supplicant: ap_scan=1
      12-18 16:14:32.710 4864 4864 D wpa_supplicant: fast_reauth=1
      12-18 16:14:32.710 4864 4864 D wpa_supplicant: pmf=1
      12-18 16:14:32.710 4864 4864 D wpa_supplicant: p2p_add_cli_chan=1
      12-18 16:14:32.710 4864 4864 D wpa_supplicant: Line: 7 - start of a new network block
      12-18 16:14:32.710 4864 4864 D wpa_supplicant: ssid - hexdump(len=7): 5a 48 4b 4a 5f 41 50
      12-18 16:14:32.710 4864 4864 D wpa_supplicant: PSK (ASCII passphrase) - hexdump(len=8): [REMOVED]
      12-18 16:14:32.710 4864 4864 D wpa_supplicant: key_mgmt: 0x2
      12-18 16:14:32.712 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:32.728 4864 4864 D wpa_supplicant: PSK (from passphrase) - hexdump(len=32): [REMOVED]
      12-18 16:14:32.728 4864 4864 D wpa_supplicant: Priority group 0
      12-18 16:14:32.728 4864 4864 D wpa_supplicant: id=0 ssid='ZHKJ_AP'
      12-18 16:14:32.728 4864 4864 D wpa_supplicant: Reading configuration file '/vendor/etc/wifi/wpa_supplicant_overlay.conf'
      12-18 16:14:32.729 4864 4864 D wpa_supplicant: disable_scan_offload=1
      12-18 16:14:32.729 4864 4864 D wpa_supplicant: wowlan_triggers='any'
      12-18 16:14:32.729 4864 4864 D wpa_supplicant: p2p_disabled=0
      12-18 16:14:32.729 4864 4864 D wpa_supplicant: filter_rssi=-75
      12-18 16:14:32.729 4864 4864 D wpa_supplicant: no_ctrl_interface -> ctrl_interface=NULL
      12-18 16:14:32.729 4864 4864 D wpa_supplicant: Priority group 0
      12-18 16:14:32.729 4864 4864 D wpa_supplicant: id=0 ssid='ZHKJ_AP'
      12-18 16:14:32.733 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:32.735 4864 4864 D wpa_supplicant: nl80211: Supported cipher 00-0f-ac:1
      12-18 16:14:32.735 4864 4864 D wpa_supplicant: nl80211: Supported cipher 00-0f-ac:5
      12-18 16:14:32.735 4864 4864 D wpa_supplicant: nl80211: Supported cipher 00-0f-ac:2
      12-18 16:14:32.735 4864 4864 D wpa_supplicant: nl80211: Supported cipher 00-0f-ac:4
      12-18 16:14:32.735 4864 4864 D wpa_supplicant: nl80211: Supported cipher 00-0f-ac:6
      12-18 16:14:32.736 4864 4864 D wpa_supplicant: nl80211: Supported vendor command: vendor_id=0x1a11 subcmd=4106
      12-18 16:14:32.736 4864 4864 D wpa_supplicant: nl80211: Supported vendor command: vendor_id=0x1a11 subcmd=4107
      12-18 16:14:32.736 4864 4864 D wpa_supplicant: nl80211: Use separate P2P group interface (driver advertised support)
      12-18 16:14:32.736 4864 4864 D wpa_supplicant: nl80211: interface wlan0 in phy phy2
      12-18 16:14:32.736 4864 4864 D wpa_supplicant: nl80211: Set mode ifindex 14 iftype 2 (STATION)
      12-18 16:14:32.736 4864 4864 D wpa_supplicant: nl80211: Subscribe to mgmt frames with non-AP handle 0xe7484ce8
      12-18 16:14:32.736 4864 4864 D wpa_supplicant: nl80211: Register frame type=0xb0 (WLAN_FC_STYPE_AUTH) nl_handle=0xe7484ce8 match=
      12-18 16:14:32.736 4864 4864 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xe7484ce8 match=0104
      12-18 16:14:32.737 4864 4864 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xe7484ce8 match=040a
      12-18 16:14:32.737 4864 4864 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xe7484ce8 match=040b
      12-18 16:14:32.737 4864 4864 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xe7484ce8 match=040c
      12-18 16:14:32.737 4864 4864 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xe7484ce8 match=040d
      12-18 16:14:32.737 4864 4864 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xe7484ce8 match=090a
      12-18 16:14:32.737 4864 4864 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xe7484ce8 match=090b
      12-18 16:14:32.737 4864 4864 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xe7484ce8 match=090c
      12-18 16:14:32.737 4864 4864 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xe7484ce8 match=090d
      12-18 16:14:32.738 4864 4864 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xe7484ce8 match=0409506f9a09
      12-18 16:14:32.738 4864 4864 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xe7484ce8 match=7f506f9a09
      12-18 16:14:32.738 4864 4864 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xe7484ce8 match=0409506f9a1a
      12-18 16:14:32.738 4864 4864 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xe7484ce8 match=0801
      12-18 16:14:32.738 4864 4864 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xe7484ce8 match=06
      12-18 16:14:32.738 4864 4864 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xe7484ce8 match=0a07
      12-18 16:14:32.738 4864 4864 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xe7484ce8 match=0a11
      12-18 16:14:32.738 4864 4864 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xe7484ce8 match=0a0b
      12-18 16:14:32.739 4864 4864 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xe7484ce8 match=0a1a
      12-18 16:14:32.739 4864 4864 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xe7484ce8 match=1101
      12-18 16:14:32.739 4864 4864 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xe7484ce8 match=1102
      12-18 16:14:32.739 4864 4864 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xe7484ce8 match=0505
      12-18 16:14:32.739 4864 4864 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xe7484ce8 match=0500
      12-18 16:14:32.743 4864 4864 I wpa_supplicant: rfkill: Cannot open RFKILL control device
      12-18 16:14:32.743 4864 4864 D wpa_supplicant: nl80211: RFKILL status not available
      12-18 16:14:32.744 4864 4864 D wpa_supplicant: netlink: Operstate: ifindex=14 linkmode=1 (userspace-control), operstate=5 (IF_OPER_DORMANT)
      12-18 16:14:32.745 2040 2061 I EthernetTracker: interfaceLinkStateChanged, iface: wlan0, up: false
      12-18 16:14:32.747 4864 4864 D wpa_supplicant: Add interface wlan0 to a new radio phy2
      12-18 16:14:32.748 4864 4864 D wpa_supplicant: nl80211: Regulatory information - country=99
      12-18 16:14:32.748 4864 4864 D wpa_supplicant: nl80211: 2402-2472 @ 40 MHz 20 mBm
      12-18 16:14:32.748 4864 4864 D wpa_supplicant: nl80211: 2457-2482 @ 20 MHz 20 mBm (no IR)
      12-18 16:14:32.749 4864 4864 D wpa_supplicant: nl80211: Added 802.11b mode based on 802.11g information
      12-18 16:14:32.749 4864 4864 D wpa_supplicant: nl80211: Mode IEEE 802.11g: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[NO_IR] 2472[NO_IR] 2484[DISABLED]
      12-18 16:14:32.749 4864 4864 D wpa_supplicant: nl80211: Mode IEEE 802.11b: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467[NO_IR] 2472[NO_IR] 2484[DISABLED]
      12-18 16:14:32.754 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:32.773 4864 4864 D wpa_supplicant: wlan0: Own MAC address: 00:e0:4c:64:1e:8e
      12-18 16:14:32.773 4864 4864 D wpa_supplicant: wpa_driver_nl80211_set_key: ifindex=14 (wlan0) alg=0 addr=0x0 key_idx=0 set_tx=0 seq_len=0 key_len=0
      12-18 16:14:32.773 4864 4864 D wpa_supplicant: wpa_driver_nl80211_set_key: ifindex=14 (wlan0) alg=0 addr=0x0 key_idx=1 set_tx=0 seq_len=0 key_len=0
      12-18 16:14:32.773 4864 4864 D wpa_supplicant: wpa_driver_nl80211_set_key: ifindex=14 (wlan0) alg=0 addr=0x0 key_idx=2 set_tx=0 seq_len=0 key_len=0
      12-18 16:14:32.774 4864 4864 D wpa_supplicant: wpa_driver_nl80211_set_key: ifindex=14 (wlan0) alg=0 addr=0x0 key_idx=3 set_tx=0 seq_len=0 key_len=0
      12-18 16:14:32.774 4864 4864 D wpa_supplicant: wpa_driver_nl80211_set_key: ifindex=14 (wlan0) alg=0 addr=0x0 key_idx=4 set_tx=0 seq_len=0 key_len=0
      12-18 16:14:32.774 4864 4864 D wpa_supplicant: wpa_driver_nl80211_set_key: ifindex=14 (wlan0) alg=0 addr=0x0 key_idx=5 set_tx=0 seq_len=0 key_len=0
      12-18 16:14:32.774 4864 4864 D wpa_supplicant: wlan0: RSN: flushing PMKID list in the driver
      12-18 16:14:32.774 4864 4864 D wpa_supplicant: nl80211: Flush PMKIDs
      12-18 16:14:32.776 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:32.796 4864 4864 D wpa_supplicant: TDLS: TDLS operation not supported by driver
      12-18 16:14:32.796 4864 4864 D wpa_supplicant: TDLS: Driver uses internal link setup
      12-18 16:14:32.796 4864 4864 D wpa_supplicant: TDLS: Driver does not support TDLS channel switching
      12-18 16:14:32.796 4864 4864 D wpa_supplicant: wlan0: WPS: UUID based on MAC address: 088a91dc-fdb1-53ea-b0c9-81411ab2240a
      12-18 16:14:32.797 4864 4864 D wpa_supplicant: EAPOL: SUPP_PAE entering state DISCONNECTED
      12-18 16:14:32.797 4864 4864 D wpa_supplicant: EAPOL: Supplicant port status: Unauthorized
      12-18 16:14:32.797 4864 4864 D wpa_supplicant: nl80211: Skip set_supp_port(unauthorized) while not associated
      12-18 16:14:32.797 4864 4864 D wpa_supplicant: EAPOL: KEY_RX entering state NO_KEY_RECEIVE
      12-18 16:14:32.797 4864 4864 D wpa_supplicant: EAPOL: SUPP_BE entering state INITIALIZE
      12-18 16:14:32.797 4864 4864 D wpa_supplicant: EAP: EAP entering state DISABLED
      12-18 16:14:32.797 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:32.797 4864 4864 D wpa_supplicant: P2P: Add operating class 81
      12-18 16:14:32.797 4864 4864 D wpa_supplicant: P2P: Add operating class 81 (client only)
      12-18 16:14:32.797 4864 4864 D wpa_supplicant: P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
      12-18 16:14:32.798 4864 4864 D wpa_supplicant: P2P: Channels (client only) - hexdump(len=2): 0c 0d
      12-18 16:14:32.798 4864 4864 D wpa_supplicant: P2P: Own listen channel: 81:1
      12-18 16:14:32.798 4864 4864 D wpa_supplicant: P2P: Random operating channel: 81:6
      12-18 16:14:32.798 4864 4864 D wpa_supplicant: P2P: initialized
      12-18 16:14:32.798 4864 4864 D wpa_supplicant: P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11
      12-18 16:14:32.798 4864 4864 D wpa_supplicant: P2P: cli_channels: 81:12,13
      12-18 16:14:32.798 4864 4864 D wpa_supplicant: nl80211: Setting wowlan
      12-18 16:14:32.799 4864 4864 D wpa_supplicant: Registering interface to hidl control: wlan0
      12-18 16:14:32.799 4864 4864 D wpa_supplicant: Registering network to hidl control: 0
      12-18 16:14:32.799 4864 4864 D wpa_supplicant: wlan0: Added interface wlan0
      12-18 16:14:32.799 4864 4864 D wpa_supplicant: wlan0: State: DISCONNECTED -> DISCONNECTED
      12-18 16:14:32.799 4864 4864 D wpa_supplicant: nl80211: Set wlan0 operstate 0->0 (DORMANT)
      12-18 16:14:32.799 4864 4864 D wpa_supplicant: netlink: Operstate: ifindex=14 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
      12-18 16:14:32.799 4864 4864 D wpa_supplicant: RTM_NEWLINK: ifi_index=14 ifname=wlan0 operstate=2 linkmode=1 ifi_family=0 ifi_flags=0x1003 ([UP])
      12-18 16:14:32.799 2040 2150 E SupplicantStaIfaceHal: Failed to create ISupplicantIface 1
      12-18 16:14:32.799 2040 2150 E SupplicantStaIfaceHal: setupIface got null iface
      12-18 16:14:32.799 2040 2150 E WifiNative: Failed to setup iface in supplicant on Iface:{Name=wlan0,Id=3,Type=STA_CONNECTIVITY}
      12-18 16:14:32.801 4861 4861 W android.hardware.wifi@1.0-service-lazy: No active wlan interfaces in use! Using default
      12-18 16:14:32.803 2040 2150 E WifiNative: Failed to unregister network observer on Iface:{Name=wlan0,Id=3,Type=STA_CONNECTIVITY}
      12-18 16:14:32.803 2040 2150 E SupplicantStaIfaceHal: Can't call teardownIface, ISupplicantStaIface is null
      12-18 16:14:32.803 2040 2150 E WifiNative: Failed to teardown iface in supplicant on Iface:{Name=wlan0,Id=3,Type=STA_CONNECTIVITY}
      12-18 16:14:32.804 1895 1895 I wificond: Unsubscribe scan result for interface with index: 14
      12-18 16:14:32.818 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:32.863 1829 3236 I chatty : uid=1041(audioserver) writer identical 2 lines
      12-18 16:14:32.884 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:32.906 4864 4864 D wpa_supplicant: RTM_NEWLINK: ifi_index=14 ifname=wlan0 operstate=2 linkmode=1 ifi_family=0 ifi_flags=0x1002 ()
      12-18 16:14:32.907 4864 4864 D wpa_supplicant: nl80211: Interface down (wlan0/wlan0)
      12-18 16:14:32.907 4864 4864 D wpa_supplicant: wlan0: Event INTERFACE_DISABLED (26) received
      12-18 16:14:32.907 4864 4864 D wpa_supplicant: wlan0: Interface was disabled
      12-18 16:14:32.907 4864 4864 D wpa_supplicant: nl80211: Data frame filter flags=0x0
      12-18 16:14:32.907 4864 4864 D wpa_supplicant: wlan0: State: DISCONNECTED -> DISCONNECTED
      12-18 16:14:32.907 4864 4864 D wpa_supplicant: nl80211: Set wlan0 operstate 0->0 (DORMANT)
      12-18 16:14:32.907 4864 4864 D wpa_supplicant: netlink: Operstate: ifindex=14 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
      12-18 16:14:32.908 2040 2061 I EthernetTracker: interfaceLinkStateChanged, iface: wlan0, up: false
      12-18 16:14:32.912 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:32.914 2040 2150 I SupplicantStaIfaceHal: Terminating supplicant using HIDL
      12-18 16:14:32.925 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:32.946 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:32.962 4864 4864 D wpa_supplicant: EAPOL: External notification - portEnabled=0
      12-18 16:14:32.962 4864 4864 D wpa_supplicant: EAPOL: External notification - portValid=0
      12-18 16:14:32.962 4864 4864 D wpa_supplicant: wlan0: State: DISCONNECTED -> INTERFACE_DISABLED
      12-18 16:14:32.962 4864 4864 D wpa_supplicant: Notifying state change event to hidl control: 1
      12-18 16:14:32.962 4864 4864 D wpa_supplicant: wlan0: Determining shared radio frequencies (max len 1)
      12-18 16:14:32.963 4864 4864 D wpa_supplicant: wlan0: Shared frequencies (len=0): completed iteration
      12-18 16:14:32.963 4864 4864 D wpa_supplicant: P2P: Add operating class 81
      12-18 16:14:32.963 4864 4864 D wpa_supplicant: P2P: Add operating class 81 (client only)
      12-18 16:14:32.963 4864 4864 D wpa_supplicant: P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
      12-18 16:14:32.963 4864 4864 D wpa_supplicant: P2P: Channels (client only) - hexdump(len=2): 0c 0d
      12-18 16:14:32.963 4864 4864 D wpa_supplicant: P2P: Update channel list
      12-18 16:14:32.963 4864 4864 D wpa_supplicant: P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11
      12-18 16:14:32.963 4864 4864 D wpa_supplicant: P2P: cli_channels: 81:12,13
      12-18 16:14:32.963 4864 4864 D wpa_supplicant: nl80211: Event message available
      12-18 16:14:32.963 4864 4864 D wpa_supplicant: nl80211: Drv Event 48 (NL80211_CMD_DISCONNECT) received for wlan0
      12-18 16:14:32.963 4864 4864 D wpa_supplicant: nl80211: Disconnect event
      12-18 16:14:32.963 2040 2150 I android_os_HwBinder: HwBinder: Starting thread pool for getting: android.hardware.wifi.supplicant@1.0::ISupplicant/default
      12-18 16:14:32.963 4864 4864 D wpa_supplicant: wlan0: Ignore event DEAUTH (11) while interface is disabled
      12-18 16:14:32.963 4864 4864 D wpa_supplicant: l2_packet_receive - recvfrom: Network is down
      12-18 16:14:32.963 4864 4864 D wpa_supplicant: l2_packet_receive - recvfrom: Network is down
      12-18 16:14:32.965 2040 2150 D WificondControl: tearing down interfaces in wificond
      12-18 16:14:32.965 4864 4864 I wpa_supplicant: Terminating...
      12-18 16:14:32.965 4864 4864 D wpa_supplicant: wlan0: Removing interface wlan0
      12-18 16:14:32.965 4864 4864 D wpa_supplicant: wlan0: Request to deauthenticate - bssid=00:00:00:00:00:00 pending_bssid=00:00:00:00:00:00 reason=3 state=INTERFACE_DISABLED
      12-18 16:14:32.965 4864 4864 D wpa_supplicant: TDLS: Tear down peers
      12-18 16:14:32.965 4864 4864 D wpa_supplicant: nl80211: Data frame filter flags=0x0
      12-18 16:14:32.968 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:32.973 4864 4864 D wpa_supplicant: Deregistering network from hidl control: 0
      12-18 16:14:32.981 4864 4864 D wpa_supplicant: wlan0: WPA: Clear old PMK and PTK
      12-18 16:14:32.981 4864 4864 D wpa_supplicant: wlan0: Cancelling scan request
      12-18 16:14:32.981 4864 4864 D wpa_supplicant: wlan0: Cancelling authentication timeout
      12-18 16:14:32.981 4864 4864 D wpa_supplicant: Off-channel: Clear pending Action frame TX (pending_action_tx=0x0
      12-18 16:14:32.981 4864 4864 D wpa_supplicant: nl80211: Data frame filter flags=0x0
      12-18 16:14:32.981 4864 4864 D wpa_supplicant: HS20: Delete all stored icons
      12-18 16:14:32.981 4864 4864 D wpa_supplicant: Off-channel: Action frame sequence done notification: pending_action_tx=0x0 drv_offchan_tx=0 action_tx_wait_time=0 off_channel_freq=0 roc_waiting_drv_freq=0
      12-18 16:14:32.981 4864 4864 D wpa_supplicant: wlan0: P2P: Disable P2P since removing the management interface is being removed
      12-18 16:14:32.981 4864 4864 D wpa_supplicant: P2P: All ASP advertisements flushed
      12-18 16:14:32.981 4864 4864 D wpa_supplicant: P2P: Disabling Extended Listen Timing
      12-18 16:14:32.981 4864 4864 D wpa_supplicant: P2P: Stopping find
      12-18 16:14:32.981 4864 4864 D wpa_supplicant: P2P: Clear timeout (state=IDLE)
      12-18 16:14:32.981 4864 4864 D wpa_supplicant: P2P: State IDLE -> IDLE
      12-18 16:14:32.981 4864 4864 D WifiHWInfo: Start to load wireless module hardware info table...
      12-18 16:14:32.981 4864 4864 D WifiHWInfo: Entry [01], ID: 0x00018179, Name: rtl8189es.
      12-18 16:14:32.982 4864 4864 D WifiHWInfo: Entry [02], ID: 0x0001B723, Name: rtl8723bs_vq0.
      12-18 16:14:32.982 4864 4864 D WifiHWInfo: Entry [03], ID: 0x0001B703, Name: rtl8723cs.
      12-18 16:14:32.982 4864 4864 D WifiHWInfo: Entry [04], ID: 0x0001D723, Name: rtl8723ds.
      12-18 16:14:32.982 4864 4864 D WifiHWInfo: Entry [05], ID: 0x00008179, Name: rtl8188etv.
      12-18 16:14:32.982 4864 4864 D WifiHWInfo: Entry [06], ID: 0x00000179, Name: rtl8188eu.
      12-18 16:14:32.982 4864 4864 D WifiHWInfo: Entry [07], ID: 0x0000818B, Name: rtl8192eu.
      12-18 16:14:32.982 4864 4864 D WifiHWInfo: Entry [08], ID: 0x0000B720, Name: rtl8723bu.
      12-18 16:14:32.982 4864 4864 D WifiHWInfo: Entry [09], ID: 0x0001F179, Name: rtl8189fs.
      12-18 16:14:32.982 4864 4864 D WifiHWInfo: Entry [10], ID: 0x0001B822, Name: rtl88x2bs.
      12-18 16:14:32.982 4864 4864 D WifiHWInfo: Entry [11], ID: 0x0001A9A6, Name: ap6212.
      12-18 16:14:32.982 4864 4864 D WifiHWInfo: Entry [12], ID: 0x00014330, Name: ap6330.
      12-18 16:14:32.982 4864 4864 D WifiHWInfo: Entry [13], ID: 0x00014356, Name: ap6356s.
      12-18 16:14:32.982 4864 4864 D WifiHWInfo: Entry [14], ID: 0x0001A9BF, Name: ap6255.
      12-18 16:14:32.982 4864 4864 D WifiHWInfo: Entry [15], ID: 0x00012281, Name: xr819.
      12-18 16:14:32.982 4864 4864 D WifiHWInfo: Entry [16], ID: 0x00012282, Name: xr829.
      12-18 16:14:32.982 4864 4864 D WifiHWInfo: Entry [17], ID: 0x0001050A, Name: qca6174a.
      12-18 16:14:32.982 4864 4864 D WifiHWInfo: Entry [18], ID: 0x00013030, Name: ssv6x5x.
      12-18 16:14:32.982 4864 4864 D WifiHWInfo: Entry [19], ID: 0x00010000, Name: uwe5622.
      12-18 16:14:32.982 4864 4864 D WifiHWInfo: Entry [20], ID: 0x00010145, Name: aic8800.
      12-18 16:14:32.982 4864 4864 D WifiHWInfo: Entry [21], ID: 0x000018F0, Name: dummy.
      12-18 16:14:32.982 4864 4864 W wpa_supplicant: check_initialed for nl80211, use realtek wpa_supplicant_8_lib.
      12-18 16:14:32.982 4864 4864 D wpa_supplicant: rtl_wpa_driver_set_ap_wps_p2p_ie: Entry
      12-18 16:14:32.982 4864 4864 D wpa_supplicant: P2P: All ASP advertisements flushed
      12-18 16:14:32.982 4864 4864 D wpa_supplicant: Remove interface wlan0 from radio phy2
      12-18 16:14:32.982 4864 4864 D wpa_supplicant: Remove radio phy2
      12-18 16:14:32.982 4864 4864 I wpa_supplicant: nl80211: deinit ifname=wlan0 disabled_11b_rates=0
      12-18 16:14:32.983 4861 4870 E WifiHAL : wifi_event_loop: Read after POLL returned 4, error no = 0 (Success)
      12-18 16:14:32.983 4861 4870 D WifiHAL : Got a signal to exit!!!
      12-18 16:14:32.983 4861 4870 I WifiHAL : Exit wifi_event_loop
      12-18 16:14:32.983 4861 4861 E WifiHAL : wifi_cleanup: Read after POLL returned 4, error no = 0 (Success)
      12-18 16:14:32.983 4861 4861 E WifiHAL : Event processing terminated
      12-18 16:14:32.983 4861 4861 I android.hardware.wifi@1.0-service-lazy: Legacy HAL stop complete callback received
      12-18 16:14:32.983 4861 4861 I WifiHAL : Internal cleanup completed
      12-18 16:14:32.984 4861 4861 I android.hardware.wifi@1.0-service-lazy: Driver 8189fs not load? I'm not sure.
      12-18 16:14:32.995 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:33.009 4864 4864 D wpa_supplicant: nl80211: Remove monitor interface: refcount=0
      12-18 16:14:33.009 4864 4864 D wpa_supplicant: netlink: Operstate: ifindex=14 linkmode=0 (kernel-control), operstate=6 (IF_OPER_UP)
      12-18 16:14:33.010 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:33.032 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:33.034 4864 4864 D wpa_supplicant: nl80211: Set mode ifindex 14 iftype 2 (STATION)
      12-18 16:14:33.034 4864 4864 D wpa_supplicant: nl80211: Failed to set interface 14 to mode 2: -19 (No such device)
      12-18 16:14:33.034 2040 2185 D EthernetNetworkFactory: updateCapabilityFilter: []
      12-18 16:14:33.034 4864 4864 D wpa_supplicant: nl80211: Unsubscribe mgmt frames handle 0x6fc0c461 (deinit)
      12-18 16:14:33.034 4864 4864 D wpa_supplicant: Deregistering interface from hidl control: wlan0
      12-18 16:14:33.034 4864 4864 I wpa_supplicant: wlan0: CTRL-EVENT-TERMINATING
      12-18 16:14:33.034 4864 4864 D wpa_supplicant: Deiniting hidl control
      12-18 16:14:33.036 2040 2144 W BestClock: java.time.DateTimeException: Missing NTP fix
      12-18 16:14:33.053 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:33.066 1825 1950 I netd : trafficSwapActiveStatsMap() <29.12ms>
      12-18 16:14:33.069 1825 1950 I netd : tetherGetStats() <1.74ms>
      12-18 16:14:33.073 2040 2144 W BestClock: java.time.DateTimeException: Missing NTP fix
      12-18 16:14:33.074 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:33.075 2040 2145 W BestClock: java.time.DateTimeException: Missing NTP fix
      12-18 16:14:33.096 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:33.117 1829 3236 I chatty : uid=1041(audioserver) writer identical 1 line
      12-18 16:14:33.138 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:33.152 2040 2185 D EthernetNetworkFactory: updateCapabilityFilter: []
      12-18 16:14:33.160 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:33.672 1829 3236 I chatty : uid=1041(audioserver) writer identical 24 lines
      12-18 16:14:33.694 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:33.706 1674 1674 I hwservicemanager: Notifying android.hardware.wifi@1.3::IWifi/default they have clients: 1
      12-18 16:14:33.715 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:33.510 4861 4861 I android.hardware.wifi@1.0-service-lazy: Driver 8189fs not load? I'm not sure.
      12-18 16:14:34.012 4861 4861 I android.hardware.wifi@1.0-service-lazy: Wifi HAL stopped
      12-18 16:14:34.012 4861 4861 I android.hardware.wifi@1.0-service-lazy: Process has 1 (of 1 available) client(s) in use after notification android.hardware.wifi@1.3::IWifi has clients: 1
      12-18 16:14:33.992 1829 3236 I chatty : uid=1041(audioserver) writer identical 13 lines
      12-18 16:14:34.014 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:34.014 2040 2150 I WifiVendorHal: Vendor Hal stopped
      12-18 16:14:34.014 2040 2150 I WifiNative: Successfully torn down Iface:{Name=wlan0,Id=3,Type=STA_CONNECTIVITY}
      12-18 16:14:34.014 2040 2150 E HalDevMgr: getAllChipInfo: called but mWifi is null!?
      12-18 16:14:34.015 2040 2150 E HalDevMgr: dispatchAvailableForRequestListeners: no chip info found
      12-18 16:14:34.015 2040 2150 W HalDevMgr: stopWifi called but mWifi is null!?
      12-18 16:14:34.015 2040 2150 I WifiNative: Successfully initiated teardown for iface=wlan0
      12-18 16:14:34.015 2040 2151 W HalDevMgr: isWifiStarted called but mWifi is null!?
      12-18 16:14:34.015 2040 2150 E WifiClientModeManager: Failed to create ClientInterface. Sit in Idle
      12-18 16:14:34.015 2040 2150 D WifiActiveModeWarden: State changed from client mode. state = 4
      12-18 16:14:34.015 2040 2150 D WifiClientModeManager: expected stop, not triggering callbacks: newState = 1
      12-18 16:14:34.017 2040 2150 E WifiNative: Could not get Iface object for interface null
      12-18 16:14:34.017 2040 2040 D WifiP2pService: Wifi enabled=false, P2P Interface availability=true
      12-18 16:14:34.017 2040 2150 W HalDevMgr: isWifiStarted called but mWifi is null!?
      12-18 16:14:34.018 2040 2150 W HalDevMgr: isWifiStarted called but mWifi is null!?
      12-18 16:14:34.018 2040 2150 W SupplicantStaIfaceHal: ISupplicant died: cookie=3
      12-18 16:14:34.019 2040 2150 W HalDevMgr: isWifiStarted called but mWifi is null!?
      12-18 16:14:34.019 2040 2150 D WifiActiveModeWarden: ClientMode failed, return to WifiDisabledState.
      12-18 16:14:34.020 2040 2150 D WifiController: ClientMode unexpected failure: state unknown
      12-18 16:14:34.020 2040 2150 D WifiClientModeManager: currentstate: IdleState
      12-18 16:14:34.021 2040 2155 I WifiScanningService: wifi driver unloaded
      12-18 16:14:34.022 2040 2150 D WifiScanRequestProxy: Sending scan available broadcast: false
      12-18 16:14:34.023 2040 2150 I WifiScanRequestProxy: Scanning is disabled
      12-18 16:14:34.024 2040 2150 D WifiActiveModeWarden: Entering WifiDisabledState
      12-18 16:14:34.025 2040 2150 D WifiActiveModeWarden: received a message in WifiDisabledState: { when=-5ms what=3 target=com.android.internal.util.StateMachine$SmHandler }
      12-18 16:14:34.025 2040 2150 D WifiActiveModeWarden: Switching from WifiDisabledState to WifiDisabled
      12-18 16:14:34.025 2040 2150 D WifiActiveModeWarden: Entering WifiDisabledState
      12-18 16:14:34.025 2040 2150 E WifiNative: Could not get Iface object for interface null
      12-18 16:14:34.035 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:34.888 1829 3236 I chatty : uid=1041(audioserver) writer identical 40 lines
      12-18 16:14:34.909 1829 3236 V audio_platform: mode(0),devices(0x2):platform device:OUT_DULSPK(0x4)
      12-18 16:14:34.920 1829 1829 D audio_hw_primary: out_standby

      2
    • S

      Tina-Linux python版本
      Linux • Posted at • Simon

      0 Votes
      2 Replies
      870 Views

      D Replied at

      对的,自己可以移植python,不算很困难,而且,可以预先添加自己需要的库——特别是动态库(.so等等)

      2
    • T

      Tina5.0 v1.1 哪个命令是编译uboot
      Linux • Posted at • tivon

      0 Votes
      2 Replies
      704 Views

      J Replied at

      @tivonaaaaaaaaaaaaaaaaaaaaaa

      2
    • S

      有cadence 的license 如何获取DSP SDK?
      T Series • Posted at • snailck

      0 Votes
      2 Replies
      438 Views

      S Replied at

      可以找代理商申请

      2
    • S

      T113-s3日志打印了,但是不进入终端,输入不了命令
      T Series • Posted at • skylar

      0 Votes
      2 Replies
      595 Views

      S Replied at

      @tivon 很感谢你回复的帖子,可能不是tina5,在sdk目录下没找到.openwrt/target/t113相关文件夹,但是找到了tina-sdk/target/allwinner/t113-round/busybox-init-base-files/etc/inittab文件

      # Put a getty on the serial port /dev/console::respawn:-/bin/sh #ttyS0::respawn:/sbin/getty -n -L ttyS0 115200 vt100 -n -l /bin/sh # GENERIC_SERIAL

      下添加了ttyS3::respawn:/sbin/getty -n -L ttyS3 115200 vt100 -n -l /bin/sh

      # Put a getty on the serial port /dev/console::respawn:-/bin/sh ttyS3::respawn:/sbin/getty -n -L ttyS3 115200 vt100 -n -l /bin/sh # GENERIC_SERIAL

      但是编译上电后问题没有解决

      2

    精华推荐

    • 【水经验混下载权限专用贴】如何升级LV2拉取SDK
    • T113/D1-H (MQ-Pro)驱动 OV5640 摄像头(内含驱动源码)
    • 全志在线开源芯片 新 SDK 平台下载方法汇总
    • 新 SDK 平台下载 D1-H/D1s SDK
    • 新 SDK 平台下载 V853 SDK
    • 新 SDK 平台下载 R329 SDK
    • 新 SDK 平台下载 MR813 SDK
    • 新 SDK 平台下载 XR806 SDK
    • D1s 哪吒开发板,电阻屏的配置方法
    • V85x E907 小核开发与使用
    • [哪吒开发板]Tina Linux SPI主从通信验证实录
    • T113-S3入门资料汇总(避坑指南)一
    • 【加精】D1 tina Docker 编译环境制作和使用
    • Tina Linux 存储介质切换:eMMC,SPI NAND,SPI NOR,SD Card,SD NAND
    • 【资料】V853&&V851 硬件参考设计
    换一批

    随便看看

    • R11的uboot编译报错问题
    • BGA和QFP有什么区别?引脚设计有哪些方法?
    • 启动log 里面多处打印 xxx supply xxx not found, using dummy regulator
    • 【XR806开发板试用】通过http请求从心知天气网获取天气预报信息
    • T113 MQ-R板子用tina 无法进入系统
    • H616的SDK可以在本论坛下载到吗
    • 【全志T113-S3_100ask】使用内核驱动点灯(控制继电器)
    • 【XR806开发板试用】XR806与鸿蒙,简化构建环境流程
    • v853 xr829 蓝牙出不来hci0
    • h618主线开启gpu驱动
    • 使用make命令编译,出现build_openwrt_rootfs failed
    • 全志v853的开发工具链具体是什么呀?
    • 我朋友设计的D1s 邮票孔核心板 + 底板
    • 请教,Linux Preempt-RT 开 iperf3 -s 后系统卡死应该如何调试
    • PhoenixSuit烧录工具四种烧录模式说明
    • 1
    • 2
    • 26
    • 27
    • 28
    • 29
    • 30
    • 60
    • 61
    • 28 / 61

    精华推荐

    • 【水经验混下载权限专用贴】如何升级LV2拉取SDK
    • T113/D1-H (MQ-Pro)驱动 OV5640 摄像头(内含驱动源码)
    • 全志在线开源芯片 新 SDK 平台下载方法汇总
    • 新 SDK 平台下载 D1-H/D1s SDK
    • 新 SDK 平台下载 V853 SDK
    • 新 SDK 平台下载 R329 SDK
    • 新 SDK 平台下载 MR813 SDK
    • 新 SDK 平台下载 XR806 SDK
    • D1s 哪吒开发板,电阻屏的配置方法
    • V85x E907 小核开发与使用
    • [哪吒开发板]Tina Linux SPI主从通信验证实录
    • T113-S3入门资料汇总(避坑指南)一
    • 【加精】D1 tina Docker 编译环境制作和使用
    • Tina Linux 存储介质切换:eMMC,SPI NAND,SPI NOR,SD Card,SD NAND
    • 【资料】V853&&V851 硬件参考设计
    换一批

    随便看看

    • R11的uboot编译报错问题
    • BGA和QFP有什么区别?引脚设计有哪些方法?
    • 启动log 里面多处打印 xxx supply xxx not found, using dummy regulator
    • 【XR806开发板试用】通过http请求从心知天气网获取天气预报信息
    • T113 MQ-R板子用tina 无法进入系统
    • H616的SDK可以在本论坛下载到吗
    • 【全志T113-S3_100ask】使用内核驱动点灯(控制继电器)
    • 【XR806开发板试用】XR806与鸿蒙,简化构建环境流程
    • v853 xr829 蓝牙出不来hci0
    • h618主线开启gpu驱动
    • 使用make命令编译,出现build_openwrt_rootfs failed
    • 全志v853的开发工具链具体是什么呀?
    • 我朋友设计的D1s 邮票孔核心板 + 底板
    • 请教,Linux Preempt-RT 开 iperf3 -s 后系统卡死应该如何调试
    • PhoenixSuit烧录工具四种烧录模式说明