<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>56e0d883 - crypto: ccp - Move security attributes to their own file</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/crypto/ccp/Makefile#56e0d883</link>
        <description>crypto: ccp - Move security attributes to their own fileTo prepare for other code that will manipulate security attributesmove the handling code out of sp-pci.c. No intended functional changes.Signed-off-by: Mario Limonciello &lt;mario.limonciello@amd.com&gt;Acked-by: Tom Lendacky &lt;thomas.lendacky@amd.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/drivers/crypto/ccp/Makefile</description>
        <pubDate>Tue, 28 May 2024 21:07:09 +0000</pubDate>
        <dc:creator>Mario Limonciello &lt;mario.limonciello@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>c04cf9e1 - crypto: ccp - Add support for fetching a nonce for dynamic boost control</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/crypto/ccp/Makefile#c04cf9e1</link>
        <description>crypto: ccp - Add support for fetching a nonce for dynamic boost controlDynamic Boost Control is a feature offered on AMD client platforms thatallows software to request and set power or frequency limits.Only software that has authenticated with the PSP can retrieve or setthese limits.Create a character device and ioctl for fetching the nonce. This ioctlsupports optionally passing authentication information which will influencehow many calls the nonce is valid for.Acked-by: Tom Lendacky &lt;thomas.lendacky@amd.com&gt;Signed-off-by: Mario Limonciello &lt;mario.limonciello@amd.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/drivers/crypto/ccp/Makefile</description>
        <pubDate>Fri, 23 Jun 2023 13:49:55 +0000</pubDate>
        <dc:creator>Mario Limonciello &lt;mario.limonciello@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>7ccc4f4e - crypto: ccp - Add support for an interface for platform features</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/crypto/ccp/Makefile#7ccc4f4e</link>
        <description>crypto: ccp - Add support for an interface for platform featuresSome platforms with a PSP support an interface for features thatinteract directly with the PSP instead of through a SEV or TEEenvironment.Initialize this interface so that other drivers can consume it.These drivers may either be subdrivers for the ccp module orexternal modules.  For external modules, export a symbol for themto utilize.Acked-by: Tom Lendacky &lt;thomas.lendacky@amd.com&gt;Signed-off-by: Mario Limonciello &lt;mario.limonciello@amd.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/drivers/crypto/ccp/Makefile</description>
        <pubDate>Fri, 10 Mar 2023 21:19:47 +0000</pubDate>
        <dc:creator>Mario Limonciello &lt;mario.limonciello@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>33960acc - crypto: ccp - add TEE support for Raven Ridge</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/crypto/ccp/Makefile#33960acc</link>
        <description>crypto: ccp - add TEE support for Raven RidgeAdds a PCI device entry for Raven Ridge. Raven Ridge is an APU with adedicated AMD Secure Processor having Trusted Execution Environment (TEE)support. The TEE provides a secure environment for running TrustedApplications (TAs) which implement security-sensitive parts of a feature.This patch configures AMD Secure Processor&apos;s TEE interface by initializinga ring buffer (shared memory between Rich OS and Trusted OS) which can holdmultiple command buffer entries. The TEE interface is facilitated by a setof CPU to PSP mailbox registers.The next patch will address how commands are submitted to the ring buffer.Cc: Jens Wiklander &lt;jens.wiklander@linaro.org&gt;Cc: Tom Lendacky &lt;thomas.lendacky@amd.com&gt;Cc: Ard Biesheuvel &lt;ard.biesheuvel@linaro.org&gt;Co-developed-by: Devaraj Rangasamy &lt;Devaraj.Rangasamy@amd.com&gt;Signed-off-by: Devaraj Rangasamy &lt;Devaraj.Rangasamy@amd.com&gt;Signed-off-by: Rijo Thomas &lt;Rijo-john.Thomas@amd.com&gt;Acked-by: Gary R Hook &lt;gary.hook@amd.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/drivers/crypto/ccp/Makefile</description>
        <pubDate>Wed, 04 Dec 2019 06:19:02 +0000</pubDate>
        <dc:creator>Rijo Thomas &lt;Rijo-john.Thomas@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>b93566f1 - crypto: ccp - create a generic psp-dev file</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/crypto/ccp/Makefile#b93566f1</link>
        <description>crypto: ccp - create a generic psp-dev fileThe PSP (Platform Security Processor) provides support for key managementcommands in Secure Encrypted Virtualization (SEV) mode, along withsoftware-based Trusted Execution Environment (TEE) to enable third-partyTrusted Applications.Therefore, introduce psp-dev.c and psp-dev.h files, which can invokeSEV (or TEE) initialization based on platform feature support.TEE interface support will be introduced in a later patch.Cc: Ard Biesheuvel &lt;ard.biesheuvel@linaro.org&gt;Cc: Tom Lendacky &lt;thomas.lendacky@amd.com&gt;Cc: Jens Wiklander &lt;jens.wiklander@linaro.org&gt;Co-developed-by: Devaraj Rangasamy &lt;Devaraj.Rangasamy@amd.com&gt;Signed-off-by: Devaraj Rangasamy &lt;Devaraj.Rangasamy@amd.com&gt;Signed-off-by: Rijo Thomas &lt;Rijo-john.Thomas@amd.com&gt;Acked-by: Gary R Hook &lt;gary.hook@amd.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/drivers/crypto/ccp/Makefile</description>
        <pubDate>Wed, 04 Dec 2019 06:18:59 +0000</pubDate>
        <dc:creator>Rijo Thomas &lt;Rijo-john.Thomas@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>9b67d08d - crypto: ccp - rename psp-dev files to sev-dev</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/crypto/ccp/Makefile#9b67d08d</link>
        <description>crypto: ccp - rename psp-dev files to sev-devThis is a preliminary patch for creating a generic PSP device driverfile, which will have support for both SEV and TEE (Trusted ExecutionEnvironment) interface.This patch does not introduce any new functionality, but simply renamespsp-dev.c and psp-dev.h files to sev-dev.c and sev-dev.h filesrespectively.Cc: Ard Biesheuvel &lt;ard.biesheuvel@linaro.org&gt;Cc: Tom Lendacky &lt;thomas.lendacky@amd.com&gt;Cc: Jens Wiklander &lt;jens.wiklander@linaro.org&gt;Co-developed-by: Devaraj Rangasamy &lt;Devaraj.Rangasamy@amd.com&gt;Signed-off-by: Devaraj Rangasamy &lt;Devaraj.Rangasamy@amd.com&gt;Signed-off-by: Rijo Thomas &lt;Rijo-john.Thomas@amd.com&gt;Acked-by: Gary R Hook &lt;gary.hook@amd.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/drivers/crypto/ccp/Makefile</description>
        <pubDate>Wed, 04 Dec 2019 06:18:58 +0000</pubDate>
        <dc:creator>Rijo Thomas &lt;Rijo-john.Thomas@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>93308baf - crypto: ccp - Make CCP debugfs support optional</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/crypto/ccp/Makefile#93308baf</link>
        <description>crypto: ccp - Make CCP debugfs support optionalAdd a config option to exclude DebugFS support in the CCP driver.Signed-off-by: Gary R Hook &lt;gary.hook@amd.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/drivers/crypto/ccp/Makefile</description>
        <pubDate>Tue, 09 Jul 2019 15:07:15 +0000</pubDate>
        <dc:creator>Hook, Gary &lt;Gary.Hook@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>2a6170df - crypto: ccp: Add Platform Security Processor (PSP) device support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/crypto/ccp/Makefile#2a6170df</link>
        <description>crypto: ccp: Add Platform Security Processor (PSP) device supportThe Platform Security Processor (PSP) is part of the AMD SecureProcessor (AMD-SP) functionality. The PSP is a dedicated processorthat provides support for key management commands in Secure EncryptedVirtualization (SEV) mode, along with software-based Trusted ExecutionEnvironment (TEE) to enable third-party trusted applications.Note that the key management functionality provided by the SEV firmwarecan be used outside of the kvm-amd driver hence it doesn&apos;t need todepend on CONFIG_KVM_AMD.Cc: Paolo Bonzini &lt;pbonzini@redhat.com&gt;Cc: &quot;Radim Kr&#269;m&#225;&#345;&quot; &lt;rkrcmar@redhat.com&gt;Cc: Borislav Petkov &lt;bp@suse.de&gt;Cc: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;Cc: Gary Hook &lt;gary.hook@amd.com&gt;Cc: Tom Lendacky &lt;thomas.lendacky@amd.com&gt;Cc: linux-crypto@vger.kernel.orgCc: kvm@vger.kernel.orgCc: linux-kernel@vger.kernel.orgImprovements-by: Borislav Petkov &lt;bp@suse.de&gt;Signed-off-by: Brijesh Singh &lt;brijesh.singh@amd.com&gt;Reviewed-by: Borislav Petkov &lt;bp@suse.de&gt;

            List of files:
            /linux-6.15/drivers/crypto/ccp/Makefile</description>
        <pubDate>Mon, 04 Dec 2017 16:57:28 +0000</pubDate>
        <dc:creator>Brijesh Singh &lt;brijesh.singh@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>b2441318 - License cleanup: add SPDX GPL-2.0 license identifier to files with no license</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/crypto/ccp/Makefile#b2441318</link>
        <description>License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseMany source files in the tree are missing licensing information, whichmakes it harder for compliance tools to determine the correct license.By default all files without license information are under the defaultlicense of the kernel, which is GPL version 2.Update the files which contain no license information with the &apos;GPL-2.0&apos;SPDX license identifier.  The SPDX identifier is a legally bindingshorthand, which can be used instead of the full boiler plate text.This patch is based on work done by Thomas Gleixner and Kate Stewart andPhilippe Ombredanne.How this work was done:Patches were generated and checked against linux-4.14-rc6 for a subset ofthe 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 caseswhere non-standard license headers were used, and references to licensehad to be inferred by heuristics based on keywords.The analysis to determine which SPDX License Identifier to be applied toa file was done in a spreadsheet of side by side results from of theoutput of two independent scanners (ScanCode &amp; Windriver) producing SPDXtag:value files created by Philippe Ombredanne.  Philippe prepared thebase 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 filesassessed.  Kate Stewart did a file by file comparison of the scannerresults in the spreadsheet to determine which SPDX license identifier(s)to be applied to the file. She confirmed any determination that was notimmediately 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 &gt;5   lines of source - File already had some variant of a license header in it (even if &lt;5   lines).All documentation files were explicitly excluded.The following heuristics were used to determine which SPDX licenseidentifiers to apply. - when both scanners couldn&apos;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 &quot;GPL-2.0 WITH   Linux-syscall-note&quot; otherwise it was &quot;GPL-2.0&quot;.  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&apos;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 thespreadsheet to determine the SPDX license identifiers to apply to thesource files by Kate, Philippe, Thomas and, in some cases, confirmationby lawyers working with the Linux Foundation.Kate also obtained a third independent scan of the 4.13 code base fromFOSSology, and compared selected files where the other two scannersdisagreed against that SPDX file, to see if there was new insights.  TheWindriver scanner is based on an older version of FOSSology in part, sothey are related.Thomas did random spot checks in about 500 files from the spreadsheetsfor the uapi headers and agreed with SPDX license identifier in thefiles he inspected. For the non-uapi files Thomas did random spot checksin about 15000 files.In initial set of patches against 4.14-rc6, 3 files were found to havecopy/paste license identifier errors, and have been fixed to reflect thecorrect identifier.Additionally Philippe spent 10 hours this week doing a detailed manualinspection and review of the 12,461 patched files from the initial patchversion 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 correctThis produced a worksheet with 20 files needing minor correction.  Thisworksheet was then exported into 3 different .csv files for thedifferent types of files to be modified.These .csv files were then reviewed by Greg.  Thomas wrote a script toparse the csv files and add the proper SPDX tag to the file, in theformat that the file expected.  This script was further refined by Gregbased on the output to detect more types of files automatically and todistinguish between header and source .c files (which need differentcomment types.)  Finally Greg ran the script using the .csv files togenerate the patches.Reviewed-by: Kate Stewart &lt;kstewart@linuxfoundation.org&gt;Reviewed-by: Philippe Ombredanne &lt;pombredanne@nexb.com&gt;Reviewed-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/crypto/ccp/Makefile</description>
        <pubDate>Wed, 01 Nov 2017 14:07:57 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>ceeec0af - crypto: ccp - Add support for RSA on the CCP</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/crypto/ccp/Makefile#ceeec0af</link>
        <description>crypto: ccp - Add support for RSA on the CCPWire up the CCP as an RSA cipher provider.Signed-off-by: Gary R Hook &lt;gary.hook@amd.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/drivers/crypto/ccp/Makefile</description>
        <pubDate>Mon, 17 Jul 2017 20:16:32 +0000</pubDate>
        <dc:creator>Gary R Hook &lt;gary.hook@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>d0ebbc0c - crypto: ccp - rename ccp driver initialize files as sp device</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/crypto/ccp/Makefile#d0ebbc0c</link>
        <description>crypto: ccp - rename ccp driver initialize files as sp deviceCCP device initializes is now integerated into higher level SP device,to avoid the confusion lets rename the ccp driver initialization files(ccp-platform.c-&gt;sp-platform.c, ccp-pci.c-&gt;sp-pci.c). The patch does notmake any functional changes other than renaming file and structuresSigned-off-by: Brijesh Singh &lt;brijesh.singh@amd.com&gt;Acked-by: Gary R Hook &lt;gary.hook@amd.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/drivers/crypto/ccp/Makefile</description>
        <pubDate>Thu, 06 Jul 2017 14:59:16 +0000</pubDate>
        <dc:creator>Brijesh Singh &lt;brijesh.singh@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>720419f0 - crypto: ccp - Introduce the AMD Secure Processor device</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/crypto/ccp/Makefile#720419f0</link>
        <description>crypto: ccp - Introduce the AMD Secure Processor deviceThe CCP device is part of the AMD Secure Processor. In order to expandthe usage of the AMD Secure Processor, create a framework that allowsfunctional components of the AMD Secure Processor to be initialized andhandled appropriately.Signed-off-by: Brijesh Singh &lt;brijesh.singh@amd.com&gt;Acked-by: Gary R Hook &lt;gary.hook@amd.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/drivers/crypto/ccp/Makefile</description>
        <pubDate>Thu, 06 Jul 2017 14:59:14 +0000</pubDate>
        <dc:creator>Brijesh Singh &lt;brijesh.singh@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>3cdbe346 - crypto: ccp - Add debugfs entries for CCP information</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/crypto/ccp/Makefile#3cdbe346</link>
        <description>crypto: ccp - Add debugfs entries for CCP informationExpose some data about the configuration and operation of the CCPthrough debugfs entries: device name, capabilities, configuration,statistics.Allow the user to reset the counters to zero by writing (any value)to the &apos;stats&apos; file. This can be done per queue or per device.Changes from V1: - Correct polarity of test when destroying devices at module unloadSigned-off-by: Gary R Hook &lt;gary.hook@amd.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/drivers/crypto/ccp/Makefile</description>
        <pubDate>Tue, 02 May 2017 22:33:40 +0000</pubDate>
        <dc:creator>Gary R Hook &lt;gary.hook@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>36cf515b - crypto: ccp - Enable support for AES GCM on v5 CCPs</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/crypto/ccp/Makefile#36cf515b</link>
        <description>crypto: ccp - Enable support for AES GCM on v5 CCPsA version 5 device provides the primitive commandsrequired for AES GCM. This patch adds support foren/decryption.Signed-off-by: Gary R Hook &lt;gary.hook@amd.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/drivers/crypto/ccp/Makefile</description>
        <pubDate>Wed, 15 Mar 2017 18:21:01 +0000</pubDate>
        <dc:creator>Gary R Hook &lt;gary.hook@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>990672d4 - crypto: ccp - Enable 3DES function on v5 CCPs</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/crypto/ccp/Makefile#990672d4</link>
        <description>crypto: ccp - Enable 3DES function on v5 CCPsWire up support for Triple DES in ECB mode.Signed-off-by: Gary R Hook &lt;gary.hook@amd.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/drivers/crypto/ccp/Makefile</description>
        <pubDate>Wed, 15 Mar 2017 18:20:52 +0000</pubDate>
        <dc:creator>Gary R Hook &lt;gary.hook@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>4b394a23 - crypto: ccp - Let a v5 CCP provide the same function as v3</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/crypto/ccp/Makefile#4b394a23</link>
        <description>crypto: ccp - Let a v5 CCP provide the same function as v3Enable equivalent function on a v5 CCP. Add support for aversion 5 CCP which enables AES/XTS/SHA services. Also,more work on the data structures to virtualizefunctionality.Signed-off-by: Gary R Hook &lt;gary.hook@amd.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/drivers/crypto/ccp/Makefile</description>
        <pubDate>Wed, 27 Jul 2016 00:10:21 +0000</pubDate>
        <dc:creator>Gary R Hook &lt;gary.hook@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>58ea8abf - crypto: ccp - Register the CCP as a DMA resource</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/crypto/ccp/Makefile#58ea8abf</link>
        <description>crypto: ccp - Register the CCP as a DMA resourceThe CCP has the ability to provide DMA services to thekernel using pass-through mode of the device. Registerthese services as general purpose DMA channels.Changes since v2:- Add a Signed-off-byChanges since v1:- Allocate memory for a string in ccp_dmaengine_register- Ensure register/unregister calls are properly ordered- Verified all changed files are listed in the diffstat- Undo some superfluous changes- Added a cc:Signed-off-by: Gary R Hook &lt;gary.hook@amd.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/drivers/crypto/ccp/Makefile</description>
        <pubDate>Mon, 18 Apr 2016 14:21:44 +0000</pubDate>
        <dc:creator>Gary R Hook &lt;gary.hook@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>ea0375af - crypto: ccp - Add abstraction for device-specific calls</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/crypto/ccp/Makefile#ea0375af</link>
        <description>crypto: ccp - Add abstraction for device-specific callsSupport for different generations of the coprocessorrequires that an abstraction layer be implemented forinteracting with the hardware. This patch splits outversion-specific functions to a separate file and populatesthe version structure (acting as a driver) with functionpointers.Signed-off-by: Gary R Hook &lt;gary.hook@amd.com&gt;Acked-by: Tom Lendacky &lt;thomas.lendacky@amd.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/drivers/crypto/ccp/Makefile</description>
        <pubDate>Tue, 01 Mar 2016 19:49:25 +0000</pubDate>
        <dc:creator>Gary R Hook &lt;gary.hook@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>a5bd093a - crypto: ccp - Update CCP build support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/crypto/ccp/Makefile#a5bd093a</link>
        <description>crypto: ccp - Update CCP build supportAdd HAS_IOMEM as a Kconfig dependency. Always include ccp-platform.cin the CCP build and conditionally include ccp-pci.c.Signed-off-by: Tom Lendacky &lt;thomas.lendacky@amd.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/drivers/crypto/ccp/Makefile</description>
        <pubDate>Tue, 03 Feb 2015 19:07:11 +0000</pubDate>
        <dc:creator>Tom Lendacky &lt;thomas.lendacky@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>c4f4b325 - crypto: ccp - Add platform device support for arm64</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/crypto/ccp/Makefile#c4f4b325</link>
        <description>crypto: ccp - Add platform device support for arm64Add support for the CCP on arm64 as a platform device.Signed-off-by: Tom Lendacky &lt;thomas.lendacky@amd.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/drivers/crypto/ccp/Makefile</description>
        <pubDate>Thu, 05 Jun 2014 15:17:57 +0000</pubDate>
        <dc:creator>Tom Lendacky &lt;thomas.lendacky@amd.com&gt;</dc:creator>
    </item>
</channel>
</rss>
