Path: blob/master/arch/sh/boards/mach-dreamcast/setup.c
15126 views
/*1* arch/sh/boards/dreamcast/setup.c2*3* Hardware support for the Sega Dreamcast.4*5* Copyright (c) 2001, 2002 M. R. Brown <[email protected]>6* Copyright (c) 2002, 2003, 2004 Paul Mundt <[email protected]>7*8* This file is part of the LinuxDC project (www.linuxdc.org)9*10* Released under the terms of the GNU GPL v2.0.11*12* This file originally bore the message (with enclosed-$):13* Id: setup_dc.c,v 1.5 2001/05/24 05:09:16 mrbrown Exp14* SEGA Dreamcast support15*/1617#include <linux/sched.h>18#include <linux/kernel.h>19#include <linux/param.h>20#include <linux/interrupt.h>21#include <linux/init.h>22#include <linux/irq.h>23#include <linux/device.h>24#include <asm/io.h>25#include <asm/irq.h>26#include <asm/rtc.h>27#include <asm/machvec.h>28#include <mach/sysasic.h>2930static void __init dreamcast_setup(char **cmdline_p)31{32board_time_init = aica_time_init;33}3435static struct sh_machine_vector mv_dreamcast __initmv = {36.mv_name = "Sega Dreamcast",37.mv_setup = dreamcast_setup,38.mv_irq_demux = systemasic_irq_demux,39.mv_init_irq = systemasic_irq_init,40};414243