|
|
1.1.1.2 ! root 1: /* $Id: sun4-impl.h,v 1.3 2009/08/30 14:01:55 fredette Exp $ */ 1.1 root 2: 3: /* machine/sun4/sun4-impl.h - implementation header file for Sun 4 emulation: */ 4: 5: /* 6: * Copyright (c) 2005, 2006 Matt Fredette 7: * All rights reserved. 8: * 9: * Redistribution and use in source and binary forms, with or without 10: * modification, are permitted provided that the following conditions 11: * are met: 12: * 1. Redistributions of source code must retain the above copyright 13: * notice, this list of conditions and the following disclaimer. 14: * 2. Redistributions in binary form must reproduce the above copyright 15: * notice, this list of conditions and the following disclaimer in the 16: * documentation and/or other materials provided with the distribution. 17: * 3. All advertising materials mentioning features or use of this software 18: * must display the following acknowledgement: 19: * This product includes software developed by Matt Fredette. 20: * 4. The name of the author may not be used to endorse or promote products 21: * derived from this software without specific prior written permission. 22: * 23: * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 24: * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 25: * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 26: * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, 27: * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 28: * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 29: * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 30: * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 31: * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 32: * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 33: * POSSIBILITY OF SUCH DAMAGE. 34: */ 35: 36: #ifndef _MACHINE_SUN4_IMPL_H 37: #define _MACHINE_SUN4_IMPL_H 38: 39: #include <tme/common.h> 1.1.1.2 ! root 40: _TME_RCSID("$Id: sun4-impl.h,v 1.3 2009/08/30 14:01:55 fredette Exp $"); 1.1 root 41: 42: /* includes: */ 43: #include <tme/generic/bus.h> 44: #include <tme/machine/sun.h> 45: #include <tme/ic/sparc.h> 46: #include <tme/element.h> 47: #include <sys/types.h> 48: #include <sys/time.h> 49: 50: /* macros: */ 51: 52: /* real sun4 ASIs: */ 53: /* 0x00 unused */ 54: /* 0x01 unused */ 55: #define TME_SUN4_32_ASI_CONTROL (0x02) /* all 32-bit sun4: control space */ 56: #define TME_SUN44C_ASI_SEGMAP (0x03) /* sun4/4c: the segment map */ 57: #define TME_SUN44C_ASI_PGMAP (0x04) /* sun4/4c: the page map */ 58: #define TME_SUN4_ASI_COPY (0x05) /* sun4: block copy */ 59: #define TME_SUN4C_ASI_HW_FLUSH_SEG (0x05) /* sun4c: hardware-assisted flush segment */ 60: #define TME_SUN4_ASI_REGMAP (0x06) /* sun4: region map */ 61: #define TME_SUN4C_ASI_HW_FLUSH_PG (0x06) /* sun4c: hardware-assisted flush page */ 62: #define TME_SUN4_ASI_FLUSH_REG (0x07) /* sun4: flush region */ 63: #define TME_SUN4C_ASI_HW_FLUSH_CONTEXT (0x07) /* sun4c: hardware-assisted flush context */ 64: /* 0x08 is TME_SPARC32_ASI_UI */ 65: /* 0x09 is TME_SPARC32_ASI_SI */ 66: /* 0x0a is TME_SPARC32_ASI_UD */ 67: /* 0x0b is TME_SPARC32_ASI_SD */ 68: #define TME_SUN44C_ASI_FLUSH_SEG (0x0c) /* sun4/4c: flush segment */ 69: #define TME_SUN44C_ASI_FLUSH_PG (0x0d) /* sun4/4c: flush page */ 70: #define TME_SUN44C_ASI_FLUSH_CONTEXT (0x0e) /* sun4/4c: flush context */ 71: #define TME_SUN4_ASI_FLUSH_USER (0x0f) /* sun4: flush user */ 72: #define TME_SUN4C_ASI_HW_FLUSH_ALL (0x0f) /* sun4c: hardware-assisted flush all */ 73: #define TME_SUN4_32_ASI_COUNT (0x3a) /* all 32-bit sun4: count of ASIs */ 74: 75: /* real sun4 ASI_CONTROL space addresses: */ 76: #define TME_SUN4_CONTROL_IDPROM (0x00000000) /* sun4: the IDPROM */ 77: /* 0x10000000 was the sun3 page map */ 78: /* 0x20000000 was the sun3 segment map */ 79: #define TME_SUN44C_CONTROL_CONTEXT (0x30000000) /* sun4/4c: the context register */ 80: #define TME_SUN44C_CONTROL_ENABLE (0x40000000) /* sun4/4c: the enable register */ 81: #define TME_SUN4_CONTROL_UDVMA (0x50000000) /* sun4: the user DVMA enable register */ 82: #define TME_SUN4_CONTROL_BUSERR (0x60000000) /* sun4: the bus error register */ 83: #define TME_SUN4C_CONTROL_SYNC_ERR (0x60000000) /* sun4c: the synchronous error register */ 84: #define TME_SUN4C_CONTROL_SYNC_VADDR (0x60000004) /* sun4c: the synchronous error virtual address register */ 85: #define TME_SUN4C_CONTROL_ASYNC_ERR (0x60000008) /* sun4c: the asynchronous error register */ 86: #define TME_SUN4C_CONTROL_ASYNC_VADDR (0x6000000c) /* sun4c: the asynchronous error virtual address register */ 87: #define TME_SUN4C_CONTROL_ASYNC_DATA_LO (0x60000010) /* sun4c: the asynchronous error low data register */ 88: #define TME_SUN4C_CONTROL_ASYNC_DATA_HI (0x60000014) /* sun4c: the asynchronous error low data register */ 89: #define TME_SUN4_CONTROL_DIAG (0x70000000) /* sun4: the diagnostic register */ 90: #define TME_SUN44C_CONTROL_CACHE_TAGS (0x80000000) /* sun4/4c: the VAC tags */ 91: #define TME_SUN44C_CONTROL_CACHE_DATA (0x90000000) /* sun4/4c: the VAC data */ 92: /* 0xa0000000 was the sun3 VAC flush */ 93: /* 0xb0000000 was the sun3 block copy hardware */ 94: /* 0xc0000000 unused */ 95: #define TME_SUN4_CONTROL_UDVMA_MAP (0xd0000000) /* sun4: the user DVMA map */ 96: #define TME_SUN4_CONTROL_VME_INTVEC (0xe0000000) /* sun4: the VME interrupt vector */ 97: #define TME_SUN44C_CONTROL_UART_BYPASS (0xf0000000) /* sun4/4c: the special UART bypass */ 98: 99: /* this converts a sun4/4c control space address into the register number: */ 100: #define TME_SUN44C_CONTROL_REG(address) ((address) >> 28) 101: 102: /* real sun4/4c enable register bits: */ 103: #define TME_SUN4_ENA_DIAG (0x01) /* sun4: diagnostic switch (read-only) */ 104: #define TME_SUN4_ENA_MONITOR (0x01) /* sun4: "monitor bit" (write-only) */ 105: #define TME_SUN4_ENA_RESET_VME (0x02) /* sun4: reset the VME bus */ 106: #define TME_SUN4_ENA_RESET_CACHE (0x04) /* sun4: reset the cache */ 107: #define TME_SUN4C_ENA_RESET_SW (0x04) /* sun4c: software reset */ 108: #define TME_SUN4_ENA_VIDEO (0x08) /* sun4: enable video display */ 109: #define TME_SUN44C_ENA_CACHE (0x10) /* sun4/4c: enable external cache */ 110: #define TME_SUN44C_ENA_SDVMA (0x20) /* sun4/4c: enable system DVMA */ 111: #define TME_SUN4_ENA_IOCACHE (0x40) /* sun4: enable the I/O cache */ 112: #define TME_SUN44C_ENA_NOTBOOT (0x80) /* sun4/4c: non-boot state */ 113: 114: /* real sun4/4c interrupt register bits: */ 115: #define TME_SUN44C_IREG_INTS_ENAB (0x01) /* sun4/4c: enable interrupts */ 116: #define TME_SUN44C_IREG_SOFT_INT_L1 (0x02) /* sun4/4c: enable level 1 soft interrupts */ 117: #define TME_SUN44C_IREG_SOFT_INT_L4 (0x04) /* sun4/4c: enable level 4 soft interrupts */ 118: #define TME_SUN44C_IREG_SOFT_INT_L6 (0x08) /* sun4/4c: enable level 6 soft interrupts */ 119: #define TME_SUN44C_IREG_VIDEO_INT (0x10) /* sun4/4c: enable level 8 video interrupts */ 120: #define TME_SUN44C_IREG_COUNTER_L10 (0x20) /* sun4/4c: enable counter0 level 10 interrupts */ 121: /* 0x40 unused */ 122: #define TME_SUN44C_IREG_COUNTER_L14 (0x80) /* sun4/4c: enable counter1 level 14 interrupts */ 123: 124: /* real sun4/4c memory error register parts: */ 125: #define TME_SUN44C_MEMERR_REG_CSR (0) 126: #define TME_SUN44C_MEMERR_SIZ_CSR (sizeof(tme_uint32_t)) 127: #define TME_SUN4C_MEMERR_REG_PARCTL (4) 128: #define TME_SUN4C_MEMERR_SIZ_PARCTL (sizeof(tme_uint32_t)) 129: #define TME_SUN4_MEMERR_REG_VADDR (4) 130: #define TME_SUN4_MEMERR_SIZ_VADDR (sizeof(tme_uint32_t)) 131: #define TME_SUN44C_MEMERR_SIZ_REG (TME_SUN4_MEMERR_REG_VADDR + TME_SUN4_MEMERR_SIZ_VADDR) 132: 133: /* real sun4/4c parity and ECC memory error control register bits: */ 134: #define TME_SUN4_MEMERR_X_CONTEXT_MASK (0x1fe00) /* sun4: context mask */ 135: #define TME_SUN4_MEMERR_X_DVMA (0x100) /* sun4: access was DVMA */ 136: #define TME_SUN4_MEMERR_X_INT_ACTIVE (0x80) /* sun4: interrupt is active */ 137: #define TME_SUN4C_MEMERR_PAR_ERROR (0x80) /* sun4c: parity error detected */ 138: #define TME_SUN4_MEMERR_X_ENABLE_INT (0x40) /* sun4: enable memory error interrupts */ 139: #define TME_SUN4C_MEMERR_PAR_MULTI (0x40) /* sun4c: multiple parity errors detected */ 140: #define TME_SUN44C_MEMERR_PAR_TEST (0x20) /* sun4/4c: write inverse parity */ 141: #define TME_SUN44C_MEMERR_PAR_ENABLE (0x10) /* sun4/4c: enable parity checking */ 142: #define TME_SUN44C_MEMERR_PAR_ERR_BL3 (0x08) /* sun4/4c: parity error in (sun4) D24..D31 (sun4c) D0..D7 */ 143: #define TME_SUN44C_MEMERR_PAR_ERR_BL2 (0x04) /* sun4/4c: parity error in (sun4) D16..D23 (sun4c) D8..D15 */ 144: #define TME_SUN44C_MEMERR_PAR_ERR_BL1 (0x02) /* sun4/4c: parity error in (sun4) D8..D15 (sun4c) D16..D23 */ 145: #define TME_SUN44C_MEMERR_PAR_ERR_BL0 (0x01) /* sun4/4c: parity error in (sun4) D0..D7 (sun4c) D24..D31 */ 146: 147: /* real sun4/4c/4m timer register parts: */ 148: #define TME_SUN4_32_TIMER_REG_COUNTER (0) 149: #define TME_SUN4_32_TIMER_SIZ_COUNTER (sizeof(tme_uint32_t)) 150: #define TME_SUN4_32_TIMER_REG_LIMIT (TME_SUN4_32_TIMER_REG_COUNTER + TME_SUN4_32_TIMER_SIZ_COUNTER) 151: #define TME_SUN4_32_TIMER_SIZ_LIMIT (sizeof(tme_uint32_t)) 152: #define TME_SUN44C_TIMER_SIZ_REG (TME_SUN4_32_TIMER_REG_LIMIT + TME_SUN4_32_TIMER_SIZ_LIMIT) 153: 154: /* the page sizes: */ 155: #define TME_SUN4_PAGE_SIZE_LOG2 (13) 156: #define TME_SUN4_PAGE_SIZE (1 << TME_SUN4_PAGE_SIZE_LOG2) 157: #define TME_SUN4C_PAGE_SIZE_LOG2 (12) 158: #define TME_SUN4C_PAGE_SIZE (1 << TME_SUN4C_PAGE_SIZE_LOG2) 159: 160: /* all 32-bit sun4s have the same segment size: */ 161: #define TME_SUN4_32_SEGMENT_SIZE_LOG2 (18) 162: #define TME_SUN4_32_SEGMENT_SIZE (1 << TME_SUN4_32_SEGMENT_SIZE_LOG2) 163: 164: /* real sun4/4c PTE entry bits: */ 165: #define TME_SUN44C_PTE_VALID (0x80000000) 166: #define TME_SUN44C_PTE_WRITE (0x40000000) 167: #define TME_SUN44C_PTE_SYSTEM (0x20000000) 168: #define TME_SUN44C_PTE_NC (0x10000000) 169: #define TME_SUN44C_PTE_PGTYPE (0x0C000000) 170: #define TME_SUN44C_PTE_REF (0x02000000) 171: #define TME_SUN44C_PTE_MOD (0x01000000) 172: #define TME_SUN4_PTE_PGFRAME (0x0007FFFF) 173: #define TME_SUN4C_PTE_PGFRAME (0x0000FFFF) 174: 175: /* the PROM location: */ 176: #define TME_SUN44C_PROM_BASE (0xF6000000) 177: #define TME_SUN44C_PROM_SIZE (0x00040000) 178: 179: /* the obio addresses of zs0 and zs1: */ 180: #define TME_SUN44C_OBIO_ZS0 (0xf1000000) 181: 182: /* the obio address of the start of the SBus slots: */ 183: #define TME_SUN4C_OBIO_SBUS (0xf8000000) 184: 185: /* identifiers for the different board bus connections. the buses are 186: together at the beginning of the value space: */ 187: #define TME_SUN4_32_CONN_BUS_OBIO (0) 188: #define TME_SUN4_32_CONN_BUS_OBMEM (1) 189: #define TME_SUN4_CONN_BUS_VME (2) 190: #define TME_SUN4_32_CONN_BUS_COUNT (3) 191: #define TME_SUN4_32_CONN_REG_TIMER (3) 192: #define TME_SUN4_32_CONN_REG_MEMERR (4) 193: #define TME_SUN4_32_CONN_REG_INTREG (5) 194: #define TME_SUN4C4M_CONN_REG_AUXREG (6) 195: #define TME_SUN4_32_CONN_REG_COUNT (7) 196: 197: /* the DVMA sizes: */ 198: #define TME_SUN4_DVMA_SIZE_VME (0x00100000) 199: 200: /* these return nonzero on a match of the IDPROM machine type byte: */ 201: #define TME_SUN4_IS_ARCH(sun4, arch) \ 202: (((sun4)->tme_sun4_idprom_contents[TME_SUN_IDPROM_OFF_MACHTYPE] & TME_SUN_IDPROM_TYPE_MASK_ARCH) == (arch)) 203: #define TME_SUN4_IS_MODEL(sun4, model) \ 204: ((sun4)->tme_sun4_idprom_contents[TME_SUN_IDPROM_OFF_MACHTYPE] == (model)) 205: #define TME_SUN4_IS_SUN4(sun4) TME_SUN4_IS_ARCH(sun4, TME_SUN_IDPROM_TYPE_ARCH_SUN4) 206: #define TME_SUN4_IS_SUN4C(sun4) TME_SUN4_IS_ARCH(sun4, TME_SUN_IDPROM_TYPE_ARCH_SUN4C) 207: #define TME_SUN4_IS_SUN44C(sun4) TRUE 208: #define TME_SUN4_IS_SUN4M(sun4) FALSE 209: #define TME_SUN4_IS_SUN4C4M(sun4) (TME_SUN4_IS_SUN4C(sun4) || TME_SUN4_IS_SUN4M(sun4)) 210: 211: /* this returns the MMU context used by a particular bus connection: */ 212: #define TME_SUN44C_BUS_MMU_CONTEXT(sun4, conn_bus) ((sun4)->tme_sun44c_context) 213: 214: /* these returns nonzero if memory error testing is visible: */ 215: /* on the sun4/4c, memory error testing is visible if there are any 216: bad addresses and parity checking is enabled, or if bad parity 217: writing is enabled: */ 218: #define TME_SUN44C_MEMERR_VISIBLE(sun4) \ 219: ((sun4)->tme_sun4_memerr_bad_memory_count > 0 \ 220: || (((sun4)->tme_sun44c_memerr_csr[0] \ 221: | (sun4)->tme_sun44c_memerr_csr[1]) \ 222: & TME_SUN44C_MEMERR_PAR_TEST) != 0) 223: 224: #define TME_SUN4_LOG_HANDLE(sun4) (&(sun4)->tme_sun4_element->tme_element_log_handle) 225: 226: /* types: */ 227: 228: /* a sun4 bus connection: */ 229: struct tme_sun4_bus_connection { 230: 231: /* the generic bus connection: */ 232: struct tme_bus_connection tme_sun4_bus_connection; 233: 234: /* what kind of connection this is: */ 235: unsigned int tme_sun4_bus_connection_which; 236: }; 237: 238: /* a sun4 timer: */ 239: struct tme_sun4_timer { 240: 241: /* a backpointer to the sun4: */ 242: struct tme_sun4 *tme_sun4_timer_sun4; 243: 244: /* the real counter and limit register values: */ 245: tme_uint32_t tme_sun4_timer_counter; 246: tme_uint32_t tme_sun4_timer_limit; 247: 248: /* the period of this timer: */ 249: struct timeval tme_sun4_timer_period; 250: 251: /* when the timer reaches its next limit: */ 252: struct timeval tme_sun4_timer_limit_next; 253: 254: /* a condition for waking up the thread for this timer: */ 255: tme_cond_t tme_sun4_timer_cond; 256: 257: /* this is nonzero if the interrupt for this timer is asserted: */ 258: unsigned int tme_sun4_timer_int_asserted; 259: 260: /* these are used to track the interrupt rate for this timer: */ 261: tme_uint32_t tme_sun4_timer_track_ints; 262: struct timeval tme_sun4_timer_track_sample; 263: }; 264: 265: /* a sun4: */ 266: struct tme_sun4 { 267: 268: /* our mutex: */ 269: tme_mutex_t tme_sun4_mutex; 270: 271: /* backpointer to our element: */ 272: struct tme_element *tme_sun4_element; 273: 274: /* the IDPROM: */ 275: tme_uint8_t tme_sun4_idprom_contents[TME_SUN_IDPROM_SIZE]; 276: 277: /* the CPU: */ 278: struct tme_sparc_bus_connection *tme_sun4_sparc; 279: 280: /* a set of bus connections: */ 281: struct tme_bus_connection *tme_sun4_buses[TME_SUN4_32_CONN_REG_COUNT]; 282: #define tme_sun4_32_obio tme_sun4_buses[TME_SUN4_32_CONN_BUS_OBIO] 283: #define tme_sun4_32_obmem tme_sun4_buses[TME_SUN4_32_CONN_BUS_OBMEM] 284: #define tme_sun4_vmebus tme_sun4_buses[TME_SUN4_CONN_BUS_VME] 285: 286: /* these dummy bus connection structures are used to thread bus 287: information to bus error handlers: */ 288: struct tme_connection tme_sun4_dummy_connection_sparc; 289: 290: /* these structures are used to thread ASI information to a control 291: cycle handler. if the backpointer for an ASI is NULL, the ASI is 292: undefined: */ 293: struct tme_sun4_asi { 294: struct tme_sun4 *tme_sun4_asi_sun4; 295: } tme_sun4_asis[TME_SUN4_32_ASI_COUNT]; 296: 297: /* the current TLB fill function: */ 298: int (*tme_sun4_tlb_fill) _TME_P((const struct tme_bus_connection *, 299: struct tme_bus_tlb *, 300: tme_uint32_t *, 301: tme_uint32_t, 302: unsigned int)); 303: 304: /* visible memory test support: */ 305: struct tme_bus_tlb *tme_sun4_memtest_tlb; 306: tme_uint32_t tme_sun4_memtest_tlb_asi_mask; 307: 308: /* cache support: */ 309: unsigned int tme_sun4_cache_size_log2; 310: unsigned int tme_sun4_cache_size_line_log2; 311: unsigned int tme_sun4_cache_writeback; 312: tme_shared tme_uint8_t *tme_sun4_cache_data; 313: tme_rwlock_t tme_sun4_cache_rwlock; 314: tme_uint32_t tme_sun4_cache_visible; 315: struct tme_bus_tlb tme_sun4_cache_tlb_internal; 1.1.1.2 ! root 316: struct tme_token tme_sun4_cache_tlb_internal_token; 1.1 root 317: 318: /* memory error support: */ 319: unsigned int tme_sun4_memerr_int_asserted; 320: const tme_shared tme_uint8_t *tme_sun4_memerr_bad_memory[128]; 321: unsigned int tme_sun4_memerr_bad_memory_count; 322: const tme_shared tme_uint8_t *tme_sun4_memerr_tlb_emulator_off_read; 323: tme_shared tme_uint8_t *tme_sun4_memerr_tlb_emulator_off_write; 324: 325: /* timer support: */ 326: unsigned int tme_sun4_timer_callouts_running; 327: struct tme_sun4_timer tme_sun4_timers[2]; 328: #define tme_sun4_timer_l10 tme_sun4_timers[0] 329: #define tme_sun4_timer_l14 tme_sun4_timers[1] 330: 331: /* the sun4/4c MMU and context register: */ 332: void *tme_sun44c_mmu; 333: tme_uint32_t tme_sun44c_mmu_pmegs; 334: tme_uint8_t tme_sun44c_context; 335: 336: /* the sun4/4c enable register: */ 337: tme_uint8_t tme_sun44c_enable; 338: 339: /* the sun4/4c UDVMA register: */ 340: tme_uint8_t tme_sun4_udvma; 341: 342: /* the sun4 bus error register: */ 343: tme_uint8_t tme_sun4_buserr; 344: 345: /* the sun4 diagnostic register: */ 346: tme_uint8_t tme_sun4_diag; 347: 348: /* the sun4/4c interrupt register: */ 349: tme_uint8_t tme_sun44c_ints; 350: 351: /* the sun4c/4m auxiliary register: */ 352: tme_uint8_t tme_sun4c4m_aux; 353: 354: /* the sun4/4c cache: */ 355: tme_uint32_t *tme_sun44c_cache_tags; 356: 357: /* the sun4c synchronous and asynchronous error registers: */ 358: tme_uint32_t tme_sun4c_sync_err; 359: tme_uint32_t tme_sun4c_sync_vaddr; 360: tme_uint32_t tme_sun4c_async_err; 361: tme_uint32_t tme_sun4c_async_vaddr; 362: tme_uint32_t tme_sun4c_async_data_lo; 363: tme_uint32_t tme_sun4c_async_data_hi; 364: 365: /* the sun4/4c memory error registers: */ 366: tme_uint32_t tme_sun44c_memerr_csr[2]; 367: tme_uint32_t tme_sun4c_memerr_parctl[2]; 368: tme_uint32_t tme_sun4_memerr_vaddr; 369: 370: /* the interrupt lines that are being asserted: */ 371: tme_uint8_t tme_sun4_int_signals[(TME_SPARC_IPL_MAX + 1 + 7) >> 3]; 372: 373: /* the last ipl we gave to the CPU: */ 374: unsigned int tme_sun4_int_ipl_last; 375: 376: /* the set of active sun4/4c SDVMA TLB entries: */ 377: unsigned int tme_sun44c_sdvma_tlb_next; 378: #define TME_SUN44C_SDVMA_TLBS (16) 1.1.1.2 ! root 379: struct tme_token *tme_sun44c_sdvma_tlb_tokens[TME_SUN44C_SDVMA_TLBS]; ! 380: ! 381: /* the sun4/4c sparc v7 bus context register: */ ! 382: tme_bus_context_t *tme_sun44c_sparc_bus_context; 1.1 root 383: }; 384: 385: /* sun4/4c cache prototypes: */ 386: void _tme_sun44c_cache_new _TME_P((struct tme_sun4 *)); 387: void _tme_sun44c_cache_enable_change _TME_P((struct tme_sun4 *)); 388: int _tme_sun44c_cache_cycle_control _TME_P((struct tme_sun4 *, struct tme_bus_cycle *)); 389: void _tme_sun44c_cache_cycle_flush _TME_P((struct tme_sun4 *sun4, tme_uint32_t, tme_uint32_t)); 390: 391: /* sun4/4c memory error prototypes: */ 392: int _tme_sun44c_memerr_cycle_control _TME_P((void *, struct tme_bus_cycle *)); 393: int _tme_sun44c_memerr_cycle_bus _TME_P((void *, struct tme_bus_cycle *)); 394: int _tme_sun44c_memerr_check _TME_P((const struct tme_bus_connection *, tme_uint32_t, tme_uint32_t, const tme_shared tme_uint8_t *, unsigned int)); 395: void _tme_sun44c_memerr_update _TME_P((struct tme_sun4 *, tme_uint32_t, const tme_shared tme_uint8_t *, unsigned int)); 396: int _tme_sun44c_tlb_fill_memerr _TME_P((const struct tme_bus_connection *, 397: struct tme_bus_tlb *, 398: tme_uint32_t *, 399: tme_uint32_t, 400: unsigned int)); 401: 402: /* sun4/4c MMU prototypes: */ 403: void _tme_sun44c_mmu_new _TME_P((struct tme_sun4 *)); 1.1.1.2 ! root 404: int _tme_sun44c_mmu_tlb_set_add _TME_P((struct tme_bus_connection *, ! 405: struct tme_bus_tlb_set_info *)); 1.1 root 406: void _tme_sun44c_mmu_sdvma_change _TME_P((struct tme_sun4 *)); 407: void _tme_sun44c_mmu_context_set _TME_P((struct tme_sun4 *)); 408: int _tme_sun44c_mmu_pte_get _TME_P((struct tme_sun4 *, tme_uint32_t, tme_uint32_t *)); 409: int _tme_sun44c_mmu_pte_set _TME_P((struct tme_sun4 *, tme_uint32_t, tme_uint32_t)); 410: int _tme_sun44c_mmu_proterr _TME_P((void *, struct tme_bus_cycle *)); 411: int _tme_sun44c_tlb_fill_sparc _TME_P((struct tme_sparc_bus_connection *, 412: struct tme_sparc_tlb *, 413: tme_uint32_t asi_mask, 414: tme_bus_addr_t address, 415: unsigned int cycles)); 416: int _tme_sun44c_tlb_fill_bus _TME_P((struct tme_bus_connection *, 417: struct tme_bus_tlb *, 1.1.1.2 ! root 418: tme_bus_addr_t, 1.1 root 419: unsigned int)); 420: int _tme_sun44c_tlb_fill_mmu _TME_P((const struct tme_bus_connection *, 421: struct tme_bus_tlb *, 422: tme_uint32_t *, 423: tme_uint32_t, 424: unsigned int)); 425: int _tme_sun44c_ob_fault_handler _TME_P((void *, struct tme_bus_tlb *, struct tme_bus_cycle *, int)); 426: 427: /* timer prototypes: */ 428: void _tme_sun4_timer_new _TME_P((struct tme_sun4 *)); 429: int _tme_sun4_timer_cycle_control _TME_P((void *, struct tme_bus_cycle *)); 430: void _tme_sun4_timer_int_force _TME_P((struct tme_sun4 *, struct tme_sun4_timer *)); 431: 432: /* other prototypes: */ 433: int _tme_sun44c_control_cycle_handler _TME_P((void *, struct tme_bus_cycle *)); 434: int _tme_sun44c_intreg_cycle_control _TME_P((void *, struct tme_bus_cycle *)); 435: int _tme_sun4c_auxreg_cycle_control _TME_P((void *, struct tme_bus_cycle *)); 436: int _tme_sun4_ipl_check _TME_P((struct tme_sun4 *)); 437: int _tme_sun4_reset _TME_P((struct tme_sun4 *, int)); 438: 439: #endif /* !_MACHINE_SUN4_IMPL_H */
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.