2004-04-04 13:46:03 +00:00
|
|
|
/* init.c -- Initialize GRUB on the newworld mac (PPC). */
|
2004-03-28 21:52:02 +00:00
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
* GRUB -- GRand Unified Bootloader
|
2008-01-22 20:10:27 +00:00
|
|
|
* Copyright (C) 2003,2004,2005,2007,2008 Free Software Foundation, Inc.
|
2004-03-28 21:52:02 +00:00
|
|
|
*
|
2007-07-21 23:32:33 +00:00
|
|
|
* GRUB is free software: you can redistribute it and/or modify
|
2004-03-28 21:52:02 +00:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2007-07-21 23:32:33 +00:00
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
2004-03-28 21:52:02 +00:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
2007-07-21 23:32:33 +00:00
|
|
|
* GRUB is distributed in the hope that it will be useful,
|
2004-03-28 21:52:02 +00:00
|
|
|
* 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
|
2007-07-21 23:32:33 +00:00
|
|
|
* along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
2004-03-28 21:52:02 +00:00
|
|
|
*/
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
#include <grub/kernel.h>
|
|
|
|
#include <grub/dl.h>
|
|
|
|
#include <grub/disk.h>
|
|
|
|
#include <grub/mm.h>
|
2004-12-04 Marco Gerards <metgerards@student.han.nl>
Modulize the partition map support and add support for the amiga
partition map.
* commands/ls.c: Include <grub/partition.h> instead of
<grub/machine/partition.h>.
* kern/disk.c: Likewise.
* kern/rescue.c: Likewise.
* loader/i386/pc/chainloader.c: Likewise.
* normal/cmdline.c: Likewise.
* kern/powerpc/ieee1275/init.c: Likewise.
(grub_machine_init): Call `grub_pc_partition_map_init',
`grub_amiga_partition_map_init' and
`grub_apple_partition_map_init'.
* conf/i386-pc.rmk (kernel_img_SOURCES): Remove
`disk/i386/pc/partition.c'. Add `kern/partition.c'.
(kernel_img_HEADERS): Remove `machine/partition.h'. Add
`partition.h' and `pc_partition.h'.
(grub_setup_SOURCES): Remove
`disk/i386/pc/partition.c'. Add `kern/partition.c',
`partmap/amiga.c', `partmap/apple.c' and `partmap/pc.c'.
(grub_emu_SOURCES): Likewise.
(pkgdata_MODULES): Add `amiga.mod', `apple.mod' and `pc.mod'.
(amiga_mod_SOURCES, amiga_mod_CFLAGS, apple_mod_SOURCES)
(apple_mod_CFLAGS, pc_mod_SOURCES, pc_mod_CFLAGS): New variables.
* conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Remove
`disk/powerpc/ieee1275/partition.c'. Add `kern/partition.c',
`partmap/amiga.c', `partmap/apple.c' and `partmap/pc.c'.
(grubof_SOURCES): Likewise.
* disk/i386/pc/partition.c: File removed.
* disk/powerpc/ieee1275/partition.c: Likewise.
* include/grub/powerpc/ieee1275/partition.h: Likewise.
* include/grub/i386/pc/partition.h: Likewise.
* kern/partition.c: New file.
* partmap/amiga.c: Likewise.
* partmap/apple.c: Likewise.
* partmap/pc.c: Likewise.
* include/grub/partition.h: Likewise..
* include/grub/pc_partition.h: Likewise.
* util/grub-emu.c: Include <grub/partition.h> instead of
<grub/machine/partition.h>.
(main): Call `grub_pc_partition_map_init',
`grub_amiga_partition_map_init' and
`grub_apple_partition_map_init' and deinitialize afterwards.
* util/i386/pc/biosdisk.c: Include `#include
<grub/partition.h>' and `include <grub/pc_partition.h>' instead of
`<grub/machine/partition.h>'.
* util/i386/pc/grub-setup.c: Likewise.
* util/i386/pc/biosdisk.c: Likewise.
(grub_util_biosdisk_get_grub_dev): Only access the PC specific
partition information in case of a PC partition.
* util/i386/pc/grub-setup.c: Include `#include
<grub/partition.h>' and `include <grub/pc_partition.h>' instead of
`<grub/machine/partition.h>'.
(setup): Only access the PC specific partition information in case
of a PC partition.
2004-12-04 18:45:46 +00:00
|
|
|
#include <grub/partition.h>
|
2004-04-04 13:46:03 +00:00
|
|
|
#include <grub/normal.h>
|
|
|
|
#include <grub/fs.h>
|
|
|
|
#include <grub/setjmp.h>
|
2004-04-30 20:46:40 +00:00
|
|
|
#include <grub/env.h>
|
2004-10-15 02:29:11 +00:00
|
|
|
#include <grub/misc.h>
|
2007-10-22 19:59:33 +00:00
|
|
|
#include <grub/time.h>
|
2005-08-09 03:15:35 +00:00
|
|
|
#include <grub/machine/console.h>
|
2005-01-04 14:01:45 +00:00
|
|
|
#include <grub/machine/kernel.h>
|
2005-08-03 22:53:51 +00:00
|
|
|
#include <grub/ieee1275/ofdisk.h>
|
|
|
|
#include <grub/ieee1275/ieee1275.h>
|
2004-03-28 21:52:02 +00:00
|
|
|
|
2007-10-07 15:32:52 +00:00
|
|
|
/* The minimal heap size we can live with. */
|
|
|
|
#define HEAP_MIN_SIZE (unsigned long) (2 * 1024 * 1024)
|
|
|
|
|
|
|
|
/* The maximum heap size we're going to claim */
|
|
|
|
#define HEAP_MAX_SIZE (unsigned long) (4 * 1024 * 1024)
|
|
|
|
|
|
|
|
/* If possible, we will avoid claiming heap above this address, because it
|
|
|
|
seems to cause relocation problems with OSes that link at 4 MiB */
|
|
|
|
#define HEAP_MAX_ADDR (unsigned long) (4 * 1024 * 1024)
|
2005-03-26 17:34:50 +00:00
|
|
|
|
2007-02-21 23:22:20 +00:00
|
|
|
extern char _start[];
|
|
|
|
extern char _end[];
|
|
|
|
|
2007-10-22 19:59:33 +00:00
|
|
|
void
|
|
|
|
grub_millisleep (grub_uint32_t ms)
|
|
|
|
{
|
|
|
|
grub_millisleep_generic (ms);
|
|
|
|
}
|
|
|
|
|
2004-03-28 21:52:02 +00:00
|
|
|
void
|
2006-04-23 13:37:36 +00:00
|
|
|
grub_exit (void)
|
2004-03-28 21:52:02 +00:00
|
|
|
{
|
2008-01-14 14:30:59 +00:00
|
|
|
grub_ieee1275_exit ();
|
2004-03-28 21:52:02 +00:00
|
|
|
}
|
|
|
|
|
2005-04-22 02:32:37 +00:00
|
|
|
/* Translate an OF filesystem path (separated by backslashes), into a GRUB
|
|
|
|
path (separated by forward slashes). */
|
|
|
|
static void
|
|
|
|
grub_translate_ieee1275_path (char *filepath)
|
|
|
|
{
|
|
|
|
char *backslash;
|
|
|
|
|
|
|
|
backslash = grub_strchr (filepath, '\\');
|
|
|
|
while (backslash != 0)
|
|
|
|
{
|
|
|
|
*backslash = '/';
|
|
|
|
backslash = grub_strchr (filepath, '\\');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-25 20:08:31 +00:00
|
|
|
void
|
|
|
|
grub_machine_set_prefix (void)
|
2005-04-22 02:32:37 +00:00
|
|
|
{
|
|
|
|
char bootpath[64]; /* XXX check length */
|
|
|
|
char *filename;
|
|
|
|
char *prefix;
|
|
|
|
|
2006-04-26 02:20:13 +00:00
|
|
|
if (grub_env_get ("prefix"))
|
|
|
|
/* We already set prefix in grub_machine_init(). */
|
|
|
|
return;
|
|
|
|
|
2005-06-21 02:33:52 +00:00
|
|
|
if (grub_ieee1275_get_property (grub_ieee1275_chosen, "bootpath", &bootpath,
|
2005-04-22 02:32:37 +00:00
|
|
|
sizeof (bootpath), 0))
|
2005-05-01 03:45:36 +00:00
|
|
|
{
|
2005-04-22 02:32:37 +00:00
|
|
|
/* Should never happen. */
|
|
|
|
grub_printf ("/chosen/bootpath property missing!\n");
|
|
|
|
grub_env_set ("prefix", "");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Transform an OF device path to a GRUB path. */
|
|
|
|
|
|
|
|
prefix = grub_ieee1275_encode_devname (bootpath);
|
|
|
|
|
|
|
|
filename = grub_ieee1275_get_filename (bootpath);
|
|
|
|
if (filename)
|
|
|
|
{
|
|
|
|
char *newprefix;
|
|
|
|
char *lastslash = grub_strrchr (filename, '\\');
|
|
|
|
|
|
|
|
/* Truncate at last directory. */
|
|
|
|
if (lastslash)
|
|
|
|
{
|
|
|
|
*lastslash = '\0';
|
|
|
|
grub_translate_ieee1275_path (filename);
|
|
|
|
|
|
|
|
newprefix = grub_malloc (grub_strlen (prefix)
|
|
|
|
+ grub_strlen (filename));
|
|
|
|
grub_sprintf (newprefix, "%s%s", prefix, filename);
|
|
|
|
grub_free (prefix);
|
|
|
|
prefix = newprefix;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
grub_env_set ("prefix", prefix);
|
|
|
|
|
|
|
|
grub_free (filename);
|
|
|
|
grub_free (prefix);
|
|
|
|
}
|
|
|
|
|
2007-02-13 03:20:16 +00:00
|
|
|
/* Claim some available memory in the first /memory node. */
|
2008-01-03 22:43:46 +00:00
|
|
|
static void grub_claim_heap (void)
|
2007-02-13 03:20:16 +00:00
|
|
|
{
|
2007-10-07 15:32:52 +00:00
|
|
|
unsigned long total = 0;
|
|
|
|
|
2007-02-13 03:20:16 +00:00
|
|
|
auto int heap_init (grub_uint64_t addr, grub_uint64_t len);
|
|
|
|
int heap_init (grub_uint64_t addr, grub_uint64_t len)
|
|
|
|
{
|
|
|
|
len -= 1; /* Required for some firmware. */
|
|
|
|
|
2007-10-07 15:32:52 +00:00
|
|
|
/* Never exceed HEAP_MAX_SIZE */
|
|
|
|
if (total + len > HEAP_MAX_SIZE)
|
|
|
|
len = HEAP_MAX_SIZE - total;
|
|
|
|
|
|
|
|
/* Avoid claiming anything above HEAP_MAX_ADDR, if possible. */
|
|
|
|
if ((addr < HEAP_MAX_ADDR) && /* if it's too late, don't bother */
|
|
|
|
(addr + len > HEAP_MAX_ADDR) && /* if it wasn't available anyway, don't bother */
|
|
|
|
(total + (HEAP_MAX_ADDR - addr) > HEAP_MIN_SIZE)) /* only limit ourselves when we can afford to */
|
|
|
|
len = HEAP_MAX_ADDR - addr;
|
2007-02-13 03:20:16 +00:00
|
|
|
|
2008-01-22 20:10:27 +00:00
|
|
|
/* In theory, firmware should already prevent this from happening by not
|
|
|
|
listing our own image in /memory/available. The check below is intended
|
|
|
|
as a safegard in case that doesn't happen. It does, however, not protect
|
|
|
|
us from corrupting our module area, which extends up to a
|
|
|
|
yet-undetermined region above _end. */
|
|
|
|
if ((addr < _end) && ((addr + len) > _start))
|
|
|
|
{
|
|
|
|
grub_printf ("Warning: attempt to claim over our own code!\n");
|
|
|
|
len = 0;
|
|
|
|
}
|
|
|
|
|
2007-02-21 23:27:36 +00:00
|
|
|
if (len)
|
|
|
|
{
|
|
|
|
/* Claim and use it. */
|
|
|
|
if (grub_claimmap (addr, len) < 0)
|
|
|
|
return grub_error (GRUB_ERR_OUT_OF_MEMORY,
|
|
|
|
"Failed to claim heap at 0x%llx, len 0x%llx\n",
|
|
|
|
addr, len);
|
|
|
|
grub_mm_init_region ((void *) (grub_addr_t) addr, len);
|
|
|
|
}
|
2007-02-13 03:20:16 +00:00
|
|
|
|
2007-10-07 15:32:52 +00:00
|
|
|
total += len;
|
|
|
|
if (total >= HEAP_MAX_SIZE)
|
|
|
|
return 1;
|
|
|
|
|
2007-02-13 03:20:16 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
grub_available_iterate (heap_init);
|
|
|
|
}
|
|
|
|
|
2004-03-28 21:52:02 +00:00
|
|
|
void
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_machine_init (void)
|
2004-03-28 21:52:02 +00:00
|
|
|
{
|
2005-05-17 02:25:19 +00:00
|
|
|
char args[256];
|
|
|
|
int actual;
|
2004-10-15 02:29:11 +00:00
|
|
|
|
|
|
|
grub_console_init ();
|
2008-01-23 11:57:22 +00:00
|
|
|
#ifdef __i386__
|
|
|
|
grub_keyboard_controller_init ();
|
|
|
|
#endif
|
2007-10-07 15:32:52 +00:00
|
|
|
grub_claim_heap ();
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_ofdisk_init ();
|
2005-05-17 02:25:19 +00:00
|
|
|
|
|
|
|
/* Process commandline. */
|
2006-10-01 06:45:53 +00:00
|
|
|
if (grub_ieee1275_get_property (grub_ieee1275_chosen, "bootargs", &args,
|
2005-05-17 02:25:19 +00:00
|
|
|
sizeof args, &actual) == 0
|
|
|
|
&& actual > 1)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
while (i < actual)
|
|
|
|
{
|
|
|
|
char *command = &args[i];
|
|
|
|
char *end;
|
|
|
|
char *val;
|
|
|
|
|
|
|
|
end = grub_strchr (command, ';');
|
|
|
|
if (end == 0)
|
|
|
|
i = actual; /* No more commands after this one. */
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*end = '\0';
|
|
|
|
i += end - command + 1;
|
|
|
|
while (grub_isspace(args[i]))
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Process command. */
|
|
|
|
val = grub_strchr (command, '=');
|
|
|
|
if (val)
|
|
|
|
{
|
|
|
|
*val = '\0';
|
|
|
|
grub_env_set (command, val + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-03-28 21:52:02 +00:00
|
|
|
}
|
|
|
|
|
2005-03-26 17:34:50 +00:00
|
|
|
void
|
|
|
|
grub_machine_fini (void)
|
|
|
|
{
|
|
|
|
grub_ofdisk_fini ();
|
|
|
|
grub_console_fini ();
|
|
|
|
}
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_uint32_t
|
|
|
|
grub_get_rtc (void)
|
2004-03-28 21:52:02 +00:00
|
|
|
{
|
2005-11-04 04:50:14 +00:00
|
|
|
grub_uint32_t msecs = 0;
|
2005-01-03 21:48:45 +00:00
|
|
|
|
2005-11-04 04:50:14 +00:00
|
|
|
grub_ieee1275_milliseconds (&msecs);
|
2005-01-03 21:48:45 +00:00
|
|
|
|
|
|
|
return msecs;
|
2004-03-28 21:52:02 +00:00
|
|
|
}
|
2005-01-04 14:01:45 +00:00
|
|
|
|
|
|
|
grub_addr_t
|
|
|
|
grub_arch_modules_addr (void)
|
|
|
|
{
|
2008-01-27 20:30:58 +00:00
|
|
|
return ALIGN_UP(_end + GRUB_MOD_GAP, GRUB_MOD_ALIGN);
|
2005-01-04 14:01:45 +00:00
|
|
|
}
|