Merge ofwclock into cleanbuild
This commit is contained in:
commit
b359aa1373
9 changed files with 537 additions and 5 deletions
15
ChangeLog.ofwclock
Normal file
15
ChangeLog.ofwclock
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
2010-02-07 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* conf/powerpc-ieee1275.rmk (pkglib_MODULES): Add datetime.mod,
|
||||||
|
date.mod, datehook.mod.
|
||||||
|
(datetime_mod_SOURCES): New variable.
|
||||||
|
(datetime_mod_CFLAGS): Likewise.
|
||||||
|
(datetime_mod_LDFLAGS): Likewise.
|
||||||
|
(date_mod_SOURCES): Likewise.
|
||||||
|
(date_mod_CFLAGS): Likewise.
|
||||||
|
(date_mod_LDFLAGS): Likewise.
|
||||||
|
(datehook_mod_SOURCES): Likewise.
|
||||||
|
(datehook_mod_CFLAGS): Likewise.
|
||||||
|
(datehook_mod_LDFLAGS): Likewise.
|
||||||
|
* conf/sparc64-ieee1275.rmk: Likewise.
|
||||||
|
* lib/ieee1275/datetime.c: New file.
|
16
ChangeLog.ofwfb
Normal file
16
ChangeLog.ofwfb
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
2010-02-06 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* conf/powerpc-ieee1275.rmk (pkglib_MODULES): Add ieee1275_fb.mod.
|
||||||
|
(ieee1275_fb_mod_SOURCES): New variable.
|
||||||
|
(ieee1275_fb_mod_CFLAGS): Likewise.
|
||||||
|
(ieee1275_fb_mod_LDFLAGS): Likewise.
|
||||||
|
* include/grub/ieee1275/ieee1275.h (grub_ieee1275_devices_iterate):
|
||||||
|
New proto.
|
||||||
|
* kern/ieee1275/init.c (HEAP_MAX_SIZE): Increased.
|
||||||
|
(HEAP_MAX_ADDR): Likewise.
|
||||||
|
* kern/ieee1275/openfw.c (grub_children_iterate): Don't skip empty
|
||||||
|
type.
|
||||||
|
Correct stop condition.
|
||||||
|
(grub_ieee1275_devices_iterate): New function.
|
||||||
|
* video/ieee1275.c: New file.
|
||||||
|
|
|
@ -70,6 +70,11 @@ boot_mod_SOURCES = commands/boot.c lib/i386/pc/biosnum.c
|
||||||
boot_mod_CFLAGS = $(COMMON_CFLAGS)
|
boot_mod_CFLAGS = $(COMMON_CFLAGS)
|
||||||
boot_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
boot_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
||||||
|
|
||||||
|
pkglib_MODULES += ieee1275_fb.mod
|
||||||
|
ieee1275_fb_mod_SOURCES = video/ieee1275.c
|
||||||
|
ieee1275_fb_mod_CFLAGS = $(COMMON_CFLAGS)
|
||||||
|
ieee1275_fb_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
||||||
|
|
||||||
# For linux.mod.
|
# For linux.mod.
|
||||||
linux_mod_SOURCES = loader/powerpc/ieee1275/linux.c
|
linux_mod_SOURCES = loader/powerpc/ieee1275/linux.c
|
||||||
linux_mod_CFLAGS = $(COMMON_CFLAGS)
|
linux_mod_CFLAGS = $(COMMON_CFLAGS)
|
||||||
|
@ -100,4 +105,21 @@ lsmmap_mod_SOURCES = commands/lsmmap.c
|
||||||
lsmmap_mod_CFLAGS = $(COMMON_CFLAGS)
|
lsmmap_mod_CFLAGS = $(COMMON_CFLAGS)
|
||||||
lsmmap_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
lsmmap_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
||||||
|
|
||||||
|
pkglib_MODULES += datetime.mod date.mod datehook.mod
|
||||||
|
|
||||||
|
# For datetime.mod
|
||||||
|
datetime_mod_SOURCES = lib/ieee1275/datetime.c
|
||||||
|
datetime_mod_CFLAGS = $(COMMON_CFLAGS)
|
||||||
|
datetime_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
||||||
|
|
||||||
|
# For date.mod
|
||||||
|
date_mod_SOURCES = commands/date.c
|
||||||
|
date_mod_CFLAGS = $(COMMON_CFLAGS)
|
||||||
|
date_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
||||||
|
|
||||||
|
# For datehook.mod
|
||||||
|
datehook_mod_SOURCES = hook/datehook.c
|
||||||
|
datehook_mod_CFLAGS = $(COMMON_CFLAGS)
|
||||||
|
datehook_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
||||||
|
|
||||||
include $(srcdir)/conf/common.mk
|
include $(srcdir)/conf/common.mk
|
||||||
|
|
|
@ -133,4 +133,21 @@ lsmmap_mod_SOURCES = commands/lsmmap.c
|
||||||
lsmmap_mod_CFLAGS = $(COMMON_CFLAGS)
|
lsmmap_mod_CFLAGS = $(COMMON_CFLAGS)
|
||||||
lsmmap_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
lsmmap_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
||||||
|
|
||||||
|
pkglib_MODULES += datetime.mod date.mod datehook.mod
|
||||||
|
|
||||||
|
# For datetime.mod
|
||||||
|
datetime_mod_SOURCES = lib/ieee1275/datetime.c
|
||||||
|
datetime_mod_CFLAGS = $(COMMON_CFLAGS)
|
||||||
|
datetime_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
||||||
|
|
||||||
|
# For date.mod
|
||||||
|
date_mod_SOURCES = commands/date.c
|
||||||
|
date_mod_CFLAGS = $(COMMON_CFLAGS)
|
||||||
|
date_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
||||||
|
|
||||||
|
# For datehook.mod
|
||||||
|
datehook_mod_SOURCES = hook/datehook.c
|
||||||
|
datehook_mod_CFLAGS = $(COMMON_CFLAGS)
|
||||||
|
datehook_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
||||||
|
|
||||||
include $(srcdir)/conf/common.mk
|
include $(srcdir)/conf/common.mk
|
||||||
|
|
|
@ -176,4 +176,8 @@ int EXPORT_FUNC(grub_claimmap) (grub_addr_t addr, grub_size_t size);
|
||||||
char *EXPORT_FUNC(grub_ieee1275_encode_devname) (const char *path);
|
char *EXPORT_FUNC(grub_ieee1275_encode_devname) (const char *path);
|
||||||
char *EXPORT_FUNC(grub_ieee1275_get_filename) (const char *path);
|
char *EXPORT_FUNC(grub_ieee1275_get_filename) (const char *path);
|
||||||
|
|
||||||
|
int EXPORT_FUNC(grub_ieee1275_devices_iterate) (int (*hook)
|
||||||
|
(struct grub_ieee1275_devalias *
|
||||||
|
alias));
|
||||||
|
|
||||||
#endif /* ! GRUB_IEEE1275_HEADER */
|
#endif /* ! GRUB_IEEE1275_HEADER */
|
||||||
|
|
|
@ -38,11 +38,11 @@
|
||||||
#define HEAP_MIN_SIZE (unsigned long) (2 * 1024 * 1024)
|
#define HEAP_MIN_SIZE (unsigned long) (2 * 1024 * 1024)
|
||||||
|
|
||||||
/* The maximum heap size we're going to claim */
|
/* The maximum heap size we're going to claim */
|
||||||
#define HEAP_MAX_SIZE (unsigned long) (4 * 1024 * 1024)
|
#define HEAP_MAX_SIZE (unsigned long) (32 * 1024 * 1024)
|
||||||
|
|
||||||
/* If possible, we will avoid claiming heap above this address, because it
|
/* If possible, we will avoid claiming heap above this address, because it
|
||||||
seems to cause relocation problems with OSes that link at 4 MiB */
|
seems to cause relocation problems with OSes that link at 4 MiB */
|
||||||
#define HEAP_MAX_ADDR (unsigned long) (4 * 1024 * 1024)
|
#define HEAP_MAX_ADDR (unsigned long) (32 * 1024 * 1024)
|
||||||
|
|
||||||
extern char _start[];
|
extern char _start[];
|
||||||
extern char _end[];
|
extern char _end[];
|
||||||
|
|
|
@ -72,7 +72,7 @@ grub_children_iterate (char *devpath,
|
||||||
|
|
||||||
if (grub_ieee1275_get_property (child, "device_type", childtype,
|
if (grub_ieee1275_get_property (child, "device_type", childtype,
|
||||||
IEEE1275_MAX_PROP_LEN, &actual))
|
IEEE1275_MAX_PROP_LEN, &actual))
|
||||||
continue;
|
childtype[0] = 0;
|
||||||
|
|
||||||
if (grub_ieee1275_package_to_path (child, childpath,
|
if (grub_ieee1275_package_to_path (child, childpath,
|
||||||
IEEE1275_MAX_PATH_LEN, &actual))
|
IEEE1275_MAX_PATH_LEN, &actual))
|
||||||
|
@ -82,6 +82,9 @@ grub_children_iterate (char *devpath,
|
||||||
IEEE1275_MAX_PROP_LEN, &actual))
|
IEEE1275_MAX_PROP_LEN, &actual))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
if (devpath[0] == '/' && devpath[1] == 0)
|
||||||
|
fullname = grub_xasprintf ("/%s", childname);
|
||||||
|
else
|
||||||
fullname = grub_xasprintf ("%s/%s", devpath, childname);
|
fullname = grub_xasprintf ("%s/%s", devpath, childname);
|
||||||
if (!fullname)
|
if (!fullname)
|
||||||
{
|
{
|
||||||
|
@ -99,7 +102,7 @@ grub_children_iterate (char *devpath,
|
||||||
if (ret)
|
if (ret)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
while (grub_ieee1275_peer (child, &child));
|
while (grub_ieee1275_peer (child, &child) != -1);
|
||||||
|
|
||||||
grub_free (childname);
|
grub_free (childname);
|
||||||
grub_free (childpath);
|
grub_free (childpath);
|
||||||
|
@ -108,6 +111,20 @@ grub_children_iterate (char *devpath,
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
grub_ieee1275_devices_iterate (int (*hook) (struct grub_ieee1275_devalias *alias))
|
||||||
|
{
|
||||||
|
auto int it_through (struct grub_ieee1275_devalias *alias);
|
||||||
|
int it_through (struct grub_ieee1275_devalias *alias)
|
||||||
|
{
|
||||||
|
if (hook (alias))
|
||||||
|
return 1;
|
||||||
|
return grub_children_iterate (alias->name, it_through);
|
||||||
|
}
|
||||||
|
|
||||||
|
return grub_children_iterate ("/", it_through);
|
||||||
|
}
|
||||||
|
|
||||||
/* Iterate through all device aliases. This function can be used to
|
/* Iterate through all device aliases. This function can be used to
|
||||||
find a device of a specific type. */
|
find a device of a specific type. */
|
||||||
int
|
int
|
||||||
|
|
142
lib/ieee1275/datetime.c
Normal file
142
lib/ieee1275/datetime.c
Normal file
|
@ -0,0 +1,142 @@
|
||||||
|
/* kern/cmos_datetime.c - CMOS datetime function.
|
||||||
|
*
|
||||||
|
* GRUB -- GRand Unified Bootloader
|
||||||
|
* Copyright (C) 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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <grub/datetime.h>
|
||||||
|
#include <grub/ieee1275/ieee1275.h>
|
||||||
|
#include <grub/misc.h>
|
||||||
|
|
||||||
|
static char *rtc = 0;
|
||||||
|
|
||||||
|
static void
|
||||||
|
find_rtc (void)
|
||||||
|
{
|
||||||
|
auto int hook (struct grub_ieee1275_devalias *alias);
|
||||||
|
int hook (struct grub_ieee1275_devalias *alias)
|
||||||
|
{
|
||||||
|
if (grub_strcmp (alias->type, "rtc") == 0)
|
||||||
|
{
|
||||||
|
grub_dprintf ("datetime", "Found RTC %s\n", alias->name);
|
||||||
|
rtc = grub_strdup (alias->name);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
grub_ieee1275_devices_iterate (hook);
|
||||||
|
}
|
||||||
|
|
||||||
|
grub_err_t
|
||||||
|
grub_get_datetime (struct grub_datetime *datetime)
|
||||||
|
{
|
||||||
|
struct get_time_args
|
||||||
|
{
|
||||||
|
struct grub_ieee1275_common_hdr common;
|
||||||
|
grub_ieee1275_cell_t method;
|
||||||
|
grub_ieee1275_cell_t device;
|
||||||
|
grub_ieee1275_cell_t catch_result;
|
||||||
|
grub_ieee1275_cell_t year;
|
||||||
|
grub_ieee1275_cell_t month;
|
||||||
|
grub_ieee1275_cell_t day;
|
||||||
|
grub_ieee1275_cell_t hour;
|
||||||
|
grub_ieee1275_cell_t minute;
|
||||||
|
grub_ieee1275_cell_t second;
|
||||||
|
}
|
||||||
|
args;
|
||||||
|
int status;
|
||||||
|
grub_ieee1275_ihandle_t ihandle;
|
||||||
|
|
||||||
|
if (!rtc)
|
||||||
|
find_rtc ();
|
||||||
|
if (!rtc)
|
||||||
|
return grub_error (GRUB_ERR_IO, "no RTC found");
|
||||||
|
|
||||||
|
status = grub_ieee1275_open (rtc, &ihandle);
|
||||||
|
if (status == -1)
|
||||||
|
return grub_error (GRUB_ERR_IO, "couldn't open RTC");
|
||||||
|
|
||||||
|
INIT_IEEE1275_COMMON (&args.common, "call-method", 2, 7);
|
||||||
|
args.device = (grub_ieee1275_cell_t) ihandle;
|
||||||
|
args.method = (grub_ieee1275_cell_t) "get-time";
|
||||||
|
|
||||||
|
status = IEEE1275_CALL_ENTRY_FN (&args);
|
||||||
|
|
||||||
|
grub_ieee1275_close (ihandle);
|
||||||
|
|
||||||
|
if (status == -1)
|
||||||
|
return grub_error (GRUB_ERR_IO, "get-time failed");
|
||||||
|
|
||||||
|
datetime->year = args.year;
|
||||||
|
datetime->month = args.month;
|
||||||
|
datetime->day = args.day;
|
||||||
|
datetime->hour = args.hour;
|
||||||
|
datetime->minute = args.minute;
|
||||||
|
datetime->second = args.second;
|
||||||
|
|
||||||
|
return GRUB_ERR_NONE;
|
||||||
|
}
|
||||||
|
|
||||||
|
grub_err_t
|
||||||
|
grub_set_datetime (struct grub_datetime *datetime)
|
||||||
|
{
|
||||||
|
struct get_time_args
|
||||||
|
{
|
||||||
|
struct grub_ieee1275_common_hdr common;
|
||||||
|
grub_ieee1275_cell_t method;
|
||||||
|
grub_ieee1275_cell_t device;
|
||||||
|
grub_ieee1275_cell_t year;
|
||||||
|
grub_ieee1275_cell_t month;
|
||||||
|
grub_ieee1275_cell_t day;
|
||||||
|
grub_ieee1275_cell_t hour;
|
||||||
|
grub_ieee1275_cell_t minute;
|
||||||
|
grub_ieee1275_cell_t second;
|
||||||
|
grub_ieee1275_cell_t catch_result;
|
||||||
|
}
|
||||||
|
args;
|
||||||
|
int status;
|
||||||
|
grub_ieee1275_ihandle_t ihandle;
|
||||||
|
|
||||||
|
if (!rtc)
|
||||||
|
find_rtc ();
|
||||||
|
if (!rtc)
|
||||||
|
return grub_error (GRUB_ERR_IO, "no RTC found");
|
||||||
|
|
||||||
|
status = grub_ieee1275_open (rtc, &ihandle);
|
||||||
|
if (status == -1)
|
||||||
|
return grub_error (GRUB_ERR_IO, "couldn't open RTC");
|
||||||
|
|
||||||
|
INIT_IEEE1275_COMMON (&args.common, "call-method", 8, 1);
|
||||||
|
args.device = (grub_ieee1275_cell_t) ihandle;
|
||||||
|
args.method = (grub_ieee1275_cell_t) "set-time";
|
||||||
|
|
||||||
|
args.year = datetime->year;
|
||||||
|
args.month = datetime->month;
|
||||||
|
args.day = datetime->day;
|
||||||
|
args.hour = datetime->hour;
|
||||||
|
args.minute = datetime->minute;
|
||||||
|
args.second = datetime->second;
|
||||||
|
|
||||||
|
status = IEEE1275_CALL_ENTRY_FN (&args);
|
||||||
|
|
||||||
|
grub_ieee1275_close (ihandle);
|
||||||
|
|
||||||
|
if (status == -1)
|
||||||
|
return grub_error (GRUB_ERR_IO, "set-time failed");
|
||||||
|
|
||||||
|
return GRUB_ERR_NONE;
|
||||||
|
}
|
299
video/ieee1275.c
Normal file
299
video/ieee1275.c
Normal file
|
@ -0,0 +1,299 @@
|
||||||
|
/*
|
||||||
|
* GRUB -- GRand Unified Bootloader
|
||||||
|
* Copyright (C) 2005,2006,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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define grub_video_render_target grub_video_fbrender_target
|
||||||
|
|
||||||
|
#include <grub/err.h>
|
||||||
|
#include <grub/types.h>
|
||||||
|
#include <grub/dl.h>
|
||||||
|
#include <grub/misc.h>
|
||||||
|
#include <grub/mm.h>
|
||||||
|
#include <grub/video.h>
|
||||||
|
#include <grub/video_fb.h>
|
||||||
|
#include <grub/ieee1275/ieee1275.h>
|
||||||
|
|
||||||
|
/* Only 8-bit indexed color is supported for now. */
|
||||||
|
|
||||||
|
static unsigned old_width, old_height;
|
||||||
|
static int restore_needed;
|
||||||
|
static char *display;
|
||||||
|
|
||||||
|
static struct
|
||||||
|
{
|
||||||
|
struct grub_video_mode_info mode_info;
|
||||||
|
struct grub_video_render_target *render_target;
|
||||||
|
grub_uint8_t *ptr;
|
||||||
|
} framebuffer;
|
||||||
|
|
||||||
|
static grub_err_t
|
||||||
|
grub_video_ieee1275_set_palette (unsigned int start, unsigned int count,
|
||||||
|
struct grub_video_palette_data *palette_data);
|
||||||
|
|
||||||
|
static void
|
||||||
|
set_video_mode (unsigned width __attribute__ ((unused)),
|
||||||
|
unsigned height __attribute__ ((unused)))
|
||||||
|
{
|
||||||
|
/* TODO */
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
find_display (void)
|
||||||
|
{
|
||||||
|
auto int hook (struct grub_ieee1275_devalias *alias);
|
||||||
|
int hook (struct grub_ieee1275_devalias *alias)
|
||||||
|
{
|
||||||
|
if (grub_strcmp (alias->type, "display") == 0)
|
||||||
|
{
|
||||||
|
grub_dprintf ("video", "Found display %s\n", alias->name);
|
||||||
|
display = grub_strdup (alias->name);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
grub_ieee1275_devices_iterate (hook);
|
||||||
|
}
|
||||||
|
|
||||||
|
static grub_err_t
|
||||||
|
grub_video_ieee1275_init (void)
|
||||||
|
{
|
||||||
|
grub_memset (&framebuffer, 0, sizeof(framebuffer));
|
||||||
|
return grub_video_fb_init ();
|
||||||
|
}
|
||||||
|
|
||||||
|
static grub_err_t
|
||||||
|
grub_video_ieee1275_fini (void)
|
||||||
|
{
|
||||||
|
if (restore_needed)
|
||||||
|
{
|
||||||
|
set_video_mode (old_width, old_height);
|
||||||
|
restore_needed = 0;
|
||||||
|
}
|
||||||
|
return grub_video_fb_fini ();
|
||||||
|
}
|
||||||
|
|
||||||
|
static grub_err_t
|
||||||
|
grub_video_ieee1275_fill_mode_info (grub_ieee1275_phandle_t dev,
|
||||||
|
struct grub_video_mode_info *out)
|
||||||
|
{
|
||||||
|
grub_uint32_t tmp;
|
||||||
|
|
||||||
|
grub_memset (out, 0, sizeof (*out));
|
||||||
|
|
||||||
|
if (grub_ieee1275_get_integer_property (dev, "width", &tmp,
|
||||||
|
sizeof (tmp), 0))
|
||||||
|
return grub_error (GRUB_ERR_IO, "Couldn't retrieve display width.");
|
||||||
|
out->width = tmp;
|
||||||
|
|
||||||
|
if (grub_ieee1275_get_integer_property (dev, "height", &tmp,
|
||||||
|
sizeof (tmp), 0))
|
||||||
|
return grub_error (GRUB_ERR_IO, "Couldn't retrieve display height.");
|
||||||
|
out->height = tmp;
|
||||||
|
|
||||||
|
if (grub_ieee1275_get_integer_property (dev, "linebytes", &tmp,
|
||||||
|
sizeof (tmp), 0))
|
||||||
|
return grub_error (GRUB_ERR_IO, "Couldn't retrieve display pitch.");
|
||||||
|
out->pitch = tmp;
|
||||||
|
|
||||||
|
out->mode_type = GRUB_VIDEO_MODE_TYPE_INDEX_COLOR;
|
||||||
|
out->bpp = 8;
|
||||||
|
out->bytes_per_pixel = 1;
|
||||||
|
out->number_of_colors = 256;
|
||||||
|
|
||||||
|
out->blit_format = grub_video_get_blit_format (out);
|
||||||
|
return GRUB_ERR_NONE;
|
||||||
|
}
|
||||||
|
|
||||||
|
static grub_err_t
|
||||||
|
grub_video_ieee1275_setup (unsigned int width, unsigned int height,
|
||||||
|
unsigned int mode_type __attribute__ ((unused)),
|
||||||
|
unsigned int mode_mask __attribute__ ((unused)))
|
||||||
|
{
|
||||||
|
grub_uint32_t current_width, current_height, address;
|
||||||
|
grub_err_t err;
|
||||||
|
grub_ieee1275_phandle_t dev;
|
||||||
|
|
||||||
|
if (!display)
|
||||||
|
return grub_error (GRUB_ERR_IO, "Couldn't find display device.");
|
||||||
|
|
||||||
|
if (grub_ieee1275_finddevice (display, &dev))
|
||||||
|
return grub_error (GRUB_ERR_IO, "Couldn't open display device.");
|
||||||
|
|
||||||
|
if (grub_ieee1275_get_integer_property (dev, "width", ¤t_width,
|
||||||
|
sizeof (current_width), 0))
|
||||||
|
return grub_error (GRUB_ERR_IO, "Couldn't retrieve display width.");
|
||||||
|
|
||||||
|
if (grub_ieee1275_get_integer_property (dev, "height", ¤t_height,
|
||||||
|
sizeof (current_width), 0))
|
||||||
|
return grub_error (GRUB_ERR_IO, "Couldn't retrieve display height.");
|
||||||
|
|
||||||
|
if ((width == current_width && height == current_height)
|
||||||
|
|| (width == 0 && height == 0))
|
||||||
|
{
|
||||||
|
grub_dprintf ("video", "IEEE1275: keeping current mode %dx%d\n",
|
||||||
|
current_width, current_height);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
grub_dprintf ("video", "IEEE1275: Setting mode %dx%d\n", width, height);
|
||||||
|
/* TODO. */
|
||||||
|
return grub_error (GRUB_ERR_IO, "can't set mode %dx%d", width, height);
|
||||||
|
}
|
||||||
|
|
||||||
|
err = grub_video_ieee1275_fill_mode_info (dev, &framebuffer.mode_info);
|
||||||
|
if (err)
|
||||||
|
{
|
||||||
|
grub_dprintf ("video", "IEEE1275: couldn't fill mode info\n");
|
||||||
|
return err;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (grub_ieee1275_get_integer_property (dev, "address", &address,
|
||||||
|
sizeof (address), 0))
|
||||||
|
return grub_error (GRUB_ERR_IO, "Couldn't retrieve display address.");
|
||||||
|
|
||||||
|
framebuffer.ptr = (void *) address;
|
||||||
|
|
||||||
|
grub_video_ieee1275_set_palette (0, GRUB_VIDEO_FBSTD_NUMCOLORS,
|
||||||
|
grub_video_fbstd_colors);
|
||||||
|
|
||||||
|
grub_dprintf ("video", "IEEE1275: initialising FB @ %p %dx%dx%d\n",
|
||||||
|
framebuffer.ptr, framebuffer.mode_info.width,
|
||||||
|
framebuffer.mode_info.height, framebuffer.mode_info.bpp);
|
||||||
|
|
||||||
|
err = grub_video_fb_create_render_target_from_pointer
|
||||||
|
(&framebuffer.render_target, &framebuffer.mode_info, framebuffer.ptr);
|
||||||
|
|
||||||
|
if (err)
|
||||||
|
{
|
||||||
|
grub_dprintf ("video", "IEEE1275: Couldn't create FB target\n");
|
||||||
|
return err;
|
||||||
|
}
|
||||||
|
|
||||||
|
err = grub_video_fb_set_active_render_target (framebuffer.render_target);
|
||||||
|
|
||||||
|
if (err)
|
||||||
|
{
|
||||||
|
grub_dprintf ("video", "IEEE1275: Couldn't set FB target\n");
|
||||||
|
return err;
|
||||||
|
}
|
||||||
|
|
||||||
|
err = grub_video_fb_set_palette (0, GRUB_VIDEO_FBSTD_NUMCOLORS,
|
||||||
|
grub_video_fbstd_colors);
|
||||||
|
|
||||||
|
if (err)
|
||||||
|
grub_dprintf ("video", "IEEE1275: Couldn't set palette\n");
|
||||||
|
else
|
||||||
|
grub_dprintf ("video", "IEEE1275: Success\n");
|
||||||
|
|
||||||
|
return err;
|
||||||
|
}
|
||||||
|
|
||||||
|
static grub_err_t
|
||||||
|
grub_video_ieee1275_swap_buffers (void)
|
||||||
|
{
|
||||||
|
/* TODO: Implement buffer swapping. */
|
||||||
|
return GRUB_ERR_NONE;
|
||||||
|
}
|
||||||
|
|
||||||
|
static grub_err_t
|
||||||
|
grub_video_ieee1275_set_active_render_target (struct grub_video_render_target *target)
|
||||||
|
{
|
||||||
|
if (target == GRUB_VIDEO_RENDER_TARGET_DISPLAY)
|
||||||
|
target = framebuffer.render_target;
|
||||||
|
|
||||||
|
return grub_video_fb_set_active_render_target (target);
|
||||||
|
}
|
||||||
|
|
||||||
|
static grub_err_t
|
||||||
|
grub_video_ieee1275_get_info_and_fini (struct grub_video_mode_info *mode_info,
|
||||||
|
void **framebuf)
|
||||||
|
{
|
||||||
|
grub_memcpy (mode_info, &(framebuffer.mode_info), sizeof (*mode_info));
|
||||||
|
*framebuf = (char *) framebuffer.ptr;
|
||||||
|
|
||||||
|
grub_video_fb_fini ();
|
||||||
|
|
||||||
|
return GRUB_ERR_NONE;
|
||||||
|
}
|
||||||
|
|
||||||
|
static grub_err_t
|
||||||
|
grub_video_ieee1275_set_palette (unsigned int start, unsigned int count,
|
||||||
|
struct grub_video_palette_data *palette_data)
|
||||||
|
{
|
||||||
|
grub_err_t err;
|
||||||
|
struct grub_video_palette_data fb_palette_data[256];
|
||||||
|
|
||||||
|
err = grub_video_fb_set_palette (start, count, palette_data);
|
||||||
|
if (err)
|
||||||
|
return err;
|
||||||
|
|
||||||
|
grub_video_fb_get_palette (0, 256, fb_palette_data);
|
||||||
|
|
||||||
|
/* TODO. */
|
||||||
|
|
||||||
|
return GRUB_ERR_NONE;
|
||||||
|
}
|
||||||
|
|
||||||
|
static struct grub_video_adapter grub_video_ieee1275_adapter =
|
||||||
|
{
|
||||||
|
.name = "IEEE1275 video driver",
|
||||||
|
|
||||||
|
.init = grub_video_ieee1275_init,
|
||||||
|
.fini = grub_video_ieee1275_fini,
|
||||||
|
.setup = grub_video_ieee1275_setup,
|
||||||
|
.get_info = grub_video_fb_get_info,
|
||||||
|
.get_info_and_fini = grub_video_ieee1275_get_info_and_fini,
|
||||||
|
.set_palette = grub_video_ieee1275_set_palette,
|
||||||
|
.get_palette = grub_video_fb_get_palette,
|
||||||
|
.set_viewport = grub_video_fb_set_viewport,
|
||||||
|
.get_viewport = grub_video_fb_get_viewport,
|
||||||
|
.map_color = grub_video_fb_map_color,
|
||||||
|
.map_rgb = grub_video_fb_map_rgb,
|
||||||
|
.map_rgba = grub_video_fb_map_rgba,
|
||||||
|
.unmap_color = grub_video_fb_unmap_color,
|
||||||
|
.fill_rect = grub_video_fb_fill_rect,
|
||||||
|
.blit_bitmap = grub_video_fb_blit_bitmap,
|
||||||
|
.blit_render_target = grub_video_fb_blit_render_target,
|
||||||
|
.scroll = grub_video_fb_scroll,
|
||||||
|
.swap_buffers = grub_video_ieee1275_swap_buffers,
|
||||||
|
.create_render_target = grub_video_fb_create_render_target,
|
||||||
|
.delete_render_target = grub_video_fb_delete_render_target,
|
||||||
|
.set_active_render_target = grub_video_ieee1275_set_active_render_target,
|
||||||
|
.get_active_render_target = grub_video_fb_get_active_render_target,
|
||||||
|
|
||||||
|
.next = 0
|
||||||
|
};
|
||||||
|
|
||||||
|
GRUB_MOD_INIT(ieee1275_fb)
|
||||||
|
{
|
||||||
|
find_display ();
|
||||||
|
if (display)
|
||||||
|
grub_video_register (&grub_video_ieee1275_adapter);
|
||||||
|
}
|
||||||
|
|
||||||
|
GRUB_MOD_FINI(ieee1275_fb)
|
||||||
|
{
|
||||||
|
if (restore_needed)
|
||||||
|
{
|
||||||
|
set_video_mode (old_width, old_height);
|
||||||
|
restore_needed = 0;
|
||||||
|
}
|
||||||
|
if (display)
|
||||||
|
grub_video_unregister (&grub_video_ieee1275_adapter);
|
||||||
|
grub_free (display);
|
||||||
|
}
|
Loading…
Reference in a new issue