您尚未登录。

#1 Re: DOPI开源摄像头(HI3516/HI3518) » 【引导】DOPI 入门必看. Q群 735884031 » 2020-11-08 11:04:25

GC2053 和SONY 那个都是200W像素的, 楼主有没400W像素的模组?

#3 Re: 技术人生/软件使用技巧/破解经验/技术吐槽/灌水 » 新手买了个示波器, 是坏的吗? » 2019-11-17 09:44:38

Quotation 说:

1mV档这个噪声算很小吧,不管测什么,环境带来的干扰都会有,1mV档太敏感了。
切到100mV档,测个电池看看?

谢谢指点。 1mv档位, 8格算8mv的话, 噪声有1/8。
实际上我用到20mv档位, 在这个档位,也有10mv的噪声,勉强能用。

默认垂直位置不居中,如第一个图,向上偏移了一格,是故障吗 ?

#4 Re: 全志 SOC » 求助:S3的SDK, zmake all生成的img挂不了根文件系统( S3+SPI Nand 128MB ) » 2019-11-17 09:30:22

太一酱鸭 说:

比起楼主的log,我的少了这一段

[    2.122855] [NAND]nand_dev add mbr
[    2.126883] [NAND]nand_dev add bootloader
[    2.133474]  nanda:
[    2.136523] [NAND]nand_dev add env
[    2.143593]  nandb: unknown partition table
[    2.149193] [NAND]nand_dev add boot
[    2.156320]  nandc: unknown partition table
[    2.161748] [NAND]nand_dev add rootfs
[    2.169245]  nandd: unknown partition table
[    2.174807] [NAND]nand init end 

S3后来我没研究了, 暂时换了其它的平台了。
你排查一下有没其它原因。
另外,flash 要打补丁驱动才可以用, 原SDK已集成其中一个, 不知道是否适用你的flash。可以:
1. 向S3官方客服客气地要flash补丁。
2. 参考彩虹派,我用的是和彩虹派一样的flash, 移植一下驱动
3. 网上有几篇官方发的S3博文,有关于flash的,你研究一下。

#5 Re: 技术人生/软件使用技巧/破解经验/技术吐槽/灌水 » 新手买了个示波器, 是坏的吗? » 2019-11-15 18:47:29

metro 说:

探头不接的话,接口位置就相当于天线了,正常环境下确实会有不少电磁干扰,这是正常的。可以试试测量固定电压的设备(如电池),看看还有没有这种情况。

接了探头,探头钩子接地(就是钩子和地的鳄鱼夹短接)。 情况一样。
不接地的话,满屏乱飞。

#6 Re: 技术人生/软件使用技巧/破解经验/技术吐槽/灌水 » 新手买了个示波器, 是坏的吗? » 2019-11-15 16:33:37

gui401 说:

示波器是新的还是二手?底噪确实很大,偏移问题可以执行一次自校准看下能不能解决


新的。已经不插探头,校准过, 还是老样子。

#8 技术人生/软件使用技巧/破解经验/技术吐槽/灌水 » 新手买了个示波器, 是坏的吗? » 2019-11-15 16:08:22

playflash
回复: 8

新手买了个示波器, 是坏的吗?

探头没插。底噪很大。
1mv档, 有大于一格的底噪。
其它档位底噪也不小。
这是坏的吗?
另外向上偏移了差不多一格,其它档位基本居中。。


120325.jpg

#10 Re: ESP32/ESP8266 » esp32s2板子开箱贴 » 2019-08-04 17:36:20

希望能快点完善SDK。楼主可以发些pcb封装和pdf吗

#11 Re: ESP32/ESP8266 » https访问一定要证书吗? » 2019-07-31 11:25:04

jimmy 说:

我觉得可以忽略证书吧:


https://blog.csdn.net/bytxl/article/details/46989667

curl wget 不验证证书进行https请求:

wget 'https://x.x.x.x/get_ips' --no-check-certificate
curl 'https://x.x.x.x/get_ips' -k

谢谢,经你提示,看了源码,那个证书的确是验证要连接的服务器用的,可以忽略。
但同时, 会不会服务器也会验证我们的客户端?

#13 ESP32/ESP8266 » https访问一定要证书吗? » 2019-07-30 20:38:07

playflash
回复: 9

aaaaa.png

esp_http_client例子中, 带有一证书, 如上图。
但这个证书不是例子中目标网站https://www.howsmyssl.com 的? 这是证书颁发机构Let's Encrypt的。

所以, https访问是要先从howsmyssl.com取得他们的证书,再到证书颁发机构Let's Encrypt验证??
不用这个PEM格式的证书可以吗?

麻烦大侠解惑。

以下是示例代码

static void https_with_url()
{
    esp_http_client_config_t config = {
        .url = "https://www.howsmyssl.com",
        .event_handler = _http_event_handler,
        .cert_pem = howsmyssl_com_root_cert_pem_start,
    };
    esp_http_client_handle_t client = esp_http_client_init(&config);
    esp_err_t err = esp_http_client_perform(client);

    if (err == ESP_OK) {
        ESP_LOGI(TAG, "HTTPS Status = %d, content_length = %d",
                esp_http_client_get_status_code(client),
                esp_http_client_get_content_length(client));
    } else {
        ESP_LOGE(TAG, "Error perform http request %s", esp_err_to_name(err));
    }
    esp_http_client_cleanup(client);
}

#14 Re: ESP32/ESP8266 » 有谁知道ESP32用的pSRAM还有哪些? » 2019-07-28 15:06:04

谢谢。  SDK显示如下。

Ubuntu-64-bit-2019-07-28-05-07-24.png

问了一下, 没有比SOP8小的

#16 Re: DIY/综合/Arduino/写字机/3D打印机/智能小车/平衡车/四轴飞行/MQTT/物联网 » 我也来推荐一个性价比不错的 SD NAND ------ MK(米客方德) » 2019-07-03 23:04:43

上次没领到羊毛券。。。。。。。这个SD nand 没有大容量,太可惜了,再等几年出4GB了我再下手。

#19 Re: 全志 SOC » v3s的mipi最高支持多少万像素的摄像头 » 2019-06-27 16:45:41

V3s以及S3的SDK都有imx214驱动。楼主再研究一下。

#20 ESP32/ESP8266 » 有谁知道ESP32用的pSRAM还有哪些? » 2019-06-26 11:44:11

playflash
回复: 4

知道能用的是官方的pSRAM32和pSRAM64, 这两个封装都是SOP8, 想找个更小封装的。
谢谢。

#25 Re: 全志 SOC » 30元 双层板 S3 发去打样了,就看今天能不能过复审了 » 2019-05-24 13:23:47

两层搞定了?BGA焊盘之间的过孔你用什么尺寸?JLC做不了那么小的孔。而且BGA焊盘,之前在JLC做的很差。
我在华强做了个S3样板, 好象花了好几百。 焊接BGA没经验的确难,我焊坏了几个才成功一个,主要是温度没敢调高, 怕坏芯片。

#27 Re: 全志 SOC » 支持MIPI摄像头的最便宜的是哪款芯片? » 2019-03-20 03:37:11

我也在找这方面芯片。
目前只觉得s3适合。
V3s内存觉得太小
楼主搞出来后分享一下。

#28 Re: 全志 SOC » 歪朵拉上线了全志S3/S3L的芯片零售服务 » 2019-03-12 01:40:09

mango 说:
john78 说:

s3l的脚间距多少的。v3s,那个0.4的也不好焊

0.65球距,4mil线扇出,0.2/0.4机械通孔。华强嘉立创都妥妥的

0.2/0.4的孔可以吗?那么孔边离BGA焊盘只有4mil, 良率会不会很低?

#29 Re: 全志 SOC » Linux-Box,3D外壳收到了,晒晒 » 2019-03-11 04:38:11

达克罗德 说:
mango 说:

用S3做播放器,肯定溜~~~
壳子估计要改动的地方不多了,我和结构再碰一下,接下来准备开模了。据说铁模还便宜些,一般铁模能扛10K,个人觉得够用了,基本要做成公模的趋势。
内部PCB尺寸全部验证好后,随你们想放啥放啥,我手头S3多,先出S3了。
想想很激动,例如imx6UL、RT1052、或者STM32H7等等,最好带RGB驱动,屏幕毕竟60帧还是IPS材质的。

铁模开模费多少钱?

我也想知道铁模多少钱?
我开过也是这样大小的模具,一出二,不知道用的什么钢,约2W

终于等到楼主S3的消息,这可是从去年国庆等到现在。

#30 Re: 全志 SOC » ESP8089 AP模式 (固件在 43楼可以下载!!!) » 2019-01-23 15:30:40

源码:
芒果派的?
https://github.com/qq516333132/camdroid/tree/master/lichee/linux-3.4/drivers/net/wireless/esp8089

荔枝派的:
https://github.com/Lichee-Pi/esp8089
这个为什么没有init_data.conf文件

可能是全志的:
https://github.com/jwrdegoede/esp8089
出处:http://linux-sunxi.org/Wifi#Espressif

我还有彩虹派的,跟第一个一样。
楼主调试成功了,记得分享一下经验。

#31 Re: 全志 SOC » ESP8089 AP模式 (固件在 43楼可以下载!!!) » 2019-01-23 15:21:19

error_0 说:

有没有人 能发一下成功的log给我看一下,我好有个对比。

HELLO! BOOT0 is starting!
boot0 version : 4.0.0
boot0 commit : 8 
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 = 0x80000000
rtc[7] value = 0x00000005
DRAM DRIVE INFO: V0.7
DRAM Type = 2 (2:DDR2,3:DDR3,6:LPDDR2,7:LPDDR3)
DRAM CLK = 360 MHz
DRAM zq value: 000039bb
DRAM size = 64 MB
dram size =64
Reg 0x01c20848: 0x00003333
0x01c20028 0x90041811
0x01c200a0 0x8100000f
spinand UBOOT_LAST_BLK_NUM 19
Succeed in opening spi nand flash.
Succeed in reading Boot1 file head.
current block is 2.
current block is 3.
current block is 4.
current block is 5.
current block is 6.
current block is 7.
sum=5e56afaa
src_sum=5e56afaa
The file stored in block 2 to block 6 is perfect.
----------storage_type = 5  in boot0-------------------------
Ready to disable icache.
Jump to secend Boot.
[      0.498]

U-Boot 2011.09-rc1 (Nov 13 2018 - 15:47:40) Allwinner Technology 

[      0.505]version: 1.1.0
[      0.508]uboot commit : 8 
[      0.514]pmbus:   ready
not set main pmu id
axp_probe error
[      0.520]PMU: pll1 408 Mhz,PLL6=600 Mhz
AXI=204 Mhz,AHB=204 Mhz, APB1=102 Mhz 
set power on vol to default
dcdc2_vol = 1200
axp set dcdc2_vol to 1200 failed
dcdc3_vol = 3300
axp set dcdc3_vol to 3300 failed
aldo2_vol = 2500
axp set aldo2_vol to 2500 failed
aldo3_vol = 3000
axp set aldo3_vol to 3000 failed
ldo1_vol = 3300
axp set ldo1_vol to 3300 failed
ldo2_vol = 3000
axp set ldo2_vol to 3000 failed
ldo3_vol = 3000
axp set ldo3_vol to 3000 failed
find power_sply to end
vbus exist
no battery, limit to dc
no key input
dram_para_set start
dram_para_set end
[      0.651]DRAM:  64 MiB
relocation Offset is: 0309c000
save config for small mem_size 
workmode = 0
storage type = 5
[      0.749]SPINAND: NAND_UbootInit
NAND_UbootInit start
NB1 : enter NAND_LogicInit
NandHwInit: Start Nand Hardware initializing .....
uboot:nand version: 2 25 20150917 1145 
Reg 0x01c20848: 0x3333
Reg 0x01c2085c: 0x55
Reg 0x01c20864: 0x10
uboot nand_request_tx_dma: reqest genernal dma for nand success, 0x43a31aa0
request general tx dma channel ok!
uboot nand_request_tx_dma: reqest genernal dma for nand success, 0x43a31abc
request general rx dma channel ok!
SPI nand ID: 12c212c2 12c212c2
[SCAN_DBG] NandTwoPlaneOp: 1, DriverTwoPlaneOPCfg: 1, 0xffcfffff 
nand : get id_number_ctl fail, a
_UpdateExtAccessFreqPara: no para.
PHY_Scan_DelayMode: right delay mode 0x0
PHY_Scan_DelayMode: right delay mode 0x800
PHY_Scan_DelayMode: right delay mode,clk 75 MHz, bit[13]=0,bit[11]=1
_GetOldPhysicArch: chip 0, block 20, page 0, oob: 0x0, 0x50, 0x48, 0x59
_GetOldPhysicArch: get old physic arch ok, 0x6d 0x2!
NAND_ReadPhyArch: get old physic arch ok, use old cfg, now:0x2 0x6d - old:0x2 0x6d!


[SCAN_DBG] ==============Nand Architecture Parameter==============
[SCAN_DBG]    Nand Chip ID:         0xffff12c2 0xffffffff
[SCAN_DBG]    Nand Chip Count:      0x1
[SCAN_DBG]    Nand Chip Connect:    0x1
[SCAN_DBG]    Sector Count Of Page: 0x4
[SCAN_DBG]    Page Count Of Block:  0x40
[SCAN_DBG]    Block Count Of Die:   0x400
[SCAN_DBG]    Plane Count Of Die:   0x2
[SCAN_DBG]    Die Count Of Chip:    0x1
[SCAN_DBG]    Bank Count Of Chip:   0x1
[SCAN_DBG]    Optional Operation:   0x6d
[SCAN_DBG]    Access Frequence:     0x4b
[SCAN_DBG] =======================================================


[FORMAT_DBG] ===========Logical Architecture Parameter===========
[FORMAT_DBG]    Page Count of Logic Block:  0x40
[FORMAT_DBG]    Sector Count of Logic Page: 0x8
[FORMAT_DBG]    Block Count of Die:         0x200
[FORMAT_DBG]    Die Count:                  0x1
[FORMAT_DBG] ===================================================
nand:found factory_bad_block(new version) table in block:26!
nand:support secure storage
secure storage updata ok!
nand secure storage ok: 21,22
NandHwInit: End Nand Hardware initializing ..... OK!
nand : get CapacityLevel fail, a
not burn nand partition table!
nand:found factory_bad_block(new version) table in block:26!
nand:support secure storage
start block:23
[NE]mbr read 12
[NE]mbr read ok!
[NE]mbr read end!
[NE]mbr partition start!
[NE]mbr partition ok!
[NE]mbr partition end!
[NE]new nand info init!!
[NE]mbr read 12
[NE]mbr read ok!
[NE]mbr read end!
[NE]get mbr_data table
[ND]ok  get factory_bad_block table!
[NE]new_bad_block table new format!
[ND]ok get a new bad table!
[ND]build all_phy partition start!
[NE]mbr partition start!
[NE]mbr partition ok!
[NE]mbr partition end!
[NE]partition_num: 0,size :0x36400,cross_talk 0
[NE]part mbr size: 0x800 type: 0
[NE]part bootloader size: 0x4000 type: 0
[NE]part env size: 0x400 type: 0
[NE]part boot size: 0x4000 type: 0
[NE]part system size: 0x2d000 type: 0
[NE]part UDISK size: 0x800 type: 0
[ND]build 1 phy_partition !
[ND]nand_info->type :0
[ND]nand_info->SectorNumsPerPage :8
[ND]nand_info->BytesUserData :16
[ND]nand_info->PageNumsPerBlk :64
[ND]nand_info->BlkPerChip :512
[ND]nand_info->FirstBuild :0
[ND]nand_info->FullBitmap :10
[ND]nand_info->bad_block_addr.Chip_NO :0
[ND]nand_info->bad_block_addr.Block_NO :13
[ND]nand_info->mbr_block_addr.Chip_NO :0
[ND]nand_info->mbr_block_addr.Block_NO :12
[ND]nand_info->no_used_block_addr.Chip_NO :0
[ND]nand_info->no_used_block_addr.Block_NO :16
[ND]nand_info->new_bad_block_addr.Chip_NO :0
[ND]nand_info->new_bad_block_addr.Block_NO :14
[ND]nand_info->new_bad_page_addr :65535
[ND]nand_info->partition_nums :1
[ND]sizeof partition:1192
[ND]nand_info->partition:0:
[ND]size:0x36400
[ND]cross_talk:0x0
[ND]attribute:0x0
[ND]start: chip:0 block:16
[ND]end  : chip:0 block:511
NB1 : nftl num: 1 
 init nftl: 0 
[ND]nand_partition0
[ND]nftl start:496,62
[ND]first
[ND]before second 496 434.
[NE]smart->version:aaaaaa01;
[NE]smart->total_recv_read_sectors:191736;
[NE]smart->total_recv_write_sectors:192706;
[NE]smart->total_real_read_pages:24563;
[NE]smart->total_real_write_pages:24617;
[NE]smart->total_recv_discard_sectors:0;
[NE]smart->total_real_discard_sectors:0;
[NE]smart->total_recv_read_claim_pages:0;
[NE]smart->total_gc_times:0;
[NE]smart->total_gc_pages:0;
[NE]smart->total_wl_times:0;
[NE]smart->total_real_read_error_pages:0;
[NE]smart->total_real_write_error_pages:0;
[NE]smart->total_normal_power_cycles:7;
[NE]smart->total_unusual_power_cycles:0;
[NE]smart->max_block_erase_times:0;
[NE]smart->min_block_erase_times:0;
[NE]smart->max_block_used_counter:0;
[NE]smart->min_block_used_counter:0;
[NE]smart->read_reclaim_utc:0;
[NE]recover_phy_page_mapping no used page 56!!
[ND]recover 108 56
[ND]A64 nand2.0 version:0009 
[ND]zone->nand_chip->blk_per_chip: 496 
[ND]zone->nand_chip->bytes_per_page: 4096 
[ND]zone->nand_chip->pages_per_blk: 64 
[ND]zone->nand_chip->max_erase_times: 3000 
[ND]zone->nand_chip->support_read_reclaim: 0 
[ND]zone->test: 0 
[ND]zone->zone_no: 0 
[ND]zone->zone_attr: 0 
[ND]zone->blocks: 496 
[ND]zone->bad_block: 0 
[ND]zone->logic_cap_in_sects: 222208 
[ND]zone->backup_cap_in_sects: 31744 
[ND]zone->free_block_num: 112 
[ND]zone->gc_strategy.start_gc_free_blocks: 12 
[ND]zone->gc_strategy.stop_gc_free_blocks: 41 
[ND]zone->gc_strategy.gc_page: 0 
[ND]zone->gc_strategy.process: 1 
[ND]zone->prio_gc.prio_type : 0 
[ND]zone->zone_start_phy_block->phy_block.Block_NO: 0 
[ND]zone->zone_end_phy_block->phy_block.Block_NO: 495 
[ND]zone->zone_phy_page_map_for_gc: 4293dad0 
[ND]zone->current_block.user_info: 4293d640 
[ND]zone->current_block.block_info: 4291cd70 
[ND]zone->current_block.block_info->phy_block.Block_NO: 108 
[ND]zone->current_block.page_used: 56 
[ND]zone->current_block.block_info->block_used_count: 387 
[ND]zone->read_reclaim_complete: 0 
[ND]zone->temp_page_buf: 42920428 
[ND]zone->max_erase_num: 1 
[ND]zone->cache.cache_totals: 0 
[ND]zone->cfg->nftl_dont_use_cache: 1 
[ND]zone->cfg->nftl_use_cache_sort: 1 
[ND]zone->cfg->nftl_support_gc_read_reclaim: 1 
[ND]zone->cfg->nftl_support_wear_leveling: 1 
[ND]zone->cfg->nftl_need_erase: 0 
[ND]zone->cfg->nftl_min_free_block_num: 32 
[ND]zone->cfg->nftl_gc_threshold_free_block_num: a 
[ND]zone->cfg->nftl_min_free_block: a 
[ND]zone->cfg->nftl_gc_threshold_ratio_numerator: 2 
[ND]zone->cfg->nftl_gc_threshold_ratio_denominator: 3 
[ND]zone->cfg->nftl_max_cache_num: 20 
[ND]zone->cfg->nftl_max_cache_write_num: 10 
[ND]zone->cfg->nftl_cross_talk: 0 
[ND]zone->cfg->nftl_read_claim_interval: 1296000 
[NE]smart->version:aaaaaa01;
[NE]smart->total_recv_read_sectors:191736;
[NE]smart->total_recv_write_sectors:192706;
[NE]smart->total_real_read_pages:24620;
[NE]smart->total_real_write_pages:24617;
[NE]smart->total_recv_discard_sectors:0;
[NE]smart->total_real_discard_sectors:0;
[NE]smart->total_recv_read_claim_pages:0;
[NE]smart->total_gc_times:0;
[NE]smart->total_gc_pages:0;
[NE]smart->total_wl_times:0;
[NE]smart->total_real_read_error_pages:0;
[NE]smart->total_real_write_error_pages:0;
[NE]smart->total_normal_power_cycles:7;
[NE]smart->total_unusual_power_cycles:0;
[NE]smart->max_block_erase_times:0;
[NE]smart->min_block_erase_times:0;
[NE]smart->max_block_used_counter:0;
[NE]smart->min_block_used_counter:0;
[NE]smart->read_reclaim_utc:0;
[ND]nftl ok!
[ND]max_erase_times = 65000
[ND]nftl_add ok
NB1 : NAND_LogicInit ok, result = 0x0 
[      1.646]sunxi flash init ok
In:    serial
Out:   serial
Err:   serial
--------fastboot partitions--------
-total partitions:5-
-name-        -start-       -size-      
bootloader  : 100000        800000      
env         : 900000        80000       
boot        : 980000        800000      
system      : 1180000       5a00000     
UDISK       : 6b80000       0           
-----------------------------------
base bootcmd=run bootcmd_nandd
bootcmd set setargs_nand
key 0
cant find rcvy value
cant find fstbt value
no misc partition is found
to be run cmd=run bootcmd_nandd
Net:   eth0Warning: failed to set MAC address

WORK_MODE_BOOT
board_status_probe
adver not need show
sunxi_bmp_logo_display

** Unable to read "bootlogo.bmp" from sunxi_flash 0:1 **
sunxi bmp info error : unable to open logo file bootlogo.bmp
read bootlogo partition fail,start_block=0x0,rblock=0x0 ,ret=0
Not a JPG file ?
parse_header failed

Use decode 2x1 sampling
sunxi_read_bootlogo: jpg convert argb  
[      1.745]Hit any key to stop autoboot:  1  0 
read boot or recovery all
boota: bad boot image magic, maybe not a boot.img?
try to read all
[      3.184]sunxi flash read :offset 980000, 8388608 bytes OK
## Booting kernel from Legacy Image at 40007800 ...
   Image Name:   Linux-3.4.39
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    3671720 Bytes = 3.5 MiB
   Load Address: 40008000
   Entry Point:  40008000
   Verifying Checksum ... OK
   Loading Kernel Image ... OK
OK
para err in disp_ioctl, cmd = 0xa,screen id = 1
[      3.377][mmc]: MMC Device 2 not found
[      3.380][mmc]:  mmc  not find,so not exit
NAND_UbootExit
NB1 : NAND_LogicExit
nand release dma:43a31aa0
nand release dma:0
reload config to 0x43000000 
[      3.385]
Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0
[    0.000000] Linux version 3.4.39 (dev@dev-vm) (gcc version 4.6.3 20120201 (prerelease) (crosstool-NG linaro-1.13.1-2012.02-20120222 - Linaro GCC 2012.02) ) #2 Tue Nov 13 16:12:00 CST 2018
[    0.000000] Kernel command line: console=ttyS2,115200 root=/dev/nandd
[    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: 20384k/20384k available, 45152k 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 - 0xc068a000   (6664 kB)
[    0.000000]       .init : 0xc068a000 - 0xc06b3000   ( 164 kB)
[    0.000000]       .data : 0xc06b4000 - 0xc0738e20   ( 532 kB)
[    0.000000]        .bss : 0xc0738e44 - 0xc0774998   ( 239 kB)
[    0.000000] NR_IRQS:544
[    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.000271] Calibrating delay loop (skipped), value calculated using timer frequency.. 4800.00 BogoMIPS (lpj=24000000)
[    0.000322] pid_max: default: 32768 minimum: 301
[    0.000592] Mount-cache hash table entries: 512
[    0.001462] CPU: Testing write buffer coherency: ok
[    0.001823] Setting up static identity map for 0x404da660 - 0x404da6b8
[    0.002892] devtmpfs: initialized
[    0.005773] VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 5
[    0.006139] pinctrl core: initialized pinctrl subsystem
[    0.006991] NET: Registered protocol family 16
[    0.007412] DMA: preallocated 128 KiB pool for atomic coherent allocations
[    0.007503] script_sysfs_init success
[    0.009125] gpiochip_add: registered GPIOs 0 to 223 on device: sunxi-pinctrl
[    0.010984] sunxi-pinctrl sunxi-pinctrl: initialized sunXi PIO driver
[    0.012635] script config pll_isp to 360 Mhz
[    0.012685] Not Found clk pll_video in script 
[    0.012715] script config pll_ve to 360 Mhz
[    0.012753] Not Found clk pll_periph0 in script 
[    0.012773] Not Found clk pll_de in script 
[    0.026277] bio: create slab <bio-0> at 0
[    0.026709] pwm module init!
[    0.030753] SCSI subsystem initialized
[    0.031196] usbcore: registered new interface driver usbfs
[    0.031378] usbcore: registered new interface driver hub
[    0.031611] usbcore: registered new device driver usb
[    0.031869] twi_chan_cfg()341 - [twi0] has no twi_speed!
[    0.031895] twi_chan_cfg()352 - [twi0] has no twi_regulator.
[    0.031922] twi_chan_cfg()341 - [twi1] has no twi_speed!
[    0.031945] twi_chan_cfg()352 - [twi1] has no twi_regulator.
[    0.032866] Linux video capture interface: v2.00
[    0.033298] Advanced Linux Sound Architecture Driver Version 1.0.25.
[    0.034921] cfg80211: Calling CRDA to update world regulatory domain
[    0.036739] Switching to clocksource arch_sys_counter
[    0.048987] NET: Registered protocol family 2
[    0.049485] IP route cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.050442] TCP established hash table entries: 2048 (order: 2, 16384 bytes)
[    0.050554] TCP bind hash table entries: 2048 (order: 1, 8192 bytes)
[    0.050618] TCP: Hash tables configured (established 2048 bind 2048)
[    0.050643] TCP: reno registered
[    0.050668] UDP hash table entries: 256 (order: 0, 4096 bytes)
[    0.050715] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[    0.051224] NET: Registered protocol family 1
[    0.051803] RPC: Registered named UNIX socket transport module.
[    0.051833] RPC: Registered udp transport module.
[    0.051852] RPC: Registered tcp transport module.
[    0.051871] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.052181] standby_mode = 1. 
[    0.052198] wakeup src cnt is : 3. 
[    0.052299] sunxi_reg_init enter
[    0.054900] VFS: Disk quotas dquot_6.5.2
[    0.055807] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.056435] NTFS driver 2.1.30 [Flags: R/W].
[    0.056625] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[    0.057069] msgmni has been set to 39
[    0.059470] io scheduler noop registered
[    0.059496] io scheduler deadline registered
[    0.059656] io scheduler cfq registered (default)
[    0.059682] [DISP]disp_module_init
[    0.060552] cmdline,disp=
[    0.063105] [DISP] Fb_map_kernel_logo,line:924:Fb_map_kernel_logo failed!
[    0.067363] [DISP] disp_sys_gpio_set_value,line:374:OSAL_GPIO_DevWRITE_ONEPIN_DATA, hdl is NULL
[    0.068315] [DISP]disp_module_init finish
[    0.068785] sw_uart_get_devinfo()1503 - uart0 has no uart_regulator.
[    0.068826] sw_uart_get_devinfo()1503 - uart2 has no uart_regulator.
[    0.069612] uart0: ttyS0 at MMIO 0x1c28000 (irq = 32) is a SUNXI
[    0.070370] uart2: ttyS2 at MMIO 0x1c28800 (irq = 34) is a SUNXI
[    0.070406] sw_uart_pm()890 - uart2 clk is already enable
[    0.070447] sw_console_setup()1233 - console setup baud 115200 parity n bits 8, flow n
[    0.178187] console [ttyS2] enabled
[    0.750100] [DISP] disp_sys_gpio_set_value,line:374:OSAL_GPIO_DevWRITE_ONEPIN_DATA, hdl is NULL
[    0.759891] ili9341 sleep out
[    0.916916]  nanda:
[    0.923190]  nandb: unknown partition table
[    0.932086]  nandc: unknown partition table
[    0.940785]  nandd: unknown partition table
[    0.947920]  nande: unknown partition table
[    0.953944] sunxi_spi_chan_cfg()1376 - [spi-0] has no spi_regulator.
[    0.961160] sunxi_spi_register_spidev()2009 - Get spi devices modalias failed
[    0.969167] sunxi_spi_init()2073 - register spi devices board info failed 
[    0.978631] usbcore: registered new interface driver rtl8192cu
[    0.985461] usbcore: registered new interface driver rt2500usb
[    0.992296] usbcore: registered new interface driver rt73usb
[    0.998765] usbcore: registered new interface driver rt2800usb
[    1.005383] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.032959] sunxi-ehci sunxi-ehci.1: SW USB2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.041991] [DISP] disp_lcd_pwm_enable,line:1023:pwm device hdl is NULL
[    1.049789] sunxi-ehci sunxi-ehci.1: new USB bus registered, assigned bus number 1
[    1.058514] sunxi-ehci sunxi-ehci.1: irq 104, io mem 0xf1c1a000
[    1.080055] sunxi-ehci sunxi-ehci.1: USB 0.0 started, EHCI 1.00
[    1.088020] hub 1-0:1.0: USB hub found
[    1.092316] hub 1-0:1.0: 1 port detected
[    1.097699] sunxi-ehci sunxi-ehci.1: remove, state 1
[    1.103368] usb usb1: USB disconnect, device number 1
[    1.110484] sunxi-ehci sunxi-ehci.1: USB bus 1 deregistered
[    1.126890] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.154055] sunxi-ohci sunxi-ohci.1: SW USB2.0 'Open' Host Controller (OHCI) Driver
[    1.162788] sunxi-ohci sunxi-ohci.1: new USB bus registered, assigned bus number 1
[    1.171369] sunxi-ohci sunxi-ohci.1: irq 105, io mem 0xf1c1a400
[    1.235237] hub 1-0:1.0: USB hub found
[    1.239478] hub 1-0:1.0: 1 port detected
[    1.244709] sunxi-ohci sunxi-ohci.1: remove, state 1
[    1.250441] usb usb1: USB disconnect, device number 1
[    1.257207] sunxi-ohci sunxi-ohci.1: USB bus 1 deregistered
[    1.273744] Initializing USB Mass Storage driver...
[    1.279377] usbcore: registered new interface driver usb-storage
[    1.286226] USB Mass Storage support registered.
[    1.291591] usbcore: registered new interface driver ums-cypress
[    1.298510] usbcore: registered new interface driver ums_eneub6250
[    1.305553] usbcore: registered new interface driver ums-freecom
[    1.312451] usbcore: registered new interface driver ums-isd200
[    1.319237] usbcore: registered new interface driver ums-jumpshot
[    1.326214] usbcore: registered new interface driver ums-realtek
[    1.333149] usbcore: registered new interface driver ums-sddr09
[    1.339864] usbcore: registered new interface driver ums-sddr55
[    1.346640] usbcore: registered new interface driver ums-usbat
[    1.353959] file system registered
[    1.360970] android_usb gadget: Mass Storage Function, version: 2009/09/11
[    1.368783] android_usb gadget: Number of LUNs=1
[    1.374039]  lun0: LUN: removable file: (no medium)
[    1.380414] android_usb gadget: android_usb ready
[    1.386417] mousedev: PS/2 mouse device common for all mice
[    1.392885] sunxikbd_script_init: key para not found, used default para. 
[    1.402163] sunxi-rtc sunxi-rtc: rtc core: registered sunxi-rtc as rtc0
[    1.411093] usbcore: registered new interface driver uvcvideo
[    1.417651] USB Video Class driver (v1.0.8_SONiX_v2.6.36.04)
[    1.424918] sunxi_wdt_init_module: sunxi WatchDog Timer Driver v1.0
[    1.432376] sunxi_wdt_probe: devm_ioremap return wdt_reg 0xf1c20ca0, res->start 0x01c20ca0, res->end 0x01c20cbf
[    1.443918] sunxi_wdt_probe: initialized (g_timeout=16s, g_nowayout=0)
[    1.451504] wdt_enable, write reg 0xf1c20cb8 val 0x00000000
[    1.457764] wdt_set_tmout, write 0x000000b0 to mode reg 0xf1c20cb8, actual timeout 16 sec
[    1.476439] sunxi_leds_fetch_sysconfig_para leds is not used in config
[    1.483888] =========script_get_err============
[    1.489415] usbcore: registered new interface driver usbhid
[    1.495715] usbhid: USB HID core driver
[    1.500802] usbcore: registered new interface driver snd-usb-audio
[    1.507960] Netfilter messages via NETLINK v0.30.
[    1.513328] nfnl_acct: registering with nfnetlink.
[    1.518916] nf_conntrack version 0.5.0 (318 buckets, 1272 max)
[    1.526238] ctnetlink v0.93: registering with nfnetlink.
[    1.532374] NF_TPROXY: Transparent proxy support initialized, version 4.1.0
[    1.540285] NF_TPROXY: Copyright (c) 2006-2007 BalaBit IT Ltd.
[    1.547372] xt_time: kernel timezone is -0000
[    1.552448] ip_set: protocol 6
[    1.556363] ip_tables: (C) 2000-2006 Netfilter Core Team
[    1.562709] arp_tables: (C) 2002 David S. Miller
[    1.568012] TCP: cubic registered
[    1.572210] NET: Registered protocol family 10
[    1.578860] IPv6 over IPv4 tunneling driver
[    1.584918] NET: Registered protocol family 17
[    1.590310] ThumbEE CPU extension supported.
[    1.595134] Registering SWP/SWPB emulation handler
[    1.602998] sunxi-rtc sunxi-rtc: setting system clock to 1970-01-01 00:03:03 UTC (183)
[    1.758105] *******************Try sdio*******************
[    1.784826] mmc1: queuing unknown CIS tuple 0x01 (3 bytes)
[    1.798429] mmc1: queuing unknown CIS tuple 0x1a (5 bytes)
[    1.807822] mmc1: queuing unknown CIS tuple 0x1b (8 bytes)
[    1.816873] mmc1: queuing unknown CIS tuple 0x80 (1 bytes)
[    1.823185] mmc1: queuing unknown CIS tuple 0x81 (1 bytes)
[    1.829399] mmc1: queuing unknown CIS tuple 0x82 (1 bytes)
[    1.835627] mmc1: new high speed SDIO card at address 0001
[    1.842724] *******************sdio init ok*******************
[    2.507878] mmc1: card 0001 removed
[    2.610153] ALSA device list:
[    2.613486]   No soundcards found.
[    2.618912] EXT4-fs (nandd): couldn't mount as ext3 due to feature incompatibilities
[    2.630393] EXT4-fs (nandd): couldn't mount as ext2 due to feature incompatibilities
[    2.668404] *******************Try sdio*******************
[    2.696844] mmc1: queuing unknown CIS tuple 0x01 (3 bytes)
[    2.710916] EXT4-fs (nandd): recovery complete
[    2.717911] EXT4-fs (nandd): mounted filesystem with ordered data mode. Opts: (null)
[    2.726865] VFS: Mounted root (ext4 filesystem) on device 93:24.
[    2.734621] devtmpfs: mounted
[    2.738534] Freeing init memory: 164K
[    2.743975] mmc1: queuing unknown CIS tuple 0x1a (5 bytes)
[    2.756629] mmc1: queuing unknown CIS tuple 0x1b (8 bytes)
[    2.774348] mmc1: queuing unknown CIS tuple 0x80 (1 bytes)
[    2.780786] mmc1: queuing unknown CIS tuple 0x81 (1 bytes)
[    2.787105] mmc1: queuing unknown CIS tuple 0x82 (1 bytes)
[    2.793558] mmc1: new high speed SDIO card at address 0001
[    3.219068] *******************sdio init ok*******************
[    3.267767] *******************Try sdio*******************
[    3.278808] *******************Try sd *******************
[    3.313775] mmc0: new SDHC card at address 0001
[    3.320736] mmcblk0: mmc0:0001 SD8GB 7.28 GiB 
[    3.331739]  mmcblk0: p1
[    3.338853] mmcblk mmc0:0001: Card claimed for testing.
[    3.344833] mmc0:0001: SD8GB 7.28 GiB 
[    3.349303] *******************sd init ok*******************
[    3.435226] EXT4-fs (nandd): re-mounted. Opts: data=ordered
Starting logging: OK
Starting mdev...
Initializing random number generator... done.
Starting sshd: OK
[    4.800818] [VFE]cci probe start cci_sel = 0!
[    4.805778] [VFE]cci probe end cci_sel = 0!
[    4.831034] [VFE]cci_init end
[    5.124288] [VFE]Welcome to Video Front End driver
[    5.141378] [VFE]pdev->id = 0
[    5.144722] [VFE]dev->mipi_sel = 0
[    5.148637] [VFE]dev->vip_sel = 0
[    5.152422] [VFE]dev->isp_sel = 0
[    5.176353] [VFE_WARN]vfe vpu clock is null
[    5.198079] [VFE]vfe_init end
[    5.201960] [VFE]probe_work_handle start!
[    5.206475] [VFE]..........................vfe clk open!.......................
[    5.255617] [VFE]v4l2 subdev register input_num = 0
[    5.261185] [VFE]vfe sensor detect start! input_num = 0
[    5.267138] [VFE]Find sensor name is "ov2710_mipi", i2c address is 6c, type is "RAW" !
[    5.276049] [VFE]Sub device register "ov2710_mipi" i2c_addr = 0x6c start!
[    5.283819] [VFE]v4l2_device_register_subdev return 0
[    5.289483] [VFE]registered sensor subdev is OK!
[    5.294679] [VFE]Check sensor!
[    5.298103] [VFE]Sub device register "ov2710_mipi" is OK!
[    5.307469] [VFE]Check open /system/etc/hawkview/ov2710_mipi/isp_test_param.ini failed!
[    5.307497] Match isp cfg  start!
[    5.320434] [VFE]Match isp cfg ok
[    5.340554] [VFE]V4L2 device registered as video0
[    5.356367] [VFE]..........................vfe clk close!.......................
[    5.380331] [VFE]probe_work_handle end!
========= Run hwtest =========[    5.632426] [VFE]vfe_open

LCD : Yes
ACM : No
NET : No[    5.636619] [VFE]..........................vfe clk open!.......................



fb res 320x240 virtual 320x[    5.650174] [VFE]vfe_open ok
480, line_len 1280, bpp 32
ptr [    5.654213] [VFE]Set vfe core clk = 216000000, after Set vfe core clk = 180000000 
= b6b1e000, bgptr = b6ad2008
[    5.700490] [VFE]mclk on
[    5.729117] [VFE]V4L2_MBUS_CSI2,1 lane,bus1 channel,rx 1 channel
[    5.803951] [VFE]width_input = 1440, height_input = 1080, width = 640, height = 480
[    5.812658] [VFE]dev->buf_byte_size = 462848, double_ch_flag = 0
[    5.884709] [VFE]buffer_setup, buffer count=4, size=466944
****************************************************
*                                                  *
*             Rainbow Pi Allwinner V3S             *
*                                                  *
****************************************************

Welcome to Rainbow-Pi
Rainbow-Pi login: root
# ./ wifiap.sh start
-sh: ./: Permission denied
# 
# ./wifiap.sh start
[   37.696806] ADDRCONF(NETDEV_UP): wlan0: link is not ready
# 
# random: Trying to read entropy from /dev/random
Configuration file: /etc/hostapd.conf
ctrl_interface_group=0
nl80211: Could not add multicast membership for vendor events: -2 (No such file or directory)
nl80211: Supported cipher 00-0f-ac:1
nl80211: Supported cipher 00-0f-ac:5
nl80211: Supported cipher 00-0f-ac:2
nl80211: Supported cipher 00-0f-ac:4
nl80211: Using driver-based off-channel TX
nl80211: interface wlan0 in phy phy0
nl80211: Set mode ifind[   38.302326] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
ex 4 iftype 3 (AP)
nl80211: Setup AP(wlan0) - device_ap_sme=0 use_monitor=0
nl80211: Subscribe to mgmt frames with AP handle 0x1ce24f8
nl80211: Register frame type=0xb0 (WLAN_FC_STYPE_AUTH) nl_handle=0x1ce24f8 match=
nl80211: Register frame type=0x0 (WLAN_FC_STYPE_ASSOC_REQ) nl_handle=0x1ce24f8 match=
nl80211: Register frame type=0x20 (WLAN_FC_STYPE_REASSOC_REQ) nl_handle=0x1ce24f8 match=
nl80211: Register frame type=0xa0 (WLAN_FC_STYPE_DISASSOC) nl_handle=0x1ce24f8 match=
nl80211: Register frame type=0xc0 (WLAN_FC_STYPE_DEAUTH) nl_handle=0x1ce24f8 match=
nl80211: Register frame type=0x40 (WLAN_FC_STYPE_PROBE_REQ) nl_handle=0x1ce24f8 match=
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x1ce24f8 match=04
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x1ce24f8 match=0501
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x1ce24f8 match=0504
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x1ce24f8 match=06
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x1ce24f8 match=08
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x1ce24f8 match=09
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x1ce24f8 match=0a
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x1ce24f8 match=11
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x1ce24f8 match=7f
rfkill: Cannot open RFKILL control device
nl80211: RFKILL status not available
nl80211: Could not re-add multicast membership for vendor events: -2 (No such file or directory)
nl80211: Add own interface ifindex 4 (ifidx_reason -1)
nl80211: if_indices[16]: 4(-1)
phy: phy0
BSS count 1, BSSID mask 00:00:00:00:00:00 (0 bits)
nl80211: Regulatory information - country=00
nl80211: 2402-2472 @ 40 MHz 20 mBm
nl80211: 2457-2482 @ 40 MHz 20 mBm (no IR)
nl80211: 2474-2494 @ 20 MHz 20 mBm (no OFDM) (no IR)
nl80211: 5170-5250 @ 40 MHz 20 mBm (no IR)
nl80211: 5735-5835 @ 40 MHz 20 mBm (no IR)
nl80211: Added 802.11b mode based on 802.11g information
Completing interface initialization
Mode: IEEE 802.11g  Channel: 1  Frequency: 2412 MHz
DFS 0 channels required radar detection
nl80211: Set freq 2412 (ht_enabled=0, vht_enabled=0, bandwidth=20 MHz, cf1=2412 MHz, cf2=0 MHz)
  * freq=2412
  * vht_enabled=0
  * ht_enabled=0
  * channel_type=0
RATE[0] rate=10 flags=0x1
RATE[1] rate=20 flags=0x1
RATE[2] rate=55 flags=0x1
RATE[3] rate=110 flags=0x1
RATE[4] rate=60 flags=0x0
RATE[5] rate=90 flags=0x0
RATE[6] rate=120 flags=0x0
RATE[7] rate=180 flags=0x0
RATE[8] rate=240 flags=0x0
RATE[9] rate=360 flags=0x0
RATE[10] rate=480 flags=0x0
RATE[11] rate=540 flags=0x0
hostapd_setup_bss(hapd=0x1ce0e40 (wlan0), first=1)
wlan0: Flushing old station entries
nl80211: flush -> DEL_STATION wlan0 (all)
wlan0: Deauthenticate all stations
nl80211: send_mlme - da= ff:ff:ff:ff:ff:ff noack=0 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0xc0 (WLAN_FC_STYPE_DEAUTH) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=0 addr=(nil) key_idx=0 set_tx=0 seq_len=0 key_len=0
wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=0 addr=(nil) key_idx=1 set_tx=0 seq_len=0 key_len=0
wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=0 addr=(nil) key_idx=2 set_tx=0 seq_len=0 key_len=0
wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=0 addr=(nil) key_idx=3 set_tx=0 seq_len=0 key_len=0
Using interface wlan0 with hwaddr 68:c6:3a:00:f1:02 and ssid "RainbowPi-AP"
Deriving WPA PSK based on passphrase
SSID - hexdump_ascii(len=12):
     52 61 69 6e 62 6f 77 50 69 2d 41 50               RainbowPi-AP    
PSK (ASCII passphrase) - hexdump_ascii(len=9): [REMOVED]
PSK (from passphrase) - hexdump(len=32): [REMOVED]
random: Got 20/20 bytes from /dev/random
GMK - hexdump(len=32): [REMOVED]
Key Counter - hexdump(len=32): [REMOVED]
WPA: Delay group state machine start until Beacon frames have been configured
nl80211: Set beacon (beacon_set=0)
nl80211: Beacon head - hexdump(len=63): 80 00 00 00 ff ff ff ff ff ff 68 c6 3a 00 f1 02 68 c6 3a 00 f1 02 00 00 00 00 00 00 00 00 00 00 64 00 11 04 00 0c 52 61 69 6e 62 6f 77 50 69 2d 41 50 01 08 82 84 8b 96 0c 12 18 24 03 01 01
nl80211: Beacon tail - hexdump(len=59): 2a 01 04 32 04 30 48 60 6c dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00
nl80211: ifindex=4
nl80211: beacon_int=100
nl80211: dtim_period=2
nl80211: ssid - hexdump_ascii(len=12):
     52 61 69 6e 62 6f 77 50 69 2d 41 50               RainbowPi-AP    
  * beacon_int=100
  * dtim_period=2
nl80211: hidden SSID not in use
nl80211: privacy=1
nl80211: auth_algs=0x3
nl80211: wpa_version=0x1
nl80211: key_mgmt_suites=0x2
nl80211: pairwise_ciphers=0x8
nl80211: group_cipher=0x8
WPA: Start group state machine to set initial keys
WPA: group state machine entering state GTK_INIT (VLAN-ID 0)
GTK - hexdump(len=32): [REMOVED]
WPA: group state machine entering state SETKEYSDONE (VLAN-ID 0)
wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=2 addr=0xc55c8 key_idx=1 set_tx=1 seq_len=0 key_len=32
nl80211: KEY_DATA - hexdump(len=32): [REMOVED]
   broadcast key
nl80211: Set wlan0 operstate 0->1 (UP)
netlink: Operstate: ifindex=4 linkmode=-1 (no change), operstate=6 (IF_OPER_UP)
wlan0: interface state UNINITIALIZED->ENABLED
wlan0: AP-ENABLED 
wlan0: Setup of interface done.
ctrl_iface not configured!
RTM_NEWLINK: ifi_index=4 ifname=wlan0 operstate=6 linkmode=0 ifi_family=0 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP])
nl80211: Drv Event 60 (NL80211_CMD_FRAME_TX_STATUS) received for wlan0
nl80211: Frame TX status event
wlan0: Event TX_STATUS (17) received
mgmt::deauth cb
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=84:a1:34:57:58:fd bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-47 fc=0x40 seq_ctrl=0xc480 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=113
nl80211: send_mlme - da= 84:a1:34:57:58:fd noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=84:a1:34:57:58:fd bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-46 fc=0x40 seq_ctrl=0xc490 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=113
nl80211: send_mlme - da= 84:a1:34:57:58:fd noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=84:a1:34:57:58:fd bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-49 fc=0x40 seq_ctrl=0xc4a0 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=113
Ignore Probe Request due to DS Params mismatch: chan=1 != ds.chan=2
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=84:a1:34:57:58:fd bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-49 fc=0x40 seq_ctrl=0xc4b0 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=113
Ignore Probe Request due to DS Params mismatch: chan=1 != ds.chan=2
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=00:03:ac:1f:8c:78 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-82 fc=0x40 seq_ctrl=0x7080 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=224
nl80211: send_mlme - da= 00:03:ac:1f:8c:78 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=00:03:ac:1f:8c:78 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-83 fc=0x40 seq_ctrl=0x7340 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=224
nl80211: send_mlme - da= 00:03:ac:1f:8c:78 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=00:03:ac:1f:8c:78 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-84 fc=0x40 seq_ctrl=0x7350 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=224
nl80211: send_mlme - da= 00:03:ac:1f:8c:78 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=04:56:04:a7:45:d1 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-82 fc=0x40 seq_ctrl=0x7840 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=48
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=04:56:04:a7:45:d1 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-82 fc=0x40 seq_ctrl=0x7850 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=42
nl80211: send_mlme - da= 04:56:04:a7:45:d1 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=04:56:04:a7:45:d1 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-85 fc=0x40 seq_ctrl=0x7870 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=42
nl80211: send_mlme - da= 04:56:04:a7:45:d1 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=da:a1:19:02:0f:8c bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-65 fc=0x40 seq_ctrl=0x2200 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=42
nl80211: send_mlme - da= da:a1:19:02:0f:8c noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=da:a1:19:03:fd:b1 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-65 fc=0x40 seq_ctrl=0x2210 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=42
nl80211: send_mlme - da= da:a1:19:03:fd:b1 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=00:03:ac:1f:8c:78 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-82 fc=0x40 seq_ctrl=0x7600 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=224
nl80211: send_mlme - da= 00:03:ac:1f:8c:78 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=84:a1:34:57:58:fd bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-48 fc=0x40 seq_ctrl=0xc8e0 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=113
nl80211: send_mlme - da= 84:a1:34:57:58:fd noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=84:a1:34:57:58:fd bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-47 fc=0x40 seq_ctrl=0xc8f0 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=113
nl80211: send_mlme - da= 84:a1:34:57:58:fd noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=84:a1:34:57:58:fd bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-50 fc=0x40 seq_ctrl=0xc900 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=113
Ignore Probe Request due to DS Params mismatch: chan=1 != ds.chan=2
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=84:a1:34:57:58:fd bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-49 fc=0x40 seq_ctrl=0xc910 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=113
Ignore Probe Request due to DS Params mismatch: chan=1 != ds.chan=2
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=00:03:ac:1f:8c:78 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-87 fc=0x40 seq_ctrl=0x78d0 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=224
nl80211: send_mlme - da= 00:03:ac:1f:8c:78 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=00:03:ac:1f:8c:78 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-86 fc=0x40 seq_ctrl=0x7b90 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=224
nl80211: send_mlme - da= 00:03:ac:1f:8c:78 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=da:a1:19:be:11:c5 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-66 fc=0x40 seq_ctrl=0x2360 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=42
nl80211: send_mlme - da= da:a1:19:be:11:c5 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=da:a1:19:d6:d0:84 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-64 fc=0x40 seq_ctrl=0x2370 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=42
nl80211: send_mlme - da= da:a1:19:d6:d0:84 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=c4:86:e9:ef:c7:8c bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-89 fc=0x40 seq_ctrl=0x6560 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=65
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=84:a1:34:57:58:fd bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-48 fc=0x40 seq_ctrl=0xccd0 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=113
nl80211: send_mlme - da= 84:a1:34:57:58:fd noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=84:a1:34:57:58:fd bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-48 fc=0x40 seq_ctrl=0xcce0 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=113
nl80211: send_mlme - da= 84:a1:34:57:58:fd noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=84:a1:34:57:58:fd bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-50 fc=0x40 seq_ctrl=0xccf0 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=113
Ignore Probe Request due to DS Params mismatch: chan=1 != ds.chan=2
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=84:a1:34:57:58:fd bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-50 fc=0x40 seq_ctrl=0xcd00 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=113
Ignore Probe Request due to DS Params mismatch: chan=1 != ds.chan=2
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=00:03:ac:1f:8c:78 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-84 fc=0x40 seq_ctrl=0x7e40 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=224
nl80211: send_mlme - da= 00:03:ac:1f:8c:78 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=00:03:ac:1f:8c:78 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-86 fc=0x40 seq_ctrl=0x8100 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=224
nl80211: send_mlme - da= 00:03:ac:1f:8c:78 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: Drop oldest pending send action cookie 0xc17fd9c0
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=00:03:ac:1f:8c:78 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-85 fc=0x40 seq_ctrl=0x8110 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=224
nl80211: send_mlme - da= 00:03:ac:1f:8c:78 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: Drop oldest pending send action cookie 0x0
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=4c:18:9a:7f:b6:31 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-75 fc=0x40 seq_ctrl=0x190 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=46
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=4c:18:9a:7f:b6:31 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-75 fc=0x40 seq_ctrl=0x1a0 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=42
nl80211: send_mlme - da= 4c:18:9a:7f:b6:31 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: Drop oldest pending send action cookie 0x0
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=4c:18:9a:7f:b6:31 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-77 fc=0x40 seq_ctrl=0x570 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=42
nl80211: send_mlme - da= 4c:18:9a:7f:b6:31 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: Drop oldest pending send action cookie 0x0
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=4c:18:9a:7f:b6:31 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-76 fc=0x40 seq_ctrl=0x580 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=42
nl80211: send_mlme - da= 4c:18:9a:7f:b6:31 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: Drop oldest pending send action cookie 0x0
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=4c:18:9a:7f:b6:31 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-77 fc=0x40 seq_ctrl=0x590 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=42
nl80211: send_mlme - da= 4c:18:9a:7f:b6:31 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: Drop oldest pending send action cookie 0x0
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=00:03:ac:1f:8c:78 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-85 fc=0x40 seq_ctrl=0x83c0 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=224
nl80211: send_mlme - da= 00:03:ac:1f:8c:78 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: Drop oldest pending send action cookie 0x0
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=00:03:ac:1f:8c:78 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-83 fc=0x40 seq_ctrl=0x83d0 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=224
nl80211: send_mlme - da= 00:03:ac:1f:8c:78 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: Drop oldest pending send action cookie 0x0
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=04:56:04:a7:45:d1 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-82 fc=0x40 seq_ctrl=0x7e40 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=55
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=04:56:04:a7:45:d1 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-84 fc=0x40 seq_ctrl=0x7e50 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=42
nl80211: send_mlme - da= 04:56:04:a7:45:d1 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: Drop oldest pending send action cookie 0x0
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=c4:86:e9:ef:c7:8c bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-86 fc=0x40 seq_ctrl=0x6aa0 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=65
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=c4:86:e9:ef:c7:8c bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-86 fc=0x40 seq_ctrl=0x6ab0 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=42
nl80211: send_mlme - da= c4:86:e9:ef:c7:8c noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: Drop oldest pending send action cookie 0x0
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=84:a1:34:57:58:fd bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-48 fc=0x40 seq_ctrl=0xd140 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=125
nl80211: send_mlme - da= 84:a1:34:57:58:fd noack=0 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: Drop oldest pending send action cookie 0x0
nl80211: Drv Event 60 (NL80211_CMD_FRAME_TX_STATUS) received for wlan0
nl80211: Frame TX status event
wlan0: Event TX_STATUS (17) received
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=da:a1:19:f6:b9:6d bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-63 fc=0x40 seq_ctrl=0x24c0 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=42
nl80211: send_mlme - da= da:a1:19:f6:b9:6d noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: Drop oldest pending send action cookie 0x0
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=68:c6:3a:00:f1:02 sa=84:a1:34:57:58:fd bssid=68:c6:3a:00:f1:02 freq=2412 ssi_signal=-49 fc=0xb0 seq_ctrl=0xd150 stype=11 (WLAN_FC_STYPE_AUTH) len=41
wlan0: Event RX_MGMT (19) received
mgmt::auth
authentication: STA=84:a1:34:57:58:fd auth_alg=0 auth_transaction=1 status_code=0 wep=0 seq_ctrl=0xd150
  New STA
ap_sta_add: register ap_handle_timer timeout for 84:a1:34:57:58:fd (300 seconds - ap_max_inactivity)
wlan0: STA 84:a1:34:57:58:fd IEEE 802.11: authentication OK (open system)
wlan0: STA 84:a1:34:57:58:fd MLME: MLME-AUTHENTICATE.indication(84:a1:34:57:58:fd, OPEN_SYSTEM)
wlan0: STA 84:a1:34:57:58:fd MLME: MLME-DELETEKEYS.request(84:a1:34:57:58:fd)
authentication reply: STA=84:a1:34:57:58:fd auth_alg=0 auth_transaction=2 resp=0 (IE len=0)
nl80211: send_mlme - da= 84:a1:34:57:58:fd noack=0 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0xb0 (WLAN_FC_STYPE_AUTH) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: Drop oldest pending send action cookie 0x0
nl80211: Drv Event 60 (NL80211_CMD_FRAME_TX_STATUS) received for wlan0
nl80211: Frame TX status event
wlan0: Event TX_STATUS (17) received
mgmt::auth cb
wlan0: STA 84:a1:34:57:58:fd IEEE 802.11: authenticated
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=da:a1:19:c8:8b:3f bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-66 fc=0x40 seq_ctrl=0x24d0 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=42
nl80211: send_mlme - da= da:a1:19:c8:8b:3f noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: Drop oldest pending send action cookie 0x0
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=68:c6:3a:00:f1:02 sa=84:a1:34:57:58:fd bssid=68:c6:3a:00:f1:02 freq=2412 ssi_signal=-48 fc=0x0 seq_ctrl=0xd160 stype=0 (WLAN_FC_STYPE_ASSOC_REQ) len=112
wlan0: Event RX_MGMT (19) received
mgmt::assoc_req
association request: STA=84:a1:34:57:58:fd capab_info=0x431 listen_interval=20 seq_ctrl=0xd160
Validating WMM IE: OUI 00:50:f2  OUI type 2  OUI sub-type 0  version 1  QoS info 0x0
  new AID 1
wlan0: STA 84:a1:34:57:58:fd IEEE 802.11: association OK (aid 1)
nl80211: sta_remove -> DEL_STATION wlan0 84:a1:34:57:58:fd --> -2 (No such file or directory)
wlan0: STA 84:a1:34:57:58:fd WPA: event 7 notification
nl80211: Add STA 84:a1:34:57:58:fd
  * supported rates - hexdump(len=12): 82 84 8b 96 24 30 48 6c 0c 12 18 60
  * capability=0x431
  * aid=1
  * listen_interval=20
nl80211: Ignore ASSOC/AUTH flags since driver doesn't support full AP client state
  * flags set=0xac mask=0xc
  * qosinfo=0x0
