OpenCores
URL https://opencores.org/ocsvn/spi_boot/spi_boot/trunk

Subversion Repositories spi_boot

[/] [spi_boot/] [tags/] [rel_1_0_rev_A/] [README] - Diff between revs 68 and 74

Only display areas with differences | Details | Blame | View Log

Rev 68 Rev 74
README for the spi_boot core
README for the spi_boot core
============================
============================
Version: $Date: 2005-02-20 13:39:06 $
Version: $Date: 2005-02-20 13:39:06 $
Description
Description
-----------
-----------
The SD/MMC Bootloader is a CPLD design that manages configuration and
The SD/MMC Bootloader is a CPLD design that manages configuration and
bootstrapping of FPGAs. It is able to retrieve the required data from
bootstrapping of FPGAs. It is able to retrieve the required data from
SecureDigital (SD) cards or MultiMediaCards (MMC) and manages the FPGA
SecureDigital (SD) cards or MultiMediaCards (MMC) and manages the FPGA
configuration process. SD cards as well as MMCs are operated in SPI mode which
configuration process. SD cards as well as MMCs are operated in SPI mode which
is part of both standards thus eliminating the need for dedicated
is part of both standards thus eliminating the need for dedicated
implementations. The SD/MMC Bootloader fits both. Beyond configuration, this
implementations. The SD/MMC Bootloader fits both. Beyond configuration, this
core supports a bootstrapping strategy where multiple images are stored on one
core supports a bootstrapping strategy where multiple images are stored on one
single memory card.
single memory card.
For example consider a system completely based on SRAM. The bootloader
For example consider a system completely based on SRAM. The bootloader
provides an initial configuration data from the first image to the FPGA. This
provides an initial configuration data from the first image to the FPGA. This
image contains a design which pulls the next image from the memory card and
image contains a design which pulls the next image from the memory card and
transfers this data to SRAM. In the third step the final FPGA design is loaded
transfers this data to SRAM. In the third step the final FPGA design is loaded
from the third image.
from the third image.
The schematic (rev. A) shows how the core can be used with an FPGA board. I
The schematic (rev. A) shows how the core can be used with an FPGA board. I
use it to configure/boot the Xilinx Spartan IIe on BurchED's B5-X300
use it to configure/boot the Xilinx Spartan IIe on BurchED's B5-X300
board. SV2 fits the "SERIAL MODE" connector on this board but you will have to
board. SV2 fits the "SERIAL MODE" connector on this board but you will have to
add a separate wire from R6 to attach INIT. Please check the proper use of the
add a separate wire from R6 to attach INIT. Please check the proper use of the
pull-up resistors for your specific board.
pull-up resistors for your specific board.
Features
Features
--------
--------
* Configuration mode: configurates SRAM based FPGAs via slave serial mode
* Configuration mode: configurates SRAM based FPGAs via slave serial mode
  (Xilinx and Altera)
  (Xilinx and Altera)
* Data mode: provides stored data over a simple synchronous serial interface
* Data mode: provides stored data over a simple synchronous serial interface
* Broad compatability using SPI mode
* Broad compatability using SPI mode
    + SecureDigital cards using dedicated initialization command
    + SecureDigital cards using dedicated initialization command
    + MultiMediaCards (see below)
    + MultiMediaCards (see below)
* Operation triggerd by power-up or card insertion
* Operation triggerd by power-up or card insertion
Compatability
Compatability
-------------
-------------
These cards have been tested with the SD/MMC Bootloader:
These cards have been tested with the SD/MMC Bootloader:
  * SanDisk 128 MB SD
  * SanDisk 128 MB SD
  * SanDisk 64 MB MMC
  * SanDisk 64 MB MMC
  * Panasonic 32 MB SD
  * Panasonic 32 MB SD
