aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/fs/atapi_pio.h
blob: 20bef430f2f44f018ccac408f8ee6e7bb641432b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef MELVIX_ATAPI_PIO_H
#define MELVIX_ATAPI_PIO_H

#include <stdint.h>

#define ATAPI_PIO_DRIVE 0xE0
#define LBA_READ_INT 0x13
#define ATAPI_PIO_DAPACK 32256
#define ATAPI_PIO_BUFFER 32768
#define ATAPI_SECTOR_SIZE 2048

struct dapack {
    uint8_t size;
    uint8_t null;
    uint16_t blk_count;
    uint16_t b_offset;
    uint16_t b_segment;
    uint32_t start;
    uint32_t upper_lba_bits;
} __attribute__((packed));

void ATAPI_read(uint16_t nblocks, uint32_t lba);

void ATAPI_granular_read(uint32_t nblocks, uint32_t lba, uint8_t *output);

#endif