From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Google-Smtp-Source: AH8x226WqVYQ0E0SaQxMW01trg365YugJEjkUDD/igbXXbpgKMllHwxMta0/Bax6oXzs94v4PBIO ARC-Seal: i=1; a=rsa-sha256; t=1516707116; cv=none; d=google.com; s=arc-20160816; b=zW95WbJm1iKt/yK2odNdRxXoxAKbE9FPXeqKi7gSie1SbzNNY5Qy5ZEktDbab8nEH2 +qbfPJVUbOyHfG5qNNfP1Dm9ck2yj+bVj3jEcsk0QF8dZNe98mmU19Y+uaviSk8IrCez KU4jM0eA0JoUa53S1a5XKmLQu0yFyV8Jda5SEmmJBgkcVK2SMqU1vESg9PNB3hVP/FFi MMW7H+lY95Z3J6fEngJQGrYhQElHmUGbzcp+pZDYgl7lClivJYabXR3V00fxZDe9ifBx 5pWnMRWpv+U69RiRFYuT7vNwOv9xkQBua2Ae7gosuTyLlGIy/VT9rwnLsEIth1xKsyD+ fHNg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=message-id:date:subject:cc:to:from:arc-authentication-results; bh=oadjuhheH+IVIBHZRMXuRHmd8QJR4Z+aXzYiWqh0RzY=; b=r85OflbTGKC0O+qnTc74UrIGeh/Y87UytXMxh4iG0BP9WyrpRebDS2FOT17EGSKZaG BFULpujpGv4apluvjAi8PIl6tX4rfNSnCbxXIjPJeFXgXgsnItxwju+BFdR6nztjZcjB NfdodZ3kMzX4QlIjrmaEe0nYPAAjHsGcvOWm1a1LrqjA0mcJdlDNBpcvOFgNxaNq3I9y yhx1F8BbmIXCPmFhbNtLq0A1eIzJnMZDDSkSckau4WP3ebqxj1JABS2a+lgIJTRseWyE x2MB1n66iJHyx49GkGwFmpEVcjUl4Cs/yk/fgLTL3FyQ3l6/dWX/mJf/RSyVlXurRnrk H7Lw== ARC-Authentication-Results: i=1; mx.google.com; spf=neutral (google.com: 148.163.156.1 is neither permitted nor denied by best guess record for domain of fbarrat@linux.vnet.ibm.com) smtp.mailfrom=fbarrat@linux.vnet.ibm.com; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=ibm.com Authentication-Results: mx.google.com; spf=neutral (google.com: 148.163.156.1 is neither permitted nor denied by best guess record for domain of fbarrat@linux.vnet.ibm.com) smtp.mailfrom=fbarrat@linux.vnet.ibm.com; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=ibm.com From: Frederic Barrat To: linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org Cc: arnd@arndb.de, gregkh@linuxfoundation.org, mpe@ellerman.id.au, andrew.donnellan@au1.ibm.com, alastair@au1.ibm.com Subject: [PATCH v2 00/13] New driver to support OpenCAPI devices on POWER9 Date: Tue, 23 Jan 2018 12:31:35 +0100 X-Mailer: git-send-email 2.14.1 X-TM-AS-GCONF: 00 x-cbid: 18012311-0016-0000-0000-0000051AD93F X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 18012311-0017-0000-0000-000028575EDE Message-Id: <20180123113148.6024-1-fbarrat@linux.vnet.ibm.com> X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2018-01-23_03:,, signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 priorityscore=1501 malwarescore=0 suspectscore=0 phishscore=0 bulkscore=0 spamscore=0 clxscore=1011 lowpriorityscore=0 impostorscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1709140000 definitions=main-1801230158 X-getmail-retrieved-from-mailbox: INBOX X-GMAIL-THRID: =?utf-8?q?1590382681692959209?= X-GMAIL-MSGID: =?utf-8?q?1590382681692959209?= X-Mailing-List: linux-kernel@vger.kernel.org List-ID: This series adds support for Open Coherent Accelerator (ocxl) devices on POWER9 processor. OpenCAPI is a consortium developing the specifications for an interface between processors and accelerators, allowing sharing the host memory with the accelerators, using virtual addresses. The OpenCAPI device can also have its own local memory and provide access to the host, though it is not supported by that series. The OpenCAPI specification is processor agnostic, but this series adds support specifically for powerpc. Even though the underlying transport is not PCI, the firmware abstracts the hardware like a PCI host bridge and Linux sees the OpenCAPI devices as PCI devices. So a lot of existing infrastructure and commands can be reused. Patches 1-5: add the platform-specific services needed by the driver Patches 6-10: driver code Patch 11: small correction to existing cxl driver Patch 12: documentation Current limitations, that will be addressed in later patches: - no capability to trigger a reset of the opencapi adapter - no support for the 'wake_host_thread' command - no support for adapters with a dual-link connection (none exists yet) - no access to the adapter-local memory Many people contributed directly or indirectly, from the software, hardware and bringup teams. In particular Andrew Donnellan and Alastair D'Silva, who are developing the related firmware and library. Feedback welcome! Changelog: v2: All/many patches: use new SPDX tag for licensing info fix sparse warnings patch 2: set "From" field correctly don't activate the PCI fixup on platforms other than powernv patch 4: fix typos patch 7: map AFU interrupt trigger page write-only patch 10: rephrase CONFIG help message patch 12: add documentation for new sysfs files patch 13: follow alphabetical order for new entry in MAINTAINERS Andrew Donnellan (1): powerpc/powernv: Set correct configuration space size for opencapi devices Frederic Barrat (12): powerpc/powernv: Introduce new PHB type for opencapi links powerpc/powernv: Add opal calls for opencapi powerpc/powernv: Add platform-specific services for opencapi powerpc/powernv: Capture actag information for the device ocxl: Driver code for 'generic' opencapi devices ocxl: Add AFU interrupt support ocxl: Add a kernel API for other opencapi drivers ocxl: Add trace points ocxl: Add Makefile and Kconfig cxl: Remove support for "Processing accelerators" class ocxl: Documentation ocxl: add MAINTAINERS entry Documentation/ABI/testing/sysfs-class-ocxl | 35 ++ Documentation/accelerators/ocxl.rst | 160 ++++++ Documentation/ioctl/ioctl-number.txt | 1 + MAINTAINERS | 12 + arch/powerpc/include/asm/opal-api.h | 5 +- arch/powerpc/include/asm/opal.h | 6 + arch/powerpc/include/asm/pnv-ocxl.h | 36 ++ arch/powerpc/platforms/powernv/Makefile | 1 + arch/powerpc/platforms/powernv/npu-dma.c | 2 +- arch/powerpc/platforms/powernv/ocxl.c | 515 ++++++++++++++++++ arch/powerpc/platforms/powernv/opal-wrappers.S | 3 + arch/powerpc/platforms/powernv/pci-ioda.c | 54 +- arch/powerpc/platforms/powernv/pci.c | 4 + arch/powerpc/platforms/powernv/pci.h | 8 +- drivers/misc/Kconfig | 1 + drivers/misc/Makefile | 1 + drivers/misc/cxl/pci.c | 2 - drivers/misc/ocxl/Kconfig | 31 ++ drivers/misc/ocxl/Makefile | 11 + drivers/misc/ocxl/afu_irq.c | 202 +++++++ drivers/misc/ocxl/config.c | 723 +++++++++++++++++++++++++ drivers/misc/ocxl/context.c | 279 ++++++++++ drivers/misc/ocxl/file.c | 432 +++++++++++++++ drivers/misc/ocxl/link.c | 647 ++++++++++++++++++++++ drivers/misc/ocxl/main.c | 33 ++ drivers/misc/ocxl/ocxl_internal.h | 131 +++++ drivers/misc/ocxl/pasid.c | 107 ++++ drivers/misc/ocxl/pci.c | 585 ++++++++++++++++++++ drivers/misc/ocxl/sysfs.c | 142 +++++ drivers/misc/ocxl/trace.c | 6 + drivers/misc/ocxl/trace.h | 182 +++++++ include/misc/ocxl-config.h | 45 ++ include/misc/ocxl.h | 214 ++++++++ include/uapi/misc/ocxl.h | 49 ++ 34 files changed, 4650 insertions(+), 15 deletions(-) create mode 100644 Documentation/ABI/testing/sysfs-class-ocxl create mode 100644 Documentation/accelerators/ocxl.rst create mode 100644 arch/powerpc/include/asm/pnv-ocxl.h create mode 100644 arch/powerpc/platforms/powernv/ocxl.c create mode 100644 drivers/misc/ocxl/Kconfig create mode 100644 drivers/misc/ocxl/Makefile create mode 100644 drivers/misc/ocxl/afu_irq.c create mode 100644 drivers/misc/ocxl/config.c create mode 100644 drivers/misc/ocxl/context.c create mode 100644 drivers/misc/ocxl/file.c create mode 100644 drivers/misc/ocxl/link.c create mode 100644 drivers/misc/ocxl/main.c create mode 100644 drivers/misc/ocxl/ocxl_internal.h create mode 100644 drivers/misc/ocxl/pasid.c create mode 100644 drivers/misc/ocxl/pci.c create mode 100644 drivers/misc/ocxl/sysfs.c create mode 100644 drivers/misc/ocxl/trace.c create mode 100644 drivers/misc/ocxl/trace.h create mode 100644 include/misc/ocxl-config.h create mode 100644 include/misc/ocxl.h create mode 100644 include/uapi/misc/ocxl.h -- 2.14.1