1 1.9 mrg /* $NetBSD: sbusreg.h,v 1.10 2011/03/16 05:49:43 mrg Exp $ */ 2 1.1 eeh 3 1.1 eeh /* 4 1.7 eeh * Copyright (c) 1996-1999 Eduardo Horvath 5 1.1 eeh * 6 1.1 eeh * Redistribution and use in source and binary forms, with or without 7 1.1 eeh * modification, are permitted provided that the following conditions 8 1.1 eeh * are met: 9 1.1 eeh * 1. Redistributions of source code must retain the above copyright 10 1.1 eeh * notice, this list of conditions and the following disclaimer. 11 1.7 eeh * 12 1.7 eeh * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND 13 1.1 eeh * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 14 1.1 eeh * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 15 1.7 eeh * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE 16 1.1 eeh * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 17 1.1 eeh * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 18 1.1 eeh * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 19 1.1 eeh * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 20 1.1 eeh * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 21 1.1 eeh * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 22 1.1 eeh * SUCH DAMAGE. 23 1.1 eeh * 24 1.1 eeh */ 25 1.1 eeh 26 1.7 eeh 27 1.1 eeh /* 28 1.1 eeh * Sbus device addresses are obtained from the FORTH PROMs. They come 29 1.1 eeh * in `absolute' and `relative' address flavors, so we have to handle both. 30 1.1 eeh * Relative addresses do *not* include the slot number. 31 1.1 eeh */ 32 1.1 eeh #define SBUS_BASE 0xf8000000 33 1.1 eeh #define SBUS_ADDR(slot, off) (SBUS_BASE + ((slot) << 25) + (off)) 34 1.1 eeh #define SBUS_ABS(a) ((unsigned)(a) >= SBUS_BASE) 35 1.1 eeh #define SBUS_ABS_TO_SLOT(a) (((a) - SBUS_BASE) >> 25) 36 1.1 eeh #define SBUS_ABS_TO_OFFSET(a) (((a) - SBUS_BASE) & 0x1ffffff) 37 1.1 eeh 38 1.1 eeh /* 39 1.1 eeh * Sun4u S-bus definitions. Here's where we deal w/the machine 40 1.1 eeh * dependencies of sysio. 41 1.1 eeh * 42 1.1 eeh * SYSIO implements or is the interface to several things: 43 1.1 eeh * 44 1.1 eeh * o The SBUS interface itself 45 1.1 eeh * o The IOMMU 46 1.1 eeh * o The DVMA units 47 1.1 eeh * o The interrupt controller 48 1.1 eeh * o The counter/timers 49 1.1 eeh * 50 1.1 eeh * Since it has registers to control lots of different things 51 1.1 eeh * as well as several on-board SBUS devices and external SBUS 52 1.1 eeh * slots scattered throughout its address space, it's a pain. 53 1.1 eeh * 54 1.1 eeh * One good point, however, is that all registers are 64-bit. 55 1.1 eeh */ 56 1.1 eeh 57 1.1 eeh struct sysioreg { 58 1.1 eeh struct upareg { 59 1.8 cdi uint64_t upa_portid; /* UPA port ID register */ /* 1fe.0000.0000 */ 60 1.8 cdi uint64_t upa_config; /* UPA config register */ /* 1fe.0000.0008 */ 61 1.1 eeh } sys_upa; 62 1.1 eeh 63 1.8 cdi uint64_t sys_csr; /* SYSIO control/status register */ /* 1fe.0000.0010 */ 64 1.8 cdi uint64_t pad0; 65 1.8 cdi uint64_t sys_ecccr; /* ECC control register */ /* 1fe.0000.0020 */ 66 1.8 cdi uint64_t reserved; /* 1fe.0000.0028 */ 67 1.8 cdi uint64_t sys_ue_afsr; /* Uncorrectable Error AFSR */ /* 1fe.0000.0030 */ 68 1.8 cdi uint64_t sys_ue_afar; /* Uncorrectable Error AFAR */ /* 1fe.0000.0038 */ 69 1.8 cdi uint64_t sys_ce_afsr; /* Correctable Error AFSR */ /* 1fe.0000.0040 */ 70 1.8 cdi uint64_t sys_ce_afar; /* Correctable Error AFAR */ /* 1fe.0000.0048 */ 71 1.1 eeh 72 1.8 cdi uint64_t pad1[22]; 73 1.1 eeh 74 1.1 eeh struct perfmon { 75 1.8 cdi uint64_t pm_cr; /* Performance monitor control reg */ /* 1fe.0000.0100 */ 76 1.8 cdi uint64_t pm_count; /* Performance monitor counter reg */ /* 1fe.0000.0108 */ 77 1.1 eeh } sys_pm; 78 1.1 eeh 79 1.8 cdi uint64_t pad2[990]; 80 1.1 eeh 81 1.1 eeh struct sbusreg { 82 1.8 cdi uint64_t sbus_cr; /* SBUS Control Register */ /* 1fe.0000.2000 */ 83 1.8 cdi uint64_t reserved; /* 1fe.0000.2008 */ 84 1.8 cdi uint64_t sbus_afsr; /* SBUS AFSR */ /* 1fe.0000.2010 */ 85 1.8 cdi uint64_t sbus_afar; /* SBUS AFAR */ /* 1fe.0000.2018 */ 86 1.8 cdi uint64_t sbus_config0; /* SBUS Slot 0 config register */ /* 1fe.0000.2020 */ 87 1.8 cdi uint64_t sbus_config1; /* SBUS Slot 1 config register */ /* 1fe.0000.2028 */ 88 1.8 cdi uint64_t sbus_config2; /* SBUS Slot 2 config register */ /* 1fe.0000.2030 */ 89 1.8 cdi uint64_t sbus_config3; /* SBUS Slot 3 config register */ /* 1fe.0000.2038 */ 90 1.8 cdi uint64_t sbus_config13; /* Slot 13 config register <audio> */ /* 1fe.0000.2040 */ 91 1.8 cdi uint64_t sbus_config14; /* Slot 14 config register <macio> */ /* 1fe.0000.2048 */ 92 1.8 cdi uint64_t sbus_config15; /* Slot 15 config register <slavio> */ /* 1fe.0000.2050 */ 93 1.1 eeh } sys_sbus; 94 1.1 eeh 95 1.8 cdi uint64_t pad3[117]; 96 1.1 eeh 97 1.10 mrg struct iommureg sys_iommu; /* 1fe.0000.2400,2410 */ 98 1.1 eeh 99 1.8 cdi uint64_t pad4[125]; 100 1.1 eeh 101 1.6 mrg struct iommu_strbuf sys_strbuf; /* 1fe.0000.2800-2810 */ 102 1.1 eeh 103 1.8 cdi uint64_t pad5[125]; 104 1.1 eeh 105 1.8 cdi uint64_t sbus_slot0_int; /* SBUS slot 0 interrupt map reg */ /* 1fe.0000.2c00 */ 106 1.8 cdi uint64_t sbus_slot1_int; /* SBUS slot 1 interrupt map reg */ /* 1fe.0000.2c08 */ 107 1.8 cdi uint64_t sbus_slot2_int; /* SBUS slot 2 interrupt map reg */ /* 1fe.0000.2c10 */ 108 1.8 cdi uint64_t sbus_slot3_int; /* SBUS slot 3 interrupt map reg */ /* 1fe.0000.2c18 */ 109 1.8 cdi uint64_t intr_retry; /* interrupt retry timer reg */ /* 1fe.0000.2c20 */ 110 1.8 cdi 111 1.8 cdi uint64_t pad6[123]; 112 1.8 cdi 113 1.8 cdi uint64_t scsi_int_map; /* SCSI interrupt map reg */ /* 1fe.0000.3000 */ 114 1.8 cdi uint64_t ether_int_map; /* ethernet interrupt map reg */ /* 1fe.0000.3008 */ 115 1.8 cdi uint64_t bpp_int_map; /* parallel interrupt map reg */ /* 1fe.0000.3010 */ 116 1.8 cdi uint64_t audio_int_map; /* audio interrupt map reg */ /* 1fe.0000.3018 */ 117 1.8 cdi uint64_t power_int_map; /* power fail interrupt map reg */ /* 1fe.0000.3020 */ 118 1.8 cdi uint64_t ser_kbd_ms_int_map; /* serial/kbd/mouse interrupt map reg *//* 1fe.0000.3028 */ 119 1.8 cdi uint64_t fd_int_map; /* floppy interrupt map reg */ /* 1fe.0000.3030 */ 120 1.8 cdi uint64_t therm_int_map; /* thermal warn interrupt map reg */ /* 1fe.0000.3038 */ 121 1.8 cdi uint64_t kbd_int_map; /* kbd [unused] interrupt map reg */ /* 1fe.0000.3040 */ 122 1.8 cdi uint64_t mouse_int_map; /* mouse [unused] interrupt map reg */ /* 1fe.0000.3048 */ 123 1.8 cdi uint64_t serial_int_map; /* second serial interrupt map reg */ /* 1fe.0000.3050 */ 124 1.8 cdi uint64_t pad7; 125 1.8 cdi uint64_t timer0_int_map; /* timer 0 interrupt map reg */ /* 1fe.0000.3060 */ 126 1.8 cdi uint64_t timer1_int_map; /* timer 1 interrupt map reg */ /* 1fe.0000.3068 */ 127 1.8 cdi uint64_t ue_int_map; /* UE interrupt map reg */ /* 1fe.0000.3070 */ 128 1.8 cdi uint64_t ce_int_map; /* CE interrupt map reg */ /* 1fe.0000.3078 */ 129 1.8 cdi uint64_t sbus_async_int_map; /* SBUS error interrupt map reg */ /* 1fe.0000.3080 */ 130 1.8 cdi uint64_t pwrmgt_int_map; /* power mgmt wake interrupt map reg */ /* 1fe.0000.3088 */ 131 1.8 cdi uint64_t upagr_int_map; /* UPA graphics interrupt map reg */ /* 1fe.0000.3090 */ 132 1.8 cdi uint64_t reserved_int_map; /* reserved interrupt map reg */ /* 1fe.0000.3098 */ 133 1.1 eeh 134 1.8 cdi uint64_t pad8[108]; 135 1.1 eeh 136 1.1 eeh /* Note: clear interrupt 0 registers are not really used */ 137 1.8 cdi uint64_t sbus0_clr_int[8]; /* SBUS slot 0 clear int regs 0..7 */ /* 1fe.0000.3400-3438 */ 138 1.8 cdi uint64_t sbus1_clr_int[8]; /* SBUS slot 1 clear int regs 0..7 */ /* 1fe.0000.3440-3478 */ 139 1.8 cdi uint64_t sbus2_clr_int[8]; /* SBUS slot 2 clear int regs 0..7 */ /* 1fe.0000.3480-34b8 */ 140 1.8 cdi uint64_t sbus3_clr_int[8]; /* SBUS slot 3 clear int regs 0..7 */ /* 1fe.0000.34c0-34f8 */ 141 1.8 cdi 142 1.8 cdi uint64_t pad9[96]; 143 1.8 cdi 144 1.8 cdi uint64_t scsi_clr_int; /* SCSI clear int reg */ /* 1fe.0000.3800 */ 145 1.8 cdi uint64_t ether_clr_int; /* ethernet clear int reg */ /* 1fe.0000.3808 */ 146 1.8 cdi uint64_t bpp_clr_int; /* parallel clear int reg */ /* 1fe.0000.3810 */ 147 1.8 cdi uint64_t audio_clr_int; /* audio clear int reg */ /* 1fe.0000.3818 */ 148 1.8 cdi uint64_t power_clr_int; /* power fail clear int reg */ /* 1fe.0000.3820 */ 149 1.8 cdi uint64_t ser_kb_ms_clr_int; /* serial/kbd/mouse clear int reg */ /* 1fe.0000.3828 */ 150 1.8 cdi uint64_t fd_clr_int; /* floppy clear int reg */ /* 1fe.0000.3830 */ 151 1.8 cdi uint64_t therm_clr_int; /* thermal warn clear int reg */ /* 1fe.0000.3838 */ 152 1.8 cdi uint64_t kbd_clr_int; /* kbd [unused] clear int reg */ /* 1fe.0000.3840 */ 153 1.8 cdi uint64_t mouse_clr_int; /* mouse [unused] clear int reg */ /* 1fe.0000.3848 */ 154 1.8 cdi uint64_t serial_clr_int; /* second serial clear int reg */ /* 1fe.0000.3850 */ 155 1.8 cdi uint64_t pad10; 156 1.8 cdi uint64_t timer0_clr_int; /* timer 0 clear int reg */ /* 1fe.0000.3860 */ 157 1.8 cdi uint64_t timer1_clr_int; /* timer 1 clear int reg */ /* 1fe.0000.3868 */ 158 1.8 cdi uint64_t ue_clr_int; /* UE clear int reg */ /* 1fe.0000.3870 */ 159 1.8 cdi uint64_t ce_clr_int; /* CE clear int reg */ /* 1fe.0000.3878 */ 160 1.8 cdi uint64_t sbus_clr_async_int; /* SBUS error clr interrupt reg */ /* 1fe.0000.3880 */ 161 1.8 cdi uint64_t pwrmgt_clr_int; /* power mgmt wake clr interrupt reg */ /* 1fe.0000.3888 */ 162 1.1 eeh 163 1.8 cdi uint64_t pad11[110]; 164 1.1 eeh 165 1.1 eeh struct timer_counter { 166 1.8 cdi uint64_t tc_count; /* timer/counter 0/1 count register */ /* ife.0000.3c00,3c10 */ 167 1.8 cdi uint64_t tc_limit; /* timer/counter 0/1 limit register */ /* ife.0000.3c08,3c18 */ 168 1.1 eeh } tc[2]; 169 1.1 eeh 170 1.8 cdi uint64_t pad12[252]; 171 1.1 eeh 172 1.8 cdi uint64_t sys_svadiag; /* SBUS virtual addr diag reg */ /* 1fe.0000.4400 */ 173 1.1 eeh 174 1.8 cdi uint64_t pad13[31]; 175 1.1 eeh 176 1.8 cdi uint64_t iommu_queue_diag[16]; /* IOMMU LRU queue diag */ /* 1fe.0000.4500-457f */ 177 1.8 cdi uint64_t tlb_tag_diag[16]; /* TLB tag diag */ /* 1fe.0000.4580-45ff */ 178 1.8 cdi uint64_t tlb_data_diag[32]; /* TLB data RAM diag */ /* 1fe.0000.4600-46ff */ 179 1.1 eeh 180 1.8 cdi uint64_t pad14[32]; 181 1.1 eeh 182 1.8 cdi uint64_t sbus_int_diag; /* SBUS int state diag reg */ /* 1fe.0000.4800 */ 183 1.8 cdi uint64_t obio_int_diag; /* OBIO and misc int state diag reg */ /* 1fe.0000.4808 */ 184 1.1 eeh 185 1.8 cdi uint64_t pad15[254]; 186 1.1 eeh 187 1.8 cdi uint64_t strbuf_data_diag[128]; /* streaming buffer data RAM diag */ /* 1fe.0000.5000-53f8 */ 188 1.8 cdi uint64_t strbuf_error_diag[128]; /* streaming buffer error status diag *//* 1fe.0000.5400-57f8 */ 189 1.8 cdi uint64_t strbuf_pg_tag_diag[16]; /* streaming buffer page tag diag */ /* 1fe.0000.5800-5878 */ 190 1.8 cdi uint64_t pad16[16]; 191 1.8 cdi uint64_t strbuf_ln_tag_diag[16]; /* streaming buffer line tag diag */ /* 1fe.0000.5900-5978 */ 192 1.1 eeh }; 193