#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ka410.c,v 1.34 2017/05/22 16:46:15 ragge Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/cpu.h>
#include <sys/device.h>
#include <sys/kernel.h>
#include <machine/sid.h>
#include <machine/nexus.h>
#include <machine/ka410.h>
#include <machine/ka420.h>
#include <machine/clock.h>
#include <machine/vsbus.h>
static void ka410_conf(void);
static void ka410_memerr(void);
static int ka410_mchk(void *);
static void ka410_halt(void);
static void ka410_reboot(int);
static void ka41_cache_enable(void);
static void ka410_clrf(void);
static const char * const ka410_devs[] = { "cpu", "vsbus", NULL };
static void * l2cache;
static long *cacr;
const struct cpu_dep ka410_calls = {
.cpu_mchk = ka410_mchk,
.cpu_memerr = ka410_memerr,
.cpu_conf = ka410_conf,
.cpu_gettime = chip_gettime,
.cpu_settime = chip_settime,
.cpu_vups = 1,
.cpu_scbsz = 2,
.cpu_halt = ka410_halt,
.cpu_reboot = ka410_reboot,
.cpu_clrf = ka410_clrf,
.cpu_devs = ka410_devs,
.cpu_flags = CPU_RAISEIPL,
};
void
ka410_conf(void)
{
struct cpu_info * const ci = curcpu();
struct vs_cpu *ka410_cpu;
ka410_cpu = (struct vs_cpu *)vax_map_physmem(VS_REGS, 1);
switch (vax_cputype) {
case VAX_TYP_UV2:
ka410_cpu->vc_410mser = 1;
ci->ci_cpustr = "KA410, UV2";
break;
case VAX_TYP_CVAX:
ka410_cpu->vc_vdcorg = 0;
ka410_cpu->vc_parctl = PARCTL_CPEN | PARCTL_DPEN ;
mtpr(KA420_CADR_S2E|KA420_CADR_S1E|KA420_CADR_ISE|KA420_CADR_DSE, PR_CADR);
if (vax_confdata & KA420_CFG_CACHPR) {
l2cache = (void *)vax_map_physmem(KA420_CH2_BASE,
(KA420_CH2_SIZE / VAX_NBPG));
cacr = (void *)vax_map_physmem(KA420_CACR, 1);
ka41_cache_enable();
ci->ci_cpustr =
"KA420, CVAX, 1KB L1 cache, 64KB L2 cache";
} else {
ci->ci_cpustr = "KA420, CVAX, 1KB L1 cache";
}
}
vax_unmap_physmem((vaddr_t)ka410_cpu, 1);
clk_adrshift = 1;
clk_tweak = 2;
clk_page = (short *)vax_map_physmem(KA420_WAT_BASE, 1);
}
void
ka41_cache_enable(void)
{
*cacr = KA420_CACR_TPE;
memset(l2cache, 0, KA420_CH2_SIZE);
*cacr = KA420_CACR_CEN;
}
void
ka410_memerr(void)
{
printf("Memory err!\n");
}
int
ka410_mchk(void *addr)
{
panic("Machine check");
return 0;
}
static void
ka410_halt(void)
{
__asm("movl $0xc, (%0)"::"r"((int)clk_page + 0x38));
__asm("halt");
}
static void
ka410_reboot(int arg)
{
__asm("movl $0xc, (%0)"::"r"((int)clk_page + 0x38));
__asm("halt");
}
static void
ka410_clrf(void)
{
volatile struct ka410_clock *clk = (volatile void *)clk_page;
clk->cpmbx = (clk->cpmbx & ~0x30);
}