Last updated: June 23, 2010

Contents

[hide]

[edit]About SysLink

SysLink is the next generation IPC driver developed for OMAP4 and beyond. SysLink is an evolution of both the previous-generation IPC drivers - DSPBridge and DSPLink. It provides a symmetric IPC interface on both the host processor and remote/slave processors. It is easily scalable to support more than 2 processors. SysLink provides features to control and communicate with slave processors enabling parallel processing for multimedia acceleration. SysLink integrates with D-OMX enabling MPU to offload some OMX components to slave processors.

Some of the key features of SysLink are:

  • Messaging: Ability to exchange fixed size control messages with Co-Processors
  • Dynamic memory management: Ability to dynamically map files to Co-Processor's address space
  • Dynamic loading: Ability to dynamically load new components on Co-Processors at run time
  • Power Management: Static and dynamic power management for DSP
  • Zero-copy shared memory: Ability to "pass" data buffers to other processors by simply providing its location in shared memory.
  • TILER-based memory allocation: Allocate 2-D buffers with mirroring and rotation options, suitable for video
  • Remote function calls: One processor can invoke functions on a remote processor.

[edit]SysLink Architecture

The above diagram shows the components found in SysLink. The two processors shown have slightly different components because one plays the role of the host and one plays the role of the slave. The host thus needs to load a system image onto the slave processor (Loader), get it up and running (ProcMgr), handle the slave virtual memory mapping (IOMMU), etc.

The key component of SysLink is the Remote Command Messaging (RCM) module, which handles remote function calls. Using RCM, a host processor can take advantage of slave processors' multimedia acceleration functions. The host can request the slave to run audio or video processing functions on a data buffer. The host can then proceed to other tasks. By delegating this processing to the specialized remote processors, the system can support high-bandwidth audio and video playback without a performance impact on the core.

[edit]SysLink Usage

The above diagram illustrates the process by which an application on a host processor can execute a function on a slave processor. It is simplified and many details of the process are not shown.

  1. Application calls RCM client object on local processor to request execution of a remote function.
  2. RCM client object passes function request message to remote RCM server through local MessageQ.
  3. Local MessageQ puts message in remote MessageQ's list of received messages.
  4. Local MessageQ requests local Notify module to send notification to remote processor that a message has arrived.
  5. Local Notify module notifies remote Notify module.
  6. Remote Notify module tells Remote MessageQ object to check its list of received messages.
  7. Remote MessageQ object gives remote RCM server the function request message it received.
  8. Remote RCM Server calls remote function.

[edit]Getting Started with SysLink

NOTE: These instructions are to compile branch in kernel-syslink dev.omapzoom project.

The latest SysLink that is available on the kernel-syslink git tree along with the userspace files repository(recommended)

Before proceeding, check for the tools:

Set up a tool chain, the tool chain versions commonly used are Code Sourcery ARM Sourcery G++ 2009q1.

Set cross compile variable.

  export CROSS_COMPILE=arm-none-linux-gnueabi-

  export PATH varible to arm codesourcey cross compiler.
export ARCH=arm

Be sure that you have the mkimage tool visible in the exported PATH, this is generated while compiling u-boot under u-boot/tools folder, you can clone u-boot repository from here.

[edit]Building Kernel Image with SysLink Driver Support (git tree approach)

Clone linux-syslink repository with the following command:

  git clone git://dev.omapzoom.org/pub/scm/tisyslink/kernel-syslink.git

Checkout syslink_next branch. syslink_next branch is based on the cutting edge Kernel revision. This tree is based on kernel-omap4-base tree on dev.omapzoom.org, any porting to other kernels may require some fetch and merge.

The user-space Syslink has a dependency on Tiler tree, so make sure you fetch the Tiler changes from Tiler tree [1] before building the SysLink Kernel. If you don't care about working with the latest SysLink version then it is recommended to use the Integration kernel. The Integration kernel has all the dependent Multimedia drivers including Tiler driver [2]

  cd kernel-syslink
git checkout -b syslink_next --track origin/syslink_next

Configure your board.

  make omap_my_board_defconfig

Select any desired kernel options

  make menuconfig

Select from menuconfig the option to enable SysLink driver in the Device Drivers section as shown in the figures below:

SysLink driver options menu: Enable the selected SysLink modules.

Make the Kernel Image after saving your changes in menuconfig.

   make uImage

At this point, you should have a uImage. At present building syslink as loadable kernel modules is not supported.

[edit]Build Userspace Files

[edit]Need to check for the following before using autotools

[edit]Tools Prequisites

  • Autoconf version: 2.61 and above.
  • Automake version: 1.9.6 and above.
  • libtool version : 1.5.6 and above.

[edit]Set the following environment variables

export ARCH=arm
export CROSS_COMPILE=arm-none-linux-gnueabi-

Also, point your shell(sh) to bash. It is assumed that the references to sh in this README documents is actually pointing to /bin/bash

[edit]To enable DEBUG Option

You can enable the DEBUG option by uncommenting the following line in the build_directions.sh file.:

ENABLE_DEBUG=--enable-debug

You can also enable the DEBUG option by entering:

./configure --enable-debug.

Note: please check for ./configure --help before running configure.

[edit]Steps to Build Syslink

  • Clean build:
sh build_directions.sh --clean
  • Normal Build:
sh build_directions.sh
  • Enter the Prefix path, e.g.:
/omap_data/development/projects/userspace-syslink
  • Enter the Tiler-Userspace Path, where you cloned [3], e.g.:
/omap_data/development/projects/tiler-userspace
  • Enter the path to kernel-syslink, e.g.:
/omap_data/development/projects/kernel-syslink
  • Enter the Toolchain Path, e.g.:
/omap_data/omapts/arm-2009q1-203/bin
  • The libmemmgr.so is built and installed in $(PREFIX)/target/lib folder.
  • The Syslink APIs, daemons and samples will be built and installed in $(PREFIX)/target/lib and $(PREFIX)/target/syslink folder, respectively.

[edit]Working with SysLink driver

[edit]Bootargs

Set the following bootargs when working with SysLink IPC.

Bootargs: Make sure to set "mem" option in bootargs 49M less than your total RAM size.
Eg: For a 512M Ram size the mem option should be less than or equal to 463M. SysLink IPC is currently using this 49M for IPC purpose.

Boot your kernel, when you receive the console prompt:

[edit]Booting Ducati Cores

[edit]Booting using SysLink Daemon

syslink_daemon binary is used to load and initialize the Ducati Cores. The images to be be loaded on Ducati Cores should be mentioned as the argument to the syslink_daemon.out binary. The first argument is the image to be loaded on SYS-M3 (Core-0) and the second argument is the image to load on App-M3(Core-1)

  ./syslink_daemon.out </binaries/sysm_m3_image> </binaries/app_m3_image>

Full path to the images should be provided.

SysLink Daemon apart from loading images also starts MemMgr server.

The MemMgr server handles the Tiler requests coming from Co-processor. MemMgr server interfaces with the Tiler Driver through MemMgr library. Currently there is a design discussion with DOMX team to push move this MemMgr server to DOMX proxy component.

[edit]SysLink Samples

 Coming soon ...

[edit]SysLink Driver Code

The latest SysLink source code exists on the dev.omapzoom Git Tree under drivers/dsp/syslink folder.
syslink_next branch holds the latest code

[edit]User space SysLink libraries and samples

Userspace Git Tree

[edit]Ducati/Tesla IPC Source Code

Ducati/Tesla IPC code is available on GIT Ducati code

[edit]Tools

CodeGen tools download
BIOS download 
XDC download

[edit]SysLink User-space Project

The SysLink user-space project is located at sl_bios_ipc. SysLink related Documents along with BIOS sample images would be made available here.

[edit]SysLink Releases

  • SysLink Kernel should be build from the Integrated Kernel

    • git://dev.omapzoom.org/pub/scm/integration/kernel-omap4.git
  • SysLink Userspace should be build from SysLink userspace GIT tree
    • git://dev.omapzoom.org/pub/scm/tisyslink/userspace-syslink.git
  • SysLink Ducati Binaries used for this released should be picked from userspace project releases
  • Tiler Userspace should be build using Tiler tree
    • git://dev.omapzoom.org/pub/scm/tiler/tiler-userspace.git

Following provides the release information of above SysLink repositories

[edit]L24.8

  • Kernel: branch - L24.8
  • Userspace: branch - syslink-2.0; tag - ti-syslink-mpu-rls-24.8
  • Ducati Images: images
  • Tiler userspace: branch - memmgr_1.0; tag - 24.8

[edit]L24.9

[edit]L24.10

  • Kernel: branch - L24.10
  • Userspace: branch - syslink-2.0; tag - ti-syslink-mpu-rls-24.10
  • Ducati BIOS: ti-bios-ipc-rls-2.2-p1.2
  • Tiler userspace: branch - memmgr_1.0; tag - 24.10.1
  • SysLink Release Notes: release notes

[edit]L24.11

  • Kernel: branch - L24.11
  • Userspace: branch - syslink-2.0; tag - ti-syslink-mpu-rls-24.11
  • Ducati BIOS: ti-bios-ipc-rls-2.3
  • Tiler userspace: branch - memmgr_1.0; tag - 24.11
  • SysLink Release Notes: release notes

[edit]Documents

http://omappedia.org/wiki/Syslink_Project

