diff mbox

debugcon: Add -debugport option to allow changing debug console port number

Message ID 24044757332cd427e378053739e6f49980e0ac5d.1470392366.git.lv.zheng@intel.com
State New
Headers show

Commit Message

Lv Zheng Aug. 5, 2016, 10:19 a.m. UTC
Changing debugcon port to 0x402 allows the seabios AML table pre-defined
DBUG() control method to be able to dump the AML debugging information to
the re-directed debugging console.

If the debug port number is configurable, users can further specify a
proper IO port number for it to make external BIOS's debugging
facility functioning.

Signed-off-by: Lv Zheng <lv.zheng@intel.com>
---
 hw/char/debugcon.c      |    4 ++++
 hw/i386/acpi-build.c    |    3 ++-
 include/sysemu/sysemu.h |    1 +
 qemu-options.hx         |    9 +++++++++
 vl.c                    |   15 +++++++++++++++
 5 files changed, 31 insertions(+), 1 deletion(-)

Comments

Igor Mammedov Aug. 5, 2016, 10:57 a.m. UTC | #1
On Fri,  5 Aug 2016 18:19:39 +0800
Lv Zheng <lv.zheng@intel.com> wrote:

> Changing debugcon port to 0x402 allows the seabios AML table pre-defined
> DBUG() control method to be able to dump the AML debugging information to
> the re-directed debugging console.
> 
> If the debug port number is configurable, users can further specify a
> proper IO port number for it to make external BIOS's debugging
> facility functioning.

there is no need for yet another CLI option that is being added here,
just use usual '-device isa-debugcon,iobase=0x402,chardev=seabios"
Paolo Bonzini Aug. 5, 2016, 12:15 p.m. UTC | #2
On 05/08/2016 12:19, Lv Zheng wrote:
> Changing debugcon port to 0x402 allows the seabios AML table pre-defined
> DBUG() control method to be able to dump the AML debugging information to
> the re-directed debugging console.
> 
> If the debug port number is configurable, users can further specify a
> proper IO port number for it to make external BIOS's debugging
> facility functioning.
> 
> Signed-off-by: Lv Zheng <lv.zheng@intel.com>

You can do this with

   -global isa-debugcon.iobase=0x402

Paolo

