diff options
author | NIIBE Yutaka <gniibe@fsij.org> | 2017-09-08 20:53:56 +0900 |
---|---|---|
committer | NIIBE Yutaka <gniibe@fsij.org> | 2017-09-08 20:56:23 +0900 |
commit | e671a539b08b98dc74505ac22789fdb4474689d2 (patch) | |
tree | 2db37e96e27f6f1b80e45bcff8d425e4cb805124 /mcu | |
parent | 2c9191c4b365e08bf3ee4272a190473a7c372ca1 (diff) |
Fix flash routines on GNU/Linux.
Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
Diffstat (limited to 'mcu')
-rw-r--r-- | mcu/sys-gnu-linux.c | 22 | ||||
-rw-r--r-- | mcu/sys-gnu-linux.h | 6 |
2 files changed, 14 insertions, 14 deletions
diff --git a/mcu/sys-gnu-linux.c b/mcu/sys-gnu-linux.c index b6e88c3..575a5ef 100644 --- a/mcu/sys-gnu-linux.c +++ b/mcu/sys-gnu-linux.c @@ -86,13 +86,13 @@ flash_unlock (void) } int -flash_program_halfword (uint32_t addr, uint16_t data) +flash_program_halfword (uintptr_t addr, uint16_t data) { off_t offset; char buf[2]; - fprintf (stderr, "flash_program_halfword: addr=%08x, data=%04x\n", addr, data); - offset = (off_t)(addr - (uint32_t)flash_addr); + fprintf (stderr, "flash_program_halfword: addr=%016lx, data=%04x\n", addr, data); + offset = (off_t)(addr - (uintptr_t)flash_addr); offset = lseek (flash_fd, offset, SEEK_SET); if (offset == (off_t)-1) { @@ -112,13 +112,13 @@ flash_program_halfword (uint32_t addr, uint16_t data) static const uint8_t erased[] = { [0 ... 1023 ] = 0xff }; int -flash_erase_page (uint32_t addr) +flash_erase_page (uintptr_t addr) { off_t offset; - fprintf (stderr, "flash_erase_page: addr=%08x\n", addr); + fprintf (stderr, "flash_erase_page: addr=%016lx\n", addr); - offset = (off_t)(addr - (uint32_t)flash_addr); + offset = (off_t)(addr - (uintptr_t)flash_addr); offset = lseek (flash_fd, offset, SEEK_SET); if (offset == (off_t)-1) { @@ -126,7 +126,7 @@ flash_erase_page (uint32_t addr) return 1; } - if (write (flash_fd, erased, sizeof (erased)) != len) + if (write (flash_fd, erased, sizeof (erased)) != sizeof (erased)) { perror ("flash_erase_page"); return 2; @@ -147,13 +147,13 @@ flash_check_blank (const uint8_t *p_start, size_t size) } int -flash_write (uint32_t dst_addr, const uint8_t *src, size_t len) +flash_write (uintptr_t dst_addr, const uint8_t *src, size_t len) { off_t offset; - fprintf (stderr, "flash_write: addr=%08x, %p, %zd\n", dst_addr, src, len); + fprintf (stderr, "flash_write: addr=%016lx, %p, %zd\n", dst_addr, src, len); - offset = (off_t)(dst_addr - (uint32_t)flash_addr); + offset = (off_t)(dst_addr - (uintptr_t)flash_addr); offset = lseek (flash_fd, offset, SEEK_SET); if (offset == (off_t)-1) { @@ -161,7 +161,7 @@ flash_write (uint32_t dst_addr, const uint8_t *src, size_t len) return 1; } - if (write (flash_fd, src, len) != len) + if (write (flash_fd, src, len) != (ssize_t)len) { perror ("flash_write"); return 2; diff --git a/mcu/sys-gnu-linux.h b/mcu/sys-gnu-linux.h index 2955ad6..3c81513 100644 --- a/mcu/sys-gnu-linux.h +++ b/mcu/sys-gnu-linux.h @@ -23,10 +23,10 @@ unique_device_id (void) void set_led (int on); void flash_unlock (void); -int flash_program_halfword (uint32_t addr, uint16_t data); -int flash_erase_page (uint32_t addr); +int flash_program_halfword (uintptr_t addr, uint16_t data); +int flash_erase_page (uintptr_t addr); int flash_check_blank (const uint8_t *p_start, size_t size); -int flash_write (uint32_t dst_addr, const uint8_t *src, size_t len); +int flash_write (uintptr_t dst_addr, const uint8_t *src, size_t len); int flash_protect (void); void __attribute__((noreturn)) flash_erase_all_and_exec (void (*entry)(void)); |