public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/12] ThinkPad embedded controller and hdaps drivers (version 2)
@ 2006-08-10  9:48 Shem Multinymous
  2006-08-10  9:48 ` [PATCH 01/12] thinkpad_ec: New driver for ThinkPad embedded controller access Shem Multinymous
                   ` (12 more replies)
  0 siblings, 13 replies; 33+ messages in thread
From: Shem Multinymous @ 2006-08-10  9:48 UTC (permalink / raw)
  To: linux-kernel
  Cc: Robert Love, Pavel Machek, Jean Delvare, Greg Kroah-Hartman,
	Andrew Morton, hdaps-devel

This resubmission addresses all the comments I've received on LKML,
except where said otherwise in reply. Other changes are very minor.

This patch series does three related things:

- Introduces a new driver, thinkpad_ec, for the ThinkPad embedded 
  controller (additional non-ACPI interface).
- Changes the existing hdaps driver to use thinkpad_ec instead of
  direct (and incorrect) port access.
- Several fixes and improvements to the hdaps driver.

Applies to git head.

Most of the patches in this series depend on previous ones.
Any point in this series will compile and was briefly tested (this
required introducing some code that gets overwritten by later patches).
The *combination* of all these patches was extensively tested as part
of the out-of-tree tp_smapi package [1], and verified to work on dozens
of ThinkPad models (thousands of sf.net downloads and no unresolved
bugs). Note that the tp_smapi package includes another driver, to
be submitted later, which also depends the thinkpad_ec driver
introduced here.

For some context and the necessity for a separate thinkpad_ec module,
see LKML thread "tp_smapi conflict with IDE, hdaps" on Dec. 2005.

I would like to thank the many testers and contributors who helped
in the development, and in particular Henrique de Moraes Holschuh,
ThinkWiki.org users Whoopie and Spiney, and Pavel Machek.

[1] http://thinkwiki.org/wiki/tp_smapi


Summary:

 drivers/firmware/Kconfig       |    3 
 drivers/firmware/Makefile      |    1 
 drivers/firmware/thinkpad_ec.c |  465 ++++++++++++++++++
 drivers/hwmon/Kconfig          |    1 
 drivers/hwmon/hdaps.c          |  784 ++++++++++++++++++-------------
 include/linux/thinkpad_ec.h    |   47 +
 6 files changed, 990 insertions(+), 311 deletions(-)

^ permalink raw reply	[flat|nested] 33+ messages in thread
* [PATCH 00/12] ThinkPad embedded controller and hdaps drivers
@ 2006-08-06  7:26 Shem Multinymous
  2006-08-06  7:26 ` [PATCH 03/12] hdaps: Unify and cache hdaps readouts Shem Multinymous
  0 siblings, 1 reply; 33+ messages in thread
From: Shem Multinymous @ 2006-08-06  7:26 UTC (permalink / raw)
  To: Robert Love
  Cc: Jean Delvare, Greg Kroah-Hartman, Alan Cox, linux-kernel,
	hdaps-devel

This patch series does three related things:

- Introduces a new driver, thinkpad_ec, for the ThinkPad embedded 
  controller (additional non-ACPI interface).
- Changes the existing hdaps driver to use thinkpad_ec instead of
  direct (and incorrect) port access.
- Several fixes and improvements to the hdaps driver.

Applies to git head.

Most of the patches in this series depend on previous ones.
Any point in this series will compile and was briefly tested (this
required introducing some code that gets overwritten by later patches).
The *combination* of all these patches was extensively tested as part
of the out-of-kernel tp_smapi package [1], and verified to work on dozens
of ThinkPad models (thousands of sf.net downloads and no unresolved
bugs). Note that the tp_smapi package includes another driver, to
be submitted later, which also depends the thinkpad_ec driver 
introduced here.

For some context and the necessity for a separate thinkpad_ec module,
see LKML thread "tp_smapi conflict with IDE, hdaps" on Dec. 2005.

I would like to thank the many testers and contributors who helped
in the development, and in particular Henrique de Moraes Holschuh
and ThinkWiki.org users Whoopie and Spiney.

[1] http://thinkwiki.org/wiki/tp_smapi
    http://tpctl.sourceforge.net/rel/tp_smapi-0.27.tgz

Summary:

[PATCH 01/12] thinkpad_ec: New driver for ThinkPad embedded controller access
[PATCH 02/12] hdaps: Use thinkpad_ec instead of direct port access
[PATCH 03/12] hdaps: Unify and cache hdaps readouts
[PATCH 04/12] hdaps: Correct readout and remove nonsensical attributes
[PATCH 05/12] hdaps: Remember keyboard and mouse activity
[PATCH 06/12] hdaps: Limit hardware query rate
[PATCH 07/12] hdaps: delay calibration to first hardware query
[PATCH 08/12] hdaps: Add explicit hardware configuration functions
[PATCH 09/12] hdaps: Add new sysfs attributes
[PATCH 10/12] hdaps: Power off accelerometer on suspend and unload
[PATCH 11/12] hdaps: Stop polling timer when suspended
[PATCH 12/12] hdaps: Simplify whitelist

 drivers/hwmon/hdaps.c          |  758 ++++++++++++++++++++++++-----------------
 drivers/firmware/Kconfig       |    3 
 drivers/firmware/Makefile      |    1 
 drivers/firmware/thinkpad_ec.c |  444 ++++++++++++++++++++++++
 drivers/hwmon/Kconfig          |    1 
 include/linux/thinkpad_ec.h    |   47 ++
 6 files changed, 940 insertions(+), 314 deletions(-)

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

end of thread, other threads:[~2006-08-11  1:38 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-08-10  9:48 [PATCH 00/12] ThinkPad embedded controller and hdaps drivers (version 2) Shem Multinymous
2006-08-10  9:48 ` [PATCH 01/12] thinkpad_ec: New driver for ThinkPad embedded controller access Shem Multinymous
2006-08-10  9:48 ` [PATCH 02/12] hdaps: Use thinkpad_ec instead of direct port access Shem Multinymous
2006-08-10  9:48 ` [PATCH 03/12] hdaps: Unify and cache hdaps readouts Shem Multinymous
2006-08-10  9:48 ` [PATCH 04/12] hdaps: Correct readout and remove nonsensical attributes Shem Multinymous
2006-08-10  9:48 ` [PATCH 05/12] hdaps: Remember keyboard and mouse activity Shem Multinymous
2006-08-10  9:48 ` [PATCH 06/12] hdaps: Limit hardware query rate Shem Multinymous
2006-08-10 21:26   ` Pavel Machek
2006-08-10 21:46     ` Evgeni Golov
2006-08-10  9:48 ` [PATCH 07/12] hdaps: delay calibration to first hardware query Shem Multinymous
2006-08-10  9:48 ` [PATCH 08/12] hdaps: Add explicit hardware configuration functions Shem Multinymous
2006-08-10  9:48 ` [PATCH 09/12] hdaps: Add new sysfs attributes Shem Multinymous
2006-08-10  9:48 ` [PATCH 10/12] hdaps: Power off accelerometer on suspend and unload Shem Multinymous
2006-08-10  9:48 ` [PATCH 11/12] hdaps: Stop polling timer when suspended Shem Multinymous
2006-08-10  9:48 ` [PATCH 12/12] hdaps: Simplify whitelist Shem Multinymous
2006-08-10 13:46 ` [PATCH 00/12] ThinkPad embedded controller and hdaps drivers (version 2) Robert Love
2006-08-10 19:53   ` Robert Love
2006-08-10 20:18   ` Andrew Morton
2006-08-10 20:37     ` Greg KH
2006-08-10 21:05       ` Jean Delvare
2006-08-10 23:11         ` Jesper Juhl
2006-08-11  1:38           ` Shem Multinymous
2006-08-11  0:01         ` Shem Multinymous
2006-08-10 22:52     ` Pavel Machek
2006-08-10 23:26     ` Shem Multinymous
  -- strict thread matches above, loose matches on Subject: below --
2006-08-06  7:26 [PATCH 00/12] ThinkPad embedded controller and hdaps drivers Shem Multinymous
2006-08-06  7:26 ` [PATCH 03/12] hdaps: Unify and cache hdaps readouts Shem Multinymous
2006-08-07 14:02   ` Pavel Machek
2006-08-07 16:14     ` Shem Multinymous
2006-08-07 23:24       ` Pavel Machek
2006-08-08  9:16         ` Shem Multinymous
2006-08-08  9:21           ` Pavel Machek
2006-08-08 10:06             ` Shem Multinymous
2006-08-08 10:09               ` Pavel Machek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox