From: Tomas Winkler <tomas.winkler@intel.com>
To: gregkh@linuxfoundation.org
Cc: arnd@arndb.de, linux-kernel@vger.kernel.org,
Tomas Winkler <tomas.winkler@intel.com>
Subject: [char-misc-next 00/11 V5] Add Client MEI bus and NFC device
Date: Wed, 27 Mar 2013 17:29:52 +0200 [thread overview]
Message-ID: <1364398203-11159-1-git-send-email-tomas.winkler@intel.com> (raw)
This is take 5 on the MEI bus + NFC device patches
This patch set adds implementation of MEI CLIENT BUS abstraction
over MEI device, this allows standard Linux device drivers
to access functionality exposed by MEI device clients that was previously
available only to the user space through /dev/mei
The first exercises is to export the NFC radio
More information can be found under
Documentation/misc-devices/mei/mei-client-bus.txt
v4 -> v5:
* Sanitize mei_cl_bus.h by removing the licensing terms.
* Removed uuid field from the device_id structure as it's redundant.
* Added the device_id structure to mod_devicetable.h and modified file2alias.c accordingly.
* Added a modalias sysfs attribute and a uevent routine, allowing for module autoloading on the MEI bus.
* Added a Documentation/ABI/testing/sysfs-bus-mei entry for documenting the modalias sysfs attribute.
v3 -> v4:
* The bus is named mei client bus
- Renames:
* mei_bus_driver to mei_cl_driver
* mei_bus_device to mei_cl_device
v2 -> v3:
- Renames:
* mei_device to mei_host. The mei_host pointers are still called *dev
as I didn't want the first patch to get too fat.
* mei_bus_driver to mei_driver
* mei_bus_client to mei_device
- mei_driver structure changes:
* name pointer addition
* MEI id table
* probe routine now takes the probed MEI id as an argument
- mei-bus.txt update according to the mei_driver changes and the structure
renaming.
- All exported symbols converted to EXPORT_SYMBOL_GPL.
- to_mei_* macros moved to bus.c
- drivers/misc/mei/bus.h deleted, all API definitions moved to mei_dev.h
- mei_device structure clenup: mei_host, mei_driver, and name fields removed.
- Fixed driver owner: mei_driver_register() is now a macro over
__mei_driver_register, using THIS_MODULE as the default owner.
Samuel Ortiz (11):
mei: bus: Initial MEI Client bus type implementation
mei: bus: Implement driver registration
mei: bus: Initial implementation for I/O routines
mei: bus: Add bus related structures to mei_cl
mei: bus: Call bus routines from the core code
mei: bus: Synchronous API for the data transmission
mei: bus: Implement bus driver data setter/getter
mei: nfc: Initial nfc implementation
mei: nfc: Connect also the regular ME client
mei: nfc: Add NFC device to the MEI bus
mei: nfc: Implement MEI bus IO ops
Documentation/ABI/testing/sysfs-bus-mei | 7 +
Documentation/misc-devices/mei/mei-client-bus.txt | 135 ++++++
drivers/misc/mei/Kconfig | 8 +
drivers/misc/mei/Makefile | 3 +
drivers/misc/mei/bus.c | 496 ++++++++++++++++++++++
drivers/misc/mei/client.c | 4 +
drivers/misc/mei/init.c | 3 +
drivers/misc/mei/interrupt.c | 2 +
drivers/misc/mei/main.c | 13 +
drivers/misc/mei/mei_dev.h | 99 ++++-
drivers/misc/mei/nfc.c | 458 ++++++++++++++++++++
drivers/misc/mei/nfc.h | 141 ++++++
drivers/misc/mei/pci-me.c | 1 -
include/linux/mei_cl_bus.h | 41 ++
include/linux/mod_devicetable.h | 9 +
scripts/mod/devicetable-offsets.c | 3 +
scripts/mod/file2alias.c | 12 +
17 files changed, 1433 insertions(+), 2 deletions(-)
create mode 100644 Documentation/ABI/testing/sysfs-bus-mei
create mode 100644 Documentation/misc-devices/mei/mei-client-bus.txt
create mode 100644 drivers/misc/mei/bus.c
create mode 100644 drivers/misc/mei/nfc.c
create mode 100644 drivers/misc/mei/nfc.h
create mode 100644 include/linux/mei_cl_bus.h
--
1.7.11.7
next reply other threads:[~2013-03-27 15:31 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-27 15:29 Tomas Winkler [this message]
2013-03-27 15:29 ` [char-misc-next 01/11 V5] mei: bus: Initial MEI Client bus type implementation Tomas Winkler
2013-03-27 15:29 ` [char-misc-next 02/11 V5] mei: bus: Implement driver registration Tomas Winkler
2013-03-27 15:29 ` [char-misc-next 03/11 V5] mei: bus: Initial implementation for I/O routines Tomas Winkler
2013-03-27 15:29 ` [char-misc-next 04/11 V5] mei: bus: Add bus related structures to mei_cl Tomas Winkler
2013-03-27 15:29 ` [char-misc-next 05/11 V5] mei: bus: Call bus routines from the core code Tomas Winkler
2013-03-27 15:29 ` [char-misc-next 06/11 V5] mei: bus: Synchronous API for the data transmission Tomas Winkler
2013-03-27 15:29 ` [char-misc-next 07/11 V5] mei: bus: Implement bus driver data setter/getter Tomas Winkler
2013-03-27 15:30 ` [char-misc-next 08/11 V5] mei: nfc: Initial nfc implementation Tomas Winkler
2013-03-29 15:48 ` Greg KH
2013-03-31 22:49 ` Samuel Ortiz
2013-03-31 23:04 ` Greg KH
2013-03-29 15:49 ` Greg KH
2013-03-27 15:30 ` [char-misc-next 09/11 V5] mei: nfc: Connect also the regular ME client Tomas Winkler
2013-03-27 15:30 ` [char-misc-next 10/11 V5] mei: nfc: Add NFC device to the MEI bus Tomas Winkler
2013-03-27 15:30 ` [char-misc-next 11/11 V5] mei: nfc: Implement MEI bus IO ops Tomas Winkler
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1364398203-11159-1-git-send-email-tomas.winkler@intel.com \
--to=tomas.winkler@intel.com \
--cc=arnd@arndb.de \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome