genode/repos/os/src/drivers/platform/spec/imx53/iim.h
Norman Feske cd3a5852d6 Warn about the use of deprecated headers
This commit enables compile-time warnings displayed whenever a deprecated
API header is included, and adjusts the existing #include directives
accordingly.

Issue #1987
2017-01-31 12:01:18 +01:00

40 lines
1.0 KiB
C++

/*
* \brief IC identification module register description
* \author Stefan Kalkowski <stefan.kalkowski@genode-labs.com>
* \date 2013-04-29
*/
/*
* 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 _DRIVERS__PLATFORM__SPEC__IMX53__IIM_H_
#define _DRIVERS__PLATFORM__SPEC__IMX53__IIM_H_
/* Genode includes */
#include <util/mmio.h>
#include <drivers/board_base.h>
#include <base/attached_io_mem_dataspace.h>
class Iim : public Genode::Attached_io_mem_dataspace,
Genode::Mmio
{
private:
struct Fuse_bank0_gp6 : Register<0x878, 32> {};
public:
Iim()
: Genode::Attached_io_mem_dataspace(Genode::Board_base::IIM_BASE,
Genode::Board_base::IIM_SIZE),
Genode::Mmio((Genode::addr_t)local_addr<void>()) {}
unsigned long revision() { return read<Fuse_bank0_gp6>() & 0xf; }
};
#endif /* _DRIVERS__PLATFORM__SPEC__IMX53__IIM_H_ */