Re: [RFC 0/2] Add driver for Xaptum ENF Access card (XAP-EA-00x)

2018-01-05 Thread David R. Bild
On Fri, Jan 5, 2018 at 8:41 AM, Greg Kroah-Hartman
 wrote:
> I've been a "bit" busy over the past few months, and haven't had the
> chance to review new drivers like this, for obvious reasons.
>
> Don't worry, the patches aren't lost, they are still in my queue.

That's what I figured --- just making sure. Thanks.

> Wait, I don't review RFC patch series, as obviously you don't think it's
> ready to be merged :)
>
> Care to redo this without that marking, if you really think it is ready?

Gotcha - I'll resend as a patch.

Thanks,
David
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [RFC 0/2] Add driver for Xaptum ENF Access card (XAP-EA-00x)

2018-01-05 Thread Greg Kroah-Hartman
On Fri, Dec 22, 2017 at 11:16:18AM -0600, David R. Bild wrote:
> This series add a driver for the Xaptum ENF Access card line
> (XAP-EA-00x), a series of mini PCI-e cards containing a TPM 2.0 chip
> used to authenticate IoT devices and gateways.
> 
> The hardware is essentially a USB-SPI bridge and an SPI TPM 2.0
> chip. The first patch registers the bridge as an SPI controller and
> the TPM as an SPI device. The second patch performs the TPM platform
> initialization that would normally be done by the BIOS.
> 
> David R. Bild (2):
>   usb: misc: xapea00x: add driver for Xaptum ENF Access Card
>   usb: misc: xapea00x: perform platform initialization of TPM

Wait, I don't review RFC patch series, as obviously you don't think it's
ready to be merged :)

Care to redo this without that marking, if you really think it is ready?

thanks,

greg k-h
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [RFC 0/2] Add driver for Xaptum ENF Access card (XAP-EA-00x)

2018-01-05 Thread Greg Kroah-Hartman
On Fri, Jan 05, 2018 at 08:29:58AM -0600, David R. Bild wrote:
> On Fri, Dec 22, 2017 at 11:16 AM, David R. Bild  wrote:
> >
> > This series add a driver for the Xaptum ENF Access card line
> > (XAP-EA-00x), a series of mini PCI-e cards containing a TPM 2.0 chip
> > used to authenticate IoT devices and gateways.
> 
> Greg,
> 
> Do I need to do anything else to get this new driver queued up for
> review?  Not trying to rush things --- just making sure I haven't
> missed a step or submitted to the wrong place.

I've been a "bit" busy over the past few months, and haven't had the
chance to review new drivers like this, for obvious reasons.  Hopefully
will catch up with my pending queue in a week or so, if this nonsense
dies down...

Don't worry, the patches aren't lost, they are still in my queue.  And
of course, if others can review it, that would be great and make it
easier for me as well.

thanks,

greg k-h
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [RFC 0/2] Add driver for Xaptum ENF Access card (XAP-EA-00x)

2018-01-05 Thread David R. Bild
On Fri, Dec 22, 2017 at 11:16 AM, David R. Bild  wrote:
>
> This series add a driver for the Xaptum ENF Access card line
> (XAP-EA-00x), a series of mini PCI-e cards containing a TPM 2.0 chip
> used to authenticate IoT devices and gateways.

Greg,

Do I need to do anything else to get this new driver queued up for
review?  Not trying to rush things --- just making sure I haven't
missed a step or submitted to the wrong place.

Thanks,
David
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[RFC 0/2] Add driver for Xaptum ENF Access card (XAP-EA-00x)

2017-12-22 Thread David R. Bild
This series add a driver for the Xaptum ENF Access card line
(XAP-EA-00x), a series of mini PCI-e cards containing a TPM 2.0 chip
used to authenticate IoT devices and gateways.

The hardware is essentially a USB-SPI bridge and an SPI TPM 2.0
chip. The first patch registers the bridge as an SPI controller and
the TPM as an SPI device. The second patch performs the TPM platform
initialization that would normally be done by the BIOS.

David R. Bild (2):
  usb: misc: xapea00x: add driver for Xaptum ENF Access Card
  usb: misc: xapea00x: perform platform initialization of TPM

 MAINTAINERS |   6 +
 drivers/usb/misc/Kconfig|   2 +
 drivers/usb/misc/Makefile   |   1 +
 drivers/usb/misc/xapea00x/Kconfig   |  16 +
 drivers/usb/misc/xapea00x/Makefile  |   8 +
 drivers/usb/misc/xapea00x/xapea00x-bridge.c | 399 
 drivers/usb/misc/xapea00x/xapea00x-core.c   | 454 +
 drivers/usb/misc/xapea00x/xapea00x-spi.c| 209 ++
 drivers/usb/misc/xapea00x/xapea00x-tpm.c| 953 
 drivers/usb/misc/xapea00x/xapea00x.h|  75 +++
 10 files changed, 2123 insertions(+)
 create mode 100644 drivers/usb/misc/xapea00x/Kconfig
 create mode 100644 drivers/usb/misc/xapea00x/Makefile
 create mode 100644 drivers/usb/misc/xapea00x/xapea00x-bridge.c
 create mode 100644 drivers/usb/misc/xapea00x/xapea00x-core.c
 create mode 100644 drivers/usb/misc/xapea00x/xapea00x-spi.c
 create mode 100644 drivers/usb/misc/xapea00x/xapea00x-tpm.c
 create mode 100644 drivers/usb/misc/xapea00x/xapea00x.h

-- 
2.15.1

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html