Home
last modified time | relevance | path

Searched refs:bdle (Results 1 – 2 of 2) sorted by relevance

/freebsd/usr.sbin/bhyve/
H A Dpci_hda.c598 struct hda_bdle *bdle = NULL; in hda_stream_start() local
637 bdle = (struct hda_bdle *)bdl_vaddr; in hda_stream_start()
638 for (size_t i = 0; i < bdl_cnt; i++, bdle++) { in hda_stream_start()
639 bdle_sz = bdle->len; in hda_stream_start()
642 bdle_addrl = bdle->addrl; in hda_stream_start()
643 bdle_addrh = bdle->addrh; in hda_stream_start()
655 bdle_desc->ioc = bdle->ioc; in hda_stream_start()
/freebsd/sys/dev/sound/pci/hda/
H A Dhdac.c1986 struct hdac_bdle *bdle; in hdac_stream_start()
1996 bdle = (struct hdac_bdle *)sc->streams[ss].bdl.dma_vaddr; in hdac_stream_start()
1997 for (i = 0; i < blkcnt; i++, bdle++) { in hdac_stream_start()
1998 bdle->addrl = htole32((uint32_t)addr); in hdac_stream_start()
1999 bdle->addrh = htole32((uint32_t)(addr >> 32)); in hdac_stream_start()
2000 bdle->len = htole32(blksz); in hdac_stream_start()
2001 bdle->ioc = htole32(1); in hdac_stream_start()
1985 struct hdac_bdle *bdle; hdac_stream_start() local