hppa: Artist graphics driver fixes for HP-UX and keyboard fix in firmware boot console

This series updates the SeaBIOS-hppa firmware to version 5, in which additional
 HP fonts were added to the firmware and the firmware boot console was fixed to
 accept input from the emulated PS/2 keyboard when running in graphical mode
 (serial console was working before already). To test use the "-boot menu=on"
 qemu option.
 
 The artist graphics card driver got various fixes when running the X11-Windows
 on HP-UX:
 - fixes the horizontal and vertical postioning of the X11 cursor with HP-UX
 - allows X11 to blank the screen (e.g. screensaver)
 - allows the X11 driver to turn the X11 cursor on/off
 
 Signed-off-by: Helge Deller <deller@gmx.de>
 
 --
 Changes compared to version 2 of this series:
 - Fixed style issues in the X-cursor positioning patch (noticed by Mark Cave-Ayland)
 
 Changes compared to version 1 of this series:
 - Added some Acked-by's from Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
 - SeaBIOS-hppa v5 instead of v4 (PS/2 keyboard now works in boot console)
 - integrated artist X11 X-cusor positioning fix (which was sent serperately before)
 
 --
 This series should apply cleanly on git head and can be pulled for testing
 from: https://github.com/hdeller/qemu-hppa.git   artist-cursor-fix-final
 -----BEGIN PGP SIGNATURE-----
 
 iHUEABYKAB0WIQS86RI+GtKfB8BJu973ErUQojoPXwUCYoUcLwAKCRD3ErUQojoP
 X/joAQCmuV5MD+BTWf91fRTfzXSfOYSp1XahTaItUldKG2ZBWQD+Lflhsoyg4xLd
 2daeDRN1tH2HWldjnCPyMyZ5Ag97PwY=
 =ZrTm
 -----END PGP SIGNATURE-----

Merge tag 'artist-cursor-fix-final-pull-request' of https://github.com/hdeller/qemu-hppa into staging

hppa: Artist graphics driver fixes for HP-UX and keyboard fix in firmware boot console

This series updates the SeaBIOS-hppa firmware to version 5, in which additional
HP fonts were added to the firmware and the firmware boot console was fixed to
accept input from the emulated PS/2 keyboard when running in graphical mode
(serial console was working before already). To test use the "-boot menu=on"
qemu option.

The artist graphics card driver got various fixes when running the X11-Windows
on HP-UX:
- fixes the horizontal and vertical postioning of the X11 cursor with HP-UX
- allows X11 to blank the screen (e.g. screensaver)
- allows the X11 driver to turn the X11 cursor on/off

Signed-off-by: Helge Deller <deller@gmx.de>

--
Changes compared to version 2 of this series:
- Fixed style issues in the X-cursor positioning patch (noticed by Mark Cave-Ayland)

Changes compared to version 1 of this series:
- Added some Acked-by's from Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
- SeaBIOS-hppa v5 instead of v4 (PS/2 keyboard now works in boot console)
- integrated artist X11 X-cusor positioning fix (which was sent serperately before)

--
This series should apply cleanly on git head and can be pulled for testing
from: https://github.com/hdeller/qemu-hppa.git   artist-cursor-fix-final

# -----BEGIN PGP SIGNATURE-----
#
# iHUEABYKAB0WIQS86RI+GtKfB8BJu973ErUQojoPXwUCYoUcLwAKCRD3ErUQojoP
# X/joAQCmuV5MD+BTWf91fRTfzXSfOYSp1XahTaItUldKG2ZBWQD+Lflhsoyg4xLd
# 2daeDRN1tH2HWldjnCPyMyZ5Ag97PwY=
# =ZrTm
# -----END PGP SIGNATURE-----
# gpg: Signature made Wed 18 May 2022 09:17:51 AM PDT
# gpg:                using EDDSA key BCE9123E1AD29F07C049BBDEF712B510A23A0F5F
# gpg: Good signature from "Helge Deller <deller@gmx.de>" [unknown]
# gpg:                 aka "Helge Deller <deller@kernel.org>" [unknown]
# gpg: WARNING: This key is not certified with a trusted signature!
# gpg:          There is no indication that the signature belongs to the owner.
# Primary key fingerprint: 4544 8228 2CD9 10DB EF3D  25F8 3E5F 3D04 A7A2 4603
#      Subkey fingerprint: BCE9 123E 1AD2 9F07 C049  BBDE F712 B510 A23A 0F5F

