Home | History | Annotate | Line # | Download | only in include
mmu_sh4.h revision 1.1
      1  1.1  uch /*	$NetBSD: mmu_sh4.h,v 1.1 2002/02/17 20:55:51 uch Exp $	*/
      2  1.1  uch 
      3  1.1  uch /*-
      4  1.1  uch  * Copyright (c) 2002 The NetBSD Foundation, Inc.
      5  1.1  uch  * All rights reserved.
      6  1.1  uch  *
      7  1.1  uch  * This code is derived from software contributed to The NetBSD Foundation
      8  1.1  uch  * by UCHIYAMA Yasushi.
      9  1.1  uch  *
     10  1.1  uch  * Redistribution and use in source and binary forms, with or without
     11  1.1  uch  * modification, are permitted provided that the following conditions
     12  1.1  uch  * are met:
     13  1.1  uch  * 1. Redistributions of source code must retain the above copyright
     14  1.1  uch  *    notice, this list of conditions and the following disclaimer.
     15  1.1  uch  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.1  uch  *    notice, this list of conditions and the following disclaimer in the
     17  1.1  uch  *    documentation and/or other materials provided with the distribution.
     18  1.1  uch  * 3. All advertising materials mentioning features or use of this software
     19  1.1  uch  *    must display the following acknowledgement:
     20  1.1  uch  *        This product includes software developed by the NetBSD
     21  1.1  uch  *        Foundation, Inc. and its contributors.
     22  1.1  uch  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.1  uch  *    contributors may be used to endorse or promote products derived
     24  1.1  uch  *    from this software without specific prior written permission.
     25  1.1  uch  *
     26  1.1  uch  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.1  uch  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.1  uch  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.1  uch  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.1  uch  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.1  uch  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.1  uch  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.1  uch  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.1  uch  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.1  uch  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.1  uch  * POSSIBILITY OF SUCH DAMAGE.
     37  1.1  uch  */
     38  1.1  uch 
     39  1.1  uch #ifndef _SH3_MMU_SH4_H_
     40  1.1  uch #define _SH3_MMU_SH4_H_
     41  1.1  uch 
     42  1.1  uch /* ITLB 4-entry full-associative UTLB 64-entry full-associative */
     43  1.1  uch #define SH4_PTEH			0xff000000
     44  1.1  uch #define   SH4_PTEH_VPN_MASK		  0xfffffc00
     45  1.1  uch #define   SH4_PTEH_ASID_MASK		  0x0000000f
     46  1.1  uch #define SH4_PTEL			0xff000004
     47  1.1  uch #define   SH4_PTEL_WT			  0x00000001
     48  1.1  uch #define   SH4_PTEL_SH			  0x00000002
     49  1.1  uch #define   SH4_PTEL_D			  0x00000004
     50  1.1  uch #define   SH4_PTEL_C			  0x00000008
     51  1.1  uch #define   SH4_PTEL_PR_SHIFT		  5
     52  1.1  uch #define   SH4_PTEL_PR_MASK		  0x00000060	/* [5:6] */
     53  1.1  uch #define   SH4_PTEL_SZ_MASK		  0x00000090	/* [4][7] */
     54  1.1  uch #define     SH4_PTEL_SZ_1K		  0x00000000
     55  1.1  uch #define     SH4_PTEL_SZ_4K		  0x00000010
     56  1.1  uch #define     SH4_PTEL_SZ_64K		  0x00000080
     57  1.1  uch #define     SH4_PTEL_SZ_1M		  0x00000090
     58  1.1  uch #define   SH4_PTEL_V			  0x00000100
     59  1.1  uch #define   SH4_PTEL_HWBITS		  0x1ffff1ff /* [28:12]PFN [8:0]attr. */
     60  1.1  uch 
     61  1.1  uch #define SH4_PTEA			0xff000034
     62  1.1  uch #define   SH4_PTEA_SA_MASK		  0x00000007
     63  1.1  uch #define   SH4_PTEA_SA_TC		  0x00000008
     64  1.1  uch #define SH4_TTB				0xff000008
     65  1.1  uch #define SH4_TEA				0xff00000c
     66  1.1  uch #define SH4_MMUCR			0xff000010
     67  1.1  uch #define   SH4_MMUCR_AT			  0x00000001
     68  1.1  uch #define   SH4_MMUCR_TI			  0x00000004
     69  1.1  uch #define   SH4_MMUCR_SV			  0x00000100
     70  1.1  uch #define   SH4_MMUCR_SQMD		  0x00000200
     71  1.1  uch #define   SH4_MMUCR_URC_SHIFT		  10
     72  1.1  uch #define   SH4_MMUCR_URC_MASK		  0x0000fc00	/* [10:15] */
     73  1.1  uch #define   SH4_MMUCR_URB_SHIFT		  18
     74  1.1  uch #define   SH4_MMUCR_URB_MASK		  0x00fc0000	/* [18:23] */
     75  1.1  uch #define   SH4_MMUCR_LRUI_SHIFT		  26
     76  1.1  uch #define   SH4_MMUCR_LRUT_MASK		  0xfc000000	/* [26:31] */
     77  1.1  uch 
     78  1.1  uch #define   SH4_MMUCR_MASK	(SH4_MMUCR_LRUT_MASK | SH4_MMUCR_URB_MASK | \
     79  1.1  uch     SH4_MMUCR_URC_MASK | SH4_MMUCR_SQMD | SH4_MMUCR_SV | SH4_MMUCR_AT)
     80  1.1  uch /*
     81  1.1  uch  * memory-mapped TLB
     82  1.1  uch  *	must be access from P2-area program.
     83  1.1  uch  *	branch to the other area must be maed at least 8 instruction
     84  1.1  uch  *	after access.
     85  1.1  uch  */
     86  1.1  uch #define SH4_ITLB_ENTRY		4
     87  1.1  uch #define SH4_UTLB_ENTRY		64
     88  1.1  uch 
     89  1.1  uch /* ITLB */
     90  1.1  uch #define SH4_ITLB_AA			0xf2000000
     91  1.1  uch /* address specification (common for address and data array(0,1)) */
     92  1.1  uch #define   SH4_ITLB_E_SHIFT		  8
     93  1.1  uch #define   SH4_ITLB_E_MASK		  0x00000300	/* [9:8] */
     94  1.1  uch /* data specification */
     95  1.1  uch /* address-array */
     96  1.1  uch #define   SH4_ITLB_AA_ASID_MASK		  0x000000ff	/* [7:0] */
     97  1.1  uch #define   SH4_ITLB_AA_V			  0x00000100
     98  1.1  uch #define   SH4_ITLB_AA_VPN_SHIFT		  10
     99  1.1  uch #define   SH4_ITLB_AA_VPN_MASK		  0xfffffc00	/* [31:10] */
    100  1.1  uch /* data-array 1 */
    101  1.1  uch #define SH4_ITLB_DA1			0xf3000000
    102  1.1  uch #define   SH4_ITLB_DA1_SH		  0x00000002
    103  1.1  uch #define   SH4_ITLB_DA1_C		  0x00000008
    104  1.1  uch #define   SH4_ITLB_DA1_SZ_MASK		  0x00000090	/* [7][4] */
    105  1.1  uch #define     SH4_ITLB_DA1_SZ_1K		  0x00000000
    106  1.1  uch #define     SH4_ITLB_DA1_SZ_4K		  0x00000010
    107  1.1  uch #define     SH4_ITLB_DA1_SZ_64K		  0x00000080
    108  1.1  uch #define     SH4_ITLB_DA1_SZ_1M		  0x00000090
    109  1.1  uch #define   SH4_ITLB_DA1_PR		  0x00000040
    110  1.1  uch #define   SH4_ITLB_DA1_V		  0x00000100
    111  1.1  uch #define   SH4_ITLB_DA1_PPN_SHIFT	  11
    112  1.1  uch #define   SH4_ITLB_DA1_PPN_MASK		  0x1ffffc00	/* [28:10] */
    113  1.1  uch /* data-array 2 */
    114  1.1  uch #define SH4_ITLB_DA2			0xf3800000
    115  1.1  uch #define   SH4_ITLB_DA2_SA_MASK		  0x00000003
    116  1.1  uch #define   SH4_ITLB_DA2_TC		  0x00000004
    117  1.1  uch 
    118  1.1  uch /* UTLB */
    119  1.1  uch #define SH4_UTLB_AA			0xf6000000
    120  1.1  uch /* address specification (common for address and data array(0,1)) */
    121  1.1  uch #define   SH4_UTLB_E_SHIFT		  8
    122  1.1  uch #define   SH4_UTLB_E_MASK		  0x00003f00
    123  1.1  uch #define   SH4_UTLB_A			  0x00000080
    124  1.1  uch /* data specification */
    125  1.1  uch /* address-array */
    126  1.1  uch #define   SH4_UTLB_AA_VPN_MASK		  0xfffffc00	/* [31:10] */
    127  1.1  uch #define   SH4_UTLB_AA_D			  0x00000200
    128  1.1  uch #define   SH4_UTLB_AA_V			  0x00000100
    129  1.1  uch #define   SH4_UTLB_AA_ASID_MASK		  0x000000ff	/* [7:0] */
    130  1.1  uch /* data-array 1 */
    131  1.1  uch #define SH4_UTLB_DA1			0xf7000000
    132  1.1  uch #define   SH4_UTLB_DA1_WT		  0x00000001
    133  1.1  uch #define   SH4_UTLB_DA1_SH		  0x00000002
    134  1.1  uch #define   SH4_UTLB_DA1_D		  0x00000004
    135  1.1  uch #define   SH4_UTLB_DA1_C		  0x00000008
    136  1.1  uch #define   SH4_UTLB_DA1_SZ_MASK		  0x00000090	/* [7][4] */
    137  1.1  uch #define     SH4_UTLB_DA1_SZ_1K		  0x00000000
    138  1.1  uch #define     SH4_UTLB_DA1_SZ_4K		  0x00000010
    139  1.1  uch #define     SH4_UTLB_DA1_SZ_64K		  0x00000080
    140  1.1  uch #define     SH4_UTLB_DA1_SZ_1M		  0x00000090
    141  1.1  uch #define   SH4_UTLB_DA1_PR_SHIFT		  5
    142  1.1  uch #define   SH4_UTLB_DA1_PR_MASK		  0x00000060
    143  1.1  uch #define   SH4_UTLB_DA1_V		  0x00000100
    144  1.1  uch #define   SH4_UTLB_DA1_PPN_SHIFT	  11
    145  1.1  uch #define   SH4_UTLB_DA1_PPN_MASK		  0x1ffffc00	/* [28:10] */
    146  1.1  uch /* data-array 2 */
    147  1.1  uch #define SH4_UTLB_DA2			0xf7800000
    148  1.1  uch #define   SH4_UTLB_DA2_SA_MASK		  0x00000003
    149  1.1  uch #define   SH4_UTLB_DA2_TC		  0x00000004
    150  1.1  uch 
    151  1.1  uch #endif !_SH3_MMU_SH4_H_
    152