> ---
>  hw/char/debugcon.c      |    4 ++++
>  hw/i386/acpi-build.c    |    3 ++-
>  include/sysemu/sysemu.h |    1 +
>  qemu-options.hx         |    9 +++++++++
>  vl.c                    |   15 +++++++++++++++
>  5 files changed, 31 insertions(+), 1 deletion(-)
> 
> diff --git a/hw/char/debugcon.c b/hw/char/debugcon.c
> index e7f025e..f966a09 100644
> --- a/hw/char/debugcon.c
> +++ b/hw/char/debugcon.c
> @@ -105,6 +105,10 @@ static void debugcon_isa_realizefn(DeviceState *dev, Error **errp)
>          error_propagate(errp, err);
>          return;
>      }
> +    if (debug_port != 0xe9) {
> +        qdev_prop_set_uint32(dev, "iobase", debug_port);
> +        qdev_prop_set_uint32(dev, "readback", debug_port);
> +    }
>      memory_region_init_io(&s->io, OBJECT(dev), &debugcon_ops, s,
>                            TYPE_ISA_DEBUGCON_DEVICE, 1);
>      memory_region_add_subregion(isa_address_space_io(d),
> diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c
> index a26a4bb..14c6224 100644
> --- a/hw/i386/acpi-build.c
> +++ b/hw/i386/acpi-build.c
> @@ -1442,7 +1442,8 @@ static void build_dbg_aml(Aml *table)
>      Aml *idx = aml_local(2);
>  
>      aml_append(scope,
> -       aml_operation_region("DBG", AML_SYSTEM_IO, aml_int(0x0402), 0x01));
> +       aml_operation_region("DBG", AML_SYSTEM_IO,
> +                            aml_int(debug_port), 0x01));
>      field = aml_field("DBG", AML_BYTE_ACC, AML_NOLOCK, AML_PRESERVE);
>      aml_append(field, aml_named_field("DBGB", 8));
>      aml_append(scope, field);
> diff --git a/include/sysemu/sysemu.h b/include/sysemu/sysemu.h
> index ee7c760..9e0a30b 100644
> --- a/include/sysemu/sysemu.h
> +++ b/include/sysemu/sysemu.h
> @@ -167,6 +167,7 @@ extern uint8_t qemu_extra_params_fw[2];
>  extern QEMUClockType rtc_clock;
>  extern const char *mem_path;
>  extern int mem_prealloc;
> +extern uint32_t debug_port;
>  
>  #define MAX_NODES 128
>  #define NUMA_NODE_UNASSIGNED MAX_NODES
> diff --git a/qemu-options.hx b/qemu-options.hx
> index a71aaf8..05aedce 100644
> --- a/qemu-options.hx
> +++ b/qemu-options.hx
> @@ -3123,6 +3123,15 @@ The default device is @code{vc} in graphical mode and @code{stdio} in
>  non graphical mode.
>  ETEXI
>  
> +DEF("debugport", HAS_ARG, QEMU_OPTION_debugport, \
> +    "-debugport n     Specify debug IO port number\n",
> +    QEMU_ARCH_ALL)
> +STEXI
> +@item -debugport @var{n}
> +@findex -debugport
> +Specify the debug IO port number, default is 0xe9.
> +ETEXI
> +
>  DEF("pidfile", HAS_ARG, QEMU_OPTION_pidfile, \
>      "-pidfile file   write PID to 'file'\n", QEMU_ARCH_ALL)
>  STEXI
> diff --git a/vl.c b/vl.c
> index e7c2c62..710e14d 100644
> --- a/vl.c
> +++ b/vl.c
> @@ -178,6 +178,7 @@ bool boot_strict;
>  uint8_t *boot_splash_filedata;
>  size_t boot_splash_filedata_size;
>  uint8_t qemu_extra_params_fw[2];
> +uint32_t debug_port = 0xe9;
>  
>  int icount_align_option;
>  
> @@ -2584,6 +2585,17 @@ static int debugcon_parse(const char *devname)
>      return 0;
>  }
>  
> +static void debugcon_parse_port(const char *arg)
> +{
> +    uint32_t port;
> +
> +    port = strtoul(arg, NULL, 0);
> +    if (port) {
> +        printf("Re-assign debug console to port 0x%08x.\n", port);
> +        debug_port = port;
> +    }
> +}
> +
>  static gint machine_class_cmp(gconstpointer a, gconstpointer b)
>  {
>      const MachineClass *mc1 = a, *mc2 = b;
> @@ -3580,6 +3592,9 @@ int main(int argc, char **argv, char **envp)
>              case QEMU_OPTION_debugcon:
>                  add_device_config(DEV_DEBUGCON, optarg);
>                  break;
> +            case QEMU_OPTION_debugport:
> +                debugcon_parse_port(optarg);
> +                break;
>              case QEMU_OPTION_loadvm:
>                  loadvm = optarg;
>                  break;
>
Lv Zheng Aug. 5, 2016, 9:47 p.m. UTC | #3
Hi,

> From: Igor Mammedov [mailto:imammedo@redhat.com]
> Subject: Re: [Qemu-devel] [PATCH] debugcon: Add -debugport option to
> allow changing debug console port number
> 
> On Fri,  5 Aug 2016 18:19:39 +0800
> Lv Zheng <lv.zheng@intel.com> wrote:
> 
> > Changing debugcon port to 0x402 allows the seabios AML table pre-
> defined
> > DBUG() control method to be able to dump the AML debugging
> information to
> > the re-directed debugging console.
> >
> > If the debug port number is configurable, users can further specify a
> > proper IO port number for it to make external BIOS's debugging
> > facility functioning.
> 
> there is no need for yet another CLI option that is being added here,
> just use usual '-device isa-debugcon,iobase=0x402,chardev=seabios"
> 

[Lv Zheng] 
OK, thanks for the information.

However, I feel that there are still improvements we can do here:
1. synchronizing DSDT's DBG operation region to debugcon iobase in acpi-build.c;
2. the readback should be automatically corrected by the isa-debugcon.iobase.
What do you think of this?
And if one of the above stuffs is useful, do you need me to send a revised patch?

Cheers
Lv
Lv Zheng Aug. 5, 2016, 9:48 p.m. UTC | #4
Hi,

> From: Paolo Bonzini [mailto:paolo.bonzini@gmail.com] On Behalf Of Paolo

> Bonzini

> Subject: Re: [PATCH] debugcon: Add -debugport option to allow changing

> debug console port number

> 

> 

> 

> On 05/08/2016 12:19, Lv Zheng wrote:

> > Changing debugcon port to 0x402 allows the seabios AML table pre-

> defined

> > DBUG() control method to be able to dump the AML debugging

> information to

> > the re-directed debugging console.

> >

> > If the debug port number is configurable, users can further specify a

> > proper IO port number for it to make external BIOS's debugging

> > facility functioning.

> >

> > Signed-off-by: Lv Zheng <lv.zheng@intel.com>

> 

> You can do this with

> 

>    -global isa-debugcon.iobase=0x402

[Lv Zheng] 
Thanks for the information. :)

