element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Avnet Boards Forums
  • Products
  • Dev Tools
  • Avnet Boards Community
  • Avnet Boards Forums
  • More
  • Cancel
Avnet Boards Forums
Ultrazed Hardware Design UltraZed-EV starter kit kernel boot problem.
  • Forum
  • Documents
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Avnet Boards Forums to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Verified Answer
  • Replies 2 replies
  • Subscribers 324 subscribers
  • Views 797 views
  • Users 0 members are here
Related

UltraZed-EV starter kit kernel boot problem.

dpechkin
dpechkin over 5 years ago

Hello!

 

I have the UltraZed-EV System-on-Module Starter Kit.

I have the petalinux-2019.1 and UltraZed-EV Carrier Card—PetaLinux 2019.1 Enhanced BSP.

 

I created a project and checked that the root file system type is initramfs.

And It was built successfully after these steps.

 

I set a switch to jtag mode (On-On-On-On) and upload u-boot via command: petalinux-boot --jtab --u-boot.

 

I set the server IP of the TFTP server and executed the command "run netboot" in the u-boot console.

The image is uploaded, and the kernel was started.

 

The kernel was hanged on after these lines:

console [ttyPS0] enabled at MMIO 0xff000000 (irq = 46, base_baud = 6249999) is a xuartps

[    3.535829] console [ttyPS0] enabled

[    3.539420] bootconsole [cdns0] disabled

[    3.539420] bootconsole [cdns0] disabled

[    3.547328] ff010000.serial: ttyPS1 at MMIO 0xff010000 (irq = 47, base_baud = 6249999) is a xuartps

 

The full console log is attached.

 

I have the same issue for the project for the SD card.

The switch was set to OFF-ON-OFF-ON for that rootfs type.

 

Maybe I missed some steps?

Anyone can give some advice?

Thanks in advance.

Attachments:
fulllog.txt.zip
  • Sign in to reply
  • Cancel
Parents
  • narrucmot
    0 narrucmot over 5 years ago

    Hi Dmitriy,

     

    The boot error you describe is what happens when the bitstream is not included as part of the boot process.  The PetaLinux boot command you want is:
    $ petalinux-boot --jtag --fpga --bitstream images/linux/system.bit --u-boot --verbose

     

    The '--verbose' is not required, but is often helpful.

     

    Likewise, to create a boot.bin that is suitable for SD card boot and that includes the PL bitstream, the PetaLinux package command is:

    $ petalinux-package --boot --fsbl images/linux/zynqmp_fsbl.elf --fpga images/linux/system.bit --uboot --force

     

    Attached is the boot log from a successful JTAG/TFTP boot you can use to validate your boot success.

     

    Cheers,

    Tom

     

    PS - Make sure to mark this question as answered if my reply has answered your question.  Thanks!

    Attachments:
    uz7ev_2019p1_bsp_jtag_bootlog.txt.zip
    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Reject Answer
    • Cancel
Reply
  • narrucmot
    0 narrucmot over 5 years ago

    Hi Dmitriy,

     

    The boot error you describe is what happens when the bitstream is not included as part of the boot process.  The PetaLinux boot command you want is:
    $ petalinux-boot --jtag --fpga --bitstream images/linux/system.bit --u-boot --verbose

     

    The '--verbose' is not required, but is often helpful.

     

    Likewise, to create a boot.bin that is suitable for SD card boot and that includes the PL bitstream, the PetaLinux package command is:

    $ petalinux-package --boot --fsbl images/linux/zynqmp_fsbl.elf --fpga images/linux/system.bit --uboot --force

     

    Attached is the boot log from a successful JTAG/TFTP boot you can use to validate your boot success.

     

    Cheers,

    Tom

     

    PS - Make sure to mark this question as answered if my reply has answered your question.  Thanks!

    Attachments:
    uz7ev_2019p1_bsp_jtag_bootlog.txt.zip
    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Reject Answer
    • Cancel
Children
  • dpechkin
    0 dpechkin over 5 years ago in reply to narrucmot

    Hi Tom,

     

    I tested boot via TFTP using your command. It works.

     

    Thanks.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube