--- v6
+++ v1
@@ -1,3 +1,6 @@
+(get_maintainer.pl has produced an enormous list - I hope you are all
+interested.)
+
The ChromeOS Embedded Controller (EC) is an Open Source EC implementation
used on ARM and Intel Chromebooks. Current implementations use a Cortex-M3
connected on a bus (such as I2C, SPI, LPC) to the AP. A separate interrupt
@@ -22,83 +25,27 @@
we must wait for the above-mentioned patches to land to avoid errors from
dtc. This can be added with a follow-on patch when that work is complete.
-Changes in v6:
-- Allow cros_ec to be a module
-- Remove 'struct i2c_msg' definition
-- Use %ph instead of for loop to output packet trace
-- Fix incorrect indentation in cros_ec_keyb_process()
-- Remove unnecessary assignment to NULL in probe function
-Changes in v5:
-- Remove cros_ec allocation functions
-- Remove name access functions in cros_ec, using strings instead
-- Fix Kconfig help message for MFD_CROS_EC_I2C
-- Remove I2C retry logic
-- Switch cros_ec_i2c driver to use devm
-- Update cros_ec_i2c to work with new cros_ec interface
-- Switch cros_ec_spi driver to use devm
-- Update cros_ec_spi to work with new cros_ec interface
-- Fix {} style nit in cros_ec_keyb_has_ghosting
-- Correct key lookup logic which was broken in previous version
-- Switch cros_ec_keyb driver to use devm
-
-Changes in v4:
-- Fix up trvial logging comments
-- Remove messages reporting out of memory
-- Add compatible string for cros-ec-keyb
-- Remove wake notifier and let drivers use their own handlers instead
-- Add 'depends on MFD_CROS_EC' to Kconfig
-- Remove use of wake_notifier
-- Remove manual code to locate device tree node
-- Add resume handler to clear keyboard scan buffer if required
-
-Changes in v3:
-- Add stub for matrix_keypad_parse_of_params() when no CONFIG_OF
-- Put back full DT range checking in tca8418 driver
-- Remove 'select MFD_CROS_EC' from Kconfig as it isn't necessary
-- Remove old_state by using input layer's idev->key
-- Move inner loop of cros_ec_keyb_has_ghosting() into its own function and simplify
-- Add check for not finding the device tree node
-- Remove comment about leaking matrix_keypad_build_keymap()
-- Use platform_get_drvdata() where possible
-- Remove call to input_free_device() after input_unregister_device()
-
-Changes in v2:
-- Remove use of __devinit/__devexit
-- Remove use of __devinit/__devexit
-- Remove use of __devinit/__devexit
-- Add new patch to decode matrix-keypad DT binding
-- Remove use of __devinit/__devexit
-- Use function to read matrix-keypad parameters from DT
-- Remove key autorepeat parameters from DT binding and driver
-- Use unsigned int for rows/cols
-
-Simon Glass (6):
+Simon Glass (5):
mfd: Add ChromeOS EC messages header
mfd: Add ChromeOS EC implementation
mfd: Add ChromeOS EC I2C driver
mfd: Add ChromeOS EC SPI driver
- Input: matrix-keymap: Add function to read the new DT binding
Input: Add ChromeOS EC keyboard driver
- .../devicetree/bindings/input/cros-ec-keyb.txt | 72 +
+ .../devicetree/bindings/input/cros-ec-keyb.txt | 77 ++
Documentation/devicetree/bindings/mfd/cros-ec.txt | 56 +
- drivers/input/keyboard/Kconfig | 12 +
+ drivers/input/keyboard/Kconfig | 10 +
drivers/input/keyboard/Makefile | 1 +
- drivers/input/keyboard/cros_ec_keyb.c | 334 +++++
- drivers/input/keyboard/lpc32xx-keys.c | 11 +-
- drivers/input/keyboard/omap4-keypad.c | 16 +-
- drivers/input/keyboard/tca8418_keypad.c | 7 +-
- drivers/input/matrix-keymap.c | 19 +
+ drivers/input/keyboard/cros_ec_keyb.c | 413 ++++++
drivers/mfd/Kconfig | 28 +
drivers/mfd/Makefile | 3 +
- drivers/mfd/cros_ec.c | 189 +++
- drivers/mfd/cros_ec_i2c.c | 206 +++
- drivers/mfd/cros_ec_spi.c | 375 ++++++
- include/linux/input/matrix_keypad.h | 19 +
- include/linux/mfd/cros_ec.h | 170 +++
+ drivers/mfd/cros_ec.c | 219 ++++
+ drivers/mfd/cros_ec_i2c.c | 262 ++++
+ drivers/mfd/cros_ec_spi.c | 412 ++++++
+ include/linux/mfd/cros_ec.h | 190 +++
include/linux/mfd/cros_ec_commands.h | 1369 ++++++++++++++++++++
- 17 files changed, 2869 insertions(+), 18 deletions(-)
+ 12 files changed, 3040 insertions(+), 0 deletions(-)
create mode 100644 Documentation/devicetree/bindings/input/cros-ec-keyb.txt
create mode 100644 Documentation/devicetree/bindings/mfd/cros-ec.txt
create mode 100644 drivers/input/keyboard/cros_ec_keyb.c
@@ -109,5 +56,4 @@
create mode 100644 include/linux/mfd/cros_ec_commands.h
--
-1.8.1.3
-
+1.7.7.3