-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSPI_Flash.c
297 lines (269 loc) · 8.42 KB
/
SPI_Flash.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
/****************************************************************************
* Copyright (C), 2011 奋斗嵌入式工作室 www.ourstm.net
*
* 本例程在 奋斗版STM32开发板V2,2.1,V3,MINI上调试通过
* QQ: 9191274, 旺旺:sun68, Email: [email protected]
* 淘宝店铺:ourstm.taobao.com
*
* 文件名: spi_flash.c
* 内容简述:
* 本例程包含了SST25VF016B的底层驱动函数
*
* 文件历史:
* 版本号 日期 作者 说明
* v0.2 2011-7-07 sun68 创建该文件
*
*/
#include "SPI_Flash.h"
void wip(void);
void wen(void);
void wdis(void);
void wsr(void);
u8 rdsr(void);
void FlashReadID(void);
void sect_clr(u32 a1);
u8 SPI_Flash_ReadByte(void);
u8 SPI_Flash_SendByte(u8 byte);
/****************************************************************************
* 名 称:void wen(void)
* 功 能:写使能
* 入口参数:无
* 出口参数:无
* 说 明:
* 调用方法:无
****************************************************************************/
void wen(void){
Select_Flash();
SPI_Flash_SendByte(0x06);
NotSelect_Flash();
}
/****************************************************************************
* 名 称:void wdis(void)
* 功 能:写禁止
* 入口参数:无
* 出口参数:无
* 说 明:
* 调用方法:无
****************************************************************************/
void wdis(void){
Select_Flash();
SPI_Flash_SendByte(0x04);
NotSelect_Flash();
wip();
}
/****************************************************************************
* 名 称:void wsr(void)
* 功 能:写状态
* 入口参数:无
* 出口参数:无
* 说 明:
* 调用方法:无
****************************************************************************/
void wsr(void){
Select_Flash();
SPI_Flash_SendByte(0x50);
NotSelect_Flash();
Select_Flash();
SPI_Flash_SendByte(0x01);
SPI_Flash_SendByte(0x00);
NotSelect_Flash();
wip();
}
/****************************************************************************
* 名 称:void wip(void)
* 功 能:忙检测
* 入口参数:无
* 出口参数:无
* 说 明:
* 调用方法:无
****************************************************************************/
void wip(void){
u8 a=1;
while((a&0x01)==1) a=rdsr();
}
/****************************************************************************
* 名 称:u8 rdsr(void)
* 功 能:读状态寄存器
* 入口参数:无
* 出口参数:无
* 说 明:
* 调用方法:无
****************************************************************************/
u8 rdsr(void){
u8 busy;
Select_Flash();
SPI_Flash_SendByte(0x05);
busy = SPI_Flash_ReadByte();
NotSelect_Flash();
return(busy);
}
/****************************************************************************
* 名 称:void SST25_R_BLOCK(u32 addr, u8 *readbuff, u16 BlockSize)
* 功 能:页读
* 入口参数:u32 addr--页 u8 *readbuff--数组 u16 BlockSize--长度
* 出口参数:无
* 说 明:
* 调用方法:无
****************************************************************************/
void SST25_R_BLOCK(u32 addr, u8 *readbuff, u16 BlockSize){
u16 i=0;
Select_Flash();
SPI_Flash_SendByte(0x0b);
SPI_Flash_SendByte((addr&0xffffff)>>16);
SPI_Flash_SendByte((addr&0xffff)>>8);
SPI_Flash_SendByte(addr&0xff);
SPI_Flash_SendByte(0);
while(i<BlockSize){
readbuff[i]=SPI_Flash_ReadByte();
i++;
}
NotSelect_Flash();
}
/****************************************************************************
* 名 称:void SST25_W_BLOCK(u32 addr, u8 *readbuff, u16 BlockSize)
* 功 能:页写
* 入口参数:u32 addr--页 u8 *readbuff--数组 u16 BlockSize--长度
* 出口参数:无
* 说 明:
* 调用方法:无
****************************************************************************/
void SST25_W_BLOCK(u32 addr, u8 *readbuff, u16 BlockSize){
u16 i=0,a2;
sect_clr(addr);//擦除这个扇区
wsr();
wen();
Select_Flash();
SPI_Flash_SendByte(0xad);
SPI_Flash_SendByte((addr&0xffffff)>>16);
SPI_Flash_SendByte((addr&0xffff)>>8);
SPI_Flash_SendByte(addr&0xff);
SPI_Flash_SendByte(readbuff[0]);
SPI_Flash_SendByte(readbuff[1]);
NotSelect_Flash();
i=2;
while(i<BlockSize)
{
a2=120;
while(a2>0) a2--;
Select_Flash();
SPI_Flash_SendByte(0xad);
SPI_Flash_SendByte(readbuff[i++]);
SPI_Flash_SendByte(readbuff[i++]);
NotSelect_Flash();
}
a2=100;
while(a2>0) a2--;
wdis();
Select_Flash();
wip();
}
/****************************************************************************
* 名 称:void sect_clr(u32 a1)
* 功 能:页擦除
* 入口参数:u32 a1--页
* 出口参数:无
* 说 明:
* 调用方法:无
****************************************************************************/
void sect_clr(u32 a1){
wsr();
wen();
Select_Flash();
SPI_Flash_SendByte(0x20);
SPI_Flash_SendByte((a1&0xffffff)>>16); //addh
SPI_Flash_SendByte((a1&0xffff)>>8); //addl
SPI_Flash_SendByte(a1&0xff); //wtt
NotSelect_Flash();
wip();
}
/****************************************************************************
* 名 称:void FlashReadID(void)
* 功 能:读工厂码及型号的函数
* 入口参数:
* 出口参数:无
* 说 明:
* 调用方法:无
****************************************************************************/
void FlashReadID(void)
{
Select_Flash();
SPI_Flash_SendByte(0x90);
SPI_Flash_SendByte(0x00);
SPI_Flash_SendByte(0x00);
SPI_Flash_SendByte(0x00);
//fac_id= SPI_Flash_ReadByte(); //BFH: 工程码SST
//dev_id= SPI_Flash_ReadByte(); //41H: 器件型号SST25VF016B
NotSelect_Flash();
}
/*******************************************************************************
* Function Name : SPI_FLASH_Init
* Description : Initializes the peripherals used by the SPI FLASH driver.
* Input : None
* Output : None
* Return : None
*******************************************************************************/
void SPI_Flash_Init(void)
{
SPI_InitTypeDef SPI_InitStructure;
GPIO_InitTypeDef GPIO_InitStructure;
/* 使能SPI2 时钟 */
RCC_APB1PeriphClockCmd(RCC_APB1Periph_SPI2,ENABLE);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO | RCC_APB2Periph_GPIOB, ENABLE);
/* 配置 SPI2 引脚: SCK, MISO 和 MOSI */
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13 | GPIO_Pin_14 | GPIO_Pin_15;
GPIO_InitStructure.GPIO_Speed =GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_Init(GPIOB, &GPIO_InitStructure);
//V3---ENC28J60的SPI2 片选
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_12;
GPIO_InitStructure.GPIO_Speed =GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_Init(GPIOB, &GPIO_InitStructure);
/* SPI2配置 */
SPI_InitStructure.SPI_Direction = SPI_Direction_2Lines_FullDuplex;
SPI_InitStructure.SPI_Mode = SPI_Mode_Master;
SPI_InitStructure.SPI_DataSize = SPI_DataSize_8b;
SPI_InitStructure.SPI_CPOL = SPI_CPOL_High;
SPI_InitStructure.SPI_CPHA = SPI_CPHA_2Edge;
SPI_InitStructure.SPI_NSS = SPI_NSS_Soft;
SPI_InitStructure.SPI_BaudRatePrescaler = SPI_BaudRatePrescaler_8;
SPI_InitStructure.SPI_FirstBit = SPI_FirstBit_MSB;
SPI_InitStructure.SPI_CRCPolynomial = 7;
SPI_Init(SPI2, &SPI_InitStructure);
/* 使能SPI2 */
SPI_Cmd(SPI2, ENABLE);
NotSelect_Flash();
}
/*******************************************************************************
* Function Name : SPI_FLASH_ReadByte
* Description : Reads a byte from the SPI Flash.
* This function must be used only if the Start_Read_Sequence
* function has been previously called.
* Input : None
* Output : None
* Return : Byte Read from the SPI Flash.
*******************************************************************************/
u8 SPI_Flash_ReadByte(void)
{
return (SPI_Flash_SendByte(Dummy_Byte));
}
/*******************************************************************************
* Function Name : SPI_FLASH_SendByte
* Description : Sends a byte through the SPI interface and return the byte
* received from the SPI bus.
* Input : byte : byte to send.
* Output : None
* Return : The value of the received byte.
*******************************************************************************/
u8 SPI_Flash_SendByte(u8 byte)
{
/* Loop while DR register in not emplty */
while(SPI_I2S_GetFlagStatus(SPI2, SPI_I2S_FLAG_TXE) == RESET);
//NotSelect_Flash(); while(1);
/* Send byte through the SPI2 peripheral */
SPI_I2S_SendData(SPI2, byte);
/* Wait to receive a byte */
while(SPI_I2S_GetFlagStatus(SPI2, SPI_I2S_FLAG_RXNE) == RESET);
/* Return the byte read from the SPI bus */
return SPI_I2S_ReceiveData(SPI2);
}/******************* (C) COPYRIGHT 2011 奋斗STM32 *****END OF FILE****/