1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* -*- mode: c; c-basic-offset: 8 -*- */ 3 4 /* NCR Dual 700 MCA SCSI Driver 5 * 6 * Copyright (C) 2001 by James.Bottomley@HansenPartnership.com 7 */ 8 9 #ifndef _NCR_D700_H 10 #define _NCR_D700_H 11 12 /* Don't turn on debugging messages */ 13 #undef NCR_D700_DEBUG 14 15 /* The MCA identifier */ 16 #define NCR_D700_MCA_ID 0x0092 17 18 /* Defines for the Board registers */ 19 #define BOARD_RESET 0x80 /* board level reset */ 20 #define ADD_PARENB 0x04 /* Address Parity Enabled */ 21 #define DAT_PARENB 0x01 /* Data Parity Enabled */ 22 #define SFBK_ENB 0x10 /* SFDBK Interrupt Enabled */ 23 #define LED0GREEN 0x20 /* Led 0 (red 0; green 1) */ 24 #define LED1GREEN 0x40 /* Led 1 (red 0; green 1) */ 25 #define LED0RED 0xDF /* Led 0 (red 0; green 1) */ 26 #define LED1RED 0xBF /* Led 1 (red 0; green 1) */ 27 28 #define NCR_D700_CLOCK_MHZ 50 29 30 #endif 31