1 // Code for emulating a drive via high-memory accesses.
3 // Copyright (C) 2009 Kevin O'Connor <kevin@koconnor.net>
5 // This file may be distributed under the terms of the GNU LGPLv3 license.
7 #include "disk.h" // process_ramdisk_op
8 #include "util.h" // dprintf
9 #include "memmap.h" // add_e820
10 #include "biosvar.h" // GET_GLOBAL
11 #include "bregs.h" // struct bregs
12 #include "boot.h" // boot_add_floppy
17 if (!CONFIG_COREBOOT || !CONFIG_COREBOOT_FLASH || !CONFIG_FLASH_FLOPPY)
21 struct cbfs_file *file = cbfs_findprefix("floppyimg/", NULL);
24 const char *filename = cbfs_filename(file);
25 u32 size = cbfs_datasize(file);
26 dprintf(3, "Found floppy file %s of size %d\n", filename, size);
27 int ftype = find_floppy_type(size);
29 dprintf(3, "No floppy type found for ramdisk size\n");
33 // Allocate ram for image.
34 void *pos = memalign_tmphigh(PAGE_SIZE, size);
39 add_e820((u32)pos, size, E820_RESERVED);
41 // Copy image into ram.
42 cbfs_copyfile(file, pos, size);
45 struct drive_s *drive_g = init_floppy((u32)pos, ftype);
48 drive_g->type = DTYPE_RAMDISK;
49 dprintf(1, "Mapping CBFS floppy %s to addr %p\n", filename, pos);
50 char *desc = znprintf(MAXDESCSIZE, "Ramdisk [%s]", &filename[10]);
51 boot_add_floppy(drive_g, desc, bootprio_find_named_rom(filename, 0));
55 ramdisk_copy(struct disk_op_s *op, int iswrite)
57 u32 offset = GET_GLOBAL(op->drive_g->cntl_id);
58 offset += (u32)op->lba * DISK_SECTOR_SIZE;
59 u64 opd = GDT_DATA | GDT_LIMIT(0xfffff) | GDT_BASE((u32)op->buf_fl);
60 u64 ramd = GDT_DATA | GDT_LIMIT(0xfffff) | GDT_BASE(offset);
71 // Call int 1587 to copy data.
73 memset(&br, 0, sizeof(br));
78 br.cx = op->count * DISK_SECTOR_SIZE / 2;
79 call16_int(0x15, &br);
82 return DISK_RET_EBADTRACK;
83 return DISK_RET_SUCCESS;
87 process_ramdisk_op(struct disk_op_s *op)
89 if (!CONFIG_COREBOOT || !CONFIG_COREBOOT_FLASH || !CONFIG_FLASH_FLOPPY)
92 switch (op->command) {
94 return ramdisk_copy(op, 0);
96 return ramdisk_copy(op, 1);
100 return DISK_RET_SUCCESS;
103 return DISK_RET_EPARAM;