VCCQ 1.8V肯定不行,我使用EMMC都很久了,我还在S4上使用妙存的32G EMMC
wupaul2001 发布的帖子
-
回复: T113-s3 适配EMMC(THGBMJG6C1LBAIL等)持续更新!!!
-
回复: 请教A133 G2D调用出现G2D irq pending flag timeout,G2D BITBLT Failed!
终于找到问题了,A133的G2D被精准刀法砍掉,G2D只有旋转功能,WriteBack功能也被砍掉,导致不能做RGB转YUV![9448fcc0-d8a4-4cc6-9623-79b305845553-FSLUSEV8BB~XYA$680`ERU.png
-
回复: 请教A133 G2D调用出现G2D irq pending flag timeout,G2D BITBLT Failed!
改为了使用物理地址,也还是一样
[ 4408.395590] [G2D-g2d_bsp_bitblt] line:1970: BITBLT_flag: 0x0
[ 4408.395597] [G2D-g2d_bsp_bitblt] line:1972: Input info:---------------------------------
[ 4408.395601] [G2D-g2d_bsp_bitblt] line:1973: Src_fd: 0
[ 4408.395605] [G2D-g2d_bsp_bitblt] line:1974: Format: 0x29
[ 4408.395609] [G2D-g2d_bsp_bitblt] line:1975: BITBLT_alpha_mode: 0x0
[ 4408.395614] [G2D-g2d_bsp_bitblt] line:1976: BITBLT_alpha_val: 0x0
[ 4408.395618] [G2D-g2d_bsp_bitblt] line:1977: inClipRectX: 0
[ 4408.395623] [G2D-g2d_bsp_bitblt] line:1978: inClipRectY: 0
[ 4408.395627] [G2D-g2d_bsp_bitblt] line:1979: inClipRectW: 1920
[ 4408.395631] [G2D-g2d_bsp_bitblt] line:1980: inClipRectH: 1080
[ 4408.395636] [G2D-g2d_bsp_bitblt] line:1982: Output info:--------------------------------
[ 4408.395640] [G2D-g2d_bsp_bitblt] line:1983: Dst_fd: 0
[ 4408.395644] [G2D-g2d_bsp_bitblt] line:1984: Format: 0x3
[ 4408.395649] [G2D-g2d_bsp_bitblt] line:1985: outClipRectX: 0
[ 4408.395653] [G2D-g2d_bsp_bitblt] line:1986: outClipRectY: 0
[ 4408.395657] [G2D-g2d_bsp_bitblt] line:1987: outClipRectW: 1920
[ 4408.395662] [G2D-g2d_bsp_bitblt] line:1988: outClipRectH: 1080
[ 4408.395669] [G2D-g2d_vlayer_set] line:627: VInPITCH: 1920, 1920, 0
[ 4408.395674] [G2D-g2d_vlayer_set] line:629: VInAddrB: 0xff400000, 0xff5fa400, 0x0
[ 4408.395679] [G2D-g2d_vlayer_set] line:646: VInAddrA: 0xff400000, 0xff5fa400, 0x0
[ 4408.395693] [G2D-g2d_bldin_set] line:1359: BLD_CH_ISIZE W: 0x780
[ 4408.395697] [G2D-g2d_bldin_set] line:1360: BLD_CH_ISIZE H: 0x438
[ 4408.395702] [G2D-g2d_bldin_set] line:1367: BLD_CH_ISIZE X: 0x0
[ 4408.395706] [G2D-g2d_bldin_set] line:1368: BLD_CH_ISIZE Y: 0x0
[ 4408.395712] [G2D-g2d_wb_set] line:717: BLD_CH_OSIZE W: 0x780
[ 4408.395717] [G2D-g2d_wb_set] line:718: BLD_CH_OSIZE H: 0x438
[ 4408.395722] [G2D-g2d_wb_set] line:765: OutputPitch: 7680, 0, 0
[ 4408.395727] [G2D-g2d_wb_set] line:782: WbAddr: 0xf9000000, 0x0, 0x0
[ 4408.395732] [G2D-g2d_bsp_bitblt] line:2297: INIT_MODULE: 0x80000000
[ 4408.496871] G2D irq pending flag timeout
[ 4408.496876] G2D BITBLT Failed!下面是我调用的代码
int g2d::NV21ToRGB(ion_mem* in, ion_mem* out)
{
int ret = 0;
g2d_blt_h blit;memset(&blit, 0, sizeof(blit)); if(g2d_fd < 0) { printf("G2D not open! \n"); return -1; } blit.flag_h = G2D_BLT_NONE_H; //纯转换 blit.src_image_h.format = G2D_FORMAT_YUV420UVC_U1V1U0V0; //NV21 blit.src_image_h.width = IMAGEWIDTH; blit.src_image_h.height = IMAGEHEIGHT; blit.src_image_h.align[0] = 0; blit.src_image_h.align[1] = 0; blit.src_image_h.clip_rect.x = 0; blit.src_image_h.clip_rect.y = 0; blit.src_image_h.clip_rect.w = IMAGEWIDTH; blit.src_image_h.clip_rect.h = IMAGEHEIGHT; blit.src_image_h.gamut = G2D_BT601; blit.src_image_h.bpremul = 0; blit.src_image_h.mode = G2D_PIXEL_ALPHA; blit.src_image_h.use_phy_addr = 1; blit.src_image_h.laddr[0] = in->phy; blit.src_image_h.laddr[1] = in->phy + IMAGEWIDTH * IMAGEHEIGHT; blit.dst_image_h.format = G2D_FORMAT_BGRA8888; blit.dst_image_h.width = IMAGEWIDTH; blit.dst_image_h.height = IMAGEHEIGHT; blit.dst_image_h.align[0] = 0; blit.dst_image_h.clip_rect.x = 0; blit.dst_image_h.clip_rect.y = 0; blit.dst_image_h.clip_rect.w = IMAGEWIDTH; blit.dst_image_h.clip_rect.h = IMAGEHEIGHT; blit.dst_image_h.gamut = G2D_BT601; blit.dst_image_h.bpremul = 0; blit.dst_image_h.mode = G2D_PIXEL_ALPHA; blit.dst_image_h.use_phy_addr = 1; blit.dst_image_h.laddr[0] = out->phy; if(ioctl(g2d_fd, G2D_CMD_BITBLT_H, (unsigned long)&blit) < 0) { printf("G2D convert failed! \n"); return -1; } return 0;
}
-
请教A133 G2D调用出现G2D irq pending flag timeout,G2D BITBLT Failed!
如题,我把G2D的调试打开,看输入输出参数都没问题,但没有接收到完成中断,请教是什么问题。下面是我的调试LOG
[ 754.288879] [G2D-g2d_bsp_bitblt] line:1970: BITBLT_flag: 0x0
[ 754.288886] [G2D-g2d_bsp_bitblt] line:1972: Input info:---------------------------------
[ 754.288890] [G2D-g2d_bsp_bitblt] line:1973: Src_fd: 6
[ 754.288895] [G2D-g2d_bsp_bitblt] line:1974: Format: 0x29
[ 754.288899] [G2D-g2d_bsp_bitblt] line:1975: BITBLT_alpha_mode: 0x0
[ 754.288904] [G2D-g2d_bsp_bitblt] line:1976: BITBLT_alpha_val: 0x0
[ 754.288908] [G2D-g2d_bsp_bitblt] line:1977: inClipRectX: 0
[ 754.288912] [G2D-g2d_bsp_bitblt] line:1978: inClipRectY: 0
[ 754.288917] [G2D-g2d_bsp_bitblt] line:1979: inClipRectW: 1920
[ 754.288921] [G2D-g2d_bsp_bitblt] line:1980: inClipRectH: 1080
[ 754.288925] [G2D-g2d_bsp_bitblt] line:1982: Output info:--------------------------------
[ 754.288930] [G2D-g2d_bsp_bitblt] line:1983: Dst_fd: 23
[ 754.288934] [G2D-g2d_bsp_bitblt] line:1984: Format: 0x3
[ 754.288938] [G2D-g2d_bsp_bitblt] line:1985: outClipRectX: 0
[ 754.288943] [G2D-g2d_bsp_bitblt] line:1986: outClipRectY: 0
[ 754.288947] [G2D-g2d_bsp_bitblt] line:1987: outClipRectW: 1920
[ 754.288951] [G2D-g2d_bsp_bitblt] line:1988: outClipRectH: 1080
[ 754.288958] [G2D-g2d_vlayer_set] line:627: VInPITCH: 1920, 1920, 0
[ 754.288964] [G2D-g2d_vlayer_set] line:629: VInAddrB: 0xf7400000, 0xf75fa400, 0xf76f7600
[ 754.288969] [G2D-g2d_vlayer_set] line:646: VInAddrA: 0xf7400000, 0xf75fa400, 0xf76f7600
[ 754.288983] [G2D-g2d_bldin_set] line:1359: BLD_CH_ISIZE W: 0x780
[ 754.288987] [G2D-g2d_bldin_set] line:1360: BLD_CH_ISIZE H: 0x438
[ 754.288991] [G2D-g2d_bldin_set] line:1367: BLD_CH_ISIZE X: 0x0
[ 754.288996] [G2D-g2d_bldin_set] line:1368: BLD_CH_ISIZE Y: 0x0
[ 754.289002] [G2D-g2d_wb_set] line:717: BLD_CH_OSIZE W: 0x780
[ 754.289006] [G2D-g2d_wb_set] line:718: BLD_CH_OSIZE H: 0x438
[ 754.289012] [G2D-g2d_wb_set] line:765: OutputPitch: 7680, 0, 0
[ 754.289017] [G2D-g2d_wb_set] line:782: WbAddr: 0xf6800000, 0xf69fa400, 0xf6bf4800
[ 754.289022] [G2D-g2d_bsp_bitblt] line:2297: INIT_MODULE: 0x80000000
[ 754.390950] G2D irq pending flag timeout
[ 754.390956] G2D BITBLT Failed! -
回复: A133 AW869A WIFI模块问题 死循环报RTO
@whycanservice 在 A133 AW869A WIFI模块问题 死循环报RTO 中说:
@wupaul2001 这个还是SDC1的通讯问题。
但我是检查原理图,对照PIN,都没有错误,设备树也对了很多次
-
回复: A133 AW869A WIFI模块问题 死循环报RTO
[ 87.009650] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 87.015895] sunxi-mmc sdc1: *****retry:start***** [ 87.015922] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 87.015928] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710000 [ 87.015934] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 87.015945] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 87.265115] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 87.271362] sunxi-mmc sdc1: *****retry:start***** [ 87.271389] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 87.271394] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710110 [ 87.271400] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 87.271412] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 87.520583] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 87.526825] sunxi-mmc sdc1: *****retry:start***** [ 87.526851] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 87.526857] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710110 [ 87.526862] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 87.526874] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 87.776044] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 87.782287] sunxi-mmc sdc1: *****retry:start***** [ 87.782314] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 87.782319] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710110 [ 87.782327] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 87.782341] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 88.031511] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 88.037756] sunxi-mmc sdc1: *****retry:start***** [ 88.037782] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 88.037788] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710220 [ 88.037793] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 88.037804] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 88.286974] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 88.293220] sunxi-mmc sdc1: *****retry:start***** [ 88.293248] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 88.293254] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710220 [ 88.293259] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 88.293272] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 88.542442] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 88.548689] sunxi-mmc sdc1: *****retry:start***** [ 88.548715] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 88.548721] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710220 [ 88.548732] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 88.548746] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 88.797916] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 88.804160] sunxi-mmc sdc1: *****retry:start***** [ 88.804186] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 88.804191] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710220 [ 88.804197] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 88.804207] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 89.053378] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 89.059624] sunxi-mmc sdc1: *****retry:start***** [ 89.059651] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 89.059657] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710220 [ 89.059663] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 89.059674] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 89.308844] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 89.315089] sunxi-mmc sdc1: *****retry:start***** [ 89.315117] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 89.315122] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710220 [ 89.315128] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 89.315139] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 89.564310] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 89.570549] sunxi-mmc sdc1: *****retry:start***** [ 89.570576] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 89.570584] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710330 [ 89.570592] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 89.570603] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 89.570616] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD RTO !! [ 89.576857] sunxi-mmc sdc1: *****retry:start***** [ 89.576868] sunxi-mmc sdc1: send manual stop command failed [ 89.583240] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 89.583246] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710330 [ 89.583252] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 89.583262] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 89.583277] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD RTO !! [ 89.589521] sunxi-mmc sdc1: *****retry:start***** [ 89.589532] sunxi-mmc sdc1: send manual stop command failed [ 89.595895] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 89.595901] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710330 [ 89.595907] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 89.595917] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 89.595932] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD RTO !! [ 89.602174] sunxi-mmc sdc1: *****retry:start***** [ 89.602185] sunxi-mmc sdc1: send manual stop command failed [ 89.608548] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 89.608554] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710330 [ 89.608560] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 89.608565] sunxi-mmc sdc1: sunxi v5p3x retry give up [ 89.608571] sunxi-mmc sdc1: retry:set phase failed or over retry times [ 89.615890] sunxi-mmc sdc1: retry:give up [ 89.620488] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 89.626482] aicbsp: aicbsp_sdio_remove [ 89.626487] aicbsp: aicwf_sdio_release [ 89.626508] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 89.632482] aicbsp: sdio_err:<aicwf_sdio_release,1136>: reg:4 write failed! [ 89.640303] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 89.646282] aicbsp: aicwf_bus_deinitaicbsp: aicwf_sdio_bus_stop [ 89.646315] aicbsp: sdio_err:<aicwf_sdio_bustx_thread,989>: sdio bustx thread stop [ 89.654841] aicbsp: sdio_err:<aicwf_sdio_busrx_thread,1008>: sdio busrx thread stop [ 89.663485] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 89.669442] aicbsp: aicbsp_sdio_remove done [ 89.770120] aicbsp: aicbsp_platform_power_off [ 89.770153] aicbsp: aicbsp_set_subsys, fail to set AIC_WIFI power state to 1 [ 89.770157] sunxi-mmc sdc1: smc 1 p1 err, cmd 7, RTO !! [ 89.776029] sunxi-mmc sdc1: smc 1 p1 err, cmd 7, RTO !! [ 89.776031] rwnx_mod_init, set power on fail! [ 89.781893] sunxi-mmc sdc1: smc 1 p1 err, cmd 7, RTO !! [ 89.787756] sunxi-mmc sdc1: smc 1 p1 err, cmd 7, RTO !! [ 89.793837] mmc1: card 9b5a removed [ 89.793926] sunxi-mmc sdc1: sdc set ios:clk 0Hz bm PP pm OFF vdd 0 width 1 timing LEGACY(SDR12) dt B [ 89.795022] sunxi-mmc sdc1: sdc set ios:clk 0Hz bm PP pm UP vdd 22 width 1 timing LEGACY(SDR12) dt B [ 89.811013] sunxi-mmc sdc1: sdc set ios:clk 400000Hz bm PP pm ON vdd 22 width 1 timing LEGACY(SDR12) dt B [ 89.829047] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 89.835964] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 89.842003] sunxi-mmc sdc1: sdc set ios:clk 400000Hz bm PP pm ON vdd 22 width 1 timing LEGACY(SDR12) dt B [ 89.844792] sunxi-mmc sdc1: sdc set ios:clk 400000Hz bm PP pm ON vdd 22 width 1 timing LEGACY(SDR12) dt B [ 89.846840] sunxi-mmc sdc1: smc 1 p1 err, cmd 5, RTO !! [ 89.853584] sunxi-mmc sdc1: smc 1 p1 err, cmd 5, RTO !! [ 89.860247] sunxi-mmc sdc1: smc 1 p1 err, cmd 5, RTO !! [ 89.866970] sunxi-mmc sdc1: smc 1 p1 err, cmd 5, RTO !! [ 89.868080] >>> rwnx_mod_init() [ 89.868082] rwnx 20220315-6.4.3.0 - - 241c091M (master) [ 89.868087] aicbsp: aicbsp_set_subsys, subsys: AIC_WIFI, state to: 1 [ 89.868090] aicbsp: aicbsp_set_subsys, power state change to 1 dure to AIC_WIFI [ 89.868092] aicbsp: aicbsp_platform_power_on [ 89.872853] sunxi-mmc sdc1: sdc set ios:clk 0Hz bm PP pm OFF vdd 0 width 1 timing LEGACY(SDR12) dt B [ 89.872890] sunxi-wlan soc@03000000:wlan@0: check wlan wlan_power voltage: 3300000 [ 89.873564] sunxi-wlan soc@03000000:wlan@0: check wlan io_regulator voltage: 1800000 [ 89.933682] sunxi-mmc sdc1: sdc set ios:clk 0Hz bm PP pm UP vdd 22 width 1 timing LEGACY(SDR12) dt B [ 89.947658] sunxi-mmc sdc1: sdc set ios:clk 400000Hz bm PP pm ON vdd 22 width 1 timing LEGACY(SDR12) dt B [ 89.965136] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 89.971905] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 89.977861] sunxi-mmc sdc1: sdc set ios:clk 400000Hz bm PP pm ON vdd 22 width 1 timing LEGACY(SDR12) dt B [ 89.980300] sunxi-mmc sdc1: sdc set ios:clk 400000Hz bm PP pm ON vdd 22 width 1 timing LEGACY(SDR12) dt B [ 89.981667] sunxi-mmc sdc1: exceeding card's volts [ 89.998259] sunxi-mmc sdc1: smc 1 p1 err, cmd 11, RE !! [ 90.019333] mmc1: queuing unknown CIS tuple 0x10 (5 bytes) [ 90.024601] sunxi-mmc sdc1: sdc set ios:clk 50000000Hz bm PP pm ON vdd 22 width 1 timing LEGACY(SDR12) dt B [ 90.024704] sunxi-mmc sdc1: sdc set ios:clk 50000000Hz bm PP pm ON vdd 22 width 4 timing LEGACY(SDR12) dt B [ 90.024881] mmc1: queuing unknown CIS tuple 0x10 (5 bytes) [ 90.026082] mmc1: new SDIO card at address 4d1f [ 90.041837] aicbsp: aicbsp_sdio_probe:1 [ 90.041907] aicbsp: aicbsp_sdio_probe:2 [ 90.041912] aicbsp: aicbsp_sdio_probe after replace:1 [ 90.042022] sunxi-mmc sdc1: sdc set ios:clk 70000000Hz bm PP pm ON vdd 22 width 4 timing LEGACY(SDR12) dt B [ 90.042126] aicbsp: Set SDIO Clock 66 MHz [ 90.042514] aicbsp: sdio_err:<aicwf_sdio_hal_irqhandler,1087>: Interrupt but no data [ 90.051430] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD SBE !! [ 90.057676] sunxi-mmc sdc1: *****retry:start***** [ 90.057719] sunxi-mmc sdc1: REG_DRV_DL: 0x00010000 [ 90.057725] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710000 [ 90.057733] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 90.057756] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 90.306925] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 90.313165] sunxi-mmc sdc1: *****retry:start***** [ 90.313196] sunxi-mmc sdc1: REG_DRV_DL: 0x00010000 [ 90.313202] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710000 [ 90.313207] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 90.313221] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 90.562394] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 90.568642] sunxi-mmc sdc1: *****retry:start***** [ 90.568675] sunxi-mmc sdc1: REG_DRV_DL: 0x00010000 [ 90.568681] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710000 [ 90.568687] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 90.568702] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 90.817874] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 90.824117] sunxi-mmc sdc1: *****retry:start***** [ 90.824149] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 90.824155] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710110 [ 90.824160] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 90.824176] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 91.073346] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 91.079590] sunxi-mmc sdc1: *****retry:start***** [ 91.079618] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 91.079623] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710110 [ 91.079630] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 91.079644] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 91.328818] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 91.335073] sunxi-mmc sdc1: *****retry:start***** [ 91.335109] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 91.335114] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710110 [ 91.335120] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 91.335137] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 91.584307] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 91.590549] sunxi-mmc sdc1: *****retry:start***** [ 91.590578] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 91.590584] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710000 [ 91.590589] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 91.590603] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 91.839774] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 91.846018] sunxi-mmc sdc1: *****retry:start***** [ 91.846045] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 91.846051] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710000 [ 91.846062] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 91.846076] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 92.095247] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 92.101489] sunxi-mmc sdc1: *****retry:start***** [ 92.101518] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 92.101524] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710000 [ 92.101530] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 92.101543] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 92.264327] cmd timed-out [ 92.267256] tkn[0] flags:0012 result: -4 cmd:1024 - reqcfm(1025) [ 92.350712] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 92.356952] sunxi-mmc sdc1: *****retry:start***** [ 92.356981] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 92.356986] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710000 [ 92.356992] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 92.357005] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 92.606175] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 92.612423] sunxi-mmc sdc1: *****retry:start***** [ 92.612450] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 92.612455] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710000 [ 92.612463] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 92.612479] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 92.861649] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 92.867892] sunxi-mmc sdc1: *****retry:start***** [ 92.867918] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 92.867924] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710000 [ 92.867929] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 92.867940] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 93.117110] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 93.123350] sunxi-mmc sdc1: *****retry:start***** [ 93.123378] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 93.123384] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710110 [ 93.123390] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 93.123402] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 93.372572] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 93.378815] sunxi-mmc sdc1: *****retry:start***** [ 93.378842] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 93.378847] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710110 [ 93.378856] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 93.378870] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 93.628041] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 93.634283] sunxi-mmc sdc1: *****retry:start***** [ 93.634329] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 93.634335] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710110 [ 93.634340] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 93.634353] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 93.883522] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 93.889768] sunxi-mmc sdc1: *****retry:start***** [ 93.889795] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 93.889800] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710220 [ 93.889806] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 93.889818] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 94.138988] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 94.145231] sunxi-mmc sdc1: *****retry:start***** [ 94.145260] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 94.145265] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710220 [ 94.145271] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 94.145283] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 94.394453] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 94.400697] sunxi-mmc sdc1: *****retry:start***** [ 94.400723] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 94.400728] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710220 [ 94.400734] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 94.400746] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 94.649915] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 94.656159] sunxi-mmc sdc1: *****retry:start***** [ 94.656186] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 94.656192] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710220 [ 94.656197] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 94.656208] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 94.905378] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 94.911621] sunxi-mmc sdc1: *****retry:start***** [ 94.911648] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 94.911653] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710220 [ 94.911659] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 94.911671] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 95.160842] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 95.167086] sunxi-mmc sdc1: *****retry:start***** [ 95.167114] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 95.167120] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710220 [ 95.167125] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 95.167138] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 95.416307] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 95.422553] sunxi-mmc sdc1: *****retry:start***** [ 95.422579] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 95.422584] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710330 [ 95.422592] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 95.422606] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 95.422619] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD RTO !! [ 95.428863] sunxi-mmc sdc1: *****retry:start***** [ 95.428873] sunxi-mmc sdc1: send manual stop command failed [ 95.435249] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 95.435254] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710330 [ 95.435260] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 95.435270] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 95.435284] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD RTO !! [ 95.441528] sunxi-mmc sdc1: *****retry:start***** [ 95.441539] sunxi-mmc sdc1: send manual stop command failed [ 95.447899] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 95.447905] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710330 [ 95.447910] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 95.447921] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 95.447935] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD RTO !! [ 95.454175] sunxi-mmc sdc1: *****retry:start***** [ 95.454186] sunxi-mmc sdc1: send manual stop command failed [ 95.460550] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 95.460556] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710330 [ 95.460562] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 95.460567] sunxi-mmc sdc1: sunxi v5p3x retry give up [ 95.460573] sunxi-mmc sdc1: retry:set phase failed or over retry times [ 95.467898] sunxi-mmc sdc1: retry:give up [ 95.472496] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 95.478489] aicbsp: aicbsp_sdio_remove [ 95.478494] aicbsp: aicwf_sdio_release [ 95.478514] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 95.484486] aicbsp: sdio_err:<aicwf_sdio_release,1136>: reg:4 write failed! [ 95.492312] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 95.498284] aicbsp: aicwf_bus_deinitaicbsp: aicwf_sdio_bus_stop [ 95.498316] aicbsp: sdio_err:<aicwf_sdio_bustx_thread,989>: sdio bustx thread stop [ 95.506876] aicbsp: sdio_err:<aicwf_sdio_busrx_thread,1008>: sdio busrx thread stop [ 95.515521] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 95.521500] aicbsp: aicbsp_sdio_remove done [ 95.622175] aicbsp: aicbsp_platform_power_off [ 95.622207] sunxi-mmc sdc1: smc 1 p1 err, cmd 7, RTO !! [ 95.628079] sunxi-mmc sdc1: smc 1 p1 err, cmd 7, RTO !! [ 95.633941] sunxi-mmc sdc1: smc 1 p1 err, cmd 7, RTO !! [ 95.639801] sunxi-mmc sdc1: smc 1 p1 err, cmd 7, RTO !! [ 95.640024] mmc1: card 4d1f removed [ 95.640109] sunxi-mmc sdc1: sdc set ios:clk 0Hz bm PP pm OFF vdd 0 width 1 timing LEGACY(SDR12) dt B [ 95.641202] sunxi-mmc sdc1: sdc set ios:clk 0Hz bm PP pm UP vdd 22 width 1 timing LEGACY(SDR12) dt B [ 95.646852] aicbsp: aicbsp_set_subsys, fail to set AIC_WIFI power state to 1 [ 95.646858] rwnx_mod_init, set power on fail! [ 95.657668] sunxi-mmc sdc1: sdc set ios:clk 400000Hz bm PP pm ON vdd 22 width 1 timing LEGACY(SDR12) dt B [ 95.675143] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 95.681983] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 95.688011] sunxi-mmc sdc1: sdc set ios:clk 400000Hz bm PP pm ON vdd 22 width 1 timing LEGACY(SDR12) dt B [ 95.690534] sunxi-mmc sdc1: sdc set ios:clk 400000Hz bm PP pm ON vdd 22 width 1 timing LEGACY(SDR12) dt B [ 95.692409] sunxi-mmc sdc1: smc 1 p1 err, cmd 5, RTO !! [ 95.699152] sunxi-mmc sdc1: smc 1 p1 err, cmd 5, RTO !! [ 95.707776] sunxi-mmc sdc1: smc 1 p1 err, cmd 5, RTO !! [ 95.715861] sunxi-mmc sdc1: smc 1 p1 err, cmd 5, RTO !! [ 95.721730] sunxi-mmc sdc1: sdc set ios:clk 0Hz bm PP pm OFF vdd 0 width 1 timing LEGACY(SDR12) dt B
-
A133 AW869A WIFI模块问题 死循环报RTO
# dmesg [ 0.159400] Detected VIPT I-cache on CPU2 [ 0.159427] Invalid sched_group_energy for CPU2 [ 0.159430] CPU2: update cpu_capacity 1024 [ 0.159433] CPU2: Booted secondary processor [410fd034] [ 0.182817] Detected VIPT I-cache on CPU3 [ 0.182845] Invalid sched_group_energy for CPU3 [ 0.182847] CPU3: update cpu_capacity 1024 [ 0.182850] CPU3: Booted secondary processor [410fd034] [ 0.182931] Brought up 4 CPUs [ 0.182939] SMP: Total of 4 processors activated. [ 0.182948] CPU features: detected feature: 32-bit EL0 Support [ 0.182955] CPU features: detected feature: Kernel page table isolation (KPTI) [ 0.186974] CPU: All CPU(s) started at EL1 [ 0.186994] alternatives: patching kernel code [ 0.187217] Invalid sched_group_energy for CPU3 [ 0.187226] Invalid sched_group_energy for Cluster3 [ 0.187232] Invalid sched_group_energy for CPU2 [ 0.187238] Invalid sched_group_energy for Cluster2 [ 0.187243] Invalid sched_group_energy for CPU1 [ 0.187250] Invalid sched_group_energy for Cluster1 [ 0.187255] Invalid sched_group_energy for CPU0 [ 0.187262] Invalid sched_group_energy for Cluster0 [ 0.188493] devtmpfs: initialized [ 0.236772] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns [ 0.236799] futex hash table entries: 1024 (order: 5, 131072 bytes) [ 0.237484] atomic64_test: passed [ 0.237491] pinctrl core: initialized pinctrl subsystem [ 0.239868] NET: Registered protocol family 16 [ 0.241174] dump_class_init,861, success [ 0.243058] sunxi iommu: irq = 8 [ 0.243795] vdso: 2 pages (1 code @ ffffff8008a28000, 1 data @ ffffff80091e4000) [ 0.243814] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. [ 0.245259] DMA: preallocated 256 KiB pool for atomic allocations [ 0.248720] sun50iw10p1-r-pinctrl r_pio: initialized sunXi PIO driver [ 0.268117] sun50iw10p1-pinctrl pio: initialized sunXi PIO driver [ 0.272467] iommu: Adding device 1c0e000.ve to group 0 [ 0.281896] iommu: Adding device soc@03000000:disp1@1 to group 0 [ 0.282798] iommu: Adding device 6000000.disp to group 0 [ 0.283394] iommu: Adding device 6400000.eink to group 0 [ 0.284503] iommu: Adding device 6480000.g2d to group 0 [ 0.288407] iommu: Adding device csi0 to group 0 [ 0.288866] iommu: Adding device csi1 to group 0 [ 0.290015] iommu: Adding device 2108000.tdm to group 0 [ 0.290490] iommu: Adding device 2100000.isp to group 0 [ 0.290958] iommu: Adding device 2102000.isp to group 0 [ 0.291249] iommu: Adding device 2110000.scaler to group 0 [ 0.291533] iommu: Adding device 2110400.scaler to group 0 [ 0.291814] iommu: Adding device 2110800.scaler to group 0 [ 0.292103] iommu: Adding device 2110c00.scaler to group 0 [ 0.292744] iommu: Adding device vinc0 to group 0 [ 0.293217] iommu: Adding device vinc1 to group 0 [ 0.293722] iommu: Adding device vinc2 to group 0 [ 0.294183] iommu: Adding device vinc3 to group 0 [ 0.328291] pwm module init! [ 0.335093] sunxi-pm debug v3.10 [ 0.336782] SCSI subsystem initialized [ 0.337493] sunxi_spi_probe()2299 - [spi1] SPI MASTER MODE [ 0.337578] sunxi_spi_request_gpio()1927 - [spi1] Pinctrl init spi1 [ 0.337708] sunxi_spi_clk_init()1977 - [spi1] mclk 100000000 [ 0.338153] spi spi1: master is unqueued, this is deprecated [ 0.338460] sunxi_spi_probe()2380 - [spi1]: driver probe succeed, base ffffff8008060000, irq 366 [ 0.339190] usbcore: registered new interface driver usbfs [ 0.339270] usbcore: registered new interface driver hub [ 0.339395] usbcore: registered new device driver usb [ 0.339565] sunxi_i2c_adap_init()2570 - init [ 0.340232] sunxi_i2c_probe()2293 - [i2c6] twi_drv_used = 1 [ 0.340241] sunxi_i2c_probe()2297 - [i2c6] twi_pkt_interval = 0 [ 0.340261] twi6 supply twi not found, using dummy regulator [ 0.340360] twi_request_gpio()453 - [i2c6] init name: twi6 [ 0.341037] axp20x-i2c 6-0034: AXP20x variant AXP803 found [ 0.350434] axp2101-regulator axp2101-regulator.0: Setting DCDC frequency for unsupported AXP variant [ 0.354040] axp2101-regulator axp2101-regulator.0: Error setting dcdc frequency: -22 [ 0.423015] axp20x-i2c 6-0034: AXP20X driver loaded [ 0.423097] sunxi_i2c_dma_request()1123 - [i2c6] using dma0chan0 (tx) and dma0chan1 (rx)for DMA transfers [ 0.423756] sunxi_i2c_probe()2293 - [i2c0] twi_drv_used = 0 [ 0.423764] sunxi_i2c_probe()2297 - [i2c0] twi_pkt_interval = 0 [ 0.428645] twi_request_gpio()453 - [i2c0] init name: twi0 [ 0.434174] sunxi_i2c_probe()2293 - [i2c1] twi_drv_used = 0 [ 0.434184] sunxi_i2c_probe()2297 - [i2c1] twi_pkt_interval = 0 [ 0.434231] twi1 supply twi not found, using dummy regulator [ 0.434352] twi_request_gpio()453 - [i2c1] init name: twi1 [ 0.435144] sunxi_i2c_probe()2293 - [i2c2] twi_drv_used = 0 [ 0.435152] sunxi_i2c_probe()2297 - [i2c2] twi_pkt_interval = 0 [ 0.438675] twi_request_gpio()453 - [i2c2] init name: twi2 [ 0.439349] sunxi_i2c_probe()2293 - [i2c3] twi_drv_used = 0 [ 0.439357] sunxi_i2c_probe()2297 - [i2c3] twi_pkt_interval = 0 [ 0.439396] twi3 supply twi not found, using dummy regulator [ 0.439479] twi_request_gpio()453 - [i2c3] init name: twi3 [ 0.440156] sunxi_i2c_probe()2293 - [i2c7] twi_drv_used = 0 [ 0.440164] sunxi_i2c_probe()2297 - [i2c7] twi_pkt_interval = 0 [ 0.440201] twi7 supply twi not found, using dummy regulator [ 0.440282] twi_request_gpio()453 - [i2c7] init name: twi7 [ 0.441118] media: Linux media interface: v0.10 [ 0.441192] Linux video capture interface: v2.00 [ 0.442510] ion_parse_dt_heap_common: id 0 type 0 name sys_user align 1000 [ 0.442737] ion_parse_dt_heap_common: id 4 type 4 name cma align 1000 [ 0.442908] ion_parse_dt_heap_common: id 6 type 6 name secure align 1000 [ 0.443251] ion_heap_create: Invalid heap type 6 [ 0.443706] Advanced Linux Sound Architecture Driver Initialized. [ 0.444461] Bluetooth: Core ver 2.22 [ 0.444511] NET: Registered protocol family 31 [ 0.444517] Bluetooth: HCI device and connection manager initialized [ 0.444534] Bluetooth: HCI socket layer initialized [ 0.444548] Bluetooth: L2CAP socket layer initialized [ 0.444602] Bluetooth: SCO socket layer initialized [ 0.445298] nfc: nfc_init: NFC Core ver 0.1 [ 0.445378] NET: Registered protocol family 39 [ 0.446115] clocksource: Switched to clocksource arch_sys_counter [ 0.525736] VFS: Disk quotas dquot_6.6.0 [ 0.525860] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.528929] udc_init,0 [ 0.530215] NET: Registered protocol family 2 [ 0.556325] TCP established hash table entries: 8192 (order: 4, 65536 bytes) [ 0.556403] TCP bind hash table entries: 8192 (order: 5, 131072 bytes) [ 0.556555] TCP: Hash tables configured (established 8192 bind 8192) [ 0.556637] UDP hash table entries: 512 (order: 2, 16384 bytes) [ 0.556667] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes) [ 0.557034] NET: Registered protocol family 1 [ 0.558700] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available [ 0.560450] audit: initializing netlink subsys (disabled) [ 0.560525] audit: type=2000 audit(0.503:1): initialized [ 0.561597] workingset: timestamp_bits=45 max_order=18 bucket_order=0 [ 0.574214] Registering sdcardfs 0.1 [ 0.574793] ntfs: driver 2.1.32 [Flags: R/W]. [ 0.575295] fuse init (API version 7.26) [ 0.577676] SELinux: Registering netfilter hooks [ 0.582263] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249) [ 0.582278] io scheduler noop registered [ 0.582285] io scheduler deadline registered [ 0.582562] io scheduler cfq registered (default) [ 0.583905] [DISP]disp_module_init [ 0.584402] disp soc@03000000:disp1@1: unable to map de registers [ 0.584876] disp: probe of soc@03000000:disp1@1 failed with error -22 [ 0.585834] [DISP] disp_init,line:2214: [ 0.585841] smooth display screen:0 type:1 mode:4 [ 0.631949] [DISP] lcd_clk_config,line:665: [ 0.631963] disp 0, clk: pll(408000000),clk(408000000),dclk(68000000) dsi_rate(68000000) [ 0.631963] clk real:pll(408000000),clk(408000000),dclk(102000000) dsi_rate(150000000) [ 0.633335] [DISP]disp_module_init finish [ 0.643459] uart uart0: get regulator failed [ 0.644150] uart0: ttyS0 at MMIO 0x5000000 (irq = 349, base_baud = 1500000) is a SUNXI [ 0.644175] sw_console_setup()1731 - console setup baud 115200 parity n bits 8, flow n [ 0.644234] console [ttyS0] enabled [ 0.644241] bootconsole [earlycon0] disabled [ 0.644933] uart1 supply uart not found, using dummy regulator [ 0.645185] uart1: ttyS1 at MMIO 0x5000400 (irq = 350, base_baud = 1500000) is a SUNXI [ 0.645731] uart2 supply uart not found, using dummy regulator [ 0.646009] uart2: ttyS2 at MMIO 0x5000800 (irq = 351, base_baud = 1500000) is a SUNXI [ 0.646656] uart3 supply uart not found, using dummy regulator [ 0.646930] uart3: ttyS3 at MMIO 0x5000c00 (irq = 352, base_baud = 1500000) is a SUNXI [ 0.647484] uart7 supply uart not found, using dummy regulator [ 0.647703] uart7: ttyS7 at MMIO 0x7080000 (irq = 353, base_baud = 1500000) is a SUNXI [ 0.648798] misc dump reg init [ 0.650187] G2D: Module initialized.major:245 [ 0.652182] [drm] Initialized [ 0.652370] Unable to detect cache hierarchy for CPU 0 [ 0.666018] brd: module loaded [ 0.674242] loop: module loaded [ 0.675065] zram: Added device: zram0 [ 0.675289] [NAND][NE] Not found valid nand node on dts [ 0.682306] sunxi-bt soc@03000000:bt@0: bt_power_name (axp803-dcdc1) [ 0.682318] sunxi-bt soc@03000000:bt@0: io_regulator_name (axp803-dldo1) [ 0.682394] sunxi-bt soc@03000000:bt@0: bt_rst gpio=68 mul-sel=1 pull=-1 drv_level=-1 data=0 [ 0.682486] sunxi-bt soc@03000000:bt@0: devm_pinctrl_get() failed! [ 0.683233] sunxi-wlan soc@03000000:wlan@0: wlan_busnum (1) [ 0.683244] sunxi-wlan soc@03000000:wlan@0: wlan_power_name (axp803-dcdc1) [ 0.683255] sunxi-wlan soc@03000000:wlan@0: io_regulator_name (axp803-dldo1) [ 0.683293] sunxi-wlan soc@03000000:wlan@0: wlan_regon gpio=103 mul-sel=1 pull=-1 drv_level=-1 data=0 [ 0.683325] sunxi-wlan soc@03000000:wlan@0: get gpio chip_en failed [ 0.690415] sunxi-wlan soc@03000000:wlan@0: get gpio power_en failed [ 0.697674] sunxi-wlan soc@03000000:wlan@0: wlan_hostwake gpio=76 mul-sel=6 pull=-1 drv_level=-1 data=0 [ 0.697831] sunxi-wlan soc@03000000:wlan@0: pinctrl_lookup_state(default) failed! return ffffffffffffffed [ 0.699094] [ADDR_MGT] addr_mgt_probe: success. [ 0.702562] libphy: Fixed MDIO Bus: probed [ 0.702699] tun: Universal TUN/TAP device driver, 1.6 [ 0.702704] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com> [ 0.704519] gmac-power0: NULL [ 0.704528] gmac-power1: NULL [ 0.704534] gmac-power2: NULL [ 0.705581] PPP generic driver version 2.4.2 [ 0.705851] PPP BSD Compression module registered [ 0.705858] PPP Deflate Compression module registered [ 0.705877] PPP MPPE Compression module registered [ 0.705886] NET: Registered protocol family 24 [ 0.705891] PPTP driver version 0.8.5 [ 0.706302] usbcore: registered new interface driver r8152 [ 0.706382] usbcore: registered new interface driver asix [ 0.706472] usbcore: registered new interface driver ax88179_178a [ 0.706543] usbcore: registered new interface driver cdc_ether [ 0.706609] usbcore: registered new interface driver net1080 [ 0.706670] usbcore: registered new interface driver cdc_subset [ 0.706730] usbcore: registered new interface driver zaurus [ 0.706816] usbcore: registered new interface driver cdc_ncm [ 0.706824] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 0.707247] get ehci0-controller, regulator_io is no nocare [ 0.707255] get ehci0-controller wakeup-source is fail. [ 0.707535] sunxi ehci0-controller don't init wakeup source [ 0.707546] [sunxi-ehci0]: probe, pdev->name: 5101000.ehci0-controller, sunxi_ehci: 0xffffff800945ae38, 0x:ffffff8009573000, irq_no:169 [ 0.707552] [sunxi-ehci0]: Not init ehci0 [ 0.707672] get ehci1-controller, regulator_io is no nocare [ 0.707679] get ehci1-controller wakeup-source is fail. [ 0.707812] sunxi ehci1-controller don't init wakeup source [ 0.707821] [sunxi-ehci1]: probe, pdev->name: 5200000.ehci1-controller, sunxi_ehci: 0xffffff800945b548, 0x:ffffff800957d000, irq_no:16b [ 0.707879] 5200000.ehci1-controller supply drvvbus not found, using dummy regulator [ 0.708013] sunxi-ehci 5200000.ehci1-controller: SW USB2.0 'Enhanced' Host Controller (EHCI) Driver [ 0.708044] sunxi-ehci 5200000.ehci1-controller: new USB bus registered, assigned bus number 1 [ 0.708427] sunxi-ehci 5200000.ehci1-controller: irq 363, io mem 0xffffffc03db28c10 [ 0.719476] sunxi-ehci 5200000.ehci1-controller: USB 0.0 started, EHCI 1.00 [ 0.720602] hub 1-0:1.0: USB hub found [ 0.720641] hub 1-0:1.0: 1 port detected [ 0.721640] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 0.722040] get ohci0-controller, regulator_io is no nocare [ 0.722047] get ohci0-controller wakeup-source is fail. [ 0.722295] sunxi ohci0-controller don't init wakeup source [ 0.722420] [sunxi-ohci0]: probe, pdev->name: 5101000.ohci0-controller, sunxi_ohci: 0xffffff800945b1c0 [ 0.722426] [sunxi-ohci0]: Not init ohci0 [ 0.722534] get ohci1-controller, regulator_io is no nocare [ 0.722540] get ohci1-controller wakeup-source is fail. [ 0.722673] sunxi ohci1-controller don't init wakeup source [ 0.722809] [sunxi-ohci1]: probe, pdev->name: 5200000.ohci1-controller, sunxi_ohci: 0xffffff800945b8d0 [ 0.722878] 5200000.ohci1-controller supply drvvbus not found, using dummy regulator [ 0.723007] sunxi-ohci 5200000.ohci1-controller: SW USB2.0 'Open' Host Controller (OHCI) Driver [ 0.723036] sunxi-ohci 5200000.ohci1-controller: new USB bus registered, assigned bus number 2 [ 0.723121] sunxi-ohci 5200000.ohci1-controller: irq 364, io mem 0xffffff8008aa7438 [ 0.784515] hub 2-0:1.0: USB hub found [ 0.784553] hub 2-0:1.0: 1 port detected [ 0.785687] usbcore: registered new interface driver usblp [ 0.785930] usbcore: registered new interface driver uas [ 0.786057] usbcore: registered new interface driver usb-storage [ 0.786148] usbcore: registered new interface driver ums-alauda [ 0.786212] usbcore: registered new interface driver ums-cypress [ 0.786279] usbcore: registered new interface driver ums-datafab [ 0.786341] usbcore: registered new interface driver ums_eneub6250 [ 0.786401] usbcore: registered new interface driver ums-freecom [ 0.786462] usbcore: registered new interface driver ums-isd200 [ 0.786523] usbcore: registered new interface driver ums-jumpshot [ 0.786583] usbcore: registered new interface driver ums-karma [ 0.786643] usbcore: registered new interface driver ums-onetouch [ 0.786723] usbcore: registered new interface driver ums-realtek [ 0.786790] usbcore: registered new interface driver ums-sddr09 [ 0.786852] usbcore: registered new interface driver ums-sddr55 [ 0.786913] usbcore: registered new interface driver ums-usbat [ 0.787069] usbcore: registered new interface driver usbserial [ 0.787132] usbcore: registered new interface driver option [ 0.787190] usbserial: USB Serial support registered for GSM modem (1-port) [ 0.787492] usb_serial_number:20080411 [ 0.788434] sunxikbd_key_init: key0 vol= 475 code= 29554 [ 0.788444] sunxikbd_key_init: key1 vol= 646 code= 115 [ 0.788452] sunxikbd_key_init: key2 vol= 900 code= 114 [ 0.788783] input: sunxi-keyboard as /devices/virtual/input/input0 [ 0.883500] Goodix-TS 0-005d: ID 911, version: 1060 [ 0.883645] Goodix-TS 0-005d: Direct firmware load for goodix_911_cfg.bin failed with error -2 [ 0.885974] random: fast init done [ 0.889165] input: Goodix Capacitive TouchScreen as /devices/platform/soc/twi0/i2c-0/0-005d/input/input2 [ 0.892072] input: axp803-pek as /devices/platform/soc/7081400.s_twi/i2c-6/6-0034/axp2101-pek.0/input/input1 [ 0.893906] sunxi-rtc rtc: rtc core: registered sunxi-rtc as rtc0 [ 0.893973] sunxi-rtc rtc: RTC enabled [ 0.894434] i2c /dev entries driver [ 0.896068] usbcore: registered new interface driver uvcvideo [ 0.896074] USB Video Class driver (1.1.1) [ 0.896080] sunxi cedar version 0.1 [ 0.896276] VE: install start!!! [ 0.896276] [ 0.896511] cedar_ve: cedar-ve the get irq is 347 [ 0.896966] VE: get debugfs_mpp_root is NULL, please check mpp [ 0.896966] [ 0.905253] VE: sunxi ve debug register driver failed! [ 0.905253] [ 0.970265] sunxi-wdt 30090a0.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) [ 0.971387] device-mapper: uevent: version 1.0.3 [ 0.971930] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com [ 0.972091] Bluetooth: HCI UART driver ver 2.3 [ 0.972100] Bluetooth: HCI UART protocol H4 registered [ 0.972106] Bluetooth: HCI UART protocol LL registered [ 0.972113] Bluetooth: HCI UART protocol Three-wire (H5) registered [ 0.975724] sunxi-mmc sdc2: SD/MMC/SDIO Host Controller Driver(v3.46 2020-6-1 11:33-202006021635) [ 0.975886] sunxi-mmc sdc2: ***ctl-spec-caps*** 308 [ 0.976443] sunxi-mmc sdc2: No vdmmc regulator found [ 0.976451] sunxi-mmc sdc2: No vd33sw regulator found [ 0.976459] sunxi-mmc sdc2: No vd18sw regulator found [ 0.976466] sunxi-mmc sdc2: No vq33sw regulator found [ 0.976505] sunxi-mmc sdc2: No vq18sw regulator found [ 0.977190] sunxi-mmc sdc2: set host busy [ 0.977313] mmc:failed to get gpios [ 0.981561] sunxi-mmc sdc2: sdc set ios:clk 0Hz bm PP pm UP vdd 22 width 1 timing LEGACY(SDR12) dt B [ 1.002818] sunxi-mmc sdc2: sdc set ios:clk 400000Hz bm PP pm ON vdd 22 width 1 timing LEGACY(SDR12) dt B [ 1.019474] sunxi-mmc sdc2: detmode:alway in(non removable) [ 1.019495] sunxi-mmc sdc2: sdc set ios:clk 400000Hz bm PP pm ON vdd 22 width 1 timing LEGACY(SDR12) dt B [ 1.021965] sunxi-mmc sdc2: sdc set ios:clk 400000Hz bm PP pm ON vdd 22 width 1 timing LEGACY(SDR12) dt B [ 1.023046] sunxi-mmc sdc2: sdc set ios:clk 400000Hz bm OD pm ON vdd 22 width 1 timing LEGACY(SDR12) dt B [ 1.023107] sunxi-mmc sdc1: SD/MMC/SDIO Host Controller Driver(v3.46 2020-6-1 11:33-202006021635) [ 1.023206] sunxi-mmc sdc1: ***ctl-spec-caps*** 8 [ 1.023407] sunxi-mmc sdc1: No vmmc regulator found [ 1.023415] sunxi-mmc sdc1: No vqmmc regulator found [ 1.023422] sunxi-mmc sdc1: No vdmmc regulator found [ 1.023429] sunxi-mmc sdc1: No vd33sw regulator found [ 1.023436] sunxi-mmc sdc1: No vd18sw regulator found [ 1.023444] sunxi-mmc sdc1: No vq33sw regulator found [ 1.023451] sunxi-mmc sdc1: No vq18sw regulator found [ 1.023468] sunxi-mmc sdc2: sdc set ios:clk 400000Hz bm OD pm ON vdd 22 width 1 timing LEGACY(SDR12) dt B [ 1.023562] sunxi-mmc sdc2: sdc set ios:clk 400000Hz bm OD pm ON vdd 22 width 1 timing LEGACY(SDR12) dt B [ 1.026028] sunxi-mmc sdc2: sdc set ios:clk 400000Hz bm OD pm ON vdd 22 width 1 timing LEGACY(SDR12) dt B [ 1.027294] sunxi-mmc sdc1: set host busy [ 1.027384] mmc:failed to get gpios [ 1.031383] sunxi-mmc sdc1: min-frequency:400000 [ 1.031625] sunxi-mmc sdc1: sdc set ios:clk 0Hz bm PP pm UP vdd 21 width 1 timing LEGACY(SDR12) dt B [ 1.031654] sunxi-mmc sdc1: no vqmmc,Check if there is regulator [ 1.046131] sunxi-mmc sdc1: sdc set ios:clk 400000Hz bm PP pm ON vdd 21 width 1 timing LEGACY(SDR12) dt B [ 1.062812] sunxi-mmc sdc1: detmode:manually by software [ 1.063643] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 1.063928] hidraw: raw HID events driver (C) Jiri Kosina [ 1.067309] usbcore: registered new interface driver usbhid [ 1.067313] usbhid: USB HID core driver [ 1.067716] ashmem: initialized [ 1.068161] inv-mpu6050-i2c 1-0068: mounting matrix not found: using identity... [ 1.070456] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 1.076451] sunxi-mmc sdc1: sdc set ios:clk 400000Hz bm PP pm ON vdd 21 width 1 timing LEGACY(SDR12) dt B [ 1.078962] sunxi-mmc sdc1: sdc set ios:clk 400000Hz bm PP pm ON vdd 21 width 1 timing LEGACY(SDR12) dt B [ 1.097374] sunxi-mmc sdc2: sdc set ios:clk 400000Hz bm PP pm ON vdd 22 width 1 timing LEGACY(SDR12) dt B [ 1.110805] sunxi-mmc sdc2: sdc set ios:clk 400000Hz bm PP pm ON vdd 22 width 8 timing LEGACY(SDR12) dt B [ 1.113110] sunxi-mmc sdc2: sdc set ios:clk 400000Hz bm PP pm ON vdd 22 width 8 timing MMC-HS200 dt B [ 1.113398] sunxi-mmc sdc1: smc 1 p1 err, cmd 11, RE !! [ 1.119314] sunxi-mmc sdc2: sdc set ios:clk 100000000Hz bm PP pm ON vdd 22 width 8 timing MMC-HS200 dt B [ 1.119674] sunxi-mmc sdc2: sdc set ios:clk 100000000Hz bm PP pm ON vdd 22 width 8 timing MMC-HS(SDR20) dt B [ 1.119825] sunxi-mmc sdc2: sdc set ios:clk 52000000Hz bm PP pm ON vdd 22 width 8 timing MMC-HS(SDR20) dt B [ 1.120220] sunxi-mmc sdc2: sdc set ios:clk 50000000Hz bm PP pm ON vdd 22 width 8 timing MMC-HS400 dt B [ 1.120332] sunxi_mmc_get_hs400_cmd_dly,222 [ 1.120344] sunxi-mmc sdc2: failed to get HS400_cmd used default [ 1.120392] sunxi-mmc sdc2: sdc set ios:clk 100000000Hz bm PP pm ON vdd 22 width 8 timing MMC-HS400 dt B [ 1.120501] sunxi_mmc_get_hs400_cmd_dly,222 [ 1.120512] sunxi-mmc sdc2: failed to get HS400_cmd used default [ 1.120933] mmc0: new HS400 MMC card at address 0001 [ 1.121846] mmcblk0: mmc0:0001 AT2S38 7.23 GiB [ 1.130484] mmcblk0boot0: mmc0:0001 AT2S38 partition 1 4.00 MiB [ 1.134114] mmcblk0boot1: mmc0:0001 AT2S38 partition 2 4.00 MiB [ 1.134536] mmc1: queuing unknown CIS tuple 0x10 (5 bytes) [ 1.137715] mmcblk0rpmb: mmc0:0001 AT2S38 partition 3 4.00 MiB [ 1.139476] mmcblk0: p1 p2 p3 p4 p5 [ 1.139895] sunxi-mmc sdc1: sdc set ios:clk 50000000Hz bm PP pm ON vdd 21 width 1 timing LEGACY(SDR12) dt B [ 1.140154] sunxi-mmc sdc1: sdc set ios:clk 50000000Hz bm PP pm ON vdd 21 width 4 timing LEGACY(SDR12) dt B [ 1.140390] mmc1: queuing unknown CIS tuple 0x10 (5 bytes) [ 1.142040] mmc1: new SDIO card at address 0582 [ 1.201947] i2c i2c-1: Added multiplexed i2c bus 4 [ 1.202823] sunxi_i2c_do_xfer()1950 - [i2c7] incomplete xfer (status: 0x20, dev addr: 0xd) [ 1.212305] qmc5883l: probe of 7-000d failed with error -70 [ 1.233947] digital_vol:0, lineout_vol:26, mic1gain:31, mic2gain:31 pa_msleep:120, pa_level:1, pa_power_always_on:1 [ 1.233962] adcdrc_cfg:2, adchpf_cfg:1, dacdrc_cfg:2, dachpf:0 [ 1.233987] gpio-spk:36 [ 1.234085] sunxi-internal-codec codec: [sunxi_internal_codec_probe] codec probe finished. [ 1.235250] [sunxi_card_init] card init finished. [ 1.235342] Audio: [soc_new_pcm] -> 2699 [ 1.239791] Audio: [soc_new_pcm] -> 2718 [ 1.244338] Audio: [soc_new_pcm] -> 2746 [ 1.250116] sunxi-codec-machine sndcodec: sun50iw10codec <-> codec mapping ok [ 1.251421] input: sun50iw10-codec sunxi Audio Jack as /devices/platform/soc/sndcodec/sound/card0/input3 [ 1.251768] [audio] hp_detect_case: 0 [ 1.255911] [audio] noheadphonemic missing or it has headphonemic. [ 1.262932] sunxi-codec-machine sndcodec: [sunxi_card_dev_probe] register card finished. [ 1.263555] u32 classifier [ 1.263560] Actions configured [ 1.263572] Netfilter messages via NETLINK v0.30. [ 1.263593] nfnl_acct: registering with nfnetlink. [ 1.263934] nf_conntrack version 0.5.0 (8192 buckets, 32768 max) [ 1.264213] ctnetlink v0.93: registering with nfnetlink. [ 1.264780] xt_time: kernel timezone is -0000 [ 1.264900] ipip: IPv4 and MPLS over IPv4 tunneling driver [ 1.265635] gre: GRE over IPv4 demultiplexor driver [ 1.265641] ip_gre: GRE over IPv4 tunneling driver [ 1.266898] IPv4 over IPsec tunneling driver [ 1.267699] ip_tables: (C) 2000-2006 Netfilter Core Team [ 1.267975] arp_tables: arp_tables: (C) 2002 David S. Miller [ 1.268046] Initializing XFRM netlink socket [ 1.268086] IPsec XFRM device driver [ 1.268939] NET: Registered protocol family 10 [ 1.270939] mip6: Mobile IPv6 [ 1.270977] ip6_tables: (C) 2000-2006 Netfilter Core Team [ 1.272250] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver [ 1.273800] NET: Registered protocol family 17 [ 1.273838] NET: Registered protocol family 15 [ 1.273875] l2tp_core: L2TP core driver, V2.0 [ 1.273896] l2tp_ppp: PPPoL2TP kernel driver, V2.0 [ 1.274412] Registered cp15_barrier emulation handler [ 1.274425] Registered setend emulation handler [ 1.275296] registered taskstats version 1 [ 1.291508] sid_rd_ver_reg()418 - ver >= 4, soc ver:4 [ 1.294595] core: _opp_supported_by_regulators: OPP minuV: 0 maxuV: 0, not supported by regulator [ 1.294612] cpu cpu0: _opp_add: OPP not supported by regulators (1464000000) [ 1.294850] cpu cpu1: opp_list_debug_create_link: Failed to create link [ 1.302327] cpu cpu1: _add_opp_dev: Failed to register opp debugfs (-12) [ 1.309922] cpu cpu2: opp_list_debug_create_link: Failed to create link [ 1.317383] cpu cpu2: _add_opp_dev: Failed to register opp debugfs (-12) [ 1.324982] cpu cpu3: opp_list_debug_create_link: Failed to create link [ 1.332443] cpu cpu3: _add_opp_dev: Failed to register opp debugfs (-12) [ 1.341815] get usb_detect_mode is fail, 22 [ 1.342468] sunxi-rtc rtc: setting system clock to 1970-01-01 00:00:10 UTC (10) [ 1.343432] usb1-vbus: disabling [ 1.343686] axp803-dcdc6: disabling [ 1.345405] axp803-eldo3: disabling [ 1.346238] ALSA device list: [ 1.346243] #0: sun50iw10-codec [ 1.359712] EXT4-fs (mmcblk0p4): couldn't mount as ext3 due to feature incompatibilities [ 1.371142] EXT4-fs (mmcblk0p4): INFO: recovery required on readonly filesystem [ 1.371148] EXT4-fs (mmcblk0p4): write access will be enabled during recovery [ 1.373402] EXT4-fs (mmcblk0p4): recovery complete [ 1.373568] EXT4-fs (mmcblk0p4): mounted filesystem with ordered data mode. Opts: (null) [ 1.373612] VFS: Mounted root (ext4 filesystem) readonly on device 179:4. [ 1.374360] devtmpfs: mounted [ 1.376750] Freeing unused kernel memory: 4160K [ 1.376837] Kernel init done [ 1.434833] EXT4-fs (mmcblk0p4): re-mounted. Opts: errors=remount-ro,data=ordered [ 1.514456] random: dd: uninitialized urandom read (512 bytes read) [ 1.597373] random: dropbear: uninitialized urandom read (32 bytes read) [ 2.364730] random: crng init done [ 2.686413] pvrsrvkm: loading out-of-tree module taints kernel. [ 2.747010] pvrsrvkm gpu: set gpu core rate:504000000 freq:504000000-950000uV dfs:0x00000001 [ 2.747022] pvrsrvkm gpu: set gpu core rate:504000000 freq:472500000-950000uV dfs:0x00000002 [ 2.747028] pvrsrvkm gpu: set gpu core rate:504000000 freq:441000000-950000uV dfs:0x00000004 [ 2.747035] pvrsrvkm gpu: set gpu core rate:252000000 freq:252000000-950000uV dfs:0x00000001 [ 2.747175] pvrsrvkm gpu: idle:0 dvfs:0 power:0 Yes mode:1 volt:950000 core:504000000 [ 2.747264] PVR_K: 1156: Read BVNC 22.102.54.38 from HW device registers [ 2.754908] PVR_K: 1156: RGX Device registered with BVNC 22.102.54.38 [ 2.763147] [drm] Initialized pvr 1.11.5516664 20170530 on minor 0 [ 2.771638] Found usable fbdev device (): [ 2.771638] range (physical) = 0xff800000-0xfffd0000 [ 2.771638] size (bytes) = 0x7d0000 [ 2.771638] xres x yres = 800x1280 [ 2.771638] xres x yres (v) = 800x2560 [ 2.771638] img pix fmt = 89 [ 2.771638] flipping? = 1 [ 7.652790] [ 7.652790] insmod_device_driver [ 7.652790] [ 8.093225] rc522 probe! [ 21.866342] axp803_usb_power: current limit not set: usb adapter type [ 21.866342]
A133驱动AW869A WIFI模块出现这样的问题,请问有大佬遇到过吗?硬件都检查过了,没发现问题,加载驱动不断死循环报RTO
[ 284.979903] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 284.979909] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710000 [ 284.979914] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 284.979930] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 285.312155] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 285.318396] sunxi-mmc sdc1: *****retry:start***** [ 285.318426] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 285.318432] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710110 [ 285.318437] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 285.318450] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 285.650674] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 285.656914] sunxi-mmc sdc1: *****retry:start***** [ 285.656940] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 285.656945] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710110 [ 285.656951] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 285.656962] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 285.989187] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 285.995427] sunxi-mmc sdc1: *****retry:start***** [ 285.995453] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 285.995459] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710110 [ 285.995464] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 285.995475] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 286.327699] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 286.333943] sunxi-mmc sdc1: *****retry:start***** [ 286.333970] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 286.333976] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710220 [ 286.333982] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 286.333995] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 286.666219] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 286.672460] sunxi-mmc sdc1: *****retry:start***** [ 286.672486] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 286.672492] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710220 [ 286.672497] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 286.672508] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 287.004733] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 287.010972] sunxi-mmc sdc1: *****retry:start***** [ 287.010998] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 287.011004] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710220 [ 287.011014] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 287.011027] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 287.343252] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 287.349497] sunxi-mmc sdc1: *****retry:start***** [ 287.349524] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 287.349530] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710220 [ 287.349535] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 287.349548] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 287.681772] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 287.688012] sunxi-mmc sdc1: *****retry:start***** [ 287.688039] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 287.688044] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710220 [ 287.688050] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 287.688060] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 288.020285] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 288.026529] sunxi-mmc sdc1: *****retry:start***** [ 288.026555] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 288.026561] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710220 [ 288.026567] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 288.026577] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 288.358802] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 288.365041] sunxi-mmc sdc1: *****retry:start***** [ 288.365069] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 288.365074] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710330 [ 288.365080] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 288.365093] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 288.365107] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD RTO !! [ 288.371341] sunxi-mmc sdc1: *****retry:start***** [ 288.371353] sunxi-mmc sdc1: send manual stop command failed [ 288.377715] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 288.377720] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710330 [ 288.377726] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 288.377737] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 288.377752] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD RTO !! [ 288.383996] sunxi-mmc sdc1: *****retry:start***** [ 288.384009] sunxi-mmc sdc1: send manual stop command failed [ 288.390375] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 288.390381] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710330 [ 288.390387] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 288.390398] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 288.390414] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD RTO !! [ 288.396655] sunxi-mmc sdc1: *****retry:start***** [ 288.396668] sunxi-mmc sdc1: send manual stop command failed [ 288.403028] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 288.403034] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710330 [ 288.403040] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 288.403045] sunxi-mmc sdc1: sunxi v5p3x retry give up [ 288.403051] sunxi-mmc sdc1: retry:set phase failed or over retry times [ 288.410370] sunxi-mmc sdc1: retry:give up [ 288.414965] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 288.420957] aicbsp: aicbsp_sdio_remove [ 288.420963] aicbsp: aicwf_sdio_release [ 288.420985] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 288.426958] aicbsp: err:<aicwf_sdio_release,1473>: reg:4 write failed! [ 288.434295] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 288.440265] aicbsp: aicwf_bus_deinitaicbsp: aicwf_sdio_bus_stop [ 288.440297] aicbsp: err:<aicwf_bustx_thread,1215>: sdio bustx thread stop [ 288.447979] aicbsp: err:<aicwf_busrx_thread,1234>: sdio busrx thread stop [ 288.455649] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 288.461620] aicbsp: aicbsp_sdio_remove done [ 288.562304] aicbsp: aicbsp_platform_power_off [ 288.562341] sunxi-mmc sdc1: smc 1 p1 err, cmd 7, RTO !! [ 288.568219] aicbsp: aicbsp_set_subsys, fail to set AIC_WIFI power state to 1 [ 288.568225] sunxi-mmc sdc1: smc 1 p1 err, cmd 7, RTO !! [ 288.574097] sunxi-mmc sdc1: smc 1 p1 err, cmd 7, RTO !! [ 288.579984] sunxi-mmc sdc1: smc 1 p1 err, cmd 7, RTO !! [ 288.586049] rwnx_mod_init, set power on fail! [ 288.586060] mmc1: card 5294 removed [ 288.586168] sunxi-mmc sdc1: sdc set ios:clk 0Hz bm PP pm OFF vdd 0 width 1 timing LEGACY(SDR12) dt B [ 288.587264] sunxi-mmc sdc1: sdc set ios:clk 0Hz bm PP pm UP vdd 21 width 1 timing LEGACY(SDR12) dt B [ 288.601264] sunxi-mmc sdc1: sdc set ios:clk 400000Hz bm PP pm ON vdd 21 width 1 timing LEGACY(SDR12) dt B [ 288.618751] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 288.625524] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 288.631482] sunxi-mmc sdc1: sdc set ios:clk 400000Hz bm PP pm ON vdd 21 width 1 timing LEGACY(SDR12) dt B [ 288.633965] sunxi-mmc sdc1: sdc set ios:clk 400000Hz bm PP pm ON vdd 21 width 1 timing LEGACY(SDR12) dt B [ 288.635882] sunxi-mmc sdc1: smc 1 p1 err, cmd 5, RTO !! [ 288.642654] sunxi-mmc sdc1: smc 1 p1 err, cmd 5, RTO !! [ 288.649457] sunxi-mmc sdc1: smc 1 p1 err, cmd 5, RTO !! [ 288.656317] sunxi-mmc sdc1: smc 1 p1 err, cmd 5, RTO !! [ 288.662364] sunxi-mmc sdc1: sdc set ios:clk 0Hz bm PP pm OFF vdd 0 width 1 timing LEGACY(SDR12) dt B [ 288.683442] >>> rwnx_mod_init() [ 288.683452] rwnx 20231031-004-6.4.3.0 - - 241c091M (master) [ 288.683456] Driver Release Tag: aic-rwnx-compatible(sdio)-20231031-004 [ 288.683463] aicbsp: aicbsp_set_subsys, subsys: AIC_WIFI, state to: 1 [ 288.683468] aicbsp: aicbsp_set_subsys, power state change to 1 dure to AIC_WIFI [ 288.683471] aicbsp: aicbsp_platform_power_on [ 288.683694] aicbsp: aicbsp_platform_power_on disable MMC_CAP_UHS_DDR50 for host ffffffc03cbb8000 [ 288.684183] sunxi-wlan soc@03000000:wlan@0: check wlan wlan_power voltage: 3300000 [ 288.684862] sunxi-wlan soc@03000000:wlan@0: check wlan io_regulator voltage: 1800000 [ 288.744988] sunxi-mmc sdc1: sdc set ios:clk 0Hz bm PP pm UP vdd 21 width 1 timing LEGACY(SDR12) dt B [ 288.761261] sunxi-mmc sdc1: sdc set ios:clk 400000Hz bm PP pm ON vdd 21 width 1 timing LEGACY(SDR12) dt B [ 288.778744] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 288.785505] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 288.791461] sunxi-mmc sdc1: sdc set ios:clk 400000Hz bm PP pm ON vdd 21 width 1 timing LEGACY(SDR12) dt B [ 288.793904] sunxi-mmc sdc1: sdc set ios:clk 400000Hz bm PP pm ON vdd 21 width 1 timing LEGACY(SDR12) dt B [ 288.811863] sunxi-mmc sdc1: smc 1 p1 err, cmd 11, RE !! [ 288.832942] mmc1: queuing unknown CIS tuple 0x10 (5 bytes) [ 288.838206] sunxi-mmc sdc1: sdc set ios:clk 50000000Hz bm PP pm ON vdd 21 width 1 timing LEGACY(SDR12) dt B [ 288.838310] sunxi-mmc sdc1: sdc set ios:clk 50000000Hz bm PP pm ON vdd 21 width 4 timing LEGACY(SDR12) dt B [ 288.838480] mmc1: queuing unknown CIS tuple 0x10 (5 bytes) [ 288.839682] mmc1: new SDIO card at address fbb9 [ 288.855360] aicbsp: aicbsp_sdio_probe:2 [ 288.855368] aicbsp: aicbsp_sdio_probe:2, matched chip: aic8800d [ 288.855372] aicbsp: aicbsp_sdio_probe after replace:1 [ 288.855378] aicbsp: aicbsp_sdio_probe host max clock frequecy: 50000000 [ 288.855384] aicbsp: aicwf_sdio_reg_init [ 288.855475] sunxi-mmc sdc1: sdc set ios:clk 50000000Hz bm PP pm ON vdd 21 width 4 timing LEGACY(SDR12) dt B [ 288.855574] aicbsp: Set SDIO Clock 50 MHz [ 288.855935] aicbsp: err:<aicwf_sdio_hal_irqhandler,1314>: Interrupt but no data [ 288.864551] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD SBE !! [ 288.870796] sunxi-mmc sdc1: *****retry:start***** [ 288.870839] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 288.870845] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710110 [ 288.870851] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 288.870869] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 289.203093] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 289.209337] sunxi-mmc sdc1: *****retry:start***** [ 289.209366] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 289.209372] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710110 [ 289.209378] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 289.209390] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 289.541614] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 289.547852] sunxi-mmc sdc1: *****retry:start***** [ 289.547879] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 289.547885] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710110 [ 289.547890] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 289.547902] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 289.880140] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 289.886412] sunxi-mmc sdc1: *****retry:start***** [ 289.886458] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 289.886463] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710110 [ 289.886469] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 289.886494] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 290.218719] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 290.224961] sunxi-mmc sdc1: *****retry:start***** [ 290.224994] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 290.224999] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710110 [ 290.225005] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 290.225021] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 290.557246] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 290.563483] sunxi-mmc sdc1: *****retry:start***** [ 290.563512] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 290.563518] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710110 [ 290.563523] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 290.563536] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 290.895761] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 290.902002] sunxi-mmc sdc1: *****retry:start***** [ 290.902029] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 290.902034] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710000 [ 290.902040] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 290.902052] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 291.234277] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 291.240516] sunxi-mmc sdc1: *****retry:start***** [ 291.240543] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 291.240548] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710000 [ 291.240554] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 291.240565] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 291.572790] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 291.579031] sunxi-mmc sdc1: *****retry:start***** [ 291.579058] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 291.579064] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710000 [ 291.579069] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 291.579080] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 291.911307] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 291.917554] sunxi-mmc sdc1: *****retry:start***** [ 291.917586] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 291.917592] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710000 [ 291.917597] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 291.917612] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 291.944591] cmd timed-out [ 291.947517] tkn[0] flags:0012 result: -4 cmd:1024 - reqcfm(1025) [ 292.249837] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 292.256089] sunxi-mmc sdc1: *****retry:start***** [ 292.256119] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 292.256124] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710000 [ 292.256130] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 292.256144] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 292.588368] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 292.594610] sunxi-mmc sdc1: *****retry:start***** [ 292.594637] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 292.594643] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710000 [ 292.594648] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 292.594659] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 292.926884] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 292.933121] sunxi-mmc sdc1: *****retry:start***** [ 292.933147] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 292.933153] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710110 [ 292.933159] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 292.933170] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 293.265395] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 293.271635] sunxi-mmc sdc1: *****retry:start***** [ 293.271662] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 293.271668] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710110 [ 293.271673] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 293.271684] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 293.603909] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 293.610148] sunxi-mmc sdc1: *****retry:start***** [ 293.610177] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 293.610182] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710110 [ 293.610188] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 293.610200] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 293.942424] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 293.948666] sunxi-mmc sdc1: *****retry:start***** [ 293.948692] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 293.948698] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710220 [ 293.948703] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 293.948715] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 294.280939] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 294.287179] sunxi-mmc sdc1: *****retry:start***** [ 294.287206] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 294.287211] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710220 [ 294.287217] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 294.287228] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 294.619471] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 294.625737] sunxi-mmc sdc1: *****retry:start***** [ 294.625785] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 294.625791] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710220 [ 294.625796] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 294.625823] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 294.958049] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 294.964296] sunxi-mmc sdc1: *****retry:start***** [ 294.964327] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 294.964333] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710220 [ 294.964339] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 294.964355] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 295.296580] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 295.302825] sunxi-mmc sdc1: *****retry:start***** [ 295.302853] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 295.302858] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710220 [ 295.302868] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 295.302884] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 295.635109] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 295.641350] sunxi-mmc sdc1: *****retry:start***** [ 295.641376] sunxi-mmc sdc1: REG_DRV_DL: 0x00000000 [ 295.641382] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710220 [ 295.641387] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 295.641400] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 295.973624] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD DTO !! [ 295.979867] sunxi-mmc sdc1: *****retry:start***** [ 295.979894] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 295.979900] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710330 [ 295.979905] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 295.979916] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 295.979929] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD RTO !! [ 295.986164] sunxi-mmc sdc1: *****retry:start***** [ 295.986176] sunxi-mmc sdc1: send manual stop command failed [ 295.992538] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 295.992543] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710330 [ 295.992549] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 295.992560] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 295.992576] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD RTO !! [ 295.998818] sunxi-mmc sdc1: *****retry:start***** [ 295.998831] sunxi-mmc sdc1: send manual stop command failed [ 296.005199] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 296.005205] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710330 [ 296.005210] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 296.005221] sunxi-mmc sdc1: *****retry:re-send cmd***** [ 296.005237] sunxi-mmc sdc1: smc 1 p1 err, cmd 53, RD RTO !! [ 296.011483] sunxi-mmc sdc1: *****retry:start***** [ 296.011495] sunxi-mmc sdc1: send manual stop command failed [ 296.017854] sunxi-mmc sdc1: REG_DRV_DL: 0x00030000 [ 296.017859] sunxi-mmc sdc1: REG_SD_NTSR: 0x81710330 [ 296.017865] sunxi-mmc sdc1: REG_NTDL_HS400: 0x20000010 [ 296.017870] sunxi-mmc sdc1: sunxi v5p3x retry give up [ 296.017876] sunxi-mmc sdc1: retry:set phase failed or over retry times [ 296.025201] sunxi-mmc sdc1: retry:give up [ 296.029798] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 296.035788] aicbsp: aicbsp_sdio_remove [ 296.035794] aicbsp: aicwf_sdio_release [ 296.035817] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 296.041794] aicbsp: err:<aicwf_sdio_release,1473>: reg:4 write failed! [ 296.049132] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 296.055087] aicbsp: aicwf_bus_deinitaicbsp: aicwf_sdio_bus_stop [ 296.055121] aicbsp: err:<aicwf_bustx_thread,1215>: sdio bustx thread stop [ 296.062775] aicbsp: err:<aicwf_busrx_thread,1234>: sdio busrx thread stop [ 296.070476] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 296.076433] aicbsp: aicbsp_sdio_remove done [ 296.177115] aicbsp: aicbsp_platform_power_off [ 296.177149] aicbsp: aicbsp_set_subsys, fail to set AIC_WIFI power state to 1 [ 296.177154] sunxi-mmc sdc1: smc 1 p1 err, cmd 7, RTO !! [ 296.183022] rwnx_mod_init, set power on fail! [ 296.183025] sunxi-mmc sdc1: smc 1 p1 err, cmd 7, RTO !! [ 296.188891] sunxi-mmc sdc1: smc 1 p1 err, cmd 7, RTO !! [ 296.194754] sunxi-mmc sdc1: smc 1 p1 err, cmd 7, RTO !! [ 296.200830] mmc1: card fbb9 removed [ 296.200922] sunxi-mmc sdc1: sdc set ios:clk 0Hz bm PP pm OFF vdd 0 width 1 timing LEGACY(SDR12) dt B [ 296.202015] sunxi-mmc sdc1: sdc set ios:clk 0Hz bm PP pm UP vdd 21 width 1 timing LEGACY(SDR12) dt B [ 296.217925] sunxi-mmc sdc1: sdc set ios:clk 400000Hz bm PP pm ON vdd 21 width 1 timing LEGACY(SDR12) dt B [ 296.235424] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 296.242212] sunxi-mmc sdc1: smc 1 p1 err, cmd 52, RTO !! [ 296.248166] sunxi-mmc sdc1: sdc set ios:clk 400000Hz bm PP pm ON vdd 21 width 1 timing LEGACY(SDR12) dt B [ 296.250675] sunxi-mmc sdc1: sdc set ios:clk 400000Hz bm PP pm ON vdd 21 width 1 timing LEGACY(SDR12) dt B [ 296.252543] sunxi-mmc sdc1: smc 1 p1 err, cmd 5, RTO !! [ 296.259200] sunxi-mmc sdc1: smc 1 p1 err, cmd 5, RTO !! [ 296.265855] sunxi-mmc sdc1: smc 1 p1 err, cmd 5, RTO !! [ 296.272510] sunxi-mmc sdc1: smc 1 p1 err, cmd 5, RTO !! [ 296.278365] sunxi-mmc sdc1: sdc set ios:clk 0Hz bm PP pm OFF vdd 0 width 1 timing LEGACY(SDR12) dt B
-
大佬们,请教T113主线, 显示屏启动慢问题
[I] AWBoot r20 starting... [D] DRAM: size=128MB [D] DRAM: simple test OK. [I] SMHC: sdhci2 controller v50310 initialized [W] SMHC: error 0x100 status 0x0 [W] SMHC: cmd timeout [D] SMHC: MMC version 5.0 [D] SMHC: capacity 3.9GB [I] SHMC: MMC card detected [D] SDMMC: speedtest 512KB in 24ms at 21845KB/S [D] FATFS: mount OK [I] FATFS: read sun8i-t113-mangopi-dual.dtb addr=44000000 [D] FATFS: read in 2ms at 11.20MB/S [I] FATFS: read zImage addr=44800000 [D] FATFS: read in 131ms at 38.89MB/S [D] FATFS: unmount OK [D] FATFS: done in 529ms [I] booting linux... [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Linux version 6.0.1-gd7d8c971c9c5-dirty (paulwu@paulwu-virtual-machine) (arm-linux-gnueabihf-gcc (Ubuntu/Linaro 7.5.0-3ubuntu1~18.04) 7.5.0, GNU ld (GNU Binutils for Ubuntu) 2.30) #36 SMP Wed Feb 8 15:05:12 CST 2023 [ 0.000000] CPU: ARMv7 Processor [410fc075] revision 5 (ARMv7), cr=10c5387d [ 0.000000] CPU: div instructions available: patching division code [ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache [ 0.000000] OF: fdt: Machine model: MangoPi MQ-Dual [ 0.000000] Memory policy: Data cache writealloc [ 0.000000] cma: Reserved 32 MiB at 0x46000000 [ 0.000000] Zone ranges: [ 0.000000] Normal [mem 0x0000000040000000-0x0000000047ffffff] [ 0.000000] HighMem empty [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000040000000-0x0000000047ffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000040000000-0x0000000047ffffff] [ 0.000000] percpu: Embedded 11 pages/cpu s15508 r8192 d21356 u45056 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 32512 [ 0.000000] Kernel command line: mem=128M cma=32M root=/dev/mmcblk0p2 init=/sbin/init rootwait console=ttyS0,115200 earlyprintk=sunxi-uart,0x02501400 [ 0.000000] Unknown kernel command line parameters "earlyprintk=sunxi-uart,0x02501400", will be passed to user space. [ 0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes, linear) [ 0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] Memory: 83384K/131072K available (8192K kernel code, 950K rwdata, 2212K rodata, 1024K init, 276K bss, 14920K reserved, 32768K cma-reserved, 0K highmem) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.000000] rcu: Hierarchical RCU implementation. [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 [ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16 [ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns [ 0.000001] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns [ 0.000013] Switching to timer-based delay loop, resolution 41ns [ 0.000190] clocksource: timer: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635851949 ns [ 0.000681] Console: colour dummy device 80x30 [ 0.000730] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=240000) [ 0.000747] pid_max: default: 32768 minimum: 301 [ 0.000903] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.000919] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.001450] CPU: Testing write buffer coherency: ok [ 0.001774] /cpus/cpu@0 missing clock-frequency property [ 0.001804] /cpus/cpu@1 missing clock-frequency property [ 0.001815] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000 [ 0.002575] Setting up static identity map for 0x40100000 - 0x40100060 [ 0.002720] rcu: Hierarchical SRCU implementation. [ 0.002728] rcu: Max phase no-delay instances is 1000. [ 0.003250] smp: Bringing up secondary CPUs ... [ 0.003921] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001 [ 0.004045] smp: Brought up 1 node, 2 CPUs [ 0.004056] SMP: Total of 2 processors activated (96.00 BogoMIPS). [ 0.004064] CPU: All CPU(s) started in SVC mode. [ 0.004574] devtmpfs: initialized [ 0.008630] VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 5 [ 0.008828] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.008849] futex hash table entries: 512 (order: 3, 32768 bytes, linear) [ 0.009882] pinctrl core: initialized pinctrl subsystem [ 0.011289] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.012390] DMA: preallocated 256 KiB pool for atomic coherent allocations [ 0.013236] thermal_sys: Registered thermal governor 'step_wise' [ 0.013531] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers. [ 0.013544] hw-breakpoint: maximum watchpoint size is 8 bytes. [ 0.022318] platform 5460000.tcon-top: Fixing up cyclic dependency with 5100000.mixer [ 0.022618] platform 5461000.lcd-controller: Fixing up cyclic dependency with 5460000.tcon-top [ 0.023584] platform 7090000.rtc: Fixing up cyclic dependency with 7010000.clock-controller [ 0.025024] platform panel: Fixing up cyclic dependency with 5461000.lcd-controller [ 0.034008] SCSI subsystem initialized [ 0.034501] usbcore: registered new interface driver usbfs [ 0.034546] usbcore: registered new interface driver hub [ 0.034586] usbcore: registered new device driver usb [ 0.034800] mc: Linux media interface: v0.10 [ 0.034846] videodev: Linux video capture interface: v2.00 [ 0.034921] pps_core: LinuxPPS API ver. 1 registered [ 0.034928] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 0.034945] PTP clock support registered [ 0.035390] Advanced Linux Sound Architecture Driver Initialized. [ 0.036308] clocksource: Switched to clocksource arch_sys_counter [ 0.043641] NET: Registered PF_INET protocol family [ 0.043835] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 0.044391] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes, linear) [ 0.044423] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.044435] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.044456] TCP bind hash table entries: 1024 (order: 1, 8192 bytes, linear) [ 0.044476] TCP: Hash tables configured (established 1024 bind 1024) [ 0.044560] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.044594] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.044762] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.045442] RPC: Registered named UNIX socket transport module. [ 0.045457] RPC: Registered udp transport module. [ 0.045461] RPC: Registered tcp transport module. [ 0.045464] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 0.046911] workingset: timestamp_bits=30 max_order=15 bucket_order=0 [ 0.051812] NFS: Registering the id_resolver key type [ 0.051881] Key type id_resolver registered [ 0.051887] Key type id_legacy registered [ 0.052123] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246) [ 0.052133] io scheduler mq-deadline registered [ 0.052138] io scheduler kyber registered [ 0.066486] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled [ 0.073817] panel-simple panel: supply power not found, using dummy regulator [ 0.077231] CAN device driver interface [ 0.077977] PPP generic driver version 2.4.2 [ 0.078239] PPP BSD Compression module registered [ 0.078248] PPP Deflate Compression module registered [ 0.078476] PPP MPPE Compression module registered [ 0.078484] NET: Registered PF_PPPOX protocol family [ 0.078573] usbcore: registered new interface driver asix [ 0.078616] usbcore: registered new interface driver ax88179_178a [ 0.078644] usbcore: registered new interface driver cdc_ether [ 0.078679] usbcore: registered new interface driver smsc95xx [ 0.078706] usbcore: registered new interface driver net1080 [ 0.078733] usbcore: registered new interface driver cdc_subset [ 0.078775] usbcore: registered new interface driver zaurus [ 0.078835] usbcore: registered new interface driver sierra_net [ 0.078873] usbcore: registered new interface driver cdc_ncm [ 0.078900] usbcore: registered new interface driver r8153_ecm [ 0.078905] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 0.078910] ehci-platform: EHCI generic platform driver [ 0.079114] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 0.079144] ohci-platform: OHCI generic platform driver [ 0.079316] usbcore: registered new interface driver usb-storage [ 0.079407] usbcore: registered new interface driver option [ 0.079435] usbserial: USB Serial support registered for GSM modem (1-port) [ 0.081774] sun6i-rtc 7090000.rtc: registered as rtc0 [ 0.081896] sun6i-rtc 7090000.rtc: setting system clock to 1970-01-02T00:00:01 UTC (86401) [ 0.082025] sun6i-rtc 7090000.rtc: RTC enabled [ 0.082350] i2c_dev: i2c /dev entries driver [ 0.083532] bm_cw2015_init [ 0.084202] sunxi-wdt 20500a0.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) [ 0.085303] sun8i-ce 3040000.crypto: Set mod clock to 300000000 (300 Mhz) from 400000000 (400 Mhz) [ 0.085622] sun8i-ce 3040000.crypto: will run requests pump with realtime priority [ 0.085946] sun8i-ce 3040000.crypto: will run requests pump with realtime priority [ 0.086157] sun8i-ce 3040000.crypto: will run requests pump with realtime priority [ 0.086395] sun8i-ce 3040000.crypto: will run requests pump with realtime priority [ 0.086560] sun8i-ce 3040000.crypto: Register cbc(aes) [ 0.086582] sun8i-ce 3040000.crypto: Register ecb(aes) [ 0.086591] sun8i-ce 3040000.crypto: Register cbc(des3_ede) [ 0.086601] sun8i-ce 3040000.crypto: Register ecb(des3_ede) [ 0.086632] sun8i-ce 3040000.crypto: CryptoEngine Die ID 0 [ 0.087509] usbcore: registered new interface driver usbhid [ 0.087520] usbhid: USB HID core driver [ 0.090258] NET: Registered PF_PACKET protocol family [ 0.090290] can: controller area network core [ 0.090370] NET: Registered PF_CAN protocol family [ 0.090379] can: raw protocol [ 0.090386] can: broadcast manager protocol [ 0.090394] can: netlink gateway - max_hops=1 [ 0.090501] Key type dns_resolver registered [ 0.090641] Registering SWP/SWPB emulation handler [ 0.109299] sun20i-d1-pinctrl 2000000.pinctrl: initialized sunXi PIO driver [ 0.111235] printk: console [ttyS0] disabled [ 0.131488] 2500000.serial: ttyS0 at MMIO 0x2500000 (irq = 231, base_baud = 1500000) is a 16550A [ 1.063712] printk: console [ttyS0] enabled [ 1.089476] 2500400.serial: ttyS1 at MMIO 0x2500400 (irq = 232, base_baud = 1500000) is a 16550A [ 1.119591] 2500800.serial: ttyS2 at MMIO 0x2500800 (irq = 233, base_baud = 1500000) is a 16550A [ 1.153811] 2500c00.serial: ttyS3 at MMIO 0x2500c00 (irq = 234, base_baud = 1500000) is a 16550A [ 1.183930] 2501000.serial: ttyS4 at MMIO 0x2501000 (irq = 235, base_baud = 1500000) is a 16550A [ 1.213990] 2501400.serial: ttyS5 at MMIO 0x2501400 (irq = 236, base_baud = 1500000) is a 16550A [ 1.224877] ehci-platform 4101000.usb: EHCI Host Controller [ 1.226025] usb_phy_generic usb_phy_generic.1.auto: dummy supplies not allowed for exclusive requests [ 1.230558] ehci-platform 4101000.usb: new USB bus registered, assigned bus number 1 [ 1.240321] musb-hdrc musb-hdrc.2.auto: MUSB HDRC host driver [ 1.253269] musb-hdrc musb-hdrc.2.auto: new USB bus registered, assigned bus number 2 [ 1.262075] hub 2-0:1.0: USB hub found [ 1.262188] ehci-platform 4200000.usb: EHCI Host Controller [ 1.265892] hub 2-0:1.0: 1 port detected [ 1.273384] ohci-platform 4200400.usb: Generic Platform OHCI controller [ 1.282058] ohci-platform 4200400.usb: new USB bus registered, assigned bus number 3 [ 1.286339] ehci-platform 4200000.usb: new USB bus registered, assigned bus number 4 [ 1.289999] ehci-platform 4101000.usb: irq 237, io mem 0x04101000 [ 1.299657] cw2015_probe... [ 1.306790] ohci-platform 4200400.usb: irq 241, io mem 0x04200400 [ 1.313038] ehci-platform 4200000.usb: irq 239, io mem 0x04200000 [ 1.326325] ehci-platform 4101000.usb: USB 2.0 started, EHCI 1.00 [ 1.333168] hub 1-0:1.0: USB hub found [ 1.337002] hub 1-0:1.0: 1 port detected [ 1.356327] ehci-platform 4200000.usb: USB 2.0 started, EHCI 1.00 [ 1.363121] hub 4-0:1.0: USB hub found [ 1.366976] hub 4-0:1.0: 1 port detected [ 1.381015] hub 3-0:1.0: USB hub found [ 1.384817] hub 3-0:1.0: 1 port detected [ 1.399013] Goodix-TS 1-005d: supply AVDD28 not found, using dummy regulator [ 1.406213] Goodix-TS 1-005d: supply VDDIO not found, using dummy regulator [ 1.428026] musb-hdrc musb-hdrc.2.auto: VBUS_ERROR in a_idle (80, <SessEnd), retry #0, port1 00000104 [ 1.466400] ohci-platform 4101400.usb: Generic Platform OHCI controller [ 1.473046] ohci-platform 4101400.usb: new USB bus registered, assigned bus number 5 [ 1.481050] ohci-platform 4101400.usb: irq 240, io mem 0x04101400 [ 1.526431] Goodix-TS 1-005d: Error reading 1 bytes from 0x8140: -6 [ 1.561060] hub 5-0:1.0: USB hub found [ 1.564854] hub 5-0:1.0: 1 port detected [ 1.568905] Goodix-TS 1-005d: Error reading 1 bytes from 0x8140: -6 [ 1.606314] Goodix-TS 1-005d: I2C communication failure: -6 [ 1.613952] ALSA device list: [ 1.617017] No soundcards found. [ 1.645971] sunxi-mmc 4022000.mmc: initialized, max. request size: 2048 KB, uses new timings mode [ 1.655021] Waiting for root device /dev/mmcblk0p2... [ 1.660145] usb 4-1: new high-speed USB device number 2 using ehci-platform [ 1.719665] mmc0: new DDR MMC card at address 0001 [ 1.725404] mmcblk0: mmc0:0001 4FPD3R 3.64 GiB [ 1.732254] mmcblk0: p1 p2 [ 1.735913] mmcblk0boot0: mmc0:0001 4FPD3R 4.00 MiB [ 1.742581] mmcblk0boot1: mmc0:0001 4FPD3R 4.00 MiB [ 1.782563] EXT4-fs (mmcblk0p2): INFO: recovery required on readonly filesystem [ 1.789955] EXT4-fs (mmcblk0p2): write access will be enabled during recovery [ 1.867356] hub 4-1:1.0: USB hub found [ 1.872348] hub 4-1:1.0: 5 ports detected [ 1.978501] EXT4-fs (mmcblk0p2): recovery complete [ 1.985511] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Quota mode: disabled. [ 1.994518] VFS: Mounted root (ext4 filesystem) readonly on device 179:2. [ 2.002019] devtmpfs: mounted [ 2.005975] Freeing unused kernel image (initmem) memory: 1024K [ 2.012131] Run /sbin/init as init process [ 2.126093] EXT4-fs (mmcblk0p2): re-mounted. Quota mode: disabled. Starting syslogd: OK Starting klogd: OK Running sysctl: OK [ 2.226408] usb 4-1.1: new high-speed USB device number 3 using ehci-platform Initializing random number generator... [ 2.379371] smsc95xx v2.0.0 [ 2.499076] SMSC LAN8700 usb-004:003:01: attached PHY driver (mii_bus:phy_addr=usb-004:003:01, irq=245) [ 2.509232] smsc95xx 4-1.1:1.0 eth0: register 'smsc95xx' at usb-4200000.usb-1.1, smsc95xx USB 2.0 Ethernet, 42:f5:7d:e0:78:74 [ 7.366312] random: crng init done done. Starting haveged: haveged: listening socket at 3 OK Starting network: [ 7.510376] smsc95xx 4-1.1:1.0 eth0: hardware isn't capable of remote wakeup [ 7.521342] smsc95xx 4-1.1:1.0 eth0: Link is Down OK Starting sshd: OK Failed to open mixer Failed to open mixer Failed to open mixer Failed to open mixer ls: /dev/sd*: No such file or directory ls: /dev/sd*: No such file or directory cat: can't open '/SyTech/SmartMining/Excavator_Terminal_Equipment/Release/typeflag': No such file or directory sh: 1: unknown operand cp: can't stat '/SyTech/SmartMining/Excavator_Terminal_Equipment/Release/pointercal_0': No such file or directory mv: can't rename '/etc/pointercal_0': No such file or directory cp: can't stat '/SyTech/SmartMining/Excavator_Terminal_Equipment/Release/profile_0': No such file or directory mv: can't rename '/etc/profile_0': No such file or directory fdisk -l size error. /etc/init.d/autoresize:Disk Size=1024M no need to resize. cat: can't open '/etc/init.d/resizeflag': No such file or directory sh: 1: unknown operand [ 8.015393] rc522 probe! cat: can't open '/etc/init.d/usbplugout': No such file or directory /etc/init.d/lastsim exist use inside sim0 [ 13.216317] usb 1-1: new high-speed USB device number 2 using ehci-platform [ 14.798286] usb 1-1: USB disconnect, device number 2 [ 18.411715] sun4i-drm display-engine: bound 5100000.mixer (ops 0xc0953bd8) [ 18.418985] sun4i-drm display-engine: bound 5460000.tcon-top (ops 0xc09580a4) [ 18.426718] sun4i-drm display-engine: bound 5461000.lcd-controller (ops 0xc094fc4c) [ 18.435001] [drm] Initialized sun4i-drm 1.0.0 20150629 for display-engine on minor 0 [ 18.487934] Console: switching to colour frame buffer device 128x37
看LOG, 10多秒才启动显示屏,请教大佬们是那里问题
-
A133 VIN连接AHD芯片请教
大佬们好,我使用A133的MIPI连接AHD芯片时遇到以下问题。
这是使用V4L2调用后的打印
这是设备树的配置
vind0:vind@0 { vind0_clk = <336000000>; vind0_isp = <300000000>; status = "okay"; actuator0:actuator@0 { device_type = "actuator0"; actuator0_name = "ad5820_act"; actuator0_slave = <0x18>; actuator0_af_pwdn = <>; actuator0_afvdd = "afvcc-csi"; actuator0_afvdd_vol = <2800000>; status = "disabled"; }; flash0:flash@0 { device_type = "flash0"; flash0_type = <2>; flash0_en = <&r_pio PL 11 1 0 1 0>; flash0_mode = <>; flash0_flvdd = ""; flash0_flvdd_vol = <>; device_id = <0>; status = "disabled"; }; sensor0:sensor@0 { device_type = "sensor0"; sensor0_mname = "xs9922_mipi"; sensor0_twi_cci_id = <2>; sensor0_twi_addr = <0x60>; sensor0_mclk_id = <0>; sensor0_pos = "rear"; sensor0_isp_used = <0>; sensor0_fmt = <0>; sensor0_stby_mode = <0>; sensor0_vflip = <0>; sensor0_hflip = <0>; sensor0_iovdd-supply = <®_dldo2>; sensor0_iovdd_vol = <3300000>; sensor0_avdd-supply = <®_dldo3>; sensor0_avdd_vol = <2500000>; sensor0_dvdd-supply = <®_dldo4>; sensor0_dvdd_vol = <1100000>; sensor0_power_en = <>; sensor0_reset = <&pio PE 4 1 0 1 0>; sensor0_pwdn = <>; flash_handle = <>; act_handle = <>; status = "okay"; }; sensor1:sensor@1 { device_type = "sensor1"; sensor1_mname = "gc5035_mipi"; sensor1_twi_cci_id = <2>; sensor1_twi_addr = <0x7e>; sensor1_mclk_id = <0>; sensor1_pos = "front"; sensor1_isp_used = <1>; sensor1_fmt = <1>; sensor1_stby_mode = <0>; sensor1_vflip = <0>; sensor1_hflip = <0>; sensor1_iovdd-supply = <®_dldo2>; sensor1_iovdd_vol = <1800000>; sensor1_avdd-supply = <®_dldo3>; sensor1_avdd_vol = <2800000>; sensor1_dvdd-supply = <®_eldo2>; sensor1_dvdd_vol = <1200000>; sensor1_power_en = <>; sensor1_reset = <&pio PE 7 1 0 1 0>; sensor1_pwdn = <&pio PE 6 1 0 1 0>; status = "disabled"; }; vinc0:vinc@0 { vinc0_csi_sel = <0>; vinc0_mipi_sel = <0>; vinc0_isp_sel = <0>; vinc0_isp_tx_ch = <0>; vinc0_tdm_rx_sel = <0>; vinc0_rear_sensor_sel = <0>; vinc0_front_sensor_sel = <0>; vinc0_sensor_list = <0>; status = "okay"; }; vinc1:vinc@1 { vinc1_csi_sel = <0>; vinc1_mipi_sel = <0>; vinc1_isp_sel = <0>; vinc1_isp_tx_ch = <1>; vinc1_tdm_rx_sel = <0>; vinc1_rear_sensor_sel = <0>; vinc1_front_sensor_sel = <0>; vinc1_sensor_list = <0>; status = "okay"; }; vinc2:vinc@2 { vinc2_csi_sel = <0>; vinc2_mipi_sel = <0>; vinc2_isp_sel = <0>; vinc2_isp_tx_ch = <2>; vinc2_tdm_rx_sel = <0>; vinc2_rear_sensor_sel = <0>; vinc2_front_sensor_sel = <0>; vinc2_sensor_list = <0>; status = "okay"; }; vinc3:vinc@3 { vinc3_csi_sel = <0>; vinc3_mipi_sel = <0>; vinc3_isp_sel = <0>; vinc3_isp_tx_ch = <3>; vinc3_tdm_rx_sel = <0>; vinc3_rear_sensor_sel = <0>; vinc3_front_sensor_sel = <0>; vinc3_sensor_list = <0>; status = "okay"; }; };
这是V4L2调用代码
void MainWindow::showEvent(QShowEvent *event) { struct v4l2_capability cap; struct v4l2_input inp; /* select the current video input */ struct v4l2_streamparm parms; /* set streaming parameters */ struct v4l2_format fmt; /* try a format */ struct v4l2_requestbuffers req; struct v4l2_buffer buf; enum v4l2_buf_type type; int i; fd = open("/dev/video0", O_RDWR, 0); if(fd < 0) { qDebug()<<"/dev/video0 open fail..."; return; } memset(&cap, 0, sizeof(cap)); if(ioctl(fd, VIDIOC_QUERYCAP, &cap) < 0) { qDebug()<<"Query device capabilities fail!!!"; ::close(fd); return; } else { qDebug()<<"Querey device capabilities succeed"; qDebug()<<"cap.driver ="<<(char*)cap.driver; qDebug()<<"cap.card ="<<(char*)cap.card; qDebug()<<"cap.bus_info ="<<(char*)cap.bus_info; qDebug()<<"cap.version ="<<QString().sprintf("0x%08x",cap.version); qDebug()<<"cap.capabilities ="<<QString().sprintf("0x%08x", cap.capabilities); } if(!(cap.capabilities & V4L2_CAP_VIDEO_CAPTURE_MPLANE)) { qDebug()<<"The device is not supports the Video Capture interface!!!"; ::close(fd); return; } memset(&inp, 0, sizeof(inp)); inp.index = 0; inp.type = V4L2_INPUT_TYPE_CAMERA; if (ioctl(fd, VIDIOC_S_INPUT, &inp) < 0) { qDebug()<<"VIDIOC_S_INPUT failed! s_input:"<<inp.index; ::close(fd); return; } memset(&parms, 0, sizeof(parms)); parms.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE; parms.parm.capture.timeperframe.numerator = 1; parms.parm.capture.timeperframe.denominator = 25; if (ioctl(fd, VIDIOC_S_PARM, &parms) < 0) { qDebug()<<"Setting streaming parameters failed 1/25"; ::close(fd); return; } memset(&fmt, 0, sizeof(fmt)); fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE; fmt.fmt.pix_mp.width = 1920; fmt.fmt.pix_mp.height = 1080; fmt.fmt.pix_mp.pixelformat = V4L2_PIX_FMT_UYVY; fmt.fmt.pix_mp.field = V4L2_FIELD_NONE; if (ioctl(fd, VIDIOC_S_FMT, &fmt) < 0) { qDebug()<<"setting the data format failed!"; ::close(fd); return; } if (ioctl(fd, VIDIOC_G_FMT, &fmt) < 0) { qDebug()<<"get the data format failed!"; } memset(&req, 0, sizeof(req)); req.count = 3; req.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE; req.memory = V4L2_MEMORY_MMAP; if (ioctl(fd, VIDIOC_REQBUFS, &req) < 0) { qDebug()<<"VIDIOC_REQBUFS failed"; ::close(fd); return; } memset(&buf, 0, sizeof( buf)); for (i = 0; i < 3; i++) { buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE; buf.memory = V4L2_MEMORY_MMAP; buf.index = i; buf.length = 1; buf.m.planes = (struct v4l2_plane *)calloc(buf.length, sizeof(struct v4l2_plane)); if(ioctl(fd, VIDIOC_QUERYBUF, &buf) < 0) { qDebug()<<"VIDIOC_QUERYBUF failed"; free(buf.m.planes); ::close(fd); return; } mptr[i] = (unsigned char *)mmap(NULL, buf.m.planes[0].length, PROT_READ | PROT_WRITE, MAP_SHARED, fd, buf.m.planes[0].m.mem_offset); size[i] = buf.length; //使用完毕 if(ioctl(fd, VIDIOC_QBUF, &buf) < 0) { qDebug()<<"VIDIOC_QBUF failed"; free(buf.m.planes); ::close(fd); return; } } type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE; if (ioctl(fd, VIDIOC_STREAMON, &type) == -1) { qDebug()<<"VIDIOC_STREAMON error!"; free(buf.m.planes); ::close(fd); } //timer = new QTimer(this); //connect(timer,&QTimer::timeout, this, &MainWindow::ReadCarmeraFrame); //timer->start(25); } MainWindow::~MainWindow() { delete ui; } void MainWindow::ReadCarmeraFrame() { struct v4l2_buffer readbuffer; readbuffer.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE; readbuffer.memory = V4L2_MEMORY_MMAP; readbuffer.length = 1; readbuffer.m.planes = (struct v4l2_plane *)calloc(readbuffer.length, sizeof(struct v4l2_plane)); if(ioctl(fd, VIDIOC_DQBUF, &readbuffer) < 0) { qDebug()<<"VIDIOC_DQBUF failed"; ::close(fd); timer->stop(); return; } qDebug()<<"index:"<<readbuffer.index; qDebug()<<"ptr:"<<mptr[readbuffer.index]; /*yuyv_to_rgb(mptr[readbuffer.index], rgbdata, 1920, 1080); QImage image = QImage((const uchar*)rgbdata, 1920, 1080, QImage::Format_RGB888); ui->label->setPixmap(QPixmap::fromImage(image));*/ //通知内核已经使用完毕 if(ioctl(fd, VIDIOC_QBUF, &readbuffer) < 0) { qDebug()<<"VIDIOC_QBUF failed"; ::close(fd); timer->stop(); return; } free(readbuffer.m.planes); }
-
请教longsn PMU选择
大佬们好,我板上的PMU是AXP707, 但longanSDK里没这个PMU,只有AXP803, AXP806, AXP858, AXP2202。 请教我应该选那个?