Fw: [PATCH] OpenRD board configuration
[openocd/cortex.git] / src / flash / lpc3180_nand_controller.c
blobde6d4e2bf8f7fccc62f439ae381e493e3c3b4b23
1 /***************************************************************************
2 * Copyright (C) 2007 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
4 * *
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. *
9 * *
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. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
24 #include "lpc3180_nand_controller.h"
25 #include "nand.h"
27 static int lpc3180_nand_device_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc, struct nand_device_s *device);
28 static int lpc3180_register_commands(struct command_context_s *cmd_ctx);
29 static int lpc3180_init(struct nand_device_s *device);
30 static int lpc3180_reset(struct nand_device_s *device);
31 static int lpc3180_command(struct nand_device_s *device, uint8_t command);
32 static int lpc3180_address(struct nand_device_s *device, uint8_t address);
33 static int lpc3180_write_data(struct nand_device_s *device, uint16_t data);
34 static int lpc3180_read_data(struct nand_device_s *device, void *data);
35 static int lpc3180_write_page(struct nand_device_s *device, uint32_t page, uint8_t *data, uint32_t data_size, uint8_t *oob, uint32_t oob_size);
36 static int lpc3180_read_page(struct nand_device_s *device, uint32_t page, uint8_t *data, uint32_t data_size, uint8_t *oob, uint32_t oob_size);
37 static int lpc3180_controller_ready(struct nand_device_s *device, int timeout);
38 static int lpc3180_nand_ready(struct nand_device_s *device, int timeout);
40 static int handle_lpc3180_select_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
42 nand_flash_controller_t lpc3180_nand_controller =
44 .name = "lpc3180",
45 .nand_device_command = lpc3180_nand_device_command,
46 .register_commands = lpc3180_register_commands,
47 .init = lpc3180_init,
48 .reset = lpc3180_reset,
49 .command = lpc3180_command,
50 .address = lpc3180_address,
51 .write_data = lpc3180_write_data,
52 .read_data = lpc3180_read_data,
53 .write_page = lpc3180_write_page,
54 .read_page = lpc3180_read_page,
55 .controller_ready = lpc3180_controller_ready,
56 .nand_ready = lpc3180_nand_ready,
59 /* nand device lpc3180 <target#> <oscillator_frequency>
61 static int lpc3180_nand_device_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc, struct nand_device_s *device)
63 lpc3180_nand_controller_t *lpc3180_info;
65 if (argc < 3)
67 LOG_WARNING("incomplete 'lpc3180' nand flash configuration");
68 return ERROR_FLASH_BANK_INVALID;
71 lpc3180_info = malloc(sizeof(lpc3180_nand_controller_t));
72 device->controller_priv = lpc3180_info;
74 lpc3180_info->target = get_target(args[1]);
75 if (!lpc3180_info->target)
77 LOG_ERROR("target '%s' not defined", args[1]);
78 return ERROR_NAND_DEVICE_INVALID;
81 lpc3180_info->osc_freq = strtoul(args[2], NULL, 0);
82 if ((lpc3180_info->osc_freq < 1000) || (lpc3180_info->osc_freq > 20000))
84 LOG_WARNING("LPC3180 oscillator frequency should be between 1000 and 20000 kHz, was %i", lpc3180_info->osc_freq);
86 lpc3180_info->selected_controller = LPC3180_NO_CONTROLLER;
87 lpc3180_info->sw_write_protection = 0;
88 lpc3180_info->sw_wp_lower_bound = 0x0;
89 lpc3180_info->sw_wp_upper_bound = 0x0;
91 return ERROR_OK;
94 static int lpc3180_register_commands(struct command_context_s *cmd_ctx)
96 command_t *lpc3180_cmd = register_command(cmd_ctx, NULL, "lpc3180", NULL, COMMAND_ANY, "commands specific to the LPC3180 NAND flash controllers");
98 register_command(cmd_ctx, lpc3180_cmd, "select", handle_lpc3180_select_command, COMMAND_EXEC, "select <'mlc'|'slc'> controller (default is mlc)");
100 return ERROR_OK;
103 static int lpc3180_pll(int fclkin, uint32_t pll_ctrl)
105 int bypass = (pll_ctrl & 0x8000) >> 15;
106 int direct = (pll_ctrl & 0x4000) >> 14;
107 int feedback = (pll_ctrl & 0x2000) >> 13;
108 int p = (1 << ((pll_ctrl & 0x1800) >> 11) * 2);
109 int n = ((pll_ctrl & 0x0600) >> 9) + 1;
110 int m = ((pll_ctrl & 0x01fe) >> 1) + 1;
111 int lock = (pll_ctrl & 0x1);
113 if (!lock)
114 LOG_WARNING("PLL is not locked");
116 if (!bypass && direct) /* direct mode */
117 return (m * fclkin) / n;
119 if (bypass && !direct) /* bypass mode */
120 return fclkin / (2 * p);
122 if (bypass & direct) /* direct bypass mode */
123 return fclkin;
125 if (feedback) /* integer mode */
126 return m * (fclkin / n);
127 else /* non-integer mode */
128 return (m / (2 * p)) * (fclkin / n);
131 static float lpc3180_cycle_time(lpc3180_nand_controller_t *lpc3180_info)
133 target_t *target = lpc3180_info->target;
134 uint32_t sysclk_ctrl, pwr_ctrl, hclkdiv_ctrl, hclkpll_ctrl;
135 int sysclk;
136 int hclk;
137 int hclk_pll;
138 float cycle;
140 /* calculate timings */
142 /* determine current SYSCLK (13'MHz or main oscillator) */
143 target_read_u32(target, 0x40004050, &sysclk_ctrl);
145 if ((sysclk_ctrl & 1) == 0)
146 sysclk = lpc3180_info->osc_freq;
147 else
148 sysclk = 13000;
150 /* determine selected HCLK source */
151 target_read_u32(target, 0x40004044, &pwr_ctrl);
153 if ((pwr_ctrl & (1 << 2)) == 0) /* DIRECT RUN mode */
155 hclk = sysclk;
157 else
159 target_read_u32(target, 0x40004058, &hclkpll_ctrl);
160 hclk_pll = lpc3180_pll(sysclk, hclkpll_ctrl);
162 target_read_u32(target, 0x40004040, &hclkdiv_ctrl);
164 if (pwr_ctrl & (1 << 10)) /* ARM_CLK and HCLK use PERIPH_CLK */
166 hclk = hclk_pll / (((hclkdiv_ctrl & 0x7c) >> 2) + 1);
168 else /* HCLK uses HCLK_PLL */
170 hclk = hclk_pll / (1 << (hclkdiv_ctrl & 0x3));
174 LOG_DEBUG("LPC3180 HCLK currently clocked at %i kHz", hclk);
176 cycle = (1.0 / hclk) * 1000000.0;
178 return cycle;
181 static int lpc3180_init(struct nand_device_s *device)
183 lpc3180_nand_controller_t *lpc3180_info = device->controller_priv;
184 target_t *target = lpc3180_info->target;
185 int bus_width = (device->bus_width) ? (device->bus_width) : 8;
186 int address_cycles = (device->address_cycles) ? (device->address_cycles) : 3;
187 int page_size = (device->page_size) ? (device->page_size) : 512;
189 if (target->state != TARGET_HALTED)
191 LOG_ERROR("target must be halted to use LPC3180 NAND flash controller");
192 return ERROR_NAND_OPERATION_FAILED;
195 /* sanitize arguments */
196 if ((bus_width != 8) && (bus_width != 16))
198 LOG_ERROR("LPC3180 only supports 8 or 16 bit bus width, not %i", bus_width);
199 return ERROR_NAND_OPERATION_NOT_SUPPORTED;
202 /* The LPC3180 only brings out 8 bit NAND data bus, but the controller
203 * would support 16 bit, too, so we just warn about this for now
205 if (bus_width == 16)
207 LOG_WARNING("LPC3180 only supports 8 bit bus width");
210 /* inform calling code about selected bus width */
211 device->bus_width = bus_width;
213 if ((address_cycles != 3) && (address_cycles != 4))
215 LOG_ERROR("LPC3180 only supports 3 or 4 address cycles, not %i", address_cycles);
216 return ERROR_NAND_OPERATION_NOT_SUPPORTED;
219 if ((page_size != 512) && (page_size != 2048))
221 LOG_ERROR("LPC3180 only supports 512 or 2048 byte pages, not %i", page_size);
222 return ERROR_NAND_OPERATION_NOT_SUPPORTED;
225 /* select MLC controller if none is currently selected */
226 if (lpc3180_info->selected_controller == LPC3180_NO_CONTROLLER)
228 LOG_DEBUG("no LPC3180 NAND flash controller selected, using default 'mlc'");
229 lpc3180_info->selected_controller = LPC3180_MLC_CONTROLLER;
232 if (lpc3180_info->selected_controller == LPC3180_MLC_CONTROLLER)
234 uint32_t mlc_icr_value = 0x0;
235 float cycle;
236 int twp, twh, trp, treh, trhz, trbwb, tcea;
238 /* FLASHCLK_CTRL = 0x22 (enable clock for MLC flash controller) */
239 target_write_u32(target, 0x400040c8, 0x22);
241 /* MLC_CEH = 0x0 (Force nCE assert) */
242 target_write_u32(target, 0x200b804c, 0x0);
244 /* MLC_LOCK = 0xa25e (unlock protected registers) */
245 target_write_u32(target, 0x200b8044, 0xa25e);
247 /* MLC_ICR = configuration */
248 if (lpc3180_info->sw_write_protection)
249 mlc_icr_value |= 0x8;
250 if (page_size == 2048)
251 mlc_icr_value |= 0x4;
252 if (address_cycles == 4)
253 mlc_icr_value |= 0x2;
254 if (bus_width == 16)
255 mlc_icr_value |= 0x1;
256 target_write_u32(target, 0x200b8030, mlc_icr_value);
258 /* calculate NAND controller timings */
259 cycle = lpc3180_cycle_time(lpc3180_info);
261 twp = ((40 / cycle) + 1);
262 twh = ((20 / cycle) + 1);
263 trp = ((30 / cycle) + 1);
264 treh = ((15 / cycle) + 1);
265 trhz = ((30 / cycle) + 1);
266 trbwb = ((100 / cycle) + 1);
267 tcea = ((45 / cycle) + 1);
269 /* MLC_LOCK = 0xa25e (unlock protected registers) */
270 target_write_u32(target, 0x200b8044, 0xa25e);
272 /* MLC_TIME_REG */
273 target_write_u32(target, 0x200b8034, (twp & 0xf) | ((twh & 0xf) << 4) |
274 ((trp & 0xf) << 8) | ((treh & 0xf) << 12) | ((trhz & 0x7) << 16) |
275 ((trbwb & 0x1f) << 19) | ((tcea & 0x3) << 24));
277 lpc3180_reset(device);
279 else if (lpc3180_info->selected_controller == LPC3180_SLC_CONTROLLER)
281 float cycle;
282 int r_setup, r_hold, r_width, r_rdy;
283 int w_setup, w_hold, w_width, w_rdy;
285 /* FLASHCLK_CTRL = 0x05 (enable clock for SLC flash controller) */
286 target_write_u32(target, 0x400040c8, 0x05);
288 /* SLC_CFG = 0x (Force nCE assert, ECC enabled, WIDTH = bus_width) */
289 target_write_u32(target, 0x20020014, 0x28 | (bus_width == 16) ? 1 : 0);
291 /* calculate NAND controller timings */
292 cycle = lpc3180_cycle_time(lpc3180_info);
294 r_setup = w_setup = 0;
295 r_hold = w_hold = 10 / cycle;
296 r_width = 30 / cycle;
297 w_width = 40 / cycle;
298 r_rdy = w_rdy = 100 / cycle;
300 /* SLC_TAC: SLC timing arcs register */
301 target_write_u32(target, 0x2002002c, (r_setup & 0xf) | ((r_hold & 0xf) << 4) |
302 ((r_width & 0xf) << 8) | ((r_rdy & 0xf) << 12) | ((w_setup & 0xf) << 16) |
303 ((w_hold & 0xf) << 20) | ((w_width & 0xf) << 24) | ((w_rdy & 0xf) << 28));
305 lpc3180_reset(device);
308 return ERROR_OK;
311 static int lpc3180_reset(struct nand_device_s *device)
313 lpc3180_nand_controller_t *lpc3180_info = device->controller_priv;
314 target_t *target = lpc3180_info->target;
316 if (target->state != TARGET_HALTED)
318 LOG_ERROR("target must be halted to use LPC3180 NAND flash controller");
319 return ERROR_NAND_OPERATION_FAILED;
322 if (lpc3180_info->selected_controller == LPC3180_NO_CONTROLLER)
324 LOG_ERROR("BUG: no LPC3180 NAND flash controller selected");
325 return ERROR_NAND_OPERATION_FAILED;
327 else if (lpc3180_info->selected_controller == LPC3180_MLC_CONTROLLER)
329 /* MLC_CMD = 0xff (reset controller and NAND device) */
330 target_write_u32(target, 0x200b8000, 0xff);
332 if (!lpc3180_controller_ready(device, 100))
334 LOG_ERROR("LPC3180 NAND controller timed out after reset");
335 return ERROR_NAND_OPERATION_TIMEOUT;
338 else if (lpc3180_info->selected_controller == LPC3180_SLC_CONTROLLER)
340 /* SLC_CTRL = 0x6 (ECC_CLEAR, SW_RESET) */
341 target_write_u32(target, 0x20020010, 0x6);
343 if (!lpc3180_controller_ready(device, 100))
345 LOG_ERROR("LPC3180 NAND controller timed out after reset");
346 return ERROR_NAND_OPERATION_TIMEOUT;
350 return ERROR_OK;
353 static int lpc3180_command(struct nand_device_s *device, uint8_t command)
355 lpc3180_nand_controller_t *lpc3180_info = device->controller_priv;
356 target_t *target = lpc3180_info->target;
358 if (target->state != TARGET_HALTED)
360 LOG_ERROR("target must be halted to use LPC3180 NAND flash controller");
361 return ERROR_NAND_OPERATION_FAILED;
364 if (lpc3180_info->selected_controller == LPC3180_NO_CONTROLLER)
366 LOG_ERROR("BUG: no LPC3180 NAND flash controller selected");
367 return ERROR_NAND_OPERATION_FAILED;
369 else if (lpc3180_info->selected_controller == LPC3180_MLC_CONTROLLER)
371 /* MLC_CMD = command */
372 target_write_u32(target, 0x200b8000, command);
374 else if (lpc3180_info->selected_controller == LPC3180_SLC_CONTROLLER)
376 /* SLC_CMD = command */
377 target_write_u32(target, 0x20020008, command);
380 return ERROR_OK;
383 static int lpc3180_address(struct nand_device_s *device, uint8_t address)
385 lpc3180_nand_controller_t *lpc3180_info = device->controller_priv;
386 target_t *target = lpc3180_info->target;
388 if (target->state != TARGET_HALTED)
390 LOG_ERROR("target must be halted to use LPC3180 NAND flash controller");
391 return ERROR_NAND_OPERATION_FAILED;
394 if (lpc3180_info->selected_controller == LPC3180_NO_CONTROLLER)
396 LOG_ERROR("BUG: no LPC3180 NAND flash controller selected");
397 return ERROR_NAND_OPERATION_FAILED;
399 else if (lpc3180_info->selected_controller == LPC3180_MLC_CONTROLLER)
401 /* MLC_ADDR = address */
402 target_write_u32(target, 0x200b8004, address);
404 else if (lpc3180_info->selected_controller == LPC3180_SLC_CONTROLLER)
406 /* SLC_ADDR = address */
407 target_write_u32(target, 0x20020004, address);
410 return ERROR_OK;
413 static int lpc3180_write_data(struct nand_device_s *device, uint16_t data)
415 lpc3180_nand_controller_t *lpc3180_info = device->controller_priv;
416 target_t *target = lpc3180_info->target;
418 if (target->state != TARGET_HALTED)
420 LOG_ERROR("target must be halted to use LPC3180 NAND flash controller");
421 return ERROR_NAND_OPERATION_FAILED;
424 if (lpc3180_info->selected_controller == LPC3180_NO_CONTROLLER)
426 LOG_ERROR("BUG: no LPC3180 NAND flash controller selected");
427 return ERROR_NAND_OPERATION_FAILED;
429 else if (lpc3180_info->selected_controller == LPC3180_MLC_CONTROLLER)
431 /* MLC_DATA = data */
432 target_write_u32(target, 0x200b0000, data);
434 else if (lpc3180_info->selected_controller == LPC3180_SLC_CONTROLLER)
436 /* SLC_DATA = data */
437 target_write_u32(target, 0x20020000, data);
440 return ERROR_OK;
443 static int lpc3180_read_data(struct nand_device_s *device, void *data)
445 lpc3180_nand_controller_t *lpc3180_info = device->controller_priv;
446 target_t *target = lpc3180_info->target;
448 if (target->state != TARGET_HALTED)
450 LOG_ERROR("target must be halted to use LPC3180 NAND flash controller");
451 return ERROR_NAND_OPERATION_FAILED;
454 if (lpc3180_info->selected_controller == LPC3180_NO_CONTROLLER)
456 LOG_ERROR("BUG: no LPC3180 NAND flash controller selected");
457 return ERROR_NAND_OPERATION_FAILED;
459 else if (lpc3180_info->selected_controller == LPC3180_MLC_CONTROLLER)
461 /* data = MLC_DATA, use sized access */
462 if (device->bus_width == 8)
464 uint8_t *data8 = data;
465 target_read_u8(target, 0x200b0000, data8);
467 else if (device->bus_width == 16)
469 uint16_t *data16 = data;
470 target_read_u16(target, 0x200b0000, data16);
472 else
474 LOG_ERROR("BUG: bus_width neither 8 nor 16 bit");
475 return ERROR_NAND_OPERATION_FAILED;
478 else if (lpc3180_info->selected_controller == LPC3180_SLC_CONTROLLER)
480 uint32_t data32;
482 /* data = SLC_DATA, must use 32-bit access */
483 target_read_u32(target, 0x20020000, &data32);
485 if (device->bus_width == 8)
487 uint8_t *data8 = data;
488 *data8 = data32 & 0xff;
490 else if (device->bus_width == 16)
492 uint16_t *data16 = data;
493 *data16 = data32 & 0xffff;
495 else
497 LOG_ERROR("BUG: bus_width neither 8 nor 16 bit");
498 return ERROR_NAND_OPERATION_FAILED;
502 return ERROR_OK;
505 static int lpc3180_write_page(struct nand_device_s *device, uint32_t page, uint8_t *data, uint32_t data_size, uint8_t *oob, uint32_t oob_size)
507 lpc3180_nand_controller_t *lpc3180_info = device->controller_priv;
508 target_t *target = lpc3180_info->target;
509 int retval;
510 uint8_t status;
512 if (target->state != TARGET_HALTED)
514 LOG_ERROR("target must be halted to use LPC3180 NAND flash controller");
515 return ERROR_NAND_OPERATION_FAILED;
518 if (lpc3180_info->selected_controller == LPC3180_NO_CONTROLLER)
520 LOG_ERROR("BUG: no LPC3180 NAND flash controller selected");
521 return ERROR_NAND_OPERATION_FAILED;
523 else if (lpc3180_info->selected_controller == LPC3180_MLC_CONTROLLER)
525 uint8_t *page_buffer;
526 uint8_t *oob_buffer;
527 int quarter, num_quarters;
529 if (!data && oob)
531 LOG_ERROR("LPC3180 MLC controller can't write OOB data only");
532 return ERROR_NAND_OPERATION_NOT_SUPPORTED;
535 if (oob && (oob_size > 6))
537 LOG_ERROR("LPC3180 MLC controller can't write more than 6 bytes of OOB data");
538 return ERROR_NAND_OPERATION_NOT_SUPPORTED;
541 if (data_size > (uint32_t)device->page_size)
543 LOG_ERROR("data size exceeds page size");
544 return ERROR_NAND_OPERATION_NOT_SUPPORTED;
547 /* MLC_CMD = sequential input */
548 target_write_u32(target, 0x200b8000, NAND_CMD_SEQIN);
550 page_buffer = malloc(512);
551 oob_buffer = malloc(6);
553 if (device->page_size == 512)
555 /* MLC_ADDR = 0x0 (one column cycle) */
556 target_write_u32(target, 0x200b8004, 0x0);
558 /* MLC_ADDR = row */
559 target_write_u32(target, 0x200b8004, page & 0xff);
560 target_write_u32(target, 0x200b8004, (page >> 8) & 0xff);
562 if (device->address_cycles == 4)
563 target_write_u32(target, 0x200b8004, (page >> 16) & 0xff);
565 else
567 /* MLC_ADDR = 0x0 (two column cycles) */
568 target_write_u32(target, 0x200b8004, 0x0);
569 target_write_u32(target, 0x200b8004, 0x0);
571 /* MLC_ADDR = row */
572 target_write_u32(target, 0x200b8004, page & 0xff);
573 target_write_u32(target, 0x200b8004, (page >> 8) & 0xff);
576 /* when using the MLC controller, we have to treat a large page device
577 * as being made out of four quarters, each the size of a small page device
579 num_quarters = (device->page_size == 2048) ? 4 : 1;
581 for (quarter = 0; quarter < num_quarters; quarter++)
583 int thisrun_data_size = (data_size > 512) ? 512 : data_size;
584 int thisrun_oob_size = (oob_size > 6) ? 6 : oob_size;
586 memset(page_buffer, 0xff, 512);
587 if (data)
589 memcpy(page_buffer, data, thisrun_data_size);
590 data_size -= thisrun_data_size;
591 data += thisrun_data_size;
594 memset(oob_buffer, 0xff, (device->page_size == 512) ? 6 : 24);
595 if (oob)
597 memcpy(page_buffer, oob, thisrun_oob_size);
598 oob_size -= thisrun_oob_size;
599 oob += thisrun_oob_size;
602 /* write MLC_ECC_ENC_REG to start encode cycle */
603 target_write_u32(target, 0x200b8008, 0x0);
605 target_write_memory(target, 0x200a8000, 4, 128, page_buffer + (quarter * 512));
606 target_write_memory(target, 0x200a8000, 1, 6, oob_buffer + (quarter * 6));
608 /* write MLC_ECC_AUTO_ENC_REG to start auto encode */
609 target_write_u32(target, 0x200b8010, 0x0);
611 if (!lpc3180_controller_ready(device, 1000))
613 LOG_ERROR("timeout while waiting for completion of auto encode cycle");
614 return ERROR_NAND_OPERATION_FAILED;
618 /* MLC_CMD = auto program command */
619 target_write_u32(target, 0x200b8000, NAND_CMD_PAGEPROG);
621 if ((retval = nand_read_status(device, &status)) != ERROR_OK)
623 LOG_ERROR("couldn't read status");
624 return ERROR_NAND_OPERATION_FAILED;
627 if (status & NAND_STATUS_FAIL)
629 LOG_ERROR("write operation didn't pass, status: 0x%2.2x", status);
630 return ERROR_NAND_OPERATION_FAILED;
633 free(page_buffer);
634 free(oob_buffer);
636 else if (lpc3180_info->selected_controller == LPC3180_SLC_CONTROLLER)
638 return nand_write_page_raw(device, page, data, data_size, oob, oob_size);
641 return ERROR_OK;
644 static int lpc3180_read_page(struct nand_device_s *device, uint32_t page, uint8_t *data, uint32_t data_size, uint8_t *oob, uint32_t oob_size)
646 lpc3180_nand_controller_t *lpc3180_info = device->controller_priv;
647 target_t *target = lpc3180_info->target;
649 if (target->state != TARGET_HALTED)
651 LOG_ERROR("target must be halted to use LPC3180 NAND flash controller");
652 return ERROR_NAND_OPERATION_FAILED;
655 if (lpc3180_info->selected_controller == LPC3180_NO_CONTROLLER)
657 LOG_ERROR("BUG: no LPC3180 NAND flash controller selected");
658 return ERROR_NAND_OPERATION_FAILED;
660 else if (lpc3180_info->selected_controller == LPC3180_MLC_CONTROLLER)
662 uint8_t *page_buffer;
663 uint8_t *oob_buffer;
664 uint32_t page_bytes_done = 0;
665 uint32_t oob_bytes_done = 0;
666 uint32_t mlc_isr;
668 #if 0
669 if (oob && (oob_size > 6))
671 LOG_ERROR("LPC3180 MLC controller can't read more than 6 bytes of OOB data");
672 return ERROR_NAND_OPERATION_NOT_SUPPORTED;
674 #endif
676 if (data_size > (uint32_t)device->page_size)
678 LOG_ERROR("data size exceeds page size");
679 return ERROR_NAND_OPERATION_NOT_SUPPORTED;
682 if (device->page_size == 2048)
684 page_buffer = malloc(2048);
685 oob_buffer = malloc(64);
687 else
689 page_buffer = malloc(512);
690 oob_buffer = malloc(16);
693 if (!data && oob)
695 /* MLC_CMD = Read OOB
696 * we can use the READOOB command on both small and large page devices,
697 * as the controller translates the 0x50 command to a 0x0 with appropriate
698 * positioning of the serial buffer read pointer
700 target_write_u32(target, 0x200b8000, NAND_CMD_READOOB);
702 else
704 /* MLC_CMD = Read0 */
705 target_write_u32(target, 0x200b8000, NAND_CMD_READ0);
708 if (device->page_size == 512)
710 /* small page device */
711 /* MLC_ADDR = 0x0 (one column cycle) */
712 target_write_u32(target, 0x200b8004, 0x0);
714 /* MLC_ADDR = row */
715 target_write_u32(target, 0x200b8004, page & 0xff);
716 target_write_u32(target, 0x200b8004, (page >> 8) & 0xff);
718 if (device->address_cycles == 4)
719 target_write_u32(target, 0x200b8004, (page >> 16) & 0xff);
721 else
723 /* large page device */
724 /* MLC_ADDR = 0x0 (two column cycles) */
725 target_write_u32(target, 0x200b8004, 0x0);
726 target_write_u32(target, 0x200b8004, 0x0);
728 /* MLC_ADDR = row */
729 target_write_u32(target, 0x200b8004, page & 0xff);
730 target_write_u32(target, 0x200b8004, (page >> 8) & 0xff);
732 /* MLC_CMD = Read Start */
733 target_write_u32(target, 0x200b8000, NAND_CMD_READSTART);
736 while (page_bytes_done < (uint32_t)device->page_size)
738 /* MLC_ECC_AUTO_DEC_REG = dummy */
739 target_write_u32(target, 0x200b8014, 0xaa55aa55);
741 if (!lpc3180_controller_ready(device, 1000))
743 LOG_ERROR("timeout while waiting for completion of auto decode cycle");
744 return ERROR_NAND_OPERATION_FAILED;
747 target_read_u32(target, 0x200b8048, &mlc_isr);
749 if (mlc_isr & 0x8)
751 if (mlc_isr & 0x40)
753 LOG_ERROR("uncorrectable error detected: 0x%2.2x", (unsigned)mlc_isr);
754 return ERROR_NAND_OPERATION_FAILED;
757 LOG_WARNING("%i symbol error detected and corrected", ((int)(((mlc_isr & 0x30) >> 4) + 1)));
760 if (data)
762 target_read_memory(target, 0x200a8000, 4, 128, page_buffer + page_bytes_done);
765 if (oob)
767 target_read_memory(target, 0x200a8000, 4, 4, oob_buffer + oob_bytes_done);
770 page_bytes_done += 512;
771 oob_bytes_done += 16;
774 if (data)
775 memcpy(data, page_buffer, data_size);
777 if (oob)
778 memcpy(oob, oob_buffer, oob_size);
780 free(page_buffer);
781 free(oob_buffer);
783 else if (lpc3180_info->selected_controller == LPC3180_SLC_CONTROLLER)
785 return nand_read_page_raw(device, page, data, data_size, oob, oob_size);
788 return ERROR_OK;
791 static int lpc3180_controller_ready(struct nand_device_s *device, int timeout)
793 lpc3180_nand_controller_t *lpc3180_info = device->controller_priv;
794 target_t *target = lpc3180_info->target;
795 uint8_t status = 0x0;
797 if (target->state != TARGET_HALTED)
799 LOG_ERROR("target must be halted to use LPC3180 NAND flash controller");
800 return ERROR_NAND_OPERATION_FAILED;
805 if (lpc3180_info->selected_controller == LPC3180_MLC_CONTROLLER)
807 /* Read MLC_ISR, wait for controller to become ready */
808 target_read_u8(target, 0x200b8048, &status);
810 if (status & 2)
811 return 1;
813 else if (lpc3180_info->selected_controller == LPC3180_SLC_CONTROLLER)
815 /* we pretend that the SLC controller is always ready */
816 return 1;
819 alive_sleep(1);
820 } while (timeout-- > 0);
822 return 0;
825 static int lpc3180_nand_ready(struct nand_device_s *device, int timeout)
827 lpc3180_nand_controller_t *lpc3180_info = device->controller_priv;
828 target_t *target = lpc3180_info->target;
830 if (target->state != TARGET_HALTED)
832 LOG_ERROR("target must be halted to use LPC3180 NAND flash controller");
833 return ERROR_NAND_OPERATION_FAILED;
838 if (lpc3180_info->selected_controller == LPC3180_MLC_CONTROLLER)
840 uint8_t status = 0x0;
842 /* Read MLC_ISR, wait for NAND flash device to become ready */
843 target_read_u8(target, 0x200b8048, &status);
845 if (status & 1)
846 return 1;
848 else if (lpc3180_info->selected_controller == LPC3180_SLC_CONTROLLER)
850 uint32_t status = 0x0;
852 /* Read SLC_STAT and check READY bit */
853 target_read_u32(target, 0x20020018, &status);
855 if (status & 1)
856 return 1;
859 alive_sleep(1);
860 } while (timeout-- > 0);
862 return 0;
865 static int handle_lpc3180_select_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
867 nand_device_t *device = NULL;
868 lpc3180_nand_controller_t *lpc3180_info = NULL;
869 char *selected[] =
871 "no", "mlc", "slc"
874 if ((argc < 1) || (argc > 2))
876 return ERROR_COMMAND_SYNTAX_ERROR;
879 device = get_nand_device_by_num(strtoul(args[0], NULL, 0));
880 if (!device)
882 command_print(cmd_ctx, "nand device '#%s' is out of bounds", args[0]);
883 return ERROR_OK;
886 lpc3180_info = device->controller_priv;
888 if (argc == 2)
890 if (strcmp(args[1], "mlc") == 0)
892 lpc3180_info->selected_controller = LPC3180_MLC_CONTROLLER;
894 else if (strcmp(args[1], "slc") == 0)
896 lpc3180_info->selected_controller = LPC3180_SLC_CONTROLLER;
898 else
900 return ERROR_COMMAND_SYNTAX_ERROR;
904 command_print(cmd_ctx, "%s controller selected", selected[lpc3180_info->selected_controller]);
906 return ERROR_OK;