@@ -40,6 +40,7 @@
#include "hw/sysbus.h"
#include "qemu/cutils.h"
#include "qemu/bcd.h"
+#include "hw/qdev-deprecated.h"
static inline void omap_log_badwidth(const char *funcname, hwaddr addr, int sz)
{
@@ -1451,6 +1452,7 @@ static struct dpll_ctl_s *omap_dpll_init(MemoryRegion *memory,
hwaddr base, omap_clk clk)
{
struct dpll_ctl_s *s = g_malloc0(sizeof(*s));
+ qdev_warn_deprecated_function_used();
memory_region_init_io(&s->iomem, NULL, &omap_dpll_ops, s, "omap-dpll", 0x100);
s->dpll = clk;
@@ -2427,6 +2429,8 @@ static struct omap_pwl_s *omap_pwl_init(MemoryRegion *system_memory,
{
struct omap_pwl_s *s = g_malloc0(sizeof(*s));
+ qdev_warn_deprecated_function_used();
+
omap_pwl_reset(s);
memory_region_init_io(&s->iomem, NULL, &omap_pwl_ops, s,
@@ -2534,6 +2538,8 @@ static struct omap_pwt_s *omap_pwt_init(MemoryRegion *system_memory,
omap_clk clk)
{
struct omap_pwt_s *s = g_malloc0(sizeof(*s));
+
+ qdev_warn_deprecated_function_used();
s->clk = clk;
omap_pwt_reset(s);
@@ -22,6 +22,7 @@
#include "hw/arm/omap.h"
#include "hw/char/serial.h"
#include "exec/address-spaces.h"
+#include "hw/qdev-deprecated.h"
/* UARTs */
struct omap_uart_s {
@@ -57,6 +58,8 @@ struct omap_uart_s *omap_uart_init(hwaddr base,
{
struct omap_uart_s *s = g_new0(struct omap_uart_s, 1);
+ qdev_warn_deprecated_function_used();
+
s->base = base;
s->fclk = fclk;
s->irq = irq;
@@ -168,6 +171,8 @@ struct omap_uart_s *omap2_uart_init(MemoryRegion *sysmem,
struct omap_uart_s *s = omap_uart_init(base, irq,
fclk, iclk, txdma, rxdma, label, chr);
+ qdev_warn_deprecated_function_used();
+
memory_region_init_io(&s->iomem, NULL, &omap_uart_ops, s, "omap.uart", 0x100);
s->ta = ta;
@@ -25,6 +25,7 @@
#include "hw/arm/omap.h"
#include "exec/memory.h"
#include "exec/address-spaces.h"
+#include "hw/qdev-deprecated.h"
/* General-Purpose Memory Controller */
struct omap_gpmc_s {
@@ -830,6 +831,8 @@ struct omap_gpmc_s *omap_gpmc_init(struct omap_mpu_state_s *mpu,
int cs;
struct omap_gpmc_s *s = g_new0(struct omap_gpmc_s, 1);
+ qdev_warn_deprecated_function_used();
+
memory_region_init_io(&s->iomem, NULL, &omap_gpmc_ops, s, "omap-gpmc", 0x1000);
memory_region_add_subregion(get_system_memory(), base, &s->iomem);
@@ -19,6 +19,7 @@
*/
#include "qemu/osdep.h"
#include "hw/arm/omap.h"
+#include "hw/qdev-deprecated.h"
struct omap_l4_s {
MemoryRegion *address_space;
@@ -33,6 +34,8 @@ struct omap_l4_s *omap_l4_init(MemoryRegion *address_space,
struct omap_l4_s *bus = g_malloc0(
sizeof(*bus) + ta_num * sizeof(*bus->ta));
+ qdev_warn_deprecated_function_used();
+
bus->address_space = address_space;
bus->ta_num = ta_num;
bus->base = base;
@@ -19,6 +19,7 @@
*/
#include "qemu/osdep.h"
#include "hw/arm/omap.h"
+#include "hw/qdev-deprecated.h"
/* SDRAM Controller Subsystem */
struct omap_sdrc_s {
@@ -159,6 +160,8 @@ struct omap_sdrc_s *omap_sdrc_init(MemoryRegion *sysmem,
{
struct omap_sdrc_s *s = g_new0(struct omap_sdrc_s, 1);
+ qdev_warn_deprecated_function_used();
+
omap_sdrc_reset(s);
memory_region_init_io(&s->iomem, NULL, &omap_sdrc_ops, s, "omap.sdrc", 0x1000);
@@ -24,6 +24,7 @@
#include "hw/irq.h"
#include "hw/arm/omap.h"
#include "hw/sd/sd.h"
+#include "hw/qdev-deprecated.h"
struct omap_mmc_s {
qemu_irq irq;
@@ -599,6 +600,8 @@ struct omap_mmc_s *omap_mmc_init(hwaddr base,
{
struct omap_mmc_s *s = g_new0(struct omap_mmc_s, 1);
+ qdev_warn_deprecated_function_used();
+
s->irq = irq;
s->dma = dma;
s->clk = clk;
@@ -625,6 +628,8 @@ struct omap_mmc_s *omap2_mmc_init(struct omap_target_agent_s *ta,
{
struct omap_mmc_s *s = g_new0(struct omap_mmc_s, 1);
+ qdev_warn_deprecated_function_used();
+
s->irq = irq;
s->dma = dma;
s->clk = fclk;
@@ -25,6 +25,7 @@
#include "hw/hw.h"
#include "hw/irq.h"
#include "hw/arm/omap.h"
+#include "hw/qdev-deprecated.h"
/* Multichannel SPI */
struct omap_mcspi_s {
@@ -353,6 +354,8 @@ struct omap_mcspi_s *omap_mcspi_init(struct omap_target_agent_s *ta, int chnum,
struct omap_mcspi_s *s = g_new0(struct omap_mcspi_s, 1);
struct omap_mcspi_ch_s *ch = s->ch;
+ qdev_warn_deprecated_function_used();
+
s->irq = irq;
s->chnum = chnum;
while (chnum --) {
@@ -20,6 +20,8 @@
#include "qemu/osdep.h"
#include "qemu/timer.h"
#include "hw/arm/omap.h"
+#include "hw/qdev-deprecated.h"
+
struct omap_synctimer_s {
MemoryRegion iomem;
uint32_t val;
@@ -101,6 +103,8 @@ struct omap_synctimer_s *omap_synctimer_init(struct omap_target_agent_s *ta,
{
struct omap_synctimer_s *s = g_malloc0(sizeof(*s));
+ qdev_warn_deprecated_function_used();
+
omap_synctimer_reset(s);
memory_region_init_io(&s->iomem, NULL, &omap_synctimer_ops, s, "omap.synctimer",
omap_l4_region_size(ta, 0));
This code hasn't been QOM'ified yet. Warn the user. Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> --- hw/arm/omap1.c | 6 ++++++ hw/char/omap_uart.c | 5 +++++ hw/misc/omap_gpmc.c | 3 +++ hw/misc/omap_l4.c | 3 +++ hw/misc/omap_sdrc.c | 3 +++ hw/sd/omap_mmc.c | 5 +++++ hw/ssi/omap_spi.c | 3 +++ hw/timer/omap_synctimer.c | 4 ++++ 8 files changed, 32 insertions(+)