sortix-mirror/kernel/disk/ahci/port.h
Jonas 'Sortie' Termansen 2b72262b4f 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-05 22:21:50 +01:00

118 lines
3.1 KiB
C++

/*
* Copyright (c) 2013, 2014, 2015, 2016 Jonas 'Sortie' Termansen.
*
* 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/ahci/port.h
* Driver for the Advanced Host Controller Interface.
*/
#ifndef SORTIX_DISK_AHCI_PORT_H
#define SORTIX_DISK_AHCI_PORT_H
#include <sys/types.h>
#include <endian.h>
#include <stdint.h>
#include <sortix/kernel/addralloc.h>
#include <sortix/kernel/harddisk.h>
#include <sortix/kernel/ioctx.h>
#include <sortix/kernel/kthread.h>
namespace Sortix {
namespace AHCI {
struct command_header;
struct command_table;
struct fis;
struct port_regs;
struct prd;
class HBA;
class Port : public Harddisk
{
public:
Port(HBA* hba, uint32_t port_index);
virtual ~Port();
public:
virtual off_t GetSize();
virtual blkcnt_t GetBlockCount();
virtual blksize_t GetBlockSize();
virtual uint16_t GetCylinderCount();
virtual uint16_t GetHeadCount();
virtual uint16_t GetSectorCount();
virtual const char* GetDriver();
virtual const char* GetModel();
virtual const char* GetSerial();
virtual const char* GetRevision();
virtual const unsigned char* GetATAIdentify(size_t* size_ptr);
virtual int sync(ioctx_t* ctx);
virtual ssize_t pread(ioctx_t* ctx, unsigned char* buf, size_t count, off_t off);
virtual ssize_t pwrite(ioctx_t* ctx, const unsigned char* buf, size_t count, off_t off);
public:
bool Initialize();
bool FinishInitialize();
void OnInterrupt();
private:
__attribute__((format(printf, 2, 3)))
void LogF(const char* format, ...);
bool Reset();
void Seek(blkcnt_t block_index, size_t count);
void CommandDMA(uint8_t cmd, size_t size, bool write);
bool FinishTransferDMA();
void PrepareAwaitInterrupt();
bool AwaitInterrupt(unsigned int msescs);
private:
kthread_mutex_t port_lock;
unsigned char identify_data[512];
char serial[20 + 1];
char revision[8 + 1];
char model[40 + 1];
addralloc_t control_alloc;
addralloc_t dma_alloc;
HBA* hba;
volatile struct port_regs* regs;
volatile struct command_header* clist;
volatile struct fis* fis;
volatile struct command_table* ctbl;
volatile struct prd* prdt;
addr_t control_physical_frame;
addr_t dma_physical_frame;
uint32_t port_index;
bool is_control_page_mapped;
bool is_dma_page_mapped;
bool is_lba48;
off_t device_size;
blksize_t block_count;
blkcnt_t block_size;
uint16_t cylinder_count;
uint16_t head_count;
uint16_t sector_count;
volatile bool interrupt_signaled;
bool transfer_in_progress;
size_t transfer_size;
bool transfer_is_write;
};
} // namespace AHCI
} // namespace Sortix
#endif