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