Best regards
Lv


> 

> Paolo

> 

> > ---

> >  hw/char/debugcon.c      |    4 ++++

> >  hw/i386/acpi-build.c    |    3 ++-

> >  include/sysemu/sysemu.h |    1 +

> >  qemu-options.hx         |    9 +++++++++

> >  vl.c                    |   15 +++++++++++++++

> >  5 files changed, 31 insertions(+), 1 deletion(-)

> >

> > diff --git a/hw/char/debugcon.c b/hw/char/debugcon.c

> > index e7f025e..f966a09 100644

> > --- a/hw/char/debugcon.c

> > +++ b/hw/char/debugcon.c

> > @@ -105,6 +105,10 @@ static void debugcon_isa_realizefn(DeviceState

> *dev, Error **errp)

> >          error_propagate(errp, err);

> >          return;

> >      }

> > +    if (debug_port != 0xe9) {

> > +        qdev_prop_set_uint32(dev, "iobase", debug_port);

> > +        qdev_prop_set_uint32(dev, "readback", debug_port);

> > +    }

> >      memory_region_init_io(&s->io, OBJECT(dev), &debugcon_ops, s,

> >                            TYPE_ISA_DEBUGCON_DEVICE, 1);

> >      memory_region_add_subregion(isa_address_space_io(d),

> > diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c

> > index a26a4bb..14c6224 100644

> > --- a/hw/i386/acpi-build.c

> > +++ b/hw/i386/acpi-build.c

> > @@ -1442,7 +1442,8 @@ static void build_dbg_aml(Aml *table)

> >      Aml *idx = aml_local(2);

> >

> >      aml_append(scope,

> > -       aml_operation_region("DBG", AML_SYSTEM_IO, aml_int(0x0402),

> 0x01));

> > +       aml_operation_region("DBG", AML_SYSTEM_IO,

> > +                            aml_int(debug_port), 0x01));

> >      field = aml_field("DBG", AML_BYTE_ACC, AML_NOLOCK,

> AML_PRESERVE);

> >      aml_append(field, aml_named_field("DBGB", 8));

> >      aml_append(scope, field);

> > diff --git a/include/sysemu/sysemu.h b/include/sysemu/sysemu.h

> > index ee7c760..9e0a30b 100644

> > --- a/include/sysemu/sysemu.h

> > +++ b/include/sysemu/sysemu.h

> > @@ -167,6 +167,7 @@ extern uint8_t qemu_extra_params_fw[2];

> >  extern QEMUClockType rtc_clock;

> >  extern const char *mem_path;

> >  extern int mem_prealloc;

> > +extern uint32_t debug_port;

> >

> >  #define MAX_NODES 128

> >  #define NUMA_NODE_UNASSIGNED MAX_NODES

> > diff --git a/qemu-options.hx b/qemu-options.hx

> > index a71aaf8..05aedce 100644

> > --- a/qemu-options.hx

> > +++ b/qemu-options.hx

> > @@ -3123,6 +3123,15 @@ The default device is @code{vc} in graphical

> mode and @code{stdio} in

> >  non graphical mode.

> >  ETEXI

> >

> > +DEF("debugport", HAS_ARG, QEMU_OPTION_debugport, \

> > +    "-debugport n     Specify debug IO port number\n",

> > +    QEMU_ARCH_ALL)

> > +STEXI

> > +@item -debugport @var{n}

> > +@findex -debugport

> > +Specify the debug IO port number, default is 0xe9.

> > +ETEXI

> > +

> >  DEF("pidfile", HAS_ARG, QEMU_OPTION_pidfile, \

> >      "-pidfile file   write PID to 'file'\n", QEMU_ARCH_ALL)

> >  STEXI

> > diff --git a/vl.c b/vl.c

> > index e7c2c62..710e14d 100644

> > --- a/vl.c

> > +++ b/vl.c

