Skip to content

Commit 877c181

Browse files
philmdvivier
authored andcommittedOct 24, 2019
hw: Move PL031 device from hw/timer/ to hw/rtc/ subdirectory
The PL031 is a Real Time Clock, not a timer. Move it under the hw/rtc/ subdirectory. Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Acked-by: Peter Maydell <peter.maydell@linaro.org> Message-Id: <20191003230404.19384-3-philmd@redhat.com> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
1 parent 2baa483 commit 877c181

13 files changed

+21
-17
lines changed
 

‎MAINTAINERS

+2-2
Original file line numberDiff line numberDiff line change
@@ -495,8 +495,8 @@ F: hw/intc/pl190.c
495495
F: hw/sd/pl181.c
496496
F: hw/ssi/pl022.c
497497
F: include/hw/ssi/pl022.h
498-
F: hw/timer/pl031.c
499-
F: include/hw/timer/pl031.h
498+
F: hw/rtc/pl031.c
499+
F: include/hw/rtc/pl031.h
500500
F: include/hw/arm/primecell.h
501501
F: hw/timer/cmsdk-apb-timer.c
502502
F: include/hw/timer/cmsdk-apb-timer.h

‎Makefile.objs

+1
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ trace-events-subdirs += hw/pci-host
173173
trace-events-subdirs += hw/ppc
174174
trace-events-subdirs += hw/rdma
175175
trace-events-subdirs += hw/rdma/vmw
176+
trace-events-subdirs += hw/rtc
176177
trace-events-subdirs += hw/s390x
177178
trace-events-subdirs += hw/scsi
178179
trace-events-subdirs += hw/sd

‎hw/Kconfig

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ source pci-host/Kconfig
2727
source pcmcia/Kconfig
2828
source pci/Kconfig
2929
source rdma/Kconfig
30+
source rtc/Kconfig
3031
source scsi/Kconfig
3132
source sd/Kconfig
3233
source semihosting/Kconfig

‎hw/Makefile.objs

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ devices-dirs-y += nvram/
2626
devices-dirs-y += pci/
2727
devices-dirs-$(CONFIG_PCI) += pci-bridge/ pci-host/
2828
devices-dirs-y += pcmcia/
29+
devices-dirs-y += rtc/
2930
devices-dirs-$(CONFIG_SCSI) += scsi/
3031
devices-dirs-y += sd/
3132
devices-dirs-y += ssi/

‎hw/arm/musca.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
#include "hw/misc/tz-mpc.h"
3333
#include "hw/misc/tz-ppc.h"
3434
#include "hw/misc/unimp.h"
35-
#include "hw/timer/pl031.h"
35+
#include "hw/rtc/pl031.h"
3636

3737
#define MUSCA_NUMIRQ_MAX 96
3838
#define MUSCA_PPC_MAX 3

‎hw/rtc/Kconfig

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
config PL031
2+
bool

‎hw/rtc/Makefile.objs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
common-obj-$(CONFIG_PL031) += pl031.o

‎hw/timer/pl031.c ‎hw/rtc/pl031.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
#include "qemu/osdep.h"
1515
#include "qemu-common.h"
16-
#include "hw/timer/pl031.h"
16+
#include "hw/rtc/pl031.h"
1717
#include "migration/vmstate.h"
1818
#include "hw/irq.h"
1919
#include "hw/qdev-properties.h"

‎hw/rtc/trace-events

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# See docs/devel/tracing.txt for syntax documentation.
2+
3+
# pl031.c
4+
pl031_irq_state(int level) "irq state %d"
5+
pl031_read(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x"
6+
pl031_write(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x"
7+
pl031_alarm_raised(void) "alarm raised"
8+
pl031_set_alarm(uint32_t ticks) "alarm set for %u ticks"

‎hw/timer/Kconfig

-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ config M41T80
2727
config M48T59
2828
bool
2929

30-
config PL031
31-
bool
32-
3330
config TWL92230
3431
bool
3532
depends on I2C

‎hw/timer/Makefile.objs

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ common-obj-$(CONFIG_M48T59) += m48t59.o
1111
ifeq ($(CONFIG_ISA_BUS),y)
1212
common-obj-$(CONFIG_M48T59) += m48t59-isa.o
1313
endif
14-
common-obj-$(CONFIG_PL031) += pl031.o
1514
common-obj-$(CONFIG_PUV3) += puv3_ost.o
1615
common-obj-$(CONFIG_TWL92230) += twl92230.o
1716
common-obj-$(CONFIG_XILINX) += xilinx_timer.o

‎hw/timer/trace-events

-7
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,3 @@ xlnx_zynqmp_rtc_gettime(int year, int month, int day, int hour, int min, int sec
8080
# nrf51_timer.c
8181
nrf51_timer_read(uint64_t addr, uint32_t value, unsigned size) "read addr 0x%" PRIx64 " data 0x%" PRIx32 " size %u"
8282
nrf51_timer_write(uint64_t addr, uint32_t value, unsigned size) "write addr 0x%" PRIx64 " data 0x%" PRIx32 " size %u"
83-
84-
# pl031.c
85-
pl031_irq_state(int level) "irq state %d"
86-
pl031_read(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x"
87-
pl031_write(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x"
88-
pl031_alarm_raised(void) "alarm raised"
89-
pl031_set_alarm(uint32_t ticks) "alarm set for %u ticks"

‎include/hw/timer/pl031.h ‎include/hw/rtc/pl031.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@
1111
* GNU GPL, version 2 or (at your option) any later version.
1212
*/
1313

14-
#ifndef HW_TIMER_PL031_H
15-
#define HW_TIMER_PL031_H
14+
#ifndef HW_RTC_PL031_H
15+
#define HW_RTC_PL031_H
1616

1717
#include "hw/sysbus.h"
18+
#include "qemu/timer.h"
1819

1920
#define TYPE_PL031 "pl031"
2021
#define PL031(obj) OBJECT_CHECK(PL031State, (obj), TYPE_PL031)

0 commit comments

Comments
 (0)