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.


1094a3191691bd54086c16837df89fd1b782b45b
[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
26 #ifndef DEBUG_IDE
27 #undef PrintDebug
28 #define PrintDebug(fmt, args...)
29 #endif
30
31 struct hd_state {
32     addr_t disk_image;
33     uint32_t capacity; // in bytes
34
35     struct vm_device * ide;
36
37     uint_t bus;
38     uint_t drive;
39 };
40
41
42 // HDs always read 2048 byte blocks... ?
43 static int hd_read(uint8_t * buf, int sector_count, uint64_t lba,  void * private_data) {
44     struct vm_device * hd_dev = (struct vm_device *)private_data;
45     struct hd_state * hd = (struct hd_state *)(hd_dev->private_data);
46     int offset = lba * IDE_SECTOR_SIZE;
47     int length = sector_count * IDE_SECTOR_SIZE;
48
49     //    PrintDebug("Reading RAM HD at (LBA=%d) offset %d (length=%d)\n", (uint32_t)lba, offset, length);
50
51     memcpy(buf, (uint8_t *)(hd->disk_image + offset), length);
52
53
54
55     return 0;
56 }
57
58
59 static uint64_t hd_get_capacity(void * private_data) {
60     struct vm_device * hd_dev = (struct vm_device *)private_data;
61     struct hd_state * hd = (struct hd_state *)(hd_dev->private_data);
62     PrintDebug("Querying RAM HD capacity (bytes=%d) (ret = %d)\n", 
63                hd->capacity, hd->capacity  / IDE_SECTOR_SIZE);
64     return hd->capacity / IDE_SECTOR_SIZE;
65 }
66
67 static struct v3_ide_hd_ops hd_ops = {
68     .read = hd_read, 
69     .get_capacity = hd_get_capacity,
70 };
71
72
73 static int hd_init(struct vm_device * dev) {
74     struct hd_state * hd = (struct hd_state *)(dev->private_data);
75
76     if (v3_ide_register_harddisk(hd->ide, hd->bus, hd->drive, "V3-RAM-HD", &hd_ops, dev) == -1) {
77         return -1;
78     }
79     
80     return 0;
81 }
82
83
84 static int hd_deinit(struct vm_device * dev) {
85     return 0;
86 }
87
88 static struct vm_device_ops dev_ops = {
89     .init = hd_init, 
90     .deinit = hd_deinit,
91     .reset = NULL,
92     .start = NULL,
93     .stop = NULL,
94 };
95
96 struct vm_device * v3_create_ram_hd(struct vm_device * ide, 
97                                     uint_t bus, uint_t drive, 
98                                     addr_t ramdisk, uint32_t size) {
99     struct hd_state * hd = NULL;
100
101     if (size % IDE_SECTOR_SIZE) {
102         PrintError("HD image must be an integral of sector size (IDE_SECTOR_SIZE=%d)\n", IDE_SECTOR_SIZE);
103         return NULL;
104     }
105
106     hd = (struct hd_state *)V3_Malloc(sizeof(struct hd_state));
107
108     PrintDebug("Registering Ram HDD at %p (size=%d)\n", (void *)ramdisk, size);
109
110     hd->disk_image = ramdisk;
111     hd->capacity = size;
112
113     hd->ide = ide;
114     hd->bus = bus;
115     hd->drive = drive;
116         
117     struct vm_device * hd_dev = v3_create_device("RAM-HD", &dev_ops, hd);
118
119     return hd_dev;
120 }