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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.oak.h 1.12 10/11/01 13:05:07 trini
  3.  */
  4. /*
  5.  *
  6.  *    Copyright (c) 1999 Grant Erickson <grant@lcse.umn.edu>
  7.  *
  8.  *    Module name: oak.h
  9.  *
  10.  *    Description:
  11.  * Macros, definitions, and data structures specific to the IBM PowerPC
  12.  *      403G{A,B,C,CX} "Oak" evaluation board. Anything specific to the pro-
  13.  *      cessor itself is defined elsewhere.
  14.  *
  15.  */
  16. #ifdef __KERNEL__
  17. #ifndef __OAK_H__
  18. #define __OAK_H__
  19. #define _IO_BASE 0
  20. #define _ISA_MEM_BASE 0
  21. #define PCI_DRAM_OFFSET 0
  22. /* Memory map for the "Oak" evaluation board */
  23. #define PPC403SPU_IO_BASE       0x40000000 /* 403 On-chip serial port */
  24. #define PPC403SPU_IO_SIZE       0x00000008
  25. #define OAKSERIAL_IO_BASE 0x7E000000 /* NS16550DV serial port */
  26. #define OAKSERIAL_IO_SIZE 0x00000008
  27. #define OAKNET_IO_BASE 0xF4000000 /* NS83902AV Ethernet */
  28. #define OAKNET_IO_SIZE 0x00000040
  29. #define OAKPROM_IO_BASE 0xFFFE0000 /* AMD 29F010 Flash ROM */
  30. #define OAKPROM_IO_SIZE 0x00020000
  31. /* Interrupt assignments fixed by the hardware implementation */
  32. /* This is annoying kbuild-2.4 problem. -- Tom */
  33. #define PPC403SPU_RX_INT 4 /* AIC_INT4 */
  34. #define PPC403SPU_TX_INT 5 /* AIC_INT5 */
  35. #define OAKNET_INT 27 /* AIC_INT27 */
  36. #define OAKSERIAL_INT 28 /* AIC_INT28 */
  37. #ifndef __ASSEMBLY__
  38. /*
  39.  * Data structure defining board information maintained by the boot
  40.  * ROM on IBM's "Oak" evaluation board. An effort has been made to
  41.  * keep the field names consistent with the 8xx 'bd_t' board info
  42.  * structures.
  43.  */
  44. typedef struct board_info {
  45. unsigned char  bi_s_version[4]; /* Version of this structure */
  46. unsigned char  bi_r_version[30]; /* Version of the IBM ROM */
  47. unsigned int  bi_memsize; /* DRAM installed, in bytes */
  48. unsigned char  bi_enetaddr[6]; /* Ethernet MAC address */
  49. unsigned int  bi_intfreq; /* Processor speed, in Hz */
  50. unsigned int  bi_busfreq; /* Bus speed, in Hz */
  51. } bd_t;
  52. #endif /* !__ASSEMBLY__ */
  53. #endif /* __OAK_H__ */
  54. #endif /* __KERNEL__ */