mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
Enable nocache sections using the linker. PP5022/4 must use SW_CORELOCK now with shared variables in DRAM (it seems swp(b) is at least partially broken on all PP or I'm doing something very wrong here :\). For core-shared data use SHAREDBSS/DATA_ATTR. NOCACHEBSS/DATA_ATTR is available whether or not single core is forced for static peripheral-DMA buffer allocation without use of the UNCACHED_ADDR macro in code and is likely useful on a non-PP target with a data cache (although not actually enabled in config.h and the .lds's in this commit).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16981 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
be698f086d
commit
05099149f1
40 changed files with 323 additions and 126 deletions
|
@ -231,7 +231,7 @@ static struct
|
|||
struct event emu_evt_reply;
|
||||
intptr_t retval;
|
||||
struct sample_queue_chunk wav_chunk[WAV_NUM_CHUNKS];
|
||||
} sample_queue NOCACHEBSS_ATTR;
|
||||
} sample_queue SHAREDBSS_ATTR;
|
||||
|
||||
static inline void samples_release_wrbuf(void)
|
||||
{
|
||||
|
|
|
@ -97,10 +97,10 @@
|
|||
#endif
|
||||
|
||||
#if SPC_DUAL_CORE
|
||||
#undef NOCACHEBSS_ATTR
|
||||
#define NOCACHEBSS_ATTR __attribute__ ((section(".ibss")))
|
||||
#undef NOCACHEDATA_ATTR
|
||||
#define NOCACHEDATA_ATTR __attribute__((section(".idata")))
|
||||
#undef SHAREDBSS_ATTR
|
||||
#define SHAREDBSS_ATTR __attribute__ ((section(".ibss")))
|
||||
#undef SHAREDDATA_ATTR
|
||||
#define SHAREDDATA_ATTR __attribute__((section(".idata")))
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
|
|
@ -172,7 +172,7 @@ enum filling_state {
|
|||
#endif
|
||||
|
||||
bool audio_is_initialized = false;
|
||||
static bool audio_thread_ready NOCACHEBSS_ATTR = false;
|
||||
static bool audio_thread_ready SHAREDBSS_ATTR = false;
|
||||
|
||||
/* Variables are commented with the threads that use them: *
|
||||
* A=audio, C=codec, V=voice. A suffix of - indicates that *
|
||||
|
@ -180,9 +180,9 @@ static bool audio_thread_ready NOCACHEBSS_ATTR = false;
|
|||
/* TBD: Split out "audio" and "playback" (ie. calling) threads */
|
||||
|
||||
/* Main state control */
|
||||
static volatile bool audio_codec_loaded NOCACHEBSS_ATTR = false; /* Codec loaded? (C/A-) */
|
||||
static volatile bool playing NOCACHEBSS_ATTR = false; /* Is audio playing? (A) */
|
||||
static volatile bool paused NOCACHEBSS_ATTR = false; /* Is audio paused? (A/C-) */
|
||||
static volatile bool audio_codec_loaded SHAREDBSS_ATTR = false; /* Codec loaded? (C/A-) */
|
||||
static volatile bool playing SHAREDBSS_ATTR = false; /* Is audio playing? (A) */
|
||||
static volatile bool paused SHAREDBSS_ATTR = false; /* Is audio paused? (A/C-) */
|
||||
|
||||
/* Ring buffer where compressed audio and codecs are loaded */
|
||||
static unsigned char *filebuf = NULL; /* Start of buffer (A/C-) */
|
||||
|
@ -261,8 +261,8 @@ static size_t buffer_margin = 0; /* Buffer margin aka anti-skip buffer (A/C-) *
|
|||
static void set_filebuf_watermark(int seconds, size_t max);
|
||||
|
||||
/* Audio thread */
|
||||
static struct event_queue audio_queue NOCACHEBSS_ATTR;
|
||||
static struct queue_sender_list audio_queue_sender_list NOCACHEBSS_ATTR;
|
||||
static struct event_queue audio_queue SHAREDBSS_ATTR;
|
||||
static struct queue_sender_list audio_queue_sender_list SHAREDBSS_ATTR;
|
||||
static long audio_stack[(DEFAULT_STACK_SIZE + 0x1000)/sizeof(long)];
|
||||
static const char audio_thread_name[] = "audio";
|
||||
|
||||
|
@ -273,7 +273,7 @@ static void audio_reset_buffer(void);
|
|||
|
||||
/* Codec thread */
|
||||
extern struct codec_api ci;
|
||||
static struct event_queue codec_queue NOCACHEBSS_ATTR;
|
||||
static struct event_queue codec_queue SHAREDBSS_ATTR;
|
||||
static struct queue_sender_list codec_queue_sender_list;
|
||||
static long codec_stack[(DEFAULT_STACK_SIZE + 0x2000)/sizeof(long)]
|
||||
IBSS_ATTR;
|
||||
|
@ -281,7 +281,7 @@ static const char codec_thread_name[] = "codec";
|
|||
struct thread_entry *codec_thread_p; /* For modifying thread priority later. */
|
||||
|
||||
/* PCM buffer messaging */
|
||||
static struct event_queue pcmbuf_queue NOCACHEBSS_ATTR;
|
||||
static struct event_queue pcmbuf_queue SHAREDBSS_ATTR;
|
||||
|
||||
/* Function to be called by pcm buffer callbacks.
|
||||
* Permissible Context(s): Audio interrupt
|
||||
|
|
|
@ -30,10 +30,10 @@ static size_t bufsize;
|
|||
static unsigned char* mallocbuf;
|
||||
|
||||
/* libmpeg2 allocator */
|
||||
static off_t mpeg2_mem_ptr NOCACHEBSS_ATTR;
|
||||
static size_t mpeg2_bufsize NOCACHEBSS_ATTR;
|
||||
static unsigned char *mpeg2_mallocbuf NOCACHEBSS_ATTR;
|
||||
static unsigned char *mpeg2_bufallocbuf NOCACHEBSS_ATTR;
|
||||
static off_t mpeg2_mem_ptr SHAREDBSS_ATTR;
|
||||
static size_t mpeg2_bufsize SHAREDBSS_ATTR;
|
||||
static unsigned char *mpeg2_mallocbuf SHAREDBSS_ATTR;
|
||||
static unsigned char *mpeg2_bufallocbuf SHAREDBSS_ATTR;
|
||||
|
||||
#if defined(DEBUG) || defined(SIMULATOR)
|
||||
const char * mpeg_get_reason_str(int reason)
|
||||
|
|
|
@ -44,8 +44,8 @@ static size_t audio_stack_size; /* Keep gcc happy and init */
|
|||
#ifndef SIMULATOR
|
||||
static uint32_t codec_stack_copy[AUDIO_STACKSIZE / sizeof(uint32_t)];
|
||||
#endif
|
||||
static struct event_queue audio_str_queue NOCACHEBSS_ATTR;
|
||||
static struct queue_sender_list audio_str_queue_send NOCACHEBSS_ATTR;
|
||||
static struct event_queue audio_str_queue SHAREDBSS_ATTR;
|
||||
static struct queue_sender_list audio_str_queue_send SHAREDBSS_ATTR;
|
||||
struct stream audio_str IBSS_ATTR;
|
||||
|
||||
/* libmad related definitions */
|
||||
|
|
|
@ -21,12 +21,12 @@
|
|||
#include "plugin.h"
|
||||
#include "mpegplayer.h"
|
||||
|
||||
static struct mutex disk_buf_mtx NOCACHEBSS_ATTR;
|
||||
static struct event_queue disk_buf_queue NOCACHEBSS_ATTR;
|
||||
static struct queue_sender_list disk_buf_queue_send NOCACHEBSS_ATTR;
|
||||
static struct mutex disk_buf_mtx SHAREDBSS_ATTR;
|
||||
static struct event_queue disk_buf_queue SHAREDBSS_ATTR;
|
||||
static struct queue_sender_list disk_buf_queue_send SHAREDBSS_ATTR;
|
||||
static uint32_t disk_buf_stack[DEFAULT_STACK_SIZE*2/sizeof(uint32_t)];
|
||||
|
||||
struct disk_buf disk_buf NOCACHEBSS_ATTR;
|
||||
struct disk_buf disk_buf SHAREDBSS_ATTR;
|
||||
static struct list_item nf_list;
|
||||
|
||||
static inline void disk_buf_lock(void)
|
||||
|
@ -566,7 +566,7 @@ static int disk_buf_probe(off_t start, size_t length,
|
|||
{
|
||||
if (disk_buf.cache[page] != tag)
|
||||
{
|
||||
static struct dbuf_range rng NOCACHEBSS_ATTR;
|
||||
static struct dbuf_range rng IBSS_ATTR;
|
||||
DEBUGF("disk_buf: cache miss\n");
|
||||
rng.tag_start = tag;
|
||||
rng.tag_end = tag_end;
|
||||
|
|
|
@ -84,7 +84,7 @@ struct disk_buf
|
|||
bool need_seek; /* Need to seek because a read was not contiguous */
|
||||
};
|
||||
|
||||
extern struct disk_buf disk_buf NOCACHEBSS_ATTR;
|
||||
extern struct disk_buf disk_buf SHAREDBSS_ATTR;
|
||||
|
||||
static inline bool disk_buf_is_data_ready(struct stream_hdr *sh,
|
||||
ssize_t margin)
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
#include "plugin.h"
|
||||
#include "mpegplayer.h"
|
||||
|
||||
struct stream_parser str_parser NOCACHEBSS_ATTR;
|
||||
struct stream_parser str_parser SHAREDBSS_ATTR;
|
||||
|
||||
static void parser_init_state(void)
|
||||
{
|
||||
|
|
|
@ -27,11 +27,11 @@
|
|||
GREY_INFO_STRUCT_IRAM
|
||||
#endif
|
||||
|
||||
static struct event_queue stream_mgr_queue NOCACHEBSS_ATTR;
|
||||
static struct queue_sender_list stream_mgr_queue_send NOCACHEBSS_ATTR;
|
||||
static struct event_queue stream_mgr_queue SHAREDBSS_ATTR;
|
||||
static struct queue_sender_list stream_mgr_queue_send SHAREDBSS_ATTR;
|
||||
static uint32_t stream_mgr_thread_stack[DEFAULT_STACK_SIZE*2/sizeof(uint32_t)];
|
||||
|
||||
struct stream_mgr stream_mgr NOCACHEBSS_ATTR;
|
||||
struct stream_mgr stream_mgr SHAREDBSS_ATTR;
|
||||
|
||||
/* Forward decs */
|
||||
static int stream_on_close(void);
|
||||
|
|
|
@ -44,7 +44,7 @@ struct stream_mgr
|
|||
} parms;
|
||||
};
|
||||
|
||||
extern struct stream_mgr stream_mgr NOCACHEBSS_ATTR;
|
||||
extern struct stream_mgr stream_mgr SHAREDBSS_ATTR;
|
||||
|
||||
struct stream_window
|
||||
{
|
||||
|
|
|
@ -52,7 +52,7 @@ static struct vo_data vo;
|
|||
#endif
|
||||
|
||||
#if NUM_CORES > 1
|
||||
static struct mutex vo_mtx NOCACHEBSS_ATTR;
|
||||
static struct mutex vo_mtx SHAREDBSS_ATTR;
|
||||
#endif
|
||||
|
||||
static inline void video_lock_init(void)
|
||||
|
|
|
@ -54,8 +54,8 @@ struct video_thread_data
|
|||
so maybe we can reduce it. */
|
||||
#define VIDEO_STACKSIZE (4*1024)
|
||||
static uint32_t video_stack[VIDEO_STACKSIZE / sizeof(uint32_t)] IBSS_ATTR;
|
||||
static struct event_queue video_str_queue NOCACHEBSS_ATTR;
|
||||
static struct queue_sender_list video_str_queue_send NOCACHEBSS_ATTR;
|
||||
static struct event_queue video_str_queue SHAREDBSS_ATTR;
|
||||
static struct queue_sender_list video_str_queue_send SHAREDBSS_ATTR;
|
||||
struct stream video_str IBSS_ATTR;
|
||||
|
||||
static void draw_fps(struct video_thread_data *td)
|
||||
|
|
|
@ -16,6 +16,20 @@ OUTPUT_FORMAT(elf32-sh)
|
|||
#define STUBOFFSET 0
|
||||
#endif
|
||||
|
||||
#if defined(CPU_PP)
|
||||
#ifdef CPU_PP502x
|
||||
#define NOCACHE_BASE 0x10000000
|
||||
#else
|
||||
#define NOCACHE_BASE 0x28000000
|
||||
#endif /* CPU_* */
|
||||
#define CACHEALIGN_SIZE 16
|
||||
#endif /* CPU_PP */
|
||||
|
||||
#ifndef NOCACHE_BASE
|
||||
/* Default to no offset if target doesn't define this */
|
||||
#define NOCACHE_BASE 0x00000000
|
||||
#endif
|
||||
|
||||
#if CONFIG_CPU==S3C2440
|
||||
#include "s3c2440.h"
|
||||
#define DRAMSIZE (MEMORYSIZE * 0x100000) - 0x100 - PLUGIN_BUFFER_SIZE - STUBOFFSET - CODEC_SIZE - LCD_BUFFER_SIZE - TTB_SIZE
|
||||
|
@ -119,11 +133,21 @@ SECTIONS
|
|||
.data :
|
||||
{
|
||||
*(.data*)
|
||||
#if defined(IRAMSIZE)
|
||||
iramcopy = .;
|
||||
#endif
|
||||
} > PLUGIN_RAM
|
||||
|
||||
#if NOCACHE_BASE != 0
|
||||
.ncdata . + NOCACHE_BASE :
|
||||
{
|
||||
. = ALIGN(CACHEALIGN_SIZE);
|
||||
*(.ncdata*)
|
||||
. = ALIGN(CACHEALIGN_SIZE);
|
||||
} AT> PLUGIN_RAM
|
||||
#endif
|
||||
|
||||
#if defined(IRAMSIZE)
|
||||
iramcopy = . - NOCACHE_BASE;
|
||||
#endif
|
||||
|
||||
/DISCARD/ :
|
||||
{
|
||||
*(.eh_frame)
|
||||
|
@ -139,6 +163,7 @@ SECTIONS
|
|||
iramend = .;
|
||||
} > PLUGIN_IRAM
|
||||
|
||||
|
||||
.ibss (NOLOAD) :
|
||||
{
|
||||
iedata = .;
|
||||
|
@ -150,13 +175,27 @@ SECTIONS
|
|||
|
||||
.bss (NOLOAD) :
|
||||
{
|
||||
plugin_bss_start = .;
|
||||
plugin_bss_start = .;
|
||||
*(.bss*)
|
||||
*(COMMON)
|
||||
. = ALIGN(0x4);
|
||||
} > PLUGIN_RAM
|
||||
|
||||
#if NOCACHE_BASE != 0
|
||||
.ncbss . + NOCACHE_BASE (NOLOAD) :
|
||||
{
|
||||
. = ALIGN(CACHEALIGN_SIZE);
|
||||
*(.ncbss*)
|
||||
. = ALIGN(CACHEALIGN_SIZE);
|
||||
} AT> PLUGIN_RAM
|
||||
#endif
|
||||
|
||||
/* Restore . */
|
||||
.pluginend . - NOCACHE_BASE :
|
||||
{
|
||||
_plugin_end_addr = .;
|
||||
plugin_end_addr = .;
|
||||
} > PLUGIN_RAM
|
||||
}
|
||||
|
||||
/* Special trick to avoid a linker error when no other sections are
|
||||
left after garbage collection (plugin not for this platform) */
|
||||
|
|
|
@ -57,10 +57,10 @@ static long voice_stack[0x7c0/sizeof(long)] IBSS_ATTR_VOICE_STACK;
|
|||
static const char voice_thread_name[] = "voice";
|
||||
|
||||
/* Voice thread synchronization objects */
|
||||
static struct event_queue voice_queue NOCACHEBSS_ATTR;
|
||||
static struct mutex voice_mutex NOCACHEBSS_ATTR;
|
||||
static struct event voice_event NOCACHEBSS_ATTR;
|
||||
static struct queue_sender_list voice_queue_sender_list NOCACHEBSS_ATTR;
|
||||
static struct event_queue voice_queue SHAREDBSS_ATTR;
|
||||
static struct mutex voice_mutex SHAREDBSS_ATTR;
|
||||
static struct event voice_event SHAREDBSS_ATTR;
|
||||
static struct queue_sender_list voice_queue_sender_list SHAREDBSS_ATTR;
|
||||
|
||||
/* Buffer for decoded samples */
|
||||
static spx_int16_t voice_output_buf[VOICE_FRAME_SIZE] CACHEALIGN_ATTR;
|
||||
|
@ -115,7 +115,7 @@ void mp3_play_data(const unsigned char* start, int size,
|
|||
{
|
||||
/* Shared struct to get data to the thread - once it replies, it has
|
||||
* safely cached it in its own private data */
|
||||
static struct voice_info voice_clip NOCACHEBSS_ATTR;
|
||||
static struct voice_info voice_clip SHAREDBSS_ATTR;
|
||||
|
||||
if (get_more != NULL && start != NULL && (ssize_t)size > 0)
|
||||
{
|
||||
|
|
|
@ -134,7 +134,7 @@ static void ata_lock_unlock(struct ata_lock *l)
|
|||
#define mutex_unlock ata_lock_unlock
|
||||
#endif /* MAX_PHYS_SECTOR_SIZE */
|
||||
|
||||
static struct mutex ata_mtx NOCACHEBSS_ATTR;
|
||||
static struct mutex ata_mtx SHAREDBSS_ATTR;
|
||||
int ata_device; /* device 0 (master) or 1 (slave) */
|
||||
|
||||
int ata_spinup_time = 0;
|
||||
|
|
|
@ -201,7 +201,7 @@ struct fat_cache_entry
|
|||
|
||||
static char fat_cache_sectors[FAT_CACHE_SIZE][SECTOR_SIZE];
|
||||
static struct fat_cache_entry fat_cache[FAT_CACHE_SIZE];
|
||||
static struct mutex cache_mutex NOCACHEBSS_ATTR;
|
||||
static struct mutex cache_mutex SHAREDBSS_ATTR;
|
||||
|
||||
#if defined(HAVE_HOTSWAP) && !defined(HAVE_MMC) /* A better condition ?? */
|
||||
void fat_lock(void)
|
||||
|
|
|
@ -457,25 +457,30 @@
|
|||
and not a special semaphore instruction */
|
||||
#define CORELOCK_SWAP 2 /* A swap (exchange) instruction */
|
||||
|
||||
/* Dual core support - not yet working on the 1G/2G and 3G iPod */
|
||||
#if defined(CPU_PP)
|
||||
#define IDLE_STACK_SIZE 0x80
|
||||
#define IDLE_STACK_WORDS 0x20
|
||||
|
||||
/* Attributes to place data in uncached DRAM */
|
||||
/* These are useful beyond dual-core and ultimately beyond PP since they may
|
||||
* be used for DMA buffers and such without cache maintenence calls. */
|
||||
#define NOCACHEBSS_ATTR __attribute__((section(".ncbss"),nocommon))
|
||||
#define NOCACHEDATA_ATTR __attribute__((section(".ncdata"),nocommon))
|
||||
|
||||
#if !defined(FORCE_SINGLE_CORE)
|
||||
|
||||
#define NUM_CORES 2
|
||||
#define CURRENT_CORE current_core()
|
||||
/* Use IRAM for variables shared across cores - large memory buffers should
|
||||
* use UNCACHED_ADDR(a) and be appropriately aligned and padded */
|
||||
#define NOCACHEBSS_ATTR IBSS_ATTR
|
||||
#define NOCACHEDATA_ATTR IDATA_ATTR
|
||||
/* Attributes for core-shared data in DRAM where IRAM is better used for other
|
||||
* purposes. */
|
||||
#define SHAREDBSS_ATTR NOCACHEBSS_ATTR
|
||||
#define SHAREDDATA_ATTR NOCACHEDATA_ATTR
|
||||
|
||||
#define IF_COP(...) __VA_ARGS__
|
||||
#define IF_COP_VOID(...) __VA_ARGS__
|
||||
#define IF_COP_CORE(core) core
|
||||
|
||||
#if CONFIG_CPU == PP5020 || CONFIG_CPU == PP5002
|
||||
#ifdef CPU_PP
|
||||
#define CONFIG_CORELOCK SW_CORELOCK /* SWP(B) is broken */
|
||||
#else
|
||||
#define CONFIG_CORELOCK CORELOCK_SWAP
|
||||
|
@ -500,9 +505,10 @@
|
|||
#ifndef NUM_CORES
|
||||
/* Default to single core */
|
||||
#define NUM_CORES 1
|
||||
#define CURRENT_CORE CPU
|
||||
#define NOCACHEBSS_ATTR
|
||||
#define NOCACHEDATA_ATTR
|
||||
#define CURRENT_CORE CPU
|
||||
/* Attributes for core-shared data in DRAM - no caching considerations */
|
||||
#define SHAREDBSS_ATTR
|
||||
#define SHAREDDATA_ATTR
|
||||
#define CONFIG_CORELOCK CORELOCK_NONE
|
||||
|
||||
#define IF_COP(...)
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
#endif
|
||||
|
||||
#if !defined(CPU_PP) || !defined(BOOTLOADER)
|
||||
volatile long current_tick NOCACHEDATA_ATTR = 0;
|
||||
volatile long current_tick SHAREDDATA_ATTR = 0;
|
||||
#endif
|
||||
|
||||
void (*tick_funcs[MAX_NUM_TICK_TASKS])(void);
|
||||
|
@ -62,7 +62,7 @@ static struct
|
|||
int count;
|
||||
struct event_queue *queues[MAX_NUM_QUEUES];
|
||||
IF_COP( struct corelock cl; )
|
||||
} all_queues NOCACHEBSS_ATTR;
|
||||
} all_queues SHAREDBSS_ATTR;
|
||||
|
||||
/****************************************************************************
|
||||
* Standard kernel stuff
|
||||
|
|
|
@ -67,13 +67,13 @@
|
|||
|
||||
/* the registered callback function to ask for more mp3 data */
|
||||
volatile pcm_more_callback_type pcm_callback_for_more
|
||||
NOCACHEBSS_ATTR = NULL;
|
||||
SHAREDBSS_ATTR = NULL;
|
||||
/* PCM playback state */
|
||||
volatile bool pcm_playing NOCACHEBSS_ATTR = false;
|
||||
volatile bool pcm_playing SHAREDBSS_ATTR = false;
|
||||
/* PCM paused state. paused implies playing */
|
||||
volatile bool pcm_paused NOCACHEBSS_ATTR = false;
|
||||
volatile bool pcm_paused SHAREDBSS_ATTR = false;
|
||||
/* samplerate of currently playing audio - undefined if stopped */
|
||||
unsigned long pcm_curr_sampr NOCACHEBSS_ATTR = 0;
|
||||
unsigned long pcm_curr_sampr SHAREDBSS_ATTR = 0;
|
||||
|
||||
/**
|
||||
* Do peak calculation using distance squared from axis and save a lot
|
||||
|
@ -312,12 +312,12 @@ void pcm_mute(bool mute)
|
|||
/** Low level pcm recording apis **/
|
||||
|
||||
/* Next start for recording peaks */
|
||||
const volatile void *pcm_rec_peak_addr NOCACHEBSS_ATTR = NULL;
|
||||
const volatile void *pcm_rec_peak_addr SHAREDBSS_ATTR = NULL;
|
||||
/* the registered callback function for when more data is available */
|
||||
volatile pcm_more_callback_type2
|
||||
pcm_callback_more_ready NOCACHEBSS_ATTR = NULL;
|
||||
pcm_callback_more_ready SHAREDBSS_ATTR = NULL;
|
||||
/* DMA transfer in is currently active */
|
||||
volatile bool pcm_recording NOCACHEBSS_ATTR = false;
|
||||
volatile bool pcm_recording SHAREDBSS_ATTR = false;
|
||||
|
||||
/**
|
||||
* Return recording peaks - From the end of the last peak up to
|
||||
|
|
|
@ -212,8 +212,8 @@ enum
|
|||
|
||||
/***************************************************************************/
|
||||
|
||||
static struct event_queue pcmrec_queue NOCACHEBSS_ATTR;
|
||||
static struct queue_sender_list pcmrec_queue_send NOCACHEBSS_ATTR;
|
||||
static struct event_queue pcmrec_queue SHAREDBSS_ATTR;
|
||||
static struct queue_sender_list pcmrec_queue_send SHAREDBSS_ATTR;
|
||||
static long pcmrec_stack[3*DEFAULT_STACK_SIZE/sizeof(long)];
|
||||
static const char pcmrec_thread_name[] = "pcmrec";
|
||||
static struct thread_entry *pcmrec_thread_p;
|
||||
|
|
|
@ -29,14 +29,14 @@
|
|||
#include "string.h"
|
||||
|
||||
#ifndef SIMULATOR
|
||||
long cpu_frequency NOCACHEBSS_ATTR = CPU_FREQ;
|
||||
long cpu_frequency SHAREDBSS_ATTR = CPU_FREQ;
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
||||
static int boost_counter NOCACHEBSS_ATTR = 0;
|
||||
static bool cpu_idle NOCACHEBSS_ATTR = false;
|
||||
static int boost_counter SHAREDBSS_ATTR = 0;
|
||||
static bool cpu_idle SHAREDBSS_ATTR = false;
|
||||
#if NUM_CORES > 1
|
||||
struct spinlock boostctrl_spin NOCACHEBSS_ATTR;
|
||||
struct spinlock boostctrl_spin SHAREDBSS_ATTR;
|
||||
void cpu_boost_init(void)
|
||||
{
|
||||
spinlock_init(&boostctrl_spin);
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
#include "as3514.h"
|
||||
|
||||
/* Local functions definitions */
|
||||
static struct mutex i2c_mtx NOCACHEBSS_ATTR;
|
||||
static struct mutex i2c_mtx SHAREDBSS_ATTR;
|
||||
|
||||
#define POLL_TIMEOUT (HZ)
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#include "hwcompat.h"
|
||||
#include "kernel.h"
|
||||
|
||||
static struct mutex adc_mtx NOCACHEBSS_ATTR;
|
||||
static struct mutex adc_mtx SHAREDBSS_ATTR;
|
||||
|
||||
/* used in the 2nd gen ADC interrupt */
|
||||
static unsigned int_data;
|
||||
|
|
|
@ -21,6 +21,14 @@ INPUT(target/arm/crt0-pp.o)
|
|||
#define IRAMORIG 0x40000000
|
||||
#define IRAMSIZE 0xc000
|
||||
|
||||
#ifdef CPU_PP502x
|
||||
#define NOCACHE_BASE 0x10000000
|
||||
#else
|
||||
#define NOCACHE_BASE 0x28000000
|
||||
#endif
|
||||
|
||||
#define CACHEALIGN_SIZE 16
|
||||
|
||||
/* End of the audio buffer, where the codec buffer starts */
|
||||
#define ENDAUDIOADDR (DRAMORIG + DRAMSIZE)
|
||||
|
||||
|
@ -70,6 +78,18 @@ SECTIONS
|
|||
_dataend = .;
|
||||
} > DRAM
|
||||
|
||||
#if NOCACHE_BASE != 0
|
||||
/* .ncdata section is placed at uncached physical alias address and is
|
||||
* loaded at the proper cached virtual address - no copying is
|
||||
* performed in the init code */
|
||||
.ncdata . + NOCACHE_BASE :
|
||||
{
|
||||
. = ALIGN(CACHEALIGN_SIZE);
|
||||
*(.ncdata*)
|
||||
. = ALIGN(CACHEALIGN_SIZE);
|
||||
} AT> DRAM
|
||||
#endif
|
||||
|
||||
/DISCARD/ :
|
||||
{
|
||||
*(.eh_frame)
|
||||
|
@ -103,7 +123,7 @@ SECTIONS
|
|||
_iend = .;
|
||||
} > IRAM
|
||||
|
||||
.idle_stacks :
|
||||
.idle_stacks (NOLOAD) :
|
||||
{
|
||||
*(.idle_stacks)
|
||||
#if NUM_CORES > 1
|
||||
|
@ -116,7 +136,7 @@ SECTIONS
|
|||
cop_idlestackend = .;
|
||||
} > IRAM
|
||||
|
||||
.stack :
|
||||
.stack (NOLOAD) :
|
||||
{
|
||||
*(.stack)
|
||||
stackbegin = .;
|
||||
|
@ -124,37 +144,53 @@ SECTIONS
|
|||
stackend = .;
|
||||
} > IRAM
|
||||
|
||||
.bss ADDR(.data) + SIZEOF(.data) + SIZEOF(.iram) + SIZEOF(.vectors):
|
||||
/* .bss and .ncbss are treated as a single section to use one init loop to
|
||||
* zero it - note "_edata" and "_end" */
|
||||
.bss ADDR(.data) + SIZEOF(.data) + SIZEOF(.ncdata) +\
|
||||
SIZEOF(.iram) + SIZEOF(.vectors) (NOLOAD) :
|
||||
{
|
||||
_edata = .;
|
||||
*(.bss*)
|
||||
*(COMMON)
|
||||
. = ALIGN(0x4);
|
||||
_end = .;
|
||||
} > DRAM
|
||||
|
||||
.audiobuf ALIGN(4) :
|
||||
#if NOCACHE_BASE != 0
|
||||
.ncbss . + NOCACHE_BASE (NOLOAD):
|
||||
{
|
||||
. = ALIGN(CACHEALIGN_SIZE);
|
||||
*(.ncbss*)
|
||||
. = ALIGN(CACHEALIGN_SIZE);
|
||||
} AT> DRAM
|
||||
#endif
|
||||
|
||||
/* This will be aligned by preceding alignments */
|
||||
.endaddr . - NOCACHE_BASE (NOLOAD) :
|
||||
{
|
||||
_end = .;
|
||||
} > DRAM
|
||||
|
||||
.audiobuf (NOLOAD) :
|
||||
{
|
||||
_audiobuffer = .;
|
||||
audiobuffer = .;
|
||||
} > DRAM
|
||||
|
||||
.audiobufend ENDAUDIOADDR:
|
||||
|
||||
.audiobufend ENDAUDIOADDR (NOLOAD) :
|
||||
{
|
||||
audiobufend = .;
|
||||
_audiobufend = .;
|
||||
} > DRAM
|
||||
|
||||
.codec ENDAUDIOADDR:
|
||||
.codec ENDAUDIOADDR (NOLOAD) :
|
||||
{
|
||||
codecbuf = .;
|
||||
_codecbuf = .;
|
||||
}
|
||||
|
||||
.plugin ENDADDR:
|
||||
.plugin ENDADDR (NOLOAD) :
|
||||
{
|
||||
_pluginbuf = .;
|
||||
pluginbuf = .;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -43,6 +43,7 @@ SECTIONS
|
|||
*(.irodata)
|
||||
*(.idata)
|
||||
*(.data*)
|
||||
*(.ncdata*);
|
||||
_dataend = . ;
|
||||
}
|
||||
|
||||
|
@ -64,6 +65,7 @@ SECTIONS
|
|||
_edata = .;
|
||||
*(.bss*);
|
||||
*(.ibss);
|
||||
*(.ncbss*);
|
||||
_end = .;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -21,6 +21,14 @@ INPUT(target/arm/crt0-pp.o)
|
|||
#define IRAMORIG 0x40000000
|
||||
#define IRAMSIZE 0xc000
|
||||
|
||||
#ifdef CPU_PP502x
|
||||
#define NOCACHE_BASE 0x10000000
|
||||
#else
|
||||
#define NOCACHE_BASE 0x28000000
|
||||
#endif
|
||||
|
||||
#define CACHEALIGN_SIZE 16
|
||||
|
||||
/* End of the audio buffer, where the codec buffer starts */
|
||||
#define ENDAUDIOADDR (DRAMORIG + DRAMSIZE)
|
||||
|
||||
|
@ -70,6 +78,18 @@ SECTIONS
|
|||
_dataend = .;
|
||||
} > DRAM
|
||||
|
||||
#if NOCACHE_BASE != 0
|
||||
/* .ncdata section is placed at uncached physical alias address and is
|
||||
* loaded at the proper cached virtual address - no copying is
|
||||
* performed in the init code */
|
||||
.ncdata . + NOCACHE_BASE :
|
||||
{
|
||||
. = ALIGN(CACHEALIGN_SIZE);
|
||||
*(.ncdata*)
|
||||
. = ALIGN(CACHEALIGN_SIZE);
|
||||
} AT> DRAM
|
||||
#endif
|
||||
|
||||
/DISCARD/ :
|
||||
{
|
||||
*(.eh_frame)
|
||||
|
@ -103,7 +123,7 @@ SECTIONS
|
|||
_iend = .;
|
||||
} > IRAM
|
||||
|
||||
.idle_stacks :
|
||||
.idle_stacks (NOLOAD) :
|
||||
{
|
||||
*(.idle_stacks)
|
||||
#if NUM_CORES > 1
|
||||
|
@ -116,7 +136,7 @@ SECTIONS
|
|||
cop_idlestackend = .;
|
||||
} > IRAM
|
||||
|
||||
.stack :
|
||||
.stack (NOLOAD) :
|
||||
{
|
||||
*(.stack)
|
||||
stackbegin = .;
|
||||
|
@ -124,37 +144,53 @@ SECTIONS
|
|||
stackend = .;
|
||||
} > IRAM
|
||||
|
||||
.bss ADDR(.data) + SIZEOF(.data) + SIZEOF(.iram) + SIZEOF(.vectors):
|
||||
/* .bss and .ncbss are treated as a single section to use one init loop to
|
||||
* zero it - note "_edata" and "_end" */
|
||||
.bss ADDR(.data) + SIZEOF(.data) + SIZEOF(.ncdata) +\
|
||||
SIZEOF(.iram) + SIZEOF(.vectors) (NOLOAD) :
|
||||
{
|
||||
_edata = .;
|
||||
*(.bss*)
|
||||
*(COMMON)
|
||||
. = ALIGN(0x4);
|
||||
_end = .;
|
||||
} > DRAM
|
||||
|
||||
.audiobuf ALIGN(4) :
|
||||
#if NOCACHE_BASE != 0
|
||||
.ncbss . + NOCACHE_BASE (NOLOAD):
|
||||
{
|
||||
. = ALIGN(CACHEALIGN_SIZE);
|
||||
*(.ncbss*)
|
||||
. = ALIGN(CACHEALIGN_SIZE);
|
||||
} AT> DRAM
|
||||
#endif
|
||||
|
||||
/* This will be aligned by preceding alignments */
|
||||
.endaddr . - NOCACHE_BASE (NOLOAD) :
|
||||
{
|
||||
_end = .;
|
||||
} > DRAM
|
||||
|
||||
.audiobuf (NOLOAD) :
|
||||
{
|
||||
_audiobuffer = .;
|
||||
audiobuffer = .;
|
||||
} > DRAM
|
||||
|
||||
.audiobufend ENDAUDIOADDR:
|
||||
|
||||
.audiobufend ENDAUDIOADDR (NOLOAD) :
|
||||
{
|
||||
audiobufend = .;
|
||||
_audiobufend = .;
|
||||
} > DRAM
|
||||
|
||||
.codec ENDAUDIOADDR:
|
||||
.codec ENDAUDIOADDR (NOLOAD) :
|
||||
{
|
||||
codecbuf = .;
|
||||
_codecbuf = .;
|
||||
}
|
||||
|
||||
.plugin ENDADDR:
|
||||
.plugin ENDADDR (NOLOAD) :
|
||||
{
|
||||
_pluginbuf = .;
|
||||
pluginbuf = .;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -27,6 +27,7 @@ SECTIONS
|
|||
*(.irodata)
|
||||
*(.idata)
|
||||
*(.data*)
|
||||
*(.ncdata*);
|
||||
_dataend = . ;
|
||||
}
|
||||
|
||||
|
@ -48,6 +49,7 @@ SECTIONS
|
|||
_edata = .;
|
||||
*(.bss*);
|
||||
*(.ibss);
|
||||
*(.ncbss*);
|
||||
_end = .;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -34,7 +34,7 @@ static unsigned short disp_control_rev;
|
|||
/* Contrast setting << 8 */
|
||||
static int lcd_contrast;
|
||||
|
||||
static unsigned lcd_yuv_options NOCACHEBSS_ATTR = 0;
|
||||
static unsigned lcd_yuv_options SHAREDBSS_ATTR = 0;
|
||||
|
||||
/* Forward declarations */
|
||||
static void lcd_display_off(void);
|
||||
|
|
|
@ -21,6 +21,14 @@ INPUT(target/arm/crt0-pp.o)
|
|||
#define IRAMORIG 0x40000000
|
||||
#define IRAMSIZE 0xc000
|
||||
|
||||
#ifdef CPU_PP502x
|
||||
#define NOCACHE_BASE 0x10000000
|
||||
#else
|
||||
#define NOCACHE_BASE 0x28000000
|
||||
#endif
|
||||
|
||||
#define CACHEALIGN_SIZE 16
|
||||
|
||||
/* End of the audio buffer, where the codec buffer starts */
|
||||
#define ENDAUDIOADDR (DRAMORIG + DRAMSIZE)
|
||||
|
||||
|
@ -70,6 +78,18 @@ SECTIONS
|
|||
_dataend = .;
|
||||
} > DRAM
|
||||
|
||||
#if NOCACHE_BASE != 0
|
||||
/* .ncdata section is placed at uncached physical alias address and is
|
||||
* loaded at the proper cached virtual address - no copying is
|
||||
* performed in the init code */
|
||||
.ncdata . + NOCACHE_BASE :
|
||||
{
|
||||
. = ALIGN(CACHEALIGN_SIZE);
|
||||
*(.ncdata*)
|
||||
. = ALIGN(CACHEALIGN_SIZE);
|
||||
} AT> DRAM
|
||||
#endif
|
||||
|
||||
/DISCARD/ :
|
||||
{
|
||||
*(.eh_frame)
|
||||
|
@ -103,7 +123,7 @@ SECTIONS
|
|||
_iend = .;
|
||||
} > IRAM
|
||||
|
||||
.idle_stacks :
|
||||
.idle_stacks (NOLOAD) :
|
||||
{
|
||||
*(.idle_stacks)
|
||||
#if NUM_CORES > 1
|
||||
|
@ -116,7 +136,7 @@ SECTIONS
|
|||
cop_idlestackend = .;
|
||||
} > IRAM
|
||||
|
||||
.stack :
|
||||
.stack (NOLOAD) :
|
||||
{
|
||||
*(.stack)
|
||||
stackbegin = .;
|
||||
|
@ -124,37 +144,53 @@ SECTIONS
|
|||
stackend = .;
|
||||
} > IRAM
|
||||
|
||||
.bss ADDR(.data) + SIZEOF(.data) + SIZEOF(.iram) + SIZEOF(.vectors):
|
||||
/* .bss and .ncbss are treated as a single section to use one init loop to
|
||||
* zero it - note "_edata" and "_end" */
|
||||
.bss ADDR(.data) + SIZEOF(.data) + SIZEOF(.ncdata) +\
|
||||
SIZEOF(.iram) + SIZEOF(.vectors) (NOLOAD) :
|
||||
{
|
||||
_edata = .;
|
||||
*(.bss*)
|
||||
*(COMMON)
|
||||
. = ALIGN(0x4);
|
||||
_end = .;
|
||||
} > DRAM
|
||||
|
||||
.audiobuf ALIGN(4) :
|
||||
#if NOCACHE_BASE != 0
|
||||
.ncbss . + NOCACHE_BASE (NOLOAD):
|
||||
{
|
||||
. = ALIGN(CACHEALIGN_SIZE);
|
||||
*(.ncbss*)
|
||||
. = ALIGN(CACHEALIGN_SIZE);
|
||||
} AT> DRAM
|
||||
#endif
|
||||
|
||||
/* This will be aligned by preceding alignments */
|
||||
.endaddr . - NOCACHE_BASE (NOLOAD) :
|
||||
{
|
||||
_end = .;
|
||||
} > DRAM
|
||||
|
||||
.audiobuf (NOLOAD) :
|
||||
{
|
||||
_audiobuffer = .;
|
||||
audiobuffer = .;
|
||||
} > DRAM
|
||||
|
||||
.audiobufend ENDAUDIOADDR:
|
||||
|
||||
.audiobufend ENDAUDIOADDR (NOLOAD) :
|
||||
{
|
||||
audiobufend = .;
|
||||
_audiobufend = .;
|
||||
} > DRAM
|
||||
|
||||
.codec ENDAUDIOADDR:
|
||||
.codec ENDAUDIOADDR (NOLOAD) :
|
||||
{
|
||||
codecbuf = .;
|
||||
_codecbuf = .;
|
||||
}
|
||||
|
||||
.plugin ENDADDR:
|
||||
.plugin ENDADDR (NOLOAD) :
|
||||
{
|
||||
_pluginbuf = .;
|
||||
pluginbuf = .;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -27,6 +27,7 @@ SECTIONS
|
|||
*(.irodata)
|
||||
*(.idata)
|
||||
*(.data*)
|
||||
*(.ncdata*)
|
||||
_dataend = . ;
|
||||
}
|
||||
|
||||
|
@ -48,6 +49,7 @@ SECTIONS
|
|||
_edata = .;
|
||||
*(.bss*);
|
||||
*(.ibss);
|
||||
*(.ncbss*);
|
||||
_end = .;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -72,7 +72,7 @@ void fiq_handler(void)
|
|||
/****************************************************************************
|
||||
** Playback DMA transfer
|
||||
**/
|
||||
struct dma_data dma_play_data NOCACHEBSS_ATTR =
|
||||
struct dma_data dma_play_data SHAREDBSS_ATTR =
|
||||
{
|
||||
/* Initialize to a locked, stopped state */
|
||||
.p = NULL,
|
||||
|
@ -84,7 +84,7 @@ struct dma_data dma_play_data NOCACHEBSS_ATTR =
|
|||
.state = 0
|
||||
};
|
||||
|
||||
static unsigned long pcm_freq NOCACHEDATA_ATTR = HW_SAMPR_DEFAULT; /* 44.1 is default */
|
||||
static unsigned long pcm_freq SHAREDDATA_ATTR = HW_SAMPR_DEFAULT; /* 44.1 is default */
|
||||
#ifdef HAVE_WM8751
|
||||
/* Samplerate control for audio codec */
|
||||
static int sr_ctrl = MROBE100_44100HZ;
|
||||
|
@ -356,7 +356,7 @@ const void * pcm_play_dma_get_peak_buffer(int *count)
|
|||
**/
|
||||
#ifdef HAVE_RECORDING
|
||||
/* PCM recording interrupt routine lockout */
|
||||
static struct dma_data dma_rec_data NOCACHEBSS_ATTR =
|
||||
static struct dma_data dma_rec_data SHAREDBSS_ATTR =
|
||||
{
|
||||
/* Initialize to a locked, stopped state */
|
||||
.p = NULL,
|
||||
|
|
|
@ -21,6 +21,14 @@ INPUT(target/arm/crt0-pp.o)
|
|||
#define IRAMORIG 0x40000000
|
||||
#define IRAMSIZE 0xc000
|
||||
|
||||
#ifdef CPU_PP502x
|
||||
#define NOCACHE_BASE 0x10000000
|
||||
#else
|
||||
#define NOCACHE_BASE 0x28000000
|
||||
#endif
|
||||
|
||||
#define CACHEALIGN_SIZE 16
|
||||
|
||||
/* End of the audio buffer, where the codec buffer starts */
|
||||
#define ENDAUDIOADDR (DRAMORIG + DRAMSIZE)
|
||||
|
||||
|
@ -70,6 +78,18 @@ SECTIONS
|
|||
_dataend = .;
|
||||
} > DRAM
|
||||
|
||||
#if NOCACHE_BASE != 0
|
||||
/* .ncdata section is placed at uncached physical alias address and is
|
||||
* loaded at the proper cached virtual address - no copying is
|
||||
* performed in the init code */
|
||||
.ncdata . + NOCACHE_BASE :
|
||||
{
|
||||
. = ALIGN(CACHEALIGN_SIZE);
|
||||
*(.ncdata*)
|
||||
. = ALIGN(CACHEALIGN_SIZE);
|
||||
} AT> DRAM
|
||||
#endif
|
||||
|
||||
/DISCARD/ :
|
||||
{
|
||||
*(.eh_frame)
|
||||
|
@ -103,7 +123,7 @@ SECTIONS
|
|||
_iend = .;
|
||||
} > IRAM
|
||||
|
||||
.idle_stacks :
|
||||
.idle_stacks (NOLOAD) :
|
||||
{
|
||||
*(.idle_stacks)
|
||||
#if NUM_CORES > 1
|
||||
|
@ -116,7 +136,7 @@ SECTIONS
|
|||
cop_idlestackend = .;
|
||||
} > IRAM
|
||||
|
||||
.stack :
|
||||
.stack (NOLOAD) :
|
||||
{
|
||||
*(.stack)
|
||||
stackbegin = .;
|
||||
|
@ -124,37 +144,53 @@ SECTIONS
|
|||
stackend = .;
|
||||
} > IRAM
|
||||
|
||||
.bss ADDR(.data) + SIZEOF(.data) + SIZEOF(.iram) + SIZEOF(.vectors):
|
||||
/* .bss and .ncbss are treated as a single section to use one init loop to
|
||||
* zero it - note "_edata" and "_end" */
|
||||
.bss ADDR(.data) + SIZEOF(.data) + SIZEOF(.ncdata) +\
|
||||
SIZEOF(.iram) + SIZEOF(.vectors) (NOLOAD) :
|
||||
{
|
||||
_edata = .;
|
||||
*(.bss*)
|
||||
*(COMMON)
|
||||
. = ALIGN(0x4);
|
||||
_end = .;
|
||||
} > DRAM
|
||||
|
||||
.audiobuf ALIGN(4) :
|
||||
#if NOCACHE_BASE != 0
|
||||
.ncbss . + NOCACHE_BASE (NOLOAD):
|
||||
{
|
||||
. = ALIGN(CACHEALIGN_SIZE);
|
||||
*(.ncbss*)
|
||||
. = ALIGN(CACHEALIGN_SIZE);
|
||||
} AT> DRAM
|
||||
#endif
|
||||
|
||||
/* This will be aligned by preceding alignments */
|
||||
.endaddr . - NOCACHE_BASE (NOLOAD) :
|
||||
{
|
||||
_end = .;
|
||||
} > DRAM
|
||||
|
||||
.audiobuf (NOLOAD) :
|
||||
{
|
||||
_audiobuffer = .;
|
||||
audiobuffer = .;
|
||||
} > DRAM
|
||||
|
||||
.audiobufend ENDAUDIOADDR:
|
||||
|
||||
.audiobufend ENDAUDIOADDR (NOLOAD) :
|
||||
{
|
||||
audiobufend = .;
|
||||
_audiobufend = .;
|
||||
} > DRAM
|
||||
|
||||
.codec ENDAUDIOADDR:
|
||||
.codec ENDAUDIOADDR (NOLOAD) :
|
||||
{
|
||||
codecbuf = .;
|
||||
_codecbuf = .;
|
||||
}
|
||||
|
||||
.plugin ENDADDR:
|
||||
.plugin ENDADDR (NOLOAD) :
|
||||
{
|
||||
_pluginbuf = .;
|
||||
pluginbuf = .;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -165,7 +165,7 @@ static struct sd_card_status sd_status[NUM_VOLUMES] =
|
|||
/* Shoot for around 75% usage */
|
||||
static long sd_stack [(DEFAULT_STACK_SIZE*2 + 0x1c0)/sizeof(long)];
|
||||
static const char sd_thread_name[] = "ata/sd";
|
||||
static struct mutex sd_mtx NOCACHEBSS_ATTR;
|
||||
static struct mutex sd_mtx SHAREDBSS_ATTR;
|
||||
static struct event_queue sd_queue;
|
||||
|
||||
/* Posted when card plugged status has changed */
|
||||
|
|
|
@ -30,6 +30,7 @@ SECTIONS
|
|||
*(.irodata)
|
||||
*(.idata)
|
||||
*(.data*)
|
||||
*(.ncdata*)
|
||||
_dataend = . ;
|
||||
}
|
||||
|
||||
|
@ -51,6 +52,7 @@ SECTIONS
|
|||
_edata = .;
|
||||
*(.bss*);
|
||||
*(.ibss);
|
||||
*(.ncbss*);
|
||||
_end = .;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#include "system.h"
|
||||
|
||||
/* Display status */
|
||||
static unsigned lcd_yuv_options NOCACHEBSS_ATTR = 0;
|
||||
static unsigned lcd_yuv_options SHAREDBSS_ATTR = 0;
|
||||
|
||||
/* LCD command set for Samsung S6B33B2 */
|
||||
|
||||
|
|
|
@ -28,8 +28,8 @@
|
|||
|
||||
/* Power and display status */
|
||||
static bool power_on = false; /* Is the power turned on? */
|
||||
static bool display_on NOCACHEBSS_ATTR = false; /* Is the display turned on? */
|
||||
static unsigned lcd_yuv_options NOCACHEBSS_ATTR = 0;
|
||||
static bool display_on SHAREDBSS_ATTR = false; /* Is the display turned on? */
|
||||
static unsigned lcd_yuv_options SHAREDBSS_ATTR = 0;
|
||||
|
||||
/* Reverse Flag */
|
||||
#define R_DISP_CONTROL_NORMAL 0x0004
|
||||
|
|
|
@ -108,7 +108,7 @@ static inline unsigned int processor_id(void)
|
|||
/* Certain data needs to be out of the way of cache line interference
|
||||
* such as data for COP use or for use with UNCACHED_ADDR */
|
||||
#define PROC_NEEDS_CACHEALIGN
|
||||
#define CACHEALIGN_BITS (5) /* 2^5 = 32 bytes */
|
||||
#define CACHEALIGN_BITS (4) /* 2^4 = 16 bytes */
|
||||
|
||||
/** cache functions **/
|
||||
#ifndef BOOTLOADER
|
||||
|
|
|
@ -42,7 +42,7 @@ static bool initialized = false;
|
|||
static long next_yield = 0;
|
||||
#define MIN_YIELD_PERIOD 2000
|
||||
|
||||
static struct mutex ata_mtx NOCACHEBSS_ATTR;
|
||||
static struct mutex ata_mtx SHAREDBSS_ATTR;
|
||||
|
||||
#define SECTOR_SIZE 512
|
||||
|
||||
|
|
|
@ -235,7 +235,7 @@ extern uintptr_t cpu_idlestackbegin[];
|
|||
extern uintptr_t cpu_idlestackend[];
|
||||
extern uintptr_t cop_idlestackbegin[];
|
||||
extern uintptr_t cop_idlestackend[];
|
||||
static uintptr_t * const idle_stacks[NUM_CORES] NOCACHEDATA_ATTR =
|
||||
static uintptr_t * const idle_stacks[NUM_CORES] =
|
||||
{
|
||||
[CPU] = cpu_idlestackbegin,
|
||||
[COP] = cop_idlestackbegin
|
||||
|
@ -251,7 +251,7 @@ struct core_semaphores
|
|||
volatile uint8_t unused; /* 03h */
|
||||
};
|
||||
|
||||
static struct core_semaphores core_semaphores[NUM_CORES] NOCACHEBSS_ATTR;
|
||||
static struct core_semaphores core_semaphores[NUM_CORES] IBSS_ATTR;
|
||||
#endif /* CONFIG_CPU == PP5002 */
|
||||
|
||||
#endif /* NUM_CORES */
|
||||
|
|
|
@ -25,12 +25,12 @@
|
|||
#include "logf.h"
|
||||
|
||||
static int timer_prio = -1;
|
||||
void NOCACHEBSS_ATTR (*pfn_timer)(void) = NULL; /* timer callback */
|
||||
void NOCACHEBSS_ATTR (*pfn_unregister)(void) = NULL; /* unregister callback */
|
||||
void SHAREDBSS_ATTR (*pfn_timer)(void) = NULL; /* timer callback */
|
||||
void SHAREDBSS_ATTR (*pfn_unregister)(void) = NULL; /* unregister callback */
|
||||
#ifdef CPU_COLDFIRE
|
||||
static int base_prescale;
|
||||
#elif defined CPU_PP || CONFIG_CPU == PNX0101
|
||||
static long NOCACHEBSS_ATTR cycles_new = 0;
|
||||
static long SHAREDBSS_ATTR cycles_new = 0;
|
||||
#endif
|
||||
|
||||
/* interrupt handler */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue