summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-socfpga/include/mach/timer.h
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2015-04-21 20:38:22 +0900
committerMarek Vasut <marex@denx.de>2015-05-07 05:21:15 +0200
commit30088b09975017c90979d55bc0ead58ca424652f (patch)
tree99e9d089471805c750a67f6a95220add8db649da /arch/arm/mach-socfpga/include/mach/timer.h
parent05a217212b41c6342fc1c6be0fe49ce28c9afe40 (diff)
downloadu-boot-30088b09975017c90979d55bc0ead58ca424652f.tar.gz
u-boot-30088b09975017c90979d55bc0ead58ca424652f.tar.xz
u-boot-30088b09975017c90979d55bc0ead58ca424652f.zip
ARM: socfpga: move SoC headers to mach-socfpga/include/mach
Move headers to mach-socfpga as well. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'arch/arm/mach-socfpga/include/mach/timer.h')
-rw-r--r--arch/arm/mach-socfpga/include/mach/timer.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/arch/arm/mach-socfpga/include/mach/timer.h b/arch/arm/mach-socfpga/include/mach/timer.h
new file mode 100644
index 0000000000..ee6969bac8
--- /dev/null
+++ b/arch/arm/mach-socfpga/include/mach/timer.h
@@ -0,0 +1,18 @@
+/*
+ * Copyright (C) 2012 Altera Corporation <www.altera.com>
+ *
+ * SPDX-License-Identifier: GPL-2.0+
+ */
+
+#ifndef _SOCFPGA_TIMER_H_
+#define _SOCFPGA_TIMER_H_
+
+struct socfpga_timer {
+ u32 load_val;
+ u32 curr_val;
+ u32 ctrl;
+ u32 eoi;
+ u32 int_stat;
+};
+
+#endif