summaryrefslogtreecommitdiff
path: root/alpha_n25q128.c
blob: 49f713c085be96b3167889ac0f8cf470b3330a02 (plain) (blame)
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
//-----------------------------------------------------------------------------
// alpha_n25q128.c
//-----------------------------------------------------------------------------


//-----------------------------------------------------------------------------
// Headers
//-----------------------------------------------------------------------------
#include "stm32f4xx_hal.h"
#include "alpha_n25q128.h"
#include "spi.h"


//-----------------------------------------------------------------------------
int n25q128_check_id()
//-----------------------------------------------------------------------------
{
		// tx, rx buffers
	uint8_t spi_tx[4];
	uint8_t spi_rx[4];
	
		// result
	HAL_StatusTypeDef ok;
	
		// send READ ID command
	spi_tx[0] = N25Q128_COMMAND_READ_ID;
	
		// select, send command & read response, deselect
	_n25q128_select();
	ok = HAL_SPI_TransmitReceive(N25Q128_SPI_HANDLE, spi_tx, spi_rx, 4, N25Q128_SPI_TIMEOUT);
	HAL_Delay(1);
	_n25q128_deselect();
	
		// check
	if (ok != HAL_OK) return 0;
		
		// parse response (note, that the very first byte was received during the
		// transfer of the command byte, so it contains garbage and should
		// be ignored here)
	if (spi_rx[1] != N25Q128_ID_MANUFACTURER) return 0;
	if (spi_rx[2] != N25Q128_ID_DEVICE_TYPE) return 0;
	if (spi_rx[3] != N25Q128_ID_DEVICE_CAPACITY) return 0;
	
		// done
	return 1;
}


//-----------------------------------------------------------------------------
int n25q128_read_page(uint32_t page_offset, uint8_t *page_buffer)
//-----------------------------------------------------------------------------
{
		// tx buffer
	uint8_t spi_tx[4];
	
		// result
	HAL_StatusTypeDef ok;
	
		// check offset
	if (page_offset >= N25Q128_NUM_PAGES) return 0;
	
		// calculate byte address
	page_offset *= N25Q128_PAGE_SIZE;
	
		// prepare READ command
	spi_tx[0] = N25Q128_COMMAND_READ_PAGE;
	spi_tx[1] = (uint8_t)(page_offset >> 16);
	spi_tx[2] = (uint8_t)(page_offset >>  8);
	spi_tx[3] = (uint8_t)(page_offset >>  0);
	
		// activate, send command
	_n25q128_select();
	ok = HAL_SPI_Transmit(N25Q128_SPI_HANDLE, spi_tx, 4, N25Q128_SPI_TIMEOUT);
	HAL_Delay(1);
	
		// check
	if (ok != HAL_OK)
	{	_n25q128_deselect();
		return 0;
	}
		
		// read response, deselect
	ok = HAL_SPI_Receive(N25Q128_SPI_HANDLE, page_buffer, N25Q128_PAGE_SIZE, N25Q128_SPI_TIMEOUT);
	HAL_Delay(1);
	_n25q128_deselect();
	
		// check
	if (ok != HAL_OK) return 0;
	
		// done
	return 1;
}


//-----------------------------------------------------------------------------
int n25q128_write_page(uint32_t page_offset, uint8_t *page_buffer)
//-----------------------------------------------------------------------------
{
		// tx buffer
	uint8_t spi_tx[4];
	
		// result
	HAL_StatusTypeDef ok;
	
		// check offset
	if (page_offset >= N25Q128_NUM_PAGES) return 0;
	
		// enable writing
	spi_tx[0] = N25Q128_COMMAND_WRITE_ENABLE;
	
		// activate, send command, deselect
	_n25q128_select();
	ok = HAL_SPI_Transmit(N25Q128_SPI_HANDLE, spi_tx, 1, N25Q128_SPI_TIMEOUT);
	HAL_Delay(1);
	_n25q128_deselect();
	
		// check
	if (ok != HAL_OK) return 0;
	
		// make sure, that write enable did the job
	int wel = _n25q128_get_wel_flag();
	if (wel != 1) return 0;
	
		// calculate byte address
	page_offset *= N25Q128_PAGE_SIZE;
	
		// prepare PROGRAM PAGE command
	spi_tx[0] = N25Q128_COMMAND_PAGE_PROGRAM;
	spi_tx[1] = (uint8_t)(page_offset >> 16);
	spi_tx[2] = (uint8_t)(page_offset >>  8);
	spi_tx[3] = (uint8_t)(page_offset >>  0);
	
		// activate, send command
	_n25q128_select();
	ok = HAL_SPI_Transmit(N25Q128_SPI_HANDLE, spi_tx, 4, N25Q128_SPI_TIMEOUT);
	HAL_Delay(1);
	
		// check
	if (ok != HAL_OK)
	{	_n25q128_deselect();
		return 0;
	}
	
		// send data, deselect
	ok = HAL_SPI_Transmit(N25Q128_SPI_HANDLE, page_buffer, N25Q128_PAGE_SIZE, N25Q128_SPI_TIMEOUT);
	HAL_Delay(1);
	_n25q128_deselect();
	
		// check
	if (ok != HAL_OK) return 0;
		
		// done
	return 1;
}