> > @@ -178,6 +178,7 @@ bool boot_strict;

> >  uint8_t *boot_splash_filedata;

> >  size_t boot_splash_filedata_size;

> >  uint8_t qemu_extra_params_fw[2];

> > +uint32_t debug_port = 0xe9;

> >

> >  int icount_align_option;

> >

> > @@ -2584,6 +2585,17 @@ static int debugcon_parse(const char

> *devname)

> >      return 0;

> >  }

> >

> > +static void debugcon_parse_port(const char *arg)

> > +{

> > +    uint32_t port;

> > +

> > +    port = strtoul(arg, NULL, 0);

> > +    if (port) {

> > +        printf("Re-assign debug console to port 0x%08x.\n", port);

> > +        debug_port = port;

> > +    }

> > +}

> > +

> >  static gint machine_class_cmp(gconstpointer a, gconstpointer b)

> >  {

> >      const MachineClass *mc1 = a, *mc2 = b;

> > @@ -3580,6 +3592,9 @@ int main(int argc, char **argv, char **envp)

> >              case QEMU_OPTION_debugcon:

> >                  add_device_config(DEV_DEBUGCON, optarg);

> >                  break;

> > +            case QEMU_OPTION_debugport:

> > +                debugcon_parse_port(optarg);

> > +                break;

> >              case QEMU_OPTION_loadvm:

> >                  loadvm = optarg;

> >                  break;

> >
Michael S. Tsirkin Aug. 7, 2016, 6 a.m. UTC | #5
On Fri, Aug 05, 2016 at 06:19:39PM +0800, Lv Zheng wrote:
> Changing debugcon port to 0x402 allows the seabios AML table pre-defined
> DBUG() control method to be able to dump the AML debugging information to
> the re-directed debugging console.
> 
> If the debug port number is configurable, users can further specify a
> proper IO port number for it to make external BIOS's debugging
> facility functioning.
> 
> Signed-off-by: Lv Zheng <lv.zheng@intel.com>

This doesn't look like a reasonable interface.

How will user know which io ports are safe to use,
to avoid e.g. conflicts with pci devices?



> ---
>  hw/char/debugcon.c      |    4 ++++
>  hw/i386/acpi-build.c    |    3 ++-
>  include/sysemu/sysemu.h |    1 +
>  qemu-options.hx         |    9 +++++++++
>  vl.c                    |   15 +++++++++++++++
>  5 files changed, 31 insertions(+), 1 deletion(-)
> 
> diff --git a/hw/char/debugcon.c b/hw/char/debugcon.c
> index e7f025e..f966a09 100644
> --- a/hw/char/debugcon.c
> +++ b/hw/char/debugcon.c
> @@ -105,6 +105,10 @@ static void debugcon_isa_realizefn(DeviceState *dev, Error **errp)
>          error_propagate(errp, err);
>          return;
>      }
> +    if (debug_port != 0xe9) {
> +        qdev_prop_set_uint32(dev, "iobase", debug_port);
> +        qdev_prop_set_uint32(dev, "readback", debug_port);
> +    }
>      memory_region_init_io(&s->io, OBJECT(dev), &debugcon_ops, s,
>                            TYPE_ISA_DEBUGCON_DEVICE, 1);
>      memory_region_add_subregion(isa_address_space_io(d),
> diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c
> index a26a4bb..14c6224 100644
> --- a/hw/i386/acpi-build.c
> +++ b/hw/i386/acpi-build.c
> @@ -1442,7 +1442,8 @@ static void build_dbg_aml(Aml *table)
>      Aml *idx = aml_local(2);
>  
>      aml_append(scope,
> -       aml_operation_region("DBG", AML_SYSTEM_IO, aml_int(0x0402), 0x01));
> +       aml_operation_region("DBG", AML_SYSTEM_IO,
> +                            aml_int(debug_port), 0x01));
>      field = aml_field("DBG", AML_BYTE_ACC, AML_NOLOCK, AML_PRESERVE);
>      aml_append(field, aml_named_field("DBGB", 8));
>      aml_append(scope, field);
> diff --git a/include/sysemu/sysemu.h b/include/sysemu/sysemu.h
> index ee7c760..9e0a30b 100644
> --- a/include/sysemu/sysemu.h
> +++ b/include/sysemu/sysemu.h
> @@ -167,6 +167,7 @@ extern uint8_t qemu_extra_params_fw[2];
>  extern QEMUClockType rtc_clock;
>  extern const char *mem_path;
>  extern int mem_prealloc;
> +extern uint32_t debug_port;
>  
>  #define MAX_NODES 128
>  #define NUMA_NODE_UNASSIGNED MAX_NODES
> diff --git a/qemu-options.hx b/qemu-options.hx
> index a71aaf8..05aedce 100644
> --- a/qemu-options.hx
> +++ b/qemu-options.hx
> @@ -3123,6 +3123,15 @@ The default device is @code{vc} in graphical mode and @code{stdio} in
>  non graphical mode.
>  ETEXI
>  
> +DEF("debugport", HAS_ARG, QEMU_OPTION_debugport, \
> +    "-debugport n     Specify debug IO port number\n",
> +    QEMU_ARCH_ALL)
> +STEXI
> +@item -debugport @var{n}
> +@findex -debugport
> +Specify the debug IO port number, default is 0xe9.
> +ETEXI
> +
>  DEF("pidfile", HAS_ARG, QEMU_OPTION_pidfile, \
>      "-pidfile file   write PID to 'file'\n", QEMU_ARCH_ALL)
>  STEXI
> diff --git a/vl.c b/vl.c
> index e7c2c62..710e14d 100644
> --- a/vl.c
> +++ b/vl.c
> @@ -178,6 +178,7 @@ bool boot_strict;
>  uint8_t *boot_splash_filedata;
>  size_t boot_splash_filedata_size;
>  uint8_t qemu_extra_params_fw[2];
> +uint32_t debug_port = 0xe9;
>  
>  int icount_align_option;
>  
> @@ -2584,6 +2585,17 @@ static int debugcon_parse(const char *devname)
>      return 0;
>  }
>  
> +static void debugcon_parse_port(const char *arg)
> +{
> +    uint32_t port;
> +
> +    port = strtoul(arg, NULL, 0);
> +    if (port) {
> +        printf("Re-assign debug console to port 0x%08x.\n", port);
> +        debug_port = port;
> +    }
> +}
> +
>  static gint machine_class_cmp(gconstpointer a, gconstpointer b)
>  {
>      const MachineClass *mc1 = a, *mc2 = b;
> @@ -3580,6 +3592,9 @@ int main(int argc, char **argv, char **envp)
>              case QEMU_OPTION_debugcon:
>                  add_device_config(DEV_DEBUGCON, optarg);
>                  break;
> +            case QEMU_OPTION_debugport:
> +                debugcon_parse_port(optarg);
> +                break;
>              case QEMU_OPTION_loadvm:
>                  loadvm = optarg;
>                  break;
> -- 
> 1.7.10
Lv Zheng Aug. 8, 2016, 1:36 a.m. UTC | #6
Hi, Michael

> From: Michael S. Tsirkin [mailto:mst@redhat.com]
> Subject: Re: [PATCH] debugcon: Add -debugport option to allow changing
> debug console port number
> 
> On Fri, Aug 05, 2016 at 06:19:39PM +0800, Lv Zheng wrote:
> > Changing debugcon port to 0x402 allows the seabios AML table pre-
> defined
> > DBUG() control method to be able to dump the AML debugging
> information to
> > the re-directed debugging console.
> >
> > If the debug port number is configurable, users can further specify a
> > proper IO port number for it to make external BIOS's debugging
> > facility functioning.
> >
> > Signed-off-by: Lv Zheng <lv.zheng@intel.com>
> 
> This doesn't look like a reasonable interface.
> 
> How will user know which io ports are safe to use,
> to avoid e.g. conflicts with pci devices?
> 
[Lv Zheng] 
OK, I'll just correct the acpi-build.c.

Thanks
Lv

> 
> 
> > ---
> >  hw/char/debugcon.c      |    4 ++++
> >  hw/i386/acpi-build.c    |    3 ++-
> >  include/sysemu/sysemu.h |    1 +
> >  qemu-options.hx         |    9 +++++++++
> >  vl.c                    |   15 +++++++++++++++
> >  5 files changed, 31 insertions(+), 1 deletion(-)
> >
> > diff --git a/hw/char/debugcon.c b/hw/char/debugcon.c
> > index e7f025e..f966a09 100644
> > --- a/hw/char/debugcon.c
> > +++ b/hw/char/debugcon.c
> > @@ -105,6 +105,10 @@ static void debugcon_isa_realizefn(DeviceState
> *dev, Error **errp)
> >          error_propagate(errp, err);
> >          return;
> >      }
> > +    if (debug_port != 0xe9) {
> > +        qdev_prop_set_uint32(dev, "iobase", debug_port);
> > +        qdev_prop_set_uint32(dev, "readback", debug_port);
> > +    }
> >      memory_region_init_io(&s->io, OBJECT(dev), &debugcon_ops, s,
> >                            TYPE_ISA_DEBUGCON_DEVICE, 1);
> >      memory_region_add_subregion(isa_address_space_io(d),
> > diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c
> > index a26a4bb..14c6224 100644
> > --- a/hw/i386/acpi-build.c
> > +++ b/hw/i386/acpi-build.c
> > @@ -1442,7 +1442,8 @@ static void build_dbg_aml(Aml *table)
> >      Aml *idx = aml_local(2);
> >
> >      aml_append(scope,
> > -       aml_operation_region("DBG", AML_SYSTEM_IO, aml_int(0x0402),
> 0x01));
> > +       aml_operation_region("DBG", AML_SYSTEM_IO,
> > +                            aml_int(debug_port), 0x01));
> >      field = aml_field("DBG", AML_BYTE_ACC, AML_NOLOCK,
> AML_PRESERVE);
> >      aml_append(field, aml_named_field("DBGB", 8));
> >      aml_append(scope, field);
> > diff --git a/include/sysemu/sysemu.h b/include/sysemu/sysemu.h
> > index ee7c760..9e0a30b 100644
> > --- a/include/sysemu/sysemu.h
> > +++ b/include/sysemu/sysemu.h
> > @@ -167,6 +167,7 @@ extern uint8_t qemu_extra_params_fw[2];
> >  extern QEMUClockType rtc_clock;
> >  extern const char *mem_path;
> >  extern int mem_prealloc;
> > +extern uint32_t debug_port;
> >
> >  #define MAX_NODES 128
> >  #define NUMA_NODE_UNASSIGNED MAX_NODES
> > diff --git a/qemu-options.hx b/qemu-options.hx
> > index a71aaf8..05aedce 100644
> > --- a/qemu-options.hx
> > +++ b/qemu-options.hx
> > @@ -3123,6 +3123,15 @@ The default device is @code{vc} in graphical
> mode and @code{stdio} in
> >  non graphical mode.
> >  ETEXI
> >
> > +DEF("debugport", HAS_ARG, QEMU_OPTION_debugport, \
> > +    "-debugport n     Specify debug IO port number\n",
> > +    QEMU_ARCH_ALL)
> > +STEXI
> > +@item -debugport @var{n}
> > +@findex -debugport
> > +Specify the debug IO port number, default is 0xe9.
> > +ETEXI
> > +
> >  DEF("pidfile", HAS_ARG, QEMU_OPTION_pidfile, \
> >      "-pidfile file   write PID to 'file'\n", QEMU_ARCH_ALL)
> >  STEXI
> > diff --git a/vl.c b/vl.c
> > index e7c2c62..710e14d 100644
> > --- a/vl.c
> > +++ b/vl.c
> > @@ -178,6 +178,7 @@ bool boot_strict;
> >  uint8_t *boot_splash_filedata;
> >  size_t boot_splash_filedata_size;
> >  uint8_t qemu_extra_params_fw[2];
> > +uint32_t debug_port = 0xe9;
> >
> >  int icount_align_option;
> >
> > @@ -2584,6 +2585,17 @@ static int debugcon_parse(const char
> *devname)
> >      return 0;
> >  }
> >
> > +static void debugcon_parse_port(const char *arg)
> > +{
> > +    uint32_t port;
> > +
> > +    port = strtoul(arg, NULL, 0);
> > +    if (port) {
> > +        printf("Re-assign debug console to port 0x%08x.\n", port);
> > +        debug_port = port;
> > +    }
> > +}
> > +
> >  static gint machine_class_cmp(gconstpointer a, gconstpointer b)
> >  {
> >      const MachineClass *mc1 = a, *mc2 = b;
> > @@ -3580,6 +3592,9 @@ int main(int argc, char **argv, char **envp)
> >              case QEMU_OPTION_debugcon:
> >                  add_device_config(DEV_DEBUGCON, optarg);
> >                  break;
> > +            case QEMU_OPTION_debugport:
> > +                debugcon_parse_port(optarg);
> > +                break;
> >              case QEMU_OPTION_loadvm:
> >                  loadvm = optarg;
> >                  break;
> > --
> > 1.7.10
diff mbox

Patch

diff --git a/hw/char/debugcon.c b/hw/char/debugcon.c
index e7f025e..f966a09 100644
--- a/hw/char/debugcon.c
+++ b/hw/char/debugcon.c
@@ -105,6 +105,10 @@  static void debugcon_isa_realizefn(DeviceState *dev, Error **errp)
         error_propagate(errp, err);
         return;
     }
