2010-02-26 18:03:37 +00:00
|
|
|
#include <mc1322x.h>
|
|
|
|
#include <board.h>
|
2010-02-26 19:04:10 +00:00
|
|
|
|
|
|
|
#include "tests.h"
|
2009-05-05 19:18:28 +00:00
|
|
|
|
2010-02-26 18:03:37 +00:00
|
|
|
/* INC = 767; MOD = 9999 works: 115200 @ 24 MHz 16 bit sample */
|
|
|
|
#define INC 767
|
|
|
|
#define MOD 9999
|
2009-05-05 19:18:28 +00:00
|
|
|
|
2010-02-26 18:03:37 +00:00
|
|
|
#define NBYTES 8
|
|
|
|
#define WRITE_ADDR 0x1e000
|
|
|
|
#define WRITEVAL0 0xdeadbeef
|
|
|
|
#define WRITEVAL1 0xdeadbeef
|
2009-05-05 19:18:28 +00:00
|
|
|
|
|
|
|
void main(void) {
|
|
|
|
nvmType_t type=0;
|
|
|
|
nvmErr_t err;
|
|
|
|
uint32_t buf[NBYTES/4];
|
|
|
|
uint32_t i;
|
|
|
|
|
2010-02-26 19:04:10 +00:00
|
|
|
uart_init(INC, MOD);
|
2009-05-05 19:18:28 +00:00
|
|
|
|
2010-02-26 19:04:10 +00:00
|
|
|
print_welcome("nvm-write");
|
2009-05-05 19:18:28 +00:00
|
|
|
|
|
|
|
vreg_init();
|
|
|
|
|
|
|
|
puts("Detecting internal nvm\n\r");
|
|
|
|
|
|
|
|
err = nvm_detect(gNvmInternalInterface_c, &type);
|
|
|
|
|
|
|
|
puts("nvm_detect returned: 0x");
|
|
|
|
put_hex(err);
|
|
|
|
puts(" type is: 0x");
|
|
|
|
put_hex32(type);
|
|
|
|
puts("\n\r");
|
|
|
|
|
|
|
|
|
|
|
|
buf[0] = WRITEVAL0;
|
|
|
|
buf[1] = WRITEVAL1;
|
|
|
|
|
|
|
|
err = nvm_erase(gNvmInternalInterface_c, type, 0x40000000); /* erase sector 30 --- sector 31 is the 'secret zone' */
|
|
|
|
puts("nvm_erase returned: 0x");
|
|
|
|
put_hex(err);
|
|
|
|
puts("\n\r");
|
|
|
|
|
|
|
|
err = nvm_write(gNvmInternalInterface_c, type, (uint8_t *)buf, WRITE_ADDR, NBYTES);
|
|
|
|
puts("nvm_write returned: 0x");
|
|
|
|
put_hex(err);
|
|
|
|
puts("\n\r");
|
|
|
|
puts("writing\n\r");
|
|
|
|
for(i=0; i<NBYTES/4; i++) {
|
|
|
|
puts("0x");
|
|
|
|
put_hex32(buf[i]);
|
|
|
|
puts("\n\r");
|
|
|
|
buf[i] = 0x00000000; /* clear buf for the read */
|
|
|
|
}
|
|
|
|
|
|
|
|
err = nvm_read(gNvmInternalInterface_c, type, (uint8_t *)buf, WRITE_ADDR, NBYTES);
|
|
|
|
puts("nvm_read returned: 0x");
|
|
|
|
put_hex(err);
|
|
|
|
puts("\n\r");
|
|
|
|
puts("reading\n\r");
|
|
|
|
for(i=0; i<NBYTES/4; i++) {
|
|
|
|
puts("0x");
|
|
|
|
put_hex32(buf[i]);
|
|
|
|
puts("\n\r");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
while(1) {continue;};
|
|
|
|
}
|
|
|
|
|