2011-03-09 05:41:32 +02:00
|
|
|
/*
|
|
|
|
* fw/flash.c - Board-specific flash functions
|
|
|
|
*
|
|
|
|
* Written 2011 by Werner Almesberger
|
|
|
|
* Copyright 2011 Werner Almesberger
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2011-03-09 07:02:05 +02:00
|
|
|
#include <avr/boot.h>
|
2011-03-11 22:27:03 +02:00
|
|
|
#include <avr/pgmspace.h>
|
2011-03-09 05:41:32 +02:00
|
|
|
|
|
|
|
#include "dfu.h"
|
|
|
|
#include "board.h"
|
|
|
|
|
|
|
|
|
2011-03-09 07:02:05 +02:00
|
|
|
static uint32_t payload;
|
|
|
|
|
2011-03-09 05:41:32 +02:00
|
|
|
|
|
|
|
void flash_start(void)
|
|
|
|
{
|
2011-03-09 07:02:05 +02:00
|
|
|
payload = 0;
|
2011-03-09 05:41:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int flash_can_write(uint16_t size)
|
|
|
|
{
|
2011-03-11 22:27:03 +02:00
|
|
|
return payload+size <= BOOT_ADDR;
|
2011-03-09 05:41:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void flash_write(const uint8_t *buf, uint16_t size)
|
|
|
|
{
|
2011-03-09 07:02:05 +02:00
|
|
|
static uint8_t last;
|
|
|
|
const uint8_t *p;
|
|
|
|
|
|
|
|
for (p = buf; p != buf+size; p++) {
|
|
|
|
if (!(payload & (SPM_PAGESIZE-1))) {
|
|
|
|
boot_page_erase(payload);
|
|
|
|
boot_spm_busy_wait();
|
|
|
|
}
|
2011-03-11 22:32:39 +02:00
|
|
|
|
2011-03-09 07:02:05 +02:00
|
|
|
if (payload & 1)
|
2011-03-11 22:32:39 +02:00
|
|
|
boot_page_fill(payload, last | (*p << 8));
|
2011-03-09 07:02:05 +02:00
|
|
|
else
|
|
|
|
last = *p;
|
|
|
|
payload++;
|
|
|
|
|
2011-03-11 22:32:39 +02:00
|
|
|
if (!(payload & (SPM_PAGESIZE-1))) {
|
|
|
|
boot_page_write(payload-SPM_PAGESIZE);
|
|
|
|
boot_spm_busy_wait();
|
|
|
|
}
|
|
|
|
}
|
2011-03-11 22:40:51 +02:00
|
|
|
}
|
|
|
|
|
2011-03-09 07:02:05 +02:00
|
|
|
|
2011-03-11 22:40:51 +02:00
|
|
|
void flash_end_write(void)
|
|
|
|
{
|
|
|
|
if (payload & (SPM_PAGESIZE-1)) {
|
|
|
|
boot_page_write(payload & ~(SPM_PAGESIZE-1));
|
|
|
|
boot_spm_busy_wait();
|
|
|
|
}
|
2011-03-09 07:02:05 +02:00
|
|
|
boot_rww_enable();
|
2011-03-09 05:41:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
uint16_t flash_read(uint8_t *buf, uint16_t size)
|
|
|
|
{
|
2011-03-11 22:27:03 +02:00
|
|
|
uint16_t got = 0;
|
|
|
|
|
|
|
|
while (size && payload != (uint32_t) FLASHEND+1) {
|
|
|
|
*buf++ = pgm_read_byte(payload);
|
|
|
|
payload++;
|
|
|
|
size--;
|
|
|
|
got++;
|
|
|
|
}
|
|
|
|
return got;
|
2011-03-09 05:41:32 +02:00
|
|
|
}
|