blob: 95d0b6e6438b088ba3098210152737508a2f6b5a [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>
Russell Kingd877bdf2013-11-28 21:55:41 +000018#include <video/vga.h>
Rob Herring8ef6e622012-03-01 20:48:12 -060019
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/pgtable.h>
21#include <asm/page.h>
22#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/mach-types.h>
24#include <asm/setup.h>
David Howells9f97da72012-03-28 18:30:01 +010025#include <asm/system_misc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <asm/hardware/dec21285.h>
27
28#include <asm/mach/irq.h>
29#include <asm/mach/map.h>
Rob Herring8ef6e622012-03-01 20:48:12 -060030#include <asm/mach/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#include "common.h"
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034unsigned int mem_fclk_21285 = 50000000;
35
36EXPORT_SYMBOL(mem_fclk_21285);
37
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +010038static int __init early_fclk(char *arg)
Russell King613e09b2008-12-30 16:24:17 +000039{
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +010040 mem_fclk_21285 = simple_strtoul(arg, NULL, 0);
41 return 0;
Russell King613e09b2008-12-30 16:24:17 +000042}
43
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +010044early_param("mem_fclk_21285", early_fclk);
Russell King613e09b2008-12-30 16:24:17 +000045
Linus Torvalds1da177e2005-04-16 15:20:36 -070046static int __init parse_tag_memclk(const struct tag *tag)
47{
48 mem_fclk_21285 = tag->u.memclk.fmemclk;
49 return 0;
50}
51
52__tagtable(ATAG_MEMCLK, parse_tag_memclk);
53
54/*
55 * Footbridge IRQ translation table
56 * Converts from our IRQ numbers into FootBridge masks
57 */
58static const int fb_irq_mask[] = {
59 IRQ_MASK_UART_RX, /* 0 */
60 IRQ_MASK_UART_TX, /* 1 */
61 IRQ_MASK_TIMER1, /* 2 */
62 IRQ_MASK_TIMER2, /* 3 */
63 IRQ_MASK_TIMER3, /* 4 */
64 IRQ_MASK_IN0, /* 5 */
65 IRQ_MASK_IN1, /* 6 */
66 IRQ_MASK_IN2, /* 7 */
67 IRQ_MASK_IN3, /* 8 */
68 IRQ_MASK_DOORBELLHOST, /* 9 */
69 IRQ_MASK_DMA1, /* 10 */
70 IRQ_MASK_DMA2, /* 11 */
71 IRQ_MASK_PCI, /* 12 */
72 IRQ_MASK_SDRAMPARITY, /* 13 */
73 IRQ_MASK_I2OINPOST, /* 14 */
74 IRQ_MASK_PCI_ABORT, /* 15 */
75 IRQ_MASK_PCI_SERR, /* 16 */
76 IRQ_MASK_DISCARD_TIMER, /* 17 */
77 IRQ_MASK_PCI_DPERR, /* 18 */
78 IRQ_MASK_PCI_PERR, /* 19 */
79};
80
Lennert Buytenhekdc2caf62010-11-29 10:30:13 +010081static void fb_mask_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
Lennert Buytenhekdc2caf62010-11-29 10:30:13 +010083 *CSR_IRQ_DISABLE = fb_irq_mask[_DC21285_INR(d->irq)];
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
85
Lennert Buytenhekdc2caf62010-11-29 10:30:13 +010086static void fb_unmask_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
Lennert Buytenhekdc2caf62010-11-29 10:30:13 +010088 *CSR_IRQ_ENABLE = fb_irq_mask[_DC21285_INR(d->irq)];
Linus Torvalds1da177e2005-04-16 15:20:36 -070089}
90
Russell King10dd5ce2006-11-23 11:41:32 +000091static struct irq_chip fb_chip = {
Lennert Buytenhekdc2caf62010-11-29 10:30:13 +010092 .irq_ack = fb_mask_irq,
93 .irq_mask = fb_mask_irq,
94 .irq_unmask = fb_unmask_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -070095};
96
97static void __init __fb_init_irq(void)
98{
99 unsigned int irq;
100
101 /*
102 * setup DC21285 IRQs
103 */
104 *CSR_IRQ_DISABLE = -1;
105 *CSR_FIQ_DISABLE = -1;
106
107 for (irq = _DC21285_IRQ(0); irq < _DC21285_IRQ(20); irq++) {
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100108 irq_set_chip_and_handler(irq, &fb_chip, handle_level_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
110 }
111}
112
113void __init footbridge_init_irq(void)
114{
115 __fb_init_irq();
116
117 if (!footbridge_cfn_mode())
118 return;
119
120 if (machine_is_ebsa285())
121 /* The following is dependent on which slot
122 * you plug the Southbridge card into. We
123 * currently assume that you plug it into
124 * the right-hand most slot.
125 */
126 isa_init_irq(IRQ_PCI);
127
128 if (machine_is_cats())
129 isa_init_irq(IRQ_IN2);
130
131 if (machine_is_netwinder())
132 isa_init_irq(IRQ_IN3);
133}
134
135/*
136 * Common mapping for all systems. Note that the outbound write flush is
137 * commented out since there is a "No Fix" problem with it. Not mapping
138 * it means that we have extra bullet protection on our feet.
139 */
140static struct map_desc fb_common_io_desc[] __initdata = {
Deepak Saxenaa427cee2005-10-28 15:19:08 +0100141 {
142 .virtual = ARMCSR_BASE,
Russell King865052f2005-11-13 09:53:34 +0000143 .pfn = __phys_to_pfn(DC21285_ARMCSR_BASE),
Deepak Saxenaa427cee2005-10-28 15:19:08 +0100144 .length = ARMCSR_SIZE,
Russell King64601772005-11-12 16:49:37 +0000145 .type = MT_DEVICE,
Deepak Saxenaa427cee2005-10-28 15:19:08 +0100146 }, {
147 .virtual = XBUS_BASE,
148 .pfn = __phys_to_pfn(0x40000000),
149 .length = XBUS_SIZE,
Russell King64601772005-11-12 16:49:37 +0000150 .type = MT_DEVICE,
Deepak Saxenaa427cee2005-10-28 15:19:08 +0100151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152};
153
154/*
155 * The mapping when the footbridge is in host mode. We don't map any of
156 * this when we are in add-in mode.
157 */
158static struct map_desc ebsa285_host_io_desc[] __initdata = {
159#if defined(CONFIG_ARCH_FOOTBRIDGE) && defined(CONFIG_FOOTBRIDGE_HOST)
Deepak Saxenaa427cee2005-10-28 15:19:08 +0100160 {
161 .virtual = PCIMEM_BASE,
162 .pfn = __phys_to_pfn(DC21285_PCI_MEM),
163 .length = PCIMEM_SIZE,
Russell King64601772005-11-12 16:49:37 +0000164 .type = MT_DEVICE,
Deepak Saxenaa427cee2005-10-28 15:19:08 +0100165 }, {
166 .virtual = PCICFG0_BASE,
167 .pfn = __phys_to_pfn(DC21285_PCI_TYPE_0_CONFIG),
168 .length = PCICFG0_SIZE,
Russell King64601772005-11-12 16:49:37 +0000169 .type = MT_DEVICE,
Deepak Saxenaa427cee2005-10-28 15:19:08 +0100170 }, {
171 .virtual = PCICFG1_BASE,
172 .pfn = __phys_to_pfn(DC21285_PCI_TYPE_1_CONFIG),
173 .length = PCICFG1_SIZE,
Russell King64601772005-11-12 16:49:37 +0000174 .type = MT_DEVICE,
Deepak Saxenaa427cee2005-10-28 15:19:08 +0100175 }, {
176 .virtual = PCIIACK_BASE,
177 .pfn = __phys_to_pfn(DC21285_PCI_IACK),
178 .length = PCIIACK_SIZE,
Russell King64601772005-11-12 16:49:37 +0000179 .type = MT_DEVICE,
Russell King64601772005-11-12 16:49:37 +0000180 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181#endif
182};
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184void __init footbridge_map_io(void)
185{
186 /*
187 * Set up the common mapping first; we need this to
188 * determine whether we're in host mode or not.
189 */
190 iotable_init(fb_common_io_desc, ARRAY_SIZE(fb_common_io_desc));
191
192 /*
193 * Now, work out what we've got to map in addition on this
194 * platform.
195 */
Rob Herring8ef6e622012-03-01 20:48:12 -0600196 if (footbridge_cfn_mode()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 iotable_init(ebsa285_host_io_desc, ARRAY_SIZE(ebsa285_host_io_desc));
Rob Herring8ef6e622012-03-01 20:48:12 -0600198 pci_map_io_early(__phys_to_pfn(DC21285_PCI_IO));
199 }
Russell Kingd877bdf2013-11-28 21:55:41 +0000200
201 vga_base = PCIMEM_BASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202}
203
Russell King6fca1e12011-11-03 19:47:54 +0000204void footbridge_restart(char mode, const char *cmd)
205{
206 if (mode == 's') {
207 /* Jump into the ROM */
208 soft_restart(0x41000000);
209 } else {
210 /*
211 * Force the watchdog to do a CPU reset.
212 *
213 * After making sure that the watchdog is disabled
214 * (so we can change the timer registers) we first
215 * enable the timer to autoreload itself. Next, the
216 * timer interval is set really short and any
217 * current interrupt request is cleared (so we can
218 * see an edge transition). Finally, TIMER4 is
219 * enabled as the watchdog.
220 */
221 *CSR_SA110_CNTL &= ~(1 << 13);
222 *CSR_TIMER4_CNTL = TIMER_CNTL_ENABLE |
223 TIMER_CNTL_AUTORELOAD |
224 TIMER_CNTL_DIV16;
225 *CSR_TIMER4_LOAD = 0x2;
226 *CSR_TIMER4_CLR = 0;
227 *CSR_SA110_CNTL |= (1 << 13);
228 }
229}
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231#ifdef CONFIG_FOOTBRIDGE_ADDIN
232
Russell Kingc7baab52009-12-12 14:53:08 +0000233static inline unsigned long fb_bus_sdram_offset(void)
234{
235 return *CSR_PCISDRAMBASE & 0xfffffff0;
236}
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238/*
239 * These two functions convert virtual addresses to PCI addresses and PCI
240 * addresses to virtual addresses. Note that it is only legal to use these
241 * on memory obtained via get_zeroed_page or kmalloc.
242 */
243unsigned long __virt_to_bus(unsigned long res)
244{
245 WARN_ON(res < PAGE_OFFSET || res >= (unsigned long)high_memory);
246
Russell Kingc7baab52009-12-12 14:53:08 +0000247 return res + (fb_bus_sdram_offset() - PAGE_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
249EXPORT_SYMBOL(__virt_to_bus);
250
251unsigned long __bus_to_virt(unsigned long res)
252{
Russell Kingc7baab52009-12-12 14:53:08 +0000253 res = res - (fb_bus_sdram_offset() - PAGE_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 WARN_ON(res < PAGE_OFFSET || res >= (unsigned long)high_memory);
256
257 return res;
258}
259EXPORT_SYMBOL(__bus_to_virt);
260
Russell Kingc7baab52009-12-12 14:53:08 +0000261unsigned long __pfn_to_bus(unsigned long pfn)
262{
wanzongshun64dd3b72010-07-19 04:06:12 +0100263 return __pfn_to_phys(pfn) + (fb_bus_sdram_offset() - PHYS_OFFSET);
Russell Kingc7baab52009-12-12 14:53:08 +0000264}
265EXPORT_SYMBOL(__pfn_to_bus);
266
267unsigned long __bus_to_pfn(unsigned long bus)
268{
269 return __phys_to_pfn(bus - (fb_bus_sdram_offset() - PHYS_OFFSET));
270}
271EXPORT_SYMBOL(__bus_to_pfn);
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273#endif