mbox series

[v7,0/3] Add and connect the ZynqMP RTC

Message ID cover.1519755964.git.alistair.francis@xilinx.com
Headers show
Series Add and connect the ZynqMP RTC | expand

Message

Alistair Francis Feb. 27, 2018, 6:52 p.m. UTC
V7:
 - Move the current_tm to the init() function

V6:
 - Migrate tick_offset and add a pre_save call

V5:
 - Recalculate tick_offset after migration

V4:
 - Use the RegisterAccessInfo .unimp functionality

V3:
 - Store an offset value
 - Use mktimegm()
 - Log unimplemented writes

V2:
 - Delete unused realise function
 - Add cover letter
 - Convert DB_PRINT() macro to trace


Alistair Francis (3):
  xlnx-zynqmp-rtc: Initial commit
  xlnx-zynqmp-rtc: Add basic time support
  xlnx-zynqmp: Connect the RTC device

 include/hw/arm/xlnx-zynqmp.h       |   2 +
 include/hw/timer/xlnx-zynqmp-rtc.h |  86 ++++++++++++
 hw/arm/xlnx-zynqmp.c               |  14 ++
 hw/timer/xlnx-zynqmp-rtc.c         | 272 +++++++++++++++++++++++++++++++++++++
 hw/timer/Makefile.objs             |   1 +
 hw/timer/trace-events              |   3 +
 6 files changed, 378 insertions(+)
 create mode 100644 include/hw/timer/xlnx-zynqmp-rtc.h
 create mode 100644 hw/timer/xlnx-zynqmp-rtc.c

Comments

Peter Maydell March 1, 2018, 11:56 a.m. UTC | #1
On 27 February 2018 at 18:52, Alistair Francis
<alistair.francis@xilinx.com> wrote:
> V7:
>  - Move the current_tm to the init() function
>
> V6:
>  - Migrate tick_offset and add a pre_save call
>
> V5:
>  - Recalculate tick_offset after migration
>
> V4:
>  - Use the RegisterAccessInfo .unimp functionality
>
> V3:
>  - Store an offset value
>  - Use mktimegm()
>  - Log unimplemented writes
>
> V2:
>  - Delete unused realise function
>  - Add cover letter
>  - Convert DB_PRINT() macro to trace
>
>
> Alistair Francis (3):
>   xlnx-zynqmp-rtc: Initial commit
>   xlnx-zynqmp-rtc: Add basic time support
>   xlnx-zynqmp: Connect the RTC device



Applied to target-arm.next, thanks.

-- PMM