mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-02 08:42:48 +00:00
Add support for the Olivetti branded EISA boards.
Approved by: re (blanket)
This commit is contained in:
parent
0d51d232e5
commit
b8e89ffabc
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=107411
@ -37,7 +37,7 @@
|
||||
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGES.
|
||||
*
|
||||
* $Id: //depot/aic7xxx/aic7xxx/aic7770.c#26 $
|
||||
* $Id: //depot/aic7xxx/aic7xxx/aic7770.c#27 $
|
||||
*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
@ -56,6 +56,8 @@
|
||||
#define ID_AHA_274x 0x04907771
|
||||
#define ID_AHA_284xB 0x04907756 /* BIOS enabled */
|
||||
#define ID_AHA_284x 0x04907757 /* BIOS disabled*/
|
||||
#define ID_OLV_274x 0x04907782 /* Olivetti OEM */
|
||||
#define ID_OLV_274xD 0x04907783 /* Olivetti OEM (Differential) */
|
||||
|
||||
static int aha2840_load_seeprom(struct ahc_softc *ahc);
|
||||
static ahc_device_setup_t ahc_aic7770_VL_setup;
|
||||
@ -77,6 +79,18 @@ struct aic7770_identity aic7770_ident_table [] =
|
||||
"Adaptec 284X SCSI adapter",
|
||||
ahc_aic7770_VL_setup
|
||||
},
|
||||
{
|
||||
ID_OLV_274x,
|
||||
0xFFFFFFFF,
|
||||
"Adaptec (Olivetti OEM) 274X SCSI adapter",
|
||||
ahc_aic7770_EISA_setup
|
||||
},
|
||||
{
|
||||
ID_OLV_274xD,
|
||||
0xFFFFFFFF,
|
||||
"Adaptec (Olivetti OEM) 274X Differential SCSI adapter",
|
||||
ahc_aic7770_EISA_setup
|
||||
},
|
||||
/* Generic chip probes for devices we don't know 'exactly' */
|
||||
{
|
||||
ID_AIC7770,
|
||||
|
Loading…
Reference in New Issue
Block a user