edb7211-mm.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/mach-clps711x/mm.c
  3.  *
  4.  *  Extra MM routines for the EDB7211 board
  5.  *
  6.  *  Copyright (C) 2000, 2001 Blue Mug, Inc.  All Rights Reserved.
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; if not, write to the Free Software
  20.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  21.  */
  22. #include <linux/sched.h>
  23. #include <linux/mm.h>
  24. #include <linux/init.h>
  25. #include <asm/hardware.h>
  26. #include <asm/pgtable.h>
  27. #include <asm/page.h>
  28.  
  29. #include <asm/mach/map.h>
  30. #define MB1 1048576 /* one megabyte == size of an MMU section */
  31. extern void clps711x_map_io(void);
  32. /*
  33.  * The on-chip registers are given a size of 1MB so that a section can
  34.  * be used to map them; this saves a page table.  This is the place to
  35.  * add mappings for ROM, expansion memory, PCMCIA, etc.  (if static
  36.  * mappings are chosen for those areas).
  37.  *
  38.  * Here is a physical memory map (to be fleshed out later):
  39.  *
  40.  * Physical Address  Size  Description
  41.  * ----------------- ----- ---------------------------------
  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 this
  49.  *     happens).
  50.  */
  51. static struct map_desc edb7211_io_desc[] __initdata = {
  52.  /* virtual, physical, length, domain, r, w, c, b */
  53.  /* memory-mapped extra keyboard row and CS8900A Ethernet chip */
  54.  { EP7211_VIRT_EXTKBD, EP7211_PHYS_EXTKBD, MB1, DOMAIN_IO, 1, 1, 0, 0 }, 
  55.  { EP7211_VIRT_CS8900A, EP7211_PHYS_CS8900A, MB1, DOMAIN_IO, 1, 1, 0, 0 },
  56.  /* flash banks */
  57.  { EP7211_VIRT_FLASH1, EP7211_PHYS_FLASH1, MB1 * 8, DOMAIN_KERNEL, 1, 1, 0, 0 },
  58.  { EP7211_VIRT_FLASH2, EP7211_PHYS_FLASH2, MB1 * 8, DOMAIN_KERNEL, 1, 1, 0, 0 },
  59.  LAST_DESC
  60. };
  61. void __init edb7211_map_io(void)
  62. {
  63.         clps711x_map_io();
  64.         iotable_init(edb7211_io_desc);
  65. }