nl80211: send_mlme - da= 84:a1:34:57:58:fd noack=0 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x10 (WLAN_FC_STYPE_ASSOC_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: Drop oldest pending send action cookie 0x0
nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan0
nl80211: New station 84:a1:34:57:58:fd
nl80211: Drv Event 60 (NL80211_CMD_FRAME_TX_STATUS) received for wlan0
nl80211: Frame TX status event
wlan0: Event TX_STATUS (17) received
mgmt::assoc_resp cb
wlan0: STA 84:a1:34:57:58:fd IEEE 802.11: associated (aid 1)
wlan0: STA 84:a1:34:57:58:fd MLME: MLME-ASSOCIATE.indication(84:a1:34:57:58:fd)
wlan0: STA 84:a1:34:57:58:fd MLME: MLME-DELETEKEYS.request(84:a1:34:57:58:fd)
wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=0 addr=0x1ce6098 key_idx=0 set_tx=1 seq_len=0 key_len=0
   addr=84:a1:34:57:58:fd
nl80211: Set STA flags - ifname=wlan0 addr=84:a1:34:57:58:fd total_flags=0x66 flags_or=0x6 flags_and=0xfffffff7 authorized=0
wlan0: STA 84:a1:34:57:58:fd WPA: event 1 notification
wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=0 addr=0x1ce6098 key_idx=0 set_tx=1 seq_len=0 key_len=0
   addr=84:a1:34:57:58:fd
IEEE 802.1X: Ignore STA - 802.1X not enabled or forced for WPS
wlan0: STA 84:a1:34:57:58:fd WPA: start authentication
WPA: 84:a1:34:57:58:fd WPA_PTK entering state INITIALIZE
wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=0 addr=0x1ce6098 key_idx=0 set_tx=1 seq_len=0 key_len=0
   addr=84:a1:34:57:58:fd
nl80211: Set STA flags - ifname=wlan0 addr=84:a1:34:57:58:fd total_flags=0x66 flags_or=0x0 flags_and=0xfffffffe authorized=0
wlan0: STA 84:a1:34:57:58:fd IEEE 802.1X: unauthorizing port
WPA: 84:a1:34:57:58:fd WPA_PTK_GROUP entering state IDLE
WPA: 84:a1:34:57:58:fd WPA_PTK entering state AUTHENTICATION
WPA: 84:a1:34:57:58:fd WPA_PTK entering state AUTHENTICATION2
WPA: Re-initialize GMK/Counter on first station
GMK - hexdump(len=32): [REMOVED]
Key Counter - hexdump(len=32): [REMOVED]
GTK - hexdump(len=32): [REMOVED]
wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=2 addr=0xc55c8 key_idx=1 set_tx=1 seq_len=0 key_len=32
nl80211: KEY_DATA - hexdump(len=32): [REMOVED]
   broadcast key
WPA: Assign ANonce - hexdump(len=32): 56 6a 5a 53 47 93 53 c5 5b 40 56 9c 25 48 73 dd 08 93 48 5b 95 98 da 19 16 ad b8 1a 73 03 ba 40
WPA: 84:a1:34:57:58:fd WPA_PTK entering state INITPSK
Searching a PSK for 84:a1:34:57:58:fd prev_psk=(nil)
Searching a PSK for 84:a1:34:57:58:fd prev_psk=(nil)
WPA: 84:a1:34:57:58:fd WPA_PTK entering state PTKSTART
wlan0: STA 84:a1:34:57:58:fd WPA: sending 1/4 msg of 4-Way Handshake
WPA: Send EAPOL(version=1 secure=0 mic=0 ack=1 install=0 pairwise=1 kde_len=0 keyidx=0 encr=0)
WPA: Replay Counter - hexdump(len=8): 00 00 00 00 00 00 00 01
WPA: Use EAPOL-Key timeout of 100 ms (retry counter 1)
wlan0: hostapd_new_assoc_sta: reschedule ap_handle_timer timeout for 84:a1:34:57:58:fd (300 seconds - ap_max_inactivity)
wlan0: Event EAPOL_TX_STATUS (38) received
IEEE 802.1X: 84:a1:34:57:58:fd TX status - version=2 type=3 length=95 - ack=1
WPA: EAPOL-Key TX status for STA 84:a1:34:57:58:fd ack=1
WPA: Increase initial EAPOL-Key 1/4 timeout by 1000 ms because of acknowledged frame
wlan0: Event EAPOL_RX (24) received
IEEE 802.1X: 125 bytes from 84:a1:34:57:58:fd
   IEEE 802.1X: version=1 type=3 length=121
WPA: Received EAPOL-Key from 84:a1:34:57:58:fd key_info=0x109 type=254 key_data_length=26
WPA: Received Key Nonce - hexdump(len=32): 73 bf 31 03 88 1a df 97 03 40 f2 fc 97 e1 a0 7a 03 d7 0f 5f 85 02 14 0b 5f a4 81 6e f4 8c 2d cd
WPA: Received Replay Counter - hexdump(len=8): 00 00 00 00 00 00 00 01
wlan0: STA 84:a1:34:57:58:fd WPA: received EAPOL-Key frame (2/4 Pairwise)
WPA: 84:a1:34:57:58:fd WPA_PTK entering state PTKCALCNEGOTIATING
Searching a PSK for 84:a1:34:57:58:fd prev_psk=(nil)
WPA: PTK derivation - A1=68:c6:3a:00:f1:02 A2=84:a1:34:57:58:fd
WPA: Nonce1 - hexdump(len=32): 56 6a 5a 53 47 93 53 c5 5b 40 56 9c 25 48 73 dd 08 93 48 5b 95 98 da 19 16 ad b8 1a 73 03 ba 40
WPA: Nonce2 - hexdump(len=32): 73 bf 31 03 88 1a df 97 03 40 f2 fc 97 e1 a0 7a 03 d7 0f 5f 85 02 14 0b 5f a4 81 6e f4 8c 2d cd
WPA: PMK - hexdump(len=32): [REMOVED]
WPA: PTK - hexdump(len=64): [REMOVED]
WPA: KCK - hexdump(len=16): [REMOVED]
WPA: KEK - hexdump(len=16): [REMOVED]
WPA: TK - hexdump(len=32): [REMOVED]
Searching a PSK for 84:a1:34:57:58:fd prev_psk=0x1ce1e00
wlan0: STA 84:a1:34:57:58:fd WPA: invalid MIC in msg 2/4 of 4-Way Handshake
wlan0: AP-STA-POSSIBLE-PSK-MISMATCH 84:a1:34:57:58:fd
wlan0: STA 84:a1:34:57:58:fd WPA: EAPOL-Key timeout
WPA: 84:a1:34:57:58:fd WPA_PTK entering state PTKSTART
wlan0: STA 84:a1:34:57:58:fd WPA: sending 1/4 msg of 4-Way Handshake
WPA: Send EAPOL(version=1 secure=0 mic=0 ack=1 install=0 pairwise=1 kde_len=0 keyidx=0 encr=0)
WPA: Replay Counter - hexdump(len=8): 00 00 00 00 00 00 00 02
WPA: Use EAPOL-Key timeout of 1000 ms (retry counter 2)
wlan0: Event EAPOL_TX_STATUS (38) received
IEEE 802.1X: 84:a1:34:57:58:fd TX status - version=2 type=3 length=95 - ack=1
WPA: EAPOL-Key TX status for STA 84:a1:34:57:58:fd ack=1
wlan0: Event EAPOL_RX (24) received
IEEE 802.1X: 125 bytes from 84:a1:34:57:58:fd
   IEEE 802.1X: version=1 type=3 length=121
WPA: Received EAPOL-Key from 84:a1:34:57:58:fd key_info=0x109 type=254 key_data_length=26
WPA: Received Key Nonce - hexdump(len=32): 9d 08 17 ba 5e ea 08 a8 22 a1 15 0f ab c3 a1 e0 87 82 c3 ef 0f bd 82 14 f7 ad bd 6e f5 bb 52 20
WPA: Received Replay Counter - hexdump(len=8): 00 00 00 00 00 00 00 02
wlan0: STA 84:a1:34:57:58:fd WPA: received EAPOL-Key frame (2/4 Pairwise)
WPA: 84:a1:34:57:58:fd WPA_PTK entering state PTKCALCNEGOTIATING
Searching a PSK for 84:a1:34:57:58:fd prev_psk=(nil)
WPA: PTK derivation - A1=68:c6:3a:00:f1:02 A2=84:a1:34:57:58:fd
WPA: Nonce1 - hexdump(len=32): 56 6a 5a 53 47 93 53 c5 5b 40 56 9c 25 48 73 dd 08 93 48 5b 95 98 da 19 16 ad b8 1a 73 03 ba 40
WPA: Nonce2 - hexdump(len=32): 9d 08 17 ba 5e ea 08 a8 22 a1 15 0f ab c3 a1 e0 87 82 c3 ef 0f bd 82 14 f7 ad bd 6e f5 bb 52 20
WPA: PMK - hexdump(len=32): [REMOVED]
WPA: PTK - hexdump(len=64): [REMOVED]
WPA: KCK - hexdump(len=16): [REMOVED]
WPA: KEK - hexdump(len=16): [REMOVED]
WPA: TK - hexdump(len=32): [REMOVED]
Searching a PSK for 84:a1:34:57:58:fd prev_psk=0x1ce1e00
wlan0: STA 84:a1:34:57:58:fd WPA: invalid MIC in msg 2/4 of 4-Way Handshake
wlan0: AP-STA-POSSIBLE-PSK-MISMATCH 84:a1:34:57:58:fd
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=00:03:ac:1f:8c:78 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-86 fc=0x40 seq_ctrl=0x8680 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=224
nl80211: send_mlme - da= 00:03:ac:1f:8c:78 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: Drop oldest pending send action cookie 0x0
wlan0: STA 84:a1:34:57:58:fd WPA: EAPOL-Key timeout
WPA: 84:a1:34:57:58:fd WPA_PTK entering state PTKSTART
wlan0: STA 84:a1:34:57:58:fd WPA: sending 1/4 msg of 4-Way Handshake
WPA: Send EAPOL(version=1 secure=0 mic=0 ack=1 install=0 pairwise=1 kde_len=0 keyidx=0 encr=0)
WPA: Replay Counter - hexdump(len=8): 00 00 00 00 00 00 00 03
WPA: Use EAPOL-Key timeout of 1000 ms (retry counter 3)
wlan0: Event EAPOL_TX_STATUS (38) received
IEEE 802.1X: 84:a1:34:57:58:fd TX status - version=2 type=3 length=95 - ack=1
WPA: EAPOL-Key TX status for STA 84:a1:34:57:58:fd ack=1
wlan0: Event EAPOL_RX (24) received
IEEE 802.1X: 125 bytes from 84:a1:34:57:58:fd
   IEEE 802.1X: version=1 type=3 length=121
WPA: Received EAPOL-Key from 84:a1:34:57:58:fd key_info=0x109 type=254 key_data_length=26
WPA: Received Key Nonce - hexdump(len=32): d8 06 9f e6 ff 34 fc d3 19 61 34 f1 d3 c7 61 c4 78 ec 38 9d e2 77 89 dc d8 8f 62 3d 88 f7 dc 23
WPA: Received Replay Counter - hexdump(len=8): 00 00 00 00 00 00 00 03
wlan0: STA 84:a1:34:57:58:fd WPA: received EAPOL-Key frame (2/4 Pairwise)
WPA: 84:a1:34:57:58:fd WPA_PTK entering state PTKCALCNEGOTIATING
Searching a PSK for 84:a1:34:57:58:fd prev_psk=(nil)
WPA: PTK derivation - A1=68:c6:3a:00:f1:02 A2=84:a1:34:57:58:fd
WPA: Nonce1 - hexdump(len=32): 56 6a 5a 53 47 93 53 c5 5b 40 56 9c 25 48 73 dd 08 93 48 5b 95 98 da 19 16 ad b8 1a 73 03 ba 40
WPA: Nonce2 - hexdump(len=32): d8 06 9f e6 ff 34 fc d3 19 61 34 f1 d3 c7 61 c4 78 ec 38 9d e2 77 89 dc d8 8f 62 3d 88 f7 dc 23
WPA: PMK - hexdump(len=32): [REMOVED]
WPA: PTK - hexdump(len=64): [REMOVED]
WPA: KCK - hexdump(len=16): [REMOVED]
WPA: KEK - hexdump(len=16): [REMOVED]
WPA: TK - hexdump(len=32): [REMOVED]
Searching a PSK for 84:a1:34:57:58:fd prev_psk=0x1ce1e00
wlan0: STA 84:a1:34:57:58:fd WPA: invalid MIC in msg 2/4 of 4-Way Handshake
wlan0: AP-STA-POSSIBLE-PSK-MISMATCH 84:a1:34:57:58:fd
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=04:56:04:a7:45:d1 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-83 fc=0x40 seq_ctrl=0x8280 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=45
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=04:56:04:a7:45:d1 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-82 fc=0x40 seq_ctrl=0x8290 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=42
nl80211: send_mlme - da= 04:56:04:a7:45:d1 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: Drop oldest pending send action cookie 0x0
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=04:56:04:a7:45:d1 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-81 fc=0x40 seq_ctrl=0x82b0 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=42
nl80211: send_mlme - da= 04:56:04:a7:45:d1 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: Drop oldest pending send action cookie 0x0
wlan0: STA 84:a1:34:57:58:fd WPA: EAPOL-Key timeout
WPA: 84:a1:34:57:58:fd WPA_PTK entering state PTKSTART
wlan0: STA 84:a1:34:57:58:fd WPA: sending 1/4 msg of 4-Way Handshake
WPA: Send EAPOL(version=1 secure=0 mic=0 ack=1 install=0 pairwise=1 kde_len=0 keyidx=0 encr=0)
WPA: Replay Counter - hexdump(len=8): 00 00 00 00 00 00 00 04
WPA: Use EAPOL-Key timeout of 1000 ms (retry counter 4)
wlan0: Event EAPOL_TX_STATUS (38) received
IEEE 802.1X: 84:a1:34:57:58:fd TX status - version=2 type=3 length=95 - ack=1
WPA: EAPOL-Key TX status for STA 84:a1:34:57:58:fd ack=1
wlan0: Event EAPOL_RX (24) received
IEEE 802.1X: 125 bytes from 84:a1:34:57:58:fd
   IEEE 802.1X: version=1 type=3 length=121
WPA: Received EAPOL-Key from 84:a1:34:57:58:fd key_info=0x109 type=254 key_data_length=26
WPA: Received Key Nonce - hexdump(len=32): b1 bf c6 fe 37 f5 20 2b 01 5c 05 73 2b 9c ae 72 73 90 31 bc 72 1a 37 94 43 58 0d 62 6b 13 53 b1
WPA: Received Replay Counter - hexdump(len=8): 00 00 00 00 00 00 00 04
wlan0: STA 84:a1:34:57:58:fd WPA: received EAPOL-Key frame (2/4 Pairwise)
WPA: 84:a1:34:57:58:fd WPA_PTK entering state PTKCALCNEGOTIATING
Searching a PSK for 84:a1:34:57:58:fd prev_psk=(nil)
WPA: PTK derivation - A1=68:c6:3a:00:f1:02 A2=84:a1:34:57:58:fd
WPA: Nonce1 - hexdump(len=32): 56 6a 5a 53 47 93 53 c5 5b 40 56 9c 25 48 73 dd 08 93 48 5b 95 98 da 19 16 ad b8 1a 73 03 ba 40
WPA: Nonce2 - hexdump(len=32): b1 bf c6 fe 37 f5 20 2b 01 5c 05 73 2b 9c ae 72 73 90 31 bc 72 1a 37 94 43 58 0d 62 6b 13 53 b1
WPA: PMK - hexdump(len=32): [REMOVED]
WPA: PTK - hexdump(len=64): [REMOVED]
WPA: KCK - hexdump(len=16): [REMOVED]
WPA: KEK - hexdump(len=16): [REMOVED]
WPA: TK - hexdump(len=32): [REMOVED]
Searching a PSK for 84:a1:34:57:58:fd prev_psk=0x1ce1e00
wlan0: STA 84:a1:34:57:58:fd WPA: invalid MIC in msg 2/4 of 4-Way Handshake
wlan0: AP-STA-POSSIBLE-PSK-MISMATCH 84:a1:34:57:58:fd
wlan0: STA 84:a1:34:57:58:fd WPA: EAPOL-Key timeout
WPA: 84:a1:34:57:58:fd WPA_PTK entering state PTKSTART
wlan0: STA 84:a1:34:57:58:fd WPA: PTKSTART: Retry limit 4 reached
WPA: 84:a1:34:57:58:fd WPA_PTK entering state DISCONNECT
wpa_sta_disconnect STA 84:a1:34:57:58:fd
hostapd_wpa_auth_disconnect: WPA authenticator requests disconnect: STA 84:a1:34:57:58:fd reason 2
wlan0: ap_sta_disconnect addr 84:a1:34:57:58:fd reason=2
nl80211: send_mlme - da= 84:a1:34:57:58:fd noack=0 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0xc0 (WLAN_FC_STYPE_DEAUTH) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: Drop oldest pending send action cookie 0x0
wlan0: STA 84:a1:34:57:58:fd WPA: event 3 notification
wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=0 addr=0x1ce6098 key_idx=0 set_tx=1 seq_len=0 key_len=0
   addr=84:a1:34:57:58:fd
wlan0: ap_sta_disconnect: reschedule ap_handle_timer timeout for 84:a1:34:57:58:fd (5 seconds - AP_MAX_INACTIVITY_AFTER_DEAUTH)
WPA: 84:a1:34:57:58:fd WPA_PTK entering state DISCONNECTED
WPA: 84:a1:34:57:58:fd WPA_PTK entering state INITIALIZE
wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=0 addr=0x1ce6098 key_idx=0 set_tx=1 seq_len=0 key_len=0
   addr=84:a1:34:57:58:fd
nl80211: Set STA flags - ifname=wlan0 addr=84:a1:34:57:58:fd total_flags=0x6 flags_or=0x0 flags_and=0xfffffffe authorized=0
wlan0: STA 84:a1:34:57:58:fd IEEE 802.1X: unauthorizing port
nl80211: Drv Event 60 (NL80211_CMD_FRAME_TX_STATUS) received for wlan0
nl80211: Frame TX status event
wlan0: Event TX_STATUS (17) received
mgmt::deauth cb
STA 84:a1:34:57:58:fd acknowledged deauth
wlan0: Deauthentication callback for STA 84:a1:34:57:58:fd
wlan0: Removing STA 84:a1:34:57:58:fd from kernel driver
nl80211: sta_remove -> DEL_STATION wlan0 84:a1:34:57:58:fd --> 0 (Success)
wlan0: STA 84:a1:34:57:58:fd MLME: MLME-DEAUTHENTICATE.indication(84:a1:34:57:58:fd, 2)
wlan0: STA 84:a1:34:57:58:fd MLME: MLME-DELETEKEYS.request(84:a1:34:57:58:fd)
wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=0 addr=0x1ce6098 key_idx=0 set_tx=1 seq_len=0 key_len=0
   addr=84:a1:34:57:58:fd
nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan0
nl80211: Delete station 84:a1:34:57:58:fd
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=00:03:ac:1f:8c:78 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-84 fc=0x40 seq_ctrl=0x8940 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=224
nl80211: send_mlme - da= 00:03:ac:1f:8c:78 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: Drop oldest pending send action cookie 0x0
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=f0:41:c8:75:b0:85 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-81 fc=0x40 seq_ctrl=0x2420 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=135
nl80211: send_mlme - da= f0:41:c8:75:b0:85 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: Drop oldest pending send action cookie 0x0
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=f0:41:c8:75:b0:85 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-83 fc=0x40 seq_ctrl=0x2440 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=135
nl80211: send_mlme - da= f0:41:c8:75:b0:85 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: Drop oldest pending send action cookie 0x0
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=84:a1:34:57:58:fd bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-50 fc=0x40 seq_ctrl=0xd2d0 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=117
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=84:a1:34:57:58:fd bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-50 fc=0x40 seq_ctrl=0xd2e0 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=117
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=84:a1:34:57:58:fd bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-52 fc=0x40 seq_ctrl=0xd2f0 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=117
Ignore Probe Request due to DS Params mismatch: chan=1 != ds.chan=2
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=84:a1:34:57:58:fd bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-51 fc=0x40 seq_ctrl=0xd300 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=117
Ignore Probe Request due to DS Params mismatch: chan=1 != ds.chan=2
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=84:a1:34:57:58:fd bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-49 fc=0x40 seq_ctrl=0xd680 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=113
nl80211: send_mlme - da= 84:a1:34:57:58:fd noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: Drop oldest pending send action cookie 0x0
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=84:a1:34:57:58:fd bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-48 fc=0x40 seq_ctrl=0xd690 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=113
nl80211: send_mlme - da= 84:a1:34:57:58:fd noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: Drop oldest pending send action cookie 0x0
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=84:a1:34:57:58:fd bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-52 fc=0x40 seq_ctrl=0xd6a0 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=113
Ignore Probe Request due to DS Params mismatch: chan=1 != ds.chan=2
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=84:a1:34:57:58:fd bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-52 fc=0x40 seq_ctrl=0xd6b0 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=113
Ignore Probe Request due to DS Params mismatch: chan=1 != ds.chan=2
wlan0: ap_handle_timer: 84:a1:34:57:58:fd flags=0x8280 timeout_next=3
wlan0: STA 84:a1:34:57:58:fd IEEE 802.11: deauthenticated due to local deauth request
nl80211: sta_remove -> DEL_STATION wlan0 84:a1:34:57:58:fd --> -2 (No such file or directory)
ap_free_sta: cancel ap_handle_timer for 84:a1:34:57:58:fd
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=00:03:ac:1f:8c:78 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-83 fc=0x40 seq_ctrl=0x8c00 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=224
nl80211: send_mlme - da= 00:03:ac:1f:8c:78 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: Drop oldest pending send action cookie 0x0
nl80211: BSS Event 59 (NL80211_CMD_FRAME) received for wlan0
nl80211: RX frame da=ff:ff:ff:ff:ff:ff sa=00:03:ac:1f:8c:78 bssid=ff:ff:ff:ff:ff:ff freq=2412 ssi_signal=-85 fc=0x40 seq_ctrl=0x8ec0 stype=4 (WLAN_FC_STYPE_PROBE_REQ) len=224
nl80211: send_mlme - da= 00:03:ac:1f:8c:78 noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 (WLAN_FC_STYPE_PROBE_RESP) nlmode=3
nl80211: send_mlme -> send_frame
nl80211: send_frame - Use bss->freq=2412
nl80211: send_frame -> send_frame_cmd
nl80211: Drop oldest pending send action cookie 0x0

这是Rainbow Pi的原始固件, 手机能搜索到Rainbow Pi-AP

start() {
    ifconfig wlan0 192.168.10.1 netmask 255.255.255.0 up
    hostapd -d /etc/hostapd.conf &
    udhcpd
}

#32 Re: 全志 SOC » ESP8089 AP模式 (固件在 43楼可以下载!!!) » 2019-01-22 16:16:38

谢谢楼主, 迟点我试一下你的源码和方法

#33 Re: 全志 SOC » ESP8089 AP模式 (固件在 43楼可以下载!!!) » 2019-01-22 15:31:30

[ 1067.284412] mmc0: card 0001 removed
[ 1067.339992] mmc0: queuing unknown CIS tuple 0x01 (3 bytes)
[ 1067.353024] mmc0: queuing unknown CIS tuple 0x1a (5 bytes)
[ 1067.362974] mmc0: queuing unknown CIS tuple 0x1b (8 bytes)
[ 1067.371380] mmc0: queuing unknown CIS tuple 0x80 (1 bytes)
[ 1067.378339] mmc0: queuing unknown CIS tuple 0x81 (1 bytes)
[ 1067.384089] mmc0: queuing unknown CIS tuple 0x82 (1 bytes)
[ 1067.389661] mmc0: new high speed SDIO card at address 0001

楼主, 我加载驱动时也有上面这个,另外还有下面这些:

[    5.414933] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 53,  RTO EBE !!
[    5.414981] [mmc]: found data error, need to send stop command !!
[    5.415010] [mmc]: *** sunxi_mci_send_manual_stop(L795): sdc 1 send stop command failed
[    5.666111] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 53,  RTO EBE !!
[    5.666159] [mmc]: found data error, need to send stop command !!
[    5.666188] [mmc]: *** sunxi_mci_send_manual_stop(L795): sdc 1 send stop command failed

楼主知道是怎么回事吗? 另外,想问一下,esp8089是 firmware 是如何加载的, 要将firmware 拷贝到lib/firmware目录?

#34 Re: 全志 SOC » 求助:S3的SDK, zmake all生成的img挂不了根文件系统( S3+SPI Nand 128MB ) » 2019-01-19 14:36:01

山无棱 说:
playflash 说:
真的是很烦 说:

看log, flash已经识别, 应该可以正常读操作了. 

do_mount做的事情很简单, 就是用支持的各个文件系统去试而已.

比较好奇, 为什么mount不成功为什么会跟那个选项有关 ?   百撕不得骑姐, 莫非读操作不成功?

是呀,都能正常启动到内核了, 我也是按你的方法, 没往cpu方面排查。initramfs 看似都正常,也没死机。
是读flash不成功, 读出来的是随机数,每次都不一样,不是所有的字节都能正常读出来。
后来了解, 内核启动后cpu,外设的频率重新设定。

也就是说启动 CONFIG_CPU_FREQ 改变了外设的频率, 可能导致spi nand读出了随机数?
而屏蔽了这个 CONFIG_CPU_FREQ, spi nand 就正常了?

驱动的具体细节, 还没研究。关了这项, 目前正常。

#35 Re: 全志 SOC » 求助:S3的SDK, zmake all生成的img挂不了根文件系统( S3+SPI Nand 128MB ) » 2019-01-19 13:56:42

真的是很烦 说:

看log, flash已经识别, 应该可以正常读操作了. 

do_mount做的事情很简单, 就是用支持的各个文件系统去试而已.

比较好奇, 为什么mount不成功为什么会跟那个选项有关 ?   百撕不得骑姐, 莫非读操作不成功?

是呀,都能正常启动到内核了, 我也是按你的方法, 没往cpu方面排查。initramfs 看似都正常,也没死机。
是读flash不成功, 读出来的是随机数,每次都不一样,不是所有的字节都能正常读出来。
后来了解, 内核启动后cpu,外设的频率重新设定。

#36 Re: 全志 SOC » 求助:S3的SDK, zmake all生成的img挂不了根文件系统( S3+SPI Nand 128MB ) » 2019-01-19 13:41:35

trigger 说:

@playflash 请问一下, AXP203 这种 PMIC 的 DCDC2, DCDC3 这两组的默认电压是 1.2V/3.3V,  还是0.7V/0.7V?

因为这个不适合我用, 没研究过, 你看一下pdf有没有说明。

#37 Re: 全志 SOC » 求助:S3的SDK, zmake all生成的img挂不了根文件系统( S3+SPI Nand 128MB ) » 2019-01-19 00:29:00

你说的没错。这个设置在linux 下, make menuconfig 可见。
你给我的S3 SDK 默认是勾选了这个。

在sys_config.fex中有相关设置
; LV1: core vdd is 1.50v if cpu frequency is (1296Mhz,  1536Mhz]
; LV2: core vdd is 1.34v if cpu frequency is (1200Mhz,  1296Mhz]
; LV3: core vdd is 1.32v if cpu frequency is (1008Mhz,  1200Mhz]
; LV4: core vdd is 1.20v if cpu frequency is (816Mhz,   1008Mhz]
; LV5: core vdd is 1.10v if cpu frequency is (648Mhz,    816Mhz]
; LV6: core vdd is 1.04v if cpu frequency is (0Mhz,      648Mhz]
; LV7: core vdd is 1.04v if cpu frequency is (0Mhz,      648Mhz]
; LV8: core vdd is 1.04v if cpu frequency is (0Mhz,      648Mhz]

这是个低级错误,没意识到这个与PMIC相关,绕了好多弯路,我移植了rainbowpi 的nand驱动,向sochip要了nand的新驱动,都能用,但是同样的问题。用过32M的nor, 同样的问题。 
如果你要驱动, Q传

#38 Re: 全志 SOC » 求助:S3的SDK, zmake all生成的img挂不了根文件系统( S3+SPI Nand 128MB ) » 2019-01-18 22:12:42

终于解决问题:
内核的的这一项没配置好,现在我直接关了这项。可能是我的板没用axp203的原因,但想不到会影响读nand芯片。
# CPU Frequency scaling
#
CONFIG_CPU_FREQ=y

#39 Re: 全志 SOC » 求助:S3的SDK, zmake all生成的img挂不了根文件系统( S3+SPI Nand 128MB ) » 2019-01-09 21:21:20

晕哥 说:

mkfs.ext4 用这个格式化呢?

谢谢晕哥, 我还没在SDK找着地方, 不知道分区和配置nand的脚本在哪
试试在这方面研究,感谢指点。

#40 Re: 全志 SOC » 求助:S3的SDK, zmake all生成的img挂不了根文件系统( S3+SPI Nand 128MB ) » 2019-01-09 20:36:08

/ # fdisk /dev/nandd
Device contains neither a valid DOS partition table, nor Sun, SGI, OSF or GPT disklabel
Building a new DOS disklabel. Changes will remain in memory only,
until you decide to write them. After that the previous content
won't be recoverable.


Command (m for help):

#41 Re: 全志 SOC » 求助:S3的SDK, zmake all生成的img挂不了根文件系统( S3+SPI Nand 128MB ) » 2019-01-09 20:30:27

晕哥, initramfs 启动了, fdisk 结果如下:

/ # fdisk -l

Disk /dev/nanda: 8 MB, 8388608 bytes
255 heads, 63 sectors/track, 1 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Disk /dev/nanda doesn't contain a valid partition table

Disk /dev/nandb: 0 MB, 524288 bytes
255 heads, 63 sectors/track, 0 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Disk /dev/nandb doesn't contain a valid partition table

Disk /dev/nandc: 16 MB, 16777216 bytes
255 heads, 63 sectors/track, 2 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Disk /dev/nandc doesn't contain a valid partition table

Disk /dev/nandd: 87 MB, 87031808 bytes
255 heads, 63 sectors/track, 10 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Disk /dev/nandd doesn't contain a valid partition table

#42 Re: 全志 SOC » 求助:S3的SDK, zmake all生成的img挂不了根文件系统( S3+SPI Nand 128MB ) » 2019-01-09 14:38:40

晕哥 说:

[    3.101033] List of all partitions:
[    3.105125] 5d00            8192 nanda  (driver?)
[    3.110601] 5d08             512 nandb  (driver?)
[    3.116123] 5d10           16384 nandc  (driver?)
[    3.121572] 5d18           84992 nandd  (driver?)
[    3.127003] No filesystem could mount root, tried:  ext2 ext3 ext4 cramfs squashfs vfat



貌似没有把根文件系统挂起来?
要不要试一试从 initramfs

先从 initramfs 进入 shell,
然后再手动挂载 /dev/nandd

多谢晕哥, 迟点试试initramfs

#43 Re: 全志 SOC » 求助:S3的SDK, zmake all生成的img挂不了根文件系统( S3+SPI Nand 128MB ) » 2019-01-09 14:31:45

发两张图吧, 画板时疏忽, 有两条线没画上,所以有飞线。
2019-01-09-142335.jpg
2019-01-09-142323.jpg

#44 全志 SOC » 求助:S3的SDK, zmake all生成的img挂不了根文件系统( S3+SPI Nand 128MB ) » 2019-01-09 14:20:45

playflash
回复: 26

前段时间做了个S3测试板,加MIXC 的128M SPI NAND。
跑到挂载根系统就停了,主要错误LOG如下, 求高人指点一下。
由于没有将SD卡引出来, 没法测试从SD卡启动。

[    0.000000] Kernel command line: console=ttyS0,115200 root=/dev/nandd init=/init loglevel=8 partitions=bootloader@mmcblk0p2:env@mmcblk0p5:boot@mmcblk0p6:rootfs@mmcblk0p7:UDISK@mmcblk0p1 mac_addr= uid=8882f574-3e53-45 boot_type=5 disp_para=0 init_disp=0 tv_vdid=0 fb_base=0x47e80000 config_size=49152


[    2.115018] [ND]nftl ok!
[    2.118152] [ND]max_erase_times = 65000
[    2.122855] [NAND]nand_dev add mbr
[    2.126883] [NAND]nand_dev add bootloader
[    2.133474]  nanda:
[    2.136523] [NAND]nand_dev add env
[    2.143593]  nandb: unknown partition table
[    2.149193] [NAND]nand_dev add boot
[    2.156320]  nandc: unknown partition table
[    2.161748] [NAND]nand_dev add rootfs
[    2.169245]  nandd: unknown partition table
[    2.174807] [NAND]nand init end


[    3.101033] List of all partitions:
[    3.105125] 5d00            8192 nanda  (driver?)
[    3.110601] 5d08             512 nandb  (driver?)
[    3.116123] 5d10           16384 nandc  (driver?)
[    3.121572] 5d18           84992 nandd  (driver?)
[    3.127003] No filesystem could mount root, tried:  ext2 ext3 ext4 cramfs squashfs vfat
[    3.136793] Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(93,24)


完整LOG

HELLO! BOOT0 is starting!
boot0 version : 4.0.0
boot0 commit : d2ad320d63e1dafff167a86b71e077b676f6435c
 
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 = 0x80000000
rtc[7] value = 0x00000038
i2c gpio config 22777777
axp209 read error
axp152 read error
DRAM DRIVE INFO: V0.7
DRAM Type = 3 (2:DDR2,3:DDR3,6:LPDDR2,7:LPDDR3)
DRAM CLK = 672 MHz
DRAM zq value: 000039bb
DRAM size = 128 MB
dram size =128
Reg 0x01c20848: 0x00003333
0x01c20028 0x90041811
0x01c200a0 0x8100000f
spinand UBOOT_LAST_BLK_NUM 19
Succeed in opening spi nand flash.
block from 2 to 19
Succeed in reading Boot1 file head.
current block is 2.
current block is 3.
current block is 4.
current block is 5.
current block is 6.
current block is 7.
sum=569c039e
src_sum=569c039e
The file stored in block 2 to block 6 is perfect.
----------storage_type = 5  in boot0-------------------------
Ready to disable icache.
Jump to secend Boot.
[      1.046]

U-Boot 2011.09-rc1-00000-gd2ad320-dirty (Nov 22 2017 - 14:24:05) Allwinner Technology 

[      1.055]version: 1.1.0
[      1.058]uboot commit : d2ad320d63e1dafff167a86b71e077b676f6435c
 
[      1.068]pmbus:   ready
not set main pmu id
axp read error
probe axp20x failed
axp152 read error
probe axp15 failed
axp_probe error
[      1.682]PMU: pll1 408 Mhz,PLL6=600 Mhz
AXI=204 Mhz,AHB=204 Mhz, APB1=102 Mhz 
set power on vol to default
dcdc2_vol = 1100
axp set dcdc2_vol to 1100 failed
dcdc3_vol = 3300
axp set dcdc3_vol to 3300 failed
aldo2_vol = 2500
axp set aldo2_vol to 2500 failed
aldo3_vol = 3000
axp set aldo3_vol to 3000 failed
ldo1_vol = 3300
axp set ldo1_vol to 3300 failed
ldo2_vol = 3000
axp set ldo2_vol to 3000 failed
ldo3_vol = 3000
axp set ldo3_vol to 3000 failed
ldo4_vol = 1800
axp set ldo4_vol to 1800 failed
find power_sply to end
vbus exist
no battery, limit to dc
fel key old mode
run key detect
key pressed value=0xc
new_power_status = 0 
key pressed value=0x5
new_power_status = 0 
key pressed value=0x1
new_power_status = 0 
key pressed value=0x1
new_power_status = 0 
key not pressed anymore
no key input
dram_para_set start
dram_para_set end
[      2.008]DRAM:  128 MiB
relocation Offset is: 0709e000
save config for small mem_size 
workmode = 0
storage type = 5
[      2.102]SPINAND: NAND_UbootInit
NAND_UbootInit start
NB1 : enter NAND_LogicInit
uboot:nand version: 2 34 20171118 1600 
nand : get id_number_ctl fail, 1
nand : get CapacityLevel fail, 47a24004
not burn nand partition table!
NB1 : nftl num: 1 
 init nftl: 0 
NB1 : NAND_LogicInit ok, result = 0x0 
[      2.292]sunxi flash init ok
In:    serial
Out:   serial
Err:   serial
--------fastboot partitions--------
-total partitions:5-
-name-        -start-       -size-      
bootloader  : 100000        800000      
env         : 900000        80000       
boot        : 980000        1000000     
rootfs      : 1980000       5a00000     
UDISK       : 7380000       0           
-----------------------------------
base bootcmd=run setargs_nand boot_normal
bootcmd set setargs_nand
key 12
cant find rcvy value
cant find fstbt value
no misc partition is found
to be run cmd=run setargs_nand boot_normal
WORK_MODE_BOOT
board_status_probe
adver not need show
sunxi_bmp_logo_display

** Unable to read "bootlogo.bmp" from sunxi_flash 0:1 **
sunxi bmp info error : unable to open logo file bootlogo.bmp
read bootlogo partition fail,start_block=0x0,rblock=0x0 ,ret=0
Not a JPG file ?
parse_header failed

Use decode 2x1 sampling
sunxi_read_bootlogo: jpg convert argb  
[      2.388]Hit any key to stop autoboot:  0 
read boot or recovery all
[      2.855]sunxi flash read :offset 980000, 6159963 bytes OK
no signature
[      2.868]ready to boot
board_display_setenv:  disp_para=0 init_disp=0 tv_vdid=0
para err in disp_ioctl, cmd = 0xa,screen id = 1
[      2.880][mmc]: MMC Device 2 not found
[      2.883][mmc]:  mmc  not find,so not exit
NAND_UbootExit
NB1 : NAND_LogicExit
nand release dma:47a34338
nand release dma:0
reload config to 0x43000000 
[      2.888]
Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0
[    0.000000] Linux version 3.4.39 (dev@dev-vm) (gcc version 5.3.1 20160412 (Linaro GCC 5.3-2016.05) ) #2 Tue Jan 8 19:07:03 CST 2019
[    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] Ignoring unrecognised tag 0x00000000
[    0.000000] Initialized persistent memory from 41d20800-41d307ff
[    0.000000] Memory policy: ECC disabled, Data cache writeback
[    0.000000] On node 0 totalpages: 32768
[    0.000000] free_area_init_node: node 0, pgdat c05640c4, node_mem_map c0600000
[    0.000000]   Normal zone: 256 pages used for memmap
[    0.000000]   Normal zone: 0 pages reserved
[    0.000000]   Normal zone: 32512 pages, LIFO batch:7
[    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: 32512
[    0.000000] Kernel command line: console=ttyS0,115200 root=/dev/nandd init=/init loglevel=8 partitions=bootloader@mmcblk0p2:env@mmcblk0p5:boot@mmcblk0p6:rootfs@mmcblk0p7:UDISK@mmcblk0p1 mac_addr= uid=8882f574-3e53-45 boot_type=5 disp_para=0 init_disp=0 tv_vdid=0 fb_base=0x47e80000 config_size=49152
[    0.000000] PID hash table entries: 512 (order: -1, 2048 bytes)
[    0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
[    0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
[    0.000000] Memory: 128MB = 128MB total
[    0.000000] Memory: 39328k/39328k available, 91744k 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 : 0xc8800000 - 0xff000000   ( 872 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xc8000000   ( 128 MB)
[    0.000000]     modules : 0xbf000000 - 0xc0000000   (  16 MB)
[    0.000000]       .text : 0xc0008000 - 0xc04f7000   (5052 kB)
[    0.000000]       .init : 0xc04f7000 - 0xc051d000   ( 152 kB)
[    0.000000]       .data : 0xc051e000 - 0xc0564980   ( 283 kB)
[    0.000000]        .bss : 0xc05649a4 - 0xc05ff5e0   ( 620 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.000253] Calibrating delay loop (skipped), value calculated using timer frequency.. 4800.00 BogoMIPS (lpj=24000000)
[    0.000299] pid_max: default: 32768 minimum: 301
[    0.000554] Mount-cache hash table entries: 512
[    0.001349] CPU: Testing write buffer coherency: ok
[    0.001646] Setting up static identity map for 0x403b9988 - 0x403b99bc
[    0.002648] devtmpfs: initialized
[    0.006009] VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 5
[    0.006225] pinctrl core: initialized pinctrl subsystem
[    0.006924] NET: Registered protocol family 16
[    0.007643] DMA: preallocated 128 KiB pool for atomic coherent allocations
[    0.007718] script_sysfs_init success
[    0.007777] sunxi_dump_init success
[    0.009192] gpiochip_add: registered GPIOs 0 to 223 on device: sunxi-pinctrl
[    0.011281] sunxi-pinctrl sunxi-pinctrl: initialized sunXi PIO driver
[    0.011770] gpiochip_add: registered GPIOs 1024 to 1031 on device: axp-pinctrl
[    0.013329] persistent_ram: uncorrectable error in header
[    0.013358] persistent_ram: no valid data in buffer (sig = 0x00024200)
[    0.029427] console [ram-1] enabled
[    0.030397] [sunxi-module]: [sunxi-module.0] probe success
[    0.030859] axp driver uning configuration failed(838)
[    0.031113] axp driver uning configuration failed(844)
[    0.031363] axp driver uning configuration failed(850)
[    0.031612] axp driver uning configuration failed(857)
[    0.032287] script config pll_isp to 360 Mhz
[    0.032564] Not Found clk pll_video in script 
[    0.033030] script config pll_ve to 360 Mhz
[    0.033296] Not Found clk pll_periph0 in script 
[    0.033546] Not Found clk pll_de in script 
[    0.033998] sunxi_default_clk_init
[    0.034244] try to set pll6ahb1 to 200000000
[    0.034497] Error not get clk pll6ahb1
[    0.034964] Error not get clk pll6ahb1try to set ahb1 to 200000000
[    0.035461] try to set apb1 to 100000000
[    0.036499] ===fe3o4==== sunxi_root_procfs_attach ret:0
[    0.043703] bio: create slab <bio-0> at 0
[    0.044325] pwm module init!
[    0.047584] SCSI subsystem initialized
[    0.048235] usbcore: registered new interface driver usbfs
[    0.048820] usbcore: registered new interface driver hub
[    0.049253] usbcore: registered new device driver usb
[    0.049709] twi_chan_cfg()341 - [twi0] has no twi_speed!
[    0.050030] twi_chan_cfg()352 - [twi0] has no twi_regulator.
[    0.050287] twi_chan_cfg()341 - [twi1] has no twi_speed!
[    0.050742] twi_chan_cfg()352 - [twi1] has no twi_regulator.
[    0.051806] twi_start()446 - [i2c0] START can't sendout!
[    0.052540] twi_start()446 - [i2c0] START can't sendout!
[    0.053058] twi_start()446 - [i2c0] START can't sendout!
[    0.053625] axp20_board 0-0034: failed reading at 0x03
[    0.053872] [AXP20-MFD] try to read chip id failed!
[    0.054326] axp mfd register failed
[    0.054589] axp20_board: probe of 0-0034 failed with error -121
[    0.055174] Linux video capture interface: v2.00
[    0.055584] gpiochip_add: gpios 1024..1028 (axp_pin) failed to register
[    0.055838] axp pinctrl used,skip
[    0.056748] Advanced Linux Sound Architecture Driver Version 1.0.25.
[    0.058249] cfg80211: Calling CRDA to update world regulatory domain
[    0.059395] Switching to clocksource arch_sys_counter
[    0.061226] NET: Registered protocol family 2
[    0.062082] IP route cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.063179] TCP established hash table entries: 4096 (order: 3, 32768 bytes)
[    0.063804] TCP bind hash table entries: 4096 (order: 2, 16384 bytes)
[    0.064351] TCP: Hash tables configured (established 4096 bind 4096)
[    0.064600] TCP: reno registered
[    0.064853] UDP hash table entries: 256 (order: 0, 4096 bytes)
[    0.065337] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[    0.066119] NET: Registered protocol family 1
[    0.066886] Unpacking initramfs...
[    0.067151] Initramfs unpacking failed: compression method lzma not configured
[    0.072945] Freeing initrd memory: 2336K
[    0.073687] sunxi_reg_init enter
[    0.076731] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.077279] jffs2: version 2.2. (NAND) (SUMMARY)  © 2001-2006 Red Hat, Inc.
[    0.078124] msgmni has been set to 81
[    0.079676] io scheduler noop registered
[    0.079939] io scheduler deadline registered
[    0.080559] io scheduler cfq registered (default)
[    0.081301] [DISP]disp_module_init
[    0.082017] cmdline,disp=0
[    0.082723] disp_init_rotation_sw
[    0.083007] @@@rot-degree=1, scn_size[854,480]
[    0.083341] disp_rot_sw_set_manager,1246
[    0.084419] [DISP]disp_module_init finish
[    0.084959] sw_uart_get_devinfo()1503 - uart1 has no uart_regulator.
[    0.085711] uart1: ttyS0 at MMIO 0x1c28400 (irq = 33) is a SUNXI
[    0.086183] sw_uart_pm()890 - uart1 clk is already enable
[    0.086446] sw_console_setup()1233 - console setup baud 115200 parity n bits 8, flow n
[    0.183038] console [ttyS0] enabled
[    0.881423] [NAND]nand init start, spinand_used_flag is 1
[    0.887690] spinand_cache_level err! 0spinand_capacity_level err! 0
[    0.895409] NandHwInit: Start Nand Hardware initializing .....
[    0.902160] kernel:nand version: 2 25 20150917 1145 
[    0.909092] pin count:4 
[    0.912210] request tx DMA
[    0.915464] request general tx dma channel ok!
[    0.920661] request rx DMA
[    0.924113] request general rx dma channel ok!
[    0.929312] NAND_ClkRequest: get pll6 rate 600000000HZ
[    0.935337] SPI nand ID: 12c212c2 12c212c2
[    0.940374] [SCAN_DBG] NandTwoPlaneOp: 1, DriverTwoPlaneOPCfg: 1, 0xffcfffff 
[    0.948563] spinand, spinand_id_number_ctl, nand type err! 0
[    0.955321] _UpdateExtAccessFreqPara: no para.
[    0.960939] PHY_Scan_DelayMode: right delay mode 0x0
[    0.967143] PHY_Scan_DelayMode: right delay mode 0x800
[    0.973134] PHY_Scan_DelayMode: right delay mode,clk 75 MHz, bit[13]=0,bit[11]=1
[    0.982088] _GetOldPhysicArch: chip 0, block 20, page 0, oob: 0x0, 0x50, 0x48, 0x59
[    0.991095] _GetOldPhysicArch: get old physic arch ok, 0x6d 0x2!
[    0.998030] NAND_ReadPhyArch: get old physic arch ok, use old cfg, now:0x2 0x6d - old:0x2 0x6d!
[    1.008189] 
[    1.008198] 
[    1.011983] [SCAN_DBG] ==============Nand Architecture Parameter==============
[    1.020498] [SCAN_DBG]    Nand Chip ID:         0xffff12c2 0xffffffff
[    1.027910] [SCAN_DBG]    Nand Chip Count:      0x1
[    1.033798] [SCAN_DBG]    Nand Chip Connect:    0x1
[    1.039459] [SCAN_DBG]    Sector Count Of Page: 0x4
[    1.045357] [SCAN_DBG]    Page Count Of Block:  0x40
[    1.051140] [SCAN_DBG]    Block Count Of Die:   0x400
[    1.057004] [SCAN_DBG]    Plane Count Of Die:   0x2
[    1.062893] [SCAN_DBG]    Die Count Of Chip:    0x1
[    1.068562] [SCAN_DBG]    Bank Count Of Chip:   0x1
[    1.074451] [SCAN_DBG]    Optional Operation:   0x6d
[    1.080229] [SCAN_DBG]    Access Frequence:     0x4b
[    1.086199] [SCAN_DBG] =======================================================
[    1.086217] 
[    1.096377] 
[    1.098474] [FORMAT_DBG] ===========Logical Architecture Parameter===========
[    1.106677] [FORMAT_DBG]    Page Count of Logic Block:  0x40
[    1.113440] [FORMAT_DBG]    Sector Count of Logic Page: 0x8
[    1.119881] [FORMAT_DBG]    Block Count of Die:         0x200
[    1.126737] [FORMAT_DBG]    Die Count:                  0x1
[    1.133193] [FORMAT_DBG] ===================================================
[    1.143111] nand:found factory_bad_block(new version) table in block:26!
[    1.150847] nand:support secure storage
[    1.169569] secure storage updata ok!
[    1.173906] nand secure storage ok: 21,22
[    1.178606] NandHwInit: End Nand Hardware initializing ..... OK!
[    1.187269] nand:found factory_bad_block(new version) table in block:26!
[    1.195204] nand:support secure storage
[    1.199712] start block:23
[    1.203223] [NE]mbr read 12
[    1.206994] [NE]mbr read ok!
[    1.210665] [NE]mbr read end!
[    1.214205] [NE]mbr partition start!
[    1.218841] [NE]mbr partition ok!
[    1.222788] [NE]mbr partition end!
[    1.227015] [NE]new nand info init!!
[    1.231492] [NE]mbr read 12
[    1.235253] [NE]mbr read ok!
[    1.238903] [NE]mbr read end!
[    1.242457] [NE]get mbr_data table
[    1.247146] [ND]ok  get factory_bad_block table!
[    1.253216] [NE]new_bad_block table new format!
[    1.259127] [ND]ok get a new bad table!
[    1.264323] [ND]build all_phy partition start!
[    1.269713] [NE]mbr partition start!
[    1.274365] [NE]mbr partition ok!
[    1.278291] [NE]mbr partition end!
[    1.282540] [NE]partition_num: 0,size :0x36400,cross_talk 0
[    1.288986] [NE]part mbr size: 0x800 type: 0
[    1.293991] [NE]part bootloader size: 0x4000 type: 0
[    1.299963] [NE]part env size: 0x400 type: 0
[    1.304967] [NE]part boot size: 0x8000 type: 0
[    1.310373] [NE]part rootfs size: 0x2d000 type: 0
[    1.315849] [NE]part UDISK size: 0xffffc800 type: 0
[    1.321622] [ND]build 1 phy_partition !
[    1.326339] [ND]nand_info->type :0
[    1.330375] [ND]nand_info->SectorNumsPerPage :8
[    1.335655] [ND]nand_info->BytesUserData :16
[    1.340861] [ND]nand_info->PageNumsPerBlk :64
[    1.345943] [ND]nand_info->BlkPerChip :512
[    1.350960] [ND]nand_info->FirstBuild :0
[    1.355559] [ND]nand_info->FullBitmap :12582
[    1.360561] [ND]nand_info->bad_block_addr.Chip_NO :0
[    1.366531] [ND]nand_info->bad_block_addr.Block_NO :13
[    1.372502] [ND]nand_info->mbr_block_addr.Chip_NO :0
[    1.378474] [ND]nand_info->mbr_block_addr.Block_NO :12
[    1.384443] [ND]nand_info->no_used_block_addr.Chip_NO :0
[    1.390813] [ND]nand_info->no_used_block_addr.Block_NO :16
[    1.397157] [ND]nand_info->new_bad_block_addr.Chip_NO :0
[    1.403321] [ND]nand_info->new_bad_block_addr.Block_NO :14
[    1.409666] [ND]nand_info->new_bad_page_addr :65535
[    1.415346] [ND]nand_info->partition_nums :1
[    1.420557] [ND]sizeof partition:1192
[    1.424868] [ND]nand_info->partition:0:
[    1.429372] [ND]size:0x36400
[    1.433033] [ND]cross_talk:0x0
[    1.436668] [ND]attribute:0x0
[    1.440217] [ND]start: chip:0 block:16
[    1.444834] [ND]end  : chip:0 block:511
[    1.449635] [ND]nand_partition0
[    1.453502] [ND]nftl start:496,62
[    1.457547] [ND]first
[    1.520711] [ND]before second 496 434.
[    1.603368] [NE]smart->version:aaaaaa01;
[    1.607991] [NE]smart->total_recv_read_sectors:12046;
[    1.614085] [NE]smart->total_recv_write_sectors:91790;
[    1.620062] [NE]smart->total_real_read_pages:1503;
[    1.625838] [NE]smart->total_real_write_pages:11648;
[    1.631620] [NE]smart->total_recv_discard_sectors:0;
[    1.637591] [NE]smart->total_real_discard_sectors:0;
[    1.643372] [NE]smart->total_recv_read_claim_pages:0;
[    1.649232] [NE]smart->total_gc_times:0;
[    1.654055] [NE]smart->total_gc_pages:0;
[    1.658657] [NE]smart->total_wl_times:0;
[    1.663274] [NE]smart->total_real_read_error_pages:0;
[    1.669344] [NE]smart->total_real_write_error_pages:0;
[    1.675319] [NE]smart->total_normal_power_cycles:2;
[    1.681209] [NE]smart->total_unusual_power_cycles:0;
[    1.686972] [NE]smart->max_block_erase_times:0;
[    1.692474] [NE]smart->min_block_erase_times:0;
[    1.697753] [NE]smart->max_block_used_counter:0;
[    1.703146] [NE]smart->min_block_used_counter:0;
[    1.708728] [NE]smart->read_reclaim_utc:0;
[    1.733754] [NE]recover_phy_page_mapping no used page 47!!
[    1.740338] [ND]recover 313 47
[    1.743979] [ND]A64 nand2.0 version:0009 
[    1.748679] [ND]zone->nand_chip->blk_per_chip: 496 
[    1.754571] [ND]zone->nand_chip->bytes_per_page: 4096 
[    1.760548] [ND]zone->nand_chip->pages_per_blk: 64 
[    1.766428] [ND]zone->nand_chip->max_erase_times: 3000 
[    1.772497] [ND]zone->nand_chip->support_read_reclaim: 0 
[    1.778955] [ND]zone->test: 0 
[    1.782604] [ND]zone->zone_no: 0 
[    1.786528] [ND]zone->zone_attr: 0 
[    1.790659] [ND]zone->blocks: 496 
[    1.794887] [ND]zone->bad_block: 0 
[    1.799002] [ND]zone->logic_cap_in_sects: 222208 
[    1.804488] [ND]zone->backup_cap_in_sects: 31744 
[    1.810181] [ND]zone->free_block_num: 313 
[    1.814974] [ND]zone->gc_strategy.start_gc_free_blocks: 12 
[    1.821637] [ND]zone->gc_strategy.stop_gc_free_blocks: 41 
[    1.827982] [ND]zone->gc_strategy.gc_page: 0 
[    1.833290] [ND]zone->gc_strategy.process: 1 
[    1.838374] [ND]zone->prio_gc.prio_type : 0 
[    1.843375] [ND]zone->zone_start_phy_block->phy_block.Block_NO: 0 
[    1.850716] [ND]zone->zone_end_phy_block->phy_block.Block_NO: 495 
[    1.857836] [ND]zone->zone_phy_page_map_for_gc: c2997c00 
[    1.864304] [ND]zone->current_block.user_info: c297f400 
[    1.870470] [ND]zone->current_block.block_info: c299ac04 
[    1.876928] [ND]zone->current_block.block_info->phy_block.Block_NO: 313 
[    1.884642] [ND]zone->current_block.page_used: 47 
[    1.890433] [ND]zone->current_block.block_info->block_used_count: 182 
[    1.897941] [ND]zone->read_reclaim_complete: 0 
[    1.903442] [ND]zone->temp_page_buf: c2995000 
[    1.908623] [ND]zone->max_erase_num: 1 
[    1.913350] [ND]zone->cache.cache_totals: 0 
[    1.918338] [ND]zone->cfg->nftl_dont_use_cache: 1 
[    1.923919] [ND]zone->cfg->nftl_use_cache_sort: 1 
[    1.929693] [ND]zone->cfg->nftl_support_gc_read_reclaim: 1 
[    1.936144] [ND]zone->cfg->nftl_support_wear_leveling: 1 
[    1.942608] [ND]zone->cfg->nftl_need_erase: 0 
[    1.947791] [ND]zone->cfg->nftl_min_free_block_num: 32 
[    1.954066] [ND]zone->cfg->nftl_gc_threshold_free_block_num: a 
[    1.960910] [ND]zone->cfg->nftl_min_free_block: a 
[    1.966479] [ND]zone->cfg->nftl_gc_threshold_ratio_numerator: 2 
[    1.973625] [ND]zone->cfg->nftl_gc_threshold_ratio_denominator: 3 
[    1.980968] [ND]zone->cfg->nftl_max_cache_num: 20 
[    1.986538] [ND]zone->cfg->nftl_max_cache_write_num: 10 
[    1.992702] [ND]zone->cfg->nftl_cross_talk: 0 
[    1.998089] [ND]zone->cfg->nftl_read_claim_interval: 1296000 
[    2.004740] [NE]smart->version:aaaaaa01;
[    2.009548] [NE]smart->total_recv_read_sectors:12046;
[    2.015422] [NE]smart->total_recv_write_sectors:91790;
[    2.021600] [NE]smart->total_real_read_pages:1551;
[    2.027168] [NE]smart->total_real_write_pages:11648;
[    2.032940] [NE]smart->total_recv_discard_sectors:0;
[    2.038906] [NE]smart->total_real_discard_sectors:0;
[    2.044684] [NE]smart->total_recv_read_claim_pages:0;
[    2.050767] [NE]smart->total_gc_times:0;
[    2.055366] [NE]smart->total_gc_pages:0;
[    2.059963] [NE]smart->total_wl_times:0;
[    2.064780] [NE]smart->total_real_read_error_pages:0;
[    2.070652] [NE]smart->total_real_write_error_pages:0;
[    2.076814] [NE]smart->total_normal_power_cycles:2;
[    2.082494] [NE]smart->total_unusual_power_cycles:0;
[    2.088465] [NE]smart->max_block_erase_times:0;
[    2.093758] [NE]smart->min_block_erase_times:0;
[    2.099035] [NE]smart->max_block_used_counter:0;
[    2.104631] [NE]smart->min_block_used_counter:0;
[    2.110021] [NE]smart->read_reclaim_utc:0;
[    2.115018] [ND]nftl ok!
[    2.118152] [ND]max_erase_times = 65000
[    2.122855] [NAND]nand_dev add mbr
[    2.126883] [NAND]nand_dev add bootloader
[    2.133474]  nanda:
[    2.136523] [NAND]nand_dev add env
[    2.143593]  nandb: unknown partition table
[    2.149193] [NAND]nand_dev add boot
[    2.156320]  nandc: unknown partition table
[    2.161748] [NAND]nand_dev add rootfs
[    2.169245]  nandd: unknown partition table
[    2.174807] [NAND]nand init end 
[    2.180832] Failed to alloc md5
[    2.184835] eth0: Use random mac address
[    2.189537] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.217221] sunxi-ehci sunxi-ehci.1: SW USB2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.226651] sunxi-ehci sunxi-ehci.1: new USB bus registered, assigned bus number 1
[    2.235689] sunxi-ehci sunxi-ehci.1: irq 104, io mem 0xf1c1a000
[    2.260065] sunxi-ehci sunxi-ehci.1: USB 0.0 started, EHCI 1.00
[    2.268095] hub 1-0:1.0: USB hub found
[    2.272585] hub 1-0:1.0: 1 port detected
[    2.277937] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.305233] sunxi-ohci sunxi-ohci.1: SW USB2.0 'Open' Host Controller (OHCI) Driver
[    2.314294] sunxi-ohci sunxi-ohci.1: new USB bus registered, assigned bus number 2
[    2.323029] sunxi-ohci sunxi-ohci.1: irq 105, io mem 0xf1c1a400
[    2.394986] hub 2-0:1.0: USB hub found
[    2.399431] hub 2-0:1.0: 1 port detected
[    2.404834] Initializing USB Mass Storage driver...
[    2.410789] usbcore: registered new interface driver usb-storage
[    2.417930] USB Mass Storage support registered.
[    2.423369] ------print_msc_config-----
[    2.427877] vendor_id             = 0x18d1
[    2.432895] mass_storage_id       = 0x1
[    2.437401] adb_id                = 0x2
[    2.441921] usb_manufacturer_name = USB Developer
[    2.447604] usb_product_name      = Android
[    2.452510] usb_serial_number     = 20080411
[    2.457707] msc_vendor_name       = USB 2.0
[    2.462612] msc_product_name      = USB Flash Driver
[    2.468374] msc_release           = 100
[    2.473098] serial_unique         = 0
[    2.477411] luns                  = 1
[    2.481733] ---------------------------
[    2.486690] udc sunxi_usb_udc: registering UDC driver [android_usb]
[    2.494078] file system registered
[    2.499029] gserial_setup: registered 4 ttyGS* devices
[    2.506118] android_usb gadget: Mass Storage Function, version: 2009/09/11
[    2.514284] android_usb gadget: Number of LUNs=1
[    2.519669]  lun0: LUN: removable file: (no medium)
[    2.525359] android_usb gadget: I/O thread pid: 43
[    2.531157] lun name: lun
[    2.534775] android_bind, serial_unique = 0
[    2.539702] android_usb gadget: android_usb ready
[    2.545578] sunxikbd_script_init: key para not found, used default para. 
[    2.554528] sunxi-rtc sunxi-rtc: rtc core: registered sunxi-rtc as rtc0
[    2.562583] sunxi cedar version 0.1 
[    2.566878] [cedar]: install start!!!
[    2.571750] [cedar]: install end!!!
[    2.576621] platform reg-20-cs-dcdc2: Driver reg-20-cs-dcdc2 requests probe deferral
[    2.585894] platform reg-20-cs-dcdc3: Driver reg-20-cs-dcdc3 requests probe deferral
[    2.594940] platform reg-20-cs-ldo1: Driver reg-20-cs-ldo1 requests probe deferral
[    2.603976] platform reg-20-cs-ldo2: Driver reg-20-cs-ldo2 requests probe deferral
[    2.613014] platform reg-20-cs-ldo3: Driver reg-20-cs-ldo3 requests probe deferral
[    2.621880] platform reg-20-cs-ldo4: Driver reg-20-cs-ldo4 requests probe deferral
[    2.630920] platform reg-20-cs-ldoio0: Driver reg-20-cs-ldoio0 requests probe deferral
[    2.640215] step1 : gsensor_fetch_sysconfig_para
[    2.645597] step2 : gsensor_fetch_sysconfig_para
[    2.651202] [MIR3DA] fetch_sysconfig_para failed!
[    2.651214] 
[    2.658561] sunxi_wdt_init_module: sunxi WatchDog Timer Driver v1.0
[    2.666268] sunxi_wdt_probe: devm_ioremap return wdt_reg 0xf1c20ca0, res->start 0x01c20ca0, res->end 0x01c20cbf
[    2.677773] sunxi_wdt_probe: initialized (g_timeout=16s, g_nowayout=0)
[    2.685744] wdt_enable, write reg 0xf1c20cb8 val 0x00000000
[    2.692418] wdt_set_tmout, write 0x000000b0 to mode reg 0xf1c20cb8, actual timeout 16 sec
[    2.701982] [cpu_freq] ERR:get cpu extremity frequency from sysconfig failed, use max_freq
[    2.713086] [mmc]: SD/MMC/SDIO Host Controller Driver(v1.114 2015-6-2 10:21) Compiled in Jan  8 2019 at 17:26:06
[    2.724605] [mmc]: get mmc0's sdc_power failed
[    2.729673] [mmc]: get mmc1's sdc_power failed
[    2.734826] [mmc]: MMC host used card: 0x3, boot card: 0x0, io_card 2
[    2.742665] [mmc]: sdc0 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.755763] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.768597] no led_0, ignore it!
[    2.772294] no led_1, ignore it!
[    2.775985] no led_2, ignore it!
[    2.779758] no led_3, ignore it!
[    2.783457] no led_4, ignore it!
[    2.787146] no led_5, ignore it!
[    2.790927] no led_6, ignore it!
[    2.794615] no led_7, ignore it!
[    2.798506] usbcore: registered new interface driver usbhid
[    2.804918] usbhid: USB HID core driver
[    2.809701] ashmem: initialized
[    2.813401] logger: created 256K log 'log_main'
[    2.818698] logger: created 32K log 'log_events'
[    2.823993] logger: created 32K log 'log_radio'
[    2.829211] logger: created 32K log 'log_system'
[    2.836129] asoc: sndcodec <-> sunxi-codec mapping ok
[    2.843082] [DAUDIO]sunxi-daudio cannot find any using configuration for controllers, return directly!
[    2.853822] [I2S]snddaudio cannot find any using configuration for controllers, return directly!
[    2.863778] [DAUDIO0] driver not init,just return.
[    2.869514] IPv4 over IPv4 tunneling driver
[    2.874965] TCP: cubic registered
[    2.878764] Initializing XFRM netlink socket
[    2.883810] NET: Registered protocol family 10
[    2.889781] IPv6 over IPv4 tunneling driver
[    2.895137] NET: Registered protocol family 17
[    2.900452] ThumbEE CPU extension supported.
[    2.905407] Registering SWP/SWPB emulation handler
[    2.911231] [HDMI]ep952_module_init begin
[    2.915894] [ep952] hdmi_power: axp20_ldo3
[    2.920638] [DISP_I2C] hdmi_i2c_detect, get right i2c adapter, id=0
[    2.927875] [DISP_I2C] hdmi_i2c_probe
[    2.932115] hdmi_parse_config(): --- 117 ---- io_name:gpio_0, i:0
[    2.939009] hdmi_parse_config(): --- 117 ---- io_name:gpio_1, i:1
[    2.946058] hdmi_parse_config(): --- 117 ---- io_name:gpio_2, i:2
[    2.952965] hdmi_parse_config(): --- 117 ---- io_name:gpio_3, i:3
[    2.959943] hdmi_gpio_config(): --- 137 ---- gpio_id:2, bon:1
[    2.966709] ep952_thread:237
[    2.970352] platform reg-20-cs-ldoio0: Driver reg-20-cs-ldoio0 requests probe deferral
[    2.979328] platform reg-20-cs-ldo4: Driver reg-20-cs-ldo4 requests probe deferral
[    2.988032] platform reg-20-cs-ldo3: Driver reg-20-cs-ldo3 requests probe deferral
[    2.996713] platform reg-20-cs-ldo2: Driver reg-20-cs-ldo2 requests probe deferral
[    3.005300] platform reg-20-cs-ldo1: Driver reg-20-cs-ldo1 requests probe deferral
[    3.013973] platform reg-20-cs-dcdc3: Driver reg-20-cs-dcdc3 requests probe deferral
[    3.022832] platform reg-20-cs-dcdc2: Driver reg-20-cs-dcdc2 requests probe deferral
[    3.031738] sunxi-rtc sunxi-rtc: setting system clock to 1970-01-01 00:01:12 UTC (72)
[    3.041819] [rf_pm]: Did not config module_power0 in sys_config
[    3.048620] [rf_pm]: Did not config module_power1 in sys_config
[    3.055360] [rf_pm]: Did not config module_power2 in sys_config
[    3.062153] [rf_pm]: Did not config module_power3 in sys_config
[    3.068852] [rf_pm]: mod has no chip_en gpio
[    3.073798] [rf_pm]: regulator on.
[    3.077716] [rf_pm]: Get ap 32k clk out failed!
[    3.082874] [wifi_pm]: failed to fetch wifi configuration!
[    3.089171] ALSA device list:
[    3.092581]   #0: audiocodec
[    3.101033] List of all partitions:
[    3.105125] 5d00            8192 nanda  (driver?)
[    3.110601] 5d08             512 nandb  (driver?)
[    3.116123] 5d10           16384 nandc  (driver?)
[    3.121572] 5d18           84992 nandd  (driver?)
[    3.127003] No filesystem could mount root, tried:  ext2 ext3 ext4 cramfs squashfs vfat
[    3.136793] Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(93,24)
[    3.146395] Backtrace: 
[    3.149328] [<c00114c0>] (dump_backtrace+0x0/0x108) from [<c03b1648>] (dump_stack+0x18/0x1c)
[    3.158934]  r7:c0517ed8 r6:c0471486 r5:c0479337 r4:c0564f70
[    3.165740] [<c03b1630>] (dump_stack+0x0/0x1c) from [<c03b1844>] (panic+0x78/0x1c0)
[    3.174476] [<c03b17cc>] (panic+0x0/0x1c0) from [<c04f7d60>] (mount_block_root+0x250/0x288)
[    3.183981]  r3:00000000 r2:80000000 r1:c2825f48 r0:c047141e
[    3.190776]  r7:c0517ed8
[    3.193790] [<c04f7b10>] (mount_block_root+0x0/0x288) from [<c04f7df0>] (mount_root+0x58/0x6c)
[    3.203592] [<c04f7d98>] (mount_root+0x0/0x6c) from [<c04f7f34>] (prepare_namespace+0x130/0x190)
[    3.213578]  r5:c0517eed r4:c0564a24
[    3.217856] [<c04f7e04>] (prepare_namespace+0x0/0x190) from [<c04f7978>] (kernel_init+0x164/0x1a4)
[    3.228040]  r5:00000095 r4:00000008
[    3.232322] [<c04f7814>] (kernel_init+0x0/0x1a4) from [<c001f350>] (do_exit+0x0/0x644)
[    3.241340]  r7:00000013

