Move CACHEALIGN_BITS to cpu headers
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25633 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
d0af7f9601
commit
680fcd827d
5 changed files with 7 additions and 2 deletions
|
@ -22,6 +22,9 @@
|
|||
#define __PP5002_H__
|
||||
|
||||
/* Much info gleaned and/or copied from the iPodLinux project. */
|
||||
|
||||
#define CACHEALIGN_BITS (4) /* 2^4 = 16 bytes */
|
||||
|
||||
#define DRAM_START 0x28000000
|
||||
|
||||
/* LCD bridge */
|
||||
|
|
|
@ -23,6 +23,8 @@
|
|||
|
||||
/* All info gleaned and/or copied from the iPodLinux project. */
|
||||
|
||||
#define CACHEALIGN_BITS (4) /* 2^4 = 16 bytes */
|
||||
|
||||
/* PCM addresses for obtaining buffers will be what DMA is using (physical) */
|
||||
#define HAVE_PCM_DMA_ADDRESS
|
||||
|
||||
|
|
|
@ -27,6 +27,8 @@
|
|||
|
||||
#define TIMER_FREQ 47923200L
|
||||
|
||||
#define CACHEALIGN_BITS (4) /* 2^4 = 16 bytes */
|
||||
|
||||
/* 04. CALMADM2E */
|
||||
|
||||
/* Following registers are mapped on IO Area in data memory area of Calm. */
|
||||
|
|
|
@ -29,7 +29,6 @@
|
|||
#define CPUFREQ_NORMAL 47923200
|
||||
#define CPUFREQ_MAX 191692800
|
||||
|
||||
#define CACHEALIGN_BITS (4) /* 2^4 = 16 bytes */
|
||||
#define WANTS_STORAGE_ALIGN
|
||||
|
||||
#define inl(a) (*(volatile unsigned long *) (a))
|
||||
|
|
|
@ -161,7 +161,6 @@ static inline void wake_core(int core)
|
|||
/* 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 (4) /* 2^4 = 16 bytes */
|
||||
|
||||
#if defined(CPU_PP502x) && defined(HAVE_ATA_DMA)
|
||||
#define STORAGE_WANTS_ALIGN
|
||||
|
|
Loading…
Reference in a new issue