X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=mware%2Fpgm.h;h=eebe87fe1107a8a716f5ce63632a5303759d82e5;hb=45add65abd59bd79f528501c85f3e5891a9c2c29;hp=ea28043e98587cdf166bffec5c81844cecff752c;hpb=72f7d07b915bc6a874ec820de585c6d017c81a94;p=bertos.git diff --git a/mware/pgm.h b/mware/pgm.h old mode 100755 new mode 100644 index ea28043e..eebe87fe --- a/mware/pgm.h +++ b/mware/pgm.h @@ -1,8 +1,33 @@ -/*! +/** * \file * * * \brief Support for reading program memory on Harvard architectures. @@ -22,8 +47,10 @@ #ifndef MWARE_PGM_H #define MWARE_PGM_H -#include #include /* For intXX_t */ +#include +#include /* For CPU_HARVARD */ +#include /* For SIZEOF_INT */ #if CPU_AVR @@ -40,26 +67,6 @@ ); \ __result; \ }) - #if 0 // 128/103 - #define pgm_read_uint16_t(addr) \ - ({ \ - uint32_t __addr32 = (uint32_t)(addr); \ - uint16_t __result; \ - __asm__ \ - ( \ - "out %2, %C1" "\n\t" \ - "movw r30, %1" "\n\t" \ - "elpm %A0, Z+" "\n\t" \ - "elpm %B0, Z" "\n\t" \ - : "=r" (__result) \ - : "r" (__addr32), \ - "I" (_SFR_IO_ADDR(RAMPZ)) \ - : "r30", "r31" \ - ); \ - __result; \ - }) - #endif - #define pgm_read_uint16_t(addr) \ ({ \ uint16_t __addr16 = (uint16_t)(addr); \ @@ -75,7 +82,8 @@ }) - #else + #else /* !__AVR_ENHANCED__ */ + #define pgm_read_char(addr) \ ({ \ uint16_t __addr16 = (uint16_t)(addr); \ @@ -90,32 +98,6 @@ ); \ __result; \ }) - #if 0 // 128/103 - #define pgm_read_uint16_t(addr) \ - ({ \ - uint32_t __addr32 = (uint32_t)(addr); \ - uint16_t __result; \ - __asm__ \ - ( \ - "out %2, %C1" "\n\t" \ - "mov r31, %B1" "\n\t" \ - "mov r30, %A1" "\n\t" \ - "elpm" "\n\t" \ - "mov %A0, r0" "\n\t" \ - "in r0, %2" "\n\t" \ - "adiw r30, 1" "\n\t" \ - "adc r0, __zero_reg__" "\n\t" \ - "out %2, r0" "\n\t" \ - "elpm" "\n\t" \ - "mov %B0, r0" "\n\t" \ - : "=r" (__result) \ - : "r" (__addr32), \ - "I" (_SFR_IO_ADDR(RAMPZ)) \ - : "r0", "r30", "r31" \ - ); \ - __result; \ - }) - #endif #define pgm_read_uint16_t(addr) \ ({ \ uint16_t __addr16 = (uint16_t)(addr); \ @@ -134,6 +116,12 @@ __result; \ }) + #endif /* !__AVR_ENHANCED__ */ + + #if SIZEOF_INT == 2 + #define pgm_read_int(addr) ((int)pgm_read_uint16_t(addr)) + #else + #error Missing support for CPU word size != 16bit #endif #ifndef PROGMEM @@ -142,6 +130,9 @@ #ifndef PSTR #define PSTR(s) ({ static const char __c[] PROGMEM = (s); &__c[0]; }) #endif + #ifndef PFUNC + #define PFUNC(x) x ## _P + #endif #elif CPU_HARVARD #error Missing CPU support @@ -151,11 +142,15 @@ #define PSTR /* nothing */ #endif +#ifndef PFUNC +#define PFUNC(x) x +#endif + #ifndef PROGMEM -#define PROGMEM /* nothing */ +#define PROGMEM /* nothing */ #endif -/*! +/** * \name Types for variables stored in program memory (harvard processors). * \{ */ @@ -168,7 +163,7 @@ typedef PROGMEM int32_t pgm_int32_t; typedef PROGMEM uint32_t pgm_uint32_t; /*\}*/ -/*! +/** * \name PGM support macros. * * These macros enable dual compilation of code for both program @@ -201,13 +196,13 @@ typedef PROGMEM uint32_t pgm_uint32_t; */ #ifdef _PROGMEM #define PGM_READ_CHAR(s) pgm_read_char(s) - #define PGM_FUNC(x) x ## _P - #define PGM_STR(x) PSTR(x) + #define PGM_FUNC(x) PFUNC(x) + #define PGM_STR(x) PSTR(x) #define PGM_ATTR PROGMEM #else #define PGM_READ_CHAR(s) (*(s)) #define PGM_FUNC(x) x - #define PGM_STR(x) x + #define PGM_STR(x) x #define PGM_ATTR /* nothing */ #endif /* \} */