Modified flash_avr module to work with new kfile interface. Addedd a new tipe of...
authorqwert <qwert@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 17 Jul 2008 14:59:51 +0000 (14:59 +0000)
committerqwert <qwert@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 17 Jul 2008 14:59:51 +0000 (14:59 +0000)
KFile to a KFIleFlashAvr struct.

git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1488 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cpu/avr/drv/flash_avr.c
bertos/cpu/avr/drv/flash_avr.h

index 01a515f663659dae43c270fec760033866e4a04b..ad350b299a9d52ff93bcb76b971ba614e7bc8619 100644 (file)
 
 #include <string.h>
 
-#warning FIXME:This module need to be refactor to kfile interface!
+
 #if 1
 
+
 /**
  * Definition of type for avr flash module.
  */
@@ -150,7 +151,8 @@ static void flash_avr_flush(void)
  */
 static int flash_avr_kfileFlush(struct KFile * fd)
 {
-       KFILE_ASSERT_GENERIC(fd);
+
+       KFILEFLASHAVR(fd);
        (void)fd;
        flash_avr_flush();
        return 0;
@@ -180,13 +182,14 @@ static void flash_avr_loadPage(avr_page_t page)
  */
 static size_t flash_avr_write(struct KFile *fd, const void *_buf, size_t size)
 {
-       KFILE_ASSERT_GENERIC(fd);
+       KFILEFLASHAVR(fd);
        const uint8_t *buf =(const uint8_t *)_buf;
 
        avr_page_t page;
        avr_page_addr_t page_addr;
        size_t total_write = 0;
 
+
        ASSERT(fd->seek_pos + size <= fd->size);
        size = MIN((uint32_t)size, fd->size - fd->seek_pos);
 
@@ -218,7 +221,7 @@ static size_t flash_avr_write(struct KFile *fd, const void *_buf, size_t size)
  */
 static void flash_avr_open(struct KFile *fd)
 {
-       KFILE_ASSERT_GENERIC(fd);
+       KFILEFLASHAVR(fd);
        curr_page = 0;
        memcpy_P(page_buf, (const char *)(curr_page * SPM_PAGESIZE), SPM_PAGESIZE);
 
@@ -234,7 +237,7 @@ static void flash_avr_open(struct KFile *fd)
  */
 static int flash_avr_close(UNUSED_ARG(struct KFile *,fd))
 {
-       KFILE_ASSERT_GENERIC(fd);
+       KFILEFLASHAVR(fd);
        flash_avr_flush();
        kprintf("Flash file closed\n");
        return 0;
@@ -245,7 +248,7 @@ static int flash_avr_close(UNUSED_ARG(struct KFile *,fd))
  */
 static struct KFile *flash_avr_reopen(struct KFile *fd)
 {
-       KFILE_ASSERT_GENERIC(fd);
+       KFILEFLASHAVR(fd);
        flash_avr_close(fd);
        flash_avr_open(fd);
        return fd;
@@ -258,7 +261,7 @@ static struct KFile *flash_avr_reopen(struct KFile *fd)
  */
 static size_t flash_avr_read(struct KFile *fd, void *buf, size_t size)
 {
-       KFILE_ASSERT_GENERIC(fd);
+       KFILEFLASHAVR(fd);
        ASSERT(fd->seek_pos + size <= fd->size);
        size = MIN((uint32_t)size, fd->size - fd->seek_pos);
 
@@ -285,7 +288,7 @@ static size_t flash_avr_read(struct KFile *fd, void *buf, size_t size)
 void flash_avr_init(struct KFile *fd)
 {
        memset(fd, 0, sizeof(*fd));
-       DB(fd->_type = KFT_GENERIC);
+       DB(fd->_type = KFT_FLASHAVR);
 
        // Set up flash programming functions.
        fd->reopen = flash_avr_reopen;
index 7b4317d97106029c5bbab80e341f88a153ef6060..390f648d92c78541329dd9741686e78cb05c1b22 100644 (file)
 #include <cfg/compiler.h>
 #include <kern/kfile.h>
 
+
+/**
+ * FlashAvr KFile context structure.
+ */
+typedef struct KFileFlashAvr
+{
+       KFile fd;                       ///< File descriptor.
+} KFileFlashAvr;
+
+
+
+/**
+ * ID for FlashAvr
+ */
+#define KFT_FLASHAVR MAKE_ID('F', 'L', 'A', 'V')
+
+/**
+ * Convert + ASSERT from generic KFile to KFileFlashAvr.
+ */
+INLINE KFileFlashAvr * KFILEFLASHAVR(KFile *fd)
+{
+       ASSERT(fd->_type == KFT_FLASHAVR);
+       return (KFileFlashAvr *)fd;
+}
+
+
+
 bool flash_avr_test(void);
 void flash_avr_init(struct KFile *fd);
 
 
+
 #endif /* DRV_FLASH_AVR_H */