element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • 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 & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
  • 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 & Tria Boards Community
  • Avnet Boards Forums
  • More
  • Cancel
Avnet Boards Forums
Ultra96 Hardware Design Enable the Wi-Fi
  • 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 3 replies
  • Subscribers 346 subscribers
  • Views 589 views
  • Users 0 members are here
Related

Enable the Wi-Fi

francocapraro12
francocapraro12 over 7 years ago

Hi guys. (I was trying to find a post, but i couldnt)
Im trying to enable the wi-fi in my own project for the Ultra96 using Petalinux. I did a simple project in Vivado, i made the bitstream and then im trying to enable the Wi-Fi via petalinux-config --get-hw-description=<project.sdk>


IMAGE:https://hackster.imgix.net/uploads/attachments/519102/image_M8BNse8S3V.png?auto=compress%2Cformat&w=1280&h=960&fit=max

image

What i need to make in the Menu?


Im new with the Ultra96 and Petalinux, so if you can explain me in detail i will be better for me.

Thanks for your time !

  • Sign in to reply
  • Cancel
Parents
  • narrucmot
    0 narrucmot over 7 years ago

    When working on a custom Vivado and PetaLinux design for the Ultra96 that also includes WiFi, it may be best to start with the PetaLinux 2018.2 BSP posted on the Xilinx website (you will need to login/register to download this file):

    https://www.xilinx.com/member/forms/download/xef.html?filename=xilinx-ultra96-reva-v2018.2-final.bsp

    The Vivado project is included in the BSP, so you can identify what is required in the PL and PS config for WiFi, etc. and use this as the starting point for your own custom design.  Note that this BSP maps the user UART out to the low-speed mezzanine connector on pins 11 (Tx) and 13 (Rx).  Here is an excerpt from the XDC constraints file for the Vivado hw platform:

    #HD_GPIO_5 on FPGA / Connector pin 13 / UART1_rxd
    set_property PACKAGE_PIN G5 [get_ports UART1_rxd]
    #HD_GPIO_4 on FPGA / Connector pin 11 / UART1_txd
    set_property PACKAGE_PIN F6 [get_ports UART1_txd]
     

    Directions for installing the BSP can be found in Xilinx UG1144:

    https://www.xilinx.com/support/documentation/sw_manuals/xilinx2018_2/ug1144-petalinux-tools-reference-guide.pdf

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Reject Answer
    • Cancel
Reply
  • narrucmot
    0 narrucmot over 7 years ago

    When working on a custom Vivado and PetaLinux design for the Ultra96 that also includes WiFi, it may be best to start with the PetaLinux 2018.2 BSP posted on the Xilinx website (you will need to login/register to download this file):

    https://www.xilinx.com/member/forms/download/xef.html?filename=xilinx-ultra96-reva-v2018.2-final.bsp

    The Vivado project is included in the BSP, so you can identify what is required in the PL and PS config for WiFi, etc. and use this as the starting point for your own custom design.  Note that this BSP maps the user UART out to the low-speed mezzanine connector on pins 11 (Tx) and 13 (Rx).  Here is an excerpt from the XDC constraints file for the Vivado hw platform:

    #HD_GPIO_5 on FPGA / Connector pin 13 / UART1_rxd
    set_property PACKAGE_PIN G5 [get_ports UART1_rxd]
    #HD_GPIO_4 on FPGA / Connector pin 11 / UART1_txd
    set_property PACKAGE_PIN F6 [get_ports UART1_txd]
     

    Directions for installing the BSP can be found in Xilinx UG1144:

    https://www.xilinx.com/support/documentation/sw_manuals/xilinx2018_2/ug1144-petalinux-tools-reference-guide.pdf

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Reject Answer
    • Cancel
Children
  • francocapraro12
    0 francocapraro12 over 7 years ago in reply to narrucmot

    Thank you for your help ! i will do that ! 

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • francocapraro12
    0 francocapraro12 over 7 years ago in reply to narrucmot

    I opened the Vivado project and i saw it. Then i used the files (bitstream, hdf,etc) generated to make a new proyect in Petalinux, but i cant replicate the same Petalinux that i can do with the BSP, so my question is:

    What files i need to use from the BSP to replicate the same Petalinux but changing some IP cores in the Vivado Project ? 
    How can i get all the drivers (or configs) from the BSP to have all the components, like Wi-Fi, Hub(to use a keyboard),etc?

    My main idea is to make a Project in Vivado, use the files that i need (bitstream, hdf,etc) and use the bsp as the starting point to make the Petalinux. 

    For example, right now i cant use the keyboard, but if i make a comparison between the  Petalinux BSP project's Kernel and My Petalinux  project's Kernel (using the Vivado project from the bsp), i have the same drivers on, but i  cant use the keyboard.

    Hope you can help me.

     

    • 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