linux-omap.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] Fixes for omaps for v5.6-rc cycle
@ 2020-03-13 20:39 Tony Lindgren
  2020-03-13 20:47 ` Tony Lindgren
  0 siblings, 1 reply; 4+ messages in thread
From: Tony Lindgren @ 2020-03-13 20:39 UTC (permalink / raw)
  To: soc; +Cc: arm, linux-omap, linux-arm-kernel, Tony Lindgren

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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] Fixes for omaps for v5.6-rc cycle
  2020-03-13 20:39 [GIT PULL] Fixes for omaps for v5.6-rc cycle Tony Lindgren
@ 2020-03-13 20:47 ` Tony Lindgren
  0 siblings, 0 replies; 4+ messages in thread
From: Tony Lindgren @ 2020-03-13 20:47 UTC (permalink / raw)
  To: soc; +Cc: arm, linux-omap, linux-arm-kernel

* Tony Lindgren <tony@atomide.com> [200313 20:40]:
> 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

Here the diffstat is off a bit, the led_bl.c changes
have been already merged in v5.6-rc5.

Regards,

Tony

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [GIT PULL] Fixes for omaps for v5.6-rc cycle
@ 2020-03-18 23:48 Tony Lindgren
  0 siblings, 0 replies; 4+ messages in thread
From: Tony Lindgren @ 2020-03-18 23:48 UTC (permalink / raw)
  To: soc; +Cc: arm, linux-omap, linux-arm-kernel, Tony Lindgren

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

The following changes since commit cfb5d65f25959f724081bae8445a0241db606af6:

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

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-rc6-signed

for you to fetch changes up to dfa7ea303f56a3a8b1ed3b91ef35af2da67ca4ee:

  ARM: dts: omap5: Add bus_dma_limit for L3 bus (2020-03-17 10:01:28 -0700)

----------------------------------------------------------------
Few more fixes for omaps

Just few dts fixes:

- A fix droid4 touchscreen stopping working with lost gpio interrupts

- Also limit omap5 dma range similar to what we've recently done for dra7

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

Tony Lindgren (1):
      ARM: dts: omap4-droid4: Fix lost touchscreen interrupts

 arch/arm/boot/dts/motorola-mapphone-common.dtsi | 2 +-
 arch/arm/boot/dts/omap5.dtsi                    | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [GIT PULL] Fixes for omaps for v5.6-rc cycle
@ 2020-02-28 15:26 Tony Lindgren
  0 siblings, 0 replies; 4+ messages in thread
From: Tony Lindgren @ 2020-02-28 15:26 UTC (permalink / raw)
  To: soc; +Cc: arm, linux-omap, linux-arm-kernel, Tony Lindgren

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

The following changes since commit bb6d3fb354c5ee8d6bde2d576eb7220ea09862b9:

  Linux 5.6-rc1 (2020-02-09 16:08:48 -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-rc3-signed

for you to fetch changes up to 51c22d7b40dca8b39a33b2c3b03f13122a2a1af3:

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

----------------------------------------------------------------
Few fixes for omaps for v5.6-rc cycle

This series of changes contains few code fixes for issues
recently discovered:

- A build fix for ARMv6 only configs when CONFIG_HAVE_ARM_SMCCC is
  not set

- A fix for ti-sysc quirk handling for 1-wire hdq reset

And a handful of dts fixes that I had queued up and should
have already sent earlier instead of waiting for the code
fixes to get sorted out:

- Fix naming of vsys_3v3 regulator for dra7-evm

- Fix incorrect OPP node names for am437x-idk-evm

- Fix IPU1 mux clock parent source for dra7

- Add missing PWM property for dra7 timers 13 to 16

- Add missing dma-ranges for dra7 PCIe nodes

- Fix mmc3 max-frequency for dra76x

----------------------------------------------------------------
Faiz Abbas (1):
      arm: dts: dra76x: Fix mmc3 max-frequency

Grygorii Strashko (1):
      ARM: dts: dra7-l4: mark timer13-16 as pwm capable

Kishon Vijay Abraham I (1):
      ARM: dts: dra7: Add "dma-ranges" property to PCIe RC DT nodes

Peter Ujfalusi (1):
      ARM: dts: dra7-evm: Rename evm_3v3 regulator to vsys_3v3

Suman Anna (2):
      ARM: dts: am437x-idk-evm: Fix incorrect OPP node names
      ARM: dts: dra7xx-clocks: Fixup IPU1 mux clock parent source

Tony Lindgren (3):
      bus: ti-sysc: Fix 1-wire reset quirk
      Merge tag 'hdq-fix' into omap-for-v5.6/fixes-rc2
      ARM: OMAP2+: Fix compile if CONFIG_HAVE_ARM_SMCCC is not set

 arch/arm/boot/dts/am437x-idk-evm.dts |  4 ++--
 arch/arm/boot/dts/dra7-evm.dts       |  4 ++--
 arch/arm/boot/dts/dra7-l4.dtsi       |  4 ++++
 arch/arm/boot/dts/dra7.dtsi          |  2 ++
 arch/arm/boot/dts/dra76x.dtsi        |  5 +++++
 arch/arm/boot/dts/dra7xx-clocks.dtsi | 12 ++----------
 arch/arm/mach-omap2/Makefile         |  2 +-
 arch/arm/mach-omap2/io.c             |  2 --
 drivers/bus/ti-sysc.c                |  4 ++--
 9 files changed, 20 insertions(+), 19 deletions(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-03-18 23:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-13 20:39 [GIT PULL] Fixes for omaps for v5.6-rc cycle 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-02-28 15:26 Tony Lindgren

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).