blob: d784bcf5fc9f3e22e49fc9b11228722665cd0c39 [file] [log] [blame]
Gerd Hoffmannd61a4ce2010-11-01 13:05:32 +01001#ifndef HW_INTEL_HDA_H
2#define HW_INTEL_HDA_H
3
Paolo Bonzini83c9f4c2013-02-04 15:40:22 +01004#include "hw/qdev.h"
Gerd Hoffmannd61a4ce2010-11-01 13:05:32 +01005
6/* --------------------------------------------------------------------- */
7/* hda bus */
8
Anthony Liguoridbaa7902011-12-16 13:39:51 -06009#define TYPE_HDA_CODEC_DEVICE "hda-codec"
10#define HDA_CODEC_DEVICE(obj) \
11 OBJECT_CHECK(HDACodecDevice, (obj), TYPE_HDA_CODEC_DEVICE)
12#define HDA_CODEC_DEVICE_CLASS(klass) \
13 OBJECT_CLASS_CHECK(HDACodecDeviceClass, (klass), TYPE_HDA_CODEC_DEVICE)
14#define HDA_CODEC_DEVICE_GET_CLASS(obj) \
15 OBJECT_GET_CLASS(HDACodecDeviceClass, (obj), TYPE_HDA_CODEC_DEVICE)
16
Anthony Liguori0d936922012-05-02 09:00:20 +020017#define TYPE_HDA_BUS "HDA"
18#define HDA_BUS(obj) OBJECT_CHECK(HDACodecBus, (obj), TYPE_HDA_BUS)
19
Gerd Hoffmannd61a4ce2010-11-01 13:05:32 +010020typedef struct HDACodecBus HDACodecBus;
21typedef struct HDACodecDevice HDACodecDevice;
Gerd Hoffmannd61a4ce2010-11-01 13:05:32 +010022
23typedef void (*hda_codec_response_func)(HDACodecDevice *dev,
24 bool solicited, uint32_t response);
25typedef bool (*hda_codec_xfer_func)(HDACodecDevice *dev,
26 uint32_t stnr, bool output,
27 uint8_t *buf, uint32_t len);
28
29struct HDACodecBus {
30 BusState qbus;
31 uint32_t next_cad;
32 hda_codec_response_func response;
33 hda_codec_xfer_func xfer;
34};
35
Anthony Liguoridbaa7902011-12-16 13:39:51 -060036typedef struct HDACodecDeviceClass
37{
38 DeviceClass parent_class;
Gerd Hoffmannd61a4ce2010-11-01 13:05:32 +010039
Gerd Hoffmannd61a4ce2010-11-01 13:05:32 +010040 int (*init)(HDACodecDevice *dev);
Gerd Hoffmanndc4b9242010-11-09 11:47:44 +010041 int (*exit)(HDACodecDevice *dev);
Gerd Hoffmannd61a4ce2010-11-01 13:05:32 +010042 void (*command)(HDACodecDevice *dev, uint32_t nid, uint32_t data);
Marc-André Lureauba43d282011-10-25 16:53:01 +020043 void (*stream)(HDACodecDevice *dev, uint32_t stnr, bool running, bool output);
Anthony Liguoridbaa7902011-12-16 13:39:51 -060044} HDACodecDeviceClass;
45
46struct HDACodecDevice {
47 DeviceState qdev;
48 uint32_t cad; /* codec address */
Gerd Hoffmannd61a4ce2010-11-01 13:05:32 +010049};
50
Andreas Färberab809e82013-08-23 20:05:16 +020051void hda_codec_bus_init(DeviceState *dev, HDACodecBus *bus, size_t bus_size,
Gerd Hoffmannd61a4ce2010-11-01 13:05:32 +010052 hda_codec_response_func response,
53 hda_codec_xfer_func xfer);
Gerd Hoffmannd61a4ce2010-11-01 13:05:32 +010054HDACodecDevice *hda_codec_find(HDACodecBus *bus, uint32_t cad);
55
56void hda_codec_response(HDACodecDevice *dev, bool solicited, uint32_t response);
57bool hda_codec_xfer(HDACodecDevice *dev, uint32_t stnr, bool output,
58 uint8_t *buf, uint32_t len);
59
60/* --------------------------------------------------------------------- */
61
62#define dprint(_dev, _level, _fmt, ...) \
63 do { \
64 if (_dev->debug >= _level) { \
65 fprintf(stderr, "%s: ", _dev->name); \
66 fprintf(stderr, _fmt, ## __VA_ARGS__); \
67 } \
68 } while (0)
69
70/* --------------------------------------------------------------------- */
71
72#endif