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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.mpc8xx.h 1.15 11/01/01 12:48:53 trini
  3.  */
  4. /* This is the single file included by all MPC8xx build options.
  5.  * Since there are many different boards and no standard configuration,
  6.  * we have a unique include file for each.  Rather than change every
  7.  * file that has to include MPC8xx configuration, they all include
  8.  * this one and the configuration switching is done here.
  9.  */
  10. #ifdef __KERNEL__
  11. #ifndef __CONFIG_8xx_DEFS
  12. #define __CONFIG_8xx_DEFS
  13. #include <linux/config.h>
  14. #ifdef CONFIG_8xx
  15. #ifdef CONFIG_MBX
  16. #include <asm/mbx.h>
  17. #endif
  18. #ifdef CONFIG_FADS
  19. #include <asm/fads.h>
  20. #endif
  21. #ifdef CONFIG_RPXLITE
  22. #include <asm/rpxlite.h>
  23. #endif
  24. #ifdef CONFIG_BSEIP
  25. #include <asm/bseip.h>
  26. #endif
  27. #ifdef CONFIG_RPXCLASSIC
  28. #include <asm/rpxclassic.h>
  29. #endif
  30. #if defined(CONFIG_TQM8xxL)
  31. #include <asm/tqm8xx.h>
  32. #endif
  33. #if defined(CONFIG_SPD823TS)
  34. #include <asm/spd8xx.h>
  35. #endif
  36. #if defined(CONFIG_IVMS8) || defined(CONFIG_IVML24)
  37. #include <asm/ivms8.h>
  38. #endif
  39. /* I need this to get pt_regs.......
  40. */
  41. #include <asm/ptrace.h>
  42. /* Currently, all 8xx boards that support a processor to PCI/ISA bridge
  43.  * use the same memory map.
  44.  */
  45. #if 0
  46. #if defined(CONFIG_PCI) && defined(PCI_ISA_IO_ADDR)
  47. #define _IO_BASE PCI_ISA_IO_ADDR
  48. #define _ISA_MEM_BASE PCI_ISA_MEM_ADDR
  49. #define PCI_DRAM_OFFSET 0x80000000
  50. #else
  51. #define _IO_BASE        0
  52. #define _ISA_MEM_BASE   0
  53. #define PCI_DRAM_OFFSET 0
  54. #endif
  55. #else
  56. #if !defined(_IO_BASE)  /* defined in board specific header */
  57. #define _IO_BASE        0
  58. #endif
  59. #define _ISA_MEM_BASE   0
  60. #define PCI_DRAM_OFFSET 0
  61. #endif
  62. #ifndef __ASSEMBLY__
  63. extern unsigned long isa_io_base;
  64. extern unsigned long isa_mem_base;
  65. extern unsigned long pci_dram_offset;
  66. /* The "residual" data board information structure the boot loader
  67.  * hands to us.
  68.  */
  69. extern unsigned char __res[];
  70. extern int request_8xxirq(unsigned int irq,
  71.        void (*handler)(int, void *, struct pt_regs *),
  72.        unsigned long flags, 
  73.        const char *device,
  74.        void *dev_id);
  75. #endif /* !__ASSEMBLY__ */
  76. #endif /* CONFIG_8xx */
  77. #endif
  78. #endif /* __KERNEL__ */