blob: be3a2a4ee2b8c6d304b9e34187cb40ac25a11a91 [file] [log] [blame]
Tony Lindgrenf577ffd2005-07-10 19:58:12 +01001/*
2 * linux/arch/arm/mach-omap1/io.c
3 *
4 * OMAP1 I/O mapping code
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#include <linux/config.h>
12#include <linux/module.h>
13#include <linux/kernel.h>
14#include <linux/init.h>
15
Tony Lindgren53d9cc72006-02-08 22:06:45 +000016#include <asm/tlb.h>
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010017#include <asm/mach/map.h>
18#include <asm/io.h>
Tony Lindgren3179a012005-11-10 14:26:48 +000019#include <asm/arch/mux.h>
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010020#include <asm/arch/tc.h>
Tony Lindgren120db2c2006-04-02 17:46:27 +010021#include <asm/arch/omapfb.h>
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010022
Tony Lindgren3179a012005-11-10 14:26:48 +000023extern int omap1_clk_init(void);
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010024extern void omap_check_revision(void);
Tony Lindgren7c38cf02005-09-08 23:07:38 +010025extern void omap_sram_init(void);
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010026
27/*
28 * The machine specific code may provide the extra mapping besides the
29 * default mapping provided here.
30 */
31static struct map_desc omap_io_desc[] __initdata = {
Deepak Saxena9fe133b2005-10-28 15:19:00 +010032 {
33 .virtual = IO_VIRT,
34 .pfn = __phys_to_pfn(IO_PHYS),
35 .length = IO_SIZE,
36 .type = MT_DEVICE
37 }
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010038};
39
40#ifdef CONFIG_ARCH_OMAP730
41static struct map_desc omap730_io_desc[] __initdata = {
Deepak Saxena9fe133b2005-10-28 15:19:00 +010042 {
43 .virtual = OMAP730_DSP_BASE,
44 .pfn = __phys_to_pfn(OMAP730_DSP_START),
45 .length = OMAP730_DSP_SIZE,
46 .type = MT_DEVICE
47 }, {
48 .virtual = OMAP730_DSPREG_BASE,
49 .pfn = __phys_to_pfn(OMAP730_DSPREG_START),
50 .length = OMAP730_DSPREG_SIZE,
51 .type = MT_DEVICE
52 }
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010053};
54#endif
55
Tony Lindgren3179a012005-11-10 14:26:48 +000056#ifdef CONFIG_ARCH_OMAP15XX
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010057static struct map_desc omap1510_io_desc[] __initdata = {
Deepak Saxena9fe133b2005-10-28 15:19:00 +010058 {
59 .virtual = OMAP1510_DSP_BASE,
60 .pfn = __phys_to_pfn(OMAP1510_DSP_START),
61 .length = OMAP1510_DSP_SIZE,
62 .type = MT_DEVICE
63 }, {
64 .virtual = OMAP1510_DSPREG_BASE,
65 .pfn = __phys_to_pfn(OMAP1510_DSPREG_START),
66 .length = OMAP1510_DSPREG_SIZE,
67 .type = MT_DEVICE
68 }
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010069};
70#endif
71
72#if defined(CONFIG_ARCH_OMAP16XX)
Tony Lindgren7c38cf02005-09-08 23:07:38 +010073static struct map_desc omap16xx_io_desc[] __initdata = {
Deepak Saxena9fe133b2005-10-28 15:19:00 +010074 {
75 .virtual = OMAP16XX_DSP_BASE,
76 .pfn = __phys_to_pfn(OMAP16XX_DSP_START),
77 .length = OMAP16XX_DSP_SIZE,
78 .type = MT_DEVICE
79 }, {
80 .virtual = OMAP16XX_DSPREG_BASE,
81 .pfn = __phys_to_pfn(OMAP16XX_DSPREG_START),
82 .length = OMAP16XX_DSPREG_SIZE,
83 .type = MT_DEVICE
84 }
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010085};
86#endif
87
Tony Lindgren53d9cc72006-02-08 22:06:45 +000088/*
89 * Maps common IO regions for omap1. This should only get called from
90 * board specific init.
91 */
92void __init omap1_map_common_io(void)
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010093{
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010094 iotable_init(omap_io_desc, ARRAY_SIZE(omap_io_desc));
Tony Lindgren53d9cc72006-02-08 22:06:45 +000095
96 /* Normally devicemaps_init() would flush caches and tlb after
97 * mdesc->map_io(), but we must also do it here because of the CPU
98 * revision check below.
99 */
100 local_flush_tlb_all();
101 flush_cache_all();
102
103 /* We want to check CPU revision early for cpu_is_omapxxxx() macros.
104 * IO space mapping must be initialized before we can do that.
105 */
Tony Lindgrenf577ffd2005-07-10 19:58:12 +0100106 omap_check_revision();
107
108#ifdef CONFIG_ARCH_OMAP730
109 if (cpu_is_omap730()) {
110 iotable_init(omap730_io_desc, ARRAY_SIZE(omap730_io_desc));
111 }
112#endif
Tony Lindgren3179a012005-11-10 14:26:48 +0000113#ifdef CONFIG_ARCH_OMAP15XX
Tony Lindgren120db2c2006-04-02 17:46:27 +0100114 if (cpu_is_omap15xx()) {
Tony Lindgrenf577ffd2005-07-10 19:58:12 +0100115 iotable_init(omap1510_io_desc, ARRAY_SIZE(omap1510_io_desc));
116 }
117#endif
118#if defined(CONFIG_ARCH_OMAP16XX)
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100119 if (cpu_is_omap16xx()) {
120 iotable_init(omap16xx_io_desc, ARRAY_SIZE(omap16xx_io_desc));
Tony Lindgrenf577ffd2005-07-10 19:58:12 +0100121 }
122#endif
123
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100124 omap_sram_init();
Tony Lindgren120db2c2006-04-02 17:46:27 +0100125 omapfb_reserve_mem();
Tony Lindgren53d9cc72006-02-08 22:06:45 +0000126}
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100127
Tony Lindgren53d9cc72006-02-08 22:06:45 +0000128/*
129 * Common low-level hardware init for omap1. This should only get called from
130 * board specific init.
131 */
132void __init omap1_init_common_hw()
133{
Tony Lindgrenf577ffd2005-07-10 19:58:12 +0100134 /* REVISIT: Refer to OMAP5910 Errata, Advisory SYS_1: "Timeout Abort
135 * on a Posted Write in the TIPB Bridge".
136 */
137 omap_writew(0x0, MPU_PUBLIC_TIPB_CNTL);
138 omap_writew(0x0, MPU_PRIVATE_TIPB_CNTL);
139
140 /* Must init clocks early to assure that timer interrupt works
141 */
Tony Lindgren3179a012005-11-10 14:26:48 +0000142 omap1_clk_init();
Tony Lindgrenf577ffd2005-07-10 19:58:12 +0100143
Tony Lindgren53d9cc72006-02-08 22:06:45 +0000144 omap1_mux_init();
Tony Lindgrenf577ffd2005-07-10 19:58:12 +0100145}
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100146