Lines Matching refs:port

42 	outl(regptr, emu->port + PTR);
43 val = inl(emu->port + DATA);
83 outl(regptr, emu->port + PTR);
84 data |= inl(emu->port + DATA) & ~mask;
87 outl(regptr, emu->port + PTR);
89 outl(data, emu->port + DATA);
117 outl((reg << 16) | chn, emu->port + PTR);
118 outl(data, emu->port + DATA);
136 outl(regptr, emu->port + PTR2);
137 val = inl(emu->port + DATA2);
153 outl(regptr, emu->port + PTR2);
154 outl(data, emu->port + DATA2);
281 outw(reg, emu->port + A_GPIO);
283 outw(reg | 0x80, emu->port + A_GPIO); /* High bit clocks the value into the fpga. */
285 outw(value, emu->port + A_GPIO);
287 outw(value | 0x80 , emu->port + A_GPIO); /* High bit clocks the value into the fpga. */
318 outw(reg, emu->port + A_GPIO);
320 outw(reg | 0x80, emu->port + A_GPIO); /* High bit clocks the value into the fpga. */
322 *value = ((inw(emu->port + A_GPIO) >> 8) & mask);
449 outw(0x00, emu->port + A_GPIO);
450 write_post = inw(emu->port + A_GPIO);
452 outw(0x80, emu->port + A_GPIO);
453 write_post = inw(emu->port + A_GPIO);
464 outw(reg, emu->port + A_GPIO);
465 write_post = inw(emu->port + A_GPIO);
466 outw(reg | 0x40, emu->port + A_GPIO);
467 write_post = inw(emu->port + A_GPIO);
474 outw(0x10, emu->port + A_GPIO);
475 write_post = inw(emu->port + A_GPIO);
484 enable = inl(emu->port + INTE) | intrenb;
485 outl(enable, emu->port + INTE);
495 enable = inl(emu->port + INTE) & ~intrenb;
496 outl(enable, emu->port + INTE);
507 outl(CLIEH << 16, emu->port + PTR);
508 val = inl(emu->port + DATA);
511 outl(CLIEL << 16, emu->port + PTR);
512 val = inl(emu->port + DATA);
515 outl(val, emu->port + DATA);
526 outl(CLIEH << 16, emu->port + PTR);
527 val = inl(emu->port + DATA);
530 outl(CLIEL << 16, emu->port + PTR);
531 val = inl(emu->port + DATA);
534 outl(val, emu->port + DATA);
544 outl(CLIPH << 16, emu->port + PTR);
547 outl(CLIPL << 16, emu->port + PTR);
550 outl(voicenum, emu->port + DATA);
561 outl(HLIEH << 16, emu->port + PTR);
562 val = inl(emu->port + DATA);
565 outl(HLIEL << 16, emu->port + PTR);
566 val = inl(emu->port + DATA);
569 outl(val, emu->port + DATA);
580 outl(HLIEH << 16, emu->port + PTR);
581 val = inl(emu->port + DATA);
584 outl(HLIEL << 16, emu->port + PTR);
585 val = inl(emu->port + DATA);
588 outl(val, emu->port + DATA);
598 outl(HLIPH << 16, emu->port + PTR);
601 outl(HLIPL << 16, emu->port + PTR);
604 outl(voicenum, emu->port + DATA);
616 outl(SOLEH << 16, emu->port + PTR);
617 sol = inl(emu->port + DATA);
620 outl(SOLEL << 16, emu->port + PTR);
621 sol = inl(emu->port + DATA);
624 outl(sol, emu->port + DATA);
635 outl(SOLEH << 16, emu->port + PTR);
636 sol = inl(emu->port + DATA);
639 outl(SOLEL << 16, emu->port + PTR);
640 sol = inl(emu->port + DATA);
643 outl(sol, emu->port + DATA);
653 outl(SOLEL << 16, emu->port + PTR);
654 outl(inl(emu->port + DATA) | (u32)voices, emu->port + DATA);
655 outl(SOLEH << 16, emu->port + PTR);
656 outl(inl(emu->port + DATA) | (u32)(voices >> 32), emu->port + DATA);
665 outl(SOLEL << 16, emu->port + PTR);
666 outl(inl(emu->port + DATA) & (u32)~voices, emu->port + DATA);
667 outl(SOLEH << 16, emu->port + PTR);
668 outl(inl(emu->port + DATA) & (u32)(~voices >> 32), emu->port + DATA);
680 outl(SOLEL << 16, emu->port + PTR);
681 soll = inl(emu->port + DATA);
682 outl(SOLEH << 16, emu->port + PTR);
683 solh = inl(emu->port + DATA);
691 u32 wc = inl(emu->port + WC);
695 outl(SOLEL << 16, emu->port + PTR);
696 outl(soll, emu->port + DATA);
699 cc = REG_VAL_GET(WC_CURRENTCHANNEL, inl(emu->port + WC));
709 outl(SOLEH << 16, emu->port + PTR);
710 outl(solh, emu->port + DATA);
712 if (REG_VAL_GET(WC_SAMPLECOUNTER, inl(emu->port + WC)) ==
735 curtime = inl(emu->port + WC) >> 6;
739 newtime = inl(emu->port + WC) >> 6;
756 outb(reg, emu->port + AC97ADDRESS);
757 val = inw(emu->port + AC97DATA);
768 outb(reg, emu->port + AC97ADDRESS);
769 outw(data, emu->port + AC97DATA);