qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Sergio Lopez <slp@redhat.com>
To: "Philippe Mathieu-Daudé" <philmd@redhat.com>
Cc: ehabkost@redhat.com, mst@redhat.com, qemu-devel@nongnu.org,
	groug@kaod.org, kraxel@redhat.com, pbonzini@redhat.com,
	imammedo@redhat.com, sgarzare@redhat.com, lersek@redhat.com,
	rth@twiddle.net
Subject: Re: [PATCH v10 13/15] docs/microvm.rst: document the new microvm machine type
Date: Thu, 17 Oct 2019 13:52:50 +0200	[thread overview]
Message-ID: <87d0evh9m5.fsf@redhat.com> (raw)
In-Reply-To: <6e84a3fb-0ded-6302-af44-a1d70eea60fa@redhat.com>

[-- Attachment #1: Type: text/plain, Size: 1537 bytes --]


Philippe Mathieu-Daudé <philmd@redhat.com> writes:

> On 10/17/19 12:45 PM, Sergio Lopez wrote:
>>
>> Philippe Mathieu-Daudé <philmd@redhat.com> writes:
>>
>>> Hi Sergio,
>>>
>>> On 10/16/19 12:12 PM, Sergio Lopez wrote:
>>>> +Supported devices
>>>> +-----------------
>>>> +
>>>> +The microvm machine type supports the following devices:
>>>> +
>>>> +- ISA bus
>>>> +- i8259 PIC (optional)
>>>> +- i8254 PIT (optional)
>>>> +- MC146818 RTC (optional)
>>>> +- One ISA serial port (optional)
>>>> +- LAPIC
>>>> +- IOAPIC (with kernel-irqchip=split by default)
>>>> +- kvmclock (if using KVM)
>>>> +- fw_cfg
>>>> +- Up to eight virtio-mmio devices (configured by the user)
>>>
>>> If we have VirtIO devices, why not use virtio-serial instead of the
>>> one on the ISA bus?
>>
>> The serial port on the ISA bus is simpler, and thus is supported for
>> both SeaBIOS debugging and Linux's earlyprintk. This makes it *very*
>> convenient for debugging boot issues.
>
> "... but it's also compatible with SeaBIOS"
>
> OK. Maybe we can add a comment such "These devices are the minimum
> required to run SeaBIOS" in the 'Supported devices' section.

Well, that's not exactly true. SeaBIOS works without a serial port, it's
just you can't get it to send its debugging messages anywhere (which
most people won't see anyway).

Sergio.

>>
>> Also, as it's explained in the documentation, users that no longer need
>> it can disable the device and just rely on virtio-console.
>>
>> Sergio.
>>


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

  reply	other threads:[~2019-10-17 11:54 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-16 10:12 [PATCH v10 00/15] Introduce the microvm machine type Sergio Lopez
2019-10-16 10:12 ` [PATCH v10 01/15] hw/virtio: Factorize virtio-mmio headers Sergio Lopez
2019-10-16 10:12 ` [PATCH v10 02/15] hw/i386/pc: rename functions shared with non-PC machines Sergio Lopez
2019-10-16 10:12 ` [PATCH v10 03/15] hw/i386/pc: fix code style issues on functions that will be moved out Sergio Lopez
2019-10-16 14:59   ` Marc-André Lureau
2019-10-16 10:12 ` [PATCH v10 04/15] hw/i386/pc: replace use of strtol with qemu_strtoui in x86_load_linux() Sergio Lopez
2019-10-16 15:02   ` Marc-André Lureau
2019-10-16 10:12 ` [PATCH v10 05/15] hw/i386/pc: avoid an assignment in if condition " Sergio Lopez
2019-10-16 10:12 ` [PATCH v10 06/15] hw/i386/pc: remove commented out code from x86_load_linux() Sergio Lopez
2019-10-16 10:12 ` [PATCH v10 07/15] hw/i386/pc: move shared x86 functions to x86.c and export them Sergio Lopez
2019-10-16 10:12 ` [PATCH v10 08/15] hw/i386: split PCMachineState deriving X86MachineState from it Sergio Lopez
2019-10-16 10:12 ` [PATCH v10 09/15] hw/i386: make x86.c independent from PCMachineState Sergio Lopez
2019-10-16 10:12 ` [PATCH v10 10/15] fw_cfg: add "modify" functions for all types Sergio Lopez
2019-10-16 15:02   ` Marc-André Lureau
2019-10-16 10:12 ` [PATCH v10 11/15] hw/intc/apic: reject pic ints if isa_pic == NULL Sergio Lopez
2019-10-16 10:12 ` [PATCH v10 12/15] roms: add microvm-bios (qboot) as binary and git submodule Sergio Lopez
2019-10-16 10:12 ` [PATCH v10 13/15] docs/microvm.rst: document the new microvm machine type Sergio Lopez
2019-10-16 16:31   ` Marc-André Lureau
2019-10-17  6:48     ` Sergio Lopez
2019-10-17  9:52   ` Philippe Mathieu-Daudé
2019-10-17 10:45     ` Sergio Lopez
2019-10-17 10:56       ` Philippe Mathieu-Daudé
2019-10-17 11:52         ` Sergio Lopez [this message]
2019-10-17 11:00   ` Daniel P. Berrangé
2019-10-17 11:49     ` Sergio Lopez
2019-10-16 10:12 ` [PATCH v10 14/15] hw/i386: Introduce the " Sergio Lopez
2019-10-16 19:35   ` Marc-André Lureau
2019-10-17  6:47     ` Sergio Lopez
2019-10-16 10:12 ` [PATCH v10 15/15] MAINTAINERS: add microvm related files Sergio Lopez

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87d0evh9m5.fsf@redhat.com \
    --to=slp@redhat.com \
    --cc=ehabkost@redhat.com \
    --cc=groug@kaod.org \
    --cc=imammedo@redhat.com \
    --cc=kraxel@redhat.com \
    --cc=lersek@redhat.com \
    --cc=mst@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=philmd@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=rth@twiddle.net \
    --cc=sgarzare@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).