soc.lore.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] Fixes for omaps for v5.11-rc cycle
@ 2021-01-28  7:43 Tony Lindgren
  2021-01-28  7:43 ` Tony Lindgren
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Tony Lindgren @ 2021-01-28  7:43 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 5c8fe583cce542aa0b84adc939ce85293de36e5e:

  Linux 5.11-rc1 (2020-12-27 15:30:22 -0800)

are available in the Git repository at:

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

for you to fetch changes up to 177d8f1f7f47fe7c18ceb1d87893890d7e9c95a7:

  ARM: dts: omap4-droid4: Fix lost keypad slide interrupts for droid4 (2021-01-25 10:24:26 +0200)

----------------------------------------------------------------
Fixes for omaps for v5.11-rc cycle

The recent changes to switch SoCs to boot with ti-sysc interconnect
target module driver and genpd caused few regressions:

- The omap_prm reset driver needs to clear any reset bits deasserted by
  the bootloader or kexec boot for the three reset bit cases. Otherwise
  we can have an oops with accelerators starting to boot with potentially
  unconfigured MMU for example

- Custom kernel configs are not automatically selecting simple-pm-bus
  driver that we now need to probe interconnects so we need to select it
  always

- We are not passing legacy platform data in auxdata with simple-pm-bus
  like we do for simple-bus. We need to pass auxdata to simple-pm-bus so
  it can pass it to of_platform_populate()

Then recent RCU changes started causing splats for cpuidle44xx that now
need RCU_NONIDLE added to the calls in several places

And then we have few device specific fixes:

- We need to remove legacy spi-cs-hig for gta04 display to work, and
  set the gpio to active low

- Omap1 specific ohci-omap needs to call gpio_free()

- Droid4 needs to use padconf interrupt for the slider as the edge
  gpio interrupts may be lost for deeper idle states

----------------------------------------------------------------
H. Nikolaus Schaller (2):
      DTS: ARM: gta04: remove legacy spi-cs-high to make display work again
      ARM: dts; gta04: SPI panel chip select is active low

Linus Walleij (1):
      ARM: OMAP1: OSK: fix ohci-omap breakage

Tony Lindgren (7):
      Merge branch 'fixes-omap3' into fixes
      soc: ti: omap-prm: Fix boot time errors for rst_map_012 bits 0 and 1
      ARM: OMAP2+: Fix suspcious RCU usage splats for omap_enter_idle_coupled
      Merge branch 'cpuidle-fix' into fixes
      ARM: OMAP2+: Fix booting for am335x after moving to simple-pm-bus
      drivers: bus: simple-pm-bus: Fix compatibility with simple-bus for auxdata
      ARM: dts: omap4-droid4: Fix lost keypad slide interrupts for droid4

 arch/arm/boot/dts/omap3-gta04.dtsi       |  3 +--
 arch/arm/boot/dts/omap3-n950-n9.dtsi     |  8 ++++++++
 arch/arm/boot/dts/omap4-droid4-xt894.dts |  5 +++++
 arch/arm/mach-omap1/board-osk.c          |  2 ++
 arch/arm/mach-omap2/Kconfig              | 28 ++++++++++++++--------------
 arch/arm/mach-omap2/cpuidle44xx.c        | 16 ++++++++--------
 arch/arm/mach-omap2/omap_device.c        |  8 +++++---
 arch/arm/mach-omap2/pdata-quirks.c       |  1 +
 arch/arm/mach-omap2/pmic-cpcap.c         |  2 +-
 drivers/bus/simple-pm-bus.c              |  3 ++-
 drivers/soc/ti/omap_prm.c                | 11 +++++++++++
 11 files changed, 58 insertions(+), 29 deletions(-)

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

* [GIT PULL] Fixes for omaps for v5.11-rc cycle
  2021-01-28  7:43 [GIT PULL] Fixes for omaps for v5.11-rc cycle Tony Lindgren
@ 2021-01-28  7:43 ` Tony Lindgren
  2021-01-28 14:40 ` patchwork-bot+linux-soc
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Tony Lindgren @ 2021-01-28  7:43 UTC (permalink / raw)
  To: soc; +Cc: Tony Lindgren, linux-omap, arm, linux-arm-kernel

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

The following changes since commit 5c8fe583cce542aa0b84adc939ce85293de36e5e:

  Linux 5.11-rc1 (2020-12-27 15:30:22 -0800)

are available in the Git repository at:

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

for you to fetch changes up to 177d8f1f7f47fe7c18ceb1d87893890d7e9c95a7:

  ARM: dts: omap4-droid4: Fix lost keypad slide interrupts for droid4 (2021-01-25 10:24:26 +0200)

----------------------------------------------------------------
Fixes for omaps for v5.11-rc cycle

The recent changes to switch SoCs to boot with ti-sysc interconnect
target module driver and genpd caused few regressions:

- The omap_prm reset driver needs to clear any reset bits deasserted by
  the bootloader or kexec boot for the three reset bit cases. Otherwise
  we can have an oops with accelerators starting to boot with potentially
  unconfigured MMU for example

- Custom kernel configs are not automatically selecting simple-pm-bus
  driver that we now need to probe interconnects so we need to select it
  always

- We are not passing legacy platform data in auxdata with simple-pm-bus
  like we do for simple-bus. We need to pass auxdata to simple-pm-bus so
  it can pass it to of_platform_populate()

Then recent RCU changes started causing splats for cpuidle44xx that now
need RCU_NONIDLE added to the calls in several places

And then we have few device specific fixes:

- We need to remove legacy spi-cs-hig for gta04 display to work, and
  set the gpio to active low

- Omap1 specific ohci-omap needs to call gpio_free()

- Droid4 needs to use padconf interrupt for the slider as the edge
  gpio interrupts may be lost for deeper idle states

----------------------------------------------------------------
H. Nikolaus Schaller (2):
      DTS: ARM: gta04: remove legacy spi-cs-high to make display work again
      ARM: dts; gta04: SPI panel chip select is active low

Linus Walleij (1):
      ARM: OMAP1: OSK: fix ohci-omap breakage

Tony Lindgren (7):
      Merge branch 'fixes-omap3' into fixes
      soc: ti: omap-prm: Fix boot time errors for rst_map_012 bits 0 and 1
      ARM: OMAP2+: Fix suspcious RCU usage splats for omap_enter_idle_coupled
      Merge branch 'cpuidle-fix' into fixes
      ARM: OMAP2+: Fix booting for am335x after moving to simple-pm-bus
      drivers: bus: simple-pm-bus: Fix compatibility with simple-bus for auxdata
      ARM: dts: omap4-droid4: Fix lost keypad slide interrupts for droid4

 arch/arm/boot/dts/omap3-gta04.dtsi       |  3 +--
 arch/arm/boot/dts/omap3-n950-n9.dtsi     |  8 ++++++++
 arch/arm/boot/dts/omap4-droid4-xt894.dts |  5 +++++
 arch/arm/mach-omap1/board-osk.c          |  2 ++
 arch/arm/mach-omap2/Kconfig              | 28 ++++++++++++++--------------
 arch/arm/mach-omap2/cpuidle44xx.c        | 16 ++++++++--------
 arch/arm/mach-omap2/omap_device.c        |  8 +++++---
 arch/arm/mach-omap2/pdata-quirks.c       |  1 +
 arch/arm/mach-omap2/pmic-cpcap.c         |  2 +-
 drivers/bus/simple-pm-bus.c              |  3 ++-
 drivers/soc/ti/omap_prm.c                | 11 +++++++++++
 11 files changed, 58 insertions(+), 29 deletions(-)

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

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

* Re: [GIT PULL] Fixes for omaps for v5.11-rc cycle
  2021-01-28  7:43 [GIT PULL] Fixes for omaps for v5.11-rc cycle Tony Lindgren
  2021-01-28  7:43 ` Tony Lindgren
@ 2021-01-28 14:40 ` patchwork-bot+linux-soc
  2021-01-28 14:40 ` patchwork-bot+linux-soc
  2021-01-30 11:36 ` Arnd Bergmann
  3 siblings, 0 replies; 6+ messages in thread
From: patchwork-bot+linux-soc @ 2021-01-28 14:40 UTC (permalink / raw)
  To: Tony Lindgren; +Cc: soc

Hello:

This pull request was applied to soc/soc.git (refs/heads/for-next):

On Thu, 28 Jan 2021 09:43:50 +0200 you wrote:
> From: "Tony Lindgren" <tony@atomide.com>
> 
> The following changes since commit 5c8fe583cce542aa0b84adc939ce85293de36e5e:
> 
>   Linux 5.11-rc1 (2020-12-27 15:30:22 -0800)
> 
> are available in the Git repository at:
> 
> [...]

Here is the summary with links:
  - [GIT,PULL] Fixes for omaps for v5.11-rc cycle
    https://git.kernel.org/soc/soc/c/2a3e487a3e53

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

* Re: [GIT PULL] Fixes for omaps for v5.11-rc cycle
  2021-01-28  7:43 [GIT PULL] Fixes for omaps for v5.11-rc cycle Tony Lindgren
  2021-01-28  7:43 ` Tony Lindgren
  2021-01-28 14:40 ` patchwork-bot+linux-soc
@ 2021-01-28 14:40 ` patchwork-bot+linux-soc
  2021-01-30 11:36 ` Arnd Bergmann
  3 siblings, 0 replies; 6+ messages in thread
From: patchwork-bot+linux-soc @ 2021-01-28 14:40 UTC (permalink / raw)
  To: Tony Lindgren; +Cc: soc

Hello:

This pull request was applied to soc/soc.git (refs/heads/arm/fixes):

On Thu, 28 Jan 2021 09:43:50 +0200 you wrote:
> From: "Tony Lindgren" <tony@atomide.com>
> 
> The following changes since commit 5c8fe583cce542aa0b84adc939ce85293de36e5e:
> 
>   Linux 5.11-rc1 (2020-12-27 15:30:22 -0800)
> 
> are available in the Git repository at:
> 
> [...]

Here is the summary with links:
  - [GIT,PULL] Fixes for omaps for v5.11-rc cycle
    https://git.kernel.org/soc/soc/c/2a3e487a3e53

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

* Re: [GIT PULL] Fixes for omaps for v5.11-rc cycle
  2021-01-28  7:43 [GIT PULL] Fixes for omaps for v5.11-rc cycle Tony Lindgren
                   ` (2 preceding siblings ...)
  2021-01-28 14:40 ` patchwork-bot+linux-soc
@ 2021-01-30 11:36 ` Arnd Bergmann
  2021-01-30 11:36   ` Arnd Bergmann
  3 siblings, 1 reply; 6+ messages in thread
From: Arnd Bergmann @ 2021-01-30 11:36 UTC (permalink / raw)
  To: soc, Tony Lindgren; +Cc: Arnd Bergmann, linux-arm-kernel, linux-omap, arm

From: Arnd Bergmann <arnd@arndb.de>

On Thu, 28 Jan 2021 09:43:50 +0200, Tony Lindgren wrote:
> The following changes since commit 5c8fe583cce542aa0b84adc939ce85293de36e5e:
> 
>   Linux 5.11-rc1 (2020-12-27 15:30:22 -0800)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v5.11/fixes-rc5
> 
> [...]

Merged into arm/fixes, thanks!

merge commit: 2a3e487a3e538b3a87d0a4ea71f185437c38e55e

       Arnd

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

* Re: [GIT PULL] Fixes for omaps for v5.11-rc cycle
  2021-01-30 11:36 ` Arnd Bergmann
