Subversion Repositories HelenOS

Rev

Rev 4428 | Rev 4442 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4411 svoboda 1
/*
2
 * Copyright (c) 2009 Jiri Svoboda
3
 * All rights reserved.
4
 *
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
7
 * are met:
8
 *
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
14
 * - The name of the author may not be used to endorse or promote products
15
 *   derived from this software without specific prior written permission.
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
28
 
29
/** @addtogroup bd
30
 * @{
31
 */
32
 
33
/**
34
 * @file
35
 * @brief GXemul disk driver
36
 */
37
 
38
#include <stdio.h>
39
#include <libarch/ddi.h>
40
#include <ddi.h>
41
#include <ipc/ipc.h>
42
#include <ipc/bd.h>
43
#include <async.h>
44
#include <as.h>
45
#include <futex.h>
46
#include <devmap.h>
47
#include <sys/types.h>
48
#include <errno.h>
49
 
50
#define NAME "gxe_bd"
51
 
52
enum {
53
    CTL_READ_START  = 0,
54
    CTL_WRITE_START = 1,
55
};
56
 
57
enum {
58
    STATUS_FAILURE  = 0
59
};
60
 
61
typedef struct {
62
    uint32_t offset_lo;
63
    uint32_t pad0;
64
    uint32_t offset_hi;
65
    uint32_t pad1;
66
 
67
    uint32_t disk_id;
68
    uint32_t pad2[3];
69
 
70
    uint32_t control;
71
    uint32_t pad3[3];
72
 
73
    uint32_t status;
74
 
75
    uint32_t pad4[3];
4440 jermar 76
    uint8_t pad5[0x3fc0];
4411 svoboda 77
 
4440 jermar 78
    uint8_t buffer[512];
4411 svoboda 79
} gxe_bd_t;
80
 
81
 
4428 svoboda 82
static const size_t block_size = 512;
83
static size_t comm_size;
84
 
4411 svoboda 85
static uintptr_t dev_physical = 0x13000000;
86
static gxe_bd_t *dev;
87
 
88
static uint32_t disk_id = 0;
89
 
90
static atomic_t dev_futex = FUTEX_INITIALIZER;
91
 
92
static int gxe_bd_init(void);
93
static void gxe_bd_connection(ipc_callid_t iid, ipc_call_t *icall);
4428 svoboda 94
static int gx_bd_rdwr(ipcarg_t method, off_t offset, off_t size, void *buf);
95
static int gxe_bd_read_block(uint64_t offset, size_t size, void *buf);
96
static int gxe_bd_write_block(uint64_t offset, size_t size, const void *buf);
4411 svoboda 97
 
98
int main(int argc, char **argv)
99
{
100
    printf(NAME ": GXemul disk driver\n");
101
 
102
    if (gxe_bd_init() != EOK)
103
        return -1;
104
 
105
    printf(NAME ": Accepting connections\n");
106
    async_manager();
107
 
108
    /* Not reached */
109
    return 0;
110
}
111
 
112
static int gxe_bd_init(void)
113
{
114
    dev_handle_t dev_handle;
115
    void *vaddr;
116
    int rc;
117
 
118
    rc = devmap_driver_register(NAME, gxe_bd_connection);
119
    if (rc < 0) {
120
        printf(NAME ": Unable to register driver.\n");
121
        return rc;
122
    }
123
 
124
    rc = pio_enable((void *) dev_physical, sizeof(gxe_bd_t), &vaddr);
125
    if (rc != EOK) {
126
        printf(NAME ": Could not initialize device I/O space.\n");
127
        return rc;
128
    }
129
 
130
    dev = vaddr;
131
 
4416 decky 132
    rc = devmap_device_register("disk0", &dev_handle);
4411 svoboda 133
    if (rc != EOK) {
4416 decky 134
        devmap_hangup_phone(DEVMAP_DRIVER);
4411 svoboda 135
        printf(NAME ": Unable to register device.\n");
136
        return rc;
137
    }
138
 
139
    return EOK;
140
}
141
 
