* Added VESA capabilities field to the kernel args.

* The vesa driver no longer uses VGA programming if the chip does not support
  VGA compatibility.
* The VESA driver now tries to set the DAC to 8 bits per color gun.
* In VESA modes, the driver no longer tries to use VGA programming; introduced
  the new vesa_set_indexed_colors() that is now used for palette programming.
  This should fix wrong colors of 8 bit BWindowScreen users with VESA on real
  hardware (emulators usually didn't mind either way).
* Note that the app_server needs to maintain a palette per 8 bit screen, as
  right now, the colors are garbled after a workspace switch. Stefano, are you
  looking into that already?


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32347 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2009-08-14 09:49:28 +00:00
parent 09a1793e4f
commit bb693d7764
11 changed files with 184 additions and 37 deletions
+4
View File
@@ -37,6 +37,10 @@ struct vbe_info_block {
uint8 oem_data[256]; uint8 oem_data[256];
} _PACKED; } _PACKED;
// capabilities
#define CAPABILITY_DAC_WIDTH 0x01
#define CAPABILITY_VGA_COMPATIBLE 0x02
/* VBE mode info structure */ /* VBE mode info structure */
+6 -6
View File
@@ -31,9 +31,9 @@ struct vesa_shared_info {
uint32 bytes_per_row; uint32 bytes_per_row;
area_id frame_buffer_area; // area of frame buffer area_id frame_buffer_area; // area of frame buffer
uint8 *frame_buffer; uint8* frame_buffer;
// pointer to frame buffer (visible by all apps!) // pointer to frame buffer (visible by all apps!)
uint8 *physical_frame_buffer; uint8* physical_frame_buffer;
uint32 vesa_mode_offset; uint32 vesa_mode_offset;
uint32 vesa_mode_count; uint32 vesa_mode_count;
@@ -52,19 +52,19 @@ enum {
VESA_SET_DISPLAY_MODE, VESA_SET_DISPLAY_MODE,
VESA_GET_DPMS_MODE, VESA_GET_DPMS_MODE,
VESA_SET_DPMS_MODE, VESA_SET_DPMS_MODE,
VESA_SET_INDEXED_COLORS,
VGA_SET_INDEXED_COLORS,
VGA_PLANAR_BLIT, VGA_PLANAR_BLIT,
}; };
struct vga_set_indexed_colors_args { struct vesa_set_indexed_colors_args {
uint8 first; uint8 first;
uint16 count; uint16 count;
uint8 *colors; uint8* colors;
}; };
struct vga_planar_blit_args { struct vga_planar_blit_args {
uint8 *source; uint8* source;
int32 source_bytes_per_row; int32 source_bytes_per_row;
int32 left; int32 left;
int32 top; int32 top;
+2 -1
View File
@@ -72,7 +72,8 @@ typedef struct kernel_args {
} frame_buffer; } frame_buffer;
void *vesa_modes; void *vesa_modes;
uint32 vesa_modes_size; uint16 vesa_modes_size;
uint8 vesa_capabilities;
void *edid_info; void *edid_info;
void *debug_output; void *debug_output;
@@ -1,12 +1,14 @@
/* /*
* Copyright 2005, Axel Dörfler, [email protected]. All rights reserved. * Copyright 2005-2009, Axel Dörfler, [email protected].
* Distributed under the terms of the MIT License. * Distributed under the terms of the MIT License.
*/ */
#ifndef KERNEL_FRAME_BUFFER_CONSOLE_H #ifndef KERNEL_FRAME_BUFFER_CONSOLE_H
#define KERNEL_FRAME_BUFFER_CONSOLE_H #define KERNEL_FRAME_BUFFER_CONSOLE_H
#include <console.h> #include <console.h>
struct kernel_args; struct kernel_args;
@@ -20,6 +22,7 @@ struct frame_buffer_boot_info {
int32 height; int32 height;
int32 depth; int32 depth;
int32 bytes_per_row; int32 bytes_per_row;
uint8 vesa_capabilities;
}; };
#ifdef __cplusplus #ifdef __cplusplus
@@ -27,11 +30,11 @@ extern "C" {
#endif #endif
bool frame_buffer_console_available(void); bool frame_buffer_console_available(void);
status_t frame_buffer_console_init(struct kernel_args *args); status_t frame_buffer_console_init(struct kernel_args* args);
status_t frame_buffer_console_init_post_modules(struct kernel_args *args); status_t frame_buffer_console_init_post_modules(struct kernel_args* args);
status_t _user_frame_buffer_update(addr_t baseAddress, int32 width, int32 height, status_t _user_frame_buffer_update(addr_t baseAddress, int32 width,
int32 depth, int32 bytesPerRow); int32 height, int32 depth, int32 bytesPerRow);
#ifdef __cplusplus #ifdef __cplusplus
} }
+7 -6
View File
@@ -193,7 +193,7 @@ vesa_get_frame_buffer_config(frame_buffer_config* config)
status_t status_t
vesa_get_pixel_clock_limits(display_mode* mode, uint32* low, uint32* high) vesa_get_pixel_clock_limits(display_mode* mode, uint32* _low, uint32* _high)
{ {
TRACE(("vesa_get_pixel_clock_limits()\n")); TRACE(("vesa_get_pixel_clock_limits()\n"));
@@ -203,11 +203,11 @@ vesa_get_pixel_clock_limits(display_mode* mode, uint32* low, uint32* high)
uint32 clockLimit = 2000000; uint32 clockLimit = 2000000;
// lower limit of about 48Hz vertical refresh // lower limit of about 48Hz vertical refresh
*low = totalPixel * 48L / 1000L; *_low = totalPixel * 48L / 1000L;
if (*low > clockLimit) if (*_low > clockLimit)
return B_ERROR; return B_ERROR;
*high = clockLimit; *_high = clockLimit;
return B_OK; return B_OK;
} }
@@ -232,10 +232,11 @@ void
vesa_set_indexed_colors(uint count, uint8 first, uint8* colors, uint32 flags) vesa_set_indexed_colors(uint count, uint8 first, uint8* colors, uint32 flags)
{ {
TRACE(("vesa_set_indexed_colors()\n")); TRACE(("vesa_set_indexed_colors()\n"));
vga_set_indexed_colors_args args;
vesa_set_indexed_colors_args args;
args.first = first; args.first = first;
args.count = count; args.count = count;
args.colors = colors; args.colors = colors;
ioctl(gInfo->device, VGA_SET_INDEXED_COLORS, &args, sizeof(args)); ioctl(gInfo->device, VESA_SET_INDEXED_COLORS, &args, sizeof(args));
} }
@@ -17,6 +17,8 @@
#include <PCI.h> #include <PCI.h>
#include <SupportDefs.h> #include <SupportDefs.h>
#include <vesa.h>
#include "driver.h" #include "driver.h"
#include "utility.h" #include "utility.h"
#include "vesa_info.h" #include "vesa_info.h"
@@ -125,7 +127,7 @@ device_ioctl(void* cookie, uint32 msg, void* buffer, size_t bufferLength)
return B_BAD_VALUE; return B_BAD_VALUE;
uint32 mode; uint32 mode;
if (user_memcpy(&mode, buffer, sizeof(uint32)) < B_OK) if (user_memcpy(&mode, buffer, sizeof(uint32)) != B_OK)
return B_BAD_ADDRESS; return B_BAD_ADDRESS;
return vesa_set_display_mode(*info, mode); return vesa_set_display_mode(*info, mode);
@@ -150,25 +152,38 @@ device_ioctl(void* cookie, uint32 msg, void* buffer, size_t bufferLength)
return B_BAD_VALUE; return B_BAD_VALUE;
uint32 mode; uint32 mode;
if (user_memcpy(&mode, buffer, sizeof(uint32)) < B_OK) if (user_memcpy(&mode, buffer, sizeof(uint32)) != B_OK)
return B_BAD_ADDRESS; return B_BAD_ADDRESS;
return vesa_set_dpms_mode(*info, mode); return vesa_set_dpms_mode(*info, mode);
} }
case VGA_SET_INDEXED_COLORS: case VESA_SET_INDEXED_COLORS:
{ {
vga_set_indexed_colors_args args; vesa_set_indexed_colors_args args;
if (user_memcpy(&args, buffer, sizeof(args)) < B_OK) if (user_memcpy(&args, buffer, sizeof(args)) != B_OK)
return B_BAD_ADDRESS; return B_BAD_ADDRESS;
return vga_set_indexed_colors(args.first, args.colors, args.count); if (info->shared_info->current_mode.space == B_GRAY8) {
if ((info->vbe_capabilities & CAPABILITY_VGA_COMPATIBLE) == 0)
return B_NOT_SUPPORTED;
return vga_set_indexed_colors(args.first, args.colors,
args.count);
}
return vesa_set_indexed_colors(*info, args.first, args.colors,
args.count);
} }
case VGA_PLANAR_BLIT: case VGA_PLANAR_BLIT:
{ {
if (info->shared_info->current_mode.space != B_GRAY8
&& (info->vbe_capabilities & CAPABILITY_VGA_COMPATIBLE) == 0)
return B_NOT_SUPPORTED;
vga_planar_blit_args args; vga_planar_blit_args args;
if (user_memcpy(&args, buffer, sizeof(args)) < B_OK) if (user_memcpy(&args, buffer, sizeof(args)) != B_OK)
return B_BAD_ADDRESS; return B_BAD_ADDRESS;
return vga_planar_blit(info->shared_info, args.source, return vga_planar_blit(info->shared_info, args.source,
@@ -154,6 +154,52 @@ out:
} }
static status_t
vbe_set_bits_per_gun(vm86_state& vmState, vesa_info& info, uint8 bits)
{
info.bits_per_gun = 6;
vmState.regs.eax = 0x4f08;
vmState.regs.ebx = (bits << 8) | 1;
status_t status = vm86_do_int(&vmState, 0x10);
if (status != B_OK) {
dprintf(DEVICE_NAME ": vbe_set_bits_per_gun(): vm86 failed: %s\n",
strerror(status));
return status;
}
if ((vmState.regs.eax & 0xffff) != 0x4f) {
dprintf(DEVICE_NAME ": vbe_set_bits_per_gun(): BIOS returned 0x%04lx\n",
vmState.regs.eax & 0xffff);
return B_ERROR;
}
info.bits_per_gun = vmState.regs.ebx >> 8;
return B_OK;
}
static status_t
vbe_set_bits_per_gun(vesa_info& info, uint8 bits)
{
info.bits_per_gun = 6;
struct vm86_state vmState;
status_t status = vm86_prepare(&vmState, 0x20000);
if (status != B_OK) {
dprintf(DEVICE_NAME": vbe_set_bits_per_gun(): vm86_prepare failed: "
"%s\n", strerror(status));
return status;
}
status = vbe_set_bits_per_gun(vmState, info, bits);
vm86_cleanup(&vmState);
return status;
}
// #pragma mark - // #pragma mark -
@@ -165,6 +211,8 @@ vesa_init(vesa_info& info)
if (bufferInfo == NULL) if (bufferInfo == NULL)
return B_ERROR; return B_ERROR;
info.vbe_capabilities = bufferInfo->vesa_capabilities;
size_t modesSize = 0; size_t modesSize = 0;
vesa_mode* modes = (vesa_mode*)get_boot_item(VESA_MODES_BOOT_INFO, vesa_mode* modes = (vesa_mode*)get_boot_item(VESA_MODES_BOOT_INFO,
&modesSize); &modesSize);
@@ -176,7 +224,7 @@ vesa_init(vesa_info& info)
(void**)&info.shared_info, B_ANY_KERNEL_ADDRESS, (void**)&info.shared_info, B_ANY_KERNEL_ADDRESS,
ROUND_TO_PAGE_SIZE(sharedSize + modesSize), B_FULL_LOCK, ROUND_TO_PAGE_SIZE(sharedSize + modesSize), B_FULL_LOCK,
B_KERNEL_READ_AREA | B_KERNEL_WRITE_AREA | B_USER_CLONEABLE_AREA); B_KERNEL_READ_AREA | B_KERNEL_WRITE_AREA | B_USER_CLONEABLE_AREA);
if (info.shared_area < B_OK) if (info.shared_area < 0)
return info.shared_area; return info.shared_area;
vesa_shared_info &sharedInfo = *info.shared_info; vesa_shared_info &sharedInfo = *info.shared_info;
@@ -199,7 +247,6 @@ vesa_init(vesa_info& info)
bufferInfo->depth); bufferInfo->depth);
sharedInfo.bytes_per_row = bufferInfo->bytes_per_row; sharedInfo.bytes_per_row = bufferInfo->bytes_per_row;
// TODO: we might want to do this via vm86 instead
edid1_info* edidInfo = (edid1_info*)get_boot_item(VESA_EDID_BOOT_INFO, edid1_info* edidInfo = (edid1_info*)get_boot_item(VESA_EDID_BOOT_INFO,
NULL); NULL);
if (edidInfo != NULL) { if (edidInfo != NULL) {
@@ -209,6 +256,8 @@ vesa_init(vesa_info& info)
vbe_get_dpms_capabilities(info.vbe_dpms_capabilities, vbe_get_dpms_capabilities(info.vbe_dpms_capabilities,
sharedInfo.dpms_capabilities); sharedInfo.dpms_capabilities);
if (bufferInfo->depth <= 8)
vbe_set_bits_per_gun(info, 8);
physical_entry mapping; physical_entry mapping;
get_memory_map((void*)sharedInfo.frame_buffer, B_PAGE_SIZE, &mapping, 1); get_memory_map((void*)sharedInfo.frame_buffer, B_PAGE_SIZE, &mapping, 1);
@@ -261,6 +310,9 @@ vesa_set_display_mode(vesa_info& info, uint32 mode)
goto out; goto out;
} }
if (info.modes[mode].bits_per_pixel <= 8)
vbe_set_bits_per_gun(vmState, info, 8);
// Map new frame buffer // Map new frame buffer
void* frameBuffer; void* frameBuffer;
frameBufferArea = map_physical_memory("vesa_fb", frameBufferArea = map_physical_memory("vesa_fb",
@@ -391,3 +443,62 @@ out:
vm86_cleanup(&vmState); vm86_cleanup(&vmState);
return status; return status;
} }
status_t
vesa_set_indexed_colors(vesa_info& info, uint8 first, uint8* colors,
uint16 count)
{
if (first + count > 256)
count = 256 - first;
// Prepare vm86 mode environment
struct vm86_state vmState;
status_t status = vm86_prepare(&vmState, 0x20000);
if (status != B_OK) {
dprintf(DEVICE_NAME": vesa_set_indexed_colors(): vm86_prepare failed: "
"%s\n", strerror(status));
return status;
}
uint8* palette = (uint8*)0x1000;
uint32 shift = 8 - info.bits_per_gun;
// convert colors to VESA palette
for (int32 i = first; i < count; i++) {
uint8 color[3];
if (user_memcpy(color, &colors[i * 3], 3) < B_OK)
return B_BAD_ADDRESS;
// order is BGR-
palette[i * 4 + 0] = color[2] >> shift;
palette[i * 4 + 1] = color[1] >> shift;
palette[i * 4 + 2] = color[0] >> shift;
palette[i * 4 + 3] = 0;
}
// set palette
vmState.regs.eax = 0x4f09;
vmState.regs.ebx = 0;
vmState.regs.ecx = count;
vmState.regs.edx = first;
vmState.regs.es = 0x1000 >> 4;
vmState.regs.edi = 0x0000;
status = vm86_do_int(&vmState, 0x10);
if (status != B_OK) {
dprintf(DEVICE_NAME ": vesa_set_indexed_colors(): vm86 failed: %s\n",
strerror(status));
goto out;
}
if ((vmState.regs.eax & 0xffff) != 0x4f) {
dprintf(DEVICE_NAME ": vesa_set_indexed_colors(): BIOS returned "
"0x%04lx\n", vmState.regs.eax & 0xffff);
status = B_ERROR;
}
out:
vm86_cleanup(&vmState);
return status;
}
@@ -27,6 +27,8 @@ struct vesa_info {
area_id shared_area; area_id shared_area;
vesa_mode* modes; vesa_mode* modes;
uint32 vbe_dpms_capabilities; uint32 vbe_dpms_capabilities;
uint8 vbe_capabilities;
uint8 bits_per_gun;
}; };
extern status_t vesa_init(vesa_info& info); extern status_t vesa_init(vesa_info& info);
@@ -34,5 +36,7 @@ extern void vesa_uninit(vesa_info& info);
extern status_t vesa_set_display_mode(vesa_info& info, uint32 mode); extern status_t vesa_set_display_mode(vesa_info& info, uint32 mode);
extern status_t vesa_get_dpms_mode(vesa_info& info, uint32& mode); extern status_t vesa_get_dpms_mode(vesa_info& info, uint32& mode);
extern status_t vesa_set_dpms_mode(vesa_info& info, uint32 mode); extern status_t vesa_set_dpms_mode(vesa_info& info, uint32 mode);
extern status_t vesa_set_indexed_colors(vesa_info& info, uint8 first,
uint8* colors, uint16 count);
#endif /* VESA_PRIVATE_H */ #endif /* VESA_PRIVATE_H */
@@ -1,5 +1,5 @@
/* /*
* Copyright 2006, Axel Dörfler, [email protected]. All rights reserved. * Copyright 2006-2009, Axel Dörfler, [email protected].
* Distributed under the terms of the MIT License. * Distributed under the terms of the MIT License.
*/ */
@@ -15,6 +15,9 @@
status_t status_t
vga_set_indexed_colors(uint8 first, uint8 *colors, uint16 count) vga_set_indexed_colors(uint8 first, uint8 *colors, uint16 count)
{ {
if (first + count > 256)
count = 256 - first;
gISA->write_io_8(VGA_COLOR_WRITE_MODE, first); gISA->write_io_8(VGA_COLOR_WRITE_MODE, first);
// write VGA palette // write VGA palette
@@ -1159,9 +1159,12 @@ platform_init_video(void)
sVesaCompatible = vesa_init(&sInfo, &sDefaultMode) == B_OK; sVesaCompatible = vesa_init(&sInfo, &sDefaultMode) == B_OK;
if (!sVesaCompatible) { if (!sVesaCompatible) {
TRACE(("No VESA compatible graphics!\n")); TRACE(("No VESA compatible graphics!\n"));
gKernelArgs.vesa_capabilities = CAPABILITY_VGA_COMPATIBLE;
return B_ERROR; return B_ERROR;
} }
gKernelArgs.vesa_capabilities = sInfo.capabilities;
TRACE(("VESA compatible graphics!\n")); TRACE(("VESA compatible graphics!\n"));
// store VESA modes into kernel args // store VESA modes into kernel args
@@ -417,7 +417,7 @@ frame_buffer_console_init(kernel_args* args)
(void*)args->frame_buffer.physical_buffer.start, (void*)args->frame_buffer.physical_buffer.start,
args->frame_buffer.physical_buffer.size, B_ANY_KERNEL_ADDRESS, args->frame_buffer.physical_buffer.size, B_ANY_KERNEL_ADDRESS,
B_READ_AREA | B_WRITE_AREA | B_USER_CLONEABLE_AREA, &frameBuffer); B_READ_AREA | B_WRITE_AREA | B_USER_CLONEABLE_AREA, &frameBuffer);
if (sConsole.area < B_OK) if (sConsole.area < 0)
return sConsole.area; return sConsole.area;
frame_buffer_update((addr_t)frameBuffer, args->frame_buffer.width, frame_buffer_update((addr_t)frameBuffer, args->frame_buffer.width,
@@ -430,6 +430,8 @@ frame_buffer_console_init(kernel_args* args)
sBootInfo.height = args->frame_buffer.height; sBootInfo.height = args->frame_buffer.height;
sBootInfo.depth = args->frame_buffer.depth; sBootInfo.depth = args->frame_buffer.depth;
sBootInfo.bytes_per_row = args->frame_buffer.bytes_per_row; sBootInfo.bytes_per_row = args->frame_buffer.bytes_per_row;
sBootInfo.vesa_capabilities = args->vesa_capabilities;
add_boot_item(FRAME_BUFFER_BOOT_INFO, &sBootInfo, add_boot_item(FRAME_BUFFER_BOOT_INFO, &sBootInfo,
sizeof(frame_buffer_boot_info)); sizeof(frame_buffer_boot_info));