@ 2021-01-30 11:36   ` Arnd Bergmann
  0 siblings, 0 replies; 6+ messages in thread
From: Arnd Bergmann @ 2021-01-30 11:36 UTC (permalink / raw)
  To: soc, Tony Lindgren; +Cc: linux-omap, linux-arm-kernel, Arnd Bergmann, arm

From: Arnd Bergmann <arnd@arndb.de>

On Thu, 28 Jan 2021 09:43:50 +0200, Tony Lindgren wrote:
> The following changes since commit 5c8fe583cce542aa0b84adc939ce85293de36e5e:
> 
>   Linux 5.11-rc1 (2020-12-27 15:30:22 -0800)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v5.11/fixes-rc5
> 
> [...]

Merged into arm/fixes, thanks!

merge commit: 2a3e487a3e538b3a87d0a4ea71f185437c38e55e

       Arnd

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

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

end of thread, other threads:[~2021-01-30 11:38 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-28  7:43 [GIT PULL] Fixes for omaps for v5.11-rc cycle Tony Lindgren
2021-01-28  7:43 ` Tony Lindgren
2021-01-28 14:40 ` patchwork-bot+linux-soc
2021-01-28 14:40 ` patchwork-bot+linux-soc
2021-01-30 11:36 ` Arnd Bergmann
2021-01-30 11:36   ` Arnd Bergmann

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