3db86aab554edbb4244c8d1a1c90f152eee768afstevel#
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# CDDL HEADER START
3db86aab554edbb4244c8d1a1c90f152eee768afstevel#
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# The contents of this file are subject to the terms of the
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# Common Development and Distribution License, Version 1.0 only
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# (the "License"). You may not use this file except in compliance
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# with the License.
3db86aab554edbb4244c8d1a1c90f152eee768afstevel#
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# or http://www.opensolaris.org/os/licensing.
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# See the License for the specific language governing permissions
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# and limitations under the License.
3db86aab554edbb4244c8d1a1c90f152eee768afstevel#
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# When distributing Covered Code, include this CDDL HEADER in each
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# If applicable, add the following below this CDDL HEADER, with the
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# fields enclosed by brackets "[]" replaced with your own identifying
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# information: Portions Copyright [yyyy] [name of copyright owner]
3db86aab554edbb4244c8d1a1c90f152eee768afstevel#
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# CDDL HEADER END
3db86aab554edbb4244c8d1a1c90f152eee768afstevel#
3db86aab554edbb4244c8d1a1c90f152eee768afstevel#
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# Copyright (c) 2001 by Sun Microsystems, Inc.
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# All rights reserved.
3db86aab554edbb4244c8d1a1c90f152eee768afstevel#
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# ident "%Z%%M% %I% %E% SMI"
3db86aab554edbb4244c8d1a1c90f152eee768afstevel#
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# Configuration file for "lombus" driver
3db86aab554edbb4244c8d1a1c90f152eee768afstevel#
3db86aab554edbb4244c8d1a1c90f152eee768afstevel
3db86aab554edbb4244c8d1a1c90f152eee768afstevel#
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# The following are needed by our parent (ebus), but OBP should
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# have already created them. So they should only be specified
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# here if you have an old version of OBP that didn't do this ...
3db86aab554edbb4244c8d1a1c90f152eee768afstevel#
3db86aab554edbb4244c8d1a1c90f152eee768afstevel#device_type = "serial";
3db86aab554edbb4244c8d1a1c90f152eee768afstevel#interrupts = 1;
3db86aab554edbb4244c8d1a1c90f152eee768afstevel
3db86aab554edbb4244c8d1a1c90f152eee768afstevel#
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# Various debugging options interpreted by the lombus driver itself ...
3db86aab554edbb4244c8d1a1c90f152eee768afstevel#
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# 'allow-lom-echo' (boolean) tells the driver to look for and filter
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# out echoes of its own messages to the LOM. Only useful if the LOM
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# has been configured to echo messages!
3db86aab554edbb4244c8d1a1c90f152eee768afstevel#
3db86aab554edbb4244c8d1a1c90f152eee768afstevel#allow-lom-echo = 0;
3db86aab554edbb4244c8d1a1c90f152eee768afstevel#
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# 'baud-rate' (int) specifies the speed of the serial link between
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# the host and the LOM. Obviously, it must be the same as the value
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# selected by the LOM; getting it wrong will prevent any communication
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# with the LOM. The default is 38400, which is the value used by the
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# standard version of the LOM firmware.
3db86aab554edbb4244c8d1a1c90f152eee768afstevel#
3db86aab554edbb4244c8d1a1c90f152eee768afstevel#baud-rate = 38400;
3db86aab554edbb4244c8d1a1c90f152eee768afstevel#
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# 'debug' (int) is a bit-mask for turning on various traces from
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# different parts of the driver. Only available if the driver
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# was compiled with DEBUG enabled.
3db86aab554edbb4244c8d1a1c90f152eee768afstevel#
3db86aab554edbb4244c8d1a1c90f152eee768afstevel#debug = 0;
3db86aab554edbb4244c8d1a1c90f152eee768afstevel#
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# 'fake-cts' (boolean) tells the driver to ignore the CTS signal from
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# the LOM that's usually used for flow control and to show that the
3db86aab554edbb4244c8d1a1c90f152eee768afstevel# LOM is ready for the next message. Only useful for debugging.
3db86aab554edbb4244c8d1a1c90f152eee768afstevel#
3db86aab554edbb4244c8d1a1c90f152eee768afstevel#fake-cts = 0;
3db86aab554edbb4244c8d1a1c90f152eee768afstevel