64552b6be4
In my "build everything" tree, changing hw/irq.h triggers a recompile of some 5400 out of 6600 objects (not counting tests and objects that don't depend on qemu/osdep.h). hw/hw.h supposedly includes it for convenience. Several other headers include it just to get qemu_irq and.or qemu_irq_handler. Move the qemu_irq and qemu_irq_handler typedefs from hw/irq.h to qemu/typedefs.h, and then include hw/irq.h only where it's still needed. Touching it now recompiles only some 500 objects. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20190812052359.30071-13-armbru@redhat.com>
33 lines
902 B
C
33 lines
902 B
C
#ifndef HW_M48T59_H
|
|
#define HW_M48T59_H
|
|
|
|
#include "exec/hwaddr.h"
|
|
#include "qom/object.h"
|
|
|
|
#define TYPE_NVRAM "nvram"
|
|
|
|
#define NVRAM_CLASS(klass) \
|
|
OBJECT_CLASS_CHECK(NvramClass, (klass), TYPE_NVRAM)
|
|
#define NVRAM_GET_CLASS(obj) \
|
|
OBJECT_GET_CLASS(NvramClass, (obj), TYPE_NVRAM)
|
|
#define NVRAM(obj) \
|
|
INTERFACE_CHECK(Nvram, (obj), TYPE_NVRAM)
|
|
|
|
typedef struct Nvram Nvram;
|
|
|
|
typedef struct NvramClass {
|
|
InterfaceClass parent;
|
|
|
|
uint32_t (*read)(Nvram *obj, uint32_t addr);
|
|
void (*write)(Nvram *obj, uint32_t addr, uint32_t val);
|
|
void (*toggle_lock)(Nvram *obj, int lock);
|
|
} NvramClass;
|
|
|
|
Nvram *m48t59_init_isa(ISABus *bus, uint32_t io_base, uint16_t size,
|
|
int base_year, int type);
|
|
Nvram *m48t59_init(qemu_irq IRQ, hwaddr mem_base,
|
|
uint32_t io_base, uint16_t size, int base_year,
|
|
int type);
|
|
|
|
#endif /* HW_M48T59_H */
|