瑞米派(RemiPi)实时系统与EtherCAT移植

strongerHuang 2024-04-20 08:20

前不久给大家分享了瑞米派(Remi Pi)移植FreeRTOS、LVGL教程,今天给大家继续分享瑞米派(Remi Pi)实时系统与EtherCAT移植.

概述

Remi Pi采用瑞萨RZ/G2L作为核心处理器,该处理器搭载双核Cortex-A55@1.2GHz+Cortex-M33@200MHz处理器,其内部集成高性能3D加速引擎Mail-G31 GPU(500MHz)和视频处理单元(支持H.264硬件编解码),16位的DDR4-1600 / DDR3L-1333内存控制器、千兆以太网控制器、USB、CAN、SD卡、MIPI-CSI等外设接口,在工业、医疗、电力等行业都得到广泛的应用。

在开发阶段,建议配合核心板配套的评估套件 MYD-YG2L23-8E1D-120-C-REMI来加速开发。评估套件的详细信息请访问:

https://www.myir.cn/shows/23/14.html


实时内核设计

  • 实时补丁我们选择RT-Preempt来实现

2.1. 移植补丁

RT补丁可以从RT官网下载5.10.83对应的补丁

https://cdn.kernel.org/pub/linux/kernel/projects/rt/5.10/older/

  • 把补丁放到自己的工作目录下,然后解压,如图2-1:

hjx@myir-server:~/renesas/04_Sources$ tar -xvf patches-5.10.83-rt58.tar.gz

图2-1. 内核源码

  • 进入到内核源码打补丁,如图2-2:

hjx@myir-server:~/renesas/04_Sources/myir-renesas-linux$ for p in `ls -1 ../patches/*.patch`; do patch -p1 < $p; done

图2-2. 打实时补丁

  • 编译内核源码

hjx@myir-server:~/renesas/04_Sources/myir-renesas-linux$ /opt/remi-sdk/environment-setup-aarch64-poky-linuxhjx@myir-server:~/renesas/04_Sources/myir-renesas-linux$ make ARCH=arm64 mys_g2lx_defconfighjx@myir-server:~/renesas/04_Sources/myir-renesas-linux$ make ARCH=arm64 Image dtbs   -j16

更新编译得到的Image即可

2.2. 其他影响性能的配置

禁用CPU Freq自动调频,并设置主频为最高频率:

cd /sys/devices/system/cpu/cpufreq/policy0echo userspace > scaling_governorcat scaling_max_freq  > scaling_setspeed
(如不禁用cpufreq调频功能,系统会因动态调频产生极大的偶然延迟)


实时性测试

  • 空载测试

cyclictest -p 99 -t 1 -d 100 -i 1000 -D 24h -m -a -n

图3-1.空载测试

  • CPU&内存满载

cyclictest -p 99 -t 1 -d 100 -i 1000 -D 24h -m -a -n
  • 增加压力

stress-ng --cpu 4 --cpu-method all --io 4 --vm 50 -d 5 --fork 4 --timeout 36000s

图3-2.满载测试

数据对比:

板卡

MYD-YG2LX-REMI

测试时间

120min

指令

cyclictest &stress-ng

空载

平均 8us

最大 24us

满载

平均 13us

最大 136us

表3-1.数据信息


EtherCAT IGH移植

4.1. 下载EtherCAT IGH源码

到官网下载1.5版本的EtherCAT源码,如图4-1

https://gitlab.com/etherlab.org/ethercat/-/tree/stable-1.5?ref_type=heads

4-1. 下载源码

  • 解压EtherCAT源码

hjx@myir-server:~/renesas/04_Sources$ tar -xvf ethercat-stable-1.5.tar.bz2hjx@myir-server:~/renesas/04_Sources$ cd ethercat-stable-1.5


  • 加载sdk环境变量

hjx@myir-server:~/renesas/04_Sources/myir-renesas-linux$ source /opt/remi-sdk/environment-setup-aarch64-poky-linux

4.2. 编译EtherCAT源码

  • 生成configure文件

