summaryrefslogtreecommitdiffstats
path: root/arch/x86/lib/memory16.S
blob: 76ee72b56cda983d66a6679ffe632a6c291e97d0 (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
/*
 * Copyright (C) 2009 Juergen Beisert, Pengutronix
 *
 * This code was inspired by the GRUB2 project.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of
 * the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 *
 */

/**
 * @file
 * @brief Query the memory layout information from the BIOS
 *
 * Note: This function is running in flat and real mode. Due to some
 * other restrictions it must running from an address space below 0x10000
 */

/**
 * @fn unsigned short bios_get_memsize(void)
 * @brief Does a BIOS call "INT 15H, AH=88H" to get extended memory size
 * @return Extended memory size in KB
 *
 * @note This call is limited to 64 MiB. So, if the system provides more than
 * 64 MiB of memory, still 64 MiB are reported.
 *
 */


	.section .boot.text.bios_get_memsize, "ax"
	.code32
	.globl bios_get_memsize
	.type bios_get_memsize, @function

	.extern prot_to_real

bios_get_memsize:

	pushl %ebp

	call prot_to_real	/* enter real mode */
	.code16

	movb $0x88, %ah
	int $0x15

	movw %ax, %dx

	DATA32	call real_to_prot

	.code32

	movw %dx, %ax

	popl %ebp
	ret

	.size bios_get_memsize, .-bios_get_memsize