2009-11-29 08:50:13 +00:00
|
|
|
/*
|
2011-03-18 18:38:08 +00:00
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
|
|
|
2011 Giovanni Di Sirio.
|
2009-11-29 08:50:13 +00:00
|
|
|
|
|
|
|
This file is part of ChibiOS/RT.
|
|
|
|
|
|
|
|
ChibiOS/RT is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
ChibiOS/RT is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2011-03-08 10:09:57 +00:00
|
|
|
* @file spi.h
|
2010-02-06 16:17:30 +00:00
|
|
|
* @brief MMC over SPI driver header.
|
|
|
|
*
|
2009-11-29 08:50:13 +00:00
|
|
|
* @addtogroup MMC_SPI
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _MMC_SPI_H_
|
|
|
|
#define _MMC_SPI_H_
|
|
|
|
|
2010-11-01 17:29:56 +00:00
|
|
|
#if HAL_USE_MMC_SPI || defined(__DOXYGEN__)
|
2009-11-29 08:50:13 +00:00
|
|
|
|
2009-12-29 11:12:05 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver constants. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2010-10-09 07:58:41 +00:00
|
|
|
#define MMC_CMD0_RETRY 10
|
|
|
|
#define MMC_CMD1_RETRY 100
|
|
|
|
#define MMC_WAIT_DATA 10000
|
|
|
|
|
|
|
|
#define MMC_CMDGOIDLE 0
|
|
|
|
#define MMC_CMDINIT 1
|
|
|
|
#define MMC_CMDREADCSD 9
|
|
|
|
#define MMC_CMDSTOP 12
|
|
|
|
#define MMC_CMDSETBLOCKLEN 16
|
|
|
|
#define MMC_CMDREAD 17
|
|
|
|
#define MMC_CMDREADMULTIPLE 18
|
|
|
|
#define MMC_CMDWRITE 24
|
|
|
|
#define MMC_CMDWRITEMULTIPLE 25
|
2009-12-07 16:13:01 +00:00
|
|
|
|
2009-11-29 08:50:13 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver pre-compile time settings. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2011-08-23 13:36:25 +00:00
|
|
|
/**
|
|
|
|
* @name MMC_SPI configuration options
|
|
|
|
* @{
|
|
|
|
*/
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
2010-02-06 16:17:30 +00:00
|
|
|
* @brief Block size for MMC transfers.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
#if !defined(MMC_SECTOR_SIZE) || defined(__DOXYGEN__)
|
2010-10-09 07:58:41 +00:00
|
|
|
#define MMC_SECTOR_SIZE 512
|
2009-11-29 08:50:13 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
2010-02-06 16:17:30 +00:00
|
|
|
* @brief Delays insertions.
|
2009-11-29 08:50:13 +00:00
|
|
|
* @details If enabled this options inserts delays into the MMC waiting
|
|
|
|
* routines releasing some extra CPU time for the threads with
|
|
|
|
* lower priority, this may slow down the driver a bit however.
|
|
|
|
* This option is recommended also if the SPI driver does not
|
2010-02-21 07:24:53 +00:00
|
|
|
* use a DMA channel and heavily loads the CPU.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
#if !defined(MMC_NICE_WAITING) || defined(__DOXYGEN__)
|
2010-10-09 07:58:41 +00:00
|
|
|
#define MMC_NICE_WAITING TRUE
|
2009-11-29 08:50:13 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
2010-02-06 16:17:30 +00:00
|
|
|
* @brief Number of positive insertion queries before generating the
|
2010-02-21 07:24:53 +00:00
|
|
|
* insertion event.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
#if !defined(MMC_POLLING_INTERVAL) || defined(__DOXYGEN__)
|
2010-10-09 07:58:41 +00:00
|
|
|
#define MMC_POLLING_INTERVAL 10
|
2009-11-29 08:50:13 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
2010-02-21 07:24:53 +00:00
|
|
|
* @brief Interval, in milliseconds, between insertion queries.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
#if !defined(MMC_POLLING_DELAY) || defined(__DOXYGEN__)
|
2010-10-09 07:58:41 +00:00
|
|
|
#define MMC_POLLING_DELAY 10
|
2009-11-29 08:50:13 +00:00
|
|
|
#endif
|
2011-08-23 13:36:25 +00:00
|
|
|
/** @} */
|
2009-11-29 08:50:13 +00:00
|
|
|
|
|
|
|
/*===========================================================================*/
|
2009-12-29 11:12:05 +00:00
|
|
|
/* Derived constants and error checks. */
|
2009-11-29 08:50:13 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
|
2010-11-01 17:29:56 +00:00
|
|
|
#if !HAL_USE_SPI || !CH_USE_EVENTS
|
|
|
|
#error "MMC_SPI driver requires HAL_USE_SPI and CH_USE_EVENTS"
|
2009-12-29 11:12:05 +00:00
|
|
|
#endif
|
2009-11-29 08:50:13 +00:00
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver data structures and types. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/**
|
2010-02-06 16:17:30 +00:00
|
|
|
* @brief Driver state machine possible states.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
typedef enum {
|
2010-10-31 13:06:42 +00:00
|
|
|
MMC_UNINIT = 0, /**< Not initialized. */
|
|
|
|
MMC_STOP = 1, /**< Stopped. */
|
|
|
|
MMC_WAIT = 2, /**< Waiting card. */
|
|
|
|
MMC_INSERTED = 3, /**< Card inserted. */
|
|
|
|
MMC_READY = 4, /**< Card ready. */
|
|
|
|
MMC_READING = 5, /**< Reading. */
|
|
|
|
MMC_WRITING = 6 /**< Writing. */
|
2009-11-29 08:50:13 +00:00
|
|
|
} mmcstate_t;
|
|
|
|
|
|
|
|
/**
|
2010-02-06 16:17:30 +00:00
|
|
|
* @brief Function used to query some hardware status bits.
|
2009-11-29 08:50:13 +00:00
|
|
|
*
|
2010-02-06 16:17:30 +00:00
|
|
|
* @return The status.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
typedef bool_t (*mmcquery_t)(void);
|
|
|
|
|
|
|
|
/**
|
2010-02-06 16:17:30 +00:00
|
|
|
* @brief Driver configuration structure.
|
2010-12-21 18:25:56 +00:00
|
|
|
* @note Not required in the current implementation.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
typedef struct {
|
2010-12-21 18:25:56 +00:00
|
|
|
uint8_t dummy;
|
2009-11-29 08:50:13 +00:00
|
|
|
} MMCConfig;
|
|
|
|
|
|
|
|
/**
|
2010-02-06 16:17:30 +00:00
|
|
|
* @brief Structure representing a MMC driver.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
/**
|
|
|
|
* @brief Driver state.
|
|
|
|
*/
|
2011-03-08 10:09:57 +00:00
|
|
|
mmcstate_t state;
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
|
|
|
* @brief Current configuration data.
|
|
|
|
*/
|
2011-03-08 10:09:57 +00:00
|
|
|
const MMCConfig *config;
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
2010-02-21 07:24:53 +00:00
|
|
|
* @brief SPI driver associated to this MMC driver.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2011-03-08 10:09:57 +00:00
|
|
|
SPIDriver *spip;
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
2010-02-21 07:24:53 +00:00
|
|
|
* @brief SPI low speed configuration used during initialization.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2011-03-08 10:09:57 +00:00
|
|
|
const SPIConfig *lscfg;
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
2010-02-21 07:24:53 +00:00
|
|
|
* @brief SPI high speed configuration used during transfers.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2011-03-08 10:09:57 +00:00
|
|
|
const SPIConfig *hscfg;
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
2010-02-21 07:24:53 +00:00
|
|
|
* @brief Write protect status query function.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2011-03-08 10:09:57 +00:00
|
|
|
mmcquery_t is_protected;
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
|
|
|
* @brief Insertion status query function.
|
|
|
|
*/
|
2011-03-08 10:09:57 +00:00
|
|
|
mmcquery_t is_inserted;
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
2010-02-21 07:24:53 +00:00
|
|
|
* @brief Card insertion event source.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2011-03-08 10:09:57 +00:00
|
|
|
EventSource inserted_event;
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
2010-02-21 07:24:53 +00:00
|
|
|
* @brief Card removal event source.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2011-03-08 10:09:57 +00:00
|
|
|
EventSource removed_event;
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
2010-02-21 07:24:53 +00:00
|
|
|
* @brief MMC insertion polling timer.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2011-03-08 10:09:57 +00:00
|
|
|
VirtualTimer vt;
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
2010-02-21 07:24:53 +00:00
|
|
|
* @brief Insertion counter.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2011-03-08 10:09:57 +00:00
|
|
|
uint_fast8_t cnt;
|
2009-11-29 08:50:13 +00:00
|
|
|
} MMCDriver;
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
2009-12-29 11:12:05 +00:00
|
|
|
/* Driver macros. */
|
2009-11-29 08:50:13 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
|
2011-08-23 13:36:25 +00:00
|
|
|
/**
|
|
|
|
* @name Macro Functions
|
|
|
|
* @{
|
|
|
|
*/
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
2010-02-21 07:24:53 +00:00
|
|
|
* @brief Returns the driver state.
|
2010-10-04 17:16:18 +00:00
|
|
|
*
|
|
|
|
* @param[in] mmcp pointer to the @p MMCDriver object
|
|
|
|
* @return The driver state.
|
|
|
|
*
|
|
|
|
* @api
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2011-03-08 10:09:57 +00:00
|
|
|
#define mmcGetDriverState(mmcp) ((mmcp)->state)
|
2009-11-29 08:50:13 +00:00
|
|
|
|
|
|
|
/**
|
2010-02-21 07:24:53 +00:00
|
|
|
* @brief Returns the write protect status.
|
2010-10-04 17:16:18 +00:00
|
|
|
*
|
|
|
|
* @param[in] mmcp pointer to the @p MMCDriver object
|
|
|
|
* @return The card state.
|
|
|
|
* @retval FALSE card not inserted.
|
|
|
|
* @retval TRUE card inserted.
|
|
|
|
*
|
|
|
|
* @api
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2011-03-08 10:09:57 +00:00
|
|
|
#define mmcIsWriteProtected(mmcp) ((mmcp)->is_protected())
|
2011-08-23 13:36:25 +00:00
|
|
|
/** @} */
|
2009-11-29 08:50:13 +00:00
|
|
|
|
2009-12-29 11:12:05 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* External declarations. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2009-11-29 08:50:13 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
void mmcInit(void);
|
|
|
|
void mmcObjectInit(MMCDriver *mmcp, SPIDriver *spip,
|
|
|
|
const SPIConfig *lscfg, const SPIConfig *hscfg,
|
|
|
|
mmcquery_t is_protected, mmcquery_t is_inserted);
|
|
|
|
void mmcStart(MMCDriver *mmcp, const MMCConfig *config);
|
|
|
|
void mmcStop(MMCDriver *mmcp);
|
|
|
|
bool_t mmcConnect(MMCDriver *mmcp);
|
|
|
|
bool_t mmcDisconnect(MMCDriver *mmcp);
|
|
|
|
bool_t mmcStartSequentialRead(MMCDriver *mmcp, uint32_t startblk);
|
|
|
|
bool_t mmcSequentialRead(MMCDriver *mmcp, uint8_t *buffer);
|
|
|
|
bool_t mmcStopSequentialRead(MMCDriver *mmcp);
|
|
|
|
bool_t mmcStartSequentialWrite(MMCDriver *mmcp, uint32_t startblk);
|
|
|
|
bool_t mmcSequentialWrite(MMCDriver *mmcp, const uint8_t *buffer);
|
|
|
|
bool_t mmcStopSequentialWrite(MMCDriver *mmcp);
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-11-01 17:29:56 +00:00
|
|
|
#endif /* HAL_USE_MMC_SPI */
|
2009-11-29 08:50:13 +00:00
|
|
|
|
|
|
|
#endif /* _MMC_SPI_H_ */
|
|
|
|
|
|
|
|
/** @} */
|