diff options
| author | Rob Herring <rob.herring@calxeda.com> | 2013-10-04 10:22:41 -0500 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-11-04 11:06:16 -0500 | 
| commit | 8dfafdde88eb3e71d5569846396ae67a91017232 (patch) | |
| tree | 741820aa7798d2992b41680acc3e6c3534f4abf3 /include/asm-generic/global_data.h | |
| parent | e32a268b6f96b5b4818e9c33d18cee98c0c31f7c (diff) | |
| download | olio-uboot-2014.01-8dfafdde88eb3e71d5569846396ae67a91017232.tar.xz olio-uboot-2014.01-8dfafdde88eb3e71d5569846396ae67a91017232.zip | |
Introduce common timer functions
Many platforms duplicate pretty much the same timer code yet they all have
a 32-bit freerunning counter register. Create a common implementation that
minimally requires 2 or 3 defines to add timer support:
CONFIG_SYS_TIMER_RATE - Clock rate of the timer counter
CONFIG_SYS_TIMER_COUNTER - Address of 32-bit counter
CONFIG_SYS_TIMER_COUNTS_DOWN - Define if counter counts down
All functions are weak or ifdef'ed so they can still be overriden by any
platform.
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Diffstat (limited to 'include/asm-generic/global_data.h')
| -rw-r--r-- | include/asm-generic/global_data.h | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/include/asm-generic/global_data.h b/include/asm-generic/global_data.h index 77e06fb4f..0de0beaa8 100644 --- a/include/asm-generic/global_data.h +++ b/include/asm-generic/global_data.h @@ -72,6 +72,8 @@ typedef struct global_data {  #if defined(CONFIG_SYS_I2C)  	int		cur_i2c_bus;	/* current used i2c bus */  #endif +	unsigned long timebase_h; +	unsigned long timebase_l;  	struct arch_global_data arch;	/* architecture-specific data */  } gd_t;  #endif |