分区如下:

;---------------------------------------------------------------------------------------------------
; 说明: 脚本中的字符串区分大小写,用户可以修改"="后面的数值,但是不要修改前面的字符串
;---------------------------------------------------------------------------------------------------


;---------------------------------------------------------------------------------------------------
;                                   固件下载参数配置
;--------------------------------------------------------------------------------------------------
;****************************************************
;    mbr的大小, 以Kbyte为单位
;****************************************************
[mbr]
size = 1024

;***************************************************************************************************
;                                              分区配置
;
;
;  partition 定义范例:
;    [partition]                ;  //表示是一个分区
;    name        = USERFS2      ; //分区名称
;    size        = 16384        ; //分区大小 单位: 扇区.分区表示个数最多2^31 * 512 = 2T
;    downloadfile = "123.fex"   ; //下载文件的路径和名称,可以使用相对路径,相对是指相对于image.cfg文件所在分区。也可以使用绝对路径
;    keydata     = 1            ; //私有数据分区,重新量产数据将不丢失
;    encrypt     = 1            ; //采用加密方式烧录,将提供数据加密,但损失烧录速度
;    	   = ?            ; //私有用法
;    verify      = 1            ; //要求量产完成后校验是否正确
;
; 注:1、name唯一, 不允许同名
;     2、name最大12个字符
;     3、size = 0, 将创建一个无大小的空分区
;     4、为了安全和效率考虑,分区大小最好保证为16M字节的整数倍
;***************************************************************************************************
[partition_start]

[partition]
    name         = bootloader
    size         = 16384
    downloadfile = "bootloader.fex"
    user_type    = 0x8000

[partition]
    name         = env
    size         = 1024
    downloadfile = "env.fex"
	user_type    = 0x8000

[partition]
    name         = boot
    size         = 32768
    downloadfile = "boot.fex"
	user_type    = 0x8000

[partition]
    name         = rootfs
    size         = 184320
    downloadfile = "rootfs.fex"
	user_type    = 0x8000

[partition]
    name         = UDISK
	user_type    = 0x8100

#45 Re: DIY/综合/Arduino/写字机/3D打印机/智能小车/平衡车/四轴飞行/MQTT/物联网 » 第一次体验 JLC 嘉立创 SMT » 2019-01-07 22:03:38

那是无外框的钢片。刷起来麻烦一点,而且大小只有10x10cm,主要是固定麻烦,太小。
淘宝上搜索, 15元+邮费10
我的工具也就楼上说的那些。近期花了一千多买了个丝印台, 想了一下, 估计也用不了几次, 这个网片, 还没想好怎样用在丝印台上。
对于这个钢网,我的经验:贴0402是没问题,就是用手工贴不是很准,有时会竖起来或偏位, 对于0603以上就很好。
芯片MSOP8 ,经常贴,没问题。 V3s贴过一两次, 也可以。更密脚的也试过, 有时会短路, 得用烙铁修正一下。
BGA不开孔, 用的是bga芯片上的 焊球, 温度要高,用热风枪,恒温板做坏了好几个BGA, 以后不敢用在BGA上面了。

