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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* 
  2.  * Copyright (C) 2001 David J. Mckay (david.mckay@st.com)
  3.  *
  4.  * May be copied or modified under the terms of the GNU General Public
  5.  * License.  See linux/COPYING for more information.                            
  6.  *
  7.  * Defintions applicable to the STMicroelectronics ST40STB1 HARP and
  8.  * compatible boards.
  9.  */
  10. #if defined(CONFIG_SH_STB1_HARP)
  11. #define EPLD_BASE     0xa0800000
  12. #define EPLD_LED      (EPLD_BASE+0x000c0000)
  13. #define EPLD_INTSTAT0 (EPLD_BASE+0x00200000)
  14. #define EPLD_INTSTAT1 (EPLD_BASE+0x00240000)
  15. #define EPLD_INTMASK0 (EPLD_BASE+0x00280000)
  16. #define EPLD_INTMASK1 (EPLD_BASE+0x002c0000)
  17. #define EPLD_PAGEADDR (EPLD_BASE+0x00300000)
  18. #define EPLD_REVID1   (EPLD_BASE+0x00380000)
  19. #define EPLD_REVID2   (EPLD_BASE+0x003c0000)
  20. #define EPLD_LED_ON  1
  21. #define EPLD_LED_OFF 0
  22. #elif defined(CONFIG_SH_STB1_OVERDRIVE)
  23. #define EPLD_BASE     0xa7000000
  24. #define EPLD_REVID    (EPLD_BASE+0x00000000)
  25. #define EPLD_LED      (EPLD_BASE+0x00040000)
  26. #define EPLD_INTMASK0 (EPLD_BASE+0x001c0000)
  27. #define EPLD_INTMASK1 (EPLD_BASE+0x00200000)
  28. #define EPLD_INTSTAT0 (EPLD_BASE+0x00240000)
  29. #define EPLD_INTSTAT1 (EPLD_BASE+0x00280000)
  30. #define EPLD_LED_ON  0
  31. #define EPLD_LED_OFF 1
  32. #else
  33. #error Unknown board
  34. #endif