实例介绍
该工程是在NXP的yacto环境下编译运行的,需要安装交叉编译环境fsl-toolchain,主要是针对T2080的SRIO的消息处理机制USDPAA的RMAN方式,收发DOORBELL所用。
【实例截图】
【核心代码】
4744300845408050002.rar
└── dbell_prj
└── source
├── dbell_tx.xml
└── fra_local
├── app
│ ├── fra
│ ├── fra.c
│ ├── fra.lds
│ ├── fra.o
│ ├── main.c
│ ├── main.o
│ ├── Makefile
│ ├── Makefile.am
│ ├── objs_powerpc64
│ │ ├── fra_fra.d
│ │ ├── fra_fra.o
│ │ ├── fra_main.d
│ │ ├── fra_main.o
│ │ ├── fra_test_port_write.d
│ │ ├── fra_test_port_write.o
│ │ ├── fra_test_speed.d
│ │ └── fra_test_speed.o
│ ├── p
│ ├── pp.c
│ ├── test_port_write.c
│ ├── test_port_write.o
│ ├── test_speed.c
│ ├── test_speed.o
│ └── update
├── app_config
│ ├── dbell_tx.xml
│ ├── distributions_config.xml
│ ├── fra_config_dstr_port1_port2_loopback.xml
│ ├── fra_config_dstr_processing1_port2.xml
│ ├── fra_config_dstr_processing1.xml
│ ├── fra_config_dstr_processing2_port2.xml
│ ├── fra_config_dstr_processing2.xml
│ ├── fra_config_dstr_testspeed_rxpoint.xml
│ ├── fra_config_dstr_testspeed_txpoint.xml
│ ├── fra_config_mbox_processing1_port2.xml
│ ├── fra_config_mbox_processing1.xml
│ ├── fra_config_mbox_processing2_port2.xml
│ ├── fra_config_mbox_processing2.xml
│ ├── fra_config_port_write_test.xml
│ ├── Makefile.am
│ ├── network_config.xml
│ ├── policies_config.xml
│ ├── rman_config.xml
│ ├── transactions_config.xml
│ ├── usdpaa_config_p3_p5_serdes_0x33.xml
│ └── usdpaa_policy_hash_ipv4.xml
├── include
│ ├── ansi_stdlib.h
│ ├── app_conf.h
│ ├── atb_clock.h
│ ├── bigatomic.h
│ ├── chardefs.h
│ ├── colors.h
│ ├── config.h
│ ├── fra_bpool.h
│ ├── fra_cfg.h
│ ├── fra_cfg_parser.h
│ ├── fra_common.h
│ ├── fra_fman_port.h
│ ├── fra_fq_interface.h
│ ├── fra.h
│ ├── fra_utils.h
│ ├── fsl_cpu_hotplug.h
│ ├── histlib.h
│ ├── history.h
│ ├── keymaps.h
│ ├── libxml
│ │ ├── c14n.h
│ │ ├── catalog.h
│ │ ├── chvalid.h
│ │ ├── debugXML.h
│ │ ├── dict.h
│ │ ├── DOCBparser.h
│ │ ├── encoding.h
│ │ ├── entities.h
│ │ ├── globals.h
│ │ ├── hash.h
│ │ ├── HTMLparser.h
│ │ ├── HTMLtree.h
│ │ ├── list.h
│ │ ├── Makefile
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── nanoftp.h
│ │ ├── nanohttp.h
│ │ ├── parser.h
│ │ ├── parserInternals.h
│ │ ├── pattern.h
│ │ ├── relaxng.h
│ │ ├── SAX2.h
│ │ ├── SAX.h
│ │ ├── schemasInternals.h
│ │ ├── schematron.h
│ │ ├── threads.h
│ │ ├── tree.h
│ │ ├── uri.h
│ │ ├── valid.h
│ │ ├── xinclude.h
│ │ ├── xlink.h
│ │ ├── xmlautomata.h
│ │ ├── xmlerror.h
│ │ ├── xmlexports.h
│ │ ├── xmlIO.h
│ │ ├── xmlmemory.h
│ │ ├── xmlmodule.h
│ │ ├── xmlreader.h
│ │ ├── xmlregexp.h
│ │ ├── xmlsave.h
│ │ ├── xmlschemas.h
│ │ ├── xmlschemastypes.h
│ │ ├── xmlstring.h
│ │ ├── xmlunicode.h
│ │ ├── xmlversion.h
│ │ ├── xmlversion.h.in
│ │ ├── xmlwriter.h
│ │ ├── xpath.h
│ │ ├── xpathInternals.h
│ │ └── xpointer.h
│ ├── Makefile
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── mutex.h
│ ├── parse-colors.h
│ ├── posixdir.h
│ ├── posixjmp.h
│ ├── posixselect.h
│ ├── posixstat.h
│ ├── ppac.c
│ ├── ppac.h
│ ├── ppac_interface.h
│ ├── readline.h
│ ├── rlconf.h
│ ├── rldefs.h
│ ├── rlmbutil.h
│ ├── rlprivate.h
│ ├── rlshell.h
│ ├── rlstdc.h
│ ├── rltty.h
│ ├── rltypedefs.h
│ ├── rlwinsize.h
│ ├── rman_interface.h
│ ├── tcap.h
│ ├── test_port_write.h
│ ├── test_speed.h
│ ├── tilde.h
│ ├── usdpaa
│ │ ├── compat.h
│ │ ├── compat_list.h
│ │ ├── conf.h
│ │ ├── dma_mem.h
│ │ ├── fman.h
│ │ ├── fsl_bman.h
│ │ ├── fsl_dma.h
│ │ ├── fsl_dpa_classifier.h
│ │ ├── fsl_dpa_ipsec_algs.h
│ │ ├── fsl_dpa_ipsec.h
│ │ ├── fsl_dpa_offload.h
│ │ ├── fsl_dpa_stats.h
│ │ ├── fsl_pme.h
│ │ ├── fsl_qman.h
│ │ ├── fsl_rman.h
│ │ ├── fsl_rman_ib.h
│ │ ├── fsl_rmu.h
│ │ ├── fsl_srio.h
│ │ ├── fsl_usd.h
│ │ ├── Makefile.am
│ │ ├── of.h
│ │ └── usdpaa_netcfg.h
│ ├── win32config.h
│ ├── wsockcompat.h
│ └── xmalloc.h
├── lib
│ ├── fra_bpool
│ │ ├── fra_bpool.c
│ │ ├── fra_bpool.d
│ │ ├── fra_bpool.o
│ │ ├── Makefile
│ │ └── Makefile.inc
│ ├── fra_cfg_parser
│ │ ├── fra_cfg_parser.c
│ │ ├── Makefile.am
│ │ └── objs_powerpc64
│ │ ├── fra_cfg_parser_fra_cfg_parser.d
│ │ └── fra_cfg_parser_fra_cfg_parser.o
│ ├── fra_fman_port
│ │ ├── fra_fman_port.c
│ │ ├── Makefile.am
│ │ └── objs_powerpc64
│ │ ├── fra_fman_port_fra_fman_port.d
│ │ └── fra_fman_port_fra_fman_port.o
│ ├── fra_fq_interface
│ │ ├── fra_fq_interface.c
│ │ ├── Makefile.am
│ │ └── objs_powerpc64
│ │ ├── fra_fq_interface_fra_fq_interface.d
│ │ └── fra_fq_interface_fra_fq_interface.o
│ ├── libapp_ipsecfwd_ethernet.a
│ ├── libapp_ipsecfwd_ip.a
│ ├── libapp_ipsecfwd_ipsec.a
│ ├── libapp_ipsecfwd_mm.a
│ ├── libapp_ipsecfwd_net.a
│ ├── libapp_ipsecfwd_refcount.a
│ ├── libapp_lpm_arp.a
│ ├── libapp_lpm_ethernet.a
│ ├── libapp_lpm_ip.a
│ ├── libapp_lpm_mm.a
│ ├── libapp_lpm_net.a
│ ├── libapp_rc_arp.a
│ ├── libapp_rc_ethernet.a
│ ├── libapp_rc_ip.a
│ ├── libapp_rc_mm.a
│ ├── libapp_rc_net.a
│ ├── libapp_refcount.a
│ ├── libapps_ipsecfwd_arp.a
│ ├── libfifo_queue.a
│ ├── libfra_bpool.a
│ ├── libfra_cfg_parser.a
│ ├── libfra_fman_port.a
│ ├── libfra_fq_interface.a
│ ├── libfra_utils.a
│ ├── libfslcrypto.a
│ ├── libfvl_srio.a
│ ├── libhash_table.a
│ ├── libhistory.a
│ ├── libreadline.a
│ ├── librman_interface.a
│ ├── libtermcap.a
│ ├── libtestdso.a
│ ├── libusdpaa_dma.a
│ ├── libusdpaa_dma_mem.a
│ ├── libusdpaa_dpa_offload.a
│ ├── libusdpaa_fman.a
│ ├── libusdpaa_helper.a
│ ├── libusdpaa_hx504.a
│ ├── libusdpaa_of.a
│ ├── libusdpaa_pme.a
│ ├── libusdpaa_ppac.a
│ ├── libusdpaa_process.a
│ ├── libusdpaa_qbman.a
│ ├── libusdpaa_rman.a
│ ├── libusdpaa_rmu.a
│ ├── libusdpaa_sec.a
│ ├── libusdpaa_srams.a
│ ├── libusdpaa_srio.a
│ ├── libusdpaa_syscfg.a
│ ├── libxml2.a
│ ├── libzlog.a
│ ├── Makefile.am
│ ├── ppc64
│ ├── rman_interface
│ │ ├── Makefile.am
│ │ ├── objs_powerpc64
│ │ │ ├── rman_interface_rman_interface.d
│ │ │ └── rman_interface_rman_interface.o
│ │ └── rman_interface.c
│ ├── testdso.a
│ ├── utils
│ │ ├── fra_debug.c
│ │ ├── Makefile.am
│ │ └── objs_powerpc64
│ │ ├── fra_utils_fra_debug.d
│ │ └── fra_utils_fra_debug.o
│ └── x86_64
├── Makefile.am
└── tarbell
├── libxml2-2.7.8.tar.gz
├── readline-5.2.tar.gz
└── termcap-1.3.1.tar.gz
22 directories, 251 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论