Files
beaglefw/omap35x.hh
Matthias Blankertz ba680cccdf -Added support for I2C module
-Initial support for TPS65950
-Support for changing CPU frequency in prcm driver
-Preparations for context switching
2013-07-12 20:29:34 +02:00

22 lines
319 B
C++

#ifndef _OMAP35X_HH_
#define _OMAP35X_HH_
#include <memory>
class OMAP35x_Info_impl;
class OMAP35x_Info {
public:
OMAP35x_Info(uintptr_t scm_base, uintptr_t control_base);
~OMAP35x_Info();
void print_chip_id();
bool running_on_qemu() const;
private:
std::unique_ptr<OMAP35x_Info_impl> impl_;
};
#endif