You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
256 lines
7.8 KiB
C
256 lines
7.8 KiB
C
4 years ago
|
/**
|
||
|
* \file
|
||
|
*
|
||
|
* \brief SAM MCI HPL
|
||
|
*
|
||
|
* Copyright (c) 2016-2018 Microchip Technology Inc. and its subsidiaries.
|
||
|
*
|
||
|
* \asf_license_start
|
||
|
*
|
||
|
* \page License
|
||
|
*
|
||
|
* Subject to your compliance with these terms, you may use Microchip
|
||
|
* software and any derivatives exclusively with Microchip products.
|
||
|
* It is your responsibility to comply with third party license terms applicable
|
||
|
* to your use of third party software (including open source software) that
|
||
|
* may accompany Microchip software.
|
||
|
*
|
||
|
* THIS SOFTWARE IS SUPPLIED BY MICROCHIP "AS IS". NO WARRANTIES,
|
||
|
* WHETHER EXPRESS, IMPLIED OR STATUTORY, APPLY TO THIS SOFTWARE,
|
||
|
* INCLUDING ANY IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY,
|
||
|
* AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT WILL MICROCHIP BE
|
||
|
* LIABLE FOR ANY INDIRECT, SPECIAL, PUNITIVE, INCIDENTAL OR CONSEQUENTIAL
|
||
|
* LOSS, DAMAGE, COST OR EXPENSE OF ANY KIND WHATSOEVER RELATED TO THE
|
||
|
* SOFTWARE, HOWEVER CAUSED, EVEN IF MICROCHIP HAS BEEN ADVISED OF THE
|
||
|
* POSSIBILITY OR THE DAMAGES ARE FORESEEABLE. TO THE FULLEST EXTENT
|
||
|
* ALLOWED BY LAW, MICROCHIP'S TOTAL LIABILITY ON ALL CLAIMS IN ANY WAY
|
||
|
* RELATED TO THIS SOFTWARE WILL NOT EXCEED THE AMOUNT OF FEES, IF ANY,
|
||
|
* THAT YOU HAVE PAID DIRECTLY TO MICROCHIP FOR THIS SOFTWARE.
|
||
|
*
|
||
|
* \asf_license_stop
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef _HPL_MCI_H_INCLUDED
|
||
|
#define _HPL_MCI_H_INCLUDED
|
||
|
|
||
|
#include <compiler.h>
|
||
|
#include <utils.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
//! \name Flags used to define MCI parser for SD/MMC command
|
||
|
//! @{
|
||
|
//! Have response
|
||
|
#define MCI_RESP_PRESENT (1lu << 8)
|
||
|
//! 136 bit response
|
||
|
#define MCI_RESP_136 (1lu << 11)
|
||
|
//! Expect valid crc
|
||
|
#define MCI_RESP_CRC (1lu << 12)
|
||
|
//! Card may send busy
|
||
|
#define MCI_RESP_BUSY (1lu << 13)
|
||
|
//! Open drain for a braodcast command
|
||
|
#define MCI_CMD_OPENDRAIN (1lu << 14)
|
||
|
//! To signal a data write operation
|
||
|
#define MCI_CMD_WRITE (1lu << 15)
|
||
|
//! To signal a SDIO tranfer in multi byte mode
|
||
|
#define MCI_CMD_SDIO_BYTE (1lu << 16)
|
||
|
//! To signal a SDIO tranfer in block mode
|
||
|
#define MCI_CMD_SDIO_BLOCK (1lu << 17)
|
||
|
//! To signal a data transfer in stream mode
|
||
|
#define MCI_CMD_STREAM (1lu << 18)
|
||
|
//! To signal a data transfer in single block mode
|
||
|
#define MCI_CMD_SINGLE_BLOCK (1lu << 19)
|
||
|
//! To signal a data transfer in multi block mode
|
||
|
#define MCI_CMD_MULTI_BLOCK (1lu << 20)
|
||
|
//! @}
|
||
|
|
||
|
/**
|
||
|
* \brief mci sync device structure
|
||
|
*/
|
||
|
struct _mci_sync_device {
|
||
|
void * hw;
|
||
|
uint64_t mci_sync_trans_pos;
|
||
|
uint16_t mci_sync_block_size;
|
||
|
uint16_t mci_sync_nb_block;
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* \brief Initialize MCI low level driver.
|
||
|
*
|
||
|
* \return Operation status.
|
||
|
* \retval 0 Success.
|
||
|
* \retval <0 Error code.
|
||
|
*/
|
||
|
int32_t _mci_sync_init(struct _mci_sync_device *const mci_dev, void *const hw);
|
||
|
|
||
|
/**
|
||
|
* \brief Deinitialize MCI low level driver.
|
||
|
*
|
||
|
* \return Operation status.
|
||
|
* \retval 0 Success.
|
||
|
* \retval <0 Error code.
|
||
|
*/
|
||
|
int32_t _mci_sync_deinit(struct _mci_sync_device *const mci_dev);
|
||
|
|
||
|
/**
|
||
|
* \brief Select a device and initialize it
|
||
|
*
|
||
|
* \param[in] slot Selected slot
|
||
|
* \param[in] clock Maximum clock to use (Hz)
|
||
|
* \param[in] bus_width Bus width to use (1, 4 or 8)
|
||
|
* \param[in] high_speed true, to enable high speed mode
|
||
|
* \return Operation status.
|
||
|
* \retval 0 Success.
|
||
|
* \retval <0 Error code.
|
||
|
*/
|
||
|
int32_t _mci_sync_select_device(struct _mci_sync_device *const mci_dev, uint8_t slot, uint32_t clock, uint8_t bus_width,
|
||
|
bool high_speed);
|
||
|
|
||
|
/**
|
||
|
* \brief Deselect a device by an assigned slot
|
||
|
*
|
||
|
* \param[in] slot Selected slot
|
||
|
* \return Operation status.
|
||
|
* \retval 0 Success.
|
||
|
* \retval <0 Error code.
|
||
|
*/
|
||
|
int32_t _mci_sync_deselect_device(struct _mci_sync_device *const mci_dev, uint8_t slot);
|
||
|
|
||
|
/**
|
||
|
* \brief Get the maximum bus width of a device
|
||
|
* by a selected slot
|
||
|
*
|
||
|
* \param[in] slot Selected slot
|
||
|
* \return bus width.
|
||
|
*/
|
||
|
uint8_t _mci_sync_get_bus_width(struct _mci_sync_device *const mci_dev, uint8_t slot);
|
||
|
|
||
|
/**
|
||
|
* \brief Get the high speed capability of the device.
|
||
|
*
|
||
|
* \return true, if the high speed is supported.
|
||
|
*/
|
||
|
bool _mci_sync_is_high_speed_capable(struct _mci_sync_device *const mci_dev);
|
||
|
|
||
|
/**
|
||
|
* \brief Send 74 clock cycles on the line.
|
||
|
* Note: It is required after card plug and before card install.
|
||
|
*/
|
||
|
void _mci_sync_send_clock(struct _mci_sync_device *const mci_dev);
|
||
|
|
||
|
/**
|
||
|
* \brief Send a command on the selected slot
|
||
|
*
|
||
|
* \param[in] cmd Command definition
|
||
|
* \param[in] arg Argument of the command
|
||
|
* \return true if success, otherwise false
|
||
|
*/
|
||
|
bool _mci_sync_send_cmd(struct _mci_sync_device *const mci_dev, uint32_t cmd, uint32_t arg);
|
||
|
|
||
|
/**
|
||
|
* \brief Get 32 bits response of the last command.
|
||
|
*
|
||
|
* \return 32 bits response.
|
||
|
*/
|
||
|
uint32_t _mci_sync_get_response(struct _mci_sync_device *const mci_dev);
|
||
|
|
||
|
/**
|
||
|
* \brief Get 128 bits response of the last command.
|
||
|
*
|
||
|
* \param[in] response Pointer on the array to fill
|
||
|
* with the 128 bits response.
|
||
|
*/
|
||
|
void _mci_sync_get_response_128(struct _mci_sync_device *const mci_dev, uint8_t *response);
|
||
|
|
||
|
/**
|
||
|
* \brief Send an ADTC command on the selected slot
|
||
|
* An ADTC (Addressed Data Transfer Commands)
|
||
|
* command is used for read/write access..
|
||
|
*
|
||
|
* \param[in] cmd Command definition.
|
||
|
* \param[in] arg Argument of the command.
|
||
|
* \param[in] block_size Block size used for the transfer.
|
||
|
* \param[in] nb_block Total number of block for this transfer
|
||
|
* \param[in] access_block if true, the x_read_blocks() and x_write_blocks()
|
||
|
* functions must be used after this function.
|
||
|
* If false, the mci_read_word() and mci_write_word()
|
||
|
* functions must be used after this function.
|
||
|
*
|
||
|
* \return true if success, otherwise false
|
||
|
*/
|
||
|
bool _mci_sync_adtc_start(struct _mci_sync_device *const mci_dev, uint32_t cmd, uint32_t arg, uint16_t block_size,
|
||
|
uint16_t nb_block, bool access_block);
|
||
|
|
||
|
/**
|
||
|
* \brief Send a command to stop an ADTC command on the selected slot.
|
||
|
*
|
||
|
* \param[in] cmd Command definition
|
||
|
* \param[in] arg Argument of the command
|
||
|
*
|
||
|
* \return true if success, otherwise false
|
||
|
*/
|
||
|
bool _mci_sync_adtc_stop(struct _mci_sync_device *const mci_dev, uint32_t cmd, uint32_t arg);
|
||
|
|
||
|
/**
|
||
|
* \brief Read a word on the line.
|
||
|
*
|
||
|
* \param[in] value Pointer on a word to fill.
|
||
|
*
|
||
|
* \return true if success, otherwise false
|
||
|
*/
|
||
|
bool _mci_sync_read_word(struct _mci_sync_device *const mci_dev, uint32_t *value);
|
||
|
|
||
|
/**
|
||
|
* \brief Write a word on the line
|
||
|
*
|
||
|
* \param[in] value Word to send
|
||
|
*
|
||
|
* \return true if success, otherwise false
|
||
|
*/
|
||
|
bool _mci_sync_write_word(struct _mci_sync_device *const mci_dev, uint32_t value);
|
||
|
|
||
|
/**
|
||
|
* \brief Start a read blocks transfer on the line
|
||
|
* Note: The driver will use the DMA available to speed up the transfer.
|
||
|
*
|
||
|
* \param[in] dst Pointer on the buffer to fill
|
||
|
* \param[in] nb_block Number of block to transfer
|
||
|
*
|
||
|
* \return true if started, otherwise false
|
||
|
*/
|
||
|
bool _mci_sync_start_read_blocks(struct _mci_sync_device *const mci_dev, void *dst, uint16_t nb_block);
|
||
|
|
||
|
/**
|
||
|
* \brief Start a write blocks transfer on the line
|
||
|
* Note: The driver will use the DMA available to speed up the transfer.
|
||
|
*
|
||
|
* \param[in] src Pointer on the buffer to send
|
||
|
* \param[in] nb_block Number of block to transfer
|
||
|
*
|
||
|
* \return true if started, otherwise false
|
||
|
*/
|
||
|
bool _mci_sync_start_write_blocks(struct _mci_sync_device *const mci_dev, const void *src, uint16_t nb_block);
|
||
|
|
||
|
/**
|
||
|
* \brief Wait the end of transfer initiated by mci_start_read_blocks()
|
||
|
*
|
||
|
* \return true if success, otherwise false
|
||
|
*/
|
||
|
bool _mci_sync_wait_end_of_read_blocks(struct _mci_sync_device *const mci_dev);
|
||
|
|
||
|
/**
|
||
|
* \brief Wait the end of transfer initiated by mci_start_write_blocks()
|
||
|
*
|
||
|
* \return true if success, otherwise false
|
||
|
*/
|
||
|
bool _mci_sync_wait_end_of_write_blocks(struct _mci_sync_device *const mci_dev);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* _HPL_MCI_H_INCLUDED */
|