#46 Re: 全志 SOC » 关于SD接口NAND在全志等MCU上的应用 » 2019-01-02 15:25:41

楼主,有4GB的吗? 大概多少钱。 想用来替代TF

#47 Re: DIY/综合/Arduino/写字机/3D打印机/智能小车/平衡车/四轴飞行/MQTT/物联网 » 第一次体验 JLC 嘉立创 SMT » 2018-12-31 12:55:59

我听了论坛一兄弟建议,  做个25元的钢网, 自己手工贴,也很快。0603的阻容基本没问题,0402就有点麻烦。

#48 Re: 全志 SOC » 这次做了5片全志Allwinner V3s板子,手贴一片正常,机贴4片均不正常,路过的大神帮我分析分析。 » 2018-12-13 11:29:18

bugfix 说:

大力出悲剧,
果然是打磨问题,
应该是V3s的DRAM堆叠在上面,
激光打坏了。
所以能烧录,但是跑起来各种问题。



估计USB烧录只用到了SRAM,没有用到DRAM,
所以烧录正常。

现在是换V3s的两片PCB都可以了, 没换的两片都不行,现象是uboot都起不来,
4片全部都能USB烧写程序.

楼主是要将V3s字样磨掉吗?我想这样做, 有什么办法而又不搞坏芯片?

#49 Re: ESP32/ESP8266 » 比ESP8266性价比更优的wifi芯片来了 ----- W600 » 2018-12-12 18:11:03

谁玩过接TF卡?
其实RDA有一款RDA5981也很便宜。

#50 Re: 全志 SOC » licheepi_zero开发板 buildroot配置 一键编译 » 2018-11-09 21:32:41

有没有朋友试过 【SD 接口的 NAND】+V3s, 启动速度如何?
https://whycan.cn/t_1694.html
这芯片淘宝还没卖的。

#52 Re: 全志 SOC » 发一个 荔枝派zero 能跑的 camdroid 固件, ov5647摄像头, 视频效果相当暗,很难看清楚. » 2018-11-06 12:30:02

我的是新荔枝派zero底板,将摄像头插反了(太坑了,作者将摄像头方向设计成朝向板里面了,跟楼主的是反向的),烧掉了,现在正重新买摄像头。

#53 Re: 全志 SOC » 发一个 荔枝派zero 能跑的 camdroid 固件, ov5647摄像头, 视频效果相当暗,很难看清楚. » 2018-11-06 12:25:06

HELLO! BOOT0 is starting!
get_ifm reg_val=7
setting pmu vol system core 1.1 v

===i2c gpio === 22777777 
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 = 360 MHz
DRAM zq value: 000039bb
DRAM size = 64 MB
Succeed in reading Boot1 file head.
Jump to secend Boot.
[      0.093]

U-Boot 2011.09-rc1-dirty (Jun 16 2015 - 13:24:18) Allwinner Technology 

[      0.101]version: 1.1.0
[      0.106]pmbus:   
===i2c gpio === 22777777 
ready
axp read error
probe axp20x failed
axp_probe fail,run clock=1008
set power on vol to default
axp_set_power_supply_output dcdc2_vol = 1200
axp set dcdc2_vol to 1200 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
[      0.166]DRAM:  64 MiB
[debug_jaosn]:use the clock in sys_config 
OK
[      0.188]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=0x6420,rblock=0x100 ,ret=256
Use decode 1x1 sampling
sunxi_read_bootlogo: jpg convert argb  
[      0.373]Hit any key to stop autoboot:  0 
read boot or recovery all
[      0.659]sunxi flash read :offset 4000, 4194815 bytes OK
[      0.665]ready to boot
[      0.667]
Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0
[    0.000000] Linux version 3.4.39 (root@ubuntu) (gcc version 4.6.3 20120201 (prerelease) (crosstool-NG linaro-1.13.1-2012.02-20120222 - Linaro GCC 2012.02) ) #18 Fri Oct 26 23:49:45 EDT 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 41d20800-41d307ff
[    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 c0520ae4, node_mem_map c05bb000
[    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=32360
[    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: 29928k/29928k available, 35608k 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 - 0xc048d000   (4628 kB)
[    0.000000]       .init : 0xc048d000 - 0xc04b0000   ( 140 kB)
[    0.000000]       .data : 0xc04b0000 - 0xc0521220   ( 453 kB)
[    0.000000]        .bss : 0xc0521244 - 0xc05ba964   ( 614 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.000149] Calibrating delay loop (skipped), value calculated using timer frequency.. 4800.00 BogoMIPS (lpj=24000000)
[    0.000172] pid_max: default: 32768 minimum: 301
[    0.000306] Mount-cache hash table entries: 512
[    0.000811] CPU: Testing write buffer coherency: ok
[    0.001078] Setting up static identity map for 0x40366de8 - 0x40366e40
[    0.001722] devtmpfs: initialized
[    0.003610] pinctrl core: initialized pinctrl subsystem
[    0.004095] NET: Registered protocol family 16
[    0.004490] DMA: preallocated 128 KiB pool for atomic coherent allocations
[    0.004545] script_sysfs_init success
[    0.004577] sunxi_dump_init success
[    0.005299] gpiochip_add: registered GPIOs 0 to 223 on device: sunxi-pinctrl
[    0.006188] sunxi-pinctrl sunxi-pinctrl: initialized sunXi PIO driver
[    0.006545] gpiochip_add: registered GPIOs 1024 to 1031 on device: axp-pinctrl
[    0.007418] persistent_ram: found existing buffer, size 58228, start 29123
[    0.261411] console [ram-1] enabled
[    0.261938] [sunxi-module]: [sunxi-module.0] probe success
[    0.262158] axp driver uning configuration failed(801)
[    0.262352] axp driver uning configuration failed(808)
[    0.262742] Not Found clk pll_isp in script 
[    0.262852] Not Found clk pll_video in script 
[    0.263040] Not Found clk pll_ve in script 
[    0.263143] Not Found clk pll_periph0 in script 
[    0.263331] Not Found clk pll_de in script 
[    0.263432] sunxi_default_clk_init
[    0.263537] try to set pll6ahb1 to 200000000
[    0.263734] Error not get clk pll6ahb1
[    0.263841] Error not get clk pll6ahb1try to set ahb1 to 200000000
[    0.264056] try to set apb1 to 100000000
[    0.264567] ===fe3o4==== sunxi_root_procfs_attach ret:0
[    0.268155] bio: create slab <bio-0> at 0
[    0.268602] pwm module init!
[    0.270866] SCSI subsystem initialized
[    0.271204] usbcore: registered new interface driver usbfs
[    0.271458] usbcore: registered new interface driver hub
[    0.271706] usbcore: registered new device driver usb
[    0.272038] twi_chan_cfg()340 - [twi0] has no twi_regulator.
[    0.272146] twi_chan_cfg()340 - [twi1] has no twi_regulator.
[    0.273018] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x34)
[    0.273144] axp20_board 0-0034: failed reading at 0x03
[    0.273334] [AXP20-MFD] try to read chip id failed!
[    0.273438] axp mfd register failed
[    0.273554] axp20_board: probe of 0-0034 failed with error -70
[    0.273789] Linux video capture interface: v2.00
[    0.273979] gpiochip_add: gpios 1024..1028 (axp_pin) failed to register
[    0.274172] axp pinctrl used,skip
[    0.274603] Advanced Linux Sound Architecture Driver Version 1.0.25.
[    0.275696] cfg80211: Calling CRDA to update world regulatory domain
[    0.276754] Switching to clocksource arch_sys_counter
[    0.280000] NET: Registered protocol family 2
[    0.280000] IP route cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.280000] TCP established hash table entries: 2048 (order: 2, 16384 bytes)
[    0.280107] TCP bind hash table entries: 2048 (order: 1, 8192 bytes)
[    0.280318] TCP: Hash tables configured (established 2048 bind 2048)
[    0.280513] TCP: reno registered
[    0.280623] UDP hash table entries: 256 (order: 0, 4096 bytes)
[    0.280740] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[    0.281202] NET: Registered protocol family 1
[    0.281507] Unpacking initramfs...
[    0.296265] Freeing initrd memory: 220K
[    0.296602] [pm]aw_pm_init!
[    0.296711] standby_mode = 1. 
[    0.296813] wakeup src cnt is : 3. 
[    0.297006] pmu name: pmu1_para .
[    0.297113] pmu1_enable = 0x1. 
[    0.297216] pmux_id = 0x1. 
[    0.297406] pmu name: pmu2_para .
[    0.297509] config_pmux_para: script_parser_fetch err. 
[    0.297613] pmu2_enable = 0x0. 
[    0.297806] add_sys_pwr_dm: get ldo name failed
[    0.297908] add_sys_pwr_dm: get ldo name failed
[    0.298013] add_sys_pwr_dm: get ldo name failed
[    0.298203] add_sys_pwr_dm: get ldo name failed
[    0.298305] add_sys_pwr_dm: get ldo name failed
[    0.298492] add_sys_pwr_dm: get ldo name failed
[    0.298595] add_sys_pwr_dm: get ldo name failed
[    0.298699] add_sys_pwr_dm: get ldo name failed
[    0.298888] add_sys_pwr_dm: get ldo name failed
[    0.298991] add_sys_pwr_dm: get ldo name failed
[    0.299181] after inited: sys_mask config = 0x0. 
[    0.299287] dynamic_standby enalbe = 0x0. 
[    0.299448] sunxi_reg_init enter
[    0.301504] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.301662] jffs2: version 2.2. (NAND) (SUMMARY)  © 2001-2006 Red Hat, Inc.
[    0.302031] msgmni has been set to 58
[    0.303059] io scheduler noop registered
[    0.303179] io scheduler deadline registered
[    0.303448] io scheduler cfq registered (default)
[    0.303963] [DISP]disp_module_init
[    0.304543] cmdline,disp=
[    0.305157] rotation_sw module is config as no used
[    0.305288] [DISP] disp_get_rotation_sw,line:68:disp 0 out of range? g_rot_sw=0
[    0.305578] [DISP] disp_init_connections,line:289:NULL pointer: 0, 0
[    0.323442] [DISP] disp_sys_power_enable,line:387:some error happen, fail to get regulator 
[    0.323758] [DISP] disp_sys_gpio_set_value,line:374:OSAL_GPIO_DevWRITE_ONEPIN_DATA, hdl is NULL
[    0.324759] [DISP]disp_module_init finish
[    0.325160] sw_uart_get_devinfo()1503 - uart0 has no uart_regulator.
[    0.325367] sw_uart_get_devinfo()1503 - uart2 has no uart_regulator.
[    0.325907] uart0: ttyS0 at MMIO 0x1c28000 (irq = 32) is a SUNXI
[    0.326113] sw_uart_pm()890 - uart0 clk is already enable
[    0.326230] sw_console_setup()1233 - console setup baud 115200 parity n bits 8, flow n
[    0.422303] console [ttyS0] enabled
[    1.159099] uart: probe of uart2 failed with error -22
[    1.166229] sunxi_spi_chan_cfg()1376 - [spi-0] has no spi_regulator.
[    1.174080] spi spi0: master is unqueued, this is deprecated
[    1.180771] m25p_probe()967 - Use the Dual Mode Read.
[    1.186558] NorFlash ID: 0xef4018 - 0x0
[    1.191042] m25p80 spi0.0: found W25q128, expected at25df641
[    1.197443] m25p80 spi0.0: W25q128 (16384 Kbytes)
[    1.204347] @@@[debug_jaosn]: Invalid partitions count: 4 9
[    1.211121] Creating 8 MTD partitions on "spi0.0":
[    1.216553] 0x000000000000-0x000000040000 : "uboot"
[    1.223084] 0x000000040000-0x000000440000 : "boot"
[    1.229372] 0x000000440000-0x000000c40000 : "system"
[    1.236019] 0x000000c40000-0x000000cc0000 : "cfg"
[    1.242280] 0x000000cc0000-0x000000ce0000 : "boot_logo"
[    1.249141] 0x000000ce0000-0x000000d00000 : "shutdown_logo"
[    1.256643] 0x000000d00000-0x000000d10000 : "env"
[    1.263045] 0x000000d10000-0x000000d20000 : "private"
[    1.271171] Failed to alloc md5
[    1.274844] eth0: Use random mac address
[    1.279438] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.306944] sunxi-ehci sunxi-ehci.1: SW USB2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.316069] sunxi-ehci sunxi-ehci.1: new USB bus registered, assigned bus number 1
[    1.324793] sunxi-ehci sunxi-ehci.1: irq 104, io mem 0xf1c1a000
[    1.350041] sunxi-ehci sunxi-ehci.1: USB 0.0 started, EHCI 1.00
[    1.357519] hub 1-0:1.0: USB hub found
[    1.361843] hub 1-0:1.0: 1 port detected
[    1.366722] sunxi-ehci sunxi-ehci.1: remove, state 1
[    1.372490] usb usb1: USB disconnect, device number 1
[    1.670257] sunxi-ehci sunxi-ehci.1: USB bus 1 deregistered
[    1.686749] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.713830] sunxi-ohci sunxi-ohci.1: SW USB2.0 'Open' Host Controller (OHCI) Driver
[    1.722559] sunxi-ohci sunxi-ohci.1: new USB bus registered, assigned bus number 1
[    1.731218] sunxi-ohci sunxi-ohci.1: irq 105, io mem 0xf1c1a400
[    1.794652] hub 1-0:1.0: USB hub found
[    1.798934] hub 1-0:1.0: 1 port detected
[    1.803886] sunxi-ohci sunxi-ohci.1: remove, state 1
[    1.809530] usb usb1: USB disconnect, device number 1
[    1.815923] sunxi-ohci sunxi-ohci.1: USB bus 1 deregistered
[    1.832359] Initializing USB Mass Storage driver...
[    1.838038] usbcore: registered new interface driver usb-storage
[    1.844838] USB Mass Storage support registered.
[    1.850469] file system registered
[    1.855797] android_usb gadget: Mass Storage Function, version: 2009/09/11
[    1.863615] android_usb gadget: Number of LUNs=1
[    1.868923]  lun0: LUN: removable file: (no medium)
[    1.874916] android_usb gadget: android_usb ready
[    1.880497] sunxikbd_script_init: key para not found, used default para. 
[    1.889093] sunxi-rtc sunxi-rtc: rtc core: registered sunxi-rtc as rtc0
[    1.896876] sunxi cedar version 0.1 
[    1.901027] [cedar]: install start!!!
[    1.905451] [cedar]: install end!!!
[    1.910000] platform reg-20-cs-dcdc2: Driver reg-20-cs-dcdc2 requests probe deferral
[    1.918890] platform reg-20-cs-dcdc3: Driver reg-20-cs-dcdc3 requests probe deferral
[    1.927817] platform reg-20-cs-ldo1: Driver reg-20-cs-ldo1 requests probe deferral
[    1.936541] platform reg-20-cs-ldo2: Driver reg-20-cs-ldo2 requests probe deferral
[    1.945282] platform reg-20-cs-ldo3: Driver reg-20-cs-ldo3 requests probe deferral
[    1.953912] platform reg-20-cs-ldo4: Driver reg-20-cs-ldo4 requests probe deferral
[    1.962631] platform reg-20-cs-ldoio0: Driver reg-20-cs-ldoio0 requests probe deferral
[    1.971628] sunxi_wdt_init_module: sunxi WatchDog Timer Driver v1.0
[    1.978875] sunxi_wdt_probe: devm_ioremap return wdt_reg 0xf1c20ca0, res->start 0x01c20ca0, res->end 0x01c20cbf
[    1.990317] sunxi_wdt_probe: initialized (g_timeout=16s, g_nowayout=0)
[    1.998052] wdt_enable, write reg 0xf1c20cb8 val 0x00000000
[    2.004373] wdt_set_tmout, write 0x000000b0 to mode reg 0xf1c20cb8, actual timeout 16 sec
[    2.014231] [mmc]: SD/MMC/SDIO Host Controller Driver(v1.114 2015-6-2 10:21) Compiled in Oct 19 2018 at 10:37:11
[    2.025803] [mmc]: get mmc0's sdc_power failed
[    2.030862] [mmc]: get mmc1's sdc_power failed
[    2.036035] [mmc]: MMC host used card: 0x3, boot card: 0x1, io_card 2
[    2.044292] [mmc]: sdc0 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.055454] [mmc]: sdc0 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.065862] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.075797] [mmc]: sdc0 power_supply is null
[    2.083649] sunxi_leds_fetch_sysconfig_para leds is not used in config
[    2.091041] =========script_get_err============
[    2.096499] usbcore: registered new interface driver usbhid
[    2.102830] usbhid: USB HID core driver
[    2.107293] [mmc]: sdc0 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.118245] ashmem: initialized
[    2.122143] logger: created 256K log 'log_main'
[    2.127383] logger: created 32K log 'log_events'
[    2.132947] logger: created 32K log 'log_radio'
[    2.138308] logger: created 32K log 'log_system'
[    2.145022] script_get_item return audio_pa_ctrl type err
[    2.152133] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 52,  RTO !!
[    2.160693] asoc: sndcodec <-> sunxi-codec mapping ok
[    2.166506] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 52,  RTO !!
[    2.174960] [mmc]: sdc0 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.187242] TCP: cubic registered
[    2.191180] NET: Registered protocol family 17
[    2.196445] VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 5
[    2.205286] ThumbEE CPU extension supported.
[    2.211331] Registering SWP/SWPB emulation handler
[    2.217795] [mmc]: sdc0 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.229111] platform reg-20-cs-ldoio0: Driver reg-20-cs-ldoio0 requests probe deferral
[    2.238277] platform reg-20-cs-ldo4: Driver reg-20-cs-ldo4 requests probe deferral
[    2.248196] platform reg-20-cs-ldo3: Driver reg-20-cs-ldo3 requests probe deferral
[    2.256740] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 8,  RTO !!
[    2.265085] *******************Try sdio*******************
[    2.271343] platform reg-20-cs-ldo2: Driver reg-20-cs-ldo2 requests probe deferral
[    2.279963] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 5,  RTO !!
[    2.288362] platform reg-20-cs-ldo1: Driver reg-20-cs-ldo1 requests probe deferral
[    2.296885] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 5,  RTO !!
[    2.305251] platform reg-20-cs-dcdc3: Driver reg-20-cs-dcdc3 requests probe deferral
[    2.314051] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 5,  RTO !!
[    2.322324] platform reg-20-cs-dcdc2: Driver reg-20-cs-dcdc2 requests probe deferral
[    2.331120] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 5,  RTO !!
[    2.339432] *******************Try sd *******************
[    2.345618] sunxi-rtc sunxi-rtc: setting system clock to 2015-01-01 00:05:41 UTC (1420070741)
[    2.355284] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 55,  RTO !!
[    2.364578] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 55,  RTO !!
[    2.373586] [wifi module_pm]: failed to fetch wifi configuration!
[    2.380619] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 55,  RTO !!
[    2.388954] [wifi module_pm]: regulator on.
[    2.393839] [wifi_pm]: no wifi used in configuration
[    2.399447] 
[    2.399450] *****Oct 19 2018 10:37:24 EAGLE DRIVER VER:75be56bfbaf7*****
[    2.399456] 
[    2.410764] =======================================================
[    2.417920] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 55,  RTO !!
[    2.426294] ==== Launching Wi-Fi driver! (Powered by Rockchip) ====
[    2.433448] =======================================================
[    2.440508] Espressif ESP8089 SDIO WiFi driver (Powered by Rockchip, Ver2.25(01/22/2016),Drv: 2.26) init.
[    2.451329] [wifi_pm]: wrong module select 0 !
[    2.556536] *******************Try mmc*******************
[    2.562649] [mmc]: sdc0 set ios: clk 400000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.573953] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 1,  RTO !!
[    2.582290] [mmc]: sdc0 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.592304] [mmc]: sdc0 power_supply is null
[    2.599818] [mmc]: sdc0 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.611189] [mmc]: sdc0 power_supply is null
[    2.630027] [mmc]: sdc0 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.661106] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 52,  RTO !!
[    2.670531] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 52,  RTO !!
[    2.678949] [mmc]: sdc0 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.691916] [mmc]: sdc0 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.704476] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 8,  RTO !!
[    2.712706] *******************Try sdio*******************
[    2.720055] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 5,  RTO !!
[    2.729359] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 5,  RTO !!
[    2.738749] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 5,  RTO !!
[    2.748132] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 5,  RTO !!
[    2.756356] *******************Try sd *******************
[    2.763619] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 55,  RTO !!
[    2.773022] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 55,  RTO !!
[    2.782505] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 55,  RTO !!
[    2.791992] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 55,  RTO !!
[    2.800313] *******************Try mmc*******************
[    2.801963] [mmc]: sdc0 set ios: clk 300000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.818026] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 1,  RTO !!
[    2.826253] [mmc]: sdc0 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.836336] [mmc]: sdc0 power_supply is null
[    2.843760] [mmc]: sdc0 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.855129] [mmc]: sdc0 power_supply is null
[    2.880023] [mmc]: sdc0 set ios: clk 200000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.911635] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 52,  RTO !!
[    2.921668] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 52,  RTO !!
[    2.930082] [mmc]: sdc0 set ios: clk 200000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.943301] [mmc]: sdc0 set ios: clk 200000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    2.956310] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 8,  RTO !!
[    2.964645] *******************Try sdio*******************
[    2.972455] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 5,  RTO !!
[    2.982395] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 5,  RTO !!
[    2.992314] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 5,  RTO !!
[    3.002159] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 5,  RTO !!
[    3.010482] *******************Try sd *******************
[    3.018270] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 55,  RTO !!
[    3.028220] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 55,  RTO !!
[    3.038239] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 55,  RTO !!
[    3.048175] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 55,  RTO !!
[    3.056578] *******************Try mmc*******************
[    3.062766] [mmc]: sdc0 set ios: clk 200000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.074770] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 1,  RTO !!
[    3.083081] [mmc]: sdc0 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.093160] [mmc]: sdc0 power_supply is null
[    3.100576] [mmc]: sdc0 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.111935] [mmc]: sdc0 power_supply is null
[    3.130023] [mmc]: sdc0 set ios: clk 150000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.161095] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 52,  RTO !!
[    3.170580] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 52,  RTO !!
[    3.178907] [mmc]: sdc0 set ios: clk 150000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.191879] [mmc]: sdc0 set ios: clk 150000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.204411] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 8,  RTO !!
[    3.212730] *******************Try sdio*******************
[    3.219987] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 5,  RTO !!
[    3.229384] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 5,  RTO !!
[    3.238705] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 5,  RTO !!
[    3.248091] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 5,  RTO !!
[    3.256402] *******************Try sd *******************
[    3.263577] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 55,  RTO !!
[    3.273064] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 55,  RTO !!
[    3.282547] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 55,  RTO !!
[    3.291960] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 55,  RTO !!
[    3.300366] *******************Try mmc*******************
[    3.301932] [mmc]: sdc0 set ios: clk 150000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.317992] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 1,  RTO !!
[    3.326314] [mmc]: sdc0 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.336395] [mmc]: sdc0 power_supply is null
[    3.343830] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.355199] [mmc]: sdc1 power_supply is null
[    3.380024] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.412333] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[    3.421556] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[    3.429879] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.442703] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.454955] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 8,  RTO !!
[    3.463182] *******************Try sdio*******************
[    3.470259] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[    3.479372] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[    3.488402] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[    3.497515] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[    3.505739] *******************Try sd *******************
[    3.512636] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[    3.521854] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[    3.530995] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[    3.540202] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[    3.548615] *******************Try mmc*******************
[    3.554710] [mmc]: sdc1 set ios: clk 400000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.565963] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 1,  RTO !!
[    3.574193] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.584197] [mmc]: sdc1 power_supply is null
[    3.591708] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.602984] [mmc]: sdc1 power_supply is null
[    3.620021] [mmc]: sdc1 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.652599] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[    3.661995] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[    3.670403] [mmc]: sdc1 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.683355] [mmc]: sdc1 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.695886] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 8,  RTO !!
[    3.704111] *******************Try sdio*******************
[    3.711462] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[    3.720756] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[    3.730139] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[    3.739512] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[    3.747736] *******************Try sd *******************
[    3.754986] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[    3.764379] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[    3.773853] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[    3.783332] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[    3.791655] *******************Try mmc*******************
[    3.793303] [mmc]: sdc1 set ios: clk 300000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.809360] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 1,  RTO !!
[    3.817592] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.827684] [mmc]: sdc1 power_supply is null
[    3.835113] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.846477] [mmc]: sdc1 power_supply is null
[    3.870023] [mmc]: sdc1 set ios: clk 200000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.903137] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[    3.913156] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[    3.921570] [mmc]: sdc1 set ios: clk 200000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.934692] [mmc]: sdc1 set ios: clk 200000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    3.947781] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 8,  RTO !!
[    3.956097] *******************Try sdio*******************
[    3.963891] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[    3.973806] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[    3.983716] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[    3.993546] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[    4.001859] *******************Try sd *******************
[    4.009551] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[    4.019561] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[    4.029571] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[    4.039496] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[    4.047904] *******************Try mmc*******************
[    4.054010] [mmc]: sdc1 set ios: clk 200000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    4.066149] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 1,  RTO !!
[    4.074485] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    4.084593] [mmc]: sdc1 power_supply is null
[    4.092024] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    4.103392] [mmc]: sdc1 power_supply is null
[    4.120022] [mmc]: sdc1 set ios: clk 150000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    4.152602] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[    4.162083] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[    4.170412] [mmc]: sdc1 set ios: clk 150000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    4.183362] [mmc]: sdc1 set ios: clk 150000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    4.195895] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 8,  RTO !!
[    4.204213] *******************Try sdio*******************
[    4.211477] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[    4.220860] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[    4.230150] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[    4.239523] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[    4.247849] *******************Try sd *******************
[    4.255017] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[    4.264497] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[    4.273883] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[    4.283364] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[    4.291769] *******************Try mmc*******************
[    4.293334] [mmc]: sdc1 set ios: clk 150000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    4.309592] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 1,  RTO !!
[    4.317928] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[    4.327952] [mmc]: sdc1 power_supply is null
[   13.550031] esp_sdio_init ------ RETRY ------ 
[   13.555146] =======================================================
[   13.562308] ==== Dislaunching Wi-Fi driver! (Powered by Rockchip) ====
[   13.569655] =======================================================
[   13.576802] Espressif ESP8089 SDIO WiFi driver (Powered by Rockchip, Ver2.26(01/22/2016),Drv: 2.26) exit.
[   13.587618] [wifi_pm]: wrong module select 0 !
[   13.692651] =======================================================
[   13.699792] ==== Launching Wi-Fi driver! (Powered by Rockchip) ====
[   13.706848] =======================================================
[   13.713993] Espressif ESP8089 SDIO WiFi driver (Powered by Rockchip, Ver2.25(01/22/2016),Drv: 2.26) init.
[   13.724809] [wifi_pm]: wrong module select 0 !
[   13.829869] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   13.841240] [mmc]: sdc1 power_supply is null
[   13.860030] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   13.892345] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   13.901567] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   13.909894] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   13.922727] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   13.934987] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 8,  RTO !!
[   13.943330] *******************Try sdio*******************
[   13.950319] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   13.959447] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   13.968474] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   13.977591] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   13.985901] *******************Try sd *******************
[   13.992804] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   14.002012] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   14.011137] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   14.020344] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   14.028756] *******************Try mmc*******************
[   14.034856] [mmc]: sdc1 set ios: clk 400000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   14.046231] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 1,  RTO !!
[   14.054570] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   14.064587] [mmc]: sdc1 power_supply is null
[   14.072098] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   14.083460] [mmc]: sdc1 power_supply is null
[   14.100024] [mmc]: sdc1 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   14.132603] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   14.142008] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   14.150418] [mmc]: sdc1 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   14.163370] [mmc]: sdc1 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   14.175905] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 8,  RTO !!
[   14.184135] *******************Try sdio*******************
[   14.191485] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   14.200802] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   14.210178] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   14.219575] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   14.227800] *******************Try sd *******************
[   14.235058] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   14.244448] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   14.253928] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   14.263405] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   14.271729] *******************Try mmc*******************
[   14.273376] [mmc]: sdc1 set ios: clk 300000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   14.289444] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 1,  RTO !!
[   14.297697] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   14.307792] [mmc]: sdc1 power_supply is null
[   14.315307] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   14.326579] [mmc]: sdc1 power_supply is null
[   14.350021] [mmc]: sdc1 set ios: clk 200000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   14.383136] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   14.393155] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   14.401570] [mmc]: sdc1 set ios: clk 200000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   14.414781] [mmc]: sdc1 set ios: clk 200000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   14.427786] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 8,  RTO !!
[   14.436100] *******************Try sdio*******************
[   14.443981] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   14.453810] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   14.463736] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   14.473560] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   14.481872] *******************Try sd *******************
[   14.489650] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   14.499580] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   14.509591] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   14.519600] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   14.527934] *******************Try mmc*******************
[   14.534120] [mmc]: sdc1 set ios: clk 200000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   14.546126] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 1,  RTO !!
[   14.554445] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   14.564540] [mmc]: sdc1 power_supply is null
[   14.571959] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   14.583321] [mmc]: sdc1 power_supply is null
[   14.600025] [mmc]: sdc1 set ios: clk 150000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   14.632603] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   14.642098] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   14.650422] [mmc]: sdc1 set ios: clk 150000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   14.663288] [mmc]: sdc1 set ios: clk 150000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   14.675817] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 8,  RTO !!
[   14.684127] *******************Try sdio*******************
[   14.691393] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   14.700769] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   14.710153] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   14.719443] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   14.727752] *******************Try sd *******************
[   14.734916] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   14.744396] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   14.753876] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   14.763262] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   14.771669] *******************Try mmc*******************
[   14.773234] [mmc]: sdc1 set ios: clk 150000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   14.789287] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 1,  RTO !!
[   14.797605] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   14.807696] [mmc]: sdc1 power_supply is null
[   24.830028] esp_sdio_init ------ RETRY ------ 
[   24.835138] =======================================================
[   24.842307] ==== Dislaunching Wi-Fi driver! (Powered by Rockchip) ====
[   24.849647] =======================================================
[   24.856799] Espressif ESP8089 SDIO WiFi driver (Powered by Rockchip, Ver2.26(01/22/2016),Drv: 2.26) exit.
[   24.867609] [wifi_pm]: wrong module select 0 !
[   24.972649] =======================================================
[   24.979789] ==== Launching Wi-Fi driver! (Powered by Rockchip) ====
[   24.986847] =======================================================
[   24.993989] Espressif ESP8089 SDIO WiFi driver (Powered by Rockchip, Ver2.25(01/22/2016),Drv: 2.26) init.
[   25.004810] [wifi_pm]: wrong module select 0 !
[   25.109866] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   25.121245] [mmc]: sdc1 power_supply is null
[   25.140029] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   25.172345] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   25.181584] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   25.189908] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   25.202744] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   25.215002] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 8,  RTO !!
[   25.223320] *******************Try sdio*******************
[   25.230311] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   25.239424] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   25.248452] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   25.257566] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   25.265880] *******************Try sd *******************
[   25.272777] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   25.281992] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   25.291204] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   25.300332] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   25.308740] *******************Try mmc*******************
[   25.314838] [mmc]: sdc1 set ios: clk 400000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   25.326087] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 1,  RTO !!
[   25.334403] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   25.344499] [mmc]: sdc1 power_supply is null
[   25.351925] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   25.363289] [mmc]: sdc1 power_supply is null
[   25.380023] [mmc]: sdc1 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   25.412599] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   25.422079] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   25.430407] [mmc]: sdc1 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   25.443365] [mmc]: sdc1 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   25.455890] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 8,  RTO !!
[   25.464118] *******************Try sdio*******************
[   25.471480] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   25.480856] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   25.490163] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   25.499539] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   25.507768] *******************Try sd *******************
[   25.515019] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   25.524502] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   25.533892] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   25.543372] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   25.551794] *******************Try mmc*******************
[   25.553344] [mmc]: sdc1 set ios: clk 300000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   25.569434] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 1,  RTO !!
[   25.577667] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   25.587762] [mmc]: sdc1 power_supply is null
[   25.595279] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   25.606558] [mmc]: sdc1 power_supply is null
[   25.630024] [mmc]: sdc1 set ios: clk 200000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   25.663135] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   25.673068] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   25.681499] [mmc]: sdc1 set ios: clk 200000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   25.694711] [mmc]: sdc1 set ios: clk 200000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   25.707795] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 8,  RTO !!
[   25.716024] *******************Try sdio*******************
[   25.723905] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   25.733740] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   25.743655] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   25.753569] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   25.761792] *******************Try sd *******************
[   25.769574] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   25.779500] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   25.789509] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   25.799540] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   25.807859] *******************Try mmc*******************
[   25.814048] [mmc]: sdc1 set ios: clk 200000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   25.826136] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 1,  RTO !!
[   25.834374] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   25.844485] [mmc]: sdc1 power_supply is null
[   25.851915] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   25.863281] [mmc]: sdc1 power_supply is null
[   25.880022] [mmc]: sdc1 set ios: clk 150000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   25.912598] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   25.922083] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   25.930502] [mmc]: sdc1 set ios: clk 150000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   25.943363] [mmc]: sdc1 set ios: clk 150000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   25.955895] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 8,  RTO !!
[   25.964215] *******************Try sdio*******************
[   25.971478] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   25.980861] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   25.990238] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   25.999528] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   26.007841] *******************Try sd *******************
[   26.015005] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   26.024488] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   26.033968] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   26.043361] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   26.051766] *******************Try mmc*******************
[   26.053333] [mmc]: sdc1 set ios: clk 150000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   26.069481] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 1,  RTO !!
[   26.077821] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   26.087947] [mmc]: sdc1 power_supply is null
[   36.110025] esp_sdio_init ------ RETRY ------ 
[   36.115128] =======================================================
[   36.122290] ==== Dislaunching Wi-Fi driver! (Powered by Rockchip) ====
[   36.129724] =======================================================
[   36.136782] Espressif ESP8089 SDIO WiFi driver (Powered by Rockchip, Ver2.26(01/22/2016),Drv: 2.26) exit.
[   36.147596] [wifi_pm]: wrong module select 0 !
[   36.252631] =======================================================
[   36.259772] ==== Launching Wi-Fi driver! (Powered by Rockchip) ====
[   36.266920] =======================================================
[   36.273978] Espressif ESP8089 SDIO WiFi driver (Powered by Rockchip, Ver2.25(01/22/2016),Drv: 2.26) init.
[   36.284793] [wifi_pm]: wrong module select 0 !
[   36.389851] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   36.401236] [mmc]: sdc1 power_supply is null
[   36.420032] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   36.452341] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   36.461558] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   36.469972] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   36.482715] [mmc]: sdc1 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   36.494972] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 8,  RTO !!
[   36.503293] *******************Try sdio*******************
[   36.510279] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   36.519394] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   36.528506] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   36.537536] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   36.545871] *******************Try sd *******************
[   36.552774] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   36.561994] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   36.571217] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   36.580342] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   36.588744] *******************Try mmc*******************
[   36.594857] [mmc]: sdc1 set ios: clk 400000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   36.606120] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 1,  RTO !!
[   36.614444] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   36.624539] [mmc]: sdc1 power_supply is null
[   36.631970] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   36.643328] [mmc]: sdc1 power_supply is null
[   36.660021] [mmc]: sdc1 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   36.692600] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   36.702085] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   36.710413] [mmc]: sdc1 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   36.723362] [mmc]: sdc1 set ios: clk 300000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   36.735894] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 8,  RTO !!
[   36.744227] *******************Try sdio*******************
[   36.751493] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   36.760800] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   36.770090] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   36.779473] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   36.787781] *******************Try sd *******************
[   36.794950] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   36.804430] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   36.813820] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   36.823297] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   36.831695] *******************Try mmc*******************
[   36.833268] [mmc]: sdc1 set ios: clk 300000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   36.849321] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 1,  RTO !!
[   36.857659] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   36.867662] [mmc]: sdc1 power_supply is null
[   36.875095] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   36.886453] [mmc]: sdc1 power_supply is null
[   36.910022] [mmc]: sdc1 set ios: clk 200000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   36.943133] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   36.953062] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   36.961472] [mmc]: sdc1 set ios: clk 200000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   36.974689] [mmc]: sdc1 set ios: clk 200000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   36.987798] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 8,  RTO !!
[   36.996023] *******************Try sdio*******************
[   37.003908] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   37.013818] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   37.023648] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   37.033558] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   37.041781] *******************Try sd *******************
[   37.049558] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   37.059568] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   37.069493] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   37.079487] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   37.087895] *******************Try mmc*******************
[   37.093992] [mmc]: sdc1 set ios: clk 200000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   37.106084] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 1,  RTO !!
[   37.114334] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   37.124424] [mmc]: sdc1 power_supply is null
[   37.131931] [mmc]: sdc1 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   37.143204] [mmc]: sdc1 power_supply is null
[   37.160022] [mmc]: sdc1 set ios: clk 150000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   37.192599] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   37.201997] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 52,  RTO !!
[   37.210407] [mmc]: sdc1 set ios: clk 150000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   37.223360] [mmc]: sdc1 set ios: clk 150000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   37.235805] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 8,  RTO !!
[   37.244142] *******************Try sdio*******************
[   37.251495] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   37.260789] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   37.270168] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   37.279548] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 5,  RTO !!
[   37.287770] *******************Try sd *******************
[   37.295021] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   37.304411] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   37.313892] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   37.323364] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 55,  RTO !!
[   37.331685] *******************Try mmc*******************
[   37.333336] [mmc]: sdc1 set ios: clk 150000Hz bm OD pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   37.349389] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 1 err, cmd 1,  RTO !!
[   37.357616] [mmc]: sdc1 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[   37.367704] [mmc]: sdc1 power_supply is null
[   47.390043] esp_sdio_init ------ RETRY ------ 
[   47.395225] =======================================================
[   47.402300] ==== Dislaunching Wi-Fi driver! (Powered by Rockchip) ====
[   47.409725] =======================================================
[   47.416786] Espressif ESP8089 SDIO WiFi driver (Powered by Rockchip, Ver2.26(01/22/2016),Drv: 2.26) exit.
[   47.427600] [wifi_pm]: wrong module select 0 !
[   47.532718] eagle sdio can not power up!
[   47.537167] ALSA device list:
[   47.540564]   #0: audiocodec
[   47.544412] Freeing init memory: 140K
[   47.550638] init: skipping insecure file '/default.prop'
[   47.556918] init: skipping insecure file '/init.rc'
[   47.562945] init: /init.rc: 127: invalid option 'root'
[   47.568820] init: skipping insecure file '/init.sun8i.rc'
[   47.575206] init: /init.sun8i.rc: 54: invalid option 'root'
[   47.581565] init: skipping insecure file 'init.sun8i.usb.rc'
[   47.588673] init: command 'loglevel' r=0
[   47.594648] init: skipping insecure file '/ueventd.rc'
[   47.600635] init: command 'export' r=0
[   47.604993] init: command 'export' r=0
[   47.609280] init: command 'export' r=0
[   47.613817] init: skipping insecure file '/ueventd.sun8i.rc'
[   47.621619] init: command 'export' r=0
[   47.625996] init: command 'symlink' r=0
[   47.650416] init: command 'symlink' r=0
[   47.654920] init: command 'symlink' r=0
[   47.659376] init: command 'mkdir' r=0
[   47.670421] init: command 'mkdir' r=0
[   47.674664] init: command 'mkdir' r=0
[   47.678856] init: command 'mkdir' r=-2
[   47.700318] init: processing action 0x19f3138 (init)
[   47.706002] init: command 'export' r=0
[   47.712575] init: command 'export' r=0
[   47.716973] init: command 'export' r=0
[   47.721311] init: command 'export' r=0
[   47.725575] init: processing action 0x19f1c28 (early-fs)
[   47.731750] init: command 'mkdir' r=0
[   47.736081] init: command 'mkdir' r=0
[   47.740323] init: command 'mkdir' r=0
[   47.744578] init: processing action 0x19f43d8 (console_init)
[   47.751293] init: command 'console_init' r=0
[   47.756271] init: processing action 0x19f1f30 (fs)
[   47.761768] init: command 'wait' r=0
[   47.766461] init: command 'setupfs' r=1
[   47.771050] init: out of loopback devices source = /dev/block/mtdblock2
[   47.778504] init: out of loopback devices target = /system
[   47.784806] init: out of loopback devices system = squashfs
[   47.791098] init: out of loopback devices options = (null)
[   47.801093] init: command 'mount' r=0
[   47.805367] init: command 'wait' r=0
[   47.809442] init: out of loopback devices source = /dev/block/mtdblock3
[   47.817086] init: out of loopback devices target = /data
[   47.823107] init: out of loopback devices system = jffs2
[   47.829188] init: out of loopback devices options = (null)
[   47.844652] init: command 'mount' r=0
[   47.849062] init: processing action 0x19f2010 (post-fs)
[   47.855025] init: out of loopback devices source = rootfs
[   47.861222] init: out of loopback devices target = /
[   47.866839] init: out of loopback devices system = rootfs
[   47.873024] init: out of loopback devices options = (null)
[   47.879262] init: command 'mount' r=0
[   47.883458] init: processing action 0x19f2070 (post-fs-data)
[   47.890309] init: command 'chown' r=0
[   47.894778] init: command 'chmod' r=0
[   47.899009] init: command 'chmod' r=-2
[   47.905175] init: command 'mkdir' r=0
[   47.909373] init: command 'restorecon' r=0
[   47.915434] init: command 'mkdir' r=0
[   47.920732] init: command 'mkdir' r=0
[   47.924962] init: processing action 0x19f2e20 (post-fs-data)
[   47.936501] init: skipping insecure file '/system/vendor/modules/videobuf-core.ko'
[   47.958422] init: command 'insmod' r=0
[   47.963116] init: skipping insecure file '/system/vendor/modules/videobuf-dma-contig.ko'
[   47.973108] init: command 'insmod' r=0
[   47.977613] init: skipping insecure file '/system/vendor/modules/cci.ko'
[   48.013383] [VFE]cci probe start cci_sel = 0!
[   48.018488] [VFE]cci probe end cci_sel = 0!
[   48.023378] platform reg-20-cs-dcdc2: Driver reg-20-cs-dcdc2 requests probe deferral
[   48.032296] [VFE]cci_init end
[   48.035819] init: command 'insmod' r=0
[   48.040285] init: skipping insecure file '/system/vendor/modules/vfe_os.ko'
[   48.049026] platform reg-20-cs-dcdc3: Driver reg-20-cs-dcdc3 requests probe deferral
[   48.060868] platform reg-20-cs-ldo1: Driver reg-20-cs-ldo1 requests probe deferral
[   48.070881] platform reg-20-cs-ldo2: Driver reg-20-cs-ldo2 requests probe deferral
[   48.080521] platform reg-20-cs-ldo3: Driver reg-20-cs-ldo3 requests probe deferral
[   48.089907] platform reg-20-cs-ldo4: Driver reg-20-cs-ldo4 requests probe deferral
[   48.099330] platform reg-20-cs-ldoio0: Driver reg-20-cs-ldoio0 requests probe deferral
[   48.132140] init: command 'insmod' r=0
[   48.136571] init: skipping insecure file '/system/vendor/modules/vfe_subdev.ko'
[   48.145869] init: command 'insmod' r=0
[   48.150428] init: skipping insecure file '/system/vendor/modules/ar0330_mipi.ko'
[   48.159959] init: command 'insmod' r=0
[   48.164442] init: skipping insecure file '/system/vendor/modules/ov2710_mipi.ko'
[   48.174096] init: command 'insmod' r=0
[   48.178547] init: skipping insecure file '/system/vendor/modules/ov5647_mipi.ko'
[   48.188079] init: command 'insmod' r=0
[   48.192580] init: skipping insecure file '/system/vendor/modules/vfe_v4l2.ko'
[   48.336814] [VFE]Welcome to Video Front End driver
[   48.342869] [VFE]pdev->id = 0
[   48.346354] [VFE]dev->mipi_sel = 0
[   48.350268] [VFE]dev->vip_sel = 0
[   48.354057] [VFE]dev->isp_sel = 0
[   48.364047] [VFE_WARN]vfe vpu clock is null
[   48.375405] [ISP] isp platform_id = 6!
[   48.379830] platform reg-20-cs-ldoio0: Driver reg-20-cs-ldoio0 requests probe deferral
[   48.388878] [VFE]probe_work_handle start!
[   48.393435] [VFE]..........................vfe clk open!.......................
[   48.401873] [VFE]vfe_init end
[   48.405715] init: command 'insmod' r=0
[   48.410186] init: skipping insecure file '/system/vendor/modules/uvcvideo.ko'
[   48.420267] platform reg-20-cs-ldo4: Driver reg-20-cs-ldo4 requests probe deferral
[   48.428931] platform reg-20-cs-ldo3: Driver reg-20-cs-ldo3 requests probe deferral
[   48.437846] [VFE]v4l2 subdev register input_num = 0
[   48.443471] [VFE]vfe sensor detect start! input_num = 0
[   48.449369] [VFE]Find sensor name is "ov5647_mipi", i2c address is 6c, type is "RAW" !
[   48.458356] [VFE]Sub device register "ov5647_mipi" i2c_addr = 0x6c start!
[   48.466119] [VFE]v4l2_device_register_subdev return 0
[   48.471834] [VFE]registered sensor subdev is OK!
[   48.477049] [VFE]Check sensor!
[   48.480620] [VFE]Sub device register "ov5647_mipi" is OK!
[   48.487728] uvcvideo: Adding mapping Brightness to control 00000000-0000-0000-0000-000000000101/2.
[   48.498056] platform reg-20-cs-ldo2: Driver reg-20-cs-ldo2 requests probe deferral
[   48.506707] uvcvideo: Adding mapping Contrast to control 00000000-0000-0000-0000-000000000101/3.
[   48.516636] platform reg-20-cs-ldo1: Driver reg-20-cs-ldo1 requests probe deferral
[   48.525250] uvcvideo: Adding mapping Hue to control 00000000-0000-0000-0000-000000000101/6.
[   48.534766] platform reg-20-cs-dcdc3: Driver reg-20-cs-dcdc3 requests probe deferral
[   48.543566] uvcvideo: Adding mapping Saturation to control 00000000-0000-0000-0000-000000000101/7.
[   48.553665] platform reg-20-cs-dcdc2: Driver reg-20-cs-dcdc2 requests probe deferral
[   48.562462] uvcvideo: Adding mapping Sharpness to control 00000000-0000-0000-0000-000000000101/8.
[   48.573151] uvcvideo: Adding mapping Gamma to control 00000000-0000-0000-0000-000000000101/9.
[   48.583279] uvcvideo: Adding mapping Backlight Compensation to control 00000000-0000-0000-0000-000000000101/1.
[   48.594770] uvcvideo: Adding mapping Gain to control 00000000-0000-0000-0000-000000000101/4.
[   48.605396] [VFE]Check open /system/etc/hawkview/ov5647_mipi/isp_test_param.ini failed!
[   48.605407] Match isp cfg  start!
[   48.618375] [VFE]Match isp cfg ok
[   48.622253] uvcvideo: Adding mapping Power Line Frequency to control 00000000-0000-0000-0000-000000000101/5.
[   48.633424] uvcvideo: Adding mapping Hue, Auto to control 00000000-0000-0000-0000-000000000101/16.
[   48.644111] [VFE]V4L2 device registered as video0
[   48.649601] [VFE]..........................vfe clk close!.......................
[   48.657979] uvcvideo: Adding mapping Exposure, Auto to control 00000000-0000-0000-0000-000000000001/2.
[   48.668530] [VFE]probe_work_handle end!
[   48.672915] uvcvideo: Adding mapping Exposure, Auto Priority to control 00000000-0000-0000-0000-000000000001/3.
[   48.672933] uvcvideo: Adding mapping Exposure (Absolute) to control 00000000-0000-0000-0000-000000000001/4.
[   48.672947] uvcvideo: Adding mapping White Balance Temperature, Auto to control 00000000-0000-0000-0000-000000000101/11.
[   48.672962] uvcvideo: Adding mapping White Balance Temperature to control 00000000-0000-0000-0000-000000000101/10.
[   48.672977] uvcvideo: Adding mapping White Balance Component, Auto to control 00000000-0000-0000-0000-000000000101/13.
[   48.672991] uvcvideo: Adding mapping White Balance Blue Component to control 00000000-0000-0000-0000-000000000101/12.
[   48.673006] uvcvideo: Adding mapping White Balance Red Component to control 00000000-0000-0000-0000-000000000101/12.
[   48.673022] uvcvideo: Adding mapping Focus (absolute) to control 00000000-0000-0000-0000-000000000001/6.
[   48.673040] uvcvideo: Adding mapping Focus, Auto to control 00000000-0000-0000-0000-000000000001/8.
[   48.673056] uvcvideo: Adding mapping Zoom, Absolute to control 00000000-0000-0000-0000-000000000001/11.
[   48.673072] uvcvideo: Adding mapping Zoom, Continuous to control 00000000-0000-0000-0000-000000000001/12.
[   48.673089] uvcvideo: Adding mapping Privacy to control 00000000-0000-0000-0000-000000000001/17.
[   48.673307] usbcore: registered new interface driver uvcvideo
[   48.673316] USB Video Class driver (v1.0.8_SONiX_v2.6.36.04)
[   48.673388] init: command 'insmod' r=0
[   48.673528] init: skipping insecure file '/system/vendor/modules/da380.ko'
[   48.674724] step1 : gsensor_fetch_sysconfig_para
[   48.674744] step2 : gsensor_fetch_sysconfig_para
[   48.674753] step3 : gsensor_fetch_sysconfig_para
[   48.674758] step4 : mir3da_init
[   48.773587] i2c-core: driver [da380] using legacy suspend method
[   48.860548] i2c-core: driver [da380] using legacy resume method
[   48.867282]  richard mir3da_detect: mir3da_detect:bus[0] addr[0x27]
[   48.879556] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x27)
[   48.894139] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x27)
[   48.908671] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x27)
[   48.917954] [MIR3DA] Can't find Mir3da gsensor!!
[   48.923343] init: command 'insmod' r=0
[   48.927754] init: skipping insecure file '/system/vendor/modules/sw-device.ko'
[   48.939822] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x18)
[   48.949289] init: command 'insmod' r=0
[   48.953766] init: processing action 0x19f4420 (property_service_init)
[   48.961223] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x18)
[   48.970698] init: skipping insecure file '/system/build.prop'
[   48.990295] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x18)
[   49.010849] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x18)
[   49.026966] init: Created socket '/dev/socket/property_service' with mode '666', user '0', group '0'
[   49.037430] init: command 'property_service_init' r=0
[   49.043339] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x18)
[   49.052765] init: processing action 0x19f4468 (signal_init)
[   49.059117] init: command 'signal_init' r=0
[   49.063977] init: processing action 0x19f44b0 (check_startup)
[   49.070639] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x19)
[   49.080066] init: command 'check_startup' r=0
[   49.085020] init: processing action 0x19f21c8 (boot)
[   49.090908] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x19)
[   49.100713] init: command 'ifup' r=0
[   49.104949] init: command 'hostname' r=0
[   49.109475] init: command 'domainname' r=0
[   49.114269] init: command 'setrlimit' r=0
[   49.118926] init: command 'chown' r=0
[   49.123305] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x19)
[   49.132841] init: starting 'servicemanager'
[   49.138097] init: starting 'vold'
[   49.147134] init: starting 'media'
[   49.151364] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x19)
[   49.168920] init: Created socket '/dev/socket/vold' with mode '660', user '0', group '1009'
[   49.182295] init: starting 'startupSound'
[   49.187330] init: command 'class_start' r=0
[   49.195889] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x19)
[   49.226587] init: starting 'ccdr'
[   49.231925] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x8)
[   49.247321] init: command 'class_start' r=0
[   49.261099] init: processing action 0x19f2fd0 (boot)
[   49.273045] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x8)
[   49.282591] init: starting 'adbd'
[   49.287886] init: command 'start' r=0
[   49.293738] init: Created socket '/dev/socket/adbd' with mode '660', user '1000', group '1000'
[   49.303777] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x8)
[   49.313720] init: starting 'debuggerd'
[   49.319391] init: command 'start' r=0
[   49.328322] init: starting 'standby'
[   49.332769] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x8)
[   49.346503] adb_open
[   49.350551] init: command 'start' r=0
[   49.360970] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x8)
[   49.374523] init: processing action 0x19f44f8 (queue_property_triggers)
[   49.383793] init: command 'queue_property_triggers' r=0
[   49.390652] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x38)
[   49.400174] init: processing action 0x19f24a8 (property:ro.debuggable=1)
[   49.410400] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x38)
[   49.421415] init: starting 'console'
[   49.426544] init: command 'start' r=0
[   49.432651] init: processing action 0x19f3e10 (property:sys.usb.config=mass_storage,adb)
[   49.442772] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x38)
[   49.453821] android_usb: already disabled
[   49.459147] init: command 'write' r=0
[   49.471061] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x38)
[   49.481475] init: command 'write' r=0
[   49.501118] init: command 'write' r=0
[   49.505800] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x38)
[   49.515848] init: command 'write' r=0
[   49.529759] ep_matches, wrn: endpoint already claimed, ep(0xc050f9b4, 0xc1a75ac0, ep1in-bulk)
[   49.539967] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x27)
[   49.552648] adb_bind_config
[   49.556002] ep_matches, wrn: endpoint already claimed, ep(0xc050f9b4, 0xc1a75ac0, ep1in-bulk)
[   49.565620] ep_matches, wrn: endpoint already claimed, ep(0xc050fa00, 0xc1a75ac0, ep1out-bulk)
[   49.575383] ep_matches, wrn: endpoint already claimed, ep(0xc050f9b4, 0xc1a75ac0, ep1in-bulk)
[   49.585036] ep_matches, wrn: endpoint already claimed, ep(0xc050fa00, 0xc1a75ac0, ep1out-bulk)
[   49.594786] ep_matches, wrn: endpoint already claimed, ep(0xc050fa4c, 0xc1a8ed40, ep2in-bulk)
[   49.604558] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x27)
[   49.614016] init: command 'write' r=0
[   49.618284] init: command 'setprop' r=0
[   49.630213] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x27)
[   49.650777] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x27)
[   49.680452] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x27)
[   49.700546] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x26)
[   49.732850] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x26)
[   49.760880] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x26)
[   49.790692] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x26)
[   49.820599] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x26)
[   49.847220] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x1c)
[   49.870238] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x1c)
[   49.890504] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x1c)
[   49.910492] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x1c)
[   49.930557] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x1c)
[   49.950879] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x1d)
[   49.981064] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x1d)
[   50.010307] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x1d)
[   50.030381] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x1d)
[   50.050574] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x1d)
[   50.070504] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x4c)
[   50.090597] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x4c)
[   50.129212] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x4c)
[   50.150258] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x4c)
[   50.170406] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x4c)
[   50.190881] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x3d)
[   50.220286] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x3d)
[   50.240590] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x3d)
[   50.260606] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x3d)
[   50.290862] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x3d)
[   50.342027] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x28)
[   50.372527] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x28)
[   50.400603] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x28)
[   50.433174] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x28)
root@camdroid:/ # [   50.461647] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x28)
[   50.490525] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x29)
[   50.510486] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x29)
[   50.531315] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x29)
[   50.567968] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x29)
[   50.592674] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x29)
[   50.621103] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0xf)
[   50.650628] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0xf)
[   50.689920] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0xf)
[   50.730953] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0xf)
[   50.760587] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0xf)
[   50.780254] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x15)
[   50.821345] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x15)
[   50.872101] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x15)
[   50.900402] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x15)
[   50.935166] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x15)
[   50.971692] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x1e)
[   51.001051] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x1e)
[   51.030416] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x1e)
[   51.080467] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x1e)
[   51.100985] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x1e)
[   51.140559] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x1f)
[   51.162877] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x1f)
[   51.191012] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x1f)
[   51.220386] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x1f)
[   51.240933] sunxi_i2c_do_xfer()985 - [i2c0] incomplete xfer (status: 0x20, dev addr: 0x1f)
[   52.092873] ¡ï¡¤newcdr¡¤¡ï: main entry
[   52.097265] ¡ï¡¤newcdr¡¤¡ï: [Firmware Version: root@tiger_cdr 2018-10-19 10:39:27]
[   52.117547] ¡ï¡¤newcdr¡¤¡ï: ===no need to check battery capacity ===
[   52.143655] [VFE]vfe_open
[   52.146988] [VFE]..........................vfe clk open!.......................
[   52.157673] [VFE]vfe_open ok
[   52.161813] [VFE]vfe_close
[   52.164941] [VFE]vfe select input flag = 0, s_input have not be used .
[   52.172426] [VFE]..........................vfe clk close!.......................
[   52.180998] [VFE]vfe_close end
[   52.184665] [VFE]vfe_open
[   52.187691] [VFE]..........................vfe clk open!.......................
[   52.197864] [VFE]vfe_open ok
[   52.201837] [VFE]vfe_close
[   52.204947] [VFE]vfe select input flag = 0, s_input have not be used .
[   52.212416] [VFE]..........................vfe clk close!.......................
[   52.220826] [VFE]vfe_close end
[   53.065566] [DISP] ready enter pm_runtime_get_sync, device0
[   53.332050] [VFE]vfe_open
[   53.335096] [VFE]..........................vfe clk open!.......................
[   53.344025] [VFE]vfe_open ok
[   53.347466] [VFE]Set vfe core clk = 216000000, after Set vfe core clk = 297000000 
[   53.367528] [VFE]mclk on
[   53.437054] [VFE CCI_0 ERR] Status error at addr_8bit = 6c, wr_flag = 1, val = 5c000a30
[   53.446396] [VFE CCI_0 ERR] Status error at addr_8bit = 6c, wr_flag = 1, val = 5c000a30
[   53.455701] [VFE CCI_0 ERR] Status error at addr_8bit = 6c, wr_flag = 1, val = 5c000a30
[   53.464787] [OV5647_mipi]error at sensor_detect
[   53.470015] [OV5647_mipi]chip found is not an target chip.
[   53.476198] [VFE_ERR]sensor initial error when selecting target device!
[   53.483881] [VFE]vfe_close
[   53.486993] [VFE]mclk off
[   53.524107] [VFE]..........................vfe clk close!.......................
[   53.532605] [VFE]vfe_close end
[   53.538180] ¡ï¡¤newcdr¡¤¡ï: startPreview finished
[   53.922237] init: waitpid returned pid 67, status = 00000000
[   53.928771] init: process 'startupSound', pid 67 exited
[   54.042057] init: processing action 0x19f3e10 (property:sys.usb.config=mass_storage,adb)
[   54.061041] adb_release
[   54.064437] adb_open
[   54.067701] init: command 'write' r=0
[   54.074411] init: command 'write' r=0
[   54.078705] init: command 'write' r=0
[   54.093100] init: command 'write' r=0
[   54.098063] [VFE]vfe_open
[   54.101246] [VFE]..........................vfe clk open!.......................
[   54.110129] [VFE]vfe_open ok
[   54.113687] ep_matches, wrn: endpoint already claimed, ep(0xc050f9b4, 0xc1a75ac0, ep1in-bulk)
[   54.123547] [VFE]vfe_close
[   54.126653] [VFE]vfe select input flag = 0, s_input have not be used .
[   54.134166] [VFE]..........................vfe clk close!.......................
[   54.142629] adb_bind_config
[   54.145840] ep_matches, wrn: endpoint already claimed, ep(0xc050f9b4, 0xc1a75ac0, ep1in-bulk)
[   54.155531] ep_matches, wrn: endpoint already claimed, ep(0xc050fa00, 0xc1a75ac0, ep1out-bulk)
[   54.165289] ep_matches, wrn: endpoint already claimed, ep(0xc050f9b4, 0xc1a75ac0, ep1in-bulk)
[   54.174949] ep_matches, wrn: endpoint already claimed, ep(0xc050fa00, 0xc1a75ac0, ep1out-bulk)
[   54.184617] ep_matches, wrn: endpoint already claimed, ep(0xc050fa4c, 0xc1a8ed40, ep2in-bulk)
[   54.194396] [VFE]vfe_close end
[   54.204878] init: command 'write' r=0
[   54.215389] init: command 'setprop' r=0

