qdev.c 7.5 KB
Newer Older
G
Gerd Hoffmann 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * ide bus support for qdev.
 *
 * Copyright (c) 2009 Gerd Hoffmann <kraxel@redhat.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
 */
#include <hw/hw.h>
#include "dma.h"
M
Markus Armbruster 已提交
21
#include "qemu-error.h"
G
Gerd Hoffmann 已提交
22
#include <hw/ide/internal.h>
B
Blue Swirl 已提交
23
#include "blockdev.h"
24
#include "sysemu.h"
G
Gerd Hoffmann 已提交
25 26 27

/* --------------------------------- */

28 29
static char *idebus_get_fw_dev_path(DeviceState *dev);

30 31 32 33 34
static Property ide_props[] = {
    DEFINE_PROP_UINT32("unit", IDEDevice, unit, -1),
    DEFINE_PROP_END_OF_LIST(),
};

35 36 37 38 39 40 41 42 43 44 45 46
static void ide_bus_class_init(ObjectClass *klass, void *data)
{
    BusClass *k = BUS_CLASS(klass);

    k->get_fw_dev_path = idebus_get_fw_dev_path;
}

static const TypeInfo ide_bus_info = {
    .name = TYPE_IDE_BUS,
    .parent = TYPE_BUS,
    .instance_size = sizeof(IDEBus),
    .class_init = ide_bus_class_init,
G
Gerd Hoffmann 已提交
47 48
};

49
void ide_bus_new(IDEBus *idebus, DeviceState *dev, int bus_id)
G
Gerd Hoffmann 已提交
50
{
51
    qbus_create_inplace(&idebus->qbus, TYPE_IDE_BUS, dev, NULL);
52
    idebus->bus_id = bus_id;
G
Gerd Hoffmann 已提交
53 54
}

55 56 57 58 59 60 61 62 63 64
static char *idebus_get_fw_dev_path(DeviceState *dev)
{
    char path[30];

    snprintf(path, sizeof(path), "%s@%d", qdev_fw_name(dev),
             ((IDEBus*)dev->parent_bus)->bus_id);

    return strdup(path);
}

A
Anthony Liguori 已提交
65
static int ide_qdev_init(DeviceState *qdev)
G
Gerd Hoffmann 已提交
66
{
67 68
    IDEDevice *dev = IDE_DEVICE(qdev);
    IDEDeviceClass *dc = IDE_DEVICE_GET_CLASS(dev);
G
Gerd Hoffmann 已提交
69 70
    IDEBus *bus = DO_UPCAST(IDEBus, qbus, qdev->parent_bus);

71
    if (!dev->conf.bs) {
M
Markus Armbruster 已提交
72
        error_report("No drive specified");
G
Gerd Hoffmann 已提交
73 74 75 76 77 78 79 80
        goto err;
    }
    if (dev->unit == -1) {
        dev->unit = bus->master ? 1 : 0;
    }
    switch (dev->unit) {
    case 0:
        if (bus->master) {
M
Markus Armbruster 已提交
81
            error_report("IDE unit %d is in use", dev->unit);
G
Gerd Hoffmann 已提交
82 83 84 85 86 87
            goto err;
        }
        bus->master = dev;
        break;
    case 1:
        if (bus->slave) {
M
Markus Armbruster 已提交
88
            error_report("IDE unit %d is in use", dev->unit);
G
Gerd Hoffmann 已提交
89 90 91 92 93
            goto err;
        }
        bus->slave = dev;
        break;
    default:
M
Markus Armbruster 已提交
94
        error_report("Invalid IDE unit %d", dev->unit);
G
Gerd Hoffmann 已提交
95 96
        goto err;
    }
97
    return dc->init(dev);
G
Gerd Hoffmann 已提交
98 99 100 101 102 103 104 105 106

err:
    return -1;
}

