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