All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tony Lindgren <tony@atomide.com>
To: soc@kernel.org
Cc: arm@kernel.org, linux-omap@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	"Tony Lindgren" <tony@atomide.com>
Subject: [GIT PULL] Fixes for omaps for v5.6-rc cycle
Date: Fri, 13 Mar 2020 13:39:57 -0700	[thread overview]
Message-ID: <pull-1584131971-332655@atomide.com> (raw)

From: "Tony Lindgren" <tony@atomide.com>

The following changes since commit 51c22d7b40dca8b39a33b2c3b03f13122a2a1af3:

  ARM: OMAP2+: Fix compile if CONFIG_HAVE_ARM_SMCCC is not set (2020-02-26 10:49:25 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v5.6/fixes-rc5-signed

for you to fetch changes up to cfb5d65f25959f724081bae8445a0241db606af6:

  ARM: dts: dra7: Add bus_dma_limit for L3 bus (2020-03-13 07:40:55 -0700)

----------------------------------------------------------------
Fixes for omap variants for v5.6-rc cycle

- Add bus_dma_limit for dra7 that fixes a SATA controller issue trying
  to do 64-bit DMA on LPAE kernels. We first had this only for SATA, but
  decided on the mailings lists that it applies to the whole interconnect

- Add missing quirk handling for lcdc on am335x to fix a suspend/resume
  issue. Note that this fix causes a minor merge conflict with patches
  pending in Linux next that I've already resolved in my updated
  omap-for-v5.7/ti-sysc branch, so I'll send a separate pull request for
  that

- Fix a regression for n900 onenand timings that caused onenand to
  not work depending on the version of onenand manufacturer

- Fix a regression for dm814x and j5eco for Ethernet that was again
  caused by the earlier changes to disable phy delay for RGMII mode
  but only recently noticed

----------------------------------------------------------------
Arthur Demchenkov (1):
      ARM: dts: N900: fix onenand timings

Roger Quadros (1):
      ARM: dts: dra7: Add bus_dma_limit for L3 bus

Tomi Valkeinen (1):
      backlight: add led-backlight driver

Tony Lindgren (6):
      ARM: dts: droid4: Configure LED backlight for lm3532
      Merge branch 'omap-for-v5.6/fixes-rc2' into fixes
      Merge branch 'omap-for-v5.6/fixes-rc3' into fixes
      ARM: dts: Fix dm814x Ethernet by changing to use rgmii-id mode
      bus: ti-sysc: Fix quirk flags for lcdc on am335x
      Merge branch 'fix-lcdc-quirk' into fixes

 arch/arm/boot/dts/dm8148-evm.dts                |   4 +-
 arch/arm/boot/dts/dm8148-t410.dts               |   4 +-
 arch/arm/boot/dts/dra62x-j5eco-evm.dts          |   4 +-
 arch/arm/boot/dts/dra7.dtsi                     |   1 +
 arch/arm/boot/dts/motorola-mapphone-common.dtsi |  13 +-
 arch/arm/boot/dts/omap3-n900.dts                |  44 ++--
 arch/arm/configs/omap2plus_defconfig            |   1 +
 drivers/bus/ti-sysc.c                           |   3 +-
 drivers/video/backlight/Kconfig                 |   7 +
 drivers/video/backlight/Makefile                |   1 +
 drivers/video/backlight/led_bl.c                | 260 ++++++++++++++++++++++++
 11 files changed, 317 insertions(+), 25 deletions(-)
 create mode 100644 drivers/video/backlight/led_bl.c

WARNING: multiple messages have this Message-ID (diff)
From: Tony Lindgren <tony@atomide.com>
To: soc@kernel.org
Cc: Tony Lindgren <tony@atomide.com>,
	linux-omap@vger.kernel.org, arm@kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL] Fixes for omaps for v5.6-rc cycle