root@camdroid:/ # 
root@camdroid:/ # 

我的LOG是这样的
没有插入摄像头和TF卡
约每10秒输出一次LOG, 不知道为什么?读flash 太慢?

#54 Re: 全志 SOC » 发一个 荔枝派zero 能跑的 camdroid 固件, ov5647摄像头, 视频效果相当暗,很难看清楚. » 2018-11-06 10:09:13

晕哥 说:
playflash 说:

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0
[    0.000000] Linux version 3.4.39 (root@ubuntu) (gcc version 4.6.3 20120201 (prerelease) (crosstool-NG linaro-1.13.1-2012.02-20120222 - Linaro GCC 2012.02) ) #18 Fri Oct 26 23:49:45 EDT 2018

买了个flash刷进去,启动要1分钟。
晕哥,camdroid 也是 Linux 3.4.39吗?
Camdroid 不是由android 精简而来?

接串口看下log, 可能是因为没有 pmu芯片, wifi芯片,摄像头重复检测导致的。

谢谢,camdroid真的是 Linux 3.4.39?

#55 Re: 全志 SOC » 发一个 荔枝派zero 能跑的 camdroid 固件, ov5647摄像头, 视频效果相当暗,很难看清楚. » 2018-11-06 00:54:22

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0
[    0.000000] Linux version 3.4.39 (root@ubuntu) (gcc version 4.6.3 20120201 (prerelease) (crosstool-NG linaro-1.13.1-2012.02-20120222 - Linaro GCC 2012.02) ) #18 Fri Oct 26 23:49:45 EDT 2018

买了个flash刷进去,启动要1分钟。
晕哥,camdroid 也是 Linux 3.4.39吗?
Camdroid 不是由android 精简而来?

#56 Re: RK3288/RK3399/RK1108 » 有做RV1108开发板的吗 » 2018-11-04 22:39:30

那么多阻容元件,也不便宜, 主要是因为电容电阻贵了。

#57 Re: RK3288/RK3399/RK1108 » 有做RV1108开发板的吗 » 2018-11-04 22:38:05

