1996-10-06 10:29:51 +04:00
|
|
|
/* $NetBSD: tc_machdep.h,v 1.5 1996/10/06 06:29:51 jonathan Exp $ */
|
1995-12-28 11:42:15 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1994, 1995 Carnegie-Mellon University.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Author: Jonathan Stone, Chris G. Demetriou
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify and distribute this software and
|
|
|
|
* its documentation is hereby granted, provided that both the copyright
|
|
|
|
* notice and this permission notice appear in all copies of the
|
|
|
|
* software, derivative works or modified versions, and any portions
|
|
|
|
* thereof, and that both notices appear in supporting documentation.
|
|
|
|
*
|
|
|
|
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
|
|
|
|
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
|
|
|
|
* FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
|
|
|
|
*
|
|
|
|
* Carnegie Mellon requests users of this software to return to
|
|
|
|
*
|
|
|
|
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
|
|
|
|
* School of Computer Science
|
|
|
|
* Carnegie Mellon University
|
|
|
|
* Pittsburgh PA 15213-3890
|
|
|
|
*
|
|
|
|
* any improvements or extensions that they make and grant Carnegie the
|
|
|
|
* rights to redistribute these changes.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Machine-specific definitions for TurboChannel support.
|
|
|
|
*
|
|
|
|
* This file must typedef the following types:
|
|
|
|
*
|
|
|
|
* tc_addr_t TurboChannel bus address
|
|
|
|
* tc_offset_t TurboChannel bus address difference (offset)
|
|
|
|
*
|
|
|
|
* This file must prototype or define the following functions
|
|
|
|
* or macros (one or more of which may be no-ops):
|
|
|
|
*
|
|
|
|
* tc_mb() read/write memory barrier (any CPU<->memory
|
|
|
|
* reads/writes before must complete before any
|
|
|
|
* CPU<->memory reads/writes after).
|
|
|
|
* tc_wmb() write memory barrier (any CPU<->memory writes
|
|
|
|
* before must complete before any CPU<->memory
|
|
|
|
* writes after).
|
|
|
|
* tc_syncbus() sync TC bus; make sure CPU writes are
|
|
|
|
* propagated across the TurboChannel bus.
|
|
|
|
* tc_badaddr() return non-zero if the given address is invalid.
|
|
|
|
* TC_DENSE_TO_SPARSE()
|
|
|
|
* convert the given physical address in
|
|
|
|
* TurboChannel dense space to the corresponding
|
|
|
|
* address in TurboChannel sparse space.
|
|
|
|
* TC_PHYS_TO_UNCACHED()
|
|
|
|
* convert the given system memory physical address
|
|
|
|
* to the physical address of the corresponding
|
|
|
|
* region that is not cached.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __MACHINE_TC_MACHDEP_H__
|
|
|
|
#define __MACHINE_TC_MACHDEP_H__
|
|
|
|
|
1996-04-14 04:55:19 +04:00
|
|
|
#include <mips/cpuregs.h> /* defines MACH_PHYS_TO_UNCACHED */
|
|
|
|
|
1995-12-28 11:42:15 +03:00
|
|
|
typedef int32_t tc_addr_t;
|
|
|
|
typedef int32_t tc_offset_t;
|
|
|
|
|
|
|
|
#define tc_mb() wbflush()
|
|
|
|
#define tc_wmb() wbflush()
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX how to do this on a DECstation ?
|
|
|
|
*/
|
|
|
|
#define tc_syncbus() wbflush();
|
|
|
|
|
|
|
|
#define tc_badaddr(tcaddr) \
|
|
|
|
badaddr((void *)(tcaddr), sizeof (u_int32_t))
|
|
|
|
|
1996-04-14 04:55:19 +04:00
|
|
|
#define TC_DENSE_TO_SPARSE(addr) (addr)
|
1995-12-28 11:42:15 +03:00
|
|
|
|
1996-04-14 04:55:19 +04:00
|
|
|
#define TC_PHYS_TO_UNCACHED(addr) MACH_PHYS_TO_UNCACHED(addr)
|
1995-12-28 11:42:15 +03:00
|
|
|
|
1996-01-30 01:52:15 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Use the following macros to compare device names on a pmax, as
|
|
|
|
* the autoconfig structs are in a state of flux.
|
|
|
|
*/
|
|
|
|
struct confargs;
|
|
|
|
|
1996-05-29 10:19:49 +04:00
|
|
|
#define TC_BUS_MATCHNAME(ta, name) \
|
|
|
|
(strncmp( (ta)->ta_modname, (name), TC_ROM_LLEN+1) == 0)
|
1996-01-30 01:52:15 +03:00
|
|
|
|
1996-04-14 04:55:19 +04:00
|
|
|
/*
|
|
|
|
* Port-specific declarations:
|
|
|
|
* Declarations "private" sys/dev/tc/tc.c MI functions used to search
|
|
|
|
* for potential TC-option console devices (framebuffers),
|
|
|
|
*/
|
|
|
|
int tc_checkslot __P((tc_addr_t slotbase, char *namep));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* And declarations for the MD function used to search for and configure
|
|
|
|
* a TC framebuffer as system console, and to configure the TC bus
|
|
|
|
* (the last is a hack).
|
|
|
|
*/
|
|
|
|
|
|
|
|
extern int tc_findconsole __P((int preferred_slot));
|
|
|
|
extern void config_tcbus __P((struct device *parent, int cputype,
|
1996-10-06 10:29:51 +04:00
|
|
|
int printfn __P((void*, const char*)) ));
|
1996-04-14 04:55:19 +04:00
|
|
|
|
|
|
|
|
1995-12-28 11:42:15 +03:00
|
|
|
#endif /* __MACHINE_TC_MACHDEP_H__*/
|