All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-trivial] [PATCH 0/2] Trivial documentation updates for sun4m/PowerPC
@ 2014-03-17 21:46 ` Mark Cave-Ayland
  0 siblings, 0 replies; 8+ messages in thread
From: Mark Cave-Ayland @ 2014-03-17 21:46 UTC (permalink / raw)
  To: qemu-devel, qemu-trivial

Hi all,

Here are a couple of minor documentation updates - the first is for sun4m and 
is primarily concerned with documenting the new CG3 framebuffer whilst touching
up a couple of minor errors. The second updates the documentation with respect
to the default PowerPC framebuffer settings which was changed in QEMU 1.7 to
800x600x32.


ATB,

Mark.


Mark Cave-Ayland (2):
  doc: update sun4m documentation
  doc: update default PowerPC framebuffer settings

 qemu-doc.texi   |   11 ++++++-----
 qemu-options.hx |   10 +++++++++-
 2 files changed, 15 insertions(+), 6 deletions(-)

-- 
1.7.10.4



^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Qemu-devel] [PATCH 0/2] Trivial documentation updates for sun4m/PowerPC
@ 2014-03-17 21:46 ` Mark Cave-Ayland
  0 siblings, 0 replies; 8+ messages in thread
From: Mark Cave-Ayland @ 2014-03-17 21:46 UTC (permalink / raw)
  To: qemu-devel, qemu-trivial

Hi all,

Here are a couple of minor documentation updates - the first is for sun4m and 
is primarily concerned with documenting the new CG3 framebuffer whilst touching
up a couple of minor errors. The second updates the documentation with respect
to the default PowerPC framebuffer settings which was changed in QEMU 1.7 to
800x600x32.


ATB,

Mark.


Mark Cave-Ayland (2):
  doc: update sun4m documentation
  doc: update default PowerPC framebuffer settings

 qemu-doc.texi   |   11 ++++++-----
 qemu-options.hx |   10 +++++++++-
 2 files changed, 15 insertions(+), 6 deletions(-)

-- 
1.7.10.4

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Qemu-trivial] [PATCH 1/2] doc: update sun4m documentation
  2014-03-17 21:46 ` [Qemu-devel] " Mark Cave-Ayland
@ 2014-03-17 21:46   ` Mark Cave-Ayland
  -1 siblings, 0 replies; 8+ messages in thread
From: Mark Cave-Ayland @ 2014-03-17 21:46 UTC (permalink / raw)
  To: qemu-devel, qemu-trivial

A few minor tidy-ups, plus add reference to the new -vga tcx and cg3 options.

Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
---
 qemu-doc.texi   |    9 +++++----
 qemu-options.hx |   10 +++++++++-
 2 files changed, 14 insertions(+), 5 deletions(-)

diff --git a/qemu-doc.texi b/qemu-doc.texi
index ad31f2d..6d684e2 100644
--- a/qemu-doc.texi
+++ b/qemu-doc.texi
@@ -1996,7 +1996,7 @@ QEMU emulates the following sun4m peripherals:
 @item
 IOMMU
 @item
-TCX Frame buffer
+TCX or cgthree Frame buffer
 @item
 Lance (Am7990) Ethernet
 @item
@@ -2023,7 +2023,7 @@ firmware implementation. The goal is to implement a 100% IEEE
 
 A sample Linux 2.6 series kernel and ram disk image are available on
 the QEMU web site. There are still issues with NetBSD and OpenBSD, but
-some kernel versions work. Please note that currently Solaris kernels
+some kernel versions work. Please note that currently older Solaris kernels
 don't work probably due to interface issues between OpenBIOS and
 Solaris.
 
@@ -2035,8 +2035,9 @@ The following options are specific to the Sparc32 emulation:
 
 @item -g @var{W}x@var{H}x[x@var{DEPTH}]
 
-Set the initial TCX graphic mode. The default is 1024x768x8, currently
-the only other possible mode is 1024x768x24.
+Set the initial graphics mode. For TCX, the default is 1024x768x8 with the
+option of 1024x768x24. For cgthree, the default is 1024x768x8 with the option
+of 1152x900x8 for people who wish to use OBP.
 
 @item -prom-env @var{string}
 
diff --git a/qemu-options.hx b/qemu-options.hx
index ee5437b..2d33815 100644
--- a/qemu-options.hx
+++ b/qemu-options.hx
@@ -1043,7 +1043,7 @@ Rotate graphical output some deg left (only PXA LCD).
 ETEXI
 
 DEF("vga", HAS_ARG, QEMU_OPTION_vga,
-    "-vga [std|cirrus|vmware|qxl|xenfb|none]\n"
+    "-vga [std|cirrus|vmware|qxl|xenfb|tcx|cg3|none]\n"
     "                select video card type\n", QEMU_ARCH_ALL)
 STEXI
 @item -vga @var{type}
