Return-path: Received: from mga02.intel.com ([134.134.136.20]:49787 "EHLO mga02.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752284AbbBXKCa (ORCPT ); Tue, 24 Feb 2015 05:02:30 -0500 From: Robert Dolca To: linux-nfc@lists.01.org, Lauro Ramos Venancio , Aloisio Almeida Jr , Samuel Ortiz Cc: linux-kernel@vger.kernel.org, linux-wireless@vger.kernel.org, netdev@vger.kernel.org, "David S. Miller" , Robert Dolca Subject: [PATCH 0/8] Adds Intel FieldsPeak NFC solution driver Date: Tue, 24 Feb 2015 12:01:44 +0200 Message-Id: <1424772112-27399-1-git-send-email-robert.dolca@intel.com> (sfid-20150224_110810_936097_7FF06E46) Sender: linux-wireless-owner@vger.kernel.org List-ID: This patch adds support for Intel's FieldsPeak NFC solution. The device is enumerated with ACPI and platform init. In order to implement the driver the nci_core_conn_create was modified in order to report the ID of the newly created connection. Fixed a bug that prevented to close a connection from the driver while the dev was down. The max packet size of a connection can be retrieved by the driver. The init, reset NCI functions can be called from the driver. The driver can also send command to the device using the NFC subsystem using the request - response blocking method. Robert Dolca (8): NFC: NCI: Allow connection close with dev down NFC: NCI: Exporting NFC command and data send API NFC: NCI: Adds NCI init and reset API for drivers NFC: NCI: Add a special nci_request for driver NFC: NCI: Don't call setup if previous NCI request failed NFC: NCI: Add function to get max packet size for conn NFC: NCI: Adds a way to get the new connection ID NFC: Add Intel FieldsPeak NFC solution driver drivers/nfc/Kconfig | 1 + drivers/nfc/fdp/Kconfig | 22 ++ drivers/nfc/fdp/Makefile | 10 + drivers/nfc/fdp/cmd.c | 196 +++++++++++++++ drivers/nfc/fdp/core.c | 503 +++++++++++++++++++++++++++++++++++++ drivers/nfc/fdp/fdp.h | 115 +++++++++ drivers/nfc/fdp/i2c.c | 454 +++++++++++++++++++++++++++++++++ drivers/nfc/fdp/ntf.c | 68 +++++ drivers/nfc/fdp/rsp.c | 117 +++++++++ drivers/nfc/st21nfcb/st21nfcb_se.c | 2 +- include/linux/platform_data/fdp.h | 33 +++ include/net/nfc/nci_core.h | 18 +- net/nfc/nci/core.c | 53 +++- net/nfc/nci/data.c | 13 + net/nfc/nci/rsp.c | 6 + 15 files changed, 1601 insertions(+), 10 deletions(-) create mode 100644 drivers/nfc/fdp/Kconfig create mode 100644 drivers/nfc/fdp/Makefile create mode 100644 drivers/nfc/fdp/cmd.c create mode 100644 drivers/nfc/fdp/core.c create mode 100644 drivers/nfc/fdp/fdp.h create mode 100644 drivers/nfc/fdp/i2c.c create mode 100644 drivers/nfc/fdp/ntf.c create mode 100644 drivers/nfc/fdp/rsp.c create mode 100644 include/linux/platform_data/fdp.h -- 1.9.1