2 * Copyright (C) 2010 Red Hat, Inc.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 or
9 * (at your option) version 3 of the License.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 #include "qemu/osdep.h"
21 #include "hw/pci/pci.h"
22 #include "hw/qdev-properties.h"
23 #include "hw/pci/msi.h"
24 #include "qemu/timer.h"
25 #include "qemu/bitops.h"
27 #include "qemu/module.h"
28 #include "hw/audio/soundhw.h"
29 #include "intel-hda.h"
30 #include "migration/vmstate.h"
31 #include "intel-hda-defs.h"
32 #include "sysemu/dma.h"
33 #include "qapi/error.h"
35 /* --------------------------------------------------------------------- */
38 static Property hda_props[] = {
39 DEFINE_PROP_UINT32("cad", HDACodecDevice, cad, -1),
40 DEFINE_PROP_END_OF_LIST()
43 static const TypeInfo hda_codec_bus_info = {
46 .instance_size = sizeof(HDACodecBus),
49 void hda_codec_bus_init(DeviceState *dev, HDACodecBus *bus, size_t bus_size,
50 hda_codec_response_func response,
51 hda_codec_xfer_func xfer)
53 qbus_create_inplace(bus, bus_size, TYPE_HDA_BUS, dev, NULL);
54 bus->response = response;
58 static void hda_codec_dev_realize(DeviceState *qdev, Error **errp)
60 HDACodecBus *bus = HDA_BUS(qdev->parent_bus);
61 HDACodecDevice *dev = HDA_CODEC_DEVICE(qdev);
62 HDACodecDeviceClass *cdc = HDA_CODEC_DEVICE_GET_CLASS(dev);
65 dev->cad = bus->next_cad;
68 error_setg(errp, "HDA audio codec address is full");
71 bus->next_cad = dev->cad + 1;
72 if (cdc->init(dev) != 0) {
73 error_setg(errp, "HDA audio init failed");
77 static void hda_codec_dev_unrealize(DeviceState *qdev, Error **errp)
79 HDACodecDevice *dev = HDA_CODEC_DEVICE(qdev);
80 HDACodecDeviceClass *cdc = HDA_CODEC_DEVICE_GET_CLASS(dev);
87 HDACodecDevice *hda_codec_find(HDACodecBus *bus, uint32_t cad)
92 QTAILQ_FOREACH(kid, &bus->qbus.children, sibling) {
93 DeviceState *qdev = kid->child;
94 cdev = HDA_CODEC_DEVICE(qdev);
95 if (cdev->cad == cad) {
102 void hda_codec_response(HDACodecDevice *dev, bool solicited, uint32_t response)
104 HDACodecBus *bus = HDA_BUS(dev->qdev.parent_bus);
105 bus->response(dev, solicited, response);
108 bool hda_codec_xfer(HDACodecDevice *dev, uint32_t stnr, bool output,
109 uint8_t *buf, uint32_t len)
111 HDACodecBus *bus = HDA_BUS(dev->qdev.parent_bus);
112 return bus->xfer(dev, stnr, output, buf, len);
115 /* --------------------------------------------------------------------- */
116 /* intel hda emulation */
118 typedef struct IntelHDAStream IntelHDAStream;
119 typedef struct IntelHDAState IntelHDAState;
120 typedef struct IntelHDAReg IntelHDAReg;
128 struct IntelHDAStream {
141 uint32_t bsize, be, bp;
144 struct IntelHDAState {
181 IntelHDAStream st[8];
186 int64_t wall_base_ns;
189 const IntelHDAReg *last_reg;
193 uint32_t repeat_count;
201 #define TYPE_INTEL_HDA_GENERIC "intel-hda-generic"
203 #define INTEL_HDA(obj) \
204 OBJECT_CHECK(IntelHDAState, (obj), TYPE_INTEL_HDA_GENERIC)
207 const char *name; /* register name */
208 uint32_t size; /* size in bytes */
209 uint32_t reset; /* reset value */
210 uint32_t wmask; /* write mask */
211 uint32_t wclear; /* write 1 to clear bits */
212 uint32_t offset; /* location in IntelHDAState */
213 uint32_t shift; /* byte access entries for dwords */
215 void (*whandler)(IntelHDAState *d, const IntelHDAReg *reg, uint32_t old);
216 void (*rhandler)(IntelHDAState *d, const IntelHDAReg *reg);
219 static void intel_hda_reset(DeviceState *dev);
221 /* --------------------------------------------------------------------- */
223 static hwaddr intel_hda_addr(uint32_t lbase, uint32_t ubase)
225 return ((uint64_t)ubase << 32) | lbase;
228 static void intel_hda_update_int_sts(IntelHDAState *d)
233 /* update controller status */
234 if (d->rirb_sts & ICH6_RBSTS_IRQ) {
237 if (d->rirb_sts & ICH6_RBSTS_OVERRUN) {
240 if (d->state_sts & d->wake_en) {
244 /* update stream status */
245 for (i = 0; i < 8; i++) {
246 /* buffer completion interrupt */
247 if (d->st[i].ctl & (1 << 26)) {
252 /* update global status */
253 if (sts & d->int_ctl) {
260 static void intel_hda_update_irq(IntelHDAState *d)
262 bool msi = msi_enabled(&d->pci);
265 intel_hda_update_int_sts(d);
266 if (d->int_sts & (1U << 31) && d->int_ctl & (1U << 31)) {
271 dprint(d, 2, "%s: level %d [%s]\n", __func__,
272 level, msi ? "msi" : "intx");
275 msi_notify(&d->pci, 0);
278 pci_set_irq(&d->pci, level);
282 static int intel_hda_send_command(IntelHDAState *d, uint32_t verb)
284 uint32_t cad, nid, data;
285 HDACodecDevice *codec;
286 HDACodecDeviceClass *cdc;
288 cad = (verb >> 28) & 0x0f;
289 if (verb & (1 << 27)) {
290 /* indirect node addressing, not specified in HDA 1.0 */
291 dprint(d, 1, "%s: indirect node addressing (guest bug?)\n", __func__);
294 nid = (verb >> 20) & 0x7f;
295 data = verb & 0xfffff;
297 codec = hda_codec_find(&d->codecs, cad);
299 dprint(d, 1, "%s: addressed non-existing codec\n", __func__);
302 cdc = HDA_CODEC_DEVICE_GET_CLASS(codec);
303 cdc->command(codec, nid, data);
307 static void intel_hda_corb_run(IntelHDAState *d)
312 if (d->ics & ICH6_IRS_BUSY) {
313 dprint(d, 2, "%s: [icw] verb 0x%08x\n", __func__, d->icw);
314 intel_hda_send_command(d, d->icw);
319 if (!(d->corb_ctl & ICH6_CORBCTL_RUN)) {
320 dprint(d, 2, "%s: !run\n", __func__);
323 if ((d->corb_rp & 0xff) == d->corb_wp) {
324 dprint(d, 2, "%s: corb ring empty\n", __func__);
327 if (d->rirb_count == d->rirb_cnt) {
328 dprint(d, 2, "%s: rirb count reached\n", __func__);
332 rp = (d->corb_rp + 1) & 0xff;
333 addr = intel_hda_addr(d->corb_lbase, d->corb_ubase);
334 verb = ldl_le_pci_dma(&d->pci, addr + 4*rp);
337 dprint(d, 2, "%s: [rp 0x%x] verb 0x%08x\n", __func__, rp, verb);
338 intel_hda_send_command(d, verb);
342 static void intel_hda_response(HDACodecDevice *dev, bool solicited, uint32_t response)
344 HDACodecBus *bus = HDA_BUS(dev->qdev.parent_bus);
345 IntelHDAState *d = container_of(bus, IntelHDAState, codecs);
349 if (d->ics & ICH6_IRS_BUSY) {
350 dprint(d, 2, "%s: [irr] response 0x%x, cad 0x%x\n",
351 __func__, response, dev->cad);
353 d->ics &= ~(ICH6_IRS_BUSY | 0xf0);
354 d->ics |= (ICH6_IRS_VALID | (dev->cad << 4));
358 if (!(d->rirb_ctl & ICH6_RBCTL_DMA_EN)) {
359 dprint(d, 1, "%s: rirb dma disabled, drop codec response\n", __func__);
363 ex = (solicited ? 0 : (1 << 4)) | dev->cad;
364 wp = (d->rirb_wp + 1) & 0xff;
365 addr = intel_hda_addr(d->rirb_lbase, d->rirb_ubase);
366 stl_le_pci_dma(&d->pci, addr + 8*wp, response);
367 stl_le_pci_dma(&d->pci, addr + 8*wp + 4, ex);
370 dprint(d, 2, "%s: [wp 0x%x] response 0x%x, extra 0x%x\n",
371 __func__, wp, response, ex);
374 if (d->rirb_count == d->rirb_cnt) {
375 dprint(d, 2, "%s: rirb count reached (%d)\n", __func__, d->rirb_count);
376 if (d->rirb_ctl & ICH6_RBCTL_IRQ_EN) {
377 d->rirb_sts |= ICH6_RBSTS_IRQ;
378 intel_hda_update_irq(d);
380 } else if ((d->corb_rp & 0xff) == d->corb_wp) {
381 dprint(d, 2, "%s: corb ring empty (%d/%d)\n", __func__,
382 d->rirb_count, d->rirb_cnt);
383 if (d->rirb_ctl & ICH6_RBCTL_IRQ_EN) {
384 d->rirb_sts |= ICH6_RBSTS_IRQ;
385 intel_hda_update_irq(d);
390 static bool intel_hda_xfer(HDACodecDevice *dev, uint32_t stnr, bool output,
391 uint8_t *buf, uint32_t len)
393 HDACodecBus *bus = HDA_BUS(dev->qdev.parent_bus);
394 IntelHDAState *d = container_of(bus, IntelHDAState, codecs);
396 uint32_t s, copy, left;
400 st = output ? d->st + 4 : d->st;
401 for (s = 0; s < 4; s++) {
402 if (stnr == ((st[s].ctl >> 20) & 0x0f)) {
410 if (st->bpl == NULL) {
416 while (left > 0 && s-- > 0) {
418 if (copy > st->bsize - st->lpib)
419 copy = st->bsize - st->lpib;
420 if (copy > st->bpl[st->be].len - st->bp)
421 copy = st->bpl[st->be].len - st->bp;
423 dprint(d, 3, "dma: entry %d, pos %d/%d, copy %d\n",
424 st->be, st->bp, st->bpl[st->be].len, copy);
426 pci_dma_rw(&d->pci, st->bpl[st->be].addr + st->bp, buf, copy, !output);
432 if (st->bpl[st->be].len == st->bp) {
433 /* bpl entry filled */
434 if (st->bpl[st->be].flags & 0x01) {
439 if (st->be == st->bentries) {
440 /* bpl wrap around */
446 if (d->dp_lbase & 0x01) {
448 addr = intel_hda_addr(d->dp_lbase & ~0x01, d->dp_ubase);
449 stl_le_pci_dma(&d->pci, addr + 8*s, st->lpib);
451 dprint(d, 3, "dma: --\n");
454 st->ctl |= (1 << 26); /* buffer completion interrupt */
455 intel_hda_update_irq(d);
460 static void intel_hda_parse_bdl(IntelHDAState *d, IntelHDAStream *st)
466 addr = intel_hda_addr(st->bdlp_lbase, st->bdlp_ubase);
467 st->bentries = st->lvi +1;
469 st->bpl = g_malloc(sizeof(bpl) * st->bentries);
470 for (i = 0; i < st->bentries; i++, addr += 16) {
471 pci_dma_read(&d->pci, addr, buf, 16);
472 st->bpl[i].addr = le64_to_cpu(*(uint64_t *)buf);
473 st->bpl[i].len = le32_to_cpu(*(uint32_t *)(buf + 8));
474 st->bpl[i].flags = le32_to_cpu(*(uint32_t *)(buf + 12));
475 dprint(d, 1, "bdl/%d: 0x%" PRIx64 " +0x%x, 0x%x\n",
476 i, st->bpl[i].addr, st->bpl[i].len, st->bpl[i].flags);
485 static void intel_hda_notify_codecs(IntelHDAState *d, uint32_t stream, bool running, bool output)
488 HDACodecDevice *cdev;
490 QTAILQ_FOREACH(kid, &d->codecs.qbus.children, sibling) {
491 DeviceState *qdev = kid->child;
492 HDACodecDeviceClass *cdc;
494 cdev = HDA_CODEC_DEVICE(qdev);
495 cdc = HDA_CODEC_DEVICE_GET_CLASS(cdev);
497 cdc->stream(cdev, stream, running, output);
502 /* --------------------------------------------------------------------- */
504 static void intel_hda_set_g_ctl(IntelHDAState *d, const IntelHDAReg *reg, uint32_t old)
506 if ((d->g_ctl & ICH6_GCTL_RESET) == 0) {
507 intel_hda_reset(DEVICE(d));
511 static void intel_hda_set_wake_en(IntelHDAState *d, const IntelHDAReg *reg, uint32_t old)
513 intel_hda_update_irq(d);
516 static void intel_hda_set_state_sts(IntelHDAState *d, const IntelHDAReg *reg, uint32_t old)
518 intel_hda_update_irq(d);
521 static void intel_hda_set_int_ctl(IntelHDAState *d, const IntelHDAReg *reg, uint32_t old)
523 intel_hda_update_irq(d);
526 static void intel_hda_get_wall_clk(IntelHDAState *d, const IntelHDAReg *reg)
530 ns = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) - d->wall_base_ns;
531 d->wall_clk = (uint32_t)(ns * 24 / 1000); /* 24 MHz */
534 static void intel_hda_set_corb_wp(IntelHDAState *d, const IntelHDAReg *reg, uint32_t old)
536 intel_hda_corb_run(d);
539 static void intel_hda_set_corb_ctl(IntelHDAState *d, const IntelHDAReg *reg, uint32_t old)
541 intel_hda_corb_run(d);
544 static void intel_hda_set_rirb_wp(IntelHDAState *d, const IntelHDAReg *reg, uint32_t old)
546 if (d->rirb_wp & ICH6_RIRBWP_RST) {
551 static void intel_hda_set_rirb_sts(IntelHDAState *d, const IntelHDAReg *reg, uint32_t old)
553 intel_hda_update_irq(d);
555 if ((old & ICH6_RBSTS_IRQ) && !(d->rirb_sts & ICH6_RBSTS_IRQ)) {
556 /* cleared ICH6_RBSTS_IRQ */
558 intel_hda_corb_run(d);
562 static void intel_hda_set_ics(IntelHDAState *d, const IntelHDAReg *reg, uint32_t old)
564 if (d->ics & ICH6_IRS_BUSY) {
565 intel_hda_corb_run(d);
569 static void intel_hda_set_st_ctl(IntelHDAState *d, const IntelHDAReg *reg, uint32_t old)
571 bool output = reg->stream >= 4;
572 IntelHDAStream *st = d->st + reg->stream;
574 if (st->ctl & 0x01) {
576 dprint(d, 1, "st #%d: reset\n", reg->stream);
577 st->ctl = SD_STS_FIFO_READY << 24;
579 if ((st->ctl & 0x02) != (old & 0x02)) {
580 uint32_t stnr = (st->ctl >> 20) & 0x0f;
581 /* run bit flipped */
582 if (st->ctl & 0x02) {
584 dprint(d, 1, "st #%d: start %d (ring buf %d bytes)\n",
585 reg->stream, stnr, st->cbl);
586 intel_hda_parse_bdl(d, st);
587 intel_hda_notify_codecs(d, stnr, true, output);
590 dprint(d, 1, "st #%d: stop %d\n", reg->stream, stnr);
591 intel_hda_notify_codecs(d, stnr, false, output);
594 intel_hda_update_irq(d);
597 /* --------------------------------------------------------------------- */
599 #define ST_REG(_n, _o) (0x80 + (_n) * 0x20 + (_o))
601 static const struct IntelHDAReg regtab[] = {
603 [ ICH6_REG_GCAP ] = {
608 [ ICH6_REG_VMIN ] = {
612 [ ICH6_REG_VMAJ ] = {
617 [ ICH6_REG_OUTPAY ] = {
622 [ ICH6_REG_INPAY ] = {
627 [ ICH6_REG_GCTL ] = {
631 .offset = offsetof(IntelHDAState, g_ctl),
632 .whandler = intel_hda_set_g_ctl,
634 [ ICH6_REG_WAKEEN ] = {
638 .offset = offsetof(IntelHDAState, wake_en),
639 .whandler = intel_hda_set_wake_en,
641 [ ICH6_REG_STATESTS ] = {
646 .offset = offsetof(IntelHDAState, state_sts),
647 .whandler = intel_hda_set_state_sts,
651 [ ICH6_REG_INTCTL ] = {
655 .offset = offsetof(IntelHDAState, int_ctl),
656 .whandler = intel_hda_set_int_ctl,
658 [ ICH6_REG_INTSTS ] = {
662 .wclear = 0xc00000ff,
663 .offset = offsetof(IntelHDAState, int_sts),
667 [ ICH6_REG_WALLCLK ] = {
670 .offset = offsetof(IntelHDAState, wall_clk),
671 .rhandler = intel_hda_get_wall_clk,
673 [ ICH6_REG_WALLCLK + 0x2000 ] = {
674 .name = "WALLCLK(alias)",
676 .offset = offsetof(IntelHDAState, wall_clk),
677 .rhandler = intel_hda_get_wall_clk,
681 [ ICH6_REG_CORBLBASE ] = {
685 .offset = offsetof(IntelHDAState, corb_lbase),
687 [ ICH6_REG_CORBUBASE ] = {
691 .offset = offsetof(IntelHDAState, corb_ubase),
693 [ ICH6_REG_CORBWP ] = {
697 .offset = offsetof(IntelHDAState, corb_wp),
698 .whandler = intel_hda_set_corb_wp,
700 [ ICH6_REG_CORBRP ] = {
704 .offset = offsetof(IntelHDAState, corb_rp),
706 [ ICH6_REG_CORBCTL ] = {
710 .offset = offsetof(IntelHDAState, corb_ctl),
711 .whandler = intel_hda_set_corb_ctl,
713 [ ICH6_REG_CORBSTS ] = {
718 .offset = offsetof(IntelHDAState, corb_sts),
720 [ ICH6_REG_CORBSIZE ] = {
724 .offset = offsetof(IntelHDAState, corb_size),
726 [ ICH6_REG_RIRBLBASE ] = {
730 .offset = offsetof(IntelHDAState, rirb_lbase),
732 [ ICH6_REG_RIRBUBASE ] = {
736 .offset = offsetof(IntelHDAState, rirb_ubase),
738 [ ICH6_REG_RIRBWP ] = {
742 .offset = offsetof(IntelHDAState, rirb_wp),
743 .whandler = intel_hda_set_rirb_wp,
745 [ ICH6_REG_RINTCNT ] = {
749 .offset = offsetof(IntelHDAState, rirb_cnt),
751 [ ICH6_REG_RIRBCTL ] = {
755 .offset = offsetof(IntelHDAState, rirb_ctl),
757 [ ICH6_REG_RIRBSTS ] = {
762 .offset = offsetof(IntelHDAState, rirb_sts),
763 .whandler = intel_hda_set_rirb_sts,
765 [ ICH6_REG_RIRBSIZE ] = {
769 .offset = offsetof(IntelHDAState, rirb_size),
772 [ ICH6_REG_DPLBASE ] = {
776 .offset = offsetof(IntelHDAState, dp_lbase),
778 [ ICH6_REG_DPUBASE ] = {
782 .offset = offsetof(IntelHDAState, dp_ubase),
789 .offset = offsetof(IntelHDAState, icw),
794 .offset = offsetof(IntelHDAState, irr),
801 .offset = offsetof(IntelHDAState, ics),
802 .whandler = intel_hda_set_ics,
805 #define HDA_STREAM(_t, _i) \
806 [ ST_REG(_i, ICH6_REG_SD_CTL) ] = { \
808 .name = _t stringify(_i) " CTL", \
810 .wmask = 0x1cff001f, \
811 .offset = offsetof(IntelHDAState, st[_i].ctl), \
812 .whandler = intel_hda_set_st_ctl, \
814 [ ST_REG(_i, ICH6_REG_SD_CTL) + 2] = { \
816 .name = _t stringify(_i) " CTL(stnr)", \
819 .wmask = 0x00ff0000, \
820 .offset = offsetof(IntelHDAState, st[_i].ctl), \
821 .whandler = intel_hda_set_st_ctl, \
823 [ ST_REG(_i, ICH6_REG_SD_STS)] = { \
825 .name = _t stringify(_i) " CTL(sts)", \
828 .wmask = 0x1c000000, \
829 .wclear = 0x1c000000, \
830 .offset = offsetof(IntelHDAState, st[_i].ctl), \
831 .whandler = intel_hda_set_st_ctl, \
832 .reset = SD_STS_FIFO_READY << 24 \
834 [ ST_REG(_i, ICH6_REG_SD_LPIB) ] = { \
836 .name = _t stringify(_i) " LPIB", \
838 .offset = offsetof(IntelHDAState, st[_i].lpib), \
840 [ ST_REG(_i, ICH6_REG_SD_LPIB) + 0x2000 ] = { \
842 .name = _t stringify(_i) " LPIB(alias)", \
844 .offset = offsetof(IntelHDAState, st[_i].lpib), \
846 [ ST_REG(_i, ICH6_REG_SD_CBL) ] = { \
848 .name = _t stringify(_i) " CBL", \
850 .wmask = 0xffffffff, \
851 .offset = offsetof(IntelHDAState, st[_i].cbl), \
853 [ ST_REG(_i, ICH6_REG_SD_LVI) ] = { \
855 .name = _t stringify(_i) " LVI", \
858 .offset = offsetof(IntelHDAState, st[_i].lvi), \
860 [ ST_REG(_i, ICH6_REG_SD_FIFOSIZE) ] = { \
862 .name = _t stringify(_i) " FIFOS", \
864 .reset = HDA_BUFFER_SIZE, \
866 [ ST_REG(_i, ICH6_REG_SD_FORMAT) ] = { \
868 .name = _t stringify(_i) " FMT", \
871 .offset = offsetof(IntelHDAState, st[_i].fmt), \
873 [ ST_REG(_i, ICH6_REG_SD_BDLPL) ] = { \
875 .name = _t stringify(_i) " BDLPL", \
877 .wmask = 0xffffff80, \
878 .offset = offsetof(IntelHDAState, st[_i].bdlp_lbase), \
880 [ ST_REG(_i, ICH6_REG_SD_BDLPU) ] = { \
882 .name = _t stringify(_i) " BDLPU", \
884 .wmask = 0xffffffff, \
885 .offset = offsetof(IntelHDAState, st[_i].bdlp_ubase), \
900 static const IntelHDAReg *intel_hda_reg_find(IntelHDAState *d, hwaddr addr)
902 const IntelHDAReg *reg;
904 if (addr >= ARRAY_SIZE(regtab)) {
908 if (reg->name == NULL) {
914 dprint(d, 1, "unknown register, addr 0x%x\n", (int) addr);
918 static uint32_t *intel_hda_reg_addr(IntelHDAState *d, const IntelHDAReg *reg)
920 uint8_t *addr = (void*)d;
923 return (uint32_t*)addr;
926 static void intel_hda_reg_write(IntelHDAState *d, const IntelHDAReg *reg, uint32_t val,
936 qemu_log_mask(LOG_GUEST_ERROR, "intel-hda: write to r/o reg %s\n",
942 time_t now = time(NULL);
943 if (d->last_write && d->last_reg == reg && d->last_val == val) {
945 if (d->last_sec != now) {
946 dprint(d, 2, "previous register op repeated %d times\n", d->repeat_count);
951 if (d->repeat_count) {
952 dprint(d, 2, "previous register op repeated %d times\n", d->repeat_count);
954 dprint(d, 2, "write %-16s: 0x%x (%x)\n", reg->name, val, wmask);
962 assert(reg->offset != 0);
964 addr = intel_hda_reg_addr(d, reg);
969 wmask <<= reg->shift;
973 *addr |= wmask & val;
974 *addr &= ~(val & reg->wclear);
977 reg->whandler(d, reg, old);
981 static uint32_t intel_hda_reg_read(IntelHDAState *d, const IntelHDAReg *reg,
991 reg->rhandler(d, reg);
994 if (reg->offset == 0) {
995 /* constant read-only register */
998 addr = intel_hda_reg_addr(d, reg);
1006 time_t now = time(NULL);
1007 if (!d->last_write && d->last_reg == reg && d->last_val == ret) {
1009 if (d->last_sec != now) {
1010 dprint(d, 2, "previous register op repeated %d times\n", d->repeat_count);
1012 d->repeat_count = 0;
1015 if (d->repeat_count) {
1016 dprint(d, 2, "previous register op repeated %d times\n", d->repeat_count);
1018 dprint(d, 2, "read %-16s: 0x%x (%x)\n", reg->name, ret, rmask);
1023 d->repeat_count = 0;
1029 static void intel_hda_regs_reset(IntelHDAState *d)
1034 for (i = 0; i < ARRAY_SIZE(regtab); i++) {
1035 if (regtab[i].name == NULL) {
1038 if (regtab[i].offset == 0) {
1041 addr = intel_hda_reg_addr(d, regtab + i);
1042 *addr = regtab[i].reset;
1046 /* --------------------------------------------------------------------- */
1048 static void intel_hda_mmio_write(void *opaque, hwaddr addr, uint64_t val,
1051 IntelHDAState *d = opaque;
1052 const IntelHDAReg *reg = intel_hda_reg_find(d, addr);
1054 intel_hda_reg_write(d, reg, val, MAKE_64BIT_MASK(0, size * 8));
1057 static uint64_t intel_hda_mmio_read(void *opaque, hwaddr addr, unsigned size)
1059 IntelHDAState *d = opaque;
1060 const IntelHDAReg *reg = intel_hda_reg_find(d, addr);
1062 return intel_hda_reg_read(d, reg, MAKE_64BIT_MASK(0, size * 8));
1065 static const MemoryRegionOps intel_hda_mmio_ops = {
1066 .read = intel_hda_mmio_read,
1067 .write = intel_hda_mmio_write,
1069 .min_access_size = 1,
1070 .max_access_size = 4,
1072 .endianness = DEVICE_NATIVE_ENDIAN,
1075 /* --------------------------------------------------------------------- */
1077 static void intel_hda_reset(DeviceState *dev)
1080 IntelHDAState *d = INTEL_HDA(dev);
1081 HDACodecDevice *cdev;
1083 intel_hda_regs_reset(d);
1084 d->wall_base_ns = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
1087 QTAILQ_FOREACH(kid, &d->codecs.qbus.children, sibling) {
1088 DeviceState *qdev = kid->child;
1089 cdev = HDA_CODEC_DEVICE(qdev);
1090 device_reset(DEVICE(cdev));
1091 d->state_sts |= (1 << cdev->cad);
1093 intel_hda_update_irq(d);
1096 static void intel_hda_realize(PCIDevice *pci, Error **errp)
1098 IntelHDAState *d = INTEL_HDA(pci);
1099 uint8_t *conf = d->pci.config;
1103 d->name = object_get_typename(OBJECT(d));
1105 pci_config_set_interrupt_pin(conf, 1);
1107 /* HDCTL off 0x40 bit 0 selects signaling mode (1-HDA, 0 - Ac97) 18.1.19 */
1110 if (d->msi != ON_OFF_AUTO_OFF) {
1111 ret = msi_init(&d->pci, d->old_msi_addr ? 0x50 : 0x60,
1112 1, true, false, &err);
1113 /* Any error other than -ENOTSUP(board's MSI support is broken)
1114 * is a programming error */
1115 assert(!ret || ret == -ENOTSUP);
1116 if (ret && d->msi == ON_OFF_AUTO_ON) {
1117 /* Can't satisfy user's explicit msi=on request, fail */
1118 error_append_hint(&err, "You have to use msi=auto (default) or "
1119 "msi=off with this machine type.\n");
1120 error_propagate(errp, err);
1123 assert(!err || d->msi == ON_OFF_AUTO_AUTO);
1124 /* With msi=auto, we fall back to MSI off silently */
1128 memory_region_init_io(&d->mmio, OBJECT(d), &intel_hda_mmio_ops, d,
1129 "intel-hda", 0x4000);
1130 pci_register_bar(&d->pci, 0, 0, &d->mmio);
1132 hda_codec_bus_init(DEVICE(pci), &d->codecs, sizeof(d->codecs),
1133 intel_hda_response, intel_hda_xfer);
1136 static void intel_hda_exit(PCIDevice *pci)
1138 IntelHDAState *d = INTEL_HDA(pci);
1140 msi_uninit(&d->pci);
1143 static int intel_hda_post_load(void *opaque, int version)
1145 IntelHDAState* d = opaque;
1148 dprint(d, 1, "%s\n", __func__);
1149 for (i = 0; i < ARRAY_SIZE(d->st); i++) {
1150 if (d->st[i].ctl & 0x02) {
1151 intel_hda_parse_bdl(d, &d->st[i]);
1154 intel_hda_update_irq(d);
1158 static const VMStateDescription vmstate_intel_hda_stream = {
1159 .name = "intel-hda-stream",
1161 .fields = (VMStateField[]) {
1162 VMSTATE_UINT32(ctl, IntelHDAStream),
1163 VMSTATE_UINT32(lpib, IntelHDAStream),
1164 VMSTATE_UINT32(cbl, IntelHDAStream),
1165 VMSTATE_UINT32(lvi, IntelHDAStream),
1166 VMSTATE_UINT32(fmt, IntelHDAStream),
1167 VMSTATE_UINT32(bdlp_lbase, IntelHDAStream),
1168 VMSTATE_UINT32(bdlp_ubase, IntelHDAStream),
1169 VMSTATE_END_OF_LIST()
1173 static const VMStateDescription vmstate_intel_hda = {
1174 .name = "intel-hda",
1176 .post_load = intel_hda_post_load,
1177 .fields = (VMStateField[]) {
1178 VMSTATE_PCI_DEVICE(pci, IntelHDAState),
1181 VMSTATE_UINT32(g_ctl, IntelHDAState),
1182 VMSTATE_UINT32(wake_en, IntelHDAState),
1183 VMSTATE_UINT32(state_sts, IntelHDAState),
1184 VMSTATE_UINT32(int_ctl, IntelHDAState),
1185 VMSTATE_UINT32(int_sts, IntelHDAState),
1186 VMSTATE_UINT32(wall_clk, IntelHDAState),
1187 VMSTATE_UINT32(corb_lbase, IntelHDAState),
1188 VMSTATE_UINT32(corb_ubase, IntelHDAState),
1189 VMSTATE_UINT32(corb_rp, IntelHDAState),
1190 VMSTATE_UINT32(corb_wp, IntelHDAState),
1191 VMSTATE_UINT32(corb_ctl, IntelHDAState),
1192 VMSTATE_UINT32(corb_sts, IntelHDAState),
1193 VMSTATE_UINT32(corb_size, IntelHDAState),
1194 VMSTATE_UINT32(rirb_lbase, IntelHDAState),
1195 VMSTATE_UINT32(rirb_ubase, IntelHDAState),
1196 VMSTATE_UINT32(rirb_wp, IntelHDAState),
1197 VMSTATE_UINT32(rirb_cnt, IntelHDAState),
1198 VMSTATE_UINT32(rirb_ctl, IntelHDAState),
1199 VMSTATE_UINT32(rirb_sts, IntelHDAState),
1200 VMSTATE_UINT32(rirb_size, IntelHDAState),
1201 VMSTATE_UINT32(dp_lbase, IntelHDAState),
1202 VMSTATE_UINT32(dp_ubase, IntelHDAState),
1203 VMSTATE_UINT32(icw, IntelHDAState),
1204 VMSTATE_UINT32(irr, IntelHDAState),
1205 VMSTATE_UINT32(ics, IntelHDAState),
1206 VMSTATE_STRUCT_ARRAY(st, IntelHDAState, 8, 0,
1207 vmstate_intel_hda_stream,
1210 /* additional state info */
1211 VMSTATE_UINT32(rirb_count, IntelHDAState),
1212 VMSTATE_INT64(wall_base_ns, IntelHDAState),
1214 VMSTATE_END_OF_LIST()
1218 static Property intel_hda_properties[] = {
1219 DEFINE_PROP_UINT32("debug", IntelHDAState, debug, 0),
1220 DEFINE_PROP_ON_OFF_AUTO("msi", IntelHDAState, msi, ON_OFF_AUTO_AUTO),
1221 DEFINE_PROP_BOOL("old_msi_addr", IntelHDAState, old_msi_addr, false),
1222 DEFINE_PROP_END_OF_LIST(),
1225 static void intel_hda_class_init(ObjectClass *klass, void *data)
1227 DeviceClass *dc = DEVICE_CLASS(klass);
1228 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
1230 k->realize = intel_hda_realize;
1231 k->exit = intel_hda_exit;
1232 k->vendor_id = PCI_VENDOR_ID_INTEL;
1233 k->class_id = PCI_CLASS_MULTIMEDIA_HD_AUDIO;
1234 dc->reset = intel_hda_reset;
1235 dc->vmsd = &vmstate_intel_hda;
1236 device_class_set_props(dc, intel_hda_properties);
1239 static void intel_hda_class_init_ich6(ObjectClass *klass, void *data)
1241 DeviceClass *dc = DEVICE_CLASS(klass);
1242 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
1244 k->device_id = 0x2668;
1246 set_bit(DEVICE_CATEGORY_SOUND, dc->categories);
1247 dc->desc = "Intel HD Audio Controller (ich6)";
1250 static void intel_hda_class_init_ich9(ObjectClass *klass, void *data)
1252 DeviceClass *dc = DEVICE_CLASS(klass);
1253 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
1255 k->device_id = 0x293e;
1257 set_bit(DEVICE_CATEGORY_SOUND, dc->categories);
1258 dc->desc = "Intel HD Audio Controller (ich9)";
1261 static const TypeInfo intel_hda_info = {
1262 .name = TYPE_INTEL_HDA_GENERIC,
1263 .parent = TYPE_PCI_DEVICE,
1264 .instance_size = sizeof(IntelHDAState),
1265 .class_init = intel_hda_class_init,
1267 .interfaces = (InterfaceInfo[]) {
1268 { INTERFACE_CONVENTIONAL_PCI_DEVICE },
1273 static const TypeInfo intel_hda_info_ich6 = {
1274 .name = "intel-hda",
1275 .parent = TYPE_INTEL_HDA_GENERIC,
1276 .class_init = intel_hda_class_init_ich6,
1279 static const TypeInfo intel_hda_info_ich9 = {
1280 .name = "ich9-intel-hda",
1281 .parent = TYPE_INTEL_HDA_GENERIC,
1282 .class_init = intel_hda_class_init_ich9,
1285 static void hda_codec_device_class_init(ObjectClass *klass, void *data)
1287 DeviceClass *k = DEVICE_CLASS(klass);
1288 k->realize = hda_codec_dev_realize;
1289 k->unrealize = hda_codec_dev_unrealize;
1290 set_bit(DEVICE_CATEGORY_SOUND, k->categories);
1291 k->bus_type = TYPE_HDA_BUS;
1292 device_class_set_props(k, hda_props);
1295 static const TypeInfo hda_codec_device_type_info = {
1296 .name = TYPE_HDA_CODEC_DEVICE,
1297 .parent = TYPE_DEVICE,
1298 .instance_size = sizeof(HDACodecDevice),
1300 .class_size = sizeof(HDACodecDeviceClass),
1301 .class_init = hda_codec_device_class_init,
1305 * create intel hda controller with codec attached to it,
1306 * so '-soundhw hda' works.
1308 static int intel_hda_and_codec_init(PCIBus *bus)
1310 DeviceState *controller;
1314 controller = DEVICE(pci_create_simple(bus, -1, "intel-hda"));
1315 hdabus = QLIST_FIRST(&controller->child_bus);
1316 codec = qdev_create(hdabus, "hda-duplex");
1317 qdev_init_nofail(codec);
1321 static void intel_hda_register_types(void)
1323 type_register_static(&hda_codec_bus_info);
1324 type_register_static(&intel_hda_info);
1325 type_register_static(&intel_hda_info_ich6);
1326 type_register_static(&intel_hda_info_ich9);
1327 type_register_static(&hda_codec_device_type_info);
1328 pci_register_soundhw("hda", "Intel HD Audio", intel_hda_and_codec_init);
1331 type_init(intel_hda_register_types)