Home
last modified time | relevance | path

Searched refs:A_IOCFG (Results 1 – 4 of 4) sorted by relevance

/linux-4.4.14/sound/pci/emu10k1/
Demu10k1_main.c241 tmp = inl(emu->port + A_IOCFG) & ~0x8; /* Clear bit 3 */ in snd_emu10k1_init()
242 outl(tmp, emu->port + A_IOCFG); in snd_emu10k1_init()
262 outl(0x76, emu->port + A_IOCFG); /* Windows uses 0x3f76 */ in snd_emu10k1_init()
268 tmp = inl(emu->port + A_IOCFG); in snd_emu10k1_init()
269 outl(tmp | 0x4, emu->port + A_IOCFG); /* Set bit 2 for mic input */ in snd_emu10k1_init()
270 tmp = inl(emu->port + A_IOCFG); in snd_emu10k1_init()
326 unsigned int reg = inl(emu->port + A_IOCFG); in snd_emu10k1_init()
327 outl(reg | A_IOCFG_GPOUT2, emu->port + A_IOCFG); in snd_emu10k1_init()
329 outl(reg | A_IOCFG_GPOUT1 | A_IOCFG_GPOUT2, emu->port + A_IOCFG); in snd_emu10k1_init()
331 outl(reg, emu->port + A_IOCFG); in snd_emu10k1_init()
[all …]
Dio.c260 outl(reg, emu->port + A_IOCFG); in snd_emu1010_fpga_write()
262 outl(reg | 0x80, emu->port + A_IOCFG); /* High bit clocks the value into the fpga. */ in snd_emu1010_fpga_write()
264 outl(value, emu->port + A_IOCFG); in snd_emu1010_fpga_write()
266 outl(value | 0x80 , emu->port + A_IOCFG); /* High bit clocks the value into the fpga. */ in snd_emu1010_fpga_write()
279 outl(reg, emu->port + A_IOCFG); in snd_emu1010_fpga_read()
281 outl(reg | 0x80, emu->port + A_IOCFG); /* High bit clocks the value into the fpga. */ in snd_emu1010_fpga_read()
283 *value = ((inl(emu->port + A_IOCFG) >> 8) & 0x7f); in snd_emu1010_fpga_read()
Demumixer.c958 gpio = inl(emu->port + A_IOCFG); in snd_audigy_i2c_capture_source_put()
960 outl(gpio | 0x4, emu->port + A_IOCFG); in snd_audigy_i2c_capture_source_put()
962 outl(gpio & ~0x4, emu->port + A_IOCFG); in snd_audigy_i2c_capture_source_put()
1648 ucontrol->value.integer.value[0] = inl(emu->port + A_IOCFG) & A_IOCFG_GPOUT0 ? 1 : 0; in snd_emu10k1_shared_spdif_get()
1673 reg = inl(emu->port + A_IOCFG); in snd_emu10k1_shared_spdif_put()
1679 outl(reg | val, emu->port + A_IOCFG); in snd_emu10k1_shared_spdif_put()
/linux-4.4.14/include/sound/
Demu10k1.h269 #define A_IOCFG 0x18 /* GPIO on Audigy card (16bits) */ macro