]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - arch/arm/mach-footbridge/common.c
treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500
[mirror_ubuntu-hirsute-kernel.git] / arch / arm / mach-footbridge / common.c
CommitLineData
d2912cb1 1// SPDX-License-Identifier: GPL-2.0-only
1da177e4
LT
2/*
3 * linux/arch/arm/mach-footbridge/common.c
4 *
5 * Copyright (C) 1998-2000 Russell King, Dave Gilbert.
1da177e4 6 */
1da177e4
LT
7#include <linux/module.h>
8#include <linux/types.h>
9#include <linux/mm.h>
10#include <linux/ioport.h>
11#include <linux/list.h>
12#include <linux/init.h>
fced80c7 13#include <linux/io.h>
70d13e08 14#include <linux/spinlock.h>
43659222 15#include <video/vga.h>
8ef6e620 16
1da177e4
LT
17#include <asm/pgtable.h>
18#include <asm/page.h>
19#include <asm/irq.h>
1da177e4
LT
20#include <asm/mach-types.h>
21#include <asm/setup.h>
9f97da78 22#include <asm/system_misc.h>
1da177e4
LT
23#include <asm/hardware/dec21285.h>
24
25#include <asm/mach/irq.h>
26#include <asm/mach/map.h>
8ef6e620 27#include <asm/mach/pci.h>
1da177e4
LT
28
29#include "common.h"
30
1da177e4
LT
31unsigned int mem_fclk_21285 = 50000000;
32
33EXPORT_SYMBOL(mem_fclk_21285);
34
2b0d8c25 35static int __init early_fclk(char *arg)
613e09b4 36{
2b0d8c25
JK
37 mem_fclk_21285 = simple_strtoul(arg, NULL, 0);
38 return 0;
613e09b4
RK
39}
40
2b0d8c25 41early_param("mem_fclk_21285", early_fclk);
613e09b4 42
1da177e4
LT
43static int __init parse_tag_memclk(const struct tag *tag)
44{
45 mem_fclk_21285 = tag->u.memclk.fmemclk;
46 return 0;
47}
48
49__tagtable(ATAG_MEMCLK, parse_tag_memclk);
50
51/*
52 * Footbridge IRQ translation table
53 * Converts from our IRQ numbers into FootBridge masks
54 */
55static const int fb_irq_mask[] = {
56 IRQ_MASK_UART_RX, /* 0 */
57 IRQ_MASK_UART_TX, /* 1 */
58 IRQ_MASK_TIMER1, /* 2 */
59 IRQ_MASK_TIMER2, /* 3 */
60 IRQ_MASK_TIMER3, /* 4 */
61 IRQ_MASK_IN0, /* 5 */
62 IRQ_MASK_IN1, /* 6 */
63 IRQ_MASK_IN2, /* 7 */
64 IRQ_MASK_IN3, /* 8 */
65 IRQ_MASK_DOORBELLHOST, /* 9 */
66 IRQ_MASK_DMA1, /* 10 */
67 IRQ_MASK_DMA2, /* 11 */
68 IRQ_MASK_PCI, /* 12 */
69 IRQ_MASK_SDRAMPARITY, /* 13 */
70 IRQ_MASK_I2OINPOST, /* 14 */
71 IRQ_MASK_PCI_ABORT, /* 15 */
72 IRQ_MASK_PCI_SERR, /* 16 */
73 IRQ_MASK_DISCARD_TIMER, /* 17 */
74 IRQ_MASK_PCI_DPERR, /* 18 */
75 IRQ_MASK_PCI_PERR, /* 19 */
76};
77
dc2caf6c 78static void fb_mask_irq(struct irq_data *d)
1da177e4 79{
dc2caf6c 80 *CSR_IRQ_DISABLE = fb_irq_mask[_DC21285_INR(d->irq)];
1da177e4
LT
81}
82
dc2caf6c 83static void fb_unmask_irq(struct irq_data *d)
1da177e4 84{
dc2caf6c 85 *CSR_IRQ_ENABLE = fb_irq_mask[_DC21285_INR(d->irq)];
1da177e4
LT
86}
87
10dd5ce2 88static struct irq_chip fb_chip = {
dc2caf6c
LB
89 .irq_ack = fb_mask_irq,
90 .irq_mask = fb_mask_irq,
91 .irq_unmask = fb_unmask_irq,
1da177e4
LT
92};
93
94static void __init __fb_init_irq(void)
95{
96 unsigned int irq;
97
98 /*
99 * setup DC21285 IRQs
100 */
101 *CSR_IRQ_DISABLE = -1;
102 *CSR_FIQ_DISABLE = -1;
103
104 for (irq = _DC21285_IRQ(0); irq < _DC21285_IRQ(20); irq++) {
f38c02f3 105 irq_set_chip_and_handler(irq, &fb_chip, handle_level_irq);
e8d36d5d 106 irq_clear_status_flags(irq, IRQ_NOREQUEST | IRQ_NOPROBE);
1da177e4
LT
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 = {
a427ceef
DS
138 {
139 .virtual = ARMCSR_BASE,
865052fd 140 .pfn = __phys_to_pfn(DC21285_ARMCSR_BASE),
a427ceef 141 .length = ARMCSR_SIZE,
6460177f 142 .type = MT_DEVICE,
a427ceef 143 }
1da177e4
LT
144};
145
146/*
147 * The mapping when the footbridge is in host mode. We don't map any of
148 * this when we are in add-in mode.
149 */
150static struct map_desc ebsa285_host_io_desc[] __initdata = {
151#if defined(CONFIG_ARCH_FOOTBRIDGE) && defined(CONFIG_FOOTBRIDGE_HOST)
a427ceef
DS
152 {
153 .virtual = PCIMEM_BASE,
154 .pfn = __phys_to_pfn(DC21285_PCI_MEM),
155 .length = PCIMEM_SIZE,
6460177f 156 .type = MT_DEVICE,
a427ceef
DS
157 }, {
158 .virtual = PCICFG0_BASE,
159 .pfn = __phys_to_pfn(DC21285_PCI_TYPE_0_CONFIG),
160 .length = PCICFG0_SIZE,
6460177f 161 .type = MT_DEVICE,
a427ceef
DS
162 }, {
163 .virtual = PCICFG1_BASE,
164 .pfn = __phys_to_pfn(DC21285_PCI_TYPE_1_CONFIG),
165 .length = PCICFG1_SIZE,
6460177f 166 .type = MT_DEVICE,
a427ceef
DS
167 }, {
168 .virtual = PCIIACK_BASE,
169 .pfn = __phys_to_pfn(DC21285_PCI_IACK),
170 .length = PCIIACK_SIZE,
6460177f 171 .type = MT_DEVICE,
6460177f 172 },
1da177e4
LT
173#endif
174};
175
1da177e4
LT
176void __init footbridge_map_io(void)
177{
178 /*
179 * Set up the common mapping first; we need this to
180 * determine whether we're in host mode or not.
181 */
182 iotable_init(fb_common_io_desc, ARRAY_SIZE(fb_common_io_desc));
183
184 /*
185 * Now, work out what we've got to map in addition on this
186 * platform.
187 */
8ef6e620 188 if (footbridge_cfn_mode()) {
1da177e4 189 iotable_init(ebsa285_host_io_desc, ARRAY_SIZE(ebsa285_host_io_desc));
8ef6e620
RH
190 pci_map_io_early(__phys_to_pfn(DC21285_PCI_IO));
191 }
43659222
RK
192
193 vga_base = PCIMEM_BASE;
1da177e4
LT
194}
195
7b6d864b 196void footbridge_restart(enum reboot_mode mode, const char *cmd)
6fca1e17 197{
7b6d864b 198 if (mode == REBOOT_SOFT) {
6fca1e17
RK
199 /* Jump into the ROM */
200 soft_restart(0x41000000);
201 } else {
202 /*
203 * Force the watchdog to do a CPU reset.
204 *
205 * After making sure that the watchdog is disabled
206 * (so we can change the timer registers) we first
207 * enable the timer to autoreload itself. Next, the
208 * timer interval is set really short and any
209 * current interrupt request is cleared (so we can
210 * see an edge transition). Finally, TIMER4 is
211 * enabled as the watchdog.
212 */
213 *CSR_SA110_CNTL &= ~(1 << 13);
214 *CSR_TIMER4_CNTL = TIMER_CNTL_ENABLE |
215 TIMER_CNTL_AUTORELOAD |
216 TIMER_CNTL_DIV16;
217 *CSR_TIMER4_LOAD = 0x2;
218 *CSR_TIMER4_CLR = 0;
219 *CSR_SA110_CNTL |= (1 << 13);
220 }
221}
222
1da177e4
LT
223#ifdef CONFIG_FOOTBRIDGE_ADDIN
224
c7baab5d
RK
225static inline unsigned long fb_bus_sdram_offset(void)
226{
227 return *CSR_PCISDRAMBASE & 0xfffffff0;
228}
229
1da177e4
LT
230/*
231 * These two functions convert virtual addresses to PCI addresses and PCI
232 * addresses to virtual addresses. Note that it is only legal to use these
233 * on memory obtained via get_zeroed_page or kmalloc.
234 */
235unsigned long __virt_to_bus(unsigned long res)
236{
237 WARN_ON(res < PAGE_OFFSET || res >= (unsigned long)high_memory);
238
c7baab5d 239 return res + (fb_bus_sdram_offset() - PAGE_OFFSET);
1da177e4
LT
240}
241EXPORT_SYMBOL(__virt_to_bus);
242
243unsigned long __bus_to_virt(unsigned long res)
244{
c7baab5d 245 res = res - (fb_bus_sdram_offset() - PAGE_OFFSET);
1da177e4
LT
246
247 WARN_ON(res < PAGE_OFFSET || res >= (unsigned long)high_memory);
248
249 return res;
250}
251EXPORT_SYMBOL(__bus_to_virt);
252
c7baab5d
RK
253unsigned long __pfn_to_bus(unsigned long pfn)
254{
64dd3b74 255 return __pfn_to_phys(pfn) + (fb_bus_sdram_offset() - PHYS_OFFSET);
c7baab5d
RK
256}
257EXPORT_SYMBOL(__pfn_to_bus);
258
259unsigned long __bus_to_pfn(unsigned long bus)
260{
261 return __phys_to_pfn(bus - (fb_bus_sdram_offset() - PHYS_OFFSET));
262}
263EXPORT_SYMBOL(__bus_to_pfn);
264
1da177e4 265#endif