1
0
Fork 0
forked from len0rd/rockbox

mips: Heavily rework DMA & caching code

Based on code originally written by Amaury Pouly (g#1789, g#1791, g#1527)
but rebased and heavily updated.

Change-Id: Ic794abb5e8d89feb4b88fc3abe854270fb28db70
This commit is contained in:
Solomon Peachy 2020-08-28 21:45:58 -04:00
parent 1ae8213a64
commit 0cb162a76b
16 changed files with 188 additions and 129 deletions

View file

@ -201,7 +201,7 @@ void rolo_restart(const unsigned char* source, unsigned char* dest,
: : "r"(dest) : : "r"(dest)
); );
#elif defined(CPU_MIPS) #elif defined(CPU_MIPS)
__dcache_writeback_all(); commit_discard_idcache();
asm volatile( asm volatile(
"jr %0 \n" "jr %0 \n"
: : "r"(dest) : : "r"(dest)

View file

@ -151,7 +151,7 @@ static void jz_nand_write_dma(void *source, unsigned int len, int bw)
mutex_lock(&nand_dma_mtx); mutex_lock(&nand_dma_mtx);
if(((unsigned int)source < 0xa0000000) && len) if(((unsigned int)source < 0xa0000000) && len)
dma_cache_wback_inv((unsigned long)source, len); commit_discard_dcache_range(source, len);
dma_enable(); dma_enable();
@ -184,7 +184,7 @@ static void jz_nand_read_dma(void *target, unsigned int len, int bw)
mutex_lock(&nand_dma_mtx); mutex_lock(&nand_dma_mtx);
if(((unsigned int)target < 0xa0000000) && len) if(((unsigned int)target < 0xa0000000) && len)
dma_cache_wback_inv((unsigned long)target, len); discard_dcache_range(target, len);
dma_enable(); dma_enable();

View file

@ -150,7 +150,7 @@ static void jz_nand_write_dma(void *source, unsigned int len, int bw)
mutex_lock(&nand_dma_mtx); mutex_lock(&nand_dma_mtx);
if(((unsigned int)source < 0xa0000000) && len) if(((unsigned int)source < 0xa0000000) && len)
dma_cache_wback_inv((unsigned long)source, len); commit_discard_dcache_range(source, len);
dma_enable(); dma_enable();
@ -183,7 +183,7 @@ static void jz_nand_read_dma(void *target, unsigned int len, int bw)
mutex_lock(&nand_dma_mtx); mutex_lock(&nand_dma_mtx);
if(((unsigned int)target < 0xa0000000) && len) if(((unsigned int)target < 0xa0000000) && len)
dma_cache_wback_inv((unsigned long)target, len); discard_dcache_range(target, len);
dma_enable(); dma_enable();

View file

@ -417,7 +417,7 @@ static void jz_sd_receive_data_dma(struct sd_request *req)
#endif #endif
/* flush dcache */ /* flush dcache */
//dma_cache_wback_inv((unsigned long) req->buffer, size); discard_dcache_range(req->buffer, size);
/* setup dma channel */ /* setup dma channel */
REG_DMAC_DSAR(DMA_SD_RX_CHANNEL) = PHYSADDR(MSC_RXFIFO); /* DMA source addr */ REG_DMAC_DSAR(DMA_SD_RX_CHANNEL) = PHYSADDR(MSC_RXFIFO); /* DMA source addr */
REG_DMAC_DTAR(DMA_SD_RX_CHANNEL) = PHYSADDR((unsigned long) req->buffer); /* DMA dest addr */ REG_DMAC_DTAR(DMA_SD_RX_CHANNEL) = PHYSADDR((unsigned long) req->buffer); /* DMA dest addr */
@ -452,7 +452,7 @@ static void jz_mmc_transmit_data_dma(struct mmc_request *req)
#endif #endif
/* flush dcache */ /* flush dcache */
//dma_cache_wback_inv((unsigned long) req->buffer, size); commit_discard_dcache_range(req->buffer, size);
/* setup dma channel */ /* setup dma channel */
REG_DMAC_DSAR(DMA_SD_TX_CHANNEL) = PHYSADDR((unsigned long) req->buffer); /* DMA source addr */ REG_DMAC_DSAR(DMA_SD_TX_CHANNEL) = PHYSADDR((unsigned long) req->buffer); /* DMA source addr */
REG_DMAC_DTAR(DMA_SD_TX_CHANNEL) = PHYSADDR(MSC_TXFIFO); /* DMA dest addr */ REG_DMAC_DTAR(DMA_SD_TX_CHANNEL) = PHYSADDR(MSC_TXFIFO); /* DMA dest addr */

View file

@ -532,6 +532,9 @@ static int jz_sd_transmit_data(const int drive, struct sd_request *req)
#if SD_DMA_ENABLE #if SD_DMA_ENABLE
static int jz_sd_receive_data_dma(const int drive, struct sd_request *req) static int jz_sd_receive_data_dma(const int drive, struct sd_request *req)
{ {
/* flush dcache */
discard_dcache_range(req->buffer, req->cnt);
/* setup dma channel */ /* setup dma channel */
REG_DMAC_DCCSR(DMA_SD_RX_CHANNEL(drive)) = 0; REG_DMAC_DCCSR(DMA_SD_RX_CHANNEL(drive)) = 0;
REG_DMAC_DSAR(DMA_SD_RX_CHANNEL(drive)) = PHYSADDR(MSC_RXFIFO(MSC_CHN(drive))); /* DMA source addr */ REG_DMAC_DSAR(DMA_SD_RX_CHANNEL(drive)) = PHYSADDR(MSC_RXFIFO(MSC_CHN(drive))); /* DMA source addr */
@ -558,16 +561,13 @@ static int jz_sd_receive_data_dma(const int drive, struct sd_request *req)
/* clear status and disable channel */ /* clear status and disable channel */
REG_DMAC_DCCSR(DMA_SD_RX_CHANNEL(drive)) = 0; REG_DMAC_DCCSR(DMA_SD_RX_CHANNEL(drive)) = 0;
/* flush dcache */
dma_cache_wback_inv((unsigned long) req->buffer, req->cnt);
return SD_NO_ERROR; return SD_NO_ERROR;
} }
static int jz_sd_transmit_data_dma(const int drive, struct sd_request *req) static int jz_sd_transmit_data_dma(const int drive, struct sd_request *req)
{ {
/* flush dcache */ /* flush dcache */
dma_cache_wback_inv((unsigned long) req->buffer, req->cnt); commit_discard_dcache_range(req->buffer, req->cnt);
/* setup dma channel */ /* setup dma channel */
REG_DMAC_DCCSR(DMA_SD_TX_CHANNEL(drive)) = 0; REG_DMAC_DCCSR(DMA_SD_TX_CHANNEL(drive)) = 0;

View file

@ -32,7 +32,7 @@ void memset(void *target, unsigned char c, size_t len)
else else
{ {
if(((unsigned int)target < 0xa0000000) && len) if(((unsigned int)target < 0xa0000000) && len)
dma_cache_wback_inv((unsigned long)target, len); discard_dcache_range(target, len);
dp = (unsigned char *)((unsigned int)(&d) | 0xa0000000); dp = (unsigned char *)((unsigned int)(&d) | 0xa0000000);
*(dp + 0) = c; *(dp + 0) = c;
@ -52,7 +52,6 @@ void memset(void *target, unsigned char c, size_t len)
dp = (unsigned char *)((unsigned int)target + (len & (32 - 1))); dp = (unsigned char *)((unsigned int)target + (len & (32 - 1)));
for(d = 0;d < (len % 32); d++) for(d = 0;d < (len % 32); d++)
*dp++ = c; *dp++ = c;
} }
} }
} }
@ -68,7 +67,7 @@ void memset16(void *target, unsigned short c, size_t len)
else else
{ {
if(((unsigned int)target < 0xa0000000) && len) if(((unsigned int)target < 0xa0000000) && len)
dma_cache_wback_inv((unsigned long)target, len); discard_dcache_range(target, len);
d = c; d = c;
REG_DMAC_DSAR(ch) = PHYSADDR((unsigned long)&d); REG_DMAC_DSAR(ch) = PHYSADDR((unsigned long)&d);
@ -97,10 +96,10 @@ void memcpy(void *target, const void *source, size_t len)
_memcpy(target, source, len); _memcpy(target, source, len);
if(((unsigned int)source < 0xa0000000) && len) if(((unsigned int)source < 0xa0000000) && len)
dma_cache_wback_inv((unsigned long)source, len); commit_dcache_range(source, len);
if(((unsigned int)target < 0xa0000000) && len) if(((unsigned int)target < 0xa0000000) && len)
dma_cache_wback_inv((unsigned long)target, len); discard_dcache_range(target, len);
REG_DMAC_DSAR(ch) = PHYSADDR((unsigned long)source); REG_DMAC_DSAR(ch) = PHYSADDR((unsigned long)source);
REG_DMAC_DTAR(ch) = PHYSADDR((unsigned long)target); REG_DMAC_DTAR(ch) = PHYSADDR((unsigned long)target);

View file

@ -29,7 +29,7 @@ void memset_dma(void *target, int c, size_t len, unsigned int bits)
unsigned char *dp; unsigned char *dp;
if(((unsigned int)target < 0xa0000000) && len) if(((unsigned int)target < 0xa0000000) && len)
dma_cache_wback_inv((unsigned long)target, len); discard_dcache_range(target, len);
dp = (unsigned char *)((unsigned int)(&d) | 0xa0000000); dp = (unsigned char *)((unsigned int)(&d) | 0xa0000000);
*(dp + 0) = c; *(dp + 0) = c;
@ -68,10 +68,10 @@ void memset_dma(void *target, int c, size_t len, unsigned int bits)
void memcpy_dma(void *target, const void *source, size_t len, unsigned int bits) void memcpy_dma(void *target, const void *source, size_t len, unsigned int bits)
{ {
if(((unsigned int)source < 0xa0000000) && len) if(((unsigned int)source < 0xa0000000) && len)
dma_cache_wback_inv((unsigned long)source, len); commit_dcache_range(source, len);
if(((unsigned int)target < 0xa0000000) && len) if(((unsigned int)target < 0xa0000000) && len)
dma_cache_wback_inv((unsigned long)target, len); discard_dcache_range(target, len);
REG_MDMAC_DCCSR(MDMA_CHANNEL) = 0; REG_MDMAC_DCCSR(MDMA_CHANNEL) = 0;
REG_MDMAC_DSAR(MDMA_CHANNEL) = PHYSADDR((unsigned long)source); REG_MDMAC_DSAR(MDMA_CHANNEL) = PHYSADDR((unsigned long)source);

View file

@ -109,7 +109,8 @@ void lcd_update_rect(int x, int y, int width, int height)
REG_DMAC_DCMD(DMA_LCD_CHANNEL) = ( DMAC_DCMD_SAI | DMAC_DCMD_RDIL_IGN | DMAC_DCMD_SWDH_32 REG_DMAC_DCMD(DMA_LCD_CHANNEL) = ( DMAC_DCMD_SAI | DMAC_DCMD_RDIL_IGN | DMAC_DCMD_SWDH_32
| DMAC_DCMD_DWDH_16 | DMAC_DCMD_DS_16BYTE ); | DMAC_DCMD_DWDH_16 | DMAC_DCMD_DS_16BYTE );
__dcache_writeback_all(); /* Size of framebuffer is way bigger than cache size. // XXX range
commit_discard_dcache(); /* Size of framebuffer is way bigger than cache size.
We need to find a way to make the framebuffer uncached, so this statement can get removed. */ We need to find a way to make the framebuffer uncached, so this statement can get removed. */
while(REG_SLCD_STATE & SLCD_STATE_BUSY); while(REG_SLCD_STATE & SLCD_STATE_BUSY);
@ -174,7 +175,7 @@ void lcd_blit_yuv(unsigned char * const src[3],
yuv_src[1] = src[1] + (z >> 2) + (src_x >> 1); yuv_src[1] = src[1] + (z >> 2) + (src_x >> 1);
yuv_src[2] = src[2] + (yuv_src[1] - src[1]); yuv_src[2] = src[2] + (yuv_src[1] - src[1]);
__dcache_writeback_all(); commit_discard_dcache(); // XXX range
__cpm_start_ipu(); __cpm_start_ipu();

View file

@ -69,6 +69,8 @@ static inline void set_dma(const void *addr, size_t size)
int burst_size; int burst_size;
logf("%x %d %x", (unsigned int)addr, size, REG_AIC_SR); logf("%x %d %x", (unsigned int)addr, size, REG_AIC_SR);
commit_discard_dcache_range(addr, size);
if(size % 16) if(size % 16)
{ {
if(size % 4) if(size % 4)
@ -88,7 +90,6 @@ static inline void set_dma(const void *addr, size_t size)
burst_size = DMAC_DCMD_DS_16BYTE; burst_size = DMAC_DCMD_DS_16BYTE;
} }
__dcache_writeback_all();
REG_DMAC_DCCSR(DMA_AIC_TX_CHANNEL) = DMAC_DCCSR_NDES; REG_DMAC_DCCSR(DMA_AIC_TX_CHANNEL) = DMAC_DCCSR_NDES;
REG_DMAC_DSAR(DMA_AIC_TX_CHANNEL) = PHYSADDR((unsigned long)addr); REG_DMAC_DSAR(DMA_AIC_TX_CHANNEL) = PHYSADDR((unsigned long)addr);
REG_DMAC_DTAR(DMA_AIC_TX_CHANNEL) = PHYSADDR((unsigned long)AIC_DR); REG_DMAC_DTAR(DMA_AIC_TX_CHANNEL) = PHYSADDR((unsigned long)AIC_DR);

View file

@ -28,7 +28,6 @@
#include "pcm-internal.h" #include "pcm-internal.h"
#include "cpu.h" #include "cpu.h"
/**************************************************************************** /****************************************************************************
** Playback DMA transfer ** Playback DMA transfer
**/ **/
@ -60,7 +59,7 @@ static inline void set_dma(const void *addr, size_t size)
int burst_size; int burst_size;
logf("%x %d %x", (unsigned int)addr, size, REG_AIC_SR); logf("%x %d %x", (unsigned int)addr, size, REG_AIC_SR);
dma_cache_wback_inv((unsigned long)addr, size); commit_discard_dcache_range(addr, size);
if(size % 16) if(size % 16)
{ {

View file

@ -512,8 +512,7 @@ void ICODE_ATTR system_main(void)
{ {
int i; int i;
__dcache_writeback_all(); commit_discard_idcache();
__icache_invalidate_all();
write_c0_status(1 << 28 | 1 << 10 ); /* Enable CP | Mask interrupt 2 */ write_c0_status(1 << 28 | 1 << 10 ); /* Enable CP | Mask interrupt 2 */

View file

@ -673,8 +673,7 @@ void ICODE_ATTR system_main(void)
{ {
int i; int i;
__dcache_writeback_all(); commit_discard_idcache();
__icache_invalidate_all();
write_c0_status(1 << 28 | 1 << 10 ); /* Enable CP | Mask interrupt 2 */ write_c0_status(1 << 28 | 1 << 10 ); /* Enable CP | Mask interrupt 2 */

View file

@ -365,7 +365,7 @@ static void EPDMA_handler(int number)
/* Disable DMA */ /* Disable DMA */
REG_USB_REG_CNTL2 = 0; REG_USB_REG_CNTL2 = 0;
__dcache_invalidate_all(); commit_discard_dcache(); // XXX range?
select_endpoint(endpoint); select_endpoint(endpoint);
/* Read out last packet manually */ /* Read out last packet manually */
@ -707,8 +707,7 @@ static void usb_drv_send_internal(struct usb_endpoint* ep, void* ptr, int length
{ {
if(ep->use_dma) if(ep->use_dma)
{ {
//dma_cache_wback_inv((unsigned long)ptr, length); commit_discard_dcache_range(ptr, length);
__dcache_writeback_all();
REG_USB_REG_ADDR1 = PHYSADDR((unsigned long)ptr); REG_USB_REG_ADDR1 = PHYSADDR((unsigned long)ptr);
REG_USB_REG_COUNT1 = length; REG_USB_REG_COUNT1 = length;
REG_USB_REG_CNTL1 = (USB_CNTL_INTR_EN | USB_CNTL_MODE_1 | REG_USB_REG_CNTL1 = (USB_CNTL_INTR_EN | USB_CNTL_MODE_1 |
@ -767,8 +766,7 @@ int usb_drv_recv(int endpoint, void* ptr, int length)
ep->busy = true; ep->busy = true;
if(ep->use_dma) if(ep->use_dma)
{ {
//dma_cache_wback_inv((unsigned long)ptr, length); discard_dcache_range(ptr, length);
__dcache_writeback_all();
REG_USB_REG_ADDR2 = PHYSADDR((unsigned long)ptr); REG_USB_REG_ADDR2 = PHYSADDR((unsigned long)ptr);
REG_USB_REG_COUNT2 = length; REG_USB_REG_COUNT2 = length;
REG_USB_REG_CNTL2 = (USB_CNTL_INTR_EN | USB_CNTL_MODE_1 | REG_USB_REG_CNTL2 = (USB_CNTL_INTR_EN | USB_CNTL_MODE_1 |

View file

@ -456,7 +456,7 @@ static void EPDMA_handler(int number)
/* Disable DMA */ /* Disable DMA */
REG_USB_CNTL(1) = 0; REG_USB_CNTL(1) = 0;
__dcache_invalidate_all(); commit_discard_dcache(); // XXX range?
select_endpoint(endpoint); select_endpoint(endpoint);
/* Read out last packet manually */ /* Read out last packet manually */
@ -846,8 +846,7 @@ static void usb_drv_send_internal(struct usb_endpoint* ep, void* ptr, int length
{ {
if(ep->use_dma) if(ep->use_dma)
{ {
//dma_cache_wback_inv((unsigned long)ptr, length); commit_discard_dcache_range(ptr, length);
__dcache_writeback_all();
REG_USB_ADDR(0) = PHYSADDR((unsigned long)ptr); REG_USB_ADDR(0) = PHYSADDR((unsigned long)ptr);
REG_USB_COUNT(0) = length; REG_USB_COUNT(0) = length;
REG_USB_CNTL(0) = (USB_CNTL_INTR_EN | USB_CNTL_MODE_1 | REG_USB_CNTL(0) = (USB_CNTL_INTR_EN | USB_CNTL_MODE_1 |
@ -921,8 +920,7 @@ int usb_drv_recv(int endpoint, void* ptr, int length)
ep->busy = true; ep->busy = true;
if(ep->use_dma) if(ep->use_dma)
{ {
//dma_cache_wback_inv((unsigned long)ptr, length); discard_dcache_range(ptr, length);
__dcache_writeback_all();
REG_USB_ADDR(1) = PHYSADDR((unsigned long)ptr); REG_USB_ADDR(1) = PHYSADDR((unsigned long)ptr);
REG_USB_COUNT(1) = length; REG_USB_COUNT(1) = length;
REG_USB_CNTL(1) = (USB_CNTL_INTR_EN | USB_CNTL_MODE_1 | REG_USB_CNTL(1) = (USB_CNTL_INTR_EN | USB_CNTL_MODE_1 |

View file

@ -5,9 +5,9 @@
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
* \/ \/ \/ \/ \/ * \/ \/ \/ \/ \/
* $Id$
* *
* Copyright (C) 2009 by Maurus Cuelenaere * Copyright (C) 2009 by Maurus Cuelenaere
* Copyright (C) 2015 by Marcin Bukat
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License * modify it under the terms of the GNU General Public License
@ -25,8 +25,16 @@
#include "system.h" #include "system.h"
#include "mmu-mips.h" #include "mmu-mips.h"
#if CONFIG_CPU == JZ4732 || CONFIG_CPU == JZ4760B
/* XBurst core has 32 JTLB entries */
#define NR_TLB_ENTRIES 32
#else
#error please define NR_TLB_ENTRIES
#endif
#define BARRIER \ #define BARRIER \
__asm__ __volatile__( \ __asm__ __volatile__( \
" .set push \n" \
" .set noreorder \n" \ " .set noreorder \n" \
" nop \n" \ " nop \n" \
" nop \n" \ " nop \n" \
@ -34,7 +42,7 @@
" nop \n" \ " nop \n" \
" nop \n" \ " nop \n" \
" nop \n" \ " nop \n" \
" .set reorder \n"); " .set pop \n");
#define DEFAULT_PAGE_SHIFT PL_4K #define DEFAULT_PAGE_SHIFT PL_4K
#define DEFAULT_PAGE_MASK PM_4K #define DEFAULT_PAGE_MASK PM_4K
@ -43,6 +51,7 @@
#define VPN2_SHIFT S_EntryHiVPN2 #define VPN2_SHIFT S_EntryHiVPN2
#define PFN_SHIFT S_EntryLoPFN #define PFN_SHIFT S_EntryLoPFN
#define PFN_MASK 0xffffff #define PFN_MASK 0xffffff
static void local_flush_tlb_all(void) static void local_flush_tlb_all(void)
{ {
unsigned long old_ctx; unsigned long old_ctx;
@ -55,10 +64,11 @@ static void local_flush_tlb_all(void)
write_c0_entrylo1(0); write_c0_entrylo1(0);
BARRIER; BARRIER;
/* Blast 'em all away. */ /* blast all entries except the wired one */
for(entry = 0; entry < 32; entry++) for(entry = read_c0_wired(); entry < NR_TLB_ENTRIES; entry++)
{ {
/* Make sure all entries differ. */ /* Make sure all entries differ and are in unmapped space, making them
* impossible to match */
write_c0_entryhi(UNIQUE_ENTRYHI(entry, DEFAULT_PAGE_SHIFT)); write_c0_entryhi(UNIQUE_ENTRYHI(entry, DEFAULT_PAGE_SHIFT));
write_c0_index(entry); write_c0_index(entry);
BARRIER; BARRIER;
@ -119,84 +129,133 @@ void mmu_init(void)
write_c0_framemask(0); write_c0_framemask(0);
local_flush_tlb_all(); local_flush_tlb_all();
/*
map_address(0x80000000, 0x80000000, 0x4000, K_CacheAttrC);
map_address(0x80004000, 0x80004000, MEMORYSIZE * 0x100000, K_CacheAttrC);
*/
} }
#define SYNC_WB() __asm__ __volatile__ ("sync") /* Target specific operations:
* - invalidate BTB (Branch Table Buffer)
* - sync barrier after cache operations */
#if CONFIG_CPU == JZ4732 || CONFIG_CPU == JZ4760B
#define INVALIDATE_BTB() \
do { \
unsigned long tmp; \
__asm__ __volatile__( \
" .set push \n" \
" .set noreorder \n" \
" .set mips32 \n" \
" mfc0 %0, $16, 7 \n" \
" nop \n" \
" ori %0, 2 \n" \
" mtc0 %0, $16, 7 \n" \
" nop \n" \
" .set pop \n" \
: "=&r"(tmp)); \
} while (0)
#define cache_op(base,op) \ #define SYNC_WB() __asm__ __volatile__ ("sync":::"memory")
__asm__ __volatile__(" \ #else /* !JZ4732 */
.set noreorder; \ #define INVALIDATE_BTB() do { } while(0)
.set mips3; \ #define SYNC_WB() do { } while(0)
cache %1, (%0); \ #endif /* CONFIG_CPU */
.set mips0; \
.set reorder" \ #define __CACHE_OP(op, addr) \
__asm__ __volatile__( \
" .set push\n\t \n" \
" .set noreorder \n" \
" .set mips32\n\t \n" \
" cache %0, %1 \n" \
" .set pop \n" \
: \ : \
: "r" (base), \ : "i" (op), "m"(*(unsigned char *)(addr)))
"i" (op));
void __icache_invalidate_all(void) /* rockbox cache api */
{
unsigned long start;
unsigned long end;
start = A_K0BASE; /* Writeback whole D-cache
end = start + CACHE_SIZE; * Alias to commit_discard_dcache() as there is no index type
while(start < end) * variant of writeback-only operation
*/
void commit_dcache(void) __attribute__((alias("commit_discard_dcache")));
/* Writeback whole D-cache and invalidate D-cache lines */
void commit_discard_dcache(void)
{ {
cache_op(start,ICIndexInv); unsigned int i;
start += CACHE_LINE_SIZE;
} /* Use index type operation and iterate whole cache */
for (i=A_K0BASE; i<A_K0BASE+CACHE_SIZE; i+=CACHEALIGN_SIZE)
__CACHE_OP(DCIndexWBInv, i);
SYNC_WB(); SYNC_WB();
} }
void __dcache_invalidate_all(void) /* Writeback lines of D-cache corresponding to address range and
* invalidate those D-cache lines
*/
void commit_discard_dcache_range(const void *base, unsigned int size)
{ {
unsigned long start; char *s;
unsigned long end;
for (s=(char *)base; s<(char *)base+size; s+=CACHEALIGN_SIZE)
__CACHE_OP(DCHitWBInv, s);
start = A_K0BASE;
end = start + CACHE_SIZE;
while (start < end)
{
cache_op(start,DCIndexWBInv);
start += CACHE_LINE_SIZE;
}
SYNC_WB(); SYNC_WB();
} }
void __idcache_invalidate_all(void) /* Writeback lines of D-cache corresponding to address range
*/
void commit_dcache_range(const void *base, unsigned int size)
{ {
__dcache_invalidate_all(); char *s;
__icache_invalidate_all();
}
void __dcache_writeback_all(void) for (s=(char *)base; s<(char *)base+size; s+=CACHEALIGN_SIZE)
{ __CACHE_OP(DCHitWB, s);
__dcache_invalidate_all();
}
void dma_cache_wback_inv(unsigned long addr, unsigned long size)
{
unsigned long end, a;
if (size >= CACHE_SIZE*2) {
__dcache_writeback_all();
}
else {
unsigned long dc_lsize = CACHE_LINE_SIZE;
a = addr & ~(dc_lsize - 1);
end = (addr + size - 1) & ~(dc_lsize - 1);
while (1) {
cache_op(a,DCHitWBInv);
if (a == end)
break;
a += dc_lsize;
}
}
SYNC_WB(); SYNC_WB();
} }
/* Invalidate D-cache lines corresponding to address range
* WITHOUT writeback
*/
void discard_dcache_range(const void *base, unsigned int size)
{
char *s;
if (((int)base & CACHEALIGN_SIZE - 1) ||
(((int)base + size) & CACHEALIGN_SIZE - 1)) {
/* Overlapping sections, so we need to write back instead */
commit_discard_dcache_range(base, size);
return;
};
for (s=(char *)base; s<(char *)base+size; s+=CACHEALIGN_SIZE)
__CACHE_OP(DCHitInv, s);
SYNC_WB();
}
/* Invalidate whole I-cache */
static void discard_icache(void)
{
unsigned int i;
asm volatile (".set push \n"
".set noreorder \n"
".set mips32 \n"
"mtc0 $0, $28 \n" /* TagLo */
"mtc0 $0, $29 \n" /* TagHi */
".set pop \n"
);
/* Use index type operation and iterate whole cache */
for (i=A_K0BASE; i<A_K0BASE+CACHE_SIZE; i+=CACHEALIGN_SIZE)
__CACHE_OP(ICIndexStTag, i);
INVALIDATE_BTB();
}
/* Invalidate the entire I-cache
* and writeback + invalidate the entire D-cache
*/
void commit_discard_idcache(void)
{
commit_discard_dcache();
discard_icache();
}

View file

@ -28,19 +28,25 @@ void map_address(unsigned long virtual, unsigned long physical,
unsigned long length, unsigned int cache_flags); unsigned long length, unsigned int cache_flags);
void mmu_init(void); void mmu_init(void);
#define HAVE_CPUCACHE_INVALIDATE /* Commits entire DCache */
//#define HAVE_CPUCACHE_FLUSH void commit_dcache(void);
/* Commit and discard entire DCache, will do writeback */
void commit_discard_dcache(void);
void __idcache_invalidate_all(void); /* Write DCache back to RAM for the given range and remove cache lines
void __icache_invalidate_all(void); * from DCache afterwards */
void __dcache_invalidate_all(void); void commit_discard_dcache_range(const void *base, unsigned int size);
void __dcache_writeback_all(void);
void dma_cache_wback_inv(unsigned long addr, unsigned long size); /* Write DCache back to RAM for the given range */
void commit_dcache_range(const void *base, unsigned int size);
#define commit_discard_idcache __idcache_invalidate_all /*
#define commit_discard_icache __icache_invalidate_all * Remove cache lines for the given range from DCache
#define commit_discard_dcache __dcache_invalidate_all * will *NOT* do write back except for buffer edges not on a line boundary
#define commit_dcache __dcache_writeback_all */
void discard_dcache_range(const void *base, unsigned int size);
/* Discards the entire ICache, and commit+discards the entire DCache */
void commit_discard_idcache(void);
#endif /* __MMU_MIPS_INCLUDE_H */ #endif /* __MMU_MIPS_INCLUDE_H */