diff options
author | Tony Lindgren <tony@atomide.com> | 2012-10-15 15:50:46 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2012-10-24 16:34:31 -0400 |
commit | 3d82cbbb3aadb4f8a30e3f614e51be96574a0855 (patch) | |
tree | 6f510bda0fb3c08d959100928ca2fb783c61739a /arch/arm/mach-omap1/include | |
parent | ede8df1eaa19f96ee8520077885856eb63acb44b (diff) |
ARM: OMAP: Split plat/serial.h for omap1 and omap2+
For omap1, we'll keep mach/serial.h around for 8250.c hardware
workarounds. For omap2+, we no longer need mach/serial.h and
can make it local to mach-omap2.
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap1/include')
-rw-r--r-- | arch/arm/mach-omap1/include/mach/debug-macro.S | 2 | ||||
-rw-r--r-- | arch/arm/mach-omap1/include/mach/hardware.h | 2 | ||||
-rw-r--r-- | arch/arm/mach-omap1/include/mach/serial.h | 53 | ||||
-rw-r--r-- | arch/arm/mach-omap1/include/mach/uncompress.h | 2 |
4 files changed, 56 insertions, 3 deletions
diff --git a/arch/arm/mach-omap1/include/mach/debug-macro.S b/arch/arm/mach-omap1/include/mach/debug-macro.S index 2b36a281dc84..5c1a26c9f490 100644 --- a/arch/arm/mach-omap1/include/mach/debug-macro.S +++ b/arch/arm/mach-omap1/include/mach/debug-macro.S | |||
@@ -13,7 +13,7 @@ | |||
13 | 13 | ||
14 | #include <linux/serial_reg.h> | 14 | #include <linux/serial_reg.h> |
15 | 15 | ||
16 | #include <plat/serial.h> | 16 | #include "serial.h" |
17 | 17 | ||
18 | .pushsection .data | 18 | .pushsection .data |
19 | omap_uart_phys: .word 0x0 | 19 | omap_uart_phys: .word 0x0 |
diff --git a/arch/arm/mach-omap1/include/mach/hardware.h b/arch/arm/mach-omap1/include/mach/hardware.h index f9989d38c464..dc3237bd72d2 100644 --- a/arch/arm/mach-omap1/include/mach/hardware.h +++ b/arch/arm/mach-omap1/include/mach/hardware.h | |||
@@ -72,7 +72,7 @@ static inline u32 omap_cs3_phys(void) | |||
72 | 72 | ||
73 | #endif /* ifndef __ASSEMBLER__ */ | 73 | #endif /* ifndef __ASSEMBLER__ */ |
74 | 74 | ||
75 | #include <plat/serial.h> | 75 | #include <mach/serial.h> |
76 | 76 | ||
77 | /* | 77 | /* |
78 | * --------------------------------------------------------------------------- | 78 | * --------------------------------------------------------------------------- |
diff --git a/arch/arm/mach-omap1/include/mach/serial.h b/arch/arm/mach-omap1/include/mach/serial.h new file mode 100644 index 000000000000..2ce6a2db470b --- /dev/null +++ b/arch/arm/mach-omap1/include/mach/serial.h | |||
@@ -0,0 +1,53 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2009 Texas Instruments | ||
3 | * Added OMAP4 support- Santosh Shilimkar <santosh.shilimkar@ti.com> | ||
4 | * | ||
5 | * This program is distributed in the hope that it will be useful, | ||
6 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
7 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
8 | * GNU General Public License for more details. | ||
9 | */ | ||
10 | |||
11 | #ifndef __ASM_ARCH_SERIAL_H | ||
12 | #define __ASM_ARCH_SERIAL_H | ||
13 | |||
14 | #include <linux/init.h> | ||
15 | |||
16 | /* | ||
17 | * Memory entry used for the DEBUG_LL UART configuration, relative to | ||
18 | * start of RAM. See also uncompress.h and debug-macro.S. | ||
19 | * | ||
20 | * Note that using a memory location for storing the UART configuration | ||
21 | * has at least two limitations: | ||
22 | * | ||
23 | * 1. Kernel uncompress code cannot overlap OMAP_UART_INFO as the | ||
24 | * uncompress code could then partially overwrite itself | ||
25 | * 2. We assume printascii is called at least once before paging_init, | ||
26 | * and addruart has a chance to read OMAP_UART_INFO | ||
27 | */ | ||
28 | #define OMAP_UART_INFO_OFS 0x3ffc | ||
29 | |||
30 | /* OMAP1 serial ports */ | ||
31 | #define OMAP1_UART1_BASE 0xfffb0000 | ||
32 | #define OMAP1_UART2_BASE 0xfffb0800 | ||
33 | #define OMAP1_UART3_BASE 0xfffb9800 | ||
34 | |||
35 | #define OMAP_PORT_SHIFT 2 | ||
36 | #define OMAP7XX_PORT_SHIFT 0 | ||
37 | |||
38 | #define OMAP1510_BASE_BAUD (12000000/16) | ||
39 | #define OMAP16XX_BASE_BAUD (48000000/16) | ||
40 | |||
41 | /* | ||
42 | * DEBUG_LL port encoding stored into the UART1 scratchpad register by | ||
43 | * decomp_setup in uncompress.h | ||
44 | */ | ||
45 | #define OMAP1UART1 11 | ||
46 | #define OMAP1UART2 12 | ||
47 | #define OMAP1UART3 13 | ||
48 | |||
49 | #ifndef __ASSEMBLER__ | ||
50 | extern void omap_serial_init(void); | ||
51 | #endif | ||
52 | |||
53 | #endif | ||
diff --git a/arch/arm/mach-omap1/include/mach/uncompress.h b/arch/arm/mach-omap1/include/mach/uncompress.h index e9eb83468622..ad6fbe7d83f2 100644 --- a/arch/arm/mach-omap1/include/mach/uncompress.h +++ b/arch/arm/mach-omap1/include/mach/uncompress.h | |||
@@ -23,7 +23,7 @@ | |||
23 | #include <asm/memory.h> | 23 | #include <asm/memory.h> |
24 | #include <asm/mach-types.h> | 24 | #include <asm/mach-types.h> |
25 | 25 | ||
26 | #include <plat/serial.h> | 26 | #include "serial.h" |
27 | 27 | ||
28 | #define MDR1_MODE_MASK 0x07 | 28 | #define MDR1_MODE_MASK 0x07 |
29 | 29 | ||