mbox

[GIT,PULL] Xilinx Zynq changes for v3.15

Message ID 53061EBA.1080002@monstr.eu
State New
Headers show

Pull-request

git://git-dev/group/ssw/linux-xlnx.git tags/zynq-cleanup-for-3.15

Message

Michal Simek Feb. 20, 2014, 3:26 p.m. UTC
Hi,

please pull these changes to your arm-soc tree. This branch is based
on zynq/dt branch from the second pull request.
I have kept OCM patch in this branch because it depends on slcr changes
done here. If you want to send another pull request just for this OCM
patch based on this branch, please let me know.

Thanks,
Michal

The following changes since commit 3795e91d2abb25164dda5687ca680a7ab940c447:

  arm: dt: zynq: Add fclk-enable property to clkc node (2014-02-03 17:00:24 +0100)

are available in the git repository at:

  git://git-dev/group/ssw/linux-xlnx.git tags/zynq-cleanup-for-3.15

for you to fetch changes up to e9aa3e3a5bb2d64515648537100e5cf9b863e01a:

  ARM: zynq: Add support for SOC_BUS (2014-02-20 16:08:47 +0100)

----------------------------------------------------------------
arm: Xilinx Zynq cleanup patches for v3.15

- Redesign SLCR initialization to enable
  driver developing which targets SLCR space
- Add OCM driver
- Add SOC_BUS support

----------------------------------------------------------------
Michal Simek (8):
      ARM: zynq: Split slcr in two parts
      ARM: zynq: Map I/O memory on clkc init
      ARM: zynq: Add and use zynq_slcr_read/write() helper functions
      ARM: zynq: Introduce zynq_slcr_unlock()
      ARM: zynq: Add OCM driver
      ARM: zynq: Move of_clk_init from clock driver
      ARM: zynq: Add waituart implementation
      ARM: zynq: Add support for SOC_BUS

Steffen Trumtrar (3):
      ARM: zynq: Move clock_init from slcr to common
      ARM: zynq: Hang iomapped slcr address on device_node
      ARM: zynq: Make zynq_slcr_base static

 Documentation/devicetree/bindings/arm/zynq/xlnx,zynq-ocm.txt |  17 +++++
 Documentation/devicetree/bindings/clock/zynq-7000.txt        |   4 +-
 arch/arm/boot/dts/zynq-7000.dtsi                             |  56 +++++++++------
 arch/arm/include/debug/zynq.S                                |   3 +
 arch/arm/mach-zynq/Kconfig                                   |   3 +
 arch/arm/mach-zynq/Makefile                                  |   2 +-
 arch/arm/mach-zynq/common.c                                  |  80 ++++++++++++++++++++-
 arch/arm/mach-zynq/common.h                                  |   4 +-
 arch/arm/mach-zynq/slcr.c                                    | 138 ++++++++++++++++++++++++++++++++----
 arch/arm/mach-zynq/zynq_ocm.c                                | 243 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/clk/zynq/clkc.c                                      |  89 ++++++++++++++++--------
 include/linux/clk/zynq.h                                     |   2 +-
 12 files changed, 570 insertions(+), 71 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/arm/zynq/xlnx,zynq-ocm.txt
 create mode 100644 arch/arm/mach-zynq/zynq_ocm.c

Comments

