diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-11-22 04:14:12 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-11-22 04:14:12 +0000 |
commit | fd1bca9f1c86cc5219219f16e78d6a1e89827c14 (patch) | |
tree | cfcb80be8ff80fe62a33d2ca8b285e34f9d84b5d /sys/dev/pci | |
parent | f49425009f43801daa4f64eaaea2bfb41ed4619c (diff) |
build a structure to map the ti firmwares into one file
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/if_tivar.h | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/sys/dev/pci/if_tivar.h b/sys/dev/pci/if_tivar.h new file mode 100644 index 00000000000..094f0784d61 --- /dev/null +++ b/sys/dev/pci/if_tivar.h @@ -0,0 +1,61 @@ +/* $OpenBSD: if_tivar.h,v 1.1 2004/11/22 04:14:11 deraadt Exp $ */ + +/* + * Copyright (c) 1997, 1998, 1999 + * Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by Bill Paul. + * 4. Neither the name of the author nor the names of any co-contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD + * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF + * THE POSSIBILITY OF SUCH DAMAGE. + * + * $FreeBSD: src/sys/pci/if_tireg.h,v 1.12 2000/01/18 00:26:29 wpaul Exp $ + */ + +struct tigon_firmware { + int FwReleaseMajor; + int FwReleaseMinor; + int FwReleaseFix; + u_int32_t FwStartAddr; + + u_int32_t FwTextAddr; + int FwTextLen; + u_int32_t FwRodataAddr; + int FwRodataLen; + + u_int32_t FwDataAddr; + int FwDataLen; + u_int32_t FwSbssAddr; + int FwSbssLen; + + u_int32_t FwBssAddr; + int FwBssLen; + + int FwTextOffset; + int FwRodataOffset; + int FwDataOffset; + + u_char data[1]; +}; |