aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/boards
diff options
context:
space:
mode:
authorJamie Lenehan <lenehan@twibble.org>2006-09-27 02:05:39 -0400
committerPaul Mundt <lethal@linux-sh.org>2006-09-27 02:05:39 -0400
commita09749dd86e9e93de10f12ab4ce4e90815b5650a (patch)
tree013d7deabb31dea70063a2acdc50ee86fb3c7b9a /arch/sh/boards
parentb7e108ee63624176af85b97d4d80bef6fe099395 (diff)
sh: Titan board support.
Add support for the titan board. Signed-off-by: Jamie Lenehan <lenehan@twibble.org> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/boards')
-rw-r--r--arch/sh/boards/titan/Makefile5
-rw-r--r--arch/sh/boards/titan/io.c156
-rw-r--r--arch/sh/boards/titan/setup.c60
3 files changed, 221 insertions, 0 deletions
diff --git a/arch/sh/boards/titan/Makefile b/arch/sh/boards/titan/Makefile
new file mode 100644
index 00000000000..08d75370006
--- /dev/null
+++ b/arch/sh/boards/titan/Makefile
@@ -0,0 +1,5 @@
1#
2# Makefile for the Nimble Microsystems TITAN specific parts of the kernel
3#
4
5obj-y := setup.o io.o
diff --git a/arch/sh/boards/titan/io.c b/arch/sh/boards/titan/io.c
new file mode 100644
index 00000000000..d66900c99a1
--- /dev/null
+++ b/arch/sh/boards/titan/io.c
@@ -0,0 +1,156 @@
1/*
2 * I/O routines for Titan
3 */
4
5#include <linux/pci.h>
6#include <asm/machvec.h>
7#include <asm/addrspace.h>
8#include <asm/titan.h>
9#include <asm/io.h>
10#include "../../drivers/pci/pci-sh7751.h"
11
12#define PCIIOBR (volatile long *)PCI_REG(SH7751_PCIIOBR)
13#define PCIMBR (volatile long *)PCI_REG(SH7751_PCIMBR)
14#define PCI_IO_AREA SH7751_PCI_IO_BASE
15#define PCI_MEM_AREA SH7751_PCI_CONFIG_BASE
16
17#define PCI_IOMAP(adr) (PCI_IO_AREA + (adr & ~SH7751_PCIIOBR_MASK))
18
19#if defined(CONFIG_PCI)
20#define CHECK_SH7751_PCIIO(port) \
21 ((port >= PCIBIOS_MIN_IO) && (port < (PCIBIOS_MIN_IO + SH7751_PCI_IO_SIZE)))
22#define CHECK_SH7751_PCIMEMIO(port) \
23 ((port >= PCIBIOS_MIN_MEM) && (port < (PCIBIOS_MIN_MEM + SH7751_PCI_MEM_SIZE)))
24#else
25#define CHECK_SH7751_PCIIO(port) (0)
26#endif
27
28static inline void delay(void)
29{
30 ctrl_inw(0xa0000000);
31}
32
33static inline volatile u16 *port2adr(unsigned int port)
34{
35 maybebadio((unsigned long)port);
36 return (volatile u16*)port;
37}
38
39u8 titan_inb(unsigned long port)
40{
41 if (PXSEG(port))
42 return ctrl_inb(port);
43 else if (CHECK_SH7751_PCIIO(port))
44 return ctrl_inb(PCI_IOMAP(port));
45 return ctrl_inw(port2adr(port)) & 0xff;
46}
47
48u8 titan_inb_p(unsigned long port)
49{
50 u8 v;
51
52 if (PXSEG(port))
53 v = ctrl_inb(port);
54 else if (CHECK_SH7751_PCIIO(port))
55 v = ctrl_inb(PCI_IOMAP(port));
56 else
57 v = ctrl_inw(port2adr(port)) & 0xff;
58 delay();
59 return v;
60}
61
62u16 titan_inw(unsigned long port)
63{
64 if (PXSEG(port))
65 return ctrl_inw(port);
66 else if (CHECK_SH7751_PCIIO(port))
67 return ctrl_inw(PCI_IOMAP(port));
68 else if (port >= 0x2000)
69 return ctrl_inw(port2adr(port));
70 else
71 maybebadio(port);
72 return 0;
73}
74
75u32 titan_inl(unsigned long port)
76{
77 if (PXSEG(port))
78 return ctrl_inl(port);
79 else if (CHECK_SH7751_PCIIO(port))
80 return ctrl_inl(PCI_IOMAP(port));
81 else if (port >= 0x2000)
82 return ctrl_inw(port2adr(port));
83 else
84 maybebadio(port);
85 return 0;
86}
87
88void titan_outb(u8 value, unsigned long port)
89{
90 if (PXSEG(port))
91 ctrl_outb(value, port);
92 else if (CHECK_SH7751_PCIIO(port))
93 ctrl_outb(value, PCI_IOMAP(port));
94 else
95 ctrl_outw(value, port2adr(port));
96}
97
98void titan_outb_p(u8 value, unsigned long port)
99{
100 if (PXSEG(port))
101 ctrl_outb(value, port);
102 else if (CHECK_SH7751_PCIIO(port))
103 ctrl_outb(value, PCI_IOMAP(port));
104 else
105 ctrl_outw(value, port2adr(port));
106 delay();
107}
108
109void titan_outw(u16 value, unsigned long port)
110{
111 if (PXSEG(port))
112 ctrl_outw(value, port);
113 else if (CHECK_SH7751_PCIIO(port))
114 ctrl_outw(value, PCI_IOMAP(port));
115 else if (port >= 0x2000)
116 ctrl_outw(value, port2adr(port));
117 else
118 maybebadio(port);
119}
120
121void titan_outl(u32 value, unsigned long port)
122{
123 if (PXSEG(port))
124 ctrl_outl(value, port);
125 else if (CHECK_SH7751_PCIIO(port))
126 ctrl_outl(value, PCI_IOMAP(port));
127 else
128 maybebadio(port);
129}
130
131void titan_insl(unsigned long port, void *dst, unsigned long count)
132{
133 maybebadio(port);
134}
135
136void titan_outsl(unsigned long port, const void *src, unsigned long count)
137{
138 maybebadio(port);
139}
140
141void *titan_ioremap(unsigned long offset, unsigned long size) {
142 if (CHECK_SH7751_PCIIO(offset) || CHECK_SH7751_PCIMEMIO(offset))
143 return (void *)offset;
144}
145
146void __iomem *titan_ioport_map(unsigned long port, unsigned int size)
147{
148 if (PXSEG(port))
149 return (void __iomem *)port;
150 else if (CHECK_SH7751_PCIIO(port))
151 return (void __iomem *)PCI_IOMAP(port);
152
153 return (void __iomem *)port2adr(port);
154}
155
156EXPORT_SYMBOL(titan_ioremap);
diff --git a/arch/sh/boards/titan/setup.c b/arch/sh/boards/titan/setup.c
new file mode 100644
index 00000000000..6ac5c8d7b3f
--- /dev/null
+++ b/arch/sh/boards/titan/setup.c
@@ -0,0 +1,60 @@
1/*
2 * Setup for Titan
3 */
4
5#include <linux/init.h>
6#include <asm/irq.h>
7#include <asm/titan.h>
8#include <asm/io.h>
9
10extern void __init pcibios_init_platform(void);
11
12static void __init init_titan_irq(void)
13{
14 /* enable individual interrupt mode for externals */
15 ctrl_outw(ctrl_inw(INTC_ICR) | INTC_ICR_IRLM, INTC_ICR);
16
17 make_ipr_irq( TITAN_IRQ_WAN, IRL0_IPR_ADDR, IRL0_IPR_POS, IRL0_PRIORITY); /* PCIRQ0 */
18 make_ipr_irq( TITAN_IRQ_LAN, IRL1_IPR_ADDR, IRL1_IPR_POS, IRL1_PRIORITY); /* PCIRQ1 */
19 make_ipr_irq( TITAN_IRQ_MPCIA, IRL2_IPR_ADDR, IRL2_IPR_POS, IRL2_PRIORITY); /* PCIRQ2 */
20 make_ipr_irq( TITAN_IRQ_USB, IRL3_IPR_ADDR, IRL3_IPR_POS, IRL3_PRIORITY); /* PCIRQ3 */
21}
22
23const char *get_system_type(void)
24{
25 return "Titan";
26}
27
28int __init platform_setup(void)
29{
30 printk("%s Platform Setup\n", get_system_type());
31 return 0;
32}
33
34struct sh_machine_vector mv_titan __initmv = {
35 .mv_nr_irqs = NR_IRQS,
36
37 .mv_inb = titan_inb,
38 .mv_inw = titan_inw,
39 .mv_inl = titan_inl,
40 .mv_outb = titan_outb,
41 .mv_outw = titan_outw,
42 .mv_outl = titan_outl,
43
44 .mv_inb_p = titan_inb_p,
45 .mv_inw_p = titan_inw,
46 .mv_inl_p = titan_inl,
47 .mv_outb_p = titan_outb_p,
48 .mv_outw_p = titan_outw,
49 .mv_outl_p = titan_outl,
50
51 .mv_insl = titan_insl,
52 .mv_outsl = titan_outsl,
53
54 .mv_ioremap = titan_ioremap,
55 .mv_ioport_map = titan_ioport_map,
56
57 .mv_init_irq = init_titan_irq,
58 .mv_init_pci = pcibios_init_platform,
59};
60ALIAS_MV(titan)