1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
/* $OpenBSD: prom.h,v 1.4 2010/12/23 20:05:08 miod Exp $ */
/*
* Copyright (c) 2006, Miodrag Vallat.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef __AVIION_PROM_H__
#define __AVIION_PROM_H__
#include <sys/cdefs.h>
/* SCM trap vector */
#define SCM_VECTOR 496
/* system calls */
#define SCM_CHAR 0x00
#define SCM_OCHAR 0x20
#define SCM_PTLINE 0x21
#define SCM_OCRLF 0x26
#define SCM_HALT 0x63
#define SCM_STDIO 0x70
#define SCM_JPSTART 0x100
#define SCM_REBOOT 0x101
#define SCM_CPUID 0x102
#define SCM_MSIZE 0x103
#define SCM_REVNUM 0x104
#define SCM_HOSTID 0x107
#define SCM_INVALID 0x112
#define SCM_COMMID 0x114
/* 88204 PROMs only system calls */
#define SCM_SYSID 0x31
#define SCM_CPUCONFIG 0x107
/* SCM_JPSTART return values */
#define JPSTART_OK 0
#define JPSTART_NO_JP 1
#define JPSTART_SINGLE_JP 2
#define JPSTART_NOT_IDLE 3
#define JPSTART_NO_ANSWER 4
struct scm_cpuconfig {
u_int32_t version;
#define SCM_CPUCONFIG_VERSION 0
u_int32_t cpucount; /* # of CPUs */
u_int16_t igang, dgang; /* # of CMMUs per CPU */
u_int32_t isplit, dsplit; /* CMMU split bits */
u_int32_t :32;
};
int scm_cpuconfig(struct scm_cpuconfig *);
u_int scm_cpuid(void);
int scm_getc(void);
void scm_getenaddr(u_char *);
__dead void scm_halt(void);
u_int scm_jpstart(cpuid_t, vaddr_t);
u_int scm_memsize(int);
void scm_printf(const char *);
u_int scm_promver(void);
void scm_putc(int);
void scm_putcrlf(void);
__dead void scm_reboot(const char *);
u_int scm_sysid(void);
#endif /* __AVIION_PROM_H__ */
|