Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/*
2 * include/asm-ppc/serial.h
3 */
4
5#ifdef __KERNEL__
6#ifndef __ASM_SERIAL_H__
7#define __ASM_SERIAL_H__
8
9
10#if defined(CONFIG_EV64260)
11#include <platforms/ev64260.h>
12#elif defined(CONFIG_CHESTNUT)
13#include <platforms/chestnut.h>
14#elif defined(CONFIG_GEMINI)
15#include <platforms/gemini_serial.h>
16#elif defined(CONFIG_POWERPMC250)
17#include <platforms/powerpmc250.h>
18#elif defined(CONFIG_LOPEC)
19#include <platforms/lopec.h>
20#elif defined(CONFIG_MVME5100)
21#include <platforms/mvme5100.h>
22#elif defined(CONFIG_PAL4)
23#include <platforms/pal4_serial.h>
24#elif defined(CONFIG_PRPMC750)
25#include <platforms/prpmc750.h>
26#elif defined(CONFIG_PRPMC800)
27#include <platforms/prpmc800.h>
28#elif defined(CONFIG_SANDPOINT)
29#include <platforms/sandpoint.h>
30#elif defined(CONFIG_SPRUCE)
31#include <platforms/spruce.h>
32#elif defined(CONFIG_4xx)
33#include <asm/ibm4xx.h>
34#elif defined(CONFIG_83xx)
35#include <asm/mpc83xx.h>
36#elif defined(CONFIG_85xx)
37#include <asm/mpc85xx.h>
38#elif defined(CONFIG_RADSTONE_PPC7D)
39#include <platforms/radstone_ppc7d.h>
40#else
41
42/*
43 * XXX Assume it has PC-style ISA serial ports - true for PReP at least.
44 */
45#include <asm/pc_serial.h>
46
47#endif /* !CONFIG_GEMINI and others */
48#endif /* __ASM_SERIAL_H__ */
49#endif /* __KERNEL__ */