@@ -1068,6 +1068,14 @@ card.
 QXL paravirtual graphic card.  It is VGA compatible (including VESA
 2.0 VBE support).  Works best with qxl guest drivers installed though.
 Recommended choice when using the spice protocol.
+@item tcx
+(sun4m only) Sun TCX framebuffer. This is the default framebuffer for
+sun4m machines and offers both 8-bit and 24-bit colour depths at a
+fixed resolution of 1024x768.
+@item cg3
+(sun4m only) Sun cgthree framebuffer. This is a simple 8-bit framebuffer
+for sun4m machines available in both 1024x768 (OpenBIOS) and 1152x900 (OBP)
+resolutions aimed at people wishing to run older Solaris versions.
 @item none
 Disable VGA card.
 @end table
-- 
1.7.10.4



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [Qemu-devel] [PATCH 1/2] doc: update sun4m documentation
@ 2014-03-17 21:46   ` Mark Cave-Ayland
  0 siblings, 0 replies; 8+ messages in thread
From: Mark Cave-Ayland @ 2014-03-17 21:46 UTC (permalink / raw)
  To: qemu-devel, qemu-trivial

A few minor tidy-ups, plus add reference to the new -vga tcx and cg3 options.

Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
---
 qemu-doc.texi   |    9 +++++----
 qemu-options.hx |   10 +++++++++-
 2 files changed, 14 insertions(+), 5 deletions(-)

diff --git a/qemu-doc.texi b/qemu-doc.texi
index ad31f2d..6d684e2 100644
--- a/qemu-doc.texi
+++ b/qemu-doc.texi
@@ -1996,7 +1996,7 @@ QEMU emulates the following sun4m peripherals:
 @item
 IOMMU
 @item
-TCX Frame buffer
+TCX or cgthree Frame buffer
 @item
 Lance (Am7990) Ethernet
 @item
@@ -2023,7 +2023,7 @@ firmware implementation. The goal is to implement a 100% IEEE
 
 A sample Linux 2.6 series kernel and ram disk image are available on
 the QEMU web site. There are still issues with NetBSD and OpenBSD, but
-some kernel versions work. Please note that currently Solaris kernels
+some kernel versions work. Please note that currently older Solaris kernels
 don't work probably due to interface issues between OpenBIOS and
 Solaris.
 
@@ -2035,8 +2035,9 @@ The following options are specific to the Sparc32 emulation:
 
 @item -g @var{W}x@var{H}x[x@var{DEPTH}]
 
-Set the initial TCX graphic mode. The default is 1024x768x8, currently
-the only other possible mode is 1024x768x24.
+Set the initial graphics mode. For TCX, the default is 1024x768x8 with the
+option of 1024x768x24. For cgthree, the default is 1024x768x8 with the option
+of 1152x900x8 for people who wish to use OBP.
 
 @item -prom-env @var{string}
 
diff --git a/qemu-options.hx b/qemu-options.hx
index ee5437b..2d33815 100644
--- a/qemu-options.hx
+++ b/qemu-options.hx
@@ -1043,7 +1043,7 @@ Rotate graphical output some deg left (only PXA LCD).
 ETEXI
 
 DEF("vga", HAS_ARG, QEMU_OPTION_vga,
-    "-vga [std|cirrus|vmware|qxl|xenfb|none]\n"
+    "-vga [std|cirrus|vmware|qxl|xenfb|tcx|cg3|none]\n"
     "                select video card type\n", QEMU_ARCH_ALL)
 STEXI
 @item -vga @var{type}
@@ -1068,6 +1068,14 @@ card.
 QXL paravirtual graphic card.  It is VGA compatible (including VESA
 2.0 VBE support).  Works best with qxl guest drivers installed though.
 Recommended choice when using the spice protocol.
+@item tcx
+(sun4m only) Sun TCX framebuffer. This is the default framebuffer for
+sun4m machines and offers both 8-bit and 24-bit colour depths at a
+fixed resolution of 1024x768.
+@item cg3
+(sun4m only) Sun cgthree framebuffer. This is a simple 8-bit framebuffer
+for sun4m machines available in both 1024x768 (OpenBIOS) and 1152x900 (OBP)
+resolutions aimed at people wishing to run older Solaris versions.
 @item none
 Disable VGA card.
 @end table
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [Qemu-trivial] [PATCH 2/2] doc: update default PowerPC framebuffer settings
  2014-03-17 21:46 ` [Qemu-devel] " Mark Cave-Ayland
