• Recent
    • Docs
    • Github
    • 百度网盘
    • Onedrive
    • Official
    • Shop
    • Register
    • Login

    瑞芯微新一代机器视觉方案RV1106及RV1103

    Scheduled Pinned Locked Moved Maker
    2 Posts 1 Posters 1.4k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • 大法师大
      大法师
      last edited by 大法师

      RV1106 is a highly integrated vision processor SoC for IPC, especially for AI related application.

      cool pi nano.png

      It is based on single-core ARM Cortex-A7 32-bit core which integrates NEON and FPU. There is a 32KB I-cache and 32KB D-cache and 128KB unified L2 cache. The build-in NPU supports INT4/INT8/INT16 hybrid operation and computing power is up to 0.5TOPs. In addition, with its strong compatibility, network models based on a series of frameworks such as TensorFlow/MXNet/PyTorch/Caffe can be easily converted.

      RV1106 introduces a new generation totally hardware-based maximum 5-Megapixel ISP (image signal processor). It implements a lot of algorithm accelerators, such as HDR, 3A, LSC, 3DNR, 2DNR, sharpening, dehaze, gamma correction and so on. Cooperating with two
      MIPI CSI (or LVDS) and one DVP (BT.601/BT.656/BT.1120) interface, users can build a system that receives video data from 3 camera sensors simultaneous. The video encoder embedded in RV1106 supports H.265/H.264 encoding. It also supports multi-stream encoding. With the help of this feature, the video from camera can be encoded with higher resolution and stored in local memory and transferred another lower resolution video to cloud storage at the same time. To accelerate video processing, an intelligent video engine with 22 calculation units is also embedded.

      RV1106 has a build-in 16-bit DRAM DDR3L capable of sustaining demanding memory bandwidths. It also integrated build-in RTC, POR, audio codec and MAC PHY.

      45229182-6d51-4a18-99df-7892a6cd24de-1675393009552.png

      新一代机器视觉方案RV1106及RV1103,两颗芯片在NPU、ISP、视频编码、音频处理等性能均有显著升级,具有高集成度、高性价比、低待机功耗的特点。RV1106及RV1103为普惠型方案,旨在助力更多行业伙伴高效实现机器视觉产品的研发及落地。

      b839ff3e-40dc-4d60-9397-efdf50c0cd34-14d748dc3ca836cdb5fd57fd9f1e473.png

      jack@cool-pi.com

      1 Reply Last reply Reply Quote 0
      • 大法师大
        大法师
        last edited by

        基于coolpi 4b ubuntu22系统编译coolpi nano(RV1106)内核

        首先需要安装32位arm-gcc编译工具链

        coolpi@coolpi:~/kernel/coolpi-kernel$ sudo apt install gcc-arm-linux-gnueabi
        Reading package lists... Done
        Building dependency tree... Done
        Reading state information... Done
        The following packages were automatically installed and are no longer required:
          aapt adb android-libaapt android-libadb android-libandroidfw android-libbacktrace android-libbase android-libboringssl android-libcrypto-utils android-libcutils android-liblog android-libunwind
          android-libutils android-libziparchive android-sdk-platform-tools-common fonts-lyx inotify-tools libboost-dev libboost1.74-dev libexpat1-dev libinotifytools0 libjs-jquery-ui liblbfgsb0 libllvm15
          libopenblas-dev libopenblas-pthread-dev libopenblas0 libpython3-dev libpython3.10-dev libqhull-r8.0 libxsimd-dev python-matplotlib-data python3-appdirs python3-beniget python3-cycler
          python3-decorator python3-dev python3-fonttools python3-fs python3-gast python3-kiwisolver python3-lz4 python3-matplotlib python3-mpmath python3-numpy python3-packaging python3-ply python3-pyqt5
          python3-pyqt5.sip python3-pythran python3-scipy python3-sympy python3-ufolib2 python3-unicodedata2 python3-wheel python3.10-dev unicode-data zlib1g-dev
        Use 'sudo apt autoremove' to remove them.
        The following additional packages will be installed:
          binutils-arm-linux-gnueabi cpp-11-arm-linux-gnueabi cpp-arm-linux-gnueabi gcc-11-arm-linux-gnueabi gcc-11-arm-linux-gnueabi-base gcc-11-cross-base gcc-12-cross-base libasan6-armel-cross
          libatomic1-armel-cross libc6-armel-cross libc6-dev-armel-cross libgcc-11-dev-armel-cross libgcc-s1-armel-cross libgomp1-armel-cross libstdc++6-armel-cross libubsan1-armel-cross
          linux-libc-dev-armel-cross
        Suggested packages:
          binutils-doc gcc-11-locales cpp-doc gcc-11-doc autoconf automake libtool gdb-arm-linux-gnueabi gcc-doc
        The following NEW packages will be installed:
          binutils-arm-linux-gnueabi cpp-11-arm-linux-gnueabi cpp-arm-linux-gnueabi gcc-11-arm-linux-gnueabi gcc-11-arm-linux-gnueabi-base gcc-11-cross-base gcc-12-cross-base gcc-arm-linux-gnueabi
          libasan6-armel-cross libatomic1-armel-cross libc6-armel-cross libc6-dev-armel-cross libgcc-11-dev-armel-cross libgcc-s1-armel-cross libgomp1-armel-cross libstdc++6-armel-cross libubsan1-armel-cross
          linux-libc-dev-armel-cross
        0 upgraded, 18 newly installed, 0 to remove and 42 not upgraded.
        Need to get 37.7 MB of archives.
        After this operation, 119 MB of additional disk space will be used.
        Do you want to continue? [Y/n]
        ...
        

        然后修改默认编译脚本

        coolpi@coolpi:~/kernel/coolpi-kernel$ git diff build-kernel.sh
        diff --git a/build-kernel.sh b/build-kernel.sh
        index 3eb4d07d8041..4bb6d806ebd8 100755
        --- a/build-kernel.sh
        +++ b/build-kernel.sh
        @@ -69,6 +69,9 @@ if [ "$RV1106" == "1" ]; then
                 TOOLCHAIN_ARM32=$K_SRC/toolchain32uc/bin
                 export PATH=$TOOLCHAIN_ARM32:$PATH
             fi
        +    if [ "$ARCH" == "aarch64" ]; then
        +        export CROSS_COMPILE=arm-linux-gnueabi-
        +    fi
        coolpi@coolpi:~/kernel/coolpi-kernel$
        

        执行nano主板内核编译

        coolpi@coolpi:~/kernel/coolpi-kernel$ ./build-kernel.sh cpnano
        

        编译生成目录结构

        coolpi@coolpi:~/kernel/coolpi-kernel$ tree out
        out
        ├── extlinux
        │   └── extlinux.conf
        ├── initrd32.img
        ├── modules.tar.gz
        ├── rv1106-cpnano.dtb
        └── vmlinuz
        
        1 directory, 5 files
        

        jack@cool-pi.com

        1 Reply Last reply Reply Quote 0
        • 1 / 1
        • First post
          Last post