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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: %F% %I% %G% %U% %#%
  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 <platforms/mbx.h>
  17. #endif
  18. #ifdef CONFIG_FADS
  19. #include <platforms/fads.h>
  20. #endif
  21. #ifdef CONFIG_RPXLITE
  22. #include <platforms/rpxlite.h>
  23. #endif
  24. #ifdef CONFIG_BSEIP
  25. #include <platforms/bseip.h>
  26. #endif
  27. #ifdef CONFIG_RPXCLASSIC
  28. #include <platforms/rpxclassic.h>
  29. #endif
  30. #if defined(CONFIG_TQM8xxL)
  31. #include <platforms/tqm8xx.h>
  32. #endif
  33. #if defined(CONFIG_SPD823TS)
  34. #include <platforms/spd8xx.h>
  35. #endif
  36. #if defined(CONFIG_IVMS8) || defined(CONFIG_IVML24)
  37. #include <platforms/ivms8.h>
  38. #endif
  39. /* Currently, all 8xx boards that support a processor to PCI/ISA bridge
  40.  * use the same memory map.
  41.  */
  42. #if 0
  43. #if defined(CONFIG_PCI) && defined(PCI_ISA_IO_ADDR)
  44. #define _IO_BASE PCI_ISA_IO_ADDR
  45. #define _ISA_MEM_BASE PCI_ISA_MEM_ADDR
  46. #define PCI_DRAM_OFFSET 0x80000000
  47. #else
  48. #define _IO_BASE        0
  49. #define _ISA_MEM_BASE   0
  50. #define PCI_DRAM_OFFSET 0
  51. #endif
  52. #else
  53. #if !defined(_IO_BASE)  /* defined in board specific header */
  54. #define _IO_BASE        0
  55. #endif
  56. #define _ISA_MEM_BASE   0
  57. #define PCI_DRAM_OFFSET 0
  58. #endif
  59. #ifndef __ASSEMBLY__
  60. extern unsigned long isa_io_base;
  61. extern unsigned long isa_mem_base;
  62. extern unsigned long pci_dram_offset;
  63. /* The "residual" data board information structure the boot loader
  64.  * hands to us.
  65.  */
  66. extern unsigned char __res[];
  67. struct pt_regs;
  68. extern int request_8xxirq(unsigned int irq,
  69.        void (*handler)(int, void *, struct pt_regs *),
  70.        unsigned long flags, 
  71.        const char *device,
  72.        void *dev_id);
  73. #endif /* !__ASSEMBLY__ */
  74. #endif /* CONFIG_8xx */
  75. #endif /* __CONFIG_8xx_DEFS */
  76. #endif /* __KERNEL__ */