Remove FSF address from GPL notices
[openocd.git] / src / flash / nand / at91sam9.c
blob0af12b20c7a533fc710327cd6497f3f8abd3c604
1 /*
2 * Copyright (C) 2009 by Dean Glazeski
3 * dnglaze@gmail.com
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 #ifdef HAVE_CONFIG_H
20 #include "config.h"
21 #endif
23 #include <target/arm.h>
24 #include <helper/log.h>
25 #include "imp.h"
26 #include "arm_io.h"
28 #define AT91C_PIOx_SODR (0x30) /**< Offset to PIO SODR. */
29 #define AT91C_PIOx_CODR (0x34) /**< Offset to PIO CODR. */
30 #define AT91C_PIOx_PDSR (0x3C) /**< Offset to PIO PDSR. */
31 #define AT91C_ECCx_CR (0x00) /**< Offset to ECC CR. */
32 #define AT91C_ECCx_SR (0x08) /**< Offset to ECC SR. */
33 #define AT91C_ECCx_PR (0x0C) /**< Offset to ECC PR. */
34 #define AT91C_ECCx_NPR (0x10) /**< Offset to ECC NPR. */
36 /**
37 * Representation of a pin on an AT91SAM9 chip.
39 struct at91sam9_pin {
40 /** Address of the PIO controller. */
41 uint32_t pioc;
43 /** Pin number. */
44 uint32_t num;
47 /**
48 * Private data for the controller that is stored in the NAND device structure.
50 struct at91sam9_nand {
51 /** Address of the ECC controller for NAND. */
52 uint32_t ecc;
54 /** Address data is written to. */
55 uint32_t data;
57 /** Address commands are written to. */
58 uint32_t cmd;
60 /** Address addresses are written to. */
61 uint32_t addr;
63 /** I/O structure for hosted reads/writes. */
64 struct arm_nand_data io;
66 /** Pin representing the ready/~busy line. */
67 struct at91sam9_pin busy;
69 /** Pin representing the chip enable. */
70 struct at91sam9_pin ce;
73 /**
74 * Checks if the target is halted and prints an error message if it isn't.
76 * @param target Target to be checked.
77 * @param label String label for where function is called from.
78 * @return True if the target is halted.
80 static int at91sam9_halted(struct target *target, const char *label)
82 if (target->state == TARGET_HALTED)
83 return true;
85 LOG_ERROR("Target must be halted to use NAND controller (%s)", label);
86 return false;
89 /**
90 * Initialize the AT91SAM9 NAND controller.
92 * @param nand NAND device the controller is attached to.
93 * @return Success or failure of initialization.
95 static int at91sam9_init(struct nand_device *nand)
97 struct target *target = nand->target;
99 if (!at91sam9_halted(target, "init"))
100 return ERROR_NAND_OPERATION_FAILED;
102 return ERROR_OK;
106 * Enable NAND device attached to a controller.
108 * @param info NAND controller information for controlling NAND device.
109 * @return Success or failure of the enabling.
111 static int at91sam9_enable(struct nand_device *nand)
113 struct at91sam9_nand *info = nand->controller_priv;
114 struct target *target = nand->target;
116 return target_write_u32(target, info->ce.pioc + AT91C_PIOx_CODR, 1 << info->ce.num);
120 * Disable NAND device attached to a controller.
122 * @param info NAND controller information for controlling NAND device.
123 * @return Success or failure of the disabling.
125 static int at91sam9_disable(struct nand_device *nand)
127 struct at91sam9_nand *info = nand->controller_priv;
128 struct target *target = nand->target;
130 return target_write_u32(target, info->ce.pioc + AT91C_PIOx_SODR, 1 << info->ce.num);
134 * Send a command to the NAND device.
136 * @param nand NAND device to write the command to.
137 * @param command Command to be written.
138 * @return Success or failure of writing the command.
140 static int at91sam9_command(struct nand_device *nand, uint8_t command)
142 struct at91sam9_nand *info = nand->controller_priv;
143 struct target *target = nand->target;
145 if (!at91sam9_halted(target, "command"))
146 return ERROR_NAND_OPERATION_FAILED;
148 at91sam9_enable(nand);
150 return target_write_u8(target, info->cmd, command);
154 * Reset the AT91SAM9 NAND controller.
156 * @param nand NAND device to be reset.
157 * @return Success or failure of reset.
159 static int at91sam9_reset(struct nand_device *nand)
161 if (!at91sam9_halted(nand->target, "reset"))
162 return ERROR_NAND_OPERATION_FAILED;
164 return at91sam9_disable(nand);
168 * Send an address to the NAND device attached to an AT91SAM9 NAND controller.
170 * @param nand NAND device to send the address to.
171 * @param address Address to be sent.
172 * @return Success or failure of sending the address.
174 static int at91sam9_address(struct nand_device *nand, uint8_t address)
176 struct at91sam9_nand *info = nand->controller_priv;
177 struct target *target = nand->target;
179 if (!at91sam9_halted(nand->target, "address"))
180 return ERROR_NAND_OPERATION_FAILED;
182 return target_write_u8(target, info->addr, address);
186 * Read data directly from the NAND device attached to an AT91SAM9 NAND
187 * controller.
189 * @param nand NAND device to read from.
190 * @param data Pointer to where the data should be put.
191 * @return Success or failure of reading the data.
193 static int at91sam9_read_data(struct nand_device *nand, void *data)
195 struct at91sam9_nand *info = nand->controller_priv;
196 struct target *target = nand->target;
198 if (!at91sam9_halted(nand->target, "read data"))
199 return ERROR_NAND_OPERATION_FAILED;
201 return target_read_u8(target, info->data, data);
205 * Write data directly to the NAND device attached to an AT91SAM9 NAND
206 * controller.
208 * @param nand NAND device to be written to.
209 * @param data Data to be written.
210 * @return Success or failure of the data write.
212 static int at91sam9_write_data(struct nand_device *nand, uint16_t data)
214 struct at91sam9_nand *info = nand->controller_priv;
215 struct target *target = nand->target;
217 if (!at91sam9_halted(target, "write data"))
218 return ERROR_NAND_OPERATION_FAILED;
220 return target_write_u8(target, info->data, data);
224 * Determine if the NAND device is ready by looking at the ready/~busy pin.
226 * @param nand NAND device to check.
227 * @param timeout Time in milliseconds to wait for NAND to be ready.
228 * @return True if the NAND is ready in the timeout period.
230 static int at91sam9_nand_ready(struct nand_device *nand, int timeout)
232 struct at91sam9_nand *info = nand->controller_priv;
233 struct target *target = nand->target;
234 uint32_t status;
236 if (!at91sam9_halted(target, "nand ready"))
237 return 0;
239 do {
240 target_read_u32(target, info->busy.pioc + AT91C_PIOx_PDSR, &status);
242 if (status & (1 << info->busy.num))
243 return 1;
245 alive_sleep(1);
246 } while (timeout-- > 0);
248 return 0;
252 * Read a block of data from the NAND device attached to an AT91SAM9. This
253 * utilizes the ARM hosted NAND read function.
255 * @param nand NAND device to read from.
256 * @param data Pointer to where the read data should be placed.
257 * @param size Size of the data being read.
258 * @return Success or failure of the hosted read.
260 static int at91sam9_read_block_data(struct nand_device *nand, uint8_t *data, int size)
262 struct at91sam9_nand *info = nand->controller_priv;
263 struct arm_nand_data *io = &info->io;
264 int status;
266 if (!at91sam9_halted(nand->target, "read block"))
267 return ERROR_NAND_OPERATION_FAILED;
269 io->chunk_size = nand->page_size;
270 status = arm_nandread(io, data, size);
272 return status;
276 * Write a block of data to a NAND device attached to an AT91SAM9. This uses
277 * the ARM hosted write function to write the data.
279 * @param nand NAND device to write to.
280 * @param data Data to be written to device.
281 * @param size Size of the data being written.
282 * @return Success or failure of the hosted write.
284 static int at91sam9_write_block_data(struct nand_device *nand, uint8_t *data, int size)
286 struct at91sam9_nand *info = nand->controller_priv;
287 struct arm_nand_data *io = &info->io;
288 int status;
290 if (!at91sam9_halted(nand->target, "write block"))
291 return ERROR_NAND_OPERATION_FAILED;
293 io->chunk_size = nand->page_size;
294 status = arm_nandwrite(io, data, size);
296 return status;
300 * Initialize the ECC controller on the AT91SAM9.
302 * @param target Target to configure ECC on.
303 * @param info NAND controller information for where the ECC is.
304 * @return Success or failure of initialization.
306 static int at91sam9_ecc_init(struct target *target, struct at91sam9_nand *info)
308 if (!info->ecc) {
309 LOG_ERROR("ECC controller address must be set when not reading raw NAND data");
310 return ERROR_NAND_OPERATION_FAILED;
313 /* reset ECC parity registers */
314 return target_write_u32(target, info->ecc + AT91C_ECCx_CR, 1);
318 * Initialize an area for the OOB based on whether a user is requesting the OOB
319 * data. This determines the size of the OOB and allocates the space in case
320 * the user has not requested the OOB data.
322 * @param nand NAND device we are creating an OOB for.
323 * @param oob Pointer to the user supplied OOB area.
324 * @param size Size of the OOB.
325 * @return Pointer to an area to store OOB data.
327 static uint8_t *at91sam9_oob_init(struct nand_device *nand, uint8_t *oob, uint32_t *size)
329 if (!oob) {
330 /* user doesn't want OOB, allocate it */
331 if (nand->page_size == 512)
332 *size = 16;
333 else if (nand->page_size == 2048)
334 *size = 64;
336 oob = malloc(*size);
337 if (!oob) {
338 LOG_ERROR("Unable to allocate space for OOB");
339 return NULL;
342 memset(oob, 0xFF, *size);
345 return oob;
349 * Reads a page from an AT91SAM9 NAND controller and verifies using 1-bit ECC
350 * controller on chip. This makes an attempt to correct any errors that are
351 * encountered while reading the page of data.
353 * @param nand NAND device to read from
354 * @param page Page to be read.
355 * @param data Pointer to where data should be read to.
356 * @param data_size Size of the data to be read.
357 * @param oob Pointer to where OOB data should be read to.
358 * @param oob_size Size of the OOB data to be read.
359 * @return Success or failure of reading the NAND page.
361 static int at91sam9_read_page(struct nand_device *nand, uint32_t page,
362 uint8_t *data, uint32_t data_size, uint8_t *oob, uint32_t oob_size)
364 int retval;
365 struct at91sam9_nand *info = nand->controller_priv;
366 struct target *target = nand->target;
367 uint8_t *oob_data;
368 uint32_t status;
370 retval = at91sam9_ecc_init(target, info);
371 if (ERROR_OK != retval)
372 return retval;
374 retval = nand_page_command(nand, page, NAND_CMD_READ0, !data);
375 if (ERROR_OK != retval)
376 return retval;
378 if (data) {
379 retval = nand_read_data_page(nand, data, data_size);
380 if (ERROR_OK != retval)
381 return retval;
384 oob_data = at91sam9_oob_init(nand, oob, &oob_size);
385 retval = nand_read_data_page(nand, oob_data, oob_size);
386 if (ERROR_OK == retval && data) {
387 target_read_u32(target, info->ecc + AT91C_ECCx_SR, &status);
388 if (status & 1) {
389 LOG_ERROR("Error detected!");
390 if (status & 4)
391 LOG_ERROR("Multiple errors encountered; unrecoverable!");
392 else {
393 /* attempt recovery */
394 uint32_t parity;
396 target_read_u32(target,
397 info->ecc + AT91C_ECCx_PR,
398 &parity);
399 uint32_t word = (parity & 0x0000FFF0) >> 4;
400 uint32_t bit = parity & 0x0F;
402 data[word] ^= (0x1) << bit;
403 LOG_INFO("Data word %d, bit %d corrected.",
404 (unsigned) word,
405 (unsigned) bit);
409 if (status & 2) {
410 /* we could write back correct ECC data */
411 LOG_ERROR("Error in ECC bytes detected");
415 if (!oob) {
416 /* if it wasn't asked for, free it */
417 free(oob_data);
420 return retval;
424 * Write a page of data including 1-bit ECC information to a NAND device
425 * attached to an AT91SAM9 controller. If there is OOB data to be written,
426 * this will ignore the computed ECC from the ECC controller.
428 * @param nand NAND device to write to.
429 * @param page Page to write.
430 * @param data Pointer to data being written.
431 * @param data_size Size of the data being written.
432 * @param oob Pointer to OOB data being written.
433 * @param oob_size Size of the OOB data.
434 * @return Success or failure of the page write.
436 static int at91sam9_write_page(struct nand_device *nand, uint32_t page,
437 uint8_t *data, uint32_t data_size, uint8_t *oob, uint32_t oob_size)
439 struct at91sam9_nand *info = nand->controller_priv;
440 struct target *target = nand->target;
441 int retval;
442 uint8_t *oob_data = oob;
443 uint32_t parity, nparity;
445 retval = at91sam9_ecc_init(target, info);
446 if (ERROR_OK != retval)
447 return retval;
449 retval = nand_page_command(nand, page, NAND_CMD_SEQIN, !data);
450 if (ERROR_OK != retval)
451 return retval;
453 if (data) {
454 retval = nand_write_data_page(nand, data, data_size);
455 if (ERROR_OK != retval) {
456 LOG_ERROR("Unable to write data to NAND device");
457 return retval;
461 oob_data = at91sam9_oob_init(nand, oob, &oob_size);
463 if (!oob) {
464 /* no OOB given, so read in the ECC parity from the ECC controller */
465 target_read_u32(target, info->ecc + AT91C_ECCx_PR, &parity);
466 target_read_u32(target, info->ecc + AT91C_ECCx_NPR, &nparity);
468 oob_data[0] = (uint8_t) parity;
469 oob_data[1] = (uint8_t) (parity >> 8);
470 oob_data[2] = (uint8_t) nparity;
471 oob_data[3] = (uint8_t) (nparity >> 8);
474 retval = nand_write_data_page(nand, oob_data, oob_size);
476 if (!oob)
477 free(oob_data);
479 if (ERROR_OK != retval) {
480 LOG_ERROR("Unable to write OOB data to NAND");
481 return retval;
484 retval = nand_write_finish(nand);
486 return retval;
490 * Handle the initial NAND device command for AT91SAM9 controllers. This
491 * initializes much of the controller information struct to be ready for future
492 * reads and writes.
494 NAND_DEVICE_COMMAND_HANDLER(at91sam9_nand_device_command)
496 unsigned long chip = 0, ecc = 0;
497 struct at91sam9_nand *info = NULL;
499 LOG_DEBUG("AT91SAM9 NAND Device Command");
501 if (CMD_ARGC < 3 || CMD_ARGC > 4) {
502 LOG_ERROR("parameters: %s target chip_addr", CMD_ARGV[0]);
503 return ERROR_NAND_OPERATION_FAILED;
506 COMMAND_PARSE_NUMBER(ulong, CMD_ARGV[2], chip);
507 if (chip == 0) {
508 LOG_ERROR("invalid NAND chip address: %s", CMD_ARGV[2]);
509 return ERROR_NAND_OPERATION_FAILED;
512 if (CMD_ARGC == 4) {
513 COMMAND_PARSE_NUMBER(ulong, CMD_ARGV[3], ecc);
514 if (ecc == 0) {
515 LOG_ERROR("invalid ECC controller address: %s", CMD_ARGV[3]);
516 return ERROR_NAND_OPERATION_FAILED;
520 info = calloc(1, sizeof(*info));
521 if (!info) {
522 LOG_ERROR("unable to allocate space for controller private data");
523 return ERROR_NAND_OPERATION_FAILED;
526 info->data = chip;
527 info->cmd = chip | (1 << 22);
528 info->addr = chip | (1 << 21);
529 info->ecc = ecc;
531 nand->controller_priv = info;
532 info->io.target = nand->target;
533 info->io.data = info->data;
534 info->io.op = ARM_NAND_NONE;
536 return ERROR_OK;
540 * Handle the AT91SAM9 CLE command for specifying the address line to use for
541 * writing commands to a NAND device.
543 COMMAND_HANDLER(handle_at91sam9_cle_command)
545 struct nand_device *nand = NULL;
546 struct at91sam9_nand *info = NULL;
547 unsigned num, address_line;
549 if (CMD_ARGC != 2) {
550 command_print(CMD_CTX, "incorrect number of arguments for 'at91sam9 cle' command");
551 return ERROR_OK;
554 COMMAND_PARSE_NUMBER(uint, CMD_ARGV[0], num);
555 nand = get_nand_device_by_num(num);
556 if (!nand) {
557 command_print(CMD_CTX, "invalid nand device number: %s", CMD_ARGV[0]);
558 return ERROR_OK;
561 info = nand->controller_priv;
563 COMMAND_PARSE_NUMBER(uint, CMD_ARGV[1], address_line);
564 info->cmd = info->data | (1 << address_line);
566 return ERROR_OK;
570 * Handle the AT91SAM9 ALE command for specifying the address line to use for
571 * writing addresses to the NAND device.
573 COMMAND_HANDLER(handle_at91sam9_ale_command)
575 struct nand_device *nand = NULL;
576 struct at91sam9_nand *info = NULL;
577 unsigned num, address_line;
579 if (CMD_ARGC != 2)
580 return ERROR_COMMAND_SYNTAX_ERROR;
582 COMMAND_PARSE_NUMBER(uint, CMD_ARGV[0], num);
583 nand = get_nand_device_by_num(num);
584 if (!nand) {
585 command_print(CMD_CTX, "invalid nand device number: %s", CMD_ARGV[0]);
586 return ERROR_COMMAND_ARGUMENT_INVALID;
589 info = nand->controller_priv;
591 COMMAND_PARSE_NUMBER(uint, CMD_ARGV[1], address_line);
592 info->addr = info->data | (1 << address_line);
594 return ERROR_OK;
598 * Handle the AT91SAM9 RDY/~BUSY command for specifying the pin that watches the
599 * RDY/~BUSY line from the NAND device.
601 COMMAND_HANDLER(handle_at91sam9_rdy_busy_command)
603 struct nand_device *nand = NULL;
604 struct at91sam9_nand *info = NULL;
605 unsigned num, base_pioc, pin_num;
607 if (CMD_ARGC != 3)
608 return ERROR_COMMAND_SYNTAX_ERROR;
610 COMMAND_PARSE_NUMBER(uint, CMD_ARGV[0], num);
611 nand = get_nand_device_by_num(num);
612 if (!nand) {
613 command_print(CMD_CTX, "invalid nand device number: %s", CMD_ARGV[0]);
614 return ERROR_COMMAND_ARGUMENT_INVALID;
617 info = nand->controller_priv;
619 COMMAND_PARSE_NUMBER(uint, CMD_ARGV[1], base_pioc);
620 info->busy.pioc = base_pioc;
622 COMMAND_PARSE_NUMBER(uint, CMD_ARGV[2], pin_num);
623 info->busy.num = pin_num;
625 return ERROR_OK;
629 * Handle the AT91SAM9 CE command for specifying the pin that is used to enable
630 * or disable the NAND device.
632 COMMAND_HANDLER(handle_at91sam9_ce_command)
634 struct nand_device *nand = NULL;
635 struct at91sam9_nand *info = NULL;
636 unsigned num, base_pioc, pin_num;
638 if (CMD_ARGC != 3)
639 return ERROR_COMMAND_SYNTAX_ERROR;
641 COMMAND_PARSE_NUMBER(uint, CMD_ARGV[0], num);
642 nand = get_nand_device_by_num(num);
643 if (!nand) {
644 command_print(CMD_CTX, "invalid nand device number: %s", CMD_ARGV[0]);
645 return ERROR_COMMAND_ARGUMENT_INVALID;
648 info = nand->controller_priv;
650 COMMAND_PARSE_NUMBER(uint, CMD_ARGV[1], base_pioc);
651 info->ce.pioc = base_pioc;
653 COMMAND_PARSE_NUMBER(uint, CMD_ARGV[2], pin_num);
654 info->ce.num = pin_num;
656 return ERROR_OK;
659 static const struct command_registration at91sam9_sub_command_handlers[] = {
661 .name = "cle",
662 .handler = handle_at91sam9_cle_command,
663 .mode = COMMAND_CONFIG,
664 .help = "set command latch enable address line (default is 22)",
665 .usage = "bank_id address_line",
668 .name = "ale",
669 .handler = handle_at91sam9_ale_command,
670 .mode = COMMAND_CONFIG,
671 .help = "set address latch enable address line (default is 21)",
672 .usage = "bank_id address_line",
675 .name = "rdy_busy",
676 .handler = handle_at91sam9_rdy_busy_command,
677 .mode = COMMAND_CONFIG,
678 .help = "set the GPIO input pin connected to "
679 "the RDY/~BUSY signal (no default)",
680 .usage = "bank_id pio_base_addr pin_num",
683 .name = "ce",
684 .handler = handle_at91sam9_ce_command,
685 .mode = COMMAND_CONFIG,
686 .help = "set the GPIO output pin connected to "
687 "the chip enable signal (no default)",
688 .usage = "bank_id pio_base_addr pin_num",
690 COMMAND_REGISTRATION_DONE
693 static const struct command_registration at91sam9_command_handler[] = {
695 .name = "at91sam9",
696 .mode = COMMAND_ANY,
697 .help = "AT91SAM9 NAND flash controller commands",
698 .usage = "",
699 .chain = at91sam9_sub_command_handlers,
701 COMMAND_REGISTRATION_DONE
705 * Structure representing the AT91SAM9 NAND controller.
707 struct nand_flash_controller at91sam9_nand_controller = {
708 .name = "at91sam9",
709 .nand_device_command = at91sam9_nand_device_command,
710 .commands = at91sam9_command_handler,
711 .init = at91sam9_init,
712 .command = at91sam9_command,
713 .reset = at91sam9_reset,
714 .address = at91sam9_address,
715 .read_data = at91sam9_read_data,
716 .write_data = at91sam9_write_data,
717 .nand_ready = at91sam9_nand_ready,
718 .read_block_data = at91sam9_read_block_data,
719 .write_block_data = at91sam9_write_block_data,
720 .read_page = at91sam9_read_page,
721 .write_page = at91sam9_write_page,