PetaLinux Design Flow

0. Environment set up

  • PetaLinux relies on Python 2.7. It would ease the process by creating a Conda environment with Python 2.7 enabled and doing PetaLinux work in it.
  • Sometime you should source the following file to run PetaLinux smoothly
    $PetaLinux/components/yocto/source/arm/environment-setup-cortexa9t2hf-neon-xilinx-linux-gnueabi

1. Create a new project

petalinux-create -t project --template zynq -n $(project_name)

or

petalinux-create -t project -s $(bsp_file)

2. Import hardware information and configure

Refer to the directory where the .hdf file is instead of the path to the .hdf file.

petalinux-config --get-hw-description=$(path_to_hdf)

The following is a list of requirements for a Zynq hardware project to boot Linux (UG980):

  1. One Triple Timer Counter (TTC) (Required)
    IMPORTANT:
    If multiple TTCs are enabled, the Zynq Linux kernel uses the first TTC block from the device tree.
    Please make sure the TTC is not used by others.
  2. External memory controller with at least 32MB of memory (Required)
  3. UART for serial console (Required)
    IMPORTANT: If soft IP is used, ensure the interrupt signal is connected
  4. Non-volatile memory (Optional) e.g. QSPI Flash, SD/MMC
  5. Ethernet (Optional, essential for network access)
    IMPORTANT: If soft IP is used, ensure the interrupt signal is connected

HDF文件是一个zip文件,可以直接使用7zip解压;也可以把后缀改为zip,使用其它工具解压。解压后可以得到文件design_1.hwh, design_1_bd.tcl, design_1_wrapper.bit, psu_init.c, psu_init.h, psu_init.html, psu_init.tcl, psu_init_gpl.c, psu_init_gpl.h, sysdef.xml。

  • psu_init.c, psu_init.h是Vivado根据工程师配置的硬件信息,产生的C代码,会被编译进FSBL,用于初始化MPSoC的MIO,DDR等。
  • design_1_bd.tcl是一个TCL脚本,Vivado可以执行这个脚本恢复整个Vivado工程。
  • sysdef.xml,design_1_bd.tcl都含有工具版本信息,可以查看Vivado的版本。

2.1 Ethernet configuration

Subsystem AUTO Hardware Settings \rightarrow Ethernet Settings

2.2 tftp server configuration

u-boot Configuration \rightarrow TFTP server IP address

Image Packaging Configuration \rightarrow tftpboot directory

2.3 Firmware information

Firmware Version Configuration \rightarrow

2.4 Change to boot from SD card

Image Packaging Configuration \rightarrow Root filesystem type \rightarrow SD card

3. Create a new application/module

petalinux-create -t apps -n $(app_name)
petalinux-create -t modules -n $(module_name)

The PL device tree is located at:
./components/plnx_workspace/device-tree/device-tree/pl.dtsi

4. Configure kernel

petalinux-config -c kernel

For DMA, may need to disable DMAS engine:
Device Drivers \rightarrow DMA Engine support \rightarrow Xilinx AXI DMAS Engine. Uncheck the option. (per https://lauri.vosandi.com/hdl/zynq/xilinx-dma.html)

5. Configure rootfs

petalinux-config -c rootfs

Select modules/apps to be enabled:

apps \rightarrow

6. Build

petalinux-build

7. Create BOOT.bin

petalinux-package --boot --fsbl images/linux/zynq_fsbl.elf --fpga images/linux/system.bit --u-boot --force

or

create a file, e.g., boot.bif (UG1283)

image : {
        [bootloader] images/linux/zynq_fsbl.elf
        images/linux/system.bit
        images/linux/u-boot.elf
}

And then, run command:

bootgen -image boot.bif -o i BOOT.BIN -w on

8. Boot file system from SD card

a) Change configuration if using standalone rootfs

When reading hardware configuration (petalinux-config --get-hw-description=xxx)

Select Image Packaging Configuration \rightarrow Root filesystem type \rightarrow SD card

Or when configuring:

petalinux-config

Select Image Packaging Configuration \rightarrow Root filesystem type \rightarrow SD card

If using default rootfs, keep this option unchanged:
Image Packaging Configuration \rightarrow Root filesystem type \rightarrow INITRAMFS

b) Generate images

petalinux-build
petalinux-package --boot --fsbl images/linux/zynq_fsbl.elf --fpga images/linux/system.bit --u-boot --force

c) Prepare SD card

cp /tftpboot/BOOT.BIN /media/$(username)/BOOT/.
cp /tftpboot/image.ub /media/$(username)/BOOT/.
cp /tftpboot/boot.scr /media/$(username)/BOOT/.

PetaLinux 2020.1 changed uboot so that it requires boot.scr also in the BOOT partition of the SD card.

If use rootfs images created by PetaLinux:

cp images/linux/rootfs.cpio /media/$(username)/rootfs

If use standalone rootfs:

sudo cp -a /path-to-compiled-rootfs/* /media/$(username)/rootfs/.

Then

petalinux-util --update-sdcard -d /media/$(username)/BOOT

Unmount and eject the SD card.

Reference

  • UG980
  • UG1144
  • UG1157
  • UG1283
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,864评论 6 494
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,175评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,401评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,170评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,276评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,364评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,401评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,179评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,604评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,902评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,070评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,751评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,380评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,077评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,312评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,924评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,957评论 2 351

推荐阅读更多精彩内容