Home | History | Annotate | Line # | Download | only in sh3
sh_arch.h revision 1.8
      1 /* -*-C++-*-	$NetBSD: sh_arch.h,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 #ifndef _HPCBOOT_SH_ARCH_H_
     40 #define	_HPCBOOT_SH_ARCH_H_
     41 
     42 #include <arch.h>
     43 #include <memory.h>	// loadBank
     44 #include <console.h>	// DPRINTF
     45 
     46 #include <sh3/dev/sh_dev.h>
     47 
     48 // CPU specific macro
     49 #include <sh3/cpu/sh3.h>
     50 #include <sh3/cpu/sh4.h>
     51 
     52 class SHArchitecture : public Architecture {
     53 protected:
     54 	typedef void(*boot_func_t)(struct BootArgs *, struct PageTag *);
     55 	SHdev *_dev;
     56 
     57 private:
     58 	typedef Architecture super;
     59 	boot_func_t _boot_func;
     60 
     61 protected:
     62 	// should be created as actual product insntnce. not public.
     63 	SHArchitecture(Console *&cons, MemoryManager *&mem, boot_func_t bootfunc)
     64 		: _boot_func(bootfunc), Architecture(cons, mem) {
     65 		// NO-OP
     66 	}
     67 	virtual ~SHArchitecture(void) { /* NO-OP */ }
     68 	virtual void cache_flush(void) = 0;
     69 
     70 public:
     71 	virtual BOOL init(void);
     72 	virtual BOOL setupLoader(void);
     73 	virtual void systemInfo(void);
     74 	virtual void jump(kaddr_t info, kaddr_t pvce);
     75 
     76 	// returns host machines CPU type. 3 for SH3. 4 for SH4
     77 	static int cpu_type(void);
     78 };
     79 
     80 //
     81 // SH product. setup cache flush routine and 2nd-bootloader.
     82 //
     83 
     84 //
     85 // SH3 series.
     86 ///
     87 #define	SH_(x)								\
     88 class SH ## x : public SHArchitecture {					\
     89 private:								\
     90 	typedef SHArchitecture super;					\
     91 public:									\
     92 	SH ## x(Console *&cons, MemoryManager *&mem, boot_func_t bootfunc)\
     93 		: SHArchitecture(cons, mem, bootfunc) {			\
     94 		DPRINTF((TEXT("CPU: SH") TEXT(#x) TEXT("\n")));		\
     95 		_dev = new SH3dev;					\
     96 	}								\
     97 	~SH ## x(void) {						\
     98 		delete _dev;						\
     99 	}								\
    100 									\
    101 	virtual BOOL init(void) {					\
    102 		int sz;							\
    103 									\
    104 		if (!super::init())					\
    105 			return FALSE;					\
    106 		/* SH7709, SH7709A split AREA3 to two area. */		\
    107 		sz = SH_AREA_SIZE / 2;					\
    108 		_mem->loadBank(SH_AREA3_START, sz);			\
    109 		_mem->loadBank(SH_AREA3_START + sz , sz);		\
    110 		return TRUE;						\
    111 	}								\
    112 									\
    113 	virtual void cache_flush(void) {				\
    114 		SH ## x ## _CACHE_FLUSH();				\
    115 	}								\
    116 									\
    117 	static void boot_func(struct BootArgs *, struct PageTag *);	\
    118 }
    119 
    120 SH_(7709);
    121 SH_(7709A);
    122 SH_(7707);
    123 
    124 //
    125 // SH4 series.
    126 ///
    127 class SH7750 : public SHArchitecture {
    128 private:
    129 	typedef SHArchitecture super;
    130 
    131 public:
    132 	SH7750(Console *&cons, MemoryManager *&mem, boot_func_t bootfunc)
    133 		: SHArchitecture(cons, mem, bootfunc) {
    134 		DPRINTF((TEXT("CPU: SH7750\n")));
    135 		_dev = new SH4dev;
    136 	}
    137 	~SH7750(void) {
    138 		delete _dev;
    139 	}
    140 
    141 	virtual BOOL init(void) {
    142 
    143 		if (!super::init())
    144 			return FALSE;
    145 		_mem->loadBank(SH_AREA3_START, SH_AREA_SIZE);
    146 
    147 		return TRUE;
    148 	}
    149 
    150 	virtual void cache_flush(void) {
    151 		//
    152 		// To invalidate I-cache, program must run on P2. I can't
    153 		// do it myself, use WinCE API. (WCE2.10 or later)
    154 		//
    155 		CacheSync(CACHE_D_WBINV);
    156 		CacheSync(CACHE_I_INV);
    157 	}
    158 
    159 	virtual BOOL setupLoader(void) {
    160 		//
    161 		// 2nd boot loader access cache address array. run on P2.
    162 		//
    163 		if (super::setupLoader()) {
    164 			(u_int32_t)_loader_addr |= 0x20000000;
    165 			DPRINTF
    166 			    ((TEXT("loader address moved to P2-area 0x%08x\n"),
    167 				(unsigned)_loader_addr));
    168 			return TRUE;
    169 		}
    170 
    171 		return FALSE;
    172 	}
    173 
    174 	static void boot_func(struct BootArgs *, struct PageTag *);
    175 };
    176 
    177 //
    178 // 2nd-bootloader.  make sure that PIC and its size is lower than page size.
    179 // and can't call subroutine.
    180 //
    181 #define	SH_BOOT_FUNC_(x)						\
    182 void									\
    183 SH##x##::boot_func(struct BootArgs *bi, struct PageTag *p)		\
    184 {									\
    185 /* Disable interrupt. block exception.(TLB exception don't occur) */	\
    186 	int tmp;							\
    187 	__asm("stc	sr, r5\n"					\
    188 	      "or	r4, r5\n"					\
    189 	      "ldc	r5, sr\n", 0x500000f0, tmp);			\
    190 	/* Now I run on P1(P2 for SH4), TLB flush. and disable. */	\
    191 									\
    192 	SH ## x ## _MMU_DISABLE();					\
    193 	do {								\
    194 		u_int32_t *dst =(u_int32_t *)p->dst;			\
    195 		u_int32_t *src =(u_int32_t *)p->src;			\
    196 		u_int32_t sz = p->sz / sizeof (int);			\
    197 		if (p->src == ~0)					\
    198 			while (sz--)					\
    199 				*dst++ = 0;				\
    200 		else	    						\
    201 			while (sz--)					\
    202 				*dst++ = *src++;			\
    203 	} while ((p =(struct PageTag *)p->next) != ~0);			\
    204 									\
    205 	SH ## x ## _CACHE_FLUSH();					\
    206 									\
    207 	/* jump to kernel entry. */					\
    208 	__asm("jmp	@r7\n"						\
    209 	      "nop\n", bi->argc, bi->argv,				\
    210 		 bi->bootinfo, bi->kernel_entry);			\
    211 }
    212 
    213 //   suspend/resume external Interrupt.
    214 //  (don't block) use under privilege mode.
    215 //
    216 __BEGIN_DECLS
    217 u_int32_t suspendIntr(void);
    218 void resumeIntr(u_int32_t);
    219 __END_DECLS
    220 
    221 #endif // _HPCBOOT_SH_ARCH_H_
    222