加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pxa255_PwrClk.h 545 Bytes
一键复制 编辑 原始数据 按行查看 历史
#ifndef _PXA255_PWR_CLK_H_
#define _PXA255_PWR_CLK_H_
#include "mem.h"
#include "CPU.h"
typedef struct{
ArmCpu* cpu;
UInt32 CCCR, CKEN, OSCR; //clocks manager regs
UInt32 pwrRegs[13]; //we care so little about these, we don't even name them
}Pxa255pwrClk;
#define PXA255_CLOCK_MANAGER_BASE 0x41300000UL
#define PXA255_CLOCK_MANAGER_SIZE 0x00001000UL
#define PXA255_POWER_MANAGER_BASE 0x40F00000UL
#define PXA255_POWER_MANAGER_SIZE 0x00001000UL
Boolean pxa255pwrClkInit(Pxa255pwrClk* pc, ArmCpu* cpu, ArmMem* physMem);
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化