+    if (debug_port != 0xe9) {
+        qdev_prop_set_uint32(dev, "iobase", debug_port);
+        qdev_prop_set_uint32(dev, "readback", debug_port);
+    }
     memory_region_init_io(&s->io, OBJECT(dev), &debugcon_ops, s,
                           TYPE_ISA_DEBUGCON_DEVICE, 1);
     memory_region_add_subregion(isa_address_space_io(d),
diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c
index a26a4bb..14c6224 100644
--- a/hw/i386/acpi-build.c
+++ b/hw/i386/acpi-build.c
@@ -1442,7 +1442,8 @@  static void build_dbg_aml(Aml *table)
     Aml *idx = aml_local(2);
 
     aml_append(scope,
-       aml_operation_region("DBG", AML_SYSTEM_IO, aml_int(0x0402), 0x01));
+       aml_operation_region("DBG", AML_SYSTEM_IO,
+                            aml_int(debug_port), 0x01));
     field = aml_field("DBG", AML_BYTE_ACC, AML_NOLOCK, AML_PRESERVE);
     aml_append(field, aml_named_field("DBGB", 8));
     aml_append(scope, field);
diff --git a/include/sysemu/sysemu.h b/include/sysemu/sysemu.h
index ee7c760..9e0a30b 100644
--- a/include/sysemu/sysemu.h
+++ b/include/sysemu/sysemu.h
@@ -167,6 +167,7 @@  extern uint8_t qemu_extra_params_fw[2];
 extern QEMUClockType rtc_clock;
 extern const char *mem_path;
 extern int mem_prealloc;
