mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-05 07:27:49 +00:00
559 lines
13 KiB
Go
559 lines
13 KiB
Go
package sd
|
|
|
|
import (
|
|
"encoding/binary"
|
|
"errors"
|
|
"io"
|
|
"math"
|
|
"time"
|
|
|
|
"tinygo.org/x/drivers"
|
|
)
|
|
|
|
var (
|
|
errBadCSDCID = errors.New("sd:bad CSD/CID in CRC or always1")
|
|
errNoSDCard = errors.New("sd:no card")
|
|
errCardNotSupported = errors.New("sd:card not supported")
|
|
errWaitStartBlock = errors.New("sd:did not find start block token")
|
|
errNeedBlockLenMultiple = errors.New("sd:need blocksize multiple for I/O")
|
|
errWrite = errors.New("sd:write")
|
|
errWriteTimeout = errors.New("sd:write timeout")
|
|
errReadTimeout = errors.New("sd:read timeout")
|
|
errBusyTimeout = errors.New("sd:busy card timeout")
|
|
errOOB = errors.New("sd:oob block access")
|
|
errNoblocks = errors.New("sd:no readable blocks")
|
|
)
|
|
|
|
// digitalPinout sets the logic level of an output pin; true for high, false for low.
|
|
type digitalPinout = func(b bool)
|
|
|
|
// SPICard is a SPI-mode SD card driver. It implements the [Card] interface
|
|
// and is initialized with [NewSPICard] followed by a call to [SPICard.Init].
|
|
// SPICard is not safe for concurrent use.
|
|
type SPICard struct {
|
|
bus drivers.SPI
|
|
cs digitalPinout
|
|
|
|
timers [2]timer
|
|
timeout time.Duration
|
|
wait time.Duration
|
|
// Card Identification Register.
|
|
cid CID
|
|
// Card Specific Register.
|
|
csd CSD
|
|
bufcmd [6]byte
|
|
kind CardKind
|
|
// block indexing helper based on block size.
|
|
blk blkIdxer
|
|
lastCRC uint16
|
|
}
|
|
|
|
// NewSPICard returns a new [SPICard] that communicates over spi using cs as
|
|
// the chip select pin. The returned card must be initialized with [SPICard.Init]
|
|
// before use.
|
|
func NewSPICard(spi drivers.SPI, cs digitalPinout) *SPICard {
|
|
const defaultTimeout = 300 * time.Millisecond
|
|
s := &SPICard{
|
|
bus: spi,
|
|
cs: cs,
|
|
}
|
|
s.setTimeout(defaultTimeout)
|
|
return s
|
|
}
|
|
|
|
// setTimeout sets the timeout for all operations and the wait time between each yield during busy spins.
|
|
func (c *SPICard) setTimeout(timeout time.Duration) {
|
|
if timeout <= 0 {
|
|
panic("timeout must be positive")
|
|
}
|
|
c.timeout = timeout
|
|
c.wait = timeout / 512
|
|
}
|
|
|
|
// LastReadCRC returns the CRC for the last ReadBlock operation.
|
|
func (c *SPICard) LastReadCRC() uint16 { return c.lastCRC }
|
|
|
|
// Init initializes the SD card. This routine should be performed with a SPI clock
|
|
// speed of around 100..400kHz. One may increase the clock speed after initialization.
|
|
func (d *SPICard) Init() error {
|
|
return d.initRs()
|
|
}
|
|
|
|
// NumberOfBlocks returns the number of readable and writable blocks on the card,
|
|
// as calculated from the CSD read during [SPICard.Init].
|
|
func (d *SPICard) NumberOfBlocks() int64 {
|
|
return d.csd.NumberOfBlocks()
|
|
}
|
|
|
|
// CID returns a copy of the Card Identification Register value last read.
|
|
func (d *SPICard) CID() CID { return d.cid }
|
|
|
|
// CSD returns a copy of the Card Specific Data Register value last read.
|
|
func (d *SPICard) CSD() CSD { return d.csd }
|
|
|
|
func (d *SPICard) yield() { time.Sleep(d.wait) }
|
|
|
|
type timer struct {
|
|
deadline time.Time
|
|
}
|
|
|
|
func (t *timer) setTimeout(timeout time.Duration) *timer {
|
|
t.deadline = time.Now().Add(timeout)
|
|
return t
|
|
}
|
|
|
|
func (t timer) expired() bool {
|
|
return time.Since(t.deadline) >= 0
|
|
}
|
|
|
|
// Reference for this implementation:
|
|
// https://github.com/embassy-rs/embedded-sdmmc-rs/blob/master/src/sdmmc.rs
|
|
|
|
// Not used currently. We'd want to switch over to one way of doing things, Rust way.
|
|
func (d *SPICard) initRs() error {
|
|
// Supply minimum of 74 clock cycles with CS high.
|
|
d.csEnable(true)
|
|
for i := 0; i < 10; i++ {
|
|
d.send(0xff)
|
|
}
|
|
d.csEnable(false)
|
|
for i := 0; i < 512; i++ {
|
|
d.receive()
|
|
}
|
|
d.csEnable(true)
|
|
defer d.csEnable(false)
|
|
// Enter SPI mode
|
|
const maxRetries = 32
|
|
retries := maxRetries
|
|
tm := d.timers[0].setTimeout(2 * time.Second)
|
|
for retries > 0 {
|
|
stat, err := d.card_command(cmdGoIdleState, 0) // CMD0.
|
|
if err != nil {
|
|
if isTimeout(err) {
|
|
retries--
|
|
continue // Try again!
|
|
}
|
|
return err
|
|
}
|
|
if stat == _R1_IDLE_STATE {
|
|
break
|
|
} else if tm.expired() {
|
|
retries = 0
|
|
break
|
|
}
|
|
retries--
|
|
}
|
|
if retries <= 0 {
|
|
return errNoSDCard
|
|
}
|
|
const enableCRC = true
|
|
if enableCRC {
|
|
stat, err := d.card_command(cmdCRCOnOff, 1) // CMD59.
|
|
if err != nil {
|
|
return err
|
|
} else if stat != _R1_IDLE_STATE {
|
|
return errors.New("sd:cant enable CRC")
|
|
}
|
|
}
|
|
|
|
tm.setTimeout(time.Second)
|
|
for {
|
|
stat, err := d.card_command(cmdSendIfCond, 0x1AA) // CMD8.
|
|
if err != nil {
|
|
return err
|
|
} else if stat == (_R1_ILLEGAL_COMMAND | _R1_IDLE_STATE) {
|
|
d.kind = TypeSD1
|
|
break
|
|
}
|
|
d.receive()
|
|
d.receive()
|
|
d.receive()
|
|
status, err := d.receive()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if status == 0xaa {
|
|
d.kind = TypeSD2
|
|
break
|
|
}
|
|
d.yield()
|
|
}
|
|
|
|
var arg uint32
|
|
if d.kind != TypeSD1 {
|
|
arg = 0x4000_0000
|
|
}
|
|
tm.setTimeout(time.Second)
|
|
for !tm.expired() {
|
|
stat, err := d.card_acmd(acmdSD_APP_OP_COND, arg)
|
|
if err != nil {
|
|
return err
|
|
} else if stat == 0 { // READY state.
|
|
break
|
|
}
|
|
d.yield()
|
|
}
|
|
err := d.updateCSDCID()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if d.kind != TypeSD2 {
|
|
return nil // Done if not SD2.
|
|
}
|
|
|
|
// Discover if card is high capacity.
|
|
stat, err := d.card_command(cmdReadOCR, 0)
|
|
if err != nil {
|
|
return err
|
|
} else if stat != 0 {
|
|
return makeResponseError(response1(stat))
|
|
}
|
|
ocr, err := d.receive()
|
|
if err != nil {
|
|
return err
|
|
} else if ocr&0xc0 == 0xc0 {
|
|
d.kind = TypeSDHC
|
|
}
|
|
// Discard next 3 bytes.
|
|
d.receive()
|
|
d.receive()
|
|
d.receive()
|
|
return nil
|
|
}
|
|
|
|
func (d *SPICard) updateCSDCID() (err error) {
|
|
// read CID
|
|
d.cid, err = d.read_cid()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
d.csd, err = d.read_csd()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
blklen := d.csd.ReadBlockLen()
|
|
d.blk, err = makeBlockIndexer(int(blklen))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// ReadBlocks reads card data into dst beginning at the block index startBlockIdx.
|
|
// len(dst) must be a multiple of the card's block size (see [CSD.ReadBlockLen]).
|
|
// It returns the number of bytes read into dst and any error encountered.
|
|
func (d *SPICard) ReadBlocks(dst []byte, startBlockIdx int64) (int, error) {
|
|
numblocks, err := d.checkBounds(startBlockIdx, len(dst))
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
if d.kind != TypeSDHC {
|
|
startBlockIdx <<= 9 // Multiply by 512 for non high capacity SD cards.
|
|
}
|
|
|
|
d.csEnable(true)
|
|
defer d.csEnable(false)
|
|
|
|
if numblocks == 1 {
|
|
return d.read_block_single(dst, startBlockIdx)
|
|
|
|
} else if numblocks > 1 {
|
|
// TODO: implement multi block transaction reading.
|
|
// Rust code is failing here.
|
|
blocksize := int(d.blk.size())
|
|
for i := 0; i < numblocks; i++ {
|
|
dataoff := i * blocksize
|
|
d.csEnable(true)
|
|
_, err := d.read_block_single(dst[dataoff:dataoff+blocksize], int64(i)+startBlockIdx)
|
|
if err != nil {
|
|
return dataoff, err
|
|
}
|
|
d.csEnable(false)
|
|
}
|
|
return len(dst), nil
|
|
}
|
|
panic("unreachable numblocks<=0")
|
|
}
|
|
|
|
// EraseBlocks erases numberOfBlocks blocks beginning at startBlock.
|
|
// It always returns an error since erase is not yet implemented for SPICard.
|
|
func (d *SPICard) EraseBlocks(startBlock, numberOfBlocks int64) error {
|
|
return errors.New("sd:erase not implemented")
|
|
}
|
|
|
|
// WriteBlocks writes data to the card beginning at the block index startBlockIdx.
|
|
// len(data) must be a multiple of the card's block size (see [CSD.WriteBlockLen]).
|
|
// It returns the number of bytes written and any error encountered.
|
|
func (d *SPICard) WriteBlocks(data []byte, startBlockIdx int64) (int, error) {
|
|
numblocks, err := d.checkBounds(startBlockIdx, len(data))
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
if d.kind != TypeSDHC {
|
|
startBlockIdx <<= 9 // Multiply by 512 for non high capacity SD cards.
|
|
}
|
|
d.csEnable(true)
|
|
defer d.csEnable(false)
|
|
|
|
writeTimeout := 2 * d.timeout
|
|
if numblocks == 1 {
|
|
return d.write_block_single(data, startBlockIdx)
|
|
|
|
} else if numblocks > 1 {
|
|
// Start multi block write.
|
|
blocksize := int(d.blk.size())
|
|
_, err = d.card_command(cmdWriteMultipleBlock, uint32(startBlockIdx))
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
for i := 0; i < numblocks; i++ {
|
|
offset := i * blocksize
|
|
err = d.wait_not_busy(writeTimeout)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
err = d.write_data(tokWRITE_MULT, data[offset:offset+blocksize])
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
}
|
|
// Stop the multi write operation.
|
|
err = d.wait_not_busy(writeTimeout)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
err = d.send(tokSTOP_TRAN)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
_, err = d.card_command(cmdStopTransmission, 0)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return len(data), nil
|
|
}
|
|
panic("unreachable numblocks<=0")
|
|
}
|
|
|
|
func (d *SPICard) read_block_single(dst []byte, startBlockIdx int64) (int, error) {
|
|
_, err := d.card_command(cmdReadSingleBlock, uint32(startBlockIdx))
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
err = d.read_data(dst)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return len(dst), nil
|
|
}
|
|
|
|
func (d *SPICard) write_block_single(data []byte, startBlockIdx int64) (_ int, err error) {
|
|
_, err = d.card_command(cmdWriteBlock, uint32(startBlockIdx))
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
err = d.write_data(tokSTART_BLOCK, data)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
err = d.wait_not_busy(2 * d.timeout)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
status, err := d.card_command(cmdSendStatus, 0)
|
|
if err != nil {
|
|
return 0, err
|
|
} else if status != 0 {
|
|
return 0, makeResponseError(response1(status))
|
|
}
|
|
status, err = d.receive()
|
|
if err != nil {
|
|
return 0, err
|
|
} else if status != 0 {
|
|
return 0, errWrite
|
|
}
|
|
return len(data), nil
|
|
}
|
|
|
|
func (d *SPICard) checkBounds(startBlockIdx int64, datalen int) (numblocks int, err error) {
|
|
if startBlockIdx >= d.NumberOfBlocks() {
|
|
return 0, errOOB
|
|
} else if startBlockIdx > math.MaxUint32 {
|
|
return 0, errCardNotSupported
|
|
}
|
|
if d.blk.off(int64(datalen)) > 0 {
|
|
return 0, errNeedBlockLenMultiple
|
|
}
|
|
numblocks = int(d.blk.idx(int64(datalen)))
|
|
if numblocks == 0 {
|
|
return 0, io.ErrShortBuffer
|
|
}
|
|
return numblocks, nil
|
|
}
|
|
|
|
func (d *SPICard) read_cid() (cid CID, err error) {
|
|
err = d.cmd_read(cmdSendCID, 0, d.cid.data[:16]) // CMD10.
|
|
if err != nil {
|
|
return cid, err
|
|
}
|
|
if !d.cid.IsValid() {
|
|
return cid, errBadCSDCID
|
|
}
|
|
return d.cid, nil
|
|
}
|
|
|
|
func (d *SPICard) read_csd() (csd CSD, err error) {
|
|
err = d.cmd_read(cmdSendCSD, 0, d.csd.data[:16]) // CMD9.
|
|
if err != nil {
|
|
return csd, err
|
|
}
|
|
if !d.csd.IsValid() {
|
|
return csd, errBadCSDCID
|
|
}
|
|
return d.csd, nil
|
|
}
|
|
|
|
func (d *SPICard) cmd_read(cmd command, args uint32, buf []byte) error {
|
|
status, err := d.card_command(cmd, args)
|
|
if err != nil {
|
|
return err
|
|
} else if status != 0 {
|
|
return makeResponseError(response1(status))
|
|
}
|
|
return d.read_data(buf)
|
|
}
|
|
|
|
func (d *SPICard) card_acmd(acmd appcommand, args uint32) (uint8, error) {
|
|
_, err := d.card_command(cmdAppCmd, 0)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return d.card_command(command(acmd), args)
|
|
}
|
|
|
|
func (d *SPICard) card_command(cmd command, args uint32) (uint8, error) {
|
|
const transmitterBit = 1 << 6
|
|
err := d.wait_not_busy(d.timeout)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
buf := d.bufcmd[:6]
|
|
// Start bit is always zero; transmitter bit is one since we are Host.
|
|
|
|
buf[0] = transmitterBit | byte(cmd)
|
|
binary.BigEndian.PutUint32(buf[1:5], args)
|
|
buf[5] = crc7noshift(buf[:5]) | 1 // CRC and end bit which is always 1.
|
|
|
|
err = d.bus.Tx(buf, nil)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
if cmd == cmdStopTransmission {
|
|
d.receive() // skip stuff byte for stop read.
|
|
}
|
|
|
|
for i := 0; i < 512; i++ {
|
|
result, err := d.receive()
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
if result&0x80 == 0 {
|
|
return result, nil
|
|
}
|
|
}
|
|
return 0, errReadTimeout
|
|
}
|
|
|
|
func (d *SPICard) read_data(data []byte) (err error) {
|
|
var status uint8
|
|
tm := d.timers[1].setTimeout(d.timeout)
|
|
for !tm.expired() {
|
|
status, err = d.receive()
|
|
if err != nil {
|
|
return err
|
|
} else if status != 0xff {
|
|
break
|
|
} else if tm.expired() {
|
|
return errReadTimeout
|
|
}
|
|
d.yield()
|
|
}
|
|
if status != tokSTART_BLOCK {
|
|
return errWaitStartBlock
|
|
}
|
|
err = d.bus.Tx(nil, data)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// CRC16 is always sent on a data block.
|
|
crchi, _ := d.receive()
|
|
crclo, _ := d.receive()
|
|
d.lastCRC = uint16(crclo) | uint16(crchi)<<8
|
|
return nil
|
|
}
|
|
|
|
func (s *SPICard) wait_not_busy(timeout time.Duration) error {
|
|
tm := s.timers[1].setTimeout(timeout)
|
|
for {
|
|
tok, err := s.receive()
|
|
if err != nil {
|
|
return err
|
|
} else if tok == 0xff {
|
|
break
|
|
} else if tm.expired() {
|
|
return errBusyTimeout
|
|
}
|
|
s.yield()
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (s *SPICard) write_data(tok byte, data []byte) error {
|
|
if len(data) > 512 {
|
|
return errors.New("data too long for write_data")
|
|
}
|
|
crc := CRC16(data)
|
|
err := s.send(tok)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = s.bus.Tx(data, nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = s.send(byte(crc >> 8))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = s.send(byte(crc))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
status, err := s.receive()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if status&_DATA_RES_MASK != _DATA_RES_ACCEPTED {
|
|
return makeResponseError(response1(status))
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (s *SPICard) receive() (byte, error) {
|
|
return s.bus.Transfer(0xFF)
|
|
}
|
|
|
|
func (s *SPICard) send(b byte) error {
|
|
_, err := s.bus.Transfer(b)
|
|
return err
|
|
}
|
|
func (c *SPICard) csEnable(b bool) {
|
|
// SD Card initialization issues with misbehaving SD cards requires clocking the card.
|
|
// https://electronics.stackexchange.com/questions/303745/sd-card-initialization-problem-cmd8-wrong-response
|
|
c.bus.Transfer(0xff)
|
|
c.cs(!b)
|
|
c.bus.Transfer(0xff)
|
|
}
|