diff options
author | Michal Simek <michal.simek@xilinx.com> | 2015-04-20 12:56:24 +0200 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2015-05-25 10:52:03 +0200 |
commit | a2ec7fb906ef43e478c4b860cad80b0f1e13905b (patch) | |
tree | e4a872e1507f4be4698997f17770eb6a3de03ea9 /include | |
parent | a84988c76d1dbca2dbe870d6b4f0ad398f287f85 (diff) |
zynq: Use system timer implementation instead of our
Don't use error-prone arch timer code and instead use system
timer implementation to simplify our code.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/zynq-common.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/configs/zynq-common.h b/include/configs/zynq-common.h index 926b381580..be77e509e5 100644 --- a/include/configs/zynq-common.h +++ b/include/configs/zynq-common.h @@ -25,6 +25,11 @@ # define CONFIG_SYS_PL310_BASE 0xf8f02000 #endif +#define ZYNQ_SCUTIMER_BASEADDR 0xF8F00600 +#define CONFIG_SYS_TIMERBASE ZYNQ_SCUTIMER_BASEADDR +#define CONFIG_SYS_TIMER_COUNTS_DOWN +#define CONFIG_SYS_TIMER_COUNTER (CONFIG_SYS_TIMERBASE + 0x4) + /* Serial drivers */ #define CONFIG_BAUDRATE 115200 /* The following table includes the supported baudrates */ |