142
static void gxe_bd_connection(ipc_callid_t iid, ipc_call_t *icall)
143
{
144
    void *fs_va = NULL;
145
    ipc_callid_t callid;
146
    ipc_call_t call;
4428 svoboda 147
    ipcarg_t method;
4411 svoboda 148
    int flags;
149
    int retval;
4428 svoboda 150
    off_t idx;
151
    off_t size;
4411 svoboda 152
 
153
    /* Answer the IPC_M_CONNECT_ME_TO call. */
154
    ipc_answer_0(iid, EOK);
155
 
4428 svoboda 156
    if (!ipc_share_out_receive(&callid, &comm_size, &flags)) {
4411 svoboda 157
        ipc_answer_0(callid, EHANGUP);
158
        return;
159
    }
160
 
4428 svoboda 161
    fs_va = as_get_mappable_page(comm_size);
4411 svoboda 162
    if (fs_va == NULL) {
163
        ipc_answer_0(callid, EHANGUP);
164
        return;
165
    }
166
 
167
    (void) ipc_share_out_finalize(callid, fs_va);
168
 
169
    while (1) {
170
        callid = async_get_call(&call);
4428 svoboda 171
        method = IPC_GET_METHOD(call);
172
        switch (method) {
4411 svoboda 173
        case IPC_M_PHONE_HUNGUP:
174
            /* The other side has hung up. */
175
            ipc_answer_0(callid, EOK);
176
            return;
177
        case BD_READ_BLOCK:
178
        case BD_WRITE_BLOCK:
4428 svoboda 179
            idx = IPC_GET_ARG1(call);
180
            size = IPC_GET_ARG2(call);
181
            if (size > comm_size) {
182
                retval = EINVAL;
183
                break;
184
            }
185
            retval = gx_bd_rdwr(method, idx * size, size, fs_va);
4411 svoboda 186
            break;
187
        default:
188
            retval = EINVAL;
189
            break;
190
        }
191
        ipc_answer_0(callid, retval);
192
    }
193
}
194
 
4428 svoboda 195
static int gx_bd_rdwr(ipcarg_t method, off_t offset, off_t size, void *buf)
4411 svoboda 196
{
4428 svoboda 197
    int rc;
198
    size_t now;
199
 
200
    while (size > 0) {
201
        now = size < block_size ? size : block_size;
202
 
203
        if (method == BD_READ_BLOCK)
204
            rc = gxe_bd_read_block(offset, now, buf);
205
        else
206
            rc = gxe_bd_write_block(offset, now, buf);
207
 
208
        if (rc != EOK)
209
            return rc;
210
 
211
        buf += block_size;
212
        offset += block_size;
213
 
214
        if (size > block_size)
215
            size -= block_size;
216
        else
217
            size = 0;
218
    }
219
 
220
    return EOK;
221
}
222
 
223
static int gxe_bd_read_block(uint64_t offset, size_t size, void *buf)
224
{
4411 svoboda 225
    uint32_t status;
226
    size_t i;
227
    uint32_t w;
228
 
229
    futex_down(&dev_futex);
230
    pio_write_32(&dev->offset_lo, (uint32_t) offset);
231
    pio_write_32(&dev->offset_hi, offset >> 32);
232
    pio_write_32(&dev->disk_id, disk_id);
233
    pio_write_32(&dev->control, CTL_READ_START);
234
 
235
    status = pio_read_32(&dev->status);
236
    if (status == STATUS_FAILURE) {
237
        return EIO;
238
    }
239
 
4428 svoboda 240
    for (i = 0; i < size; i++) {
4440 jermar 241
        ((uint8_t *) buf)[i] = w = pio_read_8(&dev->buffer[i]);
4411 svoboda 242
    }
243
 
244
    futex_up(&dev_futex);
245
    return EOK;
246
}
247
 
4428 svoboda 248
static int gxe_bd_write_block(uint64_t offset, size_t size, const void *buf)
4411 svoboda 249
{
250
    uint32_t status;
251
    size_t i;
252
    uint32_t w;
253
 
4428 svoboda 254
    for (i = 0; i < size; i++) {
4440 jermar 255
        pio_write_8(&dev->buffer[i], ((const uint8_t *) buf)[i]);
4411 svoboda 256
    }
257
 
258
    futex_down(&dev_futex);
259
    pio_write_32(&dev->offset_lo, (uint32_t) offset);
260
    pio_write_32(&dev->offset_hi, offset >> 32);
261
    pio_write_32(&dev->disk_id, disk_id);
262
    pio_write_32(&dev->control, CTL_WRITE_START);
263
 
264
    status = pio_read_32(&dev->status);
265
    if (status == STATUS_FAILURE) {
266
        return EIO;
267
    }
268
 
269
    futex_up(&dev_futex);
270
    return EOK;
271
}
272
 
273
/**
274
 * @}
275
 */