H. Peter Anvin | 449f2ab | 2007-07-11 12:18:50 -0700 | [diff] [blame] | 1 | /* -*- linux-c -*- ------------------------------------------------------- * |
| 2 | * |
| 3 | * Copyright (C) 1991, 1992 Linus Torvalds |
| 4 | * Copyright 2007 rPath, Inc. - All Rights Reserved |
H. Peter Anvin | c549e71 | 2009-03-28 13:53:26 -0700 | [diff] [blame^] | 5 | * Copyright 2009 Intel Corporation; author H. Peter Anvin |
H. Peter Anvin | 449f2ab | 2007-07-11 12:18:50 -0700 | [diff] [blame] | 6 | * |
| 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 Anvin | 449f2ab | 2007-07-11 12:18:50 -0700 | [diff] [blame] | 13 | * Memory detection code |
| 14 | */ |
| 15 | |
| 16 | #include "boot.h" |
| 17 | |
| 18 | #define SMAP 0x534d4150 /* ASCII "SMAP" */ |
| 19 | |
H. Peter Anvin | c549e71 | 2009-03-28 13:53:26 -0700 | [diff] [blame^] | 20 | struct e820_ext_entry { |
| 21 | struct e820entry std; |
| 22 | u32 ext_flags; |
| 23 | } __attribute__((packed)); |
| 24 | |
H. Peter Anvin | 449f2ab | 2007-07-11 12:18:50 -0700 | [diff] [blame] | 25 | static int detect_memory_e820(void) |
| 26 | { |
H. Peter Anvin | 2efa33f | 2007-09-26 14:11:43 -0700 | [diff] [blame] | 27 | int count = 0; |
H. Peter Anvin | 449f2ab | 2007-07-11 12:18:50 -0700 | [diff] [blame] | 28 | u32 next = 0; |
H. Peter Anvin | 32ec7fd | 2009-03-28 13:53:26 -0700 | [diff] [blame] | 29 | u32 size, id, edi; |
H. Peter Anvin | 449f2ab | 2007-07-11 12:18:50 -0700 | [diff] [blame] | 30 | u8 err; |
| 31 | struct e820entry *desc = boot_params.e820_map; |
H. Peter Anvin | c549e71 | 2009-03-28 13:53:26 -0700 | [diff] [blame^] | 32 | static struct e820_ext_entry buf; /* static so it is zeroed */ |
H. Peter Anvin | 449f2ab | 2007-07-11 12:18:50 -0700 | [diff] [blame] | 33 | |
| 34 | do { |
H. Peter Anvin | c549e71 | 2009-03-28 13:53:26 -0700 | [diff] [blame^] | 35 | size = sizeof buf; |
H. Peter Anvin | 4ee5b10 | 2007-09-27 17:17:12 -0700 | [diff] [blame] | 36 | |
Michael K. Johnson | 01522df | 2009-03-27 13:14:41 -0400 | [diff] [blame] | 37 | /* Important: %edx and %esi are clobbered by some BIOSes, |
| 38 | so they must be either used for the error output |
H. Peter Anvin | 32ec7fd | 2009-03-28 13:53:26 -0700 | [diff] [blame] | 39 | or explicitly marked clobbered. Given that, assume there |
| 40 | is something out there clobbering %ebp and %edi, too. */ |
| 41 | asm("pushl %%ebp; int $0x15; popl %%ebp; setc %0" |
H. Peter Anvin | 4ee5b10 | 2007-09-27 17:17:12 -0700 | [diff] [blame] | 42 | : "=d" (err), "+b" (next), "=a" (id), "+c" (size), |
H. Peter Anvin | c549e71 | 2009-03-28 13:53:26 -0700 | [diff] [blame^] | 43 | "=D" (edi), "+m" (buf) |
| 44 | : "D" (&buf), "d" (SMAP), "a" (0xe820) |
Michael K. Johnson | 01522df | 2009-03-27 13:14:41 -0400 | [diff] [blame] | 45 | : "esi"); |
H. Peter Anvin | 449f2ab | 2007-07-11 12:18:50 -0700 | [diff] [blame] | 46 | |
H. Peter Anvin | 829157b | 2008-02-13 11:16:46 -0800 | [diff] [blame] | 47 | /* BIOSes which terminate the chain with CF = 1 as opposed |
| 48 | to %ebx = 0 don't always report the SMAP signature on |
| 49 | the final, failing, probe. */ |
| 50 | if (err) |
| 51 | break; |
| 52 | |
H. Peter Anvin | 2efa33f | 2007-09-26 14:11:43 -0700 | [diff] [blame] | 53 | /* Some BIOSes stop returning SMAP in the middle of |
| 54 | the search loop. We don't know exactly how the BIOS |
| 55 | screwed up the map at that point, we might have a |
| 56 | partial map, the full map, or complete garbage, so |
| 57 | just return failure. */ |
| 58 | if (id != SMAP) { |
| 59 | count = 0; |
| 60 | break; |
| 61 | } |
| 62 | |
H. Peter Anvin | c549e71 | 2009-03-28 13:53:26 -0700 | [diff] [blame^] | 63 | /* ACPI 3.0 added the extended flags support. If bit 0 |
| 64 | in the extended flags is zero, we're supposed to simply |
| 65 | ignore the entry -- a backwards incompatible change! */ |
| 66 | if (size > 20 && !(buf.ext_flags & 1)) |
| 67 | continue; |
| 68 | |
| 69 | *desc++ = buf.std; |
H. Peter Anvin | 2efa33f | 2007-09-26 14:11:43 -0700 | [diff] [blame] | 70 | count++; |
Paul Jackson | c3965bd | 2008-05-14 08:15:34 -0700 | [diff] [blame] | 71 | } while (next && count < ARRAY_SIZE(boot_params.e820_map)); |
H. Peter Anvin | 449f2ab | 2007-07-11 12:18:50 -0700 | [diff] [blame] | 72 | |
H. Peter Anvin | 2efa33f | 2007-09-26 14:11:43 -0700 | [diff] [blame] | 73 | return boot_params.e820_entries = count; |
H. Peter Anvin | 449f2ab | 2007-07-11 12:18:50 -0700 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | static int detect_memory_e801(void) |
| 77 | { |
| 78 | u16 ax, bx, cx, dx; |
| 79 | u8 err; |
| 80 | |
| 81 | bx = cx = dx = 0; |
| 82 | ax = 0xe801; |
| 83 | asm("stc; int $0x15; setc %0" |
| 84 | : "=m" (err), "+a" (ax), "+b" (bx), "+c" (cx), "+d" (dx)); |
| 85 | |
| 86 | if (err) |
| 87 | return -1; |
| 88 | |
| 89 | /* Do we really need to do this? */ |
| 90 | if (cx || dx) { |
| 91 | ax = cx; |
| 92 | bx = dx; |
| 93 | } |
| 94 | |
| 95 | if (ax > 15*1024) |
| 96 | return -1; /* Bogus! */ |
| 97 | |
| 98 | /* This ignores memory above 16MB if we have a memory hole |
| 99 | there. If someone actually finds a machine with a memory |
| 100 | hole at 16MB and no support for 0E820h they should probably |
| 101 | generate a fake e820 map. */ |
| 102 | boot_params.alt_mem_k = (ax == 15*1024) ? (dx << 6)+ax : ax; |
| 103 | |
| 104 | return 0; |
| 105 | } |
| 106 | |
| 107 | static int detect_memory_88(void) |
| 108 | { |
| 109 | u16 ax; |
| 110 | u8 err; |
| 111 | |
| 112 | ax = 0x8800; |
| 113 | asm("stc; int $0x15; setc %0" : "=bcdm" (err), "+a" (ax)); |
| 114 | |
| 115 | boot_params.screen_info.ext_mem_k = ax; |
| 116 | |
| 117 | return -err; |
| 118 | } |
| 119 | |
| 120 | int detect_memory(void) |
| 121 | { |
H. Peter Anvin | 2efa33f | 2007-09-26 14:11:43 -0700 | [diff] [blame] | 122 | int err = -1; |
| 123 | |
H. Peter Anvin | 449f2ab | 2007-07-11 12:18:50 -0700 | [diff] [blame] | 124 | if (detect_memory_e820() > 0) |
H. Peter Anvin | 2efa33f | 2007-09-26 14:11:43 -0700 | [diff] [blame] | 125 | err = 0; |
H. Peter Anvin | 449f2ab | 2007-07-11 12:18:50 -0700 | [diff] [blame] | 126 | |
| 127 | if (!detect_memory_e801()) |
H. Peter Anvin | 2efa33f | 2007-09-26 14:11:43 -0700 | [diff] [blame] | 128 | err = 0; |
H. Peter Anvin | 449f2ab | 2007-07-11 12:18:50 -0700 | [diff] [blame] | 129 | |
H. Peter Anvin | 2efa33f | 2007-09-26 14:11:43 -0700 | [diff] [blame] | 130 | if (!detect_memory_88()) |
| 131 | err = 0; |
| 132 | |
| 133 | return err; |
H. Peter Anvin | 449f2ab | 2007-07-11 12:18:50 -0700 | [diff] [blame] | 134 | } |