Statistics
| Branch: | Revision:

root / hw / ide / pci.c @ bc578fe0

History | View | Annotate | Download (5.5 kB)

1
/*
2
 * QEMU IDE Emulation: PCI Bus support.
3
 *
4
 * Copyright (c) 2003 Fabrice Bellard
5
 * Copyright (c) 2006 Openedhand Ltd.
6
 *
7
 * Permission is hereby granted, free of charge, to any person obtaining a copy
8
 * of this software and associated documentation files (the "Software"), to deal
9
 * in the Software without restriction, including without limitation the rights
10
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
 * copies of the Software, and to permit persons to whom the Software is
12
 * furnished to do so, subject to the following conditions:
13
 *
14
 * The above copyright notice and this permission notice shall be included in
15
 * all copies or substantial portions of the Software.
16
 *
17
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
 * THE SOFTWARE.
24
 */
25
#include <hw/hw.h>
26
#include <hw/pc.h>
27
#include <hw/pci.h>
28
#include <hw/isa.h>
29
#include "block.h"
30
#include "block_int.h"
31
#include "sysemu.h"
32
#include "dma.h"
33

    
34
#include <hw/ide/pci.h>
35

    
36
void bmdma_cmd_writeb(void *opaque, uint32_t addr, uint32_t val)
37
{
38
    BMDMAState *bm = opaque;
39
#ifdef DEBUG_IDE
40
    printf("%s: 0x%08x\n", __func__, val);
41
#endif
42
    if (!(val & BM_CMD_START)) {
43
        /* XXX: do it better */
44
        ide_dma_cancel(bm);
45
        bm->cmd = val & 0x09;
46
    } else {
47
        if (!(bm->status & BM_STATUS_DMAING)) {
48
            bm->status |= BM_STATUS_DMAING;
49
            /* start dma transfer if possible */
50
            if (bm->dma_cb)
51
                bm->dma_cb(bm, 0);
52
        }
53
        bm->cmd = val & 0x09;
54
    }
55
}
56

    
57
uint32_t bmdma_addr_readb(void *opaque, uint32_t addr)
58
{
59
    BMDMAState *bm = opaque;
60
    uint32_t val;
61
    val = (bm->addr >> ((addr & 3) * 8)) & 0xff;
62
#ifdef DEBUG_IDE
63
    printf("%s: 0x%08x\n", __func__, val);
64
#endif
65
    return val;
66
}
67

    
68
void bmdma_addr_writeb(void *opaque, uint32_t addr, uint32_t val)
69
{
70
    BMDMAState *bm = opaque;
71
    int shift = (addr & 3) * 8;
72
#ifdef DEBUG_IDE
73
    printf("%s: 0x%08x\n", __func__, val);
74
#endif
75
    bm->addr &= ~(0xFF << shift);
76
    bm->addr |= ((val & 0xFF) << shift) & ~3;
77
    bm->cur_addr = bm->addr;
78
}
79

    
80
uint32_t bmdma_addr_readw(void *opaque, uint32_t addr)
81
{
82
    BMDMAState *bm = opaque;
83
    uint32_t val;
84
    val = (bm->addr >> ((addr & 3) * 8)) & 0xffff;
85
#ifdef DEBUG_IDE
86
    printf("%s: 0x%08x\n", __func__, val);
87
#endif
88
    return val;
89
}
90

    
91
void bmdma_addr_writew(void *opaque, uint32_t addr, uint32_t val)
92
{
93
    BMDMAState *bm = opaque;
94
    int shift = (addr & 3) * 8;
95
#ifdef DEBUG_IDE
96
    printf("%s: 0x%08x\n", __func__, val);
97
#endif
98
    bm->addr &= ~(0xFFFF << shift);
99
    bm->addr |= ((val & 0xFFFF) << shift) & ~3;
100
    bm->cur_addr = bm->addr;
101
}
102

    
103
uint32_t bmdma_addr_readl(void *opaque, uint32_t addr)
104
{
105
    BMDMAState *bm = opaque;
106
    uint32_t val;
107
    val = bm->addr;
108
#ifdef DEBUG_IDE
109
    printf("%s: 0x%08x\n", __func__, val);
110
#endif
111
    return val;
112
}
113

    
114
void bmdma_addr_writel(void *opaque, uint32_t addr, uint32_t val)
115
{
116
    BMDMAState *bm = opaque;
117
#ifdef DEBUG_IDE
118
    printf("%s: 0x%08x\n", __func__, val);
119
#endif
120
    bm->addr = val & ~3;
121
    bm->cur_addr = bm->addr;
122
}
123

    
124
void pci_ide_save(QEMUFile* f, void *opaque)
125
{
126
    PCIIDEState *d = opaque;
127
    int i;
128

    
129
    pci_device_save(&d->dev, f);
130

    
131
    for(i = 0; i < 2; i++) {
132
        BMDMAState *bm = &d->bmdma[i];
133
        uint8_t ifidx;
134
        qemu_put_8s(f, &bm->cmd);
135
        qemu_put_8s(f, &bm->status);
136
        qemu_put_be32s(f, &bm->addr);
137
        qemu_put_sbe64s(f, &bm->sector_num);
138
        qemu_put_be32s(f, &bm->nsector);
139
        ifidx = bm->unit + 2*i;
140
        qemu_put_8s(f, &ifidx);
141
        /* XXX: if a transfer is pending, we do not save it yet */
142
    }
143

    
144
    /* per IDE interface data */
145
    for(i = 0; i < 2; i++) {
146
        idebus_save(f, d->bus+i);
147
    }
148

    
149
    /* per IDE drive data */
150
    for(i = 0; i < 2; i++) {
151
        ide_save(f, &d->bus[i].ifs[0]);
152
        ide_save(f, &d->bus[i].ifs[1]);
153
    }
154
}
155

    
156
int pci_ide_load(QEMUFile* f, void *opaque, int version_id)
157
{
158
    PCIIDEState *d = opaque;
159
    int ret, i;
160

    
161
    if (version_id != 2 && version_id != 3)
162
        return -EINVAL;
163
    ret = pci_device_load(&d->dev, f);
164
    if (ret < 0)
165
        return ret;
166

    
167
    for(i = 0; i < 2; i++) {
168
        BMDMAState *bm = &d->bmdma[i];
169
        uint8_t ifidx;
170
        qemu_get_8s(f, &bm->cmd);
171
        qemu_get_8s(f, &bm->status);
172
        qemu_get_be32s(f, &bm->addr);
173
        qemu_get_sbe64s(f, &bm->sector_num);
174
        qemu_get_be32s(f, &bm->nsector);
175
        qemu_get_8s(f, &ifidx);
176
        bm->unit = ifidx & 1;
177
        /* XXX: if a transfer is pending, we do not save it yet */
178
    }
179

    
180
    /* per IDE interface data */
181
    for(i = 0; i < 2; i++) {
182
        idebus_load(f, d->bus+i, version_id);
183
    }
184

    
185
    /* per IDE drive data */
186
    for(i = 0; i < 2; i++) {
187
        ide_load(f, &d->bus[i].ifs[0], version_id);
188
        ide_load(f, &d->bus[i].ifs[1], version_id);
189
    }
190
    return 0;
191
}
192

    
193
void pci_ide_create_devs(PCIDevice *dev, DriveInfo **hd_table)
194
{
195
    PCIIDEState *d = DO_UPCAST(PCIIDEState, dev, dev);
196
    static const int bus[4]  = { 0, 0, 1, 1 };
197
    static const int unit[4] = { 0, 1, 0, 1 };
198
    int i;
199

    
200
    for (i = 0; i < 4; i++) {
201
        if (hd_table[i] == NULL)
202
            continue;
203
        ide_create_drive(d->bus+bus[i], unit[i], hd_table[i]);
204
    }
205
}