]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/arm/mach-pxa/eseries.c
[ARM] eseries: move LCD defs into machine files
[mirror_ubuntu-artful-kernel.git] / arch / arm / mach-pxa / eseries.c
CommitLineData
3abcd199
IM
1/*
2 * Hardware definitions for the Toshiba eseries PDAs
3 *
4 * Copyright (c) 2003 Ian Molton <spyro@f2s.com>
5 *
6 * This file is licensed under
7 * the terms of the GNU General Public License version 2. This program
8 * is licensed "as is" without any warranty of any kind, whether express
9 * or implied.
10 *
11 */
12
28365488 13#include <linux/kernel.h>
3abcd199
IM
14#include <linux/init.h>
15
16#include <asm/setup.h>
17#include <asm/mach/arch.h>
3abcd199
IM
18#include <asm/mach-types.h>
19
28365488
IM
20#include <mach/mfp-pxa25x.h>
21#include <mach/hardware.h>
22
877e03d4 23#include "generic.h"
3abcd199
IM
24
25/* Only e800 has 128MB RAM */
7dc96414 26void __init eseries_fixup(struct machine_desc *desc,
67a6e80e 27 struct tag *tags, char **cmdline, struct meminfo *mi)
3abcd199
IM
28{
29 mi->nr_banks=1;
30 mi->bank[0].start = 0xa0000000;
31 mi->bank[0].node = 0;
32 if (machine_is_e800())
33 mi->bank[0].size = (128*1024*1024);
34 else
35 mi->bank[0].size = (64*1024*1024);
36}
37