All of lore.kernel.org
 help / color / mirror / Atom feed
* [lm-sensors] [PATCH v5 0/5] Support for the TS-5500 platform
@ 2012-02-01 21:05 ` Vivien Didelot
  0 siblings, 0 replies; 40+ messages in thread
From: Vivien Didelot @ 2012-02-01 21:05 UTC (permalink / raw)
  To: x86
  Cc: Vivien Didelot, Ingo Molnar, Thomas Gleixner, H. Peter Anvin,
	linux-kernel, lm-sensors, Guenter Roeck, Jean Delvare

This patchset brings the support for the TS-5500 platform.

The first patch adds the base support for the board in
/arch/x86/platform/ts5500, and a documentation file in
Documentation/ABI/testing/sysfs-platform-ts5500.

The second patch adds support for GPIO.

The third patch adds support for the on-board LED.

The fourth patch adds support to hwmon for the Maxim MAX197 A/D converter,
which is embedded on the TS-5500 platform, as suggested by Guenter Roeck.

The fifth patch brings support for the A/D converter. 


Jerome Oufella (1):
  x86/platform: (TS-5500) add GPIO support

Jonas Fonseca (1):
  x86/platform: (TS-5500) add LED support

Vivien Didelot (3):
  x86/platform: (TS-5500) add platform base support
  hwmon: add MAX197 support
  x86/platform: (TS-5500) add ADC support

 Documentation/ABI/testing/sysfs-platform-ts5500 |   46 +++
 Documentation/hwmon/max197                      |   54 +++
 MAINTAINERS                                     |    5 +
 arch/x86/Kconfig                                |    2 +
 arch/x86/platform/Makefile                      |    1 +
 arch/x86/platform/ts5500/Kconfig                |   29 ++
 arch/x86/platform/ts5500/Makefile               |    4 +
 arch/x86/platform/ts5500/ts5500.c               |  299 ++++++++++++++
 arch/x86/platform/ts5500/ts5500.h               |   35 ++
 arch/x86/platform/ts5500/ts5500_adc.c           |  104 +++++
 arch/x86/platform/ts5500/ts5500_gpio.c          |  478 +++++++++++++++++++++++
 arch/x86/platform/ts5500/ts5500_gpio.h          |   60 +++
 arch/x86/platform/ts5500/ts5500_led.c           |  179 +++++++++
 drivers/hwmon/Kconfig                           |    9 +
 drivers/hwmon/Makefile                          |    1 +
 drivers/hwmon/max197.c                          |  403 +++++++++++++++++++
 include/linux/max197.h                          |   22 +
 17 files changed, 1731 insertions(+), 0 deletions(-)
 create mode 100644 Documentation/ABI/testing/sysfs-platform-ts5500
 create mode 100644 Documentation/hwmon/max197
 create mode 100644 arch/x86/platform/ts5500/Kconfig
 create mode 100644 arch/x86/platform/ts5500/Makefile
 create mode 100644 arch/x86/platform/ts5500/ts5500.c
 create mode 100644 arch/x86/platform/ts5500/ts5500.h
 create mode 100644 arch/x86/platform/ts5500/ts5500_adc.c
 create mode 100644 arch/x86/platform/ts5500/ts5500_gpio.c
 create mode 100644 arch/x86/platform/ts5500/ts5500_gpio.h
 create mode 100644 arch/x86/platform/ts5500/ts5500_led.c
 create mode 100644 drivers/hwmon/max197.c
 create mode 100644 include/linux/max197.h

-- 
1.7.6.5


_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors

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

end of thread, other threads:[~2012-02-20 19:56 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-01 21:05 [lm-sensors] [PATCH v5 0/5] Support for the TS-5500 platform Vivien Didelot
2012-02-01 21:05 ` Vivien Didelot
2012-02-01 21:05 ` [lm-sensors] [PATCH v5 1/5] x86/platform: (TS-5500) add platform base support Vivien Didelot
2012-02-01 21:05   ` Vivien Didelot
2012-02-01 21:05 ` [lm-sensors] [PATCH v5 2/5] x86/platform: (TS-5500) add GPIO support Vivien Didelot
2012-02-01 21:05   ` Vivien Didelot
2012-02-01 21:30   ` [lm-sensors] " Alan Cox
2012-02-01 21:30     ` Alan Cox
2012-02-02 19:33     ` [lm-sensors] " Guenter Roeck
2012-02-02 19:33       ` Guenter Roeck
2012-02-06 15:37       ` [lm-sensors] " Mark Brown
2012-02-06 15:37         ` Mark Brown
2012-02-06 20:23         ` [lm-sensors] " Vivien Didelot
2012-02-06 20:23           ` Vivien Didelot
2012-02-07 11:13           ` [lm-sensors] " Mark Brown
2012-02-07 11:13             ` Mark Brown
2012-02-06 15:16   ` [lm-sensors] " Mark Brown
2012-02-06 15:16     ` Mark Brown
2012-02-01 21:05 ` [lm-sensors] [PATCH v5 3/5] x86/platform: (TS-5500) add LED support Vivien Didelot
2012-02-01 21:05   ` Vivien Didelot
2012-02-01 21:05 ` [lm-sensors] [PATCH v5 4/5] hwmon: add MAX197 support Vivien Didelot
2012-02-01 21:05   ` Vivien Didelot
2012-02-01 21:35   ` [lm-sensors] " Guenter Roeck
2012-02-01 21:35     ` Guenter Roeck
2012-02-06 20:15     ` [lm-sensors] " Vivien Didelot
2012-02-06 20:15       ` Vivien Didelot
2012-02-06 20:46       ` [lm-sensors] " Guenter Roeck
2012-02-06 20:46         ` Guenter Roeck
2012-02-10 16:07         ` [lm-sensors] " Vivien Didelot
2012-02-10 16:07           ` Vivien Didelot
2012-02-10 16:15           ` [lm-sensors] " Guenter Roeck
2012-02-10 16:15             ` Guenter Roeck
2012-02-10 18:14             ` [lm-sensors] " Vivien Didelot
2012-02-10 18:14               ` Vivien Didelot
2012-02-20 18:27               ` [lm-sensors] " Guenter Roeck
2012-02-20 18:27                 ` Guenter Roeck
2012-02-20 19:56                 ` [lm-sensors] " Vivien Didelot
2012-02-20 19:56                   ` Vivien Didelot
2012-02-01 21:05 ` [lm-sensors] [PATCH v5 5/5] x86/platform: (TS-5500) add ADC support Vivien Didelot
2012-02-01 21:05   ` Vivien Didelot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.