More HARP polishina:

unifdef -UFORE_SBUS -DFORE_PCI
s/ATM_KERNEL/_KERNER/g
This commit is contained in:
Poul-Henning Kamp 2000-10-12 07:42:34 +00:00
parent 6f1214d918
commit 67467625e2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=67002
27 changed files with 62 additions and 146 deletions

View File

@ -66,16 +66,7 @@
*/
#define BUF_MIN_VCC 4 /* Minimum for buffer supply calculations */
#ifdef FORE_SBUS
#if defined(sun4c)
#define BUF_DATA_ALIGN 32 /* Fore-required data alignment */
#elif defined(sun4m)
#define BUF_DATA_ALIGN 64 /* Fore-required data alignment */
#endif
#endif
#ifdef FORE_PCI
#define BUF_DATA_ALIGN 4 /* Fore-required data alignment */
#endif
#if defined(BSD)
/*

View File

@ -125,7 +125,7 @@ typedef volatile struct buf_strategy Buf_strategy;
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* Common Queue Element
*
@ -333,7 +333,7 @@ typedef volatile unsigned long Cmd_code;
#define CMD_GET_PROM 0x09 /* Get PROM data */
#define CMD_INTR_REQ 0x80 /* Request host interrupt */
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
/*
@ -359,7 +359,7 @@ struct init_parms {
typedef volatile struct init_parms Init_parms;
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* Structure defining the parameters for the Activate commands
*/
@ -464,7 +464,7 @@ struct cmd_queue {
#define cmdq_prom cmdq_u.cmdqu_prom
typedef volatile struct cmd_queue Cmd_queue;
#endif /* ATM_KERNEL */
#endif /* _KERNEL */

View File

@ -94,7 +94,6 @@ fore_cmd_allocate(fup)
}
fup->fu_stats = (Fore_stats *) memp;
#ifdef FORE_PCI
/*
* Allocate memory for PROM buffer
*/
@ -103,7 +102,6 @@ fore_cmd_allocate(fup)
return (1);
}
fup->fu_prom = (Fore_prom *) memp;
#endif
return (0);
}
@ -312,7 +310,6 @@ fore_cmd_drain(fup)
wakeup((caddr_t)&fup->fu_stats);
break;
#ifdef FORE_PCI
case CMD_GET_PROM:
if (*hcp->hcq_status & QSTAT_ERROR) {
/*
@ -353,7 +350,6 @@ fore_cmd_drain(fup)
DMA_FREE_ADDR(fup->fu_prom, fup->fu_promd,
sizeof(Fore_prom), 0);
break;
#endif /* FORE_PCI */
default:
log(LOG_ERR, "fore_cmd_drain: unknown command %ld\n",
@ -418,7 +414,6 @@ fore_cmd_free(fup)
fup->fu_stats = NULL;
}
#ifdef FORE_PCI
/*
* Free the PROM buffer
*/
@ -426,7 +421,6 @@ fore_cmd_free(fup)
atm_dev_free(fup->fu_prom);
fup->fu_prom = NULL;
}
#endif
/*
* Free the status words

View File

@ -41,19 +41,6 @@
__RCSID("@(#) $FreeBSD$");
#endif
/*
* Supported device models
*/
Fore_device fore_devices[] = {
#ifdef FORE_SBUS
{SBA200E_PROM_NAME, DEV_FORE_SBA200E},
{SBA200_PROM_NAME, DEV_FORE_SBA200},
#endif
{""}
};
/*
* Device unit table
*/

View File

@ -51,10 +51,8 @@
#endif
#endif
#ifdef FORE_PCI
#include <pci/pcireg.h>
#include <pci/pcivar.h>
#endif
#include <dev/hfa/fore.h>
#include <dev/hfa/fore_aali.h>

View File

@ -45,9 +45,7 @@ __RCSID("@(#) $FreeBSD$");
/*
* Local functions
*/
#ifdef FORE_PCI
static void fore_get_prom __P((Fore_unit *));
#endif
/*
@ -241,14 +239,11 @@ fore_initialize_complete(fup)
*/
fup->fu_flags |= CUF_INITED;
#ifdef FORE_PCI
fore_get_prom(fup);
#endif
return;
}
#ifdef FORE_PCI
/*
* Get device PROM values from CP
*
@ -311,5 +306,4 @@ fore_get_prom(fup)
return;
}
#endif /* FORE_PCI */

