- added svn props for newly added files
authorntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60>
Thu, 24 Apr 2008 11:09:28 +0000 (11:09 +0000)
committerntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60>
Thu, 24 Apr 2008 11:09:28 +0000 (11:09 +0000)
git-svn-id: svn://svn.berlios.de/openocd/trunk@615 b42882b7-edfa-0310-969c-e2dbd0fdcd60

18 files changed:
src/flash/ocl.c
src/flash/ocl.h
src/flash/ocl/at91sam7x/at91sam7x_ocl_flash.script
src/flash/ocl/at91sam7x/at91sam7x_ram.ld
src/flash/ocl/at91sam7x/crt.s
src/flash/ocl/at91sam7x/dcc.c
src/flash/ocl/at91sam7x/dcc.h
src/flash/ocl/at91sam7x/main.c
src/flash/ocl/at91sam7x/makefile
src/flash/ocl/at91sam7x/ocl.h
src/flash/ocl/at91sam7x/platform.h
src/flash/ocl/at91sam7x/samflash.c
src/flash/ocl/at91sam7x/samflash.h
src/flash/ocl/at91sam7x/samregs.h
testing/examples/SAM7S256Test/results/607.html
testing/results/template.html
testing/smoketests.html
testing/testcases.html

index befa4e102ca79186a0bcfecd814eb36451d01a6b..4f3b506cbbb361ff48dd939fa287e3ffaf0f2369 100644 (file)
-/***************************************************************************\r
- *   Copyright (C) 2007 by Pavel Chromy                                    *\r
- *   chromy@asix.cz                                                        *\r
- *                                                                         *\r
- *   This program is free software; you can redistribute it and/or modify  *\r
- *   it under the terms of the GNU General Public License as published by  *\r
- *   the Free Software Foundation; either version 2 of the License, or     *\r
- *   (at your option) any later version.                                   *\r
- *                                                                         *\r
- *   This program is distributed in the hope that it will be useful,       *\r
- *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *\r
- *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *\r
- *   GNU General Public License for more details.                          *\r
- *                                                                         *\r
- *   You should have received a copy of the GNU General Public License     *\r
- *   along with this program; if not, write to the                         *\r
- *   Free Software Foundation, Inc.,                                       *\r
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *\r
- ***************************************************************************/\r
-#ifdef HAVE_CONFIG_H\r
-#include "config.h"\r
-#endif\r
-\r
-#include "replacements.h"\r
-\r
-#include "ocl.h"\r
-\r
-#include "flash.h"\r
-#include "target.h"\r
-#include "log.h"\r
-#include "binarybuffer.h"\r
-#include "types.h"\r
-#include "embeddedice.h"\r
-#include "arm7_9_common.h"\r
-\r
-#include <stdlib.h>\r
-#include <string.h>\r
-#include <unistd.h>\r
-\r
-int ocl_register_commands(struct command_context_s *cmd_ctx);\r
-int ocl_flash_bank_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc, struct flash_bank_s *bank);\r
-int ocl_erase(struct flash_bank_s *bank, int first, int last);\r
-int ocl_protect(struct flash_bank_s *bank, int set, int first, int last);\r
-int ocl_write(struct flash_bank_s *bank, u8 *buffer, u32 offset, u32 count);\r
-int ocl_probe(struct flash_bank_s *bank);\r
-int ocl_erase_check(struct flash_bank_s *bank);\r
-int ocl_protect_check(struct flash_bank_s *bank);\r
-int ocl_info(struct flash_bank_s *bank, char *buf, int buf_size);\r
-int ocl_auto_probe(struct flash_bank_s *bank);\r
-\r
-flash_driver_t ocl_flash =\r
-{\r
-       .name = "ocl",\r
-       .register_commands = ocl_register_commands,\r
-       .flash_bank_command = ocl_flash_bank_command,\r
-       .erase = ocl_erase,\r
-       .protect = ocl_protect,\r
-       .write = ocl_write,\r
-       .probe = ocl_probe,\r
-       .erase_check = ocl_erase_check,\r
-       .protect_check = ocl_protect_check,\r
-       .info = ocl_info,\r
-       .auto_probe = ocl_auto_probe\r
-};\r
-\r
-\r
-typedef struct ocl_priv_s\r
-{\r
-       arm_jtag_t *jtag_info;\r
-       int buflen;\r
-       int bufalign;\r
-} ocl_priv_t;\r
-\r
-\r
-int ocl_register_commands(struct command_context_s *cmd_ctx)\r
-{\r
-       return ERROR_OK;\r
-}\r
-\r
-\r
-int ocl_erase_check(struct flash_bank_s *bank)\r
-{\r
-       return ERROR_OK;\r
-}\r
-\r
-\r
-int ocl_protect_check(struct flash_bank_s *bank)\r
-{\r
-       return ERROR_OK;\r
-}\r
-\r
-\r
-/* flash_bank ocl 0 0 0 0 <target#> */\r
-int ocl_flash_bank_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc, struct flash_bank_s *bank)\r
-{\r
-       int retval;\r
-       armv4_5_common_t *armv4_5;\r
-       arm7_9_common_t *arm7_9;\r
-       ocl_priv_t *ocl;\r
-\r
-       if (argc < 6)\r
-       {\r
-               LOG_WARNING("incomplete flash_bank ocl configuration");\r
-               return ERROR_FLASH_BANK_INVALID;\r
-       }\r
-\r
-       if ((retval = arm7_9_get_arch_pointers(bank->target, &armv4_5, &arm7_9)) != ERROR_OK)\r
-               return retval;\r
-\r
-       ocl = bank->driver_priv = malloc(sizeof(ocl_priv_t));\r
-       ocl->jtag_info = &arm7_9->jtag_info;\r
-       ocl->buflen = 0;\r
-       ocl->bufalign = 1;\r
-\r
-       return ERROR_OK;\r
-}\r
-\r
-\r
-int ocl_erase(struct flash_bank_s *bank, int first, int last)\r
-{\r
-       ocl_priv_t *ocl = bank->driver_priv;\r
-       int retval;\r
-       u32 dcc_buffer[3];\r
-\r
-       /* check preconditions */\r
-       if (bank->num_sectors == 0)\r
-               return ERROR_FLASH_BANK_NOT_PROBED;\r
-               \r
-       if (bank->target->state != TARGET_RUNNING)\r
-       {\r
-               LOG_ERROR("target has to be running to communicate with the loader");\r
-               return ERROR_TARGET_NOT_RUNNING;\r
-       }\r
-               \r
-       if ((first == 0) && (last == bank->num_sectors - 1))\r
-       {\r
-               dcc_buffer[0] = OCL_ERASE_ALL;\r
-               if ((retval = embeddedice_send(ocl->jtag_info, dcc_buffer, 1) != ERROR_OK))\r
-                       return retval;\r
-       }\r
-       else\r
-       {\r
-               dcc_buffer[0] = OCL_ERASE_BLOCK;\r
-               dcc_buffer[1] = first;\r
-               dcc_buffer[2] = last;\r
-               if ((retval = embeddedice_send(ocl->jtag_info, dcc_buffer, 3) != ERROR_OK))\r
-                       return retval;\r
-       }\r
-\r
-       /* wait for response, fixed timeout of 1 s */\r
-       if ((retval = embeddedice_handshake(ocl->jtag_info, EICE_COMM_CTRL_WBIT, 1000) != ERROR_OK))\r
-       {\r
-               if (retval == ERROR_TARGET_TIMEOUT)\r
-                       LOG_ERROR("loader not responding");\r
-               return retval;\r
-       }\r
-\r
-       /* receive response */\r
-       if ((retval = embeddedice_receive(ocl->jtag_info, dcc_buffer+1, 1) != ERROR_OK))\r
-               return retval;\r
-\r
-       if (dcc_buffer[1] != OCL_CMD_DONE)\r
-       {\r
-               if (dcc_buffer[0] == OCL_ERASE_ALL)\r
-                       LOG_ERROR("loader response to OCL_ERASE_ALL 0x%08lX", dcc_buffer[1]);\r
-               else\r
-                       LOG_ERROR("loader response to OCL_ERASE_BLOCK 0x%08lX", dcc_buffer[1]);\r
-               return ERROR_FLASH_OPERATION_FAILED;\r
-       }\r
-\r
-       return ERROR_OK;\r
-}\r
-\r
-\r
-int ocl_protect(struct flash_bank_s *bank, int set, int first, int last)\r
-{\r
-       return ERROR_OK;\r
-}\r
-\r
-\r
-int ocl_write(struct flash_bank_s *bank, u8 *buffer, u32 offset, u32 count)\r
-{\r
-       ocl_priv_t *ocl = bank->driver_priv;\r
-       int retval;\r
-       u32 *dcc_buffer;\r
-       u32 *dcc_bufptr;\r
-       int byteofs;\r
-       int runlen;\r
-       u32 chksum;\r
-       \r
-       int i;\r
-\r
-       /* check preconditions */\r
-       if (ocl->buflen == 0 || ocl->bufalign==0)\r
-               return ERROR_FLASH_BANK_NOT_PROBED;\r
-\r
-       if (bank->target->state != TARGET_RUNNING)\r
-       {\r
-               LOG_ERROR("target has to be running to communicate with the loader");\r
-               return ERROR_TARGET_NOT_RUNNING;\r
-       }\r
-\r
-       /* allocate buffer for max. ocl buffer + overhead */\r
-       dcc_buffer = malloc(sizeof(u32)*(ocl->buflen/4+3));\r
-\r
-       while (count)\r
-       {\r
-               if (count + (offset % ocl->bufalign) > ocl->buflen)\r
-                       runlen = ocl->buflen - (offset % ocl->bufalign);\r
-               else\r
-                       runlen = count;\r
-\r
-               dcc_buffer[0] = OCL_FLASH_BLOCK | runlen;\r
-               dcc_buffer[1] = offset;\r
-               dcc_bufptr = &dcc_buffer[2];\r
-\r
-               *dcc_bufptr = 0xffffffff;\r
-               byteofs = (offset % ocl->bufalign) % 4;\r
-               chksum = OCL_CHKS_INIT;\r
-\r
-               /* copy data to DCC buffer in proper byte order and properly aligned */\r
-               for (i=0; i<runlen; i++)\r
-               {\r
-                       switch (byteofs++)\r
-                       {\r
-                               case 0:\r
-                                       *dcc_bufptr &= *(buffer++) | 0xffffff00;\r
-                                       break;\r
-                               case 1:\r
-                                       *dcc_bufptr &= ((*(buffer++))<<8) | 0xffff00ff;\r
-                                       break;\r
-                               case 2:\r
-                                       *dcc_bufptr &= ((*(buffer++))<<16) | 0xff00ffff;\r
-                                       break;\r
-                               case 3:\r
-                                       *dcc_bufptr &= ((*(buffer++))<<24) | 0x00ffffff;\r
-                                       chksum ^= *(dcc_bufptr++);\r
-                                       *dcc_bufptr = 0xffffffff;\r
-                                       byteofs = 0;\r
-                                       break;\r
-                       }\r
-               }\r
-\r
-               /* add the remaining word to checksum */\r
-               if (byteofs)\r
-                       chksum ^= *(dcc_bufptr++);\r
-\r
-               *(dcc_bufptr++) = chksum;\r
-               \r
-               /* send the data */\r
-               if ((retval = embeddedice_send(ocl->jtag_info, dcc_buffer, dcc_bufptr-dcc_buffer)) != ERROR_OK)\r
-               {\r
-                       free(dcc_buffer);\r
-                 return retval;\r
-               }\r
-\r
-               /* wait for response, fixed timeout of 1 s */\r
-               if ((retval = embeddedice_handshake(ocl->jtag_info, EICE_COMM_CTRL_WBIT, 1000) != ERROR_OK))\r
-               {\r
-                       if (retval == ERROR_TARGET_TIMEOUT)\r
-                               LOG_ERROR("loader not responding");\r
-                       free(dcc_buffer);\r
-                       return retval;\r
-               }\r
-\r
-               /* receive response */\r
-               if ((retval = embeddedice_receive(ocl->jtag_info, dcc_buffer, 1) != ERROR_OK))\r
-               {\r
-                       free(dcc_buffer);\r
-                       return retval;\r
-               }\r
-\r
-               if (dcc_buffer[0] != OCL_CMD_DONE)\r
-               {\r
-                       LOG_ERROR("loader response to OCL_FLASH_BLOCK 0x%08lX", dcc_buffer[0]);\r
-                       free(dcc_buffer);\r
-                       return ERROR_FLASH_OPERATION_FAILED;\r
-               }\r
-\r
-               count -= runlen;\r
-               offset += runlen;\r
-       }\r
-\r
-       free(dcc_buffer);\r
-       return ERROR_OK;\r
-}\r
-\r
-\r
-int ocl_probe(struct flash_bank_s *bank)\r
-{\r
-       ocl_priv_t *ocl = bank->driver_priv;\r
-       int retval;\r
-       u32 dcc_buffer[1];\r
-       int sectsize;\r
-       int i;\r
-\r
-       /* purge pending data in DCC */\r
-       embeddedice_receive(ocl->jtag_info, dcc_buffer, 1);\r
-\r
-       dcc_buffer[0] = OCL_PROBE;\r
-       if ((retval = embeddedice_send(ocl->jtag_info, dcc_buffer, 1) != ERROR_OK))\r
-               return retval;\r
-\r
-       /* wait for response, fixed timeout of 1 s */\r
-       if ((retval = embeddedice_handshake(ocl->jtag_info, EICE_COMM_CTRL_WBIT, 1000) != ERROR_OK))\r
-       {\r
-               if (retval == ERROR_TARGET_TIMEOUT)\r
-                       LOG_ERROR("loader not responding");\r
-               return retval;\r
-       }\r
-\r
-       /* receive response */\r
-       if ((retval = embeddedice_receive(ocl->jtag_info, dcc_buffer, 1) != ERROR_OK))\r
-               return retval;\r
-               \r
-       if (dcc_buffer[0] != OCL_CMD_DONE)\r
-       {\r
-               LOG_ERROR("loader response to OCL_PROBE 0x%08lX", dcc_buffer[0]);\r
-               return ERROR_FLASH_OPERATION_FAILED;\r
-       }\r
-\r
-       /* receive and fill in parameters, detection of loader is important, receive it one by one */\r
-       if ((retval = embeddedice_handshake(ocl->jtag_info, EICE_COMM_CTRL_WBIT, 0) != ERROR_OK)\r
-               || (retval = embeddedice_receive(ocl->jtag_info, dcc_buffer, 1) != ERROR_OK))\r
-               return retval;\r
-       bank->base = dcc_buffer[0];\r
-\r
-       if ((retval = embeddedice_handshake(ocl->jtag_info, EICE_COMM_CTRL_WBIT, 0) != ERROR_OK)\r
-               || (retval = embeddedice_receive(ocl->jtag_info, dcc_buffer, 1) != ERROR_OK))\r
-               return retval;\r
-       bank->size = dcc_buffer[0];\r
-\r
-       if ((retval = embeddedice_handshake(ocl->jtag_info, EICE_COMM_CTRL_WBIT, 0) != ERROR_OK)\r
-               || (retval = embeddedice_receive(ocl->jtag_info, dcc_buffer, 1) != ERROR_OK))\r
-               return retval;\r
-       bank->num_sectors = dcc_buffer[0];\r
-\r
-       if ((retval = embeddedice_handshake(ocl->jtag_info, EICE_COMM_CTRL_WBIT, 0) != ERROR_OK)\r
-               || (retval = embeddedice_receive(ocl->jtag_info, dcc_buffer, 1) != ERROR_OK))\r
-               return retval;\r
-       ocl->buflen = dcc_buffer[0] & 0xffff;\r
-       ocl->bufalign = dcc_buffer[0] >> 16;\r
-\r
-       bank->sectors = realloc(bank->sectors, sizeof(flash_sector_t)*bank->num_sectors);\r
-       if (bank->num_sectors == 0)\r
-       {\r
-               LOG_ERROR("number of sectors shall be non zero value");\r
-               return ERROR_FLASH_BANK_INVALID;\r
-       }\r
-       if (bank->size % bank->num_sectors) {\r
-               LOG_ERROR("bank size not divisible by number of sectors");\r
-               return ERROR_FLASH_BANK_INVALID;\r
-       }\r
-       sectsize = bank->size / bank->num_sectors;\r
-       for (i=0; i<bank->num_sectors; i++)\r
-       {\r
-               bank->sectors[i].offset = i * sectsize;\r
-               bank->sectors[i].size = sectsize;\r
-               bank->sectors[i].is_erased = -1;\r
-               bank->sectors[i].is_protected = -1;\r
-       }\r
-\r
-       if (ocl->bufalign == 0)\r
-               ocl->bufalign = 1;\r
-\r
-       if (ocl->buflen == 0)\r
-       {\r
-               LOG_ERROR("buflen shall be non zero value");\r
-               return ERROR_FLASH_BANK_INVALID;\r
-       }\r
-\r
-       if ((ocl->bufalign > ocl->buflen) || (ocl->buflen % ocl->bufalign))\r
-       {\r
-               LOG_ERROR("buflen is not multiple of bufalign");\r
-               return ERROR_FLASH_BANK_INVALID;\r
-       }\r
-\r
-       if (ocl->buflen % 4)\r
-       {\r
-               LOG_ERROR("buflen shall be divisible by 4");\r
-               return ERROR_FLASH_BANK_INVALID;\r
-       }\r
-\r
-       return ERROR_OK;\r
-}\r
-\r
-\r
-int ocl_info(struct flash_bank_s *bank, char *buf, int buf_size)\r
-{\r
-       return ERROR_OK;\r
-}\r
-\r
-\r
-int ocl_auto_probe(struct flash_bank_s *bank)\r
-{\r
-       ocl_priv_t *ocl = bank->driver_priv;\r
-\r
-       if (ocl->buflen == 0 || ocl->bufalign==0)\r
-               return ERROR_FLASH_BANK_NOT_PROBED;\r
-\r
-       return ERROR_OK;\r
-}\r
+/***************************************************************************
+ *   Copyright (C) 2007 by Pavel Chromy                                    *
+ *   chromy@asix.cz                                                        *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ ***************************************************************************/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include "replacements.h"
+
+#include "ocl.h"
+
+#include "flash.h"
+#include "target.h"
+#include "log.h"
+#include "binarybuffer.h"
+#include "types.h"
+#include "embeddedice.h"
+#include "arm7_9_common.h"
+
+#include <stdlib.h>
+#include <string.h>
+#include <unistd.h>
+
+int ocl_register_commands(struct command_context_s *cmd_ctx);
+int ocl_flash_bank_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc, struct flash_bank_s *bank);
+int ocl_erase(struct flash_bank_s *bank, int first, int last);
+int ocl_protect(struct flash_bank_s *bank, int set, int first, int last);
+int ocl_write(struct flash_bank_s *bank, u8 *buffer, u32 offset, u32 count);
+int ocl_probe(struct flash_bank_s *bank);
+int ocl_erase_check(struct flash_bank_s *bank);
+int ocl_protect_check(struct flash_bank_s *bank);
+int ocl_info(struct flash_bank_s *bank, char *buf, int buf_size);
+int ocl_auto_probe(struct flash_bank_s *bank);
+
+flash_driver_t ocl_flash =
+{
+       .name = "ocl",
+       .register_commands = ocl_register_commands,
+       .flash_bank_command = ocl_flash_bank_command,
+       .erase = ocl_erase,
+       .protect = ocl_protect,
+       .write = ocl_write,
+       .probe = ocl_probe,
+       .erase_check = ocl_erase_check,
+       .protect_check = ocl_protect_check,
+       .info = ocl_info,
+       .auto_probe = ocl_auto_probe
+};
+
+
+typedef struct ocl_priv_s
+{
+       arm_jtag_t *jtag_info;
+       int buflen;
+       int bufalign;
+} ocl_priv_t;
+
+
+int ocl_register_commands(struct command_context_s *cmd_ctx)
+{
+       return ERROR_OK;
+}
+
+
+int ocl_erase_check(struct flash_bank_s *bank)
+{
+       return ERROR_OK;
+}
+
+
+int ocl_protect_check(struct flash_bank_s *bank)
+{
+       return ERROR_OK;
+}
+
+
+/* flash_bank ocl 0 0 0 0 <target#> */
+int ocl_flash_bank_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc, struct flash_bank_s *bank)
+{
+       int retval;
+       armv4_5_common_t *armv4_5;
+       arm7_9_common_t *arm7_9;
+       ocl_priv_t *ocl;
+
+       if (argc < 6)
+       {
+               LOG_WARNING("incomplete flash_bank ocl configuration");
+               return ERROR_FLASH_BANK_INVALID;
+       }
+
+       if ((retval = arm7_9_get_arch_pointers(bank->target, &armv4_5, &arm7_9)) != ERROR_OK)
+               return retval;
+
+       ocl = bank->driver_priv = malloc(sizeof(ocl_priv_t));
+       ocl->jtag_info = &arm7_9->jtag_info;
+       ocl->buflen = 0;
+       ocl->bufalign = 1;
+
+       return ERROR_OK;
+}
+
+
+int ocl_erase(struct flash_bank_s *bank, int first, int last)
+{
+       ocl_priv_t *ocl = bank->driver_priv;
+       int retval;
+       u32 dcc_buffer[3];
+
+       /* check preconditions */
+       if (bank->num_sectors == 0)
+               return ERROR_FLASH_BANK_NOT_PROBED;
+               
+       if (bank->target->state != TARGET_RUNNING)
+       {
+               LOG_ERROR("target has to be running to communicate with the loader");
+               return ERROR_TARGET_NOT_RUNNING;
+       }
+               
+       if ((first == 0) && (last == bank->num_sectors - 1))
+       {
+               dcc_buffer[0] = OCL_ERASE_ALL;
+               if ((retval = embeddedice_send(ocl->jtag_info, dcc_buffer, 1) != ERROR_OK))
+                       return retval;
+       }
+       else
+       {
+               dcc_buffer[0] = OCL_ERASE_BLOCK;
+               dcc_buffer[1] = first;
+               dcc_buffer[2] = last;
+               if ((retval = embeddedice_send(ocl->jtag_info, dcc_buffer, 3) != ERROR_OK))
+                       return retval;
+       }
+
+       /* wait for response, fixed timeout of 1 s */
+       if ((retval = embeddedice_handshake(ocl->jtag_info, EICE_COMM_CTRL_WBIT, 1000) != ERROR_OK))
+       {
+               if (retval == ERROR_TARGET_TIMEOUT)
+                       LOG_ERROR("loader not responding");
+               return retval;
+       }
+
+       /* receive response */
+       if ((retval = embeddedice_receive(ocl->jtag_info, dcc_buffer+1, 1) != ERROR_OK))
+               return retval;
+
+       if (dcc_buffer[1] != OCL_CMD_DONE)
+       {
+               if (dcc_buffer[0] == OCL_ERASE_ALL)
+                       LOG_ERROR("loader response to OCL_ERASE_ALL 0x%08lX", dcc_buffer[1]);
+               else
+                       LOG_ERROR("loader response to OCL_ERASE_BLOCK 0x%08lX", dcc_buffer[1]);
+               return ERROR_FLASH_OPERATION_FAILED;
+       }
+
+       return ERROR_OK;
+}
+
+
+int ocl_protect(struct flash_bank_s *bank, int set, int first, int last)
+{
+       return ERROR_OK;
+}
+
+
+int ocl_write(struct flash_bank_s *bank, u8 *buffer, u32 offset, u32 count)
+{
+       ocl_priv_t *ocl = bank->driver_priv;
+       int retval;
+       u32 *dcc_buffer;
+       u32 *dcc_bufptr;
+       int byteofs;
+       int runlen;
+       u32 chksum;
+       
+       int i;
+
+       /* check preconditions */
+       if (ocl->buflen == 0 || ocl->bufalign==0)
+               return ERROR_FLASH_BANK_NOT_PROBED;
+
+       if (bank->target->state != TARGET_RUNNING)
+       {
+               LOG_ERROR("target has to be running to communicate with the loader");
+               return ERROR_TARGET_NOT_RUNNING;
+       }
+
+       /* allocate buffer for max. ocl buffer + overhead */
+       dcc_buffer = malloc(sizeof(u32)*(ocl->buflen/4+3));
+
+       while (count)
+       {
+               if (count + (offset % ocl->bufalign) > ocl->buflen)
+                       runlen = ocl->buflen - (offset % ocl->bufalign);
+               else
+                       runlen = count;
+
+               dcc_buffer[0] = OCL_FLASH_BLOCK | runlen;
+               dcc_buffer[1] = offset;
+               dcc_bufptr = &dcc_buffer[2];
+
+               *dcc_bufptr = 0xffffffff;
+               byteofs = (offset % ocl->bufalign) % 4;
+               chksum = OCL_CHKS_INIT;
+
+               /* copy data to DCC buffer in proper byte order and properly aligned */
+               for (i=0; i<runlen; i++)
+               {
+                       switch (byteofs++)
+                       {
+                               case 0:
+                                       *dcc_bufptr &= *(buffer++) | 0xffffff00;
+                                       break;
+                               case 1:
+                                       *dcc_bufptr &= ((*(buffer++))<<8) | 0xffff00ff;
+                                       break;
+                               case 2:
+                                       *dcc_bufptr &= ((*(buffer++))<<16) | 0xff00ffff;
+                                       break;
+                               case 3:
+                                       *dcc_bufptr &= ((*(buffer++))<<24) | 0x00ffffff;
+                                       chksum ^= *(dcc_bufptr++);
+                                       *dcc_bufptr = 0xffffffff;
+                                       byteofs = 0;
+                                       break;
+                       }
+               }
+
+               /* add the remaining word to checksum */
+               if (byteofs)
+                       chksum ^= *(dcc_bufptr++);
+
+               *(dcc_bufptr++) = chksum;
+               
+               /* send the data */
+               if ((retval = embeddedice_send(ocl->jtag_info, dcc_buffer, dcc_bufptr-dcc_buffer)) != ERROR_OK)
+               {
+                       free(dcc_buffer);
+                 return retval;
+               }
+
+               /* wait for response, fixed timeout of 1 s */
+               if ((retval = embeddedice_handshake(ocl->jtag_info, EICE_COMM_CTRL_WBIT, 1000) != ERROR_OK))
+               {
+                       if (retval == ERROR_TARGET_TIMEOUT)
+                               LOG_ERROR("loader not responding");
+                       free(dcc_buffer);
+                       return retval;
+               }
+
+               /* receive response */
+               if ((retval = embeddedice_receive(ocl->jtag_info, dcc_buffer, 1) != ERROR_OK))
+               {
+                       free(dcc_buffer);
+                       return retval;
+               }
+
+               if (dcc_buffer[0] != OCL_CMD_DONE)
+               {
+                       LOG_ERROR("loader response to OCL_FLASH_BLOCK 0x%08lX", dcc_buffer[0]);
+                       free(dcc_buffer);
+                       return ERROR_FLASH_OPERATION_FAILED;
+               }
+
+               count -= runlen;
+               offset += runlen;
+       }
+
+       free(dcc_buffer);
+       return ERROR_OK;
+}
+
+
+int ocl_probe(struct flash_bank_s *bank)
+{
+       ocl_priv_t *ocl = bank->driver_priv;
+       int retval;
+       u32 dcc_buffer[1];
+       int sectsize;
+       int i;
+
+       /* purge pending data in DCC */
+       embeddedice_receive(ocl->jtag_info, dcc_buffer, 1);
+
+       dcc_buffer[0] = OCL_PROBE;
+       if ((retval = embeddedice_send(ocl->jtag_info, dcc_buffer, 1) != ERROR_OK))
+               return retval;
+
+       /* wait for response, fixed timeout of 1 s */
+       if ((retval = embeddedice_handshake(ocl->jtag_info, EICE_COMM_CTRL_WBIT, 1000) != ERROR_OK))
+       {
+               if (retval == ERROR_TARGET_TIMEOUT)
+                       LOG_ERROR("loader not responding");
+               return retval;
+       }
+
+       /* receive response */
+       if ((retval = embeddedice_receive(ocl->jtag_info, dcc_buffer, 1) != ERROR_OK))
+               return retval;
+               
+       if (dcc_buffer[0] != OCL_CMD_DONE)
+       {
+               LOG_ERROR("loader response to OCL_PROBE 0x%08lX", dcc_buffer[0]);
+               return ERROR_FLASH_OPERATION_FAILED;
+       }
+
+       /* receive and fill in parameters, detection of loader is important, receive it one by one */
+       if ((retval = embeddedice_handshake(ocl->jtag_info, EICE_COMM_CTRL_WBIT, 0) != ERROR_OK)
+               || (retval = embeddedice_receive(ocl->jtag_info, dcc_buffer, 1) != ERROR_OK))
+               return retval;
+       bank->base = dcc_buffer[0];
+
+       if ((retval = embeddedice_handshake(ocl->jtag_info, EICE_COMM_CTRL_WBIT, 0) != ERROR_OK)
+               || (retval = embeddedice_receive(ocl->jtag_info, dcc_buffer, 1) != ERROR_OK))
+               return retval;
+       bank->size = dcc_buffer[0];
+
+       if ((retval = embeddedice_handshake(ocl->jtag_info, EICE_COMM_CTRL_WBIT, 0) != ERROR_OK)
+               || (retval = embeddedice_receive(ocl->jtag_info, dcc_buffer, 1) != ERROR_OK))
+               return retval;
+       bank->num_sectors = dcc_buffer[0];
+
+       if ((retval = embeddedice_handshake(ocl->jtag_info, EICE_COMM_CTRL_WBIT, 0) != ERROR_OK)
+               || (retval = embeddedice_receive(ocl->jtag_info, dcc_buffer, 1) != ERROR_OK))
+               return retval;
+       ocl->buflen = dcc_buffer[0] & 0xffff;
+       ocl->bufalign = dcc_buffer[0] >> 16;
+
+       bank->sectors = realloc(bank->sectors, sizeof(flash_sector_t)*bank->num_sectors);
+       if (bank->num_sectors == 0)
+       {
+               LOG_ERROR("number of sectors shall be non zero value");
+               return ERROR_FLASH_BANK_INVALID;
+       }
+       if (bank->size % bank->num_sectors) {
+               LOG_ERROR("bank size not divisible by number of sectors");
+               return ERROR_FLASH_BANK_INVALID;
+       }
+       sectsize = bank->size / bank->num_sectors;
+       for (i=0; i<bank->num_sectors; i++)
+       {
+               bank->sectors[i].offset = i * sectsize;
+               bank->sectors[i].size = sectsize;
+               bank->sectors[i].is_erased = -1;
+               bank->sectors[i].is_protected = -1;
+       }
+
+       if (ocl->bufalign == 0)
+               ocl->bufalign = 1;
+
+       if (ocl->buflen == 0)
+       {
+               LOG_ERROR("buflen shall be non zero value");
+               return ERROR_FLASH_BANK_INVALID;
+       }
+
+       if ((ocl->bufalign > ocl->buflen) || (ocl->buflen % ocl->bufalign))
+       {
+               LOG_ERROR("buflen is not multiple of bufalign");
+               return ERROR_FLASH_BANK_INVALID;
+       }
+
+       if (ocl->buflen % 4)
+       {
+               LOG_ERROR("buflen shall be divisible by 4");
+               return ERROR_FLASH_BANK_INVALID;
+       }
+
+       return ERROR_OK;
+}
+
+
+int ocl_info(struct flash_bank_s *bank, char *buf, int buf_size)
+{
+       return ERROR_OK;
+}
+
+
+int ocl_auto_probe(struct flash_bank_s *bank)
+{
+       ocl_priv_t *ocl = bank->driver_priv;
+
+       if (ocl->buflen == 0 || ocl->bufalign==0)
+               return ERROR_FLASH_BANK_NOT_PROBED;
+
+       return ERROR_OK;
+}
index 8c677b0e012443fb919ac4adc033e8bb065f6d81..d5c430bef6bb87c5e6fa5f4d5ed7311e1e64004c 100644 (file)
@@ -1,40 +1,40 @@
-/***************************************************************************\r
- *   Copyright (C) 2007 by Pavel Chromy                                    *\r
- *   chromy@asix.cz                                                        *\r
- *                                                                         *\r
- *   This program is free software; you can redistribute it and/or modify  *\r
- *   it under the terms of the GNU General Public License as published by  *\r
- *   the Free Software Foundation; either version 2 of the License, or     *\r
- *   (at your option) any later version.                                   *\r
- *                                                                         *\r
- *   This program is distributed in the hope that it will be useful,       *\r
- *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *\r
- *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *\r
- *   GNU General Public License for more details.                          *\r
- *                                                                         *\r
- *   You should have received a copy of the GNU General Public License     *\r
- *   along with this program; if not, write to the                         *\r
- *   Free Software Foundation, Inc.,                                       *\r
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *\r
- ***************************************************************************/\r
-#ifndef OCL_H\r
-#define OCL_H\r
-\r
-/* command/response mask */\r
-#define OCL_CMD_MASK 0xFFFF0000L\r
-\r
-/* commads */\r
-#define OCL_FLASH_BLOCK 0x0CFB0000L\r
-#define OCL_ERASE_BLOCK 0x0CEB0000L\r
-#define OCL_ERASE_ALL 0x0CEA0000L\r
-#define OCL_PROBE 0x0CBE0000L\r
-\r
-/* responses */\r
-#define OCL_CMD_DONE 0x0ACD0000L\r
-#define OCL_CMD_ERR 0x0ACE0000L\r
-#define OCL_CHKS_FAIL 0x0ACF0000L\r
-#define OCL_BUFF_OVER 0x0AB00000L\r
-\r
-#define OCL_CHKS_INIT 0xC100CD0CL\r
-\r
-#endif /* OCL_H */\r
+/***************************************************************************
+ *   Copyright (C) 2007 by Pavel Chromy                                    *
+ *   chromy@asix.cz                                                        *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ ***************************************************************************/
+#ifndef OCL_H
+#define OCL_H
+
+/* command/response mask */
+#define OCL_CMD_MASK 0xFFFF0000L
+
+/* commads */
+#define OCL_FLASH_BLOCK 0x0CFB0000L
+#define OCL_ERASE_BLOCK 0x0CEB0000L
+#define OCL_ERASE_ALL 0x0CEA0000L
+#define OCL_PROBE 0x0CBE0000L
+
+/* responses */
+#define OCL_CMD_DONE 0x0ACD0000L
+#define OCL_CMD_ERR 0x0ACE0000L
+#define OCL_CHKS_FAIL 0x0ACF0000L
+#define OCL_BUFF_OVER 0x0AB00000L
+
+#define OCL_CHKS_INIT 0xC100CD0CL
+
+#endif /* OCL_H */
index dbc40a0c6c4d571dfe35bf22f2715864fe37d960..85450c14c04ab31793b096a3db173a15f4516347 100644 (file)
@@ -1,4 +1,4 @@
-soft_reset_halt\r
-load_image at91sam7x_ocl.bin 0x200000\r
-resume 0x200000\r
-flash probe 0\r
+soft_reset_halt
+load_image at91sam7x_ocl.bin 0x200000
+resume 0x200000
+flash probe 0
index 106d2180437434ff02668dddfc00753de97194be..24c5c2b56818aeb7940e551285de063667e7bf3e 100644 (file)
-/****************************************************************************\r
-*  Copyright (c) 2006 by Michael Fischer. All rights reserved.\r
-*\r
-*  Redistribution and use in source and binary forms, with or without \r
-*  modification, are permitted provided that the following conditions \r
-*  are met:\r
-*  \r
-*  1. Redistributions of source code must retain the above copyright \r
-*     notice, this list of conditions and the following disclaimer.\r
-*  2. Redistributions in binary form must reproduce the above copyright\r
-*     notice, this list of conditions and the following disclaimer in the \r
-*     documentation and/or other materials provided with the distribution.\r
-*  3. Neither the name of the author nor the names of its contributors may \r
-*     be used to endorse or promote products derived from this software \r
-*     without specific prior written permission.\r
-*\r
-*  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \r
-*  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT \r
-*  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS \r
-*  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL \r
-*  THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, \r
-*  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, \r
-*  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS \r
-*  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED \r
-*  AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, \r
-*  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF \r
-*  THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \r
-*  SUCH DAMAGE.\r
-*\r
-****************************************************************************\r
-*\r
-*  History:\r
-*\r
-*  30.03.06  mifi   First Version\r
-****************************************************************************/\r
-\r
-\r
-ENTRY(ResetHandler)\r
-SEARCH_DIR(.)\r
-\r
-/*\r
- * Define stack size here\r
- */\r
-FIQ_STACK_SIZE = 0x0100;\r
-IRQ_STACK_SIZE = 0x0100;\r
-ABT_STACK_SIZE = 0x0100;\r
-UND_STACK_SIZE = 0x0100;\r
-SVC_STACK_SIZE = 0x0100;\r
-\r
-\r
-MEMORY\r
-{\r
-  ram : org = 0x00200000, len = 64k\r
-}\r
-\r
-/*\r
- * Do not change the next code\r
- */\r
-SECTIONS\r
-{\r
-  .text :\r
-  {\r
-    *(.vectors);\r
-    . = ALIGN(4);\r
-    *(.init);\r
-    . = ALIGN(4);\r
-    *(.text);\r
-    . = ALIGN(4);\r
-    *(.rodata);\r
-    . = ALIGN(4);\r
-    *(.rodata*);\r
-    . = ALIGN(4);\r
-    *(.glue_7t);\r
-    . = ALIGN(4);\r
-    *(.glue_7);\r
-    . = ALIGN(4);\r
-    etext = .;\r
-  } > ram\r
-\r
-  .data :\r
-  {\r
-    PROVIDE (__data_start = .);\r
-    *(.data)\r
-    . = ALIGN(4);\r
-    edata = .;\r
-    _edata = .;\r
-    PROVIDE (__data_end = .);\r
-  } > ram\r
-\r
-  .bss :\r
-  {\r
-    PROVIDE (__bss_start = .);\r
-    *(.bss)\r
-    *(COMMON)\r
-    . = ALIGN(4);\r
-    PROVIDE (__bss_end = .);\r
-    \r
-    . = ALIGN(256);\r
-    \r
-    PROVIDE (__stack_start = .);\r
-    \r
-    PROVIDE (__stack_fiq_start = .);\r
-    . += FIQ_STACK_SIZE;\r
-    . = ALIGN(4);\r
-    PROVIDE (__stack_fiq_end = .);\r
-\r
-    PROVIDE (__stack_irq_start = .);\r
-    . += IRQ_STACK_SIZE;\r
-    . = ALIGN(4);\r
-    PROVIDE (__stack_irq_end = .);\r
-\r
-    PROVIDE (__stack_abt_start = .);\r
-    . += ABT_STACK_SIZE;\r
-    . = ALIGN(4);\r
-    PROVIDE (__stack_abt_end = .);\r
-\r
-    PROVIDE (__stack_und_start = .);\r
-    . += UND_STACK_SIZE;\r
-    . = ALIGN(4);\r
-    PROVIDE (__stack_und_end = .);\r
-\r
-    PROVIDE (__stack_svc_start = .);\r
-    . += SVC_STACK_SIZE;\r
-    . = ALIGN(4);\r
-    PROVIDE (__stack_svc_end = .);\r
-    PROVIDE (__stack_end = .);\r
-    PROVIDE (__heap_start = .);   \r
-  } > ram\r
-    \r
-}\r
-/*** EOF ***/\r
-\r
+/****************************************************************************
+*  Copyright (c) 2006 by Michael Fischer. All rights reserved.
+*
+*  Redistribution and use in source and binary forms, with or without 
+*  modification, are permitted provided that the following conditions 
+*  are met:
+*  
+*  1. Redistributions of source code must retain the above copyright 
+*     notice, this list of conditions and the following disclaimer.
+*  2. Redistributions in binary form must reproduce the above copyright
+*     notice, this list of conditions and the following disclaimer in the 
+*     documentation and/or other materials provided with the distribution.
+*  3. Neither the name of the author nor the names of its contributors may 
+*     be used to endorse or promote products derived from this software 
+*     without specific prior written permission.
+*
+*  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
+*  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
+*  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 
+*  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL 
+*  THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 
+*  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 
+*  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 
+*  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
+*  AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
+*  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF 
+*  THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 
+*  SUCH DAMAGE.
+*
+****************************************************************************
+*
+*  History:
+*
+*  30.03.06  mifi   First Version
+****************************************************************************/
+
+
+ENTRY(ResetHandler)
+SEARCH_DIR(.)
+
+/*
+ * Define stack size here
+ */
+FIQ_STACK_SIZE = 0x0100;
+IRQ_STACK_SIZE = 0x0100;
+ABT_STACK_SIZE = 0x0100;
+UND_STACK_SIZE = 0x0100;
+SVC_STACK_SIZE = 0x0100;
+
+
+MEMORY
+{
+  ram : org = 0x00200000, len = 64k
+}
+
+/*
+ * Do not change the next code
+ */
+SECTIONS
+{
+  .text :
+  {
+    *(.vectors);
+    . = ALIGN(4);
+    *(.init);
+    . = ALIGN(4);
+    *(.text);
+    . = ALIGN(4);
+    *(.rodata);
+    . = ALIGN(4);
+    *(.rodata*);
+    . = ALIGN(4);
+    *(.glue_7t);
+    . = ALIGN(4);
+    *(.glue_7);
+    . = ALIGN(4);
+    etext = .;
+  } > ram
+
+  .data :
+  {
+    PROVIDE (__data_start = .);
+    *(.data)
+    . = ALIGN(4);
+    edata = .;
+    _edata = .;
+    PROVIDE (__data_end = .);
+  } > ram
+
+  .bss :
+  {
+    PROVIDE (__bss_start = .);
+    *(.bss)
+    *(COMMON)
+    . = ALIGN(4);
+    PROVIDE (__bss_end = .);
+    
+    . = ALIGN(256);
+    
+    PROVIDE (__stack_start = .);
+    
+    PROVIDE (__stack_fiq_start = .);
+    . += FIQ_STACK_SIZE;
+    . = ALIGN(4);
+    PROVIDE (__stack_fiq_end = .);
+
+    PROVIDE (__stack_irq_start = .);
+    . += IRQ_STACK_SIZE;
+    . = ALIGN(4);
+    PROVIDE (__stack_irq_end = .);
+
+    PROVIDE (__stack_abt_start = .);
+    . += ABT_STACK_SIZE;
+    . = ALIGN(4);
+    PROVIDE (__stack_abt_end = .);
+
+    PROVIDE (__stack_und_start = .);
+    . += UND_STACK_SIZE;
+    . = ALIGN(4);
+    PROVIDE (__stack_und_end = .);
+
+    PROVIDE (__stack_svc_start = .);
+    . += SVC_STACK_SIZE;
+    . = ALIGN(4);
+    PROVIDE (__stack_svc_end = .);
+    PROVIDE (__stack_end = .);
+    PROVIDE (__heap_start = .);   
+  } > ram
+    
+}
+/*** EOF ***/
+
index 9ea8a7fc86e3d36b6098f28cccb33d5f1e536b5c..b0bae0d631a6bc3208358e7d7718c8b1d82d21ff 100644 (file)
-/****************************************************************************\r
-*  Copyright (c) 2006 by Michael Fischer. All rights reserved.\r
-*\r
-*  Redistribution and use in source and binary forms, with or without \r
-*  modification, are permitted provided that the following conditions \r
-*  are met:\r
-*  \r
-*  1. Redistributions of source code must retain the above copyright \r
-*     notice, this list of conditions and the following disclaimer.\r
-*  2. Redistributions in binary form must reproduce the above copyright\r
-*     notice, this list of conditions and the following disclaimer in the \r
-*     documentation and/or other materials provided with the distribution.\r
-*  3. Neither the name of the author nor the names of its contributors may \r
-*     be used to endorse or promote products derived from this software \r
-*     without specific prior written permission.\r
-*\r
-*  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \r
-*  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT \r
-*  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS \r
-*  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL \r
-*  THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, \r
-*  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, \r
-*  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS \r
-*  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED \r
-*  AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, \r
-*  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF \r
-*  THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \r
-*  SUCH DAMAGE.\r
-*\r
-****************************************************************************\r
-*\r
-*  History:\r
-*\r
-*  18.12.06  mifi   First Version\r
-*                   The hardware initialization is based on the startup file\r
-*                   crtat91sam7x256_rom.S from NutOS 4.2.1. \r
-*                   Therefore partial copyright by egnite Software GmbH.\r
-****************************************************************************/\r
-\r
-/*\r
- * Some defines for the program status registers\r
- */\r
-   ARM_MODE_USER  = 0x10      /* Normal User Mode                             */ \r
-   ARM_MODE_FIQ   = 0x11      /* FIQ Fast Interrupts Mode                     */\r
-   ARM_MODE_IRQ   = 0x12      /* IRQ Standard Interrupts Mode                 */\r
-   ARM_MODE_SVC   = 0x13      /* Supervisor Interrupts Mode                   */\r
-   ARM_MODE_ABORT = 0x17      /* Abort Processing memory Faults Mode          */\r
-   ARM_MODE_UNDEF = 0x1B      /* Undefined Instructions Mode                  */\r
-   ARM_MODE_SYS   = 0x1F      /* System Running in Priviledged Operating Mode */\r
-   ARM_MODE_MASK  = 0x1F\r
-   \r
-   I_BIT          = 0x80      /* disable IRQ when I bit is set */\r
-   F_BIT          = 0x40      /* disable IRQ when I bit is set */\r
-   \r
-/*\r
- * Register Base Address\r
- */\r
-   AIC_BASE         = 0xFFFFF000\r
-   AIC_EOICR_OFF    = 0x130\r
-   AIC_IDCR_OFF     = 0x124\r
-\r
-   RSTC_MR          = 0xFFFFFD08\r
-   RSTC_KEY         = 0xA5000000\r
-   RSTC_URSTEN      = 0x00000001\r
-\r
-   WDT_BASE         = 0xFFFFFD40\r
-   WDT_MR_OFF       = 0x00000004\r
-   WDT_WDDIS        = 0x00008000\r
-\r
-   MC_BASE          = 0xFFFFFF00\r
-   MC_FMR_OFF       = 0x00000060\r
-   MC_FWS_1FWS      = 0x00480100\r
-      \r
-   .section .vectors,"ax"\r
-   .code 32\r
-        \r
-/****************************************************************************/\r
-/*               Vector table and reset entry                               */\r
-/****************************************************************************/\r
-_vectors:\r
-   ldr pc, ResetAddr    /* Reset                 */\r
-   ldr pc, UndefAddr    /* Undefined instruction */\r
-   ldr pc, SWIAddr      /* Software interrupt    */\r
-   ldr pc, PAbortAddr   /* Prefetch abort        */\r
-   ldr pc, DAbortAddr   /* Data abort            */\r
-   ldr pc, ReservedAddr /* Reserved              */\r
-   ldr pc, IRQAddr      /* IRQ interrupt         */\r
-   ldr pc, FIQAddr      /* FIQ interrupt         */\r
-\r
-\r
-ResetAddr:     .word ResetHandler\r
-UndefAddr:     .word UndefHandler\r
-SWIAddr:       .word SWIHandler\r
-PAbortAddr:    .word PAbortHandler\r
-DAbortAddr:    .word DAbortHandler\r
-ReservedAddr:  .word 0\r
-IRQAddr:       .word IRQHandler\r
-FIQAddr:       .word FIQHandler\r
-\r
-   .ltorg\r
-\r
-   .section .init, "ax"\r
-   .code 32\r
-   \r
-   .global ResetHandler\r
-   .global ExitFunction\r
-   .extern main\r
-/****************************************************************************/\r
-/*                           Reset handler                                  */\r
-/****************************************************************************/\r
-ResetHandler:\r
-   /*\r
-    * The watchdog is enabled after processor reset. Disable it.\r
-    */\r
-   ldr   r1, =WDT_BASE\r
-   ldr   r0, =WDT_WDDIS\r
-   str   r0, [r1, #WDT_MR_OFF]\r
-\r
-   \r
-   /*\r
-    * Enable user reset: assertion length programmed to 1ms\r
-    */\r
-   ldr   r0, =(RSTC_KEY | RSTC_URSTEN | (4 << 8))\r
-   ldr   r1, =RSTC_MR\r
-   str   r0, [r1, #0]\r
-\r
-   \r
-   /*\r
-    * Use 2 cycles for flash access.\r
-    */\r
-   ldr   r1, =MC_BASE\r
-   ldr   r0, =MC_FWS_1FWS\r
-   str   r0, [r1, #MC_FMR_OFF]\r
-\r
-\r
-   /*\r
-    * Disable all interrupts. Useful for debugging w/o target reset.\r
-    */\r
-   ldr   r1, =AIC_BASE\r
-   mvn   r0, #0\r
-   str   r0, [r1, #AIC_EOICR_OFF]\r
-   str   r0, [r1, #AIC_IDCR_OFF]\r
-\r
-    \r
-   /*\r
-    * Setup a stack for each mode\r
-    */    \r
-   msr   CPSR_c, #ARM_MODE_UNDEF | I_BIT | F_BIT   /* Undefined Instruction Mode */     \r
-   ldr   sp, =__stack_und_end\r
-   \r
-   msr   CPSR_c, #ARM_MODE_ABORT | I_BIT | F_BIT   /* Abort Mode */\r
-   ldr   sp, =__stack_abt_end\r
-   \r
-   msr   CPSR_c, #ARM_MODE_FIQ | I_BIT | F_BIT     /* FIQ Mode */   \r
-   ldr   sp, =__stack_fiq_end\r
-   \r
-   msr   CPSR_c, #ARM_MODE_IRQ | I_BIT | F_BIT     /* IRQ Mode */   \r
-   ldr   sp, =__stack_irq_end\r
-   \r
-   msr   CPSR_c, #ARM_MODE_SVC | I_BIT | F_BIT     /* Supervisor Mode */\r
-   ldr   sp, =__stack_svc_end\r
-\r
-\r
-   /*\r
-    * Clear .bss section\r
-    */\r
-   ldr   r1, =__bss_start\r
-   ldr   r2, =__bss_end\r
-   ldr   r3, =0\r
-bss_clear_loop:\r
-   cmp   r1, r2\r
-   strne r3, [r1], #+4\r
-   bne   bss_clear_loop\r
-   \r
-   \r
-   /*\r
-    * Jump to main\r
-    */\r
-   mrs   r0, cpsr\r
-   bic   r0, r0, #I_BIT | F_BIT     /* Enable FIQ and IRQ interrupt */\r
-   msr   cpsr, r0\r
-   \r
-   mov   r0, #0 /* No arguments */\r
-   mov   r1, #0 /* No arguments */\r
-   ldr   r2, =main\r
-   mov   lr, pc\r
-   bx    r2     /* And jump... */\r
-                       \r
-ExitFunction:\r
-   nop\r
-   nop\r
-   nop\r
-   b ExitFunction   \r
-   \r
-\r
-/****************************************************************************/\r
-/*                         Default interrupt handler                        */\r
-/****************************************************************************/\r
-\r
-UndefHandler:\r
-   b UndefHandler\r
-   \r
-SWIHandler:\r
-   b SWIHandler\r
-\r
-PAbortHandler:\r
-   b PAbortHandler\r
-\r
-DAbortHandler:\r
-   b DAbortHandler\r
-   \r
-IRQHandler:\r
-   b IRQHandler\r
-   \r
-FIQHandler:\r
-   b FIQHandler\r
-   \r
-   .weak ExitFunction\r
-   .weak UndefHandler, PAbortHandler, DAbortHandler\r
-   .weak IRQHandler, FIQHandler\r
-\r
-   .ltorg\r
-/*** EOF ***/   \r
-  \r
-\rIndex: src/flash/ocl/at91sam7x/dcc.c\r
+/****************************************************************************
+*  Copyright (c) 2006 by Michael Fischer. All rights reserved.
+*
+*  Redistribution and use in source and binary forms, with or without 
+*  modification, are permitted provided that the following conditions 
+*  are met:
+*  
+*  1. Redistributions of source code must retain the above copyright 
+*     notice, this list of conditions and the following disclaimer.
+*  2. Redistributions in binary form must reproduce the above copyright
+*     notice, this list of conditions and the following disclaimer in the 
+*     documentation and/or other materials provided with the distribution.
+*  3. Neither the name of the author nor the names of its contributors may 
+*     be used to endorse or promote products derived from this software 
+*     without specific prior written permission.
+*
+*  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
+*  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
+*  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 
+*  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL 
+*  THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 
+*  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 
+*  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 
+*  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
+*  AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
+*  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF 
+*  THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 
+*  SUCH DAMAGE.
+*
+****************************************************************************
+*
+*  History:
+*
+*  18.12.06  mifi   First Version
+*                   The hardware initialization is based on the startup file
+*                   crtat91sam7x256_rom.S from NutOS 4.2.1. 
+*                   Therefore partial copyright by egnite Software GmbH.
+****************************************************************************/
+
+/*
+ * Some defines for the program status registers
+ */
+   ARM_MODE_USER  = 0x10      /* Normal User Mode                             */ 
+   ARM_MODE_FIQ   = 0x11      /* FIQ Fast Interrupts Mode                     */
+   ARM_MODE_IRQ   = 0x12      /* IRQ Standard Interrupts Mode                 */
+   ARM_MODE_SVC   = 0x13      /* Supervisor Interrupts Mode                   */
+   ARM_MODE_ABORT = 0x17      /* Abort Processing memory Faults Mode          */
+   ARM_MODE_UNDEF = 0x1B      /* Undefined Instructions Mode                  */
+   ARM_MODE_SYS   = 0x1F      /* System Running in Priviledged Operating Mode */
+   ARM_MODE_MASK  = 0x1F
+   
+   I_BIT          = 0x80      /* disable IRQ when I bit is set */
+   F_BIT          = 0x40      /* disable IRQ when I bit is set */
+   
+/*
+ * Register Base Address
+ */
+   AIC_BASE         = 0xFFFFF000
+   AIC_EOICR_OFF    = 0x130
+   AIC_IDCR_OFF     = 0x124
+
+   RSTC_MR          = 0xFFFFFD08
+   RSTC_KEY         = 0xA5000000
+   RSTC_URSTEN      = 0x00000001
+
+   WDT_BASE         = 0xFFFFFD40
+   WDT_MR_OFF       = 0x00000004
+   WDT_WDDIS        = 0x00008000
+
+   MC_BASE          = 0xFFFFFF00
+   MC_FMR_OFF       = 0x00000060
+   MC_FWS_1FWS      = 0x00480100
+      
+   .section .vectors,"ax"
+   .code 32
+        
+/****************************************************************************/
+/*               Vector table and reset entry                               */
+/****************************************************************************/
+_vectors:
+   ldr pc, ResetAddr    /* Reset                 */
+   ldr pc, UndefAddr    /* Undefined instruction */
+   ldr pc, SWIAddr      /* Software interrupt    */
+   ldr pc, PAbortAddr   /* Prefetch abort        */
+   ldr pc, DAbortAddr   /* Data abort            */
+   ldr pc, ReservedAddr /* Reserved              */
+   ldr pc, IRQAddr      /* IRQ interrupt         */
+   ldr pc, FIQAddr      /* FIQ interrupt         */
+
+
+ResetAddr:     .word ResetHandler
+UndefAddr:     .word UndefHandler
+SWIAddr:       .word SWIHandler
+PAbortAddr:    .word PAbortHandler
+DAbortAddr:    .word DAbortHandler
+ReservedAddr:  .word 0
+IRQAddr:       .word IRQHandler
+FIQAddr:       .word FIQHandler
+
+   .ltorg
+
+   .section .init, "ax"
+   .code 32
+   
+   .global ResetHandler
+   .global ExitFunction
+   .extern main
+/****************************************************************************/
+/*                           Reset handler                                  */
+/****************************************************************************/
+ResetHandler:
+   /*
+    * The watchdog is enabled after processor reset. Disable it.
+    */
+   ldr   r1, =WDT_BASE
+   ldr   r0, =WDT_WDDIS
+   str   r0, [r1, #WDT_MR_OFF]
+
+   
+   /*
+    * Enable user reset: assertion length programmed to 1ms
+    */
+   ldr   r0, =(RSTC_KEY | RSTC_URSTEN | (4 << 8))
+   ldr   r1, =RSTC_MR
+   str   r0, [r1, #0]
+
+   
+   /*
+    * Use 2 cycles for flash access.
+    */
+   ldr   r1, =MC_BASE
+   ldr   r0, =MC_FWS_1FWS
+   str   r0, [r1, #MC_FMR_OFF]
+
+
+   /*
+    * Disable all interrupts. Useful for debugging w/o target reset.
+    */
+   ldr   r1, =AIC_BASE
+   mvn   r0, #0
+   str   r0, [r1, #AIC_EOICR_OFF]
+   str   r0, [r1, #AIC_IDCR_OFF]
+
+    
+   /*
+    * Setup a stack for each mode
+    */    
+   msr   CPSR_c, #ARM_MODE_UNDEF | I_BIT | F_BIT   /* Undefined Instruction Mode */     
+   ldr   sp, =__stack_und_end
+   
+   msr   CPSR_c, #ARM_MODE_ABORT | I_BIT | F_BIT   /* Abort Mode */
+   ldr   sp, =__stack_abt_end
+   
+   msr   CPSR_c, #ARM_MODE_FIQ | I_BIT | F_BIT     /* FIQ Mode */   
+   ldr   sp, =__stack_fiq_end
+   
+   msr   CPSR_c, #ARM_MODE_IRQ | I_BIT | F_BIT     /* IRQ Mode */   
+   ldr   sp, =__stack_irq_end
+   
+   msr   CPSR_c, #ARM_MODE_SVC | I_BIT | F_BIT     /* Supervisor Mode */
+   ldr   sp, =__stack_svc_end
+
+
+   /*
+    * Clear .bss section
+    */
+   ldr   r1, =__bss_start
+   ldr   r2, =__bss_end
+   ldr   r3, =0
+bss_clear_loop:
+   cmp   r1, r2
+   strne r3, [r1], #+4
+   bne   bss_clear_loop
+   
+   
+   /*
+    * Jump to main
+    */
+   mrs   r0, cpsr
+   bic   r0, r0, #I_BIT | F_BIT     /* Enable FIQ and IRQ interrupt */
+   msr   cpsr, r0
+   
+   mov   r0, #0 /* No arguments */
+   mov   r1, #0 /* No arguments */
+   ldr   r2, =main
+   mov   lr, pc
+   bx    r2     /* And jump... */
+                       
+ExitFunction:
+   nop
+   nop
+   nop
+   b ExitFunction   
+   
+
+/****************************************************************************/
+/*                         Default interrupt handler                        */
+/****************************************************************************/
+
+UndefHandler:
+   b UndefHandler
+   
+SWIHandler:
+   b SWIHandler
+
+PAbortHandler:
+   b PAbortHandler
+
+DAbortHandler:
+   b DAbortHandler
+   
+IRQHandler:
+   b IRQHandler
+   
+FIQHandler:
+   b FIQHandler
+   
+   .weak ExitFunction
+   .weak UndefHandler, PAbortHandler, DAbortHandler
+   .weak IRQHandler, FIQHandler
+
+   .ltorg
+/*** EOF ***/
index 2c35236961b3ff7e219e1f1b9277507ff6cb2612..3507bbe5eaaa6e8dfed8807a981f1ae25a8c4ff0 100644 (file)
@@ -1,51 +1,51 @@
-/***************************************************************************\r
- *   Copyright (C) 2007 by Pavel Chromy                                    *\r
- *   chromy@asix.cz                                                        *\r
- *                                                                         *\r
- *   This program is free software; you can redistribute it and/or modify  *\r
- *   it under the terms of the GNU General Public License as published by  *\r
- *   the Free Software Foundation; either version 2 of the License, or     *\r
- *   (at your option) any later version.                                   *\r
- *                                                                         *\r
- *   This program is distributed in the hope that it will be useful,       *\r
- *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *\r
- *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *\r
- *   GNU General Public License for more details.                          *\r
- *                                                                         *\r
- *   You should have received a copy of the GNU General Public License     *\r
- *   along with this program; if not, write to the                         *\r
- *   Free Software Foundation, Inc.,                                       *\r
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *\r
- ***************************************************************************/\r
-#include "dcc.h"\r
-\r
-\r
-/* debug channel read (debugger->MCU) */\r
-uint32 dcc_rd(void)\r
-{\r
-       volatile uint32 dcc_reg;\r
-\r
-       do {\r
-               asm volatile ("mrc p14, 0, %0, C0, C0" : "=r" (dcc_reg) : );\r
-       } while ((dcc_reg&1)==0);\r
-\r
-       asm volatile ("mrc p14, 0, %0, C1, C0" : "=r" (dcc_reg) : );\r
-       return dcc_reg;\r
-}\r
-\r
-\r
-/* debug channel write (MCU->debugger) */\r
-int dcc_wr(uint32 data)\r
-{\r
-       volatile uint32 dcc_reg;\r
-\r
-       do {\r
-               asm volatile ("mrc p14, 0, %0, C0, C0" : "=r" (dcc_reg) : );\r
-               /* operation controled by master, cancel operation\r
-                        upon reception of data for immediate response */\r
-               if (dcc_reg&1) return -1;\r
-       } while (dcc_reg&2);\r
-\r
-       asm volatile ("mcr p14, 0, %0, C1, C0" : : "r" (data));\r
-       return 0;\r
-}\r
+/***************************************************************************
+ *   Copyright (C) 2007 by Pavel Chromy                                    *
+ *   chromy@asix.cz                                                        *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ ***************************************************************************/
+#include "dcc.h"
+
+
+/* debug channel read (debugger->MCU) */
+uint32 dcc_rd(void)
+{
+       volatile uint32 dcc_reg;
+
+       do {
+               asm volatile ("mrc p14, 0, %0, C0, C0" : "=r" (dcc_reg) : );
+       } while ((dcc_reg&1)==0);
+
+       asm volatile ("mrc p14, 0, %0, C1, C0" : "=r" (dcc_reg) : );
+       return dcc_reg;
+}
+
+
+/* debug channel write (MCU->debugger) */
+int dcc_wr(uint32 data)
+{
+       volatile uint32 dcc_reg;
+
+       do {
+               asm volatile ("mrc p14, 0, %0, C0, C0" : "=r" (dcc_reg) : );
+               /* operation controled by master, cancel operation
+                        upon reception of data for immediate response */
+               if (dcc_reg&1) return -1;
+       } while (dcc_reg&2);
+
+       asm volatile ("mcr p14, 0, %0, C1, C0" : : "r" (data));
+       return 0;
+}
index 963df2610ac89a4c48b04d863a107d179681b41e..f41b1d275b1d4b1279e505103c769f316608f3aa 100644 (file)
@@ -1,31 +1,31 @@
-/***************************************************************************\r
- *   Copyright (C) 2007 by Pavel Chromy                                    *\r
- *   chromy@asix.cz                                                        *\r
- *                                                                         *\r
- *   This program is free software; you can redistribute it and/or modify  *\r
- *   it under the terms of the GNU General Public License as published by  *\r
- *   the Free Software Foundation; either version 2 of the License, or     *\r
- *   (at your option) any later version.                                   *\r
- *                                                                         *\r
- *   This program is distributed in the hope that it will be useful,       *\r
- *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *\r
- *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *\r
- *   GNU General Public License for more details.                          *\r
- *                                                                         *\r
- *   You should have received a copy of the GNU General Public License     *\r
- *   along with this program; if not, write to the                         *\r
- *   Free Software Foundation, Inc.,                                       *\r
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *\r
- ***************************************************************************/\r
-#ifndef dccH\r
-#define dccH\r
-\r
-#include "platform.h"\r
-\r
-/* debug channel read (debugger->MCU) */\r
-extern uint32 dcc_rd(void);\r
-\r
-/* debug channel write (MCU->debugger) */\r
-extern int dcc_wr(uint32 data);\r
-\r
-#endif\r
+/***************************************************************************
+ *   Copyright (C) 2007 by Pavel Chromy                                    *
+ *   chromy@asix.cz                                                        *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ ***************************************************************************/
+#ifndef dccH
+#define dccH
+
+#include "platform.h"
+
+/* debug channel read (debugger->MCU) */
+extern uint32 dcc_rd(void);
+
+/* debug channel write (MCU->debugger) */
+extern int dcc_wr(uint32 data);
+
+#endif
index c9e93ddbdd503de0cdb97f715573a1b33f6ab503..2a4d28bba977dc22669849fc396e862a8a957b7c 100644 (file)
-/***************************************************************************\r
- *   Copyright (C) 2007 by Pavel Chromy                                    *\r
- *   chromy@asix.cz                                                        *\r
- *                                                                         *\r
- *   This program is free software; you can redistribute it and/or modify  *\r
- *   it under the terms of the GNU General Public License as published by  *\r
- *   the Free Software Foundation; either version 2 of the License, or     *\r
- *   (at your option) any later version.                                   *\r
- *                                                                         *\r
- *   This program is distributed in the hope that it will be useful,       *\r
- *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *\r
- *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *\r
- *   GNU General Public License for more details.                          *\r
- *                                                                         *\r
- *   You should have received a copy of the GNU General Public License     *\r
- *   along with this program; if not, write to the                         *\r
- *   Free Software Foundation, Inc.,                                       *\r
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *\r
- ***************************************************************************/\r
-#include "platform.h"\r
-\r
-#include "ocl.h"\r
-#include "dcc.h"\r
-#include "samflash.h"\r
-\r
-\r
-#define BUFSIZE 1024 /* words, i.e. 4 KiB */\r
-uint32 buffer[1024];\r
-\r
-void cmd_flash(uint32 cmd)\r
-{\r
-       unsigned int len;\r
-       uint32 adr;\r
-       uint32 chksum;\r
-       unsigned int bi; /* buffer index */\r
-       unsigned int bi_start; /* receive start mark */\r
-       unsigned int bi_end; /* receive end mark */\r
-       unsigned int ofs;\r
-       int pagenum;\r
-       int result;\r
-\r
-       adr=dcc_rd();\r
-       len=cmd&0xffff;\r
-       ofs=adr%flash_page_size;\r
-       bi_start=ofs/4;\r
-       bi_end=(ofs+len+3)/4;\r
-\r
-       if (bi_end>BUFSIZE) {\r
-               dcc_wr(OCL_BUFF_OVER);\r
-               return;\r
-       }\r
-\r
-       chksum=OCL_CHKS_INIT;\r
-       for (bi=0; bi<bi_end; bi++) chksum^=buffer[bi]=dcc_rd();\r
-\r
-       if (dcc_rd()!=chksum) {\r
-               dcc_wr(OCL_CHKS_FAIL);\r
-               return;\r
-       }\r
-\r
-       /* fill in unused positions with unprogrammed values */\r
-       for (bi=0; bi<bi_start; bi++) buffer[bi]=0xffffffff;\r
-       for (bi=bi_end; bi%flash_page_size; bi++) buffer[bi]=0xffffffff;\r
-\r
-       result=0;\r
-       pagenum=adr/flash_page_size;\r
-       for (bi=0; bi<bi_end; bi+=flash_page_size/4) {\r
-               result=flash_page_program(buffer+bi, pagenum++);\r
-               if (result) break;\r
-       }\r
-\r
-       /* verify written data */\r
-       if (!result) result=flash_verify(adr, len, ((uint8 *)buffer)+ofs);\r
-\r
-       dcc_wr(OCL_CMD_DONE|result);\r
-}\r
-\r
-\r
-int main (void)\r
-{\r
-       uint32 cmd;\r
-\r
-       for (;;) {\r
-               cmd=dcc_rd();\r
-               switch (cmd&OCL_CMD_MASK) {\r
-                       case OCL_PROBE:\r
-                               dcc_wr(OCL_CMD_DONE|flash_init());\r
-                               dcc_wr(0x100000); /* base */\r
-                               dcc_wr(flash_page_count*flash_page_size); /* size */\r
-                               dcc_wr(1); /* num_sectors */\r
-                               dcc_wr(4096 | ((unsigned long) flash_page_size<<16)); /* buflen and bufalign */\r
-                               break;\r
-                       case OCL_ERASE_ALL:\r
-                               dcc_wr(OCL_CMD_DONE|flash_erase_all());\r
-                               break;\r
-                       case OCL_FLASH_BLOCK:\r
-                               cmd_flash(cmd);\r
-                               break;\r
-                       default:\r
-                               /* unknown command */\r
-                               dcc_wr(OCL_CMD_ERR);\r
-                               break;\r
-               }\r
-       }\r
-\r
-       return(0); /* we shall never get here, just to supress compiler warning */\r
-}\r
+/***************************************************************************
+ *   Copyright (C) 2007 by Pavel Chromy                                    *
+ *   chromy@asix.cz                                                        *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ ***************************************************************************/
+#include "platform.h"
+
+#include "ocl.h"
+#include "dcc.h"
+#include "samflash.h"
+
+
+#define BUFSIZE 1024 /* words, i.e. 4 KiB */
+uint32 buffer[1024];
+
+void cmd_flash(uint32 cmd)
+{
+       unsigned int len;
+       uint32 adr;
+       uint32 chksum;
+       unsigned int bi; /* buffer index */
+       unsigned int bi_start; /* receive start mark */
+       unsigned int bi_end; /* receive end mark */
+       unsigned int ofs;
+       int pagenum;
+       int result;
+
+       adr=dcc_rd();
+       len=cmd&0xffff;
+       ofs=adr%flash_page_size;
+       bi_start=ofs/4;
+       bi_end=(ofs+len+3)/4;
+
+       if (bi_end>BUFSIZE) {
+               dcc_wr(OCL_BUFF_OVER);
+               return;
+       }
+
+       chksum=OCL_CHKS_INIT;
+       for (bi=0; bi<bi_end; bi++) chksum^=buffer[bi]=dcc_rd();
+
+       if (dcc_rd()!=chksum) {
+               dcc_wr(OCL_CHKS_FAIL);
+               return;
+       }
+
+       /* fill in unused positions with unprogrammed values */
+       for (bi=0; bi<bi_start; bi++) buffer[bi]=0xffffffff;
+       for (bi=bi_end; bi%flash_page_size; bi++) buffer[bi]=0xffffffff;
+
+       result=0;
+       pagenum=adr/flash_page_size;
+       for (bi=0; bi<bi_end; bi+=flash_page_size/4) {
+               result=flash_page_program(buffer+bi, pagenum++);
+               if (result) break;
+       }
+
+       /* verify written data */
+       if (!result) result=flash_verify(adr, len, ((uint8 *)buffer)+ofs);
+
+       dcc_wr(OCL_CMD_DONE|result);
+}
+
+
+int main (void)
+{
+       uint32 cmd;
+
+       for (;;) {
+               cmd=dcc_rd();
+               switch (cmd&OCL_CMD_MASK) {
+                       case OCL_PROBE:
+                               dcc_wr(OCL_CMD_DONE|flash_init());
+                               dcc_wr(0x100000); /* base */
+                               dcc_wr(flash_page_count*flash_page_size); /* size */
+                               dcc_wr(1); /* num_sectors */
+                               dcc_wr(4096 | ((unsigned long) flash_page_size<<16)); /* buflen and bufalign */
+                               break;
+                       case OCL_ERASE_ALL:
+                               dcc_wr(OCL_CMD_DONE|flash_erase_all());
+                               break;
+                       case OCL_FLASH_BLOCK:
+                               cmd_flash(cmd);
+                               break;
+                       default:
+                               /* unknown command */
+                               dcc_wr(OCL_CMD_ERR);
+                               break;
+               }
+       }
+
+       return(0); /* we shall never get here, just to supress compiler warning */
+}
index b48ed70ca826305f15b5e5ecf04680dd126657a0..d9944a425b034c8c6867ecb55863dc630aceeb85 100644 (file)
-##############################################################################################\r
-# Start of default section\r
-#\r
-\r
-TRGT = arm-elf-\r
-CC   = $(TRGT)gcc\r
-CP   = $(TRGT)objcopy\r
-AS   = $(TRGT)gcc -x assembler-with-cpp\r
-HEX  = $(CP) -O ihex\r
-BIN  = $(CP) -O binary\r
-OBJDUMP = $(TRGT)objdump\r
-\r
-MCU  = arm7tdmi\r
-\r
-# List all default C defines here, like -D_DEBUG=1\r
-DDEFS = \r
-\r
-# List all default ASM defines here, like -D_DEBUG=1\r
-DADEFS = \r
-\r
-# List all default directories to look for include files here\r
-DINCDIR = \r
-\r
-# List the default directory to look for the libraries here\r
-DLIBDIR =\r
-\r
-# List all default libraries here\r
-DLIBS = \r
-\r
-#\r
-# End of default section\r
-##############################################################################################\r
-\r
-##############################################################################################\r
-# Start of user section\r
-#\r
-\r
-# Define project name here\r
-PROJECT = at91sam7x_ocl\r
-\r
-# Define linker script file here\r
-LDSCRIPT= at91sam7x_ram.ld\r
-\r
-# List all user C define here, like -D_DEBUG=1\r
-UDEFS = \r
-\r
-# Define ASM defines here\r
-UADEFS = \r
-\r
-# List C source files here\r
-SRC  = main.c dcc.c samflash.c\r
-\r
-# List ASM source files here\r
-ASRC = crt.s\r
-\r
-# List all user directories here\r
-UINCDIR =\r
-\r
-# List the user directory to look for the libraries here\r
-ULIBDIR =\r
-\r
-# List all user libraries here\r
-ULIBS = \r
-\r
-# Define optimisation level here\r
-OPT = -O2\r
-\r
-#\r
-# End of user defines\r
-##############################################################################################\r
-\r
-\r
-INCDIR  = $(patsubst %,-I%,$(DINCDIR) $(UINCDIR))\r
-LIBDIR  = $(patsubst %,-L%,$(DLIBDIR) $(ULIBDIR))\r
-DEFS    = $(DDEFS) $(UDEFS)\r
-ADEFS   = $(DADEFS) $(UADEFS)\r
-OBJS    = $(ASRC:.s=.o) $(SRC:.c=.o)\r
-LIBS    = $(DLIBS) $(ULIBS)\r
-MCFLAGS = -mcpu=$(MCU)\r
-\r
-ASFLAGS = $(MCFLAGS) -g -gdwarf-2 -Wa,-amhls=$(<:.s=.lst) $(ADEFS)\r
-CPFLAGS = $(MCFLAGS) $(OPT) -gdwarf-2 -mthumb-interwork -fomit-frame-pointer -Wall -Wstrict-prototypes -fverbose-asm -Wa,-ahlms=$(<:.c=.lst) $(DEFS)\r
-LDFLAGS = $(MCFLAGS) -nostartfiles -T$(LDSCRIPT) -Wl,-Map=$(PROJECT).map,--cref,--no-warn-mismatch $(LIBDIR)\r
-\r
-# Generate dependency information\r
-#CPFLAGS += -MD -MP -MF .dep/$(@F).d\r
-\r
-#\r
-# makefile rules\r
-#\r
-\r
-all: $(OBJS) $(PROJECT).elf $(PROJECT).hex $(PROJECT).bin $(PROJECT).lst\r
-\r
-%o : %c\r
-       $(CC) -c $(CPFLAGS) -I . $(INCDIR) $< -o $@\r
-\r
-%o : %s\r
-       $(AS) -c $(ASFLAGS) $< -o $@\r
-\r
-%elf: $(OBJS)\r
-       $(CC) $(OBJS) $(LDFLAGS) $(LIBS) -o $@\r
-\r
-%hex: %elf\r
-       $(HEX) $< $@\r
-\r
-%bin: %elf\r
-       $(BIN) $< $@\r
-\r
-%.lst: %.elf\r
-       $(OBJDUMP) -h -S $< > $@\r
-\r
-clean:\r
-       -rm -f $(OBJS)\r
-       -rm -f $(PROJECT).elf\r
-       -rm -f $(PROJECT).map\r
-       -rm -f $(PROJECT).hex\r
-       -rm -f $(PROJECT).bin\r
-       -rm -f $(PROJECT).lst\r
-       -rm -f $(SRC:.c=.c.bak)\r
-       -rm -f $(SRC:.c=.lst)\r
-       -rm -f $(ASRC:.s=.s.bak)\r
-       -rm -f $(ASRC:.s=.lst)\r
-       -rm -fR .dep\r
-\r
-# \r
-# Include the dependency files, should be the last of the makefile\r
-#\r
-#-include $(shell mkdir .dep 2>/dev/null) $(wildcard .dep/*)\r
-\r
+##############################################################################################
+# Start of default section
+#
+
+TRGT = arm-elf-
+CC   = $(TRGT)gcc
+CP   = $(TRGT)objcopy
+AS   = $(TRGT)gcc -x assembler-with-cpp
+HEX  = $(CP) -O ihex
+BIN  = $(CP) -O binary
+OBJDUMP = $(TRGT)objdump
+
+MCU  = arm7tdmi
+
+# List all default C defines here, like -D_DEBUG=1
+DDEFS = 
+
+# List all default ASM defines here, like -D_DEBUG=1
+DADEFS = 
+
+# List all default directories to look for include files here
+DINCDIR = 
+
+# List the default directory to look for the libraries here
+DLIBDIR =
+
+# List all default libraries here
+DLIBS = 
+
+#
+# End of default section
+##############################################################################################
+
+##############################################################################################
+# Start of user section
+#
+
+# Define project name here
+PROJECT = at91sam7x_ocl
+
+# Define linker script file here
+LDSCRIPT= at91sam7x_ram.ld
+
+# List all user C define here, like -D_DEBUG=1
+UDEFS = 
+
+# Define ASM defines here
+UADEFS = 
+
+# List C source files here
+SRC  = main.c dcc.c samflash.c
+
+# List ASM source files here
+ASRC = crt.s
+
+# List all user directories here
+UINCDIR =
+
+# List the user directory to look for the libraries here
+ULIBDIR =
+
+# List all user libraries here
+ULIBS = 
+
+# Define optimisation level here
+OPT = -O2
+
+#
+# End of user defines
+##############################################################################################
+
+
+INCDIR  = $(patsubst %,-I%,$(DINCDIR) $(UINCDIR))
+LIBDIR  = $(patsubst %,-L%,$(DLIBDIR) $(ULIBDIR))
+DEFS    = $(DDEFS) $(UDEFS)
+ADEFS   = $(DADEFS) $(UADEFS)
+OBJS    = $(ASRC:.s=.o) $(SRC:.c=.o)
+LIBS    = $(DLIBS) $(ULIBS)
+MCFLAGS = -mcpu=$(MCU)
+
+ASFLAGS = $(MCFLAGS) -g -gdwarf-2 -Wa,-amhls=$(<:.s=.lst) $(ADEFS)
+CPFLAGS = $(MCFLAGS) $(OPT) -gdwarf-2 -mthumb-interwork -fomit-frame-pointer -Wall -Wstrict-prototypes -fverbose-asm -Wa,-ahlms=$(<:.c=.lst) $(DEFS)
+LDFLAGS = $(MCFLAGS) -nostartfiles -T$(LDSCRIPT) -Wl,-Map=$(PROJECT).map,--cref,--no-warn-mismatch $(LIBDIR)
+
+# Generate dependency information
+#CPFLAGS += -MD -MP -MF .dep/$(@F).d
+
+#
+# makefile rules
+#
+
+all: $(OBJS) $(PROJECT).elf $(PROJECT).hex $(PROJECT).bin $(PROJECT).lst
+
+%o : %c
+       $(CC) -c $(CPFLAGS) -I . $(INCDIR) $< -o $@
+
+%o : %s
+       $(AS) -c $(ASFLAGS) $< -o $@
+
+%elf: $(OBJS)
+       $(CC) $(OBJS) $(LDFLAGS) $(LIBS) -o $@
+
+%hex: %elf
+       $(HEX) $< $@
+
+%bin: %elf
+       $(BIN) $< $@
+
+%.lst: %.elf
+       $(OBJDUMP) -h -S $< > $@
+
+clean:
+       -rm -f $(OBJS)
+       -rm -f $(PROJECT).elf
+       -rm -f $(PROJECT).map
+       -rm -f $(PROJECT).hex
+       -rm -f $(PROJECT).bin
+       -rm -f $(PROJECT).lst
+       -rm -f $(SRC:.c=.c.bak)
+       -rm -f $(SRC:.c=.lst)
+       -rm -f $(ASRC:.s=.s.bak)
+       -rm -f $(ASRC:.s=.lst)
+       -rm -fR .dep
+
+# 
+# Include the dependency files, should be the last of the makefile
+#
+#-include $(shell mkdir .dep 2>/dev/null) $(wildcard .dep/*)
+
 # *** EOF ***
\ No newline at end of file
index 8c677b0e012443fb919ac4adc033e8bb065f6d81..d5c430bef6bb87c5e6fa5f4d5ed7311e1e64004c 100644 (file)
@@ -1,40 +1,40 @@
-/***************************************************************************\r
- *   Copyright (C) 2007 by Pavel Chromy                                    *\r
- *   chromy@asix.cz                                                        *\r
- *                                                                         *\r
- *   This program is free software; you can redistribute it and/or modify  *\r
- *   it under the terms of the GNU General Public License as published by  *\r
- *   the Free Software Foundation; either version 2 of the License, or     *\r
- *   (at your option) any later version.                                   *\r
- *                                                                         *\r
- *   This program is distributed in the hope that it will be useful,       *\r
- *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *\r
- *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *\r
- *   GNU General Public License for more details.                          *\r
- *                                                                         *\r
- *   You should have received a copy of the GNU General Public License     *\r
- *   along with this program; if not, write to the                         *\r
- *   Free Software Foundation, Inc.,                                       *\r
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *\r
- ***************************************************************************/\r
-#ifndef OCL_H\r
-#define OCL_H\r
-\r
-/* command/response mask */\r
-#define OCL_CMD_MASK 0xFFFF0000L\r
-\r
-/* commads */\r
-#define OCL_FLASH_BLOCK 0x0CFB0000L\r
-#define OCL_ERASE_BLOCK 0x0CEB0000L\r
-#define OCL_ERASE_ALL 0x0CEA0000L\r
-#define OCL_PROBE 0x0CBE0000L\r
-\r
-/* responses */\r
-#define OCL_CMD_DONE 0x0ACD0000L\r
-#define OCL_CMD_ERR 0x0ACE0000L\r
-#define OCL_CHKS_FAIL 0x0ACF0000L\r
-#define OCL_BUFF_OVER 0x0AB00000L\r
-\r
-#define OCL_CHKS_INIT 0xC100CD0CL\r
-\r
-#endif /* OCL_H */\r
+/***************************************************************************
+ *   Copyright (C) 2007 by Pavel Chromy                                    *
+ *   chromy@asix.cz                                                        *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ ***************************************************************************/
+#ifndef OCL_H
+#define OCL_H
+
+/* command/response mask */
+#define OCL_CMD_MASK 0xFFFF0000L
+
+/* commads */
+#define OCL_FLASH_BLOCK 0x0CFB0000L
+#define OCL_ERASE_BLOCK 0x0CEB0000L
+#define OCL_ERASE_ALL 0x0CEA0000L
+#define OCL_PROBE 0x0CBE0000L
+
+/* responses */
+#define OCL_CMD_DONE 0x0ACD0000L
+#define OCL_CMD_ERR 0x0ACE0000L
+#define OCL_CHKS_FAIL 0x0ACF0000L
+#define OCL_BUFF_OVER 0x0AB00000L
+
+#define OCL_CHKS_INIT 0xC100CD0CL
+
+#endif /* OCL_H */
index c73544af4c5fc2a81a7e17e09d85ae5957b8f32d..f1eea9762f146d7ef461c145e956b41ae97ac112 100644 (file)
@@ -1,46 +1,46 @@
-/***************************************************************************\r
- *   Copyright (C) 2007 by Pavel Chromy                                    *\r
- *   chromy@asix.cz                                                        *\r
- *                                                                         *\r
- *   This program is free software; you can redistribute it and/or modify  *\r
- *   it under the terms of the GNU General Public License as published by  *\r
- *   the Free Software Foundation; either version 2 of the License, or     *\r
- *   (at your option) any later version.                                   *\r
- *                                                                         *\r
- *   This program is distributed in the hope that it will be useful,       *\r
- *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *\r
- *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *\r
- *   GNU General Public License for more details.                          *\r
- *                                                                         *\r
- *   You should have received a copy of the GNU General Public License     *\r
- *   along with this program; if not, write to the                         *\r
- *   Free Software Foundation, Inc.,                                       *\r
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *\r
- ***************************************************************************/\r
-#ifndef platformH\r
-#define platformH\r
-\r
-#include "samregs.h"\r
-\r
-\r
-#define outb(_reg, _val)  (*((volatile unsigned char *)(_reg)) = (_val))\r
-#define outw(_reg, _val)  (*((volatile unsigned short *)(_reg)) = (_val))\r
-#define outr(_reg, _val)  (*((volatile unsigned int *)(_reg)) = (_val))\r
-\r
-#define inb(_reg)   (*((volatile unsigned char *)(_reg)))\r
-#define inw(_reg)   (*((volatile unsigned short *)(_reg)))\r
-#define inr(_reg)   (*((volatile unsigned int *)(_reg)))\r
-\r
-#define _BV(bit)    (1 << (bit))\r
-\r
-\r
-typedef signed char int8;\r
-typedef unsigned char uint8;\r
-\r
-typedef signed short int16;\r
-typedef unsigned short uint16;\r
-\r
-typedef signed int int32;\r
-typedef unsigned int uint32;\r
-\r
-#endif\r
+/***************************************************************************
+ *   Copyright (C) 2007 by Pavel Chromy                                    *
+ *   chromy@asix.cz                                                        *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ ***************************************************************************/
+#ifndef platformH
+#define platformH
+
+#include "samregs.h"
+
+
+#define outb(_reg, _val)  (*((volatile unsigned char *)(_reg)) = (_val))
+#define outw(_reg, _val)  (*((volatile unsigned short *)(_reg)) = (_val))
+#define outr(_reg, _val)  (*((volatile unsigned int *)(_reg)) = (_val))
+
+#define inb(_reg)   (*((volatile unsigned char *)(_reg)))
+#define inw(_reg)   (*((volatile unsigned short *)(_reg)))
+#define inr(_reg)   (*((volatile unsigned int *)(_reg)))
+
+#define _BV(bit)    (1 << (bit))
+
+
+typedef signed char int8;
+typedef unsigned char uint8;
+
+typedef signed short int16;
+typedef unsigned short uint16;
+
+typedef signed int int32;
+typedef unsigned int uint32;
+
+#endif
index 253e410c22bac20d5f2038ebf5ab5c1ff659b382..a48e6cfd8c4b74a82ca78863532d7ad83da5798a 100644 (file)
-/***************************************************************************\r
- *   Copyright (C) 2007 by Pavel Chromy                                    *\r
- *   chromy@asix.cz                                                        *\r
- *                                                                         *\r
- *   This program is free software; you can redistribute it and/or modify  *\r
- *   it under the terms of the GNU General Public License as published by  *\r
- *   the Free Software Foundation; either version 2 of the License, or     *\r
- *   (at your option) any later version.                                   *\r
- *                                                                         *\r
- *   This program is distributed in the hope that it will be useful,       *\r
- *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *\r
- *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *\r
- *   GNU General Public License for more details.                          *\r
- *                                                                         *\r
- *   You should have received a copy of the GNU General Public License     *\r
- *   along with this program; if not, write to the                         *\r
- *   Free Software Foundation, Inc.,                                       *\r
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *\r
- ***************************************************************************/\r
-#include "samflash.h"\r
-\r
-\r
-unsigned int flash_page_count=1024;\r
-unsigned int flash_page_size=256;\r
-\r
-/* pages per lock bit */\r
-unsigned int flash_lock_pages=1024/16;\r
-\r
-\r
-/* detect chip and set loader parameters */\r
-int flash_init(void)\r
-{\r
-       unsigned int nvpsiz;\r
-\r
-       nvpsiz=(inr(DBGU_CIDR)>>8)&0xf;\r
-\r
-       switch (nvpsiz) {\r
-               case 3:\r
-                       /* AT91SAM7x32 */\r
-                       flash_page_count=256;\r
-                       flash_page_size=128;\r
-                       flash_lock_pages=256/8;\r
-                       break;\r
-               case 5:\r
-                       /* AT91SAM7x64 */\r
-                       flash_page_count=512;\r
-                       flash_page_size=128;\r
-                       flash_lock_pages=512/16;\r
-                       break;\r
-               case 7:\r
-                       /* AT91SAM7x128*/\r
-                       flash_page_count=512;\r
-                       flash_page_size=256;\r
-                       flash_lock_pages=512/8;\r
-                       break;\r
-               case 9:\r
-                       /* AT91SAM7x256 */\r
-                       flash_page_count=1024;\r
-                       flash_page_size=256;\r
-                       flash_lock_pages=1024/16;\r
-                       break;\r
-               case 10:\r
-                       /* AT91SAM7x512 */\r
-                       flash_page_count=2048;\r
-                       flash_page_size=256;\r
-                       flash_lock_pages=2048/32;\r
-                       break;\r
-               default:\r
-                       return FLASH_STAT_INITE;\r
-       }\r
-       return FLASH_STAT_OK;\r
-}\r
-\r
-\r
-/* program single flash page */\r
-int flash_page_program(uint32 *data, int page_num)\r
-{\r
-       int i;\r
-       int efc_ofs;\r
-\r
-       uint32 *flash_ptr;\r
-       uint32 *data_ptr;\r
-\r
-       /* select proper controller */\r
-       if (page_num>=1024) efc_ofs=0x10;\r
-       else efc_ofs=0;\r
-\r
-       /* wait until FLASH is ready, just for sure */\r
-       while ((inr(MC_FSR+efc_ofs)&MC_FRDY)==0);\r
-\r
-       /* calculate page address, only lower 8 bits are used to address the latch,\r
-                but the upper part of address is needed for writing to proper EFC */\r
-       flash_ptr=(uint32 *)(FLASH_AREA_ADDR+(page_num*flash_page_size));\r
-       data_ptr=data;\r
-\r
-       /* copy data to latch */\r
-       for (i=flash_page_size/4; i; i--) {\r
-               /* we do not use memcpy to be sure that only 32 bit access is used */\r
-               *(flash_ptr++)=*(data_ptr++);\r
-       }\r
-\r
-       /* page number and page write command to FCR */\r
-       outr(MC_FCR+efc_ofs, ((page_num&0x3ff)<<8) | MC_KEY | MC_FCMD_WP);\r
-\r
-       /* wait until it's done */\r
-       while ((inr(MC_FSR+efc_ofs)&MC_FRDY)==0);\r
-\r
-       /* check for errors */\r
-       if ((inr(MC_FSR+efc_ofs)&MC_PROGE)) return FLASH_STAT_PROGE;\r
-       if ((inr(MC_FSR+efc_ofs)&MC_LOCKE)) return FLASH_STAT_LOCKE;\r
-\r
-#if 0\r
-       /* verify written data */\r
-       flash_ptr=(uint32 *)(FLASH_AREA_ADDR+(page_num*flash_page_size));\r
-       data_ptr=data;\r
-\r
-       for (i=flash_page_size/4; i; i--) {\r
-               if (*(flash_ptr++)!=*(data_ptr++)) return FLASH_STAT_VERIFE;\r
-       }\r
-#endif\r
-\r
-       return FLASH_STAT_OK;\r
-}\r
-\r
-\r
-int flash_erase_plane(int efc_ofs)\r
-{\r
-       unsigned int lockbits;\r
-       int page_num;\r
-\r
-       page_num=0;\r
-       lockbits=inr(MC_FSR+efc_ofs)>>16;\r
-       while (lockbits) {\r
-               if (lockbits&1) {\r
-\r
-                       /* wait until FLASH is ready, just for sure */\r
-                       while ((inr(MC_FSR+efc_ofs)&MC_FRDY)==0);\r
-\r
-                       outr(MC_FCR+efc_ofs, ((page_num&0x3ff)<<8) | 0x5a000004);\r
-\r
-                       /* wait until it's done */\r
-                       while ((inr(MC_FSR+efc_ofs)&MC_FRDY)==0);\r
-\r
-                       /* check for errors */\r
-                       if ((inr(MC_FSR+efc_ofs)&MC_PROGE)) return FLASH_STAT_PROGE;\r
-                       if ((inr(MC_FSR+efc_ofs)&MC_LOCKE)) return FLASH_STAT_LOCKE;\r
-\r
-               }\r
-               if ((page_num+=flash_lock_pages)>flash_page_count) break;\r
-               lockbits>>=1;\r
-       }\r
-\r
-       /* wait until FLASH is ready, just for sure */\r
-       while ((inr(MC_FSR+efc_ofs)&MC_FRDY)==0);\r
-\r
-       /* erase all command to FCR */\r
-       outr(MC_FCR+efc_ofs, 0x5a000008);\r
-\r
-       /* wait until it's done */\r
-       while ((inr(MC_FSR+efc_ofs)&MC_FRDY)==0);\r
-\r
-       /* check for errors */\r
-       if ((inr(MC_FSR+efc_ofs)&MC_PROGE)) return FLASH_STAT_PROGE;\r
-       if ((inr(MC_FSR+efc_ofs)&MC_LOCKE)) return FLASH_STAT_LOCKE;\r
-\r
-       /* set no erase before programming */\r
-       outr(MC_FMR+efc_ofs, inr(MC_FMR+efc_ofs)|0x80);\r
-\r
-       return FLASH_STAT_OK;\r
-}\r
-\r
-\r
-/* erase whole chip */\r
-int flash_erase_all(void)\r
-{\r
-       int result;\r
-       \r
-       if ((result=flash_erase_plane(0))!=FLASH_STAT_OK) return result;\r
-\r
-       /* the second flash controller, if any */\r
-       if (flash_page_count>1024) result=flash_erase_plane(0x10);\r
-\r
-       return result;\r
-}\r
-\r
-\r
-int flash_verify(uint32 adr, unsigned int len, uint8 *src)\r
-{\r
-       unsigned char *flash_ptr;\r
-\r
-       flash_ptr=(uint8 *)FLASH_AREA_ADDR+adr;\r
-       for ( ;len; len--) {\r
-               if (*(flash_ptr++)!=*(src++)) return FLASH_STAT_VERIFE;\r
-       }\r
-       return FLASH_STAT_OK;\r
-}\r
+/***************************************************************************
+ *   Copyright (C) 2007 by Pavel Chromy                                    *
+ *   chromy@asix.cz                                                        *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ ***************************************************************************/
+#include "samflash.h"
+
+
+unsigned int flash_page_count=1024;
+unsigned int flash_page_size=256;
+
+/* pages per lock bit */
+unsigned int flash_lock_pages=1024/16;
+
+
+/* detect chip and set loader parameters */
+int flash_init(void)
+{
+       unsigned int nvpsiz;
+
+       nvpsiz=(inr(DBGU_CIDR)>>8)&0xf;
+
+       switch (nvpsiz) {
+               case 3:
+                       /* AT91SAM7x32 */
+                       flash_page_count=256;
+                       flash_page_size=128;
+                       flash_lock_pages=256/8;
+                       break;
+               case 5:
+                       /* AT91SAM7x64 */
+                       flash_page_count=512;
+                       flash_page_size=128;
+                       flash_lock_pages=512/16;
+                       break;
+               case 7:
+                       /* AT91SAM7x128*/
+                       flash_page_count=512;
+                       flash_page_size=256;
+                       flash_lock_pages=512/8;
+                       break;
+               case 9:
+                       /* AT91SAM7x256 */
+                       flash_page_count=1024;
+                       flash_page_size=256;
+                       flash_lock_pages=1024/16;
+                       break;
+               case 10:
+                       /* AT91SAM7x512 */
+                       flash_page_count=2048;
+                       flash_page_size=256;
+                       flash_lock_pages=2048/32;
+                       break;
+               default:
+                       return FLASH_STAT_INITE;
+       }
+       return FLASH_STAT_OK;
+}
+
+
+/* program single flash page */
+int flash_page_program(uint32 *data, int page_num)
+{
+       int i;
+       int efc_ofs;
+
+       uint32 *flash_ptr;
+       uint32 *data_ptr;
+
+       /* select proper controller */
+       if (page_num>=1024) efc_ofs=0x10;
+       else efc_ofs=0;
+
+       /* wait until FLASH is ready, just for sure */
+       while ((inr(MC_FSR+efc_ofs)&MC_FRDY)==0);
+
+       /* calculate page address, only lower 8 bits are used to address the latch,
+                but the upper part of address is needed for writing to proper EFC */
+       flash_ptr=(uint32 *)(FLASH_AREA_ADDR+(page_num*flash_page_size));
+       data_ptr=data;
+
+       /* copy data to latch */
+       for (i=flash_page_size/4; i; i--) {
+               /* we do not use memcpy to be sure that only 32 bit access is used */
+               *(flash_ptr++)=*(data_ptr++);
+       }
+
+       /* page number and page write command to FCR */
+       outr(MC_FCR+efc_ofs, ((page_num&0x3ff)<<8) | MC_KEY | MC_FCMD_WP);
+
+       /* wait until it's done */
+       while ((inr(MC_FSR+efc_ofs)&MC_FRDY)==0);
+
+       /* check for errors */
+       if ((inr(MC_FSR+efc_ofs)&MC_PROGE)) return FLASH_STAT_PROGE;
+       if ((inr(MC_FSR+efc_ofs)&MC_LOCKE)) return FLASH_STAT_LOCKE;
+
+#if 0
+       /* verify written data */
+       flash_ptr=(uint32 *)(FLASH_AREA_ADDR+(page_num*flash_page_size));
+       data_ptr=data;
+
+       for (i=flash_page_size/4; i; i--) {
+               if (*(flash_ptr++)!=*(data_ptr++)) return FLASH_STAT_VERIFE;
+       }
+#endif
+
+       return FLASH_STAT_OK;
+}
+
+
+int flash_erase_plane(int efc_ofs)
+{
+       unsigned int lockbits;
+       int page_num;
+
+       page_num=0;
+       lockbits=inr(MC_FSR+efc_ofs)>>16;
+       while (lockbits) {
+               if (lockbits&1) {
+
+                       /* wait until FLASH is ready, just for sure */
+                       while ((inr(MC_FSR+efc_ofs)&MC_FRDY)==0);
+
+                       outr(MC_FCR+efc_ofs, ((page_num&0x3ff)<<8) | 0x5a000004);
+
+                       /* wait until it's done */
+                       while ((inr(MC_FSR+efc_ofs)&MC_FRDY)==0);
+
+                       /* check for errors */
+                       if ((inr(MC_FSR+efc_ofs)&MC_PROGE)) return FLASH_STAT_PROGE;
+                       if ((inr(MC_FSR+efc_ofs)&MC_LOCKE)) return FLASH_STAT_LOCKE;
+
+               }
+               if ((page_num+=flash_lock_pages)>flash_page_count) break;
+               lockbits>>=1;
+       }
+
+       /* wait until FLASH is ready, just for sure */
+       while ((inr(MC_FSR+efc_ofs)&MC_FRDY)==0);
+
+       /* erase all command to FCR */
+       outr(MC_FCR+efc_ofs, 0x5a000008);
+
+       /* wait until it's done */
+       while ((inr(MC_FSR+efc_ofs)&MC_FRDY)==0);
+
+       /* check for errors */
+       if ((inr(MC_FSR+efc_ofs)&MC_PROGE)) return FLASH_STAT_PROGE;
+       if ((inr(MC_FSR+efc_ofs)&MC_LOCKE)) return FLASH_STAT_LOCKE;
+
+       /* set no erase before programming */
+       outr(MC_FMR+efc_ofs, inr(MC_FMR+efc_ofs)|0x80);
+
+       return FLASH_STAT_OK;
+}
+
+
+/* erase whole chip */
+int flash_erase_all(void)
+{
+       int result;
+       
+       if ((result=flash_erase_plane(0))!=FLASH_STAT_OK) return result;
+
+       /* the second flash controller, if any */
+       if (flash_page_count>1024) result=flash_erase_plane(0x10);
+
+       return result;
+}
+
+
+int flash_verify(uint32 adr, unsigned int len, uint8 *src)
+{
+       unsigned char *flash_ptr;
+
+       flash_ptr=(uint8 *)FLASH_AREA_ADDR+adr;
+       for ( ;len; len--) {
+               if (*(flash_ptr++)!=*(src++)) return FLASH_STAT_VERIFE;
+       }
+       return FLASH_STAT_OK;
+}
index c793b9e8d37f44b2c997acdf2977c5836a34fb13..136e31478a5a01694b9f924204fb978f7a0569ca 100644 (file)
@@ -1,48 +1,48 @@
-/***************************************************************************\r
- *   Copyright (C) 2007 by Pavel Chromy                                    *\r
- *   chromy@asix.cz                                                        *\r
- *                                                                         *\r
- *   This program is free software; you can redistribute it and/or modify  *\r
- *   it under the terms of the GNU General Public License as published by  *\r
- *   the Free Software Foundation; either version 2 of the License, or     *\r
- *   (at your option) any later version.                                   *\r
- *                                                                         *\r
- *   This program is distributed in the hope that it will be useful,       *\r
- *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *\r
- *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *\r
- *   GNU General Public License for more details.                          *\r
- *                                                                         *\r
- *   You should have received a copy of the GNU General Public License     *\r
- *   along with this program; if not, write to the                         *\r
- *   Free Software Foundation, Inc.,                                       *\r
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *\r
- ***************************************************************************/\r
-#ifndef samflashH\r
-#define samflashH\r
-\r
-#include "platform.h"\r
-\r
-#define FLASH_AREA_ADDR 0x100000\r
-\r
-#define FLASH_STAT_OK 0\r
-#define FLASH_STAT_PROGE 1\r
-#define FLASH_STAT_LOCKE 2\r
-#define FLASH_STAT_VERIFE 3\r
-#define FLASH_STAT_INITE 4\r
-\r
-extern unsigned int flash_page_count;\r
-extern unsigned int flash_page_size; /* words */\r
-\r
-/* detect chip and set loader parameters */\r
-extern int flash_init(void);\r
-\r
-/* program single flash page */\r
-extern int flash_page_program(uint32 *data, int page_num);\r
-\r
-/* erase whole chip */\r
-extern int flash_erase_all(void);\r
-\r
-/* verify written data */\r
-extern int flash_verify(uint32 adr, unsigned int len, uint8 *src);\r
-\r
-#endif\r
+/***************************************************************************
+ *   Copyright (C) 2007 by Pavel Chromy                                    *
+ *   chromy@asix.cz                                                        *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ ***************************************************************************/
+#ifndef samflashH
+#define samflashH
+
+#include "platform.h"
+
+#define FLASH_AREA_ADDR 0x100000
+
+#define FLASH_STAT_OK 0
+#define FLASH_STAT_PROGE 1
+#define FLASH_STAT_LOCKE 2
+#define FLASH_STAT_VERIFE 3
+#define FLASH_STAT_INITE 4
+
+extern unsigned int flash_page_count;
+extern unsigned int flash_page_size; /* words */
+
+/* detect chip and set loader parameters */
+extern int flash_init(void);
+
+/* program single flash page */
+extern int flash_page_program(uint32 *data, int page_num);
+
+/* erase whole chip */
+extern int flash_erase_all(void);
+
+/* verify written data */
+extern int flash_verify(uint32 adr, unsigned int len, uint8 *src);
+
+#endif
index 7d3654fe529287ddc64196b81e8ec95dbb424800..b206fd28e465533c4cf56654110639794c9a607a 100644 (file)
@@ -1,83 +1,83 @@
-/*\r
- * Copyright (C) 2005-2006 by egnite Software GmbH. All rights reserved.\r
- *\r
- * Redistribution and use in source and binary forms, with or without\r
- * modification, are permitted provided that the following conditions\r
- * are met:\r
- *\r
- * 1. Redistributions of source code must retain the above copyright\r
- *    notice, this list of conditions and the following disclaimer.\r
- * 2. Redistributions in binary form must reproduce the above copyright\r
- *    notice, this list of conditions and the following disclaimer in the\r
- *    documentation and/or other materials provided with the distribution.\r
- * 3. Neither the name of the copyright holders nor the names of\r
- *    contributors may be used to endorse or promote products derived\r
- *    from this software without specific prior written permission.\r
- *\r
- * THIS SOFTWARE IS PROVIDED BY EGNITE SOFTWARE GMBH AND CONTRIBUTORS\r
- * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\r
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\r
- * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL EGNITE\r
- * SOFTWARE GMBH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\r
- * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\r
- * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\r
- * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED\r
- * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\r
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF\r
- * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\r
- * SUCH DAMAGE.\r
- *\r
- * For additional information see http://www.ethernut.de/\r
- */\r
-\r
-\r
-#ifndef samregsH\r
-#define samregsH\r
-\r
-\r
-/*\r
- * Register definitions below copied from NutOS\r
- */\r
-\r
-#define DBGU_BASE       0xFFFFF200      /*!< \brief DBGU base address. */\r
-\r
-#define DBGU_CIDR_OFF           0x00000040      /*!< \brief DBGU chip ID register offset. */\r
-#define DBGU_CIDR   (DBGU_BASE + DBGU_CIDR_OFF) /*!< \brief DBGU chip ID register. */\r
-\r
-\r
-#define MC_BASE         0xFFFFFF00      /*!< \brief Memory controller base. */\r
-\r
-#define MC_FMR_OFF              0x00000060      /*!< \brief MC flash mode register offset. */\r
-#define MC_FMR      (MC_BASE + MC_FMR_OFF)      /*!< \brief MC flash mode register address. */\r
-#define MC_FRDY                 0x00000001      /*!< \brief Flash ready. */\r
-#define MC_LOCKE                0x00000004      /*!< \brief Lock error. */\r
-#define MC_PROGE                0x00000008      /*!< \brief Programming error. */\r
-#define MC_NEBP                 0x00000080      /*!< \brief No erase before programming. */\r
-#define MC_FWS_MASK             0x00000300      /*!< \brief Flash wait state mask. */\r
-#define MC_FWS_1R2W             0x00000000      /*!< \brief 1 cycle for read, 2 for write operations. */\r
-#define MC_FWS_2R3W             0x00000100      /*!< \brief 2 cycles for read, 3 for write operations. */\r
-#define MC_FWS_3R4W             0x00000200      /*!< \brief 3 cycles for read, 4 for write operations. */\r
-#define MC_FWS_4R4W             0x00000300      /*!< \brief 4 cycles for read and write operations. */\r
-#define MC_FMCN_MASK            0x00FF0000      /*!< \brief Flash microsecond cycle number mask. */\r
-\r
-#define MC_FCR_OFF              0x00000064      /*!< \brief MC flash command register offset. */\r
-#define MC_FCR      (MC_BASE + MC_FCR_OFF)      /*!< \brief MC flash command register address. */\r
-#define MC_FCMD_MASK            0x0000000F      /*!< \brief Flash command mask. */\r
-#define MC_FCMD_NOP             0x00000000      /*!< \brief No command. */\r
-#define MC_FCMD_WP              0x00000001      /*!< \brief Write page. */\r
-#define MC_FCMD_SLB             0x00000002      /*!< \brief Set lock bit. */\r
-#define MC_FCMD_WPL             0x00000003      /*!< \brief Write page and lock. */\r
-#define MC_FCMD_CLB             0x00000004      /*!< \brief Clear lock bit. */\r
-#define MC_FCMD_EA              0x00000008      /*!< \brief Erase all. */\r
-#define MC_FCMD_SGPB            0x0000000B      /*!< \brief Set general purpose NVM bit. */\r
-#define MC_FCMD_CGPB            0x0000000D      /*!< \brief Clear general purpose NVM bit. */\r
-#define MC_FCMD_SSB             0x0000000F      /*!< \brief Set security bit. */\r
-#define MC_PAGEN_MASK           0x0003FF00      /*!< \brief Page number mask. */\r
-#define MC_KEY                  0x5A000000      /*!< \brief Writing protect key. */\r
-\r
-#define MC_FSR_OFF              0x00000068      /*!< \brief MC flash status register offset. */\r
-#define MC_FSR      (MC_BASE + MC_FSR_OFF)      /*!< \brief MC flash status register address. */\r
-#define MC_SECURITY             0x00000010      /*!< \brief Security bit status. */\r
-\r
-\r
-#endif\r
+/*
+ * Copyright (C) 2005-2006 by egnite Software GmbH. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ * 3. Neither the name of the copyright holders nor the names of
+ *    contributors may be used to endorse or promote products derived
+ *    from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY EGNITE SOFTWARE GMBH AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+ * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL EGNITE
+ * SOFTWARE GMBH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+ * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
+ * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
+ * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
+ * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ * For additional information see http://www.ethernut.de/
+ */
+
+
+#ifndef samregsH
+#define samregsH
+
+
+/*
+ * Register definitions below copied from NutOS
+ */
+
+#define DBGU_BASE       0xFFFFF200      /*!< \brief DBGU base address. */
+
+#define DBGU_CIDR_OFF           0x00000040      /*!< \brief DBGU chip ID register offset. */
+#define DBGU_CIDR   (DBGU_BASE + DBGU_CIDR_OFF) /*!< \brief DBGU chip ID register. */
+
+
+#define MC_BASE         0xFFFFFF00      /*!< \brief Memory controller base. */
+
+#define MC_FMR_OFF              0x00000060      /*!< \brief MC flash mode register offset. */
+#define MC_FMR      (MC_BASE + MC_FMR_OFF)      /*!< \brief MC flash mode register address. */
+#define MC_FRDY                 0x00000001      /*!< \brief Flash ready. */
+#define MC_LOCKE                0x00000004      /*!< \brief Lock error. */
+#define MC_PROGE                0x00000008      /*!< \brief Programming error. */
+#define MC_NEBP                 0x00000080      /*!< \brief No erase before programming. */
+#define MC_FWS_MASK             0x00000300      /*!< \brief Flash wait state mask. */
+#define MC_FWS_1R2W             0x00000000      /*!< \brief 1 cycle for read, 2 for write operations. */
+#define MC_FWS_2R3W             0x00000100      /*!< \brief 2 cycles for read, 3 for write operations. */
+#define MC_FWS_3R4W             0x00000200      /*!< \brief 3 cycles for read, 4 for write operations. */
+#define MC_FWS_4R4W             0x00000300      /*!< \brief 4 cycles for read and write operations. */
+#define MC_FMCN_MASK            0x00FF0000      /*!< \brief Flash microsecond cycle number mask. */
+
+#define MC_FCR_OFF              0x00000064      /*!< \brief MC flash command register offset. */
+#define MC_FCR      (MC_BASE + MC_FCR_OFF)      /*!< \brief MC flash command register address. */
+#define MC_FCMD_MASK            0x0000000F      /*!< \brief Flash command mask. */
+#define MC_FCMD_NOP             0x00000000      /*!< \brief No command. */
+#define MC_FCMD_WP              0x00000001      /*!< \brief Write page. */
+#define MC_FCMD_SLB             0x00000002      /*!< \brief Set lock bit. */
+#define MC_FCMD_WPL             0x00000003      /*!< \brief Write page and lock. */
+#define MC_FCMD_CLB             0x00000004      /*!< \brief Clear lock bit. */
+#define MC_FCMD_EA              0x00000008      /*!< \brief Erase all. */
+#define MC_FCMD_SGPB            0x0000000B      /*!< \brief Set general purpose NVM bit. */
+#define MC_FCMD_CGPB            0x0000000D      /*!< \brief Clear general purpose NVM bit. */
+#define MC_FCMD_SSB             0x0000000F      /*!< \brief Set security bit. */
+#define MC_PAGEN_MASK           0x0003FF00      /*!< \brief Page number mask. */
+#define MC_KEY                  0x5A000000      /*!< \brief Writing protect key. */
+
+#define MC_FSR_OFF              0x00000068      /*!< \brief MC flash status register offset. */
+#define MC_FSR      (MC_BASE + MC_FSR_OFF)      /*!< \brief MC flash status register address. */
+#define MC_SECURITY             0x00000010      /*!< \brief Security bit status. */
+
+
+#endif
index 570b3b344b2919b95d19f27de300992118f4abd8..852c0ad670fe41382542ffaa3c90375163e41a68 100644 (file)
-<html>\r
-<head>\r
-<title>Test results for revision 607</title>\r
-</head>\r
-\r
-<body>\r
-<H1>Test cases</H1>\r
-<H2>Test case results</H2>\r
-The test results are stored in seperate documents. One document for\r
-each subversion number.\r
-<table border="1">\r
-       <tr><td>Test results</td><td>comment</td></tr>\r
-       <tr><td>607</a></td><td></td></tr>\r
-       <tr><td><a href="results/template.html">template</a></td><td>Test results template</td></tr>\r
-</table>\r
-\r
-<H1>SAM7S64</H1>\r
-\r
-<H2>Connectivity</H2>\r
-<table border=1>\r
-       <tr>\r
-               <td>ID</td>\r
-               <td>Target</td>\r
-               <td>Interface</td>\r
-               <td>Description</td>\r
-               <td>Initial state</td>\r
-               <td>Input</td>\r
-               <td>Expected output</td>\r
-               <td>Actual output</td>\r
-               <td>Pass/Fail</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="CON001"/>CON001</td>\r
-               <td>SAM7S64</td>\r
-               <td>ZY1000</td>\r
-               <td>Telnet connection</td>\r
-               <td>Power on, jtag target attached</td>\r
-               <td>On console, type<br><code>telnet ip port</code></td>\r
-               <td><code>Open On-Chip Debugger<br>></code></td>\r
-               <td><code>Open On-Chip Debugger<br>></code></td>\r
-               <td>PASS</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="CON002"/>CON002</td>\r
-               <td>SAM7S64</td>\r
-               <td>ZY1000</td>\r
-               <td>GDB server connection</td>\r
-               <td>Power on, jtag target attached</td>\r
-               <td>On GDB console, type<br><code>target remote ip:port</code></td>\r
-               <td><code>Remote debugging using 10.0.0.73:3333</code></td>\r
-               <td><code>Remote debugging using 10.0.0.73:3333</code></td>\r
-               <td>PASS</td>\r
-       </tr>\r
-</table>\r
-\r
-<H2>Reset</H2>\r
-<table border=1>\r
-       <tr>\r
-               <td>ID</td>\r
-               <td>Target</td>\r
-               <td>Interface</td>\r
-               <td>Description</td>\r
-               <td>Initial state</td>\r
-               <td>Input</td>\r
-               <td>Expected output</td>\r
-               <td>Actual output</td>\r
-               <td>Pass/Fail</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="RES001"/>RES001</td>\r
-               <td>SAM7S64</td>\r
-               <td>ZY1000</td>\r
-               <td>Reset halt on a blank target</td>\r
-               <td>Erase all the content of the flash</td>\r
-               <td>Connect via the telnet interface and type <br><code>reset halt</code></td>\r
-               <td>Reset should return without error and the output should contain<br><code>target state: halted<br>pc = 0</code></td>\r
-               <td>\r
-                       <code>\r
-                               JTAG device found: 0x3f0f0f0f (Manufacturer: 0x787, Part: 0xf0f0, Version: 0x3)<br>\r
-                               nSRST pulls nTRST, falling back to "reset run_and_halt"<br>\r
-                               target state: halted<br>\r
-                               target halted in ARM state due to debug request, current mode: Supervisor<br>\r
-                               cpsr: 0x60000013 pc: 0x00100178\r
-                       </code>\r
-               </td>\r
-               <td>PASS</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="RES002"/>RES002</td>\r
-               <td>SAM7S64</td>\r
-               <td>ZY1000</td>\r
-               <td>Reset init on a blank target</td>\r
-               <td>Erase all the content of the flash</td>\r
-               <td>Connect via the telnet interface and type <br><code>reset init</code></td>\r
-               <td>Reset should return without error and the output should contain <br><code>executing reset script 'name_of_the_script'</code></td>\r
-               <td>\r
-                       <code>\r
-                               JTAG device found: 0x3f0f0f0f (Manufacturer: 0x787, Part: 0xf0f0, Version: 0x3)<br>\r
-                               nSRST pulls nTRST, falling back to "reset run_and_init"<br>\r
-                               target state: halted<br>\r
-                               target halted in ARM state due to debug request, current mode: Supervisor<br>\r
-                               cpsr: 0x600000d3 pc: 0x00003e24<br>\r
-                               executing reset script 'event/sam7s256_reset.script'\r
-                       </code>\r
-               </td>\r
-               <td>PASS</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="RES003"/>RES003</td>\r
-               <td>SAM7S64</td>\r
-               <td>ZY1000</td>\r
-               <td>Reset after a power cycle of the target</td>\r
-               <td>Reset the target then power cycle the target</td>\r
-               <td>Connect via the telnet interface and type <br><code>reset halt</code> after the power was detected</td>\r
-               <td>Reset should return without error and the output should contain<br><code>target state: halted</code></td>\r
-               <td>\r
-                       <code>\r
-                               JTAG device found: 0x3f0f0f0f (Manufacturer: 0x787, Part: 0xf0f0, Version: 0x3)<br>\r
-                               nSRST pulls nTRST, falling back to "reset run_and_halt"<br>\r
-                               target state: halted<br>\r
-                               target halted in ARM state due to debug request, current mode: Supervisor<br>\r
-                               cpsr: 0x300000d3 pc: 0x00003a38\r
-                       </code>\r
-               </td>\r
-               <td>PASS</td>\r
-       </tr>\r
-</table>\r
-\r
-<H2>JTAG Speed</H2>\r
-<table border=1>\r
-       <tr>\r
-               <td>ID</td>\r
-               <td>Target</td>\r
-               <td>ZY1000</td>\r
-               <td>Description</td>\r
-               <td>Initial state</td>\r
-               <td>Input</td>\r
-               <td>Expected output</td>\r
-               <td>Actual output</td>\r
-               <td>Pass/Fail</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="SPD001"/>RES001</td>\r
-               <td>SAM7S64</td>\r
-               <td>ZY1000</td>\r
-               <td>16MHz on normal operation</td>\r
-               <td>Reset init the target according to RES002 </td>\r
-               <td>Exercise a memory access over the JTAG, for example <br><code>mdw 0x0 32</code></td>\r
-               <td>The command should run without any errors. If any JTAG checking errors happen, the test failed</td>\r
-               <td>\r
-                       <code>\r
-                               > jtag_khz 16000<br>\r
-                               > mdw 0 32<br>\r
-                               0x00000000: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>\r
-                               0x00000020: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>\r
-                               0x00000040: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>\r
-                               0x00000060: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff\r
-                       </code>\r
-               </td>\r
-               <td>PASS</td>\r
-       </tr>\r
-</table>\r
-\r
-<H2>Debugging</H2>\r
-<table border=1>\r
-       <tr>\r
-               <td>ID</td>\r
-               <td>Target</td>\r
-               <td>Interface</td>\r
-               <td>Description</td>\r
-               <td>Initial state</td>\r
-               <td>Input</td>\r
-               <td>Expected output</td>\r
-               <td>Actual output</td>\r
-               <td>Pass/Fail</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="DBG001"/>DBG001</td>\r
-               <td>SAM7S64</td>\r
-               <td>ZY1000</td>\r
-               <td>Load is working</td>\r
-               <td>Reset init is working, RAM is accesible, GDB server is started</td>\r
-               <td>On the console of the OS: <br>\r
-                       <code>arm-elf-gdb test_ram.elf</code><br>\r
-                       <code>(gdb) target remote ip:port</code><br>\r
-                       <code>(gdb) load</load>\r
-               </td>\r
-               <td>Load should return without error, typical output looks like:<br>\r
-                       <code>\r
-                               Loading section .text, size 0x14c lma 0x0<br>\r
-                               Start address 0x40, load size 332<br>\r
-                               Transfer rate: 180 bytes/sec, 332 bytes/write.<br>\r
-                       </code>\r
-               </td>\r
-               <td><code>\r
-                       (gdb) load<br>\r
-                       Loading section .text, size 0x194 lma 0x200000<br>\r
-                       Start address 0x200040, load size 404<br>\r
-                       Transfer rate: 17470 bits/sec, 404 bytes/write.\r
-               </code></td>\r
-               <td>PASS</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="DBG002"/>DBG002</td>\r
-               <td>SAM7S64</td>\r
-               <td>ZY1000</td>\r
-               <td>Software breakpoint</td>\r
-               <td>Load the test_ram.elf application, use instructions from GDB001</td>\r
-               <td>In the GDB console:<br>\r
-                       <code>\r
-                               (gdb) monitor arm7_9 sw_bkpts enable<br>\r
-                               software breakpoints enabled<br>\r
-                               (gdb) break main<br>\r
-                               Breakpoint 1 at 0xec: file src/main.c, line 71.<br>\r
-                               (gdb) continue<br>\r
-                               Continuing.\r
-                       </code>\r
-               </td>\r
-               <td>The software breakpoint should be reached, a typical output looks like:<br>\r
-                       <code>\r
-                               target state: halted<br>\r
-                               target halted in ARM state due to breakpoint, current mode: Supervisor<br>\r
-                               cpsr: 0x000000d3 pc: 0x000000ec<br>\r
-                               <br>\r
-                               Breakpoint 1, main () at src/main.c:71<br>\r
-                               71        DWORD a = 1;\r
-                       </code>\r
-               </td>\r
-               <td>\r
-                       <code>\r
-                               (gdb) break main<br>\r
-                               Breakpoint 2 at 0x200134: file src/main.c, line 69.<br>\r
-                               (gdb) c<br>\r
-                               Continuing.<br>\r
-                               target state: halted<br>\r
-                               target halted in ARM state due to breakpoint, current mode: Supervisor<br>\r
-                               cpsr: 0x60000013 pc: 0x00200134<br>\r
-                               <br>\r
-                               Breakpoint 2, main () at src/main.c:69<br>\r
-                               69        DWORD a = 1;\r
-                       </code>\r
-               </td>\r
-               <td>PASS</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="DBG003"/>DBG003</td>\r
-               <td>SAM7S64</td>\r
-               <td>ZY1000</td>\r
-               <td>Single step in a RAM application</td>\r
-               <td>Load the test_ram.elf application, use instructions from GDB001, break in main using the instructions from GDB002</td>\r
-               <td>In GDB, type <br><code>(gdb) step</code></td>\r
-               <td>The next instruction should be reached, typical output:<br>\r
-                       <code>\r
-                               (gdb) step<br>\r
-                               target state: halted<br>\r
-                               target halted in ARM state due to single step, current mode: Abort<br>\r
-                               cpsr: 0x20000097 pc: 0x000000f0<br>\r
-                               target state: halted<br>\r
-                               target halted in ARM state due to single step, current mode: Abort<br>\r
-                               cpsr: 0x20000097 pc: 0x000000f4<br>\r
-                               72        DWORD b = 2;\r
-                       </code>\r
-               </td>\r
-               <td>\r
-                               <code>\r
-                               (gdb) step<br>\r
-                               target state: halted<br>\r
-                               target halted in ARM state due to single step, current mode: Abort<br>\r
-                               cpsr: 0x20000097 pc: 0x000000f0<br>\r
-                               target state: halted<br>\r
-                               target halted in ARM state due to single step, current mode: Abort<br>\r
-                               cpsr: 0x20000097 pc: 0x000000f4<br>\r
-                               72        DWORD b = 2;\r
-                       </code>\r
-               </td>\r
-               <td>PASS</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="DBG004"/>DBG004</td>\r
-               <td>SAM7S64</td>\r
-               <td>ZY1000</td>\r
-               <td>Software break points are working after a reset</td>\r
-               <td>Load the test_ram.elf application, use instructions from GDB001, break in main using the instructions from GDB002</td>\r
-               <td>In GDB, type <br><code>\r
-                       (gdb) monitor reset<br>\r
-                       (gdb) load<br>\r
-                       (gdb) continue<br>\r
-                       </code></td>\r
-               <td>The breakpoint should be reached, typical output:<br>\r
-                       <code>\r
-                               target state: halted<br>\r
-                               target halted in ARM state due to breakpoint, current mode: Supervisor<br>\r
-                               cpsr: 0x000000d3 pc: 0x000000ec<br>\r
-                               <br>\r
-                               Breakpoint 1, main () at src/main.c:71<br>\r
-                               71        DWORD a = 1;\r
-                       </code>\r
-               </td>\r
-               <td><code>\r
-                       (gdb) moni reset<br>\r
-                       JTAG device found: 0x3f0f0f0f (Manufacturer: 0x787, Part: 0xf0f0, Version: 0x3)<br>\r
-                       target state: halted<br>\r
-                       target halted in ARM state due to debug request, current mode: Supervisor<br>\r
-                       cpsr: 0x600000d3 pc: 0x00003e28<br>\r
-                       executing reset script 'event/sam7s256_reset.script'<br>\r
-                       (gdb) load<br>\r
-                       Loading section .text, size 0x194 lma 0x200000<br>\r
-                       Start address 0x200040, load size 404<br>\r
-                       Transfer rate: 20455 bits/sec, 404 bytes/write.<br>\r
-                       (gdb) continue<br>\r
-                       Continuing.<br>\r
-                       target state: halted<br>\r
-                       target halted in ARM state due to breakpoint, current mode: Supervisor<br>\r
-                       cpsr: 0x60000013 pc: 0x00200134<br>\r
-                       <br>\r
-                       Breakpoint 2, main () at src/main.c:69<br>\r
-                       69        DWORD a = 1;\r
-               </code></td>\r
-               <td>PASS</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="DBG005"/>DBG005</td>\r
-               <td>SAM7S64</td>\r
-               <td>ZY1000</td>\r
-               <td>Hardware breakpoint</td>\r
-               <td>Flash the test_rom.elf application. Make this test after FLA004 has passed</td>\r
-               <td>Be sure that <code>gdb_memory_map</code> and <code>gdb_flash_program</code> are enabled. In GDB, type <br>\r
-                       <code>\r
-                               (gdb) monitor reset<br>\r
-                               (gdb) load<br>\r
-                               Loading section .text, size 0x194 lma 0x100000<br>\r
-                               Start address 0x100040, load size 404<br>\r
-                               Transfer rate: 179 bytes/sec, 404 bytes/write.<br>\r
-                               (gdb) monitor arm7_9  force_hw_bkpts enable<br>\r
-                               force hardware breakpoints enabled<br>\r
-                               (gdb) break main<br>\r
-                               Breakpoint 1 at 0x100134: file src/main.c, line 69.<br>\r
-                               (gdb) continue<br>\r
-                       </code>\r
-               </td>\r
-               <td>The breakpoint should be reached, typical output:<br>\r
-                       <code>\r
-                               Continuing.<br>\r
-                               <br>\r
-                               Breakpoint 1, main () at src/main.c:69<br>\r
-                               69        DWORD a = 1;<br>\r
-                       </code>\r
-               </td>\r
-               <td>\r
-               <code>\r
-                       (gdb) break main<br>\r
-                       Breakpoint 1 at 0x100134: file src/main.c, line 69.<br>\r
-                       (gdb) c<br>\r
-                       Continuing.<br>\r
-                       target state: halted<br>\r
-                       target halted in ARM state due to breakpoint, current mode: Supervisor<br>\r
-                       cpsr: 0x60000013 pc: 0x00100134<br>\r
-                       <br>\r
-                       Breakpoint 1, main () at src/main.c:69<br>\r
-                       69        DWORD a = 1;\r
-               </code>\r
-               </td>\r
-               <td>PASS</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="DBG006"/>DBG006</td>\r
-               <td>SAM7S64</td>\r
-               <td>ZY1000</td>\r
-               <td>Hardware breakpoint is set after a reset</td>\r
-               <td>Follow the instructions to flash and insert a hardware breakpoint from DBG005</td>\r
-               <td>In GDB, type <br>\r
-                       <code>\r
-                               (gdb) monitor reset<br>\r
-                               (gdb) monitor reg pc 0x100000<br>\r
-                               pc (/32): 0x00100000<br>\r
-                               (gdb) continue\r
-                       </code><br>\r
-                       where the value inserted in PC is the start address of the application\r
-               </td>\r
-               <td>The breakpoint should be reached, typical output:<br>\r
-                       <code>\r
-                               Continuing.<br>\r
-                               <br>\r
-                               Breakpoint 1, main () at src/main.c:69<br>\r
-                               69        DWORD a = 1;<br>\r
-                       </code>\r
-               </td>\r
-               <td>\r
-               <code>\r
-                       Continuing.<br>\r
-                       target state: halted<br>\r
-                       target halted in ARM state due to single step, current mode: Supervisor<br>\r
-                       cpsr: 0x60000013 pc: 0x00100040<br>\r
-                       target state: halted<br>\r
-                       target halted in ARM state due to breakpoint, current mode: Supervisor<br>\r
-                       cpsr: 0x60000013 pc: 0x00100134<br>\r
-                       <br>\r
-                       Breakpoint 1, main () at src/main.c:69<br>\r
-                       69        DWORD a = 1;\r
-               </code><br>\r
-               <b>Aren't there too many "halted" signs?</b>\r
-               </td>\r
-               <td>PASS</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="DBG007"/>DBG007</td>\r
-               <td>SAM7S64</td>\r
-               <td>ZY1000</td>\r
-               <td>Single step in ROM</td>\r
-               <td>Flash the test_rom.elf application and set a breakpoint in main, use DBG005. Make this test after FLA004 has passed</td>\r
-               <td>Be sure that <code>gdb_memory_map</code> and <code>gdb_flash_program</code> are enabled. In GDB, type <br>\r
-                       <code>\r
-                               (gdb) monitor reset<br>\r
-                               (gdb) load<br>\r
-                               Loading section .text, size 0x194 lma 0x100000<br>\r
-                               Start address 0x100040, load size 404<br>\r
-                               Transfer rate: 179 bytes/sec, 404 bytes/write.<br>\r
-                               (gdb) monitor arm7_9  force_hw_bkpts enable<br>\r
-                               force hardware breakpoints enabled<br>\r
-                               (gdb) break main<br>\r
-                               Breakpoint 1 at 0x100134: file src/main.c, line 69.<br>\r
-                               (gdb) continue<br>\r
-                               Continuing.<br>\r
-                               <br>\r
-                               Breakpoint 1, main () at src/main.c:69<br>\r
-                               69        DWORD a = 1;<br>\r
-                               (gdb) step\r
-                       </code>\r
-               </td>\r
-               <td>The breakpoint should be reached, typical output:<br>\r
-                       <code>\r
-                               target state: halted<br>\r
-                               target halted in ARM state due to single step, current mode: Supervisor<br>\r
-                               cpsr: 0x60000013 pc: 0x0010013c<br>\r
-                               70        DWORD b = 2;<br>\r
-                       </code>\r
-               </td>\r
-               <td><code>\r
-                       (gdb) step<br>\r
-                       target state: halted<br>\r
-                       target halted in ARM state due to single step, current mode: Supervisor<br>\r
-                       cpsr: 0x60000013 pc: 0x00100138<br>\r
-                       target state: halted<br>\r
-                       target halted in ARM state due to single step, current mode: Supervisor<br>\r
-                       cpsr: 0x60000013 pc: 0x0010013c<br>\r
-                       70        DWORD b = 2;\r
-               </code></td>\r
-               <td>PASS</td>\r
-       </tr>\r
-</table>\r
-\r
-<H2>RAM access</H2>\r
-Note: these tests are not designed to test/debug the target, but to test functionalities!\r
-<table border=1>\r
-       <tr>\r
-               <td>ID</td>\r
-               <td>Target</td>\r
-               <td>Interface</td>\r
-               <td>Description</td>\r
-               <td>Initial state</td>\r
-               <td>Input</td>\r
-               <td>Expected output</td>\r
-               <td>Actual output</td>\r
-               <td>Pass/Fail</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="RAM001"/>RAM001</td>\r
-               <td>SAM7S64</td>\r
-               <td>ZY1000</td>\r
-               <td>32 bit Write/read RAM</td>\r
-               <td>Reset init is working</td>\r
-               <td>On the telnet interface<br>\r
-                       <code>  > mww ram_address 0xdeadbeef 16<br>\r
-                                       > mdw ram_address 32\r
-                       </code>\r
-               </td>\r
-               <td>The commands should execute without error. A clear failure is a memory access exception. The result of running the commands should be a list of 16 locations 32bit long containing 0xdeadbeef.<br>\r
-                       <code>\r
-                               > mww 0x0 0xdeadbeef 16<br>\r
-                               > mdw 0x0 32<br>\r
-                               0x00000000: deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef<br>\r
-                               0x00000020: deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef<br>\r
-                               0x00000040: e1a00000 e59fa51c e59f051c e04aa000 00080017 00009388 00009388 00009388<br>\r
-                               0x00000060: 00009388 0002c2c0 0002c2c0 000094f8 000094f4 00009388 00009388 00009388<br>\r
-                       </code>\r
-               </td>\r
-               <td>\r
-               <code>\r
-                       > mww 0x00200000 0xdeadbeef 16<br>\r
-                       > mdw 0x00200000 32<br>\r
-                       0x00200000: deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef<br>\r
-                       0x00200020: deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef<br>\r
-                       0x00200040: e59f10b4 e3a00902 e5810004 e59f00ac e59f10ac e5810000 e3e010ff e59f00a4<br>\r
-                       0x00200060: e5810060 e59f10a0 e3e00000 e5810130 e5810124 e321f0db e59fd090 e321f0d7\r
-               </code>\r
-               </td>\r
-               <td>PASS</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="RAM002"/>RAM002</td>\r
-               <td>SAM7S64</td>\r
-               <td>ZY1000</td>\r
-               <td>16 bit Write/read RAM</td>\r
-               <td>Reset init is working</td>\r
-               <td>On the telnet interface<br>\r
-                       <code>  > mwh ram_address 0xbeef 16<br>\r
-                                       > mdh ram_address 32\r
-                       </code>\r
-               </td>\r
-               <td>The commands should execute without error. A clear failure is a memory access exception. The result of running the commands should be a list of 16 locations 16bit long containing 0xbeef.<br>\r
-                       <code>\r
-                               > mwh 0x0 0xbeef 16<br>\r
-                               > mdh 0x0 32<br>\r
-                               0x00000000: beef beef beef beef beef beef beef beef beef beef beef beef beef beef beef beef<br>\r
-                               0x00000020: 00e0 0000 021c 0000 0240 0000 026c 0000 0288 0000 0000 0000 0388 0000 0350 0000<br>\r
-                               >\r
-                       </code>\r
-               </td>\r
-               <td><code>\r
-                       > mwh 0x00200000 0xbeef 16<br>\r
-                       > mdh 0x00200000 32<br>\r
-                       0x00200000: beef beef beef beef beef beef beef beef beef beef beef beef beef beef beef beef<br>\r
-                       0x00200020: 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000\r
-               </code></td>\r
-               <td>PASS</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="RAM003"/>RAM003</td>\r
-               <td>SAM7S64</td>\r
-               <td>ZY1000</td>\r
-               <td>8 bit Write/read RAM</td>\r
-               <td>Reset init is working</td>\r
-               <td>On the telnet interface<br>\r
-                       <code>  > mwb ram_address 0xab 16<br>\r
-                                       > mdb ram_address 32\r
-                       </code>\r
-               </td>\r
-               <td>The commands should execute without error. A clear failure is a memory access exception. The result of running the commands should be a list of 16 locations 8bit long containing 0xab.<br>\r
-                       <code>\r
-                               > mwb ram_address 0xab 16<br>\r
-                               > mdb ram_address 32<br>\r
-                               0x00000000: ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00<br>\r
-                               >\r
-                       </code>\r
-               </td>\r
-               <td><code>\r
-                       > mwb 0x00200000 0xab 16<br>\r
-                       > mdb 0x00200000 32<br>\r
-                       0x00200000: ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\r
-               </code></td>\r
-               <td>PASS</td>\r
-       </tr>\r
-</table>\r
-\r
-\r
-\r
-<H2>Flash access</H2>\r
-<table border=1>\r
-       <tr>\r
-               <td>ID</td>\r
-               <td>Target</td>\r
-               <td>Interface</td>\r
-               <td>Description</td>\r
-               <td>Initial state</td>\r
-               <td>Input</td>\r
-               <td>Expected output</td>\r
-               <td>Actual output</td>\r
-               <td>Pass/Fail</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="FLA001"/>FLA001</td>\r
-               <td>SAM7S64</td>\r
-               <td>ZY1000</td>\r
-               <td>Flash probe</td>\r
-               <td>Reset init is working</td>\r
-               <td>On the telnet interface:<br>\r
-                       <code>  > flash probe 0</code>\r
-               </td>\r
-               <td>The command should execute without error. The output should state the name of the flash and the starting address. An example of output:<br>\r
-                       <code>flash 'ecosflash' found at 0x01000000</code>\r
-               </td>\r
-               <td>\r
-               <code>\r
-                       > flash probe 0<br>\r
-                       flash 'at91sam7' found at 0x00100000\r
-               </code>\r
-               </td>\r
-               <td>PASS</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="FLA002"/>FLA002</td>\r
-               <td>SAM7S64</td>\r
-               <td>ZY1000</td>\r
-               <td>flash fillw</td>\r
-               <td>Reset init is working, flash is probed</td>\r
-               <td>On the telnet interface<br>\r
-                       <code>  > flash fillw 0x1000000 0xdeadbeef 16\r
-                       </code>\r
-               </td>\r
-               <td>The commands should execute without error. The output looks like:<br>\r
-                       <code>\r
-                               wrote 64 bytes to 0x01000000 in 11.610000s (0.091516 kb/s)\r
-                       </code><br>\r
-                       To verify the contents of the flash:<br>\r
-                       <code>\r
-                               > mdw 0x1000000 32<br>\r
-                               0x01000000: deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef<br>\r
-                               0x01000020: deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef<br>\r
-                               0x01000040: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>\r
-                               0x01000060: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff\r
-                       </code>\r
-               </td>\r
-               <td><code>\r
-                       > flash fillw 0x100000 0xdeadbeef 16<br>\r
-                       wrote 64 bytes to 0x00100000 in 1.110000s (0.957207 kb/s)<br>\r
-                       > mdw 0x100000 32<br>\r
-                       0x00100000: deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef<br>\r
-                       0x00100020: deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef<br>\r
-                       0x00100040: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>\r
-                       0x00100060: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff\r
-               </code></td>\r
-               <td>PASS</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="FLA003"/>FLA003</td>\r
-               <td>SAM7S64</td>\r
-               <td>ZY1000</td>\r
-               <td>Flash erase</td>\r
-               <td>Reset init is working, flash is probed</td>\r
-               <td>On the telnet interface<br>\r
-                       <code>  >  flash erase_address 0x1000000 0x2000\r
-                       </code>\r
-               </td>\r
-               <td>The commands should execute without error.<br>\r
-                       <code>\r
-                               erased address 0x01000000 length 8192 in 4.970000s\r
-                       </code>\r
-                       To check that the flash has been erased, read at different addresses. The result should always be 0xff.\r
-                       <code>\r
-                               > mdw 0x1000000 32<br>\r
-                               0x01000000: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>\r
-                               0x01000020: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>\r
-                               0x01000040: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>\r
-                               0x01000060: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff\r
-                       </code>\r
-               </td>\r
-               <td><code>\r
-                       > flash erase_address 0x100000 0x2000<br>\r
-                       erased address 0x00100000 length 8192 in 0.510000s<br>\r
-                       > mdw 0x100000 32<br>\r
-                       0x00100000: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>\r
-                       0x00100020: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>\r
-                       0x00100040: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>\r
-                       0x00100060: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>\r
-                       >\r
-               </code></td>\r
-               <td>PASS</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="FLA004"/>FLA004</td>\r
-               <td>SAM7S64</td>\r
-               <td>ZY1000</td>\r
-               <td>Loading to flash from GDB</td>\r
-               <td>Reset init is working, flash is probed, connectivity to GDB server is working</td>\r
-               <td>Start GDB using a ROM elf image, eg: arm-elf-gdb test_rom.elf. <br>\r
-                               <code>\r
-                                       (gdb) target remote ip:port<br>\r
-                                       (gdb) monitor reset<br>\r
-                                       (gdb) load<br>\r
-                                       Loading section .text, size 0x194 lma 0x100000<br>\r
-                                       Start address 0x100040, load size 404<br>\r
-                                       Transfer rate: 179 bytes/sec, 404 bytes/write.\r
-                                       (gdb) monitor verify_image path_to_elf_file\r
-                               </code>\r
-               </td>\r
-               <td>The output should look like:<br>\r
-                       <code>\r
-                               verified 404 bytes in 5.060000s\r
-                       </code><br>\r
-                       The failure message is something like:<br>\r
-                       <code>Verify operation failed address 0x00200000. Was 0x00 instead of 0x18</code>\r
-               </td>\r
-               <td>\r
-                       <code>\r
-                               (gdb) load<br>\r
-                               Loading section .text, size 0x194 lma 0x100000<br>\r
-                               Start address 0x100040, load size 404<br>\r
-                               Transfer rate: 1540 bits/sec, 404 bytes/write.<br>\r
-                               (gdb) monitor verify_image /tftp/10.0.0.9/c:\workspace/ecosboard/ecosboard/phi/openocd/rep/testing/examples/SAM7S256Test/test_rom.elf<br>\r
-                               verified 404 bytes in 4.860000s\r
-                       </code>\r
-               </td>\r
-               <td>PASS</td>\r
-       </tr>\r
-</table>\r
-\r
-</body>\r
+<html>
+<head>
+<title>Test results for revision 607</title>
+</head>
+
+<body>
+<H1>Test cases</H1>
+<H2>Test case results</H2>
+The test results are stored in seperate documents. One document for
+each subversion number.
+<table border="1">
+       <tr><td>Test results</td><td>comment</td></tr>
+       <tr><td>607</a></td><td></td></tr>
+       <tr><td><a href="results/template.html">template</a></td><td>Test results template</td></tr>
+</table>
+
+<H1>SAM7S64</H1>
+
+<H2>Connectivity</H2>
+<table border=1>
+       <tr>
+               <td>ID</td>
+               <td>Target</td>
+               <td>Interface</td>
+               <td>Description</td>
+               <td>Initial state</td>
+               <td>Input</td>
+               <td>Expected output</td>
+               <td>Actual output</td>
+               <td>Pass/Fail</td>
+       </tr>
+       <tr>
+               <td><a name="CON001"/>CON001</td>
+               <td>SAM7S64</td>
+               <td>ZY1000</td>
+               <td>Telnet connection</td>
+               <td>Power on, jtag target attached</td>
+               <td>On console, type<br><code>telnet ip port</code></td>
+               <td><code>Open On-Chip Debugger<br>></code></td>
+               <td><code>Open On-Chip Debugger<br>></code></td>
+               <td>PASS</td>
+       </tr>
+       <tr>
+               <td><a name="CON002"/>CON002</td>
+               <td>SAM7S64</td>
+               <td>ZY1000</td>
+               <td>GDB server connection</td>
+               <td>Power on, jtag target attached</td>
+               <td>On GDB console, type<br><code>target remote ip:port</code></td>
+               <td><code>Remote debugging using 10.0.0.73:3333</code></td>
+               <td><code>Remote debugging using 10.0.0.73:3333</code></td>
+               <td>PASS</td>
+       </tr>
+</table>
+
+<H2>Reset</H2>
+<table border=1>
+       <tr>
+               <td>ID</td>
+               <td>Target</td>
+               <td>Interface</td>
+               <td>Description</td>
+               <td>Initial state</td>
+               <td>Input</td>
+               <td>Expected output</td>
+               <td>Actual output</td>
+               <td>Pass/Fail</td>
+       </tr>
+       <tr>
+               <td><a name="RES001"/>RES001</td>
+               <td>SAM7S64</td>
+               <td>ZY1000</td>
+               <td>Reset halt on a blank target</td>
+               <td>Erase all the content of the flash</td>
+               <td>Connect via the telnet interface and type <br><code>reset halt</code></td>
+               <td>Reset should return without error and the output should contain<br><code>target state: halted<br>pc = 0</code></td>
+               <td>
+                       <code>
+                               JTAG device found: 0x3f0f0f0f (Manufacturer: 0x787, Part: 0xf0f0, Version: 0x3)<br>
+                               nSRST pulls nTRST, falling back to "reset run_and_halt"<br>
+                               target state: halted<br>
+                               target halted in ARM state due to debug request, current mode: Supervisor<br>
+                               cpsr: 0x60000013 pc: 0x00100178
+                       </code>
+               </td>
+               <td>PASS</td>
+       </tr>
+       <tr>
+               <td><a name="RES002"/>RES002</td>
+               <td>SAM7S64</td>
+               <td>ZY1000</td>
+               <td>Reset init on a blank target</td>
+               <td>Erase all the content of the flash</td>
+               <td>Connect via the telnet interface and type <br><code>reset init</code></td>
+               <td>Reset should return without error and the output should contain <br><code>executing reset script 'name_of_the_script'</code></td>
+               <td>
+                       <code>
+                               JTAG device found: 0x3f0f0f0f (Manufacturer: 0x787, Part: 0xf0f0, Version: 0x3)<br>
+                               nSRST pulls nTRST, falling back to "reset run_and_init"<br>
+                               target state: halted<br>
+                               target halted in ARM state due to debug request, current mode: Supervisor<br>
+                               cpsr: 0x600000d3 pc: 0x00003e24<br>
+                               executing reset script 'event/sam7s256_reset.script'
+                       </code>
+               </td>
+               <td>PASS</td>
+       </tr>
+       <tr>
+               <td><a name="RES003"/>RES003</td>
+               <td>SAM7S64</td>
+               <td>ZY1000</td>
+               <td>Reset after a power cycle of the target</td>
+               <td>Reset the target then power cycle the target</td>
+               <td>Connect via the telnet interface and type <br><code>reset halt</code> after the power was detected</td>
+               <td>Reset should return without error and the output should contain<br><code>target state: halted</code></td>
+               <td>
+                       <code>
+                               JTAG device found: 0x3f0f0f0f (Manufacturer: 0x787, Part: 0xf0f0, Version: 0x3)<br>
+                               nSRST pulls nTRST, falling back to "reset run_and_halt"<br>
+                               target state: halted<br>
+                               target halted in ARM state due to debug request, current mode: Supervisor<br>
+                               cpsr: 0x300000d3 pc: 0x00003a38
+                       </code>
+               </td>
+               <td>PASS</td>
+       </tr>
+</table>
+
+<H2>JTAG Speed</H2>
+<table border=1>
+       <tr>
+               <td>ID</td>
+               <td>Target</td>
+               <td>ZY1000</td>
+               <td>Description</td>
+               <td>Initial state</td>
+               <td>Input</td>
+               <td>Expected output</td>
+               <td>Actual output</td>
+               <td>Pass/Fail</td>
+       </tr>
+       <tr>
+               <td><a name="SPD001"/>RES001</td>
+               <td>SAM7S64</td>
+               <td>ZY1000</td>
+               <td>16MHz on normal operation</td>
+               <td>Reset init the target according to RES002 </td>
+               <td>Exercise a memory access over the JTAG, for example <br><code>mdw 0x0 32</code></td>
+               <td>The command should run without any errors. If any JTAG checking errors happen, the test failed</td>
+               <td>
+                       <code>
+                               > jtag_khz 16000<br>
+                               > mdw 0 32<br>
+                               0x00000000: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>
+                               0x00000020: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>
+                               0x00000040: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>
+                               0x00000060: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff
+                       </code>
+               </td>
+               <td>PASS</td>
+       </tr>
+</table>
+
+<H2>Debugging</H2>
+<table border=1>
+       <tr>
+               <td>ID</td>
+               <td>Target</td>
+               <td>Interface</td>
+               <td>Description</td>
+               <td>Initial state</td>
+               <td>Input</td>
+               <td>Expected output</td>
+               <td>Actual output</td>
+               <td>Pass/Fail</td>
+       </tr>
+       <tr>
+               <td><a name="DBG001"/>DBG001</td>
+               <td>SAM7S64</td>
+               <td>ZY1000</td>
+               <td>Load is working</td>
+               <td>Reset init is working, RAM is accesible, GDB server is started</td>
+               <td>On the console of the OS: <br>
+                       <code>arm-elf-gdb test_ram.elf</code><br>
+                       <code>(gdb) target remote ip:port</code><br>
+                       <code>(gdb) load</load>
+               </td>
+               <td>Load should return without error, typical output looks like:<br>
+                       <code>
+                               Loading section .text, size 0x14c lma 0x0<br>
+                               Start address 0x40, load size 332<br>
+                               Transfer rate: 180 bytes/sec, 332 bytes/write.<br>
+                       </code>
+               </td>
+               <td><code>
+                       (gdb) load<br>
+                       Loading section .text, size 0x194 lma 0x200000<br>
+                       Start address 0x200040, load size 404<br>
+                       Transfer rate: 17470 bits/sec, 404 bytes/write.
+               </code></td>
+               <td>PASS</td>
+       </tr>
+       <tr>
+               <td><a name="DBG002"/>DBG002</td>
+               <td>SAM7S64</td>
+               <td>ZY1000</td>
+               <td>Software breakpoint</td>
+               <td>Load the test_ram.elf application, use instructions from GDB001</td>
+               <td>In the GDB console:<br>
+                       <code>
+                               (gdb) monitor arm7_9 sw_bkpts enable<br>
+                               software breakpoints enabled<br>
+                               (gdb) break main<br>
+                               Breakpoint 1 at 0xec: file src/main.c, line 71.<br>
+                               (gdb) continue<br>
+                               Continuing.
+                       </code>
+               </td>
+               <td>The software breakpoint should be reached, a typical output looks like:<br>
+                       <code>
+                               target state: halted<br>
+                               target halted in ARM state due to breakpoint, current mode: Supervisor<br>
+                               cpsr: 0x000000d3 pc: 0x000000ec<br>
+                               <br>
+                               Breakpoint 1, main () at src/main.c:71<br>
+                               71        DWORD a = 1;
+                       </code>
+               </td>
+               <td>
+                       <code>
+                               (gdb) break main<br>
+                               Breakpoint 2 at 0x200134: file src/main.c, line 69.<br>
+                               (gdb) c<br>
+                               Continuing.<br>
+                               target state: halted<br>
+                               target halted in ARM state due to breakpoint, current mode: Supervisor<br>
+                               cpsr: 0x60000013 pc: 0x00200134<br>
+                               <br>
+                               Breakpoint 2, main () at src/main.c:69<br>
+                               69        DWORD a = 1;
+                       </code>
+               </td>
+               <td>PASS</td>
+       </tr>
+       <tr>
+               <td><a name="DBG003"/>DBG003</td>
+               <td>SAM7S64</td>
+               <td>ZY1000</td>
+               <td>Single step in a RAM application</td>
+               <td>Load the test_ram.elf application, use instructions from GDB001, break in main using the instructions from GDB002</td>
+               <td>In GDB, type <br><code>(gdb) step</code></td>
+               <td>The next instruction should be reached, typical output:<br>
+                       <code>
+                               (gdb) step<br>
+                               target state: halted<br>
+                               target halted in ARM state due to single step, current mode: Abort<br>
+                               cpsr: 0x20000097 pc: 0x000000f0<br>
+                               target state: halted<br>
+                               target halted in ARM state due to single step, current mode: Abort<br>
+                               cpsr: 0x20000097 pc: 0x000000f4<br>
+                               72        DWORD b = 2;
+                       </code>
+               </td>
+               <td>
+                               <code>
+                               (gdb) step<br>
+                               target state: halted<br>
+                               target halted in ARM state due to single step, current mode: Abort<br>
+                               cpsr: 0x20000097 pc: 0x000000f0<br>
+                               target state: halted<br>
+                               target halted in ARM state due to single step, current mode: Abort<br>
+                               cpsr: 0x20000097 pc: 0x000000f4<br>
+                               72        DWORD b = 2;
+                       </code>
+               </td>
+               <td>PASS</td>
+       </tr>
+       <tr>
+               <td><a name="DBG004"/>DBG004</td>
+               <td>SAM7S64</td>
+               <td>ZY1000</td>
+               <td>Software break points are working after a reset</td>
+               <td>Load the test_ram.elf application, use instructions from GDB001, break in main using the instructions from GDB002</td>
+               <td>In GDB, type <br><code>
+                       (gdb) monitor reset<br>
+                       (gdb) load<br>
+                       (gdb) continue<br>
+                       </code></td>
+               <td>The breakpoint should be reached, typical output:<br>
+                       <code>
+                               target state: halted<br>
+                               target halted in ARM state due to breakpoint, current mode: Supervisor<br>
+                               cpsr: 0x000000d3 pc: 0x000000ec<br>
+                               <br>
+                               Breakpoint 1, main () at src/main.c:71<br>
+                               71        DWORD a = 1;
+                       </code>
+               </td>
+               <td><code>
+                       (gdb) moni reset<br>
+                       JTAG device found: 0x3f0f0f0f (Manufacturer: 0x787, Part: 0xf0f0, Version: 0x3)<br>
+                       target state: halted<br>
+                       target halted in ARM state due to debug request, current mode: Supervisor<br>
+                       cpsr: 0x600000d3 pc: 0x00003e28<br>
+                       executing reset script 'event/sam7s256_reset.script'<br>
+                       (gdb) load<br>
+                       Loading section .text, size 0x194 lma 0x200000<br>
+                       Start address 0x200040, load size 404<br>
+                       Transfer rate: 20455 bits/sec, 404 bytes/write.<br>
+                       (gdb) continue<br>
+                       Continuing.<br>
+                       target state: halted<br>
+                       target halted in ARM state due to breakpoint, current mode: Supervisor<br>
+                       cpsr: 0x60000013 pc: 0x00200134<br>
+                       <br>
+                       Breakpoint 2, main () at src/main.c:69<br>
+                       69        DWORD a = 1;
+               </code></td>
+               <td>PASS</td>
+       </tr>
+       <tr>
+               <td><a name="DBG005"/>DBG005</td>
+               <td>SAM7S64</td>
+               <td>ZY1000</td>
+               <td>Hardware breakpoint</td>
+               <td>Flash the test_rom.elf application. Make this test after FLA004 has passed</td>
+               <td>Be sure that <code>gdb_memory_map</code> and <code>gdb_flash_program</code> are enabled. In GDB, type <br>
+                       <code>
+                               (gdb) monitor reset<br>
+                               (gdb) load<br>
+                               Loading section .text, size 0x194 lma 0x100000<br>
+                               Start address 0x100040, load size 404<br>
+                               Transfer rate: 179 bytes/sec, 404 bytes/write.<br>
+                               (gdb) monitor arm7_9  force_hw_bkpts enable<br>
+                               force hardware breakpoints enabled<br>
+                               (gdb) break main<br>
+                               Breakpoint 1 at 0x100134: file src/main.c, line 69.<br>
+                               (gdb) continue<br>
+                       </code>
+               </td>
+               <td>The breakpoint should be reached, typical output:<br>
+                       <code>
+                               Continuing.<br>
+                               <br>
+                               Breakpoint 1, main () at src/main.c:69<br>
+                               69        DWORD a = 1;<br>
+                       </code>
+               </td>
+               <td>
+               <code>
+                       (gdb) break main<br>
+                       Breakpoint 1 at 0x100134: file src/main.c, line 69.<br>
+                       (gdb) c<br>
+                       Continuing.<br>
+                       target state: halted<br>
+                       target halted in ARM state due to breakpoint, current mode: Supervisor<br>
+                       cpsr: 0x60000013 pc: 0x00100134<br>
+                       <br>
+                       Breakpoint 1, main () at src/main.c:69<br>
+                       69        DWORD a = 1;
+               </code>
+               </td>
+               <td>PASS</td>
+       </tr>
+       <tr>
+               <td><a name="DBG006"/>DBG006</td>
+               <td>SAM7S64</td>
+               <td>ZY1000</td>
+               <td>Hardware breakpoint is set after a reset</td>
+               <td>Follow the instructions to flash and insert a hardware breakpoint from DBG005</td>
+               <td>In GDB, type <br>
+                       <code>
+                               (gdb) monitor reset<br>
+                               (gdb) monitor reg pc 0x100000<br>
+                               pc (/32): 0x00100000<br>
+                               (gdb) continue
+                       </code><br>
+                       where the value inserted in PC is the start address of the application
+               </td>
+               <td>The breakpoint should be reached, typical output:<br>
+                       <code>
+                               Continuing.<br>
+                               <br>
+                               Breakpoint 1, main () at src/main.c:69<br>
+                               69        DWORD a = 1;<br>
+                       </code>
+               </td>
+               <td>
+               <code>
+                       Continuing.<br>
+                       target state: halted<br>
+                       target halted in ARM state due to single step, current mode: Supervisor<br>
+                       cpsr: 0x60000013 pc: 0x00100040<br>
+                       target state: halted<br>
+                       target halted in ARM state due to breakpoint, current mode: Supervisor<br>
+                       cpsr: 0x60000013 pc: 0x00100134<br>
+                       <br>
+                       Breakpoint 1, main () at src/main.c:69<br>
+                       69        DWORD a = 1;
+               </code><br>
+               <b>Aren't there too many "halted" signs?</b>
+               </td>
+               <td>PASS</td>
+       </tr>
+       <tr>
+               <td><a name="DBG007"/>DBG007</td>
+               <td>SAM7S64</td>
+               <td>ZY1000</td>
+               <td>Single step in ROM</td>
+               <td>Flash the test_rom.elf application and set a breakpoint in main, use DBG005. Make this test after FLA004 has passed</td>
+               <td>Be sure that <code>gdb_memory_map</code> and <code>gdb_flash_program</code> are enabled. In GDB, type <br>
+                       <code>
+                               (gdb) monitor reset<br>
+                               (gdb) load<br>
+                               Loading section .text, size 0x194 lma 0x100000<br>
+                               Start address 0x100040, load size 404<br>
+                               Transfer rate: 179 bytes/sec, 404 bytes/write.<br>
+                               (gdb) monitor arm7_9  force_hw_bkpts enable<br>
+                               force hardware breakpoints enabled<br>
+                               (gdb) break main<br>
+                               Breakpoint 1 at 0x100134: file src/main.c, line 69.<br>
+                               (gdb) continue<br>
+                               Continuing.<br>
+                               <br>
+                               Breakpoint 1, main () at src/main.c:69<br>
+                               69        DWORD a = 1;<br>
+                               (gdb) step
+                       </code>
+               </td>
+               <td>The breakpoint should be reached, typical output:<br>
+                       <code>
+                               target state: halted<br>
+                               target halted in ARM state due to single step, current mode: Supervisor<br>
+                               cpsr: 0x60000013 pc: 0x0010013c<br>
+                               70        DWORD b = 2;<br>
+                       </code>
+               </td>
+               <td><code>
+                       (gdb) step<br>
+                       target state: halted<br>
+                       target halted in ARM state due to single step, current mode: Supervisor<br>
+                       cpsr: 0x60000013 pc: 0x00100138<br>
+                       target state: halted<br>
+                       target halted in ARM state due to single step, current mode: Supervisor<br>
+                       cpsr: 0x60000013 pc: 0x0010013c<br>
+                       70        DWORD b = 2;
+               </code></td>
+               <td>PASS</td>
+       </tr>
+</table>
+
+<H2>RAM access</H2>
+Note: these tests are not designed to test/debug the target, but to test functionalities!
+<table border=1>
+       <tr>
+               <td>ID</td>
+               <td>Target</td>
+               <td>Interface</td>
+               <td>Description</td>
+               <td>Initial state</td>
+               <td>Input</td>
+               <td>Expected output</td>
+               <td>Actual output</td>
+               <td>Pass/Fail</td>
+       </tr>
+       <tr>
+               <td><a name="RAM001"/>RAM001</td>
+               <td>SAM7S64</td>
+               <td>ZY1000</td>
+               <td>32 bit Write/read RAM</td>
+               <td>Reset init is working</td>
+               <td>On the telnet interface<br>
+                       <code>  > mww ram_address 0xdeadbeef 16<br>
+                                       > mdw ram_address 32
+                       </code>
+               </td>
+               <td>The commands should execute without error. A clear failure is a memory access exception. The result of running the commands should be a list of 16 locations 32bit long containing 0xdeadbeef.<br>
+                       <code>
+                               > mww 0x0 0xdeadbeef 16<br>
+                               > mdw 0x0 32<br>
+                               0x00000000: deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef<br>
+                               0x00000020: deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef<br>
+                               0x00000040: e1a00000 e59fa51c e59f051c e04aa000 00080017 00009388 00009388 00009388<br>
+                               0x00000060: 00009388 0002c2c0 0002c2c0 000094f8 000094f4 00009388 00009388 00009388<br>
+                       </code>
+               </td>
+               <td>
+               <code>
+                       > mww 0x00200000 0xdeadbeef 16<br>
+                       > mdw 0x00200000 32<br>
+                       0x00200000: deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef<br>
+                       0x00200020: deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef<br>
+                       0x00200040: e59f10b4 e3a00902 e5810004 e59f00ac e59f10ac e5810000 e3e010ff e59f00a4<br>
+                       0x00200060: e5810060 e59f10a0 e3e00000 e5810130 e5810124 e321f0db e59fd090 e321f0d7
+               </code>
+               </td>
+               <td>PASS</td>
+       </tr>
+       <tr>
+               <td><a name="RAM002"/>RAM002</td>
+               <td>SAM7S64</td>
+               <td>ZY1000</td>
+               <td>16 bit Write/read RAM</td>
+               <td>Reset init is working</td>
+               <td>On the telnet interface<br>
+                       <code>  > mwh ram_address 0xbeef 16<br>
+                                       > mdh ram_address 32
+                       </code>
+               </td>
+               <td>The commands should execute without error. A clear failure is a memory access exception. The result of running the commands should be a list of 16 locations 16bit long containing 0xbeef.<br>
+                       <code>
+                               > mwh 0x0 0xbeef 16<br>
+                               > mdh 0x0 32<br>
+                               0x00000000: beef beef beef beef beef beef beef beef beef beef beef beef beef beef beef beef<br>
+                               0x00000020: 00e0 0000 021c 0000 0240 0000 026c 0000 0288 0000 0000 0000 0388 0000 0350 0000<br>
+                               >
+                       </code>
+               </td>
+               <td><code>
+                       > mwh 0x00200000 0xbeef 16<br>
+                       > mdh 0x00200000 32<br>
+                       0x00200000: beef beef beef beef beef beef beef beef beef beef beef beef beef beef beef beef<br>
+                       0x00200020: 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000
+               </code></td>
+               <td>PASS</td>
+       </tr>
+       <tr>
+               <td><a name="RAM003"/>RAM003</td>
+               <td>SAM7S64</td>
+               <td>ZY1000</td>
+               <td>8 bit Write/read RAM</td>
+               <td>Reset init is working</td>
+               <td>On the telnet interface<br>
+                       <code>  > mwb ram_address 0xab 16<br>
+                                       > mdb ram_address 32
+                       </code>
+               </td>
+               <td>The commands should execute without error. A clear failure is a memory access exception. The result of running the commands should be a list of 16 locations 8bit long containing 0xab.<br>
+                       <code>
+                               > mwb ram_address 0xab 16<br>
+                               > mdb ram_address 32<br>
+                               0x00000000: ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00<br>
+                               >
+                       </code>
+               </td>
+               <td><code>
+                       > mwb 0x00200000 0xab 16<br>
+                       > mdb 0x00200000 32<br>
+                       0x00200000: ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+               </code></td>
+               <td>PASS</td>
+       </tr>
+</table>
+
+
+
+<H2>Flash access</H2>
+<table border=1>
+       <tr>
+               <td>ID</td>
+               <td>Target</td>
+               <td>Interface</td>
+               <td>Description</td>
+               <td>Initial state</td>
+               <td>Input</td>
+               <td>Expected output</td>
+               <td>Actual output</td>
+               <td>Pass/Fail</td>
+       </tr>
+       <tr>
+               <td><a name="FLA001"/>FLA001</td>
+               <td>SAM7S64</td>
+               <td>ZY1000</td>
+               <td>Flash probe</td>
+               <td>Reset init is working</td>
+               <td>On the telnet interface:<br>
+                       <code>  > flash probe 0</code>
+               </td>
+               <td>The command should execute without error. The output should state the name of the flash and the starting address. An example of output:<br>
+                       <code>flash 'ecosflash' found at 0x01000000</code>
+               </td>
+               <td>
+               <code>
+                       > flash probe 0<br>
+                       flash 'at91sam7' found at 0x00100000
+               </code>
+               </td>
+               <td>PASS</td>
+       </tr>
+       <tr>
+               <td><a name="FLA002"/>FLA002</td>
+               <td>SAM7S64</td>
+               <td>ZY1000</td>
+               <td>flash fillw</td>
+               <td>Reset init is working, flash is probed</td>
+               <td>On the telnet interface<br>
+                       <code>  > flash fillw 0x1000000 0xdeadbeef 16
+                       </code>
+               </td>
+               <td>The commands should execute without error. The output looks like:<br>
+                       <code>
+                               wrote 64 bytes to 0x01000000 in 11.610000s (0.091516 kb/s)
+                       </code><br>
+                       To verify the contents of the flash:<br>
+                       <code>
+                               > mdw 0x1000000 32<br>
+                               0x01000000: deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef<br>
+                               0x01000020: deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef<br>
+                               0x01000040: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>
+                               0x01000060: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff
+                       </code>
+               </td>
+               <td><code>
+                       > flash fillw 0x100000 0xdeadbeef 16<br>
+                       wrote 64 bytes to 0x00100000 in 1.110000s (0.957207 kb/s)<br>
+                       > mdw 0x100000 32<br>
+                       0x00100000: deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef<br>
+                       0x00100020: deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef<br>
+                       0x00100040: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>
+                       0x00100060: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff
+               </code></td>
+               <td>PASS</td>
+       </tr>
+       <tr>
+               <td><a name="FLA003"/>FLA003</td>
+               <td>SAM7S64</td>
+               <td>ZY1000</td>
+               <td>Flash erase</td>
+               <td>Reset init is working, flash is probed</td>
+               <td>On the telnet interface<br>
+                       <code>  >  flash erase_address 0x1000000 0x2000
+                       </code>
+               </td>
+               <td>The commands should execute without error.<br>
+                       <code>
+                               erased address 0x01000000 length 8192 in 4.970000s
+                       </code>
+                       To check that the flash has been erased, read at different addresses. The result should always be 0xff.
+                       <code>
+                               > mdw 0x1000000 32<br>
+                               0x01000000: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>
+                               0x01000020: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>
+                               0x01000040: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>
+                               0x01000060: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff
+                       </code>
+               </td>
+               <td><code>
+                       > flash erase_address 0x100000 0x2000<br>
+                       erased address 0x00100000 length 8192 in 0.510000s<br>
+                       > mdw 0x100000 32<br>
+                       0x00100000: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>
+                       0x00100020: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>
+                       0x00100040: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>
+                       0x00100060: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>
+                       >
+               </code></td>
+               <td>PASS</td>
+       </tr>
+       <tr>
+               <td><a name="FLA004"/>FLA004</td>
+               <td>SAM7S64</td>
+               <td>ZY1000</td>
+               <td>Loading to flash from GDB</td>
+               <td>Reset init is working, flash is probed, connectivity to GDB server is working</td>
+               <td>Start GDB using a ROM elf image, eg: arm-elf-gdb test_rom.elf. <br>
+                               <code>
+                                       (gdb) target remote ip:port<br>
+                                       (gdb) monitor reset<br>
+                                       (gdb) load<br>
+                                       Loading section .text, size 0x194 lma 0x100000<br>
+                                       Start address 0x100040, load size 404<br>
+                                       Transfer rate: 179 bytes/sec, 404 bytes/write.
+                                       (gdb) monitor verify_image path_to_elf_file
+                               </code>
+               </td>
+               <td>The output should look like:<br>
+                       <code>
+                               verified 404 bytes in 5.060000s
+                       </code><br>
+                       The failure message is something like:<br>
+                       <code>Verify operation failed address 0x00200000. Was 0x00 instead of 0x18</code>
+               </td>
+               <td>
+                       <code>
+                               (gdb) load<br>
+                               Loading section .text, size 0x194 lma 0x100000<br>
+                               Start address 0x100040, load size 404<br>
+                               Transfer rate: 1540 bits/sec, 404 bytes/write.<br>
+                               (gdb) monitor verify_image /tftp/10.0.0.9/c:\workspace/ecosboard/ecosboard/phi/openocd/rep/testing/examples/SAM7S256Test/test_rom.elf<br>
+                               verified 404 bytes in 4.860000s
+                       </code>
+               </td>
+               <td>PASS</td>
+       </tr>
+</table>
+
+</body>
 </html>
\ No newline at end of file
index 906925870cdbd6c07459b53fffad8475baf333f4..286bf2e3a36197c52da284fa1f92ba46ae328e7a 100644 (file)
@@ -1,18 +1,18 @@
-<html>\r
-\r
-       <meta http-equiv="content-type" content="text/html;charset=iso-8859-1">\r
-\r
-       <body>\r
-       <a href="../testcases.html">Testcases</a>\r
-       <table border="1">\r
-               <tr><td>Test</td><td>Interface</td><td>Target</td><td>Result</td></tr>\r
-               <tr><td><a href="../testcases.html#CON001">CON001</a></td><td> FILL IN! </td><td>FILL IN!</td><td>PASS/FAIL</td></tr>\r
-               <tr><td><a href="../testcases.html#CON002">CON002</a></td><td> FILL IN! </td><td>FILL IN!</td><td>PASS/FAIL</td></tr>\r
-               <tr><td><a href="../testcases.html#RES001">RES001</a></td><td> FILL IN! </td><td>FILL IN!</td><td>PASS/FAIL</td></tr>\r
-               <tr><td><a href="../testcases.html#RES002">RES002</a></td><td> FILL IN! </td><td>FILL IN!</td><td>PASS/FAIL</td></tr>\r
-               <tr><td><a href="../testcases.html#RES003">RES003</a></td><td> FILL IN! </td><td>FILL IN!</td><td>PASS/FAIL</td></tr>\r
-               <tr><td><a href="../testcases.html#DBG001">DBG001</a></td><td> FILL IN! </td><td>FILL IN!</td><td>PASS/FAIL</td></tr>\r
-       </table>\r
-       </body>\r
-\r
+<html>
+
+       <meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
+
+       <body>
+       <a href="../testcases.html">Testcases</a>
+       <table border="1">
+               <tr><td>Test</td><td>Interface</td><td>Target</td><td>Result</td></tr>
+               <tr><td><a href="../testcases.html#CON001">CON001</a></td><td> FILL IN! </td><td>FILL IN!</td><td>PASS/FAIL</td></tr>
+               <tr><td><a href="../testcases.html#CON002">CON002</a></td><td> FILL IN! </td><td>FILL IN!</td><td>PASS/FAIL</td></tr>
+               <tr><td><a href="../testcases.html#RES001">RES001</a></td><td> FILL IN! </td><td>FILL IN!</td><td>PASS/FAIL</td></tr>
+               <tr><td><a href="../testcases.html#RES002">RES002</a></td><td> FILL IN! </td><td>FILL IN!</td><td>PASS/FAIL</td></tr>
+               <tr><td><a href="../testcases.html#RES003">RES003</a></td><td> FILL IN! </td><td>FILL IN!</td><td>PASS/FAIL</td></tr>
+               <tr><td><a href="../testcases.html#DBG001">DBG001</a></td><td> FILL IN! </td><td>FILL IN!</td><td>PASS/FAIL</td></tr>
+       </table>
+       </body>
+
 </html>
\ No newline at end of file
index cc8a553e757a3ec6858faefdfbd94a02852a663a..3d5cd9623d1906bbf36b57cfd30a4607c764b9c0 100644 (file)
-<html>\r
-\r
-       <meta http-equiv="content-type" content="text/html;charset=iso-8859-1">\r
-\r
-       <body>\r
-               <h1>OpenOCD smoketest results</h1>\r
-               These tests can be performed on any JTAG device as long as they are executed using the unmodified code from SVN.\r
-               <p>The latest version in which the test is known to have passed is in the table below.</p>\r
-               <h2>Vocabulary</h2>\r
-               <table border="1">\r
-                       <tr>\r
-                               <td width="100">Passed version</td>\r
-                               <td>The latest branch and version on which the test is known to pass</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td width="100">Broken version</td>\r
-                               <td>The latest branch and version on which the test is known to fail. n/a when older than passed version.</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td width="100">ID</td>\r
-                               <td>A unqiue ID to refer to a test. The unique numbers are maintained in this file. Note that the same test can be run on different hardware/interface. Each combination yields a unique id. </td>\r
-                       </tr>\r
-               </table>\r
-               <p></p>\r
-               <table border="1">\r
-                       <tr>\r
-                               <th width="100">Unique ID</th>\r
-                               <th width="165">Synopsis</th>\r
-                               <th align="center" width="110">JTAG device</th>\r
-                               <th align="center" width="110">Passed version</th>\r
-                               <th align="center" width="110">Broken version</th>\r
-                       </tr>\r
-                       <tr>\r
-                               <td >fill_malloc</td>\r
-                               <td width="165">Fill malloc() memory with garbage</td>\r
-                               <td align="center" >n/a</td>\r
-                               <td align="center" >n/a</td>\r
-                               <td align="center" >n/a</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td >ocd1</td>\r
-                               <td width="165">Telnet Windows</td>\r
-                               <td align="center" >n/a</td>\r
-                               <td align="center" >n/a</td>\r
-                               <td align="center" >n/a</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td >ocd2</td>\r
-                               <td width="165">Telnet Linux</td>\r
-                               <td align="center" >n/a</td>\r
-                               <td align="center" >n/a</td>\r
-                               <td align="center" >n/a</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td >ocd3</td>\r
-                               <td width="165">Telnet Cygwin</td>\r
-                               <td align="center" >n/a</td>\r
-                               <td align="center" >n/a</td>\r
-                               <td align="center" >n/a</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td ><a href="#test_ocd4">ocd4</a></td>\r
-                               <td width="165">ARM7 debugging</td>\r
-                               <td align="center" >n/a</td>\r
-                               <td align="center" >n/a</td>\r
-                               <td align="center" >n/a</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td >SAM9260</td>\r
-                               <td width="165">SAM9260 debugging</td>\r
-                               <td align="center">ft2232 </td>\r
-                               <td align="center">500</td>\r
-                               <td align="center">n/a</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td >xscale1</td>\r
-                               <td width="165">XScale debugging</td>\r
-                               <td align="center" >bitbang</td>\r
-                               <td align="center" >505</td>\r
-                               <td align="center" >n/a</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td >xscale2</td>\r
-                               <td width="165">XScale debugging</td>\r
-                               <td align="center" >FT2232</td>\r
-                               <td align="center" >202</td>\r
-                               <td align="center" >n/a</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td ><a href="#bdte-ram">bdte-ram1</a></td>\r
-                               <td width="165">str710 ram debugging</td>\r
-                               <td align="center" >JTAGkey</td>\r
-                               <td align="center" >536</td>\r
-                               <td align="center" >n/a</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td ><a href="#bdte-rom">bdte-rom2</a></td>\r
-                               <td width="165">str710 rom debugging</td>\r
-                               <td align="center" >JTAGkey</td>\r
-                               <td align="center" >536</td>\r
-                               <td align="center" >n/a</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td ><a href="#bdte-ram">bdte-ram3</a></td>\r
-                               <td width="165">str912 ram debugging</td>\r
-                               <td align="center" >JTAGkey</td>\r
-                               <td align="center" >536</td>\r
-                               <td align="center" >n/a</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td ><a href="#bdte-rom">bdte-rom4</a></td>\r
-                               <td width="165">str912 rom debugging</td>\r
-                               <td align="center" >JTAGkey</td>\r
-                               <td align="center" >536</td>\r
-                               <td align="center" >n/a</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td ><a href="#bdte-ram">bdte-ram5</a></td>\r
-                               <td width="165">lpc2148 ram debugging</td>\r
-                               <td align="center" >JTAGkey</td>\r
-                               <td align="center" >536</td>\r
-                               <td align="center" >n/a</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td ><a href="#bdte-rom">bdte-rom6</a></td>\r
-                               <td width="165">lpc2148 rom debugging</td>\r
-                               <td align="center" >JTAGkey</td>\r
-                               <td align="center" >536</td>\r
-                               <td align="center" >n/a</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td ><a href="#bdte-ram">bdte-ram7</a></td>\r
-                               <td width="165">lpc2294 ram debugging</td>\r
-                               <td align="center" >JTAGkey</td>\r
-                               <td align="center" >536</td>\r
-                               <td align="center" >n/a</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td ><a href="#bdte-rom">bdte-rom8</a></td>\r
-                               <td width="165">lpc2294 rom debugging</td>\r
-                               <td align="center" >JTAGkey</td>\r
-                               <td align="center" >536</td>\r
-                               <td align="center" >n/a</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td ><a href="#bdte-ram">bdte-ram9</a></td>\r
-                               <td width="165">sam7s256 ram debugging</td>\r
-                               <td align="center" >JTAGkey</td>\r
-                               <td align="center" >536</td>\r
-                               <td align="center" >n/a</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td ><a href="#bdte-rom">bdte-rom10</a></td>\r
-                               <td width="165">sam7s256 rom debugging</td>\r
-                               <td align="center" >JTAGkey</td>\r
-                               <td align="center" >536</td>\r
-                               <td align="center" >n/a</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td ><a href="#bdte-ram">bdte-ram11</a></td>\r
-                               <td width="165">sam7x256 ram debugging</td>\r
-                               <td align="center" >JTAGkey</td>\r
-                               <td align="center" >517</td>\r
-                               <td align="center" >n/a</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td ><a href="#bdte-rom">bdte-rom12</a></td>\r
-                               <td width="165">sam7x256 rom debugging</td>\r
-                               <td align="center" >JTAGkey</td>\r
-                               <td align="center" >517</td>\r
-                               <td align="center" >n/a</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td ><a href="#bdte-ram">bdte-ram13</a></td>\r
-                               <td width="165">at91r40008 ram debugging</td>\r
-                               <td align="center" >JTAGkey</td>\r
-                               <td align="center" >536</td>\r
-                               <td align="center" >n/a</td>\r
-                       </tr>\r
-               </table>\r
-               <p></p>\r
-               <hr>\r
-               <h1>OpenOCD JTAG device test results</h1>\r
-               Each JTAG device must be tested\r
-               \r
-               <table border="1">\r
-                       <tr>\r
-                               <th align="center" width="40">ID</th>\r
-                               <th width="90">Synopsis</th>\r
-                               <th >Passed version</th>\r
-                               <th >Broken version</th>\r
-                       </tr>\r
-                       <tr>\r
-                               <td width="40">jtag1</td>\r
-                               <td width="90">Parport</td>\r
-                               <td align="center" >n/a</td>\r
-                               <td align="center" >n/a</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td width="40">jtag2</td>\r
-                               <td width="90">JTAGkey</td>\r
-                               <td align="center" >536</td>\r
-                               <td align="center" >n/a</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td width="40">jtag3</td>\r
-                               <td width="90">Turtelizer2</td>\r
-                               <td align="center" >536</td>\r
-                               <td align="center" >n/a</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td width="40">jtag4</td>\r
-                               <td width="90">JTAGkey</td>\r
-                               <td align="center" >536</td>\r
-                               <td align="center" >n/a</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td width="40">jtag5</td>\r
-                               <td width="90">add new one</td>\r
-                               <td align="center" >n/a</td>\r
-                               <td align="center" >n/a</td>\r
-                       </tr>\r
-               </table>\r
-               <p>jtag1:</p>\r
-               <p>jtag2: Tested on Windows XP Prof. (SP2) with original FTDI&nbsp;driver.</p>\r
-               <p>jtag3: Tested on Windows XP Prof. (SP2) with original FTDI&nbsp;driver.</p>\r
-               <p>jtag4: Tested on Mac OS X (10.5.2, Intel) with libftdi-0.10 and libusb-0.1.12</p>\r
-               <p>jtag5:</p>\r
-               <hr>\r
-               <h1>OpenOCD JTAG device speed test result</h1>\r
-               <p>The test result is in KB/sec.</p>\r
-               <table border="1">\r
-                       <tr>\r
-                               <th align="center" width="50">ID</th>\r
-                               <th width="90">Synopsis</th>\r
-                               <th width="40">r320</th>\r
-                               <th width="40">r420</th>\r
-                               <th width="40">r423</th>\r
-                               <th width="40">r459</th>\r
-                               <th width="40">r517</th>\r
-                               <th width="40">r536</th>\r
-                       </tr>\r
-                       <tr>\r
-                               <td width="50"><a href="#speed1">speed1</a></td>\r
-                               <td width="90">JTAGkey</td>\r
-                               <td align="center" width="40">93</td>\r
-                               <td align="center" width="40">64 </td>\r
-                               <td align="center" width="40">93</td>\r
-                               <td align="center" width="40">93</td>\r
-                               <td align="center" width="40">93</td>\r
-                               <td align="center" width="40">93</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td width="50"><a href="#speed2">speed2</a></td>\r
-                               <td width="90">JTAGkey</td>\r
-                               <td align="center" width="40">n/a</td>\r
-                               <td align="center" width="40">n/a</td>\r
-                               <td align="center" width="40">n/a</td>\r
-                               <td align="center" width="40">n/a</td>\r
-                               <td align="center" width="40">52</td>\r
-                               <td align="center" width="40">52</td>\r
-                       </tr>\r
-                       <tr>\r
-                               <td width="50">speed3</td>\r
-                               <td width="90">add new one</td>\r
-                               <td align="center" width="40">n/a</td>\r
-                               <td align="center" width="40">n/a</td>\r
-                               <td align="center" width="40">n/a</td>\r
-                               <td align="center" width="40">n/a</td>\r
-                               <td align="center" width="40">n/a</td>\r
-                               <td align="center" width="40">n/a</td>\r
-                       </tr>\r
-               </table>\r
-               <p></p>\r
-               <hr>\r
-               <h1>Policy on removing features from OpenOCD</h1>\r
-               If a feature in OpenOCD is known to be broken and nobody has submitted a fix and the feature is causing trouble for maintainence, it can be removed from OpenOCD trunk. The threshold for temporarily removing something from OpenOCD trunk is low to ease maintainence and place the burden of maintainence on those that care about a feature.\r
-               <p>Note that code is never deleted from OpenOCD svn, it remains in svn so if somebody sees a feature removed that they would like kept, they have but to port and fix that feature back up to main trunk. This document can be helpful in this regard in that the latest working version and the known broken version may be listed.</p>\r
-               <h1>Policy on adding features from OpenOCD</h1>\r
-               To add a feature to OpenOCD, generally it should not break any existing features and it should be functional and the code reasonably readable and useful to others in the OpenOCD community. The code does not have to be completed. Work in progress is fine for OpenOCD trunk.\r
-               <p>Also new tests should be defined. Note that the code does not have to pass all the tests. In fact it can be helpful to have tests to describe facets that really should be working, but aren't done yet. </p>\r
-               <hr>\r
-               <h1>ocd4 - ARM7 debugging<a name="test_ocd4"></a></h1>\r
-               Connect to ARM7 device(any), use GDB load to load a program into RAM and single halt, resume and single step.\r
-               <hr>\r
-               <h1>bdte-ram (Basic debugging test with Eclipse in RAM)<a id="bdte-ram" name="bdte-ram"></a></h1>\r
-               <p>This test was made under Eclipse with the Zylin Embedded CDT&nbsp;plugin. For the GDB &quot;Initialize commands&quot; take a look in the examples/&lt;target&gt;/prj/<b>eclipse_ram.gdb</b> file.</p>\r
-               <p>Start debugging,  the debugger should stop at main. set some breakpoints and &quot;Resume&quot;. If the debugger hit a breakpoint check if the &quot;Variables&quot; looks correct. Remove some breakpoints and &quot;Resume&quot; again. If the target is running, use the &quot;Suspend&quot; function and use &quot;Step Into&quot; or &quot;Step Over&quot; through the source. Even open the &quot;Disassembly&quot; view and enable the &quot;Instruction Stepping Mode&quot;. Now you can single step through the assembler source. Use &quot;Resume&quot; again to run the program, set a breakpoint while the target is running. Check if  you can inspect the variables with the mouse over. Play a little with the target...</p>\r
-               <hr>\r
-               <h1>bdte-rom (Basic debugging test with Eclipse in ROM)<a id="bdte-rom" name="bdte-rom"></a></h1>\r
-               <p>This test was made under Eclipse with the Zylin Embedded CDT&nbsp;plugin. For the GDB &quot;Initialize commands&quot; take a look in the examples/&lt;target&gt;/prj/<b>eclipse_rom.gdb</b> file.</p>\r
-               <p>Start debugging, the debugger should download and store the program in the flash of the target.</p>\r
-               <p>Now you can make some tests like described in the <a href="#bdte-ram">bdte-ram</a> section above too.</p>\r
-               <hr>\r
-               <h1>speed1 - Download speed test<a id="speed1" name="speed1"></a></h1>\r
-               <p>For this test a STR710 with external memory was used. The example project can be found under examples/STR710JtagSpeed. Here Eclipse or the arm-elf-gdb can be used to download the test.elf file into the RAM. The result of the GDB&nbsp;can look like:</p>\r
-               <p>Loading section .text, size 0x6019c lma 0x62000000<br>\r
-                       Start address 0x62000040, load size 393628<br>\r
-                       Transfer rate: 93 KB/sec, 2008 bytes/write.</p>\r
-               <p>In this example a speed of 93 KB/sec was reached. The hardware which was used for the test can be found <a href="http://www.yagarto.de/projects/str7usbmsd/index.html" target="new">here</a>.</p>\r
-               <p>The test was made on Windows XP Prof. (SP2) with a JTAGkey and the original FTDI driver.</p>\r
-               <hr>\r
-               <h1>speed2 - Download speed test<a id="speed2" name="speed2"></a></h1>\r
-               <p>For this test a STR710 with external memory was used. The example project can be found under examples/STR710JtagSpeed. Here Eclipse or the arm-elf-gdb can be used to download the test.elf file into the RAM. The result of the GDB&nbsp;can look like:</p>\r
-               <p>Loading section .text, size 0x6019c lma 0x62000000<br>\r
-                       Start address 0x62000040, load size 393628<br>Transfer rate: 52 KB/sec, 2008 bytes/write.</p>\r
-               <p>In this example a speed of 52 KB/sec was reached. The hardware which was used for the test can be found <a href="http://www.yagarto.de/projects/str7usbmsd/index.html" target="new">here</a>.</p>\r
-               <p>The test was made on Mac OS X (10.5.2, Intel)  with a JTAGkey and the following driver:</p>\r
-               <p>- libftdi 0.10<br>\r
-                       - libusb 0.1.12</p>\r
-               <p></p>\r
-               <p></p>\r
-       </body>\r
-\r
+<html>
+
+       <meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
+
+       <body>
+               <h1>OpenOCD smoketest results</h1>
+               These tests can be performed on any JTAG device as long as they are executed using the unmodified code from SVN.
+               <p>The latest version in which the test is known to have passed is in the table below.</p>
+               <h2>Vocabulary</h2>
+               <table border="1">
+                       <tr>
+                               <td width="100">Passed version</td>
+                               <td>The latest branch and version on which the test is known to pass</td>
+                       </tr>
+                       <tr>
+                               <td width="100">Broken version</td>
+                               <td>The latest branch and version on which the test is known to fail. n/a when older than passed version.</td>
+                       </tr>
+                       <tr>
+                               <td width="100">ID</td>
+                               <td>A unqiue ID to refer to a test. The unique numbers are maintained in this file. Note that the same test can be run on different hardware/interface. Each combination yields a unique id. </td>
+                       </tr>
+               </table>
+               <p></p>
+               <table border="1">
+                       <tr>
+                               <th width="100">Unique ID</th>
+                               <th width="165">Synopsis</th>
+                               <th align="center" width="110">JTAG device</th>
+                               <th align="center" width="110">Passed version</th>
+                               <th align="center" width="110">Broken version</th>
+                       </tr>
+                       <tr>
+                               <td >fill_malloc</td>
+                               <td width="165">Fill malloc() memory with garbage</td>
+                               <td align="center" >n/a</td>
+                               <td align="center" >n/a</td>
+                               <td align="center" >n/a</td>
+                       </tr>
+                       <tr>
+                               <td >ocd1</td>
+                               <td width="165">Telnet Windows</td>
+                               <td align="center" >n/a</td>
+                               <td align="center" >n/a</td>
+                               <td align="center" >n/a</td>
+                       </tr>
+                       <tr>
+                               <td >ocd2</td>
+                               <td width="165">Telnet Linux</td>
+                               <td align="center" >n/a</td>
+                               <td align="center" >n/a</td>
+                               <td align="center" >n/a</td>
+                       </tr>
+                       <tr>
+                               <td >ocd3</td>
+                               <td width="165">Telnet Cygwin</td>
+                               <td align="center" >n/a</td>
+                               <td align="center" >n/a</td>
+                               <td align="center" >n/a</td>
+                       </tr>
+                       <tr>
+                               <td ><a href="#test_ocd4">ocd4</a></td>
+                               <td width="165">ARM7 debugging</td>
+                               <td align="center" >n/a</td>
+                               <td align="center" >n/a</td>
+                               <td align="center" >n/a</td>
+                       </tr>
+                       <tr>
+                               <td >SAM9260</td>
+                               <td width="165">SAM9260 debugging</td>
+                               <td align="center">ft2232 </td>
+                               <td align="center">500</td>
+                               <td align="center">n/a</td>
+                       </tr>
+                       <tr>
+                               <td >xscale1</td>
+                               <td width="165">XScale debugging</td>
+                               <td align="center" >bitbang</td>
+                               <td align="center" >505</td>
+                               <td align="center" >n/a</td>
+                       </tr>
+                       <tr>
+                               <td >xscale2</td>
+                               <td width="165">XScale debugging</td>
+                               <td align="center" >FT2232</td>
+                               <td align="center" >202</td>
+                               <td align="center" >n/a</td>
+                       </tr>
+                       <tr>
+                               <td ><a href="#bdte-ram">bdte-ram1</a></td>
+                               <td width="165">str710 ram debugging</td>
+                               <td align="center" >JTAGkey</td>
+                               <td align="center" >536</td>
+                               <td align="center" >n/a</td>
+                       </tr>
+                       <tr>
+                               <td ><a href="#bdte-rom">bdte-rom2</a></td>
+                               <td width="165">str710 rom debugging</td>
+                               <td align="center" >JTAGkey</td>
+                               <td align="center" >536</td>
+                               <td align="center" >n/a</td>
+                       </tr>
+                       <tr>
+                               <td ><a href="#bdte-ram">bdte-ram3</a></td>
+                               <td width="165">str912 ram debugging</td>
+                               <td align="center" >JTAGkey</td>
+                               <td align="center" >536</td>
+                               <td align="center" >n/a</td>
+                       </tr>
+                       <tr>
+                               <td ><a href="#bdte-rom">bdte-rom4</a></td>
+                               <td width="165">str912 rom debugging</td>
+                               <td align="center" >JTAGkey</td>
+                               <td align="center" >536</td>
+                               <td align="center" >n/a</td>
+                       </tr>
+                       <tr>
+                               <td ><a href="#bdte-ram">bdte-ram5</a></td>
+                               <td width="165">lpc2148 ram debugging</td>
+                               <td align="center" >JTAGkey</td>
+                               <td align="center" >536</td>
+                               <td align="center" >n/a</td>
+                       </tr>
+                       <tr>
+                               <td ><a href="#bdte-rom">bdte-rom6</a></td>
+                               <td width="165">lpc2148 rom debugging</td>
+                               <td align="center" >JTAGkey</td>
+                               <td align="center" >536</td>
+                               <td align="center" >n/a</td>
+                       </tr>
+                       <tr>
+                               <td ><a href="#bdte-ram">bdte-ram7</a></td>
+                               <td width="165">lpc2294 ram debugging</td>
+                               <td align="center" >JTAGkey</td>
+                               <td align="center" >536</td>
+                               <td align="center" >n/a</td>
+                       </tr>
+                       <tr>
+                               <td ><a href="#bdte-rom">bdte-rom8</a></td>
+                               <td width="165">lpc2294 rom debugging</td>
+                               <td align="center" >JTAGkey</td>
+                               <td align="center" >536</td>
+                               <td align="center" >n/a</td>
+                       </tr>
+                       <tr>
+                               <td ><a href="#bdte-ram">bdte-ram9</a></td>
+                               <td width="165">sam7s256 ram debugging</td>
+                               <td align="center" >JTAGkey</td>
+                               <td align="center" >536</td>
+                               <td align="center" >n/a</td>
+                       </tr>
+                       <tr>
+                               <td ><a href="#bdte-rom">bdte-rom10</a></td>
+                               <td width="165">sam7s256 rom debugging</td>
+                               <td align="center" >JTAGkey</td>
+                               <td align="center" >536</td>
+                               <td align="center" >n/a</td>
+                       </tr>
+                       <tr>
+                               <td ><a href="#bdte-ram">bdte-ram11</a></td>
+                               <td width="165">sam7x256 ram debugging</td>
+                               <td align="center" >JTAGkey</td>
+                               <td align="center" >517</td>
+                               <td align="center" >n/a</td>
+                       </tr>
+                       <tr>
+                               <td ><a href="#bdte-rom">bdte-rom12</a></td>
+                               <td width="165">sam7x256 rom debugging</td>
+                               <td align="center" >JTAGkey</td>
+                               <td align="center" >517</td>
+                               <td align="center" >n/a</td>
+                       </tr>
+                       <tr>
+                               <td ><a href="#bdte-ram">bdte-ram13</a></td>
+                               <td width="165">at91r40008 ram debugging</td>
+                               <td align="center" >JTAGkey</td>
+                               <td align="center" >536</td>
+                               <td align="center" >n/a</td>
+                       </tr>
+               </table>
+               <p></p>
+               <hr>
+               <h1>OpenOCD JTAG device test results</h1>
+               Each JTAG device must be tested
+               
+               <table border="1">
+                       <tr>
+                               <th align="center" width="40">ID</th>
+                               <th width="90">Synopsis</th>
+                               <th >Passed version</th>
+                               <th >Broken version</th>
+                       </tr>
+                       <tr>
+                               <td width="40">jtag1</td>
+                               <td width="90">Parport</td>
+                               <td align="center" >n/a</td>
+                               <td align="center" >n/a</td>
+                       </tr>
+                       <tr>
+                               <td width="40">jtag2</td>
+                               <td width="90">JTAGkey</td>
+                               <td align="center" >536</td>
+                               <td align="center" >n/a</td>
+                       </tr>
+                       <tr>
+                               <td width="40">jtag3</td>
+                               <td width="90">Turtelizer2</td>
+                               <td align="center" >536</td>
+                               <td align="center" >n/a</td>
+                       </tr>
+                       <tr>
+                               <td width="40">jtag4</td>
+                               <td width="90">JTAGkey</td>
+                               <td align="center" >536</td>
+                               <td align="center" >n/a</td>
+                       </tr>
+                       <tr>
+                               <td width="40">jtag5</td>
+                               <td width="90">add new one</td>
+                               <td align="center" >n/a</td>
+                               <td align="center" >n/a</td>
+                       </tr>
+               </table>
+               <p>jtag1:</p>
+               <p>jtag2: Tested on Windows XP Prof. (SP2) with original FTDI&nbsp;driver.</p>
+               <p>jtag3: Tested on Windows XP Prof. (SP2) with original FTDI&nbsp;driver.</p>
+               <p>jtag4: Tested on Mac OS X (10.5.2, Intel) with libftdi-0.10 and libusb-0.1.12</p>
+               <p>jtag5:</p>
+               <hr>
+               <h1>OpenOCD JTAG device speed test result</h1>
+               <p>The test result is in KB/sec.</p>
+               <table border="1">
+                       <tr>
+                               <th align="center" width="50">ID</th>
+                               <th width="90">Synopsis</th>
+                               <th width="40">r320</th>
+                               <th width="40">r420</th>
+                               <th width="40">r423</th>
+                               <th width="40">r459</th>
+                               <th width="40">r517</th>
+                               <th width="40">r536</th>
+                       </tr>
+                       <tr>
+                               <td width="50"><a href="#speed1">speed1</a></td>
+                               <td width="90">JTAGkey</td>
+                               <td align="center" width="40">93</td>
+                               <td align="center" width="40">64 </td>
+                               <td align="center" width="40">93</td>
+                               <td align="center" width="40">93</td>
+                               <td align="center" width="40">93</td>
+                               <td align="center" width="40">93</td>
+                       </tr>
+                       <tr>
+                               <td width="50"><a href="#speed2">speed2</a></td>
+                               <td width="90">JTAGkey</td>
+                               <td align="center" width="40">n/a</td>
+                               <td align="center" width="40">n/a</td>
+                               <td align="center" width="40">n/a</td>
+                               <td align="center" width="40">n/a</td>
+                               <td align="center" width="40">52</td>
+                               <td align="center" width="40">52</td>
+                       </tr>
+                       <tr>
+                               <td width="50">speed3</td>
+                               <td width="90">add new one</td>
+                               <td align="center" width="40">n/a</td>
+                               <td align="center" width="40">n/a</td>
+                               <td align="center" width="40">n/a</td>
+                               <td align="center" width="40">n/a</td>
+                               <td align="center" width="40">n/a</td>
+                               <td align="center" width="40">n/a</td>
+                       </tr>
+               </table>
+               <p></p>
+               <hr>
+               <h1>Policy on removing features from OpenOCD</h1>
+               If a feature in OpenOCD is known to be broken and nobody has submitted a fix and the feature is causing trouble for maintainence, it can be removed from OpenOCD trunk. The threshold for temporarily removing something from OpenOCD trunk is low to ease maintainence and place the burden of maintainence on those that care about a feature.
+               <p>Note that code is never deleted from OpenOCD svn, it remains in svn so if somebody sees a feature removed that they would like kept, they have but to port and fix that feature back up to main trunk. This document can be helpful in this regard in that the latest working version and the known broken version may be listed.</p>
+               <h1>Policy on adding features from OpenOCD</h1>
+               To add a feature to OpenOCD, generally it should not break any existing features and it should be functional and the code reasonably readable and useful to others in the OpenOCD community. The code does not have to be completed. Work in progress is fine for OpenOCD trunk.
+               <p>Also new tests should be defined. Note that the code does not have to pass all the tests. In fact it can be helpful to have tests to describe facets that really should be working, but aren't done yet. </p>
+               <hr>
+               <h1>ocd4 - ARM7 debugging<a name="test_ocd4"></a></h1>
+               Connect to ARM7 device(any), use GDB load to load a program into RAM and single halt, resume and single step.
+               <hr>
+               <h1>bdte-ram (Basic debugging test with Eclipse in RAM)<a id="bdte-ram" name="bdte-ram"></a></h1>
+               <p>This test was made under Eclipse with the Zylin Embedded CDT&nbsp;plugin. For the GDB &quot;Initialize commands&quot; take a look in the examples/&lt;target&gt;/prj/<b>eclipse_ram.gdb</b> file.</p>
+               <p>Start debugging,  the debugger should stop at main. set some breakpoints and &quot;Resume&quot;. If the debugger hit a breakpoint check if the &quot;Variables&quot; looks correct. Remove some breakpoints and &quot;Resume&quot; again. If the target is running, use the &quot;Suspend&quot; function and use &quot;Step Into&quot; or &quot;Step Over&quot; through the source. Even open the &quot;Disassembly&quot; view and enable the &quot;Instruction Stepping Mode&quot;. Now you can single step through the assembler source. Use &quot;Resume&quot; again to run the program, set a breakpoint while the target is running. Check if  you can inspect the variables with the mouse over. Play a little with the target...</p>
+               <hr>
+               <h1>bdte-rom (Basic debugging test with Eclipse in ROM)<a id="bdte-rom" name="bdte-rom"></a></h1>
+               <p>This test was made under Eclipse with the Zylin Embedded CDT&nbsp;plugin. For the GDB &quot;Initialize commands&quot; take a look in the examples/&lt;target&gt;/prj/<b>eclipse_rom.gdb</b> file.</p>
+               <p>Start debugging, the debugger should download and store the program in the flash of the target.</p>
+               <p>Now you can make some tests like described in the <a href="#bdte-ram">bdte-ram</a> section above too.</p>
+               <hr>
+               <h1>speed1 - Download speed test<a id="speed1" name="speed1"></a></h1>
+               <p>For this test a STR710 with external memory was used. The example project can be found under examples/STR710JtagSpeed. Here Eclipse or the arm-elf-gdb can be used to download the test.elf file into the RAM. The result of the GDB&nbsp;can look like:</p>
+               <p>Loading section .text, size 0x6019c lma 0x62000000<br>
+                       Start address 0x62000040, load size 393628<br>
+                       Transfer rate: 93 KB/sec, 2008 bytes/write.</p>
+               <p>In this example a speed of 93 KB/sec was reached. The hardware which was used for the test can be found <a href="http://www.yagarto.de/projects/str7usbmsd/index.html" target="new">here</a>.</p>
+               <p>The test was made on Windows XP Prof. (SP2) with a JTAGkey and the original FTDI driver.</p>
+               <hr>
+               <h1>speed2 - Download speed test<a id="speed2" name="speed2"></a></h1>
+               <p>For this test a STR710 with external memory was used. The example project can be found under examples/STR710JtagSpeed. Here Eclipse or the arm-elf-gdb can be used to download the test.elf file into the RAM. The result of the GDB&nbsp;can look like:</p>
+               <p>Loading section .text, size 0x6019c lma 0x62000000<br>
+                       Start address 0x62000040, load size 393628<br>Transfer rate: 52 KB/sec, 2008 bytes/write.</p>
+               <p>In this example a speed of 52 KB/sec was reached. The hardware which was used for the test can be found <a href="http://www.yagarto.de/projects/str7usbmsd/index.html" target="new">here</a>.</p>
+               <p>The test was made on Mac OS X (10.5.2, Intel)  with a JTAGkey and the following driver:</p>
+               <p>- libftdi 0.10<br>
+                       - libusb 0.1.12</p>
+               <p></p>
+               <p></p>
+       </body>
+
 </html>
\ No newline at end of file
index df8bfe710debd342bf4022dfc2281f6f59dfe4af..a3cc9eb6ac7e3deab113a79175487413ea29323f 100644 (file)
-<html>\r
-<head>\r
-<title>Test cases</title>\r
-</head>\r
-\r
-<body>\r
-<H1>Test cases</H1>\r
-<H2>Test case results</H2>\r
-The test results are stored in seperate documents. One document for\r
-each subversion number.\r
-<table border="1">\r
-       <tr><td>Test results</td><td>comment</td></tr>\r
-       <tr><td><a href="examples/SAM7S256Test/results/607.html">607</a></td><td></td></tr>\r
-       <tr><td><a href="results/template.html">template</a></td><td>Test results template</td></tr>\r
-</table>\r
-\r
-<H2>Vocabulary</H2>\r
-<table border="1">\r
-       <tr>\r
-               <td width="100">Passed version</td>\r
-\r
-               <td>The latest branch and version on which the test is known to pass</td>\r
-       </tr>\r
-       <tr>\r
-               <td width="100">Broken version</td>\r
-               <td>The latest branch and version on which the test is known to fail. n/a when older than passed version.</td>\r
-       </tr>\r
-       <tr>\r
-               <td width="100">ID</td>\r
-               <td>A unqiue ID to refer to a test. The unique numbers are maintained in this file. Note that the same test can be run on different hardware/interface. Each combination yields a unique id. </td>\r
-       </tr>\r
-       <tr>\r
-               <td width="100">Test case</td>\r
-               <td>An atomic entity that describes the operations needed to test a feature or only a part of it. The test case should:\r
-                       <ul>\r
-                               <li>be uniquely identifiable</li>\r
-                               <li>define the complete prerequisites of the test (eg: the target, the interface, the initial state of the system)</li>\r
-                               <li>define the input to be applied to the system in order to execute the test</li>\r
-                               <li>define the expected output</li>\r
-                               <li>contain the output resulted by running the test case</li>\r
-                               <li>contain the result of the test (pass/fail)</li>\r
-                       </ul>\r
-               </td>\r
-       </tr>\r
-       <tr>\r
-               <td width="100">Test suite</td>\r
-               <td>A (completable) collection of test cases</td>\r
-       </tr>\r
-       <tr>\r
-               <td width="100">Testing</td>\r
-               <td>Testing refers to running the test suite for a specific revision of the software,\r
-               for one or many targets, using one or many JTAG interfaces. Testing should be be stored\r
-               along with all the other records for that specific revision. For releases, the results\r
-               can be stored along with the binaries</td>\r
-       </tr>\r
-       <tr>\r
-               <td width="100">Target = ANY</td>\r
-               <td>Any target can be used for this test</td>\r
-       </tr>\r
-       <tr>\r
-               <td width="100">Interface = ANY</td>\r
-               <td>Any interface can be used for this test</td>\r
-       </tr>\r
-       <tr>\r
-               <td width="100">Target = "reset_config srst_and_trst"</td>\r
-               <td>Any target which supports the reset_config above</td>\r
-       </tr>\r
-</table>\r
-\r
-<H1>Test cases</H1>\r
-\r
-<H2>Connectivity</H2>\r
-<table border=1>\r
-       <tr>\r
-               <td>ID</td>\r
-               <td>Target</td>\r
-               <td>Interface</td>\r
-               <td>Description</td>\r
-               <td>Initial state</td>\r
-               <td>Input</td>\r
-               <td>Expected output</td>\r
-               <td>Pass/Fail</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="CON001"/>CON001</td>\r
-               <td>ALL</td>\r
-               <td>ALL</td>\r
-               <td>Telnet connection</td>\r
-               <td>Power on, jtag target attached</td>\r
-               <td>On console, type<br><code>telnet ip port</code></td>\r
-               <td><code>Open On-Chip Debugger<br>></code></td>\r
-               <td>PASS/FAIL</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="CON002"/>CON002</td>\r
-               <td>ALL</td>\r
-               <td>ALL</td>\r
-               <td>GDB server connection</td>\r
-               <td>Power on, jtag target attached</td>\r
-               <td>On GDB console, type<br><code>target remote ip:port</code></td>\r
-               <td><code>Remote debugging using 10.0.0.73:3333</code></td>\r
-               <td>PASS/FAIL</td>\r
-       </tr>\r
-</table>\r
-\r
-<H2>Reset</H2>\r
-<table border=1>\r
-       <tr>\r
-               <td>ID</td>\r
-               <td>Target</td>\r
-               <td>Interface</td>\r
-               <td>Description</td>\r
-               <td>Initial state</td>\r
-               <td>Input</td>\r
-               <td>Expected output</td>\r
-               <td>Pass/Fail</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="RES001"/>RES001</td>\r
-               <td>Fill in!</td>\r
-               <td>Fill in!</td>\r
-               <td>Reset halt on a blank target</td>\r
-               <td>Erase all the content of the flash</td>\r
-               <td>Connect via the telnet interface and type <br><code>reset halt</code></td>\r
-               <td>Reset should return without error and the output should contain<br><code>target state: halted<br>pc = 0</code></td>\r
-               <td>PASS/FAIL</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="RES002"/>RES002</td>\r
-               <td>Fill in!</td>\r
-               <td>Fill in!</td>\r
-               <td>Reset init on a blank target</td>\r
-               <td>Erase all the content of the flash</td>\r
-               <td>Connect via the telnet interface and type <br><code>reset init</code></td>\r
-               <td>Reset should return without error and the output should contain <br><code>executing reset script 'name_of_the_script'</code></td>\r
-               <td>PASS/FAIL</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="RES003"/>RES003</td>\r
-               <td>Fill in!</td>\r
-               <td>Fill in!</td>\r
-               <td>Reset after a power cycle of the target</td>\r
-               <td>Reset the target then power cycle the target</td>\r
-               <td>Connect via the telnet interface and type <br><code>reset halt</code> after the power was detected</td>\r
-               <td>Reset should return without error and the output should contain<br><code>target state: halted</code></td>\r
-               <td>PASS/FAIL</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="RES004"/>RES004</td>\r
-               <td>ARM7/9,reset_config srst_and_trst</td>\r
-               <td>ANY</td>\r
-               <td>Reset halt on a blank target where reset halt is supported</td>\r
-               <td>Erase all the content of the flash</td>\r
-               <td>Connect via the telnet interface and type <br><code>reset halt</code></td>\r
-               <td>Reset should return without error and the output should contain<br><code>target state: halted<br>pc = 0</code></td>\r
-               <td>PASS/FAIL</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="RES005"/>RES005</td>\r
-               <td>arm926ejs,reset_config srst_and_trst</td>\r
-               <td>ANY</td>\r
-               <td>Reset halt on a blank target where reset halt is supported. This target has problems with the reset vector catch being disabled by TRST</td>\r
-               <td>Erase all the content of the flash</td>\r
-               <td>Connect via the telnet interface and type <br><code>reset halt</code></td>\r
-               <td>Reset should return without error and the output should contain<br><code>target state: halted<br>pc = 0</code></td>\r
-               <td>PASS/FAIL</td>\r
-       </tr>\r
-</table>\r
-\r
-<H2>JTAG Speed</H2>\r
-<table border=1>\r
-       <tr>\r
-               <td>ID</td>\r
-               <td>Target</td>\r
-               <td>Interface</td>\r
-               <td>Description</td>\r
-               <td>Initial state</td>\r
-               <td>Input</td>\r
-               <td>Expected output</td>\r
-               <td>Pass/Fail</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="SPD001"/>RES001</td>\r
-               <td>Fill in!</td>\r
-               <td>Fill in!</td>\r
-               <td>16MHz on normal operation</td>\r
-               <td>Reset init the target according to RES002 </td>\r
-               <td>Exercise a memory access over the JTAG, for example <br><code>mdw 0x0 32</code></td>\r
-               <td>The command should run without any errors. If any JTAG checking errors happen, the test failed</td>\r
-               <td>PASS/FAIL</td>\r
-       </tr>\r
-</table>\r
-\r
-<H2>Debugging</H2>\r
-<table border=1>\r
-       <tr>\r
-               <td>ID</td>\r
-               <td>Target</td>\r
-               <td>Interface</td>\r
-               <td>Description</td>\r
-               <td>Initial state</td>\r
-               <td>Input</td>\r
-               <td>Expected output</td>\r
-               <td>Pass/Fail</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="DBG001"/>DBG001</td>\r
-               <td>Fill in!</td>\r
-               <td>Fill in!</td>\r
-               <td>Load is working</td>\r
-               <td>Reset init is working, RAM is accesible, GDB server is started</td>\r
-               <td>On the console of the OS: <br>\r
-                       <code>arm-elf-gdb test_ram.elf</code><br>\r
-                       <code>(gdb) target remote ip:port</code><br>\r
-                       <code>(gdb) load</load>\r
-               </td>\r
-               <td>Load should return without error, typical output looks like:<br>\r
-                       <code>\r
-                               Loading section .text, size 0x14c lma 0x0<br>\r
-                               Start address 0x40, load size 332<br>\r
-                               Transfer rate: 180 bytes/sec, 332 bytes/write.<br>\r
-                       </code>\r
-               </td>\r
-               <td>PASS/FAIL</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="DBG002"/>DBG002</td>\r
-               <td>Fill in!</td>\r
-               <td>Fill in!</td>\r
-               <td>Software breakpoint</td>\r
-               <td>Load the test_ram.elf application, use instructions from GDB001</td>\r
-               <td>In the GDB console:<br>\r
-                       <code>\r
-                               (gdb) monitor arm7_9 sw_bkpts enable<br>\r
-                               software breakpoints enabled<br>\r
-                               (gdb) break main<br>\r
-                               Breakpoint 1 at 0xec: file src/main.c, line 71.<br>\r
-                               (gdb) continue<br>\r
-                               Continuing.\r
-                       </code>\r
-               </td>\r
-               <td>The software breakpoint should be reached, a typical output looks like:<br>\r
-                       <code>\r
-                               target state: halted<br>\r
-                               target halted in ARM state due to breakpoint, current mode: Supervisor<br>\r
-                               cpsr: 0x000000d3 pc: 0x000000ec<br>\r
-                               <br>\r
-                               Breakpoint 1, main () at src/main.c:71<br>\r
-                               71        DWORD a = 1;\r
-                       </code>\r
-               </td>\r
-               <td>PASS/FAIL</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="DBG003"/>DBG003</td>\r
-               <td>Fill in!</td>\r
-               <td>Fill in!</td>\r
-               <td>Single step in a RAM application</td>\r
-               <td>Load the test_ram.elf application, use instructions from GDB001, break in main using the instructions from GDB002</td>\r
-               <td>In GDB, type <br><code>(gdb) step</code></td>\r
-               <td>The next instruction should be reached, typical output:<br>\r
-                       <code>\r
-                               (gdb) step<br>\r
-                               target state: halted<br>\r
-                               target halted in ARM state due to single step, current mode: Abort<br>\r
-                               cpsr: 0x20000097 pc: 0x000000f0<br>\r
-                               target state: halted<br>\r
-                               target halted in ARM state due to single step, current mode: Abort<br>\r
-                               cpsr: 0x20000097 pc: 0x000000f4<br>\r
-                               72        DWORD b = 2;\r
-                       </code>\r
-               </td>\r
-               <td>PASS/FAIL</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="DBG004"/>DBG004</td>\r
-               <td>Fill in!</td>\r
-               <td>Fill in!</td>\r
-               <td>Software break points are working after a reset</td>\r
-               <td>Load the test_ram.elf application, use instructions from GDB001, break in main using the instructions from GDB002</td>\r
-               <td>In GDB, type <br><code>\r
-                       (gdb) monitor reset<br>\r
-                       (gdb) load<br>\r
-                       (gdb) continue<br>\r
-                       </code></td>\r
-               <td>The breakpoint should be reached, typical output:<br>\r
-                       <code>\r
-                               target state: halted<br>\r
-                               target halted in ARM state due to breakpoint, current mode: Supervisor<br>\r
-                               cpsr: 0x000000d3 pc: 0x000000ec<br>\r
-                               <br>\r
-                               Breakpoint 1, main () at src/main.c:71<br>\r
-                               71        DWORD a = 1;\r
-                       </code>\r
-               </td>\r
-               <td>PASS/FAIL</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="DBG005"/>DBG005</td>\r
-               <td>Fill in!</td>\r
-               <td>Fill in!</td>\r
-               <td>Hardware breakpoint</td>\r
-               <td>Flash the test_rom.elf application. Make this test after FLA004 has passed</td>\r
-               <td>Be sure that <code>gdb_memory_map</code> and <code>gdb_flash_program</code> are enabled. In GDB, type <br>\r
-                       <code>\r
-                               (gdb) monitor reset<br>\r
-                               (gdb) load<br>\r
-                               Loading section .text, size 0x194 lma 0x100000<br>\r
-                               Start address 0x100040, load size 404<br>\r
-                               Transfer rate: 179 bytes/sec, 404 bytes/write.<br>\r
-                               (gdb) monitor arm7_9  force_hw_bkpts enable<br>\r
-                               force hardware breakpoints enabled<br>\r
-                               (gdb) break main<br>\r
-                               Breakpoint 1 at 0x100134: file src/main.c, line 69.<br>\r
-                               (gdb) continue<br>\r
-                       </code>\r
-               </td>\r
-               <td>The breakpoint should be reached, typical output:<br>\r
-                       <code>\r
-                               Continuing.<br>\r
-                               <br>\r
-                               Breakpoint 1, main () at src/main.c:69<br>\r
-                               69        DWORD a = 1;<br>\r
-                       </code>\r
-               </td>\r
-               <td>PASS/FAIL</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="DBG006"/>DBG006</td>\r
-               <td>Fill in!</td>\r
-               <td>Fill in!</td>\r
-               <td>Hardware breakpoint is set after a reset</td>\r
-               <td>Follow the instructions to flash and insert a hardware breakpoint from DBG005</td>\r
-               <td>In GDB, type <br>\r
-                       <code>\r
-                               (gdb) monitor reset<br>\r
-                               (gdb) monitor reg pc 0x100000<br>\r
-                               pc (/32): 0x00100000<br>\r
-                               (gdb) continue\r
-                       </code>\r
-               </td>\r
-               <td>The breakpoint should be reached, typical output:<br>\r
-                       <code>\r
-                               Continuing.<br>\r
-                               <br>\r
-                               Breakpoint 1, main () at src/main.c:69<br>\r
-                               69        DWORD a = 1;<br>\r
-                       </code>\r
-               </td>\r
-               <td>PASS/FAIL</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="DBG007"/>DBG007</td>\r
-               <td>Fill in!</td>\r
-               <td>Fill in!</td>\r
-               <td>Single step in ROM</td>\r
-               <td>Flash the test_rom.elf application and set a breakpoint in main, use DBG005. Make this test after FLA004 has passed</td>\r
-               <td>Be sure that <code>gdb_memory_map</code> and <code>gdb_flash_program</code> are enabled. In GDB, type <br>\r
-                       <code>\r
-                               (gdb) monitor reset<br>\r
-                               (gdb) load<br>\r
-                               Loading section .text, size 0x194 lma 0x100000<br>\r
-                               Start address 0x100040, load size 404<br>\r
-                               Transfer rate: 179 bytes/sec, 404 bytes/write.<br>\r
-                               (gdb) monitor arm7_9  force_hw_bkpts enable<br>\r
-                               force hardware breakpoints enabled<br>\r
-                               (gdb) break main<br>\r
-                               Breakpoint 1 at 0x100134: file src/main.c, line 69.<br>\r
-                               (gdb) continue<br>\r
-                               Continuing.<br>\r
-                               <br>\r
-                               Breakpoint 1, main () at src/main.c:69<br>\r
-                               69        DWORD a = 1;<br>\r
-                               (gdb) step\r
-                       </code>\r
-               </td>\r
-               <td>The breakpoint should be reached, typical output:<br>\r
-                       <code>\r
-                               target state: halted<br>\r
-                               target halted in ARM state due to single step, current mode: Supervisor<br>\r
-                               cpsr: 0x60000013 pc: 0x0010013c<br>\r
-                               70        DWORD b = 2;<br>\r
-                       </code>\r
-               </td>\r
-               <td>PASS/FAIL</td>\r
-       </tr>\r
-</table>\r
-\r
-<H2>RAM access</H2>\r
-Note: these tests are not designed to test/debug the target, but to test functionalities!\r
-<table border=1>\r
-       <tr>\r
-               <td>ID</td>\r
-               <td>Target</td>\r
-               <td>Interface</td>\r
-               <td>Description</td>\r
-               <td>Initial state</td>\r
-               <td>Input</td>\r
-               <td>Expected output</td>\r
-               <td>Pass/Fail</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="RAM001"/>RAM001</td>\r
-               <td>Fill in!</td>\r
-               <td>Fill in!</td>\r
-               <td>32 bit Write/read RAM</td>\r
-               <td>Reset init is working</td>\r
-               <td>On the telnet interface<br>\r
-                       <code>  > mww ram_address 0xdeadbeef 16<br>\r
-                                       > mdw ram_address 32\r
-                       </code>\r
-               </td>\r
-               <td>The commands should execute without error. A clear failure is a memory access exception. The result of running the commands should be a list of 16 locations 32bit long containing 0xdeadbeef.<br>\r
-                       <code>\r
-                               > mww 0x0 0xdeadbeef 16<br>\r
-                               > mdw 0x0 32<br>\r
-                               0x00000000: deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef<br>\r
-                               0x00000020: deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef<br>\r
-                               0x00000040: e1a00000 e59fa51c e59f051c e04aa000 00080017 00009388 00009388 00009388<br>\r
-                               0x00000060: 00009388 0002c2c0 0002c2c0 000094f8 000094f4 00009388 00009388 00009388<br>\r
-                       </code>\r
-               </td>\r
-               <td>PASS/FAIL</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="RAM001"/>RAM001</td>\r
-               <td>Fill in!</td>\r
-               <td>Fill in!</td>\r
-               <td>16 bit Write/read RAM</td>\r
-               <td>Reset init is working</td>\r
-               <td>On the telnet interface<br>\r
-                       <code>  > mwh ram_address 0xbeef 16<br>\r
-                                       > mdh ram_address 32\r
-                       </code>\r
-               </td>\r
-               <td>The commands should execute without error. A clear failure is a memory access exception. The result of running the commands should be a list of 16 locations 16bit long containing 0xbeef.<br>\r
-                       <code>\r
-                               > mwh 0x0 0xbeef 16<br>\r
-                               > mdh 0x0 32<br>\r
-                               0x00000000: beef beef beef beef beef beef beef beef beef beef beef beef beef beef beef beef<br>\r
-                               0x00000020: 00e0 0000 021c 0000 0240 0000 026c 0000 0288 0000 0000 0000 0388 0000 0350 0000<br>\r
-                               >\r
-                       </code>\r
-               </td>\r
-               <td>PASS/FAIL</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="RAM003"/>RAM003</td>\r
-               <td>Fill in!</td>\r
-               <td>Fill in!</td>\r
-               <td>8 bit Write/read RAM</td>\r
-               <td>Reset init is working</td>\r
-               <td>On the telnet interface<br>\r
-                       <code>  > mwb ram_address 0xab 16<br>\r
-                                       > mdb ram_address 32\r
-                       </code>\r
-               </td>\r
-               <td>The commands should execute without error. A clear failure is a memory access exception. The result of running the commands should be a list of 16 locations 8bit long containing 0xab.<br>\r
-                       <code>\r
-                               > mwh 0x0 0x0 16<br>\r
-                               > mwb ram_address 0xab 16<br>\r
-                               > mdb ram_address 32<br>\r
-                               0x00000000: ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00<br>\r
-                               >\r
-                       </code>\r
-               </td>\r
-               <td>PASS/FAIL</td>\r
-       </tr>\r
-</table>\r
-\r
-\r
-\r
-<H2>Flash access</H2>\r
-<table border=1>\r
-       <tr>\r
-               <td>ID</td>\r
-               <td>Target</td>\r
-               <td>Interface</td>\r
-               <td>Description</td>\r
-               <td>Initial state</td>\r
-               <td>Input</td>\r
-               <td>Expected output</td>\r
-               <td>Pass/Fail</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="FLA001"/>FLA001</td>\r
-               <td>Fill in!</td>\r
-               <td>Fill in!</td>\r
-               <td>Flash probe</td>\r
-               <td>Reset init is working</td>\r
-               <td>On the telnet interface:<br>\r
-                       <code>  > flash probe 0</code>\r
-               </td>\r
-               <td>The command should execute without error. The output should state the name of the flash and the starting address. An example of output:<br>\r
-                       <code>flash 'ecosflash' found at 0x01000000</code>\r
-               </td>\r
-               <td>PASS/FAIL</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="FLA002"/>FLA002</td>\r
-               <td>Fill in!</td>\r
-               <td>Fill in!</td>\r
-               <td>flash fillw</td>\r
-               <td>Reset init is working, flash is probed</td>\r
-               <td>On the telnet interface<br>\r
-                       <code>  > flash fillw 0x1000000 0xdeadbeef 16\r
-                       </code>\r
-               </td>\r
-               <td>The commands should execute without error. The output looks like:<br>\r
-                       <code>\r
-                               wrote 64 bytes to 0x01000000 in 11.610000s (0.091516 kb/s)\r
-                       </code><br>\r
-                       To verify the contents of the flash:<br>\r
-                       <code>\r
-                               > mdw 0x1000000 32<br>\r
-                               0x01000000: deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef<br>\r
-                               0x01000020: deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef<br>\r
-                               0x01000040: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>\r
-                               0x01000060: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff\r
-                       </code>\r
-               </td>\r
-               <td>PASS/FAIL</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="FLA003"/>FLA003</td>\r
-               <td>Fill in!</td>\r
-               <td>Fill in!</td>\r
-               <td>Flash erase</td>\r
-               <td>Reset init is working, flash is probed</td>\r
-               <td>On the telnet interface<br>\r
-                       <code>  >  flash erase_address 0x1000000 0x2000\r
-                       </code>\r
-               </td>\r
-               <td>The commands should execute without error.<br>\r
-                       <code>\r
-                               erased address 0x01000000 length 8192 in 4.970000s\r
-                       </code>\r
-                       To check that the flash has been erased, read at different addresses. The result should always be 0xff.\r
-                       <code>\r
-                               > mdw 0x1000000 32<br>\r
-                               0x01000000: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>\r
-                               0x01000020: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>\r
-                               0x01000040: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>\r
-                               0x01000060: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff\r
-                       </code>\r
-               </td>\r
-               <td>PASS/FAIL</td>\r
-       </tr>\r
-       <tr>\r
-               <td><a name="FLA004"/>FLA004</td>\r
-               <td>Fill in!</td>\r
-               <td>Fill in!</td>\r
-               <td>Loading to flash from GDB</td>\r
-               <td>Reset init is working, flash is probed, connectivity to GDB server is working</td>\r
-               <td>Start GDB using a ROM elf image, eg: arm-elf-gdb test_rom.elf. <br>\r
-                               <code>\r
-                                       (gdb) target remote ip:port<br>\r
-                                       (gdb) monitor reset<br>\r
-                                       (gdb) load<br>\r
-                                       Loading section .text, size 0x194 lma 0x100000<br>\r
-                                       Start address 0x100040, load size 404<br>\r
-                                       Transfer rate: 179 bytes/sec, 404 bytes/write.\r
-                                       (gdb) monitor verify_image path_to_elf_file\r
-                               </code>\r
-               </td>\r
-               <td>The output should look like:<br>\r
-                       <code>\r
-                               verified 404 bytes in 5.060000s\r
-                       </code><br>\r
-                       The failure message is something like:<br>\r
-                       <code>Verify operation failed address 0x00200000. Was 0x00 instead of 0x18</code>\r
-               </td>\r
-               <td>PASS/FAIL</td>\r
-       </tr>\r
-</table>\r
-\r
-</body>\r
+<html>
+<head>
+<title>Test cases</title>
+</head>
+
+<body>
+<H1>Test cases</H1>
+<H2>Test case results</H2>
+The test results are stored in seperate documents. One document for
+each subversion number.
+<table border="1">
+       <tr><td>Test results</td><td>comment</td></tr>
+       <tr><td><a href="examples/SAM7S256Test/results/607.html">607</a></td><td></td></tr>
+       <tr><td><a href="results/template.html">template</a></td><td>Test results template</td></tr>
+</table>
+
+<H2>Vocabulary</H2>
+<table border="1">
+       <tr>
+               <td width="100">Passed version</td>
+
+               <td>The latest branch and version on which the test is known to pass</td>
+       </tr>
+       <tr>
+               <td width="100">Broken version</td>
+               <td>The latest branch and version on which the test is known to fail. n/a when older than passed version.</td>
+       </tr>
+       <tr>
+               <td width="100">ID</td>
+               <td>A unqiue ID to refer to a test. The unique numbers are maintained in this file. Note that the same test can be run on different hardware/interface. Each combination yields a unique id. </td>
+       </tr>
+       <tr>
+               <td width="100">Test case</td>
+               <td>An atomic entity that describes the operations needed to test a feature or only a part of it. The test case should:
+                       <ul>
+                               <li>be uniquely identifiable</li>
+                               <li>define the complete prerequisites of the test (eg: the target, the interface, the initial state of the system)</li>
+                               <li>define the input to be applied to the system in order to execute the test</li>
+                               <li>define the expected output</li>
+                               <li>contain the output resulted by running the test case</li>
+                               <li>contain the result of the test (pass/fail)</li>
+                       </ul>
+               </td>
+       </tr>
+       <tr>
+               <td width="100">Test suite</td>
+               <td>A (completable) collection of test cases</td>
+       </tr>
+       <tr>
+               <td width="100">Testing</td>
+               <td>Testing refers to running the test suite for a specific revision of the software,
+               for one or many targets, using one or many JTAG interfaces. Testing should be be stored
+               along with all the other records for that specific revision. For releases, the results
+               can be stored along with the binaries</td>
+       </tr>
+       <tr>
+               <td width="100">Target = ANY</td>
+               <td>Any target can be used for this test</td>
+       </tr>
+       <tr>
+               <td width="100">Interface = ANY</td>
+               <td>Any interface can be used for this test</td>
+       </tr>
+       <tr>
+               <td width="100">Target = "reset_config srst_and_trst"</td>
+               <td>Any target which supports the reset_config above</td>
+       </tr>
+</table>
+
+<H1>Test cases</H1>
+
+<H2>Connectivity</H2>
+<table border=1>
+       <tr>
+               <td>ID</td>
+               <td>Target</td>
+               <td>Interface</td>
+               <td>Description</td>
+               <td>Initial state</td>
+               <td>Input</td>
+               <td>Expected output</td>
+               <td>Pass/Fail</td>
+       </tr>
+       <tr>
+               <td><a name="CON001"/>CON001</td>
+               <td>ALL</td>
+               <td>ALL</td>
+               <td>Telnet connection</td>
+               <td>Power on, jtag target attached</td>
+               <td>On console, type<br><code>telnet ip port</code></td>
+               <td><code>Open On-Chip Debugger<br>></code></td>
+               <td>PASS/FAIL</td>
+       </tr>
+       <tr>
+               <td><a name="CON002"/>CON002</td>
+               <td>ALL</td>
+               <td>ALL</td>
+               <td>GDB server connection</td>
+               <td>Power on, jtag target attached</td>
+               <td>On GDB console, type<br><code>target remote ip:port</code></td>
+               <td><code>Remote debugging using 10.0.0.73:3333</code></td>
+               <td>PASS/FAIL</td>
+       </tr>
+</table>
+
+<H2>Reset</H2>
+<table border=1>
+       <tr>
+               <td>ID</td>
+               <td>Target</td>
+               <td>Interface</td>
+               <td>Description</td>
+               <td>Initial state</td>
+               <td>Input</td>
+               <td>Expected output</td>
+               <td>Pass/Fail</td>
+       </tr>
+       <tr>
+               <td><a name="RES001"/>RES001</td>
+               <td>Fill in!</td>
+               <td>Fill in!</td>
+               <td>Reset halt on a blank target</td>
+               <td>Erase all the content of the flash</td>
+               <td>Connect via the telnet interface and type <br><code>reset halt</code></td>
+               <td>Reset should return without error and the output should contain<br><code>target state: halted<br>pc = 0</code></td>
+               <td>PASS/FAIL</td>
+       </tr>
+       <tr>
+               <td><a name="RES002"/>RES002</td>
+               <td>Fill in!</td>
+               <td>Fill in!</td>
+               <td>Reset init on a blank target</td>
+               <td>Erase all the content of the flash</td>
+               <td>Connect via the telnet interface and type <br><code>reset init</code></td>
+               <td>Reset should return without error and the output should contain <br><code>executing reset script 'name_of_the_script'</code></td>
+               <td>PASS/FAIL</td>
+       </tr>
+       <tr>
+               <td><a name="RES003"/>RES003</td>
+               <td>Fill in!</td>
+               <td>Fill in!</td>
+               <td>Reset after a power cycle of the target</td>
+               <td>Reset the target then power cycle the target</td>
+               <td>Connect via the telnet interface and type <br><code>reset halt</code> after the power was detected</td>
+               <td>Reset should return without error and the output should contain<br><code>target state: halted</code></td>
+               <td>PASS/FAIL</td>
+       </tr>
+       <tr>
+               <td><a name="RES004"/>RES004</td>
+               <td>ARM7/9,reset_config srst_and_trst</td>
+               <td>ANY</td>
+               <td>Reset halt on a blank target where reset halt is supported</td>
+               <td>Erase all the content of the flash</td>
+               <td>Connect via the telnet interface and type <br><code>reset halt</code></td>
+               <td>Reset should return without error and the output should contain<br><code>target state: halted<br>pc = 0</code></td>
+               <td>PASS/FAIL</td>
+       </tr>
+       <tr>
+               <td><a name="RES005"/>RES005</td>
+               <td>arm926ejs,reset_config srst_and_trst</td>
+               <td>ANY</td>
+               <td>Reset halt on a blank target where reset halt is supported. This target has problems with the reset vector catch being disabled by TRST</td>
+               <td>Erase all the content of the flash</td>
+               <td>Connect via the telnet interface and type <br><code>reset halt</code></td>
+               <td>Reset should return without error and the output should contain<br><code>target state: halted<br>pc = 0</code></td>
+               <td>PASS/FAIL</td>
+       </tr>
+</table>
+
+<H2>JTAG Speed</H2>
+<table border=1>
+       <tr>
+               <td>ID</td>
+               <td>Target</td>
+               <td>Interface</td>
+               <td>Description</td>
+               <td>Initial state</td>
+               <td>Input</td>
+               <td>Expected output</td>
+               <td>Pass/Fail</td>
+       </tr>
+       <tr>
+               <td><a name="SPD001"/>RES001</td>
+               <td>Fill in!</td>
+               <td>Fill in!</td>
+               <td>16MHz on normal operation</td>
+               <td>Reset init the target according to RES002 </td>
+               <td>Exercise a memory access over the JTAG, for example <br><code>mdw 0x0 32</code></td>
+               <td>The command should run without any errors. If any JTAG checking errors happen, the test failed</td>
+               <td>PASS/FAIL</td>
+       </tr>
+</table>
+
+<H2>Debugging</H2>
+<table border=1>
+       <tr>
+               <td>ID</td>
+               <td>Target</td>
+               <td>Interface</td>
+               <td>Description</td>
+               <td>Initial state</td>
+               <td>Input</td>
+               <td>Expected output</td>
+               <td>Pass/Fail</td>
+       </tr>
+       <tr>
+               <td><a name="DBG001"/>DBG001</td>
+               <td>Fill in!</td>
+               <td>Fill in!</td>
+               <td>Load is working</td>
+               <td>Reset init is working, RAM is accesible, GDB server is started</td>
+               <td>On the console of the OS: <br>
+                       <code>arm-elf-gdb test_ram.elf</code><br>
+                       <code>(gdb) target remote ip:port</code><br>
+                       <code>(gdb) load</load>
+               </td>
+               <td>Load should return without error, typical output looks like:<br>
+                       <code>
+                               Loading section .text, size 0x14c lma 0x0<br>
+                               Start address 0x40, load size 332<br>
+                               Transfer rate: 180 bytes/sec, 332 bytes/write.<br>
+                       </code>
+               </td>
+               <td>PASS/FAIL</td>
+       </tr>
+       <tr>
+               <td><a name="DBG002"/>DBG002</td>
+               <td>Fill in!</td>
+               <td>Fill in!</td>
+               <td>Software breakpoint</td>
+               <td>Load the test_ram.elf application, use instructions from GDB001</td>
+               <td>In the GDB console:<br>
+                       <code>
+                               (gdb) monitor arm7_9 sw_bkpts enable<br>
+                               software breakpoints enabled<br>
+                               (gdb) break main<br>
+                               Breakpoint 1 at 0xec: file src/main.c, line 71.<br>
+                               (gdb) continue<br>
+                               Continuing.
+                       </code>
+               </td>
+               <td>The software breakpoint should be reached, a typical output looks like:<br>
+                       <code>
+                               target state: halted<br>
+                               target halted in ARM state due to breakpoint, current mode: Supervisor<br>
+                               cpsr: 0x000000d3 pc: 0x000000ec<br>
+                               <br>
+                               Breakpoint 1, main () at src/main.c:71<br>
+                               71        DWORD a = 1;
+                       </code>
+               </td>
+               <td>PASS/FAIL</td>
+       </tr>
+       <tr>
+               <td><a name="DBG003"/>DBG003</td>
+               <td>Fill in!</td>
+               <td>Fill in!</td>
+               <td>Single step in a RAM application</td>
+               <td>Load the test_ram.elf application, use instructions from GDB001, break in main using the instructions from GDB002</td>
+               <td>In GDB, type <br><code>(gdb) step</code></td>
+               <td>The next instruction should be reached, typical output:<br>
+                       <code>
+                               (gdb) step<br>
+                               target state: halted<br>
+                               target halted in ARM state due to single step, current mode: Abort<br>
+                               cpsr: 0x20000097 pc: 0x000000f0<br>
+                               target state: halted<br>
+                               target halted in ARM state due to single step, current mode: Abort<br>
+                               cpsr: 0x20000097 pc: 0x000000f4<br>
+                               72        DWORD b = 2;
+                       </code>
+               </td>
+               <td>PASS/FAIL</td>
+       </tr>
+       <tr>
+               <td><a name="DBG004"/>DBG004</td>
+               <td>Fill in!</td>
+               <td>Fill in!</td>
+               <td>Software break points are working after a reset</td>
+               <td>Load the test_ram.elf application, use instructions from GDB001, break in main using the instructions from GDB002</td>
+               <td>In GDB, type <br><code>
+                       (gdb) monitor reset<br>
+                       (gdb) load<br>
+                       (gdb) continue<br>
+                       </code></td>
+               <td>The breakpoint should be reached, typical output:<br>
+                       <code>
+                               target state: halted<br>
+                               target halted in ARM state due to breakpoint, current mode: Supervisor<br>
+                               cpsr: 0x000000d3 pc: 0x000000ec<br>
+                               <br>
+                               Breakpoint 1, main () at src/main.c:71<br>
+                               71        DWORD a = 1;
+                       </code>
+               </td>
+               <td>PASS/FAIL</td>
+       </tr>
+       <tr>
+               <td><a name="DBG005"/>DBG005</td>
+               <td>Fill in!</td>
+               <td>Fill in!</td>
+               <td>Hardware breakpoint</td>
+               <td>Flash the test_rom.elf application. Make this test after FLA004 has passed</td>
+               <td>Be sure that <code>gdb_memory_map</code> and <code>gdb_flash_program</code> are enabled. In GDB, type <br>
+                       <code>
+                               (gdb) monitor reset<br>
+                               (gdb) load<br>
+                               Loading section .text, size 0x194 lma 0x100000<br>
+                               Start address 0x100040, load size 404<br>
+                               Transfer rate: 179 bytes/sec, 404 bytes/write.<br>
+                               (gdb) monitor arm7_9  force_hw_bkpts enable<br>
+                               force hardware breakpoints enabled<br>
+                               (gdb) break main<br>
+                               Breakpoint 1 at 0x100134: file src/main.c, line 69.<br>
+                               (gdb) continue<br>
+                       </code>
+               </td>
+               <td>The breakpoint should be reached, typical output:<br>
+                       <code>
+                               Continuing.<br>
+                               <br>
+                               Breakpoint 1, main () at src/main.c:69<br>
+                               69        DWORD a = 1;<br>
+                       </code>
+               </td>
+               <td>PASS/FAIL</td>
+       </tr>
+       <tr>
+               <td><a name="DBG006"/>DBG006</td>
+               <td>Fill in!</td>
+               <td>Fill in!</td>
+               <td>Hardware breakpoint is set after a reset</td>
+               <td>Follow the instructions to flash and insert a hardware breakpoint from DBG005</td>
+               <td>In GDB, type <br>
+                       <code>
+                               (gdb) monitor reset<br>
+                               (gdb) monitor reg pc 0x100000<br>
+                               pc (/32): 0x00100000<br>
+                               (gdb) continue
+                       </code>
+               </td>
+               <td>The breakpoint should be reached, typical output:<br>
+                       <code>
+                               Continuing.<br>
+                               <br>
+                               Breakpoint 1, main () at src/main.c:69<br>
+                               69        DWORD a = 1;<br>
+                       </code>
+               </td>
+               <td>PASS/FAIL</td>
+       </tr>
+       <tr>
+               <td><a name="DBG007"/>DBG007</td>
+               <td>Fill in!</td>
+               <td>Fill in!</td>
+               <td>Single step in ROM</td>
+               <td>Flash the test_rom.elf application and set a breakpoint in main, use DBG005. Make this test after FLA004 has passed</td>
+               <td>Be sure that <code>gdb_memory_map</code> and <code>gdb_flash_program</code> are enabled. In GDB, type <br>
+                       <code>
+                               (gdb) monitor reset<br>
+                               (gdb) load<br>
+                               Loading section .text, size 0x194 lma 0x100000<br>
+                               Start address 0x100040, load size 404<br>
+                               Transfer rate: 179 bytes/sec, 404 bytes/write.<br>
+                               (gdb) monitor arm7_9  force_hw_bkpts enable<br>
+                               force hardware breakpoints enabled<br>
+                               (gdb) break main<br>
+                               Breakpoint 1 at 0x100134: file src/main.c, line 69.<br>
+                               (gdb) continue<br>
+                               Continuing.<br>
+                               <br>
+                               Breakpoint 1, main () at src/main.c:69<br>
+                               69        DWORD a = 1;<br>
+                               (gdb) step
+                       </code>
+               </td>
+               <td>The breakpoint should be reached, typical output:<br>
+                       <code>
+                               target state: halted<br>
+                               target halted in ARM state due to single step, current mode: Supervisor<br>
+                               cpsr: 0x60000013 pc: 0x0010013c<br>
+                               70        DWORD b = 2;<br>
+                       </code>
+               </td>
+               <td>PASS/FAIL</td>
+       </tr>
+</table>
+
+<H2>RAM access</H2>
+Note: these tests are not designed to test/debug the target, but to test functionalities!
+<table border=1>
+       <tr>
+               <td>ID</td>
+               <td>Target</td>
+               <td>Interface</td>
+               <td>Description</td>
+               <td>Initial state</td>
+               <td>Input</td>
+               <td>Expected output</td>
+               <td>Pass/Fail</td>
+       </tr>
+       <tr>
+               <td><a name="RAM001"/>RAM001</td>
+               <td>Fill in!</td>
+               <td>Fill in!</td>
+               <td>32 bit Write/read RAM</td>
+               <td>Reset init is working</td>
+               <td>On the telnet interface<br>
+                       <code>  > mww ram_address 0xdeadbeef 16<br>
+                                       > mdw ram_address 32
+                       </code>
+               </td>
+               <td>The commands should execute without error. A clear failure is a memory access exception. The result of running the commands should be a list of 16 locations 32bit long containing 0xdeadbeef.<br>
+                       <code>
+                               > mww 0x0 0xdeadbeef 16<br>
+                               > mdw 0x0 32<br>
+                               0x00000000: deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef<br>
+                               0x00000020: deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef<br>
+                               0x00000040: e1a00000 e59fa51c e59f051c e04aa000 00080017 00009388 00009388 00009388<br>
+                               0x00000060: 00009388 0002c2c0 0002c2c0 000094f8 000094f4 00009388 00009388 00009388<br>
+                       </code>
+               </td>
+               <td>PASS/FAIL</td>
+       </tr>
+       <tr>
+               <td><a name="RAM001"/>RAM001</td>
+               <td>Fill in!</td>
+               <td>Fill in!</td>
+               <td>16 bit Write/read RAM</td>
+               <td>Reset init is working</td>
+               <td>On the telnet interface<br>
+                       <code>  > mwh ram_address 0xbeef 16<br>
+                                       > mdh ram_address 32
+                       </code>
+               </td>
+               <td>The commands should execute without error. A clear failure is a memory access exception. The result of running the commands should be a list of 16 locations 16bit long containing 0xbeef.<br>
+                       <code>
+                               > mwh 0x0 0xbeef 16<br>
+                               > mdh 0x0 32<br>
+                               0x00000000: beef beef beef beef beef beef beef beef beef beef beef beef beef beef beef beef<br>
+                               0x00000020: 00e0 0000 021c 0000 0240 0000 026c 0000 0288 0000 0000 0000 0388 0000 0350 0000<br>
+                               >
+                       </code>
+               </td>
+               <td>PASS/FAIL</td>
+       </tr>
+       <tr>
+               <td><a name="RAM003"/>RAM003</td>
+               <td>Fill in!</td>
+               <td>Fill in!</td>
+               <td>8 bit Write/read RAM</td>
+               <td>Reset init is working</td>
+               <td>On the telnet interface<br>
+                       <code>  > mwb ram_address 0xab 16<br>
+                                       > mdb ram_address 32
+                       </code>
+               </td>
+               <td>The commands should execute without error. A clear failure is a memory access exception. The result of running the commands should be a list of 16 locations 8bit long containing 0xab.<br>
+                       <code>
+                               > mwh 0x0 0x0 16<br>
+                               > mwb ram_address 0xab 16<br>
+                               > mdb ram_address 32<br>
+                               0x00000000: ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab ab 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00<br>
+                               >
+                       </code>
+               </td>
+               <td>PASS/FAIL</td>
+       </tr>
+</table>
+
+
+
+<H2>Flash access</H2>
+<table border=1>
+       <tr>
+               <td>ID</td>
+               <td>Target</td>
+               <td>Interface</td>
+               <td>Description</td>
+               <td>Initial state</td>
+               <td>Input</td>
+               <td>Expected output</td>
+               <td>Pass/Fail</td>
+       </tr>
+       <tr>
+               <td><a name="FLA001"/>FLA001</td>
+               <td>Fill in!</td>
+               <td>Fill in!</td>
+               <td>Flash probe</td>
+               <td>Reset init is working</td>
+               <td>On the telnet interface:<br>
+                       <code>  > flash probe 0</code>
+               </td>
+               <td>The command should execute without error. The output should state the name of the flash and the starting address. An example of output:<br>
+                       <code>flash 'ecosflash' found at 0x01000000</code>
+               </td>
+               <td>PASS/FAIL</td>
+       </tr>
+       <tr>
+               <td><a name="FLA002"/>FLA002</td>
+               <td>Fill in!</td>
+               <td>Fill in!</td>
+               <td>flash fillw</td>
+               <td>Reset init is working, flash is probed</td>
+               <td>On the telnet interface<br>
+                       <code>  > flash fillw 0x1000000 0xdeadbeef 16
+                       </code>
+               </td>
+               <td>The commands should execute without error. The output looks like:<br>
+                       <code>
+                               wrote 64 bytes to 0x01000000 in 11.610000s (0.091516 kb/s)
+                       </code><br>
+                       To verify the contents of the flash:<br>
+                       <code>
+                               > mdw 0x1000000 32<br>
+                               0x01000000: deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef<br>
+                               0x01000020: deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef deadbeef<br>
+                               0x01000040: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>
+                               0x01000060: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff
+                       </code>
+               </td>
+               <td>PASS/FAIL</td>
+       </tr>
+       <tr>
+               <td><a name="FLA003"/>FLA003</td>
+               <td>Fill in!</td>
+               <td>Fill in!</td>
+               <td>Flash erase</td>
+               <td>Reset init is working, flash is probed</td>
+               <td>On the telnet interface<br>
+                       <code>  >  flash erase_address 0x1000000 0x2000
+                       </code>
+               </td>
+               <td>The commands should execute without error.<br>
+                       <code>
+                               erased address 0x01000000 length 8192 in 4.970000s
+                       </code>
+                       To check that the flash has been erased, read at different addresses. The result should always be 0xff.
+                       <code>
+                               > mdw 0x1000000 32<br>
+                               0x01000000: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>
+                               0x01000020: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>
+                               0x01000040: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff<br>
+                               0x01000060: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff
+                       </code>
+               </td>
+               <td>PASS/FAIL</td>
+       </tr>
+       <tr>
+               <td><a name="FLA004"/>FLA004</td>
+               <td>Fill in!</td>
+               <td>Fill in!</td>
+               <td>Loading to flash from GDB</td>
+               <td>Reset init is working, flash is probed, connectivity to GDB server is working</td>
+               <td>Start GDB using a ROM elf image, eg: arm-elf-gdb test_rom.elf. <br>
+                               <code>
+                                       (gdb) target remote ip:port<br>
+                                       (gdb) monitor reset<br>
+                                       (gdb) load<br>
+                                       Loading section .text, size 0x194 lma 0x100000<br>
+                                       Start address 0x100040, load size 404<br>
+                                       Transfer rate: 179 bytes/sec, 404 bytes/write.
+                                       (gdb) monitor verify_image path_to_elf_file
+                               </code>
+               </td>
+               <td>The output should look like:<br>
+                       <code>
+                               verified 404 bytes in 5.060000s
+                       </code><br>
+                       The failure message is something like:<br>
+                       <code>Verify operation failed address 0x00200000. Was 0x00 instead of 0x18</code>
+               </td>
+               <td>PASS/FAIL</td>
+       </tr>
+</table>
+
+</body>
 </html>
\ No newline at end of file

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)