imx233/fuze+: enable plugins

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30700 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Amaury Pouly 2011-10-02 20:33:14 +00:00
parent 96afbb3778
commit 7e8877e871
3 changed files with 6 additions and 1 deletions

View file

@ -75,6 +75,9 @@ OUTPUT_FORMAT(elf32-littlemips)
#define ASM #define ASM
#include "cpu.h" #include "cpu.h"
#define DRAMSIZE (DRAM_SIZE - PLUGIN_BUFFER_SIZE - CODEC_SIZE - TTB_SIZE) #define DRAMSIZE (DRAM_SIZE - PLUGIN_BUFFER_SIZE - CODEC_SIZE - TTB_SIZE)
#elif CONFIG_CPU==IMX233
#include "cpu.h"
#define DRAMSIZE (DRAM_SIZE - PLUGIN_BUFFER_SIZE - CODEC_SIZE - FRAME_SIZE - TTB_SIZE)
#endif #endif
/* default to full RAM (minus codecs&plugins) unless specified otherwise */ /* default to full RAM (minus codecs&plugins) unless specified otherwise */

View file

@ -44,6 +44,8 @@
#define BUFFERED_DRAM_ADDR 0x90000000 #define BUFFERED_DRAM_ADDR 0x90000000
#define CACHEALIGN_SIZE 32 #define CACHEALIGN_SIZE 32
#define NOCACHE_BASE (UNCACHED_DRAM_ADDR - CACHED_DRAM_ADDR)
#define PHYSICAL_ADDR(a) \ #define PHYSICAL_ADDR(a) \
((typeof(a))((uintptr_t)(a) >= CACHED_DRAM_ADDR ? \ ((typeof(a))((uintptr_t)(a) >= CACHED_DRAM_ADDR ? \
((uintptr_t)(a) - CACHED_DRAM_ADDR + UNCACHED_DRAM_ADDR) \ ((uintptr_t)(a) - CACHED_DRAM_ADDR + UNCACHED_DRAM_ADDR) \

2
tools/configure vendored
View file

@ -2521,7 +2521,7 @@ fi
boottool="true" boottool="true"
bootoutput="" bootoutput=""
appextra="gui:recorder:radio" appextra="gui:recorder:radio"
plugins="no" plugins="yes"
swcodec="yes" swcodec="yes"
toolset=$scramblebitmaptools toolset=$scramblebitmaptools
t_cpu="arm" t_cpu="arm"