blob: 41febc796b1c7e1564684eccc910516568fb54ad [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/mach-footbridge/common.c
3 *
4 * Copyright (C) 1998-2000 Russell King, Dave Gilbert.
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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/module.h>
11#include <linux/types.h>
12#include <linux/mm.h>
13#include <linux/ioport.h>
14#include <linux/list.h>
15#include <linux/init.h>
Russell Kingfced80c2008-09-06 12:10:45 +010016#include <linux/io.h>
Russell King70d13e02008-12-06 08:25:16 +000017#include <linux/spinlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#include <asm/pgtable.h>
20#include <asm/page.h>
21#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/mach-types.h>
23#include <asm/setup.h>
24#include <asm/hardware/dec21285.h>
25
26#include <asm/mach/irq.h>
27#include <asm/mach/map.h>
28
29#include "common.h"
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031unsigned int mem_fclk_21285 = 50000000;
32
33EXPORT_SYMBOL(mem_fclk_21285);
34
Russell King613e09b2008-12-30 16:24:17 +000035static void __init early_fclk(char **arg)
36{
37 mem_fclk_21285 = simple_strtoul(*arg, arg, 0);
38}
39
40__early_param("mem_fclk_21285=", early_fclk);
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042static int __init parse_tag_memclk(const struct tag *tag)
43{
44 mem_fclk_21285 = tag->u.memclk.fmemclk;
45 return 0;
46}
47
48__tagtable(ATAG_MEMCLK, parse_tag_memclk);
49
50/*
51 * Footbridge IRQ translation table
52 * Converts from our IRQ numbers into FootBridge masks
53 */
54static const int fb_irq_mask[] = {
55 IRQ_MASK_UART_RX, /* 0 */
56 IRQ_MASK_UART_TX, /* 1 */
57 IRQ_MASK_TIMER1, /* 2 */
58 IRQ_MASK_TIMER2, /* 3 */
59 IRQ_MASK_TIMER3, /* 4 */
60 IRQ_MASK_IN0, /* 5 */
61 IRQ_MASK_IN1, /* 6 */
62 IRQ_MASK_IN2, /* 7 */
63 IRQ_MASK_IN3, /* 8 */
64 IRQ_MASK_DOORBELLHOST, /* 9 */
65 IRQ_MASK_DMA1, /* 10 */
66 IRQ_MASK_DMA2, /* 11 */
67 IRQ_MASK_PCI, /* 12 */
68 IRQ_MASK_SDRAMPARITY, /* 13 */
69 IRQ_MASK_I2OINPOST, /* 14 */
70 IRQ_MASK_PCI_ABORT, /* 15 */
71 IRQ_MASK_PCI_SERR, /* 16 */
72 IRQ_MASK_DISCARD_TIMER, /* 17 */
73 IRQ_MASK_PCI_DPERR, /* 18 */
74 IRQ_MASK_PCI_PERR, /* 19 */
75};
76
77static void fb_mask_irq(unsigned int irq)
78{
79 *CSR_IRQ_DISABLE = fb_irq_mask[_DC21285_INR(irq)];
80}
81
82static void fb_unmask_irq(unsigned int irq)
83{
84 *CSR_IRQ_ENABLE = fb_irq_mask[_DC21285_INR(irq)];
85}
86
Russell King10dd5ce2006-11-23 11:41:32 +000087static struct irq_chip fb_chip = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 .ack = fb_mask_irq,
89 .mask = fb_mask_irq,
90 .unmask = fb_unmask_irq,
91};
92
93static void __init __fb_init_irq(void)
94{
95 unsigned int irq;
96
97 /*
98 * setup DC21285 IRQs
99 */
100 *CSR_IRQ_DISABLE = -1;
101 *CSR_FIQ_DISABLE = -1;
102
103 for (irq = _DC21285_IRQ(0); irq < _DC21285_IRQ(20); irq++) {
104 set_irq_chip(irq, &fb_chip);
Russell King10dd5ce2006-11-23 11:41:32 +0000105 set_irq_handler(irq, handle_level_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
107 }
108}
109
110void __init footbridge_init_irq(void)
111{
112 __fb_init_irq();
113
114 if (!footbridge_cfn_mode())
115 return;
116
117 if (machine_is_ebsa285())
118 /* The following is dependent on which slot
119 * you plug the Southbridge card into. We
120 * currently assume that you plug it into
121 * the right-hand most slot.
122 */
123 isa_init_irq(IRQ_PCI);
124
125 if (machine_is_cats())
126 isa_init_irq(IRQ_IN2);
127
128 if (machine_is_netwinder())
129 isa_init_irq(IRQ_IN3);
130}
131
132/*
133 * Common mapping for all systems. Note that the outbound write flush is
134 * commented out since there is a "No Fix" problem with it. Not mapping
135 * it means that we have extra bullet protection on our feet.
136 */
137static struct map_desc fb_common_io_desc[] __initdata = {
Deepak Saxenaa427cee2005-10-28 15:19:08 +0100138 {
139 .virtual = ARMCSR_BASE,
Russell King865052f2005-11-13 09:53:34 +0000140 .pfn = __phys_to_pfn(DC21285_ARMCSR_BASE),
Deepak Saxenaa427cee2005-10-28 15:19:08 +0100141 .length = ARMCSR_SIZE,
Russell King64601772005-11-12 16:49:37 +0000142 .type = MT_DEVICE,
Deepak Saxenaa427cee2005-10-28 15:19:08 +0100143 }, {
144 .virtual = XBUS_BASE,
145 .pfn = __phys_to_pfn(0x40000000),
146 .length = XBUS_SIZE,
Russell King64601772005-11-12 16:49:37 +0000147 .type = MT_DEVICE,
Deepak Saxenaa427cee2005-10-28 15:19:08 +0100148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149};
150
151/*
152 * The mapping when the footbridge is in host mode. We don't map any of
153 * this when we are in add-in mode.
154 */
155static struct map_desc ebsa285_host_io_desc[] __initdata = {
156#if defined(CONFIG_ARCH_FOOTBRIDGE) && defined(CONFIG_FOOTBRIDGE_HOST)
Deepak Saxenaa427cee2005-10-28 15:19:08 +0100157 {
158 .virtual = PCIMEM_BASE,
159 .pfn = __phys_to_pfn(DC21285_PCI_MEM),
160 .length = PCIMEM_SIZE,
Russell King64601772005-11-12 16:49:37 +0000161 .type = MT_DEVICE,
Deepak Saxenaa427cee2005-10-28 15:19:08 +0100162 }, {
163 .virtual = PCICFG0_BASE,
164 .pfn = __phys_to_pfn(DC21285_PCI_TYPE_0_CONFIG),
165 .length = PCICFG0_SIZE,
Russell King64601772005-11-12 16:49:37 +0000166 .type = MT_DEVICE,
Deepak Saxenaa427cee2005-10-28 15:19:08 +0100167 }, {
168 .virtual = PCICFG1_BASE,
169 .pfn = __phys_to_pfn(DC21285_PCI_TYPE_1_CONFIG),
170 .length = PCICFG1_SIZE,
Russell King64601772005-11-12 16:49:37 +0000171 .type = MT_DEVICE,
Deepak Saxenaa427cee2005-10-28 15:19:08 +0100172 }, {
173 .virtual = PCIIACK_BASE,
174 .pfn = __phys_to_pfn(DC21285_PCI_IACK),
175 .length = PCIIACK_SIZE,
Russell King64601772005-11-12 16:49:37 +0000176 .type = MT_DEVICE,
Deepak Saxenaa427cee2005-10-28 15:19:08 +0100177 }, {
178 .virtual = PCIO_BASE,
179 .pfn = __phys_to_pfn(DC21285_PCI_IO),
180 .length = PCIO_SIZE,
Russell King64601772005-11-12 16:49:37 +0000181 .type = MT_DEVICE,
182 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183#endif
184};
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186void __init footbridge_map_io(void)
187{
188 /*
189 * Set up the common mapping first; we need this to
190 * determine whether we're in host mode or not.
191 */
192 iotable_init(fb_common_io_desc, ARRAY_SIZE(fb_common_io_desc));
193
194 /*
195 * Now, work out what we've got to map in addition on this
196 * platform.
197 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 if (footbridge_cfn_mode())
199 iotable_init(ebsa285_host_io_desc, ARRAY_SIZE(ebsa285_host_io_desc));
200}
201
202#ifdef CONFIG_FOOTBRIDGE_ADDIN
203
Russell Kingc7baab52009-12-12 14:53:08 +0000204static inline unsigned long fb_bus_sdram_offset(void)
205{
206 return *CSR_PCISDRAMBASE & 0xfffffff0;
207}
208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209/*
210 * These two functions convert virtual addresses to PCI addresses and PCI
211 * addresses to virtual addresses. Note that it is only legal to use these
212 * on memory obtained via get_zeroed_page or kmalloc.
213 */
214unsigned long __virt_to_bus(unsigned long res)
215{
216 WARN_ON(res < PAGE_OFFSET || res >= (unsigned long)high_memory);
217
Russell Kingc7baab52009-12-12 14:53:08 +0000218 return res + (fb_bus_sdram_offset() - PAGE_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220EXPORT_SYMBOL(__virt_to_bus);
221
222unsigned long __bus_to_virt(unsigned long res)
223{
Russell Kingc7baab52009-12-12 14:53:08 +0000224 res = res - (fb_bus_sdram_offset() - PAGE_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 WARN_ON(res < PAGE_OFFSET || res >= (unsigned long)high_memory);
227
228 return res;
229}
230EXPORT_SYMBOL(__bus_to_virt);
231
Russell Kingc7baab52009-12-12 14:53:08 +0000232unsigned long __pfn_to_bus(unsigned long pfn)
233{
234 return __pfn_to_phys(pfn) + (fb_bus_sdram_offset() - PHYS_OFFSET));
235}
236EXPORT_SYMBOL(__pfn_to_bus);
237
238unsigned long __bus_to_pfn(unsigned long bus)
239{
240 return __phys_to_pfn(bus - (fb_bus_sdram_offset() - PHYS_OFFSET));
241}
242EXPORT_SYMBOL(__bus_to_pfn);
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244#endif