iomv.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* 
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 2000-2002 Silicon Graphics, Inc. All rights reserved.
  7.  */
  8. #include <linux/pci.h>
  9. #include <asm/io.h>
  10. #include <asm/sn/simulator.h>
  11. #include <asm/delay.h>
  12. #include <asm/sn/pda.h>
  13. /**
  14.  * sn_io_addr - convert an in/out port to an i/o address
  15.  * @port: port to convert
  16.  *
  17.  * Legacy in/out instructions are converted to ld/st instructions
  18.  * on IA64.  This routine will convert a port number into a valid 
  19.  * SN i/o address.  Used by sn_in*() and sn_out*().
  20.  */
  21. void *
  22. sn_io_addr(unsigned long port)
  23. {
  24. if (!IS_RUNNING_ON_SIMULATOR()) {
  25. return( (void *)  (port | __IA64_UNCACHED_OFFSET));
  26. } else {
  27. unsigned long io_base;
  28. unsigned long addr;
  29.  
  30. /*
  31.    * word align port, but need more than 10 bits
  32.    * for accessing registers in bedrock local block
  33.    * (so we don't do port&0xfff)
  34.    */
  35. if ((port >= 0x1f0 && port <= 0x1f7) ||
  36. port == 0x3f6 || port == 0x3f7) {
  37. io_base = __IA64_UNCACHED_OFFSET | 0x00000FFFFC000000;
  38. addr = io_base | ((port >> 2) << 12) | (port & 0xfff);
  39. } else {
  40. addr = __ia64_get_io_port_base() | ((port >> 2) << 2);
  41. }
  42. return(void *) addr;
  43. }
  44. }
  45. /**
  46.  * sn1_mmiob - I/O space memory barrier
  47.  *
  48.  * Acts as a memory mapped I/O barrier for platforms that queue writes to 
  49.  * I/O space.  This ensures that subsequent writes to I/O space arrive after
  50.  * all previous writes.  For most ia64 platforms, this is a simple
  51.  * 'mf.a' instruction.  For other platforms, mmiob() may have to read
  52.  * a chipset register to ensure ordering.
  53.  *
  54.  * On SN1, we wait for the PIO_WRITE_STATUS Bedrock register to clear.
  55.  */
  56. void
  57. sn1_mmiob (void)
  58. {
  59. (volatile unsigned long) (*pda.bedrock_rev_id);
  60. while (!(volatile unsigned long) (*pda.pio_write_status_addr))
  61. udelay(5);
  62. }