aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/boards/renesas/edosk7705
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/sh/boards/renesas/edosk7705
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/sh/boards/renesas/edosk7705')
-rw-r--r--arch/sh/boards/renesas/edosk7705/Makefile10
-rw-r--r--arch/sh/boards/renesas/edosk7705/io.c94
-rw-r--r--arch/sh/boards/renesas/edosk7705/setup.c60
3 files changed, 164 insertions, 0 deletions
diff --git a/arch/sh/boards/renesas/edosk7705/Makefile b/arch/sh/boards/renesas/edosk7705/Makefile
new file mode 100644
index 000000000000..7fccbf2e4a1d
--- /dev/null
+++ b/arch/sh/boards/renesas/edosk7705/Makefile
@@ -0,0 +1,10 @@
1#
2# Makefile for the EDOSK7705 specific parts of the kernel
3#
4# Note! Dependencies are done automagically by 'make dep', which also
5# removes any old dependencies. DON'T put your own dependencies here
6# unless it's something special (ie not a .c file).
7#
8
9obj-y := setup.o io.o
10
diff --git a/arch/sh/boards/renesas/edosk7705/io.c b/arch/sh/boards/renesas/edosk7705/io.c
new file mode 100644
index 000000000000..541cea2a652f
--- /dev/null
+++ b/arch/sh/boards/renesas/edosk7705/io.c
@@ -0,0 +1,94 @@
1/*
2 * arch/sh/boards/renesas/edosk7705/io.c
3 *
4 * Copyright (C) 2001 Ian da Silva, Jeremy Siegel
5 * Based largely on io_se.c.
6 *
7 * I/O routines for Hitachi EDOSK7705 board.
8 *
9 */
10
11#include <linux/kernel.h>
12#include <linux/types.h>
13#include <asm/io.h>
14#include <asm/edosk7705/io.h>
15#include <asm/addrspace.h>
16
17#define SMC_IOADDR 0xA2000000
18
19#define maybebadio(name,port) \
20 printk("bad PC-like io %s for port 0x%lx at 0x%08x\n", \
21 #name, (port), (__u32) __builtin_return_address(0))
22
23/* Map the Ethernet addresses as if it is at 0x300 - 0x320 */
24unsigned long sh_edosk7705_isa_port2addr(unsigned long port)
25{
26 if (port >= 0x300 && port < 0x320) {
27 /* SMC91C96 registers are 4 byte aligned rather than the
28 * usual 2 byte!
29 */
30 return SMC_IOADDR + ( (port - 0x300) * 2);
31 }
32
33 maybebadio(sh_edosk7705_isa_port2addr, port);
34 return port;
35}
36
37/* Trying to read / write bytes on odd-byte boundaries to the Ethernet
38 * registers causes problems. So we bit-shift the value and read / write
39 * in 2 byte chunks. Setting the low byte to 0 does not cause problems
40 * now as odd byte writes are only made on the bit mask / interrupt
41 * register. This may not be the case in future Mar-2003 SJD
42 */
43unsigned char sh_edosk7705_inb(unsigned long port)
44{
45 if (port >= 0x300 && port < 0x320 && port & 0x01) {
46 return (volatile unsigned char)(generic_inw(port -1) >> 8);
47 }
48 return *(volatile unsigned char *)sh_edosk7705_isa_port2addr(port);
49}
50
51unsigned int sh_edosk7705_inl(unsigned long port)
52{
53 return *(volatile unsigned long *)port;
54}
55
56void sh_edosk7705_outb(unsigned char value, unsigned long port)
57{
58 if (port >= 0x300 && port < 0x320 && port & 0x01) {
59 generic_outw(((unsigned short)value << 8), port -1);
60 return;
61 }
62 *(volatile unsigned char *)sh_edosk7705_isa_port2addr(port) = value;
63}
64
65void sh_edosk7705_outl(unsigned int value, unsigned long port)
66{
67 *(volatile unsigned long *)port = value;
68}
69
70void sh_edosk7705_insb(unsigned long port, void *addr, unsigned long count)
71{
72 unsigned char *p = addr;
73 while (count--) *p++ = sh_edosk7705_inb(port);
74}
75
76void sh_edosk7705_insl(unsigned long port, void *addr, unsigned long count)
77{
78 unsigned long *p = (unsigned long*)addr;
79 while (count--)
80 *p++ = *(volatile unsigned long *)port;
81}
82
83void sh_edosk7705_outsb(unsigned long port, const void *addr, unsigned long count)
84{
85 unsigned char *p = (unsigned char*)addr;
86 while (count--) sh_edosk7705_outb(*p++, port);
87}
88
89void sh_edosk7705_outsl(unsigned long port, const void *addr, unsigned long count)
90{
91 unsigned long *p = (unsigned long*)addr;
92 while (count--) sh_edosk7705_outl(*p++, port);
93}
94
diff --git a/arch/sh/boards/renesas/edosk7705/setup.c b/arch/sh/boards/renesas/edosk7705/setup.c
new file mode 100644
index 000000000000..8b6f0c2af092
--- /dev/null
+++ b/arch/sh/boards/renesas/edosk7705/setup.c
@@ -0,0 +1,60 @@
1/*
2 * arch/sh/boards/renesas/edosk7705/setup.c
3 *
4 * Copyright (C) 2000 Kazumoto Kojima
5 *
6 * Hitachi SolutionEngine Support.
7 *
8 * Modified for edosk7705 development
9 * board by S. Dunn, 2003.
10 */
11
12#include <linux/config.h>
13#include <linux/init.h>
14#include <asm/machvec.h>
15#include <asm/machvec_init.h>
16#include <asm/edosk7705/io.h>
17
18static void init_edosk7705(void);
19
20/*
21 * The Machine Vector
22 */
23
24struct sh_machine_vector mv_edosk7705 __initmv = {
25 .mv_nr_irqs = 80,
26
27 .mv_inb = sh_edosk7705_inb,
28 .mv_inl = sh_edosk7705_inl,
29 .mv_outb = sh_edosk7705_outb,
30 .mv_outl = sh_edosk7705_outl,
31
32 .mv_inl_p = sh_edosk7705_inl,
33 .mv_outl_p = sh_edosk7705_outl,
34
35 .mv_insb = sh_edosk7705_insb,
36 .mv_insl = sh_edosk7705_insl,
37 .mv_outsb = sh_edosk7705_outsb,
38 .mv_outsl = sh_edosk7705_outsl,
39
40 .mv_isa_port2addr = sh_edosk7705_isa_port2addr,
41 .mv_init_irq = init_edosk7705,
42};
43ALIAS_MV(edosk7705)
44
45static void __init init_edosk7705(void)
46{
47 /* This is the Ethernet interrupt */
48 make_imask_irq(0x09);
49}
50
51const char *get_system_type(void)
52{
53 return "EDOSK7705";
54}
55
56void __init platform_setup(void)
57{
58 /* Nothing .. */
59}
60