Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
mpc8xx.h
Package: linux-2.4.20.tar.gz [view]
Upload User: jlfgdled
Upload Date: 2013-04-10
Package Size: 33168k
Code Size: 2k
Category:
Linux-Unix program
Development Platform:
Unix_Linux
- /*
- * BK Id: %F% %I% %G% %U% %#%
- */
- /* This is the single file included by all MPC8xx build options.
- * Since there are many different boards and no standard configuration,
- * we have a unique include file for each. Rather than change every
- * file that has to include MPC8xx configuration, they all include
- * this one and the configuration switching is done here.
- */
- #ifdef __KERNEL__
- #ifndef __CONFIG_8xx_DEFS
- #define __CONFIG_8xx_DEFS
- #include <linux/config.h>
- #ifdef CONFIG_8xx
- #ifdef CONFIG_MBX
- #include <platforms/mbx.h>
- #endif
- #ifdef CONFIG_FADS
- #include <platforms/fads.h>
- #endif
- #ifdef CONFIG_RPXLITE
- #include <platforms/rpxlite.h>
- #endif
- #ifdef CONFIG_BSEIP
- #include <platforms/bseip.h>
- #endif
- #ifdef CONFIG_RPXCLASSIC
- #include <platforms/rpxclassic.h>
- #endif
- #if defined(CONFIG_TQM8xxL)
- #include <platforms/tqm8xx.h>
- #endif
- #if defined(CONFIG_SPD823TS)
- #include <platforms/spd8xx.h>
- #endif
- #if defined(CONFIG_IVMS8) || defined(CONFIG_IVML24)
- #include <platforms/ivms8.h>
- #endif
- /* Currently, all 8xx boards that support a processor to PCI/ISA bridge
- * use the same memory map.
- */
- #if 0
- #if defined(CONFIG_PCI) && defined(PCI_ISA_IO_ADDR)
- #define _IO_BASE PCI_ISA_IO_ADDR
- #define _ISA_MEM_BASE PCI_ISA_MEM_ADDR
- #define PCI_DRAM_OFFSET 0x80000000
- #else
- #define _IO_BASE 0
- #define _ISA_MEM_BASE 0
- #define PCI_DRAM_OFFSET 0
- #endif
- #else
- #if !defined(_IO_BASE) /* defined in board specific header */
- #define _IO_BASE 0
- #endif
- #define _ISA_MEM_BASE 0
- #define PCI_DRAM_OFFSET 0
- #endif
- #ifndef __ASSEMBLY__
- extern unsigned long isa_io_base;
- extern unsigned long isa_mem_base;
- extern unsigned long pci_dram_offset;
- /* The "residual" data board information structure the boot loader
- * hands to us.
- */
- extern unsigned char __res[];
- struct pt_regs;
- extern int request_8xxirq(unsigned int irq,
- void (*handler)(int, void *, struct pt_regs *),
- unsigned long flags,
- const char *device,
- void *dev_id);
- #endif /* !__ASSEMBLY__ */
- #endif /* CONFIG_8xx */
- #endif /* __CONFIG_8xx_DEFS */
- #endif /* __KERNEL__ */