2008-11-05 00:24:46 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 by Maurus Cuelenaere
|
|
|
|
*
|
|
|
|
* This program 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 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "config.h"
|
2010-08-12 13:38:25 +00:00
|
|
|
#include "gcc_extensions.h"
|
2018-06-28 10:24:26 +00:00
|
|
|
#include "cpu.h"
|
2008-11-05 00:24:46 +00:00
|
|
|
#include "ata-sd-target.h"
|
2009-11-26 16:57:30 +00:00
|
|
|
#include "led.h"
|
2010-06-05 21:12:16 +00:00
|
|
|
#include "sdmmc.h"
|
2009-01-21 20:58:33 +00:00
|
|
|
#include "logf.h"
|
|
|
|
#include "storage.h"
|
2009-02-13 00:45:49 +00:00
|
|
|
#include "string.h"
|
2009-11-26 16:57:30 +00:00
|
|
|
|
|
|
|
static long last_disk_activity = -1;
|
2009-11-26 17:49:05 +00:00
|
|
|
#if defined(CONFIG_STORAGE_MULTI) || defined(HAVE_HOTSWAP)
|
2009-11-26 16:57:30 +00:00
|
|
|
static int sd_drive_nr = 0;
|
2017-03-15 05:51:54 +00:00
|
|
|
#else
|
|
|
|
#define sd_drive_nr 0
|
2009-11-26 17:39:30 +00:00
|
|
|
#endif
|
2009-11-26 16:57:30 +00:00
|
|
|
static tCardInfo card;
|
2008-11-05 00:24:46 +00:00
|
|
|
|
2009-11-26 16:57:30 +00:00
|
|
|
static struct mutex sd_mtx;
|
2018-08-30 01:56:10 +00:00
|
|
|
//static struct semaphore sd_wakeup;
|
2009-11-26 16:57:30 +00:00
|
|
|
|
|
|
|
static int use_4bit;
|
|
|
|
static int num_6;
|
|
|
|
static int sd2_0;
|
2008-11-05 00:24:46 +00:00
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
//#define SD_DMA_ENABLE
|
|
|
|
#define SD_DMA_INTERRUPT 0
|
2008-11-05 00:24:46 +00:00
|
|
|
|
2009-11-26 16:57:30 +00:00
|
|
|
//#define DEBUG(x...) logf(x)
|
|
|
|
#define DEBUG(x, ...)
|
2008-11-05 00:24:46 +00:00
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
#define SD_INSERT_STATUS() __gpio_get_pin(MMC_CD_PIN)
|
|
|
|
#define SD_RESET() __msc_reset()
|
2008-11-05 00:24:46 +00:00
|
|
|
|
2009-07-03 11:40:50 +00:00
|
|
|
#define SD_IRQ_MASK() \
|
2008-11-05 00:24:46 +00:00
|
|
|
do { \
|
|
|
|
REG_MSC_IMASK = 0xffff; \
|
|
|
|
REG_MSC_IREG = 0xffff; \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
/* Error codes */
|
2009-07-01 22:41:33 +00:00
|
|
|
enum sd_result_t
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
2009-07-01 22:41:33 +00:00
|
|
|
SD_NO_RESPONSE = -1,
|
|
|
|
SD_NO_ERROR = 0,
|
|
|
|
SD_ERROR_OUT_OF_RANGE,
|
|
|
|
SD_ERROR_ADDRESS,
|
|
|
|
SD_ERROR_BLOCK_LEN,
|
|
|
|
SD_ERROR_ERASE_SEQ,
|
|
|
|
SD_ERROR_ERASE_PARAM,
|
|
|
|
SD_ERROR_WP_VIOLATION,
|
|
|
|
SD_ERROR_CARD_IS_LOCKED,
|
|
|
|
SD_ERROR_LOCK_UNLOCK_FAILED,
|
|
|
|
SD_ERROR_COM_CRC,
|
|
|
|
SD_ERROR_ILLEGAL_COMMAND,
|
|
|
|
SD_ERROR_CARD_ECC_FAILED,
|
|
|
|
SD_ERROR_CC,
|
|
|
|
SD_ERROR_GENERAL,
|
|
|
|
SD_ERROR_UNDERRUN,
|
|
|
|
SD_ERROR_OVERRUN,
|
|
|
|
SD_ERROR_CID_CSD_OVERWRITE,
|
|
|
|
SD_ERROR_STATE_MISMATCH,
|
|
|
|
SD_ERROR_HEADER_MISMATCH,
|
|
|
|
SD_ERROR_TIMEOUT,
|
|
|
|
SD_ERROR_CRC,
|
|
|
|
SD_ERROR_DRIVER_FAILURE,
|
2008-11-05 00:24:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Standard MMC/SD clock speeds */
|
|
|
|
#define MMC_CLOCK_SLOW 400000 /* 400 kHz for initial setup */
|
|
|
|
#define SD_CLOCK_FAST 24000000 /* 24 MHz for SD Cards */
|
|
|
|
#define SD_CLOCK_HIGH 48000000 /* 48 MHz for SD Cards */
|
2009-02-13 00:45:49 +00:00
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
/* Extra commands for state control */
|
2008-11-05 00:24:46 +00:00
|
|
|
/* Use negative numbers to disambiguate */
|
2009-07-01 22:41:33 +00:00
|
|
|
#define SD_CIM_RESET -1
|
|
|
|
|
|
|
|
/* Proprietary commands, illegal/reserved according to SD Specification 2.00 */
|
|
|
|
/* class 1 */
|
|
|
|
#define SD_READ_DAT_UNTIL_STOP 11 /* adtc [31:0] dadr R1 */
|
|
|
|
|
|
|
|
/* class 3 */
|
|
|
|
#define SD_WRITE_DAT_UNTIL_STOP 20 /* adtc [31:0] data addr R1 */
|
|
|
|
|
|
|
|
/* class 4 */
|
|
|
|
#define SD_PROGRAM_CID 26 /* adtc R1 */
|
|
|
|
#define SD_PROGRAM_CSD 27 /* adtc R1 */
|
|
|
|
|
|
|
|
/* class 9 */
|
|
|
|
#define SD_GO_IRQ_STATE 40 /* bcr R5 */
|
2008-11-05 00:24:46 +00:00
|
|
|
|
|
|
|
/* Don't change the order of these; they are used in dispatch tables */
|
2009-07-01 22:41:33 +00:00
|
|
|
enum sd_rsp_t
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
|
|
|
RESPONSE_NONE = 0,
|
|
|
|
RESPONSE_R1 = 1,
|
|
|
|
RESPONSE_R1B = 2,
|
|
|
|
RESPONSE_R2_CID = 3,
|
|
|
|
RESPONSE_R2_CSD = 4,
|
|
|
|
RESPONSE_R3 = 5,
|
|
|
|
RESPONSE_R4 = 6,
|
|
|
|
RESPONSE_R5 = 7,
|
|
|
|
RESPONSE_R6 = 8,
|
2009-02-13 00:45:49 +00:00
|
|
|
RESPONSE_R7 = 9,
|
2008-11-05 00:24:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
MMC status in R1
|
|
|
|
Type
|
|
|
|
e : error bit
|
|
|
|
s : status bit
|
|
|
|
r : detected and set for the actual command response
|
|
|
|
x : detected and set during command execution. the host must poll
|
|
|
|
the card by sending status command in order to read these bits.
|
|
|
|
Clear condition
|
|
|
|
a : according to the card state
|
|
|
|
b : always related to the previous command. Reception of
|
|
|
|
a valid command will clear it (with a delay of one command)
|
|
|
|
c : clear by read
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define R1_OUT_OF_RANGE (1 << 31) /* er, c */
|
|
|
|
#define R1_ADDRESS_ERROR (1 << 30) /* erx, c */
|
|
|
|
#define R1_BLOCK_LEN_ERROR (1 << 29) /* er, c */
|
|
|
|
#define R1_ERASE_SEQ_ERROR (1 << 28) /* er, c */
|
|
|
|
#define R1_ERASE_PARAM (1 << 27) /* ex, c */
|
|
|
|
#define R1_WP_VIOLATION (1 << 26) /* erx, c */
|
|
|
|
#define R1_CARD_IS_LOCKED (1 << 25) /* sx, a */
|
|
|
|
#define R1_LOCK_UNLOCK_FAILED (1 << 24) /* erx, c */
|
|
|
|
#define R1_COM_CRC_ERROR (1 << 23) /* er, b */
|
|
|
|
#define R1_ILLEGAL_COMMAND (1 << 22) /* er, b */
|
|
|
|
#define R1_CARD_ECC_FAILED (1 << 21) /* ex, c */
|
|
|
|
#define R1_CC_ERROR (1 << 20) /* erx, c */
|
|
|
|
#define R1_ERROR (1 << 19) /* erx, c */
|
|
|
|
#define R1_UNDERRUN (1 << 18) /* ex, c */
|
|
|
|
#define R1_OVERRUN (1 << 17) /* ex, c */
|
|
|
|
#define R1_CID_CSD_OVERWRITE (1 << 16) /* erx, c, CID/CSD overwrite */
|
|
|
|
#define R1_WP_ERASE_SKIP (1 << 15) /* sx, c */
|
|
|
|
#define R1_CARD_ECC_DISABLED (1 << 14) /* sx, a */
|
|
|
|
#define R1_ERASE_RESET (1 << 13) /* sr, c */
|
|
|
|
#define R1_STATUS(x) (x & 0xFFFFE000)
|
|
|
|
#define R1_CURRENT_STATE(x) ((x & 0x00001E00) >> 9) /* sx, b (4 bits) */
|
|
|
|
#define R1_READY_FOR_DATA (1 << 8) /* sx, a */
|
|
|
|
#define R1_APP_CMD (1 << 7) /* sr, c */
|
|
|
|
|
|
|
|
/* These are unpacked versions of the actual responses */
|
2009-07-01 22:41:33 +00:00
|
|
|
struct sd_response_r1
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
|
|
|
unsigned char cmd;
|
|
|
|
unsigned int status;
|
|
|
|
};
|
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
struct sd_response_r3
|
2020-08-25 18:01:44 +00:00
|
|
|
{
|
2008-11-05 00:24:46 +00:00
|
|
|
unsigned int ocr;
|
2009-02-13 00:45:49 +00:00
|
|
|
};
|
2008-11-05 00:24:46 +00:00
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
#define SD_CARD_BUSY 0x80000000 /* Card Power up status bit */
|
2008-11-05 00:24:46 +00:00
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
struct sd_request
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
|
|
|
int index; /* Slot index - used for CS lines */
|
|
|
|
int cmd; /* Command to send */
|
|
|
|
unsigned int arg; /* Argument to send */
|
2009-07-01 22:41:33 +00:00
|
|
|
enum sd_rsp_t rtype; /* Response type expected */
|
2008-11-05 00:24:46 +00:00
|
|
|
|
|
|
|
/* Data transfer (these may be modified at the low level) */
|
|
|
|
unsigned short nob; /* Number of blocks to transfer*/
|
|
|
|
unsigned short block_len; /* Block length */
|
|
|
|
unsigned char *buffer; /* Data buffer */
|
|
|
|
unsigned int cnt; /* Data length, for PIO */
|
|
|
|
|
|
|
|
/* Results */
|
|
|
|
unsigned char response[18]; /* Buffer to store response - CRC is optional */
|
2009-07-01 22:41:33 +00:00
|
|
|
enum sd_result_t result;
|
2008-11-05 00:24:46 +00:00
|
|
|
};
|
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
#define SD_OCR_ARG 0x00ff8000 /* Argument of OCR */
|
2008-11-05 00:24:46 +00:00
|
|
|
|
|
|
|
/***********************************************************************
|
2009-07-01 22:41:33 +00:00
|
|
|
* SD Events
|
2008-11-05 00:24:46 +00:00
|
|
|
*/
|
2009-07-01 22:41:33 +00:00
|
|
|
#define SD_EVENT_NONE 0x00 /* No events */
|
|
|
|
#define SD_EVENT_RX_DATA_DONE 0x01 /* Rx data done */
|
|
|
|
#define SD_EVENT_TX_DATA_DONE 0x02 /* Tx data done */
|
|
|
|
#define SD_EVENT_PROG_DONE 0x04 /* Programming is done */
|
2008-11-05 00:24:46 +00:00
|
|
|
|
2009-02-13 00:45:49 +00:00
|
|
|
/**************************************************************************
|
|
|
|
* Utility functions
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
#define PARSE_U32(_buf,_index) \
|
|
|
|
(((unsigned int)_buf[_index]) << 24) | (((unsigned int)_buf[_index+1]) << 16) | \
|
|
|
|
(((unsigned int)_buf[_index+2]) << 8) | ((unsigned int)_buf[_index+3]);
|
|
|
|
|
|
|
|
#define PARSE_U16(_buf,_index) \
|
|
|
|
(((unsigned short)_buf[_index]) << 8) | ((unsigned short)_buf[_index+1]);
|
|
|
|
|
2009-11-26 16:57:30 +00:00
|
|
|
static int sd_unpack_r1(struct sd_request *request, struct sd_response_r1 *r1)
|
2009-02-13 00:45:49 +00:00
|
|
|
{
|
|
|
|
unsigned char *buf = request->response;
|
|
|
|
|
|
|
|
if (request->result)
|
|
|
|
return request->result;
|
|
|
|
|
|
|
|
r1->cmd = buf[0];
|
|
|
|
r1->status = PARSE_U32(buf,1);
|
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
DEBUG("sd_unpack_r1: cmd=%d status=%08x", r1->cmd, r1->status);
|
2009-02-13 00:45:49 +00:00
|
|
|
|
|
|
|
if (R1_STATUS(r1->status)) {
|
2009-07-01 22:41:33 +00:00
|
|
|
if (r1->status & R1_OUT_OF_RANGE) return SD_ERROR_OUT_OF_RANGE;
|
|
|
|
if (r1->status & R1_ADDRESS_ERROR) return SD_ERROR_ADDRESS;
|
|
|
|
if (r1->status & R1_BLOCK_LEN_ERROR) return SD_ERROR_BLOCK_LEN;
|
|
|
|
if (r1->status & R1_ERASE_SEQ_ERROR) return SD_ERROR_ERASE_SEQ;
|
|
|
|
if (r1->status & R1_ERASE_PARAM) return SD_ERROR_ERASE_PARAM;
|
|
|
|
if (r1->status & R1_WP_VIOLATION) return SD_ERROR_WP_VIOLATION;
|
|
|
|
//if (r1->status & R1_CARD_IS_LOCKED) return SD_ERROR_CARD_IS_LOCKED;
|
|
|
|
if (r1->status & R1_LOCK_UNLOCK_FAILED) return SD_ERROR_LOCK_UNLOCK_FAILED;
|
|
|
|
if (r1->status & R1_COM_CRC_ERROR) return SD_ERROR_COM_CRC;
|
|
|
|
if (r1->status & R1_ILLEGAL_COMMAND) return SD_ERROR_ILLEGAL_COMMAND;
|
|
|
|
if (r1->status & R1_CARD_ECC_FAILED) return SD_ERROR_CARD_ECC_FAILED;
|
|
|
|
if (r1->status & R1_CC_ERROR) return SD_ERROR_CC;
|
|
|
|
if (r1->status & R1_ERROR) return SD_ERROR_GENERAL;
|
|
|
|
if (r1->status & R1_UNDERRUN) return SD_ERROR_UNDERRUN;
|
|
|
|
if (r1->status & R1_OVERRUN) return SD_ERROR_OVERRUN;
|
|
|
|
if (r1->status & R1_CID_CSD_OVERWRITE) return SD_ERROR_CID_CSD_OVERWRITE;
|
2009-02-13 00:45:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (buf[0] != request->cmd)
|
2009-07-01 22:41:33 +00:00
|
|
|
return SD_ERROR_HEADER_MISMATCH;
|
2009-02-13 00:45:49 +00:00
|
|
|
|
|
|
|
/* This should be last - it's the least dangerous error */
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-11-26 16:57:30 +00:00
|
|
|
static int sd_unpack_r6(struct sd_request *request, struct sd_response_r1 *r1, unsigned long *rca)
|
2009-02-13 00:45:49 +00:00
|
|
|
{
|
|
|
|
unsigned char *buf = request->response;
|
|
|
|
|
2009-07-03 11:40:50 +00:00
|
|
|
if (request->result)
|
|
|
|
return request->result;
|
2009-11-26 16:57:30 +00:00
|
|
|
|
2009-07-03 11:40:50 +00:00
|
|
|
*rca = PARSE_U16(buf,1); /* Save RCA returned by the SD Card */
|
2009-11-26 16:57:30 +00:00
|
|
|
|
2009-07-03 11:40:50 +00:00
|
|
|
*(buf+1) = 0;
|
|
|
|
*(buf+2) = 0;
|
2009-11-26 16:57:30 +00:00
|
|
|
|
2009-07-03 11:40:50 +00:00
|
|
|
return sd_unpack_r1(request, r1);
|
2009-11-26 16:57:30 +00:00
|
|
|
}
|
2009-02-13 00:45:49 +00:00
|
|
|
|
2009-11-26 16:57:30 +00:00
|
|
|
static int sd_unpack_r3(struct sd_request *request, struct sd_response_r3 *r3)
|
2009-02-13 00:45:49 +00:00
|
|
|
{
|
|
|
|
unsigned char *buf = request->response;
|
|
|
|
|
|
|
|
if (request->result) return request->result;
|
|
|
|
|
|
|
|
r3->ocr = PARSE_U32(buf,1);
|
2009-07-01 22:41:33 +00:00
|
|
|
DEBUG("sd_unpack_r3: ocr=%08x", r3->ocr);
|
2009-02-13 00:45:49 +00:00
|
|
|
|
2009-11-26 16:57:30 +00:00
|
|
|
if (buf[0] != 0x3f)
|
|
|
|
return SD_ERROR_HEADER_MISMATCH;
|
|
|
|
|
2009-02-13 00:45:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2008-11-05 00:24:46 +00:00
|
|
|
|
|
|
|
/* Stop the MMC clock and wait while it happens */
|
2009-07-01 22:41:33 +00:00
|
|
|
static inline int jz_sd_stop_clock(void)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
2009-02-13 00:45:49 +00:00
|
|
|
register int timeout = 1000;
|
2008-11-05 00:24:46 +00:00
|
|
|
|
2009-02-13 00:45:49 +00:00
|
|
|
//DEBUG("stop MMC clock");
|
2008-11-05 00:24:46 +00:00
|
|
|
REG_MSC_STRPCL = MSC_STRPCL_CLOCK_CONTROL_STOP;
|
|
|
|
|
|
|
|
while (timeout && (REG_MSC_STAT & MSC_STAT_CLK_EN))
|
|
|
|
{
|
|
|
|
timeout--;
|
|
|
|
if (timeout == 0)
|
|
|
|
{
|
|
|
|
DEBUG("Timeout on stop clock waiting");
|
2009-07-01 22:41:33 +00:00
|
|
|
return SD_ERROR_TIMEOUT;
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
udelay(1);
|
|
|
|
}
|
2009-02-13 00:45:49 +00:00
|
|
|
//DEBUG("clock off time is %d microsec", timeout);
|
2009-07-01 22:41:33 +00:00
|
|
|
return SD_NO_ERROR;
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Start the MMC clock and operation */
|
2009-07-01 22:41:33 +00:00
|
|
|
static inline int jz_sd_start_clock(void)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
2009-02-13 00:45:49 +00:00
|
|
|
REG_MSC_STRPCL = MSC_STRPCL_CLOCK_CONTROL_START | MSC_STRPCL_START_OP;
|
2009-07-01 22:41:33 +00:00
|
|
|
return SD_NO_ERROR;
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
static int jz_sd_check_status(struct sd_request *request)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
2009-02-13 00:45:49 +00:00
|
|
|
(void)request;
|
2008-11-05 00:24:46 +00:00
|
|
|
unsigned int status = REG_MSC_STAT;
|
|
|
|
|
|
|
|
/* Checking for response or data timeout */
|
|
|
|
if (status & (MSC_STAT_TIME_OUT_RES | MSC_STAT_TIME_OUT_READ))
|
|
|
|
{
|
2009-07-01 22:41:33 +00:00
|
|
|
DEBUG("SD timeout, MSC_STAT 0x%x CMD %d", status,
|
2008-11-05 00:24:46 +00:00
|
|
|
request->cmd);
|
2009-07-01 22:41:33 +00:00
|
|
|
return SD_ERROR_TIMEOUT;
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Checking for CRC error */
|
|
|
|
if (status &
|
|
|
|
(MSC_STAT_CRC_READ_ERROR | MSC_STAT_CRC_WRITE_ERROR |
|
|
|
|
MSC_STAT_CRC_RES_ERR))
|
|
|
|
{
|
2009-07-01 22:41:33 +00:00
|
|
|
DEBUG("SD CRC error, MSC_STAT 0x%x", status);
|
|
|
|
return SD_ERROR_CRC;
|
2020-08-25 18:01:44 +00:00
|
|
|
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
2020-08-25 18:01:44 +00:00
|
|
|
|
|
|
|
|
2009-02-13 00:45:49 +00:00
|
|
|
/* Checking for FIFO empty */
|
|
|
|
/*if(status & MSC_STAT_DATA_FIFO_EMPTY && request->rtype != RESPONSE_NONE)
|
|
|
|
{
|
2009-07-01 22:41:33 +00:00
|
|
|
DEBUG("SD FIFO empty, MSC_STAT 0x%x", status);
|
|
|
|
return SD_ERROR_UNDERRUN;
|
2009-02-13 00:45:49 +00:00
|
|
|
}*/
|
2008-11-05 00:24:46 +00:00
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
return SD_NO_ERROR;
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Obtain response to the command and store it to response buffer */
|
2009-07-01 22:41:33 +00:00
|
|
|
static void jz_sd_get_response(struct sd_request *request)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
unsigned char *buf;
|
|
|
|
unsigned int data;
|
|
|
|
|
|
|
|
DEBUG("fetch response for request %d, cmd %d", request->rtype,
|
|
|
|
request->cmd);
|
|
|
|
buf = request->response;
|
2009-07-01 22:41:33 +00:00
|
|
|
request->result = SD_NO_ERROR;
|
2008-11-05 00:24:46 +00:00
|
|
|
|
|
|
|
switch (request->rtype)
|
|
|
|
{
|
|
|
|
case RESPONSE_R1:
|
|
|
|
case RESPONSE_R1B:
|
2009-02-13 00:45:49 +00:00
|
|
|
case RESPONSE_R7:
|
2008-11-05 00:24:46 +00:00
|
|
|
case RESPONSE_R6:
|
|
|
|
case RESPONSE_R3:
|
|
|
|
case RESPONSE_R4:
|
|
|
|
case RESPONSE_R5:
|
|
|
|
{
|
|
|
|
data = REG_MSC_RES;
|
|
|
|
buf[0] = (data >> 8) & 0xff;
|
|
|
|
buf[1] = data & 0xff;
|
|
|
|
data = REG_MSC_RES;
|
|
|
|
buf[2] = (data >> 8) & 0xff;
|
|
|
|
buf[3] = data & 0xff;
|
|
|
|
data = REG_MSC_RES;
|
|
|
|
buf[4] = data & 0xff;
|
|
|
|
|
|
|
|
DEBUG("request %d, response [%02x %02x %02x %02x %02x]",
|
|
|
|
request->rtype, buf[0], buf[1], buf[2],
|
|
|
|
buf[3], buf[4]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case RESPONSE_R2_CID:
|
|
|
|
case RESPONSE_R2_CSD:
|
|
|
|
{
|
|
|
|
for (i = 0; i < 16; i += 2)
|
|
|
|
{
|
|
|
|
data = REG_MSC_RES;
|
|
|
|
buf[i] = (data >> 8) & 0xff;
|
|
|
|
buf[i + 1] = data & 0xff;
|
|
|
|
}
|
2008-11-21 12:50:06 +00:00
|
|
|
DEBUG("request %d, response []", request->rtype);
|
2008-11-05 00:24:46 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case RESPONSE_NONE:
|
|
|
|
DEBUG("No response");
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
DEBUG("unhandled response type for request %d",
|
|
|
|
request->rtype);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
#ifdef SD_DMA_ENABLE
|
2009-07-01 22:56:14 +00:00
|
|
|
static void jz_sd_receive_data_dma(struct sd_request *req)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
|
|
|
unsigned int size = req->block_len * req->nob;
|
2009-07-01 22:56:14 +00:00
|
|
|
#if MMC_DMA_INTERRUPT
|
2008-11-05 00:24:46 +00:00
|
|
|
unsigned char err = 0;
|
2009-07-01 22:56:14 +00:00
|
|
|
#endif
|
2008-11-05 00:24:46 +00:00
|
|
|
|
|
|
|
/* flush dcache */
|
2020-08-29 01:45:58 +00:00
|
|
|
discard_dcache_range(req->buffer, size);
|
2008-11-05 00:24:46 +00:00
|
|
|
/* setup dma channel */
|
2009-07-01 22:56:14 +00:00
|
|
|
REG_DMAC_DSAR(DMA_SD_RX_CHANNEL) = PHYSADDR(MSC_RXFIFO); /* DMA source addr */
|
|
|
|
REG_DMAC_DTAR(DMA_SD_RX_CHANNEL) = PHYSADDR((unsigned long) req->buffer); /* DMA dest addr */
|
|
|
|
REG_DMAC_DTCR(DMA_SD_RX_CHANNEL) = (size + 3) / 4; /* DMA transfer count */
|
|
|
|
REG_DMAC_DRSR(DMA_SD_RX_CHANNEL) = DMAC_DRSR_RS_MSCIN; /* DMA request type */
|
2008-11-05 00:24:46 +00:00
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
#if SD_DMA_INTERRUPT
|
2009-07-01 22:56:14 +00:00
|
|
|
REG_DMAC_DCMD(DMA_SD_RX_CHANNEL) =
|
2008-11-05 00:24:46 +00:00
|
|
|
DMAC_DCMD_DAI | DMAC_DCMD_SWDH_32 | DMAC_DCMD_DWDH_32 |
|
|
|
|
DMAC_DCMD_DS_32BIT | DMAC_DCMD_TIE;
|
2009-07-01 22:56:14 +00:00
|
|
|
REG_DMAC_DCCSR(DMA_SD_RX_CHANNEL) = DMAC_DCCSR_EN | DMAC_DCCSR_NDES;
|
2009-07-01 22:41:33 +00:00
|
|
|
OSSemPend(sd_dma_rx_sem, 100, &err);
|
2008-11-05 00:24:46 +00:00
|
|
|
#else
|
2009-07-01 22:56:14 +00:00
|
|
|
REG_DMAC_DCMD(DMA_SD_RX_CHANNEL) =
|
2008-11-05 00:24:46 +00:00
|
|
|
DMAC_DCMD_DAI | DMAC_DCMD_SWDH_32 | DMAC_DCMD_DWDH_32 |
|
|
|
|
DMAC_DCMD_DS_32BIT;
|
2009-07-01 22:56:14 +00:00
|
|
|
REG_DMAC_DCCSR(DMA_SD_RX_CHANNEL) = DMAC_DCCSR_EN | DMAC_DCCSR_NDES;
|
|
|
|
|
|
|
|
//while (REG_DMAC_DTCR(DMA_SD_RX_CHANNEL));
|
|
|
|
while( !(REG_DMAC_DCCSR(DMA_SD_RX_CHANNEL) & DMAC_DCCSR_TT) );
|
2008-11-05 00:24:46 +00:00
|
|
|
#endif
|
2009-07-01 22:56:14 +00:00
|
|
|
|
|
|
|
/* clear status and disable channel */
|
|
|
|
REG_DMAC_DCCSR(DMA_SD_RX_CHANNEL) = 0;
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
|
2009-07-01 22:56:14 +00:00
|
|
|
static void jz_mmc_transmit_data_dma(struct mmc_request *req)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
|
|
|
unsigned int size = req->block_len * req->nob;
|
2009-07-01 22:56:14 +00:00
|
|
|
#if SD_DMA_INTERRUPT
|
2008-11-05 00:24:46 +00:00
|
|
|
unsigned char err = 0;
|
2009-07-01 22:56:14 +00:00
|
|
|
#endif
|
2008-11-05 00:24:46 +00:00
|
|
|
|
|
|
|
/* flush dcache */
|
2020-08-29 01:45:58 +00:00
|
|
|
commit_discard_dcache_range(req->buffer, size);
|
2008-11-05 00:24:46 +00:00
|
|
|
/* setup dma channel */
|
2009-07-01 22:56:14 +00:00
|
|
|
REG_DMAC_DSAR(DMA_SD_TX_CHANNEL) = PHYSADDR((unsigned long) req->buffer); /* DMA source addr */
|
|
|
|
REG_DMAC_DTAR(DMA_SD_TX_CHANNEL) = PHYSADDR(MSC_TXFIFO); /* DMA dest addr */
|
|
|
|
REG_DMAC_DTCR(DMA_SD_TX_CHANNEL) = (size + 3) / 4; /* DMA transfer count */
|
|
|
|
REG_DMAC_DRSR(DMA_SD_TX_CHANNEL) = DMAC_DRSR_RS_MSCOUT; /* DMA request type */
|
2008-11-05 00:24:46 +00:00
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
#if SD_DMA_INTERRUPT
|
2009-07-01 22:56:14 +00:00
|
|
|
REG_DMAC_DCMD(DMA_SD_TX_CHANNEL) =
|
2008-11-05 00:24:46 +00:00
|
|
|
DMAC_DCMD_SAI | DMAC_DCMD_SWDH_32 | DMAC_DCMD_DWDH_32 |
|
|
|
|
DMAC_DCMD_DS_32BIT | DMAC_DCMD_TIE;
|
2009-07-01 22:56:14 +00:00
|
|
|
REG_DMAC_DCCSR(DMA_SD_TX_CHANNEL) = DMAC_DCCSR_EN | DMAC_DCCSR_NDES;
|
2009-07-01 22:41:33 +00:00
|
|
|
OSSemPend(sd_dma_tx_sem, 100, &err);
|
2008-11-05 00:24:46 +00:00
|
|
|
#else
|
2009-07-01 22:56:14 +00:00
|
|
|
REG_DMAC_DCMD(DMA_SD_TX_CHANNEL) =
|
2008-11-05 00:24:46 +00:00
|
|
|
DMAC_DCMD_SAI | DMAC_DCMD_SWDH_32 | DMAC_DCMD_DWDH_32 |
|
|
|
|
DMAC_DCMD_DS_32BIT;
|
2009-07-01 22:56:14 +00:00
|
|
|
REG_DMAC_DCCSR(DMA_SD_TX_CHANNEL) = DMAC_DCCSR_EN | DMAC_DCCSR_NDES;
|
2008-11-05 00:24:46 +00:00
|
|
|
/* wait for dma completion */
|
2009-07-01 22:56:14 +00:00
|
|
|
while( !(REG_DMAC_DCCSR(DMA_SD_TX_CHANNEL) & DMAC_DCCSR_TT) );
|
2008-11-05 00:24:46 +00:00
|
|
|
#endif
|
|
|
|
/* clear status and disable channel */
|
2009-07-01 22:56:14 +00:00
|
|
|
|
|
|
|
REG_DMAC_DCCSR(DMA_SD_TX_CHANNEL) = 0;
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
|
2009-07-01 22:56:14 +00:00
|
|
|
#else /* SD_DMA_ENABLE */
|
2008-11-05 00:24:46 +00:00
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
static int jz_sd_receive_data(struct sd_request *req)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
|
|
|
unsigned int nob = req->nob;
|
|
|
|
unsigned int wblocklen = (unsigned int) (req->block_len + 3) >> 2; /* length in word */
|
|
|
|
unsigned char *buf = req->buffer;
|
|
|
|
unsigned int *wbuf = (unsigned int *) buf;
|
|
|
|
unsigned int waligned = (((unsigned int) buf & 0x3) == 0); /* word aligned ? */
|
|
|
|
unsigned int stat, timeout, data, cnt;
|
|
|
|
|
|
|
|
for (; nob >= 1; nob--)
|
|
|
|
{
|
|
|
|
timeout = 0x3FFFFFF;
|
|
|
|
|
|
|
|
while (timeout)
|
|
|
|
{
|
|
|
|
timeout--;
|
|
|
|
stat = REG_MSC_STAT;
|
|
|
|
|
|
|
|
if (stat & MSC_STAT_TIME_OUT_READ)
|
2009-07-01 22:41:33 +00:00
|
|
|
return SD_ERROR_TIMEOUT;
|
2008-11-05 00:24:46 +00:00
|
|
|
else if (stat & MSC_STAT_CRC_READ_ERROR)
|
2009-07-01 22:41:33 +00:00
|
|
|
return SD_ERROR_CRC;
|
2008-11-05 00:24:46 +00:00
|
|
|
else if (!(stat & MSC_STAT_DATA_FIFO_EMPTY)
|
2009-07-01 22:56:14 +00:00
|
|
|
|| (stat & MSC_STAT_DATA_FIFO_AFULL))
|
2008-11-05 00:24:46 +00:00
|
|
|
/* Ready to read data */
|
|
|
|
break;
|
|
|
|
|
|
|
|
udelay(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!timeout)
|
2009-07-01 22:41:33 +00:00
|
|
|
return SD_ERROR_TIMEOUT;
|
2008-11-05 00:24:46 +00:00
|
|
|
|
|
|
|
/* Read data from RXFIFO. It could be FULL or PARTIAL FULL */
|
|
|
|
DEBUG("Receive Data = %d", wblocklen);
|
|
|
|
cnt = wblocklen;
|
|
|
|
while (cnt)
|
|
|
|
{
|
|
|
|
data = REG_MSC_RXFIFO;
|
|
|
|
if (waligned)
|
|
|
|
*wbuf++ = data;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*buf++ = (unsigned char) (data >> 0);
|
|
|
|
*buf++ = (unsigned char) (data >> 8);
|
|
|
|
*buf++ = (unsigned char) (data >> 16);
|
|
|
|
*buf++ = (unsigned char) (data >> 24);
|
|
|
|
}
|
|
|
|
cnt--;
|
|
|
|
while (cnt
|
|
|
|
&& (REG_MSC_STAT &
|
|
|
|
MSC_STAT_DATA_FIFO_EMPTY));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
return SD_NO_ERROR;
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
static int jz_sd_transmit_data(struct sd_request *req)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
|
|
|
unsigned int nob = req->nob;
|
|
|
|
unsigned int wblocklen = (unsigned int) (req->block_len + 3) >> 2; /* length in word */
|
|
|
|
unsigned char *buf = req->buffer;
|
|
|
|
unsigned int *wbuf = (unsigned int *) buf;
|
|
|
|
unsigned int waligned = (((unsigned int) buf & 0x3) == 0); /* word aligned ? */
|
|
|
|
unsigned int stat, timeout, data, cnt;
|
|
|
|
|
|
|
|
for (; nob >= 1; nob--)
|
|
|
|
{
|
|
|
|
timeout = 0x3FFFFFF;
|
|
|
|
|
|
|
|
while (timeout)
|
|
|
|
{
|
|
|
|
timeout--;
|
|
|
|
stat = REG_MSC_STAT;
|
|
|
|
|
|
|
|
if (stat &
|
|
|
|
(MSC_STAT_CRC_WRITE_ERROR |
|
|
|
|
MSC_STAT_CRC_WRITE_ERROR_NOSTS))
|
2009-07-01 22:41:33 +00:00
|
|
|
return SD_ERROR_CRC;
|
2008-11-05 00:24:46 +00:00
|
|
|
else if (!(stat & MSC_STAT_DATA_FIFO_FULL))
|
|
|
|
/* Ready to write data */
|
|
|
|
break;
|
|
|
|
|
|
|
|
udelay(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!timeout)
|
2009-07-01 22:41:33 +00:00
|
|
|
return SD_ERROR_TIMEOUT;
|
2008-11-05 00:24:46 +00:00
|
|
|
|
|
|
|
/* Write data to TXFIFO */
|
|
|
|
cnt = wblocklen;
|
|
|
|
while (cnt)
|
|
|
|
{
|
|
|
|
while (REG_MSC_STAT & MSC_STAT_DATA_FIFO_FULL);
|
|
|
|
|
|
|
|
if (waligned)
|
|
|
|
REG_MSC_TXFIFO = *wbuf++;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
data = *buf++;
|
|
|
|
data |= *buf++ << 8;
|
|
|
|
data |= *buf++ << 16;
|
|
|
|
data |= *buf++ << 24;
|
|
|
|
REG_MSC_TXFIFO = data;
|
|
|
|
}
|
|
|
|
|
|
|
|
cnt--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
return SD_NO_ERROR;
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
2009-07-01 22:56:14 +00:00
|
|
|
#endif
|
2008-11-05 00:24:46 +00:00
|
|
|
|
2009-07-03 11:40:50 +00:00
|
|
|
static inline unsigned int jz_sd_calc_clkrt(unsigned int rate)
|
2009-02-13 00:45:49 +00:00
|
|
|
{
|
|
|
|
unsigned int clkrt;
|
2009-07-03 11:40:50 +00:00
|
|
|
unsigned int clk_src = sd2_0 ? SD_CLOCK_HIGH : SD_CLOCK_FAST;
|
2009-02-13 00:45:49 +00:00
|
|
|
|
|
|
|
clkrt = 0;
|
|
|
|
while (rate < clk_src)
|
|
|
|
{
|
|
|
|
clkrt++;
|
|
|
|
clk_src >>= 1;
|
|
|
|
}
|
|
|
|
return clkrt;
|
|
|
|
}
|
|
|
|
|
2009-07-03 11:40:50 +00:00
|
|
|
static inline void cpm_select_msc_clk(unsigned int rate)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
2009-07-03 11:40:50 +00:00
|
|
|
unsigned int div = __cpm_get_pllout2() / rate;
|
2018-08-30 12:28:19 +00:00
|
|
|
if (div == 0)
|
|
|
|
div = 1;
|
2009-07-03 11:40:50 +00:00
|
|
|
|
2018-10-09 15:36:24 +00:00
|
|
|
REG_CPM_MSCCDR = (div - 1);
|
2009-07-03 11:40:50 +00:00
|
|
|
}
|
2008-11-05 00:24:46 +00:00
|
|
|
|
2009-07-03 11:40:50 +00:00
|
|
|
/* Set the MMC clock frequency */
|
|
|
|
static void jz_sd_set_clock(unsigned int rate)
|
|
|
|
{
|
|
|
|
int clkrt;
|
2008-11-05 00:24:46 +00:00
|
|
|
|
2009-07-03 11:40:50 +00:00
|
|
|
/* select clock source from CPM */
|
|
|
|
cpm_select_msc_clk(rate);
|
|
|
|
|
|
|
|
REG_CPM_CPCCR |= CPM_CPCCR_CE;
|
|
|
|
clkrt = jz_sd_calc_clkrt(rate);
|
|
|
|
REG_MSC_CLKRT = clkrt;
|
|
|
|
|
|
|
|
DEBUG("set clock to %u Hz clkrt=%d", rate, clkrt);
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/********************************************************************************************************************
|
2009-07-01 22:41:33 +00:00
|
|
|
** Name: int jz_sd_exec_cmd()
|
2008-11-05 00:24:46 +00:00
|
|
|
** Function: send command to the card, and get a response
|
2009-07-01 22:41:33 +00:00
|
|
|
** Input: struct sd_request *req: SD request
|
2008-11-05 00:24:46 +00:00
|
|
|
** Output: 0: right >0: error code
|
|
|
|
********************************************************************************************************************/
|
2009-07-01 22:41:33 +00:00
|
|
|
static int jz_sd_exec_cmd(struct sd_request *request)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
|
|
|
unsigned int cmdat = 0, events = 0;
|
|
|
|
int retval, timeout = 0x3fffff;
|
|
|
|
|
|
|
|
/* Indicate we have no result yet */
|
2009-07-01 22:41:33 +00:00
|
|
|
request->result = SD_NO_RESPONSE;
|
2009-02-13 00:45:49 +00:00
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
if (request->cmd == SD_CIM_RESET) {
|
2008-11-05 00:24:46 +00:00
|
|
|
/* On reset, 1-bit bus width */
|
|
|
|
use_4bit = 0;
|
|
|
|
|
|
|
|
/* Reset MMC/SD controller */
|
|
|
|
__msc_reset();
|
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
/* On reset, drop SD clock down */
|
2009-07-03 11:40:50 +00:00
|
|
|
jz_sd_set_clock(MMC_CLOCK_SLOW);
|
2008-11-05 00:24:46 +00:00
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
/* On reset, stop SD clock */
|
|
|
|
jz_sd_stop_clock();
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
2009-07-01 22:41:33 +00:00
|
|
|
if (request->cmd == SD_SET_BUS_WIDTH)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
|
|
|
if (request->arg == 0x2)
|
|
|
|
{
|
|
|
|
DEBUG("Use 4-bit bus width");
|
|
|
|
use_4bit = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DEBUG("Use 1-bit bus width");
|
|
|
|
use_4bit = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* mask all interrupts */
|
2009-02-13 00:45:49 +00:00
|
|
|
//REG_MSC_IMASK = 0xffff;
|
2008-11-05 00:24:46 +00:00
|
|
|
/* clear status */
|
|
|
|
REG_MSC_IREG = 0xffff;
|
|
|
|
/*open interrupt */
|
|
|
|
REG_MSC_IMASK = (~7);
|
|
|
|
/* use 4-bit bus width when possible */
|
|
|
|
if (use_4bit)
|
|
|
|
cmdat |= MSC_CMDAT_BUS_WIDTH_4BIT;
|
|
|
|
|
|
|
|
/* Set command type and events */
|
|
|
|
switch (request->cmd)
|
|
|
|
{
|
2009-07-01 22:41:33 +00:00
|
|
|
/* SD core extra command */
|
|
|
|
case SD_CIM_RESET:
|
2009-02-13 00:45:49 +00:00
|
|
|
cmdat |= MSC_CMDAT_INIT; /* Initialization sequence sent prior to command */
|
2008-11-05 00:24:46 +00:00
|
|
|
break;
|
|
|
|
/* bc - broadcast - no response */
|
2009-07-01 22:41:33 +00:00
|
|
|
case SD_GO_IDLE_STATE:
|
|
|
|
case SD_SET_DSR:
|
2008-11-05 00:24:46 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
/* bcr - broadcast with response */
|
2009-07-01 22:41:33 +00:00
|
|
|
case SD_APP_OP_COND:
|
|
|
|
case SD_ALL_SEND_CID:
|
|
|
|
case SD_GO_IRQ_STATE:
|
2008-11-05 00:24:46 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
/* adtc - addressed with data transfer */
|
2009-07-01 22:41:33 +00:00
|
|
|
case SD_READ_DAT_UNTIL_STOP:
|
|
|
|
case SD_READ_SINGLE_BLOCK:
|
|
|
|
case SD_READ_MULTIPLE_BLOCK:
|
|
|
|
case SD_SEND_SCR:
|
|
|
|
#if defined(SD_DMA_ENABLE)
|
2008-11-05 00:24:46 +00:00
|
|
|
cmdat |=
|
|
|
|
MSC_CMDAT_DATA_EN | MSC_CMDAT_READ | MSC_CMDAT_DMA_EN;
|
|
|
|
#else
|
|
|
|
cmdat |= MSC_CMDAT_DATA_EN | MSC_CMDAT_READ;
|
|
|
|
#endif
|
2009-07-01 22:41:33 +00:00
|
|
|
events = SD_EVENT_RX_DATA_DONE;
|
2008-11-05 00:24:46 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 6:
|
|
|
|
if (num_6 < 2)
|
|
|
|
{
|
2009-07-01 22:41:33 +00:00
|
|
|
#if defined(SD_DMA_ENABLE)
|
2008-11-05 00:24:46 +00:00
|
|
|
cmdat |=
|
|
|
|
MSC_CMDAT_DATA_EN | MSC_CMDAT_READ |
|
|
|
|
MSC_CMDAT_DMA_EN;
|
|
|
|
#else
|
|
|
|
cmdat |= MSC_CMDAT_DATA_EN | MSC_CMDAT_READ;
|
|
|
|
#endif
|
2009-07-01 22:41:33 +00:00
|
|
|
events = SD_EVENT_RX_DATA_DONE;
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
case SD_WRITE_DAT_UNTIL_STOP:
|
|
|
|
case SD_WRITE_BLOCK:
|
|
|
|
case SD_WRITE_MULTIPLE_BLOCK:
|
|
|
|
case SD_PROGRAM_CID:
|
|
|
|
case SD_PROGRAM_CSD:
|
|
|
|
case SD_LOCK_UNLOCK:
|
|
|
|
#if defined(SD_DMA_ENABLE)
|
2008-11-05 00:24:46 +00:00
|
|
|
cmdat |=
|
|
|
|
MSC_CMDAT_DATA_EN | MSC_CMDAT_WRITE | MSC_CMDAT_DMA_EN;
|
|
|
|
#else
|
|
|
|
cmdat |= MSC_CMDAT_DATA_EN | MSC_CMDAT_WRITE;
|
|
|
|
#endif
|
2009-07-01 22:41:33 +00:00
|
|
|
events = SD_EVENT_TX_DATA_DONE | SD_EVENT_PROG_DONE;
|
2008-11-05 00:24:46 +00:00
|
|
|
break;
|
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
case SD_STOP_TRANSMISSION:
|
|
|
|
events = SD_EVENT_PROG_DONE;
|
2008-11-05 00:24:46 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
/* ac - no data transfer */
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set response type */
|
|
|
|
switch (request->rtype)
|
|
|
|
{
|
|
|
|
case RESPONSE_NONE:
|
|
|
|
break;
|
|
|
|
case RESPONSE_R1B:
|
|
|
|
cmdat |= MSC_CMDAT_BUSY;
|
2009-02-13 00:45:49 +00:00
|
|
|
/* FALLTHRU */
|
2008-11-05 00:24:46 +00:00
|
|
|
case RESPONSE_R1:
|
2009-02-13 00:45:49 +00:00
|
|
|
case RESPONSE_R7:
|
2008-11-05 00:24:46 +00:00
|
|
|
cmdat |= MSC_CMDAT_RESPONSE_R1;
|
|
|
|
break;
|
|
|
|
case RESPONSE_R2_CID:
|
|
|
|
case RESPONSE_R2_CSD:
|
|
|
|
cmdat |= MSC_CMDAT_RESPONSE_R2;
|
|
|
|
break;
|
|
|
|
case RESPONSE_R3:
|
|
|
|
cmdat |= MSC_CMDAT_RESPONSE_R3;
|
|
|
|
break;
|
|
|
|
case RESPONSE_R4:
|
|
|
|
cmdat |= MSC_CMDAT_RESPONSE_R4;
|
|
|
|
break;
|
|
|
|
case RESPONSE_R5:
|
|
|
|
cmdat |= MSC_CMDAT_RESPONSE_R5;
|
|
|
|
break;
|
|
|
|
case RESPONSE_R6:
|
|
|
|
cmdat |= MSC_CMDAT_RESPONSE_R6;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set command index */
|
2009-07-01 22:41:33 +00:00
|
|
|
if (request->cmd == SD_CIM_RESET)
|
|
|
|
REG_MSC_CMD = SD_GO_IDLE_STATE;
|
2008-11-05 00:24:46 +00:00
|
|
|
else
|
|
|
|
REG_MSC_CMD = request->cmd;
|
|
|
|
|
|
|
|
/* Set argument */
|
|
|
|
REG_MSC_ARG = request->arg;
|
|
|
|
|
|
|
|
/* Set block length and nob */
|
2009-07-01 22:41:33 +00:00
|
|
|
if (request->cmd == SD_SEND_SCR)
|
2008-11-05 00:24:46 +00:00
|
|
|
{ /* get SCR from DataFIFO */
|
|
|
|
REG_MSC_BLKLEN = 8;
|
|
|
|
REG_MSC_NOB = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
REG_MSC_BLKLEN = request->block_len;
|
|
|
|
REG_MSC_NOB = request->nob;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set command */
|
|
|
|
REG_MSC_CMDAT = cmdat;
|
|
|
|
|
|
|
|
DEBUG("Send cmd %d cmdat: %x arg: %x resp %d", request->cmd,
|
|
|
|
cmdat, request->arg, request->rtype);
|
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
/* Start SD clock and send command to card */
|
|
|
|
jz_sd_start_clock();
|
2008-11-05 00:24:46 +00:00
|
|
|
|
|
|
|
/* Wait for command completion */
|
|
|
|
//__intc_unmask_irq(IRQ_MSC);
|
2011-03-02 08:49:38 +00:00
|
|
|
//semaphore_wait(&sd_wakeup, 100);
|
2008-11-05 00:24:46 +00:00
|
|
|
while (timeout-- && !(REG_MSC_STAT & MSC_STAT_END_CMD_RES));
|
|
|
|
|
|
|
|
|
|
|
|
if (timeout == 0)
|
2009-07-01 22:41:33 +00:00
|
|
|
return SD_ERROR_TIMEOUT;
|
2008-11-05 00:24:46 +00:00
|
|
|
|
|
|
|
REG_MSC_IREG = MSC_IREG_END_CMD_RES; /* clear flag */
|
|
|
|
|
|
|
|
/* Check for status */
|
2009-07-01 22:41:33 +00:00
|
|
|
retval = jz_sd_check_status(request);
|
2008-11-05 00:24:46 +00:00
|
|
|
if (retval)
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
/* Complete command with no response */
|
|
|
|
if (request->rtype == RESPONSE_NONE)
|
2009-07-01 22:41:33 +00:00
|
|
|
return SD_NO_ERROR;
|
2008-11-05 00:24:46 +00:00
|
|
|
|
|
|
|
/* Get response */
|
2009-07-01 22:41:33 +00:00
|
|
|
jz_sd_get_response(request);
|
2008-11-05 00:24:46 +00:00
|
|
|
|
|
|
|
/* Start data operation */
|
2009-07-01 22:41:33 +00:00
|
|
|
if (events & (SD_EVENT_RX_DATA_DONE | SD_EVENT_TX_DATA_DONE))
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
2009-07-01 22:41:33 +00:00
|
|
|
if (events & SD_EVENT_RX_DATA_DONE)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
2009-07-01 22:41:33 +00:00
|
|
|
if (request->cmd == SD_SEND_SCR)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
2020-08-25 18:01:44 +00:00
|
|
|
/* SD card returns SCR register as data.
|
|
|
|
SD core expect it in the response buffer,
|
2008-11-05 00:24:46 +00:00
|
|
|
after normal response. */
|
|
|
|
request->buffer =
|
|
|
|
(unsigned char *) ((unsigned int) request->response + 5);
|
|
|
|
}
|
2009-07-01 22:41:33 +00:00
|
|
|
#ifdef SD_DMA_ENABLE
|
|
|
|
jz_sd_receive_data_dma(request);
|
2008-11-05 00:24:46 +00:00
|
|
|
#else
|
2009-07-01 22:41:33 +00:00
|
|
|
jz_sd_receive_data(request);
|
2008-11-05 00:24:46 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
if (events & SD_EVENT_TX_DATA_DONE)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
2009-07-01 22:41:33 +00:00
|
|
|
#ifdef SD_DMA_ENABLE
|
|
|
|
jz_sd_transmit_data_dma(request);
|
2008-11-05 00:24:46 +00:00
|
|
|
#else
|
2009-07-01 22:41:33 +00:00
|
|
|
jz_sd_transmit_data(request);
|
2008-11-05 00:24:46 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
//__intc_unmask_irq(IRQ_MSC);
|
2011-03-02 08:49:38 +00:00
|
|
|
//semaphore_wait(&sd_wakeup, 100);
|
2008-11-05 00:24:46 +00:00
|
|
|
/* Wait for Data Done */
|
|
|
|
while (!(REG_MSC_IREG & MSC_IREG_DATA_TRAN_DONE));
|
|
|
|
REG_MSC_IREG = MSC_IREG_DATA_TRAN_DONE; /* clear status */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Wait for Prog Done event */
|
2009-07-01 22:41:33 +00:00
|
|
|
if (events & SD_EVENT_PROG_DONE)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
|
|
|
//__intc_unmask_irq(IRQ_MSC);
|
2011-03-02 08:49:38 +00:00
|
|
|
//semaphore_wait(&sd_wakeup, 100);
|
2008-11-05 00:24:46 +00:00
|
|
|
while (!(REG_MSC_IREG & MSC_IREG_PRG_DONE));
|
|
|
|
REG_MSC_IREG = MSC_IREG_PRG_DONE; /* clear status */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Command completed */
|
2020-08-25 18:01:44 +00:00
|
|
|
jz_sd_stop_clock(); /* Stop SD clock since we're done */
|
2008-11-05 00:24:46 +00:00
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
return SD_NO_ERROR; /* return successfully */
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************************************************
|
2009-07-01 22:41:33 +00:00
|
|
|
** Name: int sd_chkcard()
|
2008-11-05 00:24:46 +00:00
|
|
|
** Function: check whether card is insert entirely
|
|
|
|
** Input: NULL
|
|
|
|
** Output: 1: insert entirely 0: not insert entirely
|
|
|
|
********************************************************************************************************************/
|
2009-07-01 22:41:33 +00:00
|
|
|
static int jz_sd_chkcard(void)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
2009-07-01 22:41:33 +00:00
|
|
|
return (SD_INSERT_STATUS() == 0 ? 1 : 0);
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
#if SD_DMA_INTERRUPT
|
|
|
|
static void jz_sd_tx_handler(unsigned int arg)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
|
|
|
if (__dmac_channel_address_error_detected(arg))
|
|
|
|
{
|
|
|
|
DEBUG("%s: DMAC address error.", __FUNCTION__);
|
|
|
|
__dmac_channel_clear_address_error(arg);
|
|
|
|
}
|
|
|
|
if (__dmac_channel_transmit_end_detected(arg))
|
|
|
|
{
|
|
|
|
__dmac_channel_clear_transmit_end(arg);
|
2009-07-01 22:41:33 +00:00
|
|
|
OSSemPost(sd_dma_tx_sem);
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
static void jz_sd_rx_handler(unsigned int arg)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
|
|
|
if (__dmac_channel_address_error_detected(arg))
|
|
|
|
{
|
|
|
|
DEBUG("%s: DMAC address error.", __FUNCTION__);
|
|
|
|
__dmac_channel_clear_address_error(arg);
|
|
|
|
}
|
|
|
|
if (__dmac_channel_transmit_end_detected(arg))
|
|
|
|
{
|
|
|
|
__dmac_channel_clear_transmit_end(arg);
|
2009-07-01 22:41:33 +00:00
|
|
|
OSSemPost(sd_dma_rx_sem);
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* MSC interrupt handler */
|
|
|
|
void MSC(void)
|
|
|
|
{
|
2011-03-02 08:49:38 +00:00
|
|
|
//semaphore_release(&sd_wakeup);
|
2009-02-13 00:45:49 +00:00
|
|
|
logf("MSC interrupt");
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
|
2009-11-26 16:57:30 +00:00
|
|
|
static void sd_gpio_setup_irq(bool inserted)
|
|
|
|
{
|
|
|
|
if(inserted)
|
|
|
|
__gpio_as_irq_rise_edge(MMC_CD_PIN);
|
|
|
|
else
|
|
|
|
__gpio_as_irq_fall_edge(MMC_CD_PIN);
|
|
|
|
}
|
|
|
|
|
2008-11-05 00:24:46 +00:00
|
|
|
/*******************************************************************************************************************
|
2009-07-01 22:41:33 +00:00
|
|
|
** Name: void sd_hardware_init()
|
2008-11-05 00:24:46 +00:00
|
|
|
** Function: initialize the hardware condiction that access sd card
|
|
|
|
** Input: NULL
|
|
|
|
** Output: NULL
|
|
|
|
********************************************************************************************************************/
|
2009-07-01 22:41:33 +00:00
|
|
|
static void jz_sd_hardware_init(void)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
2009-01-27 00:38:58 +00:00
|
|
|
__cpm_start_msc(); /* enable mmc clock */
|
2009-11-26 16:57:30 +00:00
|
|
|
sd_init_gpio(); /* init GPIO */
|
|
|
|
sd_gpio_setup_irq(jz_sd_chkcard());
|
2009-07-01 22:41:33 +00:00
|
|
|
#ifdef SD_POWER_ON
|
|
|
|
SD_POWER_ON(); /* turn on power of card */
|
2008-11-21 12:50:06 +00:00
|
|
|
#endif
|
2009-07-01 22:41:33 +00:00
|
|
|
SD_RESET(); /* reset mmc/sd controller */
|
|
|
|
SD_IRQ_MASK(); /* mask all IRQs */
|
|
|
|
jz_sd_stop_clock(); /* stop SD clock */
|
|
|
|
#ifdef SD_DMA_ENABLE
|
2008-11-21 12:50:06 +00:00
|
|
|
// __cpm_start_dmac();
|
|
|
|
// __dmac_enable_module();
|
2008-11-05 00:24:46 +00:00
|
|
|
// REG_DMAC_DMACR = DMAC_DMACR_DME;
|
2009-07-01 22:41:33 +00:00
|
|
|
#if SD_DMA_INTERRUPT
|
|
|
|
sd_dma_rx_sem = OSSemCreate(0);
|
|
|
|
sd_dma_tx_sem = OSSemCreate(0);
|
|
|
|
request_irq(IRQ_DMA_0 + RX_DMA_CHANNEL, jz_sd_rx_handler,
|
2008-11-05 00:24:46 +00:00
|
|
|
RX_DMA_CHANNEL);
|
2009-07-01 22:41:33 +00:00
|
|
|
request_irq(IRQ_DMA_0 + TX_DMA_CHANNEL, jz_sd_tx_handler,
|
2008-11-05 00:24:46 +00:00
|
|
|
TX_DMA_CHANNEL);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
static int sd_send_cmd(struct sd_request *request, int cmd, unsigned int arg,
|
2008-11-05 00:24:46 +00:00
|
|
|
unsigned short nob, unsigned short block_len,
|
2009-07-01 22:41:33 +00:00
|
|
|
enum sd_rsp_t rtype, unsigned char* buffer)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
|
|
|
request->cmd = cmd;
|
|
|
|
request->arg = arg;
|
|
|
|
request->rtype = rtype;
|
|
|
|
request->nob = nob;
|
|
|
|
request->block_len = block_len;
|
|
|
|
request->buffer = buffer;
|
|
|
|
request->cnt = nob * block_len;
|
2009-02-13 00:45:49 +00:00
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
return jz_sd_exec_cmd(request);
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
static void sd_simple_cmd(struct sd_request *request, int cmd, unsigned int arg,
|
|
|
|
enum sd_rsp_t rtype)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
2009-07-01 22:41:33 +00:00
|
|
|
sd_send_cmd(request, cmd, arg, 0, 0, rtype, NULL);
|
2009-02-13 00:45:49 +00:00
|
|
|
}
|
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
#define SD_INIT_DOING 0
|
|
|
|
#define SD_INIT_PASSED 1
|
|
|
|
#define SD_INIT_FAILED 2
|
|
|
|
static int sd_init_card_state(struct sd_request *request)
|
2009-02-13 00:45:49 +00:00
|
|
|
{
|
2009-07-01 22:41:33 +00:00
|
|
|
struct sd_response_r1 r1;
|
|
|
|
struct sd_response_r3 r3;
|
2009-07-03 11:40:50 +00:00
|
|
|
int retval, i, ocr = 0x40300000, limit_41 = 0;
|
2009-02-13 00:45:49 +00:00
|
|
|
|
|
|
|
switch (request->cmd)
|
|
|
|
{
|
2009-07-01 22:41:33 +00:00
|
|
|
case SD_GO_IDLE_STATE: /* No response to parse */
|
|
|
|
sd_simple_cmd(request, SD_SEND_IF_COND, 0x1AA, RESPONSE_R1);
|
2009-02-13 00:45:49 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SD_SEND_IF_COND:
|
2009-07-01 22:41:33 +00:00
|
|
|
retval = sd_unpack_r1(request, &r1);
|
|
|
|
sd_simple_cmd(request, SD_APP_CMD, 0, RESPONSE_R1);
|
2009-02-13 00:45:49 +00:00
|
|
|
break;
|
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
case SD_APP_CMD:
|
|
|
|
retval = sd_unpack_r1(request, &r1);
|
2009-02-13 00:45:49 +00:00
|
|
|
if (retval & (limit_41 < 100))
|
|
|
|
{
|
2020-08-25 18:01:44 +00:00
|
|
|
DEBUG("sd_init_card_state: unable to SD_APP_CMD error=%d",
|
2009-02-13 00:45:49 +00:00
|
|
|
retval);
|
|
|
|
limit_41++;
|
2009-07-01 22:41:33 +00:00
|
|
|
sd_simple_cmd(request, SD_APP_OP_COND, ocr, RESPONSE_R3);
|
2009-11-26 16:57:30 +00:00
|
|
|
}
|
|
|
|
else if (limit_41 < 100)
|
|
|
|
{
|
2009-07-01 13:56:54 +00:00
|
|
|
limit_41++;
|
2009-07-01 22:41:33 +00:00
|
|
|
sd_simple_cmd(request, SD_APP_OP_COND, ocr, RESPONSE_R3);
|
2009-11-26 16:57:30 +00:00
|
|
|
}
|
|
|
|
else
|
2009-02-13 00:45:49 +00:00
|
|
|
/* reset the card to idle*/
|
2009-07-01 22:41:33 +00:00
|
|
|
sd_simple_cmd(request, SD_GO_IDLE_STATE, 0, RESPONSE_NONE);
|
2009-02-13 00:45:49 +00:00
|
|
|
break;
|
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
case SD_APP_OP_COND:
|
|
|
|
retval = sd_unpack_r3(request, &r3);
|
2009-02-13 00:45:49 +00:00
|
|
|
if (retval)
|
|
|
|
break;
|
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
DEBUG("sd_init_card_state: read ocr value = 0x%08x", r3.ocr);
|
2009-07-03 11:40:50 +00:00
|
|
|
card.ocr = r3.ocr;
|
2009-07-01 17:03:51 +00:00
|
|
|
|
2009-11-26 16:57:30 +00:00
|
|
|
if(!(r3.ocr & SD_CARD_BUSY || ocr == 0))
|
|
|
|
{
|
|
|
|
sleep(HZ / 100);
|
2009-07-01 22:41:33 +00:00
|
|
|
sd_simple_cmd(request, SD_APP_CMD, 0, RESPONSE_R1);
|
2009-02-13 00:45:49 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-11-26 16:57:30 +00:00
|
|
|
/* Set the data bus width to 4 bits */
|
|
|
|
use_4bit = 1;
|
|
|
|
sd_simple_cmd(request, SD_ALL_SEND_CID, 0, RESPONSE_R2_CID);
|
2009-02-13 00:45:49 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2009-07-03 11:40:50 +00:00
|
|
|
case SD_ALL_SEND_CID:
|
|
|
|
for(i=0; i<4; i++)
|
2020-08-25 18:01:44 +00:00
|
|
|
card.cid[i] = ((request->response[1+i*4]<<24) | (request->response[2+i*4]<<16) |
|
2009-11-26 16:57:30 +00:00
|
|
|
(request->response[3+i*4]<< 8) | request->response[4+i*4]);
|
2009-07-03 11:40:50 +00:00
|
|
|
|
|
|
|
logf("CID: %08lx%08lx%08lx%08lx", card.cid[0], card.cid[1], card.cid[2], card.cid[3]);
|
2009-07-01 22:41:33 +00:00
|
|
|
sd_simple_cmd(request, SD_SEND_RELATIVE_ADDR, 0, RESPONSE_R6);
|
2009-02-13 00:45:49 +00:00
|
|
|
break;
|
2009-07-01 22:41:33 +00:00
|
|
|
case SD_SEND_RELATIVE_ADDR:
|
2009-07-03 11:40:50 +00:00
|
|
|
retval = sd_unpack_r6(request, &r1, &card.rca);
|
2020-08-25 18:01:44 +00:00
|
|
|
card.rca = card.rca << 16;
|
2009-11-26 16:57:30 +00:00
|
|
|
DEBUG("sd_init_card_state: Get RCA from SD: 0x%04lx Status: %x", card.rca, r1.status);
|
2009-02-13 00:45:49 +00:00
|
|
|
if (retval)
|
|
|
|
{
|
2020-08-25 18:01:44 +00:00
|
|
|
DEBUG("sd_init_card_state: unable to SET_RELATIVE_ADDR error=%d",
|
2009-02-13 00:45:49 +00:00
|
|
|
retval);
|
2009-07-01 22:41:33 +00:00
|
|
|
return SD_INIT_FAILED;
|
2009-02-13 00:45:49 +00:00
|
|
|
}
|
|
|
|
|
2009-07-03 11:40:50 +00:00
|
|
|
sd_simple_cmd(request, SD_SEND_CSD, card.rca, RESPONSE_R2_CSD);
|
2009-02-13 00:45:49 +00:00
|
|
|
break;
|
2009-07-03 11:40:50 +00:00
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
case SD_SEND_CSD:
|
2009-07-03 11:40:50 +00:00
|
|
|
for(i=0; i<4; i++)
|
2020-08-25 18:01:44 +00:00
|
|
|
card.csd[i] = ((request->response[1+i*4]<<24) | (request->response[2+i*4]<<16) |
|
2009-11-26 16:57:30 +00:00
|
|
|
(request->response[3+i*4]<< 8) | request->response[4+i*4]);
|
2009-07-03 11:40:50 +00:00
|
|
|
|
|
|
|
sd_parse_csd(&card);
|
|
|
|
sd2_0 = (card_extract_bits(card.csd, 127, 2) == 1);
|
2009-02-13 00:45:49 +00:00
|
|
|
|
2009-07-03 11:40:50 +00:00
|
|
|
logf("CSD: %08lx%08lx%08lx%08lx", card.csd[0], card.csd[1], card.csd[2], card.csd[3]);
|
2009-02-13 00:45:49 +00:00
|
|
|
DEBUG("SD card is ready");
|
2009-07-03 11:40:50 +00:00
|
|
|
jz_sd_set_clock(SD_CLOCK_FAST);
|
2009-07-01 22:41:33 +00:00
|
|
|
return SD_INIT_PASSED;
|
2009-11-26 16:57:30 +00:00
|
|
|
|
2009-02-13 00:45:49 +00:00
|
|
|
default:
|
2009-07-01 22:41:33 +00:00
|
|
|
DEBUG("sd_init_card_state: error! Illegal last cmd %d", request->cmd);
|
|
|
|
return SD_INIT_FAILED;
|
2009-02-13 00:45:49 +00:00
|
|
|
}
|
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
return SD_INIT_DOING;
|
2009-02-13 00:45:49 +00:00
|
|
|
}
|
|
|
|
|
2009-07-03 11:40:50 +00:00
|
|
|
static int sd_switch(struct sd_request *request, int mode, int group,
|
2009-02-13 00:45:49 +00:00
|
|
|
unsigned char value, unsigned char * resp)
|
|
|
|
{
|
|
|
|
unsigned int arg;
|
|
|
|
|
|
|
|
mode = !!mode;
|
|
|
|
value &= 0xF;
|
|
|
|
arg = (mode << 31 | 0x00FFFFFF);
|
|
|
|
arg &= ~(0xF << (group * 4));
|
|
|
|
arg |= value << (group * 4);
|
2009-07-01 22:41:33 +00:00
|
|
|
sd_send_cmd(request, 6, arg, 1, 64, RESPONSE_R1, resp);
|
2009-11-26 16:57:30 +00:00
|
|
|
|
2009-02-13 00:45:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Fetches and decodes switch information
|
|
|
|
*/
|
2009-07-01 22:41:33 +00:00
|
|
|
static int sd_read_switch(struct sd_request *request)
|
2009-02-13 00:45:49 +00:00
|
|
|
{
|
|
|
|
unsigned int status[64 / 4];
|
|
|
|
|
|
|
|
memset((unsigned char *)status, 0, 64);
|
2009-07-03 11:40:50 +00:00
|
|
|
sd_switch(request, 0, 0, 1, (unsigned char*) status);
|
2009-11-26 16:57:30 +00:00
|
|
|
|
2009-02-13 00:45:49 +00:00
|
|
|
if (((unsigned char *)status)[13] & 0x02)
|
|
|
|
return 0;
|
2020-08-25 18:01:44 +00:00
|
|
|
else
|
2009-02-13 00:45:49 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Test if the card supports high-speed mode and, if so, switch to it.
|
|
|
|
*/
|
2009-07-01 22:41:33 +00:00
|
|
|
static int sd_switch_hs(struct sd_request *request)
|
2009-02-13 00:45:49 +00:00
|
|
|
{
|
|
|
|
unsigned int status[64 / 4];
|
|
|
|
|
2009-07-03 11:40:50 +00:00
|
|
|
sd_switch(request, 1, 0, 1, (unsigned char*) status);
|
2009-02-13 00:45:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-11-26 16:57:30 +00:00
|
|
|
static int sd_select_card(void)
|
2009-02-13 00:45:49 +00:00
|
|
|
{
|
2009-07-01 22:41:33 +00:00
|
|
|
struct sd_request request;
|
|
|
|
struct sd_response_r1 r1;
|
2009-02-13 00:45:49 +00:00
|
|
|
int retval;
|
|
|
|
|
2009-07-03 11:40:50 +00:00
|
|
|
sd_simple_cmd(&request, SD_SELECT_CARD, card.rca,
|
2009-02-13 00:45:49 +00:00
|
|
|
RESPONSE_R1B);
|
2009-07-01 22:41:33 +00:00
|
|
|
retval = sd_unpack_r1(&request, &r1);
|
2009-02-13 00:45:49 +00:00
|
|
|
if (retval)
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
if (sd2_0)
|
|
|
|
{
|
2009-07-01 22:41:33 +00:00
|
|
|
retval = sd_read_switch(&request);
|
2009-02-13 00:45:49 +00:00
|
|
|
if (!retval)
|
|
|
|
{
|
2009-07-01 22:41:33 +00:00
|
|
|
sd_switch_hs(&request);
|
2009-07-03 11:40:50 +00:00
|
|
|
jz_sd_set_clock(SD_CLOCK_HIGH);
|
2009-02-13 00:45:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
num_6 = 3;
|
2009-07-03 11:40:50 +00:00
|
|
|
sd_simple_cmd(&request, SD_APP_CMD, card.rca,
|
2009-02-13 00:45:49 +00:00
|
|
|
RESPONSE_R1);
|
2009-07-01 22:41:33 +00:00
|
|
|
retval = sd_unpack_r1(&request, &r1);
|
2009-02-13 00:45:49 +00:00
|
|
|
if (retval)
|
|
|
|
return retval;
|
2009-07-01 22:41:33 +00:00
|
|
|
sd_simple_cmd(&request, SD_SET_BUS_WIDTH, 2, RESPONSE_R1);
|
|
|
|
retval = sd_unpack_r1(&request, &r1);
|
2009-02-13 00:45:49 +00:00
|
|
|
if (retval)
|
|
|
|
return retval;
|
2009-07-01 13:56:54 +00:00
|
|
|
|
2009-11-26 16:57:30 +00:00
|
|
|
card.initialized = 1;
|
|
|
|
|
2009-07-01 13:56:54 +00:00
|
|
|
return 0;
|
2009-02-13 00:45:49 +00:00
|
|
|
}
|
|
|
|
|
2020-08-25 11:59:34 +00:00
|
|
|
static int __sd_init_device(void)
|
2009-02-13 00:45:49 +00:00
|
|
|
{
|
|
|
|
int retval;
|
2009-07-01 22:41:33 +00:00
|
|
|
struct sd_request init_req;
|
2009-11-26 16:57:30 +00:00
|
|
|
|
|
|
|
/* Initialise card data as blank */
|
|
|
|
memset(&card, 0, sizeof(tCardInfo));
|
|
|
|
|
|
|
|
sd2_0 = 0;
|
|
|
|
num_6 = 0;
|
|
|
|
use_4bit = 0;
|
|
|
|
|
|
|
|
/* reset mmc/sd controller */
|
|
|
|
jz_sd_hardware_init();
|
|
|
|
|
|
|
|
sd_simple_cmd(&init_req, SD_CIM_RESET, 0, RESPONSE_NONE);
|
|
|
|
sd_simple_cmd(&init_req, SD_GO_IDLE_STATE, 0, RESPONSE_NONE);
|
|
|
|
|
|
|
|
sleep(HZ/2); /* Give the card/controller some rest */
|
|
|
|
|
|
|
|
while((retval = sd_init_card_state(&init_req)) == SD_INIT_DOING);
|
|
|
|
retval = (retval == SD_INIT_PASSED ? sd_select_card() : -1);
|
|
|
|
|
2010-01-03 17:32:15 +00:00
|
|
|
__cpm_stop_msc(); /* disable SD clock */
|
2009-11-26 16:57:30 +00:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
int sd_init(void)
|
|
|
|
{
|
|
|
|
static bool inited = false;
|
2008-11-05 00:24:46 +00:00
|
|
|
if(!inited)
|
|
|
|
{
|
2018-08-30 01:56:10 +00:00
|
|
|
// semaphore_init(&sd_wakeup, 1, 0);
|
2009-11-26 16:57:30 +00:00
|
|
|
mutex_init(&sd_mtx);
|
2008-11-05 00:24:46 +00:00
|
|
|
inited = true;
|
|
|
|
}
|
2009-02-13 00:45:49 +00:00
|
|
|
|
2020-08-25 11:59:34 +00:00
|
|
|
mutex_lock(&sd_mtx);
|
|
|
|
int ret = __sd_init_device();
|
|
|
|
mutex_unlock(&sd_mtx);
|
|
|
|
|
|
|
|
return ret;
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
|
2009-11-26 00:51:09 +00:00
|
|
|
static inline bool card_detect_target(void)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
2009-07-01 22:41:33 +00:00
|
|
|
return (jz_sd_chkcard() == 1);
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tCardInfo* card_get_info_target(int card_no)
|
|
|
|
{
|
2009-02-13 00:45:49 +00:00
|
|
|
(void)card_no;
|
2008-11-05 00:24:46 +00:00
|
|
|
return &card;
|
|
|
|
}
|
|
|
|
|
2010-01-03 17:32:15 +00:00
|
|
|
static inline void sd_start_transfer(void)
|
|
|
|
{
|
|
|
|
mutex_lock(&sd_mtx);
|
|
|
|
__cpm_start_msc();
|
|
|
|
led(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void sd_stop_transfer(void)
|
|
|
|
{
|
|
|
|
led(false);
|
|
|
|
__cpm_stop_msc();
|
|
|
|
mutex_unlock(&sd_mtx);
|
|
|
|
}
|
|
|
|
|
2017-03-15 05:51:54 +00:00
|
|
|
int sd_read_sectors(IF_MD(int drive,) unsigned long start, int count, void* buf)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
2009-03-09 20:41:59 +00:00
|
|
|
#ifdef HAVE_MULTIVOLUME
|
2009-02-13 00:45:49 +00:00
|
|
|
(void)drive;
|
2009-03-09 20:41:59 +00:00
|
|
|
#endif
|
2010-01-03 17:32:15 +00:00
|
|
|
sd_start_transfer();
|
2009-04-08 00:04:51 +00:00
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
struct sd_request request;
|
|
|
|
struct sd_response_r1 r1;
|
2009-11-26 16:57:30 +00:00
|
|
|
int retval = -1;
|
2009-02-13 00:45:49 +00:00
|
|
|
|
2009-07-03 11:40:50 +00:00
|
|
|
if (!card_detect_target() || count == 0 || start > card.numblocks)
|
2009-11-26 16:57:30 +00:00
|
|
|
goto err;
|
|
|
|
|
2020-08-25 11:59:34 +00:00
|
|
|
if(card.initialized == 0 && !__sd_init_device())
|
2009-11-26 16:57:30 +00:00
|
|
|
goto err;
|
|
|
|
|
2009-07-03 11:40:50 +00:00
|
|
|
sd_simple_cmd(&request, SD_SEND_STATUS, card.rca, RESPONSE_R1);
|
2009-07-01 22:41:33 +00:00
|
|
|
retval = sd_unpack_r1(&request, &r1);
|
|
|
|
if (retval && (retval != SD_ERROR_STATE_MISMATCH))
|
2009-11-26 16:57:30 +00:00
|
|
|
goto err;
|
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
sd_simple_cmd(&request, SD_SET_BLOCKLEN, SD_BLOCK_SIZE, RESPONSE_R1);
|
|
|
|
if ((retval = sd_unpack_r1(&request, &r1)))
|
2009-11-26 16:57:30 +00:00
|
|
|
goto err;
|
|
|
|
|
2009-02-13 00:45:49 +00:00
|
|
|
if (sd2_0)
|
|
|
|
{
|
2009-07-01 22:41:33 +00:00
|
|
|
sd_send_cmd(&request, SD_READ_MULTIPLE_BLOCK, start,
|
2009-07-01 21:49:13 +00:00
|
|
|
count, SD_BLOCK_SIZE, RESPONSE_R1, buf);
|
2009-07-01 22:41:33 +00:00
|
|
|
if ((retval = sd_unpack_r1(&request, &r1)))
|
2009-11-26 16:57:30 +00:00
|
|
|
goto err;
|
2009-02-13 00:45:49 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-07-01 22:41:33 +00:00
|
|
|
sd_send_cmd(&request, SD_READ_MULTIPLE_BLOCK,
|
2009-07-01 21:49:13 +00:00
|
|
|
start * SD_BLOCK_SIZE, count,
|
|
|
|
SD_BLOCK_SIZE, RESPONSE_R1, buf);
|
2009-07-01 22:41:33 +00:00
|
|
|
if ((retval = sd_unpack_r1(&request, &r1)))
|
2009-11-26 16:57:30 +00:00
|
|
|
goto err;
|
2009-02-13 00:45:49 +00:00
|
|
|
}
|
2009-11-26 16:57:30 +00:00
|
|
|
|
2009-02-13 00:45:49 +00:00
|
|
|
last_disk_activity = current_tick;
|
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
sd_simple_cmd(&request, SD_STOP_TRANSMISSION, 0, RESPONSE_R1B);
|
|
|
|
if ((retval = sd_unpack_r1(&request, &r1)))
|
2009-11-26 16:57:30 +00:00
|
|
|
goto err;
|
|
|
|
|
|
|
|
err:
|
2010-01-03 17:32:15 +00:00
|
|
|
sd_stop_transfer();
|
2009-04-08 00:04:51 +00:00
|
|
|
|
2009-02-13 00:45:49 +00:00
|
|
|
return retval;
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
|
2013-08-17 16:18:22 +00:00
|
|
|
int sd_write_sectors(IF_MV(int drive,) unsigned long start, int count, const void* buf)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
2009-03-09 20:41:59 +00:00
|
|
|
#ifdef HAVE_MULTIVOLUME
|
2009-02-13 00:45:49 +00:00
|
|
|
(void)drive;
|
2009-03-09 20:41:59 +00:00
|
|
|
#endif
|
2010-01-03 17:32:15 +00:00
|
|
|
sd_start_transfer();
|
2009-04-08 00:04:51 +00:00
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
struct sd_request request;
|
|
|
|
struct sd_response_r1 r1;
|
2009-11-26 16:57:30 +00:00
|
|
|
int retval = -1;
|
2009-02-13 00:45:49 +00:00
|
|
|
|
2009-07-03 11:40:50 +00:00
|
|
|
if (!card_detect_target() || count == 0 || start > card.numblocks)
|
2009-11-26 16:57:30 +00:00
|
|
|
goto err;
|
|
|
|
|
2020-08-25 11:59:34 +00:00
|
|
|
if(card.initialized == 0 && !__sd_init_device())
|
2009-11-26 16:57:30 +00:00
|
|
|
goto err;
|
2009-02-13 00:45:49 +00:00
|
|
|
|
2009-07-03 11:40:50 +00:00
|
|
|
sd_simple_cmd(&request, SD_SEND_STATUS, card.rca, RESPONSE_R1);
|
2009-07-01 22:41:33 +00:00
|
|
|
retval = sd_unpack_r1(&request, &r1);
|
|
|
|
if (retval && (retval != SD_ERROR_STATE_MISMATCH))
|
2009-11-26 16:57:30 +00:00
|
|
|
goto err;
|
2009-02-13 00:45:49 +00:00
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
sd_simple_cmd(&request, SD_SET_BLOCKLEN, SD_BLOCK_SIZE, RESPONSE_R1);
|
|
|
|
if ((retval = sd_unpack_r1(&request, &r1)))
|
2009-11-26 16:57:30 +00:00
|
|
|
goto err;
|
2009-02-13 00:45:49 +00:00
|
|
|
|
|
|
|
if (sd2_0)
|
|
|
|
{
|
2009-07-01 22:41:33 +00:00
|
|
|
sd_send_cmd(&request, SD_WRITE_MULTIPLE_BLOCK, start,
|
2009-07-01 21:49:13 +00:00
|
|
|
count, SD_BLOCK_SIZE, RESPONSE_R1,
|
2009-02-13 00:45:49 +00:00
|
|
|
(void*)buf);
|
2009-07-01 22:41:33 +00:00
|
|
|
if ((retval = sd_unpack_r1(&request, &r1)))
|
2009-11-26 16:57:30 +00:00
|
|
|
goto err;
|
2009-02-13 00:45:49 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-07-01 22:41:33 +00:00
|
|
|
sd_send_cmd(&request, SD_WRITE_MULTIPLE_BLOCK,
|
2009-07-01 21:49:13 +00:00
|
|
|
start * SD_BLOCK_SIZE, count,
|
|
|
|
SD_BLOCK_SIZE, RESPONSE_R1, (void*)buf);
|
2009-07-01 22:41:33 +00:00
|
|
|
if ((retval = sd_unpack_r1(&request, &r1)))
|
2009-11-26 16:57:30 +00:00
|
|
|
goto err;
|
2009-02-13 00:45:49 +00:00
|
|
|
}
|
2009-11-26 16:57:30 +00:00
|
|
|
|
|
|
|
last_disk_activity = current_tick;
|
|
|
|
|
2009-07-01 22:41:33 +00:00
|
|
|
sd_simple_cmd(&request, SD_STOP_TRANSMISSION, 0, RESPONSE_R1B);
|
|
|
|
if ((retval = sd_unpack_r1(&request, &r1)))
|
2009-11-26 16:57:30 +00:00
|
|
|
goto err;
|
2009-02-13 00:45:49 +00:00
|
|
|
|
2009-11-26 16:57:30 +00:00
|
|
|
err:
|
2010-01-03 17:32:15 +00:00
|
|
|
sd_stop_transfer();
|
2009-04-08 00:04:51 +00:00
|
|
|
|
2009-02-13 00:45:49 +00:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
long sd_last_disk_activity(void)
|
|
|
|
{
|
|
|
|
return last_disk_activity;
|
|
|
|
}
|
|
|
|
|
2009-07-17 22:28:49 +00:00
|
|
|
int sd_spinup_time(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void sd_enable(bool on)
|
|
|
|
{
|
|
|
|
(void)on;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool sd_disk_is_active(void)
|
|
|
|
{
|
2010-05-21 15:33:31 +00:00
|
|
|
return false;
|
2009-07-17 22:28:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int sd_soft_reset(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-02-13 00:45:49 +00:00
|
|
|
#ifdef HAVE_HOTSWAP
|
2017-03-15 05:51:54 +00:00
|
|
|
bool sd_removable(IF_MD_NONVOID(int drive))
|
2009-02-13 00:45:49 +00:00
|
|
|
{
|
2009-03-09 20:41:59 +00:00
|
|
|
#ifdef HAVE_MULTIVOLUME
|
2009-02-13 00:45:49 +00:00
|
|
|
(void)drive;
|
2009-03-09 20:41:59 +00:00
|
|
|
#endif
|
2009-11-26 16:57:30 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sd_oneshot_callback(struct timeout *tmo)
|
|
|
|
{
|
|
|
|
int state = card_detect_target();
|
|
|
|
|
|
|
|
/* This is called only if the state was stable for 300ms - check state
|
|
|
|
* and post appropriate event. */
|
2017-03-15 05:51:54 +00:00
|
|
|
queue_broadcast(state ? SYS_HOTSWAP_INSERTED : SYS_HOTSWAP_EXTRACTED,
|
|
|
|
sd_drive_nr);
|
2009-11-26 16:57:30 +00:00
|
|
|
|
|
|
|
sd_gpio_setup_irq(state);
|
|
|
|
return 0;
|
2017-03-15 05:51:54 +00:00
|
|
|
(void)tmo;
|
2009-11-26 16:57:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* called on insertion/removal interrupt */
|
|
|
|
void MMC_CD_IRQ(void)
|
|
|
|
{
|
|
|
|
static struct timeout sd_oneshot;
|
|
|
|
timeout_register(&sd_oneshot, sd_oneshot_callback, (3*HZ/10), 0);
|
2009-02-13 00:45:49 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
bool sd_present(IF_MV_NONVOID(int drive))
|
|
|
|
{
|
2009-07-20 13:47:21 +00:00
|
|
|
#ifdef HAVE_MULTIDRIVE
|
2009-02-13 00:45:49 +00:00
|
|
|
(void)drive;
|
2009-03-09 20:41:59 +00:00
|
|
|
#endif
|
2009-07-20 13:47:21 +00:00
|
|
|
return card_detect_target();
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
2009-07-17 22:28:49 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_STORAGE_MULTI
|
|
|
|
int sd_num_drives(int first_drive)
|
|
|
|
{
|
2009-11-26 16:57:30 +00:00
|
|
|
sd_drive_nr = first_drive;
|
2009-07-17 22:28:49 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif
|
2009-11-26 16:57:30 +00:00
|
|
|
|
2017-03-15 05:51:54 +00:00
|
|
|
int sd_event(long id, intptr_t data)
|
2009-11-26 16:57:30 +00:00
|
|
|
{
|
2017-03-15 05:51:54 +00:00
|
|
|
int rc = 0;
|
2009-11-26 16:57:30 +00:00
|
|
|
|
2017-03-15 05:51:54 +00:00
|
|
|
switch (id)
|
2009-11-26 16:57:30 +00:00
|
|
|
{
|
|
|
|
#ifdef HAVE_HOTSWAP
|
2017-03-15 05:51:54 +00:00
|
|
|
case SYS_HOTSWAP_INSERTED:
|
|
|
|
case SYS_HOTSWAP_EXTRACTED:
|
|
|
|
mutex_lock(&sd_mtx); /* lock-out card activity */
|
|
|
|
/* Force card init for new card, re-init for re-inserted one or
|
|
|
|
* clear if the last attempt to init failed with an error. */
|
|
|
|
card.initialized = 0;
|
|
|
|
mutex_unlock(&sd_mtx);
|
|
|
|
break;
|
Rewrite filesystem code (WIP)
This patch redoes the filesystem code from the FAT driver up to the
clipboard code in onplay.c.
Not every aspect of this is finished therefore it is still "WIP". I
don't wish to do too much at once (haha!). What is left to do is get
dircache back in the sim and find an implementation for the dircache
indicies in the tagcache and playlist code or do something else that
has the same benefit. Leaving these out for now does not make anything
unusable. All the basics are done.
Phone app code should probably get vetted (and app path handling
just plain rewritten as environment expansions); the SDL app and
Android run well.
Main things addressed:
1) Thread safety: There is none right now in the trunk code. Most of
what currently works is luck when multiple threads are involved or
multiple descriptors to the same file are open.
2) POSIX compliance: Many of the functions behave nothing like their
counterparts on a host system. This leads to inconsistent code or very
different behavior from native to hosted. One huge offender was
rename(). Going point by point would fill a book.
3) Actual running RAM usage: Many targets will use less RAM and less
stack space (some more RAM because I upped the number of cache buffers
for large memory). There's very little memory lying fallow in rarely-used
areas (see 'Key core changes' below). Also, all targets may open the same
number of directory streams whereas before those with less than 8MB RAM
were limited to 8, not 12 implying those targets will save slightly
less.
4) Performance: The test_disk plugin shows markedly improved performance,
particularly in the area of (uncached) directory scanning, due partly to
more optimal directory reading and to a better sector cache algorithm.
Uncached times tend to be better while there is a bit of a slowdown in
dircache due to it being a bit heavier of an implementation. It's not
noticeable by a human as far as I can say.
Key core changes:
1) Files and directories share core code and data structures.
2) The filesystem code knows which descriptors refer to same file.
This ensures that changes from one stream are appropriately reflected
in every open descriptor for that file (fileobj_mgr.c).
3) File and directory cache buffers are borrowed from the main sector
cache. This means that when they are not in use by a file, they are not
wasted, but used for the cache. Most of the time, only a few of them
are needed. It also means that adding more file and directory handles
is less expensive. All one must do in ensure a large enough cache to
borrow from.
4) Relative path components are supported and the namespace is unified.
It does not support full relative paths to an implied current directory;
what is does support is use of "." and "..". Adding the former would
not be very difficult. The namespace is unified in the sense that
volumes may be specified several times along with relative parts, e.g.:
"/<0>/foo/../../<1>/bar" :<=> "/<1>/bar".
5) Stack usage is down due to sharing of data, static allocation and
less duplication of strings on the stack. This requires more
serialization than I would like but since the number of threads is
limited to a low number, the tradoff in favor of the stack seems
reasonable.
6) Separates and heirarchicalizes (sic) the SIM and APP filesystem
code. SIM path and volume handling is just like the target. Some
aspects of the APP file code get more straightforward (e.g. no path
hashing is needed).
Dircache:
Deserves its own section. Dircache is new but pays homage to the old.
The old one was not compatible and so it, since it got redone, does
all the stuff it always should have done such as:
1) It may be update and used at any time during the build process.
No longer has one to wait for it to finish building to do basic file
management (create, remove, rename, etc.).
2) It does not need to be either fully scanned or completely disabled;
it can be incomplete (i.e. overfilled, missing paths), still be
of benefit and be correct.
3) Handles mounting and dismounting of individual volumes which means
a full rebuild is not needed just because you pop a new SD card in the
slot. Now, because it reuses its freed entry data, may rebuild only
that volume.
4) Much more fundamental to the file code. When it is built, it is
the keeper of the master file list whether enabled or not ("disabled"
is just a state of the cache). Its must always to ready to be started
and bind all streams opened prior to being enabled.
5) Maintains any short filenames in OEM format which means that it does
not need to be rebuilt when changing the default codepage.
Miscellaneous Compatibility:
1) Update any other code that would otherwise not work such as the
hotswap mounting code in various card drivers.
2) File management: Clipboard needed updating because of the behavioral
changes. Still needs a little more work on some finer points.
3) Remove now-obsolete functionality such as the mutex's "no preempt"
flag (which was only for the prior FAT driver).
4) struct dirinfo uses time_t rather than raw FAT directory entry
time fields. I plan to follow up on genericizing everything there
(i.e. no FAT attributes).
5) unicode.c needed some redoing so that the file code does not try
try to load codepages during a scan, which is actually a problem with
the current code. The default codepage, if any is required, is now
kept in RAM separarately (bufalloced) from codepages specified to
iso_decode() (which must not be bufalloced because the conversion
may be done by playback threads).
Brings with it some additional reusable core code:
1) Revised file functions: Reusable code that does things such as
safe path concatenation and parsing without buffer limitations or
data duplication. Variants that copy or alter the input path may be
based off these.
To do:
1) Put dircache functionality back in the sim. Treating it internally
as a different kind of file system seems the best approach at this
time.
2) Restore use of dircache indexes in the playlist and database or
something effectively the same. Since the cache doesn't have to be
complete in order to be used, not getting a hit on the cache doesn't
unambiguously say if the path exists or not.
Change-Id: Ia30f3082a136253e3a0eae0784e3091d138915c8
Reviewed-on: http://gerrit.rockbox.org/566
Reviewed-by: Michael Sevakis <jethead71@rockbox.org>
Tested: Michael Sevakis <jethead71@rockbox.org>
2013-08-06 02:02:45 +00:00
|
|
|
#endif /* HAVE_HOTSWAP */
|
2017-03-15 05:51:54 +00:00
|
|
|
default:
|
|
|
|
rc = storage_event_default_handler(id, data, last_disk_activity,
|
|
|
|
STORAGE_SD);
|
|
|
|
break;
|
2009-11-26 16:57:30 +00:00
|
|
|
}
|
2017-03-15 05:51:54 +00:00
|
|
|
|
|
|
|
return rc;
|
2009-11-26 16:57:30 +00:00
|
|
|
}
|