From 83fc7fcf9b3ad4df227d4febae8e0b5f2778019c Mon Sep 17 00:00:00 2001 From: oharboe Date: Fri, 27 Jun 2008 06:13:34 +0000 Subject: David Anders: fixes an issue with large block nand flash address where the beginning of the OOB area is always selected instead of the beginning of a page when needed git-svn-id: svn://svn.berlios.de/openocd/trunk@729 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- src/flash/nand.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/flash/nand.c b/src/flash/nand.c index 5cfc2766..3e63335f 100644 --- a/src/flash/nand.c +++ b/src/flash/nand.c @@ -806,7 +806,10 @@ int nand_read_page_raw(struct nand_device_s *device, u32 page, u8 *data, u32 dat * or 2048 for the beginning of OOB area) */ device->controller->address(device, 0x0); - device->controller->address(device, 0x8); + if (data) + device->controller->address(device, 0x0); + else + device->controller->address(device, 0x8); /* row */ device->controller->address(device, page & 0xff); -- cgit v1.2.3