1 /***************************************************************************
2 * Copyright (C) 2013 Synapse Product Development *
3 * Andrey Smirnov <andrew.smironv@gmail.com> *
4 * Angus Gratton <gus@projectgus.com> *
5 * Erdem U. Altunyurt <spamjunkeater@gmail.com> *
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. *
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. *
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 ***************************************************************************/
26 #include <target/algorithm.h>
27 #include <target/armv7m.h>
28 #include <helper/types.h>
29 #include <helper/time_support.h>
32 NRF5_FLASH_BASE
= 0x00000000,
35 enum nrf5_ficr_registers
{
36 NRF5_FICR_BASE
= 0x10000000, /* Factory Information Configuration Registers */
38 #define NRF5_FICR_REG(offset) (NRF5_FICR_BASE + offset)
40 NRF5_FICR_CODEPAGESIZE
= NRF5_FICR_REG(0x010),
41 NRF5_FICR_CODESIZE
= NRF5_FICR_REG(0x014),
42 NRF5_FICR_CLENR0
= NRF5_FICR_REG(0x028),
43 NRF5_FICR_PPFC
= NRF5_FICR_REG(0x02C),
44 NRF5_FICR_NUMRAMBLOCK
= NRF5_FICR_REG(0x034),
45 NRF5_FICR_SIZERAMBLOCK0
= NRF5_FICR_REG(0x038),
46 NRF5_FICR_SIZERAMBLOCK1
= NRF5_FICR_REG(0x03C),
47 NRF5_FICR_SIZERAMBLOCK2
= NRF5_FICR_REG(0x040),
48 NRF5_FICR_SIZERAMBLOCK3
= NRF5_FICR_REG(0x044),
49 NRF5_FICR_CONFIGID
= NRF5_FICR_REG(0x05C),
50 NRF5_FICR_DEVICEID0
= NRF5_FICR_REG(0x060),
51 NRF5_FICR_DEVICEID1
= NRF5_FICR_REG(0x064),
52 NRF5_FICR_ER0
= NRF5_FICR_REG(0x080),
53 NRF5_FICR_ER1
= NRF5_FICR_REG(0x084),
54 NRF5_FICR_ER2
= NRF5_FICR_REG(0x088),
55 NRF5_FICR_ER3
= NRF5_FICR_REG(0x08C),
56 NRF5_FICR_IR0
= NRF5_FICR_REG(0x090),
57 NRF5_FICR_IR1
= NRF5_FICR_REG(0x094),
58 NRF5_FICR_IR2
= NRF5_FICR_REG(0x098),
59 NRF5_FICR_IR3
= NRF5_FICR_REG(0x09C),
60 NRF5_FICR_DEVICEADDRTYPE
= NRF5_FICR_REG(0x0A0),
61 NRF5_FICR_DEVICEADDR0
= NRF5_FICR_REG(0x0A4),
62 NRF5_FICR_DEVICEADDR1
= NRF5_FICR_REG(0x0A8),
63 NRF5_FICR_OVERRIDEN
= NRF5_FICR_REG(0x0AC),
64 NRF5_FICR_NRF_1MBIT0
= NRF5_FICR_REG(0x0B0),
65 NRF5_FICR_NRF_1MBIT1
= NRF5_FICR_REG(0x0B4),
66 NRF5_FICR_NRF_1MBIT2
= NRF5_FICR_REG(0x0B8),
67 NRF5_FICR_NRF_1MBIT3
= NRF5_FICR_REG(0x0BC),
68 NRF5_FICR_NRF_1MBIT4
= NRF5_FICR_REG(0x0C0),
69 NRF5_FICR_BLE_1MBIT0
= NRF5_FICR_REG(0x0EC),
70 NRF5_FICR_BLE_1MBIT1
= NRF5_FICR_REG(0x0F0),
71 NRF5_FICR_BLE_1MBIT2
= NRF5_FICR_REG(0x0F4),
72 NRF5_FICR_BLE_1MBIT3
= NRF5_FICR_REG(0x0F8),
73 NRF5_FICR_BLE_1MBIT4
= NRF5_FICR_REG(0x0FC),
76 enum nrf5_uicr_registers
{
77 NRF5_UICR_BASE
= 0x10001000, /* User Information
78 * Configuration Regsters */
80 NRF5_UICR_SIZE
= 0x100,
82 #define NRF5_UICR_REG(offset) (NRF5_UICR_BASE + offset)
84 NRF5_UICR_CLENR0
= NRF5_UICR_REG(0x000),
85 NRF5_UICR_RBPCONF
= NRF5_UICR_REG(0x004),
86 NRF5_UICR_XTALFREQ
= NRF5_UICR_REG(0x008),
87 NRF5_UICR_FWID
= NRF5_UICR_REG(0x010),
90 enum nrf5_nvmc_registers
{
91 NRF5_NVMC_BASE
= 0x4001E000, /* Non-Volatile Memory
92 * Controller Regsters */
94 #define NRF5_NVMC_REG(offset) (NRF5_NVMC_BASE + offset)
96 NRF5_NVMC_READY
= NRF5_NVMC_REG(0x400),
97 NRF5_NVMC_CONFIG
= NRF5_NVMC_REG(0x504),
98 NRF5_NVMC_ERASEPAGE
= NRF5_NVMC_REG(0x508),
99 NRF5_NVMC_ERASEALL
= NRF5_NVMC_REG(0x50C),
100 NRF5_NVMC_ERASEUICR
= NRF5_NVMC_REG(0x514),
103 enum nrf5_nvmc_config_bits
{
104 NRF5_NVMC_CONFIG_REN
= 0x00,
105 NRF5_NVMC_CONFIG_WEN
= 0x01,
106 NRF5_NVMC_CONFIG_EEN
= 0x02,
111 uint32_t code_page_size
;
116 int (*write
) (struct flash_bank
*bank
,
117 struct nrf5_info
*chip
,
118 const uint8_t *buffer
, uint32_t offset
, uint32_t count
);
120 struct target
*target
;
123 struct nrf5_device_spec
{
127 const char *build_code
;
128 unsigned int flash_size_kb
;
131 #define NRF5_DEVICE_DEF(id, pt, var, bcode, fsize) \
136 .build_code = bcode, \
137 .flash_size_kb = (fsize), \
140 /* The known devices table below is derived from the "nRF51 Series
141 * Compatibility Matrix" document, which can be found by searching for
142 * ATTN-51 on the Nordic Semi website:
144 * http://www.nordicsemi.com/eng/content/search?SearchText=ATTN-51
146 * Up to date with Matrix v2.0, plus some additional HWIDs.
148 * The additional HWIDs apply where the build code in the matrix is
149 * shown as Gx0, Bx0, etc. In these cases the HWID in the matrix is
150 * for x==0, x!=0 means different (unspecified) HWIDs.
152 static const struct nrf5_device_spec nrf5_known_devices_table
[] = {
153 /* nRF51822 Devices (IC rev 1). */
154 NRF5_DEVICE_DEF(0x001D, "51822", "QFAA", "CA/C0", 256),
155 NRF5_DEVICE_DEF(0x0026, "51822", "QFAB", "AA", 128),
156 NRF5_DEVICE_DEF(0x0027, "51822", "QFAB", "A0", 128),
157 NRF5_DEVICE_DEF(0x0020, "51822", "CEAA", "BA", 256),
158 NRF5_DEVICE_DEF(0x002F, "51822", "CEAA", "B0", 256),
160 /* Some early nRF51-DK (PCA10028) & nRF51-Dongle (PCA10031) boards
161 with built-in jlink seem to use engineering samples not listed
162 in the nRF51 Series Compatibility Matrix V1.0. */
163 NRF5_DEVICE_DEF(0x0071, "51822", "QFAC", "AB", 256),
165 /* nRF51822 Devices (IC rev 2). */
166 NRF5_DEVICE_DEF(0x002A, "51822", "QFAA", "FA0", 256),
167 NRF5_DEVICE_DEF(0x0044, "51822", "QFAA", "GC0", 256),
168 NRF5_DEVICE_DEF(0x003C, "51822", "QFAA", "G0", 256),
169 NRF5_DEVICE_DEF(0x0057, "51822", "QFAA", "G2", 256),
170 NRF5_DEVICE_DEF(0x0058, "51822", "QFAA", "G3", 256),
171 NRF5_DEVICE_DEF(0x004C, "51822", "QFAB", "B0", 128),
172 NRF5_DEVICE_DEF(0x0040, "51822", "CEAA", "CA0", 256),
173 NRF5_DEVICE_DEF(0x0047, "51822", "CEAA", "DA0", 256),
174 NRF5_DEVICE_DEF(0x004D, "51822", "CEAA", "D00", 256),
176 /* nRF51822 Devices (IC rev 3). */
177 NRF5_DEVICE_DEF(0x0072, "51822", "QFAA", "H0", 256),
178 NRF5_DEVICE_DEF(0x00D1, "51822", "QFAA", "H2", 256),
179 NRF5_DEVICE_DEF(0x007B, "51822", "QFAB", "C0", 128),
180 NRF5_DEVICE_DEF(0x0083, "51822", "QFAC", "A0", 256),
181 NRF5_DEVICE_DEF(0x0084, "51822", "QFAC", "A1", 256),
182 NRF5_DEVICE_DEF(0x007D, "51822", "CDAB", "A0", 128),
183 NRF5_DEVICE_DEF(0x0079, "51822", "CEAA", "E0", 256),
184 NRF5_DEVICE_DEF(0x0087, "51822", "CFAC", "A0", 256),
185 NRF5_DEVICE_DEF(0x008F, "51822", "QFAA", "H1", 256),
187 /* nRF51422 Devices (IC rev 1). */
188 NRF5_DEVICE_DEF(0x001E, "51422", "QFAA", "CA", 256),
189 NRF5_DEVICE_DEF(0x0024, "51422", "QFAA", "C0", 256),
190 NRF5_DEVICE_DEF(0x0031, "51422", "CEAA", "A0A", 256),
192 /* nRF51422 Devices (IC rev 2). */
193 NRF5_DEVICE_DEF(0x002D, "51422", "QFAA", "DAA", 256),
194 NRF5_DEVICE_DEF(0x002E, "51422", "QFAA", "E0", 256),
195 NRF5_DEVICE_DEF(0x0061, "51422", "QFAB", "A00", 128),
196 NRF5_DEVICE_DEF(0x0050, "51422", "CEAA", "B0", 256),
198 /* nRF51422 Devices (IC rev 3). */
199 NRF5_DEVICE_DEF(0x0073, "51422", "QFAA", "F0", 256),
200 NRF5_DEVICE_DEF(0x007C, "51422", "QFAB", "B0", 128),
201 NRF5_DEVICE_DEF(0x0085, "51422", "QFAC", "A0", 256),
202 NRF5_DEVICE_DEF(0x0086, "51422", "QFAC", "A1", 256),
203 NRF5_DEVICE_DEF(0x007E, "51422", "CDAB", "A0", 128),
204 NRF5_DEVICE_DEF(0x007A, "51422", "CEAA", "C0", 256),
205 NRF5_DEVICE_DEF(0x0088, "51422", "CFAC", "A0", 256),
207 /* nRF52810 Devices */
208 NRF5_DEVICE_DEF(0x0142, "52810", "QFAA", "B0", 192),
209 NRF5_DEVICE_DEF(0x0143, "52810", "QCAA", "C0", 192),
211 /* nRF52832 Devices */
212 NRF5_DEVICE_DEF(0x00C7, "52832", "QFAA", "B0", 512),
213 NRF5_DEVICE_DEF(0x0139, "52832", "QFAA", "E0", 512),
214 NRF5_DEVICE_DEF(0x00E3, "52832", "CIAA", "B0", 512),
216 /* nRF52840 Devices */
217 NRF5_DEVICE_DEF(0x0150, "52840", "QIAA", "C0", 1024),
220 static int nrf5_bank_is_probed(struct flash_bank
*bank
)
222 struct nrf5_info
*chip
= bank
->driver_priv
;
224 assert(chip
!= NULL
);
226 return chip
->bank
[bank
->bank_number
].probed
;
228 static int nrf5_probe(struct flash_bank
*bank
);
230 static int nrf5_get_probed_chip_if_halted(struct flash_bank
*bank
, struct nrf5_info
**chip
)
232 if (bank
->target
->state
!= TARGET_HALTED
) {
233 LOG_ERROR("Target not halted");
234 return ERROR_TARGET_NOT_HALTED
;
237 *chip
= bank
->driver_priv
;
239 int probed
= nrf5_bank_is_probed(bank
);
243 return nrf5_probe(bank
);
248 static int nrf5_wait_for_nvmc(struct nrf5_info
*chip
)
252 int timeout_ms
= 340;
253 int64_t ts_start
= timeval_ms();
256 res
= target_read_u32(chip
->target
, NRF5_NVMC_READY
, &ready
);
257 if (res
!= ERROR_OK
) {
258 LOG_ERROR("Couldn't read NVMC_READY register");
262 if (ready
== 0x00000001)
267 } while ((timeval_ms()-ts_start
) < timeout_ms
);
269 LOG_DEBUG("Timed out waiting for NVMC_READY");
270 return ERROR_FLASH_BUSY
;
273 static int nrf5_nvmc_erase_enable(struct nrf5_info
*chip
)
276 res
= target_write_u32(chip
->target
,
278 NRF5_NVMC_CONFIG_EEN
);
280 if (res
!= ERROR_OK
) {
281 LOG_ERROR("Failed to enable erase operation");
286 According to NVMC examples in Nordic SDK busy status must be
287 checked after writing to NVMC_CONFIG
289 res
= nrf5_wait_for_nvmc(chip
);
291 LOG_ERROR("Erase enable did not complete");
296 static int nrf5_nvmc_write_enable(struct nrf5_info
*chip
)
299 res
= target_write_u32(chip
->target
,
301 NRF5_NVMC_CONFIG_WEN
);
303 if (res
!= ERROR_OK
) {
304 LOG_ERROR("Failed to enable write operation");
309 According to NVMC examples in Nordic SDK busy status must be
310 checked after writing to NVMC_CONFIG
312 res
= nrf5_wait_for_nvmc(chip
);
314 LOG_ERROR("Write enable did not complete");
319 static int nrf5_nvmc_read_only(struct nrf5_info
*chip
)
322 res
= target_write_u32(chip
->target
,
324 NRF5_NVMC_CONFIG_REN
);
326 if (res
!= ERROR_OK
) {
327 LOG_ERROR("Failed to enable read-only operation");
331 According to NVMC examples in Nordic SDK busy status must be
332 checked after writing to NVMC_CONFIG
334 res
= nrf5_wait_for_nvmc(chip
);
336 LOG_ERROR("Read only enable did not complete");
341 static int nrf5_nvmc_generic_erase(struct nrf5_info
*chip
,
342 uint32_t erase_register
, uint32_t erase_value
)
346 res
= nrf5_nvmc_erase_enable(chip
);
350 res
= target_write_u32(chip
->target
,
356 res
= nrf5_wait_for_nvmc(chip
);
360 return nrf5_nvmc_read_only(chip
);
363 nrf5_nvmc_read_only(chip
);
365 LOG_ERROR("Failed to erase reg: 0x%08"PRIx32
" val: 0x%08"PRIx32
,
366 erase_register
, erase_value
);
370 static int nrf5_protect_check(struct flash_bank
*bank
)
375 /* UICR cannot be write protected so just return early */
376 if (bank
->base
== NRF5_UICR_BASE
)
379 struct nrf5_info
*chip
= bank
->driver_priv
;
381 assert(chip
!= NULL
);
383 res
= target_read_u32(chip
->target
, NRF5_FICR_CLENR0
,
385 if (res
!= ERROR_OK
) {
386 LOG_ERROR("Couldn't read code region 0 size[FICR]");
390 if (clenr0
== 0xFFFFFFFF) {
391 res
= target_read_u32(chip
->target
, NRF5_UICR_CLENR0
,
393 if (res
!= ERROR_OK
) {
394 LOG_ERROR("Couldn't read code region 0 size[UICR]");
399 for (int i
= 0; i
< bank
->num_sectors
; i
++)
400 bank
->sectors
[i
].is_protected
=
401 clenr0
!= 0xFFFFFFFF && bank
->sectors
[i
].offset
< clenr0
;
406 static int nrf5_protect(struct flash_bank
*bank
, int set
, int first
, int last
)
409 uint32_t clenr0
, ppfc
;
410 struct nrf5_info
*chip
;
412 /* UICR cannot be write protected so just bail out early */
413 if (bank
->base
== NRF5_UICR_BASE
)
416 res
= nrf5_get_probed_chip_if_halted(bank
, &chip
);
421 LOG_ERROR("Code region 0 must start at the begining of the bank");
425 res
= target_read_u32(chip
->target
, NRF5_FICR_PPFC
,
427 if (res
!= ERROR_OK
) {
428 LOG_ERROR("Couldn't read PPFC register");
432 if ((ppfc
& 0xFF) == 0x00) {
433 LOG_ERROR("Code region 0 size was pre-programmed at the factory, can't change flash protection settings");
437 res
= target_read_u32(chip
->target
, NRF5_UICR_CLENR0
,
439 if (res
!= ERROR_OK
) {
440 LOG_ERROR("Couldn't read code region 0 size[UICR]");
444 if (clenr0
== 0xFFFFFFFF) {
445 res
= target_write_u32(chip
->target
, NRF5_UICR_CLENR0
,
447 if (res
!= ERROR_OK
) {
448 LOG_ERROR("Couldn't write code region 0 size[UICR]");
453 LOG_ERROR("You need to perform chip erase before changing the protection settings");
456 nrf5_protect_check(bank
);
461 static int nrf5_probe(struct flash_bank
*bank
)
465 struct nrf5_info
*chip
= bank
->driver_priv
;
467 res
= target_read_u32(chip
->target
, NRF5_FICR_CONFIGID
, &hwid
);
468 if (res
!= ERROR_OK
) {
469 LOG_ERROR("Couldn't read CONFIGID register");
473 hwid
&= 0xFFFF; /* HWID is stored in the lower two
474 * bytes of the CONFIGID register */
476 const struct nrf5_device_spec
*spec
= NULL
;
477 for (size_t i
= 0; i
< ARRAY_SIZE(nrf5_known_devices_table
); i
++) {
478 if (hwid
== nrf5_known_devices_table
[i
].hwid
) {
479 spec
= &nrf5_known_devices_table
[i
];
484 if (!chip
->bank
[0].probed
&& !chip
->bank
[1].probed
) {
486 LOG_INFO("nRF%s-%s(build code: %s) %ukB Flash",
487 spec
->part
, spec
->variant
, spec
->build_code
,
488 spec
->flash_size_kb
);
490 LOG_WARNING("Unknown device (HWID 0x%08" PRIx32
")", hwid
);
493 if (bank
->base
== NRF5_FLASH_BASE
) {
494 /* The value stored in NRF5_FICR_CODEPAGESIZE is the number of bytes in one page of FLASH. */
495 res
= target_read_u32(chip
->target
, NRF5_FICR_CODEPAGESIZE
,
496 &chip
->code_page_size
);
497 if (res
!= ERROR_OK
) {
498 LOG_ERROR("Couldn't read code page size");
502 /* Note the register name is misleading,
503 * NRF5_FICR_CODESIZE is the number of pages in flash memory, not the number of bytes! */
504 uint32_t num_sectors
;
505 res
= target_read_u32(chip
->target
, NRF5_FICR_CODESIZE
, &num_sectors
);
506 if (res
!= ERROR_OK
) {
507 LOG_ERROR("Couldn't read code memory size");
511 bank
->num_sectors
= num_sectors
;
512 bank
->size
= num_sectors
* chip
->code_page_size
;
514 if (spec
&& bank
->size
/ 1024 != spec
->flash_size_kb
)
515 LOG_WARNING("Chip's reported Flash capacity does not match expected one");
517 bank
->sectors
= calloc(bank
->num_sectors
,
518 sizeof((bank
->sectors
)[0]));
520 return ERROR_FLASH_BANK_NOT_PROBED
;
522 /* Fill out the sector information: all NRF5 sectors are the same size and
523 * there is always a fixed number of them. */
524 for (int i
= 0; i
< bank
->num_sectors
; i
++) {
525 bank
->sectors
[i
].size
= chip
->code_page_size
;
526 bank
->sectors
[i
].offset
= i
* chip
->code_page_size
;
528 /* mark as unknown */
529 bank
->sectors
[i
].is_erased
= -1;
530 bank
->sectors
[i
].is_protected
= -1;
533 nrf5_protect_check(bank
);
535 chip
->bank
[0].probed
= true;
537 bank
->size
= NRF5_UICR_SIZE
;
538 bank
->num_sectors
= 1;
539 bank
->sectors
= calloc(bank
->num_sectors
,
540 sizeof((bank
->sectors
)[0]));
542 return ERROR_FLASH_BANK_NOT_PROBED
;
544 bank
->sectors
[0].size
= bank
->size
;
545 bank
->sectors
[0].offset
= 0;
547 bank
->sectors
[0].is_erased
= 0;
548 bank
->sectors
[0].is_protected
= 0;
550 chip
->bank
[1].probed
= true;
556 static int nrf5_auto_probe(struct flash_bank
*bank
)
558 int probed
= nrf5_bank_is_probed(bank
);
565 return nrf5_probe(bank
);
568 static int nrf5_erase_all(struct nrf5_info
*chip
)
570 LOG_DEBUG("Erasing all non-volatile memory");
571 return nrf5_nvmc_generic_erase(chip
,
576 static int nrf5_erase_page(struct flash_bank
*bank
,
577 struct nrf5_info
*chip
,
578 struct flash_sector
*sector
)
582 LOG_DEBUG("Erasing page at 0x%"PRIx32
, sector
->offset
);
583 if (sector
->is_protected
) {
584 LOG_ERROR("Cannot erase protected sector at 0x%" PRIx32
, sector
->offset
);
588 if (bank
->base
== NRF5_UICR_BASE
) {
590 res
= target_read_u32(chip
->target
, NRF5_FICR_PPFC
,
592 if (res
!= ERROR_OK
) {
593 LOG_ERROR("Couldn't read PPFC register");
597 if ((ppfc
& 0xFF) == 0xFF) {
598 /* We can't erase the UICR. Double-check to
599 see if it's already erased before complaining. */
600 default_flash_blank_check(bank
);
601 if (sector
->is_erased
== 1)
604 LOG_ERROR("The chip was not pre-programmed with SoftDevice stack and UICR cannot be erased separately. Please issue mass erase before trying to write to this region");
608 res
= nrf5_nvmc_generic_erase(chip
,
614 res
= nrf5_nvmc_generic_erase(chip
,
622 static const uint8_t nrf5_flash_write_code
[] = {
623 /* See contrib/loaders/flash/cortex-m0.S */
625 0x0d, 0x68, /* ldr r5, [r1, #0] */
626 0x00, 0x2d, /* cmp r5, #0 */
627 0x0b, 0xd0, /* beq.n 1e <exit> */
628 0x4c, 0x68, /* ldr r4, [r1, #4] */
629 0xac, 0x42, /* cmp r4, r5 */
630 0xf9, 0xd0, /* beq.n 0 <wait_fifo> */
631 0x20, 0xcc, /* ldmia r4!, {r5} */
632 0x20, 0xc3, /* stmia r3!, {r5} */
633 0x94, 0x42, /* cmp r4, r2 */
634 0x01, 0xd3, /* bcc.n 18 <no_wrap> */
635 0x0c, 0x46, /* mov r4, r1 */
636 0x08, 0x34, /* adds r4, #8 */
638 0x4c, 0x60, /* str r4, [r1, #4] */
639 0x04, 0x38, /* subs r0, #4 */
640 0xf0, 0xd1, /* bne.n 0 <wait_fifo> */
642 0x00, 0xbe /* bkpt 0x0000 */
646 /* Start a low level flash write for the specified region */
647 static int nrf5_ll_flash_write(struct nrf5_info
*chip
, uint32_t offset
, const uint8_t *buffer
, uint32_t bytes
)
649 struct target
*target
= chip
->target
;
650 uint32_t buffer_size
= 8192;
651 struct working_area
*write_algorithm
;
652 struct working_area
*source
;
653 uint32_t address
= NRF5_FLASH_BASE
+ offset
;
654 struct reg_param reg_params
[4];
655 struct armv7m_algorithm armv7m_info
;
656 int retval
= ERROR_OK
;
659 LOG_DEBUG("Writing buffer to flash offset=0x%"PRIx32
" bytes=0x%"PRIx32
, offset
, bytes
);
660 assert(bytes
% 4 == 0);
662 /* allocate working area with flash programming code */
663 if (target_alloc_working_area(target
, sizeof(nrf5_flash_write_code
),
664 &write_algorithm
) != ERROR_OK
) {
665 LOG_WARNING("no working area available, falling back to slow memory writes");
667 for (; bytes
> 0; bytes
-= 4) {
668 retval
= target_write_memory(chip
->target
, offset
, 4, 1, buffer
);
669 if (retval
!= ERROR_OK
)
672 retval
= nrf5_wait_for_nvmc(chip
);
673 if (retval
!= ERROR_OK
)
683 LOG_WARNING("using fast async flash loader. This is currently supported");
684 LOG_WARNING("only with ST-Link and CMSIS-DAP. If you have issues, add");
685 LOG_WARNING("\"set WORKAREASIZE 0\" before sourcing nrf51.cfg/nrf52.cfg to disable it");
687 retval
= target_write_buffer(target
, write_algorithm
->address
,
688 sizeof(nrf5_flash_write_code
),
689 nrf5_flash_write_code
);
690 if (retval
!= ERROR_OK
)
694 while (target_alloc_working_area(target
, buffer_size
, &source
) != ERROR_OK
) {
696 buffer_size
&= ~3UL; /* Make sure it's 4 byte aligned */
697 if (buffer_size
<= 256) {
698 /* free working area, write algorithm already allocated */
699 target_free_working_area(target
, write_algorithm
);
701 LOG_WARNING("No large enough working area available, can't do block memory writes");
702 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE
;
706 armv7m_info
.common_magic
= ARMV7M_COMMON_MAGIC
;
707 armv7m_info
.core_mode
= ARM_MODE_THREAD
;
709 init_reg_param(®_params
[0], "r0", 32, PARAM_IN_OUT
); /* byte count */
710 init_reg_param(®_params
[1], "r1", 32, PARAM_OUT
); /* buffer start */
711 init_reg_param(®_params
[2], "r2", 32, PARAM_OUT
); /* buffer end */
712 init_reg_param(®_params
[3], "r3", 32, PARAM_IN_OUT
); /* target address */
714 buf_set_u32(reg_params
[0].value
, 0, 32, bytes
);
715 buf_set_u32(reg_params
[1].value
, 0, 32, source
->address
);
716 buf_set_u32(reg_params
[2].value
, 0, 32, source
->address
+ source
->size
);
717 buf_set_u32(reg_params
[3].value
, 0, 32, address
);
719 retval
= target_run_flash_async_algorithm(target
, buffer
, bytes
/4, 4,
722 source
->address
, source
->size
,
723 write_algorithm
->address
, 0,
726 target_free_working_area(target
, source
);
727 target_free_working_area(target
, write_algorithm
);
729 destroy_reg_param(®_params
[0]);
730 destroy_reg_param(®_params
[1]);
731 destroy_reg_param(®_params
[2]);
732 destroy_reg_param(®_params
[3]);
737 /* Check and erase flash sectors in specified range then start a low level page write.
738 start/end must be sector aligned.
740 static int nrf5_write_pages(struct flash_bank
*bank
, uint32_t start
, uint32_t end
, const uint8_t *buffer
)
742 int res
= ERROR_FAIL
;
743 struct nrf5_info
*chip
= bank
->driver_priv
;
745 assert(start
% chip
->code_page_size
== 0);
746 assert(end
% chip
->code_page_size
== 0);
748 res
= nrf5_nvmc_write_enable(chip
);
752 res
= nrf5_ll_flash_write(chip
, start
, buffer
, (end
- start
));
756 return nrf5_nvmc_read_only(chip
);
759 nrf5_nvmc_read_only(chip
);
760 LOG_ERROR("Failed to write to nrf5 flash");
764 static int nrf5_erase(struct flash_bank
*bank
, int first
, int last
)
767 struct nrf5_info
*chip
;
769 res
= nrf5_get_probed_chip_if_halted(bank
, &chip
);
773 /* For each sector to be erased */
774 for (int s
= first
; s
<= last
&& res
== ERROR_OK
; s
++)
775 res
= nrf5_erase_page(bank
, chip
, &bank
->sectors
[s
]);
780 static int nrf5_code_flash_write(struct flash_bank
*bank
,
781 struct nrf5_info
*chip
,
782 const uint8_t *buffer
, uint32_t offset
, uint32_t count
)
786 /* Need to perform reads to fill any gaps we need to preserve in the first page,
787 before the start of buffer, or in the last page, after the end of buffer */
788 uint32_t first_page
= offset
/chip
->code_page_size
;
789 uint32_t last_page
= DIV_ROUND_UP(offset
+count
, chip
->code_page_size
);
791 uint32_t first_page_offset
= first_page
* chip
->code_page_size
;
792 uint32_t last_page_offset
= last_page
* chip
->code_page_size
;
794 LOG_DEBUG("Padding write from 0x%08"PRIx32
"-0x%08"PRIx32
" as 0x%08"PRIx32
"-0x%08"PRIx32
,
795 offset
, offset
+count
, first_page_offset
, last_page_offset
);
797 uint32_t page_cnt
= last_page
- first_page
;
798 uint8_t buffer_to_flash
[page_cnt
*chip
->code_page_size
];
800 /* Fill in any space between start of first page and start of buffer */
801 uint32_t pre
= offset
- first_page_offset
;
803 res
= target_read_memory(bank
->target
,
812 /* Fill in main contents of buffer */
813 memcpy(buffer_to_flash
+pre
, buffer
, count
);
815 /* Fill in any space between end of buffer and end of last page */
816 uint32_t post
= last_page_offset
- (offset
+count
);
818 /* Retrieve the full row contents from Flash */
819 res
= target_read_memory(bank
->target
,
823 buffer_to_flash
+pre
+count
);
828 return nrf5_write_pages(bank
, first_page_offset
, last_page_offset
, buffer_to_flash
);
831 static int nrf5_uicr_flash_write(struct flash_bank
*bank
,
832 struct nrf5_info
*chip
,
833 const uint8_t *buffer
, uint32_t offset
, uint32_t count
)
836 uint8_t uicr
[NRF5_UICR_SIZE
];
837 struct flash_sector
*sector
= &bank
->sectors
[0];
839 if ((offset
+ count
) > NRF5_UICR_SIZE
)
842 res
= target_read_memory(bank
->target
,
851 res
= nrf5_erase_page(bank
, chip
, sector
);
855 res
= nrf5_nvmc_write_enable(chip
);
859 memcpy(&uicr
[offset
], buffer
, count
);
861 res
= nrf5_ll_flash_write(chip
, NRF5_UICR_BASE
, uicr
, NRF5_UICR_SIZE
);
862 if (res
!= ERROR_OK
) {
863 nrf5_nvmc_read_only(chip
);
867 return nrf5_nvmc_read_only(chip
);
871 static int nrf5_write(struct flash_bank
*bank
, const uint8_t *buffer
,
872 uint32_t offset
, uint32_t count
)
875 struct nrf5_info
*chip
;
877 res
= nrf5_get_probed_chip_if_halted(bank
, &chip
);
881 return chip
->bank
[bank
->bank_number
].write(bank
, chip
, buffer
, offset
, count
);
884 static void nrf5_free_driver_priv(struct flash_bank
*bank
)
886 struct nrf5_info
*chip
= bank
->driver_priv
;
891 if (chip
->refcount
== 0) {
893 bank
->driver_priv
= NULL
;
897 FLASH_BANK_COMMAND_HANDLER(nrf5_flash_bank_command
)
899 static struct nrf5_info
*chip
;
901 switch (bank
->base
) {
902 case NRF5_FLASH_BASE
:
903 bank
->bank_number
= 0;
906 bank
->bank_number
= 1;
909 LOG_ERROR("Invalid bank address 0x%08" PRIx32
, bank
->base
);
914 /* Create a new chip */
915 chip
= calloc(1, sizeof(*chip
));
919 chip
->target
= bank
->target
;
922 switch (bank
->base
) {
923 case NRF5_FLASH_BASE
:
924 chip
->bank
[bank
->bank_number
].write
= nrf5_code_flash_write
;
927 chip
->bank
[bank
->bank_number
].write
= nrf5_uicr_flash_write
;
932 chip
->bank
[bank
->bank_number
].probed
= false;
933 bank
->driver_priv
= chip
;
938 COMMAND_HANDLER(nrf5_handle_mass_erase_command
)
941 struct flash_bank
*bank
= NULL
;
942 struct target
*target
= get_current_target(CMD_CTX
);
944 res
= get_flash_bank_by_addr(target
, NRF5_FLASH_BASE
, true, &bank
);
948 assert(bank
!= NULL
);
950 struct nrf5_info
*chip
;
952 res
= nrf5_get_probed_chip_if_halted(bank
, &chip
);
958 res
= target_read_u32(target
, NRF5_FICR_PPFC
,
960 if (res
!= ERROR_OK
) {
961 LOG_ERROR("Couldn't read PPFC register");
965 if ((ppfc
& 0xFF) == 0x00) {
966 LOG_ERROR("Code region 0 size was pre-programmed at the factory, "
967 "mass erase command won't work.");
971 res
= nrf5_erase_all(chip
);
972 if (res
!= ERROR_OK
) {
973 LOG_ERROR("Failed to erase the chip");
974 nrf5_protect_check(bank
);
978 res
= nrf5_protect_check(bank
);
979 if (res
!= ERROR_OK
) {
980 LOG_ERROR("Failed to check chip's write protection");
984 res
= get_flash_bank_by_addr(target
, NRF5_UICR_BASE
, true, &bank
);
991 static int nrf5_info(struct flash_bank
*bank
, char *buf
, int buf_size
)
995 struct nrf5_info
*chip
;
997 res
= nrf5_get_probed_chip_if_halted(bank
, &chip
);
1002 const uint32_t address
;
1005 { .address
= NRF5_FICR_CODEPAGESIZE
},
1006 { .address
= NRF5_FICR_CODESIZE
},
1007 { .address
= NRF5_FICR_CLENR0
},
1008 { .address
= NRF5_FICR_PPFC
},
1009 { .address
= NRF5_FICR_NUMRAMBLOCK
},
1010 { .address
= NRF5_FICR_SIZERAMBLOCK0
},
1011 { .address
= NRF5_FICR_SIZERAMBLOCK1
},
1012 { .address
= NRF5_FICR_SIZERAMBLOCK2
},
1013 { .address
= NRF5_FICR_SIZERAMBLOCK3
},
1014 { .address
= NRF5_FICR_CONFIGID
},
1015 { .address
= NRF5_FICR_DEVICEID0
},
1016 { .address
= NRF5_FICR_DEVICEID1
},
1017 { .address
= NRF5_FICR_ER0
},
1018 { .address
= NRF5_FICR_ER1
},
1019 { .address
= NRF5_FICR_ER2
},
1020 { .address
= NRF5_FICR_ER3
},
1021 { .address
= NRF5_FICR_IR0
},
1022 { .address
= NRF5_FICR_IR1
},
1023 { .address
= NRF5_FICR_IR2
},
1024 { .address
= NRF5_FICR_IR3
},
1025 { .address
= NRF5_FICR_DEVICEADDRTYPE
},
1026 { .address
= NRF5_FICR_DEVICEADDR0
},
1027 { .address
= NRF5_FICR_DEVICEADDR1
},
1028 { .address
= NRF5_FICR_OVERRIDEN
},
1029 { .address
= NRF5_FICR_NRF_1MBIT0
},
1030 { .address
= NRF5_FICR_NRF_1MBIT1
},
1031 { .address
= NRF5_FICR_NRF_1MBIT2
},
1032 { .address
= NRF5_FICR_NRF_1MBIT3
},
1033 { .address
= NRF5_FICR_NRF_1MBIT4
},
1034 { .address
= NRF5_FICR_BLE_1MBIT0
},
1035 { .address
= NRF5_FICR_BLE_1MBIT1
},
1036 { .address
= NRF5_FICR_BLE_1MBIT2
},
1037 { .address
= NRF5_FICR_BLE_1MBIT3
},
1038 { .address
= NRF5_FICR_BLE_1MBIT4
},
1040 { .address
= NRF5_UICR_CLENR0
, },
1041 { .address
= NRF5_UICR_RBPCONF
},
1042 { .address
= NRF5_UICR_XTALFREQ
},
1043 { .address
= NRF5_UICR_FWID
},
1046 for (size_t i
= 0; i
< ARRAY_SIZE(ficr
); i
++) {
1047 res
= target_read_u32(chip
->target
, ficr
[i
].address
,
1049 if (res
!= ERROR_OK
) {
1050 LOG_ERROR("Couldn't read %" PRIx32
, ficr
[i
].address
);
1055 for (size_t i
= 0; i
< ARRAY_SIZE(uicr
); i
++) {
1056 res
= target_read_u32(chip
->target
, uicr
[i
].address
,
1058 if (res
!= ERROR_OK
) {
1059 LOG_ERROR("Couldn't read %" PRIx32
, uicr
[i
].address
);
1064 snprintf(buf
, buf_size
,
1065 "\n[factory information control block]\n\n"
1066 "code page size: %"PRIu32
"B\n"
1067 "code memory size: %"PRIu32
"kB\n"
1068 "code region 0 size: %"PRIu32
"kB\n"
1069 "pre-programmed code: %s\n"
1070 "number of ram blocks: %"PRIu32
"\n"
1071 "ram block 0 size: %"PRIu32
"B\n"
1072 "ram block 1 size: %"PRIu32
"B\n"
1073 "ram block 2 size: %"PRIu32
"B\n"
1074 "ram block 3 size: %"PRIu32
"B\n"
1075 "config id: %" PRIx32
"\n"
1076 "device id: 0x%"PRIx32
"%08"PRIx32
"\n"
1077 "encryption root: 0x%08"PRIx32
"%08"PRIx32
"%08"PRIx32
"%08"PRIx32
"\n"
1078 "identity root: 0x%08"PRIx32
"%08"PRIx32
"%08"PRIx32
"%08"PRIx32
"\n"
1079 "device address type: 0x%"PRIx32
"\n"
1080 "device address: 0x%"PRIx32
"%08"PRIx32
"\n"
1081 "override enable: %"PRIx32
"\n"
1082 "NRF_1MBIT values: %"PRIx32
" %"PRIx32
" %"PRIx32
" %"PRIx32
" %"PRIx32
"\n"
1083 "BLE_1MBIT values: %"PRIx32
" %"PRIx32
" %"PRIx32
" %"PRIx32
" %"PRIx32
"\n"
1084 "\n[user information control block]\n\n"
1085 "code region 0 size: %"PRIu32
"kB\n"
1086 "read back protection configuration: %"PRIx32
"\n"
1087 "reset value for XTALFREQ: %"PRIx32
"\n"
1088 "firmware id: 0x%04"PRIx32
,
1090 (ficr
[1].value
* ficr
[0].value
) / 1024,
1091 (ficr
[2].value
== 0xFFFFFFFF) ? 0 : ficr
[2].value
/ 1024,
1092 ((ficr
[3].value
& 0xFF) == 0x00) ? "present" : "not present",
1095 (ficr
[6].value
== 0xFFFFFFFF) ? 0 : ficr
[6].value
,
1096 (ficr
[7].value
== 0xFFFFFFFF) ? 0 : ficr
[7].value
,
1097 (ficr
[8].value
== 0xFFFFFFFF) ? 0 : ficr
[8].value
,
1099 ficr
[10].value
, ficr
[11].value
,
1100 ficr
[12].value
, ficr
[13].value
, ficr
[14].value
, ficr
[15].value
,
1101 ficr
[16].value
, ficr
[17].value
, ficr
[18].value
, ficr
[19].value
,
1103 ficr
[21].value
, ficr
[22].value
,
1105 ficr
[24].value
, ficr
[25].value
, ficr
[26].value
, ficr
[27].value
, ficr
[28].value
,
1106 ficr
[29].value
, ficr
[30].value
, ficr
[31].value
, ficr
[32].value
, ficr
[33].value
,
1107 (uicr
[0].value
== 0xFFFFFFFF) ? 0 : uicr
[0].value
/ 1024,
1108 uicr
[1].value
& 0xFFFF,
1109 uicr
[2].value
& 0xFF,
1110 uicr
[3].value
& 0xFFFF);
1115 static const struct command_registration nrf5_exec_command_handlers
[] = {
1117 .name
= "mass_erase",
1118 .handler
= nrf5_handle_mass_erase_command
,
1119 .mode
= COMMAND_EXEC
,
1120 .help
= "Erase all flash contents of the chip.",
1122 COMMAND_REGISTRATION_DONE
1125 static const struct command_registration nrf5_command_handlers
[] = {
1128 .mode
= COMMAND_ANY
,
1129 .help
= "nrf5 flash command group",
1131 .chain
= nrf5_exec_command_handlers
,
1135 .mode
= COMMAND_ANY
,
1136 .help
= "nrf51 flash command group",
1138 .chain
= nrf5_exec_command_handlers
,
1140 COMMAND_REGISTRATION_DONE
1143 struct flash_driver nrf5_flash
= {
1145 .commands
= nrf5_command_handlers
,
1146 .flash_bank_command
= nrf5_flash_bank_command
,
1148 .erase
= nrf5_erase
,
1149 .protect
= nrf5_protect
,
1150 .write
= nrf5_write
,
1151 .read
= default_flash_read
,
1152 .probe
= nrf5_probe
,
1153 .auto_probe
= nrf5_auto_probe
,
1154 .erase_check
= default_flash_blank_check
,
1155 .protect_check
= nrf5_protect_check
,
1156 .free_driver_priv
= nrf5_free_driver_priv
,
1159 /* We need to retain the flash-driver name as well as the commands
1160 * for backwards compatability */
1161 struct flash_driver nrf51_flash
= {
1163 .commands
= nrf5_command_handlers
,
1164 .flash_bank_command
= nrf5_flash_bank_command
,
1166 .erase
= nrf5_erase
,
1167 .protect
= nrf5_protect
,
1168 .write
= nrf5_write
,
1169 .read
= default_flash_read
,
1170 .probe
= nrf5_probe
,
1171 .auto_probe
= nrf5_auto_probe
,
1172 .erase_check
= default_flash_blank_check
,
1173 .protect_check
= nrf5_protect_check
,
1174 .free_driver_priv
= nrf5_free_driver_priv
,