Browse Source
This is the latest firmware from 10.2.4 firmware branch. Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com> Signed-off-by: Kyle McMartin <kyle@kernel.org>main
Kalle Valo
10 years ago
committed by
Kyle McMartin
4 changed files with 357 additions and 0 deletions
@ -0,0 +1,47 @@ |
|||||||
|
Copyright (c) 2015, Qualcomm Atheros, Inc. |
||||||
|
All rights reserved. |
||||||
|
|
||||||
|
Redistribution. Reproduction and redistribution in binary form, without |
||||||
|
modification, for use solely in conjunction with a Qualcomm Atheros, Inc. |
||||||
|
chipset, is permitted provided that the following conditions are met: |
||||||
|
|
||||||
|
• Redistributions must reproduce the above copyright notice and the following |
||||||
|
disclaimer in the documentation and/or other materials provided with the |
||||||
|
distribution. |
||||||
|
|
||||||
|
• Neither the name of Qualcomm Atheros, Inc. nor the names of its suppliers |
||||||
|
may be used to endorse or promote products derived from this Software |
||||||
|
without specific prior written permission. |
||||||
|
|
||||||
|
• No reverse engineering, decompilation, or disassembly of this Software is |
||||||
|
permitted. |
||||||
|
|
||||||
|
Limited patent license. Qualcomm Atheros, Inc. (“Licensor”) grants you |
||||||
|
(“Licensee”) a limited, worldwide, royalty-free, non-exclusive license under |
||||||
|
the Patents to make, have made, use, import, offer to sell and sell the |
||||||
|
Software. No hardware per se is licensed hereunder. |
||||||
|
The term “Patents” as used in this agreement means only those patents or patent |
||||||
|
applications owned solely and exclusively by Licensor as of the date of |
||||||
|
Licensor’s submission of the Software and any patents deriving priority (i.e., |
||||||
|
having a first effective filing date) therefrom. The term “Software” as used in |
||||||
|
this agreement means the firmware image submitted by Licensor, under the terms |
||||||
|
of this license, to git://git.kernel.org/pub/scm/linux/kernel/git/firmware/ |
||||||
|
linux-firmware.git. |
||||||
|
Notwithstanding anything to the contrary herein, Licensor does not grant and |
||||||
|
Licensee does not receive, by virtue of this agreement or the Licensor’s |
||||||
|
submission of any Software, any license or other rights under any patent or |
||||||
|
patent application owned by any affiliate of Licensor or any other entity |
||||||
|
(other than Licensor), whether expressly, impliedly, by virtue of estoppel or |
||||||
|
exhaustion, or otherwise. |
||||||
|
|
||||||
|
DISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 |
||||||
|
THE COPYRIGHT OWNER OR CONTRIBUTORS 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. |
Binary file not shown.
@ -0,0 +1,301 @@ |
|||||||
|
============================================================================= |
||||||
|
This Notice.txt file contains certain notices of software components included with the software that |
||||||
|
Qualcomm Atheros, Inc. ("Qualcomm Atheros") is required to provide you. |
||||||
|
Except as may be granted by the separate license agreement applicable |
||||||
|
to this software (see LICENSE.QualcommAtheros_ath10k), this file provides no license to any |
||||||
|
Qualcomm Atheros patents, trademarks, copyrights, or other intellectual property. |
||||||
|
|
||||||
|
Copyright (c) 2014 Qualcomm Atheros, Inc. All rights reserved. |
||||||
|
Qualcomm is a trademark of Qualcomm Incorporated, registered in the United States and other countries. |
||||||
|
All Qualcomm Incorporated trademarks are used with permission. |
||||||
|
Atheros is a trademark of Qualcomm Atheros, Inc., registered in the United States and other countries. |
||||||
|
Other products and brand names may be trademarks or registered trademarks of their respective owners. |
||||||
|
|
||||||
|
============================================================================= |
||||||
|
|
||||||
|
NOTICES: |
||||||
|
|
||||||
|
============================================================================= |
||||||
|
|
||||||
|
============================================================================================================================== |
||||||
|
|
||||||
|
|
||||||
|
/* |
||||||
|
* Copyright (c) 2012 Qualcomm Atheros, Inc. |
||||||
|
* All Rights Reserved. |
||||||
|
* Qualcomm Atheros Confidential and Proprietary. |
||||||
|
*/ |
||||||
|
//- |
||||||
|
// Copyright (c) 2002-2004 Sam Leffler, Errno Consulting |
||||||
|
// All rights reserved. |
||||||
|
// $ATH_LICENSE_NULL$ |
||||||
|
// |
||||||
|
// 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, |
||||||
|
// without modification. |
||||||
|
// 2. Redistributions in binary form must reproduce at minimum a disclaimer |
||||||
|
// similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any |
||||||
|
// redistribution must be conditioned upon including a substantially |
||||||
|
// similar Disclaimer requirement for further binary redistribution. |
||||||
|
// 3. Neither the names of the above-listed copyright holders nor the names |
||||||
|
// of any contributors may be used to endorse or promote products derived |
||||||
|
// from this software without specific prior written permission. |
||||||
|
// |
||||||
|
// Alternatively, this software may be distributed under the terms of the |
||||||
|
// GNU General Public License ("GPL") version 2 as published by the Free |
||||||
|
// Software Foundation. |
||||||
|
// |
||||||
|
// NO WARRANTY |
||||||
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||||
|
// ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||||
|
// LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY |
||||||
|
// AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL |
||||||
|
// THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR 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 DAMAGES. |
||||||
|
// |
||||||
|
// $Id: //depot/sw/qca_main/components/wlan/qca-wifi-fw/1.0/drivers/target/src/wlan/proto/include/if_llc.h#2 $ |
||||||
|
// $NetBSD: if_llc.h,v 1.12 1999/11/19 20:41:19 thorpej Exp $ |
||||||
|
// $Id: //depot/sw/qca_main/components/wlan/qca-wifi-fw/1.0/drivers/target/src/wlan/proto/include/if_llc.h#2 $ |
||||||
|
// |
||||||
|
|
||||||
|
/* |
||||||
|
* Copyright (c) 1988, 1993 |
||||||
|
* The Regents of the University of California. 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 the University of |
||||||
|
* California, Berkeley and its contributors. |
||||||
|
* 4. Neither the name of the University nor the names of its contributors |
||||||
|
* may be used to endorse or promote products derived from this software |
||||||
|
* without specific prior written permission. |
||||||
|
* |
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 THE REGENTS OR CONTRIBUTORS 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. |
||||||
|
* |
||||||
|
* @(#)if_llc.h 8.1 (Berkeley) 6/10/93 |
||||||
|
* $FreeBSD: src/sys/net/if_llc.h,v 1.9 2002/09/23 06:25:08 alfred Exp $ |
||||||
|
*/ |
||||||
|
|
||||||
|
For all files with the above-mentioned dual-license, Qualcomm Atheros, Inc. chooses to receive subject to the BSD license. |
||||||
|
|
||||||
|
src/wlan/proto/include/if_llc.h#1 |
||||||
|
|
||||||
|
======================================================================================================================================== |
||||||
|
/* |
||||||
|
* Copyright (c) 2012 Qualcomm Atheros, Inc. |
||||||
|
* All Rights Reserved. |
||||||
|
* Qualcomm Atheros Confidential and Proprietary. |
||||||
|
*/ |
||||||
|
//- |
||||||
|
// Copyright (c) 2002-2004 Sam Leffler, Errno Consulting |
||||||
|
// All rights reserved. |
||||||
|
// $ATH_LICENSE_NULL$ |
||||||
|
// |
||||||
|
// 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, |
||||||
|
// without modification. |
||||||
|
// 2. Redistributions in binary form must reproduce at minimum a disclaimer |
||||||
|
// similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any |
||||||
|
// redistribution must be conditioned upon including a substantially |
||||||
|
// similar Disclaimer requirement for further binary redistribution. |
||||||
|
// 3. Neither the names of the above-listed copyright holders nor the names |
||||||
|
// of any contributors may be used to endorse or promote products derived |
||||||
|
// from this software without specific prior written permission. |
||||||
|
// |
||||||
|
// Alternatively, this software may be distributed under the terms of the |
||||||
|
// GNU General Public License ("GPL") version 2 as published by the Free |
||||||
|
// Software Foundation. |
||||||
|
// |
||||||
|
// NO WARRANTY |
||||||
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||||
|
// ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||||
|
// LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY |
||||||
|
// AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL |
||||||
|
// THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR 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 DAMAGES. |
||||||
|
// |
||||||
|
// |
||||||
|
|
||||||
|
For all files with the above-mentioned dual-license, Qualcomm Atheros, Inc. chooses to receive subject to the BSD license. |
||||||
|
|
||||||
|
src/wlan/proto/include/if_ethersubr.h#1 |
||||||
|
|
||||||
|
|
||||||
|
======================================================================================================================================== |
||||||
|
|
||||||
|
/* |
||||||
|
* Copyright (c) 2011 Qualcomm Atheros, Inc. |
||||||
|
* All Rights Reserved. |
||||||
|
* Qualcomm Atheros Confidential and Proprietary. |
||||||
|
* $ATH_LICENSE_TARGET_C$ |
||||||
|
*/ |
||||||
|
|
||||||
|
// |
||||||
|
// $Id: //depot/sw/qca_main/components/wlan/qca-wifi-fw/1.0/drivers/target/src/misc/crypto/md5.c#1 $ |
||||||
|
// |
||||||
|
// This code implements the MD5 message-digest algorithm. |
||||||
|
// The algorithm is due to Ron Rivest. This code was |
||||||
|
// written by Colin Plumb in 1993, no copyright is claimed. |
||||||
|
// This code is in the public domain; do with it what you wish. |
||||||
|
// |
||||||
|
// Equivalent code is available from RSA Data Security, Inc. |
||||||
|
// This code has been tested against that, and is equivalent, |
||||||
|
// except that you don't need to include two pages of legalese |
||||||
|
// with every copy. |
||||||
|
// |
||||||
|
// To compute the message digest of a chunk of bytes, declare an |
||||||
|
// MD5Context structure, pass it to MD5Init, call MD5Update as |
||||||
|
// needed on buffers full of bytes, and then call MD5Final, which |
||||||
|
// will fill a supplied 16-byte array with the digest. |
||||||
|
// |
||||||
|
|
||||||
|
src/misc/crypto/md5.c#1 |
||||||
|
|
||||||
|
|
||||||
|
======================================================================================================================================== |
||||||
|
|
||||||
|
// Copyright (c) 2003-2006 Marcus Geelnard |
||||||
|
// |
||||||
|
// This software is provided 'as-is', without any express or implied |
||||||
|
// warranty. In no event will the authors be held liable for any damages |
||||||
|
// arising from the use of this software. |
||||||
|
// |
||||||
|
// Permission is granted to anyone to use this software for any purpose, |
||||||
|
// including commercial applications, and to alter it and redistribute it |
||||||
|
// freely, subject to the following restrictions: |
||||||
|
// |
||||||
|
// 1. The origin of this software must not be misrepresented; you must not |
||||||
|
// claim that you wrote the original software. If you use this software |
||||||
|
// in a product, an acknowledgment in the product documentation would |
||||||
|
// be appreciated but is not required. |
||||||
|
// |
||||||
|
// 2. Altered source versions must be plainly marked as such, and must not |
||||||
|
// be misrepresented as being the original software. |
||||||
|
// |
||||||
|
// 3. This notice may not be removed or altered from any source |
||||||
|
// distribution. |
||||||
|
// |
||||||
|
// Marcus Geelnard |
||||||
|
// marcus.geelnard at home.se |
||||||
|
// |
||||||
|
|
||||||
|
|
||||||
|
support/lz77/lz.h#1 |
||||||
|
support/lz77/lz.c#1 |
||||||
|
|
||||||
|
|
||||||
|
======================================================================================================================================== |
||||||
|
|
||||||
|
|
||||||
|
/* |
||||||
|
* Copyright (c) 2011 Qualcomm Atheros, Inc. |
||||||
|
* All Rights Reserved. |
||||||
|
* Qualcomm Atheros Confidential and Proprietary. |
||||||
|
* $ATH_LICENSE_NULL$ |
||||||
|
*/ |
||||||
|
|
||||||
|
// Copyright (c) 2003-2006 Marcus Geelnard |
||||||
|
// Copyright (c) 2006-2007 Atheros Communications Inc. |
||||||
|
// $ATH_LICENSE_NULL$ |
||||||
|
// This software is provided 'as-is', without any express or implied |
||||||
|
// warranty. In no event will the authors be held liable for any damages |
||||||
|
// arising from the use of this software. |
||||||
|
// |
||||||
|
// Permission is granted to anyone to use this software for any purpose, |
||||||
|
// including commercial applications, and to alter it and redistribute it |
||||||
|
// freely, subject to the following restrictions: |
||||||
|
// |
||||||
|
// 1. The origin of this software must not be misrepresented; you must not |
||||||
|
// claim that you wrote the original software. If you use this software |
||||||
|
// in a product, an acknowledgment in the product documentation would |
||||||
|
// be appreciated but is not required. |
||||||
|
// |
||||||
|
// 2. Altered source versions must be plainly marked as such, and must not |
||||||
|
// be misrepresented as being the original software. |
||||||
|
// |
||||||
|
// 3. This notice may not be removed or altered from any source |
||||||
|
// distribution. |
||||||
|
// |
||||||
|
// Marcus Geelnard |
||||||
|
// marcus.geelnard at home.se |
||||||
|
// |
||||||
|
|
||||||
|
src/misc/lzuncompr/lzuncompr1.c#1 |
||||||
|
tests/serflash/flashprog/uncompr.c#1 |
||||||
|
|
||||||
|
|
||||||
|
======================================================================================================================================== |
||||||
|
|
||||||
|
// |
||||||
|
// Copyright (c) 1991, 1993 |
||||||
|
// The Regents of the University of California. All rights reserved. |
||||||
|
// $ATH_LICENSE_NULL$ |
||||||
|
// |
||||||
|
// 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 the University of |
||||||
|
// California, Berkeley and its contributors. |
||||||
|
// 4. Neither the name of the University nor the names of its contributors |
||||||
|
// may be used to endorse or promote products derived from this software |
||||||
|
// without specific prior written permission. |
||||||
|
// |
||||||
|
// THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 THE REGENTS OR CONTRIBUTORS 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. |
||||||
|
// |
||||||
|
// @(#)queue.h 8.5 (Berkeley) 8/20/94 |
||||||
|
// $FreeBSD: src/sys/sys/queue.h,v 1.58 2004/04/07 04:19:49 imp Exp $ |
||||||
|
// |
||||||
|
|
||||||
|
src/wlan/include/queue.h#1 |
||||||
|
../include/queue.h#1 |
Loading…
Reference in new issue