REFDES    COMP_DEVICE_TYPE    COMP_VALUE    SYM_NAME
ANT2    T_POINT_R_0_ANT_ANT    ANT    ANT
C1    CAP NP_C0402_100NF    100nF    C0402
C2    CAP NP_C0402_100NF    100nF    C0402
C3    CAP NP_C0402_100NF    100nF    C0402
C4    CAP NP_C0603_22UF    22uF    C0603
C5    CAP NP_C0402_100NF    100nF    C0402
C6    CAP NP_C0603_1UF    1uF    C0603
C13    CAP NP_2_C0402_0.1UF    0.1uF    C0402
C14    SMALL CAP_C0603_1UF    1uF    C0603
C15    CAP NP_C0402_100NF    100nF    C0402
C16    CAP NP_4_C0402_NC    NC    C0402
C17    CAP NP_C0603_10UF    10uF    C0603
C18    CAP NP_C0402_100NF    100nF    C0402
C19    CAP NP_C0603_22UF    22uF    C0603
C70    CAPACITOR_1_C0402_0.1UF    0.1UF    C0402
C71    CAP NP_0_C0402_0.1UF    0.1uF    C0402
C73    C_0_C0402_1UF    1uF    C0402
C74    C_0_C0402_1UF    1uF    C0402
C83    CAPACITOR_0_C0603_10UF    10uF    C0603
C86    CAP NP_0_C0402_1UF    1UF    C0402
C87    CAP_0_C0805_10UF    10uF    C0805
C88    CAPACITOR_1_C0402_100PF    100PF    C0402
C89    CAPACITOR_3_C0805_10UF    10uF    C0805
C91    B0805_0_ESD0402_NC/ESD5V/4KV/3P    NC/ESD5V/4KV/3PF    ESD0402
C92    B0805_0_ESD0402_NC/ESD5V/4KV/3P    NC/ESD5V/4KV/3PF    ESD0402
C95    CAP NP_1_C0402_1UF    1uF    C0402
C96    CAPACITOR_1_C0402_0.1UF    0.1UF    C0402
C102    CAPACITOR_0_C0402_0.1UF    0.1UF    C0402
C103    CAPACITOR_0_C0402_1UF    1uF    C0402
C105    CAPACITOR_0_C0805_10UF    10uF    C0805
C109    CAPACITOR_C0603_10UF    10uF    C0603
C110    CAPACITOR_C0402_NC    NC    C0402
C113    CAPACITOR_0_C0402_10PF    10pF    C0402
C114    CAPACITOR_0_C0402_NC    NC    C0402
C115    CAPACITOR_C0603_10UF    10uF    C0603
C116    CAPACITOR_C0402_104    104    C0402
C117    CAPACITOR_C0402_104    104    C0402
C118    CAPACITOR_C0603_10UF    10uF    C0603
C122    CAPACITOR_0_C0402_NC    NC    C0402
C226    CAPACITOR_0_C0603_10UF    10uF    C0603
C229    CAPACITOR_0_C0402_1UF    1uF    C0402
C264    C1206_106_0_C0402_0.1UF    0.1uF    C0402
C265    C1206_106_0_C0805_10UF    10UF    C0805
C266    C1206_106_0_C0402_0.47UF    0.47uF    C0402
C267    C1206_106_0_C0402_0.47UF    0.47uF    C0402
C270    C1206_106_0_C0402_0R    0R    C0402
C271    C1206_106_0_C0402_0.1UF    0.1uF    C0402
C272    C1206_106_0_C0402_0.1UF    0.1uF    C0402
C1001    CAP NP_C0402_12PF    12pF    C0402
C1002    CAP NP_C0402_12PF    12pF    C0402
C1003    CAP NP_C0402_100NF    100nF    C0402
C1004    CAP NP_C0402_100NF    100nF    C0402
C1005    CAP NP_C0402_1UF    1uF    C0402
C1007    CAP NP_C0402_100NF    100nF    C0402
C1008    CAP NP_C0402_100NF    100nF    C0402
C1009    CAP NP_C0402_100NF    100nF    C0402
C1010    CAP NP_C0402_100NF    100nF    C0402
C1013    CAP NP_C0402_100NF    100nF    C0402
C1014    CAP NP_C0402_1UF    1uF    C0402
C1015    CAP NP_C0805_22UF    22uF    C0805
C1016    CAP NP_C0805_22UF    22uF    C0805
C1101    CAP NP_C0402_100NF    100nF    C0402
C1102    CAP NP_C0402_100NF    100nF    C0402
C1103    CAP NP_C0402_1UF    1uF    C0402
C1104    CAP NP_C0402_100NF    100nF    C0402
C1201    CAP NP_C0402_100NF    100nF    C0402
C1301    CAP NP_C0402_1NF    1nF    C0402
C1302    CAP NP_C0402_1NF    1nF    C0402
C1303    CAP NP_C0402_10NF    10nF    C0402
C1304    CAP NP_C0402_100NF    100nF    C0402
C1305    CAP NP_C0402_100NF    100nF    C0402
C1306    CAP NP_C0402_100NF    100nF    C0402
C1307    CAP NP_C0805_22UF    22uF    C0805
C1401    CAP NP_C0402_100NF    100nF    C0402
C1402    CAP NP_C0402_100NF    100nF    C0402
C1403    CAP NP_C0402_100NF    100nF    C0402
C1502    CAP NP_C0402_100NF    100nF    C0402
C1601    CAP NP_C0402_100NF    100nF    C0402
C1602    CAP NP_C0402_1UF    1uF    C0402
C1603    CAP NP_C0402_100NF    100nF    C0402
C1701    CAP NP_C0402_100NF    100nF    C0402
C1702    CAP NP_C0402_100NF    100nF    C0402
C1703    CAP NP_C0402_100NF    100nF    C0402
C1704    CAP NP_C0402_100NF    100nF    C0402
C1705    CAP NP_C0402_1UF    1uF    C0402
C1706    CAP NP_C0402_100NF    100nF    C0402
C1707    CAP NP_C0402_1UF    1uF    C0402
C1801    CAP NP_C0402_100NF    100nF    C0402
C1802    CAP NP_C0402_100NF    100nF    C0402
C1803    CAP NP_C0402_100NF    100nF    C0402
C1901    CAP NP_C0603_4.7UF    4.7uF    C0603
C1902    CAP NP_C0402_100NF    100nF    C0402
C1903    CAP NP_C0603_4.7UF    4.7uF    C0603
C1904    CAP NP_C0603_4.7UF    4.7uF    C0603
C1905    CAP NP_C0402_100NF    100nF    C0402
C1906    CAP NP_C0402_1UF    1uF    C0402
C1907    CAP NP_C0402_100NF    100nF    C0402
C1908    CAP NP_C0402_1UF    1uF    C0402
C1909    CAP NP_C0402_100NF    100nF    C0402
C1910    CAP NP_C0402_1UF    1uF    C0402
C2001    CAP NP_C0402_100NF    100nF    C0402
C2002    CAP NP_C0603_10UF    10uF    C0603
C2003    CAP NP_C0402_100NF    100nF    C0402
C2004    CAP NP_C0402_100NF    100nF    C0402
C2005    CAP NP_C0402_1UF    1uF    C0402
C2006    CAP NP_C0402_100NF    100nF    C0402
C2007    CAP NP_C0402_220NF    220nF    C0402
C2010    CAP NP_C0402_1UF    1uF    C0402
C2205    CAP NP_C0402_1UF    1uF    C0402
C2206    CAP NP_C0603_4.7UF    4.7uF    C0603
C2207    CAP NP_C0402_100NF    100nF    C0402
C2208    CAP NP_C0402_22PF    22pF    C0402
C2209    CAP NP_C0402_22PF    22pF    C0402
C2211    CAP NP_C0603_22UF    22uF    C0603
C2212    CAP NP_C0603_10UF    10uF    C0603
C2213    CAP NP_C0603_22UF    22uF    C0603
C2214    CAP NP_C0805_22UF    22uF    C0805
C2215    CAP NP_C0805_22UF    22uF    C0805
C2216    CAP NP_C0805_22UF    22uF    C0805
C2217    CAP NP_C0603_22UF    22uF    C0603
C2218    CAP NP_C0603_22UF    22uF    C0603
C2219    CAP NP_C0402_1UF    1uF    C0402
C2220    CAP NP_C0402_47PF    47pF    C0402
C2221    CAP NP_C0402_100NF    100nF    C0402
C2227    CAP NP_C0603_4.7UF    4.7uF    C0603
C2228    CAP NP_C0603_4.7UF    4.7uF    C0603
C2229    CAP NP_C0603_4.7UF    4.7uF    C0603
C2235    CAP NP_C0402_100NF    100nF    C0402
C4007    CAP NP_C0402_100NF    100nF    C0402
C4501    CAP NP_C0402_1UF    1uF    C0402
C4502    CAP NP_C0402_100NF    100nF    C0402
C4503    CAP NP_C0603_4.7UF    4.7uF    C0603
C4504    CAP NP_C0402_100NF    100nF    C0402
C4505    CAP NP_C0402_100NF    100nF    C0402
C4506    CAP NP_C0402_1UF    1uF    C0402
C4507    CAP NP_C0402_100NF    100nF    C0402
C4609    CAP NP_C0402_1UF    1uF    C0402
C4610    CAP NP_C0402_47PF    47pF    C0402
C4611    CAP NP_4_C0603_4.7UF    4.7uF    C0603
C4612    CAP NP_C0402_100NF    100nF    C0402
C4613    CAP NP_C0402_1UF    1uF    C0402
C4614    CAP NP_C0402_47PF    47pF    C0402
C4615    CAP NP_4_C0603_4.7UF    4.7uF    C0603
C4616    CAP NP_C0402_100NF    100nF    C0402
C4814    CAP NP_C0402_100NF    100nF    C0402
C4816    CAP NP_C0402_20PF    20pF    C0402
C4818    CAP NP_C0402_150PF    150pF    C0402
C4819    CAP NP_C0402_100NF    100nF    C0402
C4820    CAP NP_C0603_10UF    10uF    C0603
C4907    CAP NP_C0402_20PF    20pF    C0402
C4908    CAP NP_C0402_10PF    10pF    C0402
C4909    CAP NP_C0402_390PF    390pF    C0402
C6127    CAP NP_C0402_100NF    100nF    C0402
C7001    CAP NP_C0603_10UF    10uF    C0603
C7002    CAP NP_C0402_100PF    100pF    C0402
C7003    CAP NP_C0402_100PF    100pF    C0402
C7004    CAP NP_C0402_100PF    100pF    C0402
C8000    CAP NP_C0402_100NF    100nF    C0402
C8001    CAP NP_C0402_1UF    1uF    C0402
C8002    CAP NP_C0402_10NF    10nF    C0402
C8003    CAP NP_C0603_1UF    1uF    C0603
C8101    CAP NP_C0402_100NF    100nF    C0402
C8102    CAP NP_C0603_10UF    10uF    C0603
C8103    CAP NP_C0402_100NF    100nF    C0402
C8104    CAP NP_C1210_NC/220UF    NC/220uF    C1210
C8105    CAP NP_C0805_22UF    22uF    C0805
C8106    CAP NP_C0805_22UF    22uF    C0805
C8107    CAP NP_C0402_100NF    100nF    C0402
C8353    CAP NP_C0402_100NF    100nF    C0402
C8354    CAP NP_C0402_1UF    1uF    C0402
CN1    FPC24-0.5_P_FPC24_0_5M_FPC24-0.    FPC24-0.5    P_FPC24_0_5M
CN2    FPC24-0.5_P_FPC24_0_5M_FPC24-0.    FPC24-0.5    P_FPC24_0_5M
D1    DIODE_SOD_323_B5819WS    B5819WS    SOD_323
D8    1_1.5KE100A_ESD0402_NC/ESD5V/4K    NC/ESD5V/4KV/3PF    ESD0402
D32    DIODE_SCHOTTKY_SOD123_1N5819    1N5819    SOD123
D2001    DIODE_SMA_SS24    SS24    SMA
D2201    DIODE BI_DIRTRIG_ESD0402_ESD54    ESD5451N    ESD0402
D4802    BAT54S/SOT_2_SOT-23_BAT54S    BAT54S    SOT-23
D8000    DIODE_SOD323_1N4148WS    1N4148WS    SOD323
D8101    DIODE BI_DIRTRIG_ESD0402_ESD_1    ESD5471X    ESD0402
D8102    DIODE BI_DIRTRIG_ESD0402_ESD_1    ESD5471X    ESD0402
D8103    DIODE BI_DIRTRIG_ESD0402_ESD_1    ESD5471X    ESD0402
D8104    DIODE BI_DIRTRIG_ESD0402_ESD_1    ESD5471X    ESD0402
D8105    DIODE BI_DIRTRIG_ESD0402_ESD_1    ESD5471X    ESD0402
D8106    DIODE BI_DIRTRIG_ESD0402_ESD_1    ESD5471X    ESD0402
D8107    DIODE BI_DIRTRIG_ESD0402_ESD_1    ESD5471X    ESD0402
D8108    DIODE_SMA_1N5819    1N5819    SMA
ED2001    DIODE BI_DIRTRIG_ESD0402_AZ582    AZ5825-01F    ESD0402
ED2201    DIODE BI_DIRTRIG_ESD0402_NC/AZ    NC/AZ5825-01F    ESD0402
ED7001    DIODE BI_DIRTRIG_ESD0402_ESD54    ESD5451N    ESD0402
ED7002    DIODE BI_DIRTRIG_ESD0402_ESD54    ESD5451N    ESD0402
FB1    BEAD_L0603_120R-100M    120R-100M    L0603
FB2    INDUCTOR_0_L0603_600R-100M    600R-100M    L0603
FB3    INDUCTOR_0_L0603_0R    0R    L0603
FB4    BEAD_L0603_600R-100M    600R-100M    L0603
FB2001    INDUCTORCOM_L0603D_NC/90R100M    NC/90R100M    L0603D
FB2002    BEAD_L0603_600R-100M    600R-100M    L0603
J8    JACKA_TG_0_KG352_NC    NC    KG352
J18    CON2_2_CON2_1_25_CON2    CON2    CON2_1_25
J4802    HP_JACK_7_PJ-3537-L6G_6PIN2.5    6PIN2.5    PJ-3537-L6G
J8101    TF_SD_SOCKET_MINI_CARD_TF_SD_SO    TF_SD_SOCKET    MINI_CARD
J8102    CON2_2_CON2_1_25_CON2    CON2    CON2_1_25
JP3    FPC30_0_CN-SMD6P-H-0_5-B_FPC-0.    FPC-0.5MM-6PIN    CN-SMD6P-H-0_5-B
L1    INDUCTORS OFFERRITE_IND_303015    10uH    IND_303015
L7    R_R0402_0R    0R    R0402
L13    INDUCTORS OFFERRITE_IND_252012    2.2uH    IND_252012
L2202    INDUCTORS OFFERRITE_IND_252010    470nH    IND_252010
L2203    INDUCTORS OFFERRITE_IND_252010    470nH    IND_252010
L2204    INDUCTORS OFFERRITE_IND_252010    470nH    IND_252010
L2205    INDUCTORS OFFERRITE_IND_252010    470nH    IND_252010
L4802    INDUCTOR_L0603_1.8UH    1.8uH    L0603
L4901    INDUCTOR_L0603_180NH    180nH    L0603
MIC7001    MIC_MIC-1_MIC-4020    MIC-4020    MIC-1
OQ3    PMOS_0_SOT-23_SI2301    SI2301    SOT-23
P1    CON2_1_3P-1_25-SMT_1.25MM-3P    1.25MM-3P    3P-1_25-SMT
Q2    MOSFETN_SOT_23_WNM2016-3/TR    WNM2016-3/TR    SOT_23
Q9    PMOS_1_SOT-23_SI2301    SI2301    SOT-23
Q10    NPN_SOT23_MMBT3904    MMBT3904    SOT23
Q12    NPN_SOT-23_MMBT3904    MMBT3904    SOT-23
Q20    NPN_SOT23_MMBT3904    MMBT3904    SOT23
Q21    NPN_SOT23_MMBT3904    MMBT3904    SOT23
Q1102    NPN_0_SOT_23_S8050    S8050    SOT_23
Q2001    MOSFETN_0_SOT-23_AO3401    AO3401    SOT-23
Q2201    MOSFETN_0_SOT23_AO3401    AO3401    SOT23
Q4501    NPN_0_SOT-23_MMBT3904    MMBT3904    SOT-23
Q4802    2N3904_2_SOT23_8050    8050    SOT23
Q8000    NPN_0_SOT_23_MMBT3904    MMBT3904    SOT_23
Q8101    MOSFETP_SOT-23_SI2301    SI2301    SOT-23
Q8102    2N3904_2_SOT23_8050    8050    SOT23
R5    RESISTOR_R0402_51K    51K    R0402
R6    RESISTOR_R0402_0R    0R    R0402
R7    RESISTOR_0_R0402_3.9K    3.9K    R0402
R9    RESISTOR_0_R0402_4.7K    4.7K    R0402
R14    R0805_0_R0603_0R    0R    R0603
R19    RES 1B_R0402_100K    100K    R0402
R20    RESISTOR_R0402_10K    10K    R0402
R21    RES 1B_R0603_3.48R%1    3.48R%1    R0603
R23    R_R0402_22K    22K    R0402
R40    R_0_R0402_10K    10k    R0402
R42    RESISTOR_R0402_10K    10K    R0402
R43    R_0_R0402_10K    10k    R0402
R77    R_R0402_47K    47K    R0402
R80    R_R0402_NC    NC    R0402
R83    R_R0402_NC    NC    R0402
R84    R_R0402_47K    47K    R0402
R86    R_R0402_47K    47K    R0402
R88    R_R0402_47K    47K    R0402
R89    R_R0402_47K    47K    R0402
R90    R_R0402_47K    47K    R0402
R105    R_R0402_47K    47K    R0402
R113    RESISTOR_R0402_510K    510K    R0402
R123    R_R0402_510K    510K    R0402
R125    RESISTOR_R0402_100K-1%    100K-1%    R0402
R170    R_R0402_1M-1%    1M-1%    R0402
R175    R_R0402_130K-1%    130K-1%    R0402
R217    R0805_0_R0402_100K    100K    R0402
R218    R0805_0_R0402_10K    10K    R0402
R219    R0805_0_R0402_20K    20K    R0402
R220    R0805_0_R0402_10K    10K    R0402
R230    R_R0603_NC    NC    R0603
R240    R_R0402_NC    NC    R0402
R241    R_R0603_0R    0R    R0603
R242    R_R0402_0R    0R    R0402
R365    R_1_R0402_100R    100R    R0402
R366    R_1_R0402_10K    10K    R0402
R368    R_1_R0402_1K    1K    R0402
R376    R_1_R0402_0R    0R    R0402
R608    R_R0402_NC/4.7K    NC/4.7K    R0402
R1001    RESISTOR_R0402_22R    22R    R0402
R1102    RESISTOR_R0402_39K    39K    R0402
R1103    RESISTOR_R0402_47K    47K    R0402
R1106    RESISTOR_R0402_47K    47K    R0402
R1107    RESISTOR_R0402_47K    47K    R0402
R1109    RESISTOR_R0402_0R    0R    R0402
R1301    RESISTOR_R0402_1K    1K    R0402
R1302    RESISTOR_R0402_1K    1K    R0402
R1303    RESISTOR_R0402_240R    240R    R0402
R1401    RESISTOR_R0402_133R    133R    R0402
R1601    RESISTOR_R0402_2K    2K    R0402
R1602    RESISTOR_R0402_0R    0R    R0402
R1603    RESISTOR_R0402_NC/0R    NC/0R    R0402
R1701    RESISTOR_R0402_2K    2K    R0402
R1902    RESISTOR_R0402_2K    2K    R0402
R2001    RESISTOR_R0603_0R    0R    R0603
R2002    RESISTOR_R0402_10K    10K    R0402
R2003    RESISTOR_R0603_0R    0R    R0603
R2004    RESISTOR_R0402_15K    15K    R0402
R2005    RESISTOR_R0402_10K    10K    R0402
R2006    RESISTOR_R0402_200K    200K    R0402
R2007    RESISTOR_R0402_4.7K    4.7K    R0402
R2008    RESISTOR_R0402_1K    1K    R0402
R2009    RESISTOR_R0402_22K    22K    R0402
R2010    RESISTOR_R0402_200K    200K    R0402
R2209    RESISTOR_R0402_56K/1%    56K/1%    R0402
R2211    RESISTOR_R0402_140K    140K    R0402
R2215    RESISTOR_R0402_100K    100K    R0402
R2216    RESISTOR_R0402_10K    10K    R0402
R2217    RESISTOR_R0402_4.7K    4.7K    R0402
R2218    RESISTOR_R0402_4.7K    4.7K    R0402
R2219    RESISTOR_R0402_10K    10K    R0402
R2234    RESISTOR_R0402_4.7K    4.7K    R0402
R2235    RESISTOR_R0402_100K    100K    R0402
R4005    RESISTOR_R0402_10K    10K    R0402
R4006    RESISTOR_R0402_10K    10K    R0402
R4501    RESISTOR_R0402_0R    0R    R0402
R4502    RESISTOR_R0402_0R    0R    R0402
R4503    RESISTOR_R0402_51K    51K    R0402
R4506    RESISTOR_R0402_10K    10K    R0402
R4507    RESISTOR_R0402_0R    0R    R0402
R4508    RESISTOR_R0402_56K    56K    R0402
R4609    R_R0402_4.7K    4.7K    R0402
R4610    R_R0402_120K    120K    R0402
R4611    RESISTOR_0_R0402_150K    150K    R0402
R4612    RESISTOR_0_R0402_120K    120K    R0402
R4613    R_R0402_4.7K    4.7K    R0402
R4614    R_R0402_120K    120K    R0402
R4615    RESISTOR_R0402_280K    280K    R0402
R4616    RESISTOR_R0402_91K    91K    R0402
R4814    RESISTOR_R0603_10K    10K    R0603
R4817    RESISTOR_R0402_37R5    37R5    R0402
R4818    RESISTOR_R0603_75R    75R    R0603
R4819    RESISTOR_R0603_75R    75R    R0603
R4823    RESISTOR_R0603_0R    0R    R0603
R4824    RESISTOR_R0402_100K    100K    R0402
R4903    RESISTOR_R0402_75R    75R    R0402
R6109    RESISTOR_R0402_0R    0R    R0402
R7001    RESISTOR_R0402_2.2K    2.2K    R0402
R7002    RESISTOR_R0402_100R    100R    R0402
R7003    RESISTOR_R0402_2.2K    2.2K    R0402
R8000    RESISTOR_R0402_10K    10K    R0402
R8001    RESISTOR_R0402_510K    510K    R0402
R8004    RESISTOR_R0402_0R    0R    R0402
R8101    RESISTOR_R0402_22R    22R    R0402
R8102    RESISTOR_R0402_22R    22R    R0402
R8103    RESISTOR_R0402_22R    22R    R0402
R8104    RESISTOR_R0402_22R    22R    R0402
R8105    RESISTOR_R0402_22R    22R    R0402
R8106    RESISTOR_R0402_22R    22R    R0402
R8107    RESISTOR_R0402_NC/0R    NC/0R    R0402
R8108    RESISTOR_R0402_NC/10K    NC/10K    R0402
R8109    RESISTOR_R0402_10K    10K    R0402
R8110    RESISTOR_R0402_100K    100K    R0402
R8112    R_R0402_10K    10K    R0402
R8114    R_R0402_0R    0R    R0402
R8116    RESISTOR_R0402_100R    100R    R0402
R8117    RESISTOR_R0402_100R    100R    R0402
R8119    RESISTOR_R0402_10K    10K    R0402
R8121    RESISTOR_R0402_0R    0R    R0402
R8224    RESISTOR_R0402_10K    10K    R0402
R8228    RESISTOR_R0402_10K    10K    R0402
R8229    RESISTOR_R0402_NC/100K    NC/100K    R0402
R8230    RESISTOR_R0402_NC/0R    NC/0R    R0402
R8231    RESISTOR_R0402_NC/0R    NC/0R    R0402
R8232    RESISTOR_R0402_NC/0R    NC/0R    R0402
R8234    RESISTOR_R0402_100K    100K    R0402
R8235    RESISTOR_R0402_100K    100K    R0402
R8236    RESISTOR_R0402_1K    1K    R0402
R8317    RESISTOR_R0402_4.7K    4.7K    R0402
R8344    RESISTOR_R0402_2.2K    2.2K    R0402
R8345    RESISTOR_R0402_2.2K    2.2K    R0402
R8348    RESISTOR_R0603_100K    100K    R0603
R8349    RESISTOR_R0603_22K    22K    R0603
R8350    RESISTOR_R0603_100K    100K    R0603
R8351    RESISTOR_R0402_200K    200K    R0402
R8352    RESISTOR_R0402_200K    200K    R0402
SW2201    KEY_4PIN_IT-1204A_KEY_12X12    KEY_12X12    IT-1204A
TP39    T_POINT_R_TEST_GND    GND    TEST
TP119    TP_T3_TP    TP    T3
TP120    TP_T3_TP    TP    T3
TP4805    TP_TP_1R00_TP_1.0    TP_1.0    TP_1R00
TP4810    TP_TP_1R00_TP_1.0    TP_1.0    TP_1R00
TP4812    T_POINT_R_TEST_GND    GND    TEST
TP4813    TP_TP_1R00_TP_1.0    TP_1.0    TP_1R00
TP4814    TP_TP_1R00_TP_1.0    TP_1.0    TP_1R00
U1    BMA222_0_QFN12P0_5L2_0X_DA380    DA380    QFN12P0_5L2_0X
U3    RT8024-SOT25_0_SOT-23_LN61CN270    LN61CN2702MR    SOT-23
U4    LDO_PT5128_SOT_23_6_PT5128E23F-    PT5128E23F-E    SOT_23_6
U5    WN7911B-ZZ_1_WIFI_RS06_RTL8189E    RTL8189ES    WIFI_RS06
U8    RT9266PE_3_SOT23-6_TCS7608    TCS7608    SOT23-6
U15    LM7805_3_SOT-23_3.3V    3.3V    SOT-23
U16    LD1117/SOT_0_SOT-25_WL2801E33-5    WL2801E33-5TR    SOT-25
U17    SN74AHCT04_0_SOT23_6_ALPU8026    ALPU8026    SOT23_6
U21    TS4890IST_0_MSOP8_XPT4890    XPT4890    MSOP8
U1001    DSP_RK1108G_BGA359_14R00X14R00X    DSP_RK1108    BGA359_14R00X14R00X1R20
U2002    CHARGER_PT6181E23E_SOT_23_5_TCS    TCS4054    SOT_23_5
U2202    RK805_0_QFN32_4R00X4R00X0R90_T_    RK805    QFN32_4R00X4R00X0R90_T
U4003    GD25Q256C_WSON_SOP8_GD25Q256C    GD25Q256C    SOP8
U4600    DS8008_4_SOT_23_5_TCS2102EADJ    TCS2102EADJ    SOT_23_5
U4602    DS8008_4_SOT_23_5_TCS2102EADJ    TCS2102EADJ    SOT_23_5
U8000    BMA250_0_LGA12_2X2MM_BMA250    BMA250    LGA12_2X2MM
U8204    WS3205D_DFN8L_WS3205D_WS3205D    WS3205D    DFN8L_WS3205D
U8205    DCDC_MP1488_SOT_23_6L_MP1488    MP1488    SOT_23_6L
USB2001    USBMIN_1_USB-MINI-B_HUM011D-5-    HUM011D-5-S    USB-MINI-B
Y1001    CRYSTAL_4P_CRY4C_24MHZ    24MHz    CRY4C
Y2201    CRYSTAL_2P_1G_CRY2_6R90X1R40X1R    32.768KHz    CRY2_6R90X1R40X1R30

#61 Re: 全志 SOC » F1C100s有没有唯一的ID之类的? » 2018-10-21 15:39:04

晕哥 说:
wifi 说:

谢谢,旧片风枪350℃拆,新片的40w烙铁焊,现在是假货太多,真假难辨,TB上也不知道哪个真假

Q群回复过了,这里再回一次吧。
找 索智,睿欣,宇芯 这三家正规代理购买,
价格未必比淘宝山寨卖家贵,
淘宝上的汕头货 99% 是拆机的。

的确,汕头做翻新成产业链, 不知道他们是否翻新电容。

#62 Re: 全志 SOC » 编译索智(Sochip) S3 SDK (zeta) 【提供DXP格式原理图与PCB,感谢 @playflash】 » 2018-10-18 22:09:50

晕哥 说:
tom 说:

可以用ffmpeg试一试视频转换是不是正常的

正常也没有用,需要从 v4l2 接口获取原始数据,利用整合好的硬件编解码器的ffmpeg转换成为
mp4文件

晕哥,你的是海豚派吧?用S3的开发包 摄像头正常出图像?

#63 Re: 全志 SOC » 大家希望S3模组使用什么接口引出?希望坛友脑爆一下 » 2018-10-18 16:12:19

lcfmax 说:

BGA焊盘做0.3,然后过孔就是0.35/0.2去做了

0.35 可否增加到0.40,那样打样就便宜了。
现在pcb厂家都用机械方式钻孔,激光钻孔机真的很贵?

#64 Re: 全志 SOC » 大家希望S3模组使用什么接口引出?希望坛友脑爆一下 » 2018-10-18 10:24:15

lcfmax 说:

S3的BGA间距多少的

0.65mm的间距, 0.35mm的球径
这个芯片似乎要用到过孔内径0.2, 外径0.35,这个规格的孔不知道哪个PCB厂可以做了。

#66 Re: 全志 SOC » 能在linux下使用h264编解码功能的V3S方案,只有海豚派吗? » 2018-10-17 17:20:18

ippen 说:
playflash 说:
ippen 说:

最开始我还画了pcb,准备自己去做几个测试板,还没做板子,就出现了licheepi zero,所以就没做板子,用v3s测试了

你用什么摄像头, 调试通了?

我要搞的小东西不需要视频,所以没关注
我只要用usb和sd卡

那licheepi nano挺适合。开始想过用海思的,海思的功耗偏大,电池供电不怎样适合。

#67 Re: 全志 SOC » 能在linux下使用h264编解码功能的V3S方案,只有海豚派吗? » 2018-10-17 11:23:11

ippen 说:

最开始我还画了pcb,准备自己去做几个测试板,还没做板子,就出现了licheepi zero,所以就没做板子,用v3s测试了

你用什么摄像头, 调试通了?

#68 Re: 全志 SOC » 编译索智(Sochip) S3 SDK (zeta) 【提供DXP格式原理图与PCB,感谢 @playflash】 » 2018-10-16 14:55:36

晕哥 说:
playflash 说:
晕哥 说:

现在是把 camdroid 里面的 sys_config.fex 覆盖 索智 SDK里面的 sys_config.fex,
编译出 img, 能烧录到 V3s, 但是卡住在 staring kernel ...

真是一个悲伤的消息.

晕哥, 你搜索原来S3的linux-3.4/.config文件试试,关键字:80m,85m,更改为20m,25m,  按字面理解,这是预留内存给图像处理,之后zmake all
我不在linux电脑上, 具体这一项的名字, 我暂时查不到。
还不行的话, 我上传我的.config给你研究一下。

CONFIG_ION=y
CONFIG_ION_SUNXI=y
CONFIG_ION_SUNXI_RESERVE_LIST="80m,85m"

改成这样:

CONFIG_ION=y
CONFIG_ION_SUNXI=y
CONFIG_ION_SUNXI_RESERVE_LIST="28m,28m"

就可以了吗?

我试一试...

应该是这里。

#69 Re: 全志 SOC » 编译索智(Sochip) S3 SDK (zeta) 【提供DXP格式原理图与PCB,感谢 @playflash】 » 2018-10-16 12:41:15

晕哥 说:

现在是把 camdroid 里面的 sys_config.fex 覆盖 索智 SDK里面的 sys_config.fex,
编译出 img, 能烧录到 V3s, 但是卡住在 staring kernel ...

真是一个悲伤的消息.

晕哥, 你搜索原来S3的linux-3.4/.config文件试试,关键字:80m,85m,更改为20m,25m,  按字面理解,这是预留内存给图像处理,之后zmake all
我不在linux电脑上, 具体这一项的名字, 我暂时查不到。
还不行的话, 我上传我的.config给你研究一下。

#71 Re: 全志 SOC » 小容量的TF卡,有没有质量好的供货渠道? » 2018-10-15 17:04:54

lilo 说:
Quotation 说:

小容量TF卡,绝对没有可靠的,血的教训……
正规大厂在产的最小容量也是8G了,再小的容量都是没牌子的,质量特别不可靠。8G的Sandisk是我们用下来最便宜又有保障的了。

8G Scandisk 现在什么价格?

前段时间买过KS, 20元多
我主要是想买2G, 都是山寨的, 4G和8G的价格相差不大。

话说,这种 https://whycan.cn/t_1694.html
假如用在V3s上面, 焊在板上后,如何分区和拷贝数据到上面?预留Testpoint引线出来,再接读卡器?我以前在一个板上做过类似事情, 卡读不了, 可能因为有些信号线已经上拉或下拉,读卡器内部也做了相似工作, 有冲突。

#72 Re: 全志 SOC » 编译索智(Sochip) S3 SDK (zeta) 【提供DXP格式原理图与PCB,感谢 @playflash】 » 2018-10-13 22:04:31

晕哥 说:

@playflash 这是用主线 uboot, 运行在tf卡上?

晕哥,应该是。
主线linux 与BSP的uboot 是一样的吧,好象我在这里下载的
https://whycan.cn/t_682.html

#73 Re: 全志 SOC » 编译索智(Sochip) S3 SDK (zeta) 【提供DXP格式原理图与PCB,感谢 @playflash】 » 2018-10-13 21:27:48

