| 
									
										
										
										
											2015-02-06 14:55:47 +11:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * QEMU PowerPC pSeries Logical Partition (aka sPAPR) hardware System Emulator | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * RTAS Real Time Clock | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2010-2011 David Gibson, IBM Corporation. | 
					
						
							|  |  |  |  * Copyright 2014 David Gibson, Red Hat. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Permission is hereby granted, free of charge, to any person obtaining a copy | 
					
						
							|  |  |  |  * of this software and associated documentation files (the "Software"), to deal | 
					
						
							|  |  |  |  * in the Software without restriction, including without limitation the rights | 
					
						
							|  |  |  |  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | 
					
						
							|  |  |  |  * copies of the Software, and to permit persons to whom the Software is | 
					
						
							|  |  |  |  * furnished to do so, subject to the following conditions: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The above copyright notice and this permission notice shall be included in | 
					
						
							|  |  |  |  * all copies or substantial portions of the Software. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 
					
						
							|  |  |  |  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
					
						
							|  |  |  |  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | 
					
						
							|  |  |  |  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 
					
						
							|  |  |  |  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 
					
						
							|  |  |  |  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | 
					
						
							|  |  |  |  * THE SOFTWARE. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-02-01 12:18:31 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 18:16:58 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:47 +11:00
										 |  |  | #include "cpu.h"
 | 
					
						
							| 
									
										
										
										
											2015-06-12 16:01:30 +03:00
										 |  |  | #include "qemu/timer.h"
 | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:50 +11:00
										 |  |  | #include "sysemu/sysemu.h"
 | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:47 +11:00
										 |  |  | #include "hw/ppc/spapr.h"
 | 
					
						
							| 
									
										
										
										
											2018-02-01 12:18:31 +01:00
										 |  |  | #include "qapi/error.h"
 | 
					
						
							| 
									
										
										
										
											2018-02-26 17:13:27 -06:00
										 |  |  | #include "qapi/qapi-events-misc.h"
 | 
					
						
							| 
									
										
										
										
											2016-03-20 19:16:19 +02:00
										 |  |  | #include "qemu/cutils.h"
 | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:47 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-07 10:23:40 +01:00
										 |  |  | void spapr_rtc_read(sPAPRRTCState *rtc, struct tm *tm, uint32_t *ns) | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:49 +11:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:50 +11:00
										 |  |  |     int64_t host_ns = qemu_clock_get_ns(rtc_clock); | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:52 +11:00
										 |  |  |     int64_t guest_ns; | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:50 +11:00
										 |  |  |     time_t guest_s; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:51 +11:00
										 |  |  |     assert(rtc); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:52 +11:00
										 |  |  |     guest_ns = host_ns + rtc->ns_offset; | 
					
						
							| 
									
										
										
										
											2015-07-08 15:10:09 +01:00
										 |  |  |     guest_s = guest_ns / NANOSECONDS_PER_SECOND; | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:50 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (tm) { | 
					
						
							|  |  |  |         gmtime_r(&guest_s, tm); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:49 +11:00
										 |  |  |     if (ns) { | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:52 +11:00
										 |  |  |         *ns = guest_ns; | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:49 +11:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-07 10:23:40 +01:00
										 |  |  | int spapr_rtc_import_offset(sPAPRRTCState *rtc, int64_t legacy_offset) | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:52 +11:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-03-07 10:23:40 +01:00
										 |  |  |     if (!rtc) { | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:52 +11:00
										 |  |  |         return -ENODEV; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-08 15:10:09 +01:00
										 |  |  |     rtc->ns_offset = legacy_offset * NANOSECONDS_PER_SECOND; | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:52 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-02 16:23:04 +10:00
										 |  |  | static void rtas_get_time_of_day(PowerPCCPU *cpu, sPAPRMachineState *spapr, | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:47 +11:00
										 |  |  |                                  uint32_t token, uint32_t nargs, | 
					
						
							|  |  |  |                                  target_ulong args, | 
					
						
							|  |  |  |                                  uint32_t nret, target_ulong rets) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     struct tm tm; | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:49 +11:00
										 |  |  |     uint32_t ns; | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:47 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:48 +11:00
										 |  |  |     if ((nargs != 0) || (nret != 8)) { | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:47 +11:00
										 |  |  |         rtas_st(rets, 0, RTAS_OUT_PARAM_ERROR); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-07 10:23:40 +01:00
										 |  |  |     spapr_rtc_read(&spapr->rtc, &tm, &ns); | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:47 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  |     rtas_st(rets, 0, RTAS_OUT_SUCCESS); | 
					
						
							|  |  |  |     rtas_st(rets, 1, tm.tm_year + 1900); | 
					
						
							|  |  |  |     rtas_st(rets, 2, tm.tm_mon + 1); | 
					
						
							|  |  |  |     rtas_st(rets, 3, tm.tm_mday); | 
					
						
							|  |  |  |     rtas_st(rets, 4, tm.tm_hour); | 
					
						
							|  |  |  |     rtas_st(rets, 5, tm.tm_min); | 
					
						
							|  |  |  |     rtas_st(rets, 6, tm.tm_sec); | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:49 +11:00
										 |  |  |     rtas_st(rets, 7, ns); | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:47 +11:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-02 16:23:04 +10:00
										 |  |  | static void rtas_set_time_of_day(PowerPCCPU *cpu, sPAPRMachineState *spapr, | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:47 +11:00
										 |  |  |                                  uint32_t token, uint32_t nargs, | 
					
						
							|  |  |  |                                  target_ulong args, | 
					
						
							|  |  |  |                                  uint32_t nret, target_ulong rets) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-03-07 10:23:40 +01:00
										 |  |  |     sPAPRRTCState *rtc = &spapr->rtc; | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:47 +11:00
										 |  |  |     struct tm tm; | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:50 +11:00
										 |  |  |     time_t new_s; | 
					
						
							|  |  |  |     int64_t host_ns; | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:47 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:48 +11:00
										 |  |  |     if ((nargs != 7) || (nret != 1)) { | 
					
						
							|  |  |  |         rtas_st(rets, 0, RTAS_OUT_PARAM_ERROR); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:47 +11:00
										 |  |  |     tm.tm_year = rtas_ld(args, 0) - 1900; | 
					
						
							|  |  |  |     tm.tm_mon = rtas_ld(args, 1) - 1; | 
					
						
							|  |  |  |     tm.tm_mday = rtas_ld(args, 2); | 
					
						
							|  |  |  |     tm.tm_hour = rtas_ld(args, 3); | 
					
						
							|  |  |  |     tm.tm_min = rtas_ld(args, 4); | 
					
						
							|  |  |  |     tm.tm_sec = rtas_ld(args, 5); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:50 +11:00
										 |  |  |     new_s = mktimegm(&tm); | 
					
						
							|  |  |  |     if (new_s == -1) { | 
					
						
							|  |  |  |         rtas_st(rets, 0, RTAS_OUT_PARAM_ERROR); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Generate a monitor event for the change */ | 
					
						
							| 
									
										
										
										
											2018-08-15 21:37:37 +08:00
										 |  |  |     qapi_event_send_rtc_change(qemu_timedate_diff(&tm)); | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:50 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  |     host_ns = qemu_clock_get_ns(rtc_clock); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-08 15:10:09 +01:00
										 |  |  |     rtc->ns_offset = (new_s * NANOSECONDS_PER_SECOND) - host_ns; | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:47 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  |     rtas_st(rets, 0, RTAS_OUT_SUCCESS); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:53 +11:00
										 |  |  | static void spapr_rtc_qom_date(Object *obj, struct tm *current_tm, Error **errp) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-03-07 10:23:40 +01:00
										 |  |  |     spapr_rtc_read(SPAPR_RTC(obj), current_tm, NULL); | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:53 +11:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:51 +11:00
										 |  |  | static void spapr_rtc_realize(DeviceState *dev, Error **errp) | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:47 +11:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:52 +11:00
										 |  |  |     sPAPRRTCState *rtc = SPAPR_RTC(dev); | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:50 +11:00
										 |  |  |     struct tm tm; | 
					
						
							|  |  |  |     time_t host_s; | 
					
						
							|  |  |  |     int64_t rtc_ns; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Initialize the RTAS RTC from host time */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     qemu_get_timedate(&tm, 0); | 
					
						
							|  |  |  |     host_s = mktimegm(&tm); | 
					
						
							|  |  |  |     rtc_ns = qemu_clock_get_ns(rtc_clock); | 
					
						
							| 
									
										
										
										
											2015-07-08 15:10:09 +01:00
										 |  |  |     rtc->ns_offset = host_s * NANOSECONDS_PER_SECOND - rtc_ns; | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:53 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  |     object_property_add_tm(OBJECT(rtc), "date", spapr_rtc_qom_date, NULL); | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:51 +11:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:52 +11:00
										 |  |  | static const VMStateDescription vmstate_spapr_rtc = { | 
					
						
							|  |  |  |     .name = "spapr/rtc", | 
					
						
							|  |  |  |     .version_id = 1, | 
					
						
							|  |  |  |     .minimum_version_id = 1, | 
					
						
							|  |  |  |     .fields = (VMStateField[]) { | 
					
						
							|  |  |  |         VMSTATE_INT64(ns_offset, sPAPRRTCState), | 
					
						
							|  |  |  |         VMSTATE_END_OF_LIST() | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:51 +11:00
										 |  |  | static void spapr_rtc_class_init(ObjectClass *oc, void *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     DeviceClass *dc = DEVICE_CLASS(oc); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     dc->realize = spapr_rtc_realize; | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:52 +11:00
										 |  |  |     dc->vmsd = &vmstate_spapr_rtc; | 
					
						
							| 
									
										
										
										
											2017-08-17 07:15:10 +02:00
										 |  |  |     /* Reason: This is an internal device only for handling the hypercalls */ | 
					
						
							|  |  |  |     dc->user_creatable = false; | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:50 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:47 +11:00
										 |  |  |     spapr_rtas_register(RTAS_GET_TIME_OF_DAY, "get-time-of-day", | 
					
						
							|  |  |  |                         rtas_get_time_of_day); | 
					
						
							|  |  |  |     spapr_rtas_register(RTAS_SET_TIME_OF_DAY, "set-time-of-day", | 
					
						
							|  |  |  |                         rtas_set_time_of_day); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:51 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | static const TypeInfo spapr_rtc_info = { | 
					
						
							|  |  |  |     .name          = TYPE_SPAPR_RTC, | 
					
						
							| 
									
										
										
										
											2017-03-07 10:23:40 +01:00
										 |  |  |     .parent        = TYPE_DEVICE, | 
					
						
							| 
									
										
										
										
											2015-02-06 14:55:51 +11:00
										 |  |  |     .instance_size = sizeof(sPAPRRTCState), | 
					
						
							|  |  |  |     .class_init    = spapr_rtc_class_init, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void spapr_rtc_register_types(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     type_register_static(&spapr_rtc_info); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | type_init(spapr_rtc_register_types) |