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/delay.h>
  11. #include <asm/sn/simulator.h>
  12. #include <asm/sn/pda.h>
  13. #include <asm/sn/sn_cpuid.h>
  14. /**
  15.  * sn_io_addr - convert an in/out port to an i/o address
  16.  * @port: port to convert
  17.  *
  18.  * Legacy in/out instructions are converted to ld/st instructions
  19.  * on IA64.  This routine will convert a port number into a valid 
  20.  * SN i/o address.  Used by sn_in*() and sn_out*().
  21.  */
  22. void *
  23. sn_io_addr(unsigned long port)
  24. {
  25. if (!IS_RUNNING_ON_SIMULATOR()) {
  26. return( (void *)  (port | __IA64_UNCACHED_OFFSET));
  27. } else {
  28. unsigned long io_base;
  29. unsigned long addr;
  30.  
  31. /*
  32.    * word align port, but need more than 10 bits
  33.    * for accessing registers in bedrock local block
  34.    * (so we don't do port&0xfff)
  35.    */
  36. if ((port >= 0x1f0 && port <= 0x1f7) ||
  37. port == 0x3f6 || port == 0x3f7) {
  38. io_base = (0xc000000fcc000000 | ((unsigned long)get_nasid() << 38));
  39. addr = io_base | ((port >> 2) << 12) | (port & 0xfff);
  40. } else {
  41. addr = __ia64_get_io_port_base() | ((port >> 2) << 2);
  42. }
  43. return(void *) addr;
  44. }
  45. }
  46. /**
  47.  * sn2_mmiob - I/O space memory barrier
  48.  *
  49.  * Acts as a memory mapped I/O barrier for platforms that queue writes to 
  50.  * I/O space.  This ensures that subsequent writes to I/O space arrive after
  51.  * all previous writes.  For most ia64 platforms, this is a simple
  52.  * 'mf.a' instruction.  For other platforms, mmiob() may have to read
  53.  * a chipset register to ensure ordering.
  54.  *
  55.  * On SN2, we wait for the PIO_WRITE_STATUS SHub register to clear.
  56.  */
  57. void
  58. sn2_mmiob (void)
  59. {
  60. while ( !((volatile unsigned long) (*pda.pio_write_status_addr)) & 0x8000000000000000)
  61. udelay(5);
  62. }