版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
Linuxspi驅(qū)動開發(fā)
下面的代碼和處理器沒有太大關(guān)系,這也是spi子系統(tǒng)的分層特點。#include#include#include<linux/spi/spi.h>#include<linux/init.h>#include<linux/module.h>#include<linux/device.h>#include<linux/interrupt.h>#include<linux/mutex.h>#include<linux/slab.h>//#include#define/*FlashOperatingCommands #defineCMD_WRITE_ENABLE #define#define/*StatusRegisterbits.#define /*Writeinprogress#define /*Writeenablelatch/*IDNumbers#define#define/*Definemaxtimestocheckstatusregisterbeforewegiveup.#define #defineCMD_SZstructm25p10astruct struct cmd[CMD_SZInternalHelperReadthestatusregister,returningitsvalueintheReturnthestatusregisterReturnsnegativeiferrorstaticintread_sr(structm25p10a{ssize_tu8code=CMD_RDSR;u8val;retval=spi_write_then_read(flash->spi,&code,1,&val,1);if(retval<0){dev_err(&flash->spi->dev,"error%dreading(int)retval);returnretval;}return}Serviceroutinetoreadstatusregisteruntilready,ortimeoutReturnsnon-zeroifstaticintwait_till_ready(structm25p10a{intsr;/*onechipguaranteesmax5msecwaithereafterpage*butpotentiallythreeseconds(!)afterpagefor(count=0;count<MAX_READY_WAIT_COUNT;{if((sr=read_sr(flash))<elseif(!(sr&SR_WIP))return0;/*REVISITsometimes wouldbebest}printk("in(%s):count=%d\n",countreturn}SetwriteenablelatchwithWriteEnableReturnsnegativeiferrorstaticinlineintwrite_enable(structm25p10a*flash{flash->cmd[0]=returnspi_write(flash->spi,flash->cmd,1}ErasethewholeflashReturns0ifsuccessful,non-zerostaticinterase_chip(structm25p10a*flash{/*Waituntilfinishedpreviouswritecommand.*/if(wait_till_ready(flash))return-/*Sendwriteenable,thenerasecommands.*/write_enable(flash);flash->cmd[0]=returnspi_write(flash->spi,flash->cmd,1}Readanaddressrangefromtheflashchip.Theaddressmaybeanysizeprovideditiswithinthephysicalstaticintm25p10a_read(structm25p10a*flash,loff_tfrom,size_tlen,char*buf){intr_count=0,flash->cmd[0]=CMD_READ_BYTES;flash->cmd[1]=from>>16;flash->cmd[2]=from>>8;flash->cmd[3]=from;#ifstructspi_transferst[2];structspi_messagemsg;spi_message_init(&msg);memset(st,0,sizeof(st));flash->cmd[0]=CMD_READ_BYTES;flash->cmd[1]=from>>16;flash->cmd[2]=from>>8;flash->cmd[3]=from;st[0].tx_buf=flash->cmd;st[0].len=CMD_SZ;spi_message_add_tail(&st[0],&msgst[1].rx_buf=buf;st[1].len=len;spi_message_add_tail(&st[1],&msg);mutex_lock(&flash->lock);/*Waituntilfinishedpreviouswritecommand.*/if(wait_till_ready(flash)){mutex_unlock(&flash->lock);return-1;}spi_sync(flash->spi,&msg);r_count=msg.actual_length-CMD_SZ;printk("in(%s):read%dbytes\n",for(i=0;i<r_count;i++){printk("0x%02x\n",buf[i]
func,r_count}mutex_unlock(&flash->lockreturn}Writeanaddressrangetotheflashchip.DatamustbewrittenFLASH_PAGE_SIZEchunks.Theaddressrangemaybeanysizeitiswithinthephysicalstaticintm25p10a_write(structm25p10a*flash,loff_tto,size_tlen,constchar*buf){intw_count=0,i,page_offset;structspi_transferst[2];structspi_messagemsg;#ifif(wait_till_ready(flash)){ mutex_unlock(&flash->lock);return-}write_enable(flashspi_message_init(&msg);memset(st,0,sizeof(st));flash->cmd[0]=CMD_PAGE_PROGRAM;flash->cmd[1]=to>>16;flash->cmd[2]=to>>8;flash->cmd[3]=to;st[0].tx_buf=flash->cmd;st[0].len=CMD_SZ;spi_message_add_tail(&st[0],&msgst[1].tx_buf=buf;st[1].len=len;spi_message_add_tail(&st[1],&msg);mutex_lock(&flash->lock);/*getoffsetaddressinsideapage*/page_offset=to%FLASH_PAGE_SIZE;/*doallthebytesfitontoonepage?if(page_offset+len<=FLASH_PAGE_SIZE){ st[1].len=len;printk("%d,cmd=%d\n",st[1].len,*(char{spi_sync(flash->spi,&msg}w_count=msg.actual_length-}else{//}printk("in(%s):write%dbytestoflashintotal\n",mutex_unlock(&flash->lock);return}
func,w_countstaticintcheck_id(structm25p10a*flash{charbuf[10]=flash->cmd[0]=spi_write_then_read(flash->spi,flash->cmd,1,buf,3);printk("ManufactureID:0x%x\n",buf[0]);printk("DeviceID:0x%x\n",buf[1]|buf[2]<<8);returnbuf[2]<<16|buf[1]<<8|buf[0];}staticintm25p10a_probe(structspi_device{intret=structm25p10a*flash;charbuf[256];printk("%swas flash=kzalloc(sizeof(structm25p10a),GFP_KERNEL);if(!flash){return-}flash->spi=spi;mutex_init(&flash->lock);/*saveflashasdriver'sprivatedata*/spi_set_drvdata(spi,flash);check_id(flash #ifreterase_chip(flash);//擦除if(ret<0){printk("erasetheentirelychipfailed\n"}printk("erasethewholechipdone\n");memset(buf,0x7,256);m25p10a_write(flash,0,20buf);/020memset(buf,0,256m25p10a_rea
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2024年臨時工派遣合同樣本
- 信托公司委托貸款合同
- 纜索吊機租賃合同樣本
- 標準家教服務合同范本
- 2024標準附期限借款合同樣本
- 2024模板采購合同范本
- 2024工程裝修簡易合同樣本
- 物業(yè)租賃合同模板
- 技術(shù)服務合同中的保密義務與條款
- 建材產(chǎn)品購銷協(xié)議樣本
- 民法典講座-繼承篇
- 外包施工單位入廠安全培訓(通用)
- 糖尿病健康知識宣教課件
- 客戶接觸點管理課件
- Python語言學習通超星課后章節(jié)答案期末考試題庫2023年
- 醫(yī)學-心臟驟停急救培訓-心臟驟停急救教學課件
- 高中英語-Book 1 Unit 4 Click for a friend教學課件設計
- 年產(chǎn)30萬噸碳酸鈣粉建設項目可行性研究報告
- 主題班會如何對待厭學情緒(初二) 省賽獲獎 省賽獲獎
- 初中數(shù)學北師大版七年級上冊課件5-4 應用一元一次方程-打折銷售
- 0-6歲兒童健康管理服務規(guī)范(第三版)
評論
0/150
提交評論