基于eCos系統(tǒng)的SPCE3200中SD卡驅(qū)動(dòng)程序的開發(fā)
4 編寫SD卡設(shè)備表入口
配置好CDL文件后,便可編寫設(shè)備I/O函數(shù)表宏以及設(shè)備表入口宏,分別如下:
BLOCK_DEVIO_TABLE(sd_spce3200_handlers, // I/O 函數(shù)表的標(biāo)識(shí)
sd_WriteSector, //SD卡寫操作函數(shù)
sd_ReadSector, //SD卡讀操作函數(shù)
NULL, //選擇函數(shù),SD 卡驅(qū)動(dòng)不需要支持
sd_get_config, //讀SD卡配置狀態(tài)函數(shù)
sd_set_config //SD卡配置函數(shù)
);
BLOCK_DEVTAB_ENTRY(sd_spce3200_device, //SD卡驅(qū)動(dòng)入口標(biāo)識(shí)
CYGDAT_DEVS_SD_SPCE3200_NAME, //SD卡驅(qū)動(dòng)的名稱,在cdl文件里定義
NULL, //SD卡驅(qū)動(dòng)不依賴于其他設(shè)備
sd_spce3200_handlers, //SD 卡設(shè)備 I/O 函數(shù)表標(biāo)識(shí)
SD_Initial, //SD 卡初始化函數(shù)
0, //SD卡查找函數(shù)
0 //SD卡驅(qū)動(dòng)的私有指針
);
5 實(shí)現(xiàn)SD卡設(shè)備接口函數(shù)
接下來需要實(shí)現(xiàn)上面提到的幾個(gè)接口函數(shù),這些函數(shù)是上層訪問硬件設(shè)備的唯一通道。在凌陽科技提供的sd_card_driver_spce3200.c文件中包含了SD卡初始化、讀寫操作等函數(shù)[6],它們分別為:SD卡初始化函數(shù)int __SDDrv_SDDrv_Initial__(void)、SD卡扇區(qū)寫操作函數(shù)int _SDDrv_SDDrv_WriteSector_ (unsigned int block, unsigned int blocknum, unsigned char *outaddr)、SD卡扇區(qū)讀操作函數(shù)int _SDDrv_SDDrv_ReadSector_ (unsigned int block, unsigned int blocknum, unsigned char *buf)。
但這些函數(shù)都不是基于操作系統(tǒng)的,而是SD卡的基本操作函數(shù)。需要將它們封裝成eCos操作系統(tǒng)下的驅(qū)動(dòng)程序。這就需要用到凌陽科技提供的SD卡設(shè)備驅(qū)動(dòng)接口函數(shù),包括SD卡設(shè)備批量寫操作函數(shù)sd_WriteSector()、SD卡設(shè)備批量讀操作函數(shù)sd_ReadSector()、SD卡讀設(shè)備配置狀態(tài)函數(shù)sd_get_config()、SD卡設(shè)備設(shè)置函數(shù)sd_set_config()[7]。
完整的SD設(shè)備驅(qū)動(dòng)源程序文件的代碼如下:
//--------文件名:sd_spce3200.c------------//
//----------包含相關(guān)頭文件-------------//
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
//-------------驅(qū)動(dòng)函數(shù)實(shí)現(xiàn)--------------// 本文引用地址:http://www.ex-cimer.com/article/152463.htm
static bool sd_init(struct cyg_devtab_entry* tab)
{
bool InitResult = true;
if(__SDDrv_SDDrv_Initial( )==0
InitResul=true;
else
InitResult=false;
returen(InitResult);
}
static int sd_WriteSector(void* disk, const void* buf_arg, cyg_uint32 *blocks, cyg_uint32 first_block)
{
cyg_intret=ENOERR;
ret=__SDDrv_SDDrv_WriteSector__(first_block,*blocks,(cyg_uint8 *)buf_arg); (1)
return ret;
}
static int sd_ReadSector(void* disk, void* buf_arg, cyg_uint32 *blocks, cyg_uint32 first_block)
{
cyg_int32 ret = ENOERR;
ret = __SDDrv_SDDrv_ReadSector__(first_block,*blocks,(cyg_uint8*)buf_arg); (1)
return ret;
}
評(píng)論