2019-05-08 05:26:52 +10:00
|
|
|
# Accessing a MicroSD card
|
|
|
|
|
|
|
|
SD cards are great because they are accessible directly. No supporting IC is
|
|
|
|
necessary. The easiest way to access them is through the SPI protocol.
|
|
|
|
|
|
|
|
Due to the way IO works in z80, implementing SPI through it as a bit awkward:
|
|
|
|
You can't really keep pins high and low on an IO line. You need some kind of
|
|
|
|
intermediary between z80 IOs and SPI.
|
|
|
|
|
|
|
|
There are many ways to achieve this. This recipe explains how to build your own
|
2020-04-20 06:56:37 +10:00
|
|
|
hacked off SPI relay for the RC2014. It can then be used with `sdc.fs` to
|
2019-05-08 05:26:52 +10:00
|
|
|
drive a SD card.
|
|
|
|
|
|
|
|
## Goal
|
|
|
|
|
|
|
|
Read and write to a SD card from Collapse OS using a SPI relay of our own
|
|
|
|
design.
|
|
|
|
|
|
|
|
## Gathering parts
|
|
|
|
|
2020-04-20 06:56:37 +10:00
|
|
|
* A RC2014 Classic
|
|
|
|
* `stage3.bin` from the base recipe
|
2019-05-08 05:26:52 +10:00
|
|
|
* A MicroSD breakout board. I use Adafruit's.
|
|
|
|
* A proto board + header pins with 39 positions so we can make a RC2014 card.
|
|
|
|
* Diodes, resistors and stuff
|
|
|
|
* 40106 (Inverter gates)
|
|
|
|
* 4011 (NAND gates)
|
|
|
|
* 74xx139 (Decoder)
|
|
|
|
* 74xx161 (Binary counter)
|
|
|
|
* 74xx165 (Parallel input shift register)
|
|
|
|
* 74xx595 (Shift register)
|
|
|
|
|
|
|
|
## Building the SPI relay
|
|
|
|
|
2020-04-20 06:56:37 +10:00
|
|
|
The [schematic][schematic] supplied with this recipe works well with `sdc.fs`.
|
2019-05-08 05:26:52 +10:00
|
|
|
Of course, it's not the only possible design that works, but I think it's one
|
|
|
|
of the most straighforwards.
|
|
|
|
|
|
|
|
The basic idea with this relay is to have one shift register used as input,
|
|
|
|
loaded in parallel mode from the z80 bus and a shift register that takes the
|
|
|
|
serial input from `MISO` and has its output wired to the z80 bus.
|
|
|
|
|
|
|
|
These two shift registers are clocked by a binary counter that clocks exactly
|
|
|
|
8 times whenever a write operation on port `4` occurs. Those 8 clocks send
|
|
|
|
data we've just received in the `74xx165` into `MOSI` and get `MISO` into the
|
|
|
|
`74xx595`.
|
|
|
|
|
|
|
|
The `74xx139` then takes care of activating the right ICs on the right
|
|
|
|
combinations of `IORQ/WR/RD/Axx`.
|
|
|
|
|
|
|
|
The rest of the ICs is fluff around this all.
|
|
|
|
|
|
|
|
My first idea was to implement the relay with an AVR microcontroller to
|
|
|
|
minimize the number of ICs, but it's too slow. We have to be able to respond
|
|
|
|
within 300ns! Following that, it became necessary to add a 595 and a 165, but
|
|
|
|
if we're going to add that, why not go the extra mile and get rid of the
|
|
|
|
microcontroller?
|
|
|
|
|
|
|
|
To that end, I was heavily inspired by [this design][inspiration].
|
|
|
|
|
|
|
|
This board uses port `4` for SPI data, port `5` to pull `CS` low and port `6`
|
|
|
|
to pull it high. Port `7` is unused but monopolized by the card.
|
|
|
|
|
|
|
|
Little advice: If you make your own design, double check propagation delays!
|
|
|
|
Some NAND gates, such as the 4093, are too slow to properly respond within
|
|
|
|
a 300ns limit. For example, in my own prototype, I use a 4093 because that's
|
|
|
|
what I have in inventory. For the `CS` flip-flop, the propagation delay doesn't
|
|
|
|
matter. However, it *does* matter for the `SELECT` line, so I don't follow my
|
|
|
|
own schematic with regards to the `M1` and `A2` lines and use two inverters
|
|
|
|
instead.
|
|
|
|
|
2020-04-20 06:56:37 +10:00
|
|
|
## Building your stage 4
|
2019-05-08 05:26:52 +10:00
|
|
|
|
2020-04-20 06:56:37 +10:00
|
|
|
Using the same technique as you used for building your stage 3, you can append
|
|
|
|
required words to your boot binary. Required units are `forth/blk.fs` and
|
|
|
|
`drv/sdc.fs`. You also need `drv/sdc.z80` but to save you the troubles of
|
|
|
|
rebuilding from stage 1 for this recipe, we took the liberty of already having
|
|
|
|
included it in the base recipe.
|
2019-05-08 05:26:52 +10:00
|
|
|
|
2020-04-20 06:56:37 +10:00
|
|
|
## Testing in the emulator
|
2019-05-08 05:26:52 +10:00
|
|
|
|
2020-04-20 06:56:37 +10:00
|
|
|
The RC2014 emulator includes SDC emulation. You can attach a SD card image to
|
|
|
|
it by invoking it with a second argument:
|
2019-05-08 07:28:07 +10:00
|
|
|
|
2020-04-20 06:56:37 +10:00
|
|
|
../../../emul/hw/rc2014/classic stage4.bin ../../../emul/blkfs
|
2019-05-08 07:28:07 +10:00
|
|
|
|
2020-04-20 06:56:37 +10:00
|
|
|
You will then run with a SD card having the contents from `/blk`.
|
2019-05-08 07:28:07 +10:00
|
|
|
|
2020-04-20 06:56:37 +10:00
|
|
|
## Usage
|
2019-05-08 05:26:52 +10:00
|
|
|
|
2020-04-20 06:56:37 +10:00
|
|
|
First, the SD card needs to be initialized
|
2019-05-08 05:26:52 +10:00
|
|
|
|
2020-04-20 06:56:37 +10:00
|
|
|
SDC$
|
2019-05-08 05:26:52 +10:00
|
|
|
|
2020-04-20 06:56:37 +10:00
|
|
|
If there is no error message, we're fine. Then, we need to hook `BLK@*` and
|
|
|
|
`BLK!*` into the SDC driver:
|
2019-05-29 03:13:34 +10:00
|
|
|
|
2020-04-20 06:56:37 +10:00
|
|
|
' SDC@ BLK@* !
|
|
|
|
' SDC! BLK!* !
|
2019-05-29 03:13:34 +10:00
|
|
|
|
2020-04-20 06:56:37 +10:00
|
|
|
And thats it! You have full access to disk block mechanism:
|
2019-05-29 03:13:34 +10:00
|
|
|
|
2020-04-20 06:56:37 +10:00
|
|
|
102 LOAD
|
|
|
|
BROWSE
|
2019-05-29 03:13:34 +10:00
|
|
|
|
2020-04-20 06:56:37 +10:00
|
|
|
(at this moment, the driver is a bit slow though...)
|
2019-06-03 01:53:36 +10:00
|
|
|
|
2020-04-26 06:03:01 +10:00
|
|
|
## How do I fill my SD card with Collapse OS' FS?
|
|
|
|
|
|
|
|
Very easy. You see that `/emul/blkfs` file? You dump it to your raw device.
|
|
|
|
For example, if the device you get when you insert your SD card is `/dev/sdb`,
|
|
|
|
then you type `cat emul/blkfs | sudo tee /dev/sdb > /dev/null`.
|
|
|
|
|
2019-05-08 05:26:52 +10:00
|
|
|
[schematic]: spirelay/spirelay.pdf
|
|
|
|
[inspiration]: https://www.ecstaticlyrics.com/electronics/SPI/fast_z80_interface.html
|