Some MMC might fail with this core as not all cards support CMD18
Some MMC might fail with this core as not all cards support CMD18
(READ_MULTIPLE_BLOCK). Please consult the data sheet of your specific
(READ_MULTIPLE_BLOCK). Please consult the data sheet of your specific
model. In case your MMC does not implement CMD18 you might want to have a look
model. In case your MMC does not implement CMD18 you might want to have a look
at the FPGA MMC-Card Config project.
at the FPGA MMC-Card Config project.
Verification
Verification
------------
------------
The spi_boot core comes with a simple testbench that simulates an SD/MMC
The spi_boot core comes with a simple testbench that simulates an SD/MMC
card. All four implementations of the core are verified there in parallel
card. All four implementations of the core are verified there in parallel
while transferring the data for several sets.
while transferring the data for several sets.
You should normally not need to run the testbench. But in case you modified
You should normally not need to run the testbench. But in case you modified
the VHDL code the testbench gives some hints if the design has been broken.
the VHDL code the testbench gives some hints if the design has been broken.
Directory Structure
Directory Structure
-------------------
-------------------
The core's directory structure follows the proposal of OpenCores.org.
The core's directory structure follows the proposal of OpenCores.org.
spi_boot
spi_boot
 |
 |
 \--+-- rtl
 \--+-- rtl
    |    |
    |    |
    |    \-- vhdl           : VHDL code containing the RTL description
    |    \-- vhdl           : VHDL code containing the RTL description
    |                         of the core.
    |                         of the core.
    |
    |
    +-- bench
    +-- bench
    |    |
    |    |
    |    \-- vhdl           : VHDL testbench code.
    |    \-- vhdl           : VHDL testbench code.
    |
    |
    \-- sim
    \-- sim
         |
         |
         \-- rtl_sim        : Directory for running simulations.
         \-- rtl_sim        : Directory for running simulations.
RAM Loader
RAM Loader
----------
----------
Directory rtl/vhdl/ram_loader contains the sample design which loads the next
Directory rtl/vhdl/ram_loader contains the sample design which loads the next
image from the card and stores its contents to external asynchronous
image from the card and stores its contents to external asynchronous
RAM. After reading 64 KB it triggers a new configuration process for the final
RAM. After reading 64 KB it triggers a new configuration process for the final
FPGA design.
FPGA design.
Refer to the code for the mechanisms involved.
Refer to the code for the mechanisms involved.
Compiling the VHDL Code
Compiling the VHDL Code
-----------------------
-----------------------
VHDL compilation and simulation tasks take place inside in sim/rtl_sim
VHDL compilation and simulation tasks take place inside in sim/rtl_sim
directory. The project setup supports only the GHDL simulator (see
directory. The project setup supports only the GHDL simulator (see
http://ghdl.free.fr).
http://ghdl.free.fr).
To compile the code simply type at the shell
To compile the code simply type at the shell
$ make
$ make
This should result in a file called tb_behav_c0 which can be executed as any
This should result in a file called tb_behav_c0 which can be executed as any
other executable.
other executable.
The basic simple sequence list can be found in COMPILE_LIST. This can be
The basic simple sequence list can be found in COMPILE_LIST. This can be
useful to quickly set up the analyze stage of any compiler or
useful to quickly set up the analyze stage of any compiler or
synthesizer. Especially when synthesizing the code, you want to skip the VHDL
synthesizer. Especially when synthesizing the code, you want to skip the VHDL
configurations in *-c.vhd and everything below the bench/ directory.
configurations in *-c.vhd and everything below the bench/ directory.
References
References
----------
----------
  * SanDisk SD Card Product Manual
  * SanDisk SD Card Product Manual
    http://www.sandisk.com/pdf/oem/ProdManualSDCardv1.9.pdf
    http://www.sandisk.com/pdf/oem/ProdManualSDCardv1.9.pdf
  * SanDisk MMC Product Manual
  * SanDisk MMC Product Manual
    http://www.sandisk.com/pdf/oem/manual-rs-mmcv1.0.pdf
    http://www.sandisk.com/pdf/oem/manual-rs-mmcv1.0.pdf
  * Toshiba SD Card Specification
  * Toshiba SD Card Specification
    http://i.cmpnet.com/chipcenter/memory/images/prod055.pdf
    http://i.cmpnet.com/chipcenter/memory/images/prod055.pdf
  * BurchED
  * BurchED
    http://burched.biz/
    http://burched.biz/
  * FPGA MMC-Card Config project
  * FPGA MMC-Card Config project
    http://www.opencores.org/projects.cgi/web/mmcfpgaconfig/overview
    http://www.opencores.org/projects.cgi/web/mmcfpgaconfig/overview
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.