Home
last modified time | relevance | path

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

/openbmc/linux/sound/pci/ice1712/
H A Dice1712.c119 outb((channel << 4) | addr, ICEDS(ice, INDEX)); in snd_ice1712_ds_write()
120 outl(data, ICEDS(ice, DATA)); in snd_ice1712_ds_write()
125 outb((channel << 4) | addr, ICEDS(ice, INDEX)); in snd_ice1712_ds_read()
126 return inl(ICEDS(ice, DATA)); in snd_ice1712_ds_read()
449 pbkstatus = inw(ICEDS(ice, INTSTAT)); in snd_ice1712_interrupt()
457 outw(3 << (idx * 2), ICEDS(ice, INTSTAT)); in snd_ice1712_interrupt()
767 tmp = inw(ICEDS(ice, INTMASK)) & ~(1 << (substream->number * 2)); in snd_ice1712_playback_ds_open()
768 outw(tmp, ICEDS(ice, INTMASK)); in snd_ice1712_playback_ds_open()
800 tmp = inw(ICEDS(ice, INTMASK)) | (3 << (substream->number * 2)); in snd_ice1712_playback_ds_close()
801 outw(tmp, ICEDS(ice, INTMASK)); in snd_ice1712_playback_ds_close()
H A Dice1712.h104 #define ICEDS(ice, x) ((ice)->dmapath_port + ICE1712_DS_##x) macro