debugcon.c 4.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
/*
 * QEMU Bochs-style debug console ("port E9") emulation
 *
 * Copyright (c) 2003-2004 Fabrice Bellard
 * Copyright (c) 2008 Citrix Systems, Inc.
 * Copyright (c) Intel Corporation; author: H. Peter Anvin
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

27
#include "hw/hw.h"
28
#include "sysemu/char.h"
P
Paolo Bonzini 已提交
29 30
#include "hw/isa/isa.h"
#include "hw/i386/pc.h"
31

G
Gerd Hoffmann 已提交
32 33 34 35
#define TYPE_ISA_DEBUGCON_DEVICE "isa-debugcon"
#define ISA_DEBUGCON_DEVICE(obj) \
     OBJECT_CHECK(ISADebugconState, (obj), TYPE_ISA_DEBUGCON_DEVICE)

36 37 38
//#define DEBUG_DEBUGCON

typedef struct DebugconState {
G
Gerd Hoffmann 已提交
39
    MemoryRegion io;
40 41 42 43 44
    CharDriverState *chr;
    uint32_t readback;
} DebugconState;

typedef struct ISADebugconState {
G
Gerd Hoffmann 已提交
45 46
    ISADevice parent_obj;

47 48 49 50
    uint32_t iobase;
    DebugconState state;
} ISADebugconState;

G
Gerd Hoffmann 已提交
51 52
static void debugcon_ioport_write(void *opaque, hwaddr addr, uint64_t val,
                                  unsigned width)
53 54 55 56 57
{
    DebugconState *s = opaque;
    unsigned char ch = val;

#ifdef DEBUG_DEBUGCON
58
    printf(" [debugcon: write addr=0x%04" HWADDR_PRIx " val=0x%02x]\n", addr, val);
59 60
#endif

61
    qemu_chr_fe_write(s->chr, &ch, 1);
62 63 64
}


G
Gerd Hoffmann 已提交
65
static uint64_t debugcon_ioport_read(void *opaque, hwaddr addr, unsigned width)
66 67 68 69
{
    DebugconState *s = opaque;

#ifdef DEBUG_DEBUGCON
70
    printf("debugcon: read addr=0x%04x\n", addr);
71 72 73 74 75
#endif

    return s->readback;
}

G
Gerd Hoffmann 已提交
76 77 78 79 80 81 82 83
static const MemoryRegionOps debugcon_ops = {
    .read = debugcon_ioport_read,
    .write = debugcon_ioport_write,
    .valid.min_access_size = 1,
    .valid.max_access_size = 1,
    .endianness = DEVICE_LITTLE_ENDIAN,
};

84 85 86 87 88 89 90 91 92 93 94 95
static void debugcon_init_core(DebugconState *s)
{
    if (!s->chr) {
        fprintf(stderr, "Can't create debugcon device, empty char device\n");
        exit(1);
    }

    qemu_chr_add_handlers(s->chr, NULL, NULL, NULL, s);
}

static int debugcon_isa_initfn(ISADevice *dev)
{
G
Gerd Hoffmann 已提交
96
    ISADebugconState *isa = ISA_DEBUGCON_DEVICE(dev);
97 98 99
    DebugconState *s = &isa->state;

    debugcon_init_core(s);
G
Gerd Hoffmann 已提交
100 101 102 103
    memory_region_init_io(&s->io, &debugcon_ops, s,
                          TYPE_ISA_DEBUGCON_DEVICE, 1);
    memory_region_add_subregion(isa_address_space_io(dev),
                                isa->iobase, &s->io);
104 105 106
    return 0;
}

107 108 109 110 111 112 113
static Property debugcon_isa_properties[] = {
    DEFINE_PROP_HEX32("iobase", ISADebugconState, iobase, 0xe9),
    DEFINE_PROP_CHR("chardev",  ISADebugconState, state.chr),
    DEFINE_PROP_HEX32("readback", ISADebugconState, state.readback, 0xe9),
    DEFINE_PROP_END_OF_LIST(),
};

114 115
static void debugcon_isa_class_initfn(ObjectClass *klass, void *data)
{
116
    DeviceClass *dc = DEVICE_CLASS(klass);
117 118
    ISADeviceClass *ic = ISA_DEVICE_CLASS(klass);
    ic->init = debugcon_isa_initfn;
119
    dc->props = debugcon_isa_properties;
120 121
}

122
static const TypeInfo debugcon_isa_info = {
G
Gerd Hoffmann 已提交
123
    .name          = TYPE_ISA_DEBUGCON_DEVICE,
124 125 126
    .parent        = TYPE_ISA_DEVICE,
    .instance_size = sizeof(ISADebugconState),
    .class_init    = debugcon_isa_class_initfn,
127 128
};

A
Andreas Färber 已提交
129
static void debugcon_register_types(void)
130
{
131
    type_register_static(&debugcon_isa_info);
132 133
}

A
Andreas Färber 已提交
134
type_init(debugcon_register_types)