genode/os/src/drivers/atapi/main.cc
2013-12-04 11:14:18 +01:00

87 lines
1.8 KiB
C++

/*
* \brief Block interface for ATA driver
* \author Stefan Kalkowski <stefan.kalkowski@genode-labs.com>
* \author Sebastian Sumpf <sebastian.sumpf@genode-labs.com>
* \date 2010-07-16
*/
/*
* Copyright (C) 2010-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.
*/
/* Genode includes */
#include <base/thread.h>
#include <cap_session/connection.h>
#include <os/config.h>
/* local includes */
#include "ata_device.h"
#include "mindrvr.h"
using namespace Genode;
using namespace Ata;
struct Factory : Block::Driver_factory
{
Ata::Device *device;
Factory() : device(0)
{
/* determine if we probe for ATA or ATAPI */
bool ata = false;
try {
ata = config()->xml_node().attribute("ata").has_value("yes");
} catch (...) {}
int type = ata ? REG_CONFIG_TYPE_ATA : REG_CONFIG_TYPE_ATAPI;
/*
* Probe for ATA(PI) device, but only once
*/
device = Ata::Device::probe_legacy(type);
device->read_capacity();
}
Block::Driver *create()
{
if (!device) {
PERR("No device present");
throw Root::Unavailable();
}
if (Atapi_device *atapi_device = dynamic_cast<Atapi_device *>(device))
if (!atapi_device->test_unit_ready()) {
PERR("No disc present");
throw Root::Unavailable();
}
return device;
}
void destroy(Block::Driver *driver) { }
};
int main()
{
enum { STACK_SIZE = 8192 };
static Cap_connection cap;
static Rpc_entrypoint ep(&cap, STACK_SIZE, "atapi_ep");
static Signal_receiver receiver;
static Factory driver_factory;
static Block::Root block_root(&ep, env()->heap(), driver_factory, receiver);
env()->parent()->announce(ep.manage(&block_root));
while (true) {
Signal s = receiver.wait_for_signal();
static_cast<Signal_dispatcher_base *>(s.context())->dispatch(s.num());
}
return 0;
}