2004-03-28 21:52:02 +00:00
|
|
|
/* ofdisk.c - Open Firmware disk access. */
|
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
* GRUB -- GRand Unified Bootloader
|
2004-03-28 21:52:02 +00:00
|
|
|
* Copyright (C) 2004 Free Software Foundation, Inc.
|
|
|
|
*
|
|
|
|
* This program 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 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
#include <grub/misc.h>
|
|
|
|
#include <grub/disk.h>
|
|
|
|
#include <grub/mm.h>
|
|
|
|
#include <grub/machine/ieee1275.h>
|
2004-12-27 Marco Gerards <metgerards@student.han.nl>
* genmk.rb: Handle the `Program' class in the main loop. Written
by Johan Rydberg <jrydberg@gnu.org>.
(Program): New class.
(programs): New variable.
* boot/powerpc/ieee1275/cmain.c: Include <grub/machine/ieee1275.h>
instead of "grub/machine/ieee1275.h". Include <grub/kernel.h>
instead of "grub/kernel.h". Include <grub/machine/init.h>.
(help_arch): Function removed.
* conf/powerpc-ieee1275.rmk (grubof_HEADERS): Add
`powerpc/libgcc.h' and `loader.h'.
(pkgdata_PROGRAMS): New variable.
(sbin_UTILITIES): Variable removed.
(grub_emu_SOURCES): Added kern/powerpc/cache.S.
(grubof_SOURCES): Variable re-defined so it only includes the
core functionality.
(grubof_CFLAGS): Remove `-DGRUBOF'.
(pkgdata_MODULES, fshelp_mod_SOURCES, fshelp_mod_CFLAGS,
(fat_mod_SOURCES, fat_mod_CFLAGS, ext2_mod_SOURCES)
(ext2_mod_CFLAGS, ufs_mod_SOURCES, ufs_mod_CFLAGS)
(minix_mod_SOURCES, minix_mod_CFLAGS, hfs_mod_SOURCES)
(hfs_mod_CFLAGS, jfs_mod_SOURCES, jfs_mod_CFLAGS)
(iso9660_mod_SOURCES, iso9660_mod_CFLAGS, _linux_mod_SOURCES)
(_linux_mod_CFLAGS, linux_mod_SOURCES, linux_mod_CFLAGS)
(normal_mod_SOURCES, normal_mod_CFLAGS, normal_mod_ASFLAGS)
(hello_mod_SOURCES, hello_mod_CFLAGS, boot_mod_SOURCES)
(boot_mod_CFLAGS, terminal_mod_SOURCES, terminal_mod_CFLAGS)
(ls_mod_SOURCES, ls_mod_CFLAGS, cmp_mod_SOURCES, cmp_mod_CFLAGS)
(cat_mod_SOURCES, cat_mod_CFLAGS, font_mod_SOURCES)
(font_mod_CFLAGS, amiga_mod_SOURCES, amiga_mod_CFLAGS)
(apple_mod_SOURCES, apple_mod_CFLAGS, pc_mod_SOURCES)
(pc_mod_CFLAGS): New variables.
* disk/powerpc/ieee1275/ofdisk.c: Include <grub/machine/init.h>.
(grub_ofdisk_iterate): Add a prototype for `dev_iterate'.
* include/grub/dl.h (grub_arch_dl_sync_caches): New prototype.
* include/grub/loader.h (grub_os_area_addr, grub_os_area_size):
Moved from here...
* include/grub/i386/pc/init.h (grub_os_area_addr)
(rub_os_area_size): ... to here.
* include/grub/powerpc/ieee1275/ieee1275.h
(grub_ieee1275_entry_fn): Export symbol.
* include/grub/powerpc/ieee1275/init.h: New file.
* include/grub/powerpc/libgcc.h: Likewise.
* include/grub/cache.h: Likewise.
* kern/powerpc/cache.S: Likewise. Written by Hollis Blanchard
<hollis@penguinppc.org>.
* kern/dl.c: Include <grub/cache.h>.
(grub_dl_flush_cache): New function.
(grub_dl_load_core): Call `grub_dl_flush_cache' to flush the cache
for this module.
* kern/powerpc/ieee1275/init.c (grub_ofdisk_init)
(grub_console_init): Removed prototypes.
(grub_machine_init): Don't initialize the modules anymore.
* kern/powerpc/ieee1275/openfw.c (grub_map): Make the function
static.
* include/grub/powerpc/types.h (GRUB_HOST_WORDS_LITTLEENDIAN):
Macro undef removed.
(GRUB_HOST_WORDS_BIGENDIAN): New macro.
* kern/powerpc/dl.c (grub_arch_dl_relocate_symbols): Add
relocation `R_PPC_REL32'. Return an error when the relocation is
unknown.
* Makefile.in (DATA): Add `$(pkgdata_PROGRAMS)'.
* kern/i386/pc/init.c (grub_arch_sync_caches): New function.
* util/misc.c (grub_arch_sync_caches): Likewise.
2004-12-27 13:46:20 +00:00
|
|
|
#include <grub/machine/init.h>
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
|
|
static int
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_ofdisk_iterate (int (*hook) (const char *name))
|
2004-03-28 21:52:02 +00:00
|
|
|
{
|
2004-12-27 Marco Gerards <metgerards@student.han.nl>
* genmk.rb: Handle the `Program' class in the main loop. Written
by Johan Rydberg <jrydberg@gnu.org>.
(Program): New class.
(programs): New variable.
* boot/powerpc/ieee1275/cmain.c: Include <grub/machine/ieee1275.h>
instead of "grub/machine/ieee1275.h". Include <grub/kernel.h>
instead of "grub/kernel.h". Include <grub/machine/init.h>.
(help_arch): Function removed.
* conf/powerpc-ieee1275.rmk (grubof_HEADERS): Add
`powerpc/libgcc.h' and `loader.h'.
(pkgdata_PROGRAMS): New variable.
(sbin_UTILITIES): Variable removed.
(grub_emu_SOURCES): Added kern/powerpc/cache.S.
(grubof_SOURCES): Variable re-defined so it only includes the
core functionality.
(grubof_CFLAGS): Remove `-DGRUBOF'.
(pkgdata_MODULES, fshelp_mod_SOURCES, fshelp_mod_CFLAGS,
(fat_mod_SOURCES, fat_mod_CFLAGS, ext2_mod_SOURCES)
(ext2_mod_CFLAGS, ufs_mod_SOURCES, ufs_mod_CFLAGS)
(minix_mod_SOURCES, minix_mod_CFLAGS, hfs_mod_SOURCES)
(hfs_mod_CFLAGS, jfs_mod_SOURCES, jfs_mod_CFLAGS)
(iso9660_mod_SOURCES, iso9660_mod_CFLAGS, _linux_mod_SOURCES)
(_linux_mod_CFLAGS, linux_mod_SOURCES, linux_mod_CFLAGS)
(normal_mod_SOURCES, normal_mod_CFLAGS, normal_mod_ASFLAGS)
(hello_mod_SOURCES, hello_mod_CFLAGS, boot_mod_SOURCES)
(boot_mod_CFLAGS, terminal_mod_SOURCES, terminal_mod_CFLAGS)
(ls_mod_SOURCES, ls_mod_CFLAGS, cmp_mod_SOURCES, cmp_mod_CFLAGS)
(cat_mod_SOURCES, cat_mod_CFLAGS, font_mod_SOURCES)
(font_mod_CFLAGS, amiga_mod_SOURCES, amiga_mod_CFLAGS)
(apple_mod_SOURCES, apple_mod_CFLAGS, pc_mod_SOURCES)
(pc_mod_CFLAGS): New variables.
* disk/powerpc/ieee1275/ofdisk.c: Include <grub/machine/init.h>.
(grub_ofdisk_iterate): Add a prototype for `dev_iterate'.
* include/grub/dl.h (grub_arch_dl_sync_caches): New prototype.
* include/grub/loader.h (grub_os_area_addr, grub_os_area_size):
Moved from here...
* include/grub/i386/pc/init.h (grub_os_area_addr)
(rub_os_area_size): ... to here.
* include/grub/powerpc/ieee1275/ieee1275.h
(grub_ieee1275_entry_fn): Export symbol.
* include/grub/powerpc/ieee1275/init.h: New file.
* include/grub/powerpc/libgcc.h: Likewise.
* include/grub/cache.h: Likewise.
* kern/powerpc/cache.S: Likewise. Written by Hollis Blanchard
<hollis@penguinppc.org>.
* kern/dl.c: Include <grub/cache.h>.
(grub_dl_flush_cache): New function.
(grub_dl_load_core): Call `grub_dl_flush_cache' to flush the cache
for this module.
* kern/powerpc/ieee1275/init.c (grub_ofdisk_init)
(grub_console_init): Removed prototypes.
(grub_machine_init): Don't initialize the modules anymore.
* kern/powerpc/ieee1275/openfw.c (grub_map): Make the function
static.
* include/grub/powerpc/types.h (GRUB_HOST_WORDS_LITTLEENDIAN):
Macro undef removed.
(GRUB_HOST_WORDS_BIGENDIAN): New macro.
* kern/powerpc/dl.c (grub_arch_dl_relocate_symbols): Add
relocation `R_PPC_REL32'. Return an error when the relocation is
unknown.
* Makefile.in (DATA): Add `$(pkgdata_PROGRAMS)'.
* kern/i386/pc/init.c (grub_arch_sync_caches): New function.
* util/misc.c (grub_arch_sync_caches): Likewise.
2004-12-27 13:46:20 +00:00
|
|
|
auto int dev_iterate (struct grub_ieee1275_devalias *alias);
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
int dev_iterate (struct grub_ieee1275_devalias *alias)
|
2004-03-28 21:52:02 +00:00
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
if (! grub_strcmp (alias->type, "block"))
|
2004-03-28 21:52:02 +00:00
|
|
|
hook (alias->name);
|
2004-10-13 23:43:44 +00:00
|
|
|
else if ((! grub_strcmp (alias->type, "scsi"))
|
|
|
|
|| (! grub_strcmp (alias->type, "ide"))
|
|
|
|
|| (! grub_strcmp (alias->type, "ata")))
|
|
|
|
/* Search for block-type children of these bus controllers. */
|
|
|
|
grub_children_iterate (alias->name, dev_iterate);
|
2004-03-28 21:52:02 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_devalias_iterate (dev_iterate);
|
2004-03-28 21:52:02 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
static grub_err_t
|
|
|
|
grub_ofdisk_open (const char *name, grub_disk_t disk)
|
2004-03-28 21:52:02 +00:00
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_ieee1275_phandle_t dev;
|
|
|
|
grub_ieee1275_ihandle_t dev_ihandle = 0;
|
2005-01-22 16:03:15 +00:00
|
|
|
char *devpath;
|
2004-03-28 21:52:02 +00:00
|
|
|
/* XXX: This should be large enough for any possible case. */
|
|
|
|
char prop[64];
|
|
|
|
int actual;
|
|
|
|
|
2005-01-22 16:03:15 +00:00
|
|
|
devpath = grub_strndup (name, grub_strlen (name) + 2);
|
2004-03-28 21:52:02 +00:00
|
|
|
if (! devpath)
|
2004-04-04 13:46:03 +00:00
|
|
|
return grub_errno;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
|
|
/* To access the complete disk add `:0'. */
|
2004-10-15 20:04:28 +00:00
|
|
|
if (! (grub_ieee1275_flags & GRUB_IEEE1275_NO_PARTITION_0))
|
|
|
|
grub_strcat (devpath, ":0");
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_ieee1275_open (devpath, &dev_ihandle);
|
2004-03-28 21:52:02 +00:00
|
|
|
if (! dev_ihandle)
|
2004-10-13 23:43:44 +00:00
|
|
|
{
|
|
|
|
grub_error (GRUB_ERR_UNKNOWN_DEVICE, "Can't open device");
|
|
|
|
goto fail;
|
|
|
|
}
|
2004-03-28 21:52:02 +00:00
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
if (grub_ieee1275_finddevice (devpath, &dev))
|
2004-03-28 21:52:02 +00:00
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_error (GRUB_ERR_UNKNOWN_DEVICE, "Can't read device properties");
|
2004-03-28 21:52:02 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
if (grub_ieee1275_get_property (dev, "device_type", prop, sizeof (prop),
|
2004-03-28 21:52:02 +00:00
|
|
|
&actual))
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_error (GRUB_ERR_BAD_DEVICE, "Can't read the device type");
|
2004-03-28 21:52:02 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
if (grub_strcmp (prop, "block"))
|
2004-03-28 21:52:02 +00:00
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_error (GRUB_ERR_BAD_DEVICE, "Not a block device");
|
2004-03-28 21:52:02 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* XXX: There is no property to read the number of blocks. There
|
|
|
|
should be a property `#blocks', but it is not there. Perhaps it
|
|
|
|
is possible to use seek for this. */
|
|
|
|
disk->total_sectors = 0xFFFFFFFFUL;
|
|
|
|
|
|
|
|
/* XXX: Is it ok to use this? Perhaps it is better to use the path
|
|
|
|
or some property. */
|
|
|
|
disk->id = dev;
|
|
|
|
|
|
|
|
/* XXX: Read this, somehow. */
|
|
|
|
disk->has_partitions = 1;
|
|
|
|
disk->data = (void *) dev_ihandle;
|
|
|
|
|
|
|
|
fail:
|
2004-10-13 23:43:44 +00:00
|
|
|
if (grub_errno && dev_ihandle)
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_ieee1275_close (dev_ihandle);
|
|
|
|
grub_free (devpath);
|
|
|
|
return grub_errno;
|
2004-03-28 21:52:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_ofdisk_close (grub_disk_t disk)
|
2004-03-28 21:52:02 +00:00
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_ieee1275_close ((grub_ieee1275_ihandle_t) disk->data);
|
2004-03-28 21:52:02 +00:00
|
|
|
}
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
static grub_err_t
|
|
|
|
grub_ofdisk_read (grub_disk_t disk, unsigned long sector,
|
2004-03-28 21:52:02 +00:00
|
|
|
unsigned long size, char *buf)
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
int actual;
|
|
|
|
unsigned long long pos;
|
|
|
|
|
|
|
|
pos = (unsigned long long) sector * 512UL;
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_ieee1275_seek ((grub_ieee1275_ihandle_t) disk->data, (int) (pos >> 32),
|
2004-03-28 21:52:02 +00:00
|
|
|
(int) pos & 0xFFFFFFFFUL, &status);
|
|
|
|
if (status != 0)
|
2004-04-04 13:46:03 +00:00
|
|
|
return grub_error (GRUB_ERR_READ_ERROR,
|
2004-03-28 21:52:02 +00:00
|
|
|
"Seek error, can't seek block %d", sector);
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_ieee1275_read ((grub_ieee1275_ihandle_t) disk->data, buf,
|
2004-03-28 21:52:02 +00:00
|
|
|
size * 512UL, &actual);
|
|
|
|
if (actual != actual)
|
2004-04-04 13:46:03 +00:00
|
|
|
return grub_error (GRUB_ERR_READ_ERROR, "Read error on block: %d", sector);
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
static grub_err_t
|
|
|
|
grub_ofdisk_write (grub_disk_t disk __attribute ((unused)),
|
2004-03-28 21:52:02 +00:00
|
|
|
unsigned long sector __attribute ((unused)),
|
|
|
|
unsigned long size __attribute ((unused)),
|
|
|
|
const char *buf __attribute ((unused)))
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
return GRUB_ERR_NOT_IMPLEMENTED_YET;
|
2004-03-28 21:52:02 +00:00
|
|
|
}
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
static struct grub_disk_dev grub_ofdisk_dev =
|
2004-03-28 21:52:02 +00:00
|
|
|
{
|
|
|
|
.name = "ofdisk",
|
2004-08-21 13:54:22 +00:00
|
|
|
.id = GRUB_DISK_DEVICE_OFDISK_ID,
|
2004-04-04 13:46:03 +00:00
|
|
|
.iterate = grub_ofdisk_iterate,
|
|
|
|
.open = grub_ofdisk_open,
|
|
|
|
.close = grub_ofdisk_close,
|
|
|
|
.read = grub_ofdisk_read,
|
|
|
|
.write = grub_ofdisk_write,
|
2004-03-28 21:52:02 +00:00
|
|
|
.next = 0
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_ofdisk_init (void)
|
2004-03-28 21:52:02 +00:00
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_disk_dev_register (&grub_ofdisk_dev);
|
2004-03-28 21:52:02 +00:00
|
|
|
}
|
2005-03-26 17:34:50 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
grub_ofdisk_fini (void)
|
|
|
|
{
|
|
|
|
grub_disk_dev_unregister (&grub_ofdisk_dev);
|
|
|
|
}
|