W25Q256驱动代码,4地址模式。

2019-08-23 15:51发布

上一个W25Q256的驱动和与FAT接口的代码。可用!
#include <USE.h>
#include "W25Q256.h"
#include "lpc1700.h"
//-------------------------------------------------------------------------------------------------------
/* 宏,用于定义SST25VF016B的片选引脚 */
#define SPI_FLASH_CS_LOW()       FIO0PIN &= ~(1 << 6 )
#define SPI_FLASH_CS_HIGH()      FIO0PIN |=  (1 << 6 )
#define SPI_RST1         (1<<28)
//********************************************************************************************************************
#define SPI_RST(x)  FIO4DIR |=SPI_RST1;((x>0)?  (FIO4PIN |=SPI_RST1 ) FIO4PIN &= ~SPI_RST1));
//********************************************************************************************************************
#define SPI_FLASH_CS(x) ((x>0)?  (SPI_FLASH_CS_HIGH()) : (SPI_FLASH_CS_LOW()))//设置1,0
//********************************************************************************************************************
void W25Q256_SPI_RST(void){
SPI_RST(1);
SPI_RST(0);
tDelay(0.01);
SPI_RST(1);
}
//***************************************************************
unsigned char  Flash_ReadWriteByte(unsigned char  data){
SSP1DR = data;
while (SSP1SR & BSY);                 /* Wait for transfer to finish */
return (SSP1DR);                      /* Return received value       */
}
//********************************************************************************************************************
//上电后软件复位芯片
//********************************************************************************************************************
void W25q256_Reset_With_Soft(void){
  SPI_FLASH_CS(0);                             //使能器件
  Flash_ReadWriteByte(W25Q256_ENABLE_RESET);   //发送允许复位命令
  SPI_FLASH_CS(1);                            //取消片选   
  SPI_FLASH_CS(0);                             //使能器件
  Flash_ReadWriteByte(W25Q256_RESET_DEVICE);   //发送允许复位命令
  SPI_FLASH_CS(1);                             //取消片选   
}
//****************************************************************************
//进入4字节地址模式
//****************************************************************************
void W25Q256_Enable_4_Addres(void){
SPI_FLASH_CS(0);                                    //使能器件  
Flash_ReadWriteByte(W25Q256_Enter_4_Addres);           //发送写使能
SPI_FLASH_CS(1);                                    //取消片选               
}
//****************************************************************************
//退出4字节地址模式
//****************************************************************************
void W25Q256_Exit_4_Addres(void){
SPI_FLASH_CS(0);                                    //使能器件  
Flash_ReadWriteByte(W24Q256_Exit_4_Addres );           //发送写使能
SPI_FLASH_CS(1);                                    //取消片选               
}/********************************************************************************************************************
* Function Name  : SPI_FLASH_Init
* Description    : 初始化控制SSI的管脚
* Input          : None
* Output         : None
* Return         : None
* Attention   : None
*******************************************************************************/
void SPI_FLASH_Init(void){
unsigned int W25Q256_ID;
SPI_Init (SSP1_PORT);
W25Q256_SPI_RST();      //硬件复位!
W25q256_Reset_With_Soft();  //软件复位!
W25Q256_ID=W25Q256_ReadID();
if( W25Q256_ID==FLASH_ID){
  W25Q256_ID=W25Q256_Read_StatusReg(W25Q256_ReadStatusReg3); //检测地址模式!
  if(W25Q256_ID & 0x01){ //已经是4地址模式
   
  }else{
   //W25Q256_Page_Program_SR(0x02); //使能状态寄存器中的写存储器
  }
   W25Q256_Enable_4_Addres();//无论什么模式均进入4字节地址模式!
}
}
//******************************************************************************
void SPI_Lock(unsigned char lock){
;//SPI_WP(lock);
}
//******************************************************************************
//unsigned char JB_WP(void){
// unsigned int i;

