/*1* linux/arch/arm/mach-clps711x/arch-ceiva.c2*3* Copyright (C) 2002, Rob Scott <[email protected]>4*5* This program is free software; you can redistribute it and/or modify6* it under the terms of the GNU General Public License as published by7* the Free Software Foundation; either version 2 of the License, or8* (at your option) any later version.9*10* This program is distributed in the hope that it will be useful,11* but WITHOUT ANY WARRANTY; without even the implied warranty of12* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the13* GNU General Public License for more details.14*15* You should have received a copy of the GNU General Public License16* along with this program; if not, write to the Free Software17* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA18*/19#include <linux/init.h>20#include <linux/types.h>21#include <linux/string.h>2223#include <asm/setup.h>24#include <asm/mach-types.h>25#include <asm/mach/arch.h>2627#include <linux/kernel.h>2829#include <mach/hardware.h>30#include <asm/page.h>31#include <asm/pgtable.h>32#include <asm/sizes.h>3334#include <asm/mach/map.h>3536#include "common.h"3738static struct map_desc ceiva_io_desc[] __initdata = {39/* SED1355 controlled video RAM & registers */40{41.virtual = CEIVA_VIRT_SED1355,42.pfn = __phys_to_pfn(CEIVA_PHYS_SED1355),43.length = SZ_2M,44.type = MT_DEVICE45}46};474849static void __init ceiva_map_io(void)50{51clps711x_map_io();52iotable_init(ceiva_io_desc, ARRAY_SIZE(ceiva_io_desc));53}545556MACHINE_START(CEIVA, "CEIVA/Polaroid Photo MAX Digital Picture Frame")57/* Maintainer: Rob Scott */58.boot_params = 0xc0000100,59.map_io = ceiva_map_io,60.init_irq = clps711x_init_irq,61.timer = &clps711x_timer,62MACHINE_END636465