* [GIT] [3.12] NFC updates
@ 2013-08-14 23:04 Samuel Ortiz
2013-08-15 3:07 ` Joe Perches
2013-08-15 19:56 ` John W. Linville
0 siblings, 2 replies; 4+ messages in thread
From: Samuel Ortiz @ 2013-08-14 23:04 UTC (permalink / raw)
To: John W. Linville; +Cc: Linux NFC, Linux Wireless
Hi John,
This is the first NFC pull request for the 3.12 release.
With this one we have:
- A few pn533 improvements and minor fixes. Testing our pn533 driver
against Google's NCI stack triggered a few issues that we fixed now.
We also added Tx fragmentation support to this driver.
- More NFC secure element handling. We added a GET_SE netlink command
for getting all the discovered secure elements, and we defined 2
additional secure element netlink event (transaction and connectivity).
We also fixed a couple of typos and copy-paste bugs from the secure
element handling code.
- Firmware download support for the pn544 driver. This chipset can enter a
special mode where it's waiting for firmware blobs to replace the
already flashed one. We now support that mode.
The following changes since commit d1e2586f484dfc36eee2b2d3a6c6c77be67ca492:
mwifiex: fix build error when CONFIG_PM is not set (2013-08-12 14:36:55 -0400)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/sameo/nfc-next.git tags/nfc-next-3.12-1
for you to fetch changes up to 39525ee1dc78ca1f5f2fb1f764f7a141005fe440:
NFC: Update secure element state (2013-08-14 01:13:40 +0200)
----------------------------------------------------------------
Arron Wang (2):
NFC: Fix secure element state check
NFC: Update secure element state
Dan Carpenter (1):
NFC: hci: Fix enable/disable confusion
Eric Lapuyade (5):
NFC: Move nfc_fw_download_done() definition from private to public
NFC: pn544: i2c: Add firmware download mode power-on support
NFC: netlink: Add result of firmware operation to completion event
NFC: pn544: Add firmware operations hci ops
NFC: pn544: i2c: Add firmware download implementation for pn544
Olivier Guiter (3):
NFC: pn533: Add extended information frame decoding support
NFC: pn533: Split large Tx frames in chunks
NFC: pn533: Store the correct frame size (normal vs ext)
Samuel Ortiz (12):
MAINTAINERS: Change the NFC subsystem status to Supported
NFC: Document secure element addition/removal netlink events
NFC: Define secure element connectivity and transaction events
NFC: pn533: Fix hardware busy loop when establishing the LLCP link
NFC: pn533: Fix the pn533 polling loop
NFC: pn533: Request System code from SENSF_REQ
NFC: pn533: Unconditionaly select the highest p2p bit rate
NFC: pn533: Enable AUTO RFCA
NFC: Fix SE discovery failure warning condition
NFC: Add a GET_SE netlink API
NFC: pn533: Add delay between each poll frame
NFC: pn533: Add some polling entropy
Thierry Escande (1):
NFC: Fix missing static declarations
MAINTAINERS | 2 +-
drivers/nfc/nfcsim.c | 6 +-
drivers/nfc/pn533.c | 389 +++++++++++++++++++++++++++++++++++----------
drivers/nfc/pn544/i2c.c | 360 +++++++++++++++++++++++++++++++++++++++--
drivers/nfc/pn544/mei.c | 2 +-
drivers/nfc/pn544/pn544.c | 20 ++-
drivers/nfc/pn544/pn544.h | 7 +-
include/net/nfc/nfc.h | 3 +
include/uapi/linux/nfc.h | 20 +++
net/nfc/core.c | 22 ++-
net/nfc/hci/core.c | 2 +-
net/nfc/netlink.c | 95 ++++++++++-
net/nfc/nfc.h | 5 +-
13 files changed, 810 insertions(+), 123 deletions(-)
--
Intel Open Source Technology Centre
http://oss.intel.com/
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [GIT] [3.12] NFC updates
2013-08-14 23:04 [GIT] [3.12] NFC updates Samuel Ortiz
@ 2013-08-15 3:07 ` Joe Perches
2013-08-16 15:20 ` Samuel Ortiz
2013-08-15 19:56 ` John W. Linville
1 sibling, 1 reply; 4+ messages in thread
From: Joe Perches @ 2013-08-15 3:07 UTC (permalink / raw)
To: Samuel Ortiz; +Cc: John W. Linville, Linux NFC, Linux Wireless
On Thu, 2013-08-15 at 01:04 +0200, Samuel Ortiz wrote:
> Hi John,
>
> This is the first NFC pull request for the 3.12 release.
Any reason why these reformatting patches were
not applied?
https://lkml.org/lkml/2013/4/5/417
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [GIT] [3.12] NFC updates
2013-08-15 3:07 ` Joe Perches
@ 2013-08-16 15:20 ` Samuel Ortiz
0 siblings, 0 replies; 4+ messages in thread
From: Samuel Ortiz @ 2013-08-16 15:20 UTC (permalink / raw)
To: Joe Perches; +Cc: John W. Linville, Linux NFC, Linux Wireless
Hi Joe,
On Wed, Aug 14, 2013 at 08:07:49PM -0700, Joe Perches wrote:
> On Thu, 2013-08-15 at 01:04 +0200, Samuel Ortiz wrote:
> > Hi John,
> >
> > This is the first NFC pull request for the 3.12 release.
>
> Any reason why these reformatting patches were
> not applied?
For some reasons they got lost in my inbox, sorry about that.
I'll review and queue them as soon as I get back to my linux-nfc backlog
(I just got back from vacation today).
Cheers,
Samuel.
--
Intel Open Source Technology Centre
http://oss.intel.com/
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [GIT] [3.12] NFC updates
2013-08-14 23:04 [GIT] [3.12] NFC updates Samuel Ortiz
2013-08-15 3:07 ` Joe Perches
@ 2013-08-15 19:56 ` John W. Linville
1 sibling, 0 replies; 4+ messages in thread
From: John W. Linville @ 2013-08-15 19:56 UTC (permalink / raw)
To: Samuel Ortiz; +Cc: Linux NFC, Linux Wireless
On Thu, Aug 15, 2013 at 01:04:48AM +0200, Samuel Ortiz wrote:
> Hi John,
>
> This is the first NFC pull request for the 3.12 release.
>
> With this one we have:
>
> - A few pn533 improvements and minor fixes. Testing our pn533 driver
> against Google's NCI stack triggered a few issues that we fixed now.
> We also added Tx fragmentation support to this driver.
>
> - More NFC secure element handling. We added a GET_SE netlink command
> for getting all the discovered secure elements, and we defined 2
> additional secure element netlink event (transaction and connectivity).
> We also fixed a couple of typos and copy-paste bugs from the secure
> element handling code.
>
> - Firmware download support for the pn544 driver. This chipset can enter a
> special mode where it's waiting for firmware blobs to replace the
> already flashed one. We now support that mode.
>
> The following changes since commit d1e2586f484dfc36eee2b2d3a6c6c77be67ca492:
>
> mwifiex: fix build error when CONFIG_PM is not set (2013-08-12 14:36:55 -0400)
>
> are available in the git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/sameo/nfc-next.git tags/nfc-next-3.12-1
>
> for you to fetch changes up to 39525ee1dc78ca1f5f2fb1f764f7a141005fe440:
>
> NFC: Update secure element state (2013-08-14 01:13:40 +0200)
Pulling now...
--
John W. Linville Someday the world will need a hero, and you
linville@tuxdriver.com might be all we have. Be ready.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-08-16 15:20 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-14 23:04 [GIT] [3.12] NFC updates Samuel Ortiz
2013-08-15 3:07 ` Joe Perches
2013-08-16 15:20 ` Samuel Ortiz
2013-08-15 19:56 ` John W. Linville
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).