linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/33] NFC updates for 3.6
@ 2012-07-06 20:09 Samuel Ortiz
  2012-07-06 20:09 ` [PATCH 01/33] NFC: Prepare asynchronous error management for driver and shdlc Samuel Ortiz
                   ` (32 more replies)
  0 siblings, 33 replies; 34+ messages in thread
From: Samuel Ortiz @ 2012-07-06 20:09 UTC (permalink / raw)
  To: John W. Linville
  Cc: Lauro Ramos Venancio, Aloisio Almeida Jr, Ilan Elias,
	linux-wireless, linux-nfc, Samuel Ortiz

This is the second (and probably last) NFC pull request for 3.6.
Here are the interesting bits:

- A better error management for the HCI stack.
- An LLCP "late" binding implementation for a better NFC SAP usage. SAPs are
  now reserved only when there's a client for it.
- Support for Sony RC-S360 (a.k.a. PaSoRi) pn533 based dongle. We can read and
  write NFC tags and also establish a p2p link with this dongle now.
- A few LLCP fixes.

You can either apply those patches manually or pull them from here:

git://git.kernel.org/pub/scm/linux/kernel/git/sameo/nfc-3.0.git tags/nfc-next-3.6-2


Eric Lapuyade (15):
  NFC: Prepare asynchronous error management for driver and shdlc
  NFC: Removed addressed shdlc TODOs
  NFC: Handle SHDLC RSET frames from an SHDLC connected chip
  NFC: Remove an impossible HCI error case
  NFC: Implement HCP reaggregation allocation error case
  NFC: Changed HCI cmd execution completion result to std linux errno
  NFC: Driver failure API
  NFC: Factorize HCI cmd completion
  NFC: Implement HCI driver or internal error management
  NFC: Core must test the device polling state inside the device lock
  NFC: nfc_targets_found() should accept zero target found
  NFC: nfc_driver_failure() implementation
  NFC: Error management documentation
  NFC: update PN544 HCI driver state when opened/closed
  NFC: Allow HCI driver to pre-open pipes to some gates

Samuel Ortiz (18):
  NFC: Add modules alias for NFC sockets
  NFC: Add netlink module alias for NFC
  NFC: Update LLCP socket target index when getting a connection
  NFC: Fix LLCP getname socket op
  NFC: Build LLCP general bytes upon request
  NFC: Close listening LLCP sockets when the device is gone
  NFC: Release LLCP SAP when the owner is released
  NFC: Forbid LLCP service name reusing
  NFC: Forbid SSAP binding to a not well known LLCP service
  NFC: LLCP late binding
  NFC: Handle LLCP Disconnected Mode frames
  NFC: Remove warning from nfc_llcp_local_put
  NFC: Do not return EBUSY when stopping a poll that's already stopped
  NFC: Dereference LLCP bind socket address after checking for it to be
    NULL
  NFC: Add initial Sony RC-S360 support to pn533
  NFC: Use communicate thru only for PaSoRi when trying to read Felica
    tags
  NFC: Add ISO 14443 type B protocol
  NFC: Check for llcp_sock and its device from llcp_sock_getname

 Documentation/nfc/nfc-hci.txt |   33 ++++
 drivers/nfc/nfcwilink.c       |    7 +-
 drivers/nfc/pn533.c           |  224 ++++++++++++++++++++++-----
 drivers/nfc/pn544_hci.c       |   37 +++--
 include/linux/nfc.h           |   14 +-
 include/net/nfc/hci.h         |   19 ++-
 include/net/nfc/nfc.h         |    2 +
 net/nfc/core.c                |   38 ++++-
 net/nfc/hci/command.c         |   26 ++--
 net/nfc/hci/core.c            |  104 ++++++++-----
 net/nfc/hci/hci.h             |   12 +-
 net/nfc/hci/shdlc.c           |   38 ++---
 net/nfc/llcp/llcp.c           |  342 +++++++++++++++++++++++++++--------------
 net/nfc/llcp/llcp.h           |    5 +
 net/nfc/llcp/sock.c           |   31 +++-
 net/nfc/nci/core.c            |    5 +-
 net/nfc/nci/ntf.c             |    5 +-
 net/nfc/netlink.c             |    9 ++
 18 files changed, 663 insertions(+), 288 deletions(-)

-- 
1.7.10


^ permalink raw reply	[flat|nested] 34+ messages in thread

end of thread, other threads:[~2012-07-06 20:00 UTC | newest]

