2010-09-03 19:19:22 +00:00
|
|
|
/* videoinfo.c - command to list video modes. */
|
|
|
|
/*
|
|
|
|
* GRUB -- GRand Unified Bootloader
|
|
|
|
* Copyright (C) 2005,2007,2008,2009,2010 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/video.h>
|
|
|
|
#include <grub/dl.h>
|
|
|
|
#include <grub/env.h>
|
|
|
|
#include <grub/misc.h>
|
|
|
|
#include <grub/mm.h>
|
|
|
|
#include <grub/command.h>
|
|
|
|
#include <grub/i18n.h>
|
|
|
|
|
2011-04-11 21:01:51 +00:00
|
|
|
GRUB_MOD_LICENSE ("GPLv3+");
|
|
|
|
|
2010-09-15 12:37:28 +00:00
|
|
|
static unsigned height, width, depth;
|
2011-06-27 09:47:02 +00:00
|
|
|
static struct grub_video_mode_info *current_mode;
|
2010-09-15 12:37:28 +00:00
|
|
|
|
2010-09-03 19:19:22 +00:00
|
|
|
static int
|
|
|
|
hook (const struct grub_video_mode_info *info)
|
|
|
|
{
|
2010-09-15 12:37:28 +00:00
|
|
|
if (height && width && (info->width != width || info->height != height))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (depth && info->bpp != depth)
|
|
|
|
return 0;
|
|
|
|
|
2010-09-03 19:40:40 +00:00
|
|
|
if (info->mode_number == GRUB_VIDEO_MODE_NUMBER_INVALID)
|
|
|
|
grub_printf (" ");
|
|
|
|
else
|
2011-06-27 09:47:02 +00:00
|
|
|
{
|
|
|
|
if (current_mode && info->mode_number == current_mode->mode_number)
|
|
|
|
grub_printf ("*");
|
|
|
|
else
|
|
|
|
grub_printf (" ");
|
|
|
|
grub_printf (" 0x%03x ", info->mode_number);
|
|
|
|
}
|
2010-09-03 20:50:11 +00:00
|
|
|
grub_printf ("%4d x %4d x %2d ", info->width, info->height, info->bpp);
|
2010-09-03 19:19:22 +00:00
|
|
|
|
2010-09-11 23:45:58 +00:00
|
|
|
if (info->mode_type & GRUB_VIDEO_MODE_TYPE_PURE_TEXT)
|
2011-11-11 20:44:56 +00:00
|
|
|
grub_xputs (_("Text-only "));
|
2010-09-03 19:19:22 +00:00
|
|
|
/* Show mask and position details for direct color modes. */
|
|
|
|
if (info->mode_type & GRUB_VIDEO_MODE_TYPE_RGB)
|
2012-03-02 14:05:30 +00:00
|
|
|
grub_printf_ (N_("Direct color, mask: %d/%d/%d/%d pos: %d/%d/%d/%d"),
|
2011-11-11 20:44:56 +00:00
|
|
|
info->red_mask_size,
|
|
|
|
info->green_mask_size,
|
|
|
|
info->blue_mask_size,
|
|
|
|
info->reserved_mask_size,
|
|
|
|
info->red_field_pos,
|
|
|
|
info->green_field_pos,
|
|
|
|
info->blue_field_pos,
|
|
|
|
info->reserved_field_pos);
|
2010-09-03 19:19:22 +00:00
|
|
|
if (info->mode_type & GRUB_VIDEO_MODE_TYPE_INDEX_COLOR)
|
2012-03-02 14:05:30 +00:00
|
|
|
grub_xputs (_("Packed pixel "));
|
2010-09-11 23:45:58 +00:00
|
|
|
if (info->mode_type & GRUB_VIDEO_MODE_TYPE_YUV)
|
2011-11-11 20:44:56 +00:00
|
|
|
grub_xputs (_("YUV "));
|
2010-09-11 23:45:58 +00:00
|
|
|
if (info->mode_type & GRUB_VIDEO_MODE_TYPE_PLANAR)
|
2012-03-03 11:59:28 +00:00
|
|
|
/* TRANSLATORS: "Planar" is the video memory where you have to write
|
|
|
|
in several different banks "plans" to control the different color
|
|
|
|
components of the same pixel. */
|
2011-11-11 20:44:56 +00:00
|
|
|
grub_xputs (_("Planar "));
|
2010-09-11 23:45:58 +00:00
|
|
|
if (info->mode_type & GRUB_VIDEO_MODE_TYPE_HERCULES)
|
2011-11-11 20:44:56 +00:00
|
|
|
grub_xputs (_("Hercules "));
|
2010-09-12 00:09:09 +00:00
|
|
|
if (info->mode_type & GRUB_VIDEO_MODE_TYPE_CGA)
|
2011-11-11 20:44:56 +00:00
|
|
|
grub_xputs (_("CGA "));
|
2010-09-12 00:09:09 +00:00
|
|
|
if (info->mode_type & GRUB_VIDEO_MODE_TYPE_NONCHAIN4)
|
2012-03-02 14:05:30 +00:00
|
|
|
/* TRANSLATORS: Non-chain 4 is a 256-color planar
|
|
|
|
(unchained) video memory mode. */
|
2011-11-11 20:44:56 +00:00
|
|
|
grub_xputs (_("Non-chain 4 "));
|
2010-09-11 23:45:58 +00:00
|
|
|
if (info->mode_type & GRUB_VIDEO_MODE_TYPE_1BIT_BITMAP)
|
2011-11-11 20:44:56 +00:00
|
|
|
grub_xputs (_("Monochrome "));
|
2010-09-11 23:45:58 +00:00
|
|
|
if (info->mode_type & GRUB_VIDEO_MODE_TYPE_UNKNOWN)
|
2012-02-26 16:28:05 +00:00
|
|
|
grub_xputs (_("Unknown video mode "));
|
2010-09-11 23:45:58 +00:00
|
|
|
|
2011-11-11 20:44:56 +00:00
|
|
|
grub_xputs ("\n");
|
2010-09-03 19:19:22 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-12-14 18:03:34 +00:00
|
|
|
static void
|
|
|
|
print_edid (struct grub_video_edid_info *edid_info)
|
|
|
|
{
|
|
|
|
unsigned int edid_width, edid_height;
|
|
|
|
|
|
|
|
if (grub_video_edid_checksum (edid_info))
|
|
|
|
{
|
2011-11-11 20:44:56 +00:00
|
|
|
grub_puts_ (N_(" EDID checksum invalid"));
|
2010-12-14 18:03:34 +00:00
|
|
|
grub_errno = GRUB_ERR_NONE;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-11-11 20:44:56 +00:00
|
|
|
grub_printf_ (N_(" EDID version: %u.%u\n"),
|
|
|
|
edid_info->version, edid_info->revision);
|
2010-12-14 18:03:34 +00:00
|
|
|
if (grub_video_edid_preferred_mode (edid_info, &edid_width, &edid_height)
|
|
|
|
== GRUB_ERR_NONE)
|
2011-11-11 20:44:56 +00:00
|
|
|
grub_printf_ (N_(" Preferred mode: %ux%u\n"), edid_width, edid_height);
|
2010-12-14 18:03:34 +00:00
|
|
|
else
|
|
|
|
{
|
2011-11-11 20:44:56 +00:00
|
|
|
grub_printf_ (N_(" No preferred mode available\n"));
|
2010-12-14 18:03:34 +00:00
|
|
|
grub_errno = GRUB_ERR_NONE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-03 19:19:22 +00:00
|
|
|
static grub_err_t
|
|
|
|
grub_cmd_videoinfo (grub_command_t cmd __attribute__ ((unused)),
|
2010-09-15 12:37:28 +00:00
|
|
|
int argc, char **args)
|
2010-09-03 19:19:22 +00:00
|
|
|
{
|
|
|
|
grub_video_adapter_t adapter;
|
2010-09-03 20:21:48 +00:00
|
|
|
grub_video_driver_id_t id;
|
|
|
|
|
2010-09-15 12:37:28 +00:00
|
|
|
height = width = depth = 0;
|
|
|
|
if (argc)
|
|
|
|
{
|
|
|
|
char *ptr;
|
|
|
|
ptr = args[0];
|
|
|
|
width = grub_strtoul (ptr, &ptr, 0);
|
|
|
|
if (grub_errno)
|
|
|
|
return grub_errno;
|
|
|
|
if (*ptr != 'x')
|
2012-02-12 14:25:25 +00:00
|
|
|
return grub_error (GRUB_ERR_BAD_ARGUMENT,
|
|
|
|
N_("invalid video mode specification `%s'"),
|
|
|
|
args[0]);
|
2010-09-15 12:37:28 +00:00
|
|
|
ptr++;
|
|
|
|
height = grub_strtoul (ptr, &ptr, 0);
|
|
|
|
if (grub_errno)
|
|
|
|
return grub_errno;
|
|
|
|
if (*ptr == 'x')
|
|
|
|
{
|
|
|
|
ptr++;
|
|
|
|
depth = grub_strtoul (ptr, &ptr, 0);
|
|
|
|
if (grub_errno)
|
|
|
|
return grub_errno;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-03 20:21:48 +00:00
|
|
|
#ifdef GRUB_MACHINE_PCBIOS
|
|
|
|
if (grub_strcmp (cmd->name, "vbeinfo") == 0)
|
|
|
|
grub_dl_load ("vbe");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
id = grub_video_get_driver_id ();
|
2010-09-03 19:19:22 +00:00
|
|
|
|
2011-11-11 20:44:56 +00:00
|
|
|
grub_puts_ (N_("List of supported video modes:"));
|
2012-03-02 14:05:30 +00:00
|
|
|
grub_puts_ (N_("Legend: mask/position=red/green/blue/reserved"));
|
2010-09-03 19:19:22 +00:00
|
|
|
|
|
|
|
FOR_VIDEO_ADAPTERS (adapter)
|
|
|
|
{
|
2011-06-27 09:47:02 +00:00
|
|
|
struct grub_video_mode_info info;
|
2010-12-14 18:03:34 +00:00
|
|
|
struct grub_video_edid_info edid_info;
|
2011-06-27 09:47:02 +00:00
|
|
|
|
2012-03-03 12:05:08 +00:00
|
|
|
grub_printf_ (N_("Adapter `%s':\n"), adapter->name);
|
2010-09-03 20:11:22 +00:00
|
|
|
|
|
|
|
if (!adapter->iterate)
|
|
|
|
{
|
2011-11-11 20:44:56 +00:00
|
|
|
grub_puts_ (N_(" No info available"));
|
2010-09-03 20:11:22 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-06-27 09:47:02 +00:00
|
|
|
current_mode = NULL;
|
|
|
|
|
|
|
|
if (adapter->id == id)
|
|
|
|
{
|
|
|
|
if (grub_video_get_info (&info) == GRUB_ERR_NONE)
|
|
|
|
current_mode = &info;
|
|
|
|
else
|
|
|
|
/* Don't worry about errors. */
|
|
|
|
grub_errno = GRUB_ERR_NONE;
|
|
|
|
}
|
|
|
|
else
|
2010-09-03 19:19:22 +00:00
|
|
|
{
|
|
|
|
if (adapter->init ())
|
|
|
|
{
|
2012-02-08 18:26:01 +00:00
|
|
|
grub_puts_ (N_(" Failed to initialize video adapter"));
|
2010-09-03 19:19:22 +00:00
|
|
|
grub_errno = GRUB_ERR_NONE;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-03 20:11:22 +00:00
|
|
|
if (adapter->print_adapter_specific_info)
|
|
|
|
adapter->print_adapter_specific_info ();
|
|
|
|
|
2010-09-03 19:19:22 +00:00
|
|
|
adapter->iterate (hook);
|
|
|
|
|
2010-12-14 19:03:28 +00:00
|
|
|
if (adapter->get_edid && adapter->get_edid (&edid_info) == GRUB_ERR_NONE)
|
2010-12-14 18:03:34 +00:00
|
|
|
print_edid (&edid_info);
|
|
|
|
else
|
|
|
|
grub_errno = GRUB_ERR_NONE;
|
|
|
|
|
2011-06-27 09:47:02 +00:00
|
|
|
current_mode = NULL;
|
|
|
|
|
2010-09-03 19:19:22 +00:00
|
|
|
if (adapter->id != id)
|
|
|
|
{
|
|
|
|
if (adapter->fini ())
|
|
|
|
{
|
|
|
|
grub_errno = GRUB_ERR_NONE;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return GRUB_ERR_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static grub_command_t cmd;
|
2010-09-03 20:21:48 +00:00
|
|
|
#ifdef GRUB_MACHINE_PCBIOS
|
|
|
|
static grub_command_t cmd_vbe;
|
|
|
|
#endif
|
2010-09-03 19:19:22 +00:00
|
|
|
|
|
|
|
GRUB_MOD_INIT(videoinfo)
|
|
|
|
{
|
2012-03-06 14:04:33 +00:00
|
|
|
cmd = grub_register_command ("videoinfo", grub_cmd_videoinfo,
|
|
|
|
/* TRANSLATORS: "x" has to be entered in,
|
|
|
|
like an identifier, so please don't
|
|
|
|
use better Unicode codepoints. */
|
|
|
|
N_("[WxH[xD]]"),
|
2010-09-15 12:37:28 +00:00
|
|
|
N_("List available video modes. If "
|
|
|
|
"resolution is given show only modes"
|
|
|
|
" matching it."));
|
2010-09-03 20:21:48 +00:00
|
|
|
#ifdef GRUB_MACHINE_PCBIOS
|
2011-11-11 20:44:56 +00:00
|
|
|
cmd_vbe = grub_register_command ("vbeinfo", grub_cmd_videoinfo,
|
2012-03-06 14:04:33 +00:00
|
|
|
/* TRANSLATORS: "x" has to be entered in,
|
|
|
|
like an identifier, so please don't
|
|
|
|
use better Unicode codepoints. */
|
2011-11-11 20:44:56 +00:00
|
|
|
N_("[WxH[xD]]"),
|
2010-09-15 12:37:28 +00:00
|
|
|
N_("List available video modes. If "
|
|
|
|
"resolution is given show only modes"
|
|
|
|
" matching it."));
|
2010-09-03 20:21:48 +00:00
|
|
|
#endif
|
2010-09-03 19:19:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GRUB_MOD_FINI(videoinfo)
|
|
|
|
{
|
|
|
|
grub_unregister_command (cmd);
|
2010-09-03 20:21:48 +00:00
|
|
|
#ifdef GRUB_MACHINE_PCBIOS
|
|
|
|
grub_unregister_command (cmd_vbe);
|
|
|
|
#endif
|
2010-09-03 19:19:22 +00:00
|
|
|
}
|
|
|
|
|