Home | History | Annotate | Line # | Download | only in sh3
sh_boot.cpp revision 1.8
      1 /*	$NetBSD: sh_boot.cpp,v 1.8 2004/08/13 15:50:09 uch Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 2001, 2002, 2004 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by UCHIYAMA Yasushi.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. All advertising materials mentioning features or use of this software
     19  *    must display the following acknowledgement:
     20  *        This product includes software developed by the NetBSD
     21  *        Foundation, Inc. and its contributors.
     22  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  *    contributors may be used to endorse or promote products derived
     24  *    from this software without specific prior written permission.
     25  *
     26  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  * POSSIBILITY OF SUCH DAMAGE.
     37  */
     38 
     39 #include <hpcboot.h>
     40 
     41 #include <arch.h>
     42 #include <memory.h>
     43 
     44 #include <sh3/sh_arch.h>
     45 #include <sh3/sh_mmu.h>
     46 #include <sh3/sh_console.h>
     47 #include <sh3/sh_boot.h>
     48 
     49 SHBoot::SHBoot()
     50 {
     51 }
     52 
     53 SHBoot::~SHBoot()
     54 {
     55 	if (_mem)
     56 		delete _mem;
     57 	if (_arch)
     58 		delete _arch;
     59 
     60 	SHConsole::Destroy();
     61 }
     62 
     63 BOOL
     64 SHBoot::setup()
     65 {
     66 	struct HpcMenuInterface::HpcMenuPreferences &pref = HPC_PREFERENCE;
     67 
     68 	platid_t platid;
     69 	platid.dw.dw0 = pref.platid_hi;
     70 	platid.dw.dw1 = pref.platid_lo;
     71 
     72 	if (platid_match(&platid, &platid_mask_CPU_SH_3_7707)) {
     73 		args.architecture = ARCHITECTURE_SH3_7707;
     74 	} else if (platid_match(&platid, &platid_mask_CPU_SH_3_7709)) {
     75 		args.architecture = ARCHITECTURE_SH3_7709;
     76 	} else if (platid_match(&platid, &platid_mask_CPU_SH_3_7709A)) {
     77 		args.architecture = ARCHITECTURE_SH3_7709A;
     78 	} else if (platid_match(&platid, &platid_mask_CPU_SH_4_7750)) {
     79 		args.architecture = ARCHITECTURE_SH4_7750;
     80 	} else {
     81 		DPRINTF((TEXT("CPU not supported.")));
     82 		return FALSE;
     83 	}
     84 
     85 	return super::setup();
     86 }
     87 
     88 BOOL
     89 SHBoot::create()
     90 {
     91 	BOOL(*lock_pages)(LPVOID, DWORD, PDWORD, int);
     92 	BOOL(*unlock_pages)(LPVOID, DWORD);
     93 	size_t page_size;
     94 
     95 	// Setup console. this setting is passed to kernel bootinfo.
     96 	if (args.console == CONSOLE_SERIAL) {
     97 		_cons = new SHConsole;
     98 		if (!_cons->init()) {
     99 			_cons = Console::Instance();
    100 			DPRINTF((TEXT("use LCD console instead.\n")));
    101 		}
    102 	} else {
    103 		_cons = Console::Instance();
    104 		SHConsole::selectBootConsole(*_cons, SHConsole::VIDEO);
    105 	}
    106 
    107 	// Architecture dependent ops.
    108 	switch(args.architecture) {
    109 	default:
    110 		DPRINTF((TEXT("unsupported architecture.\n")));
    111 		return FALSE;
    112 	case ARCHITECTURE_SH3_7707:
    113 		_arch = new SH7707(_cons, _mem, SH7707::boot_func);
    114 		page_size = SH3_PAGE_SIZE;
    115 		if (SHArchitecture::cpu_type() != 3)
    116 			goto cpu_mismatch;
    117 		break;
    118 	case ARCHITECTURE_SH3_7709:
    119 		_arch = new SH7709(_cons, _mem, SH7709::boot_func);
    120 		page_size = SH3_PAGE_SIZE;
    121 		if (SHArchitecture::cpu_type() != 3)
    122 			goto cpu_mismatch;
    123 		break;
    124 	case ARCHITECTURE_SH3_7709A:
    125 		_arch = new SH7709A(_cons, _mem, SH7709A::boot_func);
    126 		page_size = SH3_PAGE_SIZE;
    127 		if (SHArchitecture::cpu_type() != 3)
    128 			goto cpu_mismatch;
    129 		break;
    130 	case ARCHITECTURE_SH4_7750:
    131 		_arch = new SH7750(_cons, _mem, SH7750::boot_func);
    132 		page_size = SH4_PAGE_SIZE;
    133 		if (SHArchitecture::cpu_type() != 4)
    134 			goto cpu_mismatch;
    135 		break;
    136 	}
    137 	_arch->setDebug() = args.architectureDebug;
    138 
    139 	lock_pages = _arch->_load_LockPages();
    140 	unlock_pages = _arch->_load_UnlockPages();
    141 	if (lock_pages == 0 || unlock_pages == 0)
    142 		args.memory = MEMORY_MANAGER_HARDMMU;
    143 	else
    144 		args.memory = MEMORY_MANAGER_LOCKPAGES;
    145 
    146 	// Memory manager.
    147 	switch(args.memory) {
    148 	default:
    149 	case MEMORY_MANAGER_VIRTUALCOPY:
    150 		// VirtualCopy method causes Windows CE unstable.
    151 		/* FALLTHROUGH */
    152 	case MEMORY_MANAGER_SOFTMMU:
    153 		DPRINTF((TEXT("unsupported address detection method.\n")));
    154 		return FALSE;
    155 	case MEMORY_MANAGER_HARDMMU:
    156 		if (args.architecture == ARCHITECTURE_SH4_7750) {
    157 			DPRINTF((TEXT("No SH4 MMU code.\n")));
    158 			return FALSE;
    159 		}
    160 
    161 		_mem = new MemoryManager_SHMMU(_cons, page_size);
    162 		break;
    163 	case MEMORY_MANAGER_LOCKPAGES:
    164 		_mem = new MemoryManager_LockPages(lock_pages, unlock_pages,
    165 		    _cons, page_size);
    166 		break;
    167 	}
    168 	_mem->setDebug() = args.memorymanagerDebug;
    169 
    170 	// File Manager, Loader
    171 	return super::create();
    172 
    173  cpu_mismatch:
    174 	DPRINTF((TEXT("CPU mismatch. CPU is SH%d\n"),
    175 	    SHArchitecture::cpu_type()));
    176 
    177 	return FALSE;
    178 }
    179