All of lore.kernel.org
 help / color / mirror / Atom feed
From: Thierry Reding <thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: arm-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
	soc-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org
Cc: Thierry Reding
	<thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	Jon Hunter <jonathanh-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>,
	linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
Subject: [GIT PULL 3/7] memory: tegra: Changes for v5.9-rc1
Date: Fri, 17 Jul 2020 18:12:56 +0200	[thread overview]
Message-ID: <20200717161300.1661002-3-thierry.reding@gmail.com> (raw)
In-Reply-To: <20200717161300.1661002-1-thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>

Hi ARM SoC maintainers,

The following changes since commit b3a9e3b9622ae10064826dccb4f7a52bd88c7407:

  Linux 5.8-rc1 (2020-06-14 12:45:04 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git tags/tegra-for-5.9-memory

for you to fetch changes up to 46c019239fb263922d2881847dd6b614c814d867:

  memory: tegra: Add Tegra132 compatible string match (2020-07-15 11:55:21 +0200)

Thanks,
Thierry

----------------------------------------------------------------
memory: tegra: Changes for v5.9-rc1

This contains the Tegra210 EMC frequency scaling support that didn't
make it into v5.8. In addition there are a couple of cleanups and minor
fixes.

----------------------------------------------------------------
Arnd Bergmann (1):
      memory: tegra: Avoid unused function warnings

Christophe JAILLET (1):
      memory: tegra: Fix an error handling path in tegra186_emc_probe()

Dan Carpenter (1):
      memory: tegra: Delete some dead code

Dmitry Osipenko (3):
      memory: tegra: Make debugfs permissions human-readable
      memory: tegra20-emc: Poll EMC-CaR handshake instead of waiting for interrupt
      memory: tegra30-emc: Poll EMC-CaR handshake instead of waiting for interrupt

Geert Uytterhoeven (1):
      memory: tegra: Drop <linux/clk-provider.h>

Jon Hunter (1):
      memory: tegra: Fix KCONFIG variables for Tegra186 and Tegra194

Joseph Lo (2):
      memory: tegra: Add EMC scaling support code for Tegra210
      memory: tegra: Add EMC scaling sequence code for Tegra210

Thierry Reding (2):
      memory: tegra: Support derated timings on Tegra210
      memory: tegra: Add Tegra132 compatible string match

 drivers/memory/tegra/Kconfig                  |   14 +
 drivers/memory/tegra/Makefile                 |    4 +
 drivers/memory/tegra/mc.h                     |    1 +
 drivers/memory/tegra/tegra124-emc.c           |    7 +-
 drivers/memory/tegra/tegra186-emc.c           |   25 +-
 drivers/memory/tegra/tegra186.c               |    4 +-
 drivers/memory/tegra/tegra20-emc.c            |   34 +-
 drivers/memory/tegra/tegra210-emc-cc-r21021.c | 1775 +++++++++++++++++++++
 drivers/memory/tegra/tegra210-emc-core.c      | 2100 +++++++++++++++++++++++++
 drivers/memory/tegra/tegra210-emc-table.c     |   90 ++
 drivers/memory/tegra/tegra210-emc.h           | 1016 ++++++++++++
 drivers/memory/tegra/tegra210-mc.h            |   50 +
 drivers/memory/tegra/tegra30-emc.c            |  122 +-
 13 files changed, 5130 insertions(+), 112 deletions(-)
 create mode 100644 drivers/memory/tegra/tegra210-emc-cc-r21021.c
 create mode 100644 drivers/memory/tegra/tegra210-emc-core.c
 create mode 100644 drivers/memory/tegra/tegra210-emc-table.c
 create mode 100644 drivers/memory/tegra/tegra210-emc.h
 create mode 100644 drivers/memory/tegra/tegra210-mc.h

WARNING: multiple messages have this Message-ID (diff)
From: Thierry Reding <thierry.reding@gmail.com>
To: arm@kernel.org, soc@kernel.org
Cc: linux-tegra@vger.kernel.org,
	Thierry Reding <thierry.reding@gmail.com>,
	linux-arm-kernel@lists.infradead.org,
	Jon Hunter <jonathanh@nvidia.com>
Subject: [GIT PULL 3/7] memory: tegra: Changes for v5.9-rc1
Date: Fri, 17 Jul 2020 18:12:56 +0200	[thread overview]
Message-ID: <20200717161300.1661002-3-thierry.reding@gmail.com> (raw)
In-Reply-To: <20200717161300.1661002-1-thierry.reding@gmail.com>

Hi ARM SoC maintainers,

The following changes since commit b3a9e3b9622ae10064826dccb4f7a52bd88c7407:

  Linux 5.8-rc1 (2020-06-14 12:45:04 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git tags/tegra-for-5.9-memory

for you to fetch changes up to 46c019239fb263922d2881847dd6b614c814d867:

  memory: tegra: Add Tegra132 compatible string match (2020-07-15 11:55:21 +0200)

Thanks,
Thierry

----------------------------------------------------------------
memory: tegra: Changes for v5.9-rc1

This contains the Tegra210 EMC frequency scaling support that didn't
make it into v5.8. In addition there are a couple of cleanups and minor
fixes.

----------------------------------------------------------------
Arnd Bergmann (1):
      memory: tegra: Avoid unused function warnings

Christophe JAILLET (1):
      memory: tegra: Fix an error handling path in tegra186_emc_probe()

Dan Carpenter (1):
      memory: tegra: Delete some dead code

Dmitry Osipenko (3):
      memory: tegra: Make debugfs permissions human-readable
      memory: tegra20-emc: Poll EMC-CaR handshake instead of waiting for interrupt
      memory: tegra30-emc: Poll EMC-CaR handshake instead of waiting for interrupt

Geert Uytterhoeven (1):
      memory: tegra: Drop <linux/clk-provider.h>

Jon Hunter (1):
      memory: tegra: Fix KCONFIG variables for Tegra186 and Tegra194

Joseph Lo (2):
      memory: tegra: Add EMC scaling support code for Tegra210
      memory: tegra: Add EMC scaling sequence code for Tegra210

Thierry Reding (2):
      memory: tegra: Support derated timings on Tegra210
      memory: tegra: Add Tegra132 compatible string match

 drivers/memory/tegra/Kconfig                  |   14 +
 drivers/memory/tegra/Makefile                 |    4 +
 drivers/memory/tegra/mc.h                     |    1 +
 drivers/memory/tegra/tegra124-emc.c           |    7 +-
 drivers/memory/tegra/tegra186-emc.c           |   25 +-
 drivers/memory/tegra/tegra186.c               |    4 +-
 drivers/memory/tegra/tegra20-emc.c            |   34 +-
 drivers/memory/tegra/tegra210-emc-cc-r21021.c | 1775 +++++++++++++++++++++
 drivers/memory/tegra/tegra210-emc-core.c      | 2100 +++++++++++++++++++++++++
 drivers/memory/tegra/tegra210-emc-table.c     |   90 ++
 drivers/memory/tegra/tegra210-emc.h           | 1016 ++++++++++++
 drivers/memory/tegra/tegra210-mc.h            |   50 +
 drivers/memory/tegra/tegra30-emc.c            |  122 +-
 13 files changed, 5130 insertions(+), 112 deletions(-)
 create mode 100644 drivers/memory/tegra/tegra210-emc-cc-r21021.c
 create mode 100644 drivers/memory/tegra/tegra210-emc-core.c
 create mode 100644 drivers/memory/tegra/tegra210-emc-table.c
 create mode 100644 drivers/memory/tegra/tegra210-emc.h
 create mode 100644 drivers/memory/tegra/tegra210-mc.h

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2020-07-17 16:12 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-17 16:12 [GIT PULL 1/7] dt-bindings: Changes for v5.9-rc1 Thierry Reding
2020-07-17 16:12 ` Thierry Reding
     [not found] ` <20200717161300.1661002-1-thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2020-07-17 16:12   ` [GIT PULL 2/7] firmware: tegra: " Thierry Reding
2020-07-17 16:12     ` Thierry Reding
2020-07-17 16:12   ` Thierry Reding [this message]
2020-07-17 16:12     ` [GIT PULL 3/7] memory: " Thierry Reding
2020-07-17 16:12   ` [GIT PULL 4/7] soc/tegra: " Thierry Reding
2020-07-17 16:12     ` Thierry Reding
2020-07-17 16:12   ` [GIT PULL 5/7] ARM: tegra: Device tree changes " Thierry Reding
2020-07-17 16:12     ` Thierry Reding
     [not found]     ` <20200717161300.1661002-5-thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2020-07-17 19:20       ` Arnd Bergmann
2020-07-17 19:20         ` Arnd Bergmann
2020-07-17 16:12   ` [GIT PULL 6/7] ARM: tegra: Default configuration " Thierry Reding
2020-07-17 16:12     ` Thierry Reding
     [not found]     ` <20200717161300.1661002-6-thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2020-07-17 19:24       ` Arnd Bergmann
2020-07-17 19:24         ` Arnd Bergmann
     [not found]         ` <CAK8P3a1niUF7xK_bmz=8NJbRGxs7iFzNnRgRS9H=bXpMqarsWg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-07-17 20:13           ` Dmitry Osipenko
2020-07-17 20:13             ` Dmitry Osipenko
     [not found]             ` <a6f83a03-3a8f-47d0-6770-fe0e2595cde5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2020-07-17 20:23               ` Arnd Bergmann
2020-07-17 20:23                 ` Arnd Bergmann
     [not found]                 ` <CAK8P3a3nSYfotK=0ZL9XqeMi-v0nqxFZnFKy4OAbvnc9qzN8Xw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-07-17 20:25                   ` Dmitry Osipenko
2020-07-17 20:25                     ` Dmitry Osipenko
2020-07-17 16:13   ` [GIT PULL 7/7] arm64: tegra: Device tree " Thierry Reding
2020-07-17 16:13     ` Thierry Reding

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=20200717161300.1661002-3-thierry.reding@gmail.com \
    --to=thierry.reding-re5jqeeqqe8avxtiumwx3w@public.gmane.org \
    --cc=arm-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=jonathanh-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org \
    --cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
    --cc=linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=soc-DgEjT+Ai2ygdnm+yROfE0A@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 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.