2010-02-26 19:03:37 +01:00
|
|
|
#include <mc1322x.h>
|
|
|
|
#include <board.h>
|
2010-02-26 20:04:10 +01:00
|
|
|
|
|
|
|
#include "tests.h"
|
2010-02-26 20:21:46 +01:00
|
|
|
#include "config.h"
|
2009-05-05 21:18:28 +02:00
|
|
|
|
|
|
|
void main(void) {
|
|
|
|
nvmType_t type=0;
|
|
|
|
nvmErr_t err;
|
2010-02-26 20:21:46 +01:00
|
|
|
uint32_t buf[WRITE_NBYTES/4];
|
2009-05-05 21:18:28 +02:00
|
|
|
uint32_t i;
|
|
|
|
|
2010-03-10 00:23:40 +01:00
|
|
|
uart_init(INC, MOD, SAMP);
|
2009-05-05 21:18:28 +02:00
|
|
|
|
2010-02-26 20:04:10 +01:00
|
|
|
print_welcome("nvm-write");
|
2009-05-05 21:18:28 +02:00
|
|
|
|
|
|
|
vreg_init();
|
|
|
|
|
2010-03-02 16:39:47 +01:00
|
|
|
putstr("Detecting internal nvm\n\r");
|
2009-05-05 21:18:28 +02:00
|
|
|
|
|
|
|
err = nvm_detect(gNvmInternalInterface_c, &type);
|
|
|
|
|
2010-03-02 16:39:47 +01:00
|
|
|
putstr("nvm_detect returned: 0x");
|
2009-05-05 21:18:28 +02:00
|
|
|
put_hex(err);
|
2010-03-02 16:39:47 +01:00
|
|
|
putstr(" type is: 0x");
|
2009-05-05 21:18:28 +02:00
|
|
|
put_hex32(type);
|
2010-03-02 16:39:47 +01:00
|
|
|
putstr("\n\r");
|
2009-05-05 21:18:28 +02:00
|
|
|
|
|
|
|
|
|
|
|
buf[0] = WRITEVAL0;
|
|
|
|
buf[1] = WRITEVAL1;
|
|
|
|
|
|
|
|
err = nvm_erase(gNvmInternalInterface_c, type, 0x40000000); /* erase sector 30 --- sector 31 is the 'secret zone' */
|
2010-03-02 16:39:47 +01:00
|
|
|
putstr("nvm_erase returned: 0x");
|
2009-05-05 21:18:28 +02:00
|
|
|
put_hex(err);
|
2010-03-02 16:39:47 +01:00
|
|
|
putstr("\n\r");
|
2009-05-05 21:18:28 +02:00
|
|
|
|
2010-02-26 20:21:46 +01:00
|
|
|
err = nvm_write(gNvmInternalInterface_c, type, (uint8_t *)buf, WRITE_ADDR, WRITE_NBYTES);
|
2010-03-02 16:39:47 +01:00
|
|
|
putstr("nvm_write returned: 0x");
|
2009-05-05 21:18:28 +02:00
|
|
|
put_hex(err);
|
2010-03-02 16:39:47 +01:00
|
|
|
putstr("\n\r");
|
|
|
|
putstr("writing\n\r");
|
2010-02-26 20:21:46 +01:00
|
|
|
for(i=0; i<WRITE_NBYTES/4; i++) {
|
2010-03-02 16:39:47 +01:00
|
|
|
putstr("0x");
|
2009-05-05 21:18:28 +02:00
|
|
|
put_hex32(buf[i]);
|
2010-03-02 16:39:47 +01:00
|
|
|
putstr("\n\r");
|
2009-05-05 21:18:28 +02:00
|
|
|
buf[i] = 0x00000000; /* clear buf for the read */
|
|
|
|
}
|
|
|
|
|
2010-02-26 20:21:46 +01:00
|
|
|
err = nvm_read(gNvmInternalInterface_c, type, (uint8_t *)buf, WRITE_ADDR, WRITE_NBYTES);
|
2010-03-02 16:39:47 +01:00
|
|
|
putstr("nvm_read returned: 0x");
|
2009-05-05 21:18:28 +02:00
|
|
|
put_hex(err);
|
2010-03-02 16:39:47 +01:00
|
|
|
putstr("\n\r");
|
|
|
|
putstr("reading\n\r");
|
2010-02-26 20:21:46 +01:00
|
|
|
for(i=0; i<WRITE_NBYTES/4; i++) {
|
2010-03-02 16:39:47 +01:00
|
|
|
putstr("0x");
|
2009-05-05 21:18:28 +02:00
|
|
|
put_hex32(buf[i]);
|
2010-03-02 16:39:47 +01:00
|
|
|
putstr("\n\r");
|
2009-05-05 21:18:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
while(1) {continue;};
|
|
|
|
}
|
|
|
|
|