qdev.c 4.1 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"
G
Gerd Hoffmann 已提交
24 25 26 27 28 29 30 31

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

static struct BusInfo ide_bus_info = {
    .name  = "IDE",
    .size  = sizeof(IDEBus),
};

32
void ide_bus_new(IDEBus *idebus, DeviceState *dev)
G
Gerd Hoffmann 已提交
33
{
34
    qbus_create_inplace(&idebus->qbus, &ide_bus_info, dev, NULL);
G
Gerd Hoffmann 已提交
35 36 37 38 39 40 41 42
}

static int ide_qdev_init(DeviceState *qdev, DeviceInfo *base)
{
    IDEDevice *dev = DO_UPCAST(IDEDevice, qdev, qdev);
    IDEDeviceInfo *info = DO_UPCAST(IDEDeviceInfo, qdev, base);
    IDEBus *bus = DO_UPCAST(IDEBus, qbus, qdev->parent_bus);

43
    if (!dev->conf.bs) {
M
Markus Armbruster 已提交
44
        error_report("No drive specified");
G
Gerd Hoffmann 已提交
45 46 47 48 49 50 51 52
        goto err;
    }
    if (dev->unit == -1) {
        dev->unit = bus->master ? 1 : 0;
    }
    switch (dev->unit) {
    case 0:
        if (bus->master) {
M
Markus Armbruster 已提交
53
            error_report("IDE unit %d is in use", dev->unit);
G
Gerd Hoffmann 已提交
54 55 56 57 58 59
            goto err;
        }
        bus->master = dev;
        break;
    case 1:
        if (bus->slave) {
M
Markus Armbruster 已提交
60
            error_report("IDE unit %d is in use", dev->unit);
G
Gerd Hoffmann 已提交
61 62 63 64 65
            goto err;
        }
        bus->slave = dev;
        break;
    default:
M
Markus Armbruster 已提交
66
        error_report("Invalid IDE unit %d", dev->unit);
G
Gerd Hoffmann 已提交
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
        goto err;
    }
    return info->init(dev);

err:
    return -1;
}

static void ide_qdev_register(IDEDeviceInfo *info)
{
    info->qdev.init = ide_qdev_init;
    info->qdev.bus_info = &ide_bus_info;
    qdev_register(&info->qdev);
}

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

    dev = qdev_create(&bus->qbus, "ide-drive");
    qdev_prop_set_uint32(dev, "unit", unit);
88
    qdev_prop_set_drive_nofail(dev, "drive", drive->bdrv);
89
    qdev_init_nofail(dev);
G
Gerd Hoffmann 已提交
90 91 92
    return DO_UPCAST(IDEDevice, qdev, dev);
}

93 94 95 96 97 98 99
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 已提交
100 101 102 103 104 105 106 107 108
/* --------------------------------- */

typedef struct IDEDrive {
    IDEDevice dev;
} IDEDrive;

static int ide_drive_initfn(IDEDevice *dev)
{
    IDEBus *bus = DO_UPCAST(IDEBus, qbus, dev->qdev.parent_bus);
109 110
    IDEState *s = bus->ifs + dev->unit;
    const char *serial;
111
    DriveInfo *dinfo;
112 113 114 115

    serial = dev->serial;
    if (!serial) {
        /* try to fall back to value set with legacy -drive serial=... */
116 117 118 119
        dinfo = drive_get_by_blockdev(dev->conf.bs);
        if (*dinfo->serial) {
            serial = dinfo->serial;
        }
120 121
    }

122 123 124
    if (ide_init_drive(s, dev->conf.bs, dev->version, serial) < 0) {
        return -1;
    }
125

126 127 128
    if (!dev->version) {
        dev->version = qemu_strdup(s->version);
    }
129 130 131
    if (!dev->serial) {
        dev->serial = qemu_strdup(s->drive_serial_str);
    }
G
Gerd Hoffmann 已提交
132 133 134 135 136
    return 0;
}

static IDEDeviceInfo ide_drive_info = {
    .qdev.name  = "ide-drive",
137
    .qdev.fw_name  = "drive",
G
Gerd Hoffmann 已提交
138 139 140 141
    .qdev.size  = sizeof(IDEDrive),
    .init       = ide_drive_initfn,
    .qdev.props = (Property[]) {
        DEFINE_PROP_UINT32("unit", IDEDrive, dev.unit, -1),
142
        DEFINE_BLOCK_PROPERTIES(IDEDrive, dev.conf),
G
Gerd Hoffmann 已提交
143
        DEFINE_PROP_STRING("ver",  IDEDrive, dev.version),
144
        DEFINE_PROP_STRING("serial",  IDEDrive, dev.serial),
G
Gerd Hoffmann 已提交
145 146 147 148 149 150 151 152 153
        DEFINE_PROP_END_OF_LIST(),
    }
};

static void ide_drive_register(void)
{
    ide_qdev_register(&ide_drive_info);
}
device_init(ide_drive_register);