diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/v850/kernel/rte_ma1_cb.c |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'arch/v850/kernel/rte_ma1_cb.c')
-rw-r--r-- | arch/v850/kernel/rte_ma1_cb.c | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/arch/v850/kernel/rte_ma1_cb.c b/arch/v850/kernel/rte_ma1_cb.c new file mode 100644 index 000000000000..3873e276392f --- /dev/null +++ b/arch/v850/kernel/rte_ma1_cb.c | |||
@@ -0,0 +1,106 @@ | |||
1 | /* | ||
2 | * arch/v850/kernel/rte_ma1_cb.c -- Midas labs RTE-V850E/MA1-CB board | ||
3 | * | ||
4 | * Copyright (C) 2001,02,03 NEC Electronics Corporation | ||
5 | * Copyright (C) 2001,02,03 Miles Bader <miles@gnu.org> | ||
6 | * | ||
7 | * This file is subject to the terms and conditions of the GNU General | ||
8 | * Public License. See the file COPYING in the main directory of this | ||
9 | * archive for more details. | ||
10 | * | ||
11 | * Written by Miles Bader <miles@gnu.org> | ||
12 | */ | ||
13 | |||
14 | #include <linux/config.h> | ||
15 | #include <linux/kernel.h> | ||
16 | #include <linux/init.h> | ||
17 | #include <linux/bootmem.h> | ||
18 | |||
19 | #include <asm/atomic.h> | ||
20 | #include <asm/page.h> | ||
21 | #include <asm/ma1.h> | ||
22 | #include <asm/rte_ma1_cb.h> | ||
23 | #include <asm/v850e_timer_c.h> | ||
24 | |||
25 | #include "mach.h" | ||
26 | |||
27 | |||
28 | /* SRAM and SDRAM are almost contiguous (with a small hole in between; | ||
29 | see mach_reserve_bootmem for details), so just use both as one big area. */ | ||
30 | #define RAM_START SRAM_ADDR | ||
31 | #define RAM_END (SDRAM_ADDR + SDRAM_SIZE) | ||
32 | |||
33 | |||
34 | void __init mach_early_init (void) | ||
35 | { | ||
36 | rte_cb_early_init (); | ||
37 | } | ||
38 | |||
39 | void __init mach_get_physical_ram (unsigned long *ram_start, | ||
40 | unsigned long *ram_len) | ||
41 | { | ||
42 | *ram_start = RAM_START; | ||
43 | *ram_len = RAM_END - RAM_START; | ||
44 | } | ||
45 | |||
46 | void __init mach_reserve_bootmem () | ||
47 | { | ||
48 | #ifdef CONFIG_RTE_CB_MULTI | ||
49 | /* Prevent the kernel from touching the monitor's scratch RAM. */ | ||
50 | reserve_bootmem (MON_SCRATCH_ADDR, MON_SCRATCH_SIZE); | ||
51 | #endif | ||
52 | |||
53 | /* The space between SRAM and SDRAM is filled with duplicate | ||
54 | images of SRAM. Prevent the kernel from using them. */ | ||
55 | reserve_bootmem (SRAM_ADDR + SRAM_SIZE, | ||
56 | SDRAM_ADDR - (SRAM_ADDR + SRAM_SIZE)); | ||
57 | } | ||
58 | |||
59 | void mach_gettimeofday (struct timespec *tv) | ||
60 | { | ||
61 | tv->tv_sec = 0; | ||
62 | tv->tv_nsec = 0; | ||
63 | } | ||
64 | |||
65 | /* Called before configuring an on-chip UART. */ | ||
66 | void rte_ma1_cb_uart_pre_configure (unsigned chan, | ||
67 | unsigned cflags, unsigned baud) | ||
68 | { | ||
69 | /* The RTE-MA1-CB connects some general-purpose I/O pins on the | ||
70 | CPU to the RTS/CTS lines of UART 0's serial connection. | ||
71 | I/O pins P42 and P43 are RTS and CTS respectively. */ | ||
72 | if (chan == 0) { | ||
73 | /* Put P42 & P43 in I/O port mode. */ | ||
74 | MA_PORT4_PMC &= ~0xC; | ||
75 | /* Make P42 an output, and P43 an input. */ | ||
76 | MA_PORT4_PM = (MA_PORT4_PM & ~0xC) | 0x8; | ||
77 | } | ||
78 | |||
79 | /* Do pre-configuration for the actual UART. */ | ||
80 | ma_uart_pre_configure (chan, cflags, baud); | ||
81 | } | ||
82 | |||
83 | void __init mach_init_irqs (void) | ||
84 | { | ||
85 | unsigned tc; | ||
86 | |||
87 | /* Initialize interrupts. */ | ||
88 | ma_init_irqs (); | ||
89 | rte_cb_init_irqs (); | ||
90 | |||
91 | /* Use falling-edge-sensitivity for interrupts . */ | ||
92 | V850E_TIMER_C_SESC (0) &= ~0xC; | ||
93 | V850E_TIMER_C_SESC (1) &= ~0xF; | ||
94 | |||
95 | /* INTP000-INTP011 are shared with `Timer C', so we have to set | ||
96 | up Timer C to pass them through as raw interrupts. */ | ||
97 | for (tc = 0; tc < 2; tc++) | ||
98 | /* Turn on the timer. */ | ||
99 | V850E_TIMER_C_TMCC0 (tc) |= V850E_TIMER_C_TMCC0_CAE; | ||
100 | |||
101 | /* Make sure the relevant port0/port1 pins are assigned | ||
102 | interrupt duty. We used INTP001-INTP011 (don't screw with | ||
103 | INTP000 because the monitor uses it). */ | ||
104 | MA_PORT0_PMC |= 0x4; /* P02 (INTP001) in IRQ mode. */ | ||
105 | MA_PORT1_PMC |= 0x6; /* P11 (INTP010) & P12 (INTP011) in IRQ mode.*/ | ||
106 | } | ||