Home
last modified time | relevance | path

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

/sound/pci/ice1712/
Dice1712.c139 outb((channel << 4) | addr, ICEDS(ice, INDEX)); in snd_ice1712_ds_write()
140 outl(data, ICEDS(ice, DATA)); in snd_ice1712_ds_write()
145 outb((channel << 4) | addr, ICEDS(ice, INDEX)); in snd_ice1712_ds_read()
146 return inl(ICEDS(ice, DATA)); in snd_ice1712_ds_read()
469 pbkstatus = inw(ICEDS(ice, INTSTAT)); in snd_ice1712_interrupt()
477 outw(3 << (idx * 2), ICEDS(ice, INTSTAT)); in snd_ice1712_interrupt()
802 tmp = inw(ICEDS(ice, INTMASK)) & ~(1 << (substream->number * 2)); in snd_ice1712_playback_ds_open()
803 outw(tmp, ICEDS(ice, INTMASK)); in snd_ice1712_playback_ds_open()
835 tmp = inw(ICEDS(ice, INTMASK)) | (3 << (substream->number * 2)); in snd_ice1712_playback_ds_close()
836 outw(tmp, ICEDS(ice, INTMASK)); in snd_ice1712_playback_ds_close()
Dice1712.h118 #define ICEDS(ice, x) ((ice)->dmapath_port + ICE1712_DS_##x) macro