• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/mti-sead3/
1/*
2 * Carsten Langgaard, carstenl@mips.com
3 * Copyright (C) 2000 MIPS Technologies, Inc.  All rights reserved.
4 * Copyright (C) 2008 Dmitri Vorobiev
5 *
6 *  This program is free software; you can distribute it and/or modify it
7 *  under the terms of the GNU General Public License (Version 2) as
8 *  published by the Free Software Foundation.
9 *
10 *  This program is distributed in the hope it will be useful, but WITHOUT
11 *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
13 *  for more details.
14 *
15 *  You should have received a copy of the GNU General Public License along
16 *  with this program; if not, write to the Free Software Foundation, Inc.,
17 *  59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
18 */
19#include <linux/cpu.h>
20#include <linux/init.h>
21#include <linux/sched.h>
22#include <linux/ioport.h>
23#include <linux/irq.h>
24#include <linux/pci.h>
25#include <linux/screen_info.h>
26#include <linux/time.h>
27
28#include <asm/bootinfo.h>
29#include <asm/mips-boards/generic.h>
30#include <asm/mips-boards/prom.h>
31#include <asm/traps.h>
32
33int coherentio; 	/* init to 0 => no DMA cache coherency (may be set by user) */
34int hw_coherentio;	/* init to 0 => no HW DMA cache coherency (reflects real HW) */
35
36const char *get_system_type(void)
37{
38	return "MIPS SEAD3";
39}
40
41#if defined(CONFIG_MIPS_MT_SMTC)
42const char display_string[] = "               SMTC LINUX ON SEAD3               ";
43#else
44const char display_string[] = "               LINUX ON SEAD3               ";
45#endif /* CONFIG_MIPS_MT_SMTC */
46
47void __init plat_mem_setup(void)
48{
49}
50