+extern uint32_t debug_port;
 
 #define MAX_NODES 128
 #define NUMA_NODE_UNASSIGNED MAX_NODES
diff --git a/qemu-options.hx b/qemu-options.hx
index a71aaf8..05aedce 100644
--- a/qemu-options.hx
+++ b/qemu-options.hx
@@ -3123,6 +3123,15 @@  The default device is @code{vc} in graphical mode and @code{stdio} in
 non graphical mode.
 ETEXI
 
+DEF("debugport", HAS_ARG, QEMU_OPTION_debugport, \
+    "-debugport n     Specify debug IO port number\n",
+    QEMU_ARCH_ALL)
+STEXI
+@item -debugport @var{n}
+@findex -debugport
+Specify the debug IO port number, default is 0xe9.
+ETEXI
+
 DEF("pidfile", HAS_ARG, QEMU_OPTION_pidfile, \
     "-pidfile file   write PID to 'file'\n", QEMU_ARCH_ALL)
 STEXI
diff --git a/vl.c b/vl.c
index e7c2c62..710e14d 100644
--- a/vl.c
+++ b/vl.c
@@ -178,6 +178,7 @@  bool boot_strict;
 uint8_t *boot_splash_filedata;
 size_t boot_splash_filedata_size;
 uint8_t qemu_extra_params_fw[2];
+uint32_t debug_port = 0xe9;
 
 int icount_align_option;
 
@@ -2584,6 +2585,17 @@  static int debugcon_parse(const char *devname)
     return 0;
 }
 
+static void debugcon_parse_port(const char *arg)
+{
+    uint32_t port;
+
+    port = strtoul(arg, NULL, 0);
+    if (port) {
+        printf("Re-assign debug console to port 0x%08x.\n", port);
+        debug_port = port;
+    }
+}
+
 static gint machine_class_cmp(gconstpointer a, gconstpointer b)
 {
     const MachineClass *mc1 = a, *mc2 = b;
@@ -3580,6 +3592,9 @@  int main(int argc, char **argv, char **envp)
             case QEMU_OPTION_debugcon:
                 add_device_config(DEV_DEBUGCON, optarg);
                 break;
+            case QEMU_OPTION_debugport:
+                debugcon_parse_port(optarg);
+                break;
             case QEMU_OPTION_loadvm:
                 loadvm = optarg;
                 break;