Browse Source

ptimer: move declarations to ptimer.h

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
stable-1.1
Paolo Bonzini 14 years ago
committed by Anthony Liguori
parent
commit
49d4d9b63e
  1. 1
      hw/arm_timer.c
  2. 1
      hw/etraxfs_timer.c
  3. 1
      hw/grlib_apbuart.c
  4. 1
      hw/grlib_gptimer.c
  5. 1
      hw/lan9118.c
  6. 1
      hw/leon3.c
  7. 1
      hw/lm32_timer.c
  8. 1
      hw/mcf5206.c
  9. 1
      hw/mcf5208.c
  10. 1
      hw/milkymist-sysctl.c
  11. 1
      hw/musicpal.c
  12. 1
      hw/ptimer.c
  13. 27
      hw/ptimer.h
  14. 1
      hw/sh_timer.c
  15. 1
      hw/slavio_timer.c
  16. 1
      hw/xilinx_axidma.c
  17. 1
      hw/xilinx_timer.c
  18. 13
      qemu-timer.h

1
hw/arm_timer.c

@ -11,6 +11,7 @@
#include "qemu-timer.h"
#include "qemu-common.h"
#include "qdev.h"
#include "ptimer.h"
/* Common timer implementation. */

1
hw/etraxfs_timer.c

@ -24,6 +24,7 @@
#include "sysbus.h"
#include "sysemu.h"
#include "qemu-timer.h"
#include "ptimer.h"
#define D(x)

1
hw/grlib_apbuart.c

@ -24,6 +24,7 @@
#include "sysbus.h"
#include "qemu-char.h"
#include "ptimer.h"
#include "trace.h"

1
hw/grlib_gptimer.c

@ -24,6 +24,7 @@
#include "sysbus.h"
#include "qemu-timer.h"
#include "ptimer.h"
#include "trace.h"

1
hw/lan9118.c

@ -11,6 +11,7 @@
#include "net.h"
#include "devices.h"
#include "sysemu.h"
#include "ptimer.h"
/* For crc32 */
#include <zlib.h>

1
hw/leon3.c

@ -23,6 +23,7 @@
*/
#include "hw.h"
#include "qemu-timer.h"
#include "ptimer.h"
#include "qemu-char.h"
#include "sysemu.h"
#include "boards.h"

1
hw/lm32_timer.c

@ -25,6 +25,7 @@
#include "sysbus.h"
#include "trace.h"
#include "qemu-timer.h"
#include "ptimer.h"
#include "qemu-error.h"
#define DEFAULT_FREQUENCY (50*1000000)

1
hw/mcf5206.c

@ -8,6 +8,7 @@
#include "hw.h"
#include "mcf.h"
#include "qemu-timer.h"
#include "ptimer.h"
#include "sysemu.h"
#include "exec-memory.h"

1
hw/mcf5208.c

@ -8,6 +8,7 @@
#include "hw.h"
#include "mcf.h"
#include "qemu-timer.h"
#include "ptimer.h"
#include "sysemu.h"
#include "net.h"
#include "boards.h"

1
hw/milkymist-sysctl.c

@ -26,6 +26,7 @@
#include "sysemu.h"
#include "trace.h"
#include "qemu-timer.h"
#include "ptimer.h"
#include "qemu-error.h"
enum {

1
hw/musicpal.c

@ -14,6 +14,7 @@
#include "boards.h"
#include "pc.h"
#include "qemu-timer.h"
#include "ptimer.h"
#include "block.h"
#include "flash.h"
#include "console.h"

1
hw/ptimer.c

@ -7,6 +7,7 @@
*/
#include "hw.h"
#include "qemu-timer.h"
#include "ptimer.h"
#include "host-utils.h"
struct ptimer_state

27
hw/ptimer.h

@ -0,0 +1,27 @@
/*
* General purpose implementation of a simple periodic countdown timer.
*
* Copyright (c) 2007 CodeSourcery.
*
* This code is licensed under the GNU LGPL.
*/
#ifndef PTIMER_H
#define PTIMER_H
#include "qemu-common.h"
#include "qemu-timer.h"
/* ptimer.c */
typedef struct ptimer_state ptimer_state;
typedef void (*ptimer_cb)(void *opaque);
ptimer_state *ptimer_init(QEMUBH *bh);
void ptimer_set_period(ptimer_state *s, int64_t period);
void ptimer_set_freq(ptimer_state *s, uint32_t freq);
void ptimer_set_limit(ptimer_state *s, uint64_t limit, int reload);
uint64_t ptimer_get_count(ptimer_state *s);
void ptimer_set_count(ptimer_state *s, uint64_t count);
void ptimer_run(ptimer_state *s, int oneshot);
void ptimer_stop(ptimer_state *s);
#endif

1
hw/sh_timer.c

@ -12,6 +12,7 @@
#include "sh.h"
#include "qemu-timer.h"
#include "exec-memory.h"
#include "ptimer.h"
//#define DEBUG_TIMER

1
hw/slavio_timer.c

@ -24,6 +24,7 @@
#include "sun4m.h"
#include "qemu-timer.h"
#include "ptimer.h"
#include "sysbus.h"
#include "trace.h"

1
hw/xilinx_axidma.c

@ -25,6 +25,7 @@
#include "sysbus.h"
#include "qemu-char.h"
#include "qemu-timer.h"
#include "ptimer.h"
#include "qemu-log.h"
#include "qdev-addr.h"

1
hw/xilinx_timer.c

@ -24,6 +24,7 @@
#include "sysbus.h"
#include "qemu-timer.h"
#include "ptimer.h"
#define D(x)

13
qemu-timer.h

@ -139,19 +139,6 @@ static inline int64_t get_clock(void)
void qemu_get_timer(QEMUFile *f, QEMUTimer *ts);
void qemu_put_timer(QEMUFile *f, QEMUTimer *ts);
/* ptimer.c */
typedef struct ptimer_state ptimer_state;
typedef void (*ptimer_cb)(void *opaque);
ptimer_state *ptimer_init(QEMUBH *bh);
void ptimer_set_period(ptimer_state *s, int64_t period);
void ptimer_set_freq(ptimer_state *s, uint32_t freq);
void ptimer_set_limit(ptimer_state *s, uint64_t limit, int reload);
uint64_t ptimer_get_count(ptimer_state *s);
void ptimer_set_count(ptimer_state *s, uint64_t count);
void ptimer_run(ptimer_state *s, int oneshot);
void ptimer_stop(ptimer_state *s);
/* icount */
int64_t cpu_get_icount(void);
int64_t cpu_get_clock(void);

Loading…
Cancel
Save