clock.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00027 #ifndef CLOCK_H_
00028 #define CLOCK_H_
00029
00030 #include "SFBTypes.h"
00031
00032 #ifdef __cplusplus
00033 extern "C"{
00034 #endif
00035
00040 enum ClockSpeedCode {
00041 CSC_UNSET = 0,
00042 CSC_12MHZ = 1,
00043 CSC_24MHZ = 2,
00044 CSC_36MHZ = 3,
00045 CSC_48MHZ = 4,
00046 CSC_60MHZ = 5,
00047 CSC_72MHZ = 6,
00049 CSC_MAX = 7,
00050
00051 CSC_MIN_MHZ = CSC_12MHZ,
00052 CSC_MAX_MHZ = CSC_72MHZ,
00054 CSC_AUTO = 8
00055 };
00056
00059 typedef struct clockConfiguration {
00060 u8 pllMulM;
00061 u8 pllDivN;
00062 u8 clkDiv;
00063 u8 mamtim;
00064 u8 pclkDiv;
00065 u8 pclkMHz;
00066 } ClockConfiguration;
00067
00070 extern const ClockConfiguration * getCurrentClockConfiguration() ;
00071
00074 extern const ClockConfiguration * getClockConfigurationForCode(u32 code) ;
00075
00077 extern u32 getCCLK() ;
00078
00080 extern u8 getCCLKCode() ;
00081
00083 extern void setClockSpeed(u32 code) ;
00084
00086 typedef void (*ClockSpeedChangeCallback)(u32 newClockSpeed);
00087
00103 extern ClockSpeedChangeCallback setClockSpeedChangeCallback(ClockSpeedChangeCallback callback) ;
00104
00105 #ifdef __cplusplus
00106 }
00107 #endif
00108
00109 #endif