-Initial support for TPS65950 -Support for changing CPU frequency in prcm driver -Preparations for context switching
22 lines
319 B
C++
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
|