devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v5 0/8] Add board support for TS-4600
@ 2017-07-14 20:32 Sebastien Bourdelin
  2017-07-14 20:32 ` [PATCH v5 1/8] of: documentation: add bindings documentation " Sebastien Bourdelin
                   ` (6 more replies)
  0 siblings, 7 replies; 16+ messages in thread
From: Sebastien Bourdelin @ 2017-07-14 20:32 UTC (permalink / raw)
  To: linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	linux-watchdog-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	devicetree-u79uwXL29TY76Z2rM5mHXA,
	kernel-4ysUXcep3aM1wj+D4I0NRVaTQe2KTcn/,
	robh-DgEjT+Ai2ygdnm+yROfE0A, linux-0h96xk9xTtrk1uMJSBkQmQ,
	linus.walleij-QSEj5FYQhm4dnm+yROfE0A,
	shawnguo-DgEjT+Ai2ygdnm+yROfE0A
  Cc: fabio.estevam-3arQi8VN3Tc, mark-L1vi/lXTdtvnC/t2CciAbw,
	kris-L1vi/lXTdtvnC/t2CciAbw, Sebastien Bourdelin

This patch serie adds support for the TS-4600 boards rev A and B. These
boards, manufactured by Technologic Systems, are based on an i.MX28.

This serie include the support for the watchdog which could be enable
at Linux boot time depending on the bootloader.

The watchdog and few peripherals are implemented in a FPGA, and can
only be access using a custom GPIOs bit-banged bus which is called the
NBUS by Technologic Systems.
A driver for this bus is also included and used by the watchdog.

Sebastien Bourdelin (8):
  of: documentation: add bindings documentation for TS-4600
  ARM: dts: TS-4600: add basic device tree
  dt-bindings: bus: Add documentation for the Technologic Systems NBUS
  bus: add driver for the Technologic Systems NBUS
  ARM: dts: TS-4600: add NBUS support
  dt-bindings: watchdog: add documentation for TS4600 watchdog
    controller
  watchdog: TS-4600: add driver for TS-4600 watchdog controller
  ARM: dts: TS-4600: add watchdog support

 .../devicetree/bindings/arm/technologic.txt        |   5 +
 Documentation/devicetree/bindings/bus/ts-nbus.txt  |  50 +++
 .../devicetree/bindings/watchdog/ts4600-wdt.txt    |  16 +
 arch/arm/boot/dts/Makefile                         |   2 +
 arch/arm/boot/dts/imx28-ts4600-common.dtsi         | 126 +++++++
 arch/arm/boot/dts/imx28-ts4600-rev-a.dts           |  22 ++
 arch/arm/boot/dts/imx28-ts4600-rev-b.dts           |  22 ++
 drivers/bus/Kconfig                                |   8 +
 drivers/bus/Makefile                               |   1 +
 drivers/bus/ts-nbus.c                              | 375 +++++++++++++++++++++
 drivers/watchdog/Kconfig                           |  11 +
 drivers/watchdog/Makefile                          |   1 +
 drivers/watchdog/ts4600_wdt.c                      | 185 ++++++++++
 include/linux/ts-nbus.h                            |  18 +
 14 files changed, 842 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/bus/ts-nbus.txt
 create mode 100644 Documentation/devicetree/bindings/watchdog/ts4600-wdt.txt
 create mode 100644 arch/arm/boot/dts/imx28-ts4600-common.dtsi
 create mode 100644 arch/arm/boot/dts/imx28-ts4600-rev-a.dts
 create mode 100644 arch/arm/boot/dts/imx28-ts4600-rev-b.dts
 create mode 100644 drivers/bus/ts-nbus.c
 create mode 100644 drivers/watchdog/ts4600_wdt.c
 create mode 100644 include/linux/ts-nbus.h

-- 
2.13.0

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2017-08-05  1:50 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-14 20:32 [PATCH v5 0/8] Add board support for TS-4600 Sebastien Bourdelin
2017-07-14 20:32 ` [PATCH v5 1/8] of: documentation: add bindings documentation " Sebastien Bourdelin
2017-07-14 20:32 ` [PATCH v5 2/8] ARM: dts: TS-4600: add basic device tree Sebastien Bourdelin
     [not found]   ` <20170714203218.14409-3-sebastien.bourdelin-4ysUXcep3aM1wj+D4I0NRVaTQe2KTcn/@public.gmane.org>
2017-08-05  1:47     ` Shawn Guo
2017-07-14 20:32 ` [PATCH v5 3/8] dt-bindings: bus: Add documentation for the Technologic Systems NBUS Sebastien Bourdelin
     [not found]   ` <20170714203218.14409-4-sebastien.bourdelin-4ysUXcep3aM1wj+D4I0NRVaTQe2KTcn/@public.gmane.org>
2017-07-17 19:00     ` Rob Herring
2017-08-02  8:33     ` Linus Walleij
2017-07-14 20:32 ` [PATCH v5 4/8] bus: add driver " Sebastien Bourdelin
     [not found]   ` <20170714203218.14409-5-sebastien.bourdelin-4ysUXcep3aM1wj+D4I0NRVaTQe2KTcn/@public.gmane.org>
2017-08-02  8:20     ` Linus Walleij
2017-07-14 20:32 ` [PATCH v5 5/8] ARM: dts: TS-4600: add NBUS support Sebastien Bourdelin
2017-07-14 20:32 ` [PATCH v5 7/8] watchdog: TS-4600: add driver for TS-4600 watchdog controller Sebastien Bourdelin
     [not found] ` <20170714203218.14409-1-sebastien.bourdelin-4ysUXcep3aM1wj+D4I0NRVaTQe2KTcn/@public.gmane.org>
2017-07-14 20:32   ` [PATCH v5 6/8] dt-bindings: watchdog: add documentation for TS4600 " Sebastien Bourdelin
2017-07-14 20:32   ` [PATCH v5 8/8] ARM: dts: TS-4600: add watchdog support Sebastien Bourdelin
2017-08-03  1:26   ` [PATCH v5 0/8] Add board support for TS-4600 Shawn Guo
2017-08-03 19:32     ` Sebastien Bourdelin
     [not found]       ` <d40e5ff1-2741-af5c-9dee-b24cd5780aae-4ysUXcep3aM1wj+D4I0NRVaTQe2KTcn/@public.gmane.org>
2017-08-05  1:50         ` Shawn Guo

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).