xref: /illumos-gate/usr/src/uts/common/io/yge/THIRDPARTYLICENSE (revision 1816cb7076d3ec8a78ef9ac9f895574e13c43645)
1*1816cb70SBarry Harding/*
2*1816cb70SBarry Harding *
3*1816cb70SBarry Harding *	LICENSE:
4*1816cb70SBarry Harding *	Copyright (C) Marvell International Ltd. and/or its affiliates
5*1816cb70SBarry Harding *
6*1816cb70SBarry Harding *	The computer program files contained in this folder ("Files")
7*1816cb70SBarry Harding *	are provided to you under the BSD-type license terms provided
8*1816cb70SBarry Harding *	below, and any use of such Files and any derivative works
9*1816cb70SBarry Harding *	thereof created by you shall be governed by the following terms
10*1816cb70SBarry Harding *	and conditions:
11*1816cb70SBarry Harding *
12*1816cb70SBarry Harding *	- Redistributions of source code must retain the above copyright
13*1816cb70SBarry Harding *	  notice, this list of conditions and the following disclaimer.
14*1816cb70SBarry Harding *	- Redistributions in binary form must reproduce the above
15*1816cb70SBarry Harding *	  copyright notice, this list of conditions and the following
16*1816cb70SBarry Harding *	  disclaimer in the documentation and/or other materials provided
17*1816cb70SBarry Harding *	  with the distribution.
18*1816cb70SBarry Harding *	- Neither the name of Marvell nor the names of its contributors
19*1816cb70SBarry Harding *	  may be used to endorse or promote products derived from this
20*1816cb70SBarry Harding *	  software without specific prior written permission.
21*1816cb70SBarry Harding *
22*1816cb70SBarry Harding *	THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23*1816cb70SBarry Harding *	"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24*1816cb70SBarry Harding *	LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25*1816cb70SBarry Harding *	FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26*1816cb70SBarry Harding *	COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27*1816cb70SBarry Harding *	INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
28*1816cb70SBarry Harding *	BUT NOT LIMITED TO, PROCUREMENT OF  SUBSTITUTE GOODS OR SERVICES;
29*1816cb70SBarry Harding *	LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30*1816cb70SBarry Harding *	HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
31*1816cb70SBarry Harding *	STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32*1816cb70SBarry Harding *	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
33*1816cb70SBarry Harding *	OF THE POSSIBILITY OF SUCH DAMAGE.
34*1816cb70SBarry Harding *	/LICENSE
35*1816cb70SBarry Harding *
36*1816cb70SBarry Harding */
37*1816cb70SBarry Harding/*
38*1816cb70SBarry Harding * Copyright (c) 1997, 1998, 1999, 2000
39*1816cb70SBarry Harding *	Bill Paul <wpaul@ctr.columbia.edu>.  All rights reserved.
40*1816cb70SBarry Harding *
41*1816cb70SBarry Harding * Redistribution and use in source and binary forms, with or without
42*1816cb70SBarry Harding * modification, are permitted provided that the following conditions
43*1816cb70SBarry Harding * are met:
44*1816cb70SBarry Harding * 1. Redistributions of source code must retain the above copyright
45*1816cb70SBarry Harding *    notice, this list of conditions and the following disclaimer.
46*1816cb70SBarry Harding * 2. Redistributions in binary form must reproduce the above copyright
47*1816cb70SBarry Harding *    notice, this list of conditions and the following disclaimer in the
48*1816cb70SBarry Harding *    documentation and/or other materials provided with the distribution.
49*1816cb70SBarry Harding * 3. All advertising materials mentioning features or use of this software
50*1816cb70SBarry Harding *    must display the following acknowledgement:
51*1816cb70SBarry Harding *	This product includes software developed by Bill Paul.
52*1816cb70SBarry Harding * 4. Neither the name of the author nor the names of any co-contributors
53*1816cb70SBarry Harding *    may be used to endorse or promote products derived from this software
54*1816cb70SBarry Harding *    without specific prior written permission.
55*1816cb70SBarry Harding *
56*1816cb70SBarry Harding * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
57*1816cb70SBarry Harding * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
58*1816cb70SBarry Harding * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
59*1816cb70SBarry Harding * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
60*1816cb70SBarry Harding * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
61*1816cb70SBarry Harding * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
62*1816cb70SBarry Harding * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
63*1816cb70SBarry Harding * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
64*1816cb70SBarry Harding * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
65*1816cb70SBarry Harding * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
66*1816cb70SBarry Harding * THE POSSIBILITY OF SUCH DAMAGE.
67*1816cb70SBarry Harding */
68*1816cb70SBarry Harding/*
69*1816cb70SBarry Harding * Copyright (c) 2003 Nathan L. Binkert <binkertn@umich.edu>
70*1816cb70SBarry Harding *
71*1816cb70SBarry Harding * Permission to use, copy, modify, and distribute this software for any
72*1816cb70SBarry Harding * purpose with or without fee is hereby granted, provided that the above
73*1816cb70SBarry Harding * copyright notice and this permission notice appear in all copies.
74*1816cb70SBarry Harding *
75*1816cb70SBarry Harding * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
76*1816cb70SBarry Harding * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
77*1816cb70SBarry Harding * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
78*1816cb70SBarry Harding * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
79*1816cb70SBarry Harding * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
80*1816cb70SBarry Harding * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
81*1816cb70SBarry Harding * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
82*1816cb70SBarry Harding */
83