From 220e6cf7b793d702596506a8c4bf1f4fd4040df1 Mon Sep 17 00:00:00 2001 From: Rob Herring Date: Tue, 7 Jun 2011 10:02:55 -0500 Subject: ARM: add Highbank core platform support This adds basic support for the Calxeda Highbank platform. Signed-off-by: Rob Herring Reviewed-by: Jamie Iles Reviewed-by: Shawn Guo --- arch/arm/mach-highbank/Makefile | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 arch/arm/mach-highbank/Makefile (limited to 'arch/arm/mach-highbank/Makefile') diff --git a/arch/arm/mach-highbank/Makefile b/arch/arm/mach-highbank/Makefile new file mode 100644 index 000000000000..da7f81a69530 --- /dev/null +++ b/arch/arm/mach-highbank/Makefile @@ -0,0 +1,2 @@ +obj-y := clock.o highbank.o system.o +obj-$(CONFIG_DEBUG_HIGHBANK_UART) += lluart.o -- cgit v1.2.3 From 6738845783e9113feec22f20834d0e956808da3b Mon Sep 17 00:00:00 2001 From: Rob Herring Date: Tue, 17 May 2011 21:02:49 -0500 Subject: ARM: highbank: add SMP support This enables SMP support on highbank processor. Signed-off-by: Rob Herring Reviewed-by: Jamie Iles Reviewed-by: Shawn Guo --- arch/arm/mach-highbank/Makefile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'arch/arm/mach-highbank/Makefile') diff --git a/arch/arm/mach-highbank/Makefile b/arch/arm/mach-highbank/Makefile index da7f81a69530..89c736ff047f 100644 --- a/arch/arm/mach-highbank/Makefile +++ b/arch/arm/mach-highbank/Makefile @@ -1,2 +1,4 @@ obj-y := clock.o highbank.o system.o obj-$(CONFIG_DEBUG_HIGHBANK_UART) += lluart.o +obj-$(CONFIG_SMP) += platsmp.o +obj-$(CONFIG_LOCAL_TIMERS) += localtimer.o -- cgit v1.2.3 From 9680b3d04d27ed90479eb84d2054ddd3deb83d5e Mon Sep 17 00:00:00 2001 From: Martin Bogomolni Date: Mon, 13 Jun 2011 16:50:33 -0500 Subject: ARM: highbank: Add cpu hotplug support This adds cpu hotplug for highbank. On highbank, a core is always reset and boots up the same path as a cold boot. Signed-off-by: Martin Bogomolni Signed-off-by: Rob Herring Reviewed-by: Jamie Iles Reviewed-by: Shawn Guo --- arch/arm/mach-highbank/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'arch/arm/mach-highbank/Makefile') diff --git a/arch/arm/mach-highbank/Makefile b/arch/arm/mach-highbank/Makefile index 89c736ff047f..c45078f820ae 100644 --- a/arch/arm/mach-highbank/Makefile +++ b/arch/arm/mach-highbank/Makefile @@ -2,3 +2,4 @@ obj-y := clock.o highbank.o system.o obj-$(CONFIG_DEBUG_HIGHBANK_UART) += lluart.o obj-$(CONFIG_SMP) += platsmp.o obj-$(CONFIG_LOCAL_TIMERS) += localtimer.o +obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o -- cgit v1.2.3 From 8b61f37440388ebbd2a894178fe098f2e70ab392 Mon Sep 17 00:00:00 2001 From: Rob Herring Date: Sun, 15 May 2011 12:44:17 -0500 Subject: ARM: highbank: add suspend support Add the platform suspend ops for highbank. Signed-off-by: Rob Herring Reviewed-by: Jamie Iles Reviewed-by: Shawn Guo --- arch/arm/mach-highbank/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'arch/arm/mach-highbank/Makefile') diff --git a/arch/arm/mach-highbank/Makefile b/arch/arm/mach-highbank/Makefile index c45078f820ae..986958a5a720 100644 --- a/arch/arm/mach-highbank/Makefile +++ b/arch/arm/mach-highbank/Makefile @@ -3,3 +3,4 @@ obj-$(CONFIG_DEBUG_HIGHBANK_UART) += lluart.o obj-$(CONFIG_SMP) += platsmp.o obj-$(CONFIG_LOCAL_TIMERS) += localtimer.o obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o +obj-$(CONFIG_PM_SLEEP) += pm.o -- cgit v1.2.3