From: Andrey Danin <danindrey-JGs/UdohzUI@public.gmane.org>
To: Tom Warren <TWarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>,
u-boot-0aAXYlwwYIKGBzrmiIFOJg@public.gmane.org
Cc: Andrey Danin <danindrey-JGs/UdohzUI@public.gmane.org>,
Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>,
Marc Dietrich <marvin24-Mmb7MZpHnFY@public.gmane.org>,
Julian Andres Klode <jak-4HMq4SXA452hPH1hqNUYSQ@public.gmane.org>,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
ac100-oU9gvf+ajcQ97yFScArB1dHuzzzSOjJt@public.gmane.org
Subject: [PATCH v2 0/6] ARM: tegra: add nvec keyboard support for paz00
Date: Sun, 27 Apr 2014 05:14:24 +0400 [thread overview]
Message-ID: <1398561270-25091-1-git-send-email-danindrey@mail.ru> (raw)
In-Reply-To: <[PATCH 0/3] ARM: tegra: add nvec keyboard support for paz00>
This patch series introduces keyboard support for AC100 (board paz00).
I2C slave mode was implemented for i2c core and tegra-i2c.
NVEC code from linux kernel was reworked to use tegra-i2c driver.
Keytable header file is copied from linux kernel but modified
to fix styles and remove unused code.
Based on u-boot-tegra/next.
CC: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
CC: Marc Dietrich <marvin24-Mmb7MZpHnFY@public.gmane.org>
CC: Julian Andres Klode <jak-4HMq4SXA452hPH1hqNUYSQ@public.gmane.org>
CC: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
CC: ac100-oU9gvf+ajcQ97yFScArB1dHuzzzSOjJt@public.gmane.org
---
Changes for v2:
- I2C slave mode for i2c-core and tegra-i2c implemented
- Fixed NVEC dt bindings
- NVEC driver was reworked to use tegra-i2c
- fixed incorrect keys handling in nvec-keyboard driver
- patch is splitted to smaller parts
Andrey Danin (6):
i2c: add slave mode support
ARM: tegra: i2c: add slave mode support
ARM: tegra: i2c: add nvec driver
ARM: tegra: nvec: add keyboard support
ARM: tegra: paz00: add dt bindings for nvec
ARM: tegra: paz00: enable nvec keyboard
arch/arm/include/asm/arch-tegra/tegra_i2c.h | 6 +
arch/arm/include/asm/arch-tegra/tegra_nvec.h | 130 +++++++++
.../include/asm/arch-tegra/tegra_nvec_keyboard.h | 304 ++++++++++++++++++++
board/compal/dts/tegra20-paz00.dts | 8 +-
board/nvidia/common/board.c | 12 +
drivers/i2c/Makefile | 1 +
drivers/i2c/i2c_core.c | 13 +
drivers/i2c/tegra_i2c.c | 199 ++++++++++++-
drivers/i2c/tegra_nvec.c | 294 +++++++++++++++++++
drivers/input/Makefile | 3 +
drivers/input/tegra-nvec-kbc.c | 215 ++++++++++++++
include/configs/paz00.h | 9 +
include/configs/tegra-common-post.h | 2 +
include/fdtdec.h | 1 +
include/i2c.h | 30 +-
lib/fdtdec.c | 1 +
16 files changed, 1223 insertions(+), 5 deletions(-)
create mode 100644 arch/arm/include/asm/arch-tegra/tegra_nvec.h
create mode 100644 arch/arm/include/asm/arch-tegra/tegra_nvec_keyboard.h
create mode 100644 drivers/i2c/tegra_nvec.c
create mode 100644 drivers/input/tegra-nvec-kbc.c
--
1.7.9.5
--
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
next parent reply other threads:[~2014-04-27 1:14 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <[PATCH 0/3] ARM: tegra: add nvec keyboard support for paz00>
2014-04-27 1:14 ` Andrey Danin [this message]
[not found] ` <1398561270-25091-1-git-send-email-danindrey-JGs/UdohzUI@public.gmane.org>
2014-04-27 1:14 ` [PATCH v2 5/6] ARM: tegra: paz00: add dt bindings for nvec Andrey Danin
[not found] ` <1398561270-25091-6-git-send-email-danindrey-JGs/UdohzUI@public.gmane.org>
2014-04-28 23:04 ` [Ac100] " Stephen Warren
[not found] ` <535EDE6D.2050505-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
2014-04-30 7:52 ` [U-Boot] [Ac100] [PATCH v2 5/6] ARM: tegra: paz00: add dtbindings " Marc Dietrich
2014-04-30 16:21 ` Stephen Warren
[not found] ` <536122F3.4070301-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
2014-04-30 21:03 ` [U-Boot] [Ac100] [PATCH v2 5/6] ARM: tegra: paz00: add dtbindingsfor nvec Marc Dietrich
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=1398561270-25091-1-git-send-email-danindrey@mail.ru \
--to=danindrey-jgs/udohzui@public.gmane.org \
--cc=TWarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org \
--cc=ac100-oU9gvf+ajcQ97yFScArB1dHuzzzSOjJt@public.gmane.org \
--cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=jak-4HMq4SXA452hPH1hqNUYSQ@public.gmane.org \
--cc=marvin24-Mmb7MZpHnFY@public.gmane.org \
--cc=swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org \
--cc=u-boot-0aAXYlwwYIKGBzrmiIFOJg@public.gmane.org \
/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 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).