您尚未登录。

楼主 #1 2018-03-21 15:22:06

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

海豚派V3s开发板 camdroid 完整入坑记录

参考链接1: 海豚派 V3s 开发板资料预览
参考链接2: 荔枝派zero v3s开发板资料汇总
参考链接3: 任性买了一片海豚派新的开发板和核心板

海豚派主板原理图: Dolphin-Pi-III_V3S_SCH_V1.pdf
4.3寸电阻触摸液晶屏:rgb_tft_4_3_dophin.pdf
ov2710 mipi 摄像头: ov2710_mipi.pdf
MPU电源管理芯片AXP203: AXP203_Datasheet_V1_0.pdf

支持的摄像头模组: Allwinner-V3-V3s-Lens-Support-List_20150818-V1_3.pdf

支持摄像头列表: Allwinner-V3s-Camera-sensor-Support-List20150509-V1_0.pdf

重力传感器支持列表: Allwinner-V3s-Gsensor-Support-List20150509-V1_0.pdf

SPI NOR FLASH支持列表: Allwinner-V3s-SPI-NOR-Flash-Support-List20150509-V1_0.pdf

后置摄像头支持列表: Allwinner-V3s-_20150805-V1_0.pdf

TB24eUzlLBNTKJjSszbXXaFrFXa_58645797.jpg



















第二版资料:
核心板手册: dpc03_module_V1_2.pdf
底板原理图: dophin-pi-v3s-diban-pwrrst-sch.pdf
底板水印: dophin-pi-v3s-diban-pwrrst-silk.pdf



















1. 准备 vmware 14.0.0 build-6661328, ubuntu 14.04LTS
参考链接1: 《VMWare 使用分享》之一 "挂载新虚拟磁盘" 【原创视频】

2. 安装 java SDK

mkdir /usr/java
cd /usr/java
wget http://85-207-0-21.static.bluetone.cz/java/1.6.0_45/jdk-6u45-linux-x64.bin
chmod +x jdk-6u45-linux-x64.bin
./jdk-6u45-linux-x64.bin    ###解压缩

###以下这些环境变量设置可以写到 /etc/profile 或 ~/.bashrc ###
export JAVA_HOME=/usr/java/jdk1.6.0_45
export JAVA_BIN=/usr/java/jdk1.6.0_45/bin
export PATH=$PATH:$JAVA_HOME/bin
export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
export JAVA_HOME JAVA_BIN PATH CLASSPATH

3. 下载海豚派SDK
参考链接1: 【海豚派】海豚派 V3s 开发板资料预览
解压 v3s_spinor_v2.gz
/disk5/spinor/camdroid



4. camdroid编译

cd camdroid
source build/envsetup.sh    #导入环境变量设置,如下面的这些命令
lunch    #选择平台型号,在build/envsetup.sh,包含了device/softwinner/common/vendorsetup.sh
mklichee    #编译BootLoader和内核,模块
extract-bsp    #拷贝前面的结果
make -j12    #编译camdroid
pack        #打包镜像

组合命令执行:

$ source build/envsetup.sh;lunch;mklichee;extract-bsp;make -j2;pack;

yyy@ubuntu:/disk5/spinor/camdroid$ source build/envsetup.sh;lunch;mklichee;extract-bsp;make -j2;pack;
including device/softwinner/common/vendorsetup.sh
platformdef ==>>tiger-cdr
including device/softwinner/tiger-cdr/vendorsetup.sh

You're building on Linux

Lunch menu... pick a combo:
     1. tiger_cdr-eng

Which would you like? [full-eng] 1
CAMLINUX_PRODUCT_FEATURE external media audio storage videoencoder debug camera adb
============================================
PLATFORM_VERSION_CODENAME=REL
PLATFORM_VERSION=4.2.2
TARGET_PRODUCT=tiger_cdr
TARGET_BUILD_VARIANT=eng
TARGET_BUILD_TYPE=release
TARGET_BUILD_APPS=
TARGET_ARCH=arm
TARGET_ARCH_VARIANT=armv7-a-neon
HOST_ARCH=x86
HOST_OS=linux
HOST_OS_EXTRA=Linux-4.2.0-42-generic-x86_64-with-Ubuntu-14.04-trusty
HOST_BUILD_TYPE=release
BUILD_ID=JDQ39
OUT_DIR=/disk5/spinor/camdroid/out
============================================

    1. 1080p : "1080P"
        "csi(ar0330_mipi)(1920x1080) & uvc(640x480) & lcd(320x480) & DirectIO"
    2. dualCam : "Dual Cameras"
        "csi(h22)(1280x720) & uvc(640x480) & lcd(480x272) & DirectIO & new Keycodes"
    3. dualCam2 : "Dual Cameras"
        "csi(ar0330_mipi)(1280x720) & uvc(640x480) & lcd(320x480) & DirectIO"
Choose the custom config number: 1

在下面的Linux驱动配置中, 一路回车即可生成 /disk5/spinor/lichee/tools/pack/sun8iw8p1_camdroid_tiger-cdr_uart0_none.img

QQ20180402103426.png

编译打包完成!

5. 烧录
参考链接: 用全志官方软件PhoenixSuit.exe烧录 V3s步骤

6. bug
海豚派 v3s_spinor_v2.gz 有一个奇大无比的坑, 就是烧录编译的固件之后,启动newcdr, 系统会死掉,控制台不接受任何输入。
对新手来说,这个问题太严重了.
解决的办法是修改 device/softwinner/tiger-cdr/custom/1080p/lichee/pack_config/sys_config.fex 文件

lcdd23              = port:PE24<3><0><default><default>
vip_dev0_reset           = port:PB3<1><default><default><default>

改为

;lcdd23              = port:PE24<3><0><default><default>
vip_dev0_reset           = port:PE24<1><default><default><default>

7. camdroid添加应用程序的方法:
这个目录 camdroid/device/softwinner/tiger-cdr/app/ 添加 Test1 文件夹,
进入 Test1文件夹,加入 CamLinux.mk, test.c两个文件,
可以仿照 fatTest.

打开 camdroid/device/softwinner/tiger-cdr/custom/1080p/camdroid/tiger_cdr.mk,找到 fatTest, 在下面添加Test1即可,
重新运行上面的组合命令, 即可在固件的 /system/bin/目录下生成 Test1可执行文件。

8. 耳机、喇叭测试方法:

#/system/bin/startup_music /system/res/others/startup.wav

或者用整合的命令行:

#tinymix 1 24;tinymix 16 1;tinyplay /system/res/others/startup.wav





离线

楼主 #2 2018-03-21 16:04:45

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

占位





离线

楼主 #3 2018-03-21 16:05:20

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

占位





离线

楼主 #4 2018-03-21 16:05:28

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

占位





离线

楼主 #5 2018-03-21 16:06:46

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

hexing@ubuntu:/disk5/v3s_Release/camdroid$ make -j12
============================================
PLATFORM_VERSION_CODENAME=REL
PLATFORM_VERSION=4.2.2
TARGET_PRODUCT=tiger_ipc
TARGET_BUILD_VARIANT=eng
TARGET_BUILD_TYPE=release
TARGET_BUILD_APPS=
TARGET_ARCH=arm
TARGET_ARCH_VARIANT=armv7-a-neon
HOST_ARCH=x86
HOST_OS=linux
HOST_OS_EXTRA=Linux-4.2.0-42-generic-x86_64-with-Ubuntu-14.04-trusty
HOST_BUILD_TYPE=release
BUILD_ID=JDQ39
OUT_DIR=/disk5/v3s_Release/camdroid/out
============================================
Checking build tools versions...
************************************************************
You are attempting to build with the incorrect version
of java.

Your version is: java version "1.7.0_151".
The correct version is: Java SE 1.6.

Please follow the machine setup instructions at
    https://source.android.com/source/download.html
************************************************************
build/core/main.mk:141: *** stop.  Stop.
hexing@ubuntu:/disk5/v3s_Release/camdroid$ java -version
java version "1.7.0_151"
OpenJDK Runtime Environment (IcedTea 2.6.11) (7u151-2.6.11-2ubuntu0.14.04.1)
OpenJDK 64-Bit Server VM (build 24.151-b01, mixed mode)

貌似一定要oracle 官方的java sdk
参考链接1: https://askubuntu.com/questions/67909/how-do-i-install-oracle-jdk-6

###卸载官方openjdk ###
sudo apt-get purge openjdk*

cd /usr/lib/jvm/
###下载###
wget http://85-207-0-21.static.bluetone.cz/java/1.6.0_45/jdk-6u45-linux-x64.bin

###执行(解压)###
./jdk-6u45-linux-x64.bin

sudo update-alternatives --install "/usr/bin/java" "java" "/usr/lib/jvm/jdk1.6.0_45/bin/java" 1
sudo update-alternatives --install "/usr/bin/javac" "javac" "/usr/lib/jvm/jdk1.6.0_45/bin/javac" 1
sudo update-alternatives --install "/usr/bin/javaws" "javaws" "/usr/lib/jvm/jdk1.6.0_45/bin/javaws" 1
sudo update-alternatives --config java
sudo update-alternatives --config javac
sudo update-alternatives --config javaws


修改 /etc/profile:

JAVA_HOME=/usr/lib/jvm/jdk1.6.0_45
JAVA_BIN=$JAVA_HOME/bin
PATH=$PATH:$JAVA_HOME:$JAVA_BIN
export JAVA_HOME
export JAVA_BIN
export PATH





离线

楼主 #6 2018-03-21 16:51:26

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

占位





离线

楼主 #7 2018-03-21 16:51:32

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

build/core/product_config.mk:228: *** _nic.PRODUCTS.[[build/target/product/full.mk]]: "build/target/product/full_base_telephony.mk" does not exist.  Stop.

屏蔽 build/target/product/full.mk 的 $(call inherit-product, $(SRC_TARGET_DIR)/product/full_base_telephony.mk)





离线

#8 2018-03-21 22:58:55

kgp0213
会员
注册时间: 2018-01-15
已发帖子: 149
积分: 149

Re: 海豚派V3s开发板 camdroid 完整入坑记录

要看晕哥从一个坑掉到另一个坑

离线

楼主 #9 2018-03-22 06:55:43

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

kgp0213 说:

要看晕哥从一个坑掉到另一个坑

哈, 因为想把摄像头和h.264编解码器用起来。





离线

#10 2018-03-22 17:33:52

BMN李
会员
注册时间: 2018-03-22
已发帖子: 69
积分: 64

Re: 海豚派V3s开发板 camdroid 完整入坑记录

主线用不了摄像头么?摄像头扫码解码。

离线

楼主 #11 2018-03-22 17:53:33

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

BMN李 说:

主线用不了摄像头么?摄像头扫码解码。

主线不支持摄像头, h.264编解码等。





离线

#12 2018-03-23 13:37:28

zhuacai
会员
注册时间: 2017-12-16
已发帖子: 234
积分: 233.5

Re: 海豚派V3s开发板 camdroid 完整入坑记录

晕哥,能弄个入坑视频就好了

离线

楼主 #13 2018-03-23 13:39:02

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

zhuacai 说:

晕哥,能弄个入坑视频就好了

这个可以有,海豚派板子已买,但是还没发货。





离线

楼主 #14 2018-04-02 09:18:02

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

按这个步骤

$ source build/envsetup.sh;lunch;mklichee;extract-bsp;make -j2;pack;

编译 v3s_spinor_v2, 烧录固件之后, 运行newcdr会死机

\0HELLO! BOOT0 is starting!
get_ifm reg_val=7

===i2c gpio === 22777722 
PMU: axp version ok 
after set, dcdc2 =1100mv
axp20 set dcdc2 success 
DRAM DRIVE INFO: V0.7
DRAM Type = 2 (2:DDR2,3:DDR3,6:LPDDR2,7:LPDDR3)
DRAM CLK = 408 MHz
DRAM zq value: 000039bb
DRAM size = 64 MB
Succeed in reading Boot1 file head.
Jump to secend Boot.
[      0.096]

U-Boot 2011.09-rc1-00002-g10d0620 (Aug 21 2015 - 10:10:50) Allwinner Technology 

[      0.104]version: 1.1.0
[      0.111]pmbus:   
===i2c gpio === 22777722 
ready
[      0.119]PMU: AXP20x found
set power on vol to default
axp_set_power_supply_output dcdc2_vol = 1250
axp_set_power_supply_output dcdc3_vol = 3300
axp_set_power_supply_output aldo2_vol = 2500
axp_set_power_supply_output aldo3_vol = 3000
axp_set_power_supply_output ldo1_vol = 3300
axp_set_power_supply_output ldo2_vol = 3000
axp_set_power_supply_output ldo3_vol = 3000
fel key new mode
run key detect
no key found
[      0.174]DRAM:  64 MiB
[debug_jaosn]:use the clock in sys_config 
OK
[      0.196]sunxi flash init ok
hello @flash_speed=1
env_relocate_spec storage_type = 3
In:    serial
Out:   serial
Err:   serial
WORK_MODE_BOOT
read bootlogo partition successful,start_block=0x71a0,rblock=0x100 ,ret=256
Use decode 2x2 sampling
sunxi_read_bootlogo: jpg convert argb  
[      0.278]Hit any key to stop autoboot:  0 
read boot or recovery all
[      0.564]sunxi flash read :offset 4000, 4194815 bytes OK
[      0.570]ready to boot
[      0.572]
Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0
[    0.000000] Linux version 3.4.39 (hexing@ubuntu) (gcc version 4.6.3 20120201 (prerelease) (crosstool-NG linaro-1.13.1-2012.02-20120222 - Linaro GCC 2012.02) ) #305 Mon Apr 2 08:57:01 CST 2018
[    0.000000] CPU: ARMv7 Processor [410fc075] revision 5 (ARMv7), cr=10c5387d
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[    0.000000] Machine: sun8i
[    0.000000] Initialized persistent memory from 41d00800-41d107ff
[    0.000000] Memory policy: ECC disabled, Data cache writeback
[    0.000000] On node 0 totalpages: 16384
[    0.000000] free_area_init_node: node 0, pgdat c0524d24, node_mem_map c05b3000
[    0.000000]   Normal zone: 128 pages used for memmap
[    0.000000]   Normal zone: 0 pages reserved
[    0.000000]   Normal zone: 16256 pages, LIFO batch:3
[    0.000000] script_init enter!
[    0.000000] script_init exit!
[    0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768
[    0.000000] pcpu-alloc: [0] 0 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 16256
[    0.000000] Kernel command line: console=ttyS0,115200 root=/dev/nor1 init=/init loglevel=8 partitions= mac_addr= uid=1234567890 kmemleak=on fb_base=0x41b00000 boot_type=3 config_size=33140
[    0.000000] PID hash table entries: 256 (order: -2, 1024 bytes)
[    0.000000] Dentry cache hash table entries: 8192 (order: 3, 32768 bytes)
[    0.000000] Inode-cache hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Memory: 64MB = 64MB total
[    0.000000] Memory: 30084k/30084k available, 35452k reserved, 0K highmem
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
[    0.000000]     fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)
[    0.000000]     vmalloc : 0xc4800000 - 0xff000000   ( 936 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xc4000000   (  64 MB)
[    0.000000]     modules : 0xbf000000 - 0xc0000000   (  16 MB)
[    0.000000]       .text : 0xc0008000 - 0xc0491000   (4644 kB)
[    0.000000]       .init : 0xc0491000 - 0xc04b4000   ( 140 kB)
[    0.000000]       .data : 0xc04b4000 - 0xc0525460   ( 454 kB)
[    0.000000]        .bss : 0xc0525484 - 0xc05b2c64   ( 566 kB)
[    0.000000] NR_IRQS:544
[    0.000000] 524 ahb1 set parent pll_periph0d2
[    0.000000] Architected local timer running at 24.00MHz.
[    0.000000] Switching to timer-based delay loop
[    0.000000] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 178956ms
[    0.000000] Console: colour dummy device 80x30
[    0.000155] Calibrating delay loop (skipped), value calculated using timer frequency.. 4800.00 BogoMIPS (lpj=24000000)
[    0.000175] pid_max: default: 32768 minimum: 301
[    0.000320] Mount-cache hash table entries: 512
[    0.000837] CPU: Testing write buffer coherency: ok
[    0.001092] Setting up static identity map for 0x403694e8 - 0x40369540
[    0.001758] devtmpfs: initialized
[    0.003700] pinctrl core: initialized pinctrl subsystem
[    0.004192] NET: Registered protocol family 16
[    0.004592] DMA: preallocated 128 KiB pool for atomic coherent allocations
[    0.004646] script_sysfs_init success
[    0.004682] sunxi_dump_init success
[    0.005447] gpiochip_add: registered GPIOs 0 to 223 on device: sunxi-pinctrl
[    0.006378] sunxi-pinctrl sunxi-pinctrl: initialized sunXi PIO driver
[    0.006744] gpiochip_add: registered GPIOs 1024 to 1031 on device: axp-pinctrl
[    0.007469] tsc2003 device registered
[    0.007748] persistent_ram: uncorrectable error in header
[    0.007762] persistent_ram: no valid data in buffer (sig = 0x00000004)
[    0.014115] console [ram-1] enabled
[    0.014521] [sunxi-module]: [sunxi-module.0] probe success
[    0.014746] ++axp20_board_init!
[    0.014937] axp driver uning configuration failed(801)
[    0.015139] axp driver uning configuration failed(808)
[    0.015532] script config pll_isp to 360 Mhz
[    0.015668] Not Found clk pll_video in script 
[    0.015873] script config pll_ve to 360 Mhz
[    0.015993] Not Found clk pll_periph0 in script 
[    0.016193] Not Found clk pll_de in script 
[    0.016300] sunxi_default_clk_init
[    0.016408] try to set pll6ahb1 to 200000000
[    0.016609] Error not get clk pll6ahb1
[    0.016722] Error not get clk pll6ahb1try to set ahb1 to 200000000
[    0.016941] try to set apb1 to 100000000
[    0.017459] ===fe3o4==== sunxi_root_procfs_attach ret:0
[    0.021310] bio: create slab <bio-0> at 0
[    0.021752] pwm module init!
[    0.023422] ion_mem.size = 29360128
[    0.024115] SCSI subsystem initialized
[    0.024536] usbcore: registered new interface driver usbfs
[    0.024715] usbcore: registered new interface driver hub
[    0.024975] usbcore: registered new device driver usb
[    0.025310] twi_chan_cfg()342 - [twi0] has no twi_speed!
[    0.025425] twi_chan_cfg()353 - [twi0] has no twi_regulator.
[    0.025627] twi_chan_cfg()342 - [twi1] has no twi_speed!
[    0.025736] twi_chan_cfg()353 - [twi1] has no twi_regulator.
[    0.025937] sunxi_i2c_adap_init()1563 - Sunxi I2C init channel 0 
[    0.026187] ++sunxi_i2c_probe
[    0.026429] twi_request_gpio()406 - Pinctrl init 0 ... [twi0]
[    0.026640] twi_clk_write_reg()241 - twi_clk_write_reg: clk_n = 0, clk_m = 5
[    0.027131] ++axp_i2c_probe!
[    0.027410] axp20_init_chip:chip_id = 0x41
[    0.027410] axp20_board 0-0034: AXP (CHIP ID: 0x41) detected
[    0.030790] sunxi_i2c_probe()1250 - I2C: i2c-0: sunxi I2C adapter
[    0.030924] sunxi_i2c_probe()1251 - TWI_CTL  0xf1c2ac0c: 0x000000c4 
[    0.031132] sunxi_i2c_probe()1252 - TWI_STAT 0xf1c2ac10: 0x000000f9 
[    0.031348] sunxi_i2c_probe()1253 - TWI_CLK  0xf1c2ac14: 0x00000028 
[    0.031462] sunxi_i2c_probe()1254 - TWI_SRST 0xf1c2ac18: 0x00000000 
[    0.031664] sunxi_i2c_probe()1255 - TWI_EFR  0xf1c2ac1c: 0x00000000 
[    0.031847] Linux video capture interface: v2.00
[    0.032389] gpiochip_add: gpios 1024..1028 (axp_pin) failed to register
[    0.032389] axp pinctrl used,skip
[    0.032389] Advanced Linux Sound Architecture Driver Version 1.0.25.
[    0.032389] cfg80211: Calling CRDA to update world regulatory domain
[    0.033000] Switching to clocksource arch_sys_counter
[    0.039417] NET: Registered protocol family 2
[    0.039793] IP route cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.040447] TCP established hash table entries: 2048 (order: 2, 16384 bytes)
[    0.040693] TCP bind hash table entries: 2048 (order: 1, 8192 bytes)
[    0.040826] TCP: Hash tables configured (established 2048 bind 2048)
[    0.041028] TCP: reno registered
[    0.041143] UDP hash table entries: 256 (order: 0, 4096 bytes)
[    0.041354] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[    0.041721] NET: Registered protocol family 1
[    0.042130] Unpacking initramfs...
[    0.057683] Freeing initrd memory: 220K
[    0.058041] [pm]aw_pm_init!
[    0.058155] standby_mode = 1. 
[    0.058355] wakeup src cnt is : 3. 
[    0.058469] pmu name: pmu1_para .
[    0.058584] pmu1_enable = 0x1. 
[    0.058782] pmux_id = 0x1. 
[    0.058893] pmu name: pmu2_para .
[    0.059002] config_pmux_para: script_parser_fetch err. 
[    0.059202] pmu2_enable = 0x0. 
[    0.059324] add_sys_pwr_dm: get ldo name failed
[    0.059434] add_sys_pwr_dm: get ldo name failed
[    0.059961] add_sys_pwr_dm: get ldo name failed
[    0.060121] add_sys_pwr_dm: get ldo name failed
[    0.060234] add_sys_pwr_dm: get ldo name failed
[    0.060435] add_sys_pwr_dm: get ldo name failed
[    0.060790] add_sys_pwr_dm: get ldo name failed
[    0.061227] after inited: sys_mask config = 0x4810. 
[    0.061342] dynamic_standby enalbe = 0x0. 
[    0.061506] sunxi_reg_init enter
[    0.063513] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.063678] jffs2: version 2.2. (NAND) (SUMMARY)  漏 2001-2006 Red Hat, Inc.
[    0.064066] msgmni has been set to 59
[    0.065333] io scheduler noop registered
[    0.065544] io scheduler deadline registered
[    0.065735] io scheduler cfq registered (default)
[    0.066281] [DISP]disp_module_init
[    0.066894] cmdline,disp=
[    0.067540] disp_init_rotation_sw
[    0.067669] @@@rot-degree=0, scn_size[480,272]
[    0.067915] disp_rot_sw_set_manager,1209
[    0.068100] fb_para.width = 480,fb_para.height = 272,fb_para.buffer_num = 2
[    0.068222] gen_pool_alloc:nbits = 255,size = 1044480,order = 12
[    0.068424] chunk->start_addr = 0x42400000,chunk->end_addr = 0x43ffffffchunk->avail = 29360128
[    0.068728] end_bit = 7168
[    0.070262] info->var.bits_per_pixel = 32
[    0.083287] [DISP] disp_sys_power_enable,line:387:some error happen, fail to get regulator 
[    0.083611] [DISP] disp_sys_gpio_set_value,line:374:OSAL_GPIO_DevWRITE_ONEPIN_DATA, hdl is NULL
[    0.084665] [DISP]disp_module_init finish
[    0.085051] sw_uart_get_devinfo()1503 - uart2 has no uart_regulator.
[    0.085576] uart2: ttyS0 at MMIO 0x1c28800 (irq = 34) is a SUNXI
[    0.085703] sw_uart_pm()890 - uart2 clk is already enable
[    0.085918] sw_console_setup()1233 - console setup baud 115200 parity n bits 8, flow n
[    0.182001] console [ttyS0] enabled
[    1.003632] sunxi_spi_chan_cfg()1376 - [spi-0] has no spi_regulator.
[    1.011583] spi spi0: master is unqueued, this is deprecated
[    1.018104] m25p_probe()966 - Use the Dual Mode Read.
[    1.024051] NorFlash ID: 0xc22018 - 0xc220
[    1.028707] m25p80 spi0.0: found mx25l12805d, expected at25df641
[    1.035601] m25p80 spi0.0: mx25l12805d (16384 Kbytes)
[    1.043017] @@@[debug_jaosn]: Invalid partitions count: 4 9
[    1.049855] Creating 8 MTD partitions on "spi0.0":
[    1.055353] 0x000000000000-0x000000040000 : "uboot"
[    1.061944] 0x000000040000-0x000000440000 : "boot"
[    1.068327] 0x000000440000-0x000000df0000 : "system"
[    1.074939] 0x000000df0000-0x000000e70000 : "cfg"
[    1.081307] 0x000000e70000-0x000000e90000 : "boot_logo"
[    1.088248] 0x000000e90000-0x000000eb0000 : "shutdown_logo"
[    1.095542] 0x000000eb0000-0x000000ec0000 : "env"
[    1.100939] [DISP] disp_lcd_pwm_enable,line:1026:pwm device hdl is NULL
[    1.109573] 0x000000ec0000-0x000000ed0000 : "private"
[    1.116506] priv->phy_ext = INT_PHY
[    1.121314] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.148880] sunxi-ehci sunxi-ehci.1: SW USB2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.158012] sunxi-ehci sunxi-ehci.1: new USB bus registered, assigned bus number 1
[    1.166644] sunxi-ehci sunxi-ehci.1: irq 104, io mem 0xf1c1a000
[    1.190032] sunxi-ehci sunxi-ehci.1: USB 0.0 started, EHCI 1.00
[    1.197445] hub 1-0:1.0: USB hub found
[    1.201865] hub 1-0:1.0: 1 port detected
[    1.206860] sunxi-ehci sunxi-ehci.1: remove, state 1
[    1.212524] usb usb1: USB disconnect, device number 1
[    1.502629] sunxi-ehci sunxi-ehci.1: USB bus 1 deregistered
[    1.519068] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.546250] sunxi-ohci sunxi-ohci.1: SW USB2.0 'Open' Host Controller (OHCI) Driver
[    1.554992] sunxi-ohci sunxi-ohci.1: new USB bus registered, assigned bus number 1
[    1.563568] sunxi-ohci sunxi-ohci.1: irq 105, io mem 0xf1c1a400
[    1.634684] hub 1-0:1.0: USB hub found
[    1.638967] hub 1-0:1.0: 1 port detected
[    1.643858] sunxi-ohci sunxi-ohci.1: remove, state 1
[    1.649597] usb usb1: USB disconnect, device number 1
[    1.655923] sunxi-ohci sunxi-ohci.1: USB bus 1 deregistered
[    1.672446] Initializing USB Mass Storage driver...
[    1.678044] usbcore: registered new interface driver usb-storage
[    1.684931] USB Mass Storage support registered.
[    1.690508] file system registered
[    1.696037] android_usb gadget: Mass Storage Function, version: 2009/09/11
[    1.703854] android_usb gadget: Number of LUNs=1
[    1.709170]  lun0: LUN: removable file: (no medium)
[    1.715187] android_usb gadget: android_usb ready
[    1.720692] sunxikbd_script_init: key para not found, used default para. 
[    1.728944] tsc2003_ts_init
[    1.732189] =====ctp_fetch_sysconfig_para=====. 
[    1.737525] ctp_fetch_sysconfig_para: ctp_unused. 
[    1.742951] =========script_get_item_err============
[    1.748558] tsc2003_ts_init: ctp_fetch_sysconfig_para err.
[    1.755050] [RTC] WARNING: Rtc time will be wrong!!
[    1.760902] sunxi-rtc sunxi-rtc: rtc core: registered sunxi-rtc as rtc0
[    1.768612] sunxi cedar version 0.1 
[    1.772764] [cedar]: install start!!!
[    1.777256] [cedar]: install end!!!
[    1.788393] pmu_pekoff_time = 6000
[    1.792309] pmu_pekoff_en = 1
[    1.795697] pmu_peklong_time = 1500
[    1.799753] pmu_pekon_time = 1000
[    1.803550] pmu_pwrok_time = 64
[    1.807131] pmu_pwrnoe_time = 2000
[    1.811100] pmu_hot_shutdown = 1
[    1.815630] POWER20_PEK_SET:2146-->0x9d
[    1.820414] POWER20_PEK_SET:2157-->0x9d
[    1.825279] POWER20_PEK_SET:2166-->0x9d
[    1.830057] POWER20_PEK_SET:2177-->0x9d
[    1.834859] POWER20_PEK_SET:2189-->0x9d
[    1.839727] POWER20_HOTOVER_CTL:2198-->0x2d
[    1.851731] sunxi_wdt_init_module: sunxi WatchDog Timer Driver v1.0
[    1.859129] sunxi_wdt_probe: devm_ioremap return wdt_reg 0xf1c20ca0, res->start 0x01c20ca0, res->end 0x01c20cbf
[    1.870492] sunxi_wdt_probe: initialized (g_timeout=16s, g_nowayout=0)
[    1.878228] wdt_enable, write reg 0xf1c20cb8 val 0x00000000
[    1.884544] wdt_set_tmout, write 0x000000b0 to mode reg 0xf1c20cb8, actual timeout 16 sec
[    1.894295] [mmc]: SD/MMC/SDIO Host Controller Driver(v1.114 2015-6-2 10:21) Compiled in Apr  2 2018 at 08:54:04
[    1.905863] [mmc]: get mmc0's sdc_power failed
[    1.911014] [mmc]: get mmc1's sdc_power failed
[    1.916051] [mmc]: MMC host used card: 0x3, boot card: 0x0, io_card 2
[    1.924214] [mmc]: sdc0 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    1.937578] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    1.950528] sunxi_leds_fetch_sysconfig_para leds is not used in config
[    1.957990] =========script_get_err============
[    1.963350] usbcore: registered new interface driver usbhid
[    1.969726] usbhid: USB HID core driver
[    1.974745] ashmem: initialized
[    1.978469] logger: created 256K log 'log_main'
[    1.983859] logger: created 32K log 'log_events'
[    1.989230] logger: created 32K log 'log_radio'
[    1.994511] logger: created 32K log 'log_system'
[    2.001376] script_get_item return audio_pa_ctrl type err
[    2.008330] asoc: sndcodec <-> sunxi-codec mapping ok
[    2.016331] TCP: cubic registered
[    2.020167] NET: Registered protocol family 17
[    2.025476] VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 5
[    2.034299] ThumbEE CPU extension supported.
[    2.039165] Registering SWP/SWPB emulation handler
[    2.046587] sunxi-rtc sunxi-rtc: hctosys: unable to read the hardware clock
[    2.055973] [wifi module_pm]: select module num is 6
[    2.061743] [wifi module_pm]: step [0] failed to fetch module_power0
[    2.068894] [wifi module_pm]: mod has no chip_en gpio
[    2.074714] [wifi module_pm]: failed to fetch lpo_use_apclk
[    2.081347] [wifi_pm]: wifi gpio init is OK !!
[    2.086560] 
[    2.086564] *****Apr  2 2018 08:54:04 EAGLE DRIVER VER:75be56bfbaf7*****
[    2.086572] 
[    2.097850] =======================================================
[    2.104931] ==== Launching Wi-Fi driver! (Powered by Rockchip) ====
[    2.112092] =======================================================
[    2.119145] Espressif ESP8089 SDIO WiFi driver (Powered by Rockchip, Ver2.25(01/22/2016),Drv: 2.26) init.
[    2.129974] [wifi_pm]: set wl_reg_on 1 !
[    2.234489] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.245987] [mmc]: sdc1 power_supply is null
[    2.270037] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.302351] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[    2.311609] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[    2.320037] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.332890] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.345071] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 8,  RTO !!
[    2.353398] *******************Try sdio*******************
[    2.359891] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.394656] mmc1: queuing unknown CIS tuple 0x01 (3 bytes)
[    2.408059] mmc1: queuing unknown CIS tuple 0x1a (5 bytes)
[    2.417343] mmc1: queuing unknown CIS tuple 0x1b (8 bytes)
[    2.424573] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing SD-HS(SDR25) dt B
[    2.434955] [mmc]: sdc1 set ios: clk 50000000Hz bm PP pm ON vdd 3.3V width 1 timing SD-HS(SDR25) dt B
[    2.445488] [mmc]: sdc1 set ios: clk 50000000Hz bm PP pm ON vdd 3.3V width 4 timing SD-HS(SDR25) dt B
[    2.456931] mmc1: queuing unknown CIS tuple 0x80 (1 bytes)
[    2.463266] mmc1: queuing unknown CIS tuple 0x81 (1 bytes)
[    2.469496] mmc1: queuing unknown CIS tuple 0x82 (1 bytes)
[    2.475828] mmc1: new high speed SDIO card at address 0001
[    2.482400] esp_sdio_dummy_probe enter
[    2.486817] *******************sdio init ok*******************
[    2.690020] esp_sdio_init power up OK
[    3.131981] esp_host:75be56bfbaf7
[    3.131989] esp_target: 2cefb7b78636 77 18204
[    3.131995] 
[    3.142640] esp_readwrite_file: file /system/lib/modules/test_results filp_open error
[    3.151654] first normal exit
[    3.155152] esp_sdio_remove enter
[    3.159034] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[    3.167500] sif_disable_irq release irq failed
[    3.172742] mmc1: card 0001 removed
[    3.176876] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.186951] [mmc]: sdc1 power_supply is null
[    3.280094] ALSA device list:
[    3.283490]   #0: audiocodec
[    3.286978] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.297155] Freeing init memory: 140K
[    3.303287] init: skipping insecure file '/default.prop'
[    3.309503] init: skipping insecure file '/init.rc'
[    3.315139] [mmc]: sdc1 power_supply is null
[    3.321768] init: /init.rc: 132: invalid option 'root'
[    3.327682] init: skipping insecure file '/init.sun8i.rc'
[    3.334096] init: /init.sun8i.rc: 58: invalid option 'root'
[    3.340444] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.350882] init: skipping insecure file 'init.sun8i.usb.rc'
[    3.357885] init: command 'loglevel' r=0
[    3.364369] init: skipping insecure file '/ueventd.rc'
[    3.370322] init: command 'export' r=0
[    3.374686] init: command 'export' r=0
[    3.378951] init: command 'export' r=0
[    3.383539] init: skipping insecure file '/ueventd.sun8i.rc'
[    3.390902] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[    3.399371] init: command 'export' r=0
[    3.403775] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[    3.412133] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.430347] init: command 'symlink' r=0
[    3.434827] init: command 'symlink' r=0
[    3.439312] init: command 'symlink' r=0
[    3.450248] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.470283] init: command 'mkdir' r=0
[    3.474519] init: command 'mkdir' r=0
[    3.478816] init: command 'mkdir' r=0
[    3.485103] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 8,  RTO !!
[    3.493533] *******************Try sdio*******************
[    3.510326] init: command 'mkdir' r=-2
[    3.514623] init: processing action 0x7f6780 (init)
[    3.525335] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.550285] init: command 'export' r=0
[    3.554630] init: command 'export' r=0
[    3.558900] init: command 'export' r=0
[    3.567320] init: command 'export' r=0
[    3.571728] init: processing action 0x7f4e90 (early-fs)
[    3.577761] init: command 'mkdir' r=0
[    3.582145] init: command 'mkdir' r=0
[    3.586347] mmc1: queuing unknown CIS tuple 0x01 (3 bytes)
[    3.592707] init: command 'mkdir' r=0
[    3.596887] init: processing action 0x7f7a20 (console_init)
[    3.603559] init: command 'console_init' r=0
[    3.608530] init: processing action 0x7f5198 (fs)
[    3.613950] init: command 'wait' r=0
[    3.618682] init: command 'setupfs' r=1
[    3.623330] init: out of loopback devices source = /dev/block/mtdblock2
[    3.630841] init: out of loopback devices target = /system
[    3.637149] init: out of loopback devices system = squashfs
[    3.643469] init: out of loopback devices options = (null)
[    3.652335] init: command 'mount' r=0
[    3.656654] init: command 'wait' r=0
[    3.660816] init: out of loopback devices source = /dev/block/mtdblock3
[    3.668373] init: out of loopback devices target = /data
[    3.674508] init: out of loopback devices system = jffs2
[    3.680530] mmc1: queuing unknown CIS tuple 0x1a (5 bytes)
[    3.686726] init: out of loopback devices options = (null)
[    3.695901] mmc1: queuing unknown CIS tuple 0x1b (8 bytes)
[    3.703099] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing SD-HS(SDR25) dt B
[    3.713629] [mmc]: sdc1 set ios: clk 50000000Hz bm PP pm ON vdd 3.3V width 1 timing SD-HS(SDR25) dt B
[    3.724392] [mmc]: sdc1 set ios: clk 50000000Hz bm PP pm ON vdd 3.3V width 4 timing SD-HS(SDR25) dt B
[    3.736237] mmc1: queuing unknown CIS tuple 0x80 (1 bytes)
[    3.742611] mmc1: queuing unknown CIS tuple 0x81 (1 bytes)
[    3.749024] mmc1: queuing unknown CIS tuple 0x82 (1 bytes)
[    3.755448] mmc1: new high speed SDIO card at address 0001
[    3.763688] init: command 'mount' r=0
[    3.767931] init: processing action 0x7f5278 (post-fs)
[    3.774405] init: out of loopback devices source = rootfs
[    3.780555] init: out of loopback devices target = /
[    3.786167] init: out of loopback devices system = rootfs
[    3.792443] init: out of loopback devices options = (null)
[    3.798720] init: command 'mount' r=0
[    3.804149] init: processing action 0x7f52d8 (post-fs-data)
[    3.816786] init: command 'chown' r=0
[    3.832957] init: command 'chmod' r=0
[    3.837192] init: command 'chmod' r=-2
[    3.849020] init: command 'mkdir' r=0
[    3.855823] init: command 'restorecon' r=0
[    3.866639] init: command 'mkdir' r=0
[    3.878113] init: command 'mkdir' r=0
[    3.888675] init: command 'mkdir' r=0
[    3.898752] init: command 'mkdir' r=0
[    3.906127] init: processing action 0x7f64b8 (post-fs-data)
[    3.922577] init: skipping insecure file '/system/vendor/modules/fatfs.ko'
[    4.274716] misc fatfs initialized
[    4.278950] init: command 'insmod' r=0
[    4.283731] init: skipping insecure file '/system/vendor/modules/videobuf-core.ko'
[    4.298009] Wifi Efuse Mac => ac:d0:74:f0:69:b5
[    4.303293] esp_host:75be56bfbaf7
[    4.303299] esp_target: 2cefb7b78636 77 18204
[    4.303304] 
[    4.323622] esp_sdio: initializing netlink
[    4.328439] init: command 'insmod' r=0
[    4.332875] *******************sdio init ok*******************
[    4.339717] init: skipping insecure file '/system/vendor/modules/videobuf-dma-contig.ko'
[    4.349904] init: command 'insmod' r=0
[    4.354349] init: skipping insecure file '/system/vendor/modules/cci.ko'
[    4.395790] [VFE]cci probe start cci_sel = 0!
[    4.400937] [VFE]cci probe end cci_sel = 0!
[    4.405788] [VFE]cci_init end
[    4.409390] init: command 'insmod' r=0
[    4.413832] init: skipping insecure file '/system/vendor/modules/vfe_os.ko'
[    4.452852] init: command 'insmod' r=0
[    4.457283] init: skipping insecure file '/system/vendor/modules/vfe_subdev.ko'
[    4.466546] init: command 'insmod' r=0
[    4.471033] init: skipping insecure file '/system/vendor/modules/ov2710_mipi.ko'
[    4.490575] [VFE_DEV_CCI_DBG]cci init device
[    4.495542] [VFE_DEV_CCI_DBG]cci_subdev_init!
[    4.500530] [VFE_DEV_CCI_DBG]cci_dev_num_id = 1, name = ov2710_mipi, cci_subdev_init,sd pt=c1b27d80!
[    4.511052] init: command 'insmod' r=0
[    4.515488] init: skipping insecure file '/system/vendor/modules/vfe_v4l2.ko'
[    4.669290] [VFE]Welcome to Video Front End driver
[    4.675458] [VFE]pdev->id = 0
[    4.678861] [VFE]dev->mipi_sel = 0
[    4.682777] [VFE]dev->vip_sel = 0
[    4.686551] [VFE]dev->isp_sel = 0
[    4.696652] [VFE_WARN]vfe vpu clock is null
[    4.701441] gen_pool_alloc:nbits = 1,size = 4096,order = 12
[    4.707737] chunk->start_addr = 0x42400000,chunk->end_addr = 0x43ffffffchunk->avail = 28315648
[    4.717510] end_bit = 7168
[    4.725710] gen_pool_alloc:nbits = 1,size = 4096,order = 12
[    4.732019] chunk->start_addr = 0x42400000,chunk->end_addr = 0x43ffffffchunk->avail = 28311552
[    4.741889] end_bit = 7168
[    4.751366] [ISP] isp platform_id = 6!
[    4.755805] [VFE]vfe_init end
[    4.759771] init: command 'insmod' r=0
[    4.764106] [VFE]probe_work_handle start!
[    4.768657] [VFE]..........................vfe clk open!.......................
[    4.777021] init: processing action 0x7f7a68 (property_service_init)
[    4.785679] dev->dev_qty = 1
[    4.789096] [VFE]v4l2 subdev register input_num = 0
[    4.794664] [VFE]vfe sensor detect start! input_num = 0
[    4.800672] [VFE]Find sensor name is "ov2710_mipi", i2c address is 6c, type is "RAW" !
[    4.809564] [VFE]Sub device register "ov2710_mipi" i2c_addr = 0x6c start!
[    4.817298] [VFE_DEV_CCI_DBG]try cci dev name =ov2710_mipi!
[    4.823588] [VFE_DEV_CCI_DBG]cci_drv->name = ov2710_mipi, check name = ov2710_mipi
[    4.832189] [VFE_DEV_CCI_DBG]cci_bus_match name matched!
[    4.838277] [VFE_DEV_CCI_DBG]sd = c1b27d80, cci_drv pt = bf0ac6a8,id = 0,saddr = 36, name = ov2710_mipi
[    4.848818] [VFE]v4l2_device_register_subdev return 0
[    4.854620] [VFE]registered sensor subdev is OK!
[    4.859844] [VFE]Check sensor!
[    4.863339] [VFE]Sub device register "ov2710_mipi" is OK!
[    4.870979] init: skipping insecure file '/system/build.prop'
[    4.920707] [VFE]Check open /system/etc/hawkview/ov2710_mipi/isp_test_param.ini failed!
[    4.920723] Match isp cfg  start!
[    4.933704] [VFE]Match isp cfg ok
[    4.938220] init: Created socket '/dev/socket/property_service' with mode '666', user '0', group '0'
[    4.948701] init: command 'property_service_init' r=0
[    4.954918] [VFE]V4L2 device registered as video0
[    4.960338] init: processing action 0x7f7ab0 (signal_init)
[    4.966717] init: command 'signal_init' r=0
[    4.971540] [VFE]..........................vfe clk close!.......................
[    4.979969] [VFE]probe_work_handle end!
[    4.984376] init: processing action 0x7f7af8 (check_startup)
[    4.990920] init: command 'check_startup' r=0
[    4.995880] init: processing action 0x7f5490 (boot)
[    5.001939] init: command 'ifup' r=0
[    5.006167] init: command 'hostname' r=0
[    5.010735] init: command 'domainname' r=0
[    5.015516] init: command 'setrlimit' r=0
[    5.025197] init: command 'chown' r=0
[    5.029613] init: starting 'servicemanager'
[    5.034986] init: starting 'vold'
[    5.039213] init: starting 'media'
[    5.050463] init: Created socket '/dev/socket/vold' with mode '660', user '0', group '1009'
[    5.068891] init: starting 'startupSound'
[    5.084718] init: command 'class_start' r=0
[    5.098422] init: starting 'newcdr'
[    5.107514] init: command 'class_start' r=0
[    5.112444] init: processing action 0x7f65e8 (boot)
[    5.118136] init: starting 'adbd'
[    5.128694] init: command 'start' r=0
[    5.140695] init: Created socket '/dev/socket/adbd' with mode '660', user '1000', group '1000'
[    5.162163] init: starting 'debuggerd'
[    5.166936] init: command 'start' r=0
[    5.192725] init: command 'setprop' r=0
[    5.197169] init: command 'setprop' r=0
[    5.201991] adb_open
[    5.215718] init: processing action 0x7f7b40 (queue_property_triggers)
[    5.224075] init: command 'queue_property_triggers' r=0
[    5.230799] init: processing action 0x7f5770 (property:ro.debuggable=1)
[    5.238522] init: starting 'console'
[    5.243139] init: command 'start' r=0
[    5.247350] init: processing action 0x7f7458 (property:sys.usb.config=mass_storage,adb)
[    5.265487] android_usb: already disabled
[    5.270961] init: command 'write' r=0
[    5.278780] init: command 'write' r=0
[    5.292096] init: command 'write' r=0
[    5.299611] init: command 'write' r=0
[    5.306169] ep_matches, wrn: endpoint already claimed, ep(0xc0513ba4, 0xc1a73ac0, ep1in-bulk)
[    5.316011] adb_bind_config
[    5.319246] ep_matches, wrn: endpoint already claimed, ep(0xc0513ba4, 0xc1a73ac0, ep1in-bulk)
[    5.333938] ep_matches, wrn: endpoint already claimed, ep(0xc0513bf0, 0xc1a73ac0, ep1out-bulk)
[    5.343709] ep_matches, wrn: endpoint already claimed, ep(0xc0513ba4, 0xc1a73ac0, ep1in-bulk)
[    5.353379] ep_matches, wrn: endpoint already claimed, ep(0xc0513bf0, 0xc1a73ac0, ep1out-bulk)
[    5.363047] ep_matches, wrn: endpoint already claimed, ep(0xc0513c3c, 0xc1a8dec0, ep2in-bulk)
[    5.373376] init: command 'write' r=0
[    5.377645] init: command 'setprop' r=0
root@camdroid:/ # [    7.820557] ★·newcdr·★: main entry
[    7.835291] ★·newcdr·★: ===no need to check battery capacity ===
[    8.551897] [DISP] ready enter pm_runtime_get_sync, device0
[    8.863366] [VFE]vfe_open
[    8.866402] [VFE]..........................vfe clk open!.......................
[    8.875074] gen_pool_alloc:nbits = 1,size = 3584,order = 12
[    8.881374] chunk->start_addr = 0x42400000,chunk->end_addr = 0x43ffffffchunk->avail = 28307456
[    8.891154] end_bit = 7168
[    8.894306] gen_pool_alloc:nbits = 1,size = 1536,order = 12
[    8.900607] chunk->start_addr = 0x42400000,chunk->end_addr = 0x43ffffffchunk->avail = 28303360
[    8.910479] end_bit = 7168
[    8.913593] gen_pool_alloc:nbits = 3,size = 8448,order = 12
[    8.919875] chunk->start_addr = 0x42400000,chunk->end_addr = 0x43ffffffchunk->avail = 28299264
[    8.929773] end_bit = 7168
[    8.938005] gen_pool_alloc:nbits = 3,size = 8448,order = 12
[    8.944404] chunk->start_addr = 0x42400000,chunk->end_addr = 0x43ffffffchunk->avail = 28286976
[    8.954267] end_bit = 7168
[    8.957391] gen_pool_alloc:nbits = 3,size = 8448,order = 12
[    8.963685] chunk->start_addr = 0x42400000,chunk->end_addr = 0x43ffffffchunk->avail = 28274688
[    8.973548] end_bit = 7168
[    8.976660] gen_pool_alloc:nbits = 3,size = 8448,order = 12
[    8.983042] chunk->start_addr = 0x42400000,chunk->end_addr = 0x43ffffffchunk->avail = 28262400
[    8.992905] end_bit = 7168
[    8.996015] gen_pool_alloc:nbits = 3,size = 8448,order = 12
[    9.002307] chunk->start_addr = 0x42400000,chunk->end_addr = 0x43ffffffchunk->avail = 28250112
[    9.012173] end_bit = 7168
[    9.015283] [VFE]vfe_open ok
[    9.018803] [VFE]Set vfe core clk = 216000000, after Set vfe core clk = 180000000 
[    9.039443] [OV2710 Raw]CSI_SUBDEV_PWR_ON!
[    9.044204] [VFE_WARN]os_gpio_set_status, hdl is NULL
[    9.050037] [VFE_WARN]os_gpio_set_status, hdl is NULL
[    9.055941] vfe_gpio_write:gpio_type = 2,status = 1
[    9.061478] os_gpio_write:set gpio 35 to 1
[    9.066121] os_gpio_write:set gpio 35 to 1

然而换一台电脑,重新编译烧录, 问题依旧。





离线

楼主 #15 2018-04-02 23:18:33

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

root@camdroid:/ # ls /system/lib

crtbegin_so.o
crtend_so.o
hw
libAdas.so
libCedarX.so
libFatFs.so
libGsensor.so
libMemAdapter.so
libVE.so
libadecoder.so
libasan_preload.so
libaudioflinger.so
libaudioutils.so
libavcodec-2.2.git.so
libavdevice-2.2.git.so
libavfilter-2.2.git.so
libavformat-2.2.git.so
libavresample-2.2.git.so
libavutil-2.2.git.so
libaw_net.so
libawmd.so
libbinder.so
libc.so
libcamera_client.so
libcamera_metadata.so
libcameraservice.so
libcdx_base.so
libcdx_parser.so
libcdx_stream.so
libcedarx_aencoder.so
libcedarxbase.so
libcedarxplayer.so
libcedarxstream.so
libcodec_audio.so
libcommon_time_client.so
libcorkscrew.so
libcpuinfo.so
libcrypto.so
libcutils.so
libdatabase.so
libdiskconfig.so
libdisplay_client.so
libdisplayservice.so
libdl.so
libeffects.so
libexpat.so
libext4_utils.so
libgabi++.so
libgccdemangle.so
libhardware.so
libhardware_legacy.so
libhttpsrv.so
libhwdisp.so
libjpeg.so
libjpegdecoder.so
liblog.so
libm.so
libmedia.so
libmedia_native.so
libmedia_proxy.so
libmediaplayerservice.so
libminigui_ths-3.0.so.12
libnbaio.so
libnetutils.so
libnormal_audio.so
libpagemap.so
libpng.so
libpower.so
libpowermanager.so
libqrdecode.so
libril_audio.so
libsdecoder.so
libsparse.so
libspeexresampler.so
libsqlite.so
libssl.so
libstagefright_color_conversion.so
libstagefright_foundation.so
libstandby.so
libstdc++.so
libstlport.so
libstorage.so
libswresample-2.2.git.so
libswscale-2.2.git.so
libsync.so
libsysutils.so
libthirdpartstream.so
libthread_db.so
libtinyalsa.so
libui.so
libutils.so
libvdecoder.so
libvencoder.so
libvideoresizer.so
libwater_mark.so
libwpa_client.so
libz.so




离线

#16 2018-04-19 13:14:10

flanker
会员
注册时间: 2018-04-19
已发帖子: 1
积分: 1

Re: 海豚派V3s开发板 camdroid 完整入坑记录

jdk装好了,环境变量也设好了,为什么还要我装JDK?哪里设置不对吗?linux新手

离线

#17 2018-04-19 13:34:25

daydayup
会员
注册时间: 2017-10-09
已发帖子: 343
积分: 343

Re: 海豚派V3s开发板 camdroid 完整入坑记录

有没有重启,不能不支持java,javac等命令?

离线

#18 2018-04-19 14:58:33

lcfmax
会员
注册时间: 2018-04-13
已发帖子: 319
积分: 272.5

Re: 海豚派V3s开发板 camdroid 完整入坑记录

我虚拟机装的虚拟机是Java 7的,可否?

离线

#19 2018-04-19 15:06:18

daydayup
会员
注册时间: 2017-10-09
已发帖子: 343
积分: 343

Re: 海豚派V3s开发板 camdroid 完整入坑记录

lcfmax 说:

我虚拟机装的虚拟机是Java 7的,可否?

可以试一试,有可能不行。

离线

#20 2018-04-22 08:52:22

zhuacai
会员
注册时间: 2017-12-16
已发帖子: 234
积分: 233.5

Re: 海豚派V3s开发板 camdroid 完整入坑记录

各位大侠,camdroid上可以用opencv读取摄像头吗

离线

#21 2018-05-23 10:55:10

wulala
会员
注册时间: 2018-04-26
已发帖子: 5
积分: 5

Re: 海豚派V3s开发板 camdroid 完整入坑记录

新手 求问camdroid打包的时候能指定压缩方式吗?打包完之后有22.2M,而只有16M的norflash

离线

楼主 #22 2018-05-23 11:01:03

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

可以烧录的,你试一试,我一开始也有这种疑问。

用全志官方的烧录软件 PhoenixSuit.





离线

#23 2018-05-23 12:12:07

wulala
会员
注册时间: 2018-04-26
已发帖子: 5
积分: 5

Re: 海豚派V3s开发板 camdroid 完整入坑记录

晕哥 说:

可以烧录的,你试一试,我一开始也有这种疑问。

用全志官方的烧录软件 PhoenixSuit.

好的,谢谢晕哥,我试一下

离线

#24 2018-05-30 16:09:39

wulala
会员
注册时间: 2018-04-26
已发帖子: 5
积分: 5

Re: 海豚派V3s开发板 camdroid 完整入坑记录

新手求问,camdroid sysconfig.fex中 csi的配置中,twi的地址怎么填?看到一个可用的配置vip_dev0_twi_id = 0 ,vip_dev0_twi_addr = 0x20,那twi_id = 1的呢?

离线

楼主 #25 2018-05-30 16:20:18

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

vip_dev0_twi_addr  是 i2c设备的地址,根据设备实际地址填写即可。

比如ov5640摄像头:

vip_dev0_twi_addr = 0x78





离线

#26 2018-05-30 16:23:02

wulala
会员
注册时间: 2018-04-26
已发帖子: 5
积分: 5

Re: 海豚派V3s开发板 camdroid 完整入坑记录

好的,谢谢晕哥

离线

楼主 #27 2018-07-14 21:53:48

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

上传一个海豚派固件可以录像的固件,未使用 camdroid 架构,未整合编解码器,仅仅把 ov2710采集的原始数据保存到TF卡.

固件下载地址:sun8iw8p1_linux_qt_dophin_pi_uart0_none_20180428.7z

使用PhoenixSuit.exe烧录到海豚派第一代(红色)板子.

运行指令:

mount /dev/mmcblk0p1 /root      ###挂载TF卡
cd /root
insmod /lib/modules/3.4.39/videobuf2-core.ko
insmod /lib/modules/3.4.39/videobuf2-memops.ko
insmod /lib/modules/3.4.39/videobuf2-vmalloc.ko
insmod /lib/modules/3.4.39/cci.ko
insmod /lib/modules/3.4.39/vfe_os.ko
insmod /lib/modules/3.4.39/vfe_subdev.ko
insmod /lib/modules/3.4.39/videobuf-core.ko
insmod /lib/modules/3.4.39/videobuf-dma-contig.ko
insmod /lib/modules/3.4.39/ov2710_mipi.ko
insmod /lib/modules/3.4.39/vfe_v4l2.ko
/usr/bin/camera

QQ20180714215450.jpg

QQ20180714215442.png





离线

#28 2018-07-14 22:31:05

tom
会员
注册时间: 2018-03-14
已发帖子: 128
积分: 127.5

Re: 海豚派V3s开发板 camdroid 完整入坑记录

为什么要打马赛克

离线

楼主 #29 2018-07-14 23:13:04

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

当时发给一网友,手抖随便画了一下, 今天把资料补上发现已经马赛克,偷偷问下哪里有马赛克修复技术.





离线

#30 2018-08-23 10:33:02

gdfsli
会员
注册时间: 2018-07-11
已发帖子: 28
积分: 28

Re: 海豚派V3s开发板 camdroid 完整入坑记录

请问有没有windows下的sunxi-fel程序可以用来烧写V3S?我用了几个sunxi-tools的windows版本都只能认到CPU,认不到spiflash

离线

楼主 #31 2018-08-23 10:57:12

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录





离线

#32 2018-08-27 09:30:09

silvereyes
会员
注册时间: 2018-08-27
已发帖子: 14
积分: 4

Re: 海豚派V3s开发板 camdroid 完整入坑记录

请教一下:
mklichee    #编译BootLoader和内核,模块
这个mklichee命令里面,似乎只执行了mkbr和mkernel,我没找到编译uboot的选项,请问下这个bootloader到底是怎么编译出来的?

离线

#33 2018-08-27 13:20:18

silvereyes
会员
注册时间: 2018-08-27
已发帖子: 14
积分: 4

Re: 海豚派V3s开发板 camdroid 完整入坑记录

请问晕哥,是否能提供下官方的sdk,或者海豚派的官方sdk啊?先谢过!

离线

楼主 #34 2018-08-27 15:47:13

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

silvereyes 说:

请教一下:
mklichee    #编译BootLoader和内核,模块
这个mklichee命令里面,似乎只执行了mkbr和mkernel,我没找到编译uboot的选项,请问下这个bootloader到底是怎么编译出来的?

没有研究过,有可能是u-boot不开源,只提供u-boot.bin.





离线

楼主 #35 2018-08-27 15:49:04

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

silvereyes 说:

请问晕哥,是否能提供下官方的sdk,或者海豚派的官方sdk啊?先谢过!

海豚派sdk不开源,
你可以试一下芒果派源码,
https://whycan.cn/t_970.html
基本是一样的,除了  sys_config.fex





离线

#36 2018-08-29 20:43:40

Longer
会员
注册时间: 2018-08-29
已发帖子: 3
积分: 3

Re: 海豚派V3s开发板 camdroid 完整入坑记录

晕哥 说:
kgp0213 说:

要看晕哥从一个坑掉到另一个坑

哈, 因为想把摄像头和h.264编解码器用起来。

linux小白表示不太理解……是因为只有camdroid上面才有这个驱动吗?其它环境下能不能也有这些驱动?

离线

#37 2018-08-30 01:14:48

silvereyes
会员
注册时间: 2018-08-27
已发帖子: 14
积分: 4

Re: 海豚派V3s开发板 camdroid 完整入坑记录

晕哥 说:
silvereyes 说:

请问晕哥,是否能提供下官方的sdk,或者海豚派的官方sdk啊?先谢过!

海豚派sdk不开源,
你可以试一下芒果派源码,
https://whycan.cn/t_970.html
基本是一样的,除了  sys_config.fex

好的,谢谢!

离线

楼主 #38 2018-08-30 06:22:14

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

Longer 说:
晕哥 说:
kgp0213 说:

要看晕哥从一个坑掉到另一个坑

哈, 因为想把摄像头和h.264编解码器用起来。

linux小白表示不太理解……是因为只有camdroid上面才有这个驱动吗?其它环境下能不能也有这些驱动?

摄像头驱动被社区整出来了,
关键是视频编解码器吧,
因为不开源,
所以绑死在了camdroid.





离线

#39 2018-08-30 11:16:04

Longer
会员
注册时间: 2018-08-29
已发帖子: 3
积分: 3

Re: 海豚派V3s开发板 camdroid 完整入坑记录

晕哥 说:
Longer 说:
晕哥 说:

哈, 因为想把摄像头和h.264编解码器用起来。

linux小白表示不太理解……是因为只有camdroid上面才有这个驱动吗?其它环境下能不能也有这些驱动?

摄像头驱动被社区整出来了,
关键是视频编解码器吧,
因为不开源,
所以绑死在了camdroid.

明白了……看来做视频编解码的话,camdroid是绕不开的了。

离线

楼主 #40 2018-08-30 11:17:40

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

Longer 说:
晕哥 说:
Longer 说:

linux小白表示不太理解……是因为只有camdroid上面才有这个驱动吗?其它环境下能不能也有这些驱动?

摄像头驱动被社区整出来了,
关键是视频编解码器吧,
因为不开源,
所以绑死在了camdroid.

明白了……看来做视频编解码的话,camdroid是绕不开的了。

也不一定,海豚派他们有源码,所以能porting 到Linux.





离线

#41 2018-08-30 13:40:23

Longer
会员
注册时间: 2018-08-29
已发帖子: 3
积分: 3

Re: 海豚派V3s开发板 camdroid 完整入坑记录

晕哥 说:
Longer 说:
晕哥 说:

摄像头驱动被社区整出来了,
关键是视频编解码器吧,
因为不开源,
所以绑死在了camdroid.

明白了……看来做视频编解码的话,camdroid是绕不开的了。

也不一定,海豚派他们有源码,所以能porting 到Linux.

……懵逼。只能看大佬们表演了。我还是先老老实实helloworld吧。

离线

#42 2018-08-31 00:01:45

silvereyes
会员
注册时间: 2018-08-27
已发帖子: 14
积分: 4

Re: 海豚派V3s开发板 camdroid 完整入坑记录

hello,晕哥,我把v3s_spinor_v2.gz编译完了烧到荔枝派上,串口没任何打印。但是编译官方的某版sdk是可以打印,请问这可能是什么问题?

离线

#43 2018-08-31 16:30:44

greenburg
会员
注册时间: 2018-08-31
已发帖子: 2
积分: 2

Re: 海豚派V3s开发板 camdroid 完整入坑记录

晕哥, 我现在在学习linux开发,现在入手了一块海豚派V3s开发板,这个资料太多了,现在碰到一个难题,启动花多了一分多时间,现在我把启动过程打包发给您 ,您能帮我看看问题出在哪吗?

HELLO! BOOT0 is starting!
get_ifm reg_val=7

===i2c gpio === 22777722 
axp read fail, maybe no pmu 
set pmu vol failed,maybe no pmu 
DRAM DRIVE INFO: V0.7
DRAM Type = 2 (2:DDR2,3:DDR3,6:LPDDR2,7:LPDDR3)
DRAM CLK = 408 MHz
DRAM zq value: 000039bb
DRAM size = 64 MB
Succeed in reading Boot1 file head.
Jump to secend Boot.
[      0.088]

U-Boot 2011.09-rc1-00000-g79832e3-dirty (Apr 08 2018 - 22:30:37) Allwinner Technology 

[      0.098]version: 1.1.0
[      0.103]pmbus:   
===i2c gpio === 22777722 
ready
axp read error
probe axp20x failed
axp_probe fail,run clock=912
set power on vol to default
axp_set_power_supply_output dcdc2_vol = 1250
axp set dcdc2_vol to 1250 failed
axp_set_power_supply_output dcdc3_vol = 3300
axp set dcdc3_vol to 3300 failed
axp_set_power_supply_output aldo2_vol = 2500
axp set aldo2_vol to 2500 failed
axp_set_power_supply_output aldo3_vol = 3000
axp set aldo3_vol to 3000 failed
axp_set_power_supply_output ldo1_vol = 3300
axp set ldo1_vol to 3300 failed
axp_set_power_supply_output ldo2_vol = 3000
axp set ldo2_vol to 3000 failed
axp_set_power_supply_output ldo3_vol = 3000
axp set ldo3_vol to 3000 failed
fel key new mode
run key detect
no key found
[      0.184]DRAM:  64 MiB
[debug_jaosn]:use the clock in sys_config 
OK
[      0.206]sunxi flash init ok
hello @flash_speed=1
env_relocate_spec storage_type = 3
In:    serial
Out:   serial
Err:   serial
WORK_MODE_BOOT
read bootlogo partition successful,start_block=0x71a0,rblock=0x100 ,ret=256
Use decode 2x2 sampling
sunxi_read_bootlogo: jpg convert argb  
[      0.329]Hit any key to stop autoboot:  0 
read boot or recovery all
try to read all
[      0.617]sunxi flash read :offset 4000, 4194304 bytes OK
## Booting kernel from Legacy Image at 40007fc0 ...
   Image Name:   Linux-3.4.39
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    2614768 Bytes = 2.5 MiB
   Load Address: 40008000
   Entry Point:  40008000
   Verifying Checksum ... OK
   XIP Kernel Image ... OK
