2 * QEMU Bochs-style debug console ("port E9") emulation
4 * Copyright (c) 2003-2004 Fabrice Bellard
5 * Copyright (c) 2008 Citrix Systems, Inc.
6 * Copyright (c) Intel Corporation; author: H. Peter Anvin
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
28 #include "qemu-char.h"
32 //#define DEBUG_DEBUGCON
34 typedef struct DebugconState
{
39 typedef struct ISADebugconState
{
45 static void debugcon_ioport_write(void *opaque
, uint32_t addr
, uint32_t val
)
47 DebugconState
*s
= opaque
;
48 unsigned char ch
= val
;
51 printf("debugcon: write addr=0x%04x val=0x%02x\n", addr
, val
);
54 qemu_chr_write(s
->chr
, &ch
, 1);
58 static uint32_t debugcon_ioport_read(void *opaque
, uint32_t addr
)
60 DebugconState
*s
= opaque
;
63 printf("debugcon: read addr=0x%04x\n", addr
);
69 static void debugcon_init_core(DebugconState
*s
)
72 fprintf(stderr
, "Can't create debugcon device, empty char device\n");
76 qemu_chr_add_handlers(s
->chr
, NULL
, NULL
, NULL
, s
);
79 static int debugcon_isa_initfn(ISADevice
*dev
)
81 ISADebugconState
*isa
= DO_UPCAST(ISADebugconState
, dev
, dev
);
82 DebugconState
*s
= &isa
->state
;
84 debugcon_init_core(s
);
85 register_ioport_write(isa
->iobase
, 1, 1, debugcon_ioport_write
, s
);
86 register_ioport_read(isa
->iobase
, 1, 1, debugcon_ioport_read
, s
);
90 static ISADeviceInfo debugcon_isa_info
= {
91 .qdev
.name
= "isa-debugcon",
92 .qdev
.size
= sizeof(ISADebugconState
),
93 .init
= debugcon_isa_initfn
,
94 .qdev
.props
= (Property
[]) {
95 DEFINE_PROP_HEX32("iobase", ISADebugconState
, iobase
, 0xe9),
96 DEFINE_PROP_CHR("chardev", ISADebugconState
, state
.chr
),
97 DEFINE_PROP_HEX32("readback", ISADebugconState
, state
.readback
, 0xe9),
98 DEFINE_PROP_END_OF_LIST(),
102 static void debugcon_register_devices(void)
104 isa_qdev_register(&debugcon_isa_info
);
107 device_init(debugcon_register_devices
)