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
Software Application Development standalone SD card SDIO
  • 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 19 replies
  • Subscribers 328 subscribers
  • Views 2421 views
  • Users 0 members are here
Related

standalone SD card SDIO

Former Member
Former Member over 11 years ago

Hello,

I try to use the SD card of the Zedboard via the SDIO port. I use chans FatFs. First I implemented the diskio.c by my own, but then debugging it I found that there is an implementation in an example project, so now I use that one.
It can be found here:
XilinxSDK2014.2dataembeddedswlibsw_servicesxilffs_v2_1


Initialization works partly, but not fully:
.

XSdPs_SdCardInitialize
XSdPs_Change_ClkFreq(&SdInstance, SD_CLK_25_MHZ);
and XSdPs_Select_Card
.

work propperly, but XSdPs_Get_BusWidth does not anymore.
It seems like commands are accepted, but DMA transfers are not:
.
/*
* Send block write command
*/
Status = XSdPs_CmdTransfer(InstancePtr, CMD55,
tttInstancePtr->RelCardAddr, 0);
tif (Status != XST_SUCCESS) {
t....Status = XST_FAILURE;
t....goto RETURN_PATH;
t}

tBlkCnt = XSDPS_SCR_BLKCNT;
tBlkSize = XSDPS_SCR_BLKSIZE;

t/*
t * Set block size to the value passed
t */
tBlkSize &= XSDPS_BLK_SIZE_MASK;
tXSdPs_WriteReg16(InstancePtr->Config.BaseAddress,
tttXSDPS_BLK_SIZE_OFFSET, BlkSize);

tXSdPs_SetupADMA2DescTbl(InstancePtr, BlkCnt, SCR);

tXSdPs_WriteReg16(InstancePtr->Config.BaseAddress,
tttXSDPS_XFER_MODE_OFFSET,
tttXSDPS_TM_DAT_DIR_SEL_MASK | XSDPS_TM_DMA_EN_MASK);

tStatus = XSdPs_CmdTransfer(InstancePtr, ACMD51, 0, BlkCnt);
tif (Status != XST_SUCCESS) {
t....Status = XST_FAILURE;
t....goto RETURN_PATH;
t}
.
SdPs_CmdTransfer(InstancePtr, ACMD51, 0, BlkCnt) returns with 1.
.

Maybe I did something wrong in the hardware design. I added the SD 0 Peripheral and assigned CD to MIO 47, WP to MIO46.
Do I have to activate the DMA somehow?
.
There is one funny fact: when I let the example program run, a file is generated on the SD, but it cannot be neither read nor written by the zynq.
.
Best regards,
Yaro

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

    I have adopted the code to a newer version of fatFs that has fewer bugs and more functions. You can download it here:
    https://dl.dropboxusercontent.com/u/15987625/sdTest.7z

    please report bugs if you find some.

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

    Hi,
       Thanks for your help, I have tested your code on Microzed and Zedboard, here is what I found.
    1.10 SD cards from 4 different vendors(Sandisk, Lexar,ATP,Delkin), 7 of 10 passed the test, 3 failed with empty file.
    2. I have verified the card itself is good.
    3. 2 failed cards (ATP Brand),I can boot from them (read file is ok), the 3rd failed one(Lexar brand) , I even couldn't boot from it.

    Please share your experience if you have same issue.

    Thanks

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

    Hi,
       Thanks for your help, I have tested your code on Microzed and Zedboard, here is what I found.
    1.10 SD cards from 4 different vendors(Sandisk, Lexar,ATP,Delkin), 7 of 10 passed the test, 3 failed with empty file.
    2. I have verified the card itself is good.
    3. 2 failed cards (ATP Brand),I can boot from them (read file is ok), the 3rd failed one(Lexar brand) , I even couldn't boot from it.

    Please share your experience if you have same issue.

    Thanks

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

    Hello,

    make first sure, that the cards are formatted with fat32.
    SD-Cards are in general pretty moody, so a lot of things might cause the problem.
    Regarding the caches, please first make sure that your file buffers are 32-aligned.

    Maybe try to uncomment (in diskio.c)
    Status = XSdPs_Pullup(&SdInstance);
    tif (Status != XST_SUCCESS) {
    tts |= STA_NOINIT;
    ttreturn s;
    t}

    tif (SCR[1] & WIDTH_4_BIT_SUPPORT) {
    ttStatus = XSdPs_Change_BusWidth(&SdInstance);
    ttif (Status != XST_SUCCESS) {
    ttts |= STA_NOINIT;
    tttreturn s;
    tt}
    t}

    and

    if (SCR[1] & WIDTH_4_BIT_SUPPORT) {
    ttStatus = XSdPs_Change_BusWidth(&SdInstance);
    ttif (Status != XST_SUCCESS) {
    ttts |= STA_NOINIT;
    tttreturn s;
    tt}
    t}

    maybe even
    Status = XSdPs_Change_ClkFreq(&SdInstance, SD_CLK_25_MHZ);
    tif (Status != XST_SUCCESS) {
    tts |= STA_NOINIT;
    ttreturn s;
    t}

    Doing the experiments, do not boot from the sd-card, but from JTAG to avoit problems.
    Before every test, power-cycle the board (leave it off for >4 seconds).

    To figure out, whether this is a Xilinx driver problem or a lirary problem, one could use a bitbanging low level driver available at http://elm-chan.org/fsw/ff/00index_e.html with a customization to Zynqs GPIO.

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

    Hi Yaro123,

    Thanks a lot for sharing your Project. However I am unable to open up the zynq IP as it seems to be one version higher up and i'm still using 2014.2. (There's other concerns that I'll have to deal with if I upgrade).

    Can you answer a couple of questions.

    1) What was the clock frequency provided to the SD card? I understand that this goes through pin E14, however don't really know if it takes FCLK0.

    2) What is the max frequency that I can clock the SD card at with this specific bundle of example application?

    Thanks again for sharing this.

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

    Hi Yaro123,

    Thanks a lot for sharing your Project. However I am unable to open up the zynq IP as it seems to be one version higher up and i'm still using 2014.2. (There's other concerns that I'll have to deal with if I upgrade).

    Can you answer a couple of questions.

    1) What was the clock frequency provided to the SD card? I understand that this goes through pin E14, however don't really know if it takes FCLK0.

    2) What is the max frequency that I can clock the SD card at with this specific bundle of example application?

    Thanks again for sharing this.

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

    Hi Yaro,

    I realize this is quite some time after your post.

    Can you tell me how I find out what frequency the SD card is clocked at? Unfortunately I cannot open up your project as it is a later version of the IP. Also cannot upgrade for other reasons.

    I'm trying to figure out what is the fastest data rite speed I can get with that example project.

    Omkar

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

    Hi guys, we are trying to implement a way to read/write to an sd card using vivado system and a Zedboard. We are very noob about the argument. Can you give us an hand (send us some example and basic code) ?
    Thanks in advance for the help

    • 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