From: Lucas Stach <dev@lynxeye.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 00/11] tablebased pinmux for Tegra20
Date: Thu, 24 Jan 2013 17:48:09 +0100 [thread overview]
Message-ID: <1359046100-19385-1-git-send-email-dev@lynxeye.de> (raw)
This series introduces tablebased pinmux to all Tegra20 boards and
removes the old way of doing pinmux to avoid any possible conflicts
in pin setup.
Patch 1 introduces a temporary CONFIG option for the new pinmux style
to avoid breaking bisectability in the middle of the series. This
option gets removed again in patch 10.
I have verified that all commits build without errors and tested the
new pinmux on my Colibri T20 platform.
For all other boards I took the pinmux configuration from the Linux
kernel, but only un-tristated the pads that are used by U-Boot. I
can't test the other boards myself, so please everyone with the
hardware give this a run and provide a tested-by or a bug report.
The series is based denx.de/u-boot-tegra/next.
Patch 11 is more of a RFC and removes the old funcmux as after the
switchover nothing uses it anymore. We are not doing real muxing in
U-Boot, so there is no need to keep it. But I want to hear from other
people if they see any reason to keep this.
Lucas Stach (11):
tegra: introduce config option to do table based pinmux
tegra20: add entry point and helper for tablebased pinmux
tegra20: switch over colibri_t20 board to use tablebased pinmux
tegra20: switch over tamonten platform to use tablebased pinmux
tegra20: switch over harmony board to use tablebased pinmux
tegra20: switch over seaboard and ventana to use tablebased pinmux
tegra20: switch over whistler board to use tablebased pinmux
tegra20: switch over paz00 board to use tablebased pinmux
tegra20: switch over trimslice board to use tablebased pinmux
tegra20: remove old pinmux setup
tegra20: remove funcmux
arch/arm/cpu/tegra-common/board.c | 26 --
arch/arm/cpu/tegra20-common/Makefile | 2 +-
arch/arm/cpu/tegra20-common/funcmux.c | 310 ---------------------
arch/arm/include/asm/arch-tegra/board.h | 12 -
arch/arm/include/asm/arch-tegra20/funcmux.h | 67 -----
arch/arm/include/asm/arch-tegra20/pinmux.h | 12 +
board/avionic-design/common/tamonten.c | 133 +++++++--
board/compal/paz00/paz00.c | 149 +++++++---
board/compulab/trimslice/trimslice.c | 146 +++++++---
board/nvidia/common/board.c | 36 +--
board/nvidia/harmony/harmony.c | 143 ++++++++--
board/nvidia/seaboard/seaboard.c | 133 +++++++--
board/nvidia/whistler/whistler.c | 131 ++++++++-
.../colibri_t20-common/colibri_t20-common.c | 132 +++++++--
board/toradex/colibri_t20_iris/colibri_t20_iris.c | 16 +-
drivers/i2c/tegra_i2c.c | 9 -
drivers/input/tegra-kbc.c | 4 +-
drivers/mtd/nand/tegra_nand.c | 1 -
drivers/video/tegra.c | 3 -
include/configs/colibri_t20_iris.h | 1 -
include/configs/trimslice.h | 1 -
include/configs/whistler.h | 1 -
22 files changed, 814 insertions(+), 654 deletions(-)
delete mode 100644 arch/arm/cpu/tegra20-common/funcmux.c
delete mode 100644 arch/arm/include/asm/arch-tegra20/funcmux.h
--
1.8.0.2
next reply other threads:[~2013-01-24 16:48 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-24 16:48 Lucas Stach [this message]
2013-01-24 16:48 ` [U-Boot] [PATCH 01/11] tegra: introduce config option to do table based pinmux Lucas Stach
2013-01-24 16:48 ` [U-Boot] [PATCH 02/11] tegra20: add entry point and helper for tablebased pinmux Lucas Stach
2013-01-24 16:48 ` [U-Boot] [PATCH 03/11] tegra20: switch over colibri_t20 board to use " Lucas Stach
2013-01-24 16:48 ` [U-Boot] [PATCH 04/11] tegra20: switch over tamonten platform " Lucas Stach
2013-01-25 22:04 ` Stephen Warren
2013-01-25 22:11 ` Lucas Stach
2013-01-24 16:48 ` [U-Boot] [PATCH 05/11] tegra20: switch over harmony board " Lucas Stach
2013-01-24 16:48 ` [U-Boot] [PATCH 06/11] tegra20: switch over seaboard and ventana " Lucas Stach
2013-01-24 17:54 ` Simon Glass
2013-01-24 18:22 ` Lucas Stach
2013-01-25 21:20 ` Simon Glass
2013-01-25 21:38 ` Lucas Stach
2013-01-25 21:49 ` Simon Glass
2013-01-25 21:57 ` Lucas Stach
2013-01-25 22:09 ` Stephen Warren
2013-01-25 22:10 ` Stephen Warren
2013-01-27 16:36 ` Simon Glass
2013-01-25 22:06 ` Stephen Warren
2013-01-24 16:48 ` [U-Boot] [PATCH 07/11] tegra20: switch over whistler board " Lucas Stach
2013-01-24 16:48 ` [U-Boot] [PATCH 08/11] tegra20: switch over paz00 " Lucas Stach
2013-01-24 16:48 ` [U-Boot] [PATCH 09/11] tegra20: switch over trimslice " Lucas Stach
2013-01-24 16:48 ` [U-Boot] [PATCH 10/11] tegra20: remove old pinmux setup Lucas Stach
2013-01-25 22:12 ` Stephen Warren
2013-01-25 22:19 ` Lucas Stach
2013-01-25 22:34 ` Stephen Warren
2013-01-24 16:48 ` [U-Boot] [PATCH 11/11] tegra20: remove funcmux Lucas Stach
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=1359046100-19385-1-git-send-email-dev@lynxeye.de \
--to=dev@lynxeye.de \
--cc=u-boot@lists.denx.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox