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
      • Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Vietnam
      • 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
Software Application Development SD Card example design using standalone?
  • 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 Not Answered
  • Replies 20 replies
  • Subscribers 346 subscribers
  • Views 4849 views
  • Users 0 members are here
Related

SD Card example design using standalone?

Former Member
Former Member over 13 years ago

Hello folks,

Quick question:  Is it possible to do read/writes to an SD card using standalone (bare-metal) OS? 

I tried building a Zynq-based SDK project with a standalone BSP + xilfatfs.  However when I do so I get this error in SDK:

ERROR:EDK:3900 - issued from TCL procedure "::sw_xilfatfs_v1_00_a::xilfatfs_drc"
   line 15
   xilfatfs () - Sysace HW module not present or not accessible from this
   processor. FATfs cannot be used without this module

So my guess is, standalone OS doesn't have libraries for SD/MMC support...

I know the typical flow is to use U-boot/Linux, but my application will be *dumb* simple and U-boot/Linux would be unnecessary overhead. 

The application will simply move a file from SD card over to memory, and buffer the data via GPIOs to an external device.

Thanks,

Eddie

  • Sign in to reply
  • Cancel
Parents
  • Former Member
    0 Former Member over 11 years ago

    Hi all,

    In a related post, SDIO for Windows 7 (http://www.zedboard.org/comment/3291) Kenny successfully used the SPI protocol to access the SD card on the Zedboard. Unfortunately, the link to his personal implementation seems to be dead.

    Therefore I created a sample project which implements the generic FatFs file system on the Zedboard. It is available at https://dl.dropbox.com/s/7i4ioinjkn3a7am/zynq_spi_sdc.zip. The adaptation is largely based on the files and documentation of ChaN's FatFS - Generic FAT File system http://elm-chan.org/fsw/ff/00index_e.html, in particular the AVR sample project.


    The configuration uses the Zynq GPIO pins and the Xilinx GPIO driver functions.

    Hardware configuration

    In the ZYNQ7 processing system the MIO pins 40-45 are connected to the SD card interface.
    Since these pins are programmed using the GPIO interface, it is mandatory that the SD0 peripheral in the Zynq Block Design (accessing the same pins) is not selected. On the other hand, the GPIO peripheral needs to be selected.

    Programming

    The software has been tested using Vivado 2013.2, SDK build 14.6. The sample project main.c writes a file "newfile.txt" onto the SD card and checks the result. The FatFs API-functions are described on the FatFs website http://elm-chan.org/fsw/ff/00index_e.html.

    Date and time stamps

    Since a bare metal application has no time-of-day function, the timestamp is derived from the user supplied get_fattime function. In the absence of a real-time clock, the user may specify the date and time using the FILDAT and FILTIM strings, e.g.
    #define FILDAT "20140514"
    #define FILTIM "123500"t

    Erik



    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 11 years ago in reply to Former Member

    Hi Erik,

    Just one question!? Where to find libraries usbdisk.h, atadrive.h, sdcard.h which are used in diskio.c!? Also the function platform_init() in the main faile is not in any of the header files given!?

    Any help would be appreciated.

    Jet

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 11 years ago in reply to Former Member

    Hi Jet,

    Basically, you have to generate a block design containing a Zynq processor system in "Vivado". Then you export the implemented design to "Xilinx SDK". During the export a directory hw_platform_0 is created. Next you generate a new application project, e.g. hello_world. Using the defaults this will create a "hello world" program as well as a "hello_world.bsp" board support package which includes the initialization of the platform, init_platform() in the file platform.c. Next, you right-click on the source folder hello_world/src and select import -> General -> File System -> From directory. Here you select the directory with the SD card source files and import all *.h and *.c files. Remove the file helloworld.c and recompile, e.g. using Project -> Build all. From there on you can program the FPGA and run the main() program in main.c. This writes to the SB card.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • Former Member
    0 Former Member over 11 years ago in reply to Former Member

    Hi Jet,

    Basically, you have to generate a block design containing a Zynq processor system in "Vivado". Then you export the implemented design to "Xilinx SDK". During the export a directory hw_platform_0 is created. Next you generate a new application project, e.g. hello_world. Using the defaults this will create a "hello world" program as well as a "hello_world.bsp" board support package which includes the initialization of the platform, init_platform() in the file platform.c. Next, you right-click on the source folder hello_world/src and select import -> General -> File System -> From directory. Here you select the directory with the SD card source files and import all *.h and *.c files. Remove the file helloworld.c and recompile, e.g. using Project -> Build all. From there on you can program the FPGA and run the main() program in main.c. This writes to the SB card.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Children
No Data
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