LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Christina Quast <cquast@hanoverdisplays.com>
To: unlisted-recipients:; (no To-header on input)
Cc: bcousson@baylibre.com, tony@atomide.com, robh+dt@kernel.org,
mark.rutland@arm.com, mpfj@newflow.co.uk,
cquast@hanoverdisplays.com, linux-omap@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH 0/2] ARM: dts: am335x: Replace numeric pinmux address with macro defines
Date: Wed, 13 Mar 2019 15:27:22 +0100 [thread overview]
Message-ID: <20190313142724.27446-1-cquast@hanoverdisplays.com> (raw)
This patchset replaces the register offsets for am335x with macro defines.
The values are extraced from the "AM335x SitaraTM Processors Technical
Reference Manual".
Updated AM33XX_IOPAD to take three instead of two parameters, to make
future changes to #pinctrl-cells easier.
Christina Quast (2):
ARM: dts: am335x: Replace numeric pinmux address with macro defines
ARM: dts: am335x: Replaced register offsets with defines
arch/arm/boot/dts/am335x-baltos-ir2110.dts | 16 +-
arch/arm/boot/dts/am335x-baltos-ir3220.dts | 38 +--
arch/arm/boot/dts/am335x-baltos-ir5221.dts | 42 +--
arch/arm/boot/dts/am335x-baltos-leds.dtsi | 6 +-
arch/arm/boot/dts/am335x-baltos.dtsi | 140 ++++-----
arch/arm/boot/dts/am335x-base0033.dts | 48 +--
arch/arm/boot/dts/am335x-bone-common.dtsi | 116 +++----
.../arm/boot/dts/am335x-boneblack-common.dtsi | 54 ++--
.../boot/dts/am335x-boneblack-wireless.dts | 28 +-
arch/arm/boot/dts/am335x-boneblue.dts | 104 +++----
.../arm/boot/dts/am335x-bonegreen-common.dtsi | 4 +-
.../boot/dts/am335x-bonegreen-wireless.dts | 28 +-
arch/arm/boot/dts/am335x-chiliboard.dts | 66 ++--
arch/arm/boot/dts/am335x-chilisom.dtsi | 34 +-
arch/arm/boot/dts/am335x-cm-t335.dts | 154 ++++-----
arch/arm/boot/dts/am335x-evm.dts | 234 +++++++-------
arch/arm/boot/dts/am335x-evmsk.dts | 292 +++++++++---------
arch/arm/boot/dts/am335x-icev2.dts | 116 +++----
arch/arm/boot/dts/am335x-igep0033.dtsi | 40 +--
arch/arm/boot/dts/am335x-lxm.dts | 120 +++----
.../boot/dts/am335x-moxa-uc-2100-common.dtsi | 42 +--
arch/arm/boot/dts/am335x-moxa-uc-2101.dts | 24 +-
.../arm/boot/dts/am335x-moxa-uc-8100-me-t.dts | 116 +++----
arch/arm/boot/dts/am335x-nano.dts | 140 ++++-----
arch/arm/boot/dts/am335x-osd3358-sm-red.dts | 168 +++++-----
arch/arm/boot/dts/am335x-osd335x-common.dtsi | 4 +-
arch/arm/boot/dts/am335x-pcm-953.dtsi | 74 ++---
arch/arm/boot/dts/am335x-pdu001.dts | 170 +++++-----
arch/arm/boot/dts/am335x-pepper.dts | 200 ++++++------
arch/arm/boot/dts/am335x-phycore-som.dtsi | 60 ++--
arch/arm/boot/dts/am335x-pocketbeagle.dts | 56 ++--
arch/arm/boot/dts/am335x-sancloud-bbe.dts | 62 ++--
arch/arm/boot/dts/am335x-sbc-t335.dts | 112 +++----
arch/arm/boot/dts/am335x-shc.dts | 224 +++++++-------
arch/arm/boot/dts/am335x-sl50.dts | 208 ++++++-------
arch/arm/boot/dts/am335x-wega.dtsi | 68 ++--
arch/arm/boot/dts/am33xx.dtsi | 1 +
include/dt-bindings/pinctrl/am335x.h | 236 ++++++++++++++
include/dt-bindings/pinctrl/omap.h | 2 +-
39 files changed, 1942 insertions(+), 1705 deletions(-)
create mode 100644 include/dt-bindings/pinctrl/am335x.h
--
2.20.1
next reply other threads:[~2019-03-13 14:27 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-03-13 14:27 Christina Quast [this message]
2019-03-13 14:27 ` [PATCH 1/2] " Christina Quast
2019-03-14 14:59 ` Tony Lindgren
2019-03-13 14:27 ` [PATCH 2/2] ARM: dts: am335x: Replaced register offsets with defines Christina Quast
2019-03-14 15:05 ` Tony Lindgren
[not found] ` <4FA4A861EC9F6744BE8446EF2CDFAFE11FF8885D@mail.hanover.local>
2019-03-14 16:12 ` Tony Lindgren
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=20190313142724.27446-1-cquast@hanoverdisplays.com \
--to=cquast@hanoverdisplays.com \
--cc=bcousson@baylibre.com \
--cc=devicetree@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=mpfj@newflow.co.uk \
--cc=robh+dt@kernel.org \
--cc=tony@atomide.com \
--subject='Re: [PATCH 0/2] ARM: dts: am335x: Replace numeric pinmux address with macro defines' \
/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
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).