[44a53fd] | 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/bd.h>
|
---|
| 42 | #include <async.h>
|
---|
| 43 | #include <as.h>
|
---|
[1e4cada] | 44 | #include <fibril_synch.h>
|
---|
[44a53fd] | 45 | #include <devmap.h>
|
---|
| 46 | #include <sys/types.h>
|
---|
| 47 | #include <errno.h>
|
---|
[1ee00b7] | 48 | #include <macros.h>
|
---|
[95bc57c] | 49 | #include <task.h>
|
---|
[44a53fd] | 50 |
|
---|
[1313ee9] | 51 | #define NAME "gxe_bd"
|
---|
| 52 | #define NAMESPACE "bd"
|
---|
[44a53fd] | 53 |
|
---|
| 54 | enum {
|
---|
| 55 | CTL_READ_START = 0,
|
---|
| 56 | CTL_WRITE_START = 1,
|
---|
| 57 | };
|
---|
| 58 |
|
---|
| 59 | enum {
|
---|
| 60 | STATUS_FAILURE = 0
|
---|
| 61 | };
|
---|
| 62 |
|
---|
[84adbf0] | 63 | enum {
|
---|
| 64 | MAX_DISKS = 2
|
---|
| 65 | };
|
---|
| 66 |
|
---|
[44a53fd] | 67 | typedef struct {
|
---|
| 68 | uint32_t offset_lo;
|
---|
| 69 | uint32_t pad0;
|
---|
| 70 | uint32_t offset_hi;
|
---|
| 71 | uint32_t pad1;
|
---|
| 72 |
|
---|
| 73 | uint32_t disk_id;
|
---|
| 74 | uint32_t pad2[3];
|
---|
| 75 |
|
---|
| 76 | uint32_t control;
|
---|
| 77 | uint32_t pad3[3];
|
---|
| 78 |
|
---|
| 79 | uint32_t status;
|
---|
| 80 |
|
---|
| 81 | uint32_t pad4[3];
|
---|
[39580667] | 82 | uint8_t pad5[0x3fc0];
|
---|
[44a53fd] | 83 |
|
---|
[39580667] | 84 | uint8_t buffer[512];
|
---|
[44a53fd] | 85 | } gxe_bd_t;
|
---|
| 86 |
|
---|
| 87 |
|
---|
[3ecc02e] | 88 | static const size_t block_size = 512;
|
---|
| 89 | static size_t comm_size;
|
---|
| 90 |
|
---|
[44a53fd] | 91 | static uintptr_t dev_physical = 0x13000000;
|
---|
| 92 | static gxe_bd_t *dev;
|
---|
| 93 |
|
---|
[991f645] | 94 | static devmap_handle_t devmap_handle[MAX_DISKS];
|
---|
[44a53fd] | 95 |
|
---|
[12956e57] | 96 | static fibril_mutex_t dev_lock[MAX_DISKS];
|
---|
[44a53fd] | 97 |
|
---|
| 98 | static int gxe_bd_init(void);
|
---|
| 99 | static void gxe_bd_connection(ipc_callid_t iid, ipc_call_t *icall);
|
---|
[1ee00b7] | 100 | static int gxe_bd_read_blocks(int disk_id, uint64_t ba, unsigned cnt,
|
---|
[84adbf0] | 101 | void *buf);
|
---|
[1ee00b7] | 102 | static int gxe_bd_write_blocks(int disk_id, uint64_t ba, unsigned cnt,
|
---|
[84adbf0] | 103 | const void *buf);
|
---|
[1ee00b7] | 104 | static int gxe_bd_read_block(int disk_id, uint64_t ba, void *buf);
|
---|
| 105 | static int gxe_bd_write_block(int disk_id, uint64_t ba, const void *buf);
|
---|
[44a53fd] | 106 |
|
---|
| 107 | int main(int argc, char **argv)
|
---|
| 108 | {
|
---|
| 109 | printf(NAME ": GXemul disk driver\n");
|
---|
| 110 |
|
---|
| 111 | if (gxe_bd_init() != EOK)
|
---|
| 112 | return -1;
|
---|
| 113 |
|
---|
| 114 | printf(NAME ": Accepting connections\n");
|
---|
[95bc57c] | 115 | task_retval(0);
|
---|
[44a53fd] | 116 | async_manager();
|
---|
| 117 |
|
---|
| 118 | /* Not reached */
|
---|
| 119 | return 0;
|
---|
| 120 | }
|
---|
| 121 |
|
---|
| 122 | static int gxe_bd_init(void)
|
---|
| 123 | {
|
---|
| 124 | void *vaddr;
|
---|
[84adbf0] | 125 | int rc, i;
|
---|
| 126 | char name[16];
|
---|
[44a53fd] | 127 |
|
---|
| 128 | rc = devmap_driver_register(NAME, gxe_bd_connection);
|
---|
| 129 | if (rc < 0) {
|
---|
| 130 | printf(NAME ": Unable to register driver.\n");
|
---|
| 131 | return rc;
|
---|
| 132 | }
|
---|
| 133 |
|
---|
| 134 | rc = pio_enable((void *) dev_physical, sizeof(gxe_bd_t), &vaddr);
|
---|
| 135 | if (rc != EOK) {
|
---|
| 136 | printf(NAME ": Could not initialize device I/O space.\n");
|
---|
| 137 | return rc;
|
---|
| 138 | }
|
---|
| 139 |
|
---|
| 140 | dev = vaddr;
|
---|
| 141 |
|
---|
[84adbf0] | 142 | for (i = 0; i < MAX_DISKS; i++) {
|
---|
[1313ee9] | 143 | snprintf(name, 16, "%s/disk%d", NAMESPACE, i);
|
---|
[991f645] | 144 | rc = devmap_device_register(name, &devmap_handle[i]);
|
---|
[84adbf0] | 145 | if (rc != EOK) {
|
---|
[1313ee9] | 146 | printf(NAME ": Unable to register device %s.\n", name);
|
---|
[84adbf0] | 147 | return rc;
|
---|
| 148 | }
|
---|
[12956e57] | 149 | fibril_mutex_initialize(&dev_lock[i]);
|
---|
[44a53fd] | 150 | }
|
---|
| 151 |
|
---|
| 152 | return EOK;
|
---|
| 153 | }
|
---|
| 154 |
|
---|
| 155 | static void gxe_bd_connection(ipc_callid_t iid, ipc_call_t *icall)
|
---|
| 156 | {
|
---|
| 157 | void *fs_va = NULL;
|
---|
| 158 | ipc_callid_t callid;
|
---|
| 159 | ipc_call_t call;
|
---|
[96b02eb9] | 160 | sysarg_t method;
|
---|
[991f645] | 161 | devmap_handle_t dh;
|
---|
[47b7006] | 162 | unsigned int flags;
|
---|
[44a53fd] | 163 | int retval;
|
---|
[1ee00b7] | 164 | uint64_t ba;
|
---|
| 165 | unsigned cnt;
|
---|
[84adbf0] | 166 | int disk_id, i;
|
---|
| 167 |
|
---|
| 168 | /* Get the device handle. */
|
---|
| 169 | dh = IPC_GET_ARG1(*icall);
|
---|
| 170 |
|
---|
| 171 | /* Determine which disk device is the client connecting to. */
|
---|
| 172 | disk_id = -1;
|
---|
| 173 | for (i = 0; i < MAX_DISKS; i++)
|
---|
[991f645] | 174 | if (devmap_handle[i] == dh)
|
---|
[84adbf0] | 175 | disk_id = i;
|
---|
| 176 |
|
---|
| 177 | if (disk_id < 0) {
|
---|
[ffa2c8ef] | 178 | async_answer_0(iid, EINVAL);
|
---|
[84adbf0] | 179 | return;
|
---|
| 180 | }
|
---|
[44a53fd] | 181 |
|
---|
| 182 | /* Answer the IPC_M_CONNECT_ME_TO call. */
|
---|
[ffa2c8ef] | 183 | async_answer_0(iid, EOK);
|
---|
[44a53fd] | 184 |
|
---|
[0da4e41] | 185 | if (!async_share_out_receive(&callid, &comm_size, &flags)) {
|
---|
[ffa2c8ef] | 186 | async_answer_0(callid, EHANGUP);
|
---|
[44a53fd] | 187 | return;
|
---|
| 188 | }
|
---|
| 189 |
|
---|
[1ee00b7] | 190 | if (comm_size < block_size) {
|
---|
[ffa2c8ef] | 191 | async_answer_0(callid, EHANGUP);
|
---|
[1ee00b7] | 192 | return;
|
---|
| 193 | }
|
---|
| 194 |
|
---|
[3ecc02e] | 195 | fs_va = as_get_mappable_page(comm_size);
|
---|
[44a53fd] | 196 | if (fs_va == NULL) {
|
---|
[ffa2c8ef] | 197 | async_answer_0(callid, EHANGUP);
|
---|
[44a53fd] | 198 | return;
|
---|
| 199 | }
|
---|
| 200 |
|
---|
[0da4e41] | 201 | (void) async_share_out_finalize(callid, fs_va);
|
---|
[44a53fd] | 202 |
|
---|
| 203 | while (1) {
|
---|
| 204 | callid = async_get_call(&call);
|
---|
[228e490] | 205 | method = IPC_GET_IMETHOD(call);
|
---|
[3ecc02e] | 206 | switch (method) {
|
---|
[44a53fd] | 207 | case IPC_M_PHONE_HUNGUP:
|
---|
| 208 | /* The other side has hung up. */
|
---|
[ffa2c8ef] | 209 | async_answer_0(callid, EOK);
|
---|
[44a53fd] | 210 | return;
|
---|
[1ee00b7] | 211 | case BD_READ_BLOCKS:
|
---|
| 212 | ba = MERGE_LOUP32(IPC_GET_ARG1(call),
|
---|
| 213 | IPC_GET_ARG2(call));
|
---|
| 214 | cnt = IPC_GET_ARG3(call);
|
---|
| 215 | if (cnt * block_size > comm_size) {
|
---|
| 216 | retval = ELIMIT;
|
---|
[3ecc02e] | 217 | break;
|
---|
| 218 | }
|
---|
[1ee00b7] | 219 | retval = gxe_bd_read_blocks(disk_id, ba, cnt, fs_va);
|
---|
[44a53fd] | 220 | break;
|
---|
[1ee00b7] | 221 | case BD_WRITE_BLOCKS:
|
---|
| 222 | ba = MERGE_LOUP32(IPC_GET_ARG1(call),
|
---|
| 223 | IPC_GET_ARG2(call));
|
---|
| 224 | cnt = IPC_GET_ARG3(call);
|
---|
| 225 | if (cnt * block_size > comm_size) {
|
---|
| 226 | retval = ELIMIT;
|
---|
| 227 | break;
|
---|
| 228 | }
|
---|
| 229 | retval = gxe_bd_write_blocks(disk_id, ba, cnt, fs_va);
|
---|
| 230 | break;
|
---|
| 231 | case BD_GET_BLOCK_SIZE:
|
---|
[ffa2c8ef] | 232 | async_answer_1(callid, EOK, block_size);
|
---|
[1ee00b7] | 233 | continue;
|
---|
[08232ee] | 234 | case BD_GET_NUM_BLOCKS:
|
---|
| 235 | retval = ENOTSUP;
|
---|
| 236 | break;
|
---|
[44a53fd] | 237 | default:
|
---|
| 238 | retval = EINVAL;
|
---|
| 239 | break;
|
---|
| 240 | }
|
---|
[ffa2c8ef] | 241 | async_answer_0(callid, retval);
|
---|
[44a53fd] | 242 | }
|
---|
| 243 | }
|
---|
| 244 |
|
---|
[1ee00b7] | 245 | /** Read multiple blocks from the device. */
|
---|
| 246 | static int gxe_bd_read_blocks(int disk_id, uint64_t ba, unsigned cnt,
|
---|
| 247 | void *buf) {
|
---|
| 248 |
|
---|
[3ecc02e] | 249 | int rc;
|
---|
| 250 |
|
---|
[1ee00b7] | 251 | while (cnt > 0) {
|
---|
| 252 | rc = gxe_bd_read_block(disk_id, ba, buf);
|
---|
| 253 | if (rc != EOK)
|
---|
| 254 | return rc;
|
---|
| 255 |
|
---|
| 256 | ++ba;
|
---|
| 257 | --cnt;
|
---|
| 258 | buf += block_size;
|
---|
| 259 | }
|
---|
[3ecc02e] | 260 |
|
---|
[1ee00b7] | 261 | return EOK;
|
---|
| 262 | }
|
---|
| 263 |
|
---|
| 264 | /** Write multiple blocks to the device. */
|
---|
| 265 | static int gxe_bd_write_blocks(int disk_id, uint64_t ba, unsigned cnt,
|
---|
| 266 | const void *buf) {
|
---|
| 267 |
|
---|
| 268 | int rc;
|
---|
[3ecc02e] | 269 |
|
---|
[1ee00b7] | 270 | while (cnt > 0) {
|
---|
| 271 | rc = gxe_bd_write_block(disk_id, ba, buf);
|
---|
[3ecc02e] | 272 | if (rc != EOK)
|
---|
| 273 | return rc;
|
---|
| 274 |
|
---|
[1ee00b7] | 275 | ++ba;
|
---|
| 276 | --cnt;
|
---|
[3ecc02e] | 277 | buf += block_size;
|
---|
| 278 | }
|
---|
| 279 |
|
---|
| 280 | return EOK;
|
---|
| 281 | }
|
---|
| 282 |
|
---|
[1ee00b7] | 283 | /** Read a block from the device. */
|
---|
| 284 | static int gxe_bd_read_block(int disk_id, uint64_t ba, void *buf)
|
---|
[44a53fd] | 285 | {
|
---|
| 286 | uint32_t status;
|
---|
[1ee00b7] | 287 | uint64_t byte_addr;
|
---|
[44a53fd] | 288 | size_t i;
|
---|
| 289 | uint32_t w;
|
---|
| 290 |
|
---|
[1ee00b7] | 291 | byte_addr = ba * block_size;
|
---|
| 292 |
|
---|
[12956e57] | 293 | fibril_mutex_lock(&dev_lock[disk_id]);
|
---|
[1ee00b7] | 294 | pio_write_32(&dev->offset_lo, (uint32_t) byte_addr);
|
---|
| 295 | pio_write_32(&dev->offset_hi, byte_addr >> 32);
|
---|
[44a53fd] | 296 | pio_write_32(&dev->disk_id, disk_id);
|
---|
| 297 | pio_write_32(&dev->control, CTL_READ_START);
|
---|
| 298 |
|
---|
| 299 | status = pio_read_32(&dev->status);
|
---|
| 300 | if (status == STATUS_FAILURE) {
|
---|
[12956e57] | 301 | fibril_mutex_unlock(&dev_lock[disk_id]);
|
---|
[44a53fd] | 302 | return EIO;
|
---|
| 303 | }
|
---|
| 304 |
|
---|
[1ee00b7] | 305 | for (i = 0; i < block_size; i++) {
|
---|
[39580667] | 306 | ((uint8_t *) buf)[i] = w = pio_read_8(&dev->buffer[i]);
|
---|
[44a53fd] | 307 | }
|
---|
| 308 |
|
---|
[12956e57] | 309 | fibril_mutex_unlock(&dev_lock[disk_id]);
|
---|
[44a53fd] | 310 | return EOK;
|
---|
| 311 | }
|
---|
| 312 |
|
---|
[1ee00b7] | 313 | /** Write a block to the device. */
|
---|
| 314 | static int gxe_bd_write_block(int disk_id, uint64_t ba, const void *buf)
|
---|
[44a53fd] | 315 | {
|
---|
| 316 | uint32_t status;
|
---|
[1ee00b7] | 317 | uint64_t byte_addr;
|
---|
[44a53fd] | 318 | size_t i;
|
---|
| 319 |
|
---|
[1ee00b7] | 320 | byte_addr = ba * block_size;
|
---|
| 321 |
|
---|
| 322 | fibril_mutex_lock(&dev_lock[disk_id]);
|
---|
| 323 |
|
---|
| 324 | for (i = 0; i < block_size; i++) {
|
---|
[39580667] | 325 | pio_write_8(&dev->buffer[i], ((const uint8_t *) buf)[i]);
|
---|
[44a53fd] | 326 | }
|
---|
| 327 |
|
---|
[1ee00b7] | 328 | pio_write_32(&dev->offset_lo, (uint32_t) byte_addr);
|
---|
| 329 | pio_write_32(&dev->offset_hi, byte_addr >> 32);
|
---|
[44a53fd] | 330 | pio_write_32(&dev->disk_id, disk_id);
|
---|
| 331 | pio_write_32(&dev->control, CTL_WRITE_START);
|
---|
| 332 |
|
---|
| 333 | status = pio_read_32(&dev->status);
|
---|
| 334 | if (status == STATUS_FAILURE) {
|
---|
[12956e57] | 335 | fibril_mutex_unlock(&dev_lock[disk_id]);
|
---|
[44a53fd] | 336 | return EIO;
|
---|
| 337 | }
|
---|
| 338 |
|
---|
[12956e57] | 339 | fibril_mutex_unlock(&dev_lock[disk_id]);
|
---|
[44a53fd] | 340 | return EOK;
|
---|
| 341 | }
|
---|
| 342 |
|
---|
| 343 | /**
|
---|
| 344 | * @}
|
---|
| 345 | */
|
---|