Blame view

RIOT/cpu/lpc2387/lpc23xx-iap.c 13.1 KB
a752c7ab   elopes   add first test an...
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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
  /*
   * Copyright (C) 2014 INRIA
   *
   * This file is subject to the terms and conditions of the GNU Lesser
   * General Public License v2.1. See the file LICENSE in the top level
   * directory for more details.
   */
  
  /**
   * @ingroup lpc2387
   * @{
   */
  
  /**
   * @file
   * @brief       lpc2387 in-application programming driver (for flashrom)
   *
   * @author      Oliver Hahm <oliver.hahm@inria.fr>
   *
   */
  
  #include <stddef.h>
  #include <stdint.h>
  #include "irq.h"
  #include "flashrom.h"
  #include "iap.h"
  #include "lpc2387.h"
  
  #define ENABLE_DEBUG    (0)
  #include "debug.h"
  
  /* pointer to reserved flash rom section for configuration data */
  __attribute((aligned(256))) char configmem[256] __attribute__((section(".configmem")));
  
  static unsigned int iap_command[5];         // contains parameters for IAP command
  static unsigned int iap_result[2];          // contains results
  typedef void (*IAP)(unsigned int[], unsigned int[]);    // typedefinition for IAP entry function
  IAP IAP_Entry;
  
  /* some function prototypes */
  static uint32_t blank_check_sector(uint32_t tmp_sect1, uint32_t tmp_sect2);
  static uint32_t prepare_sectors(uint32_t tmp_sect1, uint32_t tmp_sect2);
  static uint32_t erase_sectors(uint32_t tmp_sect1, uint32_t tmp_sect2);
  static uint32_t copy_ram_to_flash(uint32_t tmp_adr_dst, uint32_t tmp_adr_src, uint32_t tmp_size);
  static uint32_t compare(uint32_t tmp_adr_dst, uint32_t tmp_adr_src, uint32_t tmp_size);
  static uint32_t iap(uint32_t code, uint32_t p1, uint32_t p2, uint32_t p3, uint32_t p4);
  
  /******************************************************************************
   * P U B L I C   F U N C T I O N S
   *****************************************************************************/
  uint8_t flashrom_write(uint8_t *dst, const uint8_t *src, size_t size)
  {
      (void) size; /* unused */
  
      char err;
      uint8_t sec;
  
      sec = iap_get_sector((uint32_t) dst);
  
      if (sec == INVALID_ADDRESS) {
          DEBUG("Invalid address\n");
          return 0;
      }
  
      /* check sector */
      if (blank_check_sector(sec, sec) == SECTOR_NOT_BLANK) {
          DEBUG("Warning: Sector %i not blank\n", sec);
      }
  
      /* prepare sector */
      err = prepare_sectors(sec, sec);
      if (err) {
          DEBUG("\n-- ERROR: PREPARE_SECTOR_FOR_WRITE_OPERATION: %u\n", err);
          return 0;
      }
  
      /*  write flash */
      unsigned intstate = irq_disable();
      err = copy_ram_to_flash((uint32_t) dst, (uint32_t) src, 256);
      irq_restore(intstate);
  
      if (err) {
          DEBUG("ERROR: COPY_RAM_TO_FLASH: %u\n", err);
          /* set interrupts back and return */
          irq_restore(intstate);
          return 0;
      }
      /* check result */
      err = compare((uint32_t) dst, (uint32_t) src, 256);
  
      if (err) {
          DEBUG("ERROR: COMPARE: %i (at position %u)\n", err, iap_result[1]);
          return 0;
      }
  
      DEBUG("Data successfully written!\n");
      return 1;
  }
  
  
  uint8_t flashrom_erase(uint8_t *addr)
  {
      uint8_t sec = iap_get_sector((uint32_t) addr);
      unsigned intstate;
  
      if (sec == INVALID_ADDRESS) {
          DEBUG("Invalid address\n");
          return 0;
      }
  
      /* check sector */
      if (!blank_check_sector(sec, sec)) {
          DEBUG("Sector already blank!\n");
          return 1;
      }
  
      /* prepare sector */
      if (prepare_sectors(sec, sec)) {
          DEBUG("-- ERROR: PREPARE_SECTOR_FOR_WRITE_OPERATION --\n");
          return 0;
      }
  
      intstate = irq_disable();
  
      /* erase sector */
      if (erase_sectors(sec, sec)) {
          DEBUG("-- ERROR: ERASE SECTOR --\n");
          irq_restore(intstate);
          return 0;
      }
  
      irq_restore(intstate);
  
      /* check again */
      if (blank_check_sector(sec, sec)) {
          DEBUG("-- ERROR: BLANK_CHECK_SECTOR\n");
          return 0;
      }
  
      DEBUG("Sector successfully erased.\n");
      return 1;
  }
  
  
  /******************************************************************************
   * PRIVATE FUNCTIONS
   *****************************************************************************/
  
  static uint32_t iap(uint32_t code, uint32_t p1, uint32_t p2, uint32_t p3, uint32_t p4)
  {
      iap_command[0] = code;      // set command code
      iap_command[1] = p1;        // set 1st param
      iap_command[2] = p2;        // set 2nd param
      iap_command[3] = p3;        // set 3rd param
      iap_command[4] = p4;        // set 4th param
  
      ((void (*)())0x7ffffff1)(iap_command, iap_result);      // IAP entry point
      return *iap_result;
  }
  
  /******************************************************************************
   * Function:    blank_check_sector
   *
   * Description: This command is used to blank check a sector or multiple sectors
   *              of on-chip Flash memory. To blank check a single sector use the
   *              same "Start" and "End" sector numbers.
   *              Command: 53
   *              Param0: Start Sector Number
   *              Param1: End Sector Number (should be greater than equal to the start
   *                      sector number)
   *
   * Parameters:  long tmp_sect1:     Param0
   *              long tmp_sect2:     Param1
   *
   * Return:      Code    CMD_SUCCESS |
   *                      BUSY |
   *                      SECTOR_NOT_BLANK |
   *                      INVALID_SECTOR
   *              Result0: Offset of the first non blank word location if the status code is SECTOR_NOT_BLANK.
   *              Result1: Contents of non blank wird location.
   *****************************************************************************/
  uint32_t blank_check_sector(uint32_t tmp_sect1, uint32_t tmp_sect2)
  {
      return iap(BLANK_CHECK_SECTOR, tmp_sect1, tmp_sect2, 0 , 0);
  }
  
  
  /******************************************************************************
   * Function:    copy_ram_to_flash
   *
   * Description: This command is used to programm the flash memory. the affected should be
   *              prepared first by calling "Prepare Sector for Write Operation" command. the
   *              affected sectors are automatically protected again once the copy command is
   *              successfully executed. the boot sector cannot be written by this command.
   *              Command: 51
   *              Param0: (DST) Destination Flash adress where data bytes are to be written.
   *                      This address should be a 512 byte boundary.
   *              Param1: (SRC) Source RAM adress from which data byre are to be read.
   *              Param2: Number of bytes to be written. Should be 512 | 1024 | 4096 | 8192.
   *              Param3: System Clock Frequency (CCLK) in KHz.
   *
   * Parameters:  long tmp_adr_dst:   Param0
   *              long tmp_adr_src:   Param1
   *              long tmp_size:      Param2
   *
   * Return:      Code    CMD_SUCCESS |
   *                      SRC_ADDR_ERROR (Address not on word boundary) |
   *                      DST_ADDR_ERROR (Address not on correct boundary) |
   *                      SRC_ADDR_NOT_MAPPED |
   *                      DST_ADDR_NOT_MAPPED |
   *                      COUNT_ERROR (Byte count is not 512 | 1024 | 4096 | 8192) |
   *                      SECTOR_NOT_PREPARED_FOR_WRITE_OPERATION |
   *                      BUSY
   *****************************************************************************/
  uint32_t copy_ram_to_flash(uint32_t tmp_adr_dst, uint32_t tmp_adr_src, uint32_t tmp_size)
  {
      return iap(COPY_RAM_TO_FLASH, tmp_adr_dst, tmp_adr_src, tmp_size, _XTAL);
  }
  
  
  /******************************************************************************
   * Function:    Prepare_Sector
   *
   * Description: This command must be executed before executing "Copy RAM to Flash" or "Erase Sector(s)"
   *              command. Successful execution of the "Copy RAM to Flash" or "Erase Sector(s)" command causes
   *              relevant sectors to be protected again. The boot sector can not be prepared by this command. To
   *              prepare a single sector use the same "Start" and "End" sector numbers..
   *              Command code: 50
   *              Param0: Start Sector Number
   *              Param1: End Sector Number: Should be greater than or equal to start sector number.
   *
   * Parameters:  long tmp_sect1:     Param0
   *              long tmp_sect2:     Param1
   *
   * Return:      Code    CMD_SUCCESS |
   *                      BUSY |
   *                      INVALID_SECTOR
   *****************************************************************************/
  uint32_t prepare_sectors(uint32_t tmp_sect1, uint32_t tmp_sect2)
  {
      return iap(PREPARE_SECTOR_FOR_WRITE_OPERATION, tmp_sect1, tmp_sect2, 0 , 0);
  }
  
  
  /******************************************************************************
   * Function:    erase_sectors
   *
   * Description: This command is used to erase a sector or multiple sectors of on-chip Flash memory. The boot
   *              sector can not be erased by this command. To erase a single sector use the same "Start" and "End"
   *              sector numbers.
   *              Command code: 52
   *              Param0: Start Sector Number
   *              Param1: End Sector Number: Should be greater than or equal to start sector number.
   *              Param2: System Clock Frequency (CCLK) in KHz.
   *
   * Parameters:  long tmp_sect1:     Param0
   *              long tmp_sect2:     Param1
   *
   * Return:      Code    CMD_SUCCESS |
   *                      BUSY |
   *                      SECTOR_NOT_PREPARED_FOR_WRITE_OPERATION |
   *                      INVALID_SECTOR
   *****************************************************************************/
  uint32_t erase_sectors(uint32_t tmp_sect1, uint32_t tmp_sect2)
  {
      return iap(ERASE_SECTOR, tmp_sect1, tmp_sect2, _XTAL, 0);
  }
  
  
  /******************************************************************************
   * Function:    compare
   *
   * Description: This command is used to compare the memory contents at two locations. compare result may not
   *              be correct when source or destination address contains any of the first 64 bytes starting
   *              from address zero. First 64 bytes can be re-mapped to RAM.
   *              Command Code: 56
   *              Param0(DST): Starting Flash or RAM address from where data bytes are to be
   *                              address should be a word boundary.
   *              Param1(SRC): Starting Flash or RAM address from where data bytes are to be
   *                              address should be a word boundary.
   *              Param2: Number of bytes to be compared. Count should be in multiple of 4.
   *
   * Parameters:  long tmp_adr_dst
   *              long tmp_adr_src
   *              long tmp_size
   *
   * Return:      Code    CMD_SUCCESS |
   *                      COMPARE_ERROR |
   *                      COUNT_ERROR (Byte count is not multiple of 4) |
   *                      ADDR_ERROR |
   *                      ADDR_NOT_MAPPED
   *              Result0: Offset of the first mismatch if the Status Code is COMPARE_ERROR.
   *****************************************************************************/
  uint32_t compare(uint32_t tmp_adr_dst, uint32_t tmp_adr_src, uint32_t tmp_size)
  {
      return iap(COMPARE, tmp_adr_dst, tmp_adr_src, tmp_size, 0);
  }
  
  uint8_t iap_get_sector(uint32_t addr)
  {
      if (addr <= 0x00000FFF) {
          return 0;
      }
  
      if ((addr >= 0x00001000) && (addr <= 0x00001FFF)) {
          return 1;
      }
  
      if ((addr >= 0x00002000) && (addr <= 0x00002FFF)) {
          return 2;
      }
  
      if ((addr >= 0x00003000) && (addr <= 0x00003FFF)) {
          return 3;
      }
  
      if ((addr >= 0x00004000) && (addr <= 0x00004FFF)) {
          return 4;
      }
  
      if ((addr >= 0x00005000) && (addr <= 0x00005FFF)) {
          return 5;
      }
  
      if ((addr >= 0x00006000) && (addr <= 0x00006FFF)) {
          return 6;
      }
  
      if ((addr >= 0x00007000) && (addr <= 0x00007FFF)) {
          return 7;
      }
  
      if ((addr >= 0x00008000) && (addr <= 0x0000FFFF)) {
          return 8;
      }
  
      if ((addr >= 0x00010000) && (addr <= 0x00017FFF)) {
          return 9;
      }
  
      if ((addr >= 0x00018000) && (addr <= 0x0001FFFF)) {
          return 10;
      }
  
      if ((addr >= 0x00020000) && (addr <= 0x00027FFF)) {
          return 11;
      }
  
      if ((addr >= 0x00028000) && (addr <= 0x0002FFFF)) {
          return 12;
      }
  
      if ((addr >= 0x00030000) && (addr <= 0x00037FFF)) {
          return 13;
      }
  
      if ((addr >= 0x00038000) && (addr <= 0x0003FFFF)) {
          return 14;
      }
  
      if ((addr >= 0x00040000) && (addr <= 0x00047FFF)) {
          return 15;
      }
  
      if ((addr >= 0x00048000) && (addr <= 0x0004FFFF)) {
          return 16;
      }
  
      if ((addr >= 0x00050000) && (addr <= 0x00057FFF)) {
          return 17;
      }
  
      if ((addr >= 0x00058000) && (addr <= 0x0005FFFF)) {
          return 18;
      }
  
      if ((addr >= 0x00060000) && (addr <= 0x00067FFF)) {
          return 19;
      }
  
      if ((addr >= 0x00068000) && (addr <= 0x0006FFFF)) {
          return 20;
      }
  
      if ((addr >= 0x00070000) && (addr <= 0x00077FFF)) {
          return 21;
      }
  
      if ((addr >= 0x00078000) && (addr <= 0x00078FFF)) {
          return 22;
      }
  
      if ((addr >= 0x00079000) && (addr <= 0x00079FFF)) {
          return 23;
      }
  
      if ((addr >= 0x0007A000) && (addr <= 0x0007AFFF)) {
          return 24;
      }
  
      if ((addr >= 0x0007B000) && (addr <= 0x0007BFFF)) {
          return 25;
      }
  
      if ((addr >= 0x0007C000) && (addr <= 0x0007CFFF)) {
          return 26;
      }
  
      if ((addr >= 0x0007D000) && (addr <= 0x0007DFFF)) {
          return 27;
      }
  
      /* no valid address within flash */
      return INVALID_ADDRESS;
  }