IDEDevice *ide_create_drive(IDEBus *bus, int unit, DriveInfo *drive)
{
    DeviceState *dev;

107
    dev = qdev_create(&bus->qbus, drive->media_cd ? "ide-cd" : "ide-hd");
G
Gerd Hoffmann 已提交
108
    qdev_prop_set_uint32(dev, "unit", unit);
109
    qdev_prop_set_drive_nofail(dev, "drive", drive->bdrv);
110
    qdev_init_nofail(dev);
G
Gerd Hoffmann 已提交
111 112 113
    return DO_UPCAST(IDEDevice, qdev, dev);
}

114 115 116 117 118 119 120
void ide_get_bs(BlockDriverState *bs[], BusState *qbus)
{
    IDEBus *bus = DO_UPCAST(IDEBus, qbus, qbus);
    bs[0] = bus->master ? bus->master->conf.bs : NULL;
    bs[1] = bus->slave  ? bus->slave->conf.bs  : NULL;
}

G
Gerd Hoffmann 已提交
121 122 123 124 125 126
/* --------------------------------- */

typedef struct IDEDrive {
    IDEDevice dev;
} IDEDrive;

127
static int ide_dev_initfn(IDEDevice *dev, IDEDriveKind kind)
G
Gerd Hoffmann 已提交
128 129
{
    IDEBus *bus = DO_UPCAST(IDEBus, qbus, dev->qdev.parent_bus);
130 131
    IDEState *s = bus->ifs + dev->unit;
    const char *serial;
132
    DriveInfo *dinfo;
133

C
Christoph Hellwig 已提交
134 135 136 137 138
    if (dev->conf.discard_granularity && dev->conf.discard_granularity != 512) {
        error_report("discard_granularity must be 512 for ide");
        return -1;
    }

139 140 141
    serial = dev->serial;
    if (!serial) {
        /* try to fall back to value set with legacy -drive serial=... */
142 143 144 145
        dinfo = drive_get_by_blockdev(dev->conf.bs);
        if (*dinfo->serial) {
            serial = dinfo->serial;
        }
146 147
    }

F
Floris Bos 已提交
148
    if (ide_init_drive(s, dev->conf.bs, kind,
F
Floris Bos 已提交
149
                       dev->version, serial, dev->model, dev->wwn) < 0) {
150 151
        return -1;
    }
152

153
    if (!dev->version) {
154
        dev->version = g_strdup(s->version);
155
    }
156
    if (!dev->serial) {
157
        dev->serial = g_strdup(s->drive_serial_str);
158
    }
159 160 161 162

    add_boot_device_path(dev->conf.bootindex, &dev->qdev,
                         dev->unit ? "/disk@1" : "/disk@0");

G
Gerd Hoffmann 已提交
163 164 165
    return 0;
}

166 167 168 169 170 171 172 173 174 175 176 177
static int ide_hd_initfn(IDEDevice *dev)
{
    return ide_dev_initfn(dev, IDE_HD);
}

static int ide_cd_initfn(IDEDevice *dev)
{
    return ide_dev_initfn(dev, IDE_CD);
}

static int ide_drive_initfn(IDEDevice *dev)
{
178 179 180
    DriveInfo *dinfo = drive_get_by_blockdev(dev->conf.bs);

    return ide_dev_initfn(dev, dinfo->media_cd ? IDE_CD : IDE_HD);
181 182 183 184 185
}

#define DEFINE_IDE_DEV_PROPERTIES()                     \
    DEFINE_BLOCK_PROPERTIES(IDEDrive, dev.conf),        \
    DEFINE_PROP_STRING("ver",  IDEDrive, dev.version),  \
F
Floris Bos 已提交
186
    DEFINE_PROP_HEX64("wwn",  IDEDrive, dev.wwn, 0),    \
F
Floris Bos 已提交
187 188
    DEFINE_PROP_STRING("serial",  IDEDrive, dev.serial),\
    DEFINE_PROP_STRING("model", IDEDrive, dev.model)
189

