db1015e92e
Some typedefs and macros are defined after the type check macros. This makes it difficult to automatically replace their definitions with OBJECT_DECLARE_TYPE. Patch generated using: $ ./scripts/codeconverter/converter.py -i \ --pattern=QOMStructTypedefSplit $(git grep -l '' -- '*.[ch]') which will split "typdef struct { ... } TypedefName" declarations. Followed by: $ ./scripts/codeconverter/converter.py -i --pattern=MoveSymbols \ $(git grep -l '' -- '*.[ch]') which will: - move the typedefs and #defines above the type check macros - add missing #include "qom/object.h" lines if necessary Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Message-Id: <20200831210740.126168-9-ehabkost@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Message-Id: <20200831210740.126168-10-ehabkost@redhat.com> Message-Id: <20200831210740.126168-11-ehabkost@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
74 lines
2.7 KiB
C
74 lines
2.7 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"
|
|
typedef struct HDACodecDevice HDACodecDevice;
|
|
typedef struct HDACodecDeviceClass HDACodecDeviceClass;
|
|
#define HDA_CODEC_DEVICE(obj) \
|
|
OBJECT_CHECK(HDACodecDevice, (obj), TYPE_HDA_CODEC_DEVICE)
|
|
#define HDA_CODEC_DEVICE_CLASS(klass) \
|
|
OBJECT_CLASS_CHECK(HDACodecDeviceClass, (klass), TYPE_HDA_CODEC_DEVICE)
|
|
#define HDA_CODEC_DEVICE_GET_CLASS(obj) \
|
|
OBJECT_GET_CLASS(HDACodecDeviceClass, (obj), TYPE_HDA_CODEC_DEVICE)
|
|
|
|
#define TYPE_HDA_BUS "HDA"
|
|
typedef struct HDACodecBus HDACodecBus;
|
|
#define HDA_BUS(obj) OBJECT_CHECK(HDACodecBus, (obj), 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
|