<0x08><0x08><0x08> 1 <0x08><0x08><0x08> 0 
[19:58:06:225] switch to partitions #0, OK
[19:58:06:228] mmc0 is current device
[19:58:06:798] Scanning mmc 0:1...
[19:58:06:852] Found U-Boot script /boot.scr
[19:58:06:863] reading /boot.scr
[19:58:06:878] 290 bytes read in 15 ms (18.6 KiB/s)
[19:58:06:883] ## Executing script at 41900000
[19:58:06:895] reading uImage
[19:58:07:054] 2928680 bytes read in 160 ms (17.5 MiB/s)
[19:58:07:066] reading script.bin
[19:58:07:092] 32624 bytes read in 25 ms (1.2 MiB/s)
[19:58:07:095] ## Booting kernel from Legacy Image at 41000000 ...
[19:58:07:102]    Image Name:   Linux-3.4.39
[19:58:07:107]    Image Type:   ARM Linux Kernel Image (uncompressed)
[19:58:07:112]    Data Size:    2928616 Bytes = 2.8 MiB
[19:58:07:112]    Load Address: 40008000
[19:58:07:117]    Entry Point:  40008000
[19:58:07:117]    Verifying Checksum ... OK
[19:58:07:141]    Loading Kernel Image ... OK
[19:58:07:158] Using machid 0x1029 from environment
[19:58:07:163] 
[19:58:07:163] Starting kernel ...
[19:58:07:163] 
[19:58:07:435] [    0.000000] Booting Linux on physical CPU 0
[19:58:07:451] [    0.000000] Linux version 3.4.39 (root@9a416b1c812e) (gcc version 5.3.1 20160412 (Linaro GCC 5.3-2016.05) ) #5 Sat Oct 13 11:49:38 UTC 2018
[19:58:07:455] [    0.000000] CPU: ARMv7 Processor [410fc075] revision 5 (ARMv7), cr=10c5387d
[19:58:07:465] [    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[19:58:07:473] [    0.000000] Machine: sun8i
[19:58:07:480] [    0.000000] Ignoring unrecognised tag 0x00000000
[19:58:07:480] [    0.000000] Initialized persistent memory from 41d20800-41d307ff
[19:58:07:486] [    0.000000] Memory policy: ECC disabled, Data cache writeback
[19:58:07:494] [    0.000000] script_init enter!
[19:58:07:500] [    0.000000] script_init exit!
[19:58:07:500] [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 16256
[19:58:07:507] [    0.000000] Kernel command line: console=ttyS0,115200 panic=5 rootwait root=/dev/mmcblk0p2 earlyprintk rw
[19:58:07:517] [    0.000000] PID hash table entries: 256 (order: -2, 1024 bytes)
[19:58:07:525] [    0.000000] Dentry cache hash table entries: 8192 (order: 3, 32768 bytes)
[19:58:07:532] [    0.000000] Inode-cache hash table entries: 4096 (order: 2, 16384 bytes)
[19:58:07:540] [    0.000000] Memory: 64MB = 64MB total
[19:58:07:546] [    0.000000] Memory: 36664k/36664k available, 28872k reserved, 0K highmem
[19:58:07:553] [    0.000000] Virtual kernel memory layout:
[19:58:07:561] [    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
[19:58:07:568] [    0.000000]     fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)
[19:58:07:568] [    0.000000]     vmalloc : 0xc4800000 - 0xff000000   ( 936 MB)
[19:58:07:576] [    0.000000]     lowmem  : 0xc0000000 - 0xc4000000   (  64 MB)
[19:58:07:583] [    0.000000]     modules : 0xbf000000 - 0xc0000000   (  16 MB)
[19:58:07:590] [    0.000000]       .text : 0xc0008000 - 0xc0572000   (5544 kB)
[19:58:07:597] [    0.000000]       .init : 0xc0572000 - 0xc0598000   ( 152 kB)
[19:58:07:605] [    0.000000]       .data : 0xc0598000 - 0xc0676180   ( 889 kB)
[19:58:07:612] [    0.000000]        .bss : 0xc06761a4 - 0xc075c560   ( 921 kB)
[19:58:07:619] [    0.000000] NR_IRQS:544
[19:58:07:619] [    0.000000] 524 ahb1 set parent pll_periph0d2
[19:58:07:628] [    0.000000] Architected local timer running at 24.00MHz.
[19:58:07:628] [    0.000000] Switching to timer-based delay loop
[19:58:07:635] [    0.000000] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 178956ms
[19:58:07:643] [    0.000000] Console: colour dummy device 80x30
[19:58:07:649] [    0.000152] Calibrating delay loop (skipped), value calculated using timer frequency.. 4800.00 BogoMIPS (lpj=24000000)
[19:58:07:658] [    0.000173] pid_max: default: 32768 minimum: 301
[19:58:07:666] [    0.000310] Mount-cache hash table entries: 512
[19:58:07:674] [    0.000846] CPU: Testing write buffer coherency: ok
[19:58:07:674] [    0.001096] Setting up static identity map for 0x403e8d40 - 0x403e8d74
[19:58:07:681] [    0.001738] devtmpfs: initialized
[19:58:07:689] [    0.003133] VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 5
[19:58:07:696] [    0.003276] pinctrl core: initialized pinctrl subsystem
[19:58:07:706] [    0.003751] NET: Registered protocol family 16
[19:58:07:706] [    0.004046] DMA: preallocated 128 KiB pool for atomic coherent allocations
[19:58:07:713] [    0.004094] script_sysfs_init success
[19:58:07:720] [    0.004827] gpiochip_add: registered GPIOs 0 to 223 on device: sunxi-pinctrl
[19:58:07:728] [    0.005686] sunxi-pinctrl sunxi-pinctrl: initialized sunXi PIO driver
[19:58:07:734] [    0.006020] gpiochip_add: registered GPIOs 1024 to 1031 on device: axp-pinctrl
[19:58:07:742] [    0.006646] persistent_ram: found existing buffer, size 23183, start 23183
[19:58:07:748] [    0.029715] console [ram-1] enabled
[19:58:07:757] [    0.030118] [sunxi-module]: [sunxi-module.0] probe success
[19:58:07:764] [    0.030349] Not Found clk pll_isp in script 
[19:58:07:764] [    0.030452] Not Found clk pll_video in script 
[19:58:07:772] [    0.030636] Not Found clk pll_ve in script 
[19:58:07:772] [    0.030734] Not Found clk pll_periph0 in script 
[19:58:07:780] [    0.030834] Not Found clk pll_de in script 
[19:58:07:786] [    0.031017] sunxi_default_clk_init
[19:58:07:786] [    0.031115] try to set pll6ahb1 to 200000000
[19:58:07:794] [    0.031223] Error not get clk pll6ahb1
[19:58:07:801] [    0.031411] Error not get clk pll6ahb1try to set ahb1 to 200000000
[19:58:07:808] [    0.031622] try to set apb1 to 100000000
[19:58:07:808] [    0.031973] ===fe3o4==== sunxi_root_procfs_attach ret:0
[19:58:07:815] [    0.035680] bio: create slab <bio-0> at 0
[19:58:07:823] [    0.036046] pwm module init!
[19:58:07:823] [    0.037934] SCSI subsystem initialized
[19:58:07:830] [    0.038268] usbcore: registered new interface driver usbfs
[19:58:07:836] [    0.038517] usbcore: registered new interface driver hub
[19:58:07:844] [    0.038759] usbcore: registered new device driver usb
[19:58:07:844] [    0.038981] twi_chan_cfg()341 - [twi0] has no twi_speed!
[19:58:07:850] [    0.039171] twi_chan_cfg()352 - [twi0] has no twi_regulator.
[19:58:07:857] [    0.039275] twi_chan_cfg()341 - [twi1] has no twi_speed!
[19:58:07:864] [    0.039462] twi_chan_cfg()352 - [twi1] has no twi_regulator.
[19:58:07:871] [    0.040174] Linux video capture interface: v2.00
[19:58:07:878] [    0.040459] gpiochip_add: gpios 1024..1028 (axp_pin) failed to register
[19:58:07:884] [    0.040561] axp pinctrl used,skip
[19:58:07:884] [    0.041030] Advanced Linux Sound Architecture Driver Version 1.0.25.
[19:58:07:892] [    0.041915] cfg80211: Calling CRDA to update world regulatory domain
[19:58:07:899] [    0.042359] Switching to clocksource arch_sys_counter
[19:58:07:906] [    0.048303] NET: Registered protocol family 2
[19:58:07:913] [    0.048751] IP route cache hash table entries: 1024 (order: 0, 4096 bytes)
[19:58:07:920] [    0.049337] TCP established hash table entries: 2048 (order: 2, 16384 bytes)
[19:58:07:927] [    0.049568] TCP bind hash table entries: 2048 (order: 1, 8192 bytes)
[19:58:07:934] [    0.049691] TCP: Hash tables configured (established 2048 bind 2048)
[19:58:07:943] [    0.049879] TCP: reno registered
[19:58:07:943] [    0.049982] UDP hash table entries: 256 (order: 0, 4096 bytes)
[19:58:07:950] [    0.049982] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[19:58:07:959] [    0.049982] NET: Registered protocol family 1
[19:58:07:966] [    0.049982] sunxi_reg_init enter
[19:58:07:966] [    0.050588] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[19:58:07:977] [    0.050837] jffs2: version 2.2. (NAND) (SUMMARY)  <0xc2><0xa9> 2001-2006 Red Hat, Inc.
[19:58:07:992] [    0.051124] msgmni has been set to 71
[19:58:07:992] [    0.052120] io scheduler noop registered
[19:58:07:992] [    0.052319] io scheduler deadline registered
[19:58:08:012] [    0.052507] io scheduler cfq registered (default)
[19:58:08:012] [    0.053007] [DISP]disp_module_init
[19:58:08:012] [    0.053416] cmdline,disp=
[19:58:08:012] [    0.054027] rotation_sw module is config as no used
[19:58:08:012] [    0.054238] [DISP] disp_get_rotation_sw,line:78:disp 0 out of range? g_rot_sw=0
[19:58:08:032] [    0.054436] [DISP] disp_init_connections,line:289:NULL pointer: 0, 0
[19:58:08:032] [    0.057031] [DISP] Fb_map_kernel_logo,line:924:Fb_map_kernel_logo failed!
[19:58:08:043] [    0.059175] [DISP] disp_sys_power_enable,line:387:some error happen, fail to get regulator 
[19:58:08:043] [    0.060261] [DISP]disp_module_init finish
[19:58:08:051] [    0.060606] sw_uart_get_devinfo()1503 - uart0 has no uart_regulator.
[19:58:08:061] [    0.061085] uart0: ttyS0 at MMIO 0x1c28000 (irq = 32) is a SUNXI
[19:58:08:068] [    0.061280] sw_uart_pm()890 - uart0 clk is already enable
[19:58:08:068] [    0.061392] sw_console_setup()1233 - console setup baud 115200 parity n bits 8, flow n
[19:58:08:077] [    0.215877] console [ttyS0] enabled
[19:58:08:085] [    0.707793] sunxi_spi_chan_cfg()1376 - [spi-0] has no spi_regulator.
[19:58:08:094] [    0.715579] spi spi0: master is unqueued, this is deprecated
[19:58:08:101] [    0.723498] Failed to alloc md5
[19:58:08:108] [    0.727162] eth0: Use random mac address
[19:58:08:108] [    0.731797] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[19:58:08:133] [    0.759321] sunxi-ehci sunxi-ehci.1: SW USB2.0 'Enhanced' Host Controller (EHCI) Driver
[19:58:08:152] [    0.768473] sunxi-ehci sunxi-ehci.1: new USB bus registered, assigned bus number 1
[19:58:08:152] [    0.777196] sunxi-ehci sunxi-ehci.1: irq 104, io mem 0xf1c1a000
[19:58:08:174] [    0.800110] sunxi-ehci sunxi-ehci.1: USB 0.0 started, EHCI 1.00
[19:58:08:190] [    0.807479] hub 1-0:1.0: USB hub found
[19:58:08:190] [    0.811829] hub 1-0:1.0: 1 port detected
[19:58:08:199] [    0.816571] sunxi-ehci sunxi-ehci.1: remove, state 1
[19:58:08:199] [    0.822297] usb usb1: USB disconnect, device number 1
[19:58:08:206] [    0.828944] sunxi-ehci sunxi-ehci.1: USB bus 1 deregistered
[19:58:08:224] [    0.845462] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[19:58:08:246] [    0.872536] sunxi-ohci sunxi-ohci.1: SW USB2.0 'Open' Host Controller (OHCI) Driver
[19:58:08:264] [    0.881259] sunxi-ohci sunxi-ohci.1: new USB bus registered, assigned bus number 1
[19:58:08:264] [    0.889870] sunxi-ohci sunxi-ohci.1: irq 105, io mem 0xf1c1a400
[19:58:08:328] [    0.954556] hub 1-0:1.0: USB hub found
[19:58:08:349] [    0.958898] hub 1-0:1.0: 1 port detected
[19:58:08:349] [    0.963727] sunxi-ohci sunxi-ohci.1: remove, state 1
[19:58:08:349] [    0.969344] usb usb1: USB disconnect, device number 1
[19:58:08:349] [    0.975625] sunxi-ohci sunxi-ohci.1: USB bus 1 deregistered
[19:58:08:370] [    0.992023] Initializing USB Mass Storage driver...
[19:58:08:375] [    0.997711] usbcore: registered new interface driver usb-storage
[19:58:08:394] [    1.004495] USB Mass Storage support registered.
[19:58:08:394] [    1.009976] file system registered
[19:58:08:394] [    1.014887] android_usb gadget: Mass Storage Function, version: 2009/09/11
[19:58:08:413] [    1.022667] android_usb gadget: Number of LUNs=1
[19:58:08:413] [    1.027992]  lun0: LUN: removable file: (no medium)
[19:58:08:413] [    1.033803] android_usb gadget: android_usb ready
[19:58:08:424] [    1.039335] sunxikbd_script_init: key para not found, used default para. 
[19:58:08:424] [    1.047914] sunxi-rtc sunxi-rtc: rtc core: registered sunxi-rtc as rtc0
[19:58:08:441] [    1.056585] usbcore: registered new interface driver uvcvideo
[19:58:08:441] [    1.063130] USB Video Class driver (v1.0.8_SONiX_v2.6.36.04)
[19:58:08:455] [    1.069754] [VFE]cci probe start cci_sel = 0!
[19:58:08:455] [    1.074743] [VFE]cci probe end cci_sel = 0!
[19:58:08:455] [    1.079615] [VFE]cci_init end
[19:58:08:467] [    1.083032] [VFE]Welcome to Video Front End driver
[19:58:08:467] [    1.088676] [VFE]pdev->id = 0
[19:58:08:467] [    1.092171] [VFE]dev->mipi_sel = 0
[19:58:08:480] [    1.096048] [VFE]dev->vip_sel = 0
[19:58:08:480] [    1.099813] [VFE]dev->isp_sel = 0
[19:58:08:488] [    1.109736] [VFE_WARN]vfe vpu clock is null
[19:58:08:496] [    1.114790] sunxi-pinctrl sunxi-pinctrl: pin already requested
[19:58:08:496] [    1.121391] sunxi-pinctrl sunxi-pinctrl: pin-149 (csi0) status -22
[19:58:08:511] [    1.128441] sunxi-pinctrl sunxi-pinctrl: could not get request pin 149 on device sunxi-pinctrl
[19:58:08:521] [    1.138193] [VFE_ERR]vip0 request pinctrl handle for device [csi0] failed!
[19:58:08:521] [    1.146008] [ISP] isp platform_id = 6!
[19:58:08:537] [    1.150444] [VFE]vfe_init end
[19:58:08:537] [    1.153917] sunxi cedar version 0.1 
[19:58:08:537] [    1.158019] [cedar]: install start!!!
[19:58:08:537] [    1.162245] [VFE]probe_work_handle start!
[19:58:08:548] [    1.166872] [VFE]..........................vfe clk open!.......................
[19:58:08:559] [    1.175340] [cedar]: install end!!!
[19:58:08:559] [    1.179813] platform reg-20-cs-dcdc2: Driver reg-20-cs-dcdc2 requests probe deferral
[19:58:08:566] [    1.188855] [VFE]v4l2 subdev register input_num = 0
[19:58:08:584] [    1.194477] [VFE]vfe sensor detect start! input_num = 0
[19:58:08:584] [    1.200382] [VFE]Find sensor name is "ov5647_mipi", i2c address is 6c, type is "RAW" !
[19:58:08:584] [    1.209343] [VFE]Sub device register "ov5647_mipi" i2c_addr = 0x6c start!
[19:58:08:593] [    1.217066] [VFE_ERR]Error registering v4l2 subdevice No such device!
[19:58:08:600] [    1.224310] [VFE_ERR]vfe sensor register check error at input_num = 0
[19:58:08:608] [    1.231768] platform reg-20-cs-dcdc3: Driver reg-20-cs-dcdc3 requests probe deferral
[19:58:08:617] [    1.240557] platform reg-20-cs-ldo1: Driver reg-20-cs-ldo1 requests probe deferral
[19:58:08:624] [    1.249234] platform reg-20-cs-ldo2: Driver reg-20-cs-ldo2 requests probe deferral
[19:58:08:632] [    1.257906] platform reg-20-cs-ldo3: Driver reg-20-cs-ldo3 requests probe deferral
[19:58:08:643] [    1.266506] platform reg-20-cs-ldo4: Driver reg-20-cs-ldo4 requests probe deferral
[19:58:08:649] [    1.275138] [VFE]Check open /system/etc/hawkview/ov5647_mipi/isp_test_param.ini failed!
[19:58:08:658] [    1.275146] Match isp cfg  start!
[19:58:08:665] [    1.287981] [VFE_WARN]NOT found this item:  ov5647_mipi, you can add this ISP Config in the isp_cfg_array!
[19:58:08:672] [    1.298884] [VFE]read ini start
[19:58:08:681] [    1.302635] [VFE]Fetch ini file form "/system/etc/hawkview/ov5647_mipi/isp_test_param.ini"
[19:58:08:689] [    1.312181] platform reg-20-cs-ldoio0: Driver reg-20-cs-ldoio0 requests probe deferral
[19:58:08:696] [    1.321186] step1 : gsensor_fetch_sysconfig_para
[19:58:08:705] [    1.326405] step2 : gsensor_fetch_sysconfig_para
[19:58:08:714] [    1.331724] [MIR3DA] fetch_sysconfig_para failed!
[19:58:08:714] [    1.331730] 
[19:58:08:714] [    1.338770] sunxi_wdt_init_module: sunxi WatchDog Timer Driver v1.0
[19:58:08:728] [    1.348249] [vfe_warn]open file failed!
[19:58:08:728] [    1.353066] [VFE_WARN]read ini info fail
[19:58:08:739] [    1.357808] sunxi_wdt_probe: devm_ioremap return wdt_reg 0xf1c20ca0, res->start 0x01c20ca0, res->end 0x01c20cbf
[19:58:08:746] [    1.369084] [VFE]V4L2 device registered as vfe-0
[19:58:08:757] [    1.374848] sunxi_wdt_probe: initialized (g_timeout=16s, g_nowayout=0)
[19:58:08:757] [    1.382229] wdt_enable, write reg 0xf1c20cb8 val 0x00000000
[19:58:08:765] [    1.388590] wdt_set_tmout, write 0x000000b0 to mode reg 0xf1c20cb8, actual timeout 16 sec
[19:58:08:775] [    1.397812] [VFE]..........................vfe clk close!.......................
[19:58:08:790] [    1.406227] [VFE]probe_work_handle end!
[19:58:08:790] [    1.410994] [mmc]: SD/MMC/SDIO Host Controller Driver(v1.114 2015-6-2 10:21) Compiled in Oct 13 2018 at 11:48:37
[19:58:08:799] [    1.422551] [mmc]: get mmc0's sdc_power failed
[19:58:08:811] [    1.427676] [mmc]: MMC host used card: 0x1, boot card: 0x1, io_card 0
[19:58:08:811] [    1.435523] [mmc]: sdc0 set ios: clk 0Hz bm OD pm OFF vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[19:58:08:828] [    1.446698] [mmc]: sdc0 set ios: clk 0Hz bm PP pm UP vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[19:58:08:831] [    1.456719] no led_3, ignore it!
[19:58:08:840] [    1.460420] no led_4, ignore it!
[19:58:08:840] [    1.464105] no led_5, ignore it!
[19:58:08:850] [    1.467859] no led_6, ignore it!
[19:58:08:850] [    1.471539] no led_7, ignore it!
[19:58:08:850] [    1.475218] [mmc]: sdc0 power_supply is null
[19:58:08:864] [    1.481453] leds-gpio: probe of leds-gpio failed with error -16
[19:58:08:864] [    1.488347] usbcore: registered new interface driver usbhid
[19:58:08:872] [    1.494747] usbhid: USB HID core driver
[19:58:08:880] [    1.499641] ashmem: initialized
[19:58:08:880] [    1.503289] [mmc]: sdc0 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[19:58:08:888] [    1.513779] logger: created 256K log 'log_main'
[19:58:08:896] [    1.518980] logger: created 32K log 'log_events'
[19:58:08:904] [    1.524560] logger: created 32K log 'log_radio'
[19:58:08:904] [    1.529865] logger: created 32K log 'log_system'
[19:58:08:912] [    1.536437] [audiocodec] mic1_mic3_used type err! 
[19:58:08:921] [    1.541926] script_get_item return type err, consider it no ldo
[19:58:08:927] [    1.549536] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 52,  RTO !!
[19:58:08:933] [    1.558036] asoc: sndcodec <-> sunxi-codec mapping ok
[19:58:08:947] [    1.563856] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 52,  RTO !!
[19:58:08:947] [    1.572193] [mmc]: sdc0 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[19:58:08:965] [    1.583987] [DAUDIO]sunxi-daudio cannot find any using configuration for controllers, return directly!
[19:58:08:983] [    1.595979] [I2S]snddaudio cannot find any using configuration for controllers, return directly!
[19:58:08:983] [    1.606000] [DAUDIO0] driver not init,just return.
[19:58:08:989] [    1.612444] [mmc]: sdc0 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[19:58:09:006] [    1.623135] IPv4 over IPv4 tunneling driver
[19:58:09:006] [    1.628527] TCP: cubic registered
[19:58:09:012] [    1.632466] Initializing XFRM netlink socket
[19:58:09:012] [    1.638647] NET: Registered protocol family 10
[19:58:09:020] [    1.643740] *******************Try sdio*******************
[19:58:09:027] [    1.650855] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 5,  RTO !!
[19:58:09:034] [    1.659408] IPv6 over IPv4 tunneling driver
[19:58:09:040] [    1.664941] NET: Registered protocol family 17
[19:58:09:048] [    1.669996] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 5,  RTO !!
[19:58:09:055] [    1.678503] ThumbEE CPU extension supported.
[19:58:09:061] [    1.683378] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 5,  RTO !!
[19:58:09:067] [    1.691722] Registering SWP/SWPB emulation handler
[19:58:09:079] [    1.697172] [mmc]: *** sunxi_mci_dump_errinfo(L826): smc 0 err, cmd 5,  RTO !!
[19:58:09:079] [    1.705514] *******************Try sd *******************
[19:58:09:087] [    1.712118] [HDMI]ep952_module_init begin
[19:58:09:094] [    1.717156] platform reg-20-cs-ldoio0: Driver reg-20-cs-ldoio0 requests probe deferral
[19:58:09:103] [    1.726222] [mmc]: sdc0 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[19:58:09:112] [    1.736573] platform reg-20-cs-ldo4: Driver reg-20-cs-ldo4 requests probe deferral
[19:58:09:125] [    1.745327] [mmc]: sdc0 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[19:58:09:142] [    1.755732] platform reg-20-cs-ldo3: Driver reg-20-cs-ldo3 requests probe deferral
[19:58:09:142] [    1.765572] platform reg-20-cs-ldo2: Driver reg-20-cs-ldo2 requests probe deferral
[19:58:09:150] [    1.775119] [mmc]: sdc0 set ios: clk 400000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[19:58:09:172] [    1.785502] platform reg-20-cs-ldo1: Driver reg-20-cs-ldo1 requests probe deferral
[19:58:09:172] [    1.795255] platform reg-20-cs-dcdc3: Driver reg-20-cs-dcdc3 requests probe deferral
[19:58:09:180] [    1.804028] platform reg-20-cs-dcdc2: Driver reg-20-cs-dcdc2 requests probe deferral
[19:58:09:188] [    1.812909] sunxi-rtc sunxi-rtc: setting system clock to 1970-01-01 00:01:56 UTC (116)
[19:58:09:215] [    1.823291] [rf_pm]: Did not config module_power0 in sys_config
[19:58:09:215] [    1.829983] [rf_pm]: Did not config module_power1 in sys_config
[19:58:09:215] [    1.836813] [rf_pm]: Did not config module_power2 in sys_config
[19:58:09:224] [    1.843497] [rf_pm]: Did not config module_power3 in sys_config
[19:58:09:224] [    1.850259] [rf_pm]: mod has no chip_en gpio
[19:58:09:240] [    1.855085] [rf_pm]: failed to fetch lpo_use_apclk
[19:58:09:240] [    1.860584] [rf_pm]: regulator on.
[19:58:09:240] [    1.864450] [wifi_pm]: no wifi used in configuration
[19:58:09:250] [    1.870061] ALSA device list:
[19:58:09:250] [    1.873524]   #0: audiocodec
[19:58:09:263] [    1.877238] Waiting for root device /dev/mmcblk0p2...
[19:58:09:263] [    1.884222] [mmc]: sdc0 set ios: clk 25000000Hz bm PP pm ON vdd 3.3V width 1 timing LEGACY(SDR12) dt B
[19:58:09:273] [    1.897318] [mmc]: sdc0 set ios: clk 25000000Hz bm PP pm ON vdd 3.3V width 1 timing SD-HS(SDR25) dt B
[19:58:09:287] [    1.907847] [mmc]: sdc0 set ios: clk 50000000Hz bm PP pm ON vdd 3.3V width 1 timing SD-HS(SDR25) dt B
[19:58:09:295] [    1.918382] [mmc]: sdc0 set ios: clk 50000000Hz bm PP pm ON vdd 3.3V width 4 timing SD-HS(SDR25) dt B
[19:58:09:310] [    1.928884] mmc0: new high speed SDHC card at address 0001
[19:58:09:310] [    1.935476] mmcblk0: mmc0:0001 SD16G 7.52 GiB 
[19:58:09:320] [    1.941939]  mmcblk0: p1 p2
[19:58:09:320] [    1.946009] platform reg-20-cs-dcdc2: Driver reg-20-cs-dcdc2 requests probe deferral
[19:58:09:336] [    1.954813] *******************sd init ok*******************
[19:58:09:336] [    1.961373] platform reg-20-cs-dcdc3: Driver reg-20-cs-dcdc3 requests probe deferral
[19:58:09:352] [    1.970215] platform reg-20-cs-ldo1: Driver reg-20-cs-ldo1 requests probe deferral
[19:58:09:361] [    1.978739] platform reg-20-cs-ldo2: Driver reg-20-cs-ldo2 requests probe deferral
[19:58:09:361] [    1.987369] platform reg-20-cs-ldo3: Driver reg-20-cs-ldo3 requests probe deferral
[19:58:09:371] [    1.996012] platform reg-20-cs-ldo4: Driver reg-20-cs-ldo4 requests probe deferral
[19:58:09:379] [    2.004561] platform reg-20-cs-ldoio0: Driver reg-20-cs-ldoio0 requests probe deferral
[19:58:09:475] [    2.100910] EXT4-fs (mmcblk0p2): couldn't mount as ext3 due to feature incompatibilities
[19:58:09:493] [    2.110866] EXT4-fs (mmcblk0p2): couldn't mount as ext2 due to feature incompatibilities
[19:58:09:550] [    2.175934] EXT4-fs (mmcblk0p2): recovery complete
[19:58:09:565] [    2.184905] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
[19:58:09:568] [    2.194155] VFS: Mounted root (ext4 filesystem) on device 179:2.
[19:58:09:581] [    2.202386] devtmpfs: mounted
[19:58:09:581] [    2.206082] Freeing init memory: 152K
[19:58:09:711] [    2.337191] EXT4-fs (mmcblk0p2): re-mounted. Opts: data=ordered
[19:58:09:759] Starting logging: OK
[19:58:09:792] Initializing random number generator... done.
[19:58:09:929] 
[19:58:09:938] Welcome to LicheePi
[19:58:09:938] licheepi login: 

似乎有进展。
好象我只在menuconfig 更改了ext4 以及预留内存ion
将uImage复制到本来能启动的TF卡上。

#74 Re: 全志 SOC » 编译索智(Sochip) S3 SDK (zeta) 【提供DXP格式原理图与PCB,感谢 @playflash】 » 2018-10-13 21:23:42

[12:41:57:763] switch to partitions #0, OK
[12:41:57:766] mmc0 is current device
[12:41:58:334] Scanning mmc 0:1...
[12:41:58:389] Found U-Boot script /boot.scr
[12:41:58:400] reading /boot.scr
[12:41:58:415] 290 bytes read in 15 ms (18.6 KiB/s)
[12:41:58:418] ## Executing script at 41900000
[12:41:58:430] reading uImage
[12:41:58:602] 2906568 bytes read in 172 ms (16.1 MiB/s)
[12:41:58:614] reading script.bin
[12:41:58:640] 32624 bytes read in 25 ms (1.2 MiB/s)
[12:41:58:643] ## Booting kernel from Legacy Image at 41000000 ...
[12:41:58:651]    Image Name:   Linux-3.4.39
[12:41:58:651]    Image Type:   ARM Linux Kernel Image (uncompressed)
[12:41:58:655]    Data Size:    2906504 Bytes = 2.8 MiB
[12:41:58:660]    Load Address: 40008000
[12:41:58:665]    Entry Point:  40008000
[12:41:58:665]    Verifying Checksum ... OK
[12:41:58:688]    Loading Kernel Image ... OK
[12:41:58:705] Using machid 0x1029 from environment
[12:41:58:710] 
[12:41:58:710] Starting kernel ...
[12:41:58:710] 

试图在zero 上用TF卡启动,我也卡在这里

#75 Re: 技术人生/软件使用技巧/破解经验/技术吐槽/灌水 » 买个渔网周末打发时间 » 2018-10-12 23:40:50

TB2ihuAob_I8KJjy1XaXXbsxpXa_2076280833.jpg

我买了这种网40米,2米高的, 到手只得1.7米高(商家有点黑)。
国庆去海边试了一次,一条也没抓着, 鱼在底下跑掉了。
拉这种网特别费力,两个人操作的话,很难拉得动,收网不完美,鱼就在底下跑掉了。
现在天气凉了, 网留着,明年再试试。

#76 Re: DIY/综合/Arduino/写字机/3D打印机/智能小车/平衡车/四轴飞行/MQTT/物联网 » 拆解求助这个蓝牙手环怎么能玩起来(nrf51822+MT2502) » 2018-10-12 21:12:36

晕哥 说:

https://whycan.cn/files/members/3/QQ20180910083023.png

同样的疑问,感觉 MT2502和nrf51822 冗余了, 感觉一个就行了,
还有MTK的USB烧录,应该是要下拉(或者上拉)某个IO才能进入烧录模式,
如果在系统启动后,要像手表一样,在界面操作后才能进入USB模式.

我刷过MT6261, 不用按某个键才能刷机,连接电脑开机会自动进入刷机模式。
便宜的GSM 模块air202也是这样子。

#83 Re: 全志 SOC » 大家希望S3模组使用什么接口引出?希望坛友脑爆一下 » 2018-10-09 17:16:02

-2018-09-07-1_10_28.png
楼主,没将wifi模块放在板上? 好象还有空位置。
基本上, wifi是必须的。

#86 Re: 全志 SOC » 有没有朋友用过 【SD 接口的 NAND】,可以用在全志soc上 » 2018-10-07 01:55:58

didi 说:
apollo800 说:

这个我也找了很久,真需要这种呀,现在还有一种是emmc的,走的也是SD卡的协议,
http://www.360doc.com/content/16/1112/11/38024613_605833100.shtml

eMMC本来就兼容SDIO协议吧,
市场上的 eMMC都是BGA封装,容量动不动就2G/4G起,价格也是20多人民币起,
如果有 10块钱以内的 SD NAND还是挺不错的,
比起SPI NAND来, SD NAND软件复杂度大大降低.

http://www.360doc.com/content/16/1112/11/38024613_605833100.shtml

可以用SPI模式读eMMC吗?那样又可以少了几根线。

#87 Re: 全志 SOC » 今天索智说S3是V3+128MB DDR3,以前一直以为是v3s » 2018-10-07 01:43:26

mango 说:
晕哥 说:
mango 说:

是的,价格标错了,应该是34零售价。
目前资料方面我在争取,厂家理念和我不太相同,目前他们只向买了S3开发板的客户提供BSP和原理图等等,非常保守。但明确告诉我了S3就是V3的DIE加DDR3 SIP到一起的。
我争取和他们沟通好后开源更多资料。顺便小声说一下,官方不需要签NDA : )

索智官方? 是 Linux 还是 camdroid ?有没有Linux下面的视频编解码器demo ?

索智官方,sdk叫ZETA,给了个MIPI-CSI摄像头,不过我一直还没测试。
http://www.sochip.com.cn/s3/index.php?title=Developing_Tips#How_to_install_Camera
https://github.com/king0769/Zeta_Linux_Samples

楼主, S3的板子什么时候出, 好期待。

#88 Re: 全志 SOC » 大家希望S3模组使用什么接口引出?希望坛友脑爆一下 » 2018-10-01 18:36:04

晕哥 说:
playflash 说:

芒果派 与楼主mango有关系?

楼主是widora开源硬件的老板。

敬仰,敬仰,我也有买过widora的板。
晕哥,荔枝派V3s BSP 上 能用摄像头吗?我调了很久都有错,调不出图像, 自己水平有限。

页脚

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

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