aboutsummaryrefslogtreecommitdiff
path: root/platforms/mambo
diff options
context:
space:
mode:
authorMichael Neuling <mikey@neuling.org>2016-11-02 18:07:38 +1100
committerStewart Smith <stewart@linux.vnet.ibm.com>2016-11-02 18:24:09 +1100
commite62137c4a117e98c359da5d99d7394d3718a9acf (patch)
tree7528f0189065b812a0c919d8396780bd7cdaeddc /platforms/mambo
parent76c5eb99a6e8356ffd7479ec810d48c466dd6907 (diff)
downloadskiboot-e62137c4a117e98c359da5d99d7394d3718a9acf.zip
skiboot-e62137c4a117e98c359da5d99d7394d3718a9acf.tar.gz
skiboot-e62137c4a117e98c359da5d99d7394d3718a9acf.tar.bz2
mambo: Convert RTC read from asm to C
Also moves some code around to ensure things are defined before they are used. Signed-off-by: Michael Neuling <mikey@neuling.org> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'platforms/mambo')
-rw-r--r--platforms/mambo/mambo.c53
1 files changed, 26 insertions, 27 deletions
diff --git a/platforms/mambo/mambo.c b/platforms/mambo/mambo.c
index 5eaa52f..28e67c0 100644
--- a/platforms/mambo/mambo.c
+++ b/platforms/mambo/mambo.c
@@ -24,8 +24,6 @@
#include <time-utils.h>
#include <time.h>
-extern int64_t mambo_get_time(void);
-
static bool mambo_probe(void)
{
if (!dt_find_by_path(dt_root, "/mambo"))
@@ -41,31 +39,6 @@ static inline unsigned long callthru0(int command)
return (c);
}
-static int64_t mambo_rtc_read(uint32_t *ymd, uint64_t *hmsm)
-{
- int64_t mambo_time;
- struct tm t;
- time_t mt;
-
- if (!ymd || !hmsm)
- return OPAL_PARAMETER;
-
- mambo_time = mambo_get_time();
- mt = mambo_time >> 32;
- gmtime_r(&mt, &t);
- tm_to_datetime(&t, ymd, hmsm);
-
- return OPAL_SUCCESS;
-}
-
-static void mambo_rtc_init(void)
-{
- struct dt_node *np = dt_new(opal_node, "rtc");
- dt_add_property_strings(np, "compatible", "ibm,opal-rtc");
-
- opal_register(OPAL_RTC_READ, mambo_rtc_read, 2);
-}
-
static inline unsigned long callthru2(int command, unsigned long arg1,
unsigned long arg2)
{
@@ -99,6 +72,7 @@ static inline unsigned long callthru3(int command, unsigned long arg1,
#define SIM_WRITE_CONSOLE_CODE 0
#define SIM_EXIT_CODE 31
#define SIM_READ_CONSOLE_CODE 60
+#define SIM_GET_TIME_CODE 70
#define BOGUS_DISK_READ 116
#define BOGUS_DISK_WRITE 117
#define BOGUS_DISK_INFO 118
@@ -249,6 +223,31 @@ static void bogus_disk_flash_init(void)
}
}
+static int64_t mambo_rtc_read(uint32_t *ymd, uint64_t *hmsm)
+{
+ int64_t mambo_time;
+ struct tm t;
+ time_t mt;
+
+ if (!ymd || !hmsm)
+ return OPAL_PARAMETER;
+
+ mambo_time = callthru0(SIM_GET_TIME_CODE);
+ mt = mambo_time >> 32;
+ gmtime_r(&mt, &t);
+ tm_to_datetime(&t, ymd, hmsm);
+
+ return OPAL_SUCCESS;
+}
+
+static void mambo_rtc_init(void)
+{
+ struct dt_node *np = dt_new(opal_node, "rtc");
+ dt_add_property_strings(np, "compatible", "ibm,opal-rtc");
+
+ opal_register(OPAL_RTC_READ, mambo_rtc_read, 2);
+}
+
int mambo_console_read(void)
{
return callthru0(SIM_READ_CONSOLE_CODE);