MIPS multiboot2 support.
* conf/mips.rmk (pkglib_MODULES): Add multiboot2.mod. (multiboot2_mod_SOURCES): New variable. (multiboot2_mod_CFLAGS): Likewise. (multiboot2_mod_LDFLAGS): Likewise. (multiboot2_mod_ASFLAGS): Likewise. * include/grub/i386/multiboot.h (MULTIBOOT_INITIAL_STATE): New definition. (MULTIBOOT_ENTRY_REGISTER): Likewise. (MULTIBOOT_MBI_REGISTER): Likewise. (MULTIBOOT_ARCHITECTURE_CURRENT): Likewise. (MULTIBOOT_ELF32_MACHINE): Likewise. (MULTIBOOT_ELF64_MACHINE): Likewise. * include/grub/mips/multiboot.h: New file. * include/grub/video.h (grub_video_driver_id): New type GRUB_VIDEO_DRIVER_SM712. (grub_video_get_info_and_fini): Export. (grub_video_get_palette): Likewise. (grub_video_get_driver_id): Likewise. * include/multiboot2.h: Resynced with spec. * loader/i386/multiboot.c: Moved from here ... * loader/multiboot.c: ... here. All users updated. (grub_multiboot_boot): Use platform-specific macros. * loader/i386/multiboot_elfxx.c: Moved from here ... * loader/multiboot_elfxx.c: ... here. All users updated. (E_MACHINE): Use MULTIBOOT_ELF32_MACHINE and MULTIBOOT_ELF64_MACHINE. * loader/i386/multiboot_mbi2.c (grub_multiboot_load): Check arcitecture. * video/sm712.c (grub_video_sm712_adapter): Add missing id field.
This commit is contained in:
commit
3802341279
11 changed files with 111 additions and 26 deletions
32
ChangeLog
32
ChangeLog
|
@ -1,3 +1,35 @@
|
||||||
|
2010-04-03 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
MIPS multiboot2 support.
|
||||||
|
|
||||||
|
* conf/mips.rmk (pkglib_MODULES): Add multiboot2.mod.
|
||||||
|
(multiboot2_mod_SOURCES): New variable.
|
||||||
|
(multiboot2_mod_CFLAGS): Likewise.
|
||||||
|
(multiboot2_mod_LDFLAGS): Likewise.
|
||||||
|
(multiboot2_mod_ASFLAGS): Likewise.
|
||||||
|
* include/grub/i386/multiboot.h (MULTIBOOT_INITIAL_STATE): New
|
||||||
|
definition.
|
||||||
|
(MULTIBOOT_ENTRY_REGISTER): Likewise.
|
||||||
|
(MULTIBOOT_MBI_REGISTER): Likewise.
|
||||||
|
(MULTIBOOT_ARCHITECTURE_CURRENT): Likewise.
|
||||||
|
(MULTIBOOT_ELF32_MACHINE): Likewise.
|
||||||
|
(MULTIBOOT_ELF64_MACHINE): Likewise.
|
||||||
|
* include/grub/mips/multiboot.h: New file.
|
||||||
|
* include/grub/video.h (grub_video_driver_id): New type
|
||||||
|
GRUB_VIDEO_DRIVER_SM712.
|
||||||
|
(grub_video_get_info_and_fini): Export.
|
||||||
|
(grub_video_get_palette): Likewise.
|
||||||
|
(grub_video_get_driver_id): Likewise.
|
||||||
|
* include/multiboot2.h: Resynced with spec.
|
||||||
|
* loader/i386/multiboot.c: Moved from here ...
|
||||||
|
* loader/multiboot.c: ... here. All users updated.
|
||||||
|
(grub_multiboot_boot): Use platform-specific macros.
|
||||||
|
* loader/i386/multiboot_elfxx.c: Moved from here ...
|
||||||
|
* loader/multiboot_elfxx.c: ... here. All users updated.
|
||||||
|
(E_MACHINE): Use MULTIBOOT_ELF32_MACHINE and MULTIBOOT_ELF64_MACHINE.
|
||||||
|
* loader/i386/multiboot_mbi2.c (grub_multiboot_load): Check arcitecture.
|
||||||
|
* video/sm712.c (grub_video_sm712_adapter): Add missing id field.
|
||||||
|
|
||||||
2010-04-02 Vladimir Serbinenko <phcoder@gmail.com>
|
2010-04-02 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
Import gnulib argp module.
|
Import gnulib argp module.
|
||||||
|
|
|
@ -33,15 +33,13 @@ setpci_mod_CFLAGS = $(COMMON_CFLAGS)
|
||||||
setpci_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
setpci_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
||||||
|
|
||||||
pkglib_MODULES += multiboot.mod
|
pkglib_MODULES += multiboot.mod
|
||||||
multiboot_mod_SOURCES = loader/i386/multiboot.c \
|
multiboot_mod_SOURCES = loader/multiboot.c loader/i386/multiboot_mbi.c
|
||||||
loader/i386/multiboot_mbi.c
|
|
||||||
multiboot_mod_CFLAGS = $(COMMON_CFLAGS)
|
multiboot_mod_CFLAGS = $(COMMON_CFLAGS)
|
||||||
multiboot_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
multiboot_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
||||||
multiboot_mod_ASFLAGS = $(COMMON_ASFLAGS)
|
multiboot_mod_ASFLAGS = $(COMMON_ASFLAGS)
|
||||||
|
|
||||||
pkglib_MODULES += multiboot2.mod
|
pkglib_MODULES += multiboot2.mod
|
||||||
multiboot2_mod_SOURCES = loader/i386/multiboot.c \
|
multiboot2_mod_SOURCES = loader/multiboot.c loader/multiboot_mbi2.c
|
||||||
loader/i386/multiboot_mbi2.c
|
|
||||||
multiboot2_mod_CFLAGS = $(COMMON_CFLAGS) -DGRUB_USE_MULTIBOOT2
|
multiboot2_mod_CFLAGS = $(COMMON_CFLAGS) -DGRUB_USE_MULTIBOOT2
|
||||||
multiboot2_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
multiboot2_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
||||||
multiboot2_mod_ASFLAGS = $(COMMON_ASFLAGS)
|
multiboot2_mod_ASFLAGS = $(COMMON_ASFLAGS)
|
||||||
|
|
|
@ -30,4 +30,11 @@ relocator_mod_CFLAGS = $(COMMON_CFLAGS)
|
||||||
relocator_mod_ASFLAGS = $(COMMON_ASFLAGS)
|
relocator_mod_ASFLAGS = $(COMMON_ASFLAGS)
|
||||||
relocator_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
relocator_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
||||||
|
|
||||||
|
pkglib_MODULES += multiboot2.mod
|
||||||
|
multiboot2_mod_SOURCES = loader/multiboot.c \
|
||||||
|
loader/multiboot_mbi2.c
|
||||||
|
multiboot2_mod_CFLAGS = $(COMMON_CFLAGS) -DGRUB_USE_MULTIBOOT2
|
||||||
|
multiboot2_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
||||||
|
multiboot2_mod_ASFLAGS = $(COMMON_ASFLAGS)
|
||||||
|
|
||||||
include $(srcdir)/conf/common.mk
|
include $(srcdir)/conf/common.mk
|
||||||
|
|
|
@ -24,4 +24,18 @@ extern char *grub_multiboot_payload_orig;
|
||||||
extern grub_addr_t grub_multiboot_payload_dest;
|
extern grub_addr_t grub_multiboot_payload_dest;
|
||||||
extern grub_size_t grub_multiboot_payload_size;
|
extern grub_size_t grub_multiboot_payload_size;
|
||||||
|
|
||||||
|
#define MULTIBOOT_INITIAL_STATE { .eax = MULTIBOOT_BOOTLOADER_MAGIC, \
|
||||||
|
.ecx = 0, \
|
||||||
|
.edx = 0, \
|
||||||
|
/* Set esp to some random location in low memory to avoid breaking */ \
|
||||||
|
/* non-compliant kernels. */ \
|
||||||
|
.esp = 0x7ff00 \
|
||||||
|
}
|
||||||
|
#define MULTIBOOT_ENTRY_REGISTER eip
|
||||||
|
#define MULTIBOOT_MBI_REGISTER ebx
|
||||||
|
#define MULTIBOOT_ARCHITECTURE_CURRENT MULTIBOOT_ARCHITECTURE_I386
|
||||||
|
|
||||||
|
#define MULTIBOOT_ELF32_MACHINE EM_386
|
||||||
|
#define MULTIBOOT_ELF64_MACHINE EM_X86_64
|
||||||
|
|
||||||
#endif /* ! GRUB_MULTIBOOT_CPU_HEADER */
|
#endif /* ! GRUB_MULTIBOOT_CPU_HEADER */
|
||||||
|
|
36
include/grub/mips/multiboot.h
Normal file
36
include/grub/mips/multiboot.h
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
/*
|
||||||
|
* GRUB -- GRand Unified Bootloader
|
||||||
|
* Copyright (C) 2002,2003,2004,2007,2008,2009 Free Software Foundation, Inc.
|
||||||
|
*
|
||||||
|
* 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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef GRUB_MULTIBOOT_CPU_HEADER
|
||||||
|
#define GRUB_MULTIBOOT_CPU_HEADER 1
|
||||||
|
|
||||||
|
extern grub_uint32_t grub_multiboot_payload_eip;
|
||||||
|
extern char *grub_multiboot_payload_orig;
|
||||||
|
extern grub_addr_t grub_multiboot_payload_dest;
|
||||||
|
extern grub_size_t grub_multiboot_payload_size;
|
||||||
|
|
||||||
|
#define MULTIBOOT_INITIAL_STATE { .gpr[4] = MULTIBOOT_BOOTLOADER_MAGIC, \
|
||||||
|
.jumpreg = 1 }
|
||||||
|
#define MULTIBOOT_ENTRY_REGISTER gpr[1]
|
||||||
|
#define MULTIBOOT_MBI_REGISTER gpr[5]
|
||||||
|
#define MULTIBOOT_ARCHITECTURE_CURRENT MULTIBOOT_ARCHITECTURE_MIPS32
|
||||||
|
|
||||||
|
#define MULTIBOOT_ELF32_MACHINE EM_MIPS
|
||||||
|
#define MULTIBOOT_ELF64_MACHINE EM_MIPS
|
||||||
|
|
||||||
|
#endif /* ! GRUB_MULTIBOOT_CPU_HEADER */
|
|
@ -180,7 +180,8 @@ typedef enum grub_video_driver_id
|
||||||
GRUB_VIDEO_DRIVER_NONE,
|
GRUB_VIDEO_DRIVER_NONE,
|
||||||
GRUB_VIDEO_DRIVER_VBE,
|
GRUB_VIDEO_DRIVER_VBE,
|
||||||
GRUB_VIDEO_DRIVER_EFI_UGA,
|
GRUB_VIDEO_DRIVER_EFI_UGA,
|
||||||
GRUB_VIDEO_DRIVER_EFI_GOP
|
GRUB_VIDEO_DRIVER_EFI_GOP,
|
||||||
|
GRUB_VIDEO_DRIVER_SM712
|
||||||
} grub_video_driver_id_t;
|
} grub_video_driver_id_t;
|
||||||
|
|
||||||
struct grub_video_adapter
|
struct grub_video_adapter
|
||||||
|
@ -272,7 +273,7 @@ grub_err_t EXPORT_FUNC (grub_video_get_info) (struct grub_video_mode_info *mode_
|
||||||
sure that framebuffer address doesn't change. To ensure this abstraction
|
sure that framebuffer address doesn't change. To ensure this abstraction
|
||||||
grub_video_get_info_and_fini is the only function supplying framebuffer
|
grub_video_get_info_and_fini is the only function supplying framebuffer
|
||||||
address. */
|
address. */
|
||||||
grub_err_t grub_video_get_info_and_fini (struct grub_video_mode_info *mode_info,
|
grub_err_t EXPORT_FUNC (grub_video_get_info_and_fini) (struct grub_video_mode_info *mode_info,
|
||||||
void **framebuffer);
|
void **framebuffer);
|
||||||
|
|
||||||
enum grub_video_blit_format grub_video_get_blit_format (struct grub_video_mode_info *mode_info);
|
enum grub_video_blit_format grub_video_get_blit_format (struct grub_video_mode_info *mode_info);
|
||||||
|
@ -280,7 +281,8 @@ enum grub_video_blit_format grub_video_get_blit_format (struct grub_video_mode_i
|
||||||
grub_err_t grub_video_set_palette (unsigned int start, unsigned int count,
|
grub_err_t grub_video_set_palette (unsigned int start, unsigned int count,
|
||||||
struct grub_video_palette_data *palette_data);
|
struct grub_video_palette_data *palette_data);
|
||||||
|
|
||||||
grub_err_t grub_video_get_palette (unsigned int start, unsigned int count,
|
grub_err_t EXPORT_FUNC (grub_video_get_palette) (unsigned int start,
|
||||||
|
unsigned int count,
|
||||||
struct grub_video_palette_data *palette_data);
|
struct grub_video_palette_data *palette_data);
|
||||||
|
|
||||||
grub_err_t EXPORT_FUNC (grub_video_set_viewport) (unsigned int x,
|
grub_err_t EXPORT_FUNC (grub_video_set_viewport) (unsigned int x,
|
||||||
|
@ -356,7 +358,6 @@ grub_video_check_mode_flag (unsigned int flags, unsigned int mask,
|
||||||
return (flag & mask) ? !! (flags & flag) : def;
|
return (flag & mask) ? !! (flags & flag) : def;
|
||||||
}
|
}
|
||||||
|
|
||||||
grub_video_driver_id_t
|
grub_video_driver_id_t EXPORT_FUNC (grub_video_get_driver_id) (void);
|
||||||
grub_video_get_driver_id (void);
|
|
||||||
|
|
||||||
#endif /* ! GRUB_VIDEO_HEADER */
|
#endif /* ! GRUB_VIDEO_HEADER */
|
||||||
|
|
|
@ -61,7 +61,8 @@
|
||||||
#define MULTIBOOT_HEADER_TAG_FRAMEBUFFER 5
|
#define MULTIBOOT_HEADER_TAG_FRAMEBUFFER 5
|
||||||
#define MULTIBOOT_HEADER_TAG_MODULE_ALIGN 6
|
#define MULTIBOOT_HEADER_TAG_MODULE_ALIGN 6
|
||||||
|
|
||||||
#define GRUB_MULTIBOOT_ARCHITECTURE_I386 0
|
#define MULTIBOOT_ARCHITECTURE_I386 0
|
||||||
|
#define MULTIBOOT_ARCHITECTURE_MIPS32 4
|
||||||
#define MULTIBOOT_HEADER_TAG_OPTIONAL 1
|
#define MULTIBOOT_HEADER_TAG_OPTIONAL 1
|
||||||
|
|
||||||
#define MULTIBOOT_CONSOLE_FLAGS_CONSOLE_REQUIRED 1
|
#define MULTIBOOT_CONSOLE_FLAGS_CONSOLE_REQUIRED 1
|
||||||
|
|
|
@ -41,7 +41,7 @@
|
||||||
#include <grub/misc.h>
|
#include <grub/misc.h>
|
||||||
#include <grub/gzio.h>
|
#include <grub/gzio.h>
|
||||||
#include <grub/env.h>
|
#include <grub/env.h>
|
||||||
#include <grub/i386/relocator.h>
|
#include <grub/cpu/relocator.h>
|
||||||
#include <grub/video.h>
|
#include <grub/video.h>
|
||||||
#include <grub/memory.h>
|
#include <grub/memory.h>
|
||||||
#include <grub/i18n.h>
|
#include <grub/i18n.h>
|
||||||
|
@ -121,16 +121,9 @@ grub_multiboot_boot (void)
|
||||||
{
|
{
|
||||||
grub_size_t mbi_size;
|
grub_size_t mbi_size;
|
||||||
grub_err_t err;
|
grub_err_t err;
|
||||||
struct grub_relocator32_state state =
|
struct grub_relocator32_state state = MULTIBOOT_INITIAL_STATE;
|
||||||
{
|
|
||||||
.eax = MULTIBOOT_BOOTLOADER_MAGIC,
|
state.MULTIBOOT_ENTRY_REGISTER = grub_multiboot_payload_eip;
|
||||||
.ecx = 0,
|
|
||||||
.edx = 0,
|
|
||||||
.eip = grub_multiboot_payload_eip,
|
|
||||||
/* Set esp to some random location in low memory to avoid breaking
|
|
||||||
non-compliant kernels. */
|
|
||||||
.esp = 0x7ff00
|
|
||||||
};
|
|
||||||
|
|
||||||
mbi_size = grub_multiboot_get_mbi_size ();
|
mbi_size = grub_multiboot_get_mbi_size ();
|
||||||
if (grub_multiboot_alloc_mbi < mbi_size)
|
if (grub_multiboot_alloc_mbi < mbi_size)
|
||||||
|
@ -143,7 +136,8 @@ grub_multiboot_boot (void)
|
||||||
grub_multiboot_alloc_mbi = mbi_size;
|
grub_multiboot_alloc_mbi = mbi_size;
|
||||||
}
|
}
|
||||||
|
|
||||||
state.ebx = grub_multiboot_payload_dest + grub_multiboot_pure_size;
|
state.MULTIBOOT_MBI_REGISTER = grub_multiboot_payload_dest
|
||||||
|
+ grub_multiboot_pure_size;
|
||||||
err = grub_multiboot_make_mbi (grub_multiboot_payload_orig,
|
err = grub_multiboot_make_mbi (grub_multiboot_payload_orig,
|
||||||
grub_multiboot_payload_dest,
|
grub_multiboot_payload_dest,
|
||||||
grub_multiboot_pure_size, mbi_size);
|
grub_multiboot_pure_size, mbi_size);
|
|
@ -18,13 +18,13 @@
|
||||||
|
|
||||||
#if defined(MULTIBOOT_LOAD_ELF32)
|
#if defined(MULTIBOOT_LOAD_ELF32)
|
||||||
# define XX 32
|
# define XX 32
|
||||||
# define E_MACHINE EM_386
|
# define E_MACHINE MULTIBOOT_ELF32_MACHINE
|
||||||
# define ELFCLASSXX ELFCLASS32
|
# define ELFCLASSXX ELFCLASS32
|
||||||
# define Elf_Ehdr Elf32_Ehdr
|
# define Elf_Ehdr Elf32_Ehdr
|
||||||
# define Elf_Phdr Elf32_Phdr
|
# define Elf_Phdr Elf32_Phdr
|
||||||
#elif defined(MULTIBOOT_LOAD_ELF64)
|
#elif defined(MULTIBOOT_LOAD_ELF64)
|
||||||
# define XX 64
|
# define XX 64
|
||||||
# define E_MACHINE EM_X86_64
|
# define E_MACHINE MULTIBOOT_ELF64_MACHINE
|
||||||
# define ELFCLASSXX ELFCLASS64
|
# define ELFCLASSXX ELFCLASS64
|
||||||
# define Elf_Ehdr Elf64_Ehdr
|
# define Elf_Ehdr Elf64_Ehdr
|
||||||
# define Elf_Phdr Elf64_Phdr
|
# define Elf_Phdr Elf64_Phdr
|
|
@ -90,7 +90,8 @@ grub_multiboot_load (grub_file_t file)
|
||||||
{
|
{
|
||||||
if (header->magic == MULTIBOOT_HEADER_MAGIC
|
if (header->magic == MULTIBOOT_HEADER_MAGIC
|
||||||
&& !(header->magic + header->architecture
|
&& !(header->magic + header->architecture
|
||||||
+ header->header_length + header->checksum))
|
+ header->header_length + header->checksum)
|
||||||
|
&& header->architecture == MULTIBOOT_ARCHITECTURE_CURRENT)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
@ -191,6 +191,7 @@ grub_video_sm712_get_info_and_fini (struct grub_video_mode_info *mode_info,
|
||||||
static struct grub_video_adapter grub_video_sm712_adapter =
|
static struct grub_video_adapter grub_video_sm712_adapter =
|
||||||
{
|
{
|
||||||
.name = "SM712 Video Driver",
|
.name = "SM712 Video Driver",
|
||||||
|
.id = GRUB_VIDEO_DRIVER_SM712,
|
||||||
|
|
||||||
.init = grub_video_sm712_video_init,
|
.init = grub_video_sm712_video_init,
|
||||||
.fini = grub_video_sm712_video_fini,
|
.fini = grub_video_sm712_video_fini,
|
||||||
|
|
Loading…
Reference in a new issue