MIPS: Add cases for CPU_QEMU_GENERIC
Add a CPU_QEMU_GENERIC case to various switch statements. Signed-off-by: Leonid Yegoshin <Leonid.Yegoshin@imgtec.com> Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
This commit is contained in:
parent
aca5721e95
commit
4695089f03
@ -54,6 +54,13 @@ static inline int __pure __get_cpu_type(const int cpu_type)
|
|||||||
case CPU_M5150:
|
case CPU_M5150:
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SYS_HAS_CPU_MIPS32_R2) || \
|
||||||
|
defined(CONFIG_SYS_HAS_CPU_MIPS32_R6) || \
|
||||||
|
defined(CONFIG_SYS_HAS_CPU_MIPS64_R2) || \
|
||||||
|
defined(CONFIG_SYS_HAS_CPU_MIPS64_R6)
|
||||||
|
case CPU_QEMU_GENERIC:
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_SYS_HAS_CPU_MIPS64_R1
|
#ifdef CONFIG_SYS_HAS_CPU_MIPS64_R1
|
||||||
case CPU_5KC:
|
case CPU_5KC:
|
||||||
case CPU_5KE:
|
case CPU_5KE:
|
||||||
|
@ -186,6 +186,7 @@ void __init check_wait(void)
|
|||||||
case CPU_PROAPTIV:
|
case CPU_PROAPTIV:
|
||||||
case CPU_P5600:
|
case CPU_P5600:
|
||||||
case CPU_M5150:
|
case CPU_M5150:
|
||||||
|
case CPU_QEMU_GENERIC:
|
||||||
cpu_wait = r4k_wait;
|
cpu_wait = r4k_wait;
|
||||||
if (read_c0_config7() & MIPS_CONF7_WII)
|
if (read_c0_config7() & MIPS_CONF7_WII)
|
||||||
cpu_wait = r4k_wait_irqoff;
|
cpu_wait = r4k_wait_irqoff;
|
||||||
|
@ -208,6 +208,7 @@ void spram_config(void)
|
|||||||
case CPU_INTERAPTIV:
|
case CPU_INTERAPTIV:
|
||||||
case CPU_PROAPTIV:
|
case CPU_PROAPTIV:
|
||||||
case CPU_P5600:
|
case CPU_P5600:
|
||||||
|
case CPU_QEMU_GENERIC:
|
||||||
config0 = read_c0_config();
|
config0 = read_c0_config();
|
||||||
/* FIXME: addresses are Malta specific */
|
/* FIXME: addresses are Malta specific */
|
||||||
if (config0 & (1<<24)) {
|
if (config0 & (1<<24)) {
|
||||||
|
@ -1559,6 +1559,7 @@ static inline void parity_protection_init(void)
|
|||||||
case CPU_INTERAPTIV:
|
case CPU_INTERAPTIV:
|
||||||
case CPU_PROAPTIV:
|
case CPU_PROAPTIV:
|
||||||
case CPU_P5600:
|
case CPU_P5600:
|
||||||
|
case CPU_QEMU_GENERIC:
|
||||||
{
|
{
|
||||||
#define ERRCTL_PE 0x80000000
|
#define ERRCTL_PE 0x80000000
|
||||||
#define ERRCTL_L2P 0x00800000
|
#define ERRCTL_L2P 0x00800000
|
||||||
|
@ -1255,6 +1255,7 @@ static void probe_pcache(void)
|
|||||||
case CPU_P5600:
|
case CPU_P5600:
|
||||||
case CPU_PROAPTIV:
|
case CPU_PROAPTIV:
|
||||||
case CPU_M5150:
|
case CPU_M5150:
|
||||||
|
case CPU_QEMU_GENERIC:
|
||||||
if (!(read_c0_config7() & MIPS_CONF7_IAR) &&
|
if (!(read_c0_config7() & MIPS_CONF7_IAR) &&
|
||||||
(c->icache.waysize > PAGE_SIZE))
|
(c->icache.waysize > PAGE_SIZE))
|
||||||
c->icache.flags |= MIPS_CACHE_ALIASES;
|
c->icache.flags |= MIPS_CACHE_ALIASES;
|
||||||
|
@ -81,6 +81,7 @@ static inline int mips_sc_is_activated(struct cpuinfo_mips *c)
|
|||||||
case CPU_PROAPTIV:
|
case CPU_PROAPTIV:
|
||||||
case CPU_P5600:
|
case CPU_P5600:
|
||||||
case CPU_BMIPS5000:
|
case CPU_BMIPS5000:
|
||||||
|
case CPU_QEMU_GENERIC:
|
||||||
if (config2 & (1 << 12))
|
if (config2 & (1 << 12))
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -514,6 +514,7 @@ static void build_tlb_write_entry(u32 **p, struct uasm_label **l,
|
|||||||
case CPU_PROAPTIV:
|
case CPU_PROAPTIV:
|
||||||
case CPU_P5600:
|
case CPU_P5600:
|
||||||
case CPU_M5150:
|
case CPU_M5150:
|
||||||
|
case CPU_QEMU_GENERIC:
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user