Path: blob/master/arch/arm/mach-clps711x/edb7211-mm.c
10817 views
/*1* linux/arch/arm/mach-clps711x/mm.c2*3* Extra MM routines for the EDB7211 board4*5* Copyright (C) 2000, 2001 Blue Mug, Inc. All Rights Reserved.6*7* This program is free software; you can redistribute it and/or modify8* it under the terms of the GNU General Public License as published by9* the Free Software Foundation; either version 2 of the License, or10* (at your option) any later version.11*12* This program is distributed in the hope that it will be useful,13* but WITHOUT ANY WARRANTY; without even the implied warranty of14* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the15* GNU General Public License for more details.16*17* You should have received a copy of the GNU General Public License18* along with this program; if not, write to the Free Software19* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA20*/21#include <linux/kernel.h>22#include <linux/init.h>2324#include <mach/hardware.h>25#include <asm/page.h>26#include <asm/sizes.h>2728#include <asm/mach/map.h>2930extern void clps711x_map_io(void);3132/*33* The on-chip registers are given a size of 1MB so that a section can34* be used to map them; this saves a page table. This is the place to35* add mappings for ROM, expansion memory, PCMCIA, etc. (if static36* mappings are chosen for those areas).37*38* Here is a physical memory map (to be fleshed out later):39*40* Physical Address Size Description41* ----------------- ----- ---------------------------------42* c0000000-c001ffff 128KB reserved for video RAM [1]43* c0020000-c0023fff 16KB parameters (see Documentation/arm/Setup)44* c0024000-c0027fff 16KB swapper_pg_dir (task 0 page directory)45* c0028000-... kernel image (TEXTADDR)46*47* [1] Unused pages should be given back to the VM; they are not yet.48* The parameter block should also be released (not sure if this49* happens).50*/51static struct map_desc edb7211_io_desc[] __initdata = {52{ /* memory-mapped extra keyboard row */53.virtual = EP7211_VIRT_EXTKBD,54.pfn = __phys_to_pfn(EP7211_PHYS_EXTKBD),55.length = SZ_1M,56.type = MT_DEVICE,57}, { /* and CS8900A Ethernet chip */58.virtual = EP7211_VIRT_CS8900A,59.pfn = __phys_to_pfn(EP7211_PHYS_CS8900A),60.length = SZ_1M,61.type = MT_DEVICE,62}, { /* flash banks */63.virtual = EP7211_VIRT_FLASH1,64.pfn = __phys_to_pfn(EP7211_PHYS_FLASH1),65.length = SZ_8M,66.type = MT_DEVICE,67}, {68.virtual = EP7211_VIRT_FLASH2,69.pfn = __phys_to_pfn(EP7211_PHYS_FLASH2),70.length = SZ_8M,71.type = MT_DEVICE,72}73};7475void __init edb7211_map_io(void)76{77clps711x_map_io();78iotable_init(edb7211_io_desc, ARRAY_SIZE(edb7211_io_desc));79}80818283