Date: Fri, 13 Mar 2020 13:39:57 -0700	[thread overview]
Message-ID: <pull-1584131971-332655@atomide.com> (raw)

From: "Tony Lindgren" <tony@atomide.com>

The following changes since commit 51c22d7b40dca8b39a33b2c3b03f13122a2a1af3:

  ARM: OMAP2+: Fix compile if CONFIG_HAVE_ARM_SMCCC is not set (2020-02-26 10:49:25 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v5.6/fixes-rc5-signed

for you to fetch changes up to cfb5d65f25959f724081bae8445a0241db606af6:

  ARM: dts: dra7: Add bus_dma_limit for L3 bus (2020-03-13 07:40:55 -0700)

----------------------------------------------------------------
Fixes for omap variants for v5.6-rc cycle

- Add bus_dma_limit for dra7 that fixes a SATA controller issue trying
  to do 64-bit DMA on LPAE kernels. We first had this only for SATA, but
  decided on the mailings lists that it applies to the whole interconnect

- Add missing quirk handling for lcdc on am335x to fix a suspend/resume
  issue. Note that this fix causes a minor merge conflict with patches
  pending in Linux next that I've already resolved in my updated
  omap-for-v5.7/ti-sysc branch, so I'll send a separate pull request for
  that

- Fix a regression for n900 onenand timings that caused onenand to
  not work depending on the version of onenand manufacturer

- Fix a regression for dm814x and j5eco for Ethernet that was again
  caused by the earlier changes to disable phy delay for RGMII mode
  but only recently noticed

----------------------------------------------------------------
Arthur Demchenkov (1):
      ARM: dts: N900: fix onenand timings

Roger Quadros (1):
      ARM: dts: dra7: Add bus_dma_limit for L3 bus

Tomi Valkeinen (1):
      backlight: add led-backlight driver

Tony Lindgren (6):
      ARM: dts: droid4: Configure LED backlight for lm3532
      Merge branch 'omap-for-v5.6/fixes-rc2' into fixes
      Merge branch 'omap-for-v5.6/fixes-rc3' into fixes
      ARM: dts: Fix dm814x Ethernet by changing to use rgmii-id mode
      bus: ti-sysc: Fix quirk flags for lcdc on am335x
      Merge branch 'fix-lcdc-quirk' into fixes

 arch/arm/boot/dts/dm8148-evm.dts                |   4 +-
 arch/arm/boot/dts/dm8148-t410.dts               |   4 +-
 arch/arm/boot/dts/dra62x-j5eco-evm.dts          |   4 +-
 arch/arm/boot/dts/dra7.dtsi                     |   1 +
 arch/arm/boot/dts/motorola-mapphone-common.dtsi |  13 +-
 arch/arm/boot/dts/omap3-n900.dts                |  44 ++--
 arch/arm/configs/omap2plus_defconfig            |   1 +
 drivers/bus/ti-sysc.c                           |   3 +-
 drivers/video/backlight/Kconfig                 |   7 +
 drivers/video/backlight/Makefile                |   1 +
 drivers/video/backlight/led_bl.c                | 260 ++++++++++++++++++++++++
 11 files changed, 317 insertions(+), 25 deletions(-)
 create mode 100644 drivers/video/backlight/led_bl.c

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

             reply	other threads:[~2020-03-13 20:40 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-13 20:39 Tony Lindgren [this message]
2020-03-13 20:39 ` [GIT PULL] Fixes for omaps for v5.6-rc cycle Tony Lindgren
2020-03-13 20:47 ` Tony Lindgren
2020-03-13 20:47   ` Tony Lindgren
  -- strict thread matches above, loose matches on Subject: below --
2020-03-18 23:48 Tony Lindgren
2020-03-18 23:48 ` Tony Lindgren
2020-02-28 15:26 Tony Lindgren
2020-02-28 15:26 ` 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=pull-1584131971-332655@atomide.com \
    --to=tony@atomide.com \
    --cc=arm@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=soc@kernel.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.