blob: bb7e1a189be8160b4125f86b701a872bb33dc39d [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
17const char *
18get_system_type(void)
19{
20 return "SolutionEngine 7300";
21}
22
23/*
24 * The Machine Vector
25 */
26
27struct sh_machine_vector mv_7300se __initmv = {
28 .mv_nr_irqs = 109,
29 .mv_inb = sh7300se_inb,
30 .mv_inw = sh7300se_inw,
31 .mv_inl = sh7300se_inl,
32 .mv_outb = sh7300se_outb,
33 .mv_outw = sh7300se_outw,
34 .mv_outl = sh7300se_outl,
35
36 .mv_inb_p = sh7300se_inb_p,
37 .mv_inw_p = sh7300se_inw,
38 .mv_inl_p = sh7300se_inl,
39 .mv_outb_p = sh7300se_outb_p,
40 .mv_outw_p = sh7300se_outw,
41 .mv_outl_p = sh7300se_outl,
42
43 .mv_insb = sh7300se_insb,
44 .mv_insw = sh7300se_insw,
45 .mv_insl = sh7300se_insl,
46 .mv_outsb = sh7300se_outsb,
47 .mv_outsw = sh7300se_outsw,
48 .mv_outsl = sh7300se_outsl,
49
50 .mv_init_irq = init_7300se_IRQ,
51#ifdef CONFIG_HEARTBEAT
52 .mv_heartbeat = heartbeat_7300se,
53#endif
54};
55
56ALIAS_MV(7300se)
57/*
58 * Initialize the board
59 */
60void __init
61platform_setup(void)
62{
63
64}