All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL 1/3] ARM: bcm2835: device tree updates
@ 2013-04-05  1:28 Stephen Warren
  2013-04-05  1:28 ` [GIT PULL 2/3] ARM: bcm2835: convert to multi-platform Stephen Warren
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Stephen Warren @ 2013-04-05  1:28 UTC (permalink / raw)
  To: linux-arm-kernel

This branch adds two devices to the BCM2835 SoC device tree: the SPI
controller and the HW random number generator.

The SPI controller isn't actually instantiated in the Raspberry Pi
device tree, since there are no on-board SPI devices; it's up to the
end-user to modify their own device-tree to describe whatever they
have attached.

----------------------------------------------------------------

The following changes since commit f6161aa153581da4a3867a2d1a7caf4be19b6ec9:

  Linux 3.9-rc2

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git bcm2835-for-3.10-dt

for you to fetch changes up to a1bf70828ea0547b4e3d7eaeb63ae3eb2400cb93:

  ARM: bcm2835: add Broadcom BCM2835 RNG to the device tree

----------------------------------------------------------------

Lubomir Rintel (1):
      ARM: bcm2835: add Broadcom BCM2835 RNG to the device tree

Stephen Warren (1):
      ARM: bcm2835: add SPI device to DT

 arch/arm/boot/dts/bcm2835.dtsi |   22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

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

* [GIT PULL 2/3] ARM: bcm2835: convert to multi-platform
  2013-04-05  1:28 [GIT PULL 1/3] ARM: bcm2835: device tree updates Stephen Warren
@ 2013-04-05  1:28 ` Stephen Warren
  2013-04-05  1:28 ` [GIT PULL 3/3] ARM: bcm2835: defconfig updates Stephen Warren
  2013-04-08 18:29 ` [GIT PULL 1/3] ARM: bcm2835: device tree updates Arnd Bergmann
  2 siblings, 0 replies; 4+ messages in thread
From: Stephen Warren @ 2013-04-05  1:28 UTC (permalink / raw)
  To: linux-arm-kernel

This branch (patch) converts BCM2835 to support being built into a
multi-platform single zImage. This mostly entails a few small Kconfig
tweaks, move the earlyprintk implementation to the standard multi-
platform location, and deleting some unnecessary files.

----------------------------------------------------------------

The following changes since commit f6161aa153581da4a3867a2d1a7caf4be19b6ec9:

  Linux 3.9-rc2

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git bcm2835-for-3.10-multiplatform

for you to fetch changes up to f1ac922dec7ed36659344eadc65b9c06efe14d7f:

  ARM: bcm2835: convert to multi-platform

----------------------------------------------------------------

Stephen Warren (1):
      ARM: bcm2835: convert to multi-platform

 arch/arm/Kconfig                                |   22 +--------
 arch/arm/Kconfig.debug                          |    5 ++
 arch/arm/configs/bcm2835_defconfig              |    2 +
 .../debug-macro.S => include/debug/bcm2835.S}   |    3 +-
 arch/arm/mach-bcm2835/Kconfig                   |   15 ++++++
 arch/arm/mach-bcm2835/Makefile.boot             |    1 -
 arch/arm/mach-bcm2835/bcm2835.c                 |    6 ++-
 .../arm/mach-bcm2835/include/mach/bcm2835_soc.h |   29 ------------
 arch/arm/mach-bcm2835/include/mach/gpio.h       |    1 -
 arch/arm/mach-bcm2835/include/mach/timex.h      |   26 -----------
 arch/arm/mach-bcm2835/include/mach/uncompress.h |   44 ------------------
 11 files changed, 30 insertions(+), 124 deletions(-)
 rename arch/arm/{mach-bcm2835/include/mach/debug-macro.S => include/debug/bcm2835.S} (86%)
 create mode 100644 arch/arm/mach-bcm2835/Kconfig
 delete mode 100644 arch/arm/mach-bcm2835/Makefile.boot
 delete mode 100644 arch/arm/mach-bcm2835/include/mach/bcm2835_soc.h
 delete mode 100644 arch/arm/mach-bcm2835/include/mach/gpio.h
 delete mode 100644 arch/arm/mach-bcm2835/include/mach/timex.h
 delete mode 100644 arch/arm/mach-bcm2835/include/mach/uncompress.h

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

* [GIT PULL 3/3] ARM: bcm2835: defconfig updates
  2013-04-05  1:28 [GIT PULL 1/3] ARM: bcm2835: device tree updates Stephen Warren
  2013-04-05  1:28 ` [GIT PULL 2/3] ARM: bcm2835: convert to multi-platform Stephen Warren
@ 2013-04-05  1:28 ` Stephen Warren
  2013-04-08 18:29 ` [GIT PULL 1/3] ARM: bcm2835: device tree updates Arnd Bergmann
  2 siblings, 0 replies; 4+ messages in thread
From: Stephen Warren @ 2013-04-05  1:28 UTC (permalink / raw)
  To: linux-arm-kernel

This branch (patch) updates bcm2835_defconfig to enable new features that
were added this kernel cycle. Namely, the SPI controller and HW random
number generator.

----------------------------------------------------------------

The following changes since commit f6161aa153581da4a3867a2d1a7caf4be19b6ec9:

  Linux 3.9-rc2

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git bcm2835-for-3.10-defconfig

for you to fetch changes up to d8d6aec6d560fb66a25aad567f0630baee6785a1:

  ARM: bcm2835: defconfig updates

----------------------------------------------------------------

Stephen Warren (1):
      ARM: bcm2835: defconfig updates

 arch/arm/configs/bcm2835_defconfig |    9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

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

* [GIT PULL 1/3] ARM: bcm2835: device tree updates
  2013-04-05  1:28 [GIT PULL 1/3] ARM: bcm2835: device tree updates Stephen Warren
  2013-04-05  1:28 ` [GIT PULL 2/3] ARM: bcm2835: convert to multi-platform Stephen Warren
  2013-04-05  1:28 ` [GIT PULL 3/3] ARM: bcm2835: defconfig updates Stephen Warren
@ 2013-04-08 18:29 ` Arnd Bergmann
  2 siblings, 0 replies; 4+ messages in thread
From: Arnd Bergmann @ 2013-04-08 18:29 UTC (permalink / raw)
  To: linux-arm-kernel

On Friday 05 April 2013, Stephen Warren wrote:
> This branch adds two devices to the BCM2835 SoC device tree: the SPI
> controller and the HW random number generator.
> 
> The SPI controller isn't actually instantiated in the Raspberry Pi
> device tree, since there are no on-board SPI devices; it's up to the
> end-user to modify their own device-tree to describe whatever they
> have attached.
> 

Pulled all three branches, thanks!

	Arnd

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

end of thread, other threads:[~2013-04-08 18:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-04-05  1:28 [GIT PULL 1/3] ARM: bcm2835: device tree updates Stephen Warren
2013-04-05  1:28 ` [GIT PULL 2/3] ARM: bcm2835: convert to multi-platform Stephen Warren
2013-04-05  1:28 ` [GIT PULL 3/3] ARM: bcm2835: defconfig updates Stephen Warren
2013-04-08 18:29 ` [GIT PULL 1/3] ARM: bcm2835: device tree updates Arnd Bergmann

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.