1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson/*
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * CDDL HEADER START
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson *
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * The contents of this file are subject to the terms of the
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * Common Development and Distribution License, Version 1.0 only
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * (the "License"). You may not use this file except in compliance
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * with the License.
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson *
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * or http://www.opensolaris.org/os/licensing.
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * See the License for the specific language governing permissions
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * and limitations under the License.
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson *
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * When distributing Covered Code, include this CDDL HEADER in each
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * If applicable, add the following below this CDDL HEADER, with the
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * fields enclosed by brackets "[]" replaced with your own identifying
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * information: Portions Copyright [yyyy] [name of copyright owner]
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson *
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * CDDL HEADER END
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson */
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson/*
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * Use is subject to license terms.
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson *
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * # ident "%Z%%M% %I% %E% SMI"
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson *
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * supported prop types: void, int, uint, float, string
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * supported prop access_modes: r, w, rw
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson *
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * VERSION <version_number> -- supported version number is 1.0
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson *
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * name:<namepath> -- gives the anchor node
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * where <namepath> is <nodename>[@<bus-addr>][?<prop>=<val>]
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson *
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * _class:<classpath> -- gives the anchor node
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * where <classpath> is <classname>[@<bus-addr>][?<prop>=<val>]
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson *
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * NODE <name> <class>
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * {describes a subtree}
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * ENDNODE
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson *
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * PROP <name> <type> <access_mode> [<size> <value>] -- per property
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson *
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * REFPROP <name> <dstnode>
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson *
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * REFNODE <name> <class> with <destnode> -- Associates a new node
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * with <destnode> if exists
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * where
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * <name> is the nodename
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * <class> is the picl class.
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * <destnode> is name:<namepath> or _class:<classpath>
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson *
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * If "name:" or "_class:" is not specified in the <path>,
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson * the default is "name:"
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson *
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson */
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson#define PLATFORM_CLASS jbus
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelsonVERSION 1.0
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelsonNODE frutree picl
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson NODE chassis fru
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson PROP ChassisType string r 0 "SUNW,Netra-CP3010"
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson NODE MB location
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson PROP SlotType string r 0 "atca"
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson PROP Label string r 0 "MOTHERBOARD"
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson ENDNODE
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson ENDNODE
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelsonENDNODE
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelsonname:/frutree/chassis/MB
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson#include "system-board.info"
1cb6af97c6f66f456d4f726ef056e1ebc0f73305wnelson