io.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-arm/arch-anakin/io.h
  3.  *
  4.  *  Copyright (C) 2001 Aleph One Ltd. for Acunia N.V.
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  *
  10.  *  Changelog:
  11.  *   10-Apr-2001 TTC Created
  12.  */
  13. #ifndef __ASM_ARM_ARCH_IO_H
  14. #define __ASM_ARM_ARCH_IO_H
  15. #define IO_SPACE_LIMIT 0xffffffff
  16. #define __io(a) a
  17. #define __arch_getw(a) (*(volatile unsigned short *) (a))
  18. #define __arch_putw(b, a) (*(volatile unsigned short *) (a) = (b))
  19. #define iomem_valid_addr(i, s) 1
  20. #define iomem_to_phys(i) i
  21. /*
  22.  * We don't support ins[lb]/outs[lb].  Make them fault.
  23.  */
  24. #define __raw_readsb(p,d,l) do { *(int *)0 = 0; } while (0)
  25. #define __raw_readsl(p,d,l) do { *(int *)0 = 0; } while (0)
  26. #define __raw_writesb(p,d,l) do { *(int *)0 = 0; } while (0)
  27. #define __raw_writesl(p,d,l) do { *(int *)0 = 0; } while (0)
  28. #endif