1 /* -*- linux-c -*- ------------------------------------------------------- *
3 * Copyright (C) 1991, 1992 Linus Torvalds
4 * Copyright 2007 rPath, Inc. - All Rights Reserved
5 * Copyright 2009 Intel Corporation; author H. Peter Anvin
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.
10 * ----------------------------------------------------------------------- */
13 * Get the MCA system description table
20 struct biosregs ireg
, oreg
;
25 intcall(0x15, &ireg
, &oreg
);
27 if (oreg
.eflags
& X86_EFLAGS_CF
)
28 return -1; /* No MCA present */
31 len
= rdfs16(oreg
.bx
);
33 if (len
> sizeof(boot_params
.sys_desc_table
))
34 len
= sizeof(boot_params
.sys_desc_table
);
36 copy_from_fs(&boot_params
.sys_desc_table
, oreg
.bx
, len
);