mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-02 20:16:48 +00:00
38 lines
722 B
C
38 lines
722 B
C
|
/**
|
||
|
* \brief Provide specific board driver
|
||
|
* \author Martin Stein
|
||
|
* \date 2011-11-03
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* Copyright (C) 2011-2012 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 _INCLUDE__PLATFORM__VEA9X4__DRIVERS__BOARD_H_
|
||
|
#define _INCLUDE__PLATFORM__VEA9X4__DRIVERS__BOARD_H_
|
||
|
|
||
|
/* Genode inlcudes */
|
||
|
#include <drivers/board/vea9x4.h>
|
||
|
|
||
|
namespace Genode
|
||
|
{
|
||
|
/**
|
||
|
* Provide specific board driver
|
||
|
*/
|
||
|
class Board : public Vea9x4
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
enum {
|
||
|
LOG_PL011_MMIO_BASE = PL011_0_MMIO_BASE,
|
||
|
LOG_PL011_CLOCK = PL011_0_CLOCK,
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif /* _INCLUDE__PLATFORM__VEA9X4__DRIVERS__BOARD_H_ */
|
||
|
|