genode/os/src/drivers/ahci/exynos5/ahci_driver.h

70 lines
1.5 KiB
C++

/*
* \brief AHCI driver declaration
* \author Martin Stein <martin.stein@genode-labs.com>
* \date 2013-04-10
*/
/*
* Copyright (C) 2013 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
#ifndef _AHCI_DRIVER_H_
#define _AHCI_DRIVER_H_
/* Genode includes */
#include <block/driver.h>
#include <ram_session/ram_session.h>
/**
* AHCI driver
*/
class Ahci_driver : public Block::Driver
{
enum { VERBOSE = 0 };
/* import Genode symbols */
typedef Genode::size_t size_t;
typedef Genode::uint64_t uint64_t;
typedef Genode::addr_t addr_t;
typedef Genode::Ram_dataspace_capability Ram_dataspace_capability;
int _ncq_command(uint64_t lba, unsigned cnt, addr_t phys, bool w);
public:
/**
* Constructor
*/
Ahci_driver();
/*****************************
** Block::Driver interface **
*****************************/
size_t block_size();
size_t block_count();
bool dma_enabled() { return 1; }
void write(size_t, size_t, char const *);
void read(size_t, size_t, char *);
Ram_dataspace_capability alloc_dma_buffer(size_t size);
void read_dma(size_t block_nr, size_t block_cnt, addr_t phys)
{
if (_ncq_command(block_nr, block_cnt, phys, 0))
throw Io_error();
}
void write_dma(size_t block_nr, size_t block_cnt, addr_t phys)
{
if (_ncq_command(block_nr, block_cnt, phys, 1))
throw Io_error();
}
};
#endif /* _AHCI_DRIVER_H_ */