zynq: add sd_card driver

This commit is contained in:
Timo Wischer
2016-03-24 17:27:12 +01:00
committed by Norman Feske
parent 6418f34082
commit ecfb4e4904
2 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,59 @@
/*
* \brief SD-card driver for Zynq boards
* \author Norman Feske
* \authot Timo Wischer
* \date 2014-09-21
*/
/*
* Copyright (C) 2014 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/printf.h>
#include <os/server.h>
/* local includes */
#include <driver.h>
struct Main
{
Server::Entrypoint &ep;
struct Factory : Block::Driver_factory
{
Block::Driver *create() {
return new (Genode::env()->heap()) Block::Sdhci_driver(false, true); }
void destroy(Block::Driver *driver) {
Genode::destroy(Genode::env()->heap(),
static_cast<Block::Sdhci_driver *>(driver)); }
} factory;
Block::Root root;
Main(Server::Entrypoint &ep)
: ep(ep), root(ep, Genode::env()->heap(), factory)
{
Genode::printf("--- SD card driver ---\n");
Genode::env()->parent()->announce(ep.manage(root));
}
};
/************
** Server **
************/
namespace Server {
char const *name() { return "sd_card_ep"; }
size_t stack_size() { return 2*1024*sizeof(long); }
void construct(Entrypoint &ep) { static Main server(ep); }
}

View File

@@ -0,0 +1,7 @@
TARGET = sd_card_drv
REQUIRES = zynq
SRC_CC = main.cc
LIBS = base server
INC_DIR += $(PRG_DIR)
INC_DIR += $(REP_DIR)/../os/src/drivers/sd_card/
INC_DIR += $(REP_DIR)/../os/src/drivers/sd_card/spec/rpi