summaryrefslogtreecommitdiffstats
path: root/bsps/powerpc/mvme5500/rtc/todcfg.c
diff options
context:
space:
mode:
Diffstat (limited to 'bsps/powerpc/mvme5500/rtc/todcfg.c')
-rw-r--r--bsps/powerpc/mvme5500/rtc/todcfg.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/bsps/powerpc/mvme5500/rtc/todcfg.c b/bsps/powerpc/mvme5500/rtc/todcfg.c
new file mode 100644
index 0000000000..39089db710
--- /dev/null
+++ b/bsps/powerpc/mvme5500/rtc/todcfg.c
@@ -0,0 +1,32 @@
+/*
+ * This file contains the RTC driver table for Motorola shared BSPs.
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
+ */
+
+#include <bsp.h>
+#include <libchip/rtc.h>
+#include <libchip/m48t08.h>
+
+/* The following table configures the RTC drivers used in this BSP */
+rtc_tbl RTC_Table[] = {
+ {
+ "/dev/rtc", /* sDeviceName */
+ RTC_M48T08, /* deviceType */
+ &m48t08_fns, /* pDeviceFns */
+ rtc_probe, /* deviceProbe */
+ NULL, /* pDeviceParams */
+ 0xF1117FF8, /* ulCtrlPort1 */
+ 0x00, /* ulDataPort */
+ m48t08_get_register, /* getRegister */
+ m48t08_set_register /* setRegister */
+ }
+};
+
+/* Some information used by the RTC driver */
+
+#define NUM_RTCS (sizeof(RTC_Table)/sizeof(rtc_tbl))
+
+size_t RTC_Count = NUM_RTCS;