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.


added new copyright and license
[palacios.git] / palacios / src / devices / cdrom.c
1 /*
2
3  * This file is part of the Palacios Virtual Machine Monitor developed
4  * by the V3VEE Project with funding from the United States National 
5  * Science Foundation and the Department of Energy.  
6  *
7  * The V3VEE Project is a joint project between Northwestern University
8  * and the University of New Mexico.  You can find out more at 
9  * http://www.v3vee.org
10  *
11  * Copyright (c) 2008, Zheng Cui <cuizheng@cs.unm.edu> 
12  * Copyright (c) 2008, Jack Lange <jarusl@cs.northwestern.edu> 
13  * Copyright (c) 2008, The V3VEE Project <http://www.v3vee.org> 
14  * All rights reserved.
15  *
16  * Author: Zheng Cui <cuizheng@cs.unm.edu> 
17  *
18  * This is free software.  You are permitted to use,
19  * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
20  */
21
22 #include <devices/cdrom.h>
23 #include <palacios/vmm.h>
24
25 #ifdef DEBUG_RAMDISK
26 #define Ramdisk_Print_CD(_f, _a...) PrintTrace("cdrom.c(%d) "_f, __LINE__, ## _a)
27 #else
28 #define Ramdisk_Print_CD(_f, _a...)
29 #endif
30
31
32 extern ulong_t g_ramdiskImage;
33 extern ulong_t s_ramdiskSize;
34
35 static
36 void cdrom_init(struct cdrom_interface * cdrom)
37 {
38
39   Ramdisk_Print_CD("[cdrom_init]\n");
40   V3_ASSERT(g_ramdiskImage);
41   cdrom->fd = g_ramdiskImage;
42   cdrom->capacity_B = s_ramdiskSize; 
43   //FIXME:lba
44   cdrom->lba = 1; 
45   return;
46 }
47
48 /* 
49  * Load CD-ROM. Returns false if CD is not ready.
50  */
51  
52 static
53 rd_bool cdrom_insert(struct cdrom_interface * cdrom, char *dev /*= NULL*/)
54 {
55   Ramdisk_Print_CD("[cdrom_insert]\n");
56   return 1;
57 }
58
59 /*
60  * Logically eject the CD.
61  */
62 static
63 void cdrom_eject(struct cdrom_interface *cdrom)
64 {
65   Ramdisk_Print_CD("[cdrom_eject]\n");
66   return;
67 }
68
69 /*
70  * Read CD TOC. Returns false if start track is out of bounds.
71  */
72 static
73 rd_bool cdrom_read_toc(struct cdrom_interface *cdrom, uint8* buf, int* length, rd_bool msf, int start_track)
74 {
75   Ramdisk_Print_CD("[cdrom_read_toc]\n");
76   return 1;
77 }
78
79 /*
80  * Return CD-ROM capacity (in 2048 byte frames)
81  */
82 static
83 uint32 cdrom_capacity(struct cdrom_interface *cdrom)
84 {
85   Ramdisk_Print_CD("[cdrom_capacity] s_ramdiskSize = %d\n", cdrom->capacity_B);
86   if (cdrom->lba) {
87     if (cdrom->capacity_B % 2048) {
88       Ramdisk_Print_CD("\t\t capacity in LBA is %d\n", cdrom->capacity_B/2048 + 1);
89       return cdrom->capacity_B/2048 + 1;
90     } else {
91       Ramdisk_Print_CD("\t\t capacity in LBA is %d\n", cdrom->capacity_B/2048);
92       return cdrom->capacity_B/2048;
93     }
94   } else {
95     //FIXME CHS mode
96     return 0;
97   }
98 }
99
100 /*
101  * Read a single block from the CD
102  */
103 static
104 void cdrom_read_block(struct cdrom_interface *cdrom, uint8* buf, int lba)// __attribute__(regparm(2));
105 {
106
107   V3_ASSERT(lba != 0);
108     
109   Ramdisk_Print_CD("[cdrom_read_block] lba = %d\n", lba);
110   memcpy(buf, (uint8 *)(cdrom->fd + lba*2048), 2048);
111     return;
112 }
113
114 /*
115  * Start (spin up) the CD.
116  */
117 static
118 int cdrom_start(struct cdrom_interface *cdrom)
119 {
120   Ramdisk_Print_CD("[cdrom_start]\n");
121   return 1;
122 }
123
124
125 void init_cdrom(struct cdrom_interface *cdrom)
126 {
127   V3_ASSERT(cdrom != NULL);
128   
129   cdrom->ops.init = &cdrom_init;
130   cdrom->ops.insert_cdrom = &cdrom_insert;
131   cdrom->ops.eject_cdrom = &cdrom_eject;
132   cdrom->ops.read_toc = &cdrom_read_toc;
133   cdrom->ops.capacity = &cdrom_capacity;
134   cdrom->ops.read_block = &cdrom_read_block;
135   cdrom->ops.start_cdrom = &cdrom_start;
136
137   return;
138 }
139