qemu with hax to log dma reads & writes jcs.org/2018/11/12/vfio

Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20191111' into staging

Remove no-longer-true statement that TCG is BSD-licensed

# gpg: Signature made Mon 11 Nov 2019 15:24:06 GMT
# gpg: using RSA key 7A481E78868B4DB6A85A05C064DF38E8AF7E215F
# gpg: issuer "richard.henderson@linaro.org"
# gpg: Good signature from "Richard Henderson <richard.henderson@linaro.org>" [full]
# Primary key fingerprint: 7A48 1E78 868B 4DB6 A85A 05C0 64DF 38E8 AF7E 215F

* remotes/rth/tags/pull-tcg-20191111:
tcg/LICENSE: Remove out of date claim about TCG subdirectory licensing
tcg/ppc/tcg-target.opc.h: Add copyright/license
tcg/i386/tcg-target.opc.h: Add copyright/license
tcg/aarch64/tcg-target.opc.h: Add copyright/license

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>

+60 -11
+3 -2
LICENSE
··· 18 18 License (and no later version) are only accepted for the following files 19 19 or directories: bsd-user/, linux-user/, hw/vfio/, hw/xen/xen_pt*. 20 20 21 - 3) The Tiny Code Generator (TCG) is released under the BSD license 22 - (see license headers in files). 21 + 3) The Tiny Code Generator (TCG) is mostly under the BSD or MIT licenses; 22 + but some parts may be GPLv2 or other licenses. Again, see the 23 + specific licensing information in each source file. 23 24 24 25 4) QEMU is a trademark of Fabrice Bellard. 25 26
-3
tcg/LICENSE
··· 1 - All the files in this directory and subdirectories are released under 2 - a BSD like license (see header in each file). No other license is 3 - accepted.
+12 -3
tcg/aarch64/tcg-target.opc.h
··· 1 - /* Target-specific opcodes for host vector expansion. These will be 2 - emitted by tcg_expand_vec_op. For those familiar with GCC internals, 3 - consider these to be UNSPEC with names. */ 1 + /* 2 + * Copyright (c) 2019 Linaro 3 + * 4 + * This work is licensed under the terms of the GNU GPL, version 2 or 5 + * (at your option) any later version. 6 + * 7 + * See the COPYING file in the top-level directory for details. 8 + * 9 + * Target-specific opcodes for host vector expansion. These will be 10 + * emitted by tcg_expand_vec_op. For those familiar with GCC internals, 11 + * consider these to be UNSPEC with names. 12 + */ 4 13 5 14 DEF(aa64_sshl_vec, 1, 2, 0, IMPLVEC)
+25 -3
tcg/i386/tcg-target.opc.h
··· 1 - /* Target-specific opcodes for host vector expansion. These will be 2 - emitted by tcg_expand_vec_op. For those familiar with GCC internals, 3 - consider these to be UNSPEC with names. */ 1 + /* 2 + * Copyright (c) 2019 Linaro 3 + * 4 + * Permission is hereby granted, free of charge, to any person obtaining a copy 5 + * of this software and associated documentation files (the "Software"), to deal 6 + * in the Software without restriction, including without limitation the rights 7 + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 + * copies of the Software, and to permit persons to whom the Software is 9 + * furnished to do so, subject to the following conditions: 10 + * 11 + * The above copyright notice and this permission notice shall be included in 12 + * all copies or substantial portions of the Software. 13 + * 14 + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 17 + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20 + * THE SOFTWARE. 21 + * 22 + * Target-specific opcodes for host vector expansion. These will be 23 + * emitted by tcg_expand_vec_op. For those familiar with GCC internals, 24 + * consider these to be UNSPEC with names. 25 + */ 4 26 5 27 DEF(x86_shufps_vec, 1, 2, 1, IMPLVEC) 6 28 DEF(x86_vpblendvb_vec, 1, 3, 0, IMPLVEC)
+20
tcg/ppc/tcg-target.opc.h
··· 1 1 /* 2 + * Copyright (c) 2019 Linaro Limited 3 + * 4 + * Permission is hereby granted, free of charge, to any person obtaining a copy 5 + * of this software and associated documentation files (the "Software"), to deal 6 + * in the Software without restriction, including without limitation the rights 7 + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 + * copies of the Software, and to permit persons to whom the Software is 9 + * furnished to do so, subject to the following conditions: 10 + * 11 + * The above copyright notice and this permission notice shall be included in 12 + * all copies or substantial portions of the Software. 13 + * 14 + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 17 + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20 + * THE SOFTWARE. 21 + * 2 22 * Target-specific opcodes for host vector expansion. These will be 3 23 * emitted by tcg_expand_vec_op. For those familiar with GCC internals, 4 24 * consider these to be UNSPEC with names.