2007-10-31 22:35:13 +00:00
|
|
|
/*
|
|
|
|
* GRUB -- GRand Unified Bootloader
|
2008-07-31 19:33:23 +00:00
|
|
|
* Copyright (C) 2002,2003,2004,2005,2006,2007,2008 Free Software Foundation, Inc.
|
2007-10-31 22:35:13 +00:00
|
|
|
*
|
|
|
|
* GRUB 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* GRUB 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <grub/kernel.h>
|
|
|
|
#include <grub/mm.h>
|
|
|
|
#include <grub/machine/time.h>
|
|
|
|
#include <grub/machine/init.h>
|
|
|
|
#include <grub/machine/memory.h>
|
|
|
|
#include <grub/machine/console.h>
|
|
|
|
#include <grub/machine/kernel.h>
|
|
|
|
#include <grub/types.h>
|
|
|
|
#include <grub/err.h>
|
|
|
|
#include <grub/dl.h>
|
|
|
|
#include <grub/misc.h>
|
|
|
|
#include <grub/loader.h>
|
|
|
|
#include <grub/env.h>
|
|
|
|
#include <grub/cache.h>
|
|
|
|
#include <grub/time.h>
|
|
|
|
#include <grub/symbol.h>
|
|
|
|
#include <grub/cpu/io.h>
|
2008-08-14 18:59:33 +00:00
|
|
|
#include <grub/cpu/kernel.h>
|
2007-10-31 22:35:13 +00:00
|
|
|
|
|
|
|
#define GRUB_FLOPPY_REG_DIGITAL_OUTPUT 0x3f2
|
|
|
|
|
|
|
|
extern char _start[];
|
|
|
|
extern char _end[];
|
|
|
|
|
|
|
|
grub_addr_t grub_os_area_addr;
|
|
|
|
grub_size_t grub_os_area_size;
|
|
|
|
grub_size_t grub_lower_mem, grub_upper_mem;
|
|
|
|
|
|
|
|
/* FIXME: we need interrupts to do this right */
|
|
|
|
static grub_uint32_t grub_time_tics = 0;
|
|
|
|
|
|
|
|
grub_uint32_t
|
|
|
|
grub_get_rtc (void)
|
|
|
|
{
|
|
|
|
return grub_time_tics;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Stop the floppy drive from spinning, so that other software is
|
|
|
|
jumped to with a known state. */
|
|
|
|
void
|
|
|
|
grub_stop_floppy (void)
|
|
|
|
{
|
|
|
|
grub_outb (0, GRUB_FLOPPY_REG_DIGITAL_OUTPUT);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-01-03 22:43:46 +00:00
|
|
|
grub_exit (void)
|
2007-10-31 22:35:13 +00:00
|
|
|
{
|
|
|
|
grub_printf ("grub_exit() is not implemented.\n");
|
|
|
|
grub_stop ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
grub_arch_sync_caches (void *address __attribute__ ((unused)),
|
|
|
|
grub_size_t len __attribute__ ((unused)))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
grub_machine_init (void)
|
|
|
|
{
|
|
|
|
/* Initialize the console as early as possible. */
|
|
|
|
grub_console_init ();
|
|
|
|
|
|
|
|
grub_lower_mem = GRUB_MEMORY_MACHINE_LOWER_USABLE;
|
|
|
|
grub_upper_mem = 0;
|
|
|
|
|
2008-08-17 16:32:18 +00:00
|
|
|
auto int NESTED_FUNC_ATTR heap_init (grub_uint64_t, grub_uint64_t, grub_uint32_t);
|
|
|
|
int NESTED_FUNC_ATTR heap_init (grub_uint64_t addr, grub_uint64_t size, grub_uint32_t type)
|
2007-10-31 22:35:13 +00:00
|
|
|
{
|
|
|
|
#if GRUB_CPU_SIZEOF_VOID_P == 4
|
|
|
|
/* Restrict ourselves to 32-bit memory space. */
|
|
|
|
if (addr > ULONG_MAX)
|
|
|
|
{
|
|
|
|
grub_upper_mem = ULONG_MAX;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (addr + size > ULONG_MAX)
|
|
|
|
size = ULONG_MAX - addr;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
grub_upper_mem = grub_max (grub_upper_mem, addr + size);
|
|
|
|
|
2008-08-17 16:32:18 +00:00
|
|
|
if (type != GRUB_MACHINE_MEMORY_AVAILABLE)
|
2007-10-31 22:35:13 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Avoid the lower memory. */
|
|
|
|
if (addr < GRUB_MEMORY_MACHINE_LOWER_SIZE)
|
|
|
|
{
|
|
|
|
if (addr + size <= GRUB_MEMORY_MACHINE_LOWER_SIZE)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
size -= GRUB_MEMORY_MACHINE_LOWER_SIZE - addr;
|
|
|
|
addr = GRUB_MEMORY_MACHINE_LOWER_SIZE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (addr == GRUB_MEMORY_MACHINE_UPPER_START
|
|
|
|
|| (addr >= GRUB_MEMORY_MACHINE_LOWER_SIZE
|
|
|
|
&& addr <= GRUB_MEMORY_MACHINE_UPPER_START
|
|
|
|
&& (addr + size > GRUB_MEMORY_MACHINE_UPPER_START)))
|
|
|
|
{
|
|
|
|
grub_size_t quarter = size >> 2;
|
|
|
|
|
|
|
|
grub_os_area_addr = addr;
|
|
|
|
grub_os_area_size = size - quarter;
|
|
|
|
grub_mm_init_region ((void *) (grub_os_area_addr + grub_os_area_size),
|
|
|
|
quarter);
|
|
|
|
}
|
|
|
|
else
|
2008-07-04 03:26:10 +00:00
|
|
|
grub_mm_init_region ((void *) (grub_addr_t) addr, (grub_size_t) size);
|
2007-10-31 22:35:13 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-08-17 16:32:18 +00:00
|
|
|
grub_machine_mmap_iterate (heap_init);
|
2007-10-31 22:35:13 +00:00
|
|
|
|
|
|
|
/* This variable indicates size, not offset. */
|
|
|
|
grub_upper_mem -= GRUB_MEMORY_MACHINE_UPPER_START;
|
2008-08-05 11:54:37 +00:00
|
|
|
|
2008-08-05 20:24:00 +00:00
|
|
|
grub_tsc_init ();
|
2008-11-07 Robert Millan <rmh@aybabtu.com>
Modularize at_keyboard.mod:
* conf/i386.rmk (pkglib_MODULES): Add `at_keyboard.mod'.
(at_keyboard_mod_SOURCES, at_keyboard_mod_CFLAGS)
(at_keyboard_mod_LDFLAGS): New variables.
Actual terminal split:
* include/grub/term.h (struct grub_term): Split in ...
(struct grub_term_input): ... this, and ...
(struct grub_term_output): ... this. Update all users.
(grub_term_set_current): Split in ...
(grub_term_set_current_input): ... this, and ...
(grub_term_set_current_output): ... this.
(grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
(grub_term_register): Split in ...
(grub_term_register_input): ... this, and ...
(grub_term_register_output): ... this.
(grub_term_unregister): Split in ...
(grub_term_unregister_input): ... this, and ...
(grub_term_unregister_output): ... this.
(grub_term_iterate): Split in ...
(grub_term_iterate_input): ... this, and ...
(grub_term_iterate_output): ... this.
* kern/term.c (grub_term_list): Split in ...
(grub_term_list_input): ... this, and ...
(grub_term_list_output): ... this. Update all users.
(grub_cur_term): Split in ...
(grub_cur_term_input): ... this, and ...
(grub_cur_term_output): ... this. Update all users.
(grub_term_set_current): Split in ...
(grub_term_set_current_input): ... this, and ...
(grub_term_set_current_output): ... this.
(grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
(grub_term_register): Split in ...
(grub_term_register_input): ... this, and ...
(grub_term_register_output): ... this.
(grub_term_unregister): Split in ...
(grub_term_unregister_input): ... this, and ...
(grub_term_unregister_output): ... this.
(grub_term_iterate): Split in ...
(grub_term_iterate_input): ... this, and ...
(grub_term_iterate_output): ... this.
* kern/misc.c (grub_abort): Split use of grub_term_get_current() into
a check for input and one for output (and only attempt to get keys
from user when input works).
* util/grub-probe.c (grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
* util/grub-fstest.c: Likewise.
* util/i386/pc/grub-setup.c: Likewise.
* util/grub-editenv.c: Likewise.
Portability adjustments:
* conf/i386-ieee1275.rmk (kernel_elf_SOURCES): Remove
`term/i386/pc/at_keyboard.c'.
* kern/ieee1275/init.c [__i386__] (grub_machine_init): Remove call to
grub_keyboard_controller_init() (now handled by terminal .init).
* kern/i386/coreboot/init.c (grub_machine_init): Add call to
grub_at_keyboard_init().
* include/grub/i386/ieee1275/console.h (grub_keyboard_controller_init)
(grub_console_checkkey, grub_console_getkey): Remove (now provided by
at_keyboard.mod via input terminal interface).
* include/grub/i386/coreboot/console.h: Convert into a stub for
`<grub/i386/pc/console.h>'.
Migrate full terminals to new API:
* term/efi/console.c (grub_console_term): Split into ...
(grub_console_term_input): ... this, and ...
(grub_console_term_output): ... this. Update all users.
* term/ieee1275/ofconsole.c: Remove __i386__ hack.
(grub_ofconsole_init): Split into ...
(grub_ofconsole_init_input): ... this, and ...
(grub_ofconsole_init_output): ... this.
(grub_ofconsole_term): Split into ...
(grub_ofconsole_term_input): ... this, and ...
(grub_ofconsole_term_output): ... this. Update all users.
* term/i386/pc/serial.c (grub_serial_term): Split into ...
(grub_serial_term_input): ... this, and ...
(grub_serial_term_output): ... this. Update all users.
* term/i386/pc/console.c (grub_console_term): Split into ...
(grub_console_term_input): ... this, and ...
(grub_console_term_output): ... this. Update all users.
(grub_console_term_input): Only enable it on PC/BIOS platform.
(grub_console_init): Remove grub_keyboard_controller_init() call.
Migrate input terminals to new API:
* term/i386/pc/at_keyboard.c: Replace `cpu' and `machine' with
`i386' and `i386/pc' to enable build on x86_64 (this driver is
i386-specific anyway).
(grub_console_checkkey): Rename to ...
(grub_at_keyboard_checkkey): ... this. Static-ize. Update all
users.
(grub_keyboard_controller_orig): New variable.
(grub_console_getkey): Rename to ...
(grub_at_keyboard_getkey): ... this. Static-ize. Update all
users.
(grub_keyboard_controller_init): Static-ize. Save original
controller value so that it can be restored ...
(grub_keyboard_controller_fini): ... here (new function).
(grub_at_keyboard_term): New structure.
(GRUB_MOD_INIT(at_keyboard), GRUB_MOD_FINI(at_keyboard)): New
functions.
Migrate output terminals to new API:
* term/i386/pc/vga.c (grub_vga_term): Change type to
`struct grub_term_output'. Remove `.checkkey' and `.getkey'
members. Update all users.
* term/gfxterm.c (grub_video_term): Change type to
`struct grub_term_output'. Remove `.checkkey' and `.getkey'
members. Update all users.
* include/grub/i386/pc/console.h (grub_console_checkkey)
(grub_console_getkey): Do not export (no longer needed by gfxterm,
etc).
Migrate `terminal' command and userland tools to new API:
* commands/terminal.c (grub_cmd_terminal): Split into ...
(grub_cmd_terminal_input): ... this, and ...
(grub_cmd_terminal_output): ... this.
(GRUB_MOD_INIT(terminal)): Split `terminal' command in two commands:
`terminal_input' and `terminal_output'.
* util/grub.d/00_header.in: Adjust `terminal' calls to new
`terminal_input' / `terminal_output' API.
* util/grub-mkconfig.in: Export ${GRUB_TERMINAL_INPUT} and
${GRUB_TERMINAL_OUTPUT} instead of ${GRUB_TERMINAL} (and if user
provided ${GRUB_TERMINAL}, convert it).
2008-11-07 19:11:39 +00:00
|
|
|
grub_at_keyboard_init ();
|
2007-10-31 22:35:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
grub_machine_set_prefix (void)
|
|
|
|
{
|
|
|
|
/* Initialize the prefix. */
|
2008-07-30 10:42:11 +00:00
|
|
|
grub_env_set ("prefix", grub_prefix);
|
2007-10-31 22:35:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
grub_machine_fini (void)
|
|
|
|
{
|
|
|
|
grub_console_fini ();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return the end of the core image. */
|
|
|
|
grub_addr_t
|
|
|
|
grub_arch_modules_addr (void)
|
|
|
|
{
|
2008-07-04 03:26:10 +00:00
|
|
|
return ALIGN_UP((grub_addr_t) _end, GRUB_MOD_ALIGN);
|
2007-10-31 22:35:13 +00:00
|
|
|
}
|