1da177e4c3
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!
69 lines
1.3 KiB
C
69 lines
1.3 KiB
C
/*
|
|
* arch/sh/boards/se/73180/setup.c
|
|
*
|
|
* Copyright (C) 2003 Takashi Kusuda <kusuda-takashi@hitachi-ul.co.jp>
|
|
* Based on arch/sh/setup_shmse.c
|
|
*
|
|
* Modified for 73180 SolutionEngine
|
|
* by YOSHII Takashi <yoshii-takashi@hitachi-ul.co.jp>
|
|
*
|
|
*/
|
|
|
|
#include <linux/config.h>
|
|
#include <linux/init.h>
|
|
#include <asm/machvec.h>
|
|
#include <asm/machvec_init.h>
|
|
#include <asm/mach/io.h>
|
|
|
|
void heartbeat_73180se(void);
|
|
void init_73180se_IRQ(void);
|
|
|
|
const char *
|
|
get_system_type(void)
|
|
{
|
|
return "SolutionEngine 73180";
|
|
}
|
|
|
|
/*
|
|
* The Machine Vector
|
|
*/
|
|
|
|
struct sh_machine_vector mv_73180se __initmv = {
|
|
.mv_nr_irqs = 108,
|
|
.mv_inb = sh73180se_inb,
|
|
.mv_inw = sh73180se_inw,
|
|
.mv_inl = sh73180se_inl,
|
|
.mv_outb = sh73180se_outb,
|
|
.mv_outw = sh73180se_outw,
|
|
.mv_outl = sh73180se_outl,
|
|
|
|
.mv_inb_p = sh73180se_inb_p,
|
|
.mv_inw_p = sh73180se_inw,
|
|
.mv_inl_p = sh73180se_inl,
|
|
.mv_outb_p = sh73180se_outb_p,
|
|
.mv_outw_p = sh73180se_outw,
|
|
.mv_outl_p = sh73180se_outl,
|
|
|
|
.mv_insb = sh73180se_insb,
|
|
.mv_insw = sh73180se_insw,
|
|
.mv_insl = sh73180se_insl,
|
|
.mv_outsb = sh73180se_outsb,
|
|
.mv_outsw = sh73180se_outsw,
|
|
.mv_outsl = sh73180se_outsl,
|
|
|
|
.mv_init_irq = init_73180se_IRQ,
|
|
#ifdef CONFIG_HEARTBEAT
|
|
.mv_heartbeat = heartbeat_73180se,
|
|
#endif
|
|
};
|
|
|
|
ALIAS_MV(73180se)
|
|
/*
|
|
* Initialize the board
|
|
*/
|
|
void __init
|
|
platform_setup(void)
|
|
{
|
|
|
|
}
|