00001 00040 #ifndef CPU_PHYSMEM_H_INCLUDED 00041 #define CPU_PHYSMEM_H_INCLUDED 00042 00043 #include <stdint.h> 00044 00046 typedef uint32_t phys_addr_t; 00047 00049 typedef uint32_t phys_size_t; 00050 00052 #define PHYSMEM_ALLOC_ERR ((phys_addr_t)(-1)) 00053 00054 #include <generic/physmem_nommu.h> 00055 00056 /* AVR XMEGA devices have only one pool of internal SRAM */ 00057 extern struct physmem_pool cpu_sram_pool; 00058 #define dma_sram_pool cpu_sram_pool 00059 00060 #endif /* CPU_PHYSMEM_H_INCLUDED */
1.6.3