Home | History | Annotate | Line # | Download | only in include
mc68851.h revision 1.5
      1  1.5  jeremy /*	$NetBSD: mc68851.h,v 1.5 1997/05/14 01:37:23 jeremy Exp $	*/
      2  1.1     gwr 
      3  1.1     gwr /*-
      4  1.1     gwr  * Copyright (c) 1997 The NetBSD Foundation, Inc.
      5  1.1     gwr  * All rights reserved.
      6  1.1     gwr  *
      7  1.1     gwr  * This code is derived from software contributed to The NetBSD Foundation
      8  1.1     gwr  * by Jeremy Cooper.
      9  1.1     gwr  *
     10  1.1     gwr  * Redistribution and use in source and binary forms, with or without
     11  1.1     gwr  * modification, are permitted provided that the following conditions
     12  1.1     gwr  * are met:
     13  1.1     gwr  * 1. Redistributions of source code must retain the above copyright
     14  1.1     gwr  *    notice, this list of conditions and the following disclaimer.
     15  1.1     gwr  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.1     gwr  *    notice, this list of conditions and the following disclaimer in the
     17  1.1     gwr  *    documentation and/or other materials provided with the distribution.
     18  1.1     gwr  * 3. All advertising materials mentioning features or use of this software
     19  1.1     gwr  *    must display the following acknowledgement:
     20  1.1     gwr  *        This product includes software developed by the NetBSD
     21  1.1     gwr  *        Foundation, Inc. and its contributors.
     22  1.1     gwr  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.1     gwr  *    contributors may be used to endorse or promote products derived
     24  1.1     gwr  *    from this software without specific prior written permission.
     25  1.1     gwr  *
     26  1.1     gwr  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.1     gwr  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.1     gwr  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.1     gwr  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.1     gwr  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.1     gwr  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.1     gwr  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.1     gwr  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.1     gwr  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.1     gwr  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.1     gwr  * POSSIBILITY OF SUCH DAMAGE.
     37  1.1     gwr  */
     38  1.1     gwr 
     39  1.2     gwr /*
     40  1.5  jeremy  * This file contains the machine-independent definitions
     41  1.5  jeremy  * related to the Motorola MC68851 Memory Management Unit (MMU).
     42  1.2     gwr  * Things that depend on the contents of the Translation Control
     43  1.5  jeremy  * (TC) register are in <machine/pte.h>.
     44  1.2     gwr  */
     45  1.2     gwr 
     46  1.1     gwr #ifndef _SUN3X_MC68851_H
     47  1.1     gwr #define _SUN3X_MC68851_H
     48  1.1     gwr 
     49  1.1     gwr /**************************** MMU STRUCTURES ****************************
     50  1.1     gwr  * MMU structures define the format of data used by the MC68851.        *
     51  1.1     gwr  ************************************************************************
     52  1.5  jeremy  ** MC68851 Root Pointer
     53  1.3     gwr  * All address translations begin with the examination of the value
     54  1.3     gwr  * in the MC68851 Root Pointer register.  It describes the base address
     55  1.3     gwr  * (in physical memory) of the root table to be used as well as any limits
     56  1.3     gwr  * to the address range it supports.  Its structure is identical to a Long
     57  1.3     gwr  * Format Table Descriptor (described below.)
     58  1.2     gwr  */
     59  1.2     gwr struct mmu_rootptr {
     60  1.3     gwr 	u_long	rp_attr;	/* Lower/Upper Limit and access flags */
     61  1.3     gwr 	u_long	rp_addr;	/* Physical Base Address */
     62  1.2     gwr };
     63  1.3     gwr typedef struct mmu_rootptr mmu_rootptr_t;
     64  1.2     gwr 
     65  1.1     gwr 
     66  1.1     gwr /** MC68851 Long Format Table Descriptor
     67  1.1     gwr  * The root table for a sun3x pmap is a 128 element array of 'long format
     68  1.1     gwr  * table descriptors'.  The structure of a long format table descriptor is:
     69  1.1     gwr  *
     70  1.1     gwr  *  63                                                             48
     71  1.1     gwr  *  +---+---.---.---.---.---.---.---.---.---.---.---.---.---.---.---+
     72  1.1     gwr  *  |L/U|                 LIMIT                                     |
     73  1.1     gwr  *  +---+---.---+---.---.---+---+---+---+---+---+---+---+---+---.---+
     74  1.1     gwr  *  |    RAL    |    WAL    |SG | S | 0 | 0 | 0 | 0 | U |WP |DT (10)|
     75  1.1     gwr  *  +---.---.---+---.---.---+---+---+---+---+---+---+---+---+---.---+
     76  1.1     gwr  *  |              TABLE PHYSICAL ADDRESS (BITS 31-16)              |
     77  1.1     gwr  *  +---.---.---.---.---.---.---.---.---.---.---.---+---.---.---.---+
     78  1.1     gwr  *  |       TABLE PHYSICAL ADDRESS (15-4)           |     UNUSED    |
     79  1.1     gwr  *  +---.---.---.---.---.---.---.---.---.---.---.---+---.---.---.---+
     80  1.1     gwr  *  15                                                              0
     81  1.1     gwr  *
     82  1.1     gwr  * Note: keep the unused bits set to zero so that no masking of the
     83  1.1     gwr  *       base address is needed.
     84  1.1     gwr  */
     85  1.1     gwr struct mmu_long_dte_struct { /* 'dte' stands for 'descriptor table entry' */
     86  1.1     gwr 	union {
     87  1.1     gwr 		struct {
     88  1.1     gwr 			char	lu_flag:1;	/* Lower/Upper Limit flag */
     89  1.1     gwr 			int	limit:15;	/* Table Size limit */
     90  1.1     gwr 			char	ral:3;		/* Read Access Level */
     91  1.1     gwr 			char	wal:3;		/* Write Access Level */
     92  1.1     gwr 			char	sg:1;		/* Shared Globally flag */
     93  1.1     gwr 			char	supv:1;		/* Supervisor Only flag */
     94  1.1     gwr 			char	rsvd:4;		/* Reserved (All zeros) */
     95  1.1     gwr 			char	u:1;		/* Used flag */
     96  1.1     gwr 			char	wp:1;		/* Write Protect flag */
     97  1.1     gwr 			char	dt:2;		/* Descriptor Type */
     98  1.1     gwr 			/* Bit masks for fields above */
     99  1.1     gwr #define			MMU_LONG_DTE_LU    0x80000000
    100  1.1     gwr #define			MMU_LONG_DTE_LIMIT 0x7fff0000
    101  1.1     gwr #define			MMU_LONG_DTE_RAL   0x0000e000
    102  1.1     gwr #define			MMU_LONG_DTE_WAL   0x00001c00
    103  1.1     gwr #define			MMU_LONG_DTE_SG    0x00000200
    104  1.1     gwr #define			MMU_LONG_DTE_SUPV  0x00000100
    105  1.1     gwr #define			MMU_LONG_DTE_USED  0x00000008
    106  1.1     gwr #define			MMU_LONG_DTE_WP    0x00000004
    107  1.1     gwr #define			MMU_LONG_DTE_DT    0x00000003
    108  1.1     gwr 		} attr_struct;
    109  1.1     gwr 		u_long raw; /* struct above, addressable as a long */
    110  1.1     gwr 	} attr;
    111  1.1     gwr 	union	{
    112  1.1     gwr 		struct {
    113  1.1     gwr 			int	base_addr:28;	/* Physical base address
    114  1.1     gwr 			char	unused:4;	 * of the table pointed to
    115  1.1     gwr 						 * by this entry.
    116  1.1     gwr 						 */
    117  1.1     gwr 			/* Bit masks for fields above */
    118  1.1     gwr #define			MMU_LONG_DTE_BASEADDR   0xfffffff0
    119  1.1     gwr 		} addr_struct;
    120  1.1     gwr 		u_long	raw; /* struct above, addressable as a long */
    121  1.1     gwr 	} addr;
    122  1.1     gwr };
    123  1.1     gwr typedef struct mmu_long_dte_struct mmu_long_dte_t;
    124  1.1     gwr typedef struct mmu_long_dte_struct *mmu_long_dtbl_t;
    125  1.1     gwr 
    126  1.1     gwr /** MC68851 Long Format Page Descriptor
    127  1.1     gwr  * Although not likely to be used in this implementation, a level
    128  1.1     gwr  * 'A' table may contain long format PAGE descriptors.  A long format
    129  1.1     gwr  * page descriptor is the same size as a long format table descriptor.
    130  1.1     gwr  * Its discriminating feature to the MMU is its descriptor field: 01.
    131  1.1     gwr  *  63                                                             48
    132  1.1     gwr  *  +---.---.---.---.---.---.---.---.---.---.---.---.---.---.---.---+
    133  1.1     gwr  *  |                          UNUSED                               |
    134  1.1     gwr  *  +---.---.---+---.---.---+---+---+---+---+---+---+---+---+---.---+
    135  1.1     gwr  *  |    RAL    |    WAL    |SG | S | G |CI | L | M | U |WP |DT (01)|
    136  1.1     gwr  *  +---.---.---+---.---.---+---+---+---+---+---+---+---+---+---.---+
    137  1.1     gwr  *  |              TABLE PHYSICAL ADDRESS (BITS 31-16)              |
    138  1.1     gwr  *  +---.---.---.---.---.---.---.---.---.---.---.---.---.---.---.---+
    139  1.1     gwr  *  |TABLE PHYS. ADDRESS (15-8)     |            UNUSED             |
    140  1.1     gwr  *  +---.---.---.---.---.---.---.---.---.---.---.---.---.---.---.---+
    141  1.1     gwr  *  15                                                              0
    142  1.1     gwr  */
    143  1.1     gwr struct mmu_long_pte_struct { /* 'pte' stands for 'page table entry' */
    144  1.1     gwr 	union {
    145  1.1     gwr 		struct {
    146  1.1     gwr 			int	unused:16;	/* Unused */
    147  1.1     gwr 			char	ral:3;		/* Read Access Level */
    148  1.1     gwr 			char	wal:3;		/* Write Access Level */
    149  1.1     gwr 			char	sg:1;		/* Shared Globally flag */
    150  1.1     gwr 			char	supv:1;		/* Supervisor Only flag */
    151  1.1     gwr 			char	g:1;		/* Gate allowed */
    152  1.1     gwr 			char	ci:1;		/* Cache inhibit */
    153  1.1     gwr 			char	l:1;		/* Lock entry */
    154  1.1     gwr 			char	m:1;		/* Modified flag */
    155  1.1     gwr 			char	u:1;		/* Used flag */
    156  1.1     gwr 			char	wp:1;		/* Write Protect flag */
    157  1.1     gwr 			char	dt:2;		/* Descriptor Type */
    158  1.1     gwr 			/* Bit masks for fields above */
    159  1.1     gwr #define			MMU_LONG_PTE_RAL   0x0000e000
    160  1.1     gwr #define			MMU_LONG_PTE_WAL   0x00001c00
    161  1.1     gwr #define			MMU_LONG_PTE_SG    0x00000200
    162  1.1     gwr #define			MMU_LONG_PTE_SUPV  0x00000100
    163  1.1     gwr #define			MMU_LONG_PTE_GATE  0x00000080
    164  1.1     gwr #define			MMU_LONG_PTE_CI    0x00000040
    165  1.1     gwr #define			MMU_LONG_PTE_LOCK  0x00000020
    166  1.1     gwr #define			MMU_LONG_PTE_M     0x00000010
    167  1.1     gwr #define			MMU_LONG_PTE_USED  0x00000008
    168  1.1     gwr #define			MMU_LONG_PTE_WP    0x00000004
    169  1.1     gwr #define			MMU_LONG_PTE_DT    0x00000003
    170  1.1     gwr 		} attr_struct;
    171  1.1     gwr 		u_long	raw; /* struct above, addressable as a long */
    172  1.1     gwr 	} attr;
    173  1.1     gwr 	union	{
    174  1.1     gwr 		struct {
    175  1.1     gwr 			long	base_addr:24;	/* Physical base address
    176  1.1     gwr 			char	unused:8;	 * of page this entry
    177  1.1     gwr 						 * points to.
    178  1.1     gwr 						 */
    179  1.1     gwr 			/* Bit masks for fields above */
    180  1.1     gwr #define			MMU_LONG_PTE_BASEADDR   0xffffff00
    181  1.1     gwr 		} addr_struct;
    182  1.1     gwr 		u_long	raw; /* struct above, addressable as a long */
    183  1.1     gwr 	} addr;
    184  1.1     gwr };
    185  1.1     gwr typedef struct mmu_long_pte_struct mmu_long_pte_t;
    186  1.1     gwr typedef struct mmu_long_pte_struct *mmu_long_ptbl_t;
    187  1.1     gwr 
    188  1.1     gwr /* Every entry in the level A table (except for the page entries
    189  1.1     gwr  * described above) points to a level B table.  Level B tables are
    190  1.1     gwr  * arrays of 'short format' table descriptors.  Their structure
    191  1.1     gwr  * is smaller than an A table descriptor and is as follows:
    192  1.1     gwr  *
    193  1.1     gwr  * 31                                                             16
    194  1.1     gwr  * +---.---.---.---.---.---.---.---.---.---.---.---.---.---.---.---+
    195  1.1     gwr  * |           TABLE PHYSICAL BASE ADDRESS (BITS 31-16)            |
    196  1.1     gwr  * +---.---.---.---.---.---.---.---.---.---.---.---+---+---+---.---+
    197  1.1     gwr  * | TABLE PHYSICAL BASE ADDRESS (15-4)            | U |WP |DT (10)|
    198  1.1     gwr  * +---.---.---.---.---.---.---.---.---.---.---.---+---+---+---.---+
    199  1.1     gwr  * 15                                                              0
    200  1.1     gwr  */
    201  1.1     gwr struct mmu_short_dte_struct { /* 'dte' stands for 'descriptor table entry' */
    202  1.1     gwr 	union {
    203  1.1     gwr 		struct {
    204  1.1     gwr 			long	base_addr:28;
    205  1.1     gwr 			char	u:1;
    206  1.1     gwr 			char	wp:1;
    207  1.1     gwr 			char	dt:2;
    208  1.1     gwr #define			MMU_SHORT_DTE_BASEADDR	0xfffffff0
    209  1.1     gwr #define			MMU_SHORT_DTE_USED	0x00000008
    210  1.1     gwr #define			MMU_SHORT_DTE_WP	0x00000004
    211  1.1     gwr #define			MMU_SHORT_DTE_DT	0x00000003
    212  1.1     gwr 		} attr_struct;
    213  1.1     gwr 		u_long	raw;
    214  1.1     gwr 	} attr;
    215  1.1     gwr };
    216  1.1     gwr typedef struct mmu_short_dte_struct mmu_short_dte_t;
    217  1.1     gwr typedef struct mmu_short_dte_struct *mmu_short_dtbl_t;
    218  1.1     gwr 
    219  1.1     gwr /* Every entry in a level B table points to a level C table.  Level C tables
    220  1.1     gwr  * contain arrays of short format page 'entry' descriptors.  A short format
    221  1.1     gwr  * page 'entry' is the same size as a short format page 'table'
    222  1.1     gwr  * descriptor (a B table entry).  Thus B and C tables can be allocated
    223  1.1     gwr  * interchangeably from the same pool.  However, we will keep them separate.
    224  1.1     gwr  *
    225  1.1     gwr  * The descriptor type (DT) field of a Page Table Entry (PTE) is '01'. This
    226  1.1     gwr  * indicates to the MMU that the address contained in the PTE's 'base
    227  1.1     gwr  * address' field is the base address for a physical page in memory to which
    228  1.1     gwr  * the VA should be mapped, and not a base address for a yet another
    229  1.1     gwr  * descriptor table, thus ending the table walk.
    230  1.1     gwr  *
    231  1.1     gwr  * 31                                                             16
    232  1.1     gwr  * +---.---.---.---.---.---.---.---.---.---.---.---.---.---.---.---+
    233  1.1     gwr  * |           TABLE PHYSICAL BASE ADDRESS (BITS 31-16)            |
    234  1.1     gwr  * +---.---.---.---.---.---.---.---+---+---+---+---+---+---+---.---+
    235  1.1     gwr  * |TABLE PHYS. BASE ADDRESS (15-8)| G |CI | L | M | U |WP |DT (10)|
    236  1.1     gwr  * +---.---.---.---.---.---.---.---+---+---+---+---+---+---+---.---+
    237  1.1     gwr  * 15                                                              0
    238  1.1     gwr  */
    239  1.1     gwr struct mmu_short_pte_struct { /* 'pte' stands for 'page table entry' */
    240  1.1     gwr 	union {
    241  1.1     gwr 		struct {
    242  1.1     gwr 			long	base_addr:24;
    243  1.1     gwr 			char	g:1;
    244  1.1     gwr 			char	ci:1;
    245  1.1     gwr 			char	l:1;
    246  1.1     gwr 			char	m:1;
    247  1.1     gwr 			char	u:1;
    248  1.1     gwr 			char	wp:1;
    249  1.1     gwr 			char	dt:2;
    250  1.1     gwr #define			MMU_SHORT_PTE_BASEADDR 0xffffff00
    251  1.1     gwr #define			MMU_SHORT_PTE_UN2      0x00000080
    252  1.1     gwr #define			MMU_SHORT_PTE_CI       0x00000040
    253  1.1     gwr #define			MMU_SHORT_PTE_UN1      0x00000020
    254  1.1     gwr #define			MMU_SHORT_PTE_M        0x00000010
    255  1.1     gwr #define			MMU_SHORT_PTE_USED     0x00000008
    256  1.1     gwr #define			MMU_SHORT_PTE_WP       0x00000004
    257  1.1     gwr #define			MMU_SHORT_PTE_DT       0x00000003
    258  1.1     gwr 		} attr_struct;
    259  1.1     gwr 		u_long raw;
    260  1.1     gwr 	} attr;
    261  1.1     gwr };
    262  1.1     gwr typedef struct mmu_short_pte_struct mmu_short_pte_t;
    263  1.1     gwr typedef struct mmu_short_pte_struct *mmu_short_ptbl_t;
    264  1.1     gwr 
    265  1.1     gwr /* These are bit masks and other values that are common to all types of
    266  1.1     gwr  * descriptors.
    267  1.1     gwr  */
    268  1.1     gwr /* Page table descriptors have a 'Descriptor Type' field describing the
    269  1.1     gwr  * format of the tables they point to.  It is two bits wide and is one of:
    270  1.1     gwr  */
    271  1.1     gwr #define MMU_DT_INVALID	0x0 /* Invalid descriptor entry            */
    272  1.1     gwr #define MMU_DT_PAGE	0x1 /* Descriptor describes a page entry   */
    273  1.1     gwr #define MMU_DT_SHORT	0x2 /*   describes a short format table    */
    274  1.1     gwr #define MMU_DT_LONG	0x3 /*   describes a long format table     */
    275  1.1     gwr #define MMU_DT_MASK	0x00000003 /* Bit location of the DT field */
    276  1.1     gwr 
    277  1.1     gwr /* Various macros for manipulating and setting MMU descriptor
    278  1.1     gwr  * characteristics.
    279  1.1     gwr  */
    280  1.1     gwr /* returns true if a descriptor is valid. */
    281  1.1     gwr #define MMU_VALID_DT(dte)	((dte).attr.raw & MMU_DT_MASK)
    282  1.1     gwr /* returns true if a descriptor is invalid */
    283  1.1     gwr #define	MMU_INVALID_DT(dte)	(!((dte).attr.raw & MMU_DT_MASK))
    284  1.1     gwr /* returns true if a descriptor has been referenced */
    285  1.1     gwr #define MMU_PTE_USED(pte)	((pte).attr.raw & MMU_SHORT_PTE_USED)
    286  1.1     gwr /* returns true if a descriptor has been modified */
    287  1.1     gwr #define MMU_PTE_MODIFIED(pte)	((pte).attr.raw & MMU_SHORT_PTE_M)
    288  1.1     gwr /* extracts the physical address from a pte */
    289  1.1     gwr #define MMU_PTE_PA(pte)		((pte).attr.raw & MMU_SHORT_PTE_BASEADDR)
    290  1.1     gwr /* extracts the physical address from a dte */
    291  1.1     gwr #define MMU_DTE_PA(dte)		((dte).attr.raw & MMU_SHORT_DTE_BASEADDR)
    292  1.1     gwr 
    293  1.1     gwr #endif /* _SUN3X_MC68851_H */
    294