linux-serial.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFC 0/5] Support for Technologic Systems TS-5500 board
@ 2011-04-29 22:21 Vivien Didelot
  2011-04-29 22:21 ` [RFC 1/5] platform-drivers-x86: add support for Technologic Systems TS-5xxx detection Vivien Didelot
                   ` (19 more replies)
  0 siblings, 20 replies; 45+ messages in thread
From: Vivien Didelot @ 2011-04-29 22:21 UTC (permalink / raw)
  To: linux-kernel; +Cc: lm-sensors, linux-serial, platform-driver-x86

This set of patches is a request for comments. It brings the complete support
for the TS-5500 Single Board Computer from Technologic Systems.

The first patch adds detection for TS-5xxx boards (it also works for TS-3xxx
boards).

The second patch adds GPIO support.

The third patch adds support for the RS-485 feature of the ts-5500 SBC.

The fourth patch adds support for the TS-5500 LEDs.

The fifth patch adds support for the analogic to digital converter feature of
the board.

Jerome Oufella (1):
  gpio: add support for Technologic Systems TS-5500 GPIOs

Jonas Fonseca (3):
  platform-drivers-x86: add support for Technologic Systems TS-5xxx
    detection
  leds: add support for Technologic Systems TS-5500 leds
  hwmon: add support for Technologic Systems TS-5500 A-D converter

Vivien Didelot (1):
  serial: add support for Technologic Systems TS-5500 RS-485 serial
    port

 Documentation/ts5xxx-sbcinfo.txt      |   47 +++
 MAINTAINERS                           |   11 +
 drivers/gpio/Kconfig                  |   10 +
 drivers/gpio/Makefile                 |    1 +
 drivers/gpio/ts5500-gpio.c            |  528 +++++++++++++++++++++++++++++++++
 drivers/hwmon/Kconfig                 |   10 +
 drivers/hwmon/Makefile                |    1 +
 drivers/hwmon/ts5500-adc.c            |  481 ++++++++++++++++++++++++++++++
 drivers/leds/Kconfig                  |   12 +
 drivers/leds/Makefile                 |    1 +
 drivers/leds/leds-ts5500.c            |  211 +++++++++++++
 drivers/platform/x86/Kconfig          |   11 +
 drivers/platform/x86/Makefile         |    1 +
 drivers/platform/x86/ts5xxx-sbcinfo.c |  254 ++++++++++++++++
 drivers/tty/serial/8250.c             |   30 ++
 drivers/tty/serial/Kconfig            |   19 ++
 drivers/tty/serial/Makefile           |    1 +
 drivers/tty/serial/ts5500-auto485.c   |   45 +++
 include/linux/ts5500-gpio.h           |   68 +++++
 include/linux/ts5xxx-sbcinfo.h        |   42 +++
 20 files changed, 1784 insertions(+), 0 deletions(-)
 create mode 100644 Documentation/ts5xxx-sbcinfo.txt
 create mode 100644 drivers/gpio/ts5500-gpio.c
 create mode 100644 drivers/hwmon/ts5500-adc.c
 create mode 100644 drivers/leds/leds-ts5500.c
 create mode 100644 drivers/platform/x86/ts5xxx-sbcinfo.c
 create mode 100644 drivers/tty/serial/ts5500-auto485.c
 create mode 100644 include/linux/ts5500-gpio.h
 create mode 100644 include/linux/ts5xxx-sbcinfo.h


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

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

end of thread, other threads:[~2011-06-06 20:48 UTC | newest]

Thread overview: 45+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-29 22:21 [RFC 0/5] Support for Technologic Systems TS-5500 board Vivien Didelot
2011-04-29 22:21 ` [RFC 1/5] platform-drivers-x86: add support for Technologic Systems TS-5xxx detection Vivien Didelot
2011-04-29 22:21 ` Vivien Didelot
2011-04-29 22:21 ` Vivien Didelot
2011-04-29 23:32   ` Greg KH
2011-05-02 21:07     ` Vivien Didelot
2011-05-02 21:55       ` Greg KH
2011-05-03  9:39         ` Alan Cox
2011-05-03 14:13           ` Greg KH
2011-04-30 10:07   ` Alan Cox
2011-05-04 15:15     ` Vivien Didelot
2011-05-04 15:29       ` Alan Cox
2011-05-04 20:34         ` Vivien Didelot
2011-05-05 13:38           ` Alan Cox
2011-05-11 22:24             ` Vivien Didelot
2011-04-29 22:21 ` Vivien Didelot
2011-04-29 22:21 ` [RFC 2/5] gpio: add support for Technologic Systems TS-5500 GPIOs Vivien Didelot
2011-04-29 22:21 ` Vivien Didelot
2011-04-29 22:21 ` Vivien Didelot
2011-04-30 10:15   ` Alan Cox
2011-05-13 21:33     ` Vivien Didelot
2011-05-13 22:03       ` Alan Cox
2011-05-04 16:29   ` Arnd Bergmann
2011-04-29 22:21 ` Vivien Didelot
2011-04-29 22:21 ` [RFC 3/5] serial: add support for Technologic Systems TS-5500 RS-485 serial port Vivien Didelot
2011-04-30 10:17   ` Alan Cox
2011-06-06 20:48     ` Vivien Didelot
2011-04-29 22:21 ` Vivien Didelot
2011-04-29 22:21 ` Vivien Didelot
2011-04-29 22:21 ` Vivien Didelot
2011-04-29 22:21 ` [RFC 4/5] leds: add support for Technologic Systems TS-5500 leds Vivien Didelot
2011-04-29 22:21 ` Vivien Didelot
2011-04-29 22:21 ` Vivien Didelot
2011-05-03  6:04   ` Govindraj
2011-04-29 22:21 ` Vivien Didelot
2011-04-29 22:21 ` [RFC 5/5] hwmon: add support for Technologic Systems TS-5500 A-D converter Vivien Didelot
2011-04-29 22:21 ` Vivien Didelot
     [not found]   ` <1304115712-5299-6-git-send-email-vivien.didelot-4ysUXcep3aM1wj+D4I0NRVaTQe2KTcn/@public.gmane.org>
2011-04-30  3:39     ` [lm-sensors] " Guenter Roeck
2011-04-30  9:56       ` Jonathan Cameron
2011-05-03 15:55       ` Vivien Didelot
2011-05-03 17:33         ` Guenter Roeck
2011-05-04  9:03         ` Jonathan Cameron
2011-04-30 10:20   ` Alan Cox
2011-04-29 22:21 ` Vivien Didelot
2011-04-29 22:21 ` Vivien Didelot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).