Shop OBEX P1 Docs P2 Docs Learn Events
Discussing SD Drivers (depreciated fsrw) - Page 5 — Parallax Forums

Discussing SD Drivers (depreciated fsrw)

1235789

Comments

  • RaymanRayman Posts: 13,767
    I'm wondering how much faster this is with the assembly driver versus just plain Spin (or FastSpin)…

    I think the regular SPI interface for SD is limited to 25 MHz, right?

    Also, can a smartpin be used to make it better in Spin?
  • Peter JakackiPeter Jakacki Posts: 10,193
    edited 2020-02-10 14:37
    I am hitting around 35MHz with a sustained read of over 3MBs and the SPI limit for SDHC is 50MHz but you would have to be careful with board layout.

    This is the CSD report from a common Sandisk:
    TAQOZ# .CARD --- SANDISK   SD SC64G REV$80 #35190404 DATE:2018 /10 ok
    TAQOZ# .CSD --- 
    
                       *** CSD *** 
        CARD TYPE....................... SDHC
        LATENCY......................... 1ms+1400 clocks 
        SPEED........................... 50MHz 
        CLASSES......................... 0 1 0 1 1 0 1 1 0 1 0 1 
        BLKLEN.......................... 512
        SIZE............................ 62,367MB
        Iread Vmin...................... 10ma
        Iread Vmax...................... 25ma
        Iwrite Vmin..................... 60ma
        Iwrite Vmax..................... 35ma ok
    TAQOZ# 
    
  • Rayman wrote: »
    I'm wondering how much faster this is with the assembly driver versus just plain Spin (or FastSpin)…

    I think the regular SPI interface for SD is limited to 25 MHz, right?

    Also, can a smartpin be used to make it better in Spin?

    That's a really good question! To be honest, I'm not really sure. I think a pure spin2/fastspin version would probably be pretty close in speed to the current code. There's still a lot of optimizations I'm missing along the way. I wanted to get something working and incrementally improve along the way, although now that it's working I haven't had a lot of time to revisit.

    One of the things I've been thinking about a lot is pushing data directly to LUT. I also need to add the ability to load a binary.
  • roglohrogloh Posts: 5,119
    edited 2020-02-11 03:31
    @"Peter Jakacki" Is the maximum clock speed reported by the SDCARD the same for SPI and SD modes? For some weird reason I thought I read somewhere that legacy SPI mode was limited to 25MHz and if you wanted to operate at higher frequencies than that you'd need to move into SD mode. Perhaps this is something that is card dependent or only for older card types. I realize from a board signal integrity viewpoint both modes should be limited to about the same so it might come down to whether the SD card's internal processor / logic path is designed to clock data via SPI at this rate.
  • cheezuscheezus Posts: 295
    edited 2020-02-11 05:23
    rogloh wrote: »
    @"Peter Jakacki" Is the maximum clock speed reported by the SDCARD the same for SPI and SD modes? For some weird reason I thought I read somewhere that legacy SPI mode was limited to 25MHz and if you wanted to operate at higher frequencies than that you'd need to move into SD mode. Perhaps this is something that is card dependent or only for older card types. I realize from a board signal integrity viewpoint both modes should be limited to about the same so it might come down to whether the SD card's internal processor / logic path is designed to clock data via SPI at this rate.

    I was just wondering the same and found this. -see pg 88
    http://users.ece.utexas.edu/~valvano/EE345M/SD_Physical_Layer_Spec.pdf
    • TRAN_SPEED The following table defines the maximum data transfer rate per one data line - 
    TRAN_SPEED:   TRAN_SPEED bit code 
    2:0 transfer rate unit 0=100kbit/s, 1=1Mbit/s, 2=10Mbit/s, 3=100Mbit/s, 
    4... 7=reserved 
    6:3 time value 0=reserved, 1=1.0, 2=1.2, 3=1.3, 4=1.5, 5=2.0, 6=2.5, 7=3.0, 8=3.5, 9=4.0, 
    A=4.5, B=5.0, C=5.5, D=6.0, E=7.0, F=8.0 7 reserved   
    Table 5-6: Maximum Data Transfer Rate Definition 
     
    Note that for current SD Memory Cards, this field shall be always 0_0110_010b (032h) which is equal to 25 MHz - 
    the mandatory maximum operating frequency of SD Memory Card. 
    In High-Speed mode, this field shall be always 0_1011_010b (05Ah) which is equal to 50 MHz, 
    and when the timing mode returns to the default by CMD6 or CMD0 command, its value will be 032h. 
    

    So another improvement I need to make is to read this register and adjust SPI clk accordingly. Right now I have the constant spi_clk_max =25 that I should probably keep as a hard limiting factor.

    *edited table- poor formatting
  • The old SD SPI spec and cards were limited to 25MHz but this was upped a long time ago to, 50MHz. The various SD modes themselves may specify clock rates over 200MHz.
    Obviously I have gone well and truly over 25MHz without any problems.
  • cheezus wrote: »
    Note that for current SD Memory Cards, this field shall be always 0_0110_010b (032h) which is equal to 25 MHz - the mandatory maximum operating frequency of SD Memory Card. In High-Speed mode,

    This is true for plain old-fashioned "SD" cards, but nobody sells or uses SD cards anymore, they are all SDHC or better, and I have never seen this field anything other than 50MHz in SDHC.

  • cheezus wrote: »
    Note that for current SD Memory Cards, this field shall be always 0_0110_010b (032h) which is equal to 25 MHz - the mandatory maximum operating frequency of SD Memory Card. In High-Speed mode,

    This is true for plain old-fashioned "SD" cards, but nobody sells or uses SD cards anymore, they are all SDHC or better, and I have never seen this field anything other than 50MHz in SDHC.

    That was poorly formatted, sorry. That table looks a bit better now. All HC cards are High Speed... The part I need to wrap my head around next is when the timing mode returns to the default by CMD6 or CMD0 command

    I keep thinking it might be handy to have a test, to determine IF the hardware is able to run up to the speed specified by the card. Still not sure how to do this...
  • Changing to a 340MHz clock for P2 I measure the SD clock at around 42MHz. This is the result of the encounter.
    TAQOZ# 340 P2MHZ --- ok
    TAQOZ# 0 0 CMD . --- 1  ok
    TAQOZ#  ---  ok
    TAQOZ# MOUNT ---  CARD: SANDISK   SD SC64G REV$80 #35190404 DATE:2018 /10 ok
    TAQOZ# .CSD --- 
    
                       *** CSD *** 
        CARD TYPE....................... SDHC
        LATENCY......................... 1ms+1400 clocks 
        SPEED........................... 50MHz 
        CLASSES......................... 0 1 0 1 1 0 1 1 0 1 0 1 
        BLKLEN.......................... 512
        SIZE............................ 62,367MB
        Iread Vmin...................... 10ma
        Iread Vmax...................... 25ma
        Iwrite Vmin..................... 60ma
        Iwrite Vmax..................... 35ma ok
    
  • RaymanRayman Posts: 13,767
    Playing with cheezus's FSRW again...

    I like that there are two versions of the spi driver: sdspi_asm.spin2 and sdspi_bashed.spin2
    The bashed one is inline assembly, very nice when you are low on cogs.

    The only issue I seem to have is that I can't rerun this test program without physically removing the card for a second.
    Another card doesn't have this issue...

    I've tried putting various things into the "release" function but haven't found anything that helps...

    Anyway, "fsrw_test1.spin2" is a little program that just shows the directory and tests read and write speed (adapted from a previous file).
  • RaymanRayman Posts: 13,767
    edited 2020-04-18 20:44
    Here's another test. This one loads up bitmap from SD card and displays it via VGA.
    Set for VGA accessory on P8..16, but you can change that.
  • RaymanRayman Posts: 13,767
    This version shows a different image while loading...
  • evanhevanh Posts: 15,091
    edited 2020-04-18 23:44
    doh! Didn't mean to post anything.

  • kwinnkwinn Posts: 8,697
    evanh wrote: »
    doh! Didn't mean to post anything.

    LOL Gee, thanks a lot. Now I have to clean cereal off my laptop ;-)

    Done that myself a time or two.
  • Ahle2Ahle2 Posts: 1,178
    What should the following be doing? It doesn't compile in latest FastSpin!

    In file "sdspi_asm.spin2"
    PRI getmask(clk, data) : t
        t := clk - data
        if ( || t ) <> t        
          t := ( || t ) + %0100     
    
  • I think || is interpreted as logical OR now, instead of absolute value (abs() now, I think?).
  • AribaAriba Posts: 2,682
    Something like:
    PRI getmask(clk, data) : t
        t := clk - data
        if t < 0
          t := ABS t + %0100
    

    But I think this is wrong for negative t values (CLK pin lower than DAT pin). The BBBB field just expects a 2s complement value for the B pin displacement, so this should work:
    PRI getmask(clk, data) : t
        t := (clk - data) & %0111
    

    Andy
  • RaymanRayman Posts: 13,767
    That works in my setup, now with Fastspin 4.1.6
  • Ahle2Ahle2 Posts: 1,178
    edited 2020-04-26 06:11
    Thanks!
    The spin language really is an oddball compared to other languages. || mean abs in spin 1?! I never knew that, but most of my time was spent in pasm. Now days (in a professional project) I use C++ and pasm only on the propeller 1. I'm back with spin on the P2 through, since it is a fast prototyping language. (and I kind of like it)
  • Ahle2,
    You should check out FlexGui with it's FlexC implementation. Super nice. Inline PASM, interop with Spin/BASIC/C/PASM. It also targets both P1 and P2.
  • Ahle2Ahle2 Posts: 1,178
    edited 2020-04-26 13:37
    Roy,

    I'm already using FastSpin as my main compiler for the P2, so I know about all that. I like to do object oriented programming though, so FlexC isn't an option. I do actually like spin2, but i'm not as fluent in it as C++ (20 years ongoing, 8 years hobby + 12 years as a professional)
  • Ahle2,
    I am also a long time C/C++ coder (since the late 80s). As you probably know, Eric intends to add (and already has some) elements of C++. You can do object oriented programming with it now.
  • RaymanRayman Posts: 13,767
    edited 2020-05-07 19:51
    I think I might have made some improvements to the bashed spi driver...
    The attached seems to work just as well as the original, but may be a hair more robust.
    This also has a test program and some bitmap files for test reading from uSD.

    I spent way to much time trying to make one of my uSD cards work without pulling out and reinserting.
    Just decided it was defective somehow...

    Just tested with a new 64 GB uSD card formatted as 32 GB FAT32. Seems to work fine.
    Read speed is maybe not the best (450 kB/s), but this version doesn't need a separate cog to run.

    (new version attached) Compiled with FastSpin version 4.1.7
  • RaymanRayman Posts: 13,767
    Just as an aside... Here's an old pure assembly file for booting from SD.
    Looks for a file named P2BOOT.BIN.
    Could be used for other things...
  • Cluso99Cluso99 Posts: 18,066
    @Rayman,
    I posted a P2 SD Driver (hubexec pasm) with examples of being called from pasm and spin and does not use an extra cog.
    And yesterday I posted a sdspi_bashed.spin2 replacement using this code over on Mike's FemtoBasic thread that work.

    I will put some more info about this driver over on my P2 SD Driver thread. If you still want to work on sdspi_bashed then there are a few things I found about the SD Cards that may help.


  • RaymanRayman Posts: 13,767
    edited 2020-05-08 00:56
    I saw your driver and looked to see if it could help me with my bad card, but I think that card has something funny about it...
    Anyway, I spent some time today cleaning up FSRW for compatibility with PNUT.

    I'm also very interested in read speed on large files.... How many kB/s do you get?

    I've tried tweaking up bashed but can only get to ~660 kB/s on a class 10 card.
    I think FSRW on P1 was faster (at least with small files).

    BTW: Do you think your sdspi_bashed replacement could be combined into one file?
  • RaymanRayman Posts: 13,767
    @Cluso99: Ok, I speed tested your sdspi driver and got a respectable 538 kB/s read speed on a Class 10 card.

    I added a method to FSRW to blind read sequential blocks. For cases of a freshly formatted card, you can often assume a file is in sequential blocks.
    This gives 558 kB/s.

    Compiled with FastSpin 4.1.8.
  • RaymanRayman Posts: 13,767
    edited 2020-05-08 14:02
    Looking again my supposedly tweaked "sdspi_bashed" file, I noticed a "waitx #100" in the sector read loop that didn't need to be there...

    Can now get 700 kB/s read rate regular way and 730 kB/s in a blind, sequential block read with class 10 card (64 GB formatted as 32 GB FAT32).

    A regular 2 GB card gives only 430 kB/s the regular way and 441 kB/s with sequential block read.

    Files compiled with FastSpin 4.1.8 (But, I'm in the process of fixing so might work with PNut one day).

  • RaymanRayman Posts: 13,767
    edited 2020-05-08 19:44
    Just noticed I can do CMD18 when assuming that blocks are sequential and get much faster reads...

    Getting 920 kB/s for both 64 GB and 2 GB cards...

    BTW: Found some simple looking C code for MMC mode on SD cards here:
    https://people.ece.cornell.edu/land/courses/ece4760/FinalProjects/s2007/cd247_maw72/cd247_maw72/mmc.c
  • Rayman wrote: »
    @Cluso99: Ok, I speed tested your sdspi driver and got a respectable 538 kB/s read speed on a Class 10 card.

    I added a method to FSRW to blind read sequential blocks. For cases of a freshly formatted card, you can often assume a file is in sequential blocks.
    This gives 558 kB/s.

    Compiled with FastSpin 4.1.8.

    Not just freshly formatted cards. In my experience, Windows (not sure about other OSs) will (almost?) always place a new file you copy to a card in sequential clusters if possible. (In particular, if you copy a file such that it replaces a smaller file with the same name, it may become fragmented if the cluster after the file to be replaced is already used). And obviously you can always defragment the entire card or any file if you need it to be unfragmented (useful for fast random access...)
Sign In or Register to comment.