hjx@myir-server:~/renesas/04_Sources/ethercat-stable-1.5$ ./bootstrap+ touch ChangeLog+ mkdir -p m4+ autoreconf -ilibtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'autoconf'.libtoolize: copying file 'autoconf/ltmain.sh'libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.libtoolize: copying file 'm4/libtool.m4'libtoolize: copying file 'm4/ltoptions.m4'libtoolize: copying file 'm4/ltsugar.m4'libtoolize: copying file 'm4/ltversion.m4'libtoolize: copying file 'm4/lt~obsolete.m4'configure.ac:56: installing 'autoconf/ar-lib'configure.ac:55: installing 'autoconf/compile'configure.ac:58: installing 'autoconf/config.guess'configure.ac:58: installing 'autoconf/config.sub'configure.ac:42: installing 'autoconf/install-sh'configure.ac:42: installing 'autoconf/missing'examples/dc_user/Makefile.am: installing 'autoconf/depcomp'


  • configure设置

hjx@myir-server:~/renesas/04_Sources/ethercat-stable-1.5$ mkdir  outputhjx@myir-server:~/renesas/04_Sources/ethercat-stable-1.5$ ./configure --prefix=/home/hjx/renesas/04_Sources/ethercat-stable-1.5/output --with-linux-dir=/home/hjx/renesas/04_Sources/myir-renesas-linux  --enable-8139too=no  --enable-generic=yes   --host=aarch64-poky-linux

--prefix=/home/hjx/renesas/04_Sources/output 指定输出目录、--with-linux-dir=/home/hjx/renesas/04_Sources/myir-renesas-linux指定内核源码目录)

configure: loading site script /opt/remi-sdk/site-config-aarch64-poky-linuxchecking for a BSD-compatible install... /usr/bin/install -cchecking whether build environment is sane... yeschecking for aarch64-poky-linux-strip... aarch64-poky-linux-stripchecking for a thread-safe mkdir -p... /bin/mkdir -pchecking for gawk... gawkchecking whether make sets $(MAKE)... yeschecking whether make supports nested variables... yeschecking whether make supports nested variables... (cached) yeschecking for a sed that does not truncate output... (cached) sedchecking for aarch64-poky-linux-pkg-config... nochecking for pkg-config... /opt/remi-sdk/sysroots/x86_64-pokysdk-linux/usr/bin/pkg-configchecking pkg-config is at least version 0.9.0... yeschecking whether make supports the include directive... yes (GNU style).........................config.status: creating examples/xenomai/Makefileconfig.status: creating examples/xenomai_posix/Makefileconfig.status: creating include/Makefileconfig.status: creating lib/Makefileconfig.status: creating lib/libethercat.pcconfig.status: creating master/Kbuildconfig.status: creating master/Makefileconfig.status: creating script/Makefileconfig.status: creating script/init.d/Makefileconfig.status: creating script/init.d/ethercatconfig.status: creating script/sysconfig/Makefileconfig.status: creating tool/Makefileconfig.status: creating tty/Kbuildconfig.status: creating tty/Makefileconfig.status: creating config.hconfig.status: executing depfiles commandsconfig.status: executing libtool commands


  • 编译源码

hjx@myir-server:~/renesas/04_Sources/ethercat-stable-1.5$   makemake all-recursivemake[1]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5'Making all in includemake[2]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/include'make[2]: Nothing to be done for 'all'.make[2]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/include'Making all in scriptmake[2]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/script'Making all in init.dmake[3]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/script/init.d'make[3]: Nothing to be done for 'all'.make[3]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/script/init.d'Making all in sysconfigmake[3]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/script/sysconfig'make[3]: Nothing to be done for 'all'.make[3]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/script/sysconfig'............make[3]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/examples/user'make[3]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/examples'make[3]: Nothing to be done for 'all-am'.make[3]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/examples'make[2]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/examples'make[2]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5'make[2]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5'make[1]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5'


  • 编译modules

hjx@myir-server:~/renesas/04_Sources/ethercat-stable-1.5$  make  modulesmake[1]: Entering directory '/home/hjx/renesas/04_Sources/myir-renesas-linux'CC [M]  /home/hjx/renesas/04_Sources/ethercat-stable-1.5/examples/mini/mini.oLD [M]  /home/hjx/renesas/04_Sources/ethercat-stable-1.5/examples/mini/ec_mini.oCC [M]  /home/hjx/renesas/04_Sources/ethercat-stable-1.5/master/cdev.oCC [M]  /home/hjx/renesas/04_Sources/ethercat-stable-1.5/master/coe_emerg_ring.oCC [M]  /home/hjx/renesas/04_Sources/ethercat-stable-1.5/master/datagram.o.......................make[1]: Leaving directory '/home/hjx/renesas/04_Sources/myir-renesas-linux'

编译通过会对应生成ethercat-stable-1.5/devices/ec_generic.koethercat-stable-1.5/master/ec_master.ko

4.3. 安装EtherCAT

