From: f.fainelli@gmail.com (Florian Fainelli)
To: linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL] Broadcom STB GISB bus driver for 3.19
Date: Fri, 28 Nov 2014 16:14:15 -0800 [thread overview]
Message-ID: <54790FD7.9060509@gmail.com> (raw)
In-Reply-To: <1417218722-29944-1-git-send-email-f.fainelli@gmail.com>
Le 28/11/2014 15:52, Florian Fainelli a ?crit :
> The following changes since commit f114040e3ea6e07372334ade75d1ee0775c355e1:
>
> Linux 3.18-rc1 (2014-10-19 18:08:38 -0700)
>
> are available in the git repository at:
>
> https://github.com/brcm/linux.git tags/arm-soc/for-3.19/brcmstb-drivers
>
> for you to fetch changes up to 7938c2c819d7ec0e1f7d6b97acbd19c344139eb7:
>
> bus: brcmstb_gisb: Honor the "big-endian" and "native-endian" DT properties (2014-11-28 15:44:44 -0800)
>
> ----------------------------------------------------------------
> This pull request contains the following changes to the Broadcom GISB bus
> arbiter from Kevin Cernekee:
>
> - Extend brcmstb GISB bus driver to work on MIPS (currently ARM-only) and support
> 65nm and 40nm MIPS-based chips such as: BCM7038, BCM7400 and BCM7435
>
> - Extend brcmstb GISB bus driver to work on BE systems (currently LE-only).
>
> ----------------------------------------------------------------
> Kevin Cernekee (5):
> bus: brcmstb_gisb: Make the driver buildable on MIPS
> bus: brcmstb_gisb: Introduce wrapper functions for MMIO accesses
> bus: brcmstb_gisb: Look up register offsets in a table
> bus: brcmstb_gisb: Add register offset tables for older chips
> bus: brcmstb_gisb: Honor the "big-endian" and "native-endian" DT properties
This patch depends on of_device_is_big_endian() which I thought would
make it through 3.19 via Grant's tree, I will resubmit this pull request
without the last patch until of_device_is_big_endian() has made it to
the tree.
Thanks
>
> .../devicetree/bindings/bus/brcm,gisb-arb.txt | 6 +-
> drivers/bus/Kconfig | 2 +-
> drivers/bus/brcmstb_gisb.c | 127 ++++++++++++++++++---
> 3 files changed, 114 insertions(+), 21 deletions(-)
>
WARNING: multiple messages have this Message-ID (diff)
From: Florian Fainelli <f.fainelli-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: arm-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org
Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
arnd-r2nGTMty4D4@public.gmane.org,
olof-nZhT3qVonbNeoWH0uzbU5w@public.gmane.org,
cernekee-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [GIT PULL] Broadcom STB GISB bus driver for 3.19
Date: Fri, 28 Nov 2014 16:14:15 -0800 [thread overview]
Message-ID: <54790FD7.9060509@gmail.com> (raw)
In-Reply-To: <1417218722-29944-1-git-send-email-f.fainelli-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Le 28/11/2014 15:52, Florian Fainelli a écrit :
> The following changes since commit f114040e3ea6e07372334ade75d1ee0775c355e1:
>
> Linux 3.18-rc1 (2014-10-19 18:08:38 -0700)
>
> are available in the git repository at:
>
> https://github.com/brcm/linux.git tags/arm-soc/for-3.19/brcmstb-drivers
>
> for you to fetch changes up to 7938c2c819d7ec0e1f7d6b97acbd19c344139eb7:
>
> bus: brcmstb_gisb: Honor the "big-endian" and "native-endian" DT properties (2014-11-28 15:44:44 -0800)
>
> ----------------------------------------------------------------
> This pull request contains the following changes to the Broadcom GISB bus
> arbiter from Kevin Cernekee:
>
> - Extend brcmstb GISB bus driver to work on MIPS (currently ARM-only) and support
> 65nm and 40nm MIPS-based chips such as: BCM7038, BCM7400 and BCM7435
>
> - Extend brcmstb GISB bus driver to work on BE systems (currently LE-only).
>
> ----------------------------------------------------------------
> Kevin Cernekee (5):
> bus: brcmstb_gisb: Make the driver buildable on MIPS
> bus: brcmstb_gisb: Introduce wrapper functions for MMIO accesses
> bus: brcmstb_gisb: Look up register offsets in a table
> bus: brcmstb_gisb: Add register offset tables for older chips
> bus: brcmstb_gisb: Honor the "big-endian" and "native-endian" DT properties
This patch depends on of_device_is_big_endian() which I thought would
make it through 3.19 via Grant's tree, I will resubmit this pull request
without the last patch until of_device_is_big_endian() has made it to
the tree.
Thanks
>
> .../devicetree/bindings/bus/brcm,gisb-arb.txt | 6 +-
> drivers/bus/Kconfig | 2 +-
> drivers/bus/brcmstb_gisb.c | 127 ++++++++++++++++++---
> 3 files changed, 114 insertions(+), 21 deletions(-)
>
--
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 prev parent reply other threads:[~2014-11-29 0:14 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-28 23:52 [GIT PULL] Broadcom STB GISB bus driver for 3.19 Florian Fainelli
2014-11-28 23:52 ` Florian Fainelli
2014-11-29 0:14 ` Florian Fainelli [this message]
2014-11-29 0:14 ` Florian Fainelli
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=54790FD7.9060509@gmail.com \
--to=f.fainelli@gmail.com \
--cc=linux-arm-kernel@lists.infradead.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 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.