Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


IDE hard drive works past grub
[palacios.git] / palacios / src / devices / ram_hd.c
1 /* 
2  * This file is part of the Palacios Virtual Machine Monitor developed
3  * by the V3VEE Project with funding from the United States National 
4  * Science Foundation and the Department of Energy.  
5  *
6  * The V3VEE Project is a joint project between Northwestern University
7  * and the University of New Mexico.  You can find out more at 
8  * http://www.v3vee.org
9  *
10  * Copyright (c) 2008, Jack Lange <jarusl@cs.northwestern.edu> 
11  * Copyright (c) 2008, The V3VEE Project <http://www.v3vee.org> 
12  * All rights reserved.
13  *
14  * Author: Jack Lange <jarusl@cs.northwestern.edu>
15  *
16  * This is free software.  You are permitted to use,
17  * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
18  */
19
20 #include <palacios/vmm.h>
21 #include <devices/ram_hd.h>
22 #include <devices/ide.h>
23
24
25 struct hd_state {
26     addr_t disk_image;
27     uint32_t capacity; // in bytes
28
29     struct vm_device * ide;
30
31     uint_t bus;
32     uint_t drive;
33 };
34
35
36 // HDs always read 2048 byte blocks... ?
37 static int hd_read(uint8_t * buf, int sector_count, uint64_t lba,  void * private_data) {
38     struct vm_device * hd_dev = (struct vm_device *)private_data;
39     struct hd_state * hd = (struct hd_state *)(hd_dev->private_data);
40     int offset = lba * IDE_SECTOR_SIZE;
41     int length = sector_count * IDE_SECTOR_SIZE;
42
43     PrintDebug("Reading RAM HD at (LBA=%d) offset %d (length=%d)\n", (uint32_t)lba, offset, length);
44
45     memcpy(buf, (uint8_t *)(hd->disk_image + offset), length);
46
47
48
49     return 0;
50 }
51
52
53 static uint64_t hd_get_capacity(void * private_data) {
54     struct vm_device * hd_dev = (struct vm_device *)private_data;
55     struct hd_state * hd = (struct hd_state *)(hd_dev->private_data);
56     PrintDebug("Querying RAM HD capacity (bytes=%d) (ret = %d)\n", 
57                hd->capacity, hd->capacity  / IDE_SECTOR_SIZE);
58     return hd->capacity / IDE_SECTOR_SIZE;
59 }
60
61 static struct v3_ide_hd_ops hd_ops = {
62     .read = hd_read, 
63     .get_capacity = hd_get_capacity,
64 };
65
66
67 static int hd_init(struct vm_device * dev) {
68     struct hd_state * hd = (struct hd_state *)(dev->private_data);
69
70     if (v3_ide_register_harddisk(hd->ide, hd->bus, hd->drive, "V3-RAM-HD", &hd_ops, dev) == -1) {
71         return -1;
72     }
73     
74     return 0;
75 }
76
77
78 static int hd_deinit(struct vm_device * dev) {
79     return 0;
80 }
81
82 static struct vm_device_ops dev_ops = {
83     .init = hd_init, 
84     .deinit = hd_deinit,
85     .reset = NULL,
86     .start = NULL,
87     .stop = NULL,
88 };
89
90 struct vm_device * v3_create_ram_hd(struct vm_device * ide, 
91                                     uint_t bus, uint_t drive, 
92                                     addr_t ramdisk, uint32_t size) {
93     struct hd_state * hd = NULL;
94
95     if (size % IDE_SECTOR_SIZE) {
96         PrintError("HD image must be an integral of sector size (IDE_SECTOR_SIZE=%d)\n", IDE_SECTOR_SIZE);
97         return NULL;
98     }
99
100     hd = (struct hd_state *)V3_Malloc(sizeof(struct hd_state));
101
102     PrintDebug("Registering Ram HDD at %p (size=%d)\n", (void *)ramdisk, size);
103
104     hd->disk_image = ramdisk;
105     hd->capacity = size;
106
107     hd->ide = ide;
108     hd->bus = bus;
109     hd->drive = drive;
110         
111     struct vm_device * hd_dev = v3_create_device("RAM-HD", &dev_ops, hd);
112
113     return hd_dev;
114 }