Files
Linux_Drivers/u-boot-2021.10/arch/powerpc/cpu/mpc8xx/cache.c
sam.xiang f8fc109960 [uboot] create uboot from github:
repo: https://github.com/u-boot/u-boot
	commit: d80bb749fab53da72c4a0e09b8c2d2aaa3103c91

Change-Id: Ie6434426e1ec15bc08bb1832798e371f3fd5fb29
2023-03-10 20:30:57 +08:00

50 lines
820 B
C

// SPDX-License-Identifier: GPL-2.0+
/*
* (C) Copyright 2017
* Christophe Leroy, CS Systemes d'Information, christophe.leroy@c-s.fr
*/
#include <common.h>
#include <cpu_func.h>
#include <asm/processor.h>
#include <asm/ppc.h>
#include <asm/io.h>
#include <asm/mmu.h>
int icache_status(void)
{
return !!(mfspr(IC_CST) & IDC_ENABLED);
}
void icache_enable(void)
{
sync();
mtspr(IC_CST, IDC_INVALL);
mtspr(IC_CST, IDC_ENABLE);
}
void icache_disable(void)
{
sync();
mtspr(IC_CST, IDC_DISABLE);
}
int dcache_status(void)
{
return !!(mfspr(IC_CST) & IDC_ENABLED);
}
void dcache_enable(void)
{
mtspr(MD_CTR, MD_RESETVAL); /* Set cache mode with MMU off */
mtspr(DC_CST, IDC_INVALL);
mtspr(DC_CST, IDC_ENABLE);
}
void dcache_disable(void)
{
sync();
mtspr(DC_CST, IDC_DISABLE);
mtspr(DC_CST, IDC_INVALL);
}