* tag 'artist-cursor-fix-final-pull-request' of https://github.com/hdeller/qemu-hppa:
  artist: Fix X cursor position calculation in X11
  artist: Emulate screen blanking
  artist: Allow to turn cursor on or off
  artist: Fix vertical X11 cursor position in HP-UX
  artist: Use human-readable variable names instead of reg_xxx
  artist: Introduce constant for max cursor size
  seabios-hppa: Update SeaBIOS-hppa to VERSION 5

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
master
Richard Henderson 2022-05-18 09:32:15 -07:00
commit 78ac2eebba
3 changed files with 126 additions and 44 deletions

View File

@ -1,7 +1,8 @@
/* /*
* QEMU HP Artist Emulation * QEMU HP Artist Emulation
* *
* Copyright (c) 2019 Sven Schnelle <svens@stackframe.org> * Copyright (c) 2019-2022 Sven Schnelle <svens@stackframe.org>
* Copyright (c) 2022 Helge Deller <deller@gmx.de>
* *
* This work is licensed under the terms of the GNU GPL, version 2 or later. * This work is licensed under the terms of the GNU GPL, version 2 or later.
*/ */
@ -81,9 +82,10 @@ struct ARTISTState {
uint32_t plane_mask; uint32_t plane_mask;
uint32_t reg_100080; uint32_t reg_100080;
uint32_t reg_300200; uint32_t horiz_backporch;
uint32_t reg_300208; uint32_t active_lines_low;
uint32_t reg_300218; uint32_t misc_video;
uint32_t misc_ctrl;
uint32_t dst_bm_access; uint32_t dst_bm_access;
uint32_t src_bm_access; uint32_t src_bm_access;
@ -98,6 +100,9 @@ struct ARTISTState {
int draw_line_pattern; int draw_line_pattern;
}; };
/* hardware allows up to 64x64, but we emulate 32x32 only. */
#define NGLE_MAX_SPRITE_SIZE 32
typedef enum { typedef enum {
ARTIST_BUFFER_AP = 1, ARTIST_BUFFER_AP = 1,
ARTIST_BUFFER_OVERLAY = 2, ARTIST_BUFFER_OVERLAY = 2,
@ -135,8 +140,14 @@ typedef enum {
BG_COLOR = 0x118014, BG_COLOR = 0x118014,
PLANE_MASK = 0x118018, PLANE_MASK = 0x118018,
IMAGE_BITMAP_OP = 0x11801c, IMAGE_BITMAP_OP = 0x11801c,
CURSOR_POS = 0x300100, CURSOR_POS = 0x300100, /* reg17 */
CURSOR_CTRL = 0x300104, CURSOR_CTRL = 0x300104, /* reg18 */
MISC_VIDEO = 0x300218, /* reg21 */
MISC_CTRL = 0x300308, /* reg27 */
HORIZ_BACKPORCH = 0x300200, /* reg19 */
ACTIVE_LINES_LOW = 0x300208,/* reg20 */
FIFO1 = 0x300008, /* reg34 */
FIFO2 = 0x380008,
} artist_reg_t; } artist_reg_t;
typedef enum { typedef enum {
@ -174,17 +185,25 @@ static const char *artist_reg_name(uint64_t addr)
REG_NAME(SRC_BM_ACCESS); REG_NAME(SRC_BM_ACCESS);
REG_NAME(CURSOR_POS); REG_NAME(CURSOR_POS);
REG_NAME(CURSOR_CTRL); REG_NAME(CURSOR_CTRL);
REG_NAME(HORIZ_BACKPORCH);
REG_NAME(ACTIVE_LINES_LOW);
REG_NAME(MISC_VIDEO);
REG_NAME(MISC_CTRL);
REG_NAME(LINE_XY); REG_NAME(LINE_XY);
REG_NAME(PATTERN_LINE_START); REG_NAME(PATTERN_LINE_START);
REG_NAME(LINE_SIZE); REG_NAME(LINE_SIZE);
REG_NAME(LINE_END); REG_NAME(LINE_END);
REG_NAME(FONT_WRITE_INCR_Y); REG_NAME(FONT_WRITE_INCR_Y);
REG_NAME(FONT_WRITE_START); REG_NAME(FONT_WRITE_START);
REG_NAME(FIFO1);
REG_NAME(FIFO2);
} }
return ""; return "";
} }
#undef REG_NAME #undef REG_NAME
static void artist_invalidate(void *opaque);
/* artist has a fixed line length of 2048 bytes. */ /* artist has a fixed line length of 2048 bytes. */
#define ADDR_TO_Y(addr) extract32(addr, 11, 11) #define ADDR_TO_Y(addr) extract32(addr, 11, 11)
#define ADDR_TO_X(addr) extract32(addr, 0, 11) #define ADDR_TO_X(addr) extract32(addr, 0, 11)
@ -295,19 +314,15 @@ static void artist_rop8(ARTISTState *s, struct vram_buffer *buf,
static void artist_get_cursor_pos(ARTISTState *s, int *x, int *y) static void artist_get_cursor_pos(ARTISTState *s, int *x, int *y)
{ {
/* /*
* Don't know whether these magic offset values are configurable via
* some register. They seem to be the same for all resolutions.
* The cursor values provided in the registers are:
* X-value: -295 (for HP-UX 11) and 338 (for HP-UX 10.20) up to 2265
* Y-value: 1146 down to 0
* The emulated Artist graphic is like a CRX graphic, and as such * The emulated Artist graphic is like a CRX graphic, and as such
* it's usually fixed at 1280x1024 pixels. * it's usually fixed at 1280x1024 pixels.
* Because of the maximum Y-value of 1146 you can not choose a higher * Other resolutions may work, but no guarantee.
* vertical resolution on HP-UX (unless you disable the mouse).
*/ */
static int offset = 338; unsigned int hbp_times_vi, horizBackPorch;
int lx; int16_t xHi, xLo;
const int videoInterleave = 4;
const int pipelineDelay = 4;
/* ignore if uninitialized */ /* ignore if uninitialized */
if (s->cursor_pos == 0) { if (s->cursor_pos == 0) {
@ -315,16 +330,24 @@ static void artist_get_cursor_pos(ARTISTState *s, int *x, int *y)
return; return;
} }
lx = artist_get_x(s->cursor_pos); /*
if (lx < offset) { * Calculate X position based on backporch and interleave values.
offset = lx; * Based on code from Xorg X11R6.6
} */
*x = (lx - offset) / 2; horizBackPorch = ((s->horiz_backporch & 0xff0000) >> 16) +
((s->horiz_backporch & 0xff00) >> 8) + 2;
hbp_times_vi = horizBackPorch * videoInterleave;
xHi = s->cursor_pos >> 19;
*x = ((xHi + pipelineDelay) * videoInterleave) - hbp_times_vi;
*y = 1146 - artist_get_y(s->cursor_pos); xLo = (s->cursor_pos >> 16) & 0x07;
*x += ((xLo - hbp_times_vi) & (videoInterleave - 1)) + 8 - 1;
/* subtract cursor offset from cursor control register */ /* subtract cursor offset from cursor control register */
*x -= (s->cursor_cntrl & 0xf0) >> 4; *x -= (s->cursor_cntrl & 0xf0) >> 4;
/* Calculate Y position */
*y = s->height - artist_get_y(s->cursor_pos);
*y -= (s->cursor_cntrl & 0x0f); *y -= (s->cursor_cntrl & 0x0f);
if (*x > s->width) { if (*x > s->width) {
@ -336,10 +359,20 @@ static void artist_get_cursor_pos(ARTISTState *s, int *x, int *y)
} }
} }
static inline bool cursor_visible(ARTISTState *s)
{
/* cursor is visible if bit 0x80 is set in cursor_cntrl */
return s->cursor_cntrl & 0x80;
}
static void artist_invalidate_cursor(ARTISTState *s) static void artist_invalidate_cursor(ARTISTState *s)
{ {
int x, y; int x, y;
if (!cursor_visible(s)) {
return;
}
artist_get_cursor_pos(s, &x, &y); artist_get_cursor_pos(s, &x, &y);
artist_invalidate_lines(&s->vram_buffer[ARTIST_BUFFER_AP], artist_invalidate_lines(&s->vram_buffer[ARTIST_BUFFER_AP],
y, s->cursor_height); y, s->cursor_height);
@ -876,6 +909,7 @@ static void artist_reg_write(void *opaque, hwaddr addr, uint64_t val,
{ {
ARTISTState *s = opaque; ARTISTState *s = opaque;
int width, height; int width, height;
uint64_t oldval;
trace_artist_reg_write(size, addr, artist_reg_name(addr & ~3ULL), val); trace_artist_reg_write(size, addr, artist_reg_name(addr & ~3ULL), val);
@ -1025,16 +1059,33 @@ static void artist_reg_write(void *opaque, hwaddr addr, uint64_t val,
combine_write_reg(addr, val, size, &s->transfer_data); combine_write_reg(addr, val, size, &s->transfer_data);
break; break;
case 0x300200: case HORIZ_BACKPORCH:
combine_write_reg(addr, val, size, &s->reg_300200); /* overwrite HP-UX settings to fix X cursor position. */
val = (NGLE_MAX_SPRITE_SIZE << 16) + (NGLE_MAX_SPRITE_SIZE << 8);
combine_write_reg(addr, val, size, &s->horiz_backporch);
break; break;
case 0x300208: case ACTIVE_LINES_LOW:
combine_write_reg(addr, val, size, &s->reg_300208); combine_write_reg(addr, val, size, &s->active_lines_low);
break; break;
case 0x300218: case MISC_VIDEO:
combine_write_reg(addr, val, size, &s->reg_300218); oldval = s->misc_video;
combine_write_reg(addr, val, size, &s->misc_video);
/* Invalidate and hide screen if graphics signal is turned off. */
if (((oldval & 0x0A000000) == 0x0A000000) &&
((val & 0x0A000000) != 0x0A000000)) {
artist_invalidate(s);
}
/* Invalidate and redraw screen if graphics signal is turned back on. */
if (((oldval & 0x0A000000) != 0x0A000000) &&
((val & 0x0A000000) == 0x0A000000)) {
artist_invalidate(s);
}
break;
case MISC_CTRL:
combine_write_reg(addr, val, size, &s->misc_ctrl);
break; break;
case CURSOR_POS: case CURSOR_POS:
@ -1119,12 +1170,11 @@ static uint64_t artist_reg_read(void *opaque, hwaddr addr, unsigned size)
case 0x100000: case 0x100000:
case 0x300000: case 0x300000:
case 0x300004: case 0x300004:
case 0x300308:
case 0x380000: case 0x380000:
break; break;
case 0x300008: case FIFO1:
case 0x380008: case FIFO2:
/* /*
* FIFO ready flag. we're not emulating the FIFOs * FIFO ready flag. we're not emulating the FIFOs
* so we're always ready * so we're always ready
@ -1132,16 +1182,28 @@ static uint64_t artist_reg_read(void *opaque, hwaddr addr, unsigned size)
val = 0x10; val = 0x10;
break; break;
case 0x300200: case HORIZ_BACKPORCH:
val = s->reg_300200; val = s->horiz_backporch;
break; break;
case 0x300208: case ACTIVE_LINES_LOW:
val = s->reg_300208; val = s->active_lines_low;
/* activeLinesLo for cursor is in reg20.b.b0 */
val &= ~(0xff << 24);
val |= (s->height & 0xff) << 24;
break; break;
case 0x300218: case MISC_VIDEO:
val = s->reg_300218; /* emulate V-blank */
s->misc_video ^= 0x00040000;
/* activeLinesHi for cursor is in reg21.b.b2 */
val = s->misc_video;
val &= ~0xff00UL;
val |= (s->height & 0xff00);
break;
case MISC_CTRL:
val = s->misc_ctrl;
break; break;
case 0x30023c: case 0x30023c:
@ -1186,6 +1248,10 @@ static void artist_draw_cursor(ARTISTState *s)
struct vram_buffer *cursor0, *cursor1 , *buf; struct vram_buffer *cursor0, *cursor1 , *buf;
int cx, cy, cursor_pos_x, cursor_pos_y; int cx, cy, cursor_pos_x, cursor_pos_y;
if (!cursor_visible(s)) {
return;
}
cursor0 = &s->vram_buffer[ARTIST_BUFFER_CURSOR1]; cursor0 = &s->vram_buffer[ARTIST_BUFFER_CURSOR1];
cursor1 = &s->vram_buffer[ARTIST_BUFFER_CURSOR2]; cursor1 = &s->vram_buffer[ARTIST_BUFFER_CURSOR2];
buf = &s->vram_buffer[ARTIST_BUFFER_AP]; buf = &s->vram_buffer[ARTIST_BUFFER_AP];
@ -1217,6 +1283,12 @@ static void artist_draw_cursor(ARTISTState *s)
} }
} }
static bool artist_screen_enabled(ARTISTState *s)
{
/* We could check for (s->misc_ctrl & 0x00800000) too... */
return ((s->misc_video & 0x0A000000) == 0x0A000000);
}
static void artist_draw_line(void *opaque, uint8_t *d, const uint8_t *src, static void artist_draw_line(void *opaque, uint8_t *d, const uint8_t *src,
int width, int pitch) int width, int pitch)
{ {
@ -1224,6 +1296,12 @@ static void artist_draw_line(void *opaque, uint8_t *d, const uint8_t *src,
uint32_t *cmap, *data = (uint32_t *)d; uint32_t *cmap, *data = (uint32_t *)d;
int x; int x;
if (!artist_screen_enabled(s)) {
/* clear screen */
memset(data, 0, s->width * sizeof(uint32_t));
return;
}
cmap = (uint32_t *)(s->vram_buffer[ARTIST_BUFFER_CMAP].data + 0x400); cmap = (uint32_t *)(s->vram_buffer[ARTIST_BUFFER_CMAP].data + 0x400);
for (x = 0; x < s->width; x++) { for (x = 0; x < s->width; x++) {
@ -1325,11 +1403,10 @@ static void artist_realizefn(DeviceState *dev, Error **errp)
framebuffer_update_memory_section(&s->fbsection, &buf->mr, 0, framebuffer_update_memory_section(&s->fbsection, &buf->mr, 0,
buf->width, buf->height); buf->width, buf->height);
/* /*
* no idea whether the cursor is fixed size or not, so assume 32x32 which * Artist cursor max size
* seems sufficient for HP-UX X11.
*/ */
s->cursor_height = 32; s->cursor_height = NGLE_MAX_SPRITE_SIZE;
s->cursor_width = 32; s->cursor_width = NGLE_MAX_SPRITE_SIZE;
/* /*
* These two registers are not initialized by seabios's STI implementation. * These two registers are not initialized by seabios's STI implementation.
@ -1339,6 +1416,10 @@ static void artist_realizefn(DeviceState *dev, Error **errp)
s->image_bitmap_op = 0x23000300; s->image_bitmap_op = 0x23000300;
s->plane_mask = 0xff; s->plane_mask = 0xff;
/* enable screen */
s->misc_video |= 0x0A000000;
s->misc_ctrl |= 0x00800000;
s->con = graphic_console_init(dev, 0, &artist_ops, s); s->con = graphic_console_init(dev, 0, &artist_ops, s);
qemu_console_resize(s->con, s->width, s->height); qemu_console_resize(s->con, s->width, s->height);
} }
@ -1377,9 +1458,10 @@ static const VMStateDescription vmstate_artist = {
VMSTATE_UINT32(cursor_width, ARTISTState), VMSTATE_UINT32(cursor_width, ARTISTState),
VMSTATE_UINT32(plane_mask, ARTISTState), VMSTATE_UINT32(plane_mask, ARTISTState),
VMSTATE_UINT32(reg_100080, ARTISTState), VMSTATE_UINT32(reg_100080, ARTISTState),
VMSTATE_UINT32(reg_300200, ARTISTState), VMSTATE_UINT32(horiz_backporch, ARTISTState),
VMSTATE_UINT32(reg_300208, ARTISTState), VMSTATE_UINT32(active_lines_low, ARTISTState),
VMSTATE_UINT32(reg_300218, ARTISTState), VMSTATE_UINT32(misc_video, ARTISTState),
VMSTATE_UINT32(misc_ctrl, ARTISTState),
VMSTATE_UINT32(dst_bm_access, ARTISTState), VMSTATE_UINT32(dst_bm_access, ARTISTState),
VMSTATE_UINT32(src_bm_access, ARTISTState), VMSTATE_UINT32(src_bm_access, ARTISTState),
VMSTATE_UINT32(control_plane, ARTISTState), VMSTATE_UINT32(control_plane, ARTISTState),

Binary file not shown.

@ -1 +1 @@
Subproject commit bf3404006fd2c832857eb57e6f853862f97dacea Subproject commit 17ca7a9998c1755d42321cfc0afb5f480f5a58ff