OK
[      0.671]
Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0
[    0.000000] Linux version 3.4.39 (hexing@ubuntu) (gcc version 4.6.3 20120201 (prerelease) (crosstool-NG linaro-1.13.1-2012.02-20120222 - Linaro GCC 2012.02) ) #355 Sun Apr 8 22:34:30 CST 2018
[    0.000000] CPU: ARMv7 Processor [410fc075] revision 5 (ARMv7), cr=10c5387d
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[    0.000000] Machine: sun8i
[    0.000000] Initialized persistent memory from 41d00800-41d107ff
[    0.000000] Memory policy: ECC disabled, Data cache writeback
[    0.000000] On node 0 totalpages: 16384
[    0.000000] free_area_init_node: node 0, pgdat c0522b24, node_mem_map c05b1000
[    0.000000]   Normal zone: 128 pages used for memmap
[    0.000000]   Normal zone: 0 pages reserved
[    0.000000]   Normal zone: 16256 pages, LIFO batch:3
[    0.000000] script_init enter!
[    0.000000] script_init exit!
[    0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768
[    0.000000] pcpu-alloc: [0] 0 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 16256
[    0.000000] Kernel command line: console=ttyS0,115200 root=/dev/mtdblock2 init=/linuxrc loglevel=8 partitions= mac_addr= uid=1234567890 kmemleak=on rootfstype=jffs2
[    0.000000] PID hash table entries: 256 (order: -2, 1024 bytes)
[    0.000000] Dentry cache hash table entries: 8192 (order: 3, 32768 bytes)
[    0.000000] Inode-cache hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Memory: 64MB = 64MB total
[    0.000000] Memory: 29292k/29292k available, 36244k reserved, 0K highmem
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
[    0.000000]     fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)
[    0.000000]     vmalloc : 0xc4800000 - 0xff000000   ( 936 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xc4000000   (  64 MB)
[    0.000000]     modules : 0xbf000000 - 0xc0000000   (  16 MB)
[    0.000000]       .text : 0xc0008000 - 0xc048f000   (4636 kB)
[    0.000000]       .init : 0xc048f000 - 0xc04b2000   ( 140 kB)
[    0.000000]       .data : 0xc04b2000 - 0xc0523260   ( 453 kB)
[    0.000000]        .bss : 0xc0523284 - 0xc05b0a64   ( 566 kB)
[    0.000000] NR_IRQS:544
[    0.000000] 524 ahb1 set parent pll_periph0d2
[    0.000000] Architected local timer running at 24.00MHz.
[    0.000000] Switching to timer-based delay loop
[    0.000000] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 178956ms
[    0.000000] Console: colour dummy device 80x30
[    0.000158] Calibrating delay loop (skipped), value calculated using timer frequency.. 4800.00 BogoMIPS (lpj=24000000)
[    0.000181] pid_max: default: 32768 minimum: 301
[    0.000327] Mount-cache hash table entries: 512
[    0.000844] CPU: Testing write buffer coherency: ok
[    0.001097] Setting up static identity map for 0x40367798 - 0x403677f0
[    0.001750] devtmpfs: initialized
[    0.003671] pinctrl core: initialized pinctrl subsystem
[    0.004171] NET: Registered protocol family 16
[    0.004548] DMA: preallocated 128 KiB pool for atomic coherent allocations
[    0.004602] script_sysfs_init success
[    0.004638] sunxi_dump_init success
[    0.005399] gpiochip_add: registered GPIOs 0 to 223 on device: sunxi-pinctrl
[    0.006323] sunxi-pinctrl sunxi-pinctrl: initialized sunXi PIO driver
[    0.006688] gpiochip_add: registered GPIOs 1024 to 1031 on device: axp-pinctrl
[    0.007372] tsc2003 device registered
[    0.007650] persistent_ram: uncorrectable error in header
[    0.007663] persistent_ram: no valid data in buffer (sig = 0x00000003)
[    0.014025] console [ram-1] enabled
[    0.014438] [sunxi-module]: [sunxi-module.0] probe success
[    0.014665] ++axp20_board_init!
[    0.014853] axp driver uning configuration failed(801)
[    0.014964] axp driver uning configuration failed(808)
[    0.015438] script config pll_isp to 360 Mhz
[    0.015576] Not Found clk pll_video in script 
[    0.015780] script config pll_ve to 360 Mhz
[    0.015900] Not Found clk pll_periph0 in script 
[    0.016009] Not Found clk pll_de in script 
[    0.016206] sunxi_default_clk_init
[    0.016314] try to set pll6ahb1 to 200000000
[    0.016426] Error not get clk pll6ahb1
[    0.016628] Error not get clk pll6ahb1try to set ahb1 to 200000000
[    0.016848] try to set apb1 to 100000000
[    0.017340] ===fe3o4==== sunxi_root_procfs_attach ret:0
[    0.021191] bio: create slab <bio-0> at 0
[    0.021564] pwm module init!
[    0.023375] ion_mem.size = 30408704
[    0.024073] SCSI subsystem initialized
[    0.024407] usbcore: registered new interface driver usbfs
[    0.024676] usbcore: registered new interface driver hub
[    0.024920] usbcore: registered new device driver usb
[    0.025255] twi_chan_cfg()342 - [twi0] has no twi_speed!
[    0.025370] twi_chan_cfg()353 - [twi0] has no twi_regulator.
[    0.025572] twi_chan_cfg()342 - [twi1] has no twi_speed!
[    0.025683] twi_chan_cfg()353 - [twi1] has no twi_regulator.
[    0.025885] sunxi_i2c_adap_init()1563 - Sunxi I2C init channel 0 
[    0.026110] sunxi_i2c_adap_init()1563 - Sunxi I2C init channel 1 
[    0.026417] ++sunxi_i2c_probe
[    0.026571] twi_request_gpio()406 - Pinctrl init 0 ... [twi0]
[    0.026875] twi_clk_write_reg()241 - twi_clk_write_reg: clk_n = 0, clk_m = 5
[    0.027278] ++axp_i2c_probe!
[    0.027580] sunxi_i2c_do_xfer()998 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x34)
[    0.027793] axp20_board 0-0034: failed reading at 0x03
[    0.027993] [AXP20-MFD] try to read chip id failed = -70!
[    0.028103] axp mfd register failed
[    0.028225] axp20_board: probe of 0-0034 failed with error -70
[    0.028437] sunxi_i2c_probe()1250 - I2C: i2c-0: sunxi I2C adapter
[    0.028552] sunxi_i2c_probe()1251 - TWI_CTL  0xf1c2ac0c: 0x00000040 
[    0.028756] sunxi_i2c_probe()1252 - TWI_STAT 0xf1c2ac10: 0x000000f8 
[    0.028958] sunxi_i2c_probe()1253 - TWI_CLK  0xf1c2ac14: 0x00000028 
[    0.029071] sunxi_i2c_probe()1254 - TWI_SRST 0xf1c2ac18: 0x00000000 
[    0.029274] sunxi_i2c_probe()1255 - TWI_EFR  0xf1c2ac1c: 0x00000000 
[    0.029404] ++sunxi_i2c_probe
[    0.029549] twi_request_gpio()406 - Pinctrl init 1 ... [twi1]
[    0.029838] twi_clk_write_reg()241 - twi_clk_write_reg: clk_n = 0, clk_m = 11
[    0.030162] sunxi_i2c_probe()1250 - I2C: i2c-1: sunxi I2C adapter
[    0.030284] sunxi_i2c_probe()1251 - TWI_CTL  0xf1c2b00c: 0x00000040 
[    0.030488] sunxi_i2c_probe()1252 - TWI_STAT 0xf1c2b010: 0x000000f8 
[    0.030601] sunxi_i2c_probe()1253 - TWI_CLK  0xf1c2b014: 0x00000058 
[    0.030803] sunxi_i2c_probe()1254 - TWI_SRST 0xf1c2b018: 0x00000000 
[    0.030915] sunxi_i2c_probe()1255 - TWI_EFR  0xf1c2b01c: 0x00000000 
[    0.031148] Linux video capture interface: v2.00
[    0.031365] gpiochip_add: gpios 1024..1028 (axp_pin) failed to register
[    0.031569] axp pinctrl used,skip
[    0.031996] Advanced Linux Sound Architecture Driver Version 1.0.25.
[    0.033119] cfg80211: Calling CRDA to update world regulatory domain
[    0.034205] Switching to clocksource arch_sys_counter
[    0.040000] NET: Registered protocol family 2
[    0.040000] IP route cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.040536] TCP established hash table entries: 2048 (order: 2, 16384 bytes)
[    0.040696] TCP bind hash table entries: 2048 (order: 1, 8192 bytes)
[    0.040918] TCP: Hash tables configured (established 2048 bind 2048)
[    0.041120] TCP: reno registered
[    0.041233] UDP hash table entries: 256 (order: 0, 4096 bytes)
[    0.041358] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[    0.041833] NET: Registered protocol family 1
[    0.042338] [pm]aw_pm_init!
[    0.042550] standby_mode = 1. 
[    0.042660] wakeup src cnt is : 3. 
[    0.042775] pmu name: pmu1_para .
[    0.042888] pmu1_enable = 0x1. 
[    0.043087] pmux_id = 0x1. 
[    0.043198] pmu name: pmu2_para .
[    0.043307] config_pmux_para: script_parser_fetch err. 
[    0.043507] pmu2_enable = 0x0. 
[    0.043618] add_sys_pwr_dm: get ldo name failed
[    0.043727] add_sys_pwr_dm: get ldo name failed
[    0.043926] add_sys_pwr_dm: get ldo name failed
[    0.044036] add_sys_pwr_dm: get ldo name failed
[    0.044235] add_sys_pwr_dm: get ldo name failed
[    0.044344] add_sys_pwr_dm: get ldo name failed
[    0.044453] add_sys_pwr_dm: get ldo name failed
[    0.044653] add_sys_pwr_dm: get ldo name failed
[    0.044763] add_sys_pwr_dm: get ldo name failed
[    0.044962] add_sys_pwr_dm: get ldo name failed
[    0.045070] after inited: sys_mask config = 0x0. 
[    0.045181] dynamic_standby enalbe = 0x0. 
[    0.045429] sunxi_reg_init enter
[    0.047285] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.047542] jffs2: version 2.2. (NAND) (SUMMARY)  © 2001-2006 Red Hat, Inc.
[    0.047854] msgmni has been set to 57
[    0.048872] io scheduler noop registered
[    0.049086] io scheduler deadline registered
[    0.049264] io scheduler cfq registered (default)
[    0.049889] [DISP]disp_module_init
[    0.050471] cmdline,disp=
[    0.051111] rotation_sw module is config as no used
[    0.051336] [DISP] disp_get_rotation_sw,line:68:disp 0 out of range? g_rot_sw=0
[    0.051552] [DISP] disp_init_connections,line:289:NULL pointer: 0, 0
[    0.051930] disp_fb_to_var:format = 0
[    0.052047] fb_para.width = 480,fb_para.height = 272,fb_para.buffer_num = 2
[    0.052256] gen_pool_alloc:nbits = 255,size = 1044480,order = 12
[    0.052368] chunk->start_addr = 0x42300000,chunk->end_addr = 0x43ffffffchunk->avail = 30408704
[    0.052671] end_bit = 7424
[    0.056502] [DISP] disp_sys_power_enable,line:387:some error happen, fail to get regulator 
[    0.056828] [DISP] disp_sys_gpio_set_value,line:374:OSAL_GPIO_DevWRITE_ONEPIN_DATA, hdl is NULL
[    0.057790] [DISP]disp_module_init finish
[    0.058216] sw_uart_get_devinfo()1503 - uart2 has no uart_regulator.
[    0.058763] uart2: ttyS0 at MMIO 0x1c28800 (irq = 34) is a SUNXI
[    0.058887] sw_uart_pm()890 - uart2 clk is already enable
[    0.059103] sw_console_setup()1233 - console setup baud 115200 parity n bits 8, flow n
[    0.155095] console [ttyS0] enabled
[    1.077455] sunxi_spi_chan_cfg()1376 - [spi-0] has no spi_regulator.
[    1.085311] spi spi0: master is unqueued, this is deprecated
[    1.091957] m25p_probe()966 - Use the Dual Mode Read.
[    1.097770] NorFlash ID: 0xc22018 - 0xc220
[    1.102540] m25p80 spi0.0: found mx25l12805d, expected at25df641
[    1.109325] m25p80 spi0.0: mx25l12805d (16384 Kbytes)
[    1.116629] @@@[debug_jaosn]: Invalid partitions count: 4 9
[    1.123406] Creating 8 MTD partitions on "spi0.0":
[    1.128954] 0x000000000000-0x000000040000 : "uboot"
[    1.135513] 0x000000040000-0x000000440000 : "boot"
[    1.141870] 0x000000440000-0x000000df0000 : "system"
[    1.148487] 0x000000df0000-0x000000e70000 : "cfg"
[    1.154740] 0x000000e70000-0x000000e90000 : "boot_logo"
[    1.161841] 0x000000e90000-0x000000eb0000 : "shutdown_logo"
[    1.169054] 0x000000eb0000-0x000000ec0000 : "env"
[    1.174551] [DISP] disp_lcd_pwm_enable,line:1022:pwm device hdl is NULL
[    1.183128] 0x000000ec0000-0x000000ed0000 : "private"
[    1.190222] priv->phy_ext = INT_PHY
[    1.195484] Failed to alloc md5
[    1.199122] eth0: Use random mac address
[    1.203770] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.231247] sunxi-ehci sunxi-ehci.1: SW USB2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.240380] sunxi-ehci sunxi-ehci.1: new USB bus registered, assigned bus number 1
[    1.249099] sunxi-ehci sunxi-ehci.1: irq 104, io mem 0xf1c1a000
[    1.270032] sunxi-ehci sunxi-ehci.1: USB 0.0 started, EHCI 1.00
[    1.277509] hub 1-0:1.0: USB hub found
[    1.281852] hub 1-0:1.0: 1 port detected
[    1.286739] sunxi-ehci sunxi-ehci.1: remove, state 1
[    1.292492] usb usb1: USB disconnect, device number 1
[    1.592910] sunxi-ehci sunxi-ehci.1: USB bus 1 deregistered
[    1.609409] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.636494] sunxi-ohci sunxi-ohci.1: SW USB2.0 'Open' Host Controller (OHCI) Driver
[    1.645230] sunxi-ohci sunxi-ohci.1: new USB bus registered, assigned bus number 1
[    1.653922] sunxi-ohci sunxi-ohci.1: irq 105, io mem 0xf1c1a400
[    1.724659] hub 1-0:1.0: USB hub found
[    1.728943] hub 1-0:1.0: 1 port detected
[    1.733901] sunxi-ohci sunxi-ohci.1: remove, state 1
[    1.739549] usb usb1: USB disconnect, device number 1
[    1.745955] sunxi-ohci sunxi-ohci.1: USB bus 1 deregistered
[    1.762392] Initializing USB Mass Storage driver...
[    1.768081] usbcore: registered new interface driver usb-storage
[    1.774882] USB Mass Storage support registered.
[    1.780551] file system registered
[    1.785967] android_usb gadget: Mass Storage Function, version: 2009/09/11
[    1.793788] android_usb gadget: Number of LUNs=1
[    1.799105]  lun0: LUN: removable file: (no medium)
[    1.805109] android_usb gadget: android_usb ready
[    1.810700] sunxikbd_script_init: key para not found, used default para. 
[    1.818848] tsc2003_ts_init
[    1.822187] =====ctp_fetch_sysconfig_para=====. 
[    1.827438] ctp_fetch_sysconfig_para: ctp_power_ldo script_get_item err. 
[    1.835177] ctp_fetch_sysconfig_para: ctp_power_ldo_vol script_get_item err. 
[    1.843212] ctp_fetch_sysconfig_para: ctp_power_io script_get_item err. 
[    1.850844] script_get_item ctp_wakeup err
[    1.855492] ctp_irq gpio number is 36
[    1.859671] wakeup gpio_request is failed
[    1.864377] =============GT82x Probe==================
[    1.870928] ------------[ cut here ]------------
[    1.876273] WARNING: at drivers/gpio/gpiolib.c:103 gpio_ensure_requested+0x50/0xbc()
[    1.880896] autorequest GPIO-36
[    1.880896] Modules linked in:
[    1.880896] Backtrace: 
[    1.880896] [<c0013410>] (dump_backtrace+0x0/0x110) from [<c0361fac>] (dump_stack+0x18/0x1c)
[    1.880896]  r6:c042d9c9 r5:00000067 r4:c1821db0 r3:c04be780
[    1.880896] [<c0361f94>] (dump_stack+0x0/0x1c) from [<c002ecf0>] (warn_slowpath_common+0x54/0x6c)
[    1.880896] [<c002ec9c>] (warn_slowpath_common+0x0/0x6c) from [<c002edac>] (warn_slowpath_fmt+0x38/0x40)
[    1.880896]  r8:00000001 r7:c0537620 r6:00000024 r5:c184bb50 r4:c0537620
[    1.880896] r3:00000009
[    1.880896] [<c002ed74>] (warn_slowpath_fmt+0x0/0x40) from [<c01415c0>] (gpio_ensure_requested+0x50/0xbc)
[    1.880896]  r3:00000024 r2:c042d9e0
[    1.880896] [<c0141570>] (gpio_ensure_requested+0x0/0xbc) from [<c0141754>] (gpio_direction_input+0x70/0xf4)
[    1.880896]  r6:00000024 r5:20000013 r4:c184bb50 r3:000000e0
[    1.880896] [<c01416e4>] (gpio_direction_input+0x0/0xf4) from [<c02234b8>] (tsc2003_ts_probe+0x24c/0x310)
[    1.880896]  r8:00000001 r7:00000001 r6:c055458c r5:00000000 r4:c19f5ac0
[    1.880896] r3:00000048
[    1.880896] [<c022326c>] (tsc2003_ts_probe+0x0/0x310) from [<c02287d0>] (i2c_device_probe+0xb0/0xdc)
[    1.880896] [<c0228720>] (i2c_device_probe+0x0/0xdc) from [<c019dfac>] (driver_probe_device+0xd0/0x1f4)
[    1.880896]  r8:0000009f r7:c051263c r6:c051263c r5:c18a9654 r4:c18a9620
[    1.880896] r3:c0228720
[    1.880896] [<c019dedc>] (driver_probe_device+0x0/0x1f4) from [<c019e138>] (__driver_attach+0x68/0x8c)
[    1.880896]  r7:00000000 r6:c051263c r5:c18a9654 r4:c18a9620
[    1.880896] [<c019e0d0>] (__driver_attach+0x0/0x8c) from [<c019c8ec>] (bus_for_each_dev+0x5c/0x94)
[    1.880896]  r6:c019e0d0 r5:c1821ec0 r4:c051263c r3:c18a12fc
[    1.880896] [<c019c890>] (bus_for_each_dev+0x0/0x94) from [<c019dad4>] (driver_attach+0x20/0x28)
[    1.880896]  r7:00000000 r6:c0512948 r5:c1a117c0 r4:c051263c
[    1.880896] [<c019dab4>] (driver_attach+0x0/0x28) from [<c019d670>] (bus_add_driver+0xa4/0x220)
[    1.880896] [<c019d5cc>] (bus_add_driver+0x0/0x220) from [<c019e62c>] (driver_register+0xa4/0x130)
[    1.880896] [<c019e588>] (driver_register+0x0/0x130) from [<c022a394>] (i2c_register_driver+0x48/0xb4)
[    1.880896] [<c022a34c>] (i2c_register_driver+0x0/0xb4) from [<c04a331c>] (tsc2003_ts_init+0xe8/0x120)
[    1.880896]  r5:00000001 r4:00000000
[    1.880896] [<c04a3234>] (tsc2003_ts_init+0x0/0x120) from [<c000a3fc>] (do_one_initcall+0x98/0x168)
[    1.880896]  r5:c04a3234 r4:00000006
[    1.880896] [<c000a364>] (do_one_initcall+0x0/0x168) from [<c048f8c4>] (kernel_init+0xec/0x1a8)
[    1.880896]  r9:c04b10d4 r8:0000009f r7:c05232c0 r6:c04ad0b4 r5:c04ad0d4
[    1.880896] r4:00000006
[    1.880896] [<c048f7d8>] (kernel_init+0x0/0x1a8) from [<c0031d20>] (do_exit+0x0/0x660)
[    1.880896] ---[ end trace f44dfb4df429a9a2 ]---
[    2.176651] ========Probe Ok================
[    2.182185] sunxi-rtc sunxi-rtc: rtc core: registered sunxi-rtc as rtc0
[    2.189889] sunxi cedar version 0.1 
[    2.194062] [cedar]: install start!!!
[    2.198505] [cedar]: install end!!!
[    2.203080] platform reg-20-cs-dcdc2: Driver reg-20-cs-dcdc2 requests probe deferral
[    2.211940] platform reg-20-cs-dcdc3: Driver reg-20-cs-dcdc3 requests probe deferral
[    2.220903] platform reg-20-cs-ldo1: Driver reg-20-cs-ldo1 requests probe deferral
[    2.229610] platform reg-20-cs-ldo2: Driver reg-20-cs-ldo2 requests probe deferral
[    2.238267] platform reg-20-cs-ldo3: Driver reg-20-cs-ldo3 requests probe deferral
[    2.246999] platform reg-20-cs-ldo4: Driver reg-20-cs-ldo4 requests probe deferral
[    2.255745] platform reg-20-cs-ldoio0: Driver reg-20-cs-ldoio0 requests probe deferral
[    2.264655] sunxi_wdt_init_module: sunxi WatchDog Timer Driver v1.0
[    2.272021] sunxi_wdt_probe: devm_ioremap return wdt_reg 0xf1c20ca0, res->start 0x01c20ca0, res->end 0x01c20cbf
[    2.283446] sunxi_wdt_probe: initialized (g_timeout=16s, g_nowayout=0)
[    2.291122] wdt_enable, write reg 0xf1c20cb8 val 0x00000000
[    2.297500] wdt_set_tmout, write 0x000000b0 to mode reg 0xf1c20cb8, actual timeout 16 sec
[    2.307369] [mmc]: SD/MMC/SDIO Host Controller Driver(v1.114 2015-6-2 10:21) Compiled in Apr  8 2018 at 22:34:04
[    2.318950] [mmc]: get mmc0's sdc_power failed
[    2.324013] [mmc]: get mmc1's sdc_power failed
[    2.329051] [mmc]: MMC host used card: 0x3, boot card: 0x0, io_card 2
[    2.337261] [mmc]: sdc0 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.350674] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.363513] sunxi_leds_fetch_sysconfig_para leds is not used in config
[    2.371000] =========script_get_err============
[    2.376329] usbcore: registered new interface driver usbhid
[    2.382731] usbhid: USB HID core driver
[    2.387737] ashmem: initialized
[    2.391609] logger: created 256K log 'log_main'
[    2.396844] logger: created 32K log 'log_events'
[    2.402252] logger: created 32K log 'log_radio'
[    2.407588] logger: created 32K log 'log_system'
[    2.414310] script_get_item return audio_pa_ctrl type err
[    2.421375] asoc: sndcodec <-> sunxi-codec mapping ok
[    2.429160] TCP: cubic registered
[    2.432997] NET: Registered protocol family 17
[    2.438356] VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 5
[    2.447089] ThumbEE CPU extension supported.
[    2.452043] Registering SWP/SWPB emulation handler
[    2.458417] platform reg-20-cs-ldoio0: Driver reg-20-cs-ldoio0 requests probe deferral
[    2.467543] platform reg-20-cs-ldo4: Driver reg-20-cs-ldo4 requests probe deferral
[    2.476230] platform reg-20-cs-ldo3: Driver reg-20-cs-ldo3 requests probe deferral
[    2.484790] platform reg-20-cs-ldo2: Driver reg-20-cs-ldo2 requests probe deferral
[    2.493444] platform reg-20-cs-ldo1: Driver reg-20-cs-ldo1 requests probe deferral
[    2.502085] platform reg-20-cs-dcdc3: Driver reg-20-cs-dcdc3 requests probe deferral
[    2.510834] platform reg-20-cs-dcdc2: Driver reg-20-cs-dcdc2 requests probe deferral
[    2.519699] sunxi-rtc sunxi-rtc: setting system clock to 1970-01-01 00:01:51 UTC (111)
[    2.530101] [wifi module_pm]: select module num is 6
[    2.535733] [wifi module_pm]: step [0] failed to fetch module_power0
[    2.543015] [wifi module_pm]: mod has no chip_en gpio
[    2.548719] [wifi module_pm]: failed to fetch lpo_use_apclk
[    2.555464] [wifi_pm]: wifi gpio init is OK !!
[    2.560649] platform reg-20-cs-dcdc2: Driver reg-20-cs-dcdc2 requests probe deferral
[    2.569483] platform reg-20-cs-dcdc3: Driver reg-20-cs-dcdc3 requests probe deferral
[    2.578274] 
[    2.578279] *****Apr  8 2018 22:34:06 EAGLE DRIVER VER:75be56bfbaf7*****
[    2.578286] 
[    2.589554] =======================================================
[    2.596723] ==== Launching Wi-Fi driver! (Powered by Rockchip) ====
[    2.603785] =======================================================
[    2.610946] Espressif ESP8089 SDIO WiFi driver (Powered by Rockchip, Ver2.25(01/22/2016),Drv: 2.26) init.
[    2.621771] [wifi_pm]: set wl_reg_on 1 !
[    2.726396] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.736393] platform reg-20-cs-ldo1: Driver reg-20-cs-ldo1 requests probe deferral
[    2.745041] [mmc]: sdc1 power_supply is null
[    2.750094] platform reg-20-cs-ldo2: Driver reg-20-cs-ldo2 requests probe deferral
[    2.758742] platform reg-20-cs-ldo3: Driver reg-20-cs-ldo3 requests probe deferral
[    2.768463] platform reg-20-cs-ldo4: Driver reg-20-cs-ldo4 requests probe deferral
[    2.777132] platform reg-20-cs-ldoio0: Driver reg-20-cs-ldoio0 requests probe deferral
[    2.786145] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.335018] [mmc]: mmc 0 detect change, present 1
[    3.790012] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[    4.790011] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[    5.790010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[    5.811571] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    6.820013] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[    7.820009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[    8.820009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[    8.831507] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    9.840012] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   10.845011] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   11.850010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   11.860213] *******************Try sdio*******************
[   11.866408] *******************Try sd *******************
[   11.872604] *******************Try mmc*******************
[   11.878699] [mmc]: sdc1 set ios: clk 400000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   12.880011] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   13.880011] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   14.880010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   14.889108] esp_sdio_init ------ RETRY ------ 
[   14.894261] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   14.904291] [mmc]: sdc1 power_supply is null
[   14.909451] =======================================================
[   14.916547] ==== Dislaunching Wi-Fi driver! (Powered by Rockchip) ====
[   14.923988] =======================================================
[   14.931063] Espressif ESP8089 SDIO WiFi driver (Powered by Rockchip, Ver2.26(01/22/2016),Drv: 2.26) exit.
[   14.941885] [wifi_pm]: set wl_reg_on 0 !
[   15.051017] =======================================================
[   15.058072] ==== Launching Wi-Fi driver! (Powered by Rockchip) ====
[   15.065226] =======================================================
[   15.072286] Espressif ESP8089 SDIO WiFi driver (Powered by Rockchip, Ver2.25(01/22/2016),Drv: 2.26) init.
[   15.083113] [wifi_pm]: set wl_reg_on 1 !
[   15.188780] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   15.200093] [mmc]: sdc1 power_supply is null
[   15.220030] [mmc]: sdc1 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   16.230011] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   17.230009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   18.230010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   18.251567] [mmc]: sdc1 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   19.260013] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   20.260011] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   21.260009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   21.271306] [mmc]: sdc1 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   22.280012] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   23.280009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   24.280009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   24.290263] *******************Try sdio*******************
[   24.296454] *******************Try sd *******************
[   24.302557] *******************Try mmc*******************
[   24.308750] [mmc]: sdc1 set ios: clk 300000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   25.310013] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   26.310010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   27.310009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   27.319200] esp_sdio_init ------ RETRY ------ 
[   27.324253] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   27.334374] [mmc]: sdc1 power_supply is null
[   27.339361] =======================================================
[   27.351550] ==== Dislaunching Wi-Fi driver! (Powered by Rockchip) ====
[   27.358985] =======================================================
[   27.366054] Espressif ESP8089 SDIO WiFi driver (Powered by Rockchip, Ver2.26(01/22/2016),Drv: 2.26) exit.
[   27.376873] [wifi_pm]: set wl_reg_on 0 !
[   27.481341] =======================================================
[   27.488485] ==== Launching Wi-Fi driver! (Powered by Rockchip) ====
[   27.495546] =======================================================
[   27.502701] Espressif ESP8089 SDIO WiFi driver (Powered by Rockchip, Ver2.25(01/22/2016),Drv: 2.26) init.
[   27.513524] [wifi_pm]: set wl_reg_on 1 !
[   27.619093] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   27.630483] [mmc]: sdc1 power_supply is null
[   27.655050] [mmc]: sdc1 set ios: clk 200000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   28.660013] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   29.660010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   30.660010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   30.681553] [mmc]: sdc1 set ios: clk 200000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   31.690011] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   32.690010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   33.690010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   33.701190] [mmc]: sdc1 set ios: clk 200000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   34.710013] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   35.710010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   36.710010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   36.720203] *******************Try sdio*******************
[   36.726488] *******************Try sd *******************
[   36.732593] *******************Try mmc*******************
[   36.738778] [mmc]: sdc1 set ios: clk 200000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   37.740009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   38.740010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   39.740010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   39.749194] esp_sdio_init ------ RETRY ------ 
[   39.754335] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   39.764465] [mmc]: sdc1 power_supply is null
[   39.769380] =======================================================
[   39.776556] ==== Dislaunching Wi-Fi driver! (Powered by Rockchip) ====
[   39.783917] =======================================================
[   39.791071] Espressif ESP8089 SDIO WiFi driver (Powered by Rockchip, Ver2.26(01/22/2016),Drv: 2.26) exit.
[   39.801891] [wifi_pm]: set wl_reg_on 0 !
[   39.906347] =======================================================
[   39.913499] ==== Launching Wi-Fi driver! (Powered by Rockchip) ====
[   39.920564] =======================================================
[   39.927707] Espressif ESP8089 SDIO WiFi driver (Powered by Rockchip, Ver2.25(01/22/2016),Drv: 2.26) init.
[   39.938443] [wifi_pm]: set wl_reg_on 1 !
[   40.048128] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   40.059518] [mmc]: sdc1 power_supply is null
[   40.080027] [mmc]: sdc1 set ios: clk 150000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   41.090012] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   42.090009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   43.090009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   43.111559] [mmc]: sdc1 set ios: clk 150000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   44.120013] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   45.120011] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   46.120009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   46.131280] [mmc]: sdc1 set ios: clk 150000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   47.140013] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   48.140009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   49.140009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   49.150248] *******************Try sdio*******************
[   49.156439] *******************Try sd *******************
[   49.162631] *******************Try mmc*******************
[   49.168734] [mmc]: sdc1 set ios: clk 150000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   50.170012] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   51.170010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   52.170009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   52.179212] esp_sdio_init ------ RETRY ------ 
[   52.184354] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   52.194385] [mmc]: sdc1 power_supply is null
[   52.199456] =======================================================
[   52.206554] ==== Dislaunching Wi-Fi driver! (Powered by Rockchip) ====
[   52.213999] =======================================================
[   52.221060] Espressif ESP8089 SDIO WiFi driver (Powered by Rockchip, Ver2.26(01/22/2016),Drv: 2.26) exit.
[   52.231882] [wifi_pm]: set wl_reg_on 0 !
[   52.341017] eagle sdio can not power up!
[   52.345472] ALSA device list:
[   52.348859]   #0: audiocodec
[   52.353318] [mmc]: sdc0 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   52.364726] [mmc]: sdc0 power_supply is null
[   52.390045] [mmc]: sdc0 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   52.422381] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 52,  RTO !!
[   52.431690] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 52,  RTO !!
[   52.440144] [mmc]: sdc0 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   52.453101] [mmc]: sdc0 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   52.464855] *******************Try sdio*******************
[   52.471976] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 5,  RTO !!
[   52.481046] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 5,  RTO !!
[   52.490093] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 5,  RTO !!
[   52.499241] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 5,  RTO !!
[   52.507482] *******************Try sd *******************
[   52.514317] [mmc]: sdc0 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   52.524897] [mmc]: sdc0 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   52.537869] [mmc]: sdc0 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   52.611545] [mmc]: sdc0 set ios: clk 25000000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   52.629997] [mmc]: sdc0 set ios: clk 25000000Hz bm PP pm ON vdd 3.3V width 1 timing SD-HS(SDR25) dt B
[   52.640680] [mmc]: sdc0 set ios: clk 50000000Hz bm PP pm ON vdd 3.3V width 1 timing SD-HS(SDR25) dt B
[   52.651401] [mmc]: sdc0 set ios: clk 50000000Hz bm PP pm ON vdd 3.3V width 4 timing SD-HS(SDR25) dt B
[   52.662068] mmc0: new high speed SDHC card at address aaaa
[   52.668980] mmcblk0: mmc0:aaaa SS16G 14.8 GiB 
[   52.679692]  mmcblk0: p1 p2 p3
[   52.684702] mmcblk mmc0:aaaa: Card claimed for testing.
[   52.690684] mmc0:aaaa: SS16G 14.8 GiB 
[   52.695206] platform reg-20-cs-ldoio0: Driver reg-20-cs-ldoio0 requests probe deferral
[   52.704167] *******************sd init ok*******************
[   52.710821] platform reg-20-cs-ldo4: Driver reg-20-cs-ldo4 requests probe deferral
[   52.719521] platform reg-20-cs-ldo3: Driver reg-20-cs-ldo3 requests probe deferral
[   52.728325] platform reg-20-cs-ldo2: Driver reg-20-cs-ldo2 requests probe deferral
[   52.737126] platform reg-20-cs-ldo1: Driver reg-20-cs-ldo1 requests probe deferral
[   52.745811] platform reg-20-cs-dcdc3: Driver reg-20-cs-dcdc3 requests probe deferral
[   52.754789] platform reg-20-cs-dcdc2: Driver reg-20-cs-dcdc2 requests probe deferral
[   53.414841] VFS: Mounted root (jffs2 filesystem) on device 31:2.
[   53.422058] devtmpfs: mounted
[   53.425737] Freeing init memory: 140K

    XXXXX             XXX           XXX        XX                   XXXXXX    XXXX
     XX XX             XX            XX                              XX  XX    XX
     XX  XX  XXXXX     XX   XX XXX   XX XX    XXX   XX XXX           XX  XX    XX
     XX  XX XX   XX    XX    XX  XX  XXX XX    XX    XX  XX          XXXXX     XX
     XX  XX XX   XX    XX    XX  XX  XX  XX    XX    XX  XX          XX        XX
     XX XX  XX   XX    XX    XXXXX   XX  XX    XX    XX  XX          XX        XX
    XXXXX    XXXXX    XXXX   XX     XXX  XX   XXXX   XX  XX         XXXX      XXXX
                            XXXX                                            

mknod: /dev/console: File exists
mknod: /dev/null: File exists

Processing /etc/profile... Done

/ # 

另外我按照你27楼提供的固件烧进去,也是一样的启动时间超长,另外输入你说的接下几条指令,TF卡里面没有视频.

最近编辑记录 greenburg (2018-08-31 16:37:40)

离线

楼主 #44 2018-08-31 16:58:49

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

你的根文件系统是在 TF 卡吗,
感觉你的卡问题比较大

[   16.230011] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   17.230009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   18.230010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   18.251567] [mmc]: sdc1 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   19.260013] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   20.260011] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   21.260009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   21.271306] [mmc]: sdc1 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   22.280012] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   23.280009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   24.280009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!





离线

#45 2018-08-31 17:07:33

greenburg
会员
注册时间: 2018-08-31
已发帖子: 2
积分: 2

Re: 海豚派V3s开发板 camdroid 完整入坑记录

晕哥 说:

你的根文件系统是在 TF 卡吗,
感觉你的卡问题比较大

[   16.230011] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   17.230009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   18.230010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   18.251567] [mmc]: sdc1 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   19.260013] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   20.260011] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   21.260009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   21.271306] [mmc]: sdc1 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   22.280012] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   23.280009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   24.280009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!

1.根文件系统不在卡上啊,这个板是通过phoenixsuit烧的,,卡里倒是有别的开发板的Uimage,rootfs等文件.
启动时的大部分时间,都在弄这个
==== Launching Wi-Fi driver! (Powered by Rockchip) ====,不知道是不是WIFI没设置好还是怎么,但我是用你的固件啊

2.现在把卡拔了,再启动一次,时间更长了

HELLO! BOOT0 is starting!
get_ifm reg_val=7

===i2c gpio === 22777722 
axp read fail, maybe no pmu 
set pmu vol failed,maybe no pmu 
DRAM DRIVE INFO: V0.7
DRAM Type = 2 (2:DDR2,3:DDR3,6:LPDDR2,7:LPDDR3)
DRAM CLK = 408 MHz
DRAM zq value: 000039bb
DRAM size = 64 MB
Succeed in reading Boot1 file head.
Jump to secend Boot.
[      0.088]

U-Boot 2011.09-rc1-00000-g79832e3-dirty (Apr 08 2018 - 22:30:37) Allwinner Technology 

[      0.098]version: 1.1.0
[      0.103]pmbus:   
===i2c gpio === 22777722 
ready
axp read error
probe axp20x failed
axp_probe fail,run clock=912
set power on vol to default
axp_set_power_supply_output dcdc2_vol = 1250
axp set dcdc2_vol to 1250 failed
axp_set_power_supply_output dcdc3_vol = 3300
axp set dcdc3_vol to 3300 failed
axp_set_power_supply_output aldo2_vol = 2500
axp set aldo2_vol to 2500 failed
axp_set_power_supply_output aldo3_vol = 3000
axp set aldo3_vol to 3000 failed
axp_set_power_supply_output ldo1_vol = 3300
axp set ldo1_vol to 3300 failed
axp_set_power_supply_output ldo2_vol = 3000
axp set ldo2_vol to 3000 failed
axp_set_power_supply_output ldo3_vol = 3000
axp set ldo3_vol to 3000 failed
fel key new mode
run key detect
no key found
[      0.184]DRAM:  64 MiB
[debug_jaosn]:use the clock in sys_config 
OK
[      0.206]sunxi flash init ok
hello @flash_speed=1
env_relocate_spec storage_type = 3
In:    serial
Out:   serial
Err:   serial
WORK_MODE_BOOT
read bootlogo partition successful,start_block=0x71a0,rblock=0x100 ,ret=256
Use decode 2x2 sampling
sunxi_read_bootlogo: jpg convert argb  
[      0.329]Hit any key to stop autoboot:  0 
read boot or recovery all
try to read all
[      0.617]sunxi flash read :offset 4000, 4194304 bytes OK
## Booting kernel from Legacy Image at 40007fc0 ...
   Image Name:   Linux-3.4.39
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    2614768 Bytes = 2.5 MiB
   Load Address: 40008000
   Entry Point:  40008000
   Verifying Checksum ... OK
   XIP Kernel Image ... OK