dm8127之核间通信syslink的更多相关文章

  1. 【DSP开发】硬件信号量在多核处理器核间通信中的应用

    硬件信号量在多核处理器核间通信中的应用 刘德保1,汪安民1,韩道文2 1.同方电子科技有限公司研究所,九江 332009:2.解放军电子工程学院 摘要: 在多核处理器的软件设计中,核间通信机制是关键所 ...

  2. ZYNQ笔记(5):软中断实现核间通信

    ZYNQ包括一个 FPGA 和两个 ARM,多个 ARM 核心相对独立的运行不同的任务,每个核心可能运行不同的操作系统或裸机程序,但是有一个主要核心,用来控制整个系统以及其他从核心的允许.因此我们可以 ...

  3. java多线程与线程间通信

    转自(http://blog.csdn.net/jerrying0203/article/details/45563947) 本文学习并总结java多线程与线程间通信的原理和方法,内容涉及java线程 ...

  4. ucos实时操作系统学习笔记——任务间通信(消息)

    ucos另一种任务间通信的机制是消息(mbox),个人感觉是它是queue中只有一个信息的特殊情况,从代码中可以很清楚的看到,因为之前有关于queue的学习笔记,所以一并讲一下mbox.为什么有了qu ...

  5. ucos实时操作系统学习笔记——任务间通信(队列)

    ucos操作系统中的queue机制同样使用了event机制来实现,其实和前面的sem,mutex实现类似,所不同的是对sem而言,任务想获得信号量,对mutex而言,任务想获得的是互斥锁.任务间通信的 ...

  6. ucos实时操作系统学习笔记——任务间通信(互斥锁)

    想讲一下ucos任务间通信中的mutex,感觉其设计挺巧妙,同sem一样使用的是event机制实现的,代码不每一行都分析,因为讲的没邵贝贝老师清楚,主要讲一下mutex的内核是如何实现的.可以理解互斥 ...

  7. ucos实时操作系统学习笔记——任务间通信(信号量)

    ucos实时操作系统的任务间通信有好多种,本人主要学习了sem, mutex, queue, messagebox这四种.系统内核代码中,这几种任务间通信机制的实现机制相似,接下来记录一下本人对核心代 ...

  8. 0038 Java学习笔记-多线程-传统线程间通信、Condition、阻塞队列、《疯狂Java讲义 第三版》进程间通信示例代码存在的一个问题

    调用同步锁的wait().notify().notifyAll()进行线程通信 看这个经典的存取款问题,要求两个线程存款,两个线程取款,账户里有余额的时候只能取款,没余额的时候只能存款,存取款金额相同 ...

  9. 线程间通信 GET POST

    线程间通信有三种方法:NSThread   GCD  NSOperation       进程:操作系统里面每一个app就是一个进程. 一个进程里面可以包含多个线程,并且我们每一个app里面有且仅有一 ...

随机推荐

  1. crypto AES 加密 解密

    1.aes加密解密说明 https://juejin.im/entry/59eea48e6fb9a0451968c25f aes是对称加密算法 md5是摘要算法,不算是加密,主要用来对信息一致性和完整 ...

  2. 如何下载HLS视频到本地(m3u8)

      如何下载HLS视频到本地(m3u8)? CreateTime--2018年3月21日16:07:00 Author:Marydon 一.需求 很多连载的动漫需要VIP会员才能观看,而且有的由于版权 ...

  3. [Done]FindBugs: boxing/unboxing to parse a primitive

    在开发过程中遇到了以下问题: FindBugs: boxing/unboxing to parse a primitive 查看代码(左边是老代码,右边是新的): 问题出在 自动装箱和拆箱的检查. 参 ...

  4. JDBC 关于Date格式

    package test; import java.sql.Connection; import java.util.Date; import java.sql.PreparedStatement; ...

  5. css-input与文字的对齐

    前言 目前中文网站上面的文字,就我的个人感觉而言,绝大多数网站的主流文字大小为12px,因为在目前高分辨率显示器屏幕下,11px的汉字,其像素点开始不 规整,文字不如12px来的显示良好.12px大小 ...

  6. unity3D中使用Socket进行数据通信(二)

    上一篇博客主要介绍了使用socket搭建服务端和client程序,这一篇来说说socket的数据传输,我们使用socket的目的是解决点对点之间的数据传输,之前提到了socket中一个重要的概念:po ...

  7. java 并发编程 list

     并发编程 Mark 以后看 http://cmsblogs.com/ http://www.jianshu.com/p/456b984c00b7

  8. 【Android】16.1 Android Service基本概念

    分类:C#.Android.VS2015: 创建日期:2016-03-01 一.简介 为了解决在后台运行任务的问题,Android引入了一个称为Service的应用程序组件.Service的职责是专门 ...

  9. WIN XP 命令汇总

    winver检查Windows版本dxdiag检查DirectX信息mem.exe显示内存使用情况Sndvol32音量控制程序sfc.exe系统文件检查器gpedit.msc 组策略regedit.e ...

  10. cocos2dx 3.x 开发环境搭建

    1. 准备工作 (1)VS2012 (2)cocos2dx cn.cocos2d-x.org/download (3)python 新版本的cocos2dx 需要python编译 2. 安装软件 (1 ...