Thread overview: 34+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-06 20:09 [PATCH 00/33] NFC updates for 3.6 Samuel Ortiz
2012-07-06 20:09 ` [PATCH 01/33] NFC: Prepare asynchronous error management for driver and shdlc Samuel Ortiz
2012-07-06 20:09 ` [PATCH 02/33] NFC: Removed addressed shdlc TODOs Samuel Ortiz
2012-07-06 20:09 ` [PATCH 03/33] NFC: Handle SHDLC RSET frames from an SHDLC connected chip Samuel Ortiz
2012-07-06 20:09 ` [PATCH 04/33] NFC: Remove an impossible HCI error case Samuel Ortiz
2012-07-06 20:09 ` [PATCH 05/33] NFC: Implement HCP reaggregation allocation " Samuel Ortiz
2012-07-06 20:09 ` [PATCH 06/33] NFC: Changed HCI cmd execution completion result to std linux errno Samuel Ortiz
2012-07-06 20:09 ` [PATCH 07/33] NFC: Driver failure API Samuel Ortiz
2012-07-06 20:09 ` [PATCH 08/33] NFC: Factorize HCI cmd completion Samuel Ortiz
2012-07-06 20:09 ` [PATCH 09/33] NFC: Implement HCI driver or internal error management Samuel Ortiz
2012-07-06 20:09 ` [PATCH 10/33] NFC: Core must test the device polling state inside the device lock Samuel Ortiz
2012-07-06 20:09 ` [PATCH 11/33] NFC: nfc_targets_found() should accept zero target found Samuel Ortiz
2012-07-06 20:09 ` [PATCH 12/33] NFC: nfc_driver_failure() implementation Samuel Ortiz
2012-07-06 20:09 ` [PATCH 13/33] NFC: Error management documentation Samuel Ortiz
2012-07-06 20:09 ` [PATCH 14/33] NFC: update PN544 HCI driver state when opened/closed Samuel Ortiz
2012-07-06 20:09 ` [PATCH 15/33] NFC: Allow HCI driver to pre-open pipes to some gates Samuel Ortiz
2012-07-06 20:09 ` [PATCH 16/33] NFC: Add modules alias for NFC sockets Samuel Ortiz
2012-07-06 20:09 ` [PATCH 17/33] NFC: Add netlink module alias for NFC Samuel Ortiz
2012-07-06 20:09 ` [PATCH 18/33] NFC: Update LLCP socket target index when getting a connection Samuel Ortiz
2012-07-06 20:09 ` [PATCH 19/33] NFC: Fix LLCP getname socket op Samuel Ortiz
2012-07-06 20:09 ` [PATCH 20/33] NFC: Build LLCP general bytes upon request Samuel Ortiz
2012-07-06 20:09 ` [PATCH 21/33] NFC: Close listening LLCP sockets when the device is gone Samuel Ortiz
2012-07-06 20:09 ` [PATCH 22/33] NFC: Release LLCP SAP when the owner is released Samuel Ortiz
2012-07-06 20:09 ` [PATCH 23/33] NFC: Forbid LLCP service name reusing Samuel Ortiz
2012-07-06 20:09 ` [PATCH 24/33] NFC: Forbid SSAP binding to a not well known LLCP service Samuel Ortiz
2012-07-06 20:09 ` [PATCH 25/33] NFC: LLCP late binding Samuel Ortiz
2012-07-06 20:09 ` [PATCH 26/33] NFC: Handle LLCP Disconnected Mode frames Samuel Ortiz
2012-07-06 20:09 ` [PATCH 27/33] NFC: Remove warning from nfc_llcp_local_put Samuel Ortiz
2012-07-06 20:09 ` [PATCH 28/33] NFC: Do not return EBUSY when stopping a poll that's already stopped Samuel Ortiz
2012-07-06 20:09 ` [PATCH 29/33] NFC: Dereference LLCP bind socket address after checking for it to be NULL Samuel Ortiz
2012-07-06 20:09 ` [PATCH 30/33] NFC: Add initial Sony RC-S360 support to pn533 Samuel Ortiz
2012-07-06 20:09 ` [PATCH 31/33] NFC: Use communicate thru only for PaSoRi when trying to read Felica tags Samuel Ortiz
2012-07-06 20:09 ` [PATCH 32/33] NFC: Add ISO 14443 type B protocol Samuel Ortiz
2012-07-06 20:09 ` [PATCH 33/33] NFC: Check for llcp_sock and its device from llcp_sock_getname Samuel Ortiz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).