xref: /OK3568_Linux_fs/kernel/arch/powerpc/include/asm/mpc8260.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0 */
2*4882a593Smuzhiyun /*
3*4882a593Smuzhiyun  * Since there are many different boards and no standard configuration,
4*4882a593Smuzhiyun  * we have a unique include file for each.  Rather than change every
5*4882a593Smuzhiyun  * file that has to include MPC8260 configuration, they all include
6*4882a593Smuzhiyun  * this one and the configuration switching is done here.
7*4882a593Smuzhiyun  */
8*4882a593Smuzhiyun #ifdef __KERNEL__
9*4882a593Smuzhiyun #ifndef __ASM_POWERPC_MPC8260_H__
10*4882a593Smuzhiyun #define __ASM_POWERPC_MPC8260_H__
11*4882a593Smuzhiyun 
12*4882a593Smuzhiyun #define MPC82XX_BCR_PLDP 0x00800000 /* Pipeline Maximum Depth */
13*4882a593Smuzhiyun 
14*4882a593Smuzhiyun #ifdef CONFIG_8260
15*4882a593Smuzhiyun 
16*4882a593Smuzhiyun #if defined(CONFIG_PQ2ADS) || defined (CONFIG_PQ2FADS)
17*4882a593Smuzhiyun #include <platforms/82xx/pq2ads.h>
18*4882a593Smuzhiyun #endif
19*4882a593Smuzhiyun 
20*4882a593Smuzhiyun #ifdef CONFIG_PCI_8260
21*4882a593Smuzhiyun #include <platforms/82xx/m82xx_pci.h>
22*4882a593Smuzhiyun #endif
23*4882a593Smuzhiyun 
24*4882a593Smuzhiyun #endif /* CONFIG_8260 */
25*4882a593Smuzhiyun #endif /* !__ASM_POWERPC_MPC8260_H__ */
26*4882a593Smuzhiyun #endif /* __KERNEL__ */
27