linux-bk/arch/h8300/mm/init.c
<<
>>
Prefs
   1/*
   2 *  linux/arch/h8300/mm/init.c
   3 *
   4 *  Copyright (C) 1998  D. Jeff Dionne <jeff@lineo.ca>,
   5 *                      Kenneth Albanowski <kjahds@kjahds.com>,
   6 *  Copyright (C) 2000  Lineo, Inc.  (www.lineo.com) 
   7 *
   8 *  Based on:
   9 *
  10 *  linux/arch/m68knommu/mm/init.c
  11 *  linux/arch/m68k/mm/init.c
  12 *
  13 *  Copyright (C) 1995  Hamish Macdonald
  14 *
  15 *  JAN/1999 -- hacked to support ColdFire (gerg@snapgear.com)
  16 *  DEC/2000 -- linux 2.4 support <davidm@snapgear.com>
  17 */
  18
  19#include <linux/config.h>
  20#include <linux/signal.h>
  21#include <linux/sched.h>
  22#include <linux/kernel.h>
  23#include <linux/errno.h>
  24#include <linux/string.h>
  25#include <linux/types.h>
  26#include <linux/ptrace.h>
  27#include <linux/mman.h>
  28#include <linux/mm.h>
  29#include <linux/swap.h>
  30#include <linux/init.h>
  31#include <linux/highmem.h>
  32#include <linux/pagemap.h>
  33#include <linux/bootmem.h>
  34#include <linux/slab.h>
  35
  36#include <asm/setup.h>
  37#include <asm/segment.h>
  38#include <asm/page.h>
  39#include <asm/pgtable.h>
  40#include <asm/system.h>
  41
  42#undef DEBUG
  43
  44extern void die_if_kernel(char *,struct pt_regs *,long);
  45extern void free_initmem(void);
  46
  47/*
  48 * BAD_PAGE is the page that is used for page faults when linux
  49 * is out-of-memory. Older versions of linux just did a
  50 * do_exit(), but using this instead means there is less risk
  51 * for a process dying in kernel mode, possibly leaving a inode
  52 * unused etc..
  53 *
  54 * BAD_PAGETABLE is the accompanying page-table: it is initialized
  55 * to point to BAD_PAGE entries.
  56 *
  57 * ZERO_PAGE is a special page that is used for zero-initialized
  58 * data and COW.
  59 */
  60static unsigned long empty_bad_page_table;
  61
  62static unsigned long empty_bad_page;
  63
  64unsigned long empty_zero_page;
  65
  66extern unsigned long rom_length;
  67
  68void show_mem(void)
  69{
  70    unsigned long i;
  71    int free = 0, total = 0, reserved = 0, shared = 0;
  72    int cached = 0;
  73
  74    printk("\nMem-info:\n");
  75    show_free_areas();
  76    i = max_mapnr;
  77    while (i-- > 0) {
  78        total++;
  79        if (PageReserved(mem_map+i))
  80            reserved++;
  81        else if (PageSwapCache(mem_map+i))
  82            cached++;
  83        else if (!page_count(mem_map+i))
  84            free++;
  85        else
  86            shared += page_count(mem_map+i) - 1;
  87    }
  88    printk("%d pages of RAM\n",total);
  89    printk("%d free pages\n",free);
  90    printk("%d reserved pages\n",reserved);
  91    printk("%d pages shared\n",shared);
  92    printk("%d pages swap cached\n",cached);
  93}
  94
  95extern unsigned long memory_start;
  96extern unsigned long memory_end;
  97
  98/*
  99 * paging_init() continues the virtual memory environment setup which
 100 * was begun by the code in arch/head.S.
 101 * The parameters are pointers to where to stick the starting and ending
 102 * addresses of available kernel virtual memory.
 103 */
 104void paging_init(void)
 105{
 106        /*
 107         * Make sure start_mem is page aligned,  otherwise bootmem and
 108         * page_alloc get different views og the world.
 109         */
 110#ifdef DEBUG
 111        unsigned long start_mem = PAGE_ALIGN(memory_start);
 112#endif
 113        unsigned long end_mem   = memory_end & PAGE_MASK;
 114
 115#ifdef DEBUG
 116        printk ("start_mem is %#lx\nvirtual_end is %#lx\n",
 117                start_mem, end_mem);
 118#endif
 119
 120        /*
 121         * Initialize the bad page table and bad page to point
 122         * to a couple of allocated pages.
 123         */
 124        empty_bad_page_table = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
 125        empty_bad_page = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
 126        empty_zero_page = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
 127        memset((void *)empty_zero_page, 0, PAGE_SIZE);
 128
 129        /*
 130         * Set up SFC/DFC registers (user data space).
 131         */
 132        set_fs (USER_DS);
 133
 134#ifdef DEBUG
 135        printk ("before free_area_init\n");
 136
 137        printk ("free_area_init -> start_mem is %#lx\nvirtual_end is %#lx\n",
 138                start_mem, end_mem);
 139#endif
 140
 141        {
 142                unsigned long zones_size[MAX_NR_ZONES] = {0, 0, 0};
 143
 144                zones_size[ZONE_DMA]     = 0 >> PAGE_SHIFT;
 145                zones_size[ZONE_NORMAL]  = (end_mem - PAGE_OFFSET) >> PAGE_SHIFT;
 146#ifdef CONFIG_HIGHMEM
 147                zones_size[ZONE_HIGHMEM] = 0;
 148#endif
 149                free_area_init(zones_size);
 150        }
 151}
 152
 153void mem_init(void)
 154{
 155        int codek = 0, datak = 0, initk = 0;
 156        /* DAVIDM look at setup memory map generically with reserved area */
 157        unsigned long tmp;
 158        extern char _etext, _stext, _sdata, _ebss, __init_begin, __init_end;
 159        extern unsigned long  _ramend, _ramstart;
 160        unsigned long len = &_ramend - &_ramstart;
 161        unsigned long start_mem = memory_start; /* DAVIDM - these must start at end of kernel */
 162        unsigned long end_mem   = memory_end; /* DAVIDM - this must not include kernel stack at top */
 163
 164#ifdef DEBUG
 165        printk(KERN_DEBUG "Mem_init: start=%lx, end=%lx\n", start_mem, end_mem);
 166#endif
 167
 168        end_mem &= PAGE_MASK;
 169        high_memory = (void *) end_mem;
 170
 171        start_mem = PAGE_ALIGN(start_mem);
 172        max_mapnr = num_physpages = MAP_NR(high_memory);
 173
 174        /* this will put all memory onto the freelists */
 175        totalram_pages = free_all_bootmem();
 176
 177        codek = (&_etext - &_stext) >> 10;
 178        datak = (&_ebss - &_sdata) >> 10;
 179        initk = (&__init_begin - &__init_end) >> 10;
 180
 181        tmp = nr_free_pages() << PAGE_SHIFT;
 182        printk(KERN_INFO "Memory available: %luk/%luk RAM, %luk/%luk ROM (%dk kernel code, %dk data)\n",
 183               tmp >> 10,
 184               len >> 10,
 185               (rom_length > 0) ? ((rom_length >> 10) - codek) : 0,
 186               rom_length >> 10,
 187               codek,
 188               datak
 189               );
 190}
 191
 192
 193#ifdef CONFIG_BLK_DEV_INITRD
 194void free_initrd_mem(unsigned long start, unsigned long end)
 195{
 196        int pages = 0;
 197        for (; start < end; start += PAGE_SIZE) {
 198                ClearPageReserved(virt_to_page(start));
 199                set_page_count(virt_to_page(start), 1);
 200                free_page(start);
 201                totalram_pages++;
 202                pages++;
 203        }
 204        printk ("Freeing initrd memory: %dk freed\n", pages);
 205}
 206#endif
 207
 208void
 209free_initmem()
 210{
 211#ifdef CONFIG_RAMKERNEL
 212        unsigned long addr;
 213        extern char __init_begin, __init_end;
 214/*
 215 *      the following code should be cool even if these sections
 216 *      are not page aligned.
 217 */
 218        addr = PAGE_ALIGN((unsigned long)(&__init_begin));
 219        /* next to check that the page we free is not a partial page */
 220        for (; addr + PAGE_SIZE < (unsigned long)(&__init_end); addr +=PAGE_SIZE) {
 221                ClearPageReserved(virt_to_page(addr));
 222                set_page_count(virt_to_page(addr), 1);
 223                free_page(addr);
 224                totalram_pages++;
 225        }
 226        printk(KERN_INFO "Freeing unused kernel memory: %ldk freed (0x%x - 0x%x)\n",
 227                        (addr - PAGE_ALIGN((long) &__init_begin)) >> 10,
 228                        (int)(PAGE_ALIGN((unsigned long)(&__init_begin))),
 229                        (int)(addr - PAGE_SIZE));
 230#endif
 231}
 232
 233
lxr.linux.no kindly hosted by Redpill Linpro AS, provider of Linux consulting and operations services since 1995.