mirror of
https://github.com/fail0verflow/mini.git
synced 2024-11-24 12:19:21 +01:00
a little readability and a bugfix we prolly never run into
This commit is contained in:
parent
5c64add743
commit
cd4872979d
12
memory.c
12
memory.c
@ -40,6 +40,10 @@ extern u32 __page_table[4096];
|
|||||||
#define LINESIZE 0x20
|
#define LINESIZE 0x20
|
||||||
#define CACHESIZE 0x4000
|
#define CACHESIZE 0x4000
|
||||||
|
|
||||||
|
#define CR_MMU (1 << 0)
|
||||||
|
#define CR_DCACHE (1 << 2)
|
||||||
|
#define CR_ICACHE (1 << 12)
|
||||||
|
|
||||||
// TODO: move to hollywood.h once we figure out WTF
|
// TODO: move to hollywood.h once we figure out WTF
|
||||||
#define HW_100 (HW_REG_BASE + 0x100)
|
#define HW_100 (HW_REG_BASE + 0x100)
|
||||||
#define HW_104 (HW_REG_BASE + 0x104)
|
#define HW_104 (HW_REG_BASE + 0x104)
|
||||||
@ -189,6 +193,7 @@ void ahb_flush_from(enum AHBDEV dev)
|
|||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
gecko_printf("ahb_flush(%d): Invalid device\n", dev);
|
gecko_printf("ahb_flush(%d): Invalid device\n", dev);
|
||||||
|
irq_restore(cookie);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -265,7 +270,6 @@ void mem_setswap(int enable)
|
|||||||
write32(HW_MEMMIRR, d & ~0x20);
|
write32(HW_MEMMIRR, d & ~0x20);
|
||||||
if((!(d & 0x20)) && enable)
|
if((!(d & 0x20)) && enable)
|
||||||
write32(HW_MEMMIRR, d | 0x20);
|
write32(HW_MEMMIRR, d | 0x20);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
u32 dma_addr(void *p)
|
u32 dma_addr(void *p)
|
||||||
@ -347,12 +351,12 @@ void mem_initialize(void)
|
|||||||
#ifndef NO_CACHES
|
#ifndef NO_CACHES
|
||||||
gecko_printf("MEM: enabling caches\n");
|
gecko_printf("MEM: enabling caches\n");
|
||||||
|
|
||||||
cr |= 0x1004; //ICACHE/DCACHE and MMU enable
|
cr |= CR_DCACHE | CR_ICACHE;
|
||||||
set_cr(cr);
|
set_cr(cr);
|
||||||
|
|
||||||
gecko_printf("MEM: enabling MMU\n");
|
gecko_printf("MEM: enabling MMU\n");
|
||||||
|
|
||||||
cr |= 0x0001; //ICACHE/DCACHE and MMU enable
|
cr |= CR_MMU;
|
||||||
set_cr(cr);
|
set_cr(cr);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -367,7 +371,7 @@ void mem_shutdown(void)
|
|||||||
_dc_flush();
|
_dc_flush();
|
||||||
_drain_write_buffer();
|
_drain_write_buffer();
|
||||||
u32 cr = get_cr();
|
u32 cr = get_cr();
|
||||||
cr &= ~0x1005; //disable ICACHE, DCACHE, MMU
|
cr &= ~(CR_MMU | CR_DCACHE | CR_ICACHE); //disable ICACHE, DCACHE, MMU
|
||||||
set_cr(cr);
|
set_cr(cr);
|
||||||
_ic_inval();
|
_ic_inval();
|
||||||
_dc_inval();
|
_dc_inval();
|
||||||
|
Loading…
Reference in New Issue
Block a user