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
|
2010-01-03 22:05:07 +00:00
|
|
|
* Copyright (C) 2003,2004,2005,2007,2008,2009 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>
|
2010-07-02 20:05:47 +00:00
|
|
|
#include <grub/ieee1275/console.h>
|
2005-08-03 22:53:51 +00:00
|
|
|
#include <grub/ieee1275/ofdisk.h>
|
|
|
|
#include <grub/ieee1275/ieee1275.h>
|
2011-04-01 08:39:06 +00:00
|
|
|
#include <grub/net.h>
|
2010-04-26 19:11:16 +00:00
|
|
|
#include <grub/offsets.h>
|
2010-09-04 15:10:10 +00:00
|
|
|
#include <grub/memory.h>
|
2011-07-02 12:09:36 +00:00
|
|
|
#ifdef __sparc__
|
|
|
|
#include <grub/machine/kernel.h>
|
|
|
|
#endif
|
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 */
|
2010-02-06 14:53:39 +00:00
|
|
|
#define HEAP_MAX_SIZE (unsigned long) (32 * 1024 * 1024)
|
2007-10-07 15:32:52 +00:00
|
|
|
|
|
|
|
/* If possible, we will avoid claiming heap above this address, because it
|
|
|
|
seems to cause relocation problems with OSes that link at 4 MiB */
|
2010-02-06 14:53:39 +00:00
|
|
|
#define HEAP_MAX_ADDR (unsigned long) (32 * 1024 * 1024)
|
2005-03-26 17:34:50 +00:00
|
|
|
|
2007-02-21 23:22:20 +00:00
|
|
|
extern char _start[];
|
|
|
|
extern char _end[];
|
|
|
|
|
2011-07-02 12:09:36 +00:00
|
|
|
#ifdef __sparc__
|
|
|
|
grub_addr_t grub_ieee1275_original_stack;
|
|
|
|
#endif
|
|
|
|
|
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, '\\');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-05 14:37:14 +00:00
|
|
|
void (*grub_ieee1275_net_config) (const char *dev,
|
|
|
|
char **device,
|
|
|
|
char **path);
|
2006-04-25 20:08:31 +00:00
|
|
|
void
|
2011-07-02 12:09:36 +00:00
|
|
|
grub_machine_get_bootlocation (char **device, char **path)
|
2005-04-22 02:32:37 +00:00
|
|
|
{
|
2012-12-10 15:23:16 +00:00
|
|
|
char *bootpath;
|
|
|
|
grub_ssize_t bootpath_size;
|
2005-04-22 02:32:37 +00:00
|
|
|
char *filename;
|
2011-07-05 14:37:14 +00:00
|
|
|
char *type;
|
2012-12-10 15:23:16 +00:00
|
|
|
|
|
|
|
if (grub_ieee1275_get_property_length (grub_ieee1275_chosen, "bootpath",
|
|
|
|
&bootpath_size)
|
|
|
|
|| bootpath_size <= 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");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-12-10 15:23:16 +00:00
|
|
|
bootpath = (char *) grub_malloc ((grub_size_t) bootpath_size + 64);
|
|
|
|
if (! bootpath)
|
|
|
|
{
|
|
|
|
grub_print_error ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
grub_ieee1275_get_property (grub_ieee1275_chosen, "bootpath", bootpath,
|
|
|
|
(grub_size_t) bootpath_size + 1, 0);
|
|
|
|
bootpath[bootpath_size] = '\0';
|
|
|
|
|
2005-04-22 02:32:37 +00:00
|
|
|
/* Transform an OF device path to a GRUB path. */
|
|
|
|
|
2011-07-05 14:37:14 +00:00
|
|
|
type = grub_ieee1275_get_device_type (bootpath);
|
|
|
|
if (type && grub_strcmp (type, "network") == 0)
|
|
|
|
{
|
|
|
|
char *dev, *canon;
|
|
|
|
char *ptr;
|
|
|
|
dev = grub_ieee1275_get_aliasdevname (bootpath);
|
|
|
|
canon = grub_ieee1275_canonicalise_devname (dev);
|
|
|
|
ptr = canon + grub_strlen (canon) - 1;
|
|
|
|
while (ptr > canon && (*ptr == ',' || *ptr == ':'))
|
|
|
|
ptr--;
|
|
|
|
ptr++;
|
|
|
|
*ptr = 0;
|
|
|
|
|
|
|
|
if (grub_ieee1275_net_config)
|
|
|
|
grub_ieee1275_net_config (canon, device, path);
|
|
|
|
grub_free (dev);
|
|
|
|
grub_free (canon);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*device = grub_ieee1275_encode_devname (bootpath);
|
|
|
|
grub_free (type);
|
2005-04-22 02:32:37 +00:00
|
|
|
|
|
|
|
filename = grub_ieee1275_get_filename (bootpath);
|
|
|
|
if (filename)
|
|
|
|
{
|
|
|
|
char *lastslash = grub_strrchr (filename, '\\');
|
|
|
|
|
|
|
|
/* Truncate at last directory. */
|
|
|
|
if (lastslash)
|
|
|
|
{
|
|
|
|
*lastslash = '\0';
|
|
|
|
grub_translate_ieee1275_path (filename);
|
|
|
|
|
2011-07-02 12:09:36 +00:00
|
|
|
*path = filename;
|
2005-04-22 02:32:37 +00:00
|
|
|
}
|
|
|
|
}
|
2012-12-10 15:23:16 +00:00
|
|
|
grub_free (bootpath);
|
2005-04-22 02:32:37 +00:00
|
|
|
}
|
|
|
|
|
2007-02-13 03:20:16 +00:00
|
|
|
/* Claim some available memory in the first /memory node. */
|
2011-07-02 12:09:36 +00:00
|
|
|
#ifdef __sparc__
|
|
|
|
static void
|
|
|
|
grub_claim_heap (void)
|
|
|
|
{
|
|
|
|
grub_mm_init_region ((void *) (grub_modules_get_end ()
|
|
|
|
+ GRUB_KERNEL_MACHINE_STACK_SIZE), 0x200000);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
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;
|
|
|
|
|
2010-09-04 15:10:10 +00:00
|
|
|
auto int NESTED_FUNC_ATTR heap_init (grub_uint64_t addr, grub_uint64_t len,
|
|
|
|
grub_memory_type_t type);
|
|
|
|
int NESTED_FUNC_ATTR heap_init (grub_uint64_t addr, grub_uint64_t len,
|
|
|
|
grub_memory_type_t type)
|
2007-02-13 03:20:16 +00:00
|
|
|
{
|
2008-11-20 20:30:24 +00:00
|
|
|
if (type != 1)
|
|
|
|
return 0;
|
|
|
|
|
2010-05-05 16:52:13 +00:00
|
|
|
if (grub_ieee1275_test_flag (GRUB_IEEE1275_FLAG_NO_PRE1_5M_CLAIM))
|
|
|
|
{
|
|
|
|
if (addr + len <= 0x180000)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (addr < 0x180000)
|
|
|
|
{
|
|
|
|
len = addr + len - 0x180000;
|
|
|
|
addr = 0x180000;
|
|
|
|
}
|
|
|
|
}
|
2007-02-13 03:20:16 +00:00
|
|
|
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
|
2009-05-04 20:06:05 +00:00
|
|
|
as a safeguard in case that doesn't happen. However, it doesn't protect
|
2008-01-22 20:10:27 +00:00
|
|
|
us from corrupting our module area, which extends up to a
|
|
|
|
yet-undetermined region above _end. */
|
2008-07-04 03:01:55 +00:00
|
|
|
if ((addr < (grub_addr_t) _end) && ((addr + len) > (grub_addr_t) _start))
|
2008-01-22 20:10:27 +00:00
|
|
|
{
|
|
|
|
grub_printf ("Warning: attempt to claim over our own code!\n");
|
|
|
|
len = 0;
|
|
|
|
}
|
|
|
|
|
2007-02-21 23:27:36 +00:00
|
|
|
if (len)
|
|
|
|
{
|
2012-02-04 13:00:23 +00:00
|
|
|
grub_err_t err;
|
2007-02-21 23:27:36 +00:00
|
|
|
/* Claim and use it. */
|
2012-02-04 13:00:23 +00:00
|
|
|
err = grub_claimmap (addr, len);
|
|
|
|
if (err)
|
|
|
|
return err;
|
2007-02-21 23:27:36 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2008-07-02 07:38:46 +00:00
|
|
|
if (grub_ieee1275_test_flag (GRUB_IEEE1275_FLAG_CANNOT_INTERPRET))
|
2008-11-20 20:30:24 +00:00
|
|
|
heap_init (HEAP_MAX_ADDR - HEAP_MIN_SIZE, HEAP_MIN_SIZE, 1);
|
2008-07-02 07:38:46 +00:00
|
|
|
else
|
2008-11-20 20:30:24 +00:00
|
|
|
grub_machine_mmap_iterate (heap_init);
|
2007-02-13 03:20:16 +00:00
|
|
|
}
|
2011-07-02 12:09:36 +00:00
|
|
|
#endif
|
2007-02-13 03:20:16 +00:00
|
|
|
|
2011-07-02 12:09:36 +00:00
|
|
|
static void
|
|
|
|
grub_parse_cmdline (void)
|
2004-03-28 21:52:02 +00:00
|
|
|
{
|
2009-04-11 03:09:17 +00:00
|
|
|
grub_ssize_t actual;
|
2011-07-02 12:09:36 +00:00
|
|
|
char args[256];
|
2004-10-15 02:29:11 +00:00
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-07-02 12:09:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static grub_uint64_t ieee1275_get_time_ms (void);
|
|
|
|
|
2011-10-16 13:23:29 +00:00
|
|
|
grub_addr_t grub_modbase;
|
|
|
|
|
2011-07-02 12:09:36 +00:00
|
|
|
void
|
|
|
|
grub_machine_init (void)
|
|
|
|
{
|
2011-10-16 13:23:29 +00:00
|
|
|
grub_modbase = ALIGN_UP((grub_addr_t) _end
|
|
|
|
+ GRUB_KERNEL_MACHINE_MOD_GAP,
|
|
|
|
GRUB_KERNEL_MACHINE_MOD_ALIGN);
|
2011-07-02 12:09:36 +00:00
|
|
|
grub_ieee1275_init ();
|
|
|
|
|
|
|
|
grub_console_init_early ();
|
|
|
|
grub_claim_heap ();
|
|
|
|
grub_console_init_lately ();
|
|
|
|
grub_ofdisk_init ();
|
|
|
|
|
|
|
|
grub_parse_cmdline ();
|
2008-08-05 11:54:37 +00:00
|
|
|
|
|
|
|
grub_install_get_time_ms (ieee1275_get_time_ms);
|
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 ();
|
|
|
|
}
|
|
|
|
|
2008-08-05 11:54:37 +00:00
|
|
|
static grub_uint64_t
|
|
|
|
ieee1275_get_time_ms (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
|
|
|
}
|