summaryrefslogtreecommitdiff
path: root/sys/arch/i386/stand/libsa/memprobe.c
blob: b0b96b080a9f8bc8c3faa38cb0aaec0ab623fe9f (plain)
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
/*	$OpenBSD: memprobe.c,v 1.17 1997/10/20 14:47:42 mickey Exp $	*/

/*
 * Copyright (c) 1997 Tobias Weingartner
 * All rights reserved.
 *
 * 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.
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *	This product includes software developed by Tobias Weingartner.
 * 4. The name of the author may not be used to endorse or promote products
 *    derived from this software without specific prior written permission.
 *
 * 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 REGENTS OR CONTRIBUTORS 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.
 *
 */

#include <sys/param.h>
#include <machine/biosvar.h>
#include "libsa.h"

static int addrprobe __P((u_int));
u_int cnvmem, extmem;		/* XXX - remove */
bios_memmap_t *memory_map;

struct E820_desc_t {
	u_int32_t addr_lo;
	u_int32_t addr_hi;
	u_int32_t size_lo;
	u_int32_t size_hi;
	u_int32_t type;
} __attribute__ ((packed));
static struct E820_desc_t Desc;


#define E820_MAX_MAPENT	10

/* BIOS int 15, AX=E820
 *
 * This is the "prefered" method.
 */
bios_memmap_t *
bios_E820()
{
	static bios_memmap_t bm[E820_MAX_MAPENT];		/* This is easier */
	int E820Present = 0;
	int eax = 0, count = 0;
	volatile int ebx = 0;

	do {
		BIOS_regs.biosr_es = ((unsigned)(&Desc) >> 4);
		__asm __volatile(
			"movl %2, %%ebx\n\t"
			"movl $0x534D4150, %%edx\n\t"
			DOINT(0x15) "\n\t"
			"movl %%eax, %%edx\n\t"
			"setc %b0\n\t"
			"movzbl %b0, %0\n\t"
			"cmpl $0x534D4150, %%edx\n\t"
			"je 1f\n\t"
			"incl %%eax\n\t"
			"1:\n\t"
			: "=a" (eax)
			: "0" (0xE820),
			  "1" (ebx),
			  "c" (sizeof(Desc)),
			  "D" ((unsigned)(&Desc) & 0xF)
			: "%eax", "%ebx", "%ecx", "%edx", "%esi", "%edi", "cc", "memory");
			ebx = BIOS_regs.biosr_bx;

			if(eax) break;		/* Not present, or done */

			/* We are ignoring the upper 32 bits in the 64 bit
			 * integer returned.  If anyone has a PC where the
			 * upper 32 bits are not zeros, *please* tell me! ;)
			 *
			 * NOTE: the BIOS_MAP_* numbers are the same, save for
			 * the "zero" case, which we remap to reserved.
			 */
			bm[count].addr = Desc.addr_lo;
			bm[count].size = Desc.size_lo;
			bm[count].type = (Desc.type)?Desc.type:BIOS_MAP_RES;

			E820Present = 1;
	} while((++count < E820_MAX_MAPENT) && (ebx != 0));	/* Do not re-oder! */

	if(E820Present){
		printf("int 0x15 [E820]\n");
		bm[count].type = BIOS_MAP_END;
		return(bm);
	}

	return(NULL);
}


/* BIOS int 15, AX=E801
 *
 * Only used if int 15, AX=E820 does not work.
 * This should work for more than 64MB.
 */
bios_memmap_t *
bios_E801()
{
	static bios_memmap_t bm[3];
	int eax, edx = 0;

	/* Test for 0xE801 */
	__asm __volatile(
		DOINT(0x15) "\n\t"
		"setc %b0\n\t"
		"movzbl %b0, %0\n\t"
		: "=a" (eax)
		: "a" (0xE801)
		);

	/* Make a memory map from info */
	if(!eax){
		printf("int 0x15 [E801], ");

		__asm __volatile(
			DOINT(0x15) "\n\t"
			: "=a" (eax), "=d" (edx)
			: "a" (0xE801)
			);

		/* Make sure only valid bits */
		eax &= 0xFFFF;
		edx &= 0xFFFF;

		/* Fill out BIOS map */
		bm[0].addr = (1024 * 1024);			/* 1MB */
		bm[0].size = eax * 1024;
		bm[0].type = BIOS_MAP_FREE;

		bm[1].addr = (1024 * 1024) * 16;	/* 16MB */
		bm[1].size = (edx * 1024) * 64;
		bm[1].type = BIOS_MAP_FREE;

		bm[2].type = BIOS_MAP_END;

		return(bm);
	}

	return(NULL);
}


/* BIOS int 15, AX=8800
 *
 * Only used if int 15, AX=E801 does not work.
 * Machines with this are restricted to 64MB.
 */
bios_memmap_t *
bios_8800()
{
	static bios_memmap_t bm[2];
	int eax, mem;

	__asm __volatile(
		DOINT(0x15) "\n\t"
		"movl %%eax, %%ecx\n\t"
		"setc %b0\n\t"
		"movzbl %b0, %0\n\t"
		: "=a" (eax), "=c" (mem)
		: "a" (0x8800)
		);

	if(eax) return(NULL);

	printf("int 0x15 [8800], ");

	/* Fill out a BIOS_MAP */
	bm[0].addr = 1024*1024;		/* 1MB */
	bm[0].size = (mem & 0xFFFF) * 1024;
	bm[0].type = BIOS_MAP_FREE;

	bm[1].type = BIOS_MAP_END;

	return(bm);
}