// i= FIO4PIN & SPI_WP1;
// if(i) return UNLOCK;
// return LOCK;    //测试采用UNLOCK
//}
//**********************************************************************************************
//修改状态寄存器,允许芯片存储器被写
unsigned char W25Q256_SPI_Flash_Init(void){
//unsigned int W25Q256_ID;
// SPI1_Config();               //初始化SPI
// W25Q256_ReadID();
// W25Q256_Page_Program_SR(0x02); //使能状态寄存器中的写存储器
  return 0;                    //0k
}
//***************************************************************
//读取SPI_FLASH的状态寄存器
//BIT7  6   5   4   3   2   1   0
//SPR   RV  TB BP2 BP1 BP0 WEL BUSY
//SPR:默认0,状态寄存器保护位,配合WP使用
//TB,BP2,BP1,BP0:FLASH区域写保护设置
//WEL:写使能锁定
//BUSY:忙标记位(1,忙;0,空闲)
//默认:0x00
unsigned char W25Q256_Read_StatusReg(unsigned char command){
unsigned char byte=0;
  SPI_FLASH_CS(0);                            //使能器件
  Flash_ReadWriteByte(command);   //发送读取状态寄存器命令   
  byte=Flash_ReadWriteByte(0Xff);             //读取一个字节
  SPI_FLASH_CS(1);                            //取消片选   
  return byte;  
}
//*************************************************************************
//写SPI_FLASH状态寄存器
//只有SPR,TB,BP2,BP1,BP0(bit 7,5,4,3,2)可以写!!!
//BPL AAI BP3 BP2 BP1 BP0    WEL BUSY
// 0  0    0                  X    X
//**************************************************************************
void W25Q256_Page_Program_SR(unsigned char sr){
  SPI_FLASH_CS(0);    //片选
  Flash_ReadWriteByte(W25Q256_EnableWriteStatusReg);  //使能写状态寄存器命令  
  SPI_FLASH_CS(1);    //取消片选
  SPI_FLASH_CS(0);    //片选                        
  Flash_ReadWriteByte(W25Q256_WriteStatusReg);        //发送写取状态寄存器命令   
  Flash_ReadWriteByte(sr);                         //写入一个字节 命令!!
  SPI_FLASH_CS(1);                                  //取消片选     
  W25Q256_Wait_Busy();
}  
//****************************************************************************
//SPI_FLASH写使能
//将WEL置位  
void W25Q256_Page_Program_Enable(void){
SPI_FLASH_CS(0);                                  //使能器件  
Flash_ReadWriteByte(W25Q256_WriteEnable);           //发送写使能
SPI_FLASH_CS(1);                                  //取消片选               
}
//****************************************************************************
//SPI_FLASH写禁止
//将WEL清零
//BPL AAI BP3 BP2 BP1 BP0 WEL BUSY
void W25Q256_Page_Program_Disable(void){
SPI_FLASH_CS(0);                             //使能器件  
Flash_ReadWriteByte(W25Q256_WriteDisable);     //发送写禁止指令   
SPI_FLASH_CS(1);                             //取消片选   
}                             
//*********************************************************************************
//发送程序 COM=命令;adr=地址 全部采用4字节地址发送!!!
void SPI_SendAdrOut(unsigned char com,unsigned int adr){
Flash_ReadWriteByte(com);                      /* 发送字节数据烧写命令 */
Flash_ReadWriteByte(adr >> 24);   /* 发送4个字节的地址信息 */
Flash_ReadWriteByte(adr >> 16);   /* 发送4个字节的地址信息 */
Flash_ReadWriteByte(adr >> 8);
Flash_ReadWriteByte(adr >> 0);
}
//****************************************************************************
//读取芯片ID SST25VF016的是 0XBF41  sst25vf064_ID=bf4b
//文帮的是0xEF17
unsigned int W25Q256_ReadID(void){
unsigned int Temp = 0;      
SPI_FLASH_CS(0);   
//SPI_SendAdrOut(W25Q256_ManufactDeviceID,0);      
Flash_ReadWriteByte(W25Q256_ManufactDeviceID);  //发送读取ID命令
//读取返回的24位值
Temp =Flash_ReadWriteByte(0xFF)<<16;            //高8位数据
Temp +=Flash_ReadWriteByte(0xFF)<<8;              //底八位数据
Temp +=Flash_ReadWriteByte(0xFF);                //底八位数据
SPI_FLASH_CS(1);
return Temp;
}
//****************************************************************************
//读取SPI FLASH
//在指定地址开始读取指定长度的数据
//pBuffer:数据存储区
//ReadAddr:开始读取的地址(24bit)
//NumByteToRead:要读取的字节数(最大65535即64k)
unsigned int W25Q256_Page_Read(unsigned int ReadAddr,unsigned char* pBuffer,unsigned int NumByteToRead){
unsigned int i;   
//计算物理地址?? 2014-1-20
//if ((ReadAddr+NumByteToRead) >(W25Q256_MAX_SECTORS*W25Q256_SECTOR_SIZE)) return 5;  //地址错误!
SPI_FLASH_CS(0);                               //使能器件  
SPI_SendAdrOut(W25Q256_FastReadData,ReadAddr);   //发送读取命令 W25Q256_Read_4_Addres
// SPI_SendAdrOut(W25Q256_Read_4_Addres,ReadAddr);   //发送读取命令 W25Q256_Read_4_Addres
Flash_ReadWriteByte(0XFF);              //发送一个哑数据!
for(i=0;i<NumByteToRead;i++)  pBuffer[i]=Flash_ReadWriteByte(0XFF);   //循环读数
SPI_FLASH_CS(1);                            //取消片选      
return 0;
}
//****************************************************************************
//写入扇区已经擦除干净, NumByteToWrite 最好是8,16,32,64,128,256
//pBuffer:为待写数据组
//WriteAddr:所写数据的起始地址
//NumByteToWrite:所要写的数据的长度
unsigned int W25Q256_Page_Write(unsigned char* pBuffer,unsigned int WriteAddr,unsigned int NumByteToWrite){
unsigned int i;

if(NumByteToWrite==0) return 0;
W25Q256_Page_Program_Enable();                  //SET WEL
SPI_FLASH_CS(0);
SPI_SendAdrOut(W25Q256_ByteProgram,WriteAddr);     //发送写页命令
//发送待写的数据
for(i=0;i<NumByteToWrite;i++)  Flash_ReadWriteByte(*pBuffer++);
SPI_FLASH_CS(1);
W25Q256_Page_Program_Disable();
W25Q256_Wait_Busy();//等待写完成
return NumByteToWrite;
}
//****************************************************************************
//写入扇区已经擦除干净, NumByteToWrite 最好是8,16,32,64,128,256
//pBuffer:为待写数据组
//WriteAddr:所写数据的起始地址
//NumByteToWrite:所要写的数据的长度
unsigned int  W25Q256_Page_Program(unsigned int WriteAddr,unsigned char* pBuffer,unsigned int NumByteToWrite){
unsigned int i,page,offset;

if(NumByteToWrite==0) return 3;                 //溢出
//if((WriteAddr+NumByteToWrite) >(W25Q256_MAX_SECTORS*W25Q256_SECTOR_SIZE)) return 5;  //地址错误!
W25Q256_Page_Program_SR(0);             //开锁!
//W25Q256_Page_Program_Enable();                  //SET WEL
//***************************************************************
offset=WriteAddr % W25Q256_PAGE_SIZE; //一个页内(256)的偏移地址
//*********************************************************************
if(offset){//>0未对其地址!!!!!
  offset =256-offset;
  //*************************************************************************
  //开始地址从WriteAddr,一次写入(256-WriteAddr%256)个字节,以便对齐边界!
  if(NumByteToWrite > offset){
   W25Q256_Page_Write(pBuffer,WriteAddr,offset);
   //*****************************************************************************
   //重新计算后面的写入字节数!
   NumByteToWrite -=offset;
   WriteAddr +=offset;
   pBuffer +=offset;
  }else{
   W25Q256_Page_Write(pBuffer,WriteAddr,NumByteToWrite); //写入字节数小于一个页内剩余的字节数,直接写完返回。
   //********************************************************************
   W25Q256_Page_Program_SR(B1001_1100);      //上锁!
   return 0;
  }
}
//---------------------------------------------------------------------------
page=NumByteToWrite/W25Q256_PAGE_SIZE;    //要写几页
offset=NumByteToWrite%W25Q256_PAGE_SIZE; //最后一页的字节数
//*************************************************************************
//开始地址从0 ,便可以一次写入256个字节
for(i=0;i<page;i++){
  W25Q256_Page_Write(pBuffer+i*256,WriteAddr+i*256,256);
}
//*************************************************************************
//继续写完不到一页的数据
if(offset>0){
  W25Q256_Page_Write(pBuffer,WriteAddr,offset);
}
//********************************************************************
W25Q256_Page_Program_SR(B1001_1100);      //上锁!
return 0;
}
//****************************************************************************
//擦除整个芯片
//整片擦除时间:
//W25X16:25s
//W25X32:40s
//W25X64:40s
//等待时间超长...
void W25Q256_Erase_Chip(void){                                            
W25Q256_Wait_Busy();  
W25Q256_Page_Program_SR(0);             //开锁!
W25Q256_Page_Program_Enable();              //SET WEL
SPI_FLASH_CS(0);                            //使能器件  
Flash_ReadWriteByte(W25Q256_ChipErase);     //发送片擦除命令
SPI_FLASH_CS(1);                            //取消片选               
W25Q256_Page_Program_Disable();
//********************************************************************
W25Q256_Page_Program_SR(B1001_1100);    //上锁!
W25Q256_Wait_Busy();                       //等待芯片擦除结束
}  
//****************************************************************************
//擦除一个扇区  Sector_Dst_Addr  物理扇区地址号!!
//Dst_Addr:扇区地址 0~511 for w25x16
//擦除一个山区的最少时间:150ms
unsigned int W25Q256_Erase_Sector(unsigned int Sector_Dst_Addr){  
W25Q256_Wait_Busy();  
W25Q256_Page_Program_SR(0);             //开锁!
W25Q256_Page_Program_Enable();                      //SET WEL           
SPI_FLASH_CS(0);                               //使能器件  
SPI_SendAdrOut(W25Q256_4KByte_BlockERASE,(Sector_Dst_Addr)*W25Q256_SECTOR_SIZE);//发送扇区擦除指令  必须输入绝对物理地址
SPI_FLASH_CS(1);                                 //取消片选               
W25Q256_Page_Program_Disable();
//********************************************************************
W25Q256_Page_Program_SR(B1001_1100);      //上锁!
//return W25Q256_Wait_Busy();                                    //等待擦除完成
return 1;
}
//****************************************************************************
//等待空闲
unsigned int W25Q256_Wait_Busy(void){
unsigned int i;
i=0;
while ((W25Q256_Read_StatusReg(W25Q256_ReadStatusReg1) & 0x01)==0x01){   // 等待BUSY位清空
   if(i++>299000) return 1; //一直忙!
}
return 0;
}
//****************************************************************************
//文件接口的读、写、删除
unsigned int FAT_Wr_Flash(unsigned int byteAddr,unsigned char *p,unsigned int byteCnt){
W25Q256_Page_Program(byteAddr+SST_OFFSET_SECTOR*4096,p,byteCnt);
return 0;
}
//****************************************************************************
//文件接口的读、写、删除
unsigned int FAT_Rd_Flash(unsigned int byteAddr,unsigned char *p,unsigned int byteCnt){
W25Q256_Page_Read(byteAddr+SST_OFFSET_SECTOR*4096,p,byteCnt);
return 0;
}
//****************************************************************************
//文件接口的读、写、删除
unsigned int FAT_Erase_Flash(unsigned int sectorAddr){
W25Q256_Erase_Sector(sectorAddr+SST_OFFSET_SECTOR);
return 0;
}





友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。