| #include <dri/ata_pio/ata_pio.h> |
| |
| #include <io.h> |
| #include <log.h> |
| |
| /* TODO: Rewrite all of this to work with dri_ide in the case of multiple |
| * devices */ |
| |
| static ushort test_buffer[256]; |
| |
| void ata_pio_wait_bsy() |
| { |
| while (inb(ATA_PORT_CMD) & ATA_BSY) |
| { |
| } |
| } |
| |
| void ata_pio_wait_drq() |
| { |
| while (!(inb(ATA_PORT_CMD) & ATA_RDY)) |
| { |
| } |
| } |
| |
| uint ata_pio_get_error() |
| { |
| return inb(ATA_ERR); |
| } |
| |
| static void ata_pio_send_init(uint lba, uchar num_sectors) |
| { |
| outb(ATA_PORT_DRIVE_SEL, 0xe0 | (lba >> 24)); |
| outb(ATA_PORT_SECTOR_COUNT, num_sectors); |
| outb(ATA_PORT_LBA_LOW, lba & 0xff); |
| outb(ATA_PORT_LBA_MID, (lba >> 8) & 0xff); |
| outb(ATA_PORT_LBA_HIGH, (lba >> 16) & 0xff); |
| } |
| |
| void ata_pio_read_sectors(void *buffer, uint lba, uchar num_sectors) |
| { |
| ata_pio_wait_bsy(); |
| |
| ata_pio_send_init(lba, num_sectors); |
| outb(ATA_PORT_CMD, ATA_CMD_READ); |
| |
| ata_pio_wait_bsy(); |
| |
| asm volatile("rep insw" ::"c"(num_sectors * 256), "d"(ATA_PORT_DATA), |
| "D"(buffer)); |
| |
| ata_pio_wait_bsy(); |
| } |
| |
| void ata_pio_write_sectors(uint lba, uchar num_sectors, void *buffer) |
| { |
| ata_pio_wait_bsy(); |
| |
| ata_pio_send_init(lba, num_sectors); |
| outb(ATA_PORT_CMD, ATA_CMD_WRITE); |
| |
| ata_pio_wait_bsy(); |
| |
| asm volatile("rep outsw" :: "c"(num_sectors * 256), "d"(ATA_PORT_DATA), |
| "S"(buffer)); |
| } |
| |
| static void print_buffer() |
| { |
| for (int i = 0; i < 256; i++) |
| { |
| kprintf("%d ", test_buffer[i]); |
| if (i % 16 == 0) |
| kprintf("\n"); |
| } |
| } |
| |
| void test_ata_pio() |
| { |
| kprintf(INFO "Going to ata_pio_read_sectors\n"); |
| |
| ata_pio_read_sectors(test_buffer, 0, 1); |
| print_buffer(); |
| |
| for (int i = 0; i < 256; i++) |
| test_buffer[i] = i; |
| |
| // ata_pio_write_sectors(0, 1, test_buffer); |
| |
| // ata_pio_read_sectors(test_buffer, 0, 1); |
| // print_buffer(); |
| } |