10Sstevel@tonic-gate# 20Sstevel@tonic-gate# CDDL HEADER START 30Sstevel@tonic-gate# 40Sstevel@tonic-gate# The contents of this file are subject to the terms of the 5*12163SRamaswamy.Tummala@Sun.COM# Common Development and Distribution License (the "License"). 6*12163SRamaswamy.Tummala@Sun.COM# You may not use this file except in compliance with the License. 70Sstevel@tonic-gate# 80Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 90Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing. 100Sstevel@tonic-gate# See the License for the specific language governing permissions 110Sstevel@tonic-gate# and limitations under the License. 120Sstevel@tonic-gate# 130Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each 140Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 150Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the 160Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying 170Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner] 180Sstevel@tonic-gate# 190Sstevel@tonic-gate# CDDL HEADER END 200Sstevel@tonic-gate# 210Sstevel@tonic-gate# 22*12163SRamaswamy.Tummala@Sun.COM# Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved. 230Sstevel@tonic-gate# 240Sstevel@tonic-gate# 250Sstevel@tonic-gate# Configuration file for the IB nexus driver 260Sstevel@tonic-gate# 271093Shiremath# The name and class property are required to indicate that IB nexus 281093Shiremath# driver is a child of the root nexus driver. DO NOT DELETE LINE BELOW 291093Shiremathname="ib" class="root"; 301093Shiremath 311093Shiremath# 320Sstevel@tonic-gate# The "port-svc-list" determines the communication services that are 330Sstevel@tonic-gate# supported on the system per port. The user will update the property 340Sstevel@tonic-gate# to add new services. IB nexus driver creates port device nodes based 350Sstevel@tonic-gate# on this property. 360Sstevel@tonic-gate# 370Sstevel@tonic-gate# The "vppa-svc-list" determines the communication services that are 380Sstevel@tonic-gate# supported on the system per port per P_KEY. The user will update the 390Sstevel@tonic-gate# property to add new services. IB nexus driver creates port device 400Sstevel@tonic-gate# nodes based on this property. 410Sstevel@tonic-gate# 420Sstevel@tonic-gate# The "hca-svc-list" determines the communication services that are 430Sstevel@tonic-gate# supported on the system per HCA. The user will update the property 440Sstevel@tonic-gate# to add new services. IB nexus driver creates per-HCA device nodes 450Sstevel@tonic-gate# based on this property. 460Sstevel@tonic-gate# 470Sstevel@tonic-gate# The format of "port-svc-list" is "<service name>", "<service name>", .. 480Sstevel@tonic-gate# The format of "vppa-svc-list" is "<service name>", "<service name>", .. 490Sstevel@tonic-gate# The format of "hca-svc-list" is "<service name>", "<service name>", .. 500Sstevel@tonic-gate# 510Sstevel@tonic-gate# Note: 520Sstevel@tonic-gate# 1. "service name" is a ASCII string (0 - 9 and a,A - z, Z) 530Sstevel@tonic-gate# 2. Multiple entries can be specified 540Sstevel@tonic-gate# 3. Maximum length of the "service name" is 4 characters long 550Sstevel@tonic-gate# 4. Service names specified in port-svc-list, vppa-svc-list & 560Sstevel@tonic-gate# hca-svc-list must be unique. 570Sstevel@tonic-gate# 580Sstevel@tonic-gate# Examples: 590Sstevel@tonic-gate# 600Sstevel@tonic-gate# Single entry: 610Sstevel@tonic-gate# port-svc-list="sdp"; 620Sstevel@tonic-gate# OR 630Sstevel@tonic-gate# vppa-svc-list="ipib"; 640Sstevel@tonic-gate# OR 650Sstevel@tonic-gate# hca-svc-list="nfs" 660Sstevel@tonic-gate# 670Sstevel@tonic-gate# Multiple entries: 680Sstevel@tonic-gate# port-svc-list="sdp", "sdp1"; 690Sstevel@tonic-gate# OR 700Sstevel@tonic-gate# vppa-svc-list="nfs", "ipib"; 710Sstevel@tonic-gate# OR 720Sstevel@tonic-gate# hca-svc-list="nfs1", "nfs2"; 730Sstevel@tonic-gate# 740Sstevel@tonic-gate# 75*12163SRamaswamy.Tummala@Sun.COMport-svc-list="ipib"; 76*12163SRamaswamy.Tummala@Sun.COMvppa-svc-list=""; 770Sstevel@tonic-gatehca-svc-list=""; 78