blob: 6f082a722d42842f5502ff9b0a7497f3f35fd659 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/sh/boards/se/7300/setup.c
3 *
4 * Copyright (C) 2003 Takashi Kusuda <kusuda-takashi@hitachi-ul.co.jp>
5 *
6 * SH-Mobile SolutionEngine 7300 Support.
7 *
8 */
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/init.h>
11#include <asm/machvec.h>
Paul Mundt373e68b2006-09-27 15:41:24 +090012#include <asm/se7300.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14void heartbeat_7300se(void);
15void init_7300se_IRQ(void);
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017/*
18 * The Machine Vector
19 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070020struct sh_machine_vector mv_7300se __initmv = {
Paul Mundt2c7834a2006-09-27 18:17:31 +090021 .mv_name = "SolutionEngine 7300",
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 .mv_nr_irqs = 109,
23 .mv_inb = sh7300se_inb,
24 .mv_inw = sh7300se_inw,
25 .mv_inl = sh7300se_inl,
26 .mv_outb = sh7300se_outb,
27 .mv_outw = sh7300se_outw,
28 .mv_outl = sh7300se_outl,
29
30 .mv_inb_p = sh7300se_inb_p,
31 .mv_inw_p = sh7300se_inw,
32 .mv_inl_p = sh7300se_inl,
33 .mv_outb_p = sh7300se_outb_p,
34 .mv_outw_p = sh7300se_outw,
35 .mv_outl_p = sh7300se_outl,
36
37 .mv_insb = sh7300se_insb,
38 .mv_insw = sh7300se_insw,
39 .mv_insl = sh7300se_insl,
40 .mv_outsb = sh7300se_outsb,
41 .mv_outsw = sh7300se_outsw,
42 .mv_outsl = sh7300se_outsl,
43
44 .mv_init_irq = init_7300se_IRQ,
45#ifdef CONFIG_HEARTBEAT
46 .mv_heartbeat = heartbeat_7300se,
47#endif
48};
Linus Torvalds1da177e2005-04-16 15:20:36 -070049ALIAS_MV(7300se)