RK3588平台开发系列:init.d介绍与Android

59 篇文章 ¥59.90 ¥99.00
本文介绍了RK3588平台Android开发中init.d的重要角色,包括其作为系统初始化目录的功能,如执行初始化任务、设置环境变量和启动服务。通过创建和设置权限的.sh脚本,开发者可以实现系统启动时的自动化操作,提高开发的灵活性和定制化程度。

RK3588平台开发系列:init.d介绍与Android

在RK3588平台上进行开发时,init.d是一个重要的组件,它在Android系统中发挥着关键的作用。本文将详细介绍init.d的功能和使用方法,并提供一些相关的源代码示例。

概述:
init.d是一个位于Android系统初始化过程中的目录,其中包含一系列以".sh"为后缀的脚本文件。这些脚本文件在系统启动时自动执行,用于执行一些初始化任务、设置环境变量、启动服务等操作。init.d目录的位置通常是在"/system/etc"或"/etc"下。

init.d的功能:

  1. 执行初始化任务:可以在init.d脚本中执行一些初始化任务,如挂载文件系统、设置权限、加载内核模块等。这些任务可以在系统启动时自动完成,确保系统的正常运行。

  2. 设置环境变量:通过在init.d脚本中设置环境变量,可以为系统和应用程序提供特定的环境配置。例如,可以设置JAVA_HOME、PATH等环境变量,以便应用程序能够正确地找到所需的依赖项和资源。

  3. 启动服务:在init.d脚本中可以启动系统服务或自定义的服务。这些服务可以在系统启动时自动启动,以提供后台功能或支持其他应用程序的运行。例如,可以在init.d中启动网络服务、数据库服务等。

init.d的使用方法:

  1. 创建init.d脚本:在指定的位置(如"/system/etc/init.d")创建一个以".sh"为后缀的脚本文件,例如"myscript.sh"。

  2. 编写脚本内容:使用文本编辑器打开脚本文件,并编写需

