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

嵌入式Linux

开发平台:

Unix_Linux

  1. /***********************************************************************
  2.  * Copyright 2001 MontaVista Software Inc.
  3.  * Author: Jun Sun, jsun@mvista.com or jsun@junsun.net
  4.  *
  5.  * include/asm-mips/gt64120/momenco-ocelot/gt64120-dep.h
  6.  *     Board-dependent definitions for GT-64120 chip.
  7.  *
  8.  * This program is free software; you can redistribute  it and/or modify it
  9.  * under  the terms of  the GNU General  Public License as published by the
  10.  * Free Software Foundation;  either version 2 of the  License, or (at your
  11.  * option) any later version.
  12.  ***********************************************************************
  13.  */
  14. #ifndef _ASM_GT64120_MOMENCO_OCELOT_GT64120_DEP_H
  15. #define _ASM_GT64120_MOMENCO_OCELOT_GT64120_DEP_H
  16. #include <asm/addrspace.h> /* for KSEG1ADDR() */
  17. #include <asm/byteorder.h> /* for cpu_to_le32() */
  18. /*
  19.  * PCI address allocation 
  20.  */
  21. #define GT_PCI_MEM_BASE    (0x22000000)
  22. #define GT_PCI_MEM_SIZE    GT_DEF_PCI0_MEM0_SIZE
  23. #define GT_PCI_IO_BASE     (0x20000000)
  24. #define GT_PCI_IO_SIZE     GT_DEF_PCI0_IO_SIZE
  25. extern unsigned long gt64120_base;
  26. #define GT64120_BASE       (gt64120_base)
  27. /*
  28.  * Because of an error/peculiarity in the Galileo chip, we need to swap the
  29.  * bytes when running bigendian.
  30.  */
  31. #define GT_WRITE(ofs, data)  
  32.         *(volatile u32 *)(GT64120_BASE+ofs) = cpu_to_le32(data)
  33. #define GT_READ(ofs, data)   
  34.         *data = le32_to_cpu(*(volatile u32 *)(GT64120_BASE+ofs))
  35. /*
  36.  * gt timer irq
  37.  */
  38. #define TIMER 6
  39. #endif  /* _ASM_GT64120_MOMENCO_OCELOT_GT64120_DEP_H */