RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / arch / sh / boards / renesas / edosk7705 / setup.c
blobec5be0107719ecea1d340d4e68e78ecc6c832c64
1 /*
2 * arch/sh/boards/renesas/edosk7705/setup.c
4 * Copyright (C) 2000 Kazumoto Kojima
6 * Hitachi SolutionEngine Support.
8 * Modified for edosk7705 development
9 * board by S. Dunn, 2003.
11 #include <linux/init.h>
12 #include <asm/machvec.h>
13 #include <asm/edosk7705/io.h>
15 static void __init sh_edosk7705_init_irq(void)
17 /* This is the Ethernet interrupt */
18 make_imask_irq(0x09);
22 * The Machine Vector
24 struct sh_machine_vector mv_edosk7705 __initmv = {
25 .mv_name = "EDOSK7705",
26 .mv_nr_irqs = 80,
28 .mv_inb = sh_edosk7705_inb,
29 .mv_inl = sh_edosk7705_inl,
30 .mv_outb = sh_edosk7705_outb,
31 .mv_outl = sh_edosk7705_outl,
33 .mv_inl_p = sh_edosk7705_inl,
34 .mv_outl_p = sh_edosk7705_outl,
36 .mv_insb = sh_edosk7705_insb,
37 .mv_insl = sh_edosk7705_insl,
38 .mv_outsb = sh_edosk7705_outsb,
39 .mv_outsl = sh_edosk7705_outsl,
41 .mv_isa_port2addr = sh_edosk7705_isa_port2addr,
42 .mv_init_irq = sh_edosk7705_init_irq,
44 ALIAS_MV(edosk7705)