17c478bd9Sstevel@tonic-gate# 27c478bd9Sstevel@tonic-gate# CDDL HEADER START 37c478bd9Sstevel@tonic-gate# 47c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the 5*1cfa752fSRamaswamy Tummala# Common Development and Distribution License (the "License"). 6*1cfa752fSRamaswamy Tummala# You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate# 87c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate# and limitations under the License. 127c478bd9Sstevel@tonic-gate# 137c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate# 197c478bd9Sstevel@tonic-gate# CDDL HEADER END 207c478bd9Sstevel@tonic-gate# 217c478bd9Sstevel@tonic-gate# 22*1cfa752fSRamaswamy Tummala# Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved. 237c478bd9Sstevel@tonic-gate# 247c478bd9Sstevel@tonic-gate# 257c478bd9Sstevel@tonic-gate# Configuration file for the IB nexus driver 267c478bd9Sstevel@tonic-gate# 279d3d2ed0Shiremath# The name and class property are required to indicate that IB nexus 289d3d2ed0Shiremath# driver is a child of the root nexus driver. DO NOT DELETE LINE BELOW 299d3d2ed0Shiremathname="ib" class="root"; 309d3d2ed0Shiremath 319d3d2ed0Shiremath# 327c478bd9Sstevel@tonic-gate# The "port-svc-list" determines the communication services that are 337c478bd9Sstevel@tonic-gate# supported on the system per port. The user will update the property 347c478bd9Sstevel@tonic-gate# to add new services. IB nexus driver creates port device nodes based 357c478bd9Sstevel@tonic-gate# on this property. 367c478bd9Sstevel@tonic-gate# 377c478bd9Sstevel@tonic-gate# The "vppa-svc-list" determines the communication services that are 387c478bd9Sstevel@tonic-gate# supported on the system per port per P_KEY. The user will update the 397c478bd9Sstevel@tonic-gate# property to add new services. IB nexus driver creates port device 407c478bd9Sstevel@tonic-gate# nodes based on this property. 417c478bd9Sstevel@tonic-gate# 427c478bd9Sstevel@tonic-gate# The "hca-svc-list" determines the communication services that are 437c478bd9Sstevel@tonic-gate# supported on the system per HCA. The user will update the property 447c478bd9Sstevel@tonic-gate# to add new services. IB nexus driver creates per-HCA device nodes 457c478bd9Sstevel@tonic-gate# based on this property. 467c478bd9Sstevel@tonic-gate# 477c478bd9Sstevel@tonic-gate# The format of "port-svc-list" is "<service name>", "<service name>", .. 487c478bd9Sstevel@tonic-gate# The format of "vppa-svc-list" is "<service name>", "<service name>", .. 497c478bd9Sstevel@tonic-gate# The format of "hca-svc-list" is "<service name>", "<service name>", .. 507c478bd9Sstevel@tonic-gate# 517c478bd9Sstevel@tonic-gate# Note: 527c478bd9Sstevel@tonic-gate# 1. "service name" is a ASCII string (0 - 9 and a,A - z, Z) 537c478bd9Sstevel@tonic-gate# 2. Multiple entries can be specified 547c478bd9Sstevel@tonic-gate# 3. Maximum length of the "service name" is 4 characters long 557c478bd9Sstevel@tonic-gate# 4. Service names specified in port-svc-list, vppa-svc-list & 567c478bd9Sstevel@tonic-gate# hca-svc-list must be unique. 577c478bd9Sstevel@tonic-gate# 587c478bd9Sstevel@tonic-gate# Examples: 597c478bd9Sstevel@tonic-gate# 607c478bd9Sstevel@tonic-gate# Single entry: 617c478bd9Sstevel@tonic-gate# port-svc-list="sdp"; 627c478bd9Sstevel@tonic-gate# OR 637c478bd9Sstevel@tonic-gate# vppa-svc-list="ipib"; 647c478bd9Sstevel@tonic-gate# OR 657c478bd9Sstevel@tonic-gate# hca-svc-list="nfs" 667c478bd9Sstevel@tonic-gate# 677c478bd9Sstevel@tonic-gate# Multiple entries: 687c478bd9Sstevel@tonic-gate# port-svc-list="sdp", "sdp1"; 697c478bd9Sstevel@tonic-gate# OR 707c478bd9Sstevel@tonic-gate# vppa-svc-list="nfs", "ipib"; 717c478bd9Sstevel@tonic-gate# OR 727c478bd9Sstevel@tonic-gate# hca-svc-list="nfs1", "nfs2"; 737c478bd9Sstevel@tonic-gate# 747c478bd9Sstevel@tonic-gate# 75*1cfa752fSRamaswamy Tummalaport-svc-list="ipib"; 76*1cfa752fSRamaswamy Tummalavppa-svc-list=""; 777c478bd9Sstevel@tonic-gatehca-svc-list=""; 78