安装成功后前面指定/home/hjx/renesas/04_Sources/ethercat-stable-1.5/output目录下有编译生成的各种用户空间的文件。

hjx@myir-server:~/renesas/04_Sources/ethercat-stable-1.5$ make installMaking install in includemake[1]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/include'make[2]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/include'make[2]: Nothing to be done for 'install-exec-am'./bin/mkdir -p '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/output/include'/usr/bin/install -c -m 644 ecrt.h ectty.h '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/output/include'make[2]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/include'make[1]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/include'Making install in scriptmake[1]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/script'Making install in init.dmake[2]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/script/init.d'make[3]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/script/init.d'make[3]: Nothing to be done for 'install-exec-am'......................make[3]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/examples'make[2]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/examples'make[1]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/examples'make[1]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5'make[2]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5'make[2]: Nothing to be done for 'install-exec-am'.make[2]: Nothing to be done for 'install-data-am'.make[2]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5'make[1]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5'


4.4. 将EtharCAT相关文件打包

/home/hjx/renesas/04_Sources/ethercat-stable-1.5/output目录下创建modules文件夹,并复制ec_generic.koec_master.komodules

hjx@myir-server:~/renesas/04_Sources/ethercat-stable-1.5$  mkdir -p output/moduleshjx@myir-server:~/renesas/04_Sources/ethercat-stable-1.5$  cp devices/ec_generic.ko  output/modules/hjx@myir-server:~/renesas/04_Sources/ethercat-stable-1.5$  cp master/ec_master.ko   output/modules/hjx@myir-server:~/renesas/04_Sources/ethercat-stable-1.5$ ls outputbin etc  include  lib  modules  sbin share

  • 压缩output输出文件

hjx@myir-server:~/renesas/04_Sources/ethercat-stable-1.5$ tar -jcvf output.tar.bz2 output/  output/output/etc/output/etc/ethercat.confoutput/etc/init.d/output/etc/init.d/ethercatoutput/etc/sysconfig/output/etc/sysconfig/ethercatoutput/sbin/output/sbin/ethercatctloutput/include/output/include/ectty.houtput/include/ecrt.houtput/modules/output/modules/ec_master.kooutput/modules/ec_generic.kooutput/share/output/share/bash-completion/output/share/bash-completion/completions/output/share/bash-completion/completions/ethercatoutput/bin/output/bin/ethercatoutput/lib/output/lib/libethercat.sooutput/lib/pkgconfig/output/lib/pkgconfig/libethercat.pcoutput/lib/libethercat.so.1.2.0output/lib/cmake/output/lib/cmake/ethercat/output/lib/cmake/ethercat/ethercat-config.cmakeoutput/lib/libethercat.aoutput/lib/libethercat.laoutput/lib/libethercat.so.1hjx@myir-server:~/renesas/04_Sources/ethercat-stable-1.5$ ls output.tar.bz2output.tar.bz2

至此IGH交叉编译完成,下面是在对应arm目标板上的操作

4.5. 移植EtherCAT相关库到开发板

将上面制作好的output.tar.bz2传到开发板上,然后解压出来。

root@myir-remi-1g:~# tar -xvf output.tar.bz2output/output/etc/output/etc/ethercat.confoutput/etc/init.d/output/etc/init.d/ethercatoutput/etc/sysconfig/output/etc/sysconfig/ethercatoutput/sbin/output/sbin/ethercatctloutput/include/output/include/ectty.houtput/include/ecrt.houtput/modules/output/modules/ec_master.kooutput/modules/ec_generic.kooutput/share/output/share/bash-completion/output/share/bash-completion/completions/output/share/bash-completion/completions/ethercatoutput/bin/output/bin/ethercatoutput/lib/output/lib/libethercat.sooutput/lib/pkgconfig/output/lib/pkgconfig/libethercat.pcoutput/lib/libethercat.so.1.2.0output/lib/cmake/output/lib/cmake/ethercat/output/lib/cmake/ethercat/ethercat-config.cmakeoutput/lib/libethercat.aoutput/lib/libethercat.laoutput/lib/libethercat.so.1

output目录下各文件目录的内容复制到板子根文件系统根目录下相应目录下,例如:cp bin/ethercat /bin/(include目录不用复制)

root@myir-remi-1g:~/output# lsbin etc  include  lib  modules  sbin  shareroot@myir-remi-1g:~/output# cp bin/ethercat /bin/root@myir-remi-1g:~/output# cp etc/ethercat.conf /etc/root@myir-remi-1g:~/output# cp etc/init.d/*  /etc/init.droot@myir-remi-1g:~/output# cp -r etc/sysconfig/ /etc/root@myir-remi-1g:~/output# cp  lib/libethercat.* /lib64/root@myir-remi-1g:~/output# cp -r lib/pkgconfig /lib64/root@myir-remi-1g:~/output# cp modules/ec_master.ko /lib/modules/5.10.83-cip1-yocto-standard/root@myir-remi-1g:~/output# cp sbin/ethercatctl  /sbin/


4.6. 启动EtherCAT

4.6.1. 配置主站的MAC地址

root@myir-remi-1g:~# depmodroot@myir-remi-1g:~# modprobe ec_master main_devices=1E:ED:19:27:1A:B3

4.6.2. 启动EtherCAT

root@myir-remi-1g:~# /etc/init.d/ethercat startStarting EtherCAT master 1.5.2 done

至此所有步骤完成。


米尔瑞米派 Remi Pi

瑞萨第一款MPU生态板卡,兼容树莓派扩展模块

采用瑞萨RZ/G2L工业级处理器,便于企业客户产品开发;

Remi Pi兼容树莓派所有配件,方便产品原型搭建和创新应用;

更多的工业接口,兼顾开发、学习和实际应用;

软件系统丰富,支持Debian/Ubuntu/Linux等。

如需了解板卡,您可以通过访问以下米尔电子官网链接:

https://www.myir.cn/shows/23/14.html

更多关于Remi Pi技术问题讨论请登录米尔官方论坛:
https://bbs.myir-tech.com/forum-66-1.html

购买链接:
https://detail.tmall.com/item.htm?id=763219500729&skuId=5425000934998

(提示:公号不支持外链接,请复制链接到浏览器打开)


------------ END ------------

MCU创意项目:基于NBIOT的云端语音报警系统


用Keil开发Cortext-M85单片机是一种什么体验?


瑞米派(Remi Pi)移植FreeRTOS、LVGL教程


strongerHuang 作者黄工,高级嵌入式软件工程师,分享嵌入式软硬件、物联网、单片机、开发工具、电子等内容。
评论
  • 每日可见的315MHz和433MHz遥控模块,你能分清楚吗?众所周知,一套遥控设备主要由发射部分和接收部分组成,发射器可以将控制者的控制按键经过编码,调制到射频信号上面,然后经天线发射出无线信号。而接收器是将天线接收到的无线信号进行解码,从而得到与控制按键相对应的信号,然后再去控制相应的设备工作。当前,常见的遥控设备主要分为红外遥控与无线电遥控两大类,其主要区别为所采用的载波频率及其应用场景不一致。红外遥控设备所采用的射频信号频率一般为38kHz,通常应用在电视、投影仪等设备中;而无线电遥控设备
    华普微HOPERF 2025-01-06 15:29 127浏览
  • 在智能家居领域中,Wi-Fi、蓝牙、Zigbee、Thread与Z-Wave等无线通信协议是构建短距物联局域网的关键手段,它们常在实际应用中交叉运用,以满足智能家居生态系统多样化的功能需求。然而,这些协议之间并未遵循统一的互通标准,缺乏直接的互操作性,在进行组网时需要引入额外的网关作为“翻译桥梁”,极大地增加了系统的复杂性。 同时,Apple HomeKit、SamSung SmartThings、Amazon Alexa、Google Home等主流智能家居平台为了提升市占率与消费者
    华普微HOPERF 2025-01-06 17:23 145浏览
  • By Toradex 秦海1). 简介嵌入式平台设备基于Yocto Linux 在开发后期量产前期,为了安全以及提高启动速度等考虑,希望将 ARM 处理器平台的 Debug Console 输出关闭,本文就基于 NXP i.MX8MP ARM 处理器平台来演示相关流程。 本文所示例的平台来自于 Toradex Verdin i.MX8MP 嵌入式平台。  2. 准备a). Verdin i.MX8MP ARM核心版配合Dahlia载板并
    hai.qin_651820742 2025-01-07 14:52 45浏览
  • 村田是目前全球量产硅电容的领先企业,其在2016年收购了法国IPDiA头部硅电容器公司,并于2023年6月宣布投资约100亿日元将硅电容产能提升两倍。以下内容主要来自村田官网信息整理,村田高密度硅电容器采用半导体MOS工艺开发,并使用3D结构来大幅增加电极表面,因此在给定的占位面积内增加了静电容量。村田的硅技术以嵌入非结晶基板的单片结构为基础(单层MIM和多层MIM—MIM是指金属 / 绝缘体/ 金属) 村田硅电容采用先进3D拓扑结构在100um内,使开发的有效静电容量面积相当于80个
    知白 2025-01-07 15:02 75浏览
  • 大模型的赋能是指利用大型机器学习模型(如深度学习模型)来增强或改进各种应用和服务。这种技术在许多领域都显示出了巨大的潜力,包括但不限于以下几个方面: 1. 企业服务:大模型可以用于构建智能客服系统、知识库问答系统等,提升企业的服务质量和运营效率。 2. 教育服务:在教育领域,大模型被应用于个性化学习、智能辅导、作业批改等,帮助教师减轻工作负担,提高教学质量。 3. 工业智能化:大模型有助于解决工业领域的复杂性和不确定性问题,尽管在认知能力方面尚未完全具备专家级的复杂决策能力。 4. 消费
    丙丁先生 2025-01-07 09:25 80浏览
  • 本文介绍Linux系统更换开机logo方法教程,通用RK3566、RK3568、RK3588、RK3576等开发板,触觉智能RK3562开发板演示,搭载4核A53处理器,主频高达2.0GHz;内置独立1Tops算力NPU,可应用于物联网网关、平板电脑、智能家居、教育电子、工业显示与控制等行业。制作图片开机logo图片制作注意事项(1)图片必须为bmp格式;(2)图片大小不能大于4MB;(3)BMP位深最大是32,建议设置为8;(4)图片名称为logo.bmp和logo_kernel.bmp;开机
    Industio_触觉智能 2025-01-06 10:43 87浏览
  • 根据环洋市场咨询(Global Info Research)项目团队最新调研,预计2030年全球无人机锂电池产值达到2457百万美元,2024-2030年期间年复合增长率CAGR为9.6%。 无人机锂电池是无人机动力系统中存储并释放能量的部分。无人机使用的动力电池,大多数是锂聚合物电池,相较其他电池,锂聚合物电池具有较高的能量密度,较长寿命,同时也具有良好的放电特性和安全性。 全球无人机锂电池核心厂商有宁德新能源科技、欣旺达、鹏辉能源、深圳格瑞普和EaglePicher等,前五大厂商占有全球
    GIRtina 2025-01-07 11:02 71浏览
  • 根据Global Info Research项目团队最新调研,预计2030年全球封闭式电机产值达到1425百万美元,2024-2030年期间年复合增长率CAGR为3.4%。 封闭式电机是一种电动机,其外壳设计为密闭结构,通常用于要求较高的防护等级的应用场合。封闭式电机可以有效防止外部灰尘、水分和其他污染物进入内部,从而保护电机的内部组件,延长其使用寿命。 环洋市场咨询机构出版的调研分析报告【全球封闭式电机行业总体规模、主要厂商及IPO上市调研报告,2025-2031】研究全球封闭式电机总体规
    GIRtina 2025-01-06 11:10 104浏览
  • 这篇内容主要讨论三个基本问题,硅电容是什么,为什么要使用硅电容,如何正确使用硅电容?1.  硅电容是什么首先我们需要了解电容是什么?物理学上电容的概念指的是给定电位差下自由电荷的储藏量,记为C,单位是F,指的是容纳电荷的能力,C=εS/d=ε0εrS/4πkd(真空)=Q/U。百度百科上电容器的概念指的是两个相互靠近的导体,中间夹一层不导电的绝缘介质。通过观察电容本身的定义公式中可以看到,在各个变量中比较能够改变的就是εr,S和d,也就是介质的介电常数,金属板有效相对面积以及距离。当前
    知白 2025-01-06 12:04 173浏览
  • 彼得·德鲁克被誉为“现代管理学之父”,他的管理思想影响了无数企业和管理者。然而,关于他的书籍分类,一种流行的说法令人感到困惑:德鲁克一生写了39本书,其中15本是关于管理的,而其中“专门写工商企业或为企业管理者写的”只有两本——《为成果而管理》和《创新与企业家精神》。这样的表述广为流传,但深入探讨后却发现并不完全准确。让我们一起重新审视这一说法,解析其中的矛盾与根源,进而重新认识德鲁克的管理思想及其著作的真正价值。从《创新与企业家精神》看德鲁克的视角《创新与企业家精神》通常被认为是一本专为企业管
    优思学院 2025-01-06 12:03 119浏览
我要评论
0
点击右上角,分享到朋友圈 我知道啦
请使用浏览器分享功能 我知道啦