190 191 192 193 194
static Property ide_hd_properties[] = {
    DEFINE_IDE_DEV_PROPERTIES(),
    DEFINE_PROP_END_OF_LIST(),
};

195 196
static void ide_hd_class_init(ObjectClass *klass, void *data)
{
197
    DeviceClass *dc = DEVICE_CLASS(klass);
198 199
    IDEDeviceClass *k = IDE_DEVICE_CLASS(klass);
    k->init = ide_hd_initfn;
200 201 202
    dc->fw_name = "drive";
    dc->desc = "virtual IDE disk";
    dc->props = ide_hd_properties;
203 204
}

205 206 207 208 209 210 211 212 213 214
static TypeInfo ide_hd_info = {
    .name          = "ide-hd",
    .parent        = TYPE_IDE_DEVICE,
    .instance_size = sizeof(IDEDrive),
    .class_init    = ide_hd_class_init,
};

static Property ide_cd_properties[] = {
    DEFINE_IDE_DEV_PROPERTIES(),
    DEFINE_PROP_END_OF_LIST(),
G
Gerd Hoffmann 已提交
215 216
};

217
static void ide_cd_class_init(ObjectClass *klass, void *data)
G
Gerd Hoffmann 已提交
218
{
219
    DeviceClass *dc = DEVICE_CLASS(klass);
220 221
    IDEDeviceClass *k = IDE_DEVICE_CLASS(klass);
    k->init = ide_cd_initfn;
222 223 224
    dc->fw_name = "drive";
    dc->desc = "virtual IDE CD-ROM";
    dc->props = ide_cd_properties;
225
}
226

227 228 229 230 231 232 233 234 235 236
static TypeInfo ide_cd_info = {
    .name          = "ide-cd",
    .parent        = TYPE_IDE_DEVICE,
    .instance_size = sizeof(IDEDrive),
    .class_init    = ide_cd_class_init,
};

static Property ide_drive_properties[] = {
    DEFINE_IDE_DEV_PROPERTIES(),
    DEFINE_PROP_END_OF_LIST(),
237 238 239 240
};

static void ide_drive_class_init(ObjectClass *klass, void *data)
{
241
    DeviceClass *dc = DEVICE_CLASS(klass);
242 243
    IDEDeviceClass *k = IDE_DEVICE_CLASS(klass);
    k->init = ide_drive_initfn;
244 245 246
    dc->fw_name = "drive";
    dc->desc = "virtual IDE disk or CD-ROM (legacy)";
    dc->props = ide_drive_properties;
247 248
}

249 250 251 252 253
static TypeInfo ide_drive_info = {
    .name          = "ide-drive",
    .parent        = TYPE_IDE_DEVICE,
    .instance_size = sizeof(IDEDrive),
    .class_init    = ide_drive_class_init,
254 255
};

256 257 258 259
static void ide_device_class_init(ObjectClass *klass, void *data)
{
    DeviceClass *k = DEVICE_CLASS(klass);
    k->init = ide_qdev_init;
260
    k->bus_type = TYPE_IDE_BUS;
261
    k->props = ide_props;
262 263
}

264 265 266 267 268 269
static TypeInfo ide_device_type_info = {
    .name = TYPE_IDE_DEVICE,
    .parent = TYPE_DEVICE,
    .instance_size = sizeof(IDEDevice),
    .abstract = true,
    .class_size = sizeof(IDEDeviceClass),
270
    .class_init = ide_device_class_init,
271 272
};

A
Andreas Färber 已提交
273
static void ide_register_types(void)
274
{
275
    type_register_static(&ide_bus_info);
276 277 278
    type_register_static(&ide_hd_info);
    type_register_static(&ide_cd_info);
    type_register_static(&ide_drive_info);
279
    type_register_static(&ide_device_type_info);
G
Gerd Hoffmann 已提交
280
}
A
Andreas Färber 已提交
281 282

type_init(ide_register_types)