1*9730449eSJoe Beteta# 2*9730449eSJoe Beteta# This file and its contents are supplied under the terms of the 3*9730449eSJoe Beteta# Common Development and Distribution License ("CDDL"), version 1.0. 4*9730449eSJoe Beteta# You may only use this file in accordance with the terms of version 5*9730449eSJoe Beteta# 1.0 of the CDDL. 6*9730449eSJoe Beteta# 7*9730449eSJoe Beteta# A full copy of the text of the CDDL should have accompanied this 8*9730449eSJoe Beteta# source. A copy of the CDDL is also available via the Internet at 9*9730449eSJoe Beteta# http://www.illumos.org/license/CDDL. 10*9730449eSJoe Beteta# 11*9730449eSJoe Beteta 12*9730449eSJoe Beteta# 13*9730449eSJoe Beteta# Copyright 2013 STEC Inc. All rights reserved. 14*9730449eSJoe Beteta# Copyright 2014 Nexenta Systems, Inc. All rights reserved. 15*9730449eSJoe Beteta# 16*9730449eSJoe Beteta 17*9730449eSJoe Beteta# 18*9730449eSJoe Beteta## SKD user configurables properties are: 19*9730449eSJoe Beteta# 20*9730449eSJoe Beteta# Interrupt type Capability: 21*9730449eSJoe Beteta# intr-type-cap: 22*9730449eSJoe Beteta# bitmask, 1==fixed, 2==MSI, 4==MSI-X, default==-1 23*9730449eSJoe Beteta# 24*9730449eSJoe Beteta# Maximum SCSI requests packed in a single message: 25*9730449eSJoe Beteta# max-scsi-reqs-per-msg: 26*9730449eSJoe Beteta# 1-14, default==1 27*9730449eSJoe Beteta# 28*9730449eSJoe Beteta# Maximum SCSI requests issued to Kronos: 29*9730449eSJoe Beteta# max-ssi-reqs: 30*9730449eSJoe Beteta# 1-200, default==64 31*9730449eSJoe Beteta# 32*9730449eSJoe Beteta# Maximum SG elements per block request: 33*9730449eSJoe Beteta# max-sgs-per-req: 34*9730449eSJoe Beteta# 1-4096, default==256 35*9730449eSJoe Beteta# 36*9730449eSJoe Beteta# Debug level: 37*9730449eSJoe Beteta# dbg-level: 38*9730449eSJoe Beteta# 0-2, default==0 39*9730449eSJoe Beteta 40*9730449eSJoe Betetaintr-type-cap=-1; 41*9730449eSJoe Beteta 42*9730449eSJoe Betetamax-scsi-reqs-per-msg=1; 43*9730449eSJoe Beteta 44*9730449eSJoe Betetamax-scsi-reqs=64; 45*9730449eSJoe Beteta 46*9730449eSJoe Betetamax-sgs-per-req=256; 47*9730449eSJoe Beteta 48*9730449eSJoe Betetadbg-level=0; 49