Home | History | Annotate | Line # | Download | only in oea
bat.h revision 1.11.2.1
      1  1.11.2.1     yamt /*	$NetBSD: bat.h,v 1.11.2.1 2008/05/18 12:32:37 yamt Exp $	*/
      2       1.1     matt 
      3       1.1     matt /*-
      4       1.1     matt  * Copyright (c) 1999 The NetBSD Foundation, Inc.
      5       1.1     matt  * All rights reserved.
      6       1.1     matt  *
      7       1.1     matt  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1     matt  * by Jason R. Thorpe.
      9       1.1     matt  *
     10       1.1     matt  * Redistribution and use in source and binary forms, with or without
     11       1.1     matt  * modification, are permitted provided that the following conditions
     12       1.1     matt  * are met:
     13       1.1     matt  * 1. Redistributions of source code must retain the above copyright
     14       1.1     matt  *    notice, this list of conditions and the following disclaimer.
     15       1.1     matt  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1     matt  *    notice, this list of conditions and the following disclaimer in the
     17       1.1     matt  *    documentation and/or other materials provided with the distribution.
     18       1.1     matt  *
     19       1.1     matt  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20       1.1     matt  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21       1.1     matt  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22       1.1     matt  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23       1.1     matt  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24       1.1     matt  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25       1.1     matt  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26       1.1     matt  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27       1.1     matt  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28       1.1     matt  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29       1.1     matt  * POSSIBILITY OF SUCH DAMAGE.
     30       1.1     matt  */
     31       1.1     matt 
     32       1.1     matt /*
     33       1.1     matt  * Copyright (C) 1995, 1996 Wolfgang Solfrank.
     34       1.1     matt  * Copyright (C) 1995, 1996 TooLs GmbH.
     35       1.1     matt  * All rights reserved.
     36       1.1     matt  *
     37       1.1     matt  * Redistribution and use in source and binary forms, with or without
     38       1.1     matt  * modification, are permitted provided that the following conditions
     39       1.1     matt  * are met:
     40       1.1     matt  * 1. Redistributions of source code must retain the above copyright
     41       1.1     matt  *    notice, this list of conditions and the following disclaimer.
     42       1.1     matt  * 2. Redistributions in binary form must reproduce the above copyright
     43       1.1     matt  *    notice, this list of conditions and the following disclaimer in the
     44       1.1     matt  *    documentation and/or other materials provided with the distribution.
     45       1.1     matt  * 3. All advertising materials mentioning features or use of this software
     46       1.1     matt  *    must display the following acknowledgement:
     47       1.1     matt  *	This product includes software developed by TooLs GmbH.
     48       1.1     matt  * 4. The name of TooLs GmbH may not be used to endorse or promote products
     49       1.1     matt  *    derived from this software without specific prior written permission.
     50       1.1     matt  *
     51       1.1     matt  * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
     52       1.1     matt  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     53       1.1     matt  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     54       1.1     matt  * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     55       1.1     matt  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
     56       1.1     matt  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
     57       1.1     matt  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
     58       1.1     matt  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
     59       1.1     matt  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
     60       1.1     matt  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     61       1.1     matt  */
     62       1.1     matt 
     63       1.1     matt #ifndef	_POWERPC_OEA_BAT_H_
     64       1.1     matt #define	_POWERPC_OEA_BAT_H_
     65       1.1     matt 
     66       1.5     matt #ifndef _LOCORE
     67       1.1     matt struct bat {
     68       1.2     matt 	register_t batu;
     69       1.2     matt 	register_t batl;
     70       1.1     matt };
     71       1.5     matt #endif
     72       1.1     matt 
     73       1.1     matt /* Lower BAT bits (all but PowerPC 601): */
     74       1.3     matt #define	BAT_RPN		(~0x1ffff)	/* physical block start */
     75       1.6     matt #define	BAT_XPN		0x00000e00	/* eXtended physical page number (0-2) */
     76       1.1     matt #define	BAT_W		0x00000040	/* 1 = write-through, 0 = write-back */
     77       1.1     matt #define	BAT_I		0x00000020	/* cache inhibit */
     78       1.1     matt #define	BAT_M		0x00000010	/* memory coherency enable */
     79       1.1     matt #define	BAT_G		0x00000008	/* guarded region (not on 601) */
     80       1.6     matt #define	BAT_X		0x00000004	/* eXtended physical page number (3) */
     81      1.10     matt #define	BAT_WIMG	0x00000078	/* WIMG mask */
     82       1.6     matt 
     83       1.6     matt /*
     84       1.6     matt  * BAT_XPN and BAT_X are only used when HID0[XAEN] == 1 and are used
     85       1.6     matt  * to generate the 4 MSB of physical address
     86       1.6     matt  */
     87       1.1     matt 
     88       1.2     matt #define	BAT_PP		0x00000003	/* PP mask */
     89       1.1     matt #define	BAT_PP_NONE	0x00000000	/* no access permission */
     90       1.1     matt #define	BAT_PP_RO_S	0x00000001	/* read-only (soft) */
     91       1.1     matt #define	BAT_PP_RW	0x00000002	/* read/write */
     92       1.1     matt #define	BAT_PP_RO	0x00000003	/* read-only */
     93       1.1     matt 
     94       1.1     matt /* Upper BAT bits (all but PowerPC 601): */
     95       1.3     matt #define	BAT_EPI		(~0x1ffffL)	/* effective block start */
     96       1.1     matt #define	BAT_BL		0x00001ffc	/* block length */
     97       1.1     matt #define	BAT_Vs		0x00000002	/* valid in supervisor mode */
     98       1.1     matt #define	BAT_Vu		0x00000001	/* valid in user mode */
     99       1.1     matt 
    100       1.6     matt #define	BAT_XBL		0x0001e000	/* eXtended Block Length (*) */
    101       1.6     matt #define	BAT_XBL_512M	0x00002000	/* XBL for 512MB */
    102       1.6     matt #define	BAT_XBL_1G	0x00006000	/* XBL for 1GB */
    103       1.6     matt #define	BAT_XBL_2G	0x0000e000	/* XBL for 2GB */
    104       1.6     matt #define	BAT_XBL_4G	0x0001e000	/* XBL for 4GB */
    105       1.6     matt 
    106       1.1     matt #define	BAT_V		(BAT_Vs|BAT_Vu)
    107       1.1     matt 
    108       1.1     matt /* Block Length encoding (all but PowerPC 601): */
    109       1.1     matt #define	BAT_BL_128K	0x00000000
    110       1.1     matt #define	BAT_BL_256K	0x00000004
    111       1.1     matt #define	BAT_BL_512K	0x0000000c
    112       1.1     matt #define	BAT_BL_1M	0x0000001c
    113       1.1     matt #define	BAT_BL_2M	0x0000003c
    114       1.1     matt #define	BAT_BL_4M	0x0000007c
    115       1.1     matt #define	BAT_BL_8M	0x000000fc
    116       1.1     matt #define	BAT_BL_16M	0x000001fc
    117       1.1     matt #define	BAT_BL_32M	0x000003fc
    118       1.1     matt #define	BAT_BL_64M	0x000007fc
    119       1.1     matt #define	BAT_BL_128M	0x00000ffc
    120       1.1     matt #define	BAT_BL_256M	0x00001ffc
    121      1.10     matt /* Extended Block Lengths (7455+) */
    122      1.10     matt #define	BAT_BL_512M	0x00003ffc
    123      1.10     matt #define	BAT_BL_1G	0x00007ffc
    124      1.10     matt #define	BAT_BL_2G	0x0000fffc
    125      1.10     matt #define	BAT_BL_4G	0x0001fffc
    126       1.1     matt 
    127       1.1     matt #define	BATU(va, len, v)						\
    128       1.2     matt 	(((va) & BAT_EPI) | ((len) & BAT_BL) | ((v) & BAT_V))
    129       1.1     matt 
    130       1.1     matt #define	BATL(pa, wimg, pp)						\
    131       1.2     matt 	(((pa) & BAT_RPN) | (wimg) | (pp))
    132       1.1     matt 
    133       1.1     matt #define BAT_VA_MATCH_P(batu,va) \
    134       1.2     matt   (((~(((batu)&BAT_BL)<<15))&(va)&BAT_EPI)==((batu)&BAT_EPI))
    135       1.1     matt 
    136       1.5     matt #define BAT_PA_MATCH_P(batu,batl,pa) \
    137       1.5     matt   (((~(((batu)&BAT_BL)<<15))&(pa)&BAT_RPN)==((batl)&BAT_RPN))
    138       1.5     matt 
    139       1.1     matt #define BAT_VALID_P(batu, msr) \
    140       1.1     matt   (((msr)&PSL_PR)?(((batu)&BAT_Vu)==BAT_Vu):(((batu)&BAT_Vs)==BAT_Vs))
    141       1.1     matt 
    142       1.1     matt /* Lower BAT bits (PowerPC 601): */
    143       1.1     matt #define	BAT601_PBN	0xfffe0000	/* physical block number */
    144       1.1     matt #define	BAT601_V	0x00000040	/* valid */
    145       1.1     matt #define	BAT601_BSM	0x0000003f	/* block size mask */
    146       1.1     matt 
    147       1.1     matt /* Upper BAT bits (PowerPC 601): */
    148       1.1     matt #define	BAT601_BLPI	0xfffe0000	/* block logical page index */
    149       1.1     matt #define	BAT601_W	0x00000040	/* 1 = write-through, 0 = write-back */
    150       1.1     matt #define	BAT601_I	0x00000020	/* cache inhibit */
    151       1.1     matt #define	BAT601_M	0x00000010	/* memory coherency enable */
    152       1.1     matt #define	BAT601_Ks	0x00000008	/* key-supervisor */
    153       1.1     matt #define	BAT601_Ku	0x00000004	/* key-user */
    154       1.1     matt 
    155       1.1     matt /*
    156       1.1     matt  * Permission bits on the PowerPC 601 are modified by the appropriate
    157       1.1     matt  * Key bit:
    158       1.1     matt  *
    159       1.1     matt  *	Key	PP	Access
    160       1.1     matt  *	0	NONE	read/write
    161       1.1     matt  *	0	RO_S	read/write
    162       1.1     matt  *	0	RW	read/write
    163       1.1     matt  *	0	RO	read-only
    164       1.1     matt  *
    165       1.1     matt  *	1	NONE	none
    166       1.1     matt  *	1	RO_S	read-only
    167       1.1     matt  *	1	RW	read/write
    168       1.1     matt  *	1	RO	read-only
    169       1.1     matt  */
    170       1.1     matt #define	BAT601_PP	0x00000003
    171       1.1     matt #define	BAT601_PP_NONE	0x00000000	/* no access permission */
    172       1.1     matt #define	BAT601_PP_RO_S	0x00000001	/* read-only (soft) */
    173       1.1     matt #define	BAT601_PP_RW	0x00000002	/* read/write */
    174       1.1     matt #define	BAT601_PP_RO	0x00000003	/* read-only */
    175       1.1     matt 
    176       1.1     matt /* Block Size Mask encoding (PowerPC 601): */
    177       1.1     matt #define	BAT601_BSM_128K	0x00000000
    178       1.1     matt #define	BAT601_BSM_256K	0x00000001
    179       1.1     matt #define	BAT601_BSM_512K	0x00000003
    180       1.1     matt #define	BAT601_BSM_1M	0x00000007
    181       1.1     matt #define	BAT601_BSM_2M	0x0000000f
    182       1.1     matt #define	BAT601_BSM_4M	0x0000001f
    183       1.1     matt #define	BAT601_BSM_8M	0x0000003f
    184       1.1     matt 
    185       1.1     matt #define	BATU601(va, wim, key, pp)					\
    186       1.1     matt 	(((va) & BAT601_BLPI) | (wim) | (key) | (pp))
    187       1.1     matt 
    188       1.1     matt #define	BATL601(pa, size, v)						\
    189       1.1     matt 	(((pa) & BAT601_PBN) | (v) | (size))
    190       1.1     matt 
    191       1.1     matt #define	BAT601_VA_MATCH_P(batu, batl, va)				\
    192       1.1     matt 	(((~(((batl)&BAT601_BSM)<<17))&(va)&BAT601_BLPI)==((batu)&BAT601_BLPI))
    193       1.1     matt 
    194       1.1     matt #define	BAT601_VALID_P(batl) \
    195       1.1     matt 	((batl) & BAT601_V)
    196       1.1     matt 
    197      1.11     matt #define	BAT_VA2IDX(va)	((va) >> ADDR_SR_SHFT)
    198      1.11     matt 
    199       1.1     matt #ifdef	_KERNEL
    200       1.5     matt #ifndef _LOCORE
    201       1.1     matt void oea_batinit(paddr_t, ...);
    202       1.1     matt void oea_iobat_add(paddr_t, register_t);
    203       1.4     matt void oea_iobat_remove(paddr_t);
    204       1.8  sanjayl 
    205       1.9  garbled #if !defined (PPC_OEA64)
    206       1.1     matt extern struct bat battable[];
    207       1.8  sanjayl #endif /* PPC_OEA */
    208       1.5     matt #endif
    209       1.1     matt #endif
    210       1.1     matt 
    211       1.1     matt #endif	/* _POWERPC_OEA_BAT_H_ */
    212