1*a72f7ea6Sql147931 2*a72f7ea6Sql147931 /* 3*a72f7ea6Sql147931 * Copyright (c) 2005 David Young. All rights reserved. 4*a72f7ea6Sql147931 * 5*a72f7ea6Sql147931 * This code was written by David Young. 6*a72f7ea6Sql147931 * 7*a72f7ea6Sql147931 * Redistribution and use in source and binary forms, with or without 8*a72f7ea6Sql147931 * modification, are permitted provided that the following conditions 9*a72f7ea6Sql147931 * are met: 10*a72f7ea6Sql147931 * 1. Redistributions of source code must retain the above copyright 11*a72f7ea6Sql147931 * notice, this list of conditions and the following disclaimer. 12*a72f7ea6Sql147931 * 2. Redistributions in binary form must reproduce the above copyright 13*a72f7ea6Sql147931 * notice, this list of conditions and the following disclaimer in the 14*a72f7ea6Sql147931 * documentation and/or other materials provided with the distribution. 15*a72f7ea6Sql147931 * 3. Neither the name of the author nor the names of any co-contributors 16*a72f7ea6Sql147931 * may be used to endorse or promote products derived from this software 17*a72f7ea6Sql147931 * without specific prior written permission. 18*a72f7ea6Sql147931 * 19*a72f7ea6Sql147931 * THIS SOFTWARE IS PROVIDED BY David Young ``AS IS'' AND ANY 20*a72f7ea6Sql147931 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 21*a72f7ea6Sql147931 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 22*a72f7ea6Sql147931 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL David 23*a72f7ea6Sql147931 * Young BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 24*a72f7ea6Sql147931 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED 25*a72f7ea6Sql147931 * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 26*a72f7ea6Sql147931 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 27*a72f7ea6Sql147931 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 28*a72f7ea6Sql147931 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 29*a72f7ea6Sql147931 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 30*a72f7ea6Sql147931 * OF SUCH DAMAGE. 31*a72f7ea6Sql147931 */ 32*a72f7ea6Sql147931 33*a72f7ea6Sql147931/* 34*a72f7ea6Sql147931 * Interface for the 93C66/56/46/26/06 serial eeprom parts. 35*a72f7ea6Sql147931 * 36*a72f7ea6Sql147931 * Copyright (c) 1995, 1996 Daniel M. Eischen 37*a72f7ea6Sql147931 * All rights reserved. 38*a72f7ea6Sql147931 * 39*a72f7ea6Sql147931 * Redistribution and use in source and binary forms, with or without 40*a72f7ea6Sql147931 * modification, are permitted provided that the following conditions 41*a72f7ea6Sql147931 * are met: 42*a72f7ea6Sql147931 * 1. Redistributions of source code must retain the above copyright 43*a72f7ea6Sql147931 * notice immediately at the beginning of the file, without modification, 44*a72f7ea6Sql147931 * this list of conditions, and the following disclaimer. 45*a72f7ea6Sql147931 * 2. Redistributions in binary form must reproduce the above copyright 46*a72f7ea6Sql147931 * notice, this list of conditions and the following disclaimer in the 47*a72f7ea6Sql147931 * documentation and/or other materials provided with the distribution. 48*a72f7ea6Sql147931 * 3. Absolutely no warranty of function or purpose is made by the author 49*a72f7ea6Sql147931 * Daniel M. Eischen. 50*a72f7ea6Sql147931 * 4. Modifications may be freely made to this file if the above conditions 51*a72f7ea6Sql147931 * are met. 52*a72f7ea6Sql147931 * 53*a72f7ea6Sql147931 * 54*a72f7ea6Sql147931 */ 55*a72f7ea6Sql147931 56*a72f7ea6Sql147931/* 57*a72f7ea6Sql147931 * Interface to the 93C46 serial EEPROM that is used to store BIOS 58*a72f7ea6Sql147931 * settings for the aic7xxx based adaptec SCSI controllers. It can 59*a72f7ea6Sql147931 * also be used for 93C26 and 93C06 serial EEPROMS. 60*a72f7ea6Sql147931 * 61*a72f7ea6Sql147931 * Copyright (c) 1994, 1995 Justin T. Gibbs. 62*a72f7ea6Sql147931 * All rights reserved. 63*a72f7ea6Sql147931 * 64*a72f7ea6Sql147931 * Redistribution and use in source and binary forms, with or without 65*a72f7ea6Sql147931 * modification, are permitted provided that the following conditions 66*a72f7ea6Sql147931 * are met: 67*a72f7ea6Sql147931 * 1. Redistributions of source code must retain the above copyright 68*a72f7ea6Sql147931 * notice, this list of conditions, and the following disclaimer, 69*a72f7ea6Sql147931 * without modification. 70*a72f7ea6Sql147931 * 2. The name of the author may not be used to endorse or promote products 71*a72f7ea6Sql147931 * derived from this software without specific prior written permission. 72*a72f7ea6Sql147931 * 73*a72f7ea6Sql147931 * Alternatively, this software may be distributed under the terms of the 74*a72f7ea6Sql147931 * the GNU Public License ("GPL"). 75*a72f7ea6Sql147931 * 76*a72f7ea6Sql147931 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 77*a72f7ea6Sql147931 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 78*a72f7ea6Sql147931 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 79*a72f7ea6Sql147931 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR 80*a72f7ea6Sql147931 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 81*a72f7ea6Sql147931 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 82*a72f7ea6Sql147931 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 83*a72f7ea6Sql147931 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 84*a72f7ea6Sql147931 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 85*a72f7ea6Sql147931 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 86*a72f7ea6Sql147931 * SUCH DAMAGE. 87*a72f7ea6Sql147931 * 88*a72f7ea6Sql147931 * 89*a72f7ea6Sql147931 */ 90*a72f7ea6Sql147931 91