//-----------------------------------------------------------------------------
int n25q128_get_wip_flag(void)
//-----------------------------------------------------------------------------
{
		// tx, rx buffers
	uint8_t spi_tx[2];
	uint8_t spi_rx[2];
	
		// result
	HAL_StatusTypeDef ok;
	
		// send READ STATUS command
	spi_tx[0] = N25Q128_COMMAND_READ_STATUS;
	
		// send command, read response, deselect
	_n25q128_select();
	ok = HAL_SPI_TransmitReceive(N25Q128_SPI_HANDLE, spi_tx, spi_rx, 2, N25Q128_SPI_TIMEOUT);
	HAL_Delay(1);
	_n25q128_deselect();
	
		// check
	if (ok != HAL_OK) return -1;
		
		// done
	return (spi_rx[1] & 1);
}


//-----------------------------------------------------------------------------
int n25q128_erase_sector(uint32_t sector_offset)
//-----------------------------------------------------------------------------
{
		// tx buffer
	uint8_t spi_tx[4];
	
		// result
	HAL_StatusTypeDef ok;
	
		// check offset
	if (sector_offset >= N25Q128_NUM_SECTORS) return 0;
	
		// enable writing
	spi_tx[0] = N25Q128_COMMAND_WRITE_ENABLE;
	
		// select, send command, deselect
	_n25q128_select();
	ok = HAL_SPI_Transmit(N25Q128_SPI_HANDLE, spi_tx, 1, N25Q128_SPI_TIMEOUT);
	HAL_Delay(1);
	_n25q128_deselect();
	
		// check
	if (ok != HAL_OK) return 0;
	
		// make sure, that write enable did the job
	int wel = _n25q128_get_wel_flag();
	if (wel != 1) return 0;
	
		// calculate byte address
	sector_offset *= N25Q128_SECTOR_SIZE;
	
		// send ERASE SUBSECTOR command
	spi_tx[0] = N25Q128_COMMAND_ERASE_SECTOR;
	spi_tx[1] = (uint8_t)(sector_offset >> 16);
	spi_tx[2] = (uint8_t)(sector_offset >>  8);
	spi_tx[3] = (uint8_t)(sector_offset >>  0);
	
		// activate, send command, deselect
	_n25q128_select();
	ok = HAL_SPI_Transmit(N25Q128_SPI_HANDLE, spi_tx, 4, N25Q128_SPI_TIMEOUT);
	HAL_Delay(1);
	_n25q128_deselect();
	
		// check
	if (ok != HAL_OK) return 0;
		
		// done
	return 1;
}


//-----------------------------------------------------------------------------
int _n25q128_get_wel_flag(void)
//-----------------------------------------------------------------------------
{
		// tx, rx buffers
	uint8_t spi_tx[2];
	uint8_t spi_rx[2];
	
		// result
	HAL_StatusTypeDef ok;
	
		// send READ STATUS command
	spi_tx[0] = N25Q128_COMMAND_READ_STATUS;
	
		// send command, read response, deselect
	_n25q128_select();
	ok = HAL_SPI_TransmitReceive(N25Q128_SPI_HANDLE, spi_tx, spi_rx, 2, N25Q128_SPI_TIMEOUT);
	HAL_Delay(1);
	_n25q128_deselect();
	
		// check
	if (ok != HAL_OK) return -1;
		
		// done
	return ((spi_rx[1] >> 1) & 1);
}

//-----------------------------------------------------------------------------
// End-of-File
//-----------------------------------------------------------------------------