blob: 5054c2ddd1a03471b4423e7c9eb1719dca667901 [file] [log] [blame]
H. Peter Anvin449f2ab2007-07-11 12:18:50 -07001/* -*- linux-c -*- ------------------------------------------------------- *
2 *
3 * Copyright (C) 1991, 1992 Linus Torvalds
4 * Copyright 2007 rPath, Inc. - All Rights Reserved
H. Peter Anvinc549e712009-03-28 13:53:26 -07005 * Copyright 2009 Intel Corporation; author H. Peter Anvin
H. Peter Anvin449f2ab2007-07-11 12:18:50 -07006 *
7 * This file is part of the Linux kernel, and is made available under
8 * the terms of the GNU General Public License version 2.
9 *
10 * ----------------------------------------------------------------------- */
11
12/*
H. Peter Anvin449f2ab2007-07-11 12:18:50 -070013 * Memory detection code
14 */
15
16#include "boot.h"
17
18#define SMAP 0x534d4150 /* ASCII "SMAP" */
19
H. Peter Anvinc549e712009-03-28 13:53:26 -070020struct e820_ext_entry {
21 struct e820entry std;
22 u32 ext_flags;
23} __attribute__((packed));
24
H. Peter Anvin449f2ab2007-07-11 12:18:50 -070025static int detect_memory_e820(void)
26{
H. Peter Anvin2efa33f2007-09-26 14:11:43 -070027 int count = 0;
H. Peter Anvin449f2ab2007-07-11 12:18:50 -070028 u32 next = 0;
H. Peter Anvin32ec7fd2009-03-28 13:53:26 -070029 u32 size, id, edi;
H. Peter Anvin449f2ab2007-07-11 12:18:50 -070030 u8 err;
31 struct e820entry *desc = boot_params.e820_map;
H. Peter Anvinc549e712009-03-28 13:53:26 -070032 static struct e820_ext_entry buf; /* static so it is zeroed */
H. Peter Anvin449f2ab2007-07-11 12:18:50 -070033
H. Peter Anvincd670592009-04-01 11:35:00 -070034 /*
35 * Set this here so that if the BIOS doesn't change this field
36 * but still doesn't change %ecx, we're still okay...
37 */
38 buf.ext_flags = 1;
39
H. Peter Anvin449f2ab2007-07-11 12:18:50 -070040 do {
H. Peter Anvinc549e712009-03-28 13:53:26 -070041 size = sizeof buf;
H. Peter Anvin4ee5b102007-09-27 17:17:12 -070042
Michael K. Johnson01522df2009-03-27 13:14:41 -040043 /* Important: %edx and %esi are clobbered by some BIOSes,
44 so they must be either used for the error output
H. Peter Anvin32ec7fd2009-03-28 13:53:26 -070045 or explicitly marked clobbered. Given that, assume there
46 is something out there clobbering %ebp and %edi, too. */
47 asm("pushl %%ebp; int $0x15; popl %%ebp; setc %0"
H. Peter Anvin4ee5b102007-09-27 17:17:12 -070048 : "=d" (err), "+b" (next), "=a" (id), "+c" (size),
H. Peter Anvinc549e712009-03-28 13:53:26 -070049 "=D" (edi), "+m" (buf)
50 : "D" (&buf), "d" (SMAP), "a" (0xe820)
Michael K. Johnson01522df2009-03-27 13:14:41 -040051 : "esi");
H. Peter Anvin449f2ab2007-07-11 12:18:50 -070052
H. Peter Anvin829157b2008-02-13 11:16:46 -080053 /* BIOSes which terminate the chain with CF = 1 as opposed
54 to %ebx = 0 don't always report the SMAP signature on
55 the final, failing, probe. */
56 if (err)
57 break;
58
H. Peter Anvin2efa33f2007-09-26 14:11:43 -070059 /* Some BIOSes stop returning SMAP in the middle of
60 the search loop. We don't know exactly how the BIOS
61 screwed up the map at that point, we might have a
62 partial map, the full map, or complete garbage, so
63 just return failure. */
64 if (id != SMAP) {
65 count = 0;
66 break;
67 }
68
H. Peter Anvinc549e712009-03-28 13:53:26 -070069 /* ACPI 3.0 added the extended flags support. If bit 0
70 in the extended flags is zero, we're supposed to simply
71 ignore the entry -- a backwards incompatible change! */
72 if (size > 20 && !(buf.ext_flags & 1))
73 continue;
74
75 *desc++ = buf.std;
H. Peter Anvin2efa33f2007-09-26 14:11:43 -070076 count++;
Paul Jacksonc3965bd2008-05-14 08:15:34 -070077 } while (next && count < ARRAY_SIZE(boot_params.e820_map));
H. Peter Anvin449f2ab2007-07-11 12:18:50 -070078
H. Peter Anvin2efa33f2007-09-26 14:11:43 -070079 return boot_params.e820_entries = count;
H. Peter Anvin449f2ab2007-07-11 12:18:50 -070080}
81
82static int detect_memory_e801(void)
83{
84 u16 ax, bx, cx, dx;
85 u8 err;
86
87 bx = cx = dx = 0;
88 ax = 0xe801;
89 asm("stc; int $0x15; setc %0"
90 : "=m" (err), "+a" (ax), "+b" (bx), "+c" (cx), "+d" (dx));
91
92 if (err)
93 return -1;
94
95 /* Do we really need to do this? */
96 if (cx || dx) {
97 ax = cx;
98 bx = dx;
99 }
100
101 if (ax > 15*1024)
102 return -1; /* Bogus! */
103
104 /* This ignores memory above 16MB if we have a memory hole
105 there. If someone actually finds a machine with a memory
106 hole at 16MB and no support for 0E820h they should probably
107 generate a fake e820 map. */
108 boot_params.alt_mem_k = (ax == 15*1024) ? (dx << 6)+ax : ax;
109
110 return 0;
111}
112
113static int detect_memory_88(void)
114{
115 u16 ax;
116 u8 err;
117
118 ax = 0x8800;
119 asm("stc; int $0x15; setc %0" : "=bcdm" (err), "+a" (ax));
120
121 boot_params.screen_info.ext_mem_k = ax;
122
123 return -err;
124}
125
126int detect_memory(void)
127{
H. Peter Anvin2efa33f2007-09-26 14:11:43 -0700128 int err = -1;
129
H. Peter Anvin449f2ab2007-07-11 12:18:50 -0700130 if (detect_memory_e820() > 0)
H. Peter Anvin2efa33f2007-09-26 14:11:43 -0700131 err = 0;
H. Peter Anvin449f2ab2007-07-11 12:18:50 -0700132
133 if (!detect_memory_e801())
H. Peter Anvin2efa33f2007-09-26 14:11:43 -0700134 err = 0;
H. Peter Anvin449f2ab2007-07-11 12:18:50 -0700135
H. Peter Anvin2efa33f2007-09-26 14:11:43 -0700136 if (!detect_memory_88())
137 err = 0;
138
139 return err;
H. Peter Anvin449f2ab2007-07-11 12:18:50 -0700140}