2009-04-10 18:15:10 +02:00
|
|
|
/*
|
|
|
|
mini - a Free Software replacement for the Nintendo/BroadOn IOS.
|
|
|
|
|
|
|
|
memory management, MMU, caches, and flushing
|
|
|
|
|
|
|
|
Copyright (C) 2008, 2009 Hector Martin "marcan" <marcan@marcansoft.com>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, version 2.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
|
|
|
*/
|
2008-12-28 14:35:37 +01:00
|
|
|
#ifndef __MEMORY_H__
|
|
|
|
#define __MEMORY_H__
|
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
|
|
|
#define ALIGN_FORWARD(x,align) \
|
|
|
|
((typeof(x))((((u32)(x)) + (align) - 1) & (~(align-1))))
|
|
|
|
|
|
|
|
#define ALIGN_BACKWARD(x,align) \
|
|
|
|
((typeof(x))(((u32)(x)) & (~(align-1))))
|
|
|
|
|
|
|
|
enum AHBDEV {
|
2009-03-07 20:56:03 +01:00
|
|
|
AHB_STARLET = 0, //or MEM2 or some controller or bus or ??
|
|
|
|
AHB_1 = 1, //ppc or something else???
|
2009-03-07 20:15:07 +01:00
|
|
|
AHB_NAND = 3,
|
2009-03-07 20:56:03 +01:00
|
|
|
AHB_AES = 4,
|
|
|
|
AHB_SHA1 = 5,
|
2009-03-07 20:44:54 +01:00
|
|
|
AHB_SDHC = 9,
|
2008-12-28 14:35:37 +01:00
|
|
|
};
|
|
|
|
|
2009-01-16 09:07:33 +01:00
|
|
|
void dc_flushrange(const void *start, u32 size);
|
2008-12-28 14:35:37 +01:00
|
|
|
void dc_invalidaterange(void *start, u32 size);
|
|
|
|
void dc_flushall(void);
|
|
|
|
void ic_invalidateall(void);
|
2009-03-07 20:15:07 +01:00
|
|
|
void ahb_flush_from(enum AHBDEV dev);
|
|
|
|
void ahb_flush_to(enum AHBDEV dev);
|
2008-12-28 14:35:37 +01:00
|
|
|
void mem_protect(int enable, void *start, void *end);
|
|
|
|
void mem_setswap(int enable);
|
|
|
|
|
2009-01-16 08:53:03 +01:00
|
|
|
void mem_initialize(void);
|
|
|
|
void mem_shutdown(void);
|
|
|
|
|
2009-03-06 05:25:28 +01:00
|
|
|
u32 dma_addr(void *);
|
|
|
|
|
2009-01-16 08:53:03 +01:00
|
|
|
static inline u32 get_cr(void)
|
|
|
|
{
|
|
|
|
u32 data;
|
|
|
|
__asm__ volatile ( "mrc\tp15, 0, %0, c1, c0, 0" : "=r" (data) );
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
static inline u32 get_ttbr(void)
|
|
|
|
{
|
|
|
|
u32 data;
|
|
|
|
__asm__ volatile ( "mrc\tp15, 0, %0, c2, c0, 0" : "=r" (data) );
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
static inline u32 get_dacr(void)
|
|
|
|
{
|
|
|
|
u32 data;
|
|
|
|
__asm__ volatile ( "mrc\tp15, 0, %0, c3, c0, 0" : "=r" (data) );
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
static inline void set_cr(u32 data)
|
|
|
|
{
|
|
|
|
__asm__ volatile ( "mcr\tp15, 0, %0, c1, c0, 0" :: "r" (data) );
|
|
|
|
}
|
|
|
|
static inline void set_ttbr(u32 data)
|
|
|
|
{
|
|
|
|
__asm__ volatile ( "mcr\tp15, 0, %0, c2, c0, 0" :: "r" (data) );
|
|
|
|
}
|
|
|
|
static inline void set_dacr(u32 data)
|
|
|
|
{
|
|
|
|
__asm__ volatile ( "mcr\tp15, 0, %0, c3, c0, 0" :: "r" (data) );
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline u32 get_dfsr(void)
|
|
|
|
{
|
|
|
|
u32 data;
|
|
|
|
__asm__ volatile ( "mrc\tp15, 0, %0, c5, c0, 0" : "=r" (data) );
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
static inline u32 get_ifsr(void)
|
|
|
|
{
|
|
|
|
u32 data;
|
|
|
|
__asm__ volatile ( "mrc\tp15, 0, %0, c5, c0, 1" : "=r" (data) );
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
static inline u32 get_far(void)
|
|
|
|
{
|
|
|
|
u32 data;
|
|
|
|
__asm__ volatile ( "mrc\tp15, 0, %0, c6, c0, 0" : "=r" (data) );
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2009-03-18 18:21:25 +01:00
|
|
|
void _ahb_flush_to(enum AHBDEV dev);
|
|
|
|
|
|
|
|
static inline void dc_inval_block_fast(void *block)
|
|
|
|
{
|
|
|
|
__asm__ volatile ( "mcr\tp15, 0, %0, c7, c6, 1" :: "r" (block) );
|
|
|
|
_ahb_flush_to(AHB_STARLET); //TODO: check if really needed and if not, remove
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void dc_flush_block_fast(void *block)
|
|
|
|
{
|
|
|
|
__asm__ volatile ( "mcr\tp15, 0, %0, c7, c10, 1" :: "r" (block) );
|
|
|
|
__asm__ volatile ( "mcr\tp15, 0, %0, c7, c10, 4" :: "r" (0) );
|
|
|
|
ahb_flush_from(AHB_1); //TODO: check if really needed and if not, remove
|
|
|
|
}
|
2009-01-16 08:53:03 +01:00
|
|
|
|
2008-12-28 14:35:37 +01:00
|
|
|
#endif
|