OK
[      0.671]
Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0
[    0.000000] Linux version 3.4.39 (hexing@ubuntu) (gcc version 4.6.3 20120201 (prerelease) (crosstool-NG linaro-1.13.1-2012.02-20120222 - Linaro GCC 2012.02) ) #355 Sun Apr 8 22:34:30 CST 2018
[    0.000000] CPU: ARMv7 Processor [410fc075] revision 5 (ARMv7), cr=10c5387d
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[    0.000000] Machine: sun8i
[    0.000000] Initialized persistent memory from 41d00800-41d107ff
[    0.000000] Memory policy: ECC disabled, Data cache writeback
[    0.000000] On node 0 totalpages: 16384
[    0.000000] free_area_init_node: node 0, pgdat c0522b24, node_mem_map c05b1000
[    0.000000]   Normal zone: 128 pages used for memmap
[    0.000000]   Normal zone: 0 pages reserved
[    0.000000]   Normal zone: 16256 pages, LIFO batch:3
[    0.000000] script_init enter!
[    0.000000] script_init exit!
[    0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768
[    0.000000] pcpu-alloc: [0] 0 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 16256
[    0.000000] Kernel command line: console=ttyS0,115200 root=/dev/mtdblock2 init=/linuxrc loglevel=8 partitions= mac_addr= uid=1234567890 kmemleak=on rootfstype=jffs2
[    0.000000] PID hash table entries: 256 (order: -2, 1024 bytes)
[    0.000000] Dentry cache hash table entries: 8192 (order: 3, 32768 bytes)
[    0.000000] Inode-cache hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Memory: 64MB = 64MB total
[    0.000000] Memory: 29292k/29292k available, 36244k reserved, 0K highmem
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
[    0.000000]     fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)
[    0.000000]     vmalloc : 0xc4800000 - 0xff000000   ( 936 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xc4000000   (  64 MB)
[    0.000000]     modules : 0xbf000000 - 0xc0000000   (  16 MB)
[    0.000000]       .text : 0xc0008000 - 0xc048f000   (4636 kB)
[    0.000000]       .init : 0xc048f000 - 0xc04b2000   ( 140 kB)
[    0.000000]       .data : 0xc04b2000 - 0xc0523260   ( 453 kB)
[    0.000000]        .bss : 0xc0523284 - 0xc05b0a64   ( 566 kB)
[    0.000000] NR_IRQS:544
[    0.000000] 524 ahb1 set parent pll_periph0d2
[    0.000000] Architected local timer running at 24.00MHz.
[    0.000000] Switching to timer-based delay loop
[    0.000000] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 178956ms
[    0.000000] Console: colour dummy device 80x30
[    0.000156] Calibrating delay loop (skipped), value calculated using timer frequency.. 4800.00 BogoMIPS (lpj=24000000)
[    0.000179] pid_max: default: 32768 minimum: 301
[    0.000319] Mount-cache hash table entries: 512
[    0.000842] CPU: Testing write buffer coherency: ok
[    0.001096] Setting up static identity map for 0x40367798 - 0x403677f0
[    0.001749] devtmpfs: initialized
[    0.003661] pinctrl core: initialized pinctrl subsystem
[    0.004157] NET: Registered protocol family 16
[    0.004530] DMA: preallocated 128 KiB pool for atomic coherent allocations
[    0.004580] script_sysfs_init success
[    0.004616] sunxi_dump_init success
[    0.005374] gpiochip_add: registered GPIOs 0 to 223 on device: sunxi-pinctrl
[    0.006298] sunxi-pinctrl sunxi-pinctrl: initialized sunXi PIO driver
[    0.006669] gpiochip_add: registered GPIOs 1024 to 1031 on device: axp-pinctrl
[    0.007343] tsc2003 device registered
[    0.007624] persistent_ram: uncorrectable error in header
[    0.007638] persistent_ram: no valid data in buffer (sig = 0x00000003)
[    0.014033] console [ram-1] enabled
[    0.014451] [sunxi-module]: [sunxi-module.0] probe success
[    0.014679] ++axp20_board_init!
[    0.014869] axp driver uning configuration failed(801)
[    0.014981] axp driver uning configuration failed(808)
[    0.015453] script config pll_isp to 360 Mhz
[    0.015593] Not Found clk pll_video in script 
[    0.015798] script config pll_ve to 360 Mhz
[    0.015918] Not Found clk pll_periph0 in script 
[    0.016027] Not Found clk pll_de in script 
[    0.016224] sunxi_default_clk_init
[    0.016332] try to set pll6ahb1 to 200000000
[    0.016443] Error not get clk pll6ahb1
[    0.016646] Error not get clk pll6ahb1try to set ahb1 to 200000000
[    0.016865] try to set apb1 to 100000000
[    0.017358] ===fe3o4==== sunxi_root_procfs_attach ret:0
[    0.021221] bio: create slab <bio-0> at 0
[    0.021588] pwm module init!
[    0.023407] ion_mem.size = 30408704
[    0.024103] SCSI subsystem initialized
[    0.024439] usbcore: registered new interface driver usbfs
[    0.024707] usbcore: registered new interface driver hub
[    0.024959] usbcore: registered new device driver usb
[    0.025300] twi_chan_cfg()342 - [twi0] has no twi_speed!
[    0.025415] twi_chan_cfg()353 - [twi0] has no twi_regulator.
[    0.025618] twi_chan_cfg()342 - [twi1] has no twi_speed!
[    0.025728] twi_chan_cfg()353 - [twi1] has no twi_regulator.
[    0.025929] sunxi_i2c_adap_init()1563 - Sunxi I2C init channel 0 
[    0.026155] sunxi_i2c_adap_init()1563 - Sunxi I2C init channel 1 
[    0.026466] ++sunxi_i2c_probe
[    0.026620] twi_request_gpio()406 - Pinctrl init 0 ... [twi0]
[    0.026921] twi_clk_write_reg()241 - twi_clk_write_reg: clk_n = 0, clk_m = 5
[    0.027325] ++axp_i2c_probe!
[    0.027622] sunxi_i2c_do_xfer()998 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x34)
[    0.027835] axp20_board 0-0034: failed reading at 0x03
[    0.028034] [AXP20-MFD] try to read chip id failed = -70!
[    0.028143] axp mfd register failed
[    0.028265] axp20_board: probe of 0-0034 failed with error -70
[    0.028476] sunxi_i2c_probe()1250 - I2C: i2c-0: sunxi I2C adapter
[    0.028591] sunxi_i2c_probe()1251 - TWI_CTL  0xf1c2ac0c: 0x00000040 
[    0.028794] sunxi_i2c_probe()1252 - TWI_STAT 0xf1c2ac10: 0x000000f8 
[    0.028996] sunxi_i2c_probe()1253 - TWI_CLK  0xf1c2ac14: 0x00000028 
[    0.029109] sunxi_i2c_probe()1254 - TWI_SRST 0xf1c2ac18: 0x00000000 
[    0.029312] sunxi_i2c_probe()1255 - TWI_EFR  0xf1c2ac1c: 0x00000000 
[    0.029441] ++sunxi_i2c_probe
[    0.029585] twi_request_gpio()406 - Pinctrl init 1 ... [twi1]
[    0.029878] twi_clk_write_reg()241 - twi_clk_write_reg: clk_n = 0, clk_m = 11
[    0.030163] sunxi_i2c_probe()1250 - I2C: i2c-1: sunxi I2C adapter
[    0.030283] sunxi_i2c_probe()1251 - TWI_CTL  0xf1c2b00c: 0x00000040 
[    0.030486] sunxi_i2c_probe()1252 - TWI_STAT 0xf1c2b010: 0x000000f8 
[    0.030599] sunxi_i2c_probe()1253 - TWI_CLK  0xf1c2b014: 0x00000058 
[    0.030803] sunxi_i2c_probe()1254 - TWI_SRST 0xf1c2b018: 0x00000000 
[    0.030915] sunxi_i2c_probe()1255 - TWI_EFR  0xf1c2b01c: 0x00000000 
[    0.031151] Linux video capture interface: v2.00
[    0.031366] gpiochip_add: gpios 1024..1028 (axp_pin) failed to register
[    0.031571] axp pinctrl used,skip
[    0.031988] Advanced Linux Sound Architecture Driver Version 1.0.25.
[    0.033116] cfg80211: Calling CRDA to update world regulatory domain
[    0.034199] Switching to clocksource arch_sys_counter
[    0.040000] NET: Registered protocol family 2
[    0.040000] IP route cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.040530] TCP established hash table entries: 2048 (order: 2, 16384 bytes)
[    0.040687] TCP bind hash table entries: 2048 (order: 1, 8192 bytes)
[    0.040908] TCP: Hash tables configured (established 2048 bind 2048)
[    0.041111] TCP: reno registered
[    0.041223] UDP hash table entries: 256 (order: 0, 4096 bytes)
[    0.041347] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[    0.041814] NET: Registered protocol family 1
[    0.042319] [pm]aw_pm_init!
[    0.042530] standby_mode = 1. 
[    0.042638] wakeup src cnt is : 3. 
[    0.042752] pmu name: pmu1_para .
[    0.042866] pmu1_enable = 0x1. 
[    0.043063] pmux_id = 0x1. 
[    0.043174] pmu name: pmu2_para .
[    0.043282] config_pmux_para: script_parser_fetch err. 
[    0.043481] pmu2_enable = 0x0. 
[    0.043593] add_sys_pwr_dm: get ldo name failed
[    0.043703] add_sys_pwr_dm: get ldo name failed
[    0.043902] add_sys_pwr_dm: get ldo name failed
[    0.044012] add_sys_pwr_dm: get ldo name failed
[    0.044212] add_sys_pwr_dm: get ldo name failed
[    0.044320] add_sys_pwr_dm: get ldo name failed
[    0.044429] add_sys_pwr_dm: get ldo name failed
[    0.044628] add_sys_pwr_dm: get ldo name failed
[    0.044737] add_sys_pwr_dm: get ldo name failed
[    0.044936] add_sys_pwr_dm: get ldo name failed
[    0.045045] after inited: sys_mask config = 0x0. 
[    0.045156] dynamic_standby enalbe = 0x0. 
[    0.045402] sunxi_reg_init enter
[    0.047244] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.047501] jffs2: version 2.2. (NAND) (SUMMARY)  © 2001-2006 Red Hat, Inc.
[    0.047803] msgmni has been set to 57
[    0.048830] io scheduler noop registered
[    0.049044] io scheduler deadline registered
[    0.049225] io scheduler cfq registered (default)
[    0.049848] [DISP]disp_module_init
[    0.050427] cmdline,disp=
[    0.051064] rotation_sw module is config as no used
[    0.051289] [DISP] disp_get_rotation_sw,line:68:disp 0 out of range? g_rot_sw=0
[    0.051506] [DISP] disp_init_connections,line:289:NULL pointer: 0, 0
[    0.051884] disp_fb_to_var:format = 0
[    0.052002] fb_para.width = 480,fb_para.height = 272,fb_para.buffer_num = 2
[    0.052210] gen_pool_alloc:nbits = 255,size = 1044480,order = 12
[    0.052322] chunk->start_addr = 0x42300000,chunk->end_addr = 0x43ffffffchunk->avail = 30408704
[    0.052626] end_bit = 7424
[    0.056453] [DISP] disp_sys_power_enable,line:387:some error happen, fail to get regulator 
[    0.056779] [DISP] disp_sys_gpio_set_value,line:374:OSAL_GPIO_DevWRITE_ONEPIN_DATA, hdl is NULL
[    0.057736] [DISP]disp_module_init finish
[    0.058156] sw_uart_get_devinfo()1503 - uart2 has no uart_regulator.
[    0.058701] uart2: ttyS0 at MMIO 0x1c28800 (irq = 34) is a SUNXI
[    0.058821] sw_uart_pm()890 - uart2 clk is already enable
[    0.059034] sw_console_setup()1233 - console setup baud 115200 parity n bits 8, flow n
[    0.155021] console [ttyS0] enabled
[    1.077368] sunxi_spi_chan_cfg()1376 - [spi-0] has no spi_regulator.
[    1.085223] spi spi0: master is unqueued, this is deprecated
[    1.091874] m25p_probe()966 - Use the Dual Mode Read.
[    1.097687] NorFlash ID: 0xc22018 - 0xc220
[    1.102453] m25p80 spi0.0: found mx25l12805d, expected at25df641
[    1.109238] m25p80 spi0.0: mx25l12805d (16384 Kbytes)
[    1.116543] @@@[debug_jaosn]: Invalid partitions count: 4 9
[    1.123325] Creating 8 MTD partitions on "spi0.0":
[    1.128868] 0x000000000000-0x000000040000 : "uboot"
[    1.135446] 0x000000040000-0x000000440000 : "boot"
[    1.141799] 0x000000440000-0x000000df0000 : "system"
[    1.148413] 0x000000df0000-0x000000e70000 : "cfg"
[    1.154670] 0x000000e70000-0x000000e90000 : "boot_logo"
[    1.161775] 0x000000e90000-0x000000eb0000 : "shutdown_logo"
[    1.168992] 0x000000eb0000-0x000000ec0000 : "env"
[    1.174480] [DISP] disp_lcd_pwm_enable,line:1022:pwm device hdl is NULL
[    1.183048] 0x000000ec0000-0x000000ed0000 : "private"
[    1.190128] priv->phy_ext = INT_PHY
[    1.195392] Failed to alloc md5
[    1.199031] eth0: Use random mac address
[    1.203684] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.231168] sunxi-ehci sunxi-ehci.1: SW USB2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.240301] sunxi-ehci sunxi-ehci.1: new USB bus registered, assigned bus number 1
[    1.249022] sunxi-ehci sunxi-ehci.1: irq 104, io mem 0xf1c1a000
[    1.270033] sunxi-ehci sunxi-ehci.1: USB 0.0 started, EHCI 1.00
[    1.277517] hub 1-0:1.0: USB hub found
[    1.281869] hub 1-0:1.0: 1 port detected
[    1.286759] sunxi-ehci sunxi-ehci.1: remove, state 1
[    1.292506] usb usb1: USB disconnect, device number 1
[    1.592914] sunxi-ehci sunxi-ehci.1: USB bus 1 deregistered
[    1.609417] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.636503] sunxi-ohci sunxi-ohci.1: SW USB2.0 'Open' Host Controller (OHCI) Driver
[    1.645245] sunxi-ohci sunxi-ohci.1: new USB bus registered, assigned bus number 1
[    1.653911] sunxi-ohci sunxi-ohci.1: irq 105, io mem 0xf1c1a400
[    1.724667] hub 1-0:1.0: USB hub found
[    1.728951] hub 1-0:1.0: 1 port detected
[    1.733910] sunxi-ohci sunxi-ohci.1: remove, state 1
[    1.739560] usb usb1: USB disconnect, device number 1
[    1.745973] sunxi-ohci sunxi-ohci.1: USB bus 1 deregistered
[    1.762411] Initializing USB Mass Storage driver...
[    1.768096] usbcore: registered new interface driver usb-storage
[    1.774897] USB Mass Storage support registered.
[    1.780567] file system registered
[    1.785976] android_usb gadget: Mass Storage Function, version: 2009/09/11
[    1.793798] android_usb gadget: Number of LUNs=1
[    1.799116]  lun0: LUN: removable file: (no medium)
[    1.805128] android_usb gadget: android_usb ready
[    1.810719] sunxikbd_script_init: key para not found, used default para. 
[    1.818865] tsc2003_ts_init
[    1.822200] =====ctp_fetch_sysconfig_para=====. 
[    1.827449] ctp_fetch_sysconfig_para: ctp_power_ldo script_get_item err. 
[    1.835185] ctp_fetch_sysconfig_para: ctp_power_ldo_vol script_get_item err. 
[    1.843221] ctp_fetch_sysconfig_para: ctp_power_io script_get_item err. 
[    1.850855] script_get_item ctp_wakeup err
[    1.855502] ctp_irq gpio number is 36
[    1.859681] wakeup gpio_request is failed
[    1.864385] =============GT82x Probe==================
[    1.870943] ------------[ cut here ]------------
[    1.876287] WARNING: at drivers/gpio/gpiolib.c:103 gpio_ensure_requested+0x50/0xbc()
[    1.880912] autorequest GPIO-36
[    1.880912] Modules linked in:
[    1.880912] Backtrace: 
[    1.880912] [<c0013410>] (dump_backtrace+0x0/0x110) from [<c0361fac>] (dump_stack+0x18/0x1c)
[    1.880912]  r6:c042d9c9 r5:00000067 r4:c1821db0 r3:c04be780
[    1.880912] [<c0361f94>] (dump_stack+0x0/0x1c) from [<c002ecf0>] (warn_slowpath_common+0x54/0x6c)
[    1.880912] [<c002ec9c>] (warn_slowpath_common+0x0/0x6c) from [<c002edac>] (warn_slowpath_fmt+0x38/0x40)
[    1.880912]  r8:00000001 r7:c0537620 r6:00000024 r5:c184bb50 r4:c0537620
[    1.880912] r3:00000009
[    1.880912] [<c002ed74>] (warn_slowpath_fmt+0x0/0x40) from [<c01415c0>] (gpio_ensure_requested+0x50/0xbc)
[    1.880912]  r3:00000024 r2:c042d9e0
[    1.880912] [<c0141570>] (gpio_ensure_requested+0x0/0xbc) from [<c0141754>] (gpio_direction_input+0x70/0xf4)
[    1.880912]  r6:00000024 r5:20000013 r4:c184bb50 r3:000000e0
[    1.880912] [<c01416e4>] (gpio_direction_input+0x0/0xf4) from [<c02234b8>] (tsc2003_ts_probe+0x24c/0x310)
[    1.880912]  r8:00000001 r7:00000001 r6:c055458c r5:00000000 r4:c19f5ac0
[    1.880912] r3:00000048
[    1.880912] [<c022326c>] (tsc2003_ts_probe+0x0/0x310) from [<c02287d0>] (i2c_device_probe+0xb0/0xdc)
[    1.880912] [<c0228720>] (i2c_device_probe+0x0/0xdc) from [<c019dfac>] (driver_probe_device+0xd0/0x1f4)
[    1.880912]  r8:0000009f r7:c051263c r6:c051263c r5:c18a9654 r4:c18a9620
[    1.880912] r3:c0228720
[    1.880912] [<c019dedc>] (driver_probe_device+0x0/0x1f4) from [<c019e138>] (__driver_attach+0x68/0x8c)
[    1.880912]  r7:00000000 r6:c051263c r5:c18a9654 r4:c18a9620
[    1.880912] [<c019e0d0>] (__driver_attach+0x0/0x8c) from [<c019c8ec>] (bus_for_each_dev+0x5c/0x94)
[    1.880912]  r6:c019e0d0 r5:c1821ec0 r4:c051263c r3:c18a12fc
[    1.880912] [<c019c890>] (bus_for_each_dev+0x0/0x94) from [<c019dad4>] (driver_attach+0x20/0x28)
[    1.880912]  r7:00000000 r6:c0512948 r5:c1a117c0 r4:c051263c
[    1.880912] [<c019dab4>] (driver_attach+0x0/0x28) from [<c019d670>] (bus_add_driver+0xa4/0x220)
[    1.880912] [<c019d5cc>] (bus_add_driver+0x0/0x220) from [<c019e62c>] (driver_register+0xa4/0x130)
[    1.880912] [<c019e588>] (driver_register+0x0/0x130) from [<c022a394>] (i2c_register_driver+0x48/0xb4)
[    1.880912] [<c022a34c>] (i2c_register_driver+0x0/0xb4) from [<c04a331c>] (tsc2003_ts_init+0xe8/0x120)
[    1.880912]  r5:00000001 r4:00000000
[    1.880912] [<c04a3234>] (tsc2003_ts_init+0x0/0x120) from [<c000a3fc>] (do_one_initcall+0x98/0x168)
[    1.880912]  r5:c04a3234 r4:00000006
[    1.880912] [<c000a364>] (do_one_initcall+0x0/0x168) from [<c048f8c4>] (kernel_init+0xec/0x1a8)
[    1.880912]  r9:c04b10d4 r8:0000009f r7:c05232c0 r6:c04ad0b4 r5:c04ad0d4
[    1.880912] r4:00000006
[    1.880912] [<c048f7d8>] (kernel_init+0x0/0x1a8) from [<c0031d20>] (do_exit+0x0/0x660)
[    1.880912] ---[ end trace 4f63bcb3d811ae09 ]---
[    2.176684] ========Probe Ok================
[    2.182233] sunxi-rtc sunxi-rtc: rtc core: registered sunxi-rtc as rtc0
[    2.189930] sunxi cedar version 0.1 
[    2.194099] [cedar]: install start!!!
[    2.198538] [cedar]: install end!!!
[    2.203110] platform reg-20-cs-dcdc2: Driver reg-20-cs-dcdc2 requests probe deferral
[    2.211965] platform reg-20-cs-dcdc3: Driver reg-20-cs-dcdc3 requests probe deferral
[    2.220930] platform reg-20-cs-ldo1: Driver reg-20-cs-ldo1 requests probe deferral
[    2.229642] platform reg-20-cs-ldo2: Driver reg-20-cs-ldo2 requests probe deferral
[    2.238300] platform reg-20-cs-ldo3: Driver reg-20-cs-ldo3 requests probe deferral
[    2.247031] platform reg-20-cs-ldo4: Driver reg-20-cs-ldo4 requests probe deferral
[    2.255781] platform reg-20-cs-ldoio0: Driver reg-20-cs-ldoio0 requests probe deferral
[    2.264693] sunxi_wdt_init_module: sunxi WatchDog Timer Driver v1.0
[    2.272052] sunxi_wdt_probe: devm_ioremap return wdt_reg 0xf1c20ca0, res->start 0x01c20ca0, res->end 0x01c20cbf
[    2.283488] sunxi_wdt_probe: initialized (g_timeout=16s, g_nowayout=0)
[    2.291161] wdt_enable, write reg 0xf1c20cb8 val 0x00000000
[    2.297537] wdt_set_tmout, write 0x000000b0 to mode reg 0xf1c20cb8, actual timeout 16 sec
[    2.307403] [mmc]: SD/MMC/SDIO Host Controller Driver(v1.114 2015-6-2 10:21) Compiled in Apr  8 2018 at 22:34:04
[    2.318986] [mmc]: get mmc0's sdc_power failed
[    2.324050] [mmc]: get mmc1's sdc_power failed
[    2.329088] [mmc]: MMC host used card: 0x3, boot card: 0x0, io_card 2
[    2.337292] [mmc]: sdc0 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.350699] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.363542] sunxi_leds_fetch_sysconfig_para leds is not used in config
[    2.371026] =========script_get_err============
[    2.376359] usbcore: registered new interface driver usbhid
[    2.382761] usbhid: USB HID core driver
[    2.387761] ashmem: initialized
[    2.391633] logger: created 256K log 'log_main'
[    2.396871] logger: created 32K log 'log_events'
[    2.402278] logger: created 32K log 'log_radio'
[    2.407606] logger: created 32K log 'log_system'
[    2.414296] script_get_item return audio_pa_ctrl type err
[    2.421359] asoc: sndcodec <-> sunxi-codec mapping ok
[    2.429105] TCP: cubic registered
[    2.432945] NET: Registered protocol family 17
[    2.438306] VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 5
[    2.447039] ThumbEE CPU extension supported.
[    2.451993] Registering SWP/SWPB emulation handler
[    2.458368] platform reg-20-cs-ldoio0: Driver reg-20-cs-ldoio0 requests probe deferral
[    2.467494] platform reg-20-cs-ldo4: Driver reg-20-cs-ldo4 requests probe deferral
[    2.476177] platform reg-20-cs-ldo3: Driver reg-20-cs-ldo3 requests probe deferral
[    2.484741] platform reg-20-cs-ldo2: Driver reg-20-cs-ldo2 requests probe deferral
[    2.493393] platform reg-20-cs-ldo1: Driver reg-20-cs-ldo1 requests probe deferral
[    2.502034] platform reg-20-cs-dcdc3: Driver reg-20-cs-dcdc3 requests probe deferral
[    2.510787] platform reg-20-cs-dcdc2: Driver reg-20-cs-dcdc2 requests probe deferral
[    2.519659] sunxi-rtc sunxi-rtc: setting system clock to 1970-01-01 00:01:51 UTC (111)
[    2.530070] [wifi module_pm]: select module num is 6
[    2.535701] [wifi module_pm]: step [0] failed to fetch module_power0
[    2.542984] [wifi module_pm]: mod has no chip_en gpio
[    2.548689] [wifi module_pm]: failed to fetch lpo_use_apclk
[    2.555436] [wifi_pm]: wifi gpio init is OK !!
[    2.560615] platform reg-20-cs-dcdc2: Driver reg-20-cs-dcdc2 requests probe deferral
[    2.569448] platform reg-20-cs-dcdc3: Driver reg-20-cs-dcdc3 requests probe deferral
[    2.578239] 
[    2.578243] *****Apr  8 2018 22:34:06 EAGLE DRIVER VER:75be56bfbaf7*****
[    2.578250] 
[    2.589522] =======================================================
[    2.596690] ==== Launching Wi-Fi driver! (Powered by Rockchip) ====
[    2.603753] =======================================================
[    2.610914] Espressif ESP8089 SDIO WiFi driver (Powered by Rockchip, Ver2.25(01/22/2016),Drv: 2.26) init.
[    2.621740] [wifi_pm]: set wl_reg_on 1 !
[    2.726366] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.736369] platform reg-20-cs-ldo1: Driver reg-20-cs-ldo1 requests probe deferral
[    2.745021] [mmc]: sdc1 power_supply is null
[    2.750089] platform reg-20-cs-ldo2: Driver reg-20-cs-ldo2 requests probe deferral
[    2.758736] platform reg-20-cs-ldo3: Driver reg-20-cs-ldo3 requests probe deferral
[    2.768445] platform reg-20-cs-ldo4: Driver reg-20-cs-ldo4 requests probe deferral
[    2.777113] platform reg-20-cs-ldoio0: Driver reg-20-cs-ldoio0 requests probe deferral
[    2.786124] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.790012] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[    4.790010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[    5.790010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[    5.811570] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    6.820015] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[    7.820009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[    8.820009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[    8.831413] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    9.840011] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   10.840009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   11.840010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   11.850121] *******************Try sdio*******************
[   11.856401] *******************Try sd *******************
[   11.862506] *******************Try mmc*******************
[   11.868697] [mmc]: sdc1 set ios: clk 400000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   12.870011] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   13.870009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   14.870009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   14.879201] esp_sdio_init ------ RETRY ------ 
[   14.884254] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   14.894377] [mmc]: sdc1 power_supply is null
[   14.899437] =======================================================
[   14.906622] ==== Dislaunching Wi-Fi driver! (Powered by Rockchip) ====
[   14.914080] =======================================================
[   14.921143] Espressif ESP8089 SDIO WiFi driver (Powered by Rockchip, Ver2.26(01/22/2016),Drv: 2.26) exit.
[   14.931966] [wifi_pm]: set wl_reg_on 0 !
[   15.041016] =======================================================
[   15.048165] ==== Launching Wi-Fi driver! (Powered by Rockchip) ====
[   15.055226] =======================================================
[   15.062380] Espressif ESP8089 SDIO WiFi driver (Powered by Rockchip, Ver2.25(01/22/2016),Drv: 2.26) init.
[   15.073204] [wifi_pm]: set wl_reg_on 1 !
[   15.178785] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   15.190187] [mmc]: sdc1 power_supply is null
[   15.210037] [mmc]: sdc1 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   16.220013] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   17.220010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   18.220009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   18.241552] [mmc]: sdc1 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   19.250013] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   20.250009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   21.250010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   21.261295] [mmc]: sdc1 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   22.270013] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   23.270010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   24.270009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   24.280209] *******************Try sdio*******************
[   24.286488] *******************Try sd *******************
[   24.292601] *******************Try mmc*******************
[   24.298788] [mmc]: sdc1 set ios: clk 300000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   25.300011] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   26.300010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   27.300009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   27.309105] esp_sdio_init ------ RETRY ------ 
[   27.314338] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   27.324467] [mmc]: sdc1 power_supply is null
[   27.329383] =======================================================
[   27.341562] ==== Dislaunching Wi-Fi driver! (Powered by Rockchip) ====
[   27.348916] =======================================================
[   27.356069] Espressif ESP8089 SDIO WiFi driver (Powered by Rockchip, Ver2.26(01/22/2016),Drv: 2.26) exit.
[   27.366891] [wifi_pm]: set wl_reg_on 0 !
[   27.471354] =======================================================
[   27.478408] ==== Launching Wi-Fi driver! (Powered by Rockchip) ====
[   27.485563] =======================================================
[   27.492716] Espressif ESP8089 SDIO WiFi driver (Powered by Rockchip, Ver2.25(01/22/2016),Drv: 2.26) init.
[   27.503453] [wifi_pm]: set wl_reg_on 1 !
[   27.609105] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   27.620500] [mmc]: sdc1 power_supply is null
[   27.645036] [mmc]: sdc1 set ios: clk 200000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   27.673145] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   27.683087] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   27.691519] [mmc]: sdc1 set ios: clk 200000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   28.700011] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   29.700010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   30.700010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   30.711285] [mmc]: sdc1 set ios: clk 200000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   31.720012] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   32.720010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   33.720010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   33.730271] *******************Try sdio*******************
[   33.736471] *******************Try sd *******************
[   33.742665] *******************Try mmc*******************
[   33.748761] [mmc]: sdc1 set ios: clk 200000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   34.750011] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   35.750010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   36.750010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   36.759168] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   36.769290] [mmc]: sdc1 power_supply is null
[   36.776744] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   36.788120] [mmc]: sdc1 power_supply is null
[   36.810024] [mmc]: sdc1 set ios: clk 150000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   37.820011] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   38.820010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   39.820010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   39.829283] esp_sdio_init ------ RETRY ------ 
[   39.834394] =======================================================
[   39.841484] ==== Dislaunching Wi-Fi driver! (Powered by Rockchip) ====
[   39.848827] =======================================================
[   39.855987] Espressif ESP8089 SDIO WiFi driver (Powered by Rockchip, Ver2.26(01/22/2016),Drv: 2.26) exit.
[   39.866717] [wifi_pm]: set wl_reg_on 0 !
[   39.976016] =======================================================
[   39.983077] ==== Launching Wi-Fi driver! (Powered by Rockchip) ====
[   39.990229] =======================================================
[   39.997283] Espressif ESP8089 SDIO WiFi driver (Powered by Rockchip, Ver2.25(01/22/2016),Drv: 2.26) init.
[   40.008112] [wifi_pm]: set wl_reg_on 1 !
[   40.114216] [mmc]: sdc1 set ios: clk 150000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   41.120012] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   42.120010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   43.120010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   43.131278] [mmc]: sdc1 set ios: clk 150000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   44.145015] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   45.150010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   46.150009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   46.160273] *******************Try sdio*******************
[   46.166466] *******************Try sd *******************
[   46.172689] *******************Try mmc*******************
[   46.178787] [mmc]: sdc1 set ios: clk 150000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   47.180012] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   48.180010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   49.180009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   49.189258] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   49.199384] [mmc]: sdc1 power_supply is null
[   49.206950] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   49.218330] [mmc]: sdc1 power_supply is null
[   49.245031] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   49.272340] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   49.281573] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   49.289915] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   50.300010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   51.300009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   52.300009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   52.309198] esp_sdio_init ------ RETRY ------ 
[   52.316355] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   52.326772] =======================================================
[   52.333848] ==== Dislaunching Wi-Fi driver! (Powered by Rockchip) ====
[   52.341298] =======================================================
[   52.348352] Espressif ESP8089 SDIO WiFi driver (Powered by Rockchip, Ver2.26(01/22/2016),Drv: 2.26) exit.
[   52.359172] [wifi_pm]: set wl_reg_on 0 !
[   52.463636] eagle sdio can not power up!
[   52.468181] ALSA device list:
[   52.471577]   #0: audiocodec
[   53.470017] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   54.470010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   55.470009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   55.480464] *******************Try sdio*******************
[   55.486939] *******************Try sd *******************
[   55.493179] *******************Try mmc*******************
[   55.499384] [mmc]: sdc1 set ios: clk 400000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   56.500012] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   57.500009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   58.500010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   58.509409] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   58.519704] [mmc]: sdc1 power_supply is null
[   58.527203] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   58.538598] [mmc]: sdc1 power_supply is null
[   58.560042] [mmc]: sdc1 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   59.570013] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   60.570011] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   61.570009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   61.591575] [mmc]: sdc1 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   62.600012] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   63.600009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   64.600009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   64.611370] [mmc]: sdc1 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   65.620013] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   66.620010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   67.620009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   67.630269] *******************Try sdio*******************
[   67.636469] *******************Try sd *******************
[   67.642666] *******************Try mmc*******************
[   67.648761] [mmc]: sdc1 set ios: clk 300000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   68.650011] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   69.650009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   70.650010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   70.659298] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   70.669588] [mmc]: sdc1 power_supply is null
[   70.677080] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   70.688473] [mmc]: sdc1 power_supply is null
[   70.710042] [mmc]: sdc1 set ios: clk 200000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   70.741589] [mmc]: sdc1 set ios: clk 200000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   71.750015] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   72.750010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   73.750009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   73.761459] [mmc]: sdc1 set ios: clk 200000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   74.770014] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   75.770009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   76.770009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   76.780219] *******************Try sdio*******************
[   76.786502] *******************Try sd *******************
[   76.792618] *******************Try mmc*******************
[   76.798805] [mmc]: sdc1 set ios: clk 200000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   77.800012] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   78.800010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   79.800010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   79.809215] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   79.819251] [mmc]: sdc1 power_supply is null
[   79.826819] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   79.838245] [mmc]: sdc1 power_supply is null
[   79.860059] [mmc]: sdc1 set ios: clk 150000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   79.891588] [mmc]: sdc1 set ios: clk 150000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   80.900012] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   81.900009] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   82.900010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   82.911379] [mmc]: sdc1 set ios: clk 150000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   83.920014] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   84.920011] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   85.920010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   85.930286] *******************Try sdio*******************
[   85.936489] *******************Try sd *******************
[   85.942689] *******************Try mmc*******************
[   85.948785] [mmc]: sdc1 set ios: clk 150000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   86.950012] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   87.950010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   88.950010] [mmc]: *** sunxi_mci_update_clk(L492): update clock timeout, fatal error!!!
[   88.959395] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   88.969691] [mmc]: sdc1 power_supply is null
[   89.644522] VFS: Mounted root (jffs2 filesystem) on device 31:2.
[   89.651826] devtmpfs: mounted
[   89.655486] Freeing init memory: 140K

    XXXXX             XXX           XXX        XX                   XXXXXX    XXXX
     XX XX             XX            XX                              XX  XX    XX
     XX  XX  XXXXX     XX   XX XXX   XX XX    XXX   XX XXX           XX  XX    XX
     XX  XX XX   XX    XX    XX  XX  XXX XX    XX    XX  XX          XXXXX     XX
     XX  XX XX   XX    XX    XX  XX  XX  XX    XX    XX  XX          XX        XX
     XX XX  XX   XX    XX    XXXXX   XX  XX    XX    XX  XX          XX        XX
    XXXXX    XXXXX    XXXX   XX     XXX  XX   XXXX   XX  XX         XXXX      XXXX
                            XXXX                                            

mknod: /dev/console: File exists
mknod: /dev/null: File exists

Processing /etc/profile... Done

/ # 

离线

楼主 #46 2018-08-31 17:08:37

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

sys_config.fex 里面找到 MMC/TF, 把这个 disabled 掉,重新打包烧录试一试。

有点怀疑硬件引起, 先屏蔽怀疑的设备。





离线

#47 2018-09-01 10:16:52

silvereyes
会员
注册时间: 2018-08-27
已发帖子: 14
积分: 4

Re: 海豚派V3s开发板 camdroid 完整入坑记录

我怎么编译出来,img文件有29M?

离线

楼主 #48 2018-09-01 10:37:45

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

silvereyes 说:

我怎么编译出来,img文件有29M?

是的是的,全志的img格式不是真正的镜像,一般都可以烧进去。





离线

#49 2018-09-17 10:31:53

silvereyes
会员
注册时间: 2018-08-27
已发帖子: 14
积分: 4

Re: 海豚派V3s开发板 camdroid 完整入坑记录

为啥我每次往spi flash烧写,系统都会启动到linux,导致烧写失败?@晕哥

离线

楼主 #50 2018-09-17 10:34:58

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

官方那个烧录软件的原理不太了解,
据我观察,应该是烧录的时候启动了 u-boot,
u-boot又启动了usb device 模式与烧录软件通讯,继续完成烧录动作.

系统都会启动到linux不了解具体情况,不好分析.





离线

#51 2018-09-17 13:03:19

silvereyes
会员
注册时间: 2018-08-27
已发帖子: 14
积分: 4

Re: 海豚派V3s开发板 camdroid 完整入坑记录

那请教下,camdroid编译出来的软件,怎么烧录比较好?能否用sun-fel?

离线

楼主 #52 2018-09-17 13:08:39

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

silvereyes 说:

那请教下,camdroid编译出来的软件,怎么烧录比较好?能否用sun-fel?

img文件只能用官方烧录软件,不能用sunxi-fel





离线

楼主 #53 2018-09-17 15:35:54

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

QQ20180917153212.png

看起来官方烧录文件就是把 u-boot 先跑起来,然后才开始USB通讯、flash擦写校验的。




离线

#54 2018-09-18 08:05:21

silvereyes
会员
注册时间: 2018-08-27
已发帖子: 14
积分: 4

Re: 海豚派V3s开发板 camdroid 完整入坑记录

看到了,谢谢晕哥。

离线

楼主 #55 2018-10-14 14:49:52

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

HELLO! BOOT0 is starting!
get_ifm reg_val=7

===i2c gpio === 22777722 
PMU: axp version ok 
after set, dcdc2 =1100mv
axp20 set dcdc2 success 
DRAM DRIVE INFO: V0.7
DRAM Type = 2 (2:DDR2,3:DDR3,6:LPDDR2,7:LPDDR3)
DRAM CLK = 408 MHz
DRAM zq value: 000039bb
DRAM size = 64 MB
Succeed in reading Boot1 file head.
Jump to secend Boot.
[      0.096]

U-Boot 2011.09-rc1-00002-g10d0620 (Aug 21 2015 - 10:10:50) Allwinner Technology 