关闭Camera时RenderEngine: Unable to generate SkImage. isTextureValid:0 dataspace:0 09-22 17:48:47.984 8557 8576 F RenderEngine: Unable to generate SkImage. isTextureValid:0 dataspace:0 --------- beginning of crash 09-22 17:48:47.984 8557 8576 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 8576 (RenderEngine), pid 8557 (surfaceflinger) 09-22 17:48:47.998 7092 7092 V ExtCamDevSsn@3.4: @dequeueV4l2FrameLocked(4057) cameraId:100 selectV4l2FD done. 09-22 17:48:47.999 7092 7092 D ExtCamDevSsn@3.4: dequeueV4l2FrameLocked(4100) buffer.index(1), length(933248), mem_offset(933888) 09-22 17:48:47.999 7092 9837 E ExtCamDevSsn@3.4: threadLoop: move_up_down region not exists! 09-22 17:48:47.999 7092 9837 V ExtCamDevSsn@3.4: threadLoop(1765)mShareFd(32) mVirAddr(0x7bce2cb000)! 09-22 17:48:47.999 7092 9837 V ExtCamDevSsn@3.4: threadLoop(1769)mWidth(1268) mHeight(360), tmpW(1280), tmpH(368), inDataSize(933248)! 09-22 17:48:47.999 7092 9837 I ExtCamDevSsn@3.4: threadLoop(1790) req->frameIn->mFourcc=1448695129 09-22 17:48:47.999 7092 9837 E ExtCamDevSsn@3.4: threadLoop: ldc region not exists! 09-22 17:48:47.999 7092 9837 V ExtCamDevSsn@3.4: threadLoop(1864)mWidth(1268) mHeight(360), tmpW(1280), tmpH(368), inDataSize(933248)! 09-22 17:48:47.999 7092 7150 V ExtCamDevSsn@3.4: @dequeueV4l2FrameLocked(4055) cameraId:100 selectV4l2FD begin 09-22 17:48:47.999 7092 9836 V ExtCamDevSsn@3.4: threadLoop(2504): mYu12Frame widthxheight: 1268x360 09-22 17:48:48.000 7092 9836 V ExtCamDevSsn@3.4: threadLoop: wpzz max_digital_zoom value(4.000000) 09-22 17:48:48.000 7092 9836 V ExtCamDevSsn@3.4: threadLoop processing new request 09-22 17:48:48.000 7092 9836 V ExtCamDevSsn@3.4: threadLoop libyuvToI420 09-22 17:48:48.000 7092 9836 V ExtCamDevSsn@3.4: threadLoop: outLayout y 0x7bcbb0f000 cb 0x7bcbb7e720 cr 0x7bcbb7e721 y_str 1268 c_str 1268 c_step 2 09-22 17:48:48.001 7092 9836 V ExtCamDevSsn@3.4: threadLoop: converting to format NV12 09-22 17:48:48.018 7092 7150 V ExtCamDevSsn@3.4: @dequeueV4l2FrameLocked(4057) cameraId:100 selectV4l2FD done. 09-22 17:48:48.018 7092 7150 D ExtCamDevSsn@3.4: dequeueV4l2FrameLocked(4100) buffer.index(2), length(933248), mem_offset(1867776) 09-22 17:48:48.019 7092 9837 E ExtCamDevSsn@3.4: threadLoop: move_up_down region not exists! 09-22 17:48:48.019 7092 9837 V ExtCamDevSsn@3.4: threadLoop(1765)mShareFd(34) mVirAddr(0x7bce1e5000)! 09-22 17:48:48.019 7092 9837 V ExtCamDevSsn@3.4: threadLoop(1769)mWidth(1268) mHeight(360), tmpW(1280), tmpH(368), inDataSize(933248)! 09-22 17:48:48.019 7092 9837 I ExtCamDevSsn@3.4: threadLoop(1790) req->frameIn->mFourcc=1448695129 09-22 17:48:48.019 7092 9837 E ExtCamDevSsn@3.4: threadLoop: ldc region not exists! 09-22 17:48:48.019 7092 9837 V ExtCamDevSsn@3.4: threadLoop(1864)mWidth(1268) mHeight(360), tmpW(1280), tmpH(368), inDataSize(933248)! 09-22 17:48:48.019 427 446 I android.hardware.graphics.allocator@4.0-service: alloc_format: FMT:0x100,MOD:0 09-22 17:48:48.019 427 446 I android.hardware.graphics.allocator@4.0-service: mali_gralloc_adjust_dimensions: alloc_format=FMT:0x100,MOD:0 usage=0x104000040030933 alloc_width=1268, alloc_height=360 09-22 17:48:48.019 427 446 D android.hardware.graphics.allocator@4.0-service: got new private_handle_t instance for buffer 'SurfaceView[com.android.camera2/com.mtsilicon.matcamera.MultiCameraViewActivity]#1(BLAST Consumer)1'. share_fd : 10, share_attr_fd : 11, width : 1268, height : 360, req_format : 0x22, producer_usage : 0x104000040030933, consumer_usage : 0x104000040030933, , stride : 1268, alloc_format : 256, size : 912960, layer_count : 1 09-22 17:48:48.019 427 446 D android.hardware.graphics.allocator@4.0-service: plane_info[0]: offset : 0, byte_stride : 1268, alloc_width : 1268, alloc_height : 360 09-22 17:48:48.019 427 446 D android.hardware.graphics.allocator@4.0-service: plane_info[1]: offset : 456480, byte_stride : 1268, alloc_width : 634, alloc_height : 180 09-22 17:48:48.019 7092 9836 V ExtCamDevSsn@3.4: threadLoop(2504): mYu12Frame widthxheight: 1268x360 09-22 17:48:48.019 7092 9836 V ExtCamDevSsn@3.4: threadLoop: wpzz max_digital_zoom value(4.000000) 09-22 17:48:48.019 7092 9836 V ExtCamDevSsn@3.4: threadLoop processing new request 09-22 17:48:48.019 7092 9836 V ExtCamDevSsn@3.4: threadLoop libyuvToI420 09-22 17:48:48.020 7092 7092 V ExtCamDevSsn@3.4: @dequeueV4l2FrameLocked(4055) cameraId:100 selectV4l2FD begin 09-22 17:48:48.020 7092 9836 V ExtCamDevSsn@3.4: threadLoop: outLayout y 0x7bcb951000 cb 0x7bcb9c0720 cr 0x7bcb9c0721 y_str 1268 c_str 1268 c_step 2 09-22 17:48:48.020 7092 9836 V ExtCamDevSsn@3.4: threadLoop: converting to format NV12 09-22 17:48:48.026 9854 9854 I crash_dump64: obtaining output fd from tombstoned, type: kDebuggerdTombstoneProto 09-22 17:48:48.027 390 390 I tombstoned: received crash request for pid 8576 09-22 17:48:48.027 9854 9854 I crash_dump64: performing dump of process 8557 (target tid = 8576) 09-22 17:48:48.038 7092 7092 V ExtCamDevSsn@3.4: @dequeueV4l2FrameLocked(4057) cameraId:100 selectV4l2FD done. 09-22 17:48:48.039 7092 7092 D ExtCamDevSsn@3.4: dequeueV4l2FrameLocked(4100) buffer.index(3), length(933248), mem_offset(2801664) 09-22 17:48:48.039 7092 9837 E ExtCamDevSsn@3.4: threadLoop: move_up_down region not exists! 09-22 17:48:48.039 7092 9837 V ExtCamDevSsn@3.4: threadLoop(1765)mShareFd(36) mVirAddr(0x7bce0ff000)! 09-22 17:48:48.039 7092 9837 V ExtCamDevSsn@3.4: threadLoop(1769)mWidth(1268) mHeight(360), tmpW(1280), tmpH(368), inDataSize(933248)! 09-22 17:48:48.039 7092 9837 I ExtCamDevSsn@3.4: threadLoop(1790) req->frameIn->mFourcc=1448695129 09-22 17:48:48.039 7092 9837 E ExtCamDevSsn@3.4: threadLoop: ldc region not exists! 09-22 17:48:48.039 7092 9837 V ExtCamDevSsn@3.4: threadLoop(1864)mWidth(1268) mHeight(360), tmpW(1280), tmpH(368), inDataSize(933248)! 09-22 17:48:48.039 7092 9836 V ExtCamDevSsn@3.4: threadLoop(2504): mYu12Frame widthxheight: 1268x360 09-22 17:48:48.039 7092 9836 V ExtCamDevSsn@3.4: threadLoop: wpzz max_digital_zoom value(4.000000) 09-22 17:48:48.039 7092 9836 V ExtCamDevSsn@3.4: threadLoop processing new request 09-22 17:48:48.039 7092 9836 V ExtCamDevSsn@3.4: threadLoop libyuvToI420 09-22 17:48:48.041 7092 9836 V ExtCamDevSsn@3.4: threadLoop: outLayout y 0x7bcb872000 cb 0x7bcb8e1720 cr 0x7bcb8e1721 y_str 1268 c_str 1268 c_step 2 09-22 17:48:48.041 7092 9836 V ExtCamDevSsn@3.4: threadLoop: converting to format NV12 09-22 17:48:50.269 8556 8556 E rkcif-mipi-lvds: stream[0] not active buffer, frame num 267, cnt 1 09-22 17:48:48.120 9854 9854 I crash_dump64: type=1400 audit(0.0:755): avc: denied { open } for path="/dev/__properties__/u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=283 scontext=u:r:crash_dump:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=1 09-22 17:48:48.120 9854 9854 I crash_dump64: type=1400 audit(0.0:756): avc: denied { getattr } for path="/dev/__properties__/u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=283 scontext=u:r:crash_dump:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=1 09-22 17:48:48.120 9854 9854 I crash_dump64: type=1400 audit(0.0:757): avc: denied { map } for path="/dev/__properties__/u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=283 scontext=u:r:crash_dump:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=1 09-22 17:48:50.297 9854 9854 W audit : audit_lost=335 audit_rate_limit=5 audit_backlog_limit=64 09-22 17:48:48.120 9854 9854 I crash_dump64: type=1400 audit(0.0:758): avc: denied { open } for path="/dev/__properties__/u:object_r:qemu_sf_lcd_density_prop:s0" dev="tmpfs" ino=230 scontext=u:r:crash_dump:s0 tcontext=u:object_r:qemu_sf_lcd_density_prop:s0 tclass=file permissive=1 09-22 17:48:50.297 9854 9854 E audit : rate limit exceeded 09-22 17:48:48.124 9854 9854 I crash_dump64: type=1400 audit(0.0:759): avc: denied { getattr } for path="/dev/__properties__/u:object_r:qemu_sf_lcd_density_prop:s0" dev="tmpfs" ino=230 scontext=u:r:crash_dump:s0 tcontext=u:object_r:qemu_sf_lcd_density_prop:s0 tclass=file permissive=1 09-22 17:48:50.301 320 320 I logd : logdr: UID=1000 GID=1003 PID=9854 n tail=0 logMask=8 pid=8557 start=0ns deadline=0ns 09-22 17:48:50.302 320 320 I logd : logdr: UID=1000 GID=1003 PID=9854 n tail=0 logMask=1 pid=8557 start=0ns deadline=0ns 09-22 17:48:50.322 8556 8556 E rkcif-mipi-lvds: ERROR: csi fifo overflow, intstat:0x10000, lastline:0x167, cnt 1 09-22 17:48:48.142 9854 9854 F DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** 09-22 17:48:48.142 9854 9854 F DEBUG : Build fingerprint: 'EmbedFire/rk3588_lubancat_5io_hdmi/rk3588_lubancat_5io_hdmi:12/SQ3A.220705.003.A1/eng.lifuxi.20250901.153844:userdebug/release-keys' 09-22 17:48:48.142 9854 9854 F DEBUG : Revision: '0' 09-22 17:48:48.142 9854 9854 F DEBUG : ABI: 'arm64' 09-22 17:48:48.142 9854 9854 F DEBUG : Timestamp: 2025-09-22 17:48:48.037920276+0800 09-22 17:48:48.142 9854 9854 F DEBUG : Process uptime: 371s 09-22 17:48:48.142 9854 9854 F DEBUG : Cmdline: /system/bin/surfaceflinger 09-22 17:48:48.142 9854 9854 F DEBUG : pid: 8557, tid: 8576, name: RenderEngine >>> /system/bin/surfaceflinger <<< 09-22 17:48:48.142 9854 9854 F DEBUG : uid: 1000 09-22 17:48:48.142 9854 9854 F DEBUG : tagged_addr_ctrl: 0000000000000001 09-22 17:48:48.142 9854 9854 F DEBUG : signal 6 (SIGABRT), code -1 (SI_QUEUE), fault addr -------- 09-22 17:48:48.142 9854 9854 F DEBUG : Abort message: 'Unable to generate SkImage. isTextureValid:0 dataspace:0' 09-22 17:48:48.142 9854 9854 F DEBUG : x0 0000000000000000 x1 0000000000002180 x2 0000000000000006 x3 000000708e5f5f50 09-22 17:48:48.142 9854 9854 F DEBUG : x4 645372681f2d6466 x5 645372681f2d6466 x6 645372681f2d6466 x7 7f7f7f7f7f7f7f7f 09-22 17:48:48.142 9854 9854 F DEBUG : x8 00000000000000f0 x9 6d101020b3a8d8c2 x10 0000000000000000 x11 ffffff80ffffffdf 09-22 17:48:48.142 9854 9854 F DEBUG : x12 0000000000000001 x13 0000000000000039 x14 000000708e5f60e0 x15 00000027d54ac829 09-22 17:48:48.142 9854 9854 F DEBUG : x16 0000007327334050 x17 0000007327310db0 x18 000000708dd36000 x19 000000000000216d 09-22 17:48:48.142 9854 9854 F DEBUG : x20 0000000000002180 x21 00000000ffffffff x22 b40000714093f828 x23 b4000071409118b0 09-22 17:48:48.142 9854 9854 F DEBUG : x24 0000000000000005 x25 000000708e5f7000 x26 0000000000000008 x27 b4000070b092a1c8 09-22 17:48:48.142 9854 9854 F DEBUG : x28 000000708e5f67a0 x29 000000708e5f5fd0 09-22 17:48:48.143 9854 9854 F DEBUG : lr 00000073272c3aa0 sp 000000708e5f5f30 pc 00000073272c3acc pst 0000000000001000 09-22 17:48:48.143 9854 9854 F DEBUG : backtrace: 09-22 17:48:48.143 9854 9854 F DEBUG : #00 pc 000000000004facc /apex/com.android.runtime/lib64/bionic/libc.so (abort+164) (BuildId: cd7952cb40d1a2deca6420c2da7910be) 09-22 17:48:48.143 9854 9854 F DEBUG : #01 pc 00000000000062c0 /system/lib64/liblog.so (__android_log_default_aborter+12) (BuildId: 4a886856e3450aa66d4b9811eed501a7) 09-22 17:48:48.143 9854 9854 F DEBUG : #02 pc 0000000000006dc8 /system/lib64/liblog.so (__android_log_assert+308) (BuildId: 4a886856e3450aa66d4b9811eed501a7) 09-22 17:48:48.143 9854 9854 F DEBUG : #03 pc 000000000056bafc /system/bin/surfaceflinger (android::renderengine::skia::AutoBackendTexture::makeImage(android::hardware::graphics::common::V1_2::Dataspace, SkAlphaType, GrDirectContext*)+520) (BuildId: 2d9d0275df711e54b53484be0750a47f) 09-22 17:48:48.143 9854 9854 F DEBUG : #04 pc 0000000000280fac /system/bin/surfaceflinger (android::renderengine::skia::SkiaGLRenderEngine::drawLayers(android::renderengine::DisplaySettings const&, std::__1::vector<android::renderengine::LayerSettings const*, std::__1::allocator<android::renderengine::LayerSettings const*> > const&, std::__1::shared_ptr<android::renderengine::ExternalTexture> const&, bool, android::base::unique_fd_impl<android::base::DefaultCloser>&&, android::base::unique_fd_impl<android::base::DefaultCloser>*)+10844) (BuildId: 2d9d0275df711e54b53484be0750a47f) 09-22 17:48:48.143 9854 9854 F DEBUG : #05 pc 000000000027ba88 /system/bin/surfaceflinger (_ZNSt3__110__function6__funcIZN7android12renderengine8threaded20RenderEngineThreaded10drawLayersERKNS3_15DisplaySettingsERKNS_6vectorIPKNS3_13LayerSettingsENS_9allocatorISC_EEEERKNS_10shared_ptrINS3_15ExternalTextureEEEbONS2_4base14unique_fd_implINSN_13DefaultCloserEEEPSQ_E4$_11NSD_IST_EEFvRNS3_12RenderEngineEEEclESW_$b308429de7dd205009d24a05964a56d1+80) (BuildId: 2d9d0275df711e54b53484be0750a47f) 09-22 17:48:48.143 9854 9854 F DEBUG : #06 pc 00000000002788b0 /system/bin/surfaceflinger (android::renderengine::threaded::RenderEngineThreaded::threadMain(std::__1::function<std::__1::unique_ptr<android::renderengine::RenderEngine, std::__1::default_delete<android::renderengine::RenderEngine> > ()>)+1112) (BuildId: 2d9d0275df711e54b53484be0750a47f) 09-22 17:48:48.143 9854 9854 F DEBUG : #07 pc 000000000027a930 /system/bin/surfaceflinger (void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (android::renderengine::threaded::RenderEngineThreaded::*)(std::__1::function<std::__1::unique_ptr<android::renderengine::RenderEngine, std::__1::default_delete<android::renderengine::RenderEngine> > ()>), android::renderengine::threaded::RenderEngineThreaded*, std::__1::function<std::__1::unique_ptr<android::renderengine::RenderEngine, std::__1::default_delete<android::renderengine::RenderEngine> > ()> > >(void*)+160) (BuildId: 2d9d0275df711e54b53484be0750a47f) 09-22 17:48:48.143 9854 9854 F DEBUG : #08 pc 00000000000b1810 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+264) (BuildId: cd7952cb40d1a2deca6420c2da7910be) 09-22 17:48:48.143 9854 9854 F DEBUG : #09 pc 00000000000512f0 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: cd7952cb40d1a2deca6420c2da7910be) 09-22 17:48:48.144 440 858 D gps_ql : Error connecting rild-nmea (Connection refused) 09-22 17:48:48.144 440 858 D gps_ql : fail to open GPS channel <rild-nmea>! 09-22 17:48:48.169 8643 8836 W NativeCrashListener: Couldn't find ProcessRecord for pid 8557 09-22 17:48:48.170 390 390 E tombstoned: Tombstone written to: tombstone_27 09-22 17:48:50.342 8556 8556 E rkcif-mipi-lvds: ERROR: csi fifo overflow, intstat:0x10000, lastline:0x167, cnt 2 09-22 17:48:48.174 8643 8710 I BootReceiver: Copying /data/tombstones/tombstone_27 to DropBox (SYSTEM_TOMBSTONE) 09-22 17:48:48.174 8643 8710 I DropBoxManagerService: add tag=SYSTEM_TOMBSTONE isTagEnabled=true flags=0x6 09-22 17:48:50.350 1 1 I init : Untracked pid 9854 exited with status 0 09-22 17:48:50.358 1 1 I init : Untracked pid 9856 exited with status 0 09-22 17:48:50.362 8556 8556 E rkcif-mipi-lvds: ERROR: csi fifo overflow, intstat:0x10000, lastline:0x167, cnt 3 09-22 17:48:48.189 8643 8710 E NativeTombstoneManager: Tombstone's UID (1000) not an app, ignoring 09-22 17:48:48.190 8643 8710 I DropBoxManagerService: add tag=SYSTEM_TOMBSTONE_PROTO isTagEnabled=true flags=0x4 09-22 17:48:48.211 8805 8848 W SurfaceComposerClient: ComposerService remote (surfaceflinger) died [0xb400007b026953d0] 09-22 17:48:48.211 9269 9300 W SurfaceComposerClient: ComposerService remote (surfaceflinger) died [0xed6522b0] 09-22 17:48:48.211 9791 9847 W SurfaceComposerClient: ComposerService remote (surfaceflinger) died [0xb400007b026941d0] 09-22 17:48:48.211 8993 9080 W SurfaceComposerClient: ComposerService remote (surfaceflinger) died [0xb400007b026959d0] 09-22 17:48:48.211 382 382 D android.hardware.graphics.composer@2.1-service: destroying composer client 09-22 17:48:48.211 382 382 W android.hardware.graphics.composer@2.1-service: destroying client resources for display 0 09-22 17:48:48.211 9139 9228 W SurfaceComposerClient: ComposerService remote (surfaceflinger) died [0xb400007b026950d0] 09-22 17:48:48.211 382 382 W android.hardware.graphics.composer@2.1-service: performing a final presentDisplay 09-22 17:48:48.211 8643 8953 W SurfaceComposerClient: ComposerService remote (surfaceflinger) died [0xb400007b02693b10] 09-22 17:48:48.212 382 382 D android.hardware.graphics.composer@2.1-service: removed composer client 09-22 17:48:50.382 1 1 I init : Service 'surfaceflinger' (pid 8557) received signal 6 09-22 17:48:50.382 1 1 I init : Sending signal 9 to service 'surfaceflinger' (pid 8557) process group... 09-22 17:48:50.382 1 1 I libprocessgroup: Successfully killed process cgroup uid 1000 pid 8557 in 0ms 09-22 17:48:50.383 1 1 I init : Sending signal 9 to service 'zygote' (pid 8550) process group... 09-22 17:48:50.391 0 0 E : [ C0] rk_iommu fdce0800.iommu: Page fault at 0x00000000ffc3f000 of type write 09-22 17:48:50.391 0 0 E : [ C0] rk_iommu fdce0800.iommu: iova = 0x00000000ffc3f000: dte_index: 0x3ff pte_index: 0x3f page_offset: 0x0 09-22 17:48:50.391 0 0 E : [ C0] rk_iommu fdce0800.iommu: mmu_dte_addr: 0x000000000033b000 dte@0x000000000033bffc: 0x2af001 valid: 1 pte@0x00000000002af0fc: 0x000000 valid: 0 page@0x0000000000000000 flags: 0x0 09-22 17:48:50.402 8556 8556 E rkcif-mipi-lvds: ERROR: csi fifo overflow, intstat:0x10000, lastline:0x167, cnt 5 09-22 17:48:48.245 8551 8551 I Zygote : Process 8954 exited due to signal 9 (Killed) 09-22 17:48:50.422 8556 8556 E rkcif-mipi-lvds: ERROR: csi fifo overflow, intstat:0x10000, lastline:0x167, cnt 6 09-22 17:48:50.441 1 1 I libprocessgroup: Successfully killed process cgroup uid 0 pid 8550 in 58ms 09-22 17:48:50.442 8556 8556 E rkcif-mipi-lvds: ERROR: csi fifo overflow, intstat:0x10000, lastline:0x167, cnt 7 09-22 17:48:48.287 421 436 E IPCThreadState: attemptIncStrongHandle(99): Not supported 09-22 17:48:48.287 421 773 E IPCThreadState: attemptIncStrongHandle(121): Not supported 09-22 17:48:48.287 421 436 E IPCThreadState: attemptIncStrongHandle(113): Not supported 09-22 17:48:48.287 421 434 E IPCThreadState: attemptIncStrongHandle(122): Not supported 09-22 17:48:48.287 421 773 E IPCThreadState: attemptIncStrongHandle(100): Not supported 09-22 17:48:48.287 421 436 E IPCThreadState: attemptIncStrongHandle(97): Not supported 09-22 17:48:48.287 421 434 E IPCThreadState: attemptIncStrongHandle(108): Not supported 09-22 17:48:48.287 421 773 E IPCThreadState: attemptIncStrongHandle(118): Not supported 09-22 17:48:48.287 421 434 E IPCThreadState: attemptIncStrongHandle(119): Not supported 09-22 17:48:48.287 421 773 E IPCThreadState: attemptIncStrongHandle(116): Not supported 09-22 17:48:48.287 421 434 E IPCThreadState: attemptIncStrongHandle(105): Not supported 09-22 17:48:48.287 421 792 E IPCThreadState: attemptIncStrongHandle(112): Not supported 09-22 17:48:48.287 421 1949 E IPCThreadState: attemptIncStrongHandle(98): Not supported 09-22 17:48:48.287 421 434 E IPCThreadState: attemptIncStrongHandle(117): Not supported 09-22 17:48:48.287 421 792 E IPCThreadState: attemptIncStrongHandle(120): Not supported 09-22 17:48:48.287 421 1949 E IPCThreadState: attemptIncStrongHandle(114): Not supported 09-22 17:48:48.287 421 434 E IPCThreadState: attemptIncStrongHandle(106): Not supported 09-22 17:48:48.287 421 773 E IPCThreadState: attemptIncStrongHandle(115): Not supported 09-22 17:48:48.287 421 1948 E IPCThreadState: attemptIncStrongHandle(101): Not supported 09-22 17:48:48.287 421 1949 E IPCThreadState: attemptIncStrongHandle(111): Not supported 09-22 17:48:48.287 421 436 E IPCThreadState: attemptIncStrongHandle(109): Not supported 09-22 17:48:48.287 421 793 E IPCThreadState: attemptIncStrongHandle(96): Not supported 09-22 17:48:48.287 421 773 E IPCThreadState: attemptIncStrongHandle(107): Not supported 09-22 17:48:48.287 421 792 E IPCThreadState: attemptIncStrongHandle(104): Not supported 09-22 17:48:48.287 421 1956 E IPCThreadState: attemptIncStrongHandle(95): Not supported 09-22 17:48:48.288 421 1955 E IPCThreadState: attemptIncStrongHandle(110): Not supported 09-22 17:48:48.290 421 1955 E IPCThreadState: attemptIncStrongHandle(132): Not supported 09-22 17:48:48.290 421 792 E IPCThreadState: attemptIncStrongHandle(131): Not supported 09-22 17:48:48.292 8553 9839 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32) 09-22 17:48:50.462 8556 8556 E rkcif-mipi-lvds: ERROR: csi fifo overflow, intstat:0x10000, lastline:0x167, cnt 8 09-22 17:48:50.463 9859 9859 I binder : release 9791:9791 transaction 868713 out, still active 09-22 17:48:50.463 9859 9859 I binder : undelivered TRANSACTION_COMPLETE 09-22 17:48:50.463 9859 9859 I binder : release 9791:9846 transaction 868775 in, still active 09-22 17:48:50.463 9859 9859 I binder : send failed reply for transaction 868775 to 8553:9839 09-22 17:48:50.463 9839 9839 I binder : 8553:9839 transaction failed 29189/-22, size 180-0 line 3117 09-22 17:48:48.308 522 1959 D BufferPoolAccessor2.0: bufferpool2 0xb400007584732d78 : 0(0 size) total buffers - 0(0 size) used buffers - 10/17 (recycle/alloc) - 7/16 (fetch/transfer) 09-22 17:48:48.308 522 522 D BufferPoolAccessor2.0: bufferpool2 0xb40000758472ff38 : 0(0 size) total buffers - 0(0 size) used buffers - 5/7 (recycle/alloc) - 2/6 (fetch/transfer) 09-22 17:48:48.308 522 522 D BufferPoolAccessor2.0: Destruction - bufferpool2 0xb40000758472ff38 cached: 0/0M, 0/0% in use; allocs: 7, 71% recycled; transfers: 6, 67% unfetched 09-22 17:48:48.308 522 522 D BufferPoolAccessor2.0: Destruction - bufferpool2 0xb400007584732d78 cached: 0/0M, 0/0% in use; allocs: 17, 59% recycled; transfers: 16, 56% unfetched 09-22 17:48:48.308 522 522 D BufferPoolAccessor2.0: bufferpool2 0xb400007584735028 : 0(0 size) total buffers - 0(0 size) used buffers - 12/16 (recycle/alloc) - 4/15 (fetch/transfer) 09-22 17:48:48.308 522 522 D BufferPoolAccessor2.0: Destruction - bufferpool2 0xb400007584735028 cached: 0/0M, 0/0% in use; allocs: 16, 75% recycled; transfers: 15, 73% unfetched 09-22 17:48:50.482 8556 8556 E rkcif-mipi-lvds: ERROR: csi fifo overflow, intstat:0x10000, lastline:0x167, cnt 9 09-22 17:48:48.321 1832 1835 I adbd : adbd_auth: hit EOF on framework fd 09-22 17:48:48.321 1832 1835 I adbd : adbd_auth: received new framework fd -1 (current = 32) 09-22 17:48:50.497 0 0 E : [ C0] rk_iommu fdce0800.iommu: Page fault at 0x00000000ffc3f000 of type write 09-22 17:48:50.497 0 0 E : [ C0] rk_iommu fdce0800.iommu: iova = 0x00000000ffc3f000: dte_index: 0x3ff pte_index: 0x3f page_offset: 0x0 09-22 17:48:50.497 0 0 E : [ C0] rk_iommu fdce0800.iommu: mmu_dte_addr: 0x000000000033b000 dte@0x000000000033bffc: 0x2af001 valid: 1 pte@0x00000000002af0fc: 0x000000 valid: 0 page@0x0000000000000000 flags: 0x0 09-22 17:48:50.502 8556 8556 E rkcif-mipi-lvds: ERROR: csi fifo overflow, intstat:0x10000, lastline:0x167, cnt 10 09-22 17:48:50.513 9838 9838 I binder_alloc: 8643: binder_alloc_buf, no vma 09-22 17:48:50.513 9838 9838 I binder : 8553:9838 transaction failed 29189/-3, size 180-8 line 3309 09-22 17:48:50.513 9838 9838 I binder_alloc: 8643: binder_alloc_buf, no vma 09-22 17:48:50.513 9838 9838 I binder : 8553:9838 transaction failed 29189/-3, size 388-0 line 3309 09-22 17:48:50.522 8556 8556 E rkcif-mipi-lvds: ERROR: csi fifo overflow, intstat:0x10000, lastline:0x167, cnt 11 09-22 17:48:50.542 8556 8556 E rkcif-mipi-lvds: ERROR: csi fifo overflow, intstat:0x10000, lastline:0x167, cnt 12 09-22 17:48:50.547 0 0 I [ C3] rkcif-mipi-lvds: do reset work due to frame end is stopped, run_cnt:35 09-22 17:48:50.547 0 0 I [ C3] rkcif-mipi-lvds: do reset work schedule, run_cnt:35, reset source:3 09-22 17:48:50.548 9789 9789 E rockchip-mipi-csi2 mipi0-csi2: stream off, src_sd: 00000000f26a602f, sd_name:rockchip-csi2-dphy0 09-22 17:48:50.548 9789 9789 E rockchip-mipi-csi2 mipi0-csi2: stream OFF 09-22 17:48:50.549 9789 9789 I rockchip-csi2-dphy csi2-dcphy0: csi2_dphy_s_stream_stop stream stop, dphy0 09-22 17:48:50.549 9789 9789 I rockchip-csi2-dphy csi2-dcphy0: csi2_dphy_s_stream stream on:0, dphy0, ret 0 09-22 17:48:50.549 9789 9789 I max96712 5-0029: max96712_mipi_enable enable=0 09-22 17:48:50.549 9789 9789 I max96712 5-0029: addr(0x29) read reg(0x040b, 2, 0x02) 09-22 17:48:50.549 9789 9789 I max96712 5-0029: addr(0x29) write reg(0x040b, 2, 0x00) 09-22 17:48:50.550 9789 9789 E rockchip-mipi-csi2 mipi0-csi2: stream on, src_sd: 00000000f26a602f, sd_name:rockchip-csi2-dphy0 09-22 17:48:50.550 9789 9789 E rockchip-mipi-csi2 mipi0-csi2: stream ON 09-22 17:48:50.550 9789 9789 I rockchip-csi2-dphy0: dphy0, data_rate_mbps 1800 09-22 17:48:50.551 9789 9789 I rockchip-csi2-dphy csi2-dcphy0: csi2_dphy_s_stream stream on:1, dphy0, ret 0 09-22 17:48:50.551 9789 9789 I max96712 5-0029: max96712_mipi_enable enable=1 09-22 17:48:50.551 9789 9789 I max96712 5-0029: addr(0x29) read reg(0x040b, 2, 0x00) 09-22 17:48:50.551 9789 9789 I max96712 5-0029: addr(0x29) write reg(0x040b, 2, 0x02) 09-22 17:48:50.552 0 0 E : [ C0] mipi0-csi2-hw ERR1:0xf (sot sync,lane: 0 1 2 3) 09-22 17:48:50.601 0 0 E : [ C0] rk_iommu fdce0800.iommu: Page fault at 0x00000000ffc3f000 of type write 09-22 17:48:50.601 0 0 E : [ C0] rk_iommu fdce0800.iommu: iova = 0x00000000ffc3f000: dte_index: 0x3ff pte_index: 0x3f page_offset: 0x0 09-22 17:48:50.601 0 0 E : [ C0] rk_iommu fdce0800.iommu: mmu_dte_addr: 0x000000000033b000 dte@0x000000000033bffc: 0x2af001 valid: 1 pte@0x00000000002af0fc: 0x000000 valid: 0 page@0x0000000000000000 flags: 0x0 09-22 17:48:48.454 311 311 I lowmemorykiller: lmkd data connection dropped 09-22 17:48:48.454 311 311 I lowmemorykiller: closing lmkd data connection 09-22 17:48:50.649 1 1 I init : Command 'restart zygote' action=onrestart (<Service 'surfaceflinger' onrestart>:1) took 266ms and succeeded 09-22 17:48:50.658 1 1 I init : Service 'zygote' (pid 8550) received signal 9 09-22 17:48:50.658 1 1 I init : Sending signal 9 to service 'zygote' (pid 8550) process group... 09-22 17:48:50.714 0 0 I [ C3] rkcif-mipi-lvds: do reset work due to frame end is stopped, run_cnt:0 09-22 17:48:50.714 0 0 I [ C3] rkcif-mipi-lvds: do reset work schedule, run_cnt:0, reset source:3 09-22 17:48:50.714 9789 9789 E rockchip-mipi-csi2 mipi0-csi2: stream off, src_sd: 00000000f26a602f, sd_name:rockchip-csi2-dphy0 09-22 17:48:50.714 9789 9789 E rockchip-mipi-csi2 mipi0-csi2: stream OFF 09-22 17:48:50.715 9789 9789 I rockchip-csi2-dphy csi2-dcphy0: csi2_dphy_s_stream_stop stream stop, dphy0 09-22 17:48:50.715 9789 9789 I rockchip-csi2-dphy csi2-dcphy0: csi2_dphy_s_stream stream on:0, dphy0, ret 0 09-22 17:48:50.715 9789 9789 I max96712 5-0029: max96712_mipi_enable enable=0 09-22 17:48:50.716 9789 9789 I max96712 5-0029: addr(0x29) read reg(0x040b, 2, 0x02) 09-22 17:48:50.716 9789 9789 I max96712 5-0029: addr(0x29) write reg(0x040b, 2, 0x00) 09-22 17:48:50.717 9789 9789 E rockchip-mipi-csi2 mipi0-csi2: stream on, src_sd: 00000000f26a602f, sd_name:rockchip-csi2-dphy0 09-22 17:48:50.717 9789 9789 E rockchip-mipi-csi2 mipi0-csi2: stream ON 09-22 17:48:50.717 9789 9789 I rockchip-csi2-dphy0: dphy0, data_rate_mbps 1800 09-22 17:48:50.718 9789 9789 I rockchip-csi2-dphy csi2-dcphy0: csi2_dphy_s_stream stream on:1, dphy0, ret 0 09-22 17:48:50.718 9789 9789 I max96712 5-0029: max96712_mipi_enable enable=1 09-22 17:48:50.719 9789 9789 I max96712 5-0029: addr(0x29) read reg(0x040b, 2, 0x00) 09-22 17:48:50.719 9789 9789 I max96712 5-0029: addr(0x29) write reg(0x040b, 2, 0x02) 09-22 17:48:50.719 0 0 E : [ C0] mipi0-csi2-hw ERR1:0xf (sot sync,lane: 0 1 2 3) 09-22 17:48:50.880 8398 8398 I binder : release 8643:8849 transaction 868713 in, still active 09-22 17:48:50.880 8398 8398 I binder : send failed reply for transaction 868713, target dead 09-22 17:48:50.880 8398 8398 I binder : release 8643:9090 transaction 868687 in, still active 09-22 17:48:50.880 8398 8398 I binder : send failed reply for transaction 868687 to 9849:9849 09-22 17:48:48.710 9849 9849 W cmd : Failure calling service input: Broken pipe (32)
最新发布
09-23
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符  | 博主筛选后可见
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值