stand_user.c revision 1.2 1 1.2 drochner /* $NetBSD: stand_user.c,v 1.2 1998/11/22 15:44:03 drochner Exp $ */
2 1.1 drochner
3 1.1 drochner /*
4 1.1 drochner * Copyright (c) 1998
5 1.1 drochner * Matthias Drochner. All rights reserved.
6 1.1 drochner *
7 1.1 drochner * Redistribution and use in source and binary forms, with or without
8 1.1 drochner * modification, are permitted provided that the following conditions
9 1.1 drochner * are met:
10 1.1 drochner * 1. Redistributions of source code must retain the above copyright
11 1.1 drochner * notice, this list of conditions and the following disclaimer.
12 1.1 drochner * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 drochner * notice, this list of conditions and the following disclaimer in the
14 1.1 drochner * documentation and/or other materials provided with the distribution.
15 1.1 drochner * 3. All advertising materials mentioning features or use of this software
16 1.1 drochner * must display the following acknowledgement:
17 1.1 drochner * This product includes software developed for the NetBSD Project
18 1.1 drochner * by Matthias Drochner.
19 1.1 drochner * 4. The name of the author may not be used to endorse or promote products
20 1.1 drochner * derived from this software without specific prior written permission.
21 1.1 drochner *
22 1.1 drochner * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 1.1 drochner * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 1.1 drochner * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 1.1 drochner * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 1.1 drochner * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 1.1 drochner * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 1.1 drochner * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 1.1 drochner * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 1.1 drochner * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 1.1 drochner * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 1.1 drochner *
33 1.1 drochner */
34 1.1 drochner
35 1.1 drochner #include <lib/libsa/stand.h>
36 1.1 drochner
37 1.1 drochner #include "sanamespace.h"
38 1.1 drochner
39 1.1 drochner #include <stdio.h>
40 1.1 drochner #include <unistd.h>
41 1.1 drochner #include <stdlib.h>
42 1.1 drochner #include <stdarg.h>
43 1.1 drochner #include <sys/time.h>
44 1.1 drochner #include <fcntl.h>
45 1.1 drochner #include <sys/mman.h>
46 1.1 drochner #include <machine/sysarch.h>
47 1.1 drochner #include <err.h>
48 1.1 drochner
49 1.1 drochner /*
50 1.1 drochner * Harness for test of standalone code in user space.
51 1.1 drochner * XXX Requires silly namespace games.
52 1.1 drochner */
53 1.1 drochner
54 1.1 drochner #ifndef HEAPSIZE
55 1.1 drochner #define HEAPSIZE (128*1024)
56 1.1 drochner #endif
57 1.1 drochner
58 1.1 drochner int samain __P((void));
59 1.1 drochner
60 1.1 drochner int
61 1.1 drochner main()
62 1.1 drochner {
63 1.1 drochner char *h = malloc(HEAPSIZE);
64 1.1 drochner setheap(h, h + HEAPSIZE);
65 1.1 drochner
66 1.1 drochner return (samain());
67 1.1 drochner }
68 1.1 drochner
69 1.1 drochner void
70 1.1 drochner _rtt()
71 1.1 drochner {
72 1.1 drochner warnx("_rtt called");
73 1.1 drochner _exit(1);
74 1.1 drochner }
75 1.1 drochner
76 1.1 drochner int
77 1.1 drochner getsecs()
78 1.1 drochner {
79 1.1 drochner struct timeval t;
80 1.1 drochner gettimeofday(&t, 0);
81 1.1 drochner return (t.tv_sec);
82 1.1 drochner }
83 1.1 drochner
84 1.1 drochner void
85 1.1 drochner delay(t)
86 1.1 drochner int t;
87 1.1 drochner {
88 1.1 drochner struct timeval to;
89 1.1 drochner to.tv_sec = 0;
90 1.1 drochner to.tv_usec = t;
91 1.1 drochner select(0, 0, 0, 0, &to);
92 1.1 drochner }
93 1.1 drochner
94 1.1 drochner /* make output appear unbuffered */
95 1.1 drochner void
96 1.1 drochner saputchar(c)
97 1.1 drochner int c;
98 1.1 drochner {
99 1.1 drochner putchar(c);
100 1.1 drochner fflush(stdout);
101 1.1 drochner }
102 1.1 drochner
103 1.1 drochner /*
104 1.1 drochner * some functions to get access to the hardware
105 1.1 drochner */
106 1.1 drochner
107 1.1 drochner static int memfd, memcnt;
108 1.1 drochner
109 1.1 drochner caddr_t
110 1.1 drochner mapmem(offset, len)
111 1.1 drochner int offset, len;
112 1.1 drochner {
113 1.1 drochner caddr_t base;
114 1.1 drochner
115 1.1 drochner if (memcnt == 0)
116 1.1 drochner memfd = open("/dev/mem", O_RDWR, 0);
117 1.1 drochner if (memfd < 0) {
118 1.1 drochner warn("open /dev/mem");
119 1.1 drochner return (0);
120 1.1 drochner }
121 1.1 drochner base = mmap(0, len, PROT_READ | PROT_WRITE, MAP_SHARED,
122 1.1 drochner memfd, offset);
123 1.1 drochner if (base == (caddr_t)-1) {
124 1.1 drochner warn("mmap %x-%x", offset, offset + len - 1);
125 1.1 drochner return (0);
126 1.1 drochner }
127 1.1 drochner memcnt++;
128 1.1 drochner return (base);
129 1.1 drochner }
130 1.1 drochner
131 1.1 drochner void
132 1.1 drochner unmapmem(addr, len)
133 1.1 drochner caddr_t addr;
134 1.1 drochner int len;
135 1.1 drochner {
136 1.1 drochner munmap(addr, len);
137 1.1 drochner memcnt--;
138 1.1 drochner if (memcnt == 0)
139 1.1 drochner close(memfd);
140 1.1 drochner }
141 1.1 drochner
142 1.1 drochner int
143 1.1 drochner mapio()
144 1.1 drochner {
145 1.1 drochner int res;
146 1.1 drochner
147 1.1 drochner res = i386_iopl(1);
148 1.1 drochner if (res)
149 1.1 drochner warn("i386_iopl");
150 1.1 drochner return (res);
151 1.1 drochner }
152 1.2 drochner
153 1.2 drochner int ourseg = 12345;
154