2002-05-15 20:05:05 +00:00
|
|
|
/*
|
|
|
|
* include/asm-ppc/cache.h
|
|
|
|
*/
|
|
|
|
#ifndef __ARCH_PPC_CACHE_H
|
|
|
|
#define __ARCH_PPC_CACHE_H
|
|
|
|
|
|
|
|
#include <asm/processor.h>
|
|
|
|
|
|
|
|
/* bytes per L1 cache line */
|
2017-06-07 17:33:09 +02:00
|
|
|
#if defined(CONFIG_PPC64BRIDGE)
|
2007-10-31 17:55:58 +01:00
|
|
|
#define L1_CACHE_SHIFT 7
|
2008-10-23 01:47:38 -05:00
|
|
|
#elif defined(CONFIG_E500MC)
|
|
|
|
#define L1_CACHE_SHIFT 6
|
2002-05-15 20:05:05 +00:00
|
|
|
#else
|
2007-10-31 17:55:58 +01:00
|
|
|
#define L1_CACHE_SHIFT 5
|
2008-01-08 01:22:21 -06:00
|
|
|
#endif
|
2007-10-31 17:55:58 +01:00
|
|
|
|
|
|
|
#define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT)
|
|
|
|
|
2011-10-17 16:46:06 -07:00
|
|
|
/*
|
|
|
|
* Use the L1 data cache line size value for the minimum DMA buffer alignment
|
|
|
|
* on PowerPC.
|
|
|
|
*/
|
|
|
|
#define ARCH_DMA_MINALIGN L1_CACHE_BYTES
|
|
|
|
|
2007-10-31 17:55:58 +01:00
|
|
|
/*
|
2008-10-16 15:01:15 +02:00
|
|
|
* For compatibility reasons support the CONFIG_SYS_CACHELINE_SIZE too
|
2007-10-31 17:55:58 +01:00
|
|
|
*/
|
2008-10-16 15:01:15 +02:00
|
|
|
#ifndef CONFIG_SYS_CACHELINE_SIZE
|
|
|
|
#define CONFIG_SYS_CACHELINE_SIZE L1_CACHE_BYTES
|
2007-10-31 17:55:58 +01:00
|
|
|
#endif
|
2002-05-15 20:05:05 +00:00
|
|
|
|
|
|
|
#define L1_CACHE_ALIGN(x) (((x)+(L1_CACHE_BYTES-1))&~(L1_CACHE_BYTES-1))
|
|
|
|
#define L1_CACHE_PAGES 8
|
|
|
|
|
|
|
|
#define SMP_CACHE_BYTES L1_CACHE_BYTES
|
|
|
|
|
|
|
|
#ifdef MODULE
|
|
|
|
#define __cacheline_aligned __attribute__((__aligned__(L1_CACHE_BYTES)))
|
|
|
|
#else
|
|
|
|
#define __cacheline_aligned \
|
|
|
|
__attribute__((__aligned__(L1_CACHE_BYTES), \
|
|
|
|
__section__(".data.cacheline_aligned")))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(__KERNEL__) && !defined(__ASSEMBLY__)
|
|
|
|
extern void flush_dcache_range(unsigned long start, unsigned long stop);
|
|
|
|
extern void clean_dcache_range(unsigned long start, unsigned long stop);
|
|
|
|
extern void invalidate_dcache_range(unsigned long start, unsigned long stop);
|
2007-10-31 17:55:58 +01:00
|
|
|
extern void flush_dcache(void);
|
|
|
|
extern void invalidate_dcache(void);
|
2008-09-22 14:11:10 -05:00
|
|
|
extern void invalidate_icache(void);
|
2008-10-16 15:01:15 +02:00
|
|
|
#ifdef CONFIG_SYS_INIT_RAM_LOCK
|
2002-05-15 20:05:05 +00:00
|
|
|
extern void unlock_ram_in_cache(void);
|
2008-10-16 15:01:15 +02:00
|
|
|
#endif /* CONFIG_SYS_INIT_RAM_LOCK */
|
2002-05-15 20:05:05 +00:00
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
|
2014-07-04 17:39:26 +08:00
|
|
|
#if defined(__KERNEL__) && !defined(__ASSEMBLY__)
|
|
|
|
int l2cache_init(void);
|
|
|
|
void enable_cpc(void);
|
|
|
|
void disable_cpc_sram(void);
|
|
|
|
#endif
|
|
|
|
|
2002-05-15 20:05:05 +00:00
|
|
|
/* prep registers for L2 */
|
|
|
|
#define CACHECRBA 0x80000823 /* Cache configuration register address */
|
|
|
|
#define L2CACHE_MASK 0x03 /* Mask for 2 L2 Cache bits */
|
|
|
|
#define L2CACHE_512KB 0x00 /* 512KB */
|
|
|
|
#define L2CACHE_256KB 0x01 /* 256KB */
|
|
|
|
#define L2CACHE_1MB 0x02 /* 1MB */
|
|
|
|
#define L2CACHE_NONE 0x03 /* NONE */
|
|
|
|
#define L2CACHE_PARITY 0x08 /* Mask for L2 Cache Parity Protected bit */
|
|
|
|
|
|
|
|
#endif
|