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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/asm-arm/arch-cl7500/hardware.h
  3.  *
  4.  * Copyright (C) 1996-1999 Russell King.
  5.  * Copyright (C) 1999 Nexus Electronics Ltd.
  6.  *
  7.  * This file contains the hardware definitions of the 
  8.  * CL7500 evaluation board.
  9.  */
  10. #ifndef __ASM_ARCH_HARDWARE_H
  11. #define __ASM_ARCH_HARDWARE_H
  12. #include <asm/arch/memory.h>
  13. #include <asm/hardware/iomd.h>
  14. /*
  15.  * What hardware must be present
  16.  */
  17. #define HAS_IOMD
  18. #define HAS_VIDC20
  19. /* Hardware addresses of major areas.
  20.  *  *_START is the physical address
  21.  *  *_SIZE  is the size of the region
  22.  *  *_BASE  is the virtual address
  23.  */
  24. #define IO_START 0x03000000 /* I/O */
  25. #define IO_SIZE 0x01000000
  26. #define IO_BASE 0xe0000000
  27. #define ISA_START 0x0c000000 /* ISA */
  28. #define ISA_SIZE 0x00010000
  29. #define ISA_BASE 0xe1000000
  30. #define FLASH_START 0x01000000 /* XXX */
  31. #define FLASH_SIZE 0x01000000
  32. #define FLASH_BASE 0xe2000000
  33. #define LED_START 0x0302B000
  34. #define LED_SIZE 0x00001000
  35. #define LED_BASE 0xe3000000
  36. #define LED_ADDRESS (LED_BASE + 0xa00)
  37. /* Let's define SCREEN_START for CL7500, even though it's a lie. */
  38. #define SCREEN_START 0x02000000 /* VRAM */
  39. #define SCREEN_END 0xdfc00000
  40. #define SCREEN_BASE 0xdf800000
  41. #define FLUSH_BASE 0xdf000000
  42. #define VIDC_BASE 0xe0400000
  43. #define IOMD_BASE 0xe0200000
  44. #define IOC_BASE 0xe0200000
  45. #define FLOPPYDMA_BASE 0xe002a000
  46. #define PCIO_BASE 0xe0010000
  47. #define FLUSH_BASE_PHYS 0x00000000 /* ROM */
  48. #define vidc_writel(val) __raw_writel(val, VIDC_BASE)
  49. /* in/out bias for the ISA slot region */
  50. #define ISASLOT_IO 0x80400000
  51. #endif