summaryrefslogtreecommitdiff
path: root/hw/nubus/nubus-bus.c
blob: 07c279bde5c1042a8cdd8db3c264579cc99f3441 (plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
/*
 * QEMU Macintosh Nubus
 *
 * Copyright (c) 2013-2018 Laurent Vivier <laurent@vivier.eu>
 *
 * This work is licensed under the terms of the GNU GPL, version 2 or later.
 * See the COPYING file in the top-level directory.
 *
 */

/*
 * References:
 *   Nubus Specification (TI)
 *     http://www.bitsavers.org/pdf/ti/nubus/2242825-0001_NuBus_Spec1983.pdf
 *
 *   Designing Cards and Drivers for the Macintosh Family (Apple)
 */

#include "qemu/osdep.h"
#include "hw/nubus/nubus.h"
#include "qapi/error.h"
#include "trace.h"


static NubusBus *nubus_find(void)
{
    /* Returns NULL unless there is exactly one nubus device */
    return NUBUS_BUS(object_resolve_path_type("", TYPE_NUBUS_BUS, NULL));
}

static MemTxResult nubus_slot_write(void *opaque, hwaddr addr, uint64_t val,
                                    unsigned size, MemTxAttrs attrs)
{
    trace_nubus_slot_write(addr, val, size);
    return MEMTX_DECODE_ERROR;
}

static MemTxResult nubus_slot_read(void *opaque, hwaddr addr, uint64_t *data,
                                   unsigned size, MemTxAttrs attrs)
{
    trace_nubus_slot_read(addr, size);
    return MEMTX_DECODE_ERROR;
}

static const MemoryRegionOps nubus_slot_ops = {
    .read_with_attrs  = nubus_slot_read,
    .write_with_attrs = nubus_slot_write,
    .endianness = DEVICE_BIG_ENDIAN,
    .valid = {
        .min_access_size = 1,
        .max_access_size = 4,
    },
};

static MemTxResult nubus_super_slot_write(void *opaque, hwaddr addr,
                                          uint64_t val, unsigned size,
                                          MemTxAttrs attrs)
{
    trace_nubus_super_slot_write(addr, val, size);
    return MEMTX_DECODE_ERROR;
}

static MemTxResult nubus_super_slot_read(void *opaque, hwaddr addr,
                                         uint64_t *data, unsigned size,
                                         MemTxAttrs attrs)
{
    trace_nubus_super_slot_read(addr, size);
    return MEMTX_DECODE_ERROR;
}

static const MemoryRegionOps nubus_super_slot_ops = {
    .read_with_attrs = nubus_super_slot_read,
    .write_with_attrs = nubus_super_slot_write,
    .endianness = DEVICE_BIG_ENDIAN,
    .valid = {
        .min_access_size = 1,
        .max_access_size = 4,
    },
};

static void nubus_unrealize(BusState *bus)
{
    NubusBus *nubus = NUBUS_BUS(bus);

    address_space_destroy(&nubus->nubus_as);
}

static void nubus_realize(BusState *bus, Error **errp)
{
    NubusBus *nubus = NUBUS_BUS(bus);

    if (!nubus_find()) {
        error_setg(errp, "at most one %s device is permitted", TYPE_NUBUS_BUS);
        return;
    }

    address_space_init(&nubus->nubus_as, &nubus->nubus_mr, "nubus");
}

static void nubus_init(Object *obj)
{
    NubusBus *nubus = NUBUS_BUS(obj);

    memory_region_init(&nubus->nubus_mr, obj, "nubus", 0x100000000);

    memory_region_init_io(&nubus->super_slot_io, obj, &nubus_super_slot_ops,
                          nubus, "nubus-super-slots",
                          (NUBUS_SUPER_SLOT_NB + 1) * NUBUS_SUPER_SLOT_SIZE);
    memory_region_add_subregion(&nubus->nubus_mr, 0x0, &nubus->super_slot_io);

    memory_region_init_io(&nubus->slot_io, obj, &nubus_slot_ops,
                          nubus, "nubus-slots",
                          NUBUS_SLOT_NB * NUBUS_SLOT_SIZE);
    memory_region_add_subregion(&nubus->nubus_mr,
                                (NUBUS_SUPER_SLOT_NB + 1) *
                                NUBUS_SUPER_SLOT_SIZE, &nubus->slot_io);

    nubus->slot_available_mask = MAKE_64BIT_MASK(NUBUS_FIRST_SLOT,
                                                 NUBUS_SLOT_NB);
}

static char *nubus_get_dev_path(DeviceState *dev)
{
    NubusDevice *nd = NUBUS_DEVICE(dev);
    BusState *bus = qdev_get_parent_bus(dev);
    char *p = qdev_get_dev_path(bus->parent);

    if (p) {
        char *ret = g_strdup_printf("%s/%s/%02x", p, bus->name, nd->slot);
        g_free(p);
        return ret;
    } else {
        return g_strdup_printf("%s/%02x", bus->name, nd->slot);
    }
}

static bool nubus_check_address(BusState *bus, DeviceState *dev, Error **errp)
{
    NubusDevice *nd = NUBUS_DEVICE(dev);
    NubusBus *nubus = NUBUS_BUS(bus);

    if (nd->slot == -1) {
        /* No slot specified, find first available free slot */
        int s = ctz32(nubus->slot_available_mask);
        if (s != 32) {
            nd->slot = s;
        } else {
            error_setg(errp, "Cannot register nubus card, no free slot "
                             "available");
            return false;
        }
    } else {
        /* Slot specified, make sure the slot is available */
        if (!(nubus->slot_available_mask & BIT(nd->slot))) {
            error_setg(errp, "Cannot register nubus card, slot %d is "
                             "unavailable or already occupied", nd->slot);
            return false;
        }
    }

    nubus->slot_available_mask &= ~BIT(nd->slot);
    return true;
}

static void nubus_class_init(ObjectClass *oc, void *data)
{
    BusClass *bc = BUS_CLASS(oc);

    bc->realize = nubus_realize;
    bc->unrealize = nubus_unrealize;
    bc->check_address = nubus_check_address;
    bc->get_dev_path = nubus_get_dev_path;
}

static const TypeInfo nubus_bus_info = {
    .name = TYPE_NUBUS_BUS,
    .parent = TYPE_BUS,
    .instance_size = sizeof(NubusBus),
    .instance_init = nubus_init,
    .class_init = nubus_class_init,
};

static void nubus_register_types(void)
{
    type_register_static(&nubus_bus_info);
}

type_init(nubus_register_types)