Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mei: docs: add a short description for nfc behind mei

Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Tomas Winkler and committed by
Greg Kroah-Hartman
4e3d3b78 6080e0cf

+36 -1
+1 -1
Documentation/driver-api/mei/index.rst
··· 16 16 Table of Contents 17 17 18 18 .. toctree:: 19 - :maxdepth: 2 19 + :maxdepth: 3 20 20 21 21 mei 22 22 mei-client-bus
+7
Documentation/driver-api/mei/mei-client-bus.rst
··· 158 158 159 159 } 160 160 161 + MEI Client Bus Drivers 162 + ====================== 163 + 164 + .. toctree:: 165 + :maxdepth: 2 166 + 167 + nfc
+28
Documentation/driver-api/mei/nfc.rst
··· 1 + .. SPDX-License-Identifier: GPL-2.0 2 + 3 + MEI NFC 4 + ------- 5 + 6 + Some Intel 8 and 9 Serieses chipsets supports NFC devices connected behind 7 + the Intel Management Engine controller. 8 + MEI client bus exposes the NFC chips as NFC phy devices and enables 9 + binding with Microread and NXP PN544 NFC device driver from the Linux NFC 10 + subsystem. 11 + 12 + .. kernel-render:: DOT 13 + :alt: MEI NFC digraph 14 + :caption: **MEI NFC** Stack 15 + 16 + digraph NFC { 17 + cl_nfc -> me_cl_nfc; 18 + "drivers/nfc/mei_phy" -> cl_nfc [lhead=bus]; 19 + "drivers/nfc/microread/mei" -> cl_nfc; 20 + "drivers/nfc/microread/mei" -> "drivers/nfc/mei_phy"; 21 + "drivers/nfc/pn544/mei" -> cl_nfc; 22 + "drivers/nfc/pn544/mei" -> "drivers/nfc/mei_phy"; 23 + "net/nfc" -> "drivers/nfc/microread/mei"; 24 + "net/nfc" -> "drivers/nfc/pn544/mei"; 25 + "neard" -> "net/nfc"; 26 + cl_nfc [label="mei/bus(nfc)"]; 27 + me_cl_nfc [label="me fw (nfc)"]; 28 + }