Skip to content

Commit

Permalink
4906 cpqary3: add support for hp gen8+ smart array controllers
Browse files Browse the repository at this point in the history
Reviewed by: Garrett D'Amore <[email protected]>
Reviewed by: Eric Sproul <[email protected]>
Approved by: Dan McDonald <[email protected]>
  • Loading branch information
rmustacc committed Jul 3, 2014
1 parent e9f82d6 commit 08e9584
Show file tree
Hide file tree
Showing 2 changed files with 93 additions and 2 deletions.
9 changes: 8 additions & 1 deletion usr/src/pkg/manifests/driver-storage-cpqary3.mf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#

#
# Copyright 2013 Joyent, Inc. All rights reserved.
# Copyright 2014 Joyent, Inc. All rights reserved.
# Copyright 2014 Nexenta Systems, Inc. All rights reserved.
#

Expand All @@ -27,6 +27,13 @@ dir path=kernel/drv/$(ARCH64) group=sys
dir path=usr/share/man
dir path=usr/share/man/man7d
driver name=cpqary3 class=scsi \
alias=pci103c,1920 \
alias=pci103c,1921 \
alias=pci103c,1922 \
alias=pci103c,1923 \
alias=pci103c,1924 \
alias=pci103c,1926 \
alias=pci103c,1928 \
alias=pci103c,3211 \
alias=pci103c,3212 \
alias=pci103c,3223 \
Expand Down
86 changes: 85 additions & 1 deletion usr/src/uts/common/io/cpqary3/cpqary3_bd.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*/

/*
* Copyright (C) 2013 Hewlett-Packard Development Company, L.P.
* Copyright (C) 2014 Hewlett-Packard Development Company, L.P.
*/

/*
Expand Down Expand Up @@ -408,6 +408,90 @@ static cpqary3_bd_t cpqary3_bds[] = {
INTR_PERF_MASK,
0,
1
},
{
"Smart Array P230i Controller",
8,
0x103c,
0x1928,
OUTBOUND_LIST_5300_EXISTS,
SA_BD_SAS,
0,
INTR_PERF_MASK,
0,
1
},
{
"Smart Array P430i Controller",
8,
0x103c,
0x1920,
OUTBOUND_LIST_5300_EXISTS,
SA_BD_SAS,
0,
INTR_PERF_MASK,
0,
1
},
{
"Smart Array P430 Controller",
8,
0x103c,
0x1922,
OUTBOUND_LIST_5300_EXISTS,
SA_BD_SAS,
0,
INTR_PERF_MASK,
0,
1
},
{
"Smart Array P431 Controller",
8,
0x103c,
0x1923,
OUTBOUND_LIST_5300_EXISTS,
SA_BD_SAS,
0,
INTR_PERF_MASK,
0,
1
},
{
"Smart Array P731m Controller",
8,
0x103c,
0x1926,
OUTBOUND_LIST_5300_EXISTS,
SA_BD_SAS,
0,
INTR_PERF_MASK,
0,
1
},
{
"Smart Array P830i Controller",
8,
0x103c,
0x1921,
OUTBOUND_LIST_5300_EXISTS,
SA_BD_SAS,
0,
INTR_PERF_MASK,
0,
1
},
{
"Smart Array P830 Controller",
8,
0x103c,
0x1924,
OUTBOUND_LIST_5300_EXISTS,
SA_BD_SAS,
0,
INTR_PERF_MASK,
0,
1
}
};

Expand Down

0 comments on commit 08e9584

Please sign in to comment.