License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 14:07:57 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2014-08-09 18:10:21 +00:00
|
|
|
#ifndef __NVIF_CLASS_H__
|
|
|
|
#define __NVIF_CLASS_H__
|
|
|
|
|
2015-11-08 00:18:19 +00:00
|
|
|
/* these class numbers are made up by us, and not nvidia-assigned */
|
2016-05-25 22:43:00 +00:00
|
|
|
#define NVIF_CLASS_CLIENT /* if0000.h */ -0x00000000
|
|
|
|
|
|
|
|
#define NVIF_CLASS_CONTROL /* if0001.h */ -0x00000001
|
|
|
|
|
|
|
|
#define NVIF_CLASS_PERFMON /* if0002.h */ -0x00000002
|
|
|
|
#define NVIF_CLASS_PERFDOM /* if0003.h */ -0x00000003
|
|
|
|
|
|
|
|
#define NVIF_CLASS_SW_NV04 /* if0004.h */ -0x00000004
|
|
|
|
#define NVIF_CLASS_SW_NV10 /* if0005.h */ -0x00000005
|
|
|
|
#define NVIF_CLASS_SW_NV50 /* if0005.h */ -0x00000006
|
|
|
|
#define NVIF_CLASS_SW_GF100 /* if0005.h */ -0x00000007
|
2014-08-09 18:10:21 +00:00
|
|
|
|
2017-10-31 17:56:19 +00:00
|
|
|
#define NVIF_CLASS_MMU /* if0008.h */ 0x80000008
|
|
|
|
#define NVIF_CLASS_MMU_NV04 /* if0008.h */ 0x80000009
|
|
|
|
#define NVIF_CLASS_MMU_NV50 /* if0008.h */ 0x80005009
|
|
|
|
#define NVIF_CLASS_MMU_GF100 /* if0008.h */ 0x80009009
|
|
|
|
|
2017-10-31 17:56:19 +00:00
|
|
|
#define NVIF_CLASS_MEM /* if000a.h */ 0x8000000a
|
2017-10-31 17:56:19 +00:00
|
|
|
#define NVIF_CLASS_MEM_NV04 /* if000b.h */ 0x8000000b
|
2017-10-31 17:56:19 +00:00
|
|
|
#define NVIF_CLASS_MEM_NV50 /* if500b.h */ 0x8000500b
|
2017-10-31 17:56:19 +00:00
|
|
|
#define NVIF_CLASS_MEM_GF100 /* if900b.h */ 0x8000900b
|
2017-10-31 17:56:19 +00:00
|
|
|
|
2017-10-31 17:56:19 +00:00
|
|
|
#define NVIF_CLASS_VMM /* if000c.h */ 0x8000000c
|
|
|
|
#define NVIF_CLASS_VMM_NV04 /* if000d.h */ 0x8000000d
|
2017-10-31 17:56:19 +00:00
|
|
|
#define NVIF_CLASS_VMM_NV50 /* if500d.h */ 0x8000500d
|
2017-10-31 17:56:19 +00:00
|
|
|
#define NVIF_CLASS_VMM_GF100 /* if900d.h */ 0x8000900d
|
2017-10-31 17:56:19 +00:00
|
|
|
#define NVIF_CLASS_VMM_GM200 /* ifb00d.h */ 0x8000b00d
|
2017-10-31 17:56:19 +00:00
|
|
|
#define NVIF_CLASS_VMM_GP100 /* ifc00d.h */ 0x8000c00d
|
2017-10-31 17:56:19 +00:00
|
|
|
|
2014-08-09 18:10:21 +00:00
|
|
|
/* the below match nvidia-assigned (either in hw, or sw) class numbers */
|
2016-12-21 02:46:50 +00:00
|
|
|
#define NV_NULL_CLASS 0x00000030
|
|
|
|
|
2015-11-08 02:23:16 +00:00
|
|
|
#define NV_DEVICE /* cl0080.h */ 0x00000080
|
2014-08-09 18:10:21 +00:00
|
|
|
|
2015-11-08 02:16:40 +00:00
|
|
|
#define NV_DMA_FROM_MEMORY /* cl0002.h */ 0x00000002
|
|
|
|
#define NV_DMA_TO_MEMORY /* cl0002.h */ 0x00000003
|
|
|
|
#define NV_DMA_IN_MEMORY /* cl0002.h */ 0x0000003d
|
2014-08-09 18:10:24 +00:00
|
|
|
|
2016-12-21 02:46:50 +00:00
|
|
|
#define NV50_TWOD 0x0000502d
|
2015-03-25 23:18:32 +00:00
|
|
|
#define FERMI_TWOD_A 0x0000902d
|
|
|
|
|
2016-12-21 02:46:50 +00:00
|
|
|
#define NV50_MEMORY_TO_MEMORY_FORMAT 0x00005039
|
2015-05-21 01:04:10 +00:00
|
|
|
#define FERMI_MEMORY_TO_MEMORY_FORMAT_A 0x00009039
|
2015-03-25 23:18:32 +00:00
|
|
|
|
|
|
|
#define KEPLER_INLINE_TO_MEMORY_A 0x0000a040
|
|
|
|
#define KEPLER_INLINE_TO_MEMORY_B 0x0000a140
|
|
|
|
|
2015-11-08 00:44:19 +00:00
|
|
|
#define NV04_DISP /* cl0046.h */ 0x00000046
|
2014-08-09 18:10:27 +00:00
|
|
|
|
2018-05-08 10:39:48 +00:00
|
|
|
#define VOLTA_USERMODE_A 0x0000c361
|
|
|
|
|
2015-11-08 01:28:26 +00:00
|
|
|
#define NV03_CHANNEL_DMA /* cl506b.h */ 0x0000006b
|
|
|
|
#define NV10_CHANNEL_DMA /* cl506b.h */ 0x0000006e
|
|
|
|
#define NV17_CHANNEL_DMA /* cl506b.h */ 0x0000176e
|
|
|
|
#define NV40_CHANNEL_DMA /* cl506b.h */ 0x0000406e
|
|
|
|
#define NV50_CHANNEL_DMA /* cl506e.h */ 0x0000506e
|
|
|
|
#define G82_CHANNEL_DMA /* cl826e.h */ 0x0000826e
|
|
|
|
|
|
|
|
#define NV50_CHANNEL_GPFIFO /* cl506f.h */ 0x0000506f
|
|
|
|
#define G82_CHANNEL_GPFIFO /* cl826f.h */ 0x0000826f
|
|
|
|
#define FERMI_CHANNEL_GPFIFO /* cl906f.h */ 0x0000906f
|
|
|
|
#define KEPLER_CHANNEL_GPFIFO_A /* cla06f.h */ 0x0000a06f
|
2016-03-11 03:09:28 +00:00
|
|
|
#define KEPLER_CHANNEL_GPFIFO_B /* cla06f.h */ 0x0000a16f
|
2015-11-08 01:28:26 +00:00
|
|
|
#define MAXWELL_CHANNEL_GPFIFO_A /* cla06f.h */ 0x0000b06f
|
2016-07-09 00:41:01 +00:00
|
|
|
#define PASCAL_CHANNEL_GPFIFO_A /* cla06f.h */ 0x0000c06f
|
2018-05-08 10:39:48 +00:00
|
|
|
#define VOLTA_CHANNEL_GPFIFO_A /* cla06f.h */ 0x0000c36f
|
2014-08-09 18:10:25 +00:00
|
|
|
|
2015-11-08 00:44:19 +00:00
|
|
|
#define NV50_DISP /* cl5070.h */ 0x00005070
|
|
|
|
#define G82_DISP /* cl5070.h */ 0x00008270
|
|
|
|
#define GT200_DISP /* cl5070.h */ 0x00008370
|
|
|
|
#define GT214_DISP /* cl5070.h */ 0x00008570
|
|
|
|
#define GT206_DISP /* cl5070.h */ 0x00008870
|
|
|
|
#define GF110_DISP /* cl5070.h */ 0x00009070
|
|
|
|
#define GK104_DISP /* cl5070.h */ 0x00009170
|
|
|
|
#define GK110_DISP /* cl5070.h */ 0x00009270
|
|
|
|
#define GM107_DISP /* cl5070.h */ 0x00009470
|
2016-02-10 22:35:32 +00:00
|
|
|
#define GM200_DISP /* cl5070.h */ 0x00009570
|
2016-07-09 00:41:01 +00:00
|
|
|
#define GP100_DISP /* cl5070.h */ 0x00009770
|
2016-11-16 05:03:07 +00:00
|
|
|
#define GP102_DISP /* cl5070.h */ 0x00009870
|
2018-05-08 10:39:47 +00:00
|
|
|
#define GV100_DISP /* cl5070.h */ 0x0000c370
|
2014-08-09 18:10:27 +00:00
|
|
|
|
2015-08-20 04:54:19 +00:00
|
|
|
#define NV31_MPEG 0x00003174
|
|
|
|
#define G82_MPEG 0x00008274
|
|
|
|
|
2015-08-20 04:54:19 +00:00
|
|
|
#define NV74_VP2 0x00007476
|
|
|
|
|
2015-11-08 00:44:19 +00:00
|
|
|
#define NV50_DISP_CURSOR /* cl507a.h */ 0x0000507a
|
|
|
|
#define G82_DISP_CURSOR /* cl507a.h */ 0x0000827a
|
|
|
|
#define GT214_DISP_CURSOR /* cl507a.h */ 0x0000857a
|
|
|
|
#define GF110_DISP_CURSOR /* cl507a.h */ 0x0000907a
|
|
|
|
#define GK104_DISP_CURSOR /* cl507a.h */ 0x0000917a
|
2018-05-08 10:39:47 +00:00
|
|
|
#define GV100_DISP_CURSOR /* cl507a.h */ 0x0000c37a
|
2015-11-08 00:44:19 +00:00
|
|
|
|
|
|
|
#define NV50_DISP_OVERLAY /* cl507b.h */ 0x0000507b
|
|
|
|
#define G82_DISP_OVERLAY /* cl507b.h */ 0x0000827b
|
|
|
|
#define GT214_DISP_OVERLAY /* cl507b.h */ 0x0000857b
|
|
|
|
#define GF110_DISP_OVERLAY /* cl507b.h */ 0x0000907b
|
|
|
|
#define GK104_DISP_OVERLAY /* cl507b.h */ 0x0000917b
|
|
|
|
|
2018-05-08 10:39:47 +00:00
|
|
|
#define GV100_DISP_WINDOW_IMM_CHANNEL_DMA /* clc37b.h */ 0x0000c37b
|
|
|
|
|
2015-11-08 00:44:19 +00:00
|
|
|
#define NV50_DISP_BASE_CHANNEL_DMA /* cl507c.h */ 0x0000507c
|
|
|
|
#define G82_DISP_BASE_CHANNEL_DMA /* cl507c.h */ 0x0000827c
|
|
|
|
#define GT200_DISP_BASE_CHANNEL_DMA /* cl507c.h */ 0x0000837c
|
|
|
|
#define GT214_DISP_BASE_CHANNEL_DMA /* cl507c.h */ 0x0000857c
|
|
|
|
#define GF110_DISP_BASE_CHANNEL_DMA /* cl507c.h */ 0x0000907c
|
|
|
|
#define GK104_DISP_BASE_CHANNEL_DMA /* cl507c.h */ 0x0000917c
|
|
|
|
#define GK110_DISP_BASE_CHANNEL_DMA /* cl507c.h */ 0x0000927c
|
|
|
|
|
|
|
|
#define NV50_DISP_CORE_CHANNEL_DMA /* cl507d.h */ 0x0000507d
|
|
|
|
#define G82_DISP_CORE_CHANNEL_DMA /* cl507d.h */ 0x0000827d
|
|
|
|
#define GT200_DISP_CORE_CHANNEL_DMA /* cl507d.h */ 0x0000837d
|
|
|
|
#define GT214_DISP_CORE_CHANNEL_DMA /* cl507d.h */ 0x0000857d
|
|
|
|
#define GT206_DISP_CORE_CHANNEL_DMA /* cl507d.h */ 0x0000887d
|
|
|
|
#define GF110_DISP_CORE_CHANNEL_DMA /* cl507d.h */ 0x0000907d
|
|
|
|
#define GK104_DISP_CORE_CHANNEL_DMA /* cl507d.h */ 0x0000917d
|
|
|
|
#define GK110_DISP_CORE_CHANNEL_DMA /* cl507d.h */ 0x0000927d
|
|
|
|
#define GM107_DISP_CORE_CHANNEL_DMA /* cl507d.h */ 0x0000947d
|
2016-02-10 22:35:32 +00:00
|
|
|
#define GM200_DISP_CORE_CHANNEL_DMA /* cl507d.h */ 0x0000957d
|
2016-07-09 00:41:01 +00:00
|
|
|
#define GP100_DISP_CORE_CHANNEL_DMA /* cl507d.h */ 0x0000977d
|
2016-11-16 05:03:07 +00:00
|
|
|
#define GP102_DISP_CORE_CHANNEL_DMA /* cl507d.h */ 0x0000987d
|
2018-05-08 10:39:47 +00:00
|
|
|
#define GV100_DISP_CORE_CHANNEL_DMA /* cl507d.h */ 0x0000c37d
|
2015-11-08 00:44:19 +00:00
|
|
|
|
|
|
|
#define NV50_DISP_OVERLAY_CHANNEL_DMA /* cl507e.h */ 0x0000507e
|
|
|
|
#define G82_DISP_OVERLAY_CHANNEL_DMA /* cl507e.h */ 0x0000827e
|
|
|
|
#define GT200_DISP_OVERLAY_CHANNEL_DMA /* cl507e.h */ 0x0000837e
|
|
|
|
#define GT214_DISP_OVERLAY_CHANNEL_DMA /* cl507e.h */ 0x0000857e
|
|
|
|
#define GF110_DISP_OVERLAY_CONTROL_DMA /* cl507e.h */ 0x0000907e
|
|
|
|
#define GK104_DISP_OVERLAY_CONTROL_DMA /* cl507e.h */ 0x0000917e
|
2014-08-09 18:10:27 +00:00
|
|
|
|
2018-05-08 10:39:47 +00:00
|
|
|
#define GV100_DISP_WINDOW_CHANNEL_DMA /* clc37e.h */ 0x0000c37e
|
|
|
|
|
2016-12-21 02:46:50 +00:00
|
|
|
#define NV50_TESLA 0x00005097
|
|
|
|
#define G82_TESLA 0x00008297
|
|
|
|
#define GT200_TESLA 0x00008397
|
|
|
|
#define GT214_TESLA 0x00008597
|
|
|
|
#define GT21A_TESLA 0x00008697
|
|
|
|
|
2015-11-08 00:15:09 +00:00
|
|
|
#define FERMI_A /* cl9097.h */ 0x00009097
|
|
|
|
#define FERMI_B /* cl9097.h */ 0x00009197
|
|
|
|
#define FERMI_C /* cl9097.h */ 0x00009297
|
2014-08-09 18:10:29 +00:00
|
|
|
|
2015-11-08 00:15:09 +00:00
|
|
|
#define KEPLER_A /* cl9097.h */ 0x0000a097
|
|
|
|
#define KEPLER_B /* cl9097.h */ 0x0000a197
|
|
|
|
#define KEPLER_C /* cl9097.h */ 0x0000a297
|
2014-08-09 18:10:29 +00:00
|
|
|
|
2015-11-08 00:15:09 +00:00
|
|
|
#define MAXWELL_A /* cl9097.h */ 0x0000b097
|
|
|
|
#define MAXWELL_B /* cl9097.h */ 0x0000b197
|
2014-08-09 18:10:29 +00:00
|
|
|
|
2016-07-09 00:41:01 +00:00
|
|
|
#define PASCAL_A /* cl9097.h */ 0x0000c097
|
2016-11-30 05:48:00 +00:00
|
|
|
#define PASCAL_B /* cl9097.h */ 0x0000c197
|
2016-07-09 00:41:01 +00:00
|
|
|
|
2018-05-08 10:39:48 +00:00
|
|
|
#define VOLTA_A /* cl9097.h */ 0x0000c397
|
|
|
|
|
2015-08-20 04:54:19 +00:00
|
|
|
#define NV74_BSP 0x000074b0
|
|
|
|
|
2015-08-20 04:54:19 +00:00
|
|
|
#define GT212_MSVLD 0x000085b1
|
|
|
|
#define IGT21A_MSVLD 0x000086b1
|
|
|
|
#define G98_MSVLD 0x000088b1
|
|
|
|
#define GF100_MSVLD 0x000090b1
|
|
|
|
#define GK104_MSVLD 0x000095b1
|
|
|
|
|
|
|
|
#define GT212_MSPDEC 0x000085b2
|
|
|
|
#define G98_MSPDEC 0x000088b2
|
|
|
|
#define GF100_MSPDEC 0x000090b2
|
|
|
|
#define GK104_MSPDEC 0x000095b2
|
|
|
|
|
|
|
|
#define GT212_MSPPP 0x000085b3
|
|
|
|
#define G98_MSPPP 0x000088b3
|
|
|
|
#define GF100_MSPPP 0x000090b3
|
|
|
|
|
|
|
|
#define G98_SEC 0x000088b4
|
|
|
|
|
|
|
|
#define GT212_DMA 0x000085b5
|
|
|
|
#define FERMI_DMA 0x000090b5
|
2015-08-20 04:54:19 +00:00
|
|
|
#define KEPLER_DMA_COPY_A 0x0000a0b5
|
|
|
|
#define MAXWELL_DMA_COPY_A 0x0000b0b5
|
2016-07-09 00:41:01 +00:00
|
|
|
#define PASCAL_DMA_COPY_A 0x0000c0b5
|
2016-07-09 00:41:01 +00:00
|
|
|
#define PASCAL_DMA_COPY_B 0x0000c1b5
|
2018-05-08 10:39:48 +00:00
|
|
|
#define VOLTA_DMA_COPY_A 0x0000c3b5
|
2015-08-20 04:54:19 +00:00
|
|
|
|
|
|
|
#define FERMI_DECOMPRESS 0x000090b8
|
|
|
|
|
2016-12-21 02:46:50 +00:00
|
|
|
#define NV50_COMPUTE 0x000050c0
|
|
|
|
#define GT214_COMPUTE 0x000085c0
|
2014-08-09 18:10:30 +00:00
|
|
|
#define FERMI_COMPUTE_A 0x000090c0
|
|
|
|
#define FERMI_COMPUTE_B 0x000091c0
|
|
|
|
#define KEPLER_COMPUTE_A 0x0000a0c0
|
|
|
|
#define KEPLER_COMPUTE_B 0x0000a1c0
|
|
|
|
#define MAXWELL_COMPUTE_A 0x0000b0c0
|
2015-03-25 23:28:34 +00:00
|
|
|
#define MAXWELL_COMPUTE_B 0x0000b1c0
|
2016-07-09 00:41:01 +00:00
|
|
|
#define PASCAL_COMPUTE_A 0x0000c0c0
|
2016-11-30 05:48:00 +00:00
|
|
|
#define PASCAL_COMPUTE_B 0x0000c1c0
|
2018-05-08 10:39:48 +00:00
|
|
|
#define VOLTA_COMPUTE_A 0x0000c3c0
|
2014-08-09 18:10:30 +00:00
|
|
|
|
2015-08-20 04:54:19 +00:00
|
|
|
#define NV74_CIPHER 0x000074c1
|
2014-08-09 18:10:21 +00:00
|
|
|
#endif
|