helper/command: change prototype of command_print/command_print_sameline
[fw/openocd] / src / flash / nor / at91sam7.c
1 /***************************************************************************
2  *   Copyright (C) 2006 by Magnus Lundin                                   *
3  *   lundin@mlu.mine.nu                                                    *
4  *                                                                         *
5  *   Copyright (C) 2008 by Gheorghe Guran (atlas)                          *
6  *                                                                         *
7  *   This program is free software; you can redistribute it and/or modify  *
8  *   it under the terms of the GNU General Public License as published by  *
9  *   the Free Software Foundation; either version 2 of the License, or     *
10  *   (at your option) any later version.                                   *
11  *                                                                         *
12  *   This program is distributed in the hope that it will be useful,       *
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
15  *   GNU General Public License for more details.                          *
16  *                                                                         *
17  *   You should have received a copy of the GNU General Public License     *
18  *   along with this program.  If not, see <http://www.gnu.org/licenses/>. *
19 ****************************************************************************/
20
21 /***************************************************************************
22 *
23 * New flash setup command:
24 *
25 * flash bank <driver> <base_addr> <size> <chip_width> <bus_width> <target_id>
26 *       [<chip_type> <banks>
27 *        <sectors_per_bank> <pages_per_sector>
28 *        <page_size> <num_nvmbits>
29 *        <ext_freq_khz>]
30 *
31 *   <ext_freq_khz> - MUST be used if clock is from external source,
32 *                    CAN be used if main oscillator frequency is known (recommended)
33 * Examples:
34 * ==== RECOMMENDED (covers clock speed) ============
35 *  flash bank at91sam7 0x00100000 0 0 4 $_TARGETNAME AT91SAM7XC256 1 16 64 256 3 25000
36 *                       (if auto-detect fails; provides clock spec)
37 *  flash bank at91sam7 0 0 0 0 $_TARGETNAME 0 0 0 0 0 0 25000
38 *                       (auto-detect everything except the clock)
39 * ==== NOT RECOMMENDED !!! (clock speed is not configured) ====
40 *  flash bank at91sam7 0x00100000 0 0 4 $_TARGETNAME AT91SAM7XC256 1 16 64 256 3 0
41 *                       (if auto-detect fails)
42 *  flash bank at91sam7 0 0 0 0 $_TARGETNAME
43 *                       (old style, auto-detect everything)
44 ****************************************************************************/
45
46 #ifdef HAVE_CONFIG_H
47 #include "config.h"
48 #endif
49
50 #include "imp.h"
51 #include <helper/binarybuffer.h>
52
53 /* AT91SAM7 control registers */
54 #define DBGU_CIDR                       0xFFFFF240
55 #define CKGR_MCFR                       0xFFFFFC24
56 #define CKGR_MOR                        0xFFFFFC20
57 #define CKGR_MCFR_MAINRDY       0x10000
58 #define CKGR_PLLR                       0xFFFFFC2c
59 #define CKGR_PLLR_DIV           0xff
60 #define CKGR_PLLR_MUL           0x07ff0000
61 #define PMC_MCKR                        0xFFFFFC30
62 #define PMC_MCKR_CSS            0x03
63 #define PMC_MCKR_PRES           0x1c
64
65 /* Flash Controller Commands */
66 #define WP              0x01
67 #define SLB             0x02
68 #define WPL             0x03
69 #define CLB             0x04
70 #define EA              0x08
71 #define SGPB    0x0B
72 #define CGPB    0x0D
73 #define SSB             0x0F
74
75 /* MC_FSR bit definitions */
76 #define MC_FSR_FRDY                     1
77 #define MC_FSR_EOL                      2
78
79 /* AT91SAM7 constants */
80 #define RC_FREQ                         32000
81
82 /* Flash timing modes */
83 #define FMR_TIMING_NONE         0
84 #define FMR_TIMING_NVBITS       1
85 #define FMR_TIMING_FLASH        2
86
87 /* Flash size constants */
88 #define FLASH_SIZE_8KB          1
89 #define FLASH_SIZE_16KB         2
90 #define FLASH_SIZE_32KB         3
91 #define FLASH_SIZE_64KB         5
92 #define FLASH_SIZE_128KB        7
93 #define FLASH_SIZE_256KB        9
94 #define FLASH_SIZE_512KB        10
95 #define FLASH_SIZE_1024KB       12
96 #define FLASH_SIZE_2048KB       14
97
98 static int at91sam7_protect_check(struct flash_bank *bank);
99 static int at91sam7_write(struct flash_bank *bank, const uint8_t *buffer, uint32_t offset,
100                 uint32_t count);
101
102 static uint32_t at91sam7_get_flash_status(struct target *target, int bank_number);
103 static void at91sam7_set_flash_mode(struct flash_bank *bank, int mode);
104 static uint32_t at91sam7_wait_status_busy(struct flash_bank *bank, uint32_t waitbits, int timeout);
105 static int at91sam7_flash_command(struct flash_bank *bank, uint8_t cmd, uint16_t pagen);
106
107 static const uint32_t MC_FMR[4] = { 0xFFFFFF60, 0xFFFFFF70, 0xFFFFFF80, 0xFFFFFF90 };
108 static const uint32_t MC_FCR[4] = { 0xFFFFFF64, 0xFFFFFF74, 0xFFFFFF84, 0xFFFFFF94 };
109 static const uint32_t MC_FSR[4] = { 0xFFFFFF68, 0xFFFFFF78, 0xFFFFFF88, 0xFFFFFF98 };
110
111 static const char *EPROC[8] = {
112         "Unknown", "ARM946-E", "ARM7TDMI", "Unknown", "ARM920T", "ARM926EJ-S", "Unknown", "Unknown"
113 };
114
115 struct at91sam7_flash_bank {
116         /* chip id register */
117         uint32_t cidr;
118         uint16_t cidr_ext;
119         uint16_t cidr_nvptyp;
120         uint16_t cidr_arch;
121         uint16_t cidr_sramsiz;
122         uint16_t cidr_nvpsiz;
123         uint16_t cidr_nvpsiz2;
124         uint16_t cidr_eproc;
125         uint16_t cidr_version;
126         const char *target_name;
127
128         /* flash auto-detection */
129         uint8_t flash_autodetection;
130
131         /* flash geometry */
132         uint16_t pages_per_sector;
133         uint16_t pagesize;
134         uint16_t pages_in_lockregion;
135
136         /* nv memory bits */
137         uint16_t num_lockbits_on;
138         uint16_t lockbits;
139         uint16_t num_nvmbits;
140         uint16_t num_nvmbits_on;
141         uint16_t nvmbits;
142         uint8_t securitybit;
143
144         /* 0: not init
145          * 1: fmcn for nvbits (1uS)
146          * 2: fmcn for flash (1.5uS) */
147         uint8_t flashmode;
148
149         /* main clock status */
150         uint8_t mck_valid;
151         uint32_t mck_freq;
152
153         /* external clock frequency */
154         uint32_t ext_freq;
155
156 };
157
158 #if 0
159 static long SRAMSIZ[16] = {
160         -1,
161         0x0400,         /*  1K */
162         0x0800,         /*  2K */
163         -1,
164         0x1c000,        /* 112K */
165         0x1000,         /*   4K */
166         0x14000,        /*  80K */
167         0x28000,        /* 160K */
168         0x2000,         /*   8K */
169         0x4000,         /*  16K */
170         0x8000,         /*  32K */
171         0x10000,        /*  64K */
172         0x20000,        /* 128K */
173         0x40000,        /* 256K */
174         0x18000,        /*  96K */
175         0x80000,        /* 512K */
176 };
177 #endif
178
179 static uint32_t at91sam7_get_flash_status(struct target *target, int bank_number)
180 {
181         uint32_t fsr;
182         target_read_u32(target, MC_FSR[bank_number], &fsr);
183
184         return fsr;
185 }
186
187 /* Read clock configuration and set at91sam7_info->mck_freq */
188 static void at91sam7_read_clock_info(struct flash_bank *bank)
189 {
190         struct at91sam7_flash_bank *at91sam7_info = bank->driver_priv;
191         struct target *target = bank->target;
192         uint32_t mckr, mcfr, pllr, mor;
193         unsigned long tmp = 0, mainfreq;
194
195         /* Read Clock Generator Main Oscillator Register */
196         target_read_u32(target, CKGR_MOR, &mor);
197         /* Read Clock Generator Main Clock Frequency Register */
198         target_read_u32(target, CKGR_MCFR, &mcfr);
199         /* Read Master Clock Register*/
200         target_read_u32(target, PMC_MCKR, &mckr);
201         /* Read Clock Generator PLL Register  */
202         target_read_u32(target, CKGR_PLLR, &pllr);
203
204         at91sam7_info->mck_valid = 0;
205         at91sam7_info->mck_freq = 0;
206         switch (mckr & PMC_MCKR_CSS) {
207                 case 0:                 /* Slow Clock */
208                         at91sam7_info->mck_valid = 1;
209                         tmp = RC_FREQ;
210                         break;
211
212                 case 1:                 /* Main Clock */
213                         if ((mcfr & CKGR_MCFR_MAINRDY) &&
214                         (at91sam7_info->ext_freq == 0)) {
215                                 at91sam7_info->mck_valid = 1;
216                                 tmp = RC_FREQ / 16ul * (mcfr & 0xffff);
217                         } else if (at91sam7_info->ext_freq != 0) {
218                                 at91sam7_info->mck_valid = 1;
219                                 tmp = at91sam7_info->ext_freq;
220                         }
221                         break;
222
223                 case 2:                 /* Reserved */
224                         break;
225
226                 case 3:                 /* PLL Clock */
227                         if ((mcfr & CKGR_MCFR_MAINRDY) &&
228                         (at91sam7_info->ext_freq == 0)) {
229                                 target_read_u32(target, CKGR_PLLR, &pllr);
230                                 if (!(pllr & CKGR_PLLR_DIV))
231                                         break;  /* 0 Hz */
232                                 at91sam7_info->mck_valid = 1;
233                                 mainfreq = RC_FREQ / 16ul * (mcfr & 0xffff);
234                                 /* Integer arithmetic should have sufficient precision
235                                  * as long as PLL is properly configured. */
236                                 tmp = mainfreq / (pllr & CKGR_PLLR_DIV)*
237                                                 (((pllr & CKGR_PLLR_MUL) >> 16) + 1);
238                         } else if ((at91sam7_info->ext_freq != 0) &&
239                                         ((pllr&CKGR_PLLR_DIV) != 0)) {
240                                 at91sam7_info->mck_valid = 1;
241                                 tmp = at91sam7_info->ext_freq / (pllr&CKGR_PLLR_DIV)*
242                                                 (((pllr & CKGR_PLLR_MUL) >> 16) + 1);
243                         }
244                         break;
245         }
246
247         /* Prescaler adjust */
248         if ((((mckr & PMC_MCKR_PRES) >> 2) == 7) || (tmp == 0)) {
249                 at91sam7_info->mck_valid = 0;
250                 at91sam7_info->mck_freq = 0;
251         } else if (((mckr & PMC_MCKR_PRES) >> 2) != 0)
252                 at91sam7_info->mck_freq = tmp >> ((mckr & PMC_MCKR_PRES) >> 2);
253         else
254                 at91sam7_info->mck_freq = tmp;
255 }
256
257 /* Setup the timimg registers for nvbits or normal flash */
258 static void at91sam7_set_flash_mode(struct flash_bank *bank, int mode)
259 {
260         uint32_t fmr, fmcn = 0, fws = 0;
261         struct at91sam7_flash_bank *at91sam7_info = bank->driver_priv;
262         struct target *target = bank->target;
263
264         if (mode && (mode != at91sam7_info->flashmode)) {
265                 /* Always round up (ceil) */
266                 if (mode == FMR_TIMING_NVBITS) {
267                         if (at91sam7_info->cidr_arch == 0x60) {
268                                 /* AT91SAM7A3 uses master clocks in 100 ns */
269                                 fmcn = (at91sam7_info->mck_freq/10000000ul) + 1;
270                         } else {
271                                 /* master clocks in 1uS for ARCH 0x7 types */
272                                 fmcn = (at91sam7_info->mck_freq/1000000ul) + 1;
273                         }
274                 } else if (mode == FMR_TIMING_FLASH) {
275                         /* main clocks in 1.5uS */
276                         fmcn = (at91sam7_info->mck_freq/1000000ul)+
277                                 (at91sam7_info->mck_freq/2000000ul) + 1;
278                 }
279
280                 /* hard overclocking */
281                 if (fmcn > 0xFF)
282                         fmcn = 0xFF;
283
284                 /* Only allow fmcn = 0 if clock period is > 30 us = 33kHz. */
285                 if (at91sam7_info->mck_freq <= 33333ul)
286                         fmcn = 0;
287                 /* Only allow fws = 0 if clock frequency is < 30 MHz. */
288                 if (at91sam7_info->mck_freq > 30000000ul)
289                         fws = 1;
290
291                 LOG_DEBUG("fmcn[%i]: %i", bank->bank_number, (int)(fmcn));
292                 fmr = fmcn << 16 | fws << 8;
293                 target_write_u32(target, MC_FMR[bank->bank_number], fmr);
294         }
295
296         at91sam7_info->flashmode = mode;
297 }
298
299 static uint32_t at91sam7_wait_status_busy(struct flash_bank *bank, uint32_t waitbits, int timeout)
300 {
301         uint32_t status;
302
303         while ((!((status = at91sam7_get_flash_status(bank->target,
304                         bank->bank_number)) & waitbits)) && (timeout-- > 0)) {
305                 LOG_DEBUG("status[%i]: 0x%" PRIx32 "", (int)bank->bank_number, status);
306                 alive_sleep(1);
307         }
308
309         LOG_DEBUG("status[%i]: 0x%" PRIx32 "", bank->bank_number, status);
310
311         if (status & 0x0C) {
312                 LOG_ERROR("status register: 0x%" PRIx32 "", status);
313                 if (status & 0x4)
314                         LOG_ERROR("Lock Error Bit Detected, Operation Abort");
315                 if (status & 0x8)
316                         LOG_ERROR("Invalid command and/or bad keyword, Operation Abort");
317                 if (status & 0x10)
318                         LOG_ERROR("Security Bit Set, Operation Abort");
319         }
320
321         return status;
322 }
323
324 /* Send one command to the AT91SAM flash controller */
325 static int at91sam7_flash_command(struct flash_bank *bank, uint8_t cmd, uint16_t pagen)
326 {
327         uint32_t fcr;
328         struct at91sam7_flash_bank *at91sam7_info = bank->driver_priv;
329         struct target *target = bank->target;
330
331         fcr = (0x5A << 24) | ((pagen&0x3FF) << 8) | cmd;
332         target_write_u32(target, MC_FCR[bank->bank_number], fcr);
333         LOG_DEBUG("Flash command: 0x%" PRIx32 ", flash bank: %i, page number: %u",
334                 fcr,
335                 bank->bank_number + 1,
336                 pagen);
337
338         if ((at91sam7_info->cidr_arch == 0x60) && ((cmd == SLB) | (cmd == CLB))) {
339                 /* Lock bit manipulation on AT91SAM7A3 waits for FC_FSR bit 1, EOL */
340                 if (at91sam7_wait_status_busy(bank, MC_FSR_EOL, 10)&0x0C)
341                         return ERROR_FLASH_OPERATION_FAILED;
342                 return ERROR_OK;
343         }
344
345         if (at91sam7_wait_status_busy(bank, MC_FSR_FRDY, 10)&0x0C)
346                 return ERROR_FLASH_OPERATION_FAILED;
347
348         return ERROR_OK;
349 }
350
351 /* Read device id register, main clock frequency register and fill in driver info structure */
352 static int at91sam7_read_part_info(struct flash_bank *bank)
353 {
354         struct at91sam7_flash_bank *at91sam7_info;
355         struct target *target = bank->target;
356
357         uint16_t bnk, sec;
358         uint16_t arch;
359         uint32_t cidr;
360         uint8_t banks_num = 0;
361         uint16_t num_nvmbits = 0;
362         uint16_t sectors_num = 0;
363         uint16_t pages_per_sector = 0;
364         uint16_t page_size = 0;
365         uint32_t ext_freq;
366         uint32_t bank_size;
367         uint32_t base_address = 0;
368         char *target_name_t = "Unknown";
369
370         at91sam7_info = bank->driver_priv;
371
372         if (at91sam7_info->cidr != 0) {
373                 /* flash already configured, update clock and check for protected sectors */
374                 for (struct flash_bank *t_bank = bank; t_bank; t_bank = t_bank->next) {
375                         if (t_bank->target != target)
376                                 continue;
377                         /* re-calculate master clock frequency */
378                         at91sam7_read_clock_info(t_bank);
379
380                         /* no timming */
381                         at91sam7_set_flash_mode(t_bank, FMR_TIMING_NONE);
382
383                         /* check protect state */
384                         at91sam7_protect_check(t_bank);
385                 }
386
387                 return ERROR_OK;
388         }
389
390         /* Read and parse chip identification register */
391         target_read_u32(target, DBGU_CIDR, &cidr);
392         if (cidr == 0) {
393                 LOG_WARNING("Cannot identify target as an AT91SAM");
394                 return ERROR_FLASH_OPERATION_FAILED;
395         }
396
397         if (at91sam7_info->flash_autodetection == 0) {
398                 /* banks and sectors are already created, based on data from input file */
399                 for (struct flash_bank *t_bank = bank; t_bank; t_bank = t_bank->next) {
400                         if (t_bank->target != target)
401                                 continue;
402
403                         at91sam7_info = t_bank->driver_priv;
404
405                         at91sam7_info->cidr = cidr;
406                         at91sam7_info->cidr_ext = (cidr >> 31)&0x0001;
407                         at91sam7_info->cidr_nvptyp = (cidr >> 28)&0x0007;
408                         at91sam7_info->cidr_arch = (cidr >> 20)&0x00FF;
409                         at91sam7_info->cidr_sramsiz = (cidr >> 16)&0x000F;
410                         at91sam7_info->cidr_nvpsiz2 = (cidr >> 12)&0x000F;
411                         at91sam7_info->cidr_nvpsiz = (cidr >> 8)&0x000F;
412                         at91sam7_info->cidr_eproc = (cidr >> 5)&0x0007;
413                         at91sam7_info->cidr_version = cidr&0x001F;
414
415                         /* calculate master clock frequency */
416                         at91sam7_read_clock_info(t_bank);
417
418                         /* no timming */
419                         at91sam7_set_flash_mode(t_bank, FMR_TIMING_NONE);
420
421                         /* check protect state */
422                         at91sam7_protect_check(t_bank);
423                 }
424
425                 return ERROR_OK;
426         }
427
428         arch = (cidr >> 20)&0x00FF;
429
430         /* check flash size */
431         switch ((cidr >> 8)&0x000F) {
432                 case FLASH_SIZE_8KB:
433                         break;
434
435                 case FLASH_SIZE_16KB:
436                         banks_num = 1;
437                         sectors_num = 8;
438                         pages_per_sector = 32;
439                         page_size  = 64;
440                         base_address = 0x00100000;
441                         if (arch == 0x70) {
442                                 num_nvmbits = 2;
443                                 target_name_t = "AT91SAM7S161/16";
444                         }
445                         break;
446
447                 case FLASH_SIZE_32KB:
448                         banks_num = 1;
449                         sectors_num = 8;
450                         pages_per_sector = 32;
451                         page_size  = 128;
452                         base_address = 0x00100000;
453                         if (arch == 0x70) {
454                                 num_nvmbits = 2;
455                                 target_name_t = "AT91SAM7S321/32";
456                         }
457                         if (arch == 0x72) {
458                                 num_nvmbits = 3;
459                                 target_name_t = "AT91SAM7SE32";
460                         }
461                         break;
462
463                 case FLASH_SIZE_64KB:
464                         banks_num = 1;
465                         sectors_num = 16;
466                         pages_per_sector = 32;
467                         page_size  = 128;
468                         base_address = 0x00100000;
469                         if (arch == 0x70) {
470                                 num_nvmbits = 2;
471                                 target_name_t = "AT91SAM7S64";
472                         }
473                         break;
474
475                 case FLASH_SIZE_128KB:
476                         banks_num = 1;
477                         sectors_num = 8;
478                         pages_per_sector = 64;
479                         page_size  = 256;
480                         base_address = 0x00100000;
481                         if (arch == 0x70) {
482                                 num_nvmbits = 2;
483                                 target_name_t = "AT91SAM7S128";
484                         }
485                         if (arch == 0x71) {
486                                 num_nvmbits = 3;
487                                 target_name_t = "AT91SAM7XC128";
488                         }
489                         if (arch == 0x72) {
490                                 num_nvmbits = 3;
491                                 target_name_t = "AT91SAM7SE128";
492                         }
493                         if (arch == 0x75) {
494                                 num_nvmbits = 3;
495                                 target_name_t = "AT91SAM7X128";
496                         }
497                         break;
498
499                 case FLASH_SIZE_256KB:
500                         banks_num = 1;
501                         sectors_num = 16;
502                         pages_per_sector = 64;
503                         page_size  = 256;
504                         base_address = 0x00100000;
505                         if (arch == 0x60) {
506                                 num_nvmbits = 3;
507                                 target_name_t = "AT91SAM7A3";
508                         }
509                         if (arch == 0x70) {
510                                 num_nvmbits = 2;
511                                 target_name_t = "AT91SAM7S256";
512                         }
513                         if (arch == 0x71) {
514                                 num_nvmbits = 3;
515                                 target_name_t = "AT91SAM7XC256";
516                         }
517                         if (arch == 0x72) {
518                                 num_nvmbits = 3;
519                                 target_name_t = "AT91SAM7SE256";
520                         }
521                         if (arch == 0x75) {
522                                 num_nvmbits = 3;
523                                 target_name_t = "AT91SAM7X256";
524                         }
525                         break;
526
527                 case FLASH_SIZE_512KB:
528                         banks_num = 2;
529                         sectors_num = 16;
530                         pages_per_sector = 64;
531                         page_size  = 256;
532                         base_address = 0x00100000;
533                         if (arch == 0x70) {
534                                 num_nvmbits = 2;
535                                 target_name_t = "AT91SAM7S512";
536                         }
537                         if (arch == 0x71) {
538                                 num_nvmbits = 3;
539                                 target_name_t = "AT91SAM7XC512";
540                         }
541                         if (arch == 0x72) {
542                                 num_nvmbits = 3;
543                                 target_name_t = "AT91SAM7SE512";
544                         }
545                         if (arch == 0x75) {
546                                 num_nvmbits = 3;
547                                 target_name_t = "AT91SAM7X512";
548                         }
549                         break;
550
551                 case FLASH_SIZE_1024KB:
552                         break;
553
554                 case FLASH_SIZE_2048KB:
555                         break;
556         }
557
558         if (strcmp(target_name_t, "Unknown") == 0) {
559                 LOG_ERROR(
560                         "Target autodetection failed! Please specify target parameters in configuration file");
561                 return ERROR_FLASH_OPERATION_FAILED;
562         }
563
564         ext_freq = at91sam7_info->ext_freq;
565
566         /* calculate bank size  */
567         bank_size = sectors_num * pages_per_sector * page_size;
568
569         for (bnk = 0; bnk < banks_num; bnk++) {
570                 struct flash_bank *t_bank = bank;
571                 if (bnk > 0) {
572                         if (!t_bank->next) {
573                                 /* create a new flash bank element */
574                                 struct flash_bank *fb = malloc(sizeof(struct flash_bank));
575                                 fb->target = target;
576                                 fb->driver = bank->driver;
577                                 fb->driver_priv = malloc(sizeof(struct at91sam7_flash_bank));
578                                 fb->name = "sam7_probed";
579                                 fb->next = NULL;
580
581                                 /* link created bank in 'flash_banks' list */
582                                 t_bank->next = fb;
583                         }
584                         t_bank = t_bank->next;
585                 }
586
587                 t_bank->bank_number = bnk;
588                 t_bank->base = base_address + bnk * bank_size;
589                 t_bank->size = bank_size;
590                 t_bank->chip_width = 0;
591                 t_bank->bus_width = 4;
592                 t_bank->num_sectors = sectors_num;
593
594                 /* allocate sectors */
595                 t_bank->sectors = malloc(sectors_num * sizeof(struct flash_sector));
596                 for (sec = 0; sec < sectors_num; sec++) {
597                         t_bank->sectors[sec].offset = sec * pages_per_sector * page_size;
598                         t_bank->sectors[sec].size = pages_per_sector * page_size;
599                         t_bank->sectors[sec].is_erased = -1;
600                         t_bank->sectors[sec].is_protected = -1;
601                 }
602
603                 at91sam7_info = t_bank->driver_priv;
604
605                 at91sam7_info->cidr = cidr;
606                 at91sam7_info->cidr_ext = (cidr >> 31)&0x0001;
607                 at91sam7_info->cidr_nvptyp = (cidr >> 28)&0x0007;
608                 at91sam7_info->cidr_arch = (cidr >> 20)&0x00FF;
609                 at91sam7_info->cidr_sramsiz = (cidr >> 16)&0x000F;
610                 at91sam7_info->cidr_nvpsiz2 = (cidr >> 12)&0x000F;
611                 at91sam7_info->cidr_nvpsiz = (cidr >> 8)&0x000F;
612                 at91sam7_info->cidr_eproc = (cidr >> 5)&0x0007;
613                 at91sam7_info->cidr_version = cidr&0x001F;
614
615                 at91sam7_info->target_name  = target_name_t;
616                 at91sam7_info->flashmode = 0;
617                 at91sam7_info->ext_freq = ext_freq;
618                 at91sam7_info->num_nvmbits = num_nvmbits;
619                 at91sam7_info->num_nvmbits_on = 0;
620                 at91sam7_info->pagesize = page_size;
621                 at91sam7_info->pages_per_sector = pages_per_sector;
622
623                 /* calculate master clock frequency */
624                 at91sam7_read_clock_info(t_bank);
625
626                 /* no timming */
627                 at91sam7_set_flash_mode(t_bank, FMR_TIMING_NONE);
628
629                 /* check protect state */
630                 at91sam7_protect_check(t_bank);
631         }
632
633         LOG_DEBUG("nvptyp: 0x%3.3x, arch: 0x%4.4x",
634                 at91sam7_info->cidr_nvptyp,
635                 at91sam7_info->cidr_arch);
636
637         return ERROR_OK;
638 }
639
640 static int at91sam7_erase_check(struct flash_bank *bank)
641 {
642         if (bank->target->state != TARGET_HALTED) {
643                 LOG_ERROR("Target not halted");
644                 return ERROR_TARGET_NOT_HALTED;
645         }
646
647         /* Configure the flash controller timing */
648         at91sam7_read_clock_info(bank);
649         at91sam7_set_flash_mode(bank, FMR_TIMING_FLASH);
650
651         return default_flash_blank_check(bank);
652 }
653
654 static int at91sam7_protect_check(struct flash_bank *bank)
655 {
656         uint8_t lock_pos, gpnvm_pos;
657         uint32_t status;
658
659         struct at91sam7_flash_bank *at91sam7_info = bank->driver_priv;
660
661         if (at91sam7_info->cidr == 0)
662                 return ERROR_FLASH_BANK_NOT_PROBED;
663         if (bank->target->state != TARGET_HALTED) {
664                 LOG_ERROR("Target not halted");
665                 return ERROR_TARGET_NOT_HALTED;
666         }
667
668         status = at91sam7_get_flash_status(bank->target, bank->bank_number);
669         at91sam7_info->lockbits = (status >> 16);
670
671         at91sam7_info->num_lockbits_on = 0;
672         for (lock_pos = 0; lock_pos < bank->num_sectors; lock_pos++) {
673                 if (((status >> (16 + lock_pos))&(0x0001)) == 1) {
674                         at91sam7_info->num_lockbits_on++;
675                         bank->sectors[lock_pos].is_protected = 1;
676                 } else
677                         bank->sectors[lock_pos].is_protected = 0;
678         }
679
680         /* GPNVM and SECURITY bits apply only for MC_FSR of EFC0 */
681         status = at91sam7_get_flash_status(bank->target, 0);
682
683         at91sam7_info->securitybit = (status >> 4)&0x01;
684         at91sam7_info->nvmbits = (status >> 8)&0xFF;
685
686         at91sam7_info->num_nvmbits_on = 0;
687         for (gpnvm_pos = 0; gpnvm_pos < at91sam7_info->num_nvmbits; gpnvm_pos++) {
688                 if (((status >> (8 + gpnvm_pos))&(0x01)) == 1)
689                         at91sam7_info->num_nvmbits_on++;
690         }
691
692         return ERROR_OK;
693 }
694
695 FLASH_BANK_COMMAND_HANDLER(at91sam7_flash_bank_command)
696 {
697         struct flash_bank *t_bank = bank;
698         struct at91sam7_flash_bank *at91sam7_info;
699         struct target *target = t_bank->target;
700
701         uint32_t base_address;
702         uint32_t bank_size;
703         uint32_t ext_freq = 0;
704
705         int chip_width;
706         int bus_width;
707         int banks_num;
708         int num_sectors;
709
710         uint16_t pages_per_sector;
711         uint16_t page_size;
712         uint16_t num_nvmbits;
713
714         char *target_name_t;
715
716         int bnk, sec;
717
718         at91sam7_info = malloc(sizeof(struct at91sam7_flash_bank));
719         t_bank->driver_priv = at91sam7_info;
720
721         /* part wasn't probed for info yet */
722         at91sam7_info->cidr = 0;
723         at91sam7_info->flashmode = 0;
724         at91sam7_info->ext_freq = 0;
725         at91sam7_info->flash_autodetection = 0;
726
727         if (CMD_ARGC < 13) {
728                 at91sam7_info->flash_autodetection = 1;
729                 return ERROR_OK;
730         }
731
732         COMMAND_PARSE_NUMBER(u32, CMD_ARGV[1], base_address);
733
734         COMMAND_PARSE_NUMBER(int, CMD_ARGV[3], chip_width);
735         COMMAND_PARSE_NUMBER(int, CMD_ARGV[4], bus_width);
736
737         COMMAND_PARSE_NUMBER(int, CMD_ARGV[8], banks_num);
738         COMMAND_PARSE_NUMBER(int, CMD_ARGV[9], num_sectors);
739         COMMAND_PARSE_NUMBER(u16, CMD_ARGV[10], pages_per_sector);
740         COMMAND_PARSE_NUMBER(u16, CMD_ARGV[11], page_size);
741         COMMAND_PARSE_NUMBER(u16, CMD_ARGV[12], num_nvmbits);
742
743         if (CMD_ARGC == 14) {
744                 unsigned long freq;
745                 COMMAND_PARSE_NUMBER(ulong, CMD_ARGV[13], freq);
746                 ext_freq = freq * 1000;
747                 at91sam7_info->ext_freq = ext_freq;
748         }
749
750         if ((bus_width == 0) || (banks_num == 0) || (num_sectors == 0) ||
751                         (pages_per_sector == 0) || (page_size == 0) || (num_nvmbits == 0)) {
752                 at91sam7_info->flash_autodetection = 1;
753                 return ERROR_OK;
754         }
755
756         target_name_t = calloc(strlen(CMD_ARGV[7]) + 1, sizeof(char));
757         strcpy(target_name_t, CMD_ARGV[7]);
758
759         /* calculate bank size  */
760         bank_size = num_sectors * pages_per_sector * page_size;
761
762         for (bnk = 0; bnk < banks_num; bnk++) {
763                 if (bnk > 0) {
764                         if (!t_bank->next) {
765                                 /* create a new bank element */
766                                 struct flash_bank *fb = malloc(sizeof(struct flash_bank));
767                                 fb->target = target;
768                                 fb->driver = bank->driver;
769                                 fb->driver_priv = malloc(sizeof(struct at91sam7_flash_bank));
770                                 fb->name = "sam7_probed";
771                                 fb->next = NULL;
772
773                                 /* link created bank in 'flash_banks' list */
774                                 t_bank->next = fb;
775                         }
776                         t_bank = t_bank->next;
777                 }
778
779                 t_bank->bank_number = bnk;
780                 t_bank->base = base_address + bnk * bank_size;
781                 t_bank->size = bank_size;
782                 t_bank->chip_width = chip_width;
783                 t_bank->bus_width = bus_width;
784                 t_bank->num_sectors = num_sectors;
785
786                 /* allocate sectors */
787                 t_bank->sectors = malloc(num_sectors * sizeof(struct flash_sector));
788                 for (sec = 0; sec < num_sectors; sec++) {
789                         t_bank->sectors[sec].offset = sec * pages_per_sector * page_size;
790                         t_bank->sectors[sec].size = pages_per_sector * page_size;
791                         t_bank->sectors[sec].is_erased = -1;
792                         t_bank->sectors[sec].is_protected = -1;
793                 }
794
795                 at91sam7_info = t_bank->driver_priv;
796
797                 at91sam7_info->target_name  = target_name_t;
798                 at91sam7_info->flashmode = 0;
799                 at91sam7_info->ext_freq  = ext_freq;
800                 at91sam7_info->num_nvmbits = num_nvmbits;
801                 at91sam7_info->num_nvmbits_on = 0;
802                 at91sam7_info->pagesize = page_size;
803                 at91sam7_info->pages_per_sector = pages_per_sector;
804         }
805
806         return ERROR_OK;
807 }
808
809 static int at91sam7_erase(struct flash_bank *bank, int first, int last)
810 {
811         struct at91sam7_flash_bank *at91sam7_info = bank->driver_priv;
812         int sec;
813         uint32_t nbytes, pos;
814         uint8_t *buffer;
815         uint8_t erase_all;
816
817         if (at91sam7_info->cidr == 0)
818                 return ERROR_FLASH_BANK_NOT_PROBED;
819
820         if (bank->target->state != TARGET_HALTED) {
821                 LOG_ERROR("Target not halted");
822                 return ERROR_TARGET_NOT_HALTED;
823         }
824
825         if ((first < 0) || (last < first) || (last >= bank->num_sectors))
826                 return ERROR_FLASH_SECTOR_INVALID;
827
828         erase_all = 0;
829         if ((first == 0) && (last == (bank->num_sectors-1)))
830                 erase_all = 1;
831
832         /* Configure the flash controller timing */
833         at91sam7_read_clock_info(bank);
834         at91sam7_set_flash_mode(bank, FMR_TIMING_FLASH);
835
836         if (erase_all) {
837                 if (at91sam7_flash_command(bank, EA, 0) != ERROR_OK)
838                         return ERROR_FLASH_OPERATION_FAILED;
839         } else {
840                 /* allocate and clean buffer  */
841                 nbytes = (last - first + 1) * bank->sectors[first].size;
842                 buffer = malloc(nbytes * sizeof(uint8_t));
843                 for (pos = 0; pos < nbytes; pos++)
844                         buffer[pos] = 0xFF;
845
846                 if (at91sam7_write(bank, buffer, bank->sectors[first].offset, nbytes) != ERROR_OK) {
847                         free(buffer);
848                         return ERROR_FLASH_OPERATION_FAILED;
849                 }
850
851                 free(buffer);
852         }
853
854         /* mark erased sectors */
855         for (sec = first; sec <= last; sec++)
856                 bank->sectors[sec].is_erased = 1;
857
858         return ERROR_OK;
859 }
860
861 static int at91sam7_protect(struct flash_bank *bank, int set, int first, int last)
862 {
863         uint32_t cmd;
864         int sector;
865         uint32_t pagen;
866
867         struct at91sam7_flash_bank *at91sam7_info = bank->driver_priv;
868
869         if (at91sam7_info->cidr == 0)
870                 return ERROR_FLASH_BANK_NOT_PROBED;
871
872         if (bank->target->state != TARGET_HALTED) {
873                 LOG_ERROR("Target not halted");
874                 return ERROR_TARGET_NOT_HALTED;
875         }
876
877         if ((first < 0) || (last < first) || (last >= bank->num_sectors))
878                 return ERROR_FLASH_SECTOR_INVALID;
879
880         /* Configure the flash controller timing */
881         at91sam7_read_clock_info(bank);
882         at91sam7_set_flash_mode(bank, FMR_TIMING_NVBITS);
883
884         for (sector = first; sector <= last; sector++) {
885                 if (set)
886                         cmd = SLB;
887                 else
888                         cmd = CLB;
889
890                 /* if we lock a page from one sector then entire sector will be locked, also,
891                  * if we unlock a page from a locked sector, entire sector will be unlocked   */
892                 pagen = sector * at91sam7_info->pages_per_sector;
893
894                 if (at91sam7_flash_command(bank, cmd, pagen) != ERROR_OK)
895                         return ERROR_FLASH_OPERATION_FAILED;
896         }
897
898         at91sam7_protect_check(bank);
899
900         return ERROR_OK;
901 }
902
903 static int at91sam7_write(struct flash_bank *bank, const uint8_t *buffer, uint32_t offset, uint32_t count)
904 {
905         int retval;
906         struct at91sam7_flash_bank *at91sam7_info = bank->driver_priv;
907         struct target *target = bank->target;
908         uint32_t dst_min_alignment, wcount, bytes_remaining = count;
909         uint32_t first_page, last_page, pagen, buffer_pos;
910
911         if (at91sam7_info->cidr == 0)
912                 return ERROR_FLASH_BANK_NOT_PROBED;
913
914         if (bank->target->state != TARGET_HALTED) {
915                 LOG_ERROR("Target not halted");
916                 return ERROR_TARGET_NOT_HALTED;
917         }
918
919         if (offset + count > bank->size)
920                 return ERROR_FLASH_DST_OUT_OF_BANK;
921
922         dst_min_alignment = at91sam7_info->pagesize;
923
924         if (offset % dst_min_alignment) {
925                 LOG_WARNING("offset 0x%" PRIx32 " breaks required alignment 0x%" PRIx32 "",
926                         offset,
927                         dst_min_alignment);
928                 return ERROR_FLASH_DST_BREAKS_ALIGNMENT;
929         }
930
931         if (at91sam7_info->cidr_arch == 0)
932                 return ERROR_FLASH_BANK_NOT_PROBED;
933
934         first_page = offset/dst_min_alignment;
935         last_page = DIV_ROUND_UP(offset + count, dst_min_alignment);
936
937         LOG_DEBUG("first_page: %i, last_page: %i, count %i",
938                 (int)first_page,
939                 (int)last_page,
940                 (int)count);
941
942         /* Configure the flash controller timing */
943         at91sam7_read_clock_info(bank);
944         at91sam7_set_flash_mode(bank, FMR_TIMING_FLASH);
945
946         for (pagen = first_page; pagen < last_page; pagen++) {
947                 if (bytes_remaining < dst_min_alignment)
948                         count = bytes_remaining;
949                 else
950                         count = dst_min_alignment;
951                 bytes_remaining -= count;
952
953                 /* Write one block to the PageWriteBuffer */
954                 buffer_pos = (pagen-first_page)*dst_min_alignment;
955                 wcount = DIV_ROUND_UP(count, 4);
956                 retval = target_write_memory(target, bank->base + pagen*dst_min_alignment, 4,
957                                 wcount, buffer + buffer_pos);
958                 if (retval != ERROR_OK)
959                         return retval;
960
961                 /* Send Write Page command to Flash Controller */
962                 if (at91sam7_flash_command(bank, WP, pagen) != ERROR_OK)
963                         return ERROR_FLASH_OPERATION_FAILED;
964                 LOG_DEBUG("Write flash bank:%i page number:%" PRIi32 "", bank->bank_number, pagen);
965         }
966
967         return ERROR_OK;
968 }
969
970 static int at91sam7_probe(struct flash_bank *bank)
971 {
972         /* we can't probe on an at91sam7
973          * if this is an at91sam7, it has the configured flash */
974         int retval;
975
976         if (bank->target->state != TARGET_HALTED) {
977                 LOG_ERROR("Target not halted");
978                 return ERROR_TARGET_NOT_HALTED;
979         }
980
981         retval = at91sam7_read_part_info(bank);
982         if (retval != ERROR_OK)
983                 return retval;
984
985         return ERROR_OK;
986 }
987
988 static int get_at91sam7_info(struct flash_bank *bank, char *buf, int buf_size)
989 {
990         int printed;
991         struct at91sam7_flash_bank *at91sam7_info = bank->driver_priv;
992
993         if (at91sam7_info->cidr == 0)
994                 return ERROR_FLASH_BANK_NOT_PROBED;
995
996         printed = snprintf(buf, buf_size,
997                         "\n at91sam7 driver information: Chip is %s\n",
998                         at91sam7_info->target_name);
999
1000         buf += printed;
1001         buf_size -= printed;
1002
1003         printed = snprintf(buf,
1004                         buf_size,
1005                         " Cidr: 0x%8.8" PRIx32 " | Arch: 0x%4.4x | Eproc: %s | Version: 0x%3.3x | "
1006                         "Flashsize: 0x%8.8" PRIx32 "\n",
1007                         at91sam7_info->cidr,
1008                         at91sam7_info->cidr_arch,
1009                         EPROC[at91sam7_info->cidr_eproc],
1010                         at91sam7_info->cidr_version,
1011                         bank->size);
1012
1013         buf += printed;
1014         buf_size -= printed;
1015
1016         printed = snprintf(buf, buf_size,
1017                         " Master clock (estimated): %u KHz | External clock: %u KHz\n",
1018                         (unsigned)(at91sam7_info->mck_freq / 1000),
1019                         (unsigned)(at91sam7_info->ext_freq / 1000));
1020
1021         buf += printed;
1022         buf_size -= printed;
1023
1024         printed = snprintf(buf,
1025                         buf_size,
1026                         " Pagesize: %i bytes | Lockbits(%i): %i 0x%4.4x | Pages in lock region: %i\n",
1027                         at91sam7_info->pagesize,
1028                         bank->num_sectors,
1029                         at91sam7_info->num_lockbits_on,
1030                         at91sam7_info->lockbits,
1031                         at91sam7_info->pages_per_sector*at91sam7_info->num_lockbits_on);
1032
1033         buf += printed;
1034         buf_size -= printed;
1035
1036         snprintf(buf, buf_size,
1037                 " Securitybit: %i | Nvmbits(%i): %i 0x%1.1x\n",
1038                 at91sam7_info->securitybit, at91sam7_info->num_nvmbits,
1039                 at91sam7_info->num_nvmbits_on, at91sam7_info->nvmbits);
1040
1041         return ERROR_OK;
1042 }
1043
1044 /*
1045 * On AT91SAM7S: When the gpnvm bits are set with
1046 * > at91sam7 gpnvm bitnr set
1047 * the changes are not visible in the flash controller status register MC_FSR
1048 * until the processor has been reset.
1049 * On the Olimex board this requires a power cycle.
1050 * Note that the AT91SAM7S has the following errata (doc6175.pdf sec 14.1.3):
1051 *   The maximum number of write/erase cycles for Non volatile Memory bits is 100. this includes
1052 *   Lock Bits (LOCKx), General Purpose NVM bits (GPNVMx) and the Security Bit.
1053 */
1054 COMMAND_HANDLER(at91sam7_handle_gpnvm_command)
1055 {
1056         struct flash_bank *bank;
1057         int bit;
1058         uint8_t flashcmd;
1059         uint32_t status;
1060         struct at91sam7_flash_bank *at91sam7_info;
1061         int retval;
1062
1063         if (CMD_ARGC != 2)
1064                 return ERROR_COMMAND_SYNTAX_ERROR;
1065
1066         bank = get_flash_bank_by_num_noprobe(0);
1067         if (bank ==  NULL)
1068                 return ERROR_FLASH_BANK_INVALID;
1069         if (strcmp(bank->driver->name, "at91sam7")) {
1070                 command_print(CMD, "not an at91sam7 flash bank '%s'", CMD_ARGV[0]);
1071                 return ERROR_FLASH_BANK_INVALID;
1072         }
1073         if (bank->target->state != TARGET_HALTED) {
1074                 LOG_ERROR("target has to be halted to perform flash operation");
1075                 return ERROR_TARGET_NOT_HALTED;
1076         }
1077
1078         if (strcmp(CMD_ARGV[1], "set") == 0)
1079                 flashcmd = SGPB;
1080         else if (strcmp(CMD_ARGV[1], "clear") == 0)
1081                 flashcmd = CGPB;
1082         else
1083                 return ERROR_COMMAND_SYNTAX_ERROR;
1084
1085         at91sam7_info = bank->driver_priv;
1086         if (at91sam7_info->cidr == 0) {
1087                 retval = at91sam7_read_part_info(bank);
1088                 if (retval != ERROR_OK)
1089                         return retval;
1090         }
1091
1092         COMMAND_PARSE_NUMBER(int, CMD_ARGV[0], bit);
1093         if ((bit < 0) || (bit >= at91sam7_info->num_nvmbits)) {
1094                 command_print(CMD,
1095                         "gpnvm bit '#%s' is out of bounds for target %s",
1096                         CMD_ARGV[0],
1097                         at91sam7_info->target_name);
1098                 return ERROR_OK;
1099         }
1100
1101         /* Configure the flash controller timing */
1102         at91sam7_read_clock_info(bank);
1103         at91sam7_set_flash_mode(bank, FMR_TIMING_NVBITS);
1104
1105         if (at91sam7_flash_command(bank, flashcmd, bit) != ERROR_OK)
1106                 return ERROR_FLASH_OPERATION_FAILED;
1107
1108         /* GPNVM and SECURITY bits apply only for MC_FSR of EFC0 */
1109         status = at91sam7_get_flash_status(bank->target, 0);
1110         LOG_DEBUG("at91sam7_handle_gpnvm_command: cmd 0x%x, value %d, status 0x%" PRIx32,
1111                 flashcmd,
1112                 bit,
1113                 status);
1114
1115         /* check protect state */
1116         at91sam7_protect_check(bank);
1117
1118         return ERROR_OK;
1119 }
1120
1121 static const struct command_registration at91sam7_exec_command_handlers[] = {
1122         {
1123                 .name = "gpnvm",
1124                 .handler = at91sam7_handle_gpnvm_command,
1125                 .mode = COMMAND_EXEC,
1126                 .help = "set or clear one General Purpose Non-Volatile Memory "
1127                         "(gpnvm) bit",
1128                 .usage = "bitnum ('set'|'clear')",
1129         },
1130         COMMAND_REGISTRATION_DONE
1131 };
1132 static const struct command_registration at91sam7_command_handlers[] = {
1133         {
1134                 .name = "at91sam7",
1135                 .mode = COMMAND_ANY,
1136                 .help = "at91sam7 flash command group",
1137                 .usage = "",
1138                 .chain = at91sam7_exec_command_handlers,
1139         },
1140         COMMAND_REGISTRATION_DONE
1141 };
1142
1143 const struct flash_driver at91sam7_flash = {
1144         .name = "at91sam7",
1145         .usage = "gpnvm <bit> <set | clear>",
1146         .commands = at91sam7_command_handlers,
1147         .flash_bank_command = at91sam7_flash_bank_command,
1148         .erase = at91sam7_erase,
1149         .protect = at91sam7_protect,
1150         .write = at91sam7_write,
1151         .read = default_flash_read,
1152         .probe = at91sam7_probe,
1153         .auto_probe = at91sam7_probe,
1154         .erase_check = at91sam7_erase_check,
1155         .protect_check = at91sam7_protect_check,
1156         .info = get_at91sam7_info,
1157 };