All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/8] Raspberry Pi 2 support.
@ 2015-12-16 23:55 ` Eric Anholt
  0 siblings, 0 replies; 76+ messages in thread
From: Eric Anholt @ 2015-12-16 23:55 UTC (permalink / raw)
  To: linux-rpi-kernel
  Cc: linux-arm-kernel, linux-kernel, Stephen Warren, Lee Jones,
	Florian Fainelli, devicetree, Rob Herring, Mark Rutland,
	Ian Campbell, Kumar Gala, bcm-kernel-feedback-list, Ray Jui,
	Scott Branden, Thomas Gleixner, Jason Cooper, Marc Zyngier,
	Eric Anholt

This is a major rewrite of the previous Raspberry Pi 2 submission.
SMP support is now included, and the DT includes are cleaned up to
avoid massive duplication.

The branch (based on 4.4-rc5, to get the USB regression fixes) can be
found at:

https://github.com/anholt/linux/tree/bcm2836-4.4

Andrea Merello (1):
  irq: bcm2836: Add SMP support for the 2836

Eric Anholt (7):
  irq: bcm2836: Fix initialization of the LOCAL_IRQ_CNT*IRQ timers
  dt-bindings: Add root properties for Raspberry Pi 2
  ARM: bcm2835: Split the DT for peripherals from the DT for the CPU
  ARM: bcm2835: Move the CPU/peripheral include out of common RPi DT.
  ARM: bcm2835: Add devicetree for bcm2836 and Raspberry Pi 2 B
  ARM: bcm2835: Add a compat string for bcm2836 machine probe
  ARM: bcm2835: Add Kconfig support for bcm2836

 .../devicetree/bindings/arm/bcm/brcm,bcm2835.txt   |   4 +
 arch/arm/Kconfig.debug                             |  10 +-
 arch/arm/boot/dts/Makefile                         |   3 +-
 arch/arm/boot/dts/bcm2835-rpi-a-plus.dts           |   1 +
 arch/arm/boot/dts/bcm2835-rpi-b-plus.dts           |   1 +
 arch/arm/boot/dts/bcm2835-rpi-b-rev2.dts           |   1 +
 arch/arm/boot/dts/bcm2835-rpi-b.dts                |   1 +
 arch/arm/boot/dts/bcm2835-rpi.dtsi                 |   2 -
 arch/arm/boot/dts/bcm2835.dtsi                     | 194 +--------------------
 ...{bcm2835-rpi-b-plus.dts => bcm2836-rpi-2-b.dts} |   9 +-
 arch/arm/boot/dts/bcm2836.dtsi                     |  77 ++++++++
 arch/arm/boot/dts/{bcm2835.dtsi => bcm283x.dtsi}   |   7 +-
 arch/arm/mach-bcm/Kconfig                          |   8 +-
 arch/arm/mach-bcm/board_bcm2835.c                  |   5 +
 drivers/irqchip/irq-bcm2836.c                      |  53 +++++-
 15 files changed, 168 insertions(+), 208 deletions(-)
 copy arch/arm/boot/dts/{bcm2835-rpi-b-plus.dts => bcm2836-rpi-2-b.dts} (72%)
 create mode 100644 arch/arm/boot/dts/bcm2836.dtsi
 copy arch/arm/boot/dts/{bcm2835.dtsi => bcm283x.dtsi} (96%)

-- 
2.6.2


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

end of thread, other threads:[~2016-01-03 21:53 UTC | newest]

Thread overview: 76+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-16 23:55 [PATCH v2 0/8] Raspberry Pi 2 support Eric Anholt
2015-12-16 23:55 ` Eric Anholt
2015-12-16 23:55 ` Eric Anholt
2015-12-16 23:55 ` [PATCH v2 1/8] irq: bcm2836: Fix initialization of the LOCAL_IRQ_CNT*IRQ timers Eric Anholt
2015-12-16 23:55   ` Eric Anholt
2015-12-16 23:55   ` Eric Anholt
2015-12-16 23:55 ` [PATCH v2 2/8] irq: bcm2836: Add SMP support for the 2836 Eric Anholt
2015-12-16 23:55   ` Eric Anholt
2015-12-16 23:55   ` Eric Anholt
2015-12-17  5:17   ` Baruch Siach
2015-12-17  5:17     ` Baruch Siach
2015-12-17  5:17     ` Baruch Siach
2015-12-16 23:55 ` [PATCH v2 3/8] dt-bindings: Add root properties for Raspberry Pi 2 Eric Anholt
2015-12-16 23:55   ` Eric Anholt
2015-12-16 23:55   ` Eric Anholt
2015-12-19  4:18   ` Rob Herring
2015-12-19  4:18     ` Rob Herring
2015-12-16 23:55 ` [PATCH v2 4/8] ARM: bcm2835: Split the DT for peripherals from the DT for the CPU Eric Anholt
2015-12-16 23:55   ` Eric Anholt
2015-12-18 10:00   ` Alexander Aring
2015-12-18 10:00     ` Alexander Aring
2015-12-21 23:09     ` Eric Anholt
2015-12-21 23:09       ` Eric Anholt
2015-12-21 23:09       ` Eric Anholt
2015-12-16 23:55 ` [PATCH v2 5/8] ARM: bcm2835: Move the CPU/peripheral include out of common RPi DT Eric Anholt
2015-12-16 23:55   ` Eric Anholt
2015-12-16 23:55 ` [PATCH v2 6/8] ARM: bcm2835: Add devicetree for bcm2836 and Raspberry Pi 2 B Eric Anholt
2015-12-16 23:55   ` Eric Anholt
2015-12-22 10:11   ` Alexander Aring
2015-12-22 10:11     ` Alexander Aring
2015-12-16 23:55 ` [PATCH v2 7/8] ARM: bcm2835: Add a compat string for bcm2836 machine probe Eric Anholt
2015-12-16 23:55   ` Eric Anholt
2015-12-16 23:55 ` [PATCH v2 8/8] ARM: bcm2835: Add Kconfig support for bcm2836 Eric Anholt
2015-12-16 23:55   ` Eric Anholt
2015-12-26 22:38   ` Eric Anholt
2015-12-26 22:38     ` Eric Anholt
2016-01-03 21:53   ` Noralf Trønnes
2016-01-03 21:53     ` Noralf Trønnes
2015-12-17  0:03 ` [PATCH v2 0/8] Raspberry Pi 2 support Arnd Bergmann
2015-12-17  0:03   ` Arnd Bergmann
2015-12-17  0:37   ` Eric Anholt
2015-12-17  0:37     ` Eric Anholt
2015-12-17  0:37     ` Eric Anholt
2015-12-17  8:48     ` Stefan Wahren
2015-12-17  8:48       ` Stefan Wahren
2015-12-17 10:26       ` Arnd Bergmann
2015-12-17 10:26         ` Arnd Bergmann
2015-12-17 10:26         ` Arnd Bergmann
2015-12-18 10:08 ` Alexander Aring
2015-12-18 10:08   ` Alexander Aring
2015-12-18 10:55   ` Alexander Aring
2015-12-18 10:55     ` Alexander Aring
2015-12-20 22:11   ` Alexander Aring
2015-12-20 22:11     ` Alexander Aring
2015-12-20 22:11     ` Alexander Aring
2015-12-21 23:07     ` Eric Anholt
2015-12-21 23:07       ` Eric Anholt
2015-12-22 14:26       ` Alexander Aring
2015-12-22 14:26         ` Alexander Aring
2015-12-22 14:26         ` Alexander Aring
2015-12-22 19:01         ` Eric Anholt
2015-12-22 19:01           ` Eric Anholt
2015-12-22 19:01           ` Eric Anholt
2015-12-26 21:38           ` Noralf Trønnes
2015-12-26 21:38             ` Noralf Trønnes
2015-12-21 23:11     ` Arnd Bergmann
2015-12-21 23:11       ` Arnd Bergmann
2015-12-22 14:20       ` Alexander Aring
2015-12-22 14:20         ` Alexander Aring
2015-12-22 14:20         ` Alexander Aring
2015-12-22 21:23         ` Arnd Bergmann
2015-12-22 21:23           ` Arnd Bergmann
2015-12-22 21:23           ` Arnd Bergmann
2015-12-25  0:01           ` Eric Anholt
2015-12-25  0:01             ` Eric Anholt
2015-12-25  0:01             ` Eric Anholt

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.