All of lore.kernel.org
 help / color / mirror / Atom feed
From: Zahari Doychev <zahari.doychev@linux.com>
To: linux-kernel@vger.kernel.org, gregkh@linuxfoundation.org,
	lee.jones@linaro.org, wsa@the-dreams.de,
	linus.walleij@linaro.org, wim@iguana.be, linux@roeck-us.net
Cc: linux-i2c@vger.kernel.org, linux-gpio@vger.kernel.org,
	gnurou@gmail.com, linux-watchdog@vger.kernel.org,
	Zahari Doychev <zahari.doychev@linux.com>
Subject: [RFC PATCH 0/5] add support for DMO embedded controller
Date: Thu, 27 Oct 2016 12:47:11 +0200	[thread overview]
Message-ID: <cover.42dd8126f6e33b5130d9afa4596d88a106c54188.1477564996.git-series.zahari.doychev@linux.com> (raw)

This patch series adds support for the Data Modul Embedded Controller(dmec)
which is implemented within an on board FPGA found on Data Modul embedded
CPU modules.

The dmec is connected to the host through the LPC bus and its registers are
mapped into the host I/O space. The controller supports two addressing modes:
linear and indexed.

The driver adds support for the following functionality:

- i2c
- gpio
- watchdog
- running time meter (rtm)

Zahari Doychev (5):
  dmec: add DMO mfd driver
  i2c-dmec: add i2c bus support for dmec
  gpio-dmec: gpio support for dmec
  wdt-dmec: watchdog support for dmec
  rtm-dmec: running time meter support

 drivers/staging/Kconfig          |   2 +-
 drivers/staging/Makefile         |   1 +-
 drivers/staging/dmec/Kconfig     |  50 +++-
 drivers/staging/dmec/Makefile    |   5 +-
 drivers/staging/dmec/dmec-core.c | 500 ++++++++++++++++++++++++++++-
 drivers/staging/dmec/dmec.h      |  20 +-
 drivers/staging/dmec/gpio-dmec.c | 390 ++++++++++++++++++++++-
 drivers/staging/dmec/i2c-dmec.c  | 524 +++++++++++++++++++++++++++++-
 drivers/staging/dmec/rtm-dmec.c  | 203 +++++++++++-
 drivers/staging/dmec/wdt-dmec.c  | 569 ++++++++++++++++++++++++++++++++-
 10 files changed, 2264 insertions(+), 0 deletions(-)
 create mode 100644 drivers/staging/dmec/Kconfig
 create mode 100644 drivers/staging/dmec/Makefile
 create mode 100644 drivers/staging/dmec/dmec-core.c
 create mode 100644 drivers/staging/dmec/dmec.h
 create mode 100644 drivers/staging/dmec/gpio-dmec.c
 create mode 100644 drivers/staging/dmec/i2c-dmec.c
 create mode 100644 drivers/staging/dmec/rtm-dmec.c
 create mode 100644 drivers/staging/dmec/wdt-dmec.c

base-commit: 9fe68cad6e74967b88d0c6aeca7d9cd6b6e91942
-- 
git-series 0.8.10

             reply	other threads:[~2016-10-27 10:47 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-27 10:47 Zahari Doychev [this message]
2016-10-27 10:47 ` [RFC PATCH 1/5] dmec: add DMO mfd driver Zahari Doychev
2016-10-27 10:47 ` [RFC PATCH 2/5] i2c-dmec: add i2c bus support for dmec Zahari Doychev
2016-10-27 10:47 ` [RFC PATCH 3/5] gpio-dmec: gpio " Zahari Doychev
     [not found]   ` <fe8ac70204de48edd8a3da8a783b10810f3d4ca1.1477564996.git-series.zahari.doychev-vYTEC60ixJUAvxtiuMwx3w@public.gmane.org>
2016-10-29  9:05     ` Linus Walleij
2016-10-29  9:05       ` Linus Walleij
2016-10-31  8:50       ` Zahari Doychev
     [not found]         ` <20161031085044.GC9050-S5msFFqROX52XvNHrDenQA@public.gmane.org>
2016-10-31 12:26           ` Linus Walleij
2016-10-31 12:26             ` Linus Walleij
2016-10-27 10:47 ` [RFC PATCH 4/5] wdt-dmec: watchdog " Zahari Doychev
2016-10-27 10:47 ` [RFC PATCH 5/5] rtm-dmec: running time meter support Zahari Doychev
2016-10-27 15:01 ` [RFC PATCH 0/5] add support for DMO embedded controller Greg KH
2016-10-27 15:54   ` Zahari Doychev

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.42dd8126f6e33b5130d9afa4596d88a106c54188.1477564996.git-series.zahari.doychev@linux.com \
    --to=zahari.doychev@linux.com \
    --cc=gnurou@gmail.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=lee.jones@linaro.org \
    --cc=linus.walleij@linaro.org \
    --cc=linux-gpio@vger.kernel.org \
    --cc=linux-i2c@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-watchdog@vger.kernel.org \
    --cc=linux@roeck-us.net \
    --cc=wim@iguana.be \
    --cc=wsa@the-dreams.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.