View File

@ -129,11 +129,7 @@ fore_intr(arg)
/*
* Has this card issued an interrupt??
*/
#ifdef FORE_PCI
if (*fup->fu_psr) {
#else
if (aap->aali_intr_sent) {
#endif
/*
* Indicate that we've serviced an interrupt.
@ -147,20 +143,9 @@ fore_intr(arg)
*/
switch (fup->fu_config.ac_device) {
#ifdef FORE_SBUS
case DEV_FORE_SBA200E:
SBA200E_HCR_SET(*fup->fu_ctlreg, SBA200E_CLR_SBUS_INTR);
break;
case DEV_FORE_SBA200:
*fup->fu_ctlreg = SBA200_CLR_SBUS_INTR;
break;
#endif
#ifdef FORE_PCI
case DEV_FORE_PCA200E:
PCA200E_HCR_SET(*fup->fu_ctlreg, PCA200E_CLR_HBUS_INT);
break;
#endif
}
aap->aali_intr_sent = CP_WRITE(0);

View File

@ -520,26 +520,6 @@ fore_reset(fup)
switch (fup->fu_config.ac_device) {
#ifdef FORE_SBUS
case DEV_FORE_SBA200E:
/*
* Reset i960 by setting and clearing RESET
*/
SBA200E_HCR_INIT(*fup->fu_ctlreg, SBA200E_RESET);
SBA200E_HCR_CLR(*fup->fu_ctlreg, SBA200E_RESET);
break;
case DEV_FORE_SBA200:
/*
* Reset i960 by setting and clearing RESET
*
* SBA200 will NOT reset if bit is OR'd in!
*/
*fup->fu_ctlreg = SBA200_RESET;
*fup->fu_ctlreg = SBA200_RESET_CLR;
break;
#endif /* FORE_SBUS */
#ifdef FORE_PCI
case DEV_FORE_PCA200E:
/*
* Reset i960 by setting and clearing RESET
@ -549,7 +529,6 @@ fore_reset(fup)
PCA200E_HCR_CLR(*fup->fu_ctlreg, PCA200E_RESET);
break;
#endif
}
}

View File

@ -164,14 +164,9 @@ typedef struct buf_handle Buf_handle;
struct fore_unit {
Cmn_unit fu_cmn; /* Common unit stuff */
Fore_reg *fu_ctlreg; /* Device control register */
#ifdef FORE_SBUS
Fore_reg *fu_intlvl; /* Interrupt level register */
#endif
#ifdef FORE_PCI
Fore_reg *fu_imask; /* Interrupt mask register */
Fore_reg *fu_psr; /* PCI specific register */
pcici_t fu_pcitag; /* PCI tag */
#endif
Fore_mem *fu_ram; /* Device RAM */
u_int fu_ramsize; /* Size of device RAM */
Mon960 *fu_mon; /* Monitor program interface */
@ -226,10 +221,8 @@ struct fore_unit {
Fore_stats *fu_statsd; /* Device statistics buffer (DMA) */
time_t fu_stats_time; /* Last stats request timestamp */
int fu_stats_ret; /* Stats request return code */
#ifdef FORE_PCI
Fore_prom *fu_prom; /* Device PROM buffer */
Fore_prom *fu_promd; /* Device PROM buffer (DMA) */
#endif
struct callout_handle fu_thandle; /* Timer handle */
};
typedef struct fore_unit Fore_unit;

View File

@ -45,7 +45,7 @@ struct atm_connection;
struct atm_attributes;
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* Structure used to define a kernel ATM endpoint service module and its
* associated entry points. An endpoint service is defined as a kernel
@ -94,7 +94,7 @@ struct atm_endpoint {
__P((void *, KBuffer *, u_int));
};
typedef struct atm_endpoint Atm_endpoint;
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
/*
* Endpoint IDs
@ -230,7 +230,7 @@ typedef struct atm_attributes Atm_attributes;
#define CMAPI_SSCOP 2 /* Reliable data (SSCOP) */
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* ATM Connection Instance
*
@ -343,6 +343,6 @@ struct atm_cm_stat {
u_long cms_rcvconn; /* Packets dropped, bad conn state */
u_long cms_rcvconnvc; /* Packets dropped, bad connvc state */
};
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
#endif /* _NETATM_ATM_CM_H */

View File

@ -142,7 +142,7 @@ struct atm_config {
typedef struct atm_config Atm_config;
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* Common structure used to define each physical ATM device interface.
* This structure will (normally) be embedded at the top of each driver's
@ -381,6 +381,6 @@ typedef atm_intr_t *atm_intr_func_t; /* Pointer to callback function */
extern int atm_intr_index;
#define SCHED_ATM schednetisr(atm_intr_index)
#endif
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
#endif /* _NETATM_ATM_IF_H */

View File

@ -39,7 +39,7 @@
#define _NETATM_ATM_PCB_H
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* ATM Socket PCB
*
@ -87,6 +87,6 @@ struct atm_sock_stat {
u_long as_indrop[ATPT_NUM]; /* Input packets dropped */
u_long as_outdrop[ATPT_NUM]; /* Output packets dropped */
};
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
#endif /* _NETATM_ATM_PCB_H */

View File

@ -38,7 +38,7 @@
#ifndef _NETATM_ATM_SIGMGR_H
#define _NETATM_ATM_SIGMGR_H
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* Structure common to all ATM Signalling Managers. Each Signalling
* Manager must create one of these and use it to register itself
@ -66,7 +66,7 @@ struct sigmgr {
int (*sm_ioctl) /* Ioctl handler */
__P((int, caddr_t, caddr_t));
};
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
/*
* ATM Signalling Protocols
@ -78,7 +78,7 @@ struct sigmgr {
#define ATM_SIG_UNI40 5 /* ATM Forum UNI 4.0 */
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* Signalling Protocol Instance control block header. Common header for
* every signalling protocol instance control block.
@ -104,6 +104,6 @@ struct siginst {
#define CALL_CONNECTED 3 /* Connection setup successful */
#define CALL_CLEARED 4 /* Connection has been terminated */
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
#endif /* _NETATM_ATM_SIGMGR_H */

View File

@ -38,7 +38,7 @@
#ifndef _NETATM_ATM_STACK_H
#define _NETATM_ATM_STACK_H
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* Structure used to define a kernel-provided ATM stack service and its
* associated entry points. Each stack service provider must register
@ -282,6 +282,6 @@ struct stackq_entry {
if (atm_stackq_head) \
atm_stack_drain(); \
}
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
#endif /* _NETATM_ATM_STACK_H */

View File

@ -151,7 +151,7 @@ typedef u_char Encaps_t;
#define ATM_ENC_LLC 2 /* LLC encapsulation */
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* ATM timer control block. Used to schedule a timeout via atm_timeout().
* This control block will typically be embedded in a processing-specific
@ -270,6 +270,6 @@ struct sp_link {
#define ATM_DEBUGN5(f,a1,a2,a3,a4,a5)
#endif
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
#endif /* _NETATM_ATM_SYS_H */

View File

@ -39,7 +39,7 @@
#define _NETATM_ATM_VAR_H
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* Global variable declarations
*/
@ -203,6 +203,6 @@ int atm_dgram_usrreq __P((struct socket *, int, KBuffer *,
KBuffer *, KBuffer *));
#endif
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
#endif /* _NETATM_ATM_VAR_H */

View File

@ -39,7 +39,7 @@
#define _NETATM_ATM_VC_H
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* ATM Virtual Channel Connection control block. All vccb's are created
* and controlled by an ATM signalling manager. Each ATM signalling
@ -66,7 +66,7 @@ struct vccb {
long vc_oerrors; /* Errors sending to VCC */
time_t vc_tstamp; /* State transition timestamp */
};
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
/*
* VCC Types

View File

@ -38,7 +38,7 @@
#ifndef _IPATM_IPATM_VAR_H
#define _IPATM_IPATM_VAR_H
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* Structure containing information for each VCC, both SVC and PVC, which
* supports IP traffic.
@ -60,7 +60,7 @@ struct ipvcc {
};
#define iv_forw iv_elem.q_forw
#define iv_back iv_elem.q_back
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
/*
* VCC Flags
@ -83,7 +83,7 @@ struct ipvcc {
#define IPVCC_CLOSED 6 /* VCC has been closed */
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* Structure containing IP-specific information for each ATM network
* interface in the system.
@ -210,6 +210,6 @@ extern Atm_attributes ipatm_aal5llc;
extern Atm_attributes ipatm_aal5null;
extern Atm_attributes ipatm_aal4null;
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
#endif /* _IPATM_IPATM_VAR_H */

View File

@ -38,11 +38,6 @@
#ifndef _NETATM_KERN_INCLUDE_H
#define _NETATM_KERN_INCLUDE_H
/*
* Note that we're compiling kernel code
*/
#define ATM_KERNEL
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/types.h>

View File

@ -72,7 +72,7 @@
* Zeros len bytes of data from addr.
*
*/
#ifdef ATM_KERNEL
#ifdef _KERNEL
#if (defined(BSD) && (BSD >= 199103))
#include <sys/malloc.h>
#define KM_ALLOC(size, type, flags) malloc((size), (type), (flags))
@ -119,10 +119,10 @@
#endif
#define XM_COPY(f, t, l) UM_COPY((f), (t), (l))
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* Kernel buffers
*
@ -526,7 +526,7 @@ typedef int KTimeout_ret;
#define KT_TIME(t) ((t) = time)
#endif
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
#ifndef NTOHL
#if BYTE_ORDER == BIG_ENDIAN

View File

@ -38,7 +38,7 @@
#ifndef _SIGPVC_SIGPVC_VAR_H
#define _SIGPVC_SIGPVC_VAR_H
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* Structure containing state information for each SigPVC protocol instance.
* There will be one instance for each ATM device interface using the SigPVC
@ -52,7 +52,7 @@ struct sigpvc {
#define pv_addr pv_inst.si_addr
#define pv_vccq pv_inst.si_vccq
#define pv_state pv_inst.si_state
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
/*
* SigPVC Protocol States
@ -61,7 +61,7 @@ struct sigpvc {
#define SIGPVC_DETACH 2 /* Detach in progress */
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* SigPVC Virtual Channel Connection control block. All information regarding
* the state of a SigPVC controlled VCC will be recorded here. There will be
@ -70,7 +70,7 @@ struct sigpvc {
struct sigpvc_vccb {
struct vccb vcp_hdr; /* Generic vccb */
};
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
/*
* SigPVC VCC Signalling Protocol States
@ -80,7 +80,7 @@ struct sigpvc_vccb {
#define VCCS_FREE 2 /* Waiting for user to free resources */
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* Global function declarations
*/
@ -90,6 +90,6 @@ struct sigpvc_vccb {
int sigpvc_create_pvc __P((struct sigpvc *, Atm_connvc *, int *));
void sigpvc_close_vcc __P((struct vccb *));
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
#endif /* _SIGPVC_SIGPVC_VAR_H */

View File

@ -147,7 +147,7 @@ struct spansarp_hdr {
#define ARP_PACKET_LEN \
(sizeof(struct spanscls_hdr) + sizeof(struct spansarp_hdr))
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* Macros for manipulating SPANS ARP tables and entries
*/
@ -183,6 +183,6 @@ struct spansarp_hdr {
extern struct spanscls *spanscls_head;
extern struct spanscls_hdr spanscls_hdr;
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
#endif /* _SPANS_SPANSCLS_H */

View File

@ -38,7 +38,7 @@
#ifndef _SPANS_SPANS_VAR_H
#define _SPANS_SPANS_VAR_H
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* Constants to indicate the state of the signalling interface
*/
@ -74,7 +74,7 @@ struct spans {
#define sp_vccq sp_inst.si_vccq
#define sp_state sp_inst.si_state
#define sp_ipserv sp_inst.si_ipserv
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
/*
* SPANS Protocol States
@ -89,7 +89,7 @@ struct spans {
#define SPANS_PROBE_ERR_WAIT (3 * ATM_HZ) /* Time to wait if send probe fails */
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* SPANS Virtual Channel Connection control block. All information
* regarding the state of a SPANS-controlled VCC will be recorded here.
@ -130,7 +130,7 @@ struct spans_vccb {
#define SV_MAX_RETRY 3
#define SV_TIMEOUT (ATM_HZ)
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
/*
@ -147,7 +147,7 @@ struct spans_vccb {
#define SPANS_VC_FREE 8 /* Waiting for user to free resources */
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* Macro to compare two SPANS addresses.
*
@ -254,6 +254,6 @@ extern struct sp_info spans_vcpool;
extern struct sp_info spans_msgpool;
extern struct t_atm_cause spans_cause;
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
#endif /* _SPANS_SPANS_VAR_H */

View File

@ -87,7 +87,7 @@ struct univcc {
#define UVF_NOESTIND 0x0001 /* Don't process ESTABLISH_IND */
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* Global function declarations
*/
@ -110,6 +110,6 @@ void sscf_uni_upper __P((int, void *, int, int));
*/
extern int sscf_uni_vccnt;
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
#endif /* _UNI_SSCF_UNI_VAR_H */

View File

@ -134,7 +134,7 @@ struct sscop_stat {
u_long sos_maa_error[MAA_ERROR_COUNT]; /* Management errors */
};
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* Global function declarations
*/
@ -278,6 +278,6 @@ extern void (*(*sscop_qsaal_pdutab[]))
extern void (*(*sscop_q2110_pdutab[]))
__P((struct sscop *, KBuffer *, caddr_t));
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
#endif /* _UNI_SSCOP_VAR_H */

View File

@ -38,7 +38,7 @@
#ifndef _UNI_UNIIP_VAR_H
#define _UNI_UNIIP_VAR_H
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* UNI IP network interface structure. There will be one such structure for
* each IP network interface attached via a UNI signalling instance.
@ -59,7 +59,7 @@ struct uniip {
#define uip_arpsvrip uip_arpsvrmap.am_dstip
#define uip_arpsvratm uip_arpsvrmap.am_dstatm
#define uip_arpsvrsub uip_arpsvrmap.am_dstatmsub
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
/*
* UNI Interface Flags
@ -77,7 +77,7 @@ struct uniip {
#define UIAS_CLIENT_ACTIVE 6 /* Client - active */
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* Structure for allowable IP prefixes for ATMARP server registration
*/
@ -126,7 +126,7 @@ struct uniarp {
#define ua_dstip ua_arpmap.am_dstip
#define ua_dstatm ua_arpmap.am_dstatm
#define ua_dstatmsub ua_arpmap.am_dstatmsub
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
/*
* UNIARP Entry Flags
@ -197,7 +197,7 @@ struct atmarp_hdr {
#define ARP_TL_LMASK 0x3f /* Length mask */
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* Timer macros
*/
@ -313,6 +313,6 @@ int uniip_start __P((void));
int uniip_stop __P((void));
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
#endif /* _UNI_UNIIP_VAR_H */

View File

@ -43,7 +43,7 @@
#define FALSE 0
#endif
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* Structure containing state information for each UNI protocol
* instance. There will be one instance for each ATM device interface
@ -68,7 +68,7 @@ struct unisig {
#define us_vccq us_inst.si_vccq
#define us_state us_inst.si_state
#define us_ipserv us_inst.si_ipserv
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
/*
* Signalling manager states
@ -99,7 +99,7 @@ struct unisig {
#define UNISIG_SSCF_TIMEOUT (3 * ATM_HZ)
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* UNI Virtual Channel Connection control block. All information
* regarding the state of a UNI-controlled VCC will be recorded here.
@ -130,7 +130,7 @@ struct unisig_vccb {
#define uv_ierrors vcp_hdr.vc_ierrors
#define uv_oerrors vcp_hdr.vc_oerrors
#define uv_tstamp vcp_hdr.vc_tstamp
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
/*
* UNI VCC protocol states. Taken from The ATM Forum UNI 3.0 (section
@ -182,7 +182,7 @@ struct unisig_vccb {
#define UNI_VC_SAAL_ESTAB 20 /* Signalling AAL back up */
#ifdef ATM_KERNEL
#ifdef _KERNEL
/*
* UNI Timer Values. These values (except for T317) are taken from
* The ATM Forum UNI 3.0 (section 5.7.2).
@ -318,6 +318,6 @@ extern struct sp_info unisig_vcpool;
extern struct sp_info unisig_msgpool;
extern struct sp_info unisig_iepool;
#endif /* ATM_KERNEL */
#endif /* _KERNEL */
#endif /* _UNISIG_VAR_H */