mbox

[GIT,PULL,2/2] Broadcom drivers changes for 4.4 (try 2)

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

Pull-request

https://github.com/Broadcom/stblinux tags/arm/soc/for-4.4/rpi-drivers

Message

Florian Fainelli Oct. 24, 2015, 8:36 p.m. UTC
The following changes since commit 6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f:

  Linux 4.3-rc1 (2015-09-12 16:35:56 -0700)

are available in the git repository at:

  https://github.com/Broadcom/stblinux tags/arm/soc/for-4.4/rpi-drivers

for you to fetch changes up to 16134b3bc317c571e953d18196acf0a92afda5ff:

  ARM: bcm2835: add mutual inclusion protection (2015-10-24 13:15:58 -0700)

----------------------------------------------------------------
This pull request contains the Raspberry Pi firmware driver, for communicating
with the VPU which has exclusive control of some of the peripherals.

Eric adds the actual firmware driver and Alexander fixes the header file which
was missing include guards.

----------------------------------------------------------------
Alexander Aring (1):
      ARM: bcm2835: add mutual inclusion protection

Eric Anholt (1):
      ARM: bcm2835: Add the Raspberry Pi firmware driver

 drivers/firmware/Kconfig                   |   7 +
 drivers/firmware/Makefile                  |   1 +
 drivers/firmware/raspberrypi.c             | 260 +++++++++++++++++++++++++++++
 include/soc/bcm2835/raspberrypi-firmware.h | 120 +++++++++++++
 4 files changed, 388 insertions(+)
 create mode 100644 drivers/firmware/raspberrypi.c
 create mode 100644 include/soc/bcm2835/raspberrypi-firmware.h

Comments

Olof Johansson Oct. 26, 2015, 5:27 a.m. UTC | #1
On Sat, Oct 24, 2015 at 01:36:20PM -0700, Florian Fainelli wrote:
> The following changes since commit 6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f:
> 
>   Linux 4.3-rc1 (2015-09-12 16:35:56 -0700)
> 
> are available in the git repository at:
> 
>   https://github.com/Broadcom/stblinux tags/arm/soc/for-4.4/rpi-drivers
> 
> for you to fetch changes up to 16134b3bc317c571e953d18196acf0a92afda5ff:
> 
>   ARM: bcm2835: add mutual inclusion protection (2015-10-24 13:15:58 -0700)

Merged, but I noticed that the entries in drivers/firmware/Makefile and
drivers/firmware/Kconfig weren't added alphabetically (I know, Kconfig has an
inversion between D and E already).

When it's just appended, there's easily add-add conflicts, which is why
I noticed.

I fixed up when merging, but please keep an eye on new additions in
the future.


-Olof