@ 2014-03-17 21:46   ` Mark Cave-Ayland
  -1 siblings, 0 replies; 8+ messages in thread
From: Mark Cave-Ayland @ 2014-03-17 21:46 UTC (permalink / raw)
  To: qemu-devel, qemu-trivial

Since 1.7, the default framebuffer settings for PowerPC are 800x600x32.

Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
CC: qemu-ppc@nongnu.org
---
 qemu-doc.texi |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/qemu-doc.texi b/qemu-doc.texi
index 6d684e2..e6e20eb 100644
--- a/qemu-doc.texi
+++ b/qemu-doc.texi
@@ -1938,7 +1938,7 @@ The following options are specific to the PowerPC emulation:
 
 @item -g @var{W}x@var{H}[x@var{DEPTH}]
 
-Set the initial VGA graphic mode. The default is 800x600x15.
+Set the initial VGA graphic mode. The default is 800x600x32.
 
 @item -prom-env @var{string}
 
-- 
1.7.10.4



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [Qemu-devel] [PATCH 2/2] doc: update default PowerPC framebuffer settings
@ 2014-03-17 21:46   ` Mark Cave-Ayland
  0 siblings, 0 replies; 8+ messages in thread
From: Mark Cave-Ayland @ 2014-03-17 21:46 UTC (permalink / raw)
  To: qemu-devel, qemu-trivial

Since 1.7, the default framebuffer settings for PowerPC are 800x600x32.

Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
CC: qemu-ppc@nongnu.org
---
 qemu-doc.texi |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/qemu-doc.texi b/qemu-doc.texi
index 6d684e2..e6e20eb 100644
--- a/qemu-doc.texi
+++ b/qemu-doc.texi
@@ -1938,7 +1938,7 @@ The following options are specific to the PowerPC emulation:
 
 @item -g @var{W}x@var{H}[x@var{DEPTH}]
 
-Set the initial VGA graphic mode. The default is 800x600x15.
+Set the initial VGA graphic mode. The default is 800x600x32.
 
 @item -prom-env @var{string}
 
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [Qemu-trivial] [PATCH 0/2] Trivial documentation updates for sun4m/PowerPC
  2014-03-17 21:46 ` [Qemu-devel] " Mark Cave-Ayland
@ 2014-03-20 15:57   ` Michael Tokarev
  -1 siblings, 0 replies; 8+ messages in thread
From: Michael Tokarev @ 2014-03-20 15:57 UTC (permalink / raw)
  To: Mark Cave-Ayland; +Cc: qemu-trivial, qemu-devel

18.03.2014 01:46, Mark Cave-Ayland wrote:
> Hi all,
> 
> Here are a couple of minor documentation updates - the first is for sun4m and 
> is primarily concerned with documenting the new CG3 framebuffer whilst touching
> up a couple of minor errors. The second updates the documentation with respect
> to the default PowerPC framebuffer settings which was changed in QEMU 1.7 to
> 800x600x32.

Thanks, applied both to -trivial.

/mjt


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [Qemu-devel] [Qemu-trivial] [PATCH 0/2] Trivial documentation updates for sun4m/PowerPC
@ 2014-03-20 15:57   ` Michael Tokarev
  0 siblings, 0 replies; 8+ messages in thread
From: Michael Tokarev @ 2014-03-20 15:57 UTC (permalink / raw)
  To: Mark Cave-Ayland; +Cc: qemu-trivial, qemu-devel

18.03.2014 01:46, Mark Cave-Ayland wrote:
> Hi all,
> 
> Here are a couple of minor documentation updates - the first is for sun4m and 
> is primarily concerned with documenting the new CG3 framebuffer whilst touching
> up a couple of minor errors. The second updates the documentation with respect
> to the default PowerPC framebuffer settings which was changed in QEMU 1.7 to
> 800x600x32.

Thanks, applied both to -trivial.

/mjt

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2014-03-20 15:58 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-17 21:46 [Qemu-trivial] [PATCH 0/2] Trivial documentation updates for sun4m/PowerPC Mark Cave-Ayland
2014-03-17 21:46 ` [Qemu-devel] " Mark Cave-Ayland
2014-03-17 21:46 ` [Qemu-trivial] [PATCH 1/2] doc: update sun4m documentation Mark Cave-Ayland
2014-03-17 21:46   ` [Qemu-devel] " Mark Cave-Ayland
2014-03-17 21:46 ` [Qemu-trivial] [PATCH 2/2] doc: update default PowerPC framebuffer settings Mark Cave-Ayland
2014-03-17 21:46   ` [Qemu-devel] " Mark Cave-Ayland
2014-03-20 15:57 ` [Qemu-trivial] [PATCH 0/2] Trivial documentation updates for sun4m/PowerPC Michael Tokarev
2014-03-20 15:57   ` [Qemu-devel] " Michael Tokarev

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.