mbox

[GIT,PULL,1/4] Broadcom soc changes for 4.9

Message ID 1473213558-11782-1-git-send-email-f.fainelli@gmail.com
State New
Headers show

Pull-request

http://github.com/Broadcom/stblinux.git tags/arm-soc/for-4.9/soc

Message

Florian Fainelli Sept. 7, 2016, 1:59 a.m. UTC
The following changes since commit 29b4817d4018df78086157ea3a55c1d9424a7cfc:

  Linux 4.8-rc1 (2016-08-07 18:18:00 -0700)

are available in the git repository at:

  http://github.com/Broadcom/stblinux.git tags/arm-soc/for-4.9/soc

for you to fetch changes up to 4ebd50472899eb07d5dfc24f2015dce6fe3c5cb8:

  ARM: BCM53573: Initial support for Broadcom BCM53573 SoCs (2016-08-22 15:58:27 -0700)

----------------------------------------------------------------
This pull request contains Broadcom ARM-based SoC changes for 4.9, please pull
the following:

- Rafal adds preliminary support for the new BCM53573 Wi-Fi SoC based on a
  single core Cortex A7 and re-using a bunch of iProc peripherals

- Florian adds support for earlyprintk on Broadcom STB/CM ARM-based chips by
  reading the chip family_id value from a known location and deriving the UART
  based address

----------------------------------------------------------------
Florian Fainelli (1):
      ARM: brcmstb: Add earlyprintk support using run-time checks

Rafał Miłecki (1):
      ARM: BCM53573: Initial support for Broadcom BCM53573 SoCs

 MAINTAINERS                      |   7 ++
 arch/arm/Kconfig.debug           |  14 ++--
 arch/arm/include/debug/brcmstb.S | 145 +++++++++++++++++++++++++++++++++++++++
 arch/arm/mach-bcm/Kconfig        |  14 ++++
 arch/arm/mach-bcm/brcmstb.c      |  16 +++++
 5 files changed, 189 insertions(+), 7 deletions(-)
 create mode 100644 arch/arm/include/debug/brcmstb.S

Comments

Arnd Bergmann Sept. 14, 2016, 10:26 p.m. UTC | #1
On Tuesday, September 6, 2016 6:59:15 PM CEST Florian Fainelli wrote:
> This pull request contains Broadcom ARM-based SoC changes for 4.9, please pull
> the following:
> 
> - Rafal adds preliminary support for the new BCM53573 Wi-Fi SoC based on a
>   single core Cortex A7 and re-using a bunch of iProc peripherals
> 
> - Florian adds support for earlyprintk on Broadcom STB/CM ARM-based chips by
>   reading the chip family_id value from a known location and deriving the UART
>   based address
> 

Pulled into next/soc, thanks!

Regarding the debug_ll code, having the autodetection is nice, but note
that the fashionable way to handle this now is to use earlycon instead
of earlyprintk, getting all the settings from DT, so you shouldn't
really need this any more unless you are debugging extremely early
startup code or the decompressor.

	Arnd