Michal Simek Feb. 28, 2014, 7:18 a.m. UTC | #1
On 02/20/2014 04:26 PM, Michal Simek wrote:
> Hi,
> 
> please pull these changes to your arm-soc tree. This branch is based
> on zynq/dt branch from the second pull request.
> I have kept OCM patch in this branch because it depends on slcr changes
> done here. If you want to send another pull request just for this OCM
> patch based on this branch, please let me know.
> 
> Thanks,
> Michal
> 
> The following changes since commit 3795e91d2abb25164dda5687ca680a7ab940c447:
> 
>   arm: dt: zynq: Add fclk-enable property to clkc node (2014-02-03 17:00:24 +0100)
> 
> are available in the git repository at:
> 
>   git://git-dev/group/ssw/linux-xlnx.git tags/zynq-cleanup-for-3.15
> 
> for you to fetch changes up to e9aa3e3a5bb2d64515648537100e5cf9b863e01a:
> 
>   ARM: zynq: Add support for SOC_BUS (2014-02-20 16:08:47 +0100)
> 
> ----------------------------------------------------------------
> arm: Xilinx Zynq cleanup patches for v3.15
> 
> - Redesign SLCR initialization to enable
>   driver developing which targets SLCR space
> - Add OCM driver
> - Add SOC_BUS support
> 
> ----------------------------------------------------------------
> Michal Simek (8):
>       ARM: zynq: Split slcr in two parts
>       ARM: zynq: Map I/O memory on clkc init
>       ARM: zynq: Add and use zynq_slcr_read/write() helper functions
>       ARM: zynq: Introduce zynq_slcr_unlock()
>       ARM: zynq: Add OCM driver
>       ARM: zynq: Move of_clk_init from clock driver
>       ARM: zynq: Add waituart implementation
>       ARM: zynq: Add support for SOC_BUS
> 
> Steffen Trumtrar (3):
>       ARM: zynq: Move clock_init from slcr to common
>       ARM: zynq: Hang iomapped slcr address on device_node
>       ARM: zynq: Make zynq_slcr_base static
> 
>  Documentation/devicetree/bindings/arm/zynq/xlnx,zynq-ocm.txt |  17 +++++
>  Documentation/devicetree/bindings/clock/zynq-7000.txt        |   4 +-
>  arch/arm/boot/dts/zynq-7000.dtsi                             |  56 +++++++++------
>  arch/arm/include/debug/zynq.S                                |   3 +
>  arch/arm/mach-zynq/Kconfig                                   |   3 +
>  arch/arm/mach-zynq/Makefile                                  |   2 +-
>  arch/arm/mach-zynq/common.c                                  |  80 ++++++++++++++++++++-
>  arch/arm/mach-zynq/common.h                                  |   4 +-
>  arch/arm/mach-zynq/slcr.c                                    | 138 ++++++++++++++++++++++++++++++++----
>  arch/arm/mach-zynq/zynq_ocm.c                                | 243 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>  drivers/clk/zynq/clkc.c                                      |  89 ++++++++++++++++--------
>  include/linux/clk/zynq.h                                     |   2 +-
>  12 files changed, 570 insertions(+), 71 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/arm/zynq/xlnx,zynq-ocm.txt
>  create mode 100644 arch/arm/mach-zynq/zynq_ocm.c

Any update on this one?

Thanks,
Michal
Olof Johansson March 9, 2014, 6:07 a.m. UTC | #2
On Fri, Feb 28, 2014 at 08:18:07AM +0100, Michal Simek wrote:

> Any update on this one?

Hi,

Looks like it fell between chairs, but the bigger problem is the fetch URL:

> >   git://git-dev/group/ssw/linux-xlnx.git tags/zynq-cleanup-for-3.15

Care to send a fresh pull request with a publicly accessible repo URL? :)


-Olof
Michal Simek March 10, 2014, 8:15 a.m. UTC | #3
Hi Olof,

On 03/09/2014 07:07 AM, Olof Johansson wrote:
> On Fri, Feb 28, 2014 at 08:18:07AM +0100, Michal Simek wrote:
> 
>> Any update on this one?
> 
> Hi,
> 
> Looks like it fell between chairs, but the bigger problem is the fetch URL:

ok.

>>>   git://git-dev/group/ssw/linux-xlnx.git tags/zynq-cleanup-for-3.15
> 
> Care to send a fresh pull request with a publicly accessible repo URL? :)

Thanks for pointing to it. I have sent second pull request.

Thanks,
Michal