diff options
author | danh-arm <dan.handley@arm.com> | 2016-05-24 16:12:08 +0100 |
---|---|---|
committer | danh-arm <dan.handley@arm.com> | 2016-05-24 16:12:08 +0100 |
commit | e141aa0357fd4977ba874f4f86874e2cadc73498 (patch) | |
tree | cc01a644b84f7e07215a4920c3053ce4ddfb3f50 /include/plat/common/platform.h | |
parent | d1d716531db8d52101d9168a79d4b6acaef976fe (diff) | |
parent | 6704f425ddb2772bd9a2b9dacacbefcbb00dcf28 (diff) |
Merge pull request #625 from antonio-nino-diaz-arm/an/delay-timer-v2
Implement generic delay timer and use it on platforms
Diffstat (limited to 'include/plat/common/platform.h')
-rw-r--r-- | include/plat/common/platform.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/plat/common/platform.h b/include/plat/common/platform.h index 42260e9f..a08a12e4 100644 --- a/include/plat/common/platform.h +++ b/include/plat/common/platform.h @@ -56,7 +56,9 @@ struct image_desc; /******************************************************************************* * Mandatory common functions ******************************************************************************/ -unsigned long long plat_get_syscnt_freq(void); +unsigned long long plat_get_syscnt_freq(void) __deprecated; +unsigned int plat_get_syscnt_freq2(void); + int plat_get_image_source(unsigned int image_id, uintptr_t *dev_handle, uintptr_t *image_spec); |