forked from Minki/linux
ebcce7b13b
This patchset moves the UDC definitons for e7xx compatible eseries machines to a common location and moves the 'oddball' e800 definition to its machine file. Signed-off-by: Ian Molton <spyro@f2s.com>
44 lines
972 B
C
44 lines
972 B
C
/*
|
|
* Hardware definitions for the Toshiba eseries PDAs
|
|
*
|
|
* Copyright (c) 2003 Ian Molton <spyro@f2s.com>
|
|
*
|
|
* This file is licensed under
|
|
* the terms of the GNU General Public License version 2. This program
|
|
* is licensed "as is" without any warranty of any kind, whether express
|
|
* or implied.
|
|
*
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/init.h>
|
|
|
|
#include <asm/setup.h>
|
|
#include <asm/mach/arch.h>
|
|
#include <asm/mach-types.h>
|
|
|
|
#include <mach/mfp-pxa25x.h>
|
|
#include <mach/hardware.h>
|
|
#include <mach/udc.h>
|
|
|
|
#include "generic.h"
|
|
#include "eseries.h"
|
|
|
|
static void __init e350_init(void)
|
|
{
|
|
pxa_set_udc_info(&e7xx_udc_mach_info);
|
|
}
|
|
|
|
MACHINE_START(E350, "Toshiba e350")
|
|
/* Maintainer: Ian Molton (spyro@f2s.com) */
|
|
.phys_io = 0x40000000,
|
|
.io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
|
|
.boot_params = 0xa0000100,
|
|
.map_io = pxa_map_io,
|
|
.init_irq = pxa25x_init_irq,
|
|
.fixup = eseries_fixup,
|
|
.init_machine = e350_init,
|
|
.timer = &pxa_timer,
|
|
MACHINE_END
|
|
|