* [PATCH v2 0/4] ARM: S3C24XX: move some code from plat to mach directory
@ 2012-05-08 18:34 Heiko Stübner
2012-05-08 18:35 ` [PATCH 1/4] ARM: S3C24XX: move plat-s3c24xx/cpu.c Heiko Stübner
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Heiko Stübner @ 2012-05-08 18:34 UTC (permalink / raw)
To: kgene.kim; +Cc: linux-arm-kernel, linux-samsung-soc, Heiko Stübner
Again the series of small moves of common code from the plat-s3c24xx to the
mach-s3c24xx directory.
This time without the wrong handled irq.c . Hopefully I'll get time to do it
properly later.
As the dev-uart.c move breaks the resource patch by Tushar Behera, I updated
the patch to fix the correct code and will submit it as a v2 to the resource
series.
Heiko Stuebner (4):
ARM: S3C24XX: move plat-s3c24xx/cpu.c
ARM: S3C24XX: move plat-s3c24xx/dev-uart.c into common.c
ARM: S3C24XX: move common power-management code to mach-s3c24xx
ARM: S3C24XX: move common clock init into common.c
arch/arm/mach-s3c24xx/Makefile | 6 +
.../{plat-s3c24xx/cpu.c => mach-s3c24xx/common.c} | 93 ++++++++++++++++++-
arch/arm/{plat-s3c24xx => mach-s3c24xx}/irq-pm.c | 0
arch/arm/{plat-s3c24xx => mach-s3c24xx}/pm.c | 0
arch/arm/{plat-s3c24xx => mach-s3c24xx}/sleep.S | 0
arch/arm/plat-s3c24xx/Makefile | 6 -
arch/arm/plat-s3c24xx/clock.c | 59 ------------
arch/arm/plat-s3c24xx/dev-uart.c | 100 --------------------
8 files changed, 98 insertions(+), 166 deletions(-)
rename arch/arm/{plat-s3c24xx/cpu.c => mach-s3c24xx/common.c} (75%)
rename arch/arm/{plat-s3c24xx => mach-s3c24xx}/irq-pm.c (100%)
rename arch/arm/{plat-s3c24xx => mach-s3c24xx}/pm.c (100%)
rename arch/arm/{plat-s3c24xx => mach-s3c24xx}/sleep.S (100%)
delete mode 100644 arch/arm/plat-s3c24xx/clock.c
delete mode 100644 arch/arm/plat-s3c24xx/dev-uart.c
--
1.7.5.4
^ permalink raw reply [flat|nested] 6+ messages in thread* [PATCH 1/4] ARM: S3C24XX: move plat-s3c24xx/cpu.c 2012-05-08 18:34 [PATCH v2 0/4] ARM: S3C24XX: move some code from plat to mach directory Heiko Stübner @ 2012-05-08 18:35 ` Heiko Stübner 2012-05-08 18:36 ` [PATCH 2/4] ARM: S3C24XX: move plat-s3c24xx/dev-uart.c into common.c Heiko Stübner ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Heiko Stübner @ 2012-05-08 18:35 UTC (permalink / raw) To: kgene.kim; +Cc: linux-arm-kernel, linux-samsung-soc Following the model of s3c64xx cpu.c becomes common.c in mach-s3c24xx, to got more common code added later on. Signed-off-by: Heiko Stuebner <heiko@sntech.de> --- arch/arm/mach-s3c24xx/Makefile | 2 ++ .../{plat-s3c24xx/cpu.c => mach-s3c24xx/common.c} | 2 +- arch/arm/plat-s3c24xx/Makefile | 1 - 3 files changed, 3 insertions(+), 2 deletions(-) rename arch/arm/{plat-s3c24xx/cpu.c => mach-s3c24xx/common.c} (99%) diff --git a/arch/arm/mach-s3c24xx/Makefile b/arch/arm/mach-s3c24xx/Makefile index d0f3a92..d56b990 100644 --- a/arch/arm/mach-s3c24xx/Makefile +++ b/arch/arm/mach-s3c24xx/Makefile @@ -14,6 +14,8 @@ obj- := # core +obj-y += common.o + obj-$(CONFIG_CPU_S3C2410) += s3c2410.o obj-$(CONFIG_S3C2410_DMA) += dma-s3c2410.o obj-$(CONFIG_S3C2410_PM) += pm-s3c2410.o sleep-s3c2410.o diff --git a/arch/arm/plat-s3c24xx/cpu.c b/arch/arm/mach-s3c24xx/common.c similarity index 99% rename from arch/arm/plat-s3c24xx/cpu.c rename to arch/arm/mach-s3c24xx/common.c index 290942d..dc9927b 100644 --- a/arch/arm/plat-s3c24xx/cpu.c +++ b/arch/arm/mach-s3c24xx/common.c @@ -4,7 +4,7 @@ * http://www.simtec.co.uk/products/SWLINUX/ * Ben Dooks <ben@simtec.co.uk> * - * S3C24XX CPU Support + * Common code for S3C24XX machines * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/arch/arm/plat-s3c24xx/Makefile b/arch/arm/plat-s3c24xx/Makefile index 2467b80..f7fe935 100644 --- a/arch/arm/plat-s3c24xx/Makefile +++ b/arch/arm/plat-s3c24xx/Makefile @@ -12,7 +12,6 @@ obj- := # Core files -obj-y += cpu.o obj-y += irq.o obj-y += dev-uart.o obj-y += clock.o -- 1.7.5.4 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 2/4] ARM: S3C24XX: move plat-s3c24xx/dev-uart.c into common.c 2012-05-08 18:34 [PATCH v2 0/4] ARM: S3C24XX: move some code from plat to mach directory Heiko Stübner 2012-05-08 18:35 ` [PATCH 1/4] ARM: S3C24XX: move plat-s3c24xx/cpu.c Heiko Stübner @ 2012-05-08 18:36 ` Heiko Stübner 2012-05-08 18:37 ` [PATCH 3/4] ARM: S3C24XX: move common power-management code to mach-s3c24xx Heiko Stübner ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Heiko Stübner @ 2012-05-08 18:36 UTC (permalink / raw) To: kgene.kim; +Cc: linux-arm-kernel, linux-samsung-soc The uart devices are used on all s3c24xx machines, so they can reside in the common code for all machines. Signed-off-by: Heiko Stuebner <heiko@sntech.de> --- arch/arm/mach-s3c24xx/common.c | 73 +++++++++++++++++++++++++++ arch/arm/plat-s3c24xx/Makefile | 1 - arch/arm/plat-s3c24xx/dev-uart.c | 100 -------------------------------------- 3 files changed, 73 insertions(+), 101 deletions(-) delete mode 100644 arch/arm/plat-s3c24xx/dev-uart.c diff --git a/arch/arm/mach-s3c24xx/common.c b/arch/arm/mach-s3c24xx/common.c index dc9927b..5e4ac34 100644 --- a/arch/arm/mach-s3c24xx/common.c +++ b/arch/arm/mach-s3c24xx/common.c @@ -234,3 +234,76 @@ void __init s3c24xx_init_io(struct map_desc *mach_desc, int size) s3c_init_cpu(samsung_cpu_id, cpu_ids, ARRAY_SIZE(cpu_ids)); } + +/* Serial port registrations */ + +static struct resource s3c2410_uart0_resource[] = { + [0] = { + .start = S3C2410_PA_UART0, + .end = S3C2410_PA_UART0 + 0x3fff, + .flags = IORESOURCE_MEM, + }, + [1] = { + .start = IRQ_S3CUART_RX0, + .end = IRQ_S3CUART_ERR0, + .flags = IORESOURCE_IRQ, + } +}; + +static struct resource s3c2410_uart1_resource[] = { + [0] = { + .start = S3C2410_PA_UART1, + .end = S3C2410_PA_UART1 + 0x3fff, + .flags = IORESOURCE_MEM, + }, + [1] = { + .start = IRQ_S3CUART_RX1, + .end = IRQ_S3CUART_ERR1, + .flags = IORESOURCE_IRQ, + } +}; + +static struct resource s3c2410_uart2_resource[] = { + [0] = { + .start = S3C2410_PA_UART2, + .end = S3C2410_PA_UART2 + 0x3fff, + .flags = IORESOURCE_MEM, + }, + [1] = { + .start = IRQ_S3CUART_RX2, + .end = IRQ_S3CUART_ERR2, + .flags = IORESOURCE_IRQ, + } +}; + +static struct resource s3c2410_uart3_resource[] = { + [0] = { + .start = S3C2443_PA_UART3, + .end = S3C2443_PA_UART3 + 0x3fff, + .flags = IORESOURCE_MEM, + }, + [1] = { + .start = IRQ_S3CUART_RX3, + .end = IRQ_S3CUART_ERR3, + .flags = IORESOURCE_IRQ, + }, +}; + +struct s3c24xx_uart_resources s3c2410_uart_resources[] __initdata = { + [0] = { + .resources = s3c2410_uart0_resource, + .nr_resources = ARRAY_SIZE(s3c2410_uart0_resource), + }, + [1] = { + .resources = s3c2410_uart1_resource, + .nr_resources = ARRAY_SIZE(s3c2410_uart1_resource), + }, + [2] = { + .resources = s3c2410_uart2_resource, + .nr_resources = ARRAY_SIZE(s3c2410_uart2_resource), + }, + [3] = { + .resources = s3c2410_uart3_resource, + .nr_resources = ARRAY_SIZE(s3c2410_uart3_resource), + }, +}; diff --git a/arch/arm/plat-s3c24xx/Makefile b/arch/arm/plat-s3c24xx/Makefile index f7fe935..1e3126a 100644 --- a/arch/arm/plat-s3c24xx/Makefile +++ b/arch/arm/plat-s3c24xx/Makefile @@ -13,7 +13,6 @@ obj- := # Core files obj-y += irq.o -obj-y += dev-uart.o obj-y += clock.o obj-$(CONFIG_S3C24XX_DCLK) += clock-dclk.o diff --git a/arch/arm/plat-s3c24xx/dev-uart.c b/arch/arm/plat-s3c24xx/dev-uart.c deleted file mode 100644 index 9ab22e6..0000000 --- a/arch/arm/plat-s3c24xx/dev-uart.c +++ /dev/null @@ -1,100 +0,0 @@ -/* linux/arch/arm/plat-s3c24xx/dev-uart.c - * - * Copyright (c) 2004 Simtec Electronics - * Ben Dooks <ben@simtec.co.uk> - * - * Base S3C24XX UART resource and platform device definitions - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as - * published by the Free Software Foundation. -*/ - -#include <linux/kernel.h> -#include <linux/types.h> -#include <linux/interrupt.h> -#include <linux/list.h> -#include <linux/serial_core.h> -#include <linux/platform_device.h> - -#include <asm/mach/arch.h> -#include <asm/mach/map.h> -#include <asm/mach/irq.h> -#include <mach/hardware.h> -#include <mach/map.h> - -#include <plat/devs.h> -#include <plat/regs-serial.h> - -/* Serial port registrations */ - -static struct resource s3c2410_uart0_resource[] = { - [0] = { - .start = S3C2410_PA_UART0, - .end = S3C2410_PA_UART0 + 0x3fff, - .flags = IORESOURCE_MEM, - }, - [1] = { - .start = IRQ_S3CUART_RX0, - .end = IRQ_S3CUART_ERR0, - .flags = IORESOURCE_IRQ, - } -}; - -static struct resource s3c2410_uart1_resource[] = { - [0] = { - .start = S3C2410_PA_UART1, - .end = S3C2410_PA_UART1 + 0x3fff, - .flags = IORESOURCE_MEM, - }, - [1] = { - .start = IRQ_S3CUART_RX1, - .end = IRQ_S3CUART_ERR1, - .flags = IORESOURCE_IRQ, - } -}; - -static struct resource s3c2410_uart2_resource[] = { - [0] = { - .start = S3C2410_PA_UART2, - .end = S3C2410_PA_UART2 + 0x3fff, - .flags = IORESOURCE_MEM, - }, - [1] = { - .start = IRQ_S3CUART_RX2, - .end = IRQ_S3CUART_ERR2, - .flags = IORESOURCE_IRQ, - } -}; - -static struct resource s3c2410_uart3_resource[] = { - [0] = { - .start = S3C2443_PA_UART3, - .end = S3C2443_PA_UART3 + 0x3fff, - .flags = IORESOURCE_MEM, - }, - [1] = { - .start = IRQ_S3CUART_RX3, - .end = IRQ_S3CUART_ERR3, - .flags = IORESOURCE_IRQ, - }, -}; - -struct s3c24xx_uart_resources s3c2410_uart_resources[] __initdata = { - [0] = { - .resources = s3c2410_uart0_resource, - .nr_resources = ARRAY_SIZE(s3c2410_uart0_resource), - }, - [1] = { - .resources = s3c2410_uart1_resource, - .nr_resources = ARRAY_SIZE(s3c2410_uart1_resource), - }, - [2] = { - .resources = s3c2410_uart2_resource, - .nr_resources = ARRAY_SIZE(s3c2410_uart2_resource), - }, - [3] = { - .resources = s3c2410_uart3_resource, - .nr_resources = ARRAY_SIZE(s3c2410_uart3_resource), - }, -}; -- 1.7.5.4 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 3/4] ARM: S3C24XX: move common power-management code to mach-s3c24xx 2012-05-08 18:34 [PATCH v2 0/4] ARM: S3C24XX: move some code from plat to mach directory Heiko Stübner 2012-05-08 18:35 ` [PATCH 1/4] ARM: S3C24XX: move plat-s3c24xx/cpu.c Heiko Stübner 2012-05-08 18:36 ` [PATCH 2/4] ARM: S3C24XX: move plat-s3c24xx/dev-uart.c into common.c Heiko Stübner @ 2012-05-08 18:37 ` Heiko Stübner 2012-05-08 18:38 ` [PATCH 4/4] ARM: S3C24XX: move common clock init into common.c Heiko Stübner 2012-05-09 12:44 ` [PATCH v2 0/4] ARM: S3C24XX: move some code from plat to mach directory Kukjin Kim 4 siblings, 0 replies; 6+ messages in thread From: Heiko Stübner @ 2012-05-08 18:37 UTC (permalink / raw) To: kgene.kim; +Cc: linux-arm-kernel, linux-samsung-soc This is the basic power-management code used by all s3c24xx machines. Signed-off-by: Heiko Stuebner <heiko@sntech.de> --- arch/arm/mach-s3c24xx/Makefile | 4 ++++ arch/arm/{plat-s3c24xx => mach-s3c24xx}/irq-pm.c | 0 arch/arm/{plat-s3c24xx => mach-s3c24xx}/pm.c | 0 arch/arm/{plat-s3c24xx => mach-s3c24xx}/sleep.S | 0 arch/arm/plat-s3c24xx/Makefile | 3 --- 5 files changed, 4 insertions(+), 3 deletions(-) rename arch/arm/{plat-s3c24xx => mach-s3c24xx}/irq-pm.c (100%) rename arch/arm/{plat-s3c24xx => mach-s3c24xx}/pm.c (100%) rename arch/arm/{plat-s3c24xx => mach-s3c24xx}/sleep.S (100%) diff --git a/arch/arm/mach-s3c24xx/Makefile b/arch/arm/mach-s3c24xx/Makefile index d56b990..0ab6ab1 100644 --- a/arch/arm/mach-s3c24xx/Makefile +++ b/arch/arm/mach-s3c24xx/Makefile @@ -35,6 +35,10 @@ obj-$(CONFIG_S3C2440_DMA) += dma-s3c2440.o obj-$(CONFIG_CPU_S3C2443) += s3c2443.o irq-s3c2443.o clock-s3c2443.o +# PM + +obj-$(CONFIG_PM) += pm.o irq-pm.o sleep.o + # common code obj-$(CONFIG_S3C2443_COMMON) += common-s3c2443.o diff --git a/arch/arm/plat-s3c24xx/irq-pm.c b/arch/arm/mach-s3c24xx/irq-pm.c similarity index 100% rename from arch/arm/plat-s3c24xx/irq-pm.c rename to arch/arm/mach-s3c24xx/irq-pm.c diff --git a/arch/arm/plat-s3c24xx/pm.c b/arch/arm/mach-s3c24xx/pm.c similarity index 100% rename from arch/arm/plat-s3c24xx/pm.c rename to arch/arm/mach-s3c24xx/pm.c diff --git a/arch/arm/plat-s3c24xx/sleep.S b/arch/arm/mach-s3c24xx/sleep.S similarity index 100% rename from arch/arm/plat-s3c24xx/sleep.S rename to arch/arm/mach-s3c24xx/sleep.S diff --git a/arch/arm/plat-s3c24xx/Makefile b/arch/arm/plat-s3c24xx/Makefile index 1e3126a..a07bbc9 100644 --- a/arch/arm/plat-s3c24xx/Makefile +++ b/arch/arm/plat-s3c24xx/Makefile @@ -21,9 +21,6 @@ obj-$(CONFIG_CPU_FREQ_S3C24XX_DEBUGFS) += cpu-freq-debugfs.o # Architecture dependent builds -obj-$(CONFIG_PM) += pm.o -obj-$(CONFIG_PM) += irq-pm.o -obj-$(CONFIG_PM) += sleep.o obj-$(CONFIG_S3C2410_CLOCK) += s3c2410-clock.o obj-$(CONFIG_S3C24XX_DMA) += dma.o obj-$(CONFIG_S3C2410_IOTIMING) += s3c2410-iotiming.o -- 1.7.5.4 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 4/4] ARM: S3C24XX: move common clock init into common.c 2012-05-08 18:34 [PATCH v2 0/4] ARM: S3C24XX: move some code from plat to mach directory Heiko Stübner ` (2 preceding siblings ...) 2012-05-08 18:37 ` [PATCH 3/4] ARM: S3C24XX: move common power-management code to mach-s3c24xx Heiko Stübner @ 2012-05-08 18:38 ` Heiko Stübner 2012-05-09 12:44 ` [PATCH v2 0/4] ARM: S3C24XX: move some code from plat to mach directory Kukjin Kim 4 siblings, 0 replies; 6+ messages in thread From: Heiko Stübner @ 2012-05-08 18:38 UTC (permalink / raw) To: kgene.kim; +Cc: linux-arm-kernel, linux-samsung-soc Signed-off-by: Heiko Stuebner <heiko@sntech.de> --- arch/arm/mach-s3c24xx/common.c | 18 ++++++++++++ arch/arm/plat-s3c24xx/Makefile | 1 - arch/arm/plat-s3c24xx/clock.c | 59 ---------------------------------------- 3 files changed, 18 insertions(+), 60 deletions(-) delete mode 100644 arch/arm/plat-s3c24xx/clock.c diff --git a/arch/arm/mach-s3c24xx/common.c b/arch/arm/mach-s3c24xx/common.c index 5e4ac34..d42423a 100644 --- a/arch/arm/mach-s3c24xx/common.c +++ b/arch/arm/mach-s3c24xx/common.c @@ -41,6 +41,7 @@ #include <asm/mach/arch.h> #include <asm/mach/map.h> +#include <mach/regs-clock.h> #include <mach/regs-gpio.h> #include <plat/regs-serial.h> @@ -52,6 +53,8 @@ #include <plat/s3c2416.h> #include <plat/s3c244x.h> #include <plat/s3c2443.h> +#include <plat/cpu-freq.h> +#include <plat/pll.h> /* table of supported CPUs */ @@ -307,3 +310,18 @@ struct s3c24xx_uart_resources s3c2410_uart_resources[] __initdata = { .nr_resources = ARRAY_SIZE(s3c2410_uart3_resource), }, }; + +/* initialise all the clocks */ + +void __init_or_cpufreq s3c24xx_setup_clocks(unsigned long fclk, + unsigned long hclk, + unsigned long pclk) +{ + clk_upll.rate = s3c24xx_get_pll(__raw_readl(S3C2410_UPLLCON), + clk_xtal.rate); + + clk_mpll.rate = fclk; + clk_h.rate = hclk; + clk_p.rate = pclk; + clk_f.rate = fclk; +} diff --git a/arch/arm/plat-s3c24xx/Makefile b/arch/arm/plat-s3c24xx/Makefile index a07bbc9..9f60549c 100644 --- a/arch/arm/plat-s3c24xx/Makefile +++ b/arch/arm/plat-s3c24xx/Makefile @@ -13,7 +13,6 @@ obj- := # Core files obj-y += irq.o -obj-y += clock.o obj-$(CONFIG_S3C24XX_DCLK) += clock-dclk.o obj-$(CONFIG_CPU_FREQ_S3C24XX) += cpu-freq.o diff --git a/arch/arm/plat-s3c24xx/clock.c b/arch/arm/plat-s3c24xx/clock.c deleted file mode 100644 index 931d26d..0000000 --- a/arch/arm/plat-s3c24xx/clock.c +++ /dev/null @@ -1,59 +0,0 @@ -/* linux/arch/arm/plat-s3c24xx/clock.c - * - * Copyright (c) 2004-2005 Simtec Electronics - * Ben Dooks <ben@simtec.co.uk> - * - * S3C24XX Core clock control support - * - * Based on, and code from linux/arch/arm/mach-versatile/clock.c - ** - ** Copyright (C) 2004 ARM Limited. - ** Written by Deep Blue Solutions Limited. - * - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -*/ - -#include <linux/init.h> -#include <linux/kernel.h> -#include <linux/clk.h> -#include <linux/io.h> - -#include <mach/hardware.h> -#include <asm/irq.h> - -#include <mach/regs-clock.h> -#include <mach/regs-gpio.h> - -#include <plat/cpu-freq.h> - -#include <plat/clock.h> -#include <plat/cpu.h> -#include <plat/pll.h> - -/* initialise all the clocks */ - -void __init_or_cpufreq s3c24xx_setup_clocks(unsigned long fclk, - unsigned long hclk, - unsigned long pclk) -{ - clk_upll.rate = s3c24xx_get_pll(__raw_readl(S3C2410_UPLLCON), - clk_xtal.rate); - - clk_mpll.rate = fclk; - clk_h.rate = hclk; - clk_p.rate = pclk; - clk_f.rate = fclk; -} -- 1.7.5.4 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* RE: [PATCH v2 0/4] ARM: S3C24XX: move some code from plat to mach directory 2012-05-08 18:34 [PATCH v2 0/4] ARM: S3C24XX: move some code from plat to mach directory Heiko Stübner ` (3 preceding siblings ...) 2012-05-08 18:38 ` [PATCH 4/4] ARM: S3C24XX: move common clock init into common.c Heiko Stübner @ 2012-05-09 12:44 ` Kukjin Kim 4 siblings, 0 replies; 6+ messages in thread From: Kukjin Kim @ 2012-05-09 12:44 UTC (permalink / raw) To: 'Heiko Stübner'; +Cc: linux-arm-kernel, linux-samsung-soc Heiko Stübner wrote: > > Again the series of small moves of common code from the plat-s3c24xx to > the > mach-s3c24xx directory. > > This time without the wrong handled irq.c . Hopefully I'll get time to do > it > properly later. > > As the dev-uart.c move breaks the resource patch by Tushar Behera, I > updated > the patch to fix the correct code and will submit it as a v2 to the > resource > series. > > Heiko Stuebner (4): > ARM: S3C24XX: move plat-s3c24xx/cpu.c > ARM: S3C24XX: move plat-s3c24xx/dev-uart.c into common.c > ARM: S3C24XX: move common power-management code to mach-s3c24xx > ARM: S3C24XX: move common clock init into common.c > > arch/arm/mach-s3c24xx/Makefile | 6 + > .../{plat-s3c24xx/cpu.c => mach-s3c24xx/common.c} | 93 > ++++++++++++++++++- > arch/arm/{plat-s3c24xx => mach-s3c24xx}/irq-pm.c | 0 > arch/arm/{plat-s3c24xx => mach-s3c24xx}/pm.c | 0 > arch/arm/{plat-s3c24xx => mach-s3c24xx}/sleep.S | 0 > arch/arm/plat-s3c24xx/Makefile | 6 - > arch/arm/plat-s3c24xx/clock.c | 59 ------------ > arch/arm/plat-s3c24xx/dev-uart.c | 100 -------------------- > 8 files changed, 98 insertions(+), 166 deletions(-) > rename arch/arm/{plat-s3c24xx/cpu.c => mach-s3c24xx/common.c} (75%) > rename arch/arm/{plat-s3c24xx => mach-s3c24xx}/irq-pm.c (100%) > rename arch/arm/{plat-s3c24xx => mach-s3c24xx}/pm.c (100%) > rename arch/arm/{plat-s3c24xx => mach-s3c24xx}/sleep.S (100%) > delete mode 100644 arch/arm/plat-s3c24xx/clock.c > delete mode 100644 arch/arm/plat-s3c24xx/dev-uart.c > > -- > 1.7.5.4 Thanks for your re-posting. Looks better. Will apply this series instead. Thanks. Best regards, Kgene. -- Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer, SW Solution Development Team, Samsung Electronics Co., Ltd. ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2012-05-09 12:44 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2012-05-08 18:34 [PATCH v2 0/4] ARM: S3C24XX: move some code from plat to mach directory Heiko Stübner 2012-05-08 18:35 ` [PATCH 1/4] ARM: S3C24XX: move plat-s3c24xx/cpu.c Heiko Stübner 2012-05-08 18:36 ` [PATCH 2/4] ARM: S3C24XX: move plat-s3c24xx/dev-uart.c into common.c Heiko Stübner 2012-05-08 18:37 ` [PATCH 3/4] ARM: S3C24XX: move common power-management code to mach-s3c24xx Heiko Stübner 2012-05-08 18:38 ` [PATCH 4/4] ARM: S3C24XX: move common clock init into common.c Heiko Stübner 2012-05-09 12:44 ` [PATCH v2 0/4] ARM: S3C24XX: move some code from plat to mach directory Kukjin Kim
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox