diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2009-02-19 11:12:43 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2009-02-19 11:12:43 +0000 |
commit | db311e720634bfbdcce26aa5961106fba0bf2b09 (patch) | |
tree | 6a9680a8dad380630c42ae550b08573a60f53c75 /sys | |
parent | 96b5d0f2da3cc448e7372865f40ac34b20f3e645 (diff) |
Make prom_sun4v_soft_state_supported() call the right client interface.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sparc64/sparc64/autoconf.c | 60 | ||||
-rw-r--r-- | sys/arch/sparc64/sparc64/ofw_machdep.c | 4 |
2 files changed, 61 insertions, 3 deletions
diff --git a/sys/arch/sparc64/sparc64/autoconf.c b/sys/arch/sparc64/sparc64/autoconf.c index 45445658515..4d4ce89366f 100644 --- a/sys/arch/sparc64/sparc64/autoconf.c +++ b/sys/arch/sparc64/sparc64/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.100 2009/02/15 15:03:58 kettenis Exp $ */ +/* $OpenBSD: autoconf.c,v 1.101 2009/02/19 11:12:42 kettenis Exp $ */ /* $NetBSD: autoconf.c,v 1.51 2001/07/24 19:32:11 eeh Exp $ */ /* @@ -143,6 +143,14 @@ struct intrmap intrmap[] = { { NULL, 0 } }; +#ifdef SUN4V +void sun4v_soft_state_init(void); +void sun4v_set_soft_state(int, const char *); + +#define __align32 __attribute__((__aligned__(32))) +char sun4v_soft_state_booting[] __align32 = "OpenBSD booting"; +char sun4v_soft_state_running[] __align32 = "OpenBSD running"; +#endif #ifdef DEBUG #define ACDB_BOOTDEV 0x1 @@ -385,6 +393,13 @@ bootstrap(nctx) ncpus = get_ncpus(); pmap_bootstrap(KERNBASE, (u_long)&end, nctx, ncpus); + +#ifdef SUN4V + if (CPU_ISSUN4V) { + sun4v_soft_state_init(); + sun4v_set_soft_state(SIS_TRANSITION, sun4v_soft_state_booting); + } +#endif } void @@ -626,7 +641,50 @@ cpu_configure() (void)spl0(); cold = 0; + +#ifdef SUN4V + if (CPU_ISSUN4V) + sun4v_set_soft_state(SIS_NORMAL, sun4v_soft_state_running); +#endif +} + +#ifdef SUN4V + +#define HSVC_GROUP_SOFT_STATE 0x003 + +int sun4v_soft_state_initialized = 0; + +void +sun4v_soft_state_init(void) +{ + uint64_t minor; + + if (prom_set_sun4v_api_version(HSVC_GROUP_SOFT_STATE, 1, 0, &minor)) + return; + + prom_printf("minor %lld\r\n", minor); + + prom_sun4v_soft_state_supported(); + sun4v_soft_state_initialized = 1; +} + +void +sun4v_set_soft_state(int state, const char *desc) +{ + paddr_t pa; + int err; + + if (!sun4v_soft_state_initialized) + return; + + if (!pmap_extract(pmap_kernel(), (vaddr_t)desc, &pa)) + panic("sun4v_set_soft_state: pmap_extract failed\n"); + + err = hv_soft_state_set(state, pa); + if (err != H_EOK) + printf("soft_state_set: %d\n", err); } +#endif void diskconf(void) diff --git a/sys/arch/sparc64/sparc64/ofw_machdep.c b/sys/arch/sparc64/sparc64/ofw_machdep.c index d9fe8270e64..eb99f23d809 100644 --- a/sys/arch/sparc64/sparc64/ofw_machdep.c +++ b/sys/arch/sparc64/sparc64/ofw_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ofw_machdep.c,v 1.30 2008/12/30 00:54:24 kettenis Exp $ */ +/* $OpenBSD: ofw_machdep.c,v 1.31 2009/02/19 11:12:42 kettenis Exp $ */ /* $NetBSD: ofw_machdep.c,v 1.16 2001/07/20 00:07:14 eeh Exp $ */ /* @@ -822,7 +822,7 @@ prom_sun4v_soft_state_supported(void) cell_t nreturns; } args; - args.name = ADR2CELL("SUNW,set-sun4v-api-version"); + args.name = ADR2CELL("SUNW,soft-state-supported"); args.nargs = 0; args.nreturns = 0; |