/* BIOS int 0x12 Get Conventional Memory
 *
 * Only used if int 15, AX=E820 does not work.
 */
bios_memmap_t *
bios_int12()
{
	static bios_memmap_t bm[2];
	int mem;

	printf("int 0x12\n");

	__asm __volatile(DOINT(0x12) : "=a" (mem)
			 :: "%ecx", "%edx", "cc");
	mem &= 0xffff;

	/* Fill out a BIOS_MAP */
	bm[0].addr = 0;
	bm[0].size = mem * 1024;
	bm[0].type = BIOS_MAP_FREE;

	bm[1].type = BIOS_MAP_END;

	return(bm);
}


/* addrprobe(kloc): Probe memory at address kloc * 1024.
 *
 * This is a hack, but it seems to work ok.  Maybe this is
 * the *real* way that you are supposed to do probing???
 *
 * Modify the original a bit.  We write everything first, and
 * then test for the values.  This should croak on machines that
 * return values just written on non-existent memory...
 *
 * BTW: These machines are pretty broken IMHO.
 *
 * XXX - Does not detect aliased memory.
 */
static int
addrprobe(kloc)
	u_int kloc;
{
	__volatile u_int *loc;
	static const u_int pat[] = {
		0x00000000, 0xFFFFFFFF,
		0x01010101, 0x10101010,
		0x55555555, 0xCCCCCCCC
	};
	register u_int i, ret = 0;
	u_int save[NENTS(pat)];

	/* Get location */
	loc = (int *)(kloc * 1024);

	save[0] = *loc;
	/* Probe address */
	for(i = 0; i < NENTS(pat); i++){
		*loc = pat[i];
		if(*loc != pat[i])
			ret++;
	}
	*loc = save[0];

	if (!ret) {
		/* Write address */
		for(i = 0; i < NENTS(pat); i++) {
			save[i] = loc[i];
			loc[i] = pat[i];
		}

		/* Read address */
		for(i = 0; i < NENTS(pat); i++) {
			if(loc[i] != pat[i])
				ret++;
			loc[i] = save[i];
		}
	}

	return ret;
}


/* Probe for all extended memory.
 *
 * This is only used as a last resort.  If we resort to this
 * routine, we are getting pretty desparate.  Hopefully nobody
 * has to rely on this after all the work above.
 *
 * XXX - Does not detect aliases memory.
 * XXX - Could be destructive, as it does write.
 */
bios_memmap_t *
badprobe()
{
	static bios_memmap_t bm[2];
	int ram;

	printf("Physical, ");
	/* probe extended memory
	 *
	 * There is no need to do this in assembly language.  This is
	 * much easier to debug in C anyways.
	 */
	for(ram = 1024; ram < 512*1024; ram += 4)
		if(addrprobe(ram))
			break;

	bm[0].addr = 1024 * 1024;
	bm[0].size = (ram - 1024) * 1024;
	bm[0].type = BIOS_MAP_FREE;

	bm[1].type = BIOS_MAP_END;

	return(bm);
}


int
count(map)
	bios_memmap_t *map;
{
	int i;

	for(i = 0; map[i].type != BIOS_MAP_END; i++) ;

	return(i);
}


bios_memmap_t *
combine(a, b)
	bios_memmap_t *a, *b;
{
	bios_memmap_t *res;
	int size, i;

	/* Sanity checks */
	if(!b) return(a);
	if(!a) return(b);

	size = (count(a) + count(b) + 1) * sizeof(bios_memmap_t);
	res = alloc(size);

	/* Again */
	if(!res) return(NULL);		/* We are in deep doggie-doo */

	for(i = 0; a[i].type != BIOS_MAP_END; i++)
		res[i] = a[i];
	size = count(a);
	for(; b[i - size].type != BIOS_MAP_END; i++)
		res[i] = b[i - size];

	res[i].type = BIOS_MAP_END;
	return(res);
}


void
memprobe()
{
	bios_memmap_t *tm, *em, *bm;	/* total, extended, base */
	int count, total = 0;

	printf("Probing memory: ");
	tm = em = bm = NULL;

	tm = bios_E820();
	if(!tm){
		em = bios_E801();
		if(!em) em = bios_8800();
		if(!em) em = badprobe();
		bm = bios_int12();

		tm = combine(bm, em);
	}

	/* Register in global var */
	memory_map = tm;
	printf("mem0:");

	/* Get total free memory */
	for(count = 0; tm[count].type != BIOS_MAP_END; count++) {
		if(tm[count].type == BIOS_MAP_FREE) {
			total += tm[count].size;

			printf(" %luKB", (long)tm[count].size/1024);
		}
	}
	printf("\n");

	/* XXX - Compatibility, remove later */
	cnvmem = extmem = 0;
	for(count = 0; tm[count].type != BIOS_MAP_END; count++) {
		if((tm[count].addr < 0xFFFFF) && (tm[count].type == BIOS_MAP_FREE)){

			cnvmem += tm[count].size; 
		}
		if((tm[count].addr > 0xFFFFF) && (tm[count].type == BIOS_MAP_FREE)){

			extmem += tm[count].size; 
		}
	}
	cnvmem /= 1024;
	extmem /= 1024;
}