1fcf3ce44SJohn Forte#
2fcf3ce44SJohn Forte# CDDL HEADER START
3fcf3ce44SJohn Forte#
4fcf3ce44SJohn Forte# The contents of this file are subject to the terms of the
5fcf3ce44SJohn Forte# Common Development and Distribution License (the "License").
6fcf3ce44SJohn Forte# You may not use this file except in compliance with the License.
7fcf3ce44SJohn Forte#
8*8f23e9faSHans Rosenfeld# You can obtain a copy of the license at
9*8f23e9faSHans Rosenfeld# http://www.opensource.org/licenses/cddl1.txt.
10fcf3ce44SJohn Forte# See the License for the specific language governing permissions
11fcf3ce44SJohn Forte# and limitations under the License.
12fcf3ce44SJohn Forte#
13fcf3ce44SJohn Forte# When distributing Covered Code, include this CDDL HEADER in each
14fcf3ce44SJohn Forte# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15fcf3ce44SJohn Forte# If applicable, add the following below this CDDL HEADER, with the
16fcf3ce44SJohn Forte# fields enclosed by brackets "[]" replaced with your own identifying
17fcf3ce44SJohn Forte# information: Portions Copyright [yyyy] [name of copyright owner]
18fcf3ce44SJohn Forte#
19fcf3ce44SJohn Forte# CDDL HEADER END
20fcf3ce44SJohn Forte#
21*8f23e9faSHans Rosenfeld# Copyright (c) 2004-2012 Emulex. All rights reserved.
2282527734SSukumar Swaminathan# Use is subject to license terms.
23fcf3ce44SJohn Forte#
24fcf3ce44SJohn Forte#
25fcf3ce44SJohn Forte#
26fcf3ce44SJohn Forte#
27fcf3ce44SJohn Forte# Solaris LightPulse emlxs driver: global initialized data.
28fcf3ce44SJohn Forte#
29fcf3ce44SJohn Forte
30fcf3ce44SJohn Forte
31fcf3ce44SJohn Forte# console-notices:  Sets the verbose level for driver notices to the console.
32fcf3ce44SJohn Forte# console-warnings: Sets the verbose level for driver warnings to the console.
33fcf3ce44SJohn Forte# console-errors:   Sets the verbose level for driver errors to the console.
34fcf3ce44SJohn Forte#
35fcf3ce44SJohn Forte# log-notices:  Sets the verbose level for driver notices to the system log file*.
36fcf3ce44SJohn Forte# log-warnings: Sets the verbose level for driver warnings to the system log file*.
37fcf3ce44SJohn Forte# log-errors:   Sets the verbose level for driver errors to the system log file*.
38fcf3ce44SJohn Forte#
39fcf3ce44SJohn Forte#       *NOTE:  The system log file is normally found at /var/adm/messages.
40fcf3ce44SJohn Forte#
41fcf3ce44SJohn Forte# Each parameter is a bit mask that enables/disables specific types of messages.
42fcf3ce44SJohn Forte# If the bit is set, then the messages of that type are enabled.
43fcf3ce44SJohn Forte#
44fcf3ce44SJohn Forte# The available message types are listed below:
45fcf3ce44SJohn Forte#
46fcf3ce44SJohn Forte# LOG_MISC        0x00000001     /* Misc events */
47fcf3ce44SJohn Forte# LOG_DRIVER      0x00000002     /* Driver attach and detach events */
48fcf3ce44SJohn Forte# LOG_INIT        0x00000004     /* HBA initialization events */
49fcf3ce44SJohn Forte# LOG_MEM         0x00000008     /* Memory managment events */
50fcf3ce44SJohn Forte# LOG_SLI         0x00000010     /* Service Level Interface (SLI) events */
51fcf3ce44SJohn Forte# LOG_MBOX        0x00000020     /* Mailbox events */
52fcf3ce44SJohn Forte# LOG_NODE        0x00000040     /* Node events */
53fcf3ce44SJohn Forte# LOG_LINK        0x00000080     /* Link events */
54fcf3ce44SJohn Forte# LOG_ELS         0x00000100     /* ELS events */
55fcf3ce44SJohn Forte# LOG_PKT         0x00000200     /* General I/O packet events */
56fcf3ce44SJohn Forte# LOG_FCP         0x00000400     /* FCP traffic events */
57fcf3ce44SJohn Forte# LOG_TGTM        0x00000800     /* FCP target mode events */
58fcf3ce44SJohn Forte# LOG_IP          0x00001000     /* IP traffic events */
59fcf3ce44SJohn Forte# LOG_SFS         0x00002000     /* SFS events */
60fcf3ce44SJohn Forte# LOG_IOCTL       0x00004000     /* IOCtl events */
61fcf3ce44SJohn Forte# LOG_FIRMWARE    0x00008000     /* Firmware download events */
62fcf3ce44SJohn Forte# LOG_CT          0x00010000     /* CT events */
63fcf3ce44SJohn Forte# LOG_FCSP        0x00020000     /* FCSP events */
64fcf3ce44SJohn Forte# LOG_RESERVED    0xfffc0000     /* Reserved for future use */
65fcf3ce44SJohn Forte#
66fcf3ce44SJohn Forte# Range:  Min:0  Max:0xffffffff
67fcf3ce44SJohn Forte#
68fcf3ce44SJohn Forte# console-notices  = 0;  (Default)
69fcf3ce44SJohn Forte# console-warnings = 0;  (Default)
70fcf3ce44SJohn Forte# console-errors   = 0;  (Default)
71fcf3ce44SJohn Forte#
72fcf3ce44SJohn Forte# log-notices  = 0xffffffff;  (Default)
73fcf3ce44SJohn Forte# log-warnings = 0xffffffff;  (Default)
74fcf3ce44SJohn Forte# log-errors   = 0xffffffff;  (Default)
75fcf3ce44SJohn Forte#
76fcf3ce44SJohn Forteconsole-notices=0;
77fcf3ce44SJohn Forteconsole-warnings=0;
78fcf3ce44SJohn Forteconsole-errors=0;
79fcf3ce44SJohn Fortelog-notices=0xffffffff;
80fcf3ce44SJohn Fortelog-warnings=0xffffffff;
81fcf3ce44SJohn Fortelog-errors=0xffffffff;
82fcf3ce44SJohn Forte
83fcf3ce44SJohn Forte
84fcf3ce44SJohn Forte# num-iocbs:  Sets the number of iocb buffers to allocate.
85fcf3ce44SJohn Forte#
86fcf3ce44SJohn Forte# Range:  Min:128  Max:10240  Default:1024
87fcf3ce44SJohn Forte#
88fcf3ce44SJohn Fortenum-iocbs=1024;
89fcf3ce44SJohn Forte
90fcf3ce44SJohn Forte
91fcf3ce44SJohn Forte# max-xfer-size:  Sets the maximum SCSI transfer size in bytes per IO
92fcf3ce44SJohn Forte# This parameter is only used by the driver on i386 platforms.
93fcf3ce44SJohn Forte# The driver does not limit transfer size on SPARC platforms.
94fcf3ce44SJohn Forte#
95fcf3ce44SJohn Forte# This parameter determines the scatter gather list buffer size.
96fcf3ce44SJohn Forte# A pool of buffers is reallocated by the driver during boot.
97fcf3ce44SJohn Forte# A larger transfer size requires a larger memory allocation.
98fcf3ce44SJohn Forte#
99fcf3ce44SJohn Forte#       Memory_model       max-xfer-size
100fcf3ce44SJohn Forte#     ----------------------------------------
101fcf3ce44SJohn Forte#       Small              131072 - 339968
102fcf3ce44SJohn Forte#       Medium             339969 - 688128
103fcf3ce44SJohn Forte#       Large              688129 - 1388544
104fcf3ce44SJohn Forte#
105fcf3ce44SJohn Forte# Range:  Min:131072   Max:1388544   Default:339968
106fcf3ce44SJohn Forte#
107fcf3ce44SJohn Fortemax-xfer-size=339968;
108fcf3ce44SJohn Forte
109fcf3ce44SJohn Forte
110fcf3ce44SJohn Forte# ub-bufs:  Sets the number of unsolicited buffers to be allocated.
111fcf3ce44SJohn Forte#
112fcf3ce44SJohn Forte# Range:  Min:40  Max:16320  Default:1000
113fcf3ce44SJohn Forte#
114fcf3ce44SJohn Forteub-bufs=1000;
115fcf3ce44SJohn Forte
116fcf3ce44SJohn Forte
117fcf3ce44SJohn Forte#
118fcf3ce44SJohn Forte# +++ Variables relating to IP networking support. +++
119fcf3ce44SJohn Forte#
120fcf3ce44SJohn Forte
121fcf3ce44SJohn Forte# network-on:  Enable/Disable IP networking support in the driver.
122fcf3ce44SJohn Forte#
123fcf3ce44SJohn Forte# 0 = Disables IP networking support in the driver.
124fcf3ce44SJohn Forte# 1 = Enables IP networking in the driver.
125fcf3ce44SJohn Forte#
126fcf3ce44SJohn Forte# Range:  Min:0  Max:1  Default:1
127fcf3ce44SJohn Forte#
128fcf3ce44SJohn Fortenetwork-on=1;
129fcf3ce44SJohn Forte
130fcf3ce44SJohn Forte
131fcf3ce44SJohn Forte#
132fcf3ce44SJohn Forte# +++ Fibre Channel specific parameters +++
133fcf3ce44SJohn Forte#
134fcf3ce44SJohn Forte# topology:  link topology for initializing the Fibre Channel connection.
135fcf3ce44SJohn Forte#
136fcf3ce44SJohn Forte#          0 = attempt loop mode, if it fails attempt point-to-point mode
137fcf3ce44SJohn Forte#          2 = attempt point-to-point mode only
138fcf3ce44SJohn Forte#          4 = attempt loop mode only
139fcf3ce44SJohn Forte#          6 = attempt point-to-point mode, if it fails attempt loop mode
140fcf3ce44SJohn Forte#
141fcf3ce44SJohn Forte# Set point-to-point mode if you want to run as an N_Port.
142fcf3ce44SJohn Forte# Set loop mode if you want to run as an NL_Port.
143fcf3ce44SJohn Forte#
144fcf3ce44SJohn Forte# Range:  Min:0  Max:6  Default:0
145fcf3ce44SJohn Forte#
146fcf3ce44SJohn Fortetopology=0;
147fcf3ce44SJohn Forte
148fcf3ce44SJohn Forte
149fcf3ce44SJohn Forte# link-speed:  Sets the link speed setting for initializing the Fibre Channel
150fcf3ce44SJohn Forte#              connection.
151fcf3ce44SJohn Forte#
152fcf3ce44SJohn Forte#  0 = auto select
153fcf3ce44SJohn Forte#  1 = 1 Gigabaud
154fcf3ce44SJohn Forte#  2 = 2 Gigabaud
155fcf3ce44SJohn Forte#  4 = 4 Gigabaud
156fcf3ce44SJohn Forte#  8 = 8 Gigabaud
157fcf3ce44SJohn Forte#
158fcf3ce44SJohn Forte# Range:  Min:0  Max:8  Default:0
159fcf3ce44SJohn Forte#
160fcf3ce44SJohn Fortelink-speed=0;
161fcf3ce44SJohn Forte
162fcf3ce44SJohn Forte# ack0: Determines if ACK0 is used instead of ACK1 for class 2
163fcf3ce44SJohn Forte#       acknowledgement.
164fcf3ce44SJohn Forte#
165fcf3ce44SJohn Forte# 0 = The driver will use ACK1 for class 2 acknowledgement.
166fcf3ce44SJohn Forte# 1 = The driver will use ACK0 for class 2 acknowledgement.
167fcf3ce44SJohn Forte#
168fcf3ce44SJohn Forte# Range:  Min:0  Max:1  Default:0
169fcf3ce44SJohn Forte#
170fcf3ce44SJohn Forteack0=0;
171fcf3ce44SJohn Forte
172fcf3ce44SJohn Forte
173fcf3ce44SJohn Forte# cr-delay: Sets the coalesce response delay in the adapter.
174fcf3ce44SJohn Forte#
175fcf3ce44SJohn Forte# This value specifies a count of milliseconds after which an interrupt
176fcf3ce44SJohn Forte# response is generated if cr-count has not been satisfied. This value is
177fcf3ce44SJohn Forte# set to 0 to disable the Coalesce Response feature as default.
178fcf3ce44SJohn Forte#
179fcf3ce44SJohn Forte# Range:  Min:0  Max:63  Default:0
180fcf3ce44SJohn Forte#
181fcf3ce44SJohn Fortecr-delay=0;
182fcf3ce44SJohn Forte
183fcf3ce44SJohn Forte
184fcf3ce44SJohn Forte# cr-count: Sets the coalesce response count in the adapter.
185fcf3ce44SJohn Forte#
186fcf3ce44SJohn Forte# This value specifies a count of I/O completions after which an interrupt
187fcf3ce44SJohn Forte# response is generated. This feature is disabled if cr-delay is set to 0.
188fcf3ce44SJohn Forte#
189fcf3ce44SJohn Forte# Range:  Min:1  Max:255  Default:1
190fcf3ce44SJohn Forte#
191fcf3ce44SJohn Fortecr-count=1;
192fcf3ce44SJohn Forte
193fcf3ce44SJohn Forte
194fcf3ce44SJohn Forte# assign-alpa: Sets a preferred ALPA for the adapter.
195fcf3ce44SJohn Forte#
196fcf3ce44SJohn Forte# This is only valid if topology is loop. A zero setting means no preference.
197fcf3ce44SJohn Forte# If multiple adapter instances on the same host are on the same loop,
198fcf3ce44SJohn Forte# you will want to set this value differently for each adapter.
199fcf3ce44SJohn Forte#
200fcf3ce44SJohn Forte# For example: emlxs0-assign-alpa=0x01;  assigns ALPA 0x01 to adapter 0
201fcf3ce44SJohn Forte#              emlxs1-assign-alpa=0x02;  assigns ALPA 0x02 to adapter 1
202fcf3ce44SJohn Forte#              emlxs2-assign-alpa=0x04;  assigns ALPA 0x04 to adapter 2
203fcf3ce44SJohn Forte#
204fcf3ce44SJohn Forte# Range:  Min:0x00  Max:0xef  Default:0x00  (valid ALPA's only)
205fcf3ce44SJohn Forte#
206fcf3ce44SJohn Forteassign-alpa=0x00;
207fcf3ce44SJohn Forte
208fcf3ce44SJohn Forte
209fcf3ce44SJohn Forte# adisc-support:  Sets the ADISC login support level.
210fcf3ce44SJohn Forte#
211fcf3ce44SJohn Forte# This sets the level of driver support for the Fibre Channel ADISC
212fcf3ce44SJohn Forte# login I/O recovery method.
213fcf3ce44SJohn Forte#
214fcf3ce44SJohn Forte# 0 = No support. Flush active I/O's for all FCP target devices at link down.
215fcf3ce44SJohn Forte# 1 = Partial support. Flush I/O's for non-FCP2 target devices at link down.
216fcf3ce44SJohn Forte# 2 = Full support. Hold active I/O's for all devices at link down.
217fcf3ce44SJohn Forte#
218fcf3ce44SJohn Forte# Range:  Min:0  Max:2  Default:1
219fcf3ce44SJohn Forte#
220fcf3ce44SJohn Forteadisc-support=1;
221fcf3ce44SJohn Forte
222fcf3ce44SJohn Forte
223fcf3ce44SJohn Forte# pm-support:  Enable/Disable power management support in the driver.
224fcf3ce44SJohn Forte#
225fcf3ce44SJohn Forte# 0 = Disables power management support in the driver.
226fcf3ce44SJohn Forte# 1 = Enables power management support in the driver.
227fcf3ce44SJohn Forte#
228fcf3ce44SJohn Forte# Range:  Min:0  Max:1  Default:0
229fcf3ce44SJohn Forte#
230fcf3ce44SJohn Fortepm-support=0;
231fcf3ce44SJohn Forte
232fcf3ce44SJohn Forte
233fcf3ce44SJohn Forte# num-nodes:  Number of fibre channel nodes (NPorts) the driver will support.
234fcf3ce44SJohn Forte#
235fcf3ce44SJohn Forte# 0 = Indicates auto detect limit of adapter.
236fcf3ce44SJohn Forte#
237fcf3ce44SJohn Forte# Range:  Min:0  Max:4096  Default:0
238fcf3ce44SJohn Forte#
239fcf3ce44SJohn Fortenum-nodes=0;
240fcf3ce44SJohn Forte
241fcf3ce44SJohn Forte
242fcf3ce44SJohn Forte# pci-max-read:  Sets the PCI-X max memory read byte count on the adapter.
243fcf3ce44SJohn Forte#
244fcf3ce44SJohn Forte# This value controls the adapter's max PCI-X memory read count.
245fcf3ce44SJohn Forte# On Sunfire x4100/4200 systems this parameter must be changed to
246fcf3ce44SJohn Forte# 1024 bytes.  Currently, this parameter should only be modified on
247fcf3ce44SJohn Forte# Sunfire x4100/4200 systems due to the unique nature of the PCI-X bus
248fcf3ce44SJohn Forte# on these systems, otherwise it should be left as default.
249fcf3ce44SJohn Forte#
250fcf3ce44SJohn Forte# Options:  512, 1024, 2048, 4096
251fcf3ce44SJohn Forte#
252fcf3ce44SJohn Forte# Range:  Min:512  Max:4096  Default:2048
253fcf3ce44SJohn Forte#
254fcf3ce44SJohn Forte# *Uncomment this parameter for Sunfire x4100/4200 systems only
255fcf3ce44SJohn Forte#pci-max-read=1024;
256fcf3ce44SJohn Forte
257fcf3ce44SJohn Forte
258fcf3ce44SJohn Forte# linkup-delay:  Sets the linkup delay period (seconds) after initialization.
259fcf3ce44SJohn Forte#
260fcf3ce44SJohn Forte# This value controls how long the driver waits for the Fibre Channel
261fcf3ce44SJohn Forte# link to come up after an adapter reset before continuing normal operation.
262fcf3ce44SJohn Forte#
263fcf3ce44SJohn Forte# Range:  Min:0  Max:60  Default:10
264fcf3ce44SJohn Forte#
265fcf3ce44SJohn Fortelinkup-delay=10;
266fcf3ce44SJohn Forte
267fcf3ce44SJohn Forte
268fcf3ce44SJohn Forte# enable-npiv:  Enables NPIV support in the driver.
269fcf3ce44SJohn Forte#
270fcf3ce44SJohn Forte# Requires SLI3 mode support in the adapter firmware.
271fcf3ce44SJohn Forte#
272fcf3ce44SJohn Forte# Range:  Min:0  Max:1  Default:0
273fcf3ce44SJohn Forte#
274fcf3ce44SJohn Forteenable-npiv=0;
275fcf3ce44SJohn Forte
276fcf3ce44SJohn Forte
277fcf3ce44SJohn Forte# vport-restrict-login:  Restricts login to virtual ports to conserve resources.
278fcf3ce44SJohn Forte#
279fcf3ce44SJohn Forte# Requires SLI3 mode support in the adapter firmware.
280fcf3ce44SJohn Forte# Requires enable-npiv parameter to be set to 1.
281fcf3ce44SJohn Forte#
282fcf3ce44SJohn Forte# Range:  Min:0  Max:1  Default:1
283fcf3ce44SJohn Forte#
284fcf3ce44SJohn Fortevport-restrict-login=1;
285fcf3ce44SJohn Forte
286fcf3ce44SJohn Forte
287fcf3ce44SJohn Forte# enable-auth:  Enables DHCHAP support in the driver.
288fcf3ce44SJohn Forte#
289fcf3ce44SJohn Forte# Range:  Min:0  Max:1  Default:0
290fcf3ce44SJohn Forte#
291fcf3ce44SJohn Forteenable-auth=0;
292fcf3ce44SJohn Forte
293fcf3ce44SJohn Forte
294fcf3ce44SJohn Forte# target-mode:  Controls COMSTAR target mode support for an adapter port.
295fcf3ce44SJohn Forte#
296fcf3ce44SJohn Forte# 0 = Disables target mode support. Enables  initiator mode support.
297fcf3ce44SJohn Forte# 1 = Enables  target mode support. Disables initiator mode support.
298fcf3ce44SJohn Forte#
299fcf3ce44SJohn Forte# Usage examples:
300fcf3ce44SJohn Forte#     target-mode=1;          Sets global default for target mode
301fcf3ce44SJohn Forte#     emlxs0-target-mode=0;   emlxs0 will be an initiator port
302fcf3ce44SJohn Forte#     emlxs1-target-mode=1;   emlxs1 will be a target port
303fcf3ce44SJohn Forte#
304fcf3ce44SJohn Forte# Range:  Min:0  Max:1  Default:0
305fcf3ce44SJohn Forte#
306fcf3ce44SJohn Fortetarget-mode=0;
307fcf3ce44SJohn Forte
308fcf3ce44SJohn Forte
309fcf3ce44SJohn Forte# ddi-forceattach:  Force driver attach during system boot.
310fcf3ce44SJohn Forte#
311fcf3ce44SJohn Forte# 0 = Disables forced driver attach during system boot. (Default)
312fcf3ce44SJohn Forte# 1 = Enables forced driver attach during system boot.
313fcf3ce44SJohn Forte#
314fcf3ce44SJohn Forte# This parameter is required if you enable target-mode.
315fcf3ce44SJohn Forte# If target mode is enabled the emlxs driver MUST be force attached
316fcf3ce44SJohn Forte# at system boot to ensure remote initiators will be able to
317fcf3ce44SJohn Forte# discover it.
318fcf3ce44SJohn Forte#
319fcf3ce44SJohn Forte# Range:  Min:0  Max:1  Default:0
320fcf3ce44SJohn Forte#
321fcf3ce44SJohn Forte# *Uncomment this parameter when target-mode is enabled
322*8f23e9faSHans Rosenfeld#ddi-forceattach=1;
323fcf3ce44SJohn Forte
324fcf3ce44SJohn Forte
325fcf3ce44SJohn Forte# fct-bufpool:  Controls buffer pool used by COMSTAR for FCP IOs
326fcf3ce44SJohn Forte#               This should ONLY be used if target-mode is enabled
327fcf3ce44SJohn Forte#
328fcf3ce44SJohn Forte#    Each entry consists of "Size:Count" where:
329fcf3ce44SJohn Forte#    Size is the decimal size, in bytes, of this buffer pool
330fcf3ce44SJohn Forte#    Count is the decimal number of buffers of this corresponding size
331fcf3ce44SJohn Forte#    There can be at most 16 different types of entries
332fcf3ce44SJohn Forte#
333fcf3ce44SJohn Forte#    The default behavior for a target port is
334fcf3ce44SJohn Forte#    fct-bufpool="512:256",
335fcf3ce44SJohn Forte#                "8192:128",
336fcf3ce44SJohn Forte#                "65536:64",
337fcf3ce44SJohn Forte#                "131072:64";
338fcf3ce44SJohn Forte#
339fcf3ce44SJohn Forte# Usage examples:
340fcf3ce44SJohn Forte#     fct-bufpool          Sets global default for buffer pool
341fcf3ce44SJohn Forte#     emlxs0-fct-bufpool   Sets buffer pool for emlxs0
342fcf3ce44SJohn Forte#     emlxs1-fct-bufpool   Sets buffer pool for emlxs1
343fcf3ce44SJohn Forte#
344fcf3ce44SJohn Forte
345fcf3ce44SJohn Forte
346fcf3ce44SJohn Forte# fct-queue-depth:  Controls the queue depth for a COMSTAR target port
347fcf3ce44SJohn Forte#                   This should ONLY be used if target-mode is enabled
348fcf3ce44SJohn Forte#
349fcf3ce44SJohn Forte#    By default, the max number of simultaneous IOs a target port can handle
350fcf3ce44SJohn Forte#    is equal to the HBA throttle. The HBA throttle varies by adapter model
351fcf3ce44SJohn Forte#    but usually represents approximately 2000 simultaneous IOs.  With this
352fcf3ce44SJohn Forte#    parameter, the user can limit the number of simultaneous IOs to a
353fcf3ce44SJohn Forte#    smaller value.
354fcf3ce44SJohn Forte#
355fcf3ce44SJohn Forte# Usage examples:
356fcf3ce44SJohn Forte#     fct-queue-depth=256;          Sets global default for a target port queue
357fcf3ce44SJohn Forte#                                   depth to 256 IOs.
358fcf3ce44SJohn Forte#     emlxs0-fct-queue-depth=256;   emlxs0 will limit its target queue depth to
359fcf3ce44SJohn Forte#                                   256 IOs
360fcf3ce44SJohn Forte#
361fcf3ce44SJohn Forte
362291a2b48SSukumar Swaminathan
363291a2b48SSukumar Swaminathan# ddi-forceload:  Allows the firmware module to be loaded early enough in the
364291a2b48SSukumar Swaminathan#                 boot to be available for the emlxs root instance to use.
365291a2b48SSukumar Swaminathan#                 This value should not be modified by the user.
366291a2b48SSukumar Swaminathan#
367291a2b48SSukumar Swaminathanddi-forceload = "misc/emlxs/emlxs_fw";
368