1 1.5 uwe /* $NetBSD: ubcreg.h,v 1.5 2008/06/06 03:17:28 uwe Exp $ */ 2 1.1 itojun 3 1.1 itojun /*- 4 1.1 itojun * Copyright (C) 1999 SAITOH Masanobu. All rights reserved. 5 1.1 itojun * 6 1.1 itojun * Redistribution and use in source and binary forms, with or without 7 1.1 itojun * modification, are permitted provided that the following conditions 8 1.1 itojun * are met: 9 1.1 itojun * 1. Redistributions of source code must retain the above copyright 10 1.1 itojun * notice, this list of conditions and the following disclaimer. 11 1.1 itojun * 2. Redistributions in binary form must reproduce the above copyright 12 1.1 itojun * notice, this list of conditions and the following disclaimer in the 13 1.1 itojun * documentation and/or other materials provided with the distribution. 14 1.1 itojun * 3. The name of the author may not be used to endorse or promote products 15 1.1 itojun * derived from this software without specific prior written permission. 16 1.1 itojun * 17 1.1 itojun * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 18 1.1 itojun * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 19 1.1 itojun * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 20 1.1 itojun * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 21 1.1 itojun * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 22 1.1 itojun * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23 1.1 itojun * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24 1.1 itojun * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 1.1 itojun * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 26 1.1 itojun * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 1.1 itojun */ 28 1.1 itojun 29 1.1 itojun #ifndef _SH3_UBCREG_H_ 30 1.3 uch #define _SH3_UBCREG_H_ 31 1.2 uch #include <sh3/devreg.h> 32 1.1 itojun 33 1.1 itojun /* 34 1.1 itojun * User Break Controller 35 1.1 itojun */ 36 1.1 itojun 37 1.5 uwe /* Channel A */ 38 1.5 uwe #define SH3_BARA 0xffffffb0 /* 32: address */ 39 1.5 uwe #define SH3_BAMRA 0xffffffb4 /* 32: address mask */ 40 1.5 uwe #define SH3_BASRA 0xffffffe4 /* 16: ASID */ 41 1.5 uwe #define SH3_BBRA 0xffffffb8 /* 16: bus cycle */ 42 1.5 uwe /* Channel B */ 43 1.5 uwe #define SH3_BARB 0xffffffa0 /* 32: address */ 44 1.5 uwe #define SH3_BAMRB 0xffffffa4 /* 32: address mask */ 45 1.5 uwe #define SH3_BDRB 0xffffff90 /* 32: data */ 46 1.5 uwe #define SH3_BDMRB 0xffffff94 /* 32: data mask */ 47 1.5 uwe #define SH3_BASRB 0xffffffe8 /* 16: asid */ 48 1.5 uwe #define SH3_BBRB 0xffffffa8 /* 16: bus cycle */ 49 1.5 uwe /* Common */ 50 1.5 uwe #define SH3_BRCR 0xffffff98 /* 32: control */ 51 1.5 uwe 52 1.5 uwe 53 1.5 uwe /* Channel A */ 54 1.5 uwe #define SH4_BARA 0xff200000 /* 32: address */ 55 1.5 uwe #define SH4_BAMRA 0xff200004 /* 8: address/asid mask */ 56 1.5 uwe #define SH4_BASRA 0xff000014 /* 8: ASID */ 57 1.5 uwe #define SH4_BBRA 0xff200008 /* 16: bus cycle */ 58 1.5 uwe 59 1.5 uwe /* Channel B */ 60 1.5 uwe #define SH4_BARB 0xff20000c /* 32: address */ 61 1.5 uwe #define SH4_BAMRB 0xff200010 /* 8: address/asid mask */ 62 1.5 uwe #define SH4_BASRB 0xff000018 /* 8: ASID */ 63 1.5 uwe #define SH4_BDRB 0xff200018 /* 32: data */ 64 1.5 uwe #define SH4_BDMRB 0xff20001c /* 32: data mask */ 65 1.5 uwe #define SH4_BBRB 0xff200014 /* 16: bus cycle */ 66 1.3 uch /* common */ 67 1.5 uwe #define SH4_BRCR 0xff200020 /* 16: control */ 68 1.1 itojun 69 1.1 itojun 70 1.5 uwe /* SH4_BAMRx bits (sh3 uses plain 32-bit address mask) */ 71 1.5 uwe #define SH4_UBC_MASK_ASID 0x04 /* ignore BASRx */ 72 1.5 uwe #define SH4_UBC_MASK_MASK 0x0b /* mask BARx: */ 73 1.5 uwe #define SH4_UBC_MASK_NONE 0x00 /* - compare all bits */ 74 1.5 uwe #define SH4_UBC_MASK_10 0x01 /* - mask lower 10 bits */ 75 1.5 uwe #define SH4_UBC_MASK_12 0x02 /* - mask lower 12 bits */ 76 1.5 uwe #define SH4_UBC_MASK_ALL 0x03 /* - mask all bits */ 77 1.5 uwe #define SH4_UBC_MASK_16 0x08 /* - mask lower 16 bits */ 78 1.5 uwe #define SH4_UBC_MASK_20 0x09 /* - mask lower 20 bits */ 79 1.5 uwe 80 1.5 uwe /* BBRx bits */ 81 1.5 uwe #define SH3_UBC_CYCLE_SZ_MASK 0x03 /* exclusive */ 82 1.5 uwe #define SH4_UBC_CYCLE_SZ_MASK 0x43 83 1.5 uwe #define UBC_CYCLE_8 0x01 84 1.5 uwe #define UBC_CYCLE_16 0x02 85 1.5 uwe #define UBC_CYCLE_32 0x03 86 1.5 uwe #define SH4_UBC_CYCLE_64 0x40 87 1.5 uwe #define UBC_CYCLE_RW_MASK 0x0c /* can be combined */ 88 1.5 uwe #define UBC_CYCLE_READ 0x04 89 1.5 uwe #define UBC_CYCLE_WRITE 0x08 90 1.5 uwe #define UBC_CYCLE_ID_MASK 0x30 /* can be combined */ 91 1.5 uwe #define UBC_CYCLE_INSN 0x10 92 1.5 uwe #define UBC_CYCLE_DATA 0x20 93 1.5 uwe #define SH3_UBC_CYCLE_CD_MASK 0xc0 /* exclusive */ 94 1.5 uwe #define SH3_UBC_CYCLE_CPU 0x40 95 1.5 uwe #define SH3_UBC_CYCLE_DMAC 0x80 96 1.5 uwe 97 1.5 uwe /* BRCR bits */ 98 1.5 uwe #define UBC_CTL_SEQ 0x0008 /* A||B vs A&&B */ 99 1.5 uwe #define UBC_CTL_B_AFTER_INSN 0x0040 /* B: before/after execution */ 100 1.5 uwe #define UBC_CTL_B_DATA 0x0080 /* B: match BDRB/BDMRB */ 101 1.5 uwe #define UBC_CTL_A_AFTER_INSN 0x0400 /* A: before/after execution */ 102 1.5 uwe #define UBC_CTL_B_MATCH 0x4000 /* B matched (sh3: cpu) */ 103 1.5 uwe #define UBC_CTL_A_MATCH 0x8000 /* A matched (sh3: cpu) */ 104 1.5 uwe #define SH3_UBC_CTL_B_MASK_ASID 0x00100000 /* ignore BASRB */ 105 1.5 uwe #define SH3_UBC_CTL_A_MASK_ASID 0x00200000 /* ignore BASRA */ 106 1.5 uwe 107 1.2 uch 108 1.2 uch #ifndef _LOCORE 109 1.2 uch #if defined(SH3) && defined(SH4) 110 1.4 uwe extern uint32_t __sh_BARA; 111 1.4 uwe extern uint32_t __sh_BAMRA; 112 1.4 uwe extern uint32_t __sh_BASRA; 113 1.4 uwe extern uint32_t __sh_BBRA; 114 1.4 uwe extern uint32_t __sh_BARB; 115 1.4 uwe extern uint32_t __sh_BAMRB; 116 1.4 uwe extern uint32_t __sh_BASRB; 117 1.4 uwe extern uint32_t __sh_BBRB; 118 1.4 uwe extern uint32_t __sh_BDRB; 119 1.4 uwe extern uint32_t __sh_BDMRB; 120 1.4 uwe extern uint32_t __sh_BRCR; 121 1.2 uch #endif /* SH3 && SH4 */ 122 1.2 uch #endif /* !_LOCORE */ 123 1.1 itojun 124 1.1 itojun #endif /* !_SH3_UBCREG_H_ */ 125