[      0.104]version: 1.1.0
[      0.111]pmbus:   
===i2c gpio === 22777722 
ready
[      0.119]PMU: AXP20x found
set power on vol to default
axp_set_power_supply_output dcdc2_vol = 1250
axp_set_power_supply_output dcdc3_vol = 3300
axp_set_power_supply_output aldo2_vol = 2500
axp_set_power_supply_output aldo3_vol = 3000
axp_set_power_supply_output ldo1_vol = 3300
axp_set_power_supply_output ldo2_vol = 3000
axp_set_power_supply_output ldo3_vol = 3000
fel key new mode
run key detect
no key found
[      0.174]DRAM:  64 MiB
[debug_jaosn]:use the clock in sys_config 
OK
[      0.196]sunxi flash init ok
hello @flash_speed=1
env_relocate_spec storage_type = 3
In:    serial
Out:   serial
Err:   serial
WORK_MODE_BOOT
read bootlogo partition successful,start_block=0x71a0,rblock=0x100 ,ret=256
Use decode 2x2 sampling
sunxi_read_bootlogo: jpg convert argb  
[      0.278]Hit any key to stop autoboot:  0 
read boot or recovery all
[      0.564]sunxi flash read :offset 4000, 4194815 bytes OK
[      0.570]ready to boot
[      0.572]
Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0
[    0.000000] Linux version 3.4.39 (hexing@ubuntu) (gcc version 4.6.3 20120201 (prerelease) (crosstool-NG linaro-1.13.1-2012.02-20120222 - Linaro GCC 2012.02) ) #306 Fri Apr 6 16:34:45 CST 2018
[    0.000000] CPU: ARMv7 Processor [410fc075] revision 5 (ARMv7), cr=10c5387d
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[    0.000000] Machine: sun8i
[    0.000000] Initialized persistent memory from 41d00800-41d107ff
[    0.000000] Memory policy: ECC disabled, Data cache writeback
[    0.000000] On node 0 totalpages: 16384
[    0.000000] free_area_init_node: node 0, pgdat c0524d24, node_mem_map c05b3000
[    0.000000]   Normal zone: 128 pages used for memmap
[    0.000000]   Normal zone: 0 pages reserved
[    0.000000]   Normal zone: 16256 pages, LIFO batch:3
[    0.000000] script_init enter!
[    0.000000] script_init exit!
[    0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768
[    0.000000] pcpu-alloc: [0] 0 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 16256
[    0.000000] Kernel command line: console=ttyS0,115200 root=/dev/nor1 init=/init loglevel=8 partitions= mac_addr= uid=1234567890 kmemleak=on fb_base=0x41b00000 boot_type=3 config_size=33076
[    0.000000] PID hash table entries: 256 (order: -2, 1024 bytes)
[    0.000000] Dentry cache hash table entries: 8192 (order: 3, 32768 bytes)
[    0.000000] Inode-cache hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Memory: 64MB = 64MB total
[    0.000000] Memory: 30084k/30084k available, 35452k reserved, 0K highmem
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
[    0.000000]     fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)
[    0.000000]     vmalloc : 0xc4800000 - 0xff000000   ( 936 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xc4000000   (  64 MB)
[    0.000000]     modules : 0xbf000000 - 0xc0000000   (  16 MB)
[    0.000000]       .text : 0xc0008000 - 0xc0491000   (4644 kB)
[    0.000000]       .init : 0xc0491000 - 0xc04b4000   ( 140 kB)
[    0.000000]       .data : 0xc04b4000 - 0xc0525460   ( 454 kB)
[    0.000000]        .bss : 0xc0525484 - 0xc05b2c64   ( 566 kB)
[    0.000000] NR_IRQS:544
[    0.000000] 524 ahb1 set parent pll_periph0d2
[    0.000000] Architected local timer running at 24.00MHz.
[    0.000000] Switching to timer-based delay loop
[    0.000000] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 178956ms
[    0.000000] Console: colour dummy device 80x30
[    0.000160] Calibrating delay loop (skipped), value calculated using timer frequency.. 4800.00 BogoMIPS (lpj=24000000)
[    0.000181] pid_max: default: 32768 minimum: 301
[    0.000326] Mount-cache hash table entries: 512
[    0.000841] CPU: Testing write buffer coherency: ok
[    0.001098] Setting up static identity map for 0x403694e8 - 0x40369540
[    0.001745] devtmpfs: initialized
[    0.003688] pinctrl core: initialized pinctrl subsystem
[    0.004180] NET: Registered protocol family 16
[    0.004595] DMA: preallocated 128 KiB pool for atomic coherent allocations
[    0.004646] script_sysfs_init success
[    0.004681] sunxi_dump_init success
[    0.005445] gpiochip_add: registered GPIOs 0 to 223 on device: sunxi-pinctrl
[    0.006371] sunxi-pinctrl sunxi-pinctrl: initialized sunXi PIO driver
[    0.006735] gpiochip_add: registered GPIOs 1024 to 1031 on device: axp-pinctrl
[    0.007466] tsc2003 device registered
[    0.007745] persistent_ram: uncorrectable error in header
[    0.007759] persistent_ram: no valid data in buffer (sig = 0x00000004)
[    0.014115] console [ram-1] enabled
[    0.014522] [sunxi-module]: [sunxi-module.0] probe success
[    0.014748] ++axp20_board_init!
[    0.014938] axp driver uning configuration failed(801)
[    0.015140] axp driver uning configuration failed(808)
[    0.015537] script config pll_isp to 360 Mhz
[    0.015675] Not Found clk pll_video in script 
[    0.015880] script config pll_ve to 360 Mhz
[    0.016001] Not Found clk pll_periph0 in script 
[    0.016201] Not Found clk pll_de in script 
[    0.016309] sunxi_default_clk_init
[    0.016416] try to set pll6ahb1 to 200000000
[    0.016616] Error not get clk pll6ahb1
[    0.016729] Error not get clk pll6ahb1try to set ahb1 to 200000000
[    0.016948] try to set apb1 to 100000000
[    0.017473] ===fe3o4==== sunxi_root_procfs_attach ret:0
[    0.021320] bio: create slab <bio-0> at 0
[    0.021772] pwm module init!
[    0.023464] ion_mem.size = 29360128
[    0.024161] SCSI subsystem initialized
[    0.024586] usbcore: registered new interface driver usbfs
[    0.024763] usbcore: registered new interface driver hub
[    0.025021] usbcore: registered new device driver usb
[    0.025360] twi_chan_cfg()342 - [twi0] has no twi_speed!
[    0.025475] twi_chan_cfg()353 - [twi0] has no twi_regulator.
[    0.025677] twi_chan_cfg()342 - [twi1] has no twi_speed!
[    0.025788] twi_chan_cfg()353 - [twi1] has no twi_regulator.
[    0.025990] sunxi_i2c_adap_init()1563 - Sunxi I2C init channel 0 
[    0.026242] ++sunxi_i2c_probe
[    0.026484] twi_request_gpio()406 - Pinctrl init 0 ... [twi0]
[    0.026696] twi_clk_write_reg()241 - twi_clk_write_reg: clk_n = 0, clk_m = 5
[    0.027186] ++axp_i2c_probe!
[    0.027464] axp20_init_chip:chip_id = 0x41
[    0.027464] axp20_board 0-0034: AXP (CHIP ID: 0x41) detected
[    0.030853] sunxi_i2c_probe()1250 - I2C: i2c-0: sunxi I2C adapter
[    0.030984] sunxi_i2c_probe()1251 - TWI_CTL  0xf1c2ac0c: 0x000000c0 
[    0.031200] sunxi_i2c_probe()1252 - TWI_STAT 0xf1c2ac10: 0x000000f8 
[    0.031401] sunxi_i2c_probe()1253 - TWI_CLK  0xf1c2ac14: 0x00000028 
[    0.031514] sunxi_i2c_probe()1254 - TWI_SRST 0xf1c2ac18: 0x00000000 
[    0.031715] sunxi_i2c_probe()1255 - TWI_EFR  0xf1c2ac1c: 0x00000000 
[    0.031898] Linux video capture interface: v2.00
[    0.032442] gpiochip_add: gpios 1024..1028 (axp_pin) failed to register
[    0.032442] axp pinctrl used,skip
[    0.032442] Advanced Linux Sound Architecture Driver Version 1.0.25.
[    0.032442] cfg80211: Calling CRDA to update world regulatory domain
[    0.033004] Switching to clocksource arch_sys_counter
[    0.039406] NET: Registered protocol family 2
[    0.039784] IP route cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.040442] TCP established hash table entries: 2048 (order: 2, 16384 bytes)
[    0.040689] TCP bind hash table entries: 2048 (order: 1, 8192 bytes)
[    0.040822] TCP: Hash tables configured (established 2048 bind 2048)
[    0.041024] TCP: reno registered
[    0.041139] UDP hash table entries: 256 (order: 0, 4096 bytes)
[    0.041351] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[    0.041725] NET: Registered protocol family 1
[    0.042124] Unpacking initramfs...
[    0.057727] Freeing initrd memory: 220K
[    0.058087] [pm]aw_pm_init!
[    0.058201] standby_mode = 1. 
[    0.058399] wakeup src cnt is : 3. 
[    0.058514] pmu name: pmu1_para .
[    0.058629] pmu1_enable = 0x1. 
[    0.058828] pmux_id = 0x1. 
[    0.058940] pmu name: pmu2_para .
[    0.059050] config_pmux_para: script_parser_fetch err. 
[    0.059249] pmu2_enable = 0x0. 
[    0.059372] add_sys_pwr_dm: get ldo name failed
[    0.059483] add_sys_pwr_dm: get ldo name failed
[    0.060051] add_sys_pwr_dm: get ldo name failed
[    0.060172] add_sys_pwr_dm: get ldo name failed
[    0.060283] add_sys_pwr_dm: get ldo name failed
[    0.060484] add_sys_pwr_dm: get ldo name failed
[    0.060845] add_sys_pwr_dm: get ldo name failed
[    0.061283] after inited: sys_mask config = 0x4810. 
[    0.061397] dynamic_standby enalbe = 0x0. 
[    0.061563] sunxi_reg_init enter
[    0.063567] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.063736] jffs2: version 2.2. (NAND) (SUMMARY)  漏 2001-2006 Red Hat, Inc.
[    0.064127] msgmni has been set to 59
[    0.065377] io scheduler noop registered
[    0.065590] io scheduler deadline registered
[    0.065776] io scheduler cfq registered (default)
[    0.066321] [DISP]disp_module_init
[    0.066939] cmdline,disp=
[    0.067577] disp_init_rotation_sw
[    0.067710] @@@rot-degree=0, scn_size[480,272]
[    0.067953] disp_rot_sw_set_manager,1209
[    0.068140] fb_para.width = 480,fb_para.height = 272,fb_para.buffer_num = 2
[    0.068261] gen_pool_alloc:nbits = 255,size = 1044480,order = 12
[    0.068462] chunk->start_addr = 0x42400000,chunk->end_addr = 0x43ffffffchunk->avail = 29360128
[    0.068766] end_bit = 7168
[    0.070299] info->var.bits_per_pixel = 32
[    0.083340] [DISP] disp_sys_power_enable,line:387:some error happen, fail to get regulator 
[    0.083667] [DISP] disp_sys_gpio_set_value,line:374:OSAL_GPIO_DevWRITE_ONEPIN_DATA, hdl is NULL
[    0.084694] [DISP]disp_module_init finish
[    0.085072] sw_uart_get_devinfo()1503 - uart2 has no uart_regulator.
[    0.085600] uart2: ttyS0 at MMIO 0x1c28800 (irq = 34) is a SUNXI
[    0.085721] sw_uart_pm()890 - uart2 clk is already enable
[    0.085934] sw_console_setup()1233 - console setup baud 115200 parity n bits 8, flow n
[    0.182015] console [ttyS0] enabled
[    1.003672] sunxi_spi_chan_cfg()1376 - [spi-0] has no spi_regulator.
[    1.011638] spi spi0: master is unqueued, this is deprecated
[    1.018161] m25p_probe()966 - Use the Dual Mode Read.
[    1.024105] NorFlash ID: 0xc22018 - 0xc220
[    1.028760] m25p80 spi0.0: found mx25l12805d, expected at25df641
[    1.035648] m25p80 spi0.0: mx25l12805d (16384 Kbytes)
[    1.043069] @@@[debug_jaosn]: Invalid partitions count: 4 9
[    1.049924] Creating 8 MTD partitions on "spi0.0":
[    1.055421] 0x000000000000-0x000000040000 : "uboot"
[    1.061985] 0x000000040000-0x000000440000 : "boot"
[    1.068374] 0x000000440000-0x000000df0000 : "system"
[    1.074979] 0x000000df0000-0x000000e70000 : "cfg"
[    1.081342] 0x000000e70000-0x000000e90000 : "boot_logo"
[    1.088281] 0x000000e90000-0x000000eb0000 : "shutdown_logo"
[    1.095594] 0x000000eb0000-0x000000ec0000 : "env"
[    1.100989] [DISP] disp_lcd_pwm_enable,line:1026:pwm device hdl is NULL
[    1.109609] 0x000000ec0000-0x000000ed0000 : "private"
[    1.116555] priv->phy_ext = INT_PHY
[    1.121377] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.148935] sunxi-ehci sunxi-ehci.1: SW USB2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.158066] sunxi-ehci sunxi-ehci.1: new USB bus registered, assigned bus number 1
[    1.166698] sunxi-ehci sunxi-ehci.1: irq 104, io mem 0xf1c1a000
[    1.190033] sunxi-ehci sunxi-ehci.1: USB 0.0 started, EHCI 1.00
[    1.197441] hub 1-0:1.0: USB hub found
[    1.201862] hub 1-0:1.0: 1 port detected
[    1.206858] sunxi-ehci sunxi-ehci.1: remove, state 1
[    1.212526] usb usb1: USB disconnect, device number 1
[    1.513033] sunxi-ehci sunxi-ehci.1: USB bus 1 deregistered
[    1.529437] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.556622] sunxi-ohci sunxi-ohci.1: SW USB2.0 'Open' Host Controller (OHCI) Driver
[    1.565366] sunxi-ohci sunxi-ohci.1: new USB bus registered, assigned bus number 1
[    1.573931] sunxi-ohci sunxi-ohci.1: irq 105, io mem 0xf1c1a400
[    1.644662] hub 1-0:1.0: USB hub found
[    1.648970] hub 1-0:1.0: 1 port detected
[    1.653864] sunxi-ohci sunxi-ohci.1: remove, state 1
[    1.659580] usb usb1: USB disconnect, device number 1
[    1.665922] sunxi-ohci sunxi-ohci.1: USB bus 1 deregistered
[    1.682448] Initializing USB Mass Storage driver...
[    1.688047] usbcore: registered new interface driver usb-storage
[    1.694928] USB Mass Storage support registered.
[    1.700507] file system registered
[    1.706036] android_usb gadget: Mass Storage Function, version: 2009/09/11
[    1.713836] android_usb gadget: Number of LUNs=1
[    1.719172]  lun0: LUN: removable file: (no medium)
[    1.725197] android_usb gadget: android_usb ready
[    1.730682] sunxikbd_script_init: key para not found, used default para. 
[    1.738940] tsc2003_ts_init
[    1.742182] =====ctp_fetch_sysconfig_para=====. 
[    1.747499] ctp_fetch_sysconfig_para: ctp_unused. 
[    1.752938] =========script_get_item_err============
[    1.758546] tsc2003_ts_init: ctp_fetch_sysconfig_para err.
[    1.765363] sunxi-rtc sunxi-rtc: rtc core: registered sunxi-rtc as rtc0
[    1.773112] sunxi cedar version 0.1 
[    1.777225] [cedar]: install start!!!
[    1.781652] [cedar]: install end!!!
[    1.792736] pmu_pekoff_time = 6000
[    1.796618] pmu_pekoff_en = 1
[    1.800025] pmu_peklong_time = 1500
[    1.804009] pmu_pekon_time = 1000
[    1.807873] pmu_pwrok_time = 64
[    1.811463] pmu_pwrnoe_time = 2000
[    1.815332] pmu_hot_shutdown = 1
[    1.819861] POWER20_PEK_SET:2146-->0x9d
[    1.824647] POWER20_PEK_SET:2157-->0x9d
[    1.829421] POWER20_PEK_SET:2166-->0x9d
[    1.834294] POWER20_PEK_SET:2177-->0x9d
[    1.839075] POWER20_PEK_SET:2189-->0x9d
[    1.843860] POWER20_HOTOVER_CTL:2198-->0x2d
[    1.855977] sunxi_wdt_init_module: sunxi WatchDog Timer Driver v1.0
[    1.863324] sunxi_wdt_probe: devm_ioremap return wdt_reg 0xf1c20ca0, res->start 0x01c20ca0, res->end 0x01c20cbf
[    1.874776] sunxi_wdt_probe: initialized (g_timeout=16s, g_nowayout=0)
[    1.882540] wdt_enable, write reg 0xf1c20cb8 val 0x00000000
[    1.888839] wdt_set_tmout, write 0x000000b0 to mode reg 0xf1c20cb8, actual timeout 16 sec
[    1.898666] [mmc]: SD/MMC/SDIO Host Controller Driver(v1.114 2015-6-2 10:21) Compiled in Apr  6 2018 at 15:54:26
[    1.910239] [mmc]: get mmc0's sdc_power failed
[    1.915288] [mmc]: get mmc1's sdc_power failed
[    1.920350] [mmc]: MMC host used card: 0x3, boot card: 0x0, io_card 2
[    1.928598] [mmc]: sdc0 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    1.941969] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    1.954913] sunxi_leds_fetch_sysconfig_para leds is not used in config
[    1.962292] =========script_get_err============
[    1.967723] usbcore: registered new interface driver usbhid
[    1.974051] usbhid: USB HID core driver
[    1.979045] ashmem: initialized
[    1.982929] logger: created 256K log 'log_main'
[    1.988277] logger: created 32K log 'log_events'
[    1.993660] logger: created 32K log 'log_radio'
[    1.998911] logger: created 32K log 'log_system'
[    2.005814] script_get_item return audio_pa_ctrl type err
[    2.012894] asoc: sndcodec <-> sunxi-codec mapping ok
[    2.020780] TCP: cubic registered
[    2.024697] NET: Registered protocol family 17
[    2.029981] VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 5
[    2.038865] ThumbEE CPU extension supported.
[    2.043766] Registering SWP/SWPB emulation handler
[    2.051114] sunxi-rtc sunxi-rtc: setting system clock to 2015-01-01 00:00:59 UTC (1420070459)
[    2.062189] [wifi module_pm]: select module num is 6
[    2.067909] [wifi module_pm]: step [0] failed to fetch module_power0
[    2.075136] [wifi module_pm]: mod has no chip_en gpio
[    2.080946] [wifi module_pm]: failed to fetch lpo_use_apclk
[    2.087573] [wifi_pm]: wifi gpio init is OK !!
[    2.092763] 
[    2.092767] *****Apr  6 2018 15:54:39 EAGLE DRIVER VER:75be56bfbaf7*****
[    2.092773] 
[    2.104017] =======================================================
[    2.111192] ==== Launching Wi-Fi driver! (Powered by Rockchip) ====
[    2.118245] =======================================================
[    2.125405] Espressif ESP8089 SDIO WiFi driver (Powered by Rockchip, Ver2.25(01/22/2016),Drv: 2.26) init.
[    2.136230] [wifi_pm]: set wl_reg_on 1 !
[    2.240783] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.252282] [mmc]: sdc1 power_supply is null
[    2.270039] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.302347] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[    2.311614] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[    2.319948] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.332807] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.345078] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 8,  RTO !!
[    2.353409] *******************Try sdio*******************
[    2.359906] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.394651] mmc1: queuing unknown CIS tuple 0x01 (3 bytes)
[    2.407978] mmc1: queuing unknown CIS tuple 0x1a (5 bytes)
[    2.417357] mmc1: queuing unknown CIS tuple 0x1b (8 bytes)
[    2.424491] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing SD-HS(SDR25) dt B
[    2.434871] [mmc]: sdc1 set ios: clk 50000000Hz bm PP pm ON vdd 3.3V width 1 timing SD-HS(SDR25) dt B
[    2.445497] [mmc]: sdc1 set ios: clk 50000000Hz bm PP pm ON vdd 3.3V width 4 timing SD-HS(SDR25) dt B
[    2.456977] mmc1: queuing unknown CIS tuple 0x80 (1 bytes)
[    2.463229] mmc1: queuing unknown CIS tuple 0x81 (1 bytes)
[    2.469561] mmc1: queuing unknown CIS tuple 0x82 (1 bytes)
[    2.475785] mmc1: new high speed SDIO card at address 0001
[    2.482462] esp_sdio_dummy_probe enter
[    2.486879] *******************sdio init ok*******************
[    2.690033] esp_sdio_init power up OK
[    3.132028] esp_host:75be56bfbaf7
[    3.132035] esp_target: 2cefb7b78636 77 18204
[    3.132040] 
[    3.142670] esp_readwrite_file: file /system/lib/modules/test_results filp_open error
[    3.151599] first normal exit
[    3.155180] esp_sdio_remove enter
[    3.159072] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[    3.167539] sif_disable_irq release irq failed
[    3.172779] mmc1: card 0001 removed
[    3.176823] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.186990] [mmc]: sdc1 power_supply is null
[    3.280090] ALSA device list:
[    3.283486]   #0: audiocodec
[    3.286976] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.297152] Freeing init memory: 140K
[    3.303275] init: skipping insecure file '/default.prop'
[    3.309493] init: skipping insecure file '/init.rc'
[    3.315130] [mmc]: sdc1 power_supply is null
[    3.321664] init: /init.rc: 132: invalid option 'root'
[    3.327669] init: skipping insecure file '/init.sun8i.rc'
[    3.333989] init: /init.sun8i.rc: 58: invalid option 'root'
[    3.340419] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.350858] init: skipping insecure file 'init.sun8i.usb.rc'
[    3.357861] init: command 'loglevel' r=0
[    3.364075] init: skipping insecure file '/ueventd.rc'
[    3.370168] init: command 'export' r=0
[    3.374444] init: command 'export' r=0
[    3.378797] init: command 'export' r=0
[    3.383381] init: skipping insecure file '/ueventd.sun8i.rc'
[    3.390633] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[    3.399195] init: command 'export' r=0
[    3.403509] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[    3.411955] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.430350] init: command 'symlink' r=0
[    3.434812] init: command 'symlink' r=0
[    3.439288] init: command 'symlink' r=0
[    3.450282] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.470278] init: command 'mkdir' r=0
[    3.474523] init: command 'mkdir' r=0
[    3.478730] init: command 'mkdir' r=0
[    3.485114] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 8,  RTO !!
[    3.493442] *******************Try sdio*******************
[    3.510322] init: command 'mkdir' r=-2
[    3.514621] init: processing action 0xe4e780 (init)
[    3.525332] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.550273] init: command 'export' r=0
[    3.554704] init: command 'export' r=0
[    3.558974] init: command 'export' r=0
[    3.567236] init: command 'export' r=0
[    3.571735] init: processing action 0xe4ce90 (early-fs)
[    3.577769] init: command 'mkdir' r=0
[    3.582064] init: command 'mkdir' r=0
[    3.586360] mmc1: queuing unknown CIS tuple 0x01 (3 bytes)
[    3.592641] init: command 'mkdir' r=0
[    3.596915] init: processing action 0xe4fa20 (console_init)
[    3.603591] init: command 'console_init' r=0
[    3.608479] init: processing action 0xe4d198 (fs)
[    3.613993] init: command 'wait' r=0
[    3.618723] init: command 'setupfs' r=1
[    3.623285] init: out of loopback devices source = /dev/block/mtdblock2
[    3.630881] init: out of loopback devices target = /system
[    3.637187] init: out of loopback devices system = squashfs
[    3.643508] init: out of loopback devices options = (null)
[    3.652771] init: command 'mount' r=0
[    3.657090] init: command 'wait' r=0
[    3.661250] init: out of loopback devices source = /dev/block/mtdblock3
[    3.668807] init: out of loopback devices target = /data
[    3.674843] mmc1: queuing unknown CIS tuple 0x1a (5 bytes)
[    3.681144] init: out of loopback devices system = jffs2
[    3.687218] init: out of loopback devices options = (null)
[    3.696113] mmc1: queuing unknown CIS tuple 0x1b (8 bytes)
[    3.703323] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing SD-HS(SDR25) dt B
[    3.713857] [mmc]: sdc1 set ios: clk 50000000Hz bm PP pm ON vdd 3.3V width 1 timing SD-HS(SDR25) dt B
[    3.724616] [mmc]: sdc1 set ios: clk 50000000Hz bm PP pm ON vdd 3.3V width 4 timing SD-HS(SDR25) dt B
[    3.736437] mmc1: queuing unknown CIS tuple 0x80 (1 bytes)
[    3.742804] mmc1: queuing unknown CIS tuple 0x81 (1 bytes)
[    3.749218] mmc1: queuing unknown CIS tuple 0x82 (1 bytes)
[    3.755558] mmc1: new high speed SDIO card at address 0001
[    3.764740] init: command 'mount' r=0
[    3.768984] init: processing action 0xe4d278 (post-fs)
[    3.775347] init: out of loopback devices source = rootfs
[    3.781582] init: out of loopback devices target = /
[    3.787194] init: out of loopback devices system = rootfs
[    3.793540] init: out of loopback devices options = (null)
[    3.802968] init: command 'mount' r=0
[    3.811862] init: processing action 0xe4d2d8 (post-fs-data)
[    3.825370] init: command 'chown' r=0
[    3.831902] init: command 'chmod' r=0
[    3.836227] init: command 'chmod' r=-2
[    3.849852] init: command 'mkdir' r=0
[    3.857233] init: command 'restorecon' r=0
[    3.868064] init: command 'mkdir' r=0
[    3.879073] init: command 'mkdir' r=0
[    3.891686] init: command 'mkdir' r=0
[    3.902574] init: command 'mkdir' r=0
[    3.906821] init: processing action 0xe4e4b8 (post-fs-data)
[    3.925865] init: skipping insecure file '/system/vendor/modules/fatfs.ko'
[    4.282172] misc fatfs initialized
[    4.286320] init: command 'insmod' r=0
[    4.291160] init: skipping insecure file '/system/vendor/modules/videobuf-core.ko'
[    4.305129] Wifi Efuse Mac => ac:d0:74:f0:69:b5
[    4.310474] esp_host:75be56bfbaf7
[    4.310479] esp_target: 2cefb7b78636 77 18204
[    4.310485] 
[    4.332276] esp_sdio: initializing netlink
[    4.337317] init: command 'insmod' r=0
[    4.341852] *******************sdio init ok*******************
[    4.348703] init: skipping insecure file '/system/vendor/modules/videobuf-dma-contig.ko'
[    4.358735] init: command 'insmod' r=0
[    4.363277] init: skipping insecure file '/system/vendor/modules/cci.ko'
[    4.405358] [VFE]cci probe start cci_sel = 0!
[    4.410498] [VFE]cci probe end cci_sel = 0!
[    4.415356] [VFE]cci_init end
[    4.418901] init: command 'insmod' r=0
[    4.428441] init: skipping insecure file '/system/vendor/modules/vfe_os.ko'
[    4.462758] init: command 'insmod' r=0
[    4.467272] init: skipping insecure file '/system/vendor/modules/vfe_subdev.ko'
[    4.476490] init: command 'insmod' r=0
[    4.481038] init: skipping insecure file '/system/vendor/modules/ov2710_mipi.ko'
[    4.500994] [VFE_DEV_CCI_DBG]cci init device
[    4.506089] [VFE_DEV_CCI_DBG]cci_subdev_init!
[    4.511088] [VFE_DEV_CCI_DBG]cci_dev_num_id = 1, name = ov2710_mipi, cci_subdev_init,sd pt=c1b27d80!
[    4.522535] init: command 'insmod' r=0
[    4.526982] init: skipping insecure file '/system/vendor/modules/vfe_v4l2.ko'
[    4.681331] [VFE]Welcome to Video Front End driver
[    4.687297] [VFE]pdev->id = 0
[    4.690785] [VFE]dev->mipi_sel = 0
[    4.694748] [VFE]dev->vip_sel = 0
[    4.698521] [VFE]dev->isp_sel = 0
[    4.708508] [VFE_WARN]vfe vpu clock is null
[    4.713392] gen_pool_alloc:nbits = 1,size = 4096,order = 12
[    4.719677] chunk->start_addr = 0x42400000,chunk->end_addr = 0x43ffffffchunk->avail = 28315648
[    4.734567] end_bit = 7168
[    4.737717] gen_pool_alloc:nbits = 1,size = 4096,order = 12
[    4.744115] chunk->start_addr = 0x42400000,chunk->end_addr = 0x43ffffffchunk->avail = 28311552
[    4.753887] end_bit = 7168
[    4.763471] [ISP] isp platform_id = 6!
[    4.767904] [VFE]vfe_init end
[    4.771423] [VFE]probe_work_handle start!
[    4.776085] [VFE]..........................vfe clk open!.......................
[    4.784707] init: command 'insmod' r=0
[    4.789087] init: processing action 0xe4fa68 (property_service_init)
[    4.796635] dev->dev_qty = 1
[    4.799932] [VFE]v4l2 subdev register input_num = 0
[    4.805556] [VFE]vfe sensor detect start! input_num = 0
[    4.811480] [VFE]Find sensor name is "ov2710_mipi", i2c address is 6c, type is "RAW" !
[    4.820467] [VFE]Sub device register "ov2710_mipi" i2c_addr = 0x6c start!
[    4.828194] [VFE_DEV_CCI_DBG]try cci dev name =ov2710_mipi!
[    4.834486] [VFE_DEV_CCI_DBG]cci_drv->name = ov2710_mipi, check name = ov2710_mipi
[    4.843088] [VFE_DEV_CCI_DBG]cci_bus_match name matched!
[    4.849085] [VFE_DEV_CCI_DBG]sd = c1b27d80, cci_drv pt = bf0ac6a8,id = 0,saddr = 36, name = ov2710_mipi
[    4.859747] [VFE]v4l2_device_register_subdev return 0
[    4.865552] [VFE]registered sensor subdev is OK!
[    4.870781] [VFE]Check sensor!
[    4.874266] [VFE]Sub device register "ov2710_mipi" is OK!
[    4.882578] init: skipping insecure file '/system/build.prop'
[    4.931228] [VFE]Check open /system/etc/hawkview/ov2710_mipi/isp_test_param.ini failed!
[    4.931245] Match isp cfg  start!
[    4.944217] [VFE]Match isp cfg ok
[    4.949312] init: Created socket '/dev/socket/property_service' with mode '666', user '0', group '0'
[    4.959767] init: command 'property_service_init' r=0
[    4.966088] [VFE]V4L2 device registered as video0
[    4.971506] init: processing action 0xe4fab0 (signal_init)
[    4.977859] init: command 'signal_init' r=0
[    4.982698] [VFE]..........................vfe clk close!.......................
[    4.991151] init: processing action 0xe4faf8 (check_startup)
[    4.997598] init: command 'check_startup' r=0
[    5.002675] [VFE]probe_work_handle end!
[    5.007061] init: processing action 0xe4d490 (boot)
[    5.013096] init: command 'ifup' r=0
[    5.017416] init: command 'hostname' r=0
[    5.021981] init: command 'domainname' r=0
[    5.026647] init: command 'setrlimit' r=0
[    5.036435] init: command 'chown' r=0
[    5.040936] init: starting 'servicemanager'
[    5.046178] init: starting 'vold'
[    5.055319] init: starting 'media'
[    5.059737] init: starting 'startupSound'
[    5.072060] init: Created socket '/dev/socket/vold' with mode '660', user '0', group '1009'
[    5.098033] init: command 'class_start' r=0
[    5.117364] init: starting 'newcdr'
[    5.126836] init: command 'class_start' r=0
[    5.132454] init: processing action 0xe4e5e8 (boot)
[    5.138129] init: starting 'adbd'
[    5.147175] init: command 'start' r=0
[    5.163508] init: Created socket '/dev/socket/adbd' with mode '660', user '1000', group '1000'
[    5.176095] init: starting 'debuggerd'
[    5.187129] init: command 'start' r=0
[    5.191579] init: command 'setprop' r=0
[    5.195970] init: command 'setprop' r=0
[    5.203906] adb_open
[    5.215966] init: processing action 0xe4fb40 (queue_property_triggers)
[    5.224505] init: command 'queue_property_triggers' r=0
[    5.231200] init: processing action 0xe4d770 (property:ro.debuggable=1)
[    5.239026] init: starting 'console'
[    5.243548] init: command 'start' r=0
[    5.247849] init: processing action 0xe4f458 (property:sys.usb.config=mass_storage,adb)
[    5.267497] android_usb: already disabled
[    5.272302] init: command 'write' r=0
[    5.276625] init: command 'write' r=0
[    5.282635] init: command 'write' r=0
[    5.289277] init: command 'write' r=0
[    5.295140] ep_matches, wrn: endpoint already claimed, ep(0xc0513ba4, 0xc1a73ac0, ep1in-bulk)
[    5.305426] adb_bind_config
[    5.308642] ep_matches, wrn: endpoint already claimed, ep(0xc0513ba4, 0xc1a73ac0, ep1in-bulk)
[    5.318370] ep_matches, wrn: endpoint already claimed, ep(0xc0513bf0, 0xc1a73ac0, ep1out-bulk)
[    5.328143] ep_matches, wrn: endpoint already claimed, ep(0xc0513ba4, 0xc1a73ac0, ep1in-bulk)
[    5.342733] ep_matches, wrn: endpoint already claimed, ep(0xc0513bf0, 0xc1a73ac0, ep1out-bulk)
[    5.352507] ep_matches, wrn: endpoint already claimed, ep(0xc0513c3c, 0xc1a8dec0, ep2in-bulk)
[    5.363116] init: command 'write' r=0
[    5.368207] init: command 'setprop' r=0
root@camdroid:/ # [    7.768248] ★·newcdr·★: main entry
[    7.782586] ★·newcdr·★: ===no need to check battery capacity ===
[    8.544018] [DISP] ready enter pm_runtime_get_sync, device0
[    8.811168] [VFE]vfe_open
[    8.814202] [VFE]..........................vfe clk open!.......................
[    8.822882] gen_pool_alloc:nbits = 1,size = 3584,order = 12
[    8.829168] chunk->start_addr = 0x42400000,chunk->end_addr = 0x43ffffffchunk->avail = 28307456
[    8.839045] end_bit = 7168
[    8.842208] gen_pool_alloc:nbits = 1,size = 1536,order = 12
[    8.848585] chunk->start_addr = 0x42400000,chunk->end_addr = 0x43ffffffchunk->avail = 28303360
[    8.858368] end_bit = 7168
[    8.861596] gen_pool_alloc:nbits = 3,size = 8448,order = 12
[    8.867879] chunk->start_addr = 0x42400000,chunk->end_addr = 0x43ffffffchunk->avail = 28299264
[    8.877750] end_bit = 7168
[    8.880872] gen_pool_alloc:nbits = 3,size = 8448,order = 12
[    8.887250] chunk->start_addr = 0x42400000,chunk->end_addr = 0x43ffffffchunk->avail = 28286976
[    8.897057] end_bit = 7168
[    8.900332] gen_pool_alloc:nbits = 3,size = 8448,order = 12
[    8.906630] chunk->start_addr = 0x42400000,chunk->end_addr = 0x43ffffffchunk->avail = 28274688
[    8.916495] end_bit = 7168
[    8.919608] gen_pool_alloc:nbits = 3,size = 8448,order = 12
[    8.925995] chunk->start_addr = 0x42400000,chunk->end_addr = 0x43ffffffchunk->avail = 28262400
[    8.935767] end_bit = 7168
[    8.938973] gen_pool_alloc:nbits = 3,size = 8448,order = 12
[    8.950276] chunk->start_addr = 0x42400000,chunk->end_addr = 0x43ffffffchunk->avail = 28250112
[    8.960142] end_bit = 7168
[    8.963256] [VFE]vfe_open ok
[    8.966688] [VFE]Set vfe core clk = 216000000, after Set vfe core clk = 180000000 
[    8.987355] [OV2710 Raw]CSI_SUBDEV_PWR_ON!
[    8.992025] [VFE_WARN]os_gpio_set_status, hdl is NULL
[    8.997898] [VFE_WARN]os_gpio_set_status, hdl is NULL
[    9.003623] vfe_gpio_write:gpio_type = 2,status = 1
[    9.009336] os_gpio_write:set gpio 152 to 1
[    9.014086] os_gpio_write:set gpio 152 to 1
[    9.018827] vfe_gpio_write:gpio_type = 1,status = 1
[    9.024352] os_gpio_write:set gpio 0 to 1
[    9.028898] vfe_gpio_write:gpio_type = 0,status = 0
[    9.034506] os_gpio_write:set gpio 0 to 0
[    9.041485] vfe_gpio_write:gpio_type = 0,status = 1
[    9.046998] os_gpio_write:set gpio 0 to 1
[    9.059670] vfe_gpio_write:gpio_type = 1,status = 0
[    9.065206] os_gpio_write:set gpio 0 to 0
[    9.081862] vfe_gpio_write:gpio_type = 2,status = 0
[    9.087375] os_gpio_write:set gpio 152 to 0
[    9.092133] os_gpio_write:set gpio 152 to 0
[    9.118982] vfe_gpio_write:gpio_type = 2,status = 1
[    9.124518] os_gpio_write:set gpio 152 to 1
[    9.129349] os_gpio_write:set gpio 152 to 1
[    9.134112] [VFE]mclk on
[    9.161090] [OV2710 Raw]sensor_init
[    9.165059] [OV2710 Raw]sensor_detect_1--!
[    9.170044] [VFE CCI_0 ERR] Status error at addr_8bit = 6c, wr_flag = 1, val = 7fc10a30
[    9.179483] [VFE CCI_0 ERR] Status error at addr_8bit = 6c, wr_flag = 1, val = 7f000a30
[    9.188738] [VFE CCI_0 ERR] Status error at addr_8bit = 6c, wr_flag = 1, val = 7f000a30
[    9.198072] [VFE CCI_0 ERR] Status error at addr_8bit = 6c, wr_flag = 1, val = 7f000a30
[    9.207158] [OV2710 Raw]sensor read retry=3
[    9.211910] [OV2710 Raw]error at sensor_detect
[    9.216937] [OV2710 Raw]chip found is not an target chip.
[    9.223124] [VFE_ERR]sensor initial error when selecting target device!
[    9.230638] [VFE]vfe_close
[    9.451733] init: waitpid returned pid 68, status = 00000000
[    9.458153] init: process 'startupSound', pid 68 exited
[   10.677599] init: processing action 0xe4f458 (property:sys.usb.config=mass_storage,adb)
[   10.710487] adb_release
[   10.713938] init: command 'write' r=0
[   10.718349] adb_open
[   10.740397] init: command 'write' r=0
[   10.757037] init: command 'write' r=0
[   10.773804] init: command 'write' r=0
[   10.790731] ep_matches, wrn: endpoint already claimed, ep(0xc0513ba4, 0xc1a73ac0, ep1in-bulk)
[   10.820219] adb_bind_config
[   10.823485] ep_matches, wrn: endpoint already claimed, ep(0xc0513ba4, 0xc1a73ac0, ep1in-bulk)
[   10.833188] ep_matches, wrn: endpoint already claimed, ep(0xc0513bf0, 0xc1a73ac0, ep1out-bulk)
[   10.842962] ep_matches, wrn: endpoint already claimed, ep(0xc0513ba4, 0xc1a73ac0, ep1in-bulk)
[   10.852535] ep_matches, wrn: endpoint already claimed, ep(0xc0513bf0, 0xc1a73ac0, ep1out-bulk)
[   10.862298] ep_matches, wrn: endpoint already claimed, ep(0xc0513c3c, 0xc1a8dec0, ep2in-bulk)
[   10.878000] init: command 'write' r=0
[   10.885084] init: command 'setprop' r=0
[   10.939090] esp_op_start
[   10.954037] esp_op_add_interface enter: type 2, addr ac:d0:74:f0:69:b5
[   10.961487] esp_op_add_interface STA 
[   10.968561]  esp_op_bss_info_changed enter: changed e, assoc 0, bssid 00:00:00:00:00:00
[   10.978600]  esp_op_bss_info_changed enter: changed 2000, assoc 0, bssid 00:00:00:00:00:00
[   10.988954]  esp_op_bss_info_changed enter: changed 4000, assoc 0, bssid 00:00:00:00:00:00
[   10.998541] esp_op_flush enter 
[   11.160421] warning: `hostapd' uses 32-bit capabilities (legacy support in use)
[   11.389036] esp_op_remove_interface enter, vif addr ac:d0:74:f0:69:b5, beacon enable 0
[   11.398273] esp_op_stop
[   11.402348] esp_op_start
[   11.405288] esp_op_add_interface enter: type 3, addr ac:d0:74:f0:69:b5
[   11.412693] esp_op_add_interface AP 
[   11.417093]  esp_op_bss_info_changed enter: changed e, assoc 0, bssid ac:d0:74:f0:69:b5
[   11.426246]  esp_op_bss_info_changed enter: changed 2000, assoc 0, bssid ac:d0:74:f0:69:b5
[   11.435775]  esp_op_bss_info_changed enter: changed 4000, assoc 0, bssid ac:d0:74:f0:69:b5
[   11.446265]  esp_op_bss_info_changed enter: changed 10, assoc 0, bssid ac:d0:74:f0:69:b5
[   11.458958]  esp_op_bss_info_changed enter: changed 8340, assoc 0, bssid ac:d0:74:f0:69:b5
[   11.468319]  init_beacon_timer enter: beacon interval 64
[   11.474999]  esp_op_bss_info_changed enter: changed 3e, assoc 0, bssid ac:d0:74:f0:69:b5
[   11.582057]  beacon length:152,fc:0x80
[   20.696200] [DISP] disp_lcd_pwm_disable,line:1043:pwm device hdl is NULL
[   20.930593] [DISP] disp_sys_gpio_set_value,line:374:OSAL_GPIO_DevWRITE_ONEPIN_DATA, hdl is NULL
[   20.940577] [DISP] disp_sys_power_disable,line:417:some error happen, fail to get regulator 
[   21.924296] set usbcur 0 mA
[   21.927748] set usbvol 4000 mV
[   73.022033]  beacon length:152,fc:0x80

感觉还是不能理解这个 camdroid:

1. uart2: ttyS0 at MMIO 0x1c28800 (irq = 34) is a SUNXI uart2怎么与 /dev/ttyS0勾搭上的,不是应该 /dev/ttyS2吗?
这个 251 的设备号也是很奇怪的

root@camdroid:/ # ls /dev/ttyS* -l
crwxrwxrwx system   system   251,   0 2015-01-01 00:01 ttyS0
root@camdroid:/ #

2. root=/dev/nor1 根本没有这玩意啊。





离线

楼主 #56 2018-10-14 16:48:16

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

HELLO! BOOT0 is starting!
boot0 version : 4.0.0
boot0 commit : c8e0a19bbff4496d5c9810791b445e7061801bb1

fel flag  = 0x00000000
rtc[0] value = 0x00000000
rtc[1] value = 0x00000000
rtc[2] value = 0x00000000
rtc[3] value = 0x00000000
rtc[4] value = 0x00000000
rtc[5] value = 0x00000000
rtc[6] value = 0x00000000
rtc[7] value = 0x00000000
DRAM DRIVE INFO: V0.9
DRAM Type = 2 (2:DDR2,3:DDR3,6:LPDDR2,7:LPDDR3)
DRAM CLK = 408 MHz
DRAM zq value: 000039bb
DRAM size = 64 MB
dram size =64
Succeed in reading Boot1 file head.
The size of uboot is 00038000.
Ready to disable icache.
Jump to secend Boot.
[      0.173]

U-Boot 2011.09-rc1-00000-gc8e0a19-dirty (Dec 01 2017 - 15:08:10) Allwinner Technology

[      0.182]version: 1.1.0
[      0.185]uboot commit : c8e0a19bbff4496d5c9810791b445e7061801bb1

[      0.195]pmbus:   ready
not set main pmu id
[      0.214]PMU: AXP209
[      0.216]PMU: AXP20x found
bat_vol=1023, ratio=100
[      0.221]PMU: dcdc3 3300
[      0.224]PMU: pll1 912 Mhz,PLL6=600 Mhz
AXI=304 Mhz,AHB=200 Mhz, APB1=100 Mhz
set power on vol to default
boot power:unable to find power off vol set
dcdc2_vol = 1250
dcdc3_vol = 3300
aldo2_vol = 2500
aldo3_vol = 3000
ldo1_vol = 3300
ldo2_vol = 3000
ldo3_vol = 3000
find power_sply to end
vbus exist
vbus pc exist, limit to pc
fel key new mode
run key detect
no key found
no key input
dram_para_set start
dram_para_set end
[      0.678]DRAM:  64 MiB
relocation Offset is: 036c1000
workmode = 0
sunxi spinor is initing...[debug_jaosn]:use the clock in sys_config
OK
nor id is 0x1820c2
[      0.708]sunxi flash init ok
hello @flash_speed=1
In:    serial
Out:   serial
Err:   serial
--------fastboot partitions--------
-total partitions:7-
-name-        -start-       -size-
boot        : 4000          280000
system      : 284000        c83000
cfg         : f07000        40000
boot_logo   : f47000        20000
shutdown_logo: f67000        20000
env         : f87000        10000
UDISK       : f97000        0
-----------------------------------
WORK_MODE_BOOT
read bootlogo partition successful,start_block=0x7a38,rblock=0x100 ,ret=256
Use decode 1x1 sampling
sunxi_read_bootlogo: jpg convert argb
[      1.081]Hit any key to stop autoboot:  0
read boot or recovery all
[      1.263]sunxi flash read :offset 4000, 2621951 bytes OK
[      1.272]ready to boot
force sunxi spinor exit
[      1.275]
Starting kernel ...

cp /disk5/spinor/camdroid/device/softwinner/tiger-cdr/custom/1080p/lichee/pack_config/sys_config.fex /disk5/zeta/tools/pack/chips/sun8iw8p1/configs/zeta-evb/sys_config.fex
zmake all

生成 img 文件后烧到 海豚派红板(第一版)上,也是酱紫.





离线

#57 2019-11-06 14:59:17

太一酱鸭
会员
注册时间: 2019-07-03
已发帖子: 154
积分: 154

Re: 海豚派V3s开发板 camdroid 完整入坑记录

晕哥的配置如何呢,我这样编译的时候虚拟机会死机,看网上说是配置问题

离线

楼主 #58 2019-11-06 15:14:01

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

从来没死过机, 什么情况, 有没有 log





离线

#59 2019-11-06 15:21:49

太一酱鸭
会员
注册时间: 2019-07-03
已发帖子: 154
积分: 154

Re: 海豚派V3s开发板 camdroid 完整入坑记录

晕哥 说:

从来没死过机, 什么情况, 有没有 log

问了一下群里人,是配置问题,我只给了4g内存,不够,又给了2g还是不够,猜测8g起步吧

离线

楼主 #60 2019-11-06 15:37:13

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

我的虚拟机就给2G,一样杠杠滴,我记得编译安卓需要8G起,否则到后面就真挂了。





离线

#61 2019-11-06 17:20:54

nothing
会员
注册时间: 2019-09-11
已发帖子: 13
积分: 13

Re: 海豚派V3s开发板 camdroid 完整入坑记录

编译的时候make -j会导致线程最大数量启动,导致内存资源不足,建议把相关编译里面有-j的选项去掉,单线程编译

离线

#62 2019-11-07 17:08:49

太一酱鸭
会员
注册时间: 2019-07-03
已发帖子: 154
积分: 154

Re: 海豚派V3s开发板 camdroid 完整入坑记录

想问一下晕哥,这样编译出来的,能够编译程序的编译工具链是哪个啊

离线

#63 2019-11-19 21:47:31

kirito23
会员
注册时间: 2019-11-10
已发帖子: 3
积分: 3

Re: 海豚派V3s开发板 camdroid 完整入坑记录

晕哥, 荔枝派ZERO 我下载的荔枝派的camdroid, 按照你的方式编译出来了, 烧录到SD卡后,  一直在烧录, 启动也启动不了
这个camdroid是不是只有烧录到spi flash才可以用

离线

楼主 #64 2019-11-19 21:50:14

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,223
积分: 9197

Re: 海豚派V3s开发板 camdroid 完整入坑记录

烧 TF 卡启动不了是有可能的, 因为当时只测试过 spi nor flash, 你先买 MX25L256/W25Q256 试一试.

看下启动不了的串口log, 或许改改也能启动.





离线

#65 2020-10-10 12:32:17

shawn.d
会员
注册时间: 2020-09-12
已发帖子: 164
积分: 100

Re: 海豚派V3s开发板 camdroid 完整入坑记录

libcedar原来V3S也能用啊。

离线

#66 2021-02-17 16:02:43

zhuacai
会员
注册时间: 2017-12-16
已发帖子: 234
积分: 233.5

Re: 海豚派V3s开发板 camdroid 完整入坑记录

晕哥 说:

....
或者用整合的命令行:

#tinymix 1 24;tinymix 16 1;tinyplay /system/res/others/startup.wav

晕哥,tinymix 1 24;tinymix 16 1是什么意思?如何录音呢

离线

#67 2021-02-17 18:12:18

拉轰的脚踏车
会员
注册时间: 2020-03-20
已发帖子: 288
积分: 222

Re: 海豚派V3s开发板 camdroid 完整入坑记录

zhuacai 说:
晕哥 说:

....
或者用整合的命令行:

#tinymix 1 24;tinymix 16 1;tinyplay /system/res/others/startup.wav

晕哥,tinymix 1 24;tinymix 16 1是什么意思?如何录音呢

这是设置声卡寄存器, 用 tinycap 可以录音

离线

#68 2021-11-30 14:43:27

qumingzuimafanle
会员
注册时间: 2021-11-30
已发帖子: 1
积分: 1

Re: 海豚派V3s开发板 camdroid 完整入坑记录

root@ubuntu:/mnt/hgfs/LYJZW/Downloads/cam
droid-master/camdroid# lunch

You're building on Linux

Lunch menu... pick a combo:
     1. tiger_cdr-eng

Which would you like? [full-eng] 1
CAMLINUX_PRODUCT_FEATURE external media audio storage videoencoder debug camera adb
============================================
PLATFORM_VERSION_CODENAME=REL
PLATFORM_VERSION=4.2.2
TARGET_PRODUCT=tiger_cdr
TARGET_BUILD_VARIANT=eng
TARGET_BUILD_TYPE=release
TARGET_BUILD_APPS=
TARGET_ARCH=arm
TARGET_ARCH_VARIANT=armv7-a-neon
HOST_ARCH=x86
HOST_OS=linux
HOST_OS_EXTRA=Linux-4.15.0-142-generic-x86_64-with-Ubuntu-16.04-xenial
HOST_BUILD_TYPE=release
BUILD_ID=JDQ39
OUT_DIR=/mnt/hgfs/LYJZW/Downloads/camdroid-master/camdroid/out
============================================

ln: failed to create symbolic link 'AWDocument': Operation not supported

第一个问题
root@ubuntu:/mnt/hgfs/LYJZW/Downloads/camdroid-master/camdroid# mklichee

mkscript current setting:
        Chip: sun8iw8p1
    Platform: 
       Board: 
  Output Dir: /mnt/hgfs/LYJZW/Downloads/camdroid-master/camdroid/../lichee/out/sun8iw8p1/linux/common

INFO: build lichee ...
INFO: build buildroot ...
installing external toolchain
please wait for a few minutes ...
tar: arm-linux-gnueabi/bin/c++: Cannot hard link to ‘arm-linux-gnueabi/bin/g++’: Operation not permitted
tar: arm-linux-gnueabi/bin/ld.bfd: Cannot hard link to ‘arm-linux-gnueabi/bin/ld’: Operation not permitted
tar: arm-linux-gnueabi/libc/lib/libgfortran.so: Cannot create symlink to ‘libgfortran.so.3.0.0’: Operation not supported
tar: arm-linux-gnueabi/libc/lib/arm-linux-gnueabi/libresolv.so.2: Cannot create symlink to ‘libresolv-2.13.so’: Operation not supported
tar: arm-linux-gnueabi/libc/lib/arm-linux-gnueabi/libanl.so.1: Cannot create symlink to ‘libanl-2.13.so’: Operation not supported
tar: arm-linux-gnueabi/libc/lib/arm-linux-gnueabi/libnss_nis.so.2: Cannot create symlink to ‘libnss_nis-2.13.so’: Operation not supported
tar: arm-linux-gnueabi/libc/lib/arm-linux-gnueabi/librt.so.1: Cannot create symlink to ‘librt-2.13.so’: Operation not supported
tar: arm-linux-gnueabi/libc/lib/arm-linux-gnueabi/libpthread.so.0: Cannot create symlink to ‘libpthread-2.13.so’: Operation not supported
tar: arm-linux-gnueabi/libc/lib/arm-linux-gnueabi/libc.so.6: Cannot create symlink to ‘libc-2.13.so’: Operation not supported
tar: arm-linux-gnueabi/libc/lib/arm-linux-gnueabi/libdl.so.2: Cannot create symlink to ‘libdl-2.13.so’: Operation not supported
tar: arm-linux-gnueabi/libc/lib/arm-linux-gnueabi/libnsl.so.1: Cannot create symlink to ‘libnsl-2.13.so’: Operation not supported
tar: arm-linux-gnueabi/libc/lib/arm-linux-gnueabi/libutil.so.1: Cannot create symlink to ‘libutil-2.13.so’: Operation not supported
tar: arm-linux-gnueabi/libc/lib/arm-linux-gnueabi/libm.so.6: Cannot create symlink to ‘libm-2.13.so’: Operation not supported
tar: arm-linux-gnueabi/libc/lib/arm-linux-gnueabi/libnss_dns.so.2: Cannot create symlink to ‘libnss_dns-2.13.so’: Operation not supported
tar: arm-linux-gnueabi/libc/lib/arm-linux-gnueabi/libnss_hesiod.so.2: Cannot create symlink to ‘libnss_hesiod-2.13.so’: Operation not supported
tar: arm-linux-gnueabi/libc/lib/arm-linux-gnueabi/libcrypt.so.1: Cannot create symlink to ‘libcrypt-2.13.so’: Operation not supported
tar: arm-linux-gnueabi/libc/lib/arm-linux-gnueabi/libnss_files.so.2: Cannot create symlink to ‘libnss_files-2.13.so’: Operation not supported
tar: arm-linux-gnueabi/libc/lib/arm-linux-gnueabi/libBrokenLocale.so.1: Cannot create symlink to ‘libBrokenLocale-2.13.so’: Operation not supported
tar: arm-linux-gnueabi/libc/lib/arm-linux-gnueabi/libthread_db.so.1: Cannot create symlink to ‘libthread_db-1.0.so’: Operation not supported
tar: arm-linux-gnueabi/libc/lib/arm-linux-gnueabi/libnss_nisplus.so.2: Cannot create symlink to ‘libnss_nisplus-2.13.so’: Operation not supported
tar: arm-linux-gnueabi/libc/lib/arm-linux-gnueabi/libnss_compat.so.2: Cannot create symlink to ‘libnss_compat-2.13.so’: Operation not supported
tar: arm-linux-gnueabi/libc/lib/arm-linux-gnueabi/ld-linux.so.3: Cannot create symlink to ‘ld-2.13.so’: Operation not supported
tar: arm-linux-gnueabi/libc/lib/arm-linux-gnueabi/libcidn.so.1: Cannot create symlink to ‘libcidn-2.13.so’: Operation not supported
tar: arm-linux-gnueabi/libc/lib/libstdc++.so: Cannot create symlink to ‘libstdc++.so.6.0.16’: Operation not supported
tar: arm-linux-gnueabi/libc/lib/libstdc++.so.6: Cannot create symlink to ‘libstdc++.so.6.0.16’: Operation not supported
tar: arm-linux-gnueabi/libc/lib/libgfortran.so.3: Cannot create symlink to ‘libgfortran.so.3.0.0’: Operation not supported
tar: arm-linux-gnueabi/libc/lib/ld-linux.so.3: Cannot create symlink to ‘arm-linux-gnueabi/ld-2.13.so’: Operation not supported
tar: bin/arm-linux-gnueabi-as: Cannot hard link to ‘arm-linux-gnueabi/bin/as’: Operation not permitted
tar: bin/arm-linux-gnueabi-ld: Cannot hard link to ‘arm-linux-gnueabi/bin/ld’: Operation not permitted
tar: bin/arm-linux-gnueabi-strip: Cannot hard link to ‘arm-linux-gnueabi/bin/strip’: Operation not permitted
tar: bin/arm-linux-gnueabi-g++: Cannot hard link to ‘bin/arm-linux-gnueabi-c++’: Operation not permitted
tar: bin/arm-linux-gnueabi-gcc-4.6.3: Cannot hard link to ‘bin/arm-linux-gnueabi-gcc’: Operation not permitted
tar: bin/arm-linux-gnueabi-objdump: Cannot hard link to ‘arm-linux-gnueabi/bin/objdump’: Operation not permitted
tar: bin/arm-linux-gnueabi-nm: Cannot hard link to ‘arm-linux-gnueabi/bin/nm’: Operation not permitted
tar: bin/arm-linux-gnueabi-ld.gold: Cannot hard link to ‘arm-linux-gnueabi/bin/ld.gold’: Operation not permitted
tar: bin/arm-linux-gnueabi-objcopy: Cannot hard link to ‘arm-linux-gnueabi/bin/objcopy’: Operation not permitted
tar: bin/arm-linux-gnueabi-ld.bfd: Cannot hard link to ‘arm-linux-gnueabi/bin/ld’: Operation not permitted
tar: bin/arm-linux-gnueabi-ranlib: Cannot hard link to ‘arm-linux-gnueabi/bin/ranlib’: Operation not permitted
tar: bin/arm-linux-gnueabi-ar: Cannot hard link to ‘arm-linux-gnueabi/bin/ar’: Operation not permitted
tar: libexec/gcc/arm-linux-gnueabi/4.6.3/liblto_plugin.so.0: Cannot create symlink to ‘liblto_plugin.so.0.0.0’: Operation not supported
tar: libexec/gcc/arm-linux-gnueabi/4.6.3/liblto_plugin.so: Cannot create symlink to ‘liblto_plugin.so.0.0.0’: Operation not supported
tar: arm-linux-gnueabi/libc/usr/share/doc/libc6-dev/changelog.Debian.gz: Cannot create symlink to ‘../libc6/changelog.Debian.gz’: Operation not supported
tar: arm-linux-gnueabi/libc/usr/share/doc/libc6-dev/FAQ.gz: Cannot create symlink to ‘../libc6/FAQ.gz’: Operation not supported
tar: arm-linux-gnueabi/libc/usr/lib/arm-linux-gnueabi/libanl.so: Cannot create symlink to ‘../../../lib/arm-linux-gnueabi/libanl.so.1’: Operation not supported
tar: arm-linux-gnueabi/libc/usr/lib/arm-linux-gnueabi/libresolv.so: Cannot create symlink to ‘../../../lib/arm-linux-gnueabi/libresolv.so.2’: Operation not supported
tar: arm-linux-gnueabi/libc/usr/lib/arm-linux-gnueabi/libnss_dns.so: Cannot create symlink to ‘../../../lib/arm-linux-gnueabi/libnss_dns.so.2’: Operation not supported
tar: arm-linux-gnueabi/libc/usr/lib/arm-linux-gnueabi/librt.so: Cannot create symlink to ‘../../../lib/arm-linux-gnueabi/librt.so.1’: Operation not supported
tar: arm-linux-gnueabi/libc/usr/lib/arm-linux-gnueabi/libBrokenLocale.so: Cannot create symlink to ‘../../../lib/arm-linux-gnueabi/libBrokenLocale.so.1’: Operation not supported
tar: arm-linux-gnueabi/libc/usr/lib/arm-linux-gnueabi/libnss_files.so: Cannot create symlink to ‘../../../lib/arm-linux-gnueabi/libnss_files.so.2’: Operation not supported
tar: arm-linux-gnueabi/libc/usr/lib/arm-linux-gnueabi/libnss_hesiod.so: Cannot create symlink to ‘../../../lib/arm-linux-gnueabi/libnss_hesiod.so.2’: Operation not supported
tar: arm-linux-gnueabi/libc/usr/lib/arm-linux-gnueabi/libnss_compat.so: Cannot create symlink to ‘../../../lib/arm-linux-gnueabi/libnss_compat.so.2’: Operation not supported
tar: arm-linux-gnueabi/libc/usr/lib/arm-linux-gnueabi/libcrypt.so: Cannot create symlink to ‘../../../lib/arm-linux-gnueabi/libcrypt.so.1’: Operation not supported
tar: arm-linux-gnueabi/libc/usr/lib/arm-linux-gnueabi/libutil.so: Cannot create symlink to ‘../../../lib/arm-linux-gnueabi/libutil.so.1’: Operation not supported
tar: arm-linux-gnueabi/libc/usr/lib/arm-linux-gnueabi/libm.so: Cannot create symlink to ‘../../../lib/arm-linux-gnueabi/libm.so.6’: Operation not supported
tar: arm-linux-gnueabi/libc/usr/lib/arm-linux-gnueabi/libcidn.so: Cannot create symlink to ‘../../../lib/arm-linux-gnueabi/libcidn.so.1’: Operation not supported
tar: arm-linux-gnueabi/libc/usr/lib/arm-linux-gnueabi/libdl.so: Cannot create symlink to ‘../../../lib/arm-linux-gnueabi/libdl.so.2’: Operation not supported
tar: arm-linux-gnueabi/libc/usr/lib/arm-linux-gnueabi/libnss_nisplus.so: Cannot create symlink to ‘../../../lib/arm-linux-gnueabi/libnss_nisplus.so.2’: Operation not supported
tar: arm-linux-gnueabi/libc/usr/lib/arm-linux-gnueabi/libthread_db.so: Cannot create symlink to ‘../../../lib/arm-linux-gnueabi/libthread_db.so.1’: Operation not supported
tar: arm-linux-gnueabi/libc/usr/lib/arm-linux-gnueabi/libnsl.so: Cannot create symlink to ‘../../../lib/arm-linux-gnueabi/libnsl.so.1’: Operation not supported
tar: arm-linux-gnueabi/libc/usr/lib/arm-linux-gnueabi/libnss_nis.so: Cannot create symlink to ‘../../../lib/arm-linux-gnueabi/libnss_nis.so.2’: Operation not supported
tar: Exiting with failure status due to previous errors
ERROR: build buildroot Failed
root@ubuntu:/mnt/hgfs/LYJZW/Downloads/camdroid-master/camdroid# arm-
arm-eabi-addr2line                      arm-eabi-run                            arm-linux-androideabi-nm                arm-linux-gnueabi-gcc-nm
arm-eabi-ar                             arm-eabi-size                           arm-linux-androideabi-objcopy           arm-linux-gnueabi-gcc-nm-5
arm-eabi-objcopy                        arm-linux-androideabi-gprof             arm-linux-gnueabi-gcc                   arm-linux-gnueabi-size
arm-eabi-objdump                        arm-linux-androideabi-ld                arm-linux-gnueabi-gcc-5                 arm-linux-gnueabi-strings
arm-eabi-ranlib                         arm-linux-androideabi-ld.bfd            arm-linux-gnueabi

编译报错,我使用的是芒果的sdk

离线

页脚

工信部备案:粤ICP备20025096号 Powered by FluxBB

感谢为中文互联网持续输出优质内容的各位老铁们。 QQ: 516333132, 微信(wechat): whycan_cn (哇酷网/挖坑网/填坑网) service@whycan.cn