Home
last modified time | relevance | path

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

/sound/pci/ice1712/
Dice1712.c125 outb((channel << 4) | addr, ICEDS(ice, INDEX)); in snd_ice1712_ds_write()
126 outl(data, ICEDS(ice, DATA)); in snd_ice1712_ds_write()
131 outb((channel << 4) | addr, ICEDS(ice, INDEX)); in snd_ice1712_ds_read()
132 return inl(ICEDS(ice, DATA)); in snd_ice1712_ds_read()
455 pbkstatus = inw(ICEDS(ice, INTSTAT)); in snd_ice1712_interrupt()
463 outw(3 << (idx * 2), ICEDS(ice, INTSTAT)); in snd_ice1712_interrupt()
788 tmp = inw(ICEDS(ice, INTMASK)) & ~(1 << (substream->number * 2)); in snd_ice1712_playback_ds_open()
789 outw(tmp, ICEDS(ice, INTMASK)); in snd_ice1712_playback_ds_open()
821 tmp = inw(ICEDS(ice, INTMASK)) | (3 << (substream->number * 2)); in snd_ice1712_playback_ds_close()
822 outw(tmp, ICEDS(ice, INTMASK)); in snd_ice1712_playback_ds_close()
Dice1712.h104 #define ICEDS(ice, x) ((ice)->dmapath_port + ICE1712_DS_##x) macro