30b5707c26
One of the goals of having less boilerplate on QOM declarations is to avoid human error. Requiring an extra argument that is never used is an opportunity for mistakes. Remove the unused argument from OBJECT_DECLARE_TYPE and OBJECT_DECLARE_SIMPLE_TYPE. Coccinelle patch used to convert all users of the macros: @@ declarer name OBJECT_DECLARE_TYPE; identifier InstanceType, ClassType, lowercase, UPPERCASE; @@ OBJECT_DECLARE_TYPE(InstanceType, ClassType, - lowercase, UPPERCASE); @@ declarer name OBJECT_DECLARE_SIMPLE_TYPE; identifier InstanceType, lowercase, UPPERCASE; @@ OBJECT_DECLARE_SIMPLE_TYPE(InstanceType, - lowercase, UPPERCASE); Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Reviewed-by: Cédric Le Goater <clg@kaod.org> Acked-by: Cornelia Huck <cohuck@redhat.com> Acked-by: Igor Mammedov <imammedo@redhat.com> Acked-by: Paul Durrant <paul@xen.org> Acked-by: Thomas Huth <thuth@redhat.com> Message-Id: <20200916182519.415636-4-ehabkost@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
69 lines
2.4 KiB
C
69 lines
2.4 KiB
C
#ifndef HW_INTEL_HDA_H
|
|
#define HW_INTEL_HDA_H
|
|
|
|
#include "hw/qdev-core.h"
|
|
#include "qom/object.h"
|
|
|
|
/* --------------------------------------------------------------------- */
|
|
/* hda bus */
|
|
|
|
#define TYPE_HDA_CODEC_DEVICE "hda-codec"
|
|
OBJECT_DECLARE_TYPE(HDACodecDevice, HDACodecDeviceClass,
|
|
HDA_CODEC_DEVICE)
|
|
|
|
#define TYPE_HDA_BUS "HDA"
|
|
typedef struct HDACodecBus HDACodecBus;
|
|
DECLARE_INSTANCE_CHECKER(HDACodecBus, HDA_BUS,
|
|
TYPE_HDA_BUS)
|
|
|
|
|
|
typedef void (*hda_codec_response_func)(HDACodecDevice *dev,
|
|
bool solicited, uint32_t response);
|
|
typedef bool (*hda_codec_xfer_func)(HDACodecDevice *dev,
|
|
uint32_t stnr, bool output,
|
|
uint8_t *buf, uint32_t len);
|
|
|
|
struct HDACodecBus {
|
|
BusState qbus;
|
|
uint32_t next_cad;
|
|
hda_codec_response_func response;
|
|
hda_codec_xfer_func xfer;
|
|
};
|
|
|
|
struct HDACodecDeviceClass {
|
|
DeviceClass parent_class;
|
|
|
|
int (*init)(HDACodecDevice *dev);
|
|
void (*exit)(HDACodecDevice *dev);
|
|
void (*command)(HDACodecDevice *dev, uint32_t nid, uint32_t data);
|
|
void (*stream)(HDACodecDevice *dev, uint32_t stnr, bool running, bool output);
|
|
};
|
|
|
|
struct HDACodecDevice {
|
|
DeviceState qdev;
|
|
uint32_t cad; /* codec address */
|
|
};
|
|
|
|
void hda_codec_bus_init(DeviceState *dev, HDACodecBus *bus, size_t bus_size,
|
|
hda_codec_response_func response,
|
|
hda_codec_xfer_func xfer);
|
|
HDACodecDevice *hda_codec_find(HDACodecBus *bus, uint32_t cad);
|
|
|
|
void hda_codec_response(HDACodecDevice *dev, bool solicited, uint32_t response);
|
|
bool hda_codec_xfer(HDACodecDevice *dev, uint32_t stnr, bool output,
|
|
uint8_t *buf, uint32_t len);
|
|
|
|
/* --------------------------------------------------------------------- */
|
|
|
|
#define dprint(_dev, _level, _fmt, ...) \
|
|
do { \
|
|
if (_dev->debug >= _level) { \
|
|
fprintf(stderr, "%s: ", _dev->name); \
|
|
fprintf(stderr, _fmt, ## __VA_ARGS__); \
|
|
} \
|
|
} while (0)
|
|
|
|
/* --------------------------------------------------------------------- */
|
|
|
|
#endif
|