/* * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */#pragmaonce#include<stdint.h>#include<stddef.h>#include"esp_err.h"#include"freertos/FreeRTOS.h"#include"freertos/queue.h"#include"driver/sdspi_host.h"6 includes/// Control tokens used to frame data transfers/// (see section 7.3.3 of SD simplified spec)/// Token sent before single/multi block reads and single block writes#defineTOKEN_BLOCK_START0b11111110/// Token sent before multi block writes#defineTOKEN_BLOCK_START_WRITE_MULTI0b11111100/// Token used to stop multi block write (for reads, CMD12 is used instead)#defineTOKEN_BLOCK_STOP_WRITE_MULTI0b11111101/// Data response tokens/// Mask (high 3 bits are undefined for data response tokens)#defineTOKEN_RSP_MASK0b11111/// Data accepted#defineTOKEN_RSP_OK0b00101/// Data rejected due to CRC error#defineTOKEN_RSP_CRC_ERR0b01011/// Data rejected due to write error#defineTOKEN_RSP_WRITE_ERR0b01101/// Data error tokens have format 0b0000xyzw where xyzw are single bit flags./// MASK and VAL are used to check if a token is an error token#defineTOKEN_ERR_MASK0b11110000#defineTOKEN_ERR_VAL0b00000000/// Argument is out of range#defineTOKEN_ERR_RANGEBIT(3)/// Card internal ECC error#defineTOKEN_ERR_CARD_ECCBIT(2)/// Card controller error#defineTOKEN_ERR_INTERNALBIT(1)/// Card is locked#defineTOKEN_ERR_LOCKEDBIT(0)13 defines/// Transfer format in SPI mode. See section 7.3.1.1 of SD simplified spec.typedefstruct{// These fields form the command sent from host to the card (6 bytes)uint8_tcmd_index:6;uint8_ttransmission_bit:1;uint8_tstart_bit:1;uint8_targuments[4];uint8_tstop_bit:1;uint8_tcrc7:7;/// Ncr is the dead time between command and response; should be 0xffuint8_tncr;/// Response data, should be set by host to 0xff for read operationsuint8_tr1;/// Up to 16 bytes of response. Luckily, this is aligned on 4 byte boundary.uint32_tresponse[4];/// response timeout, in millisecondsinttimeout_ms;}{ ... }sdspi_hw_cmd_t;#defineSDSPI_CMD_SIZE6#defineSDSPI_NCR_MIN_SIZE1#defineSDSPI_NCR_MAX_SIZE8//the size here contains 6 bytes of CMD, 1 bytes of dummy and the actual response#defineSDSPI_CMD_NORESP_SIZE(SDSPI_CMD_SIZE+0)//!< Size of the command without any response#defineSDSPI_CMD_R1_SIZE(SDSPI_CMD_SIZE+SDSPI_NCR_MIN_SIZE+1)//!< Size of the command with R1 response#defineSDSPI_CMD_R2_SIZE(SDSPI_CMD_SIZE+SDSPI_NCR_MIN_SIZE+2)//!< Size of the command with R1b response#defineSDSPI_CMD_R3_SIZE(SDSPI_CMD_SIZE+SDSPI_NCR_MIN_SIZE+5)//!< Size of the command with R3 response#defineSDSPI_CMD_R4_SIZE(SDSPI_CMD_SIZE+SDSPI_NCR_MIN_SIZE+5)//!< Size of the command with R4 response#defineSDSPI_CMD_R5_SIZE(SDSPI_CMD_SIZE+SDSPI_NCR_MIN_SIZE+2)//!< Size of the command with R5 response#defineSDSPI_CMD_R7_SIZE(SDSPI_CMD_SIZE+SDSPI_NCR_MIN_SIZE+5)//!< Size of the command with R7 response#defineSDSPI_CMD_FLAG_DATABIT(0)//!< Command has data transfer#defineSDSPI_CMD_FLAG_WRITEBIT(1)//!< Data is written to the card#defineSDSPI_CMD_FLAG_RSP_R1BIT(2)//!< Response format R1 (1 byte)#defineSDSPI_CMD_FLAG_RSP_R1BBIT(3)//!< Response format R1 (1 byte), with busy polling#defineSDSPI_CMD_FLAG_RSP_R2BIT(4)//!< Response format R2 (2 bytes)#defineSDSPI_CMD_FLAG_RSP_R3BIT(5)//!< Response format R3 (5 bytes)#defineSDSPI_CMD_FLAG_RSP_R4BIT(6)//!< Response format R4 (5 bytes)#defineSDSPI_CMD_FLAG_RSP_R5BIT(7)//!< Response format R5 (2 bytes)#defineSDSPI_CMD_FLAG_RSP_R7BIT(8)//!< Response format R7 (5 bytes)#defineSDSPI_CMD_FLAG_NORSPBIT(9)//!< Don't expect response (used when sending CMD0 first time).#defineSDSPI_CMD_FLAG_MULTI_BLKBIT(10)//!< For the write multiblock commands, the start token should be different#defineSDSPI_MAX_DATA_LEN512//!< Max size of single block transfer22 definesvoidmake_hw_cmd(uint32_topcode,uint32_targ,inttimeout_ms,sdspi_hw_cmd_t*hw_cmd);esp_err_tsdspi_host_start_command(sdspi_dev_handle_thandle,sdspi_hw_cmd_t*cmd,void*data,uint32_tdata_size,intflags);
Details
Show: from
Types: Columns:
All items filtered out
All items filtered out
This file uses the notable symbols shown below. Click anywhere in the file to view more details.