2007-04-02 22:09:31 +02:00
|
|
|
/*
|
|
|
|
* arch/arm/mach-ns9xxx/mach-cc9p9360js.c
|
|
|
|
*
|
2008-02-15 08:41:06 +01:00
|
|
|
* Copyright (C) 2006,2007 by Digi International Inc.
|
2007-04-02 22:09:31 +02:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 as published by
|
|
|
|
* the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
#include <asm/mach/arch.h>
|
|
|
|
#include <asm/mach-types.h>
|
|
|
|
|
2008-08-05 17:14:15 +02:00
|
|
|
#include <mach/processor-ns9360.h>
|
2008-02-15 08:41:06 +01:00
|
|
|
|
2007-04-02 22:09:31 +02:00
|
|
|
#include "board-jscc9p9360.h"
|
|
|
|
#include "generic.h"
|
|
|
|
|
|
|
|
static void __init mach_cc9p9360js_init_machine(void)
|
|
|
|
{
|
|
|
|
ns9xxx_init_machine();
|
|
|
|
board_jscc9p9360_init_machine();
|
|
|
|
}
|
|
|
|
|
2007-07-17 23:33:18 +02:00
|
|
|
MACHINE_START(CC9P9360JS, "Digi ConnectCore 9P 9360 on an JSCC9P9360 Devboard")
|
2008-02-15 08:41:06 +01:00
|
|
|
.map_io = ns9360_map_io,
|
2007-04-02 22:09:31 +02:00
|
|
|
.init_irq = ns9xxx_init_irq,
|
|
|
|
.init_machine = mach_cc9p9360js_init_machine,
|
2008-02-15 08:41:06 +01:00
|
|
|
.timer = &ns9360_timer,
|
2007-04-02 22:09:31 +02:00
|
|
|
.boot_params = 0x100,
|
|
|
|
MACHINE_END
|