All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/18] NFC changes for 3.5
@ 2012-04-10 17:43 Samuel Ortiz
  2012-04-10 17:43 ` [PATCH 01/18 3.4] NFC: Fix the LLCP Tx fragmentation loop Samuel Ortiz
                   ` (17 more replies)
  0 siblings, 18 replies; 19+ messages in thread
From: Samuel Ortiz @ 2012-04-10 17:43 UTC (permalink / raw)
  To: John W. Linville
  Cc: Lauro Ramos Venancio, Aloisio Almeida Jr, Ilan Elias,
	Eric Lapuyade, linux-wireless, Samuel Ortiz

Hi John,

This is my current NFC patchset for the next merge window. This is what we
mainly have:

* An HCI and SHDLC implementation from Eric.
* A bunch of LLCP fixes.
* Some pn533 changes (workqueue conversion and Rx chaining support).
* A new netlink API for exposing lost targets events.

Please note that the first patch from this serie is a 3.4 fix.

You can also fetch those patches from here:

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

Eric Lapuyade (7):
  NFC: Export target lost function
  NFC: HCI support
  NFC: SHDLC implementation
  NFC: Add HCI documentation
  NFC: Fix next target_idx type and rename for clarity
  NFC: Changed target activated state logic
  NFC: Add Core support to generate tag lost event

Samuel Ortiz (11):
  NFC: Fix the LLCP Tx fragmentation loop
  NFC: Add a target lost netlink event
  NFC: The core part should generate the target index
  NFC: Dump LLCP frames
  NFC: No need to apply twice the modulo op to LLCP's recv_n
  NFC: Fix LLCP TLV building routine
  NFC: Call llcp_add_header properly when sending LLCP DM or DISC
  NFC: Convert pn533 from tasklet to workqueues
  NFC: pn533 Rx chaining support
  NFC: Add MIUX to the local LLCP general bytes
  NFC: Fix LLCP link timeout typo

 Documentation/nfc/nfc-hci.txt |  155 +++++++
 drivers/nfc/pn533.c           |  228 ++++++++---
 include/linux/nfc.h           |    1 +
 include/net/nfc/hci.h         |  198 +++++++++
 include/net/nfc/nfc.h         |   12 +-
 include/net/nfc/shdlc.h       |  104 +++++
 net/nfc/Kconfig               |    1 +
 net/nfc/Makefile              |    1 +
 net/nfc/core.c                |  140 ++++++-
 net/nfc/hci/Kconfig           |   16 +
 net/nfc/hci/Makefile          |    8 +
 net/nfc/hci/command.c         |  354 +++++++++++++++
 net/nfc/hci/core.c            |  830 ++++++++++++++++++++++++++++++++++++
 net/nfc/hci/hci.h             |  139 ++++++
 net/nfc/hci/hcp.c             |  156 +++++++
 net/nfc/hci/shdlc.c           |  945 +++++++++++++++++++++++++++++++++++++++++
 net/nfc/llcp/commands.c       |   12 +-
 net/nfc/llcp/llcp.c           |   21 +-
 net/nfc/nci/core.c            |    2 +-
 net/nfc/nci/ntf.c             |   11 +-
 net/nfc/netlink.c             |   30 ++
 net/nfc/nfc.h                 |    1 +
 net/nfc/rawsock.c             |    6 +
 23 files changed, 3299 insertions(+), 72 deletions(-)
 create mode 100644 Documentation/nfc/nfc-hci.txt
 create mode 100644 include/net/nfc/hci.h
 create mode 100644 include/net/nfc/shdlc.h
 create mode 100644 net/nfc/hci/Kconfig
 create mode 100644 net/nfc/hci/Makefile
 create mode 100644 net/nfc/hci/command.c
 create mode 100644 net/nfc/hci/core.c
 create mode 100644 net/nfc/hci/hci.h
 create mode 100644 net/nfc/hci/hcp.c
 create mode 100644 net/nfc/hci/shdlc.c

-- 
1.7.9.1


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

end of thread, other threads:[~2012-04-10 17:36 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-10 17:43 [PATCH 00/18] NFC changes for 3.5 Samuel Ortiz
2012-04-10 17:43 ` [PATCH 01/18 3.4] NFC: Fix the LLCP Tx fragmentation loop Samuel Ortiz
2012-04-10 17:43 ` [PATCH 02/18] NFC: Add a target lost netlink event Samuel Ortiz
2012-04-10 17:43 ` [PATCH 03/18] NFC: Export target lost function Samuel Ortiz
2012-04-10 17:43 ` [PATCH 04/18] NFC: HCI support Samuel Ortiz
2012-04-10 17:43 ` [PATCH 05/18] NFC: SHDLC implementation Samuel Ortiz
2012-04-10 17:43 ` [PATCH 06/18] NFC: Add HCI documentation Samuel Ortiz
2012-04-10 17:43 ` [PATCH 07/18] NFC: The core part should generate the target index Samuel Ortiz
2012-04-10 17:43 ` [PATCH 08/18] NFC: Fix next target_idx type and rename for clarity Samuel Ortiz
2012-04-10 17:43 ` [PATCH 09/18] NFC: Changed target activated state logic Samuel Ortiz
2012-04-10 17:43 ` [PATCH 10/18] NFC: Add Core support to generate tag lost event Samuel Ortiz
2012-04-10 17:43 ` [PATCH 11/18] NFC: Dump LLCP frames Samuel Ortiz
2012-04-10 17:43 ` [PATCH 12/18] NFC: No need to apply twice the modulo op to LLCP's recv_n Samuel Ortiz
2012-04-10 17:43 ` [PATCH 13/18] NFC: Fix LLCP TLV building routine Samuel Ortiz
2012-04-10 17:43 ` [PATCH 14/18] NFC: Call llcp_add_header properly when sending LLCP DM or DISC Samuel Ortiz
2012-04-10 17:43 ` [PATCH 15/18] NFC: Convert pn533 from tasklet to workqueues Samuel Ortiz
2012-04-10 17:43 ` [PATCH 16/18] NFC: pn533 Rx chaining support Samuel Ortiz
2012-04-10 17:43 ` [PATCH 17/18] NFC: Add MIUX to the local LLCP general bytes Samuel Ortiz
2012-04-10 17:43 ` [PATCH 18/18] NFC: Fix LLCP link timeout typo Samuel Ortiz

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.