Relicense Sortix to the ISC license.
I hereby relicense all my work on Sortix under the ISC license as below.
All Sortix contributions by other people are already under this license,
are not substantial enough to be copyrightable, or have been removed.
All imported code from other projects is compatible with this license.
All GPL licensed code from other projects had previously been removed.
Copyright 2011-2016 Jonas 'Sortie' Termansen and contributors.
Permission to use, copy, modify, and distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2016-03-02 17:38:16 -05:00
|
|
|
/*
|
2018-04-27 11:24:59 -04:00
|
|
|
* Copyright (c) 2011-2016, 2018, 2021 Jonas 'Sortie' Termansen.
|
Relicense Sortix to the ISC license.
I hereby relicense all my work on Sortix under the ISC license as below.
All Sortix contributions by other people are already under this license,
are not substantial enough to be copyrightable, or have been removed.
All imported code from other projects is compatible with this license.
All GPL licensed code from other projects had previously been removed.
Copyright 2011-2016 Jonas 'Sortie' Termansen and contributors.
Permission to use, copy, modify, and distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2016-03-02 17:38:16 -05:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*
|
|
|
|
* disk/ata/registers.h
|
|
|
|
* Driver for ATA.
|
|
|
|
*/
|
2014-09-27 18:48:09 -04:00
|
|
|
|
|
|
|
#ifndef SORTIX_DISK_ATA_REGISTERS_H
|
|
|
|
#define SORTIX_DISK_ATA_REGISTERS_H
|
|
|
|
|
|
|
|
#include <endian.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
namespace Sortix {
|
|
|
|
namespace ATA {
|
|
|
|
|
|
|
|
struct prd
|
|
|
|
{
|
|
|
|
little_uint32_t physical;
|
|
|
|
little_uint16_t count;
|
|
|
|
little_uint16_t flags;
|
|
|
|
};
|
|
|
|
|
2018-04-27 11:24:59 -04:00
|
|
|
struct atapi_packet
|
|
|
|
{
|
|
|
|
uint8_t operation;
|
|
|
|
uint8_t reladdr_lun;
|
|
|
|
uint8_t lba[4];
|
|
|
|
uint8_t reserved0;
|
|
|
|
uint8_t reserved1;
|
|
|
|
uint8_t pmi;
|
|
|
|
uint8_t control;
|
|
|
|
uint8_t reserved2;
|
|
|
|
uint8_t reserved3;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct atapi_capacity
|
|
|
|
{
|
|
|
|
big_uint32_t last_lba;
|
|
|
|
big_uint32_t block_size;
|
|
|
|
};
|
|
|
|
|
2014-09-27 18:48:09 -04:00
|
|
|
static const uint16_t PRD_FLAG_EOT = 1 << 15;
|
|
|
|
|
|
|
|
static const uint16_t REG_DATA = 0x0;
|
|
|
|
static const uint16_t REG_FEATURE = 0x1;
|
|
|
|
static const uint16_t REG_ERROR = 0x1;
|
|
|
|
static const uint16_t REG_SECTOR_COUNT = 0x2;
|
|
|
|
static const uint16_t REG_LBA_LOW = 0x3;
|
|
|
|
static const uint16_t REG_LBA_MID = 0x4;
|
|
|
|
static const uint16_t REG_LBA_HIGH = 0x5;
|
|
|
|
static const uint16_t REG_DRIVE_SELECT = 0x6;
|
|
|
|
static const uint16_t REG_COMMAND = 0x7;
|
|
|
|
static const uint16_t REG_STATUS = 0x7;
|
|
|
|
|
|
|
|
static const uint8_t CMD_READ = 0x20;
|
|
|
|
static const uint8_t CMD_READ_EXT = 0x24;
|
|
|
|
static const uint8_t CMD_READ_DMA = 0xC8;
|
|
|
|
static const uint8_t CMD_READ_DMA_EXT = 0x25;
|
|
|
|
static const uint8_t CMD_WRITE = 0x30;
|
|
|
|
static const uint8_t CMD_WRITE_EXT = 0x34;
|
|
|
|
static const uint8_t CMD_WRITE_DMA = 0xCA;
|
|
|
|
static const uint8_t CMD_WRITE_DMA_EXT = 0x35;
|
|
|
|
static const uint8_t CMD_FLUSH_CACHE = 0xE7;
|
|
|
|
static const uint8_t CMD_FLUSH_CACHE_EXT = 0xEA;
|
|
|
|
static const uint8_t CMD_IDENTIFY = 0xEC;
|
2018-04-27 11:24:59 -04:00
|
|
|
static const uint8_t CMD_PACKET = 0xA0;
|
|
|
|
static const uint8_t CMD_IDENTIFY_PACKET = 0xA1;
|
|
|
|
|
|
|
|
static const uint8_t ATAPI_CMD_READ_CAPACITY = 0x25;
|
|
|
|
static const uint8_t ATAPI_CMD_WRITE_CAPACITY = 0x28;
|
|
|
|
static const uint8_t ATAPI_CMD_READ = 0xA8;
|
2014-09-27 18:48:09 -04:00
|
|
|
|
|
|
|
static const uint8_t STATUS_ERROR = 1 << 0;
|
|
|
|
static const uint8_t STATUS_DATAREADY = 1 << 3;
|
|
|
|
static const uint8_t STATUS_DRIVEFAULT = 1 << 5;
|
|
|
|
static const uint8_t STATUS_BUSY = 1 << 7;
|
|
|
|
|
|
|
|
static const uint16_t BUSMASTER_REG_COMMAND = 0x0;
|
|
|
|
static const uint16_t BUSMASTER_REG_STATUS = 0x2;
|
|
|
|
static const uint16_t BUSMASTER_REG_PDRT = 0x4;
|
|
|
|
|
|
|
|
static const uint16_t BUSMASTER_COMMAND_START = 1 << 0;
|
|
|
|
static const uint16_t BUSMASTER_COMMAND_READING = 1 << 3;
|
|
|
|
|
|
|
|
static const uint8_t BUSMASTER_STATUS_DMA = 1 << 0;
|
|
|
|
static const uint8_t BUSMASTER_STATUS_DMA_FAILURE = 1 << 1;
|
|
|
|
static const uint8_t BUSMASTER_STATUS_INTERRUPT_PENDING = 1 << 2;
|
|
|
|
static const uint8_t BUSMASTER_STATUS_MASTER_DMA_INIT = 1 << 5;
|
|
|
|
static const uint8_t BUSMASTER_STATUS_SLAVE_DMA_INIT = 1 << 6;
|
|
|
|
static const uint8_t BUSMASTER_STATUS_SIMPLEX = 1 << 7;
|
|
|
|
|
|
|
|
} // namespace ATA
|
|
|
|
} // namespace Sortix
|
|
|
|
|
|
|
|
#endif
|