qdev.c 6.2 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);

G
Gerd Hoffmann 已提交
30 31 32
static struct BusInfo ide_bus_info = {
    .name  = "IDE",
    .size  = sizeof(IDEBus),
33
    .get_fw_dev_path = idebus_get_fw_dev_path,
34 35 36 37
    .props = (Property[]) {
        DEFINE_PROP_UINT32("unit", IDEDevice, unit, -1),
        DEFINE_PROP_END_OF_LIST(),
    },
G
Gerd Hoffmann 已提交
38 39
};

40
void ide_bus_new(IDEBus *idebus, DeviceState *dev, int bus_id)
G
Gerd Hoffmann 已提交
41
{
42
    qbus_create_inplace(&idebus->qbus, &ide_bus_info, dev, NULL);
43
    idebus->bus_id = bus_id;
G
Gerd Hoffmann 已提交
44 45
}

46 47 48 49 50 51 52 53 54 55
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);
}

G
Gerd Hoffmann 已提交
56 57 58 59 60 61
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);

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

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

112 113 114 115 116 117 118
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 已提交
119 120 121 122 123 124
/* --------------------------------- */

typedef struct IDEDrive {
    IDEDevice dev;
} IDEDrive;

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

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

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

146
    if (ide_init_drive(s, dev->conf.bs, kind, dev->version, serial) < 0) {
147 148
        return -1;
    }
149

150 151 152
    if (!dev->version) {
        dev->version = qemu_strdup(s->version);
    }
153 154 155
    if (!dev->serial) {
        dev->serial = qemu_strdup(s->drive_serial_str);
    }
156 157 158 159

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

G
Gerd Hoffmann 已提交
160 161 162
    return 0;
}

163 164 165 166 167 168 169 170 171 172 173 174
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)
{
175 176 177
    DriveInfo *dinfo = drive_get_by_blockdev(dev->conf.bs);

    return ide_dev_initfn(dev, dinfo->media_cd ? IDE_CD : IDE_HD);
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
}

#define DEFINE_IDE_DEV_PROPERTIES()                     \
    DEFINE_BLOCK_PROPERTIES(IDEDrive, dev.conf),        \
    DEFINE_PROP_STRING("ver",  IDEDrive, dev.version),  \
    DEFINE_PROP_STRING("serial",  IDEDrive, dev.serial)

static IDEDeviceInfo ide_dev_info[] = {
    {
        .qdev.name    = "ide-hd",
        .qdev.fw_name = "drive",
        .qdev.desc    = "virtual IDE disk",
        .qdev.size    = sizeof(IDEDrive),
        .init         = ide_hd_initfn,
        .qdev.props   = (Property[]) {
            DEFINE_IDE_DEV_PROPERTIES(),
            DEFINE_PROP_END_OF_LIST(),
        }
    },{
        .qdev.name    = "ide-cd",
        .qdev.fw_name = "drive",
        .qdev.desc    = "virtual IDE CD-ROM",
        .qdev.size    = sizeof(IDEDrive),
        .init         = ide_cd_initfn,
        .qdev.props   = (Property[]) {
            DEFINE_IDE_DEV_PROPERTIES(),
            DEFINE_PROP_END_OF_LIST(),
        }
    },{
        .qdev.name    = "ide-drive", /* legacy -device ide-drive */
        .qdev.fw_name = "drive",
        .qdev.desc    = "virtual IDE disk or CD-ROM (legacy)",
        .qdev.size    = sizeof(IDEDrive),
        .init         = ide_drive_initfn,
        .qdev.props   = (Property[]) {
            DEFINE_IDE_DEV_PROPERTIES(),
            DEFINE_PROP_END_OF_LIST(),
        }
G
Gerd Hoffmann 已提交
216 217 218
    }
};

219
static void ide_dev_register(void)
G
Gerd Hoffmann 已提交
220
{
221 222 223 224 225
    int i;

    for (i = 0; i < ARRAY_SIZE(ide_dev_info); i++) {
        ide_qdev_register(&ide_dev_info[i]);
    }
G
Gerd Hoffmann 已提交
226
}
227
device_init(ide_dev_register);