-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathflash.cpp
228 lines (172 loc) · 4.77 KB
/
flash.cpp
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
/*
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "flash.h"
uint8_t deviceID;
void waitBusy() {
SET(CS_FLASH, LOW);
SPI.transfer(0x05); //read status register
while (SPI.transfer(0) & 0x01)
;
SET(CS_FLASH, HIGH);
}
void getDevID() {
SPI_Setup();
SET(CS_FLASH, LOW);
SPI.transfer(0x9f); //read ID register
deviceID = SPI.transfer(0);
SET(CS_FLASH, HIGH);
SPI.end();
}
void SPI_Setup() {
OUT(SS); // prevent SPI from entering slave mode
SET(SS, HIGH);
IN(MISO);
SPI.begin();
SPI.setClockDivider(SPI_CLOCK_DIV2);
SPI.setDataMode(SPI_MODE0);
SPI.setBitOrder(MSBFIRST);
}
void eraseFlash() {
SPI_Setup();
waitBusy(); // wait for other writes
SET(CS_FLASH, LOW);
SPI.transfer(0x06); // Write mode
SET(CS_FLASH, HIGH);
SET(CS_FLASH, LOW);
SPI.transfer(0x01); // Write status reg
SPI.transfer(0x00); // Disable protection
SET(CS_FLASH, HIGH);
SET(CS_FLASH, LOW);
SPI.transfer(0x06); // Write mode
SET(CS_FLASH, HIGH);
SET(CS_FLASH, LOW);
SPI.transfer(0x60); // Full chip erase
SET(CS_FLASH, HIGH);
waitBusy(); // Wait for operation to finish
SPI.end();
}
void writeByteFlash(uint32_t address, uint8_t b) {
SPI_Setup();
waitBusy(); // wait for other writes
SET(CS_FLASH, LOW);
SPI.transfer(0x06); // Write mode
SET(CS_FLASH, HIGH);
SET(CS_FLASH, LOW);
SPI.transfer(0x02); // Single write
SPI.transfer(address >> 16);
SPI.transfer(address >> 8);
SPI.transfer(address);
SPI.transfer(b);
SET(CS_FLASH, HIGH);
SPI.end();
}
// only works with microchip flash
void waitHardwareBusy() {
SET(CS_FLASH, LOW);
delayMicroseconds(1); // change to 1
while (digitalRead(MISO) == 0)
;
SET(CS_FLASH, HIGH);
}
void writeFlashAdesto(uint32_t startAddress, uint8_t *data, uint16_t length) {
SPI_Setup();
uint32_t curAddress = startAddress;
uint16_t pos = 0;
while (pos < length) {
waitBusy();
SET(CS_FLASH, LOW);
SPI.transfer(0x06); // Write Enable
SET(CS_FLASH, HIGH);
SET(CS_FLASH, LOW);
SPI.transfer(0x02); // byte/page program
SPI.transfer(curAddress >> 16);
SPI.transfer(curAddress >> 8);
SPI.transfer(curAddress);
do {
SPI.transfer(data[pos++]);
curAddress++;
if (pos == length)
break;
} while (curAddress % 256 != 0);
SET(CS_FLASH, HIGH);
}
SPI.end();
}
void writeFlashMicrochip(uint32_t startAddress, uint8_t *data, uint16_t length) {
if (startAddress % 2 && length > 0){
writeByteFlash(startAddress, data[0]);
startAddress++;
data++;
length--;
}
if (length < 2) {
if (length == 1)
writeByteFlash(startAddress, data[0]);
return;
}
uint16_t pos;
SPI_Setup();
waitBusy();
SET(CS_FLASH, LOW);
SPI.transfer(0x70); // Hardware EOW detection
SET(CS_FLASH, HIGH);
SET(CS_FLASH, LOW);
SPI.transfer(0x06); // Write Enable
SET(CS_FLASH, HIGH);
SET(CS_FLASH, LOW);
SPI.transfer(0xAD); // Auto-increment write
SPI.transfer(startAddress >> 16);
SPI.transfer(startAddress >> 8);
SPI.transfer(startAddress);
SPI.transfer(data[0]);
SPI.transfer(data[1]);
SET(CS_FLASH, HIGH);
waitHardwareBusy();
for (pos = 2; pos <= length - 2; pos += 2) {
SET(CS_FLASH, LOW);
SPI.transfer(0xAD); // Auto-increment write
SPI.transfer(data[pos]);
SPI.transfer(data[pos + 1]);
SET(CS_FLASH, HIGH);
waitHardwareBusy();
}
SET(CS_FLASH, LOW);
SPI.transfer(0x04); // Write Disable
SET(CS_FLASH, HIGH);
SET(CS_FLASH, LOW);
SPI.transfer(0x80); // Disable hardware EOW detection
SET(CS_FLASH, HIGH);
SPI.end();
if (pos < length)
writeByteFlash(startAddress + pos, data[pos]);
}
void writeFlash(uint32_t startAddress, uint8_t *data, uint16_t length) {
if (deviceID == MICROCHIP_ID) {
writeFlashMicrochip(startAddress, data, length);
} else {
writeFlashAdesto(startAddress, data, length);
}
}
void readFlash(volatile uint8_t* buffer, uint32_t address, uint16_t count) {
SPI_Setup();
waitBusy();
SET(CS_FLASH, LOW);
SPI.transfer(0x03);
SPI.transfer(address >> 16);
SPI.transfer(address >> 8);
SPI.transfer(address);
for (uint16_t c = 0; c < count; c++)
buffer[c] = SPI.transfer(0);
SET(CS_FLASH, HIGH);
SPI.end();
}