All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/9] arm: rmobile: Add define of SCIF register for R8A7790 and R8A7791
@ 2014-04-09  1:32 Nobuhiro Iwamatsu
  2014-04-09  1:32 ` [U-Boot] [PATCH 2/9] arm: rmobile: koelsch: Remove define of SCIF register Nobuhiro Iwamatsu
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: Nobuhiro Iwamatsu @ 2014-04-09  1:32 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
---
 arch/arm/include/asm/arch-rmobile/rcar-base.h | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/arch/arm/include/asm/arch-rmobile/rcar-base.h b/arch/arm/include/asm/arch-rmobile/rcar-base.h
index 4331d31..41240f3 100644
--- a/arch/arm/include/asm/arch-rmobile/rcar-base.h
+++ b/arch/arm/include/asm/arch-rmobile/rcar-base.h
@@ -21,6 +21,14 @@
 #define GPIO5_BASE		0xE6055000
 #define SH_QSPI_BASE		0xE6B10000
 
+/* SCIF */
+#define SCIF0_BASE		0xE6E60000
+#define SCIF1_BASE		0xE6E68000
+#define SCIF2_BASE		0xE6E58000
+#define SCIF3_BASE		0xE6EA8000
+#define SCIF4_BASE		0xE6EE0000
+#define SCIF5_BASE		0xE6EE8000
+
 #define S3C_BASE		0xE6784000
 #define S3C_INT_BASE		0xE6784A00
 #define S3C_MEDIA_BASE		0xE6784B00
-- 
1.8.5

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

* [U-Boot] [PATCH 2/9] arm: rmobile: koelsch: Remove define of SCIF register
  2014-04-09  1:32 [U-Boot] [PATCH 1/9] arm: rmobile: Add define of SCIF register for R8A7790 and R8A7791 Nobuhiro Iwamatsu
@ 2014-04-09  1:32 ` Nobuhiro Iwamatsu
  2014-04-09  1:32 ` [U-Boot] [PATCH 3/9] arm: rmobile: koelsch: Remove CONFIG_USE_ARCH_MEMSET and MEMCPY Nobuhiro Iwamatsu
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Nobuhiro Iwamatsu @ 2014-04-09  1:32 UTC (permalink / raw)
  To: u-boot

The define of SCIF register was already defined in rcar-base.h.

Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
---
 include/configs/koelsch.h | 1 -
 1 file changed, 1 deletion(-)

diff --git a/include/configs/koelsch.h b/include/configs/koelsch.h
index 1a93d17..2e81d29 100644
--- a/include/configs/koelsch.h
+++ b/include/configs/koelsch.h
@@ -80,7 +80,6 @@
 /* SCIF */
 #define CONFIG_SCIF_CONSOLE
 #define CONFIG_CONS_SCIF0
-#define SCIF0_BASE		0xe6e60000
 #undef	CONFIG_SYS_CONSOLE_INFO_QUIET
 #undef	CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
 #undef	CONFIG_SYS_CONSOLE_ENV_OVERWRITE
-- 
1.8.5

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

* [U-Boot] [PATCH 3/9] arm: rmobile: koelsch: Remove CONFIG_USE_ARCH_MEMSET and MEMCPY
  2014-04-09  1:32 [U-Boot] [PATCH 1/9] arm: rmobile: Add define of SCIF register for R8A7790 and R8A7791 Nobuhiro Iwamatsu
  2014-04-09  1:32 ` [U-Boot] [PATCH 2/9] arm: rmobile: koelsch: Remove define of SCIF register Nobuhiro Iwamatsu
@ 2014-04-09  1:32 ` Nobuhiro Iwamatsu
  2014-04-09  1:32 ` [U-Boot] [PATCH 4/9] arm: rmobile: koelsch: Enable optimization of thumb Nobuhiro Iwamatsu
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Nobuhiro Iwamatsu @ 2014-04-09  1:32 UTC (permalink / raw)
  To: u-boot

Because do not need these feature to koelsch board, this delete it.

Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
---
 include/configs/koelsch.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/include/configs/koelsch.h b/include/configs/koelsch.h
index 2e81d29..ad6eecd 100644
--- a/include/configs/koelsch.h
+++ b/include/configs/koelsch.h
@@ -55,8 +55,6 @@
 #define CONFIG_DISPLAY_CPUINFO
 #define CONFIG_DISPLAY_BOARDINFO
 #define CONFIG_BOARD_EARLY_INIT_F
-#define CONFIG_USE_ARCH_MEMSET
-#define CONFIG_USE_ARCH_MEMCPY
 #define CONFIG_TMU_TIMER
 
 /* STACK */
-- 
1.8.5

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

* [U-Boot] [PATCH 4/9] arm: rmobile: koelsch: Enable optimization of thumb
  2014-04-09  1:32 [U-Boot] [PATCH 1/9] arm: rmobile: Add define of SCIF register for R8A7790 and R8A7791 Nobuhiro Iwamatsu
  2014-04-09  1:32 ` [U-Boot] [PATCH 2/9] arm: rmobile: koelsch: Remove define of SCIF register Nobuhiro Iwamatsu
  2014-04-09  1:32 ` [U-Boot] [PATCH 3/9] arm: rmobile: koelsch: Remove CONFIG_USE_ARCH_MEMSET and MEMCPY Nobuhiro Iwamatsu
@ 2014-04-09  1:32 ` Nobuhiro Iwamatsu
  2014-04-09  1:32 ` [U-Boot] [PATCH 5/9] arm: rmobile: lager: Remove define of SCIF register Nobuhiro Iwamatsu
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Nobuhiro Iwamatsu @ 2014-04-09  1:32 UTC (permalink / raw)
  To: u-boot

This adds CONFIG_SYS_THUMB_BUILD to config, in order to enable optimization
of thumb.

Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
---
 include/configs/koelsch.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/configs/koelsch.h b/include/configs/koelsch.h
index ad6eecd..8cee73b 100644
--- a/include/configs/koelsch.h
+++ b/include/configs/koelsch.h
@@ -35,6 +35,7 @@
 #define CONFIG_CMD_SF
 #define CONFIG_CMD_SPI
 #define CONFIG_SYS_TEXT_BASE	0xE6304000
+#define CONFIG_SYS_THUMB_BUILD
 
 #define	CONFIG_CMDLINE_TAG
 #define	CONFIG_SETUP_MEMORY_TAGS
-- 
1.8.5

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

* [U-Boot] [PATCH 5/9] arm: rmobile: lager: Remove define of SCIF register
  2014-04-09  1:32 [U-Boot] [PATCH 1/9] arm: rmobile: Add define of SCIF register for R8A7790 and R8A7791 Nobuhiro Iwamatsu
                   ` (2 preceding siblings ...)
  2014-04-09  1:32 ` [U-Boot] [PATCH 4/9] arm: rmobile: koelsch: Enable optimization of thumb Nobuhiro Iwamatsu
@ 2014-04-09  1:32 ` Nobuhiro Iwamatsu
  2014-04-09  1:32 ` [U-Boot] [PATCH 6/9] arm: rmobile: lager: Remove CONFIG_USE_ARCH_MEMSET and MEMCPY Nobuhiro Iwamatsu
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Nobuhiro Iwamatsu @ 2014-04-09  1:32 UTC (permalink / raw)
  To: u-boot

The define of SCIF register was already defined in rcar-base.h.

Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
---
 include/configs/lager.h | 1 -
 1 file changed, 1 deletion(-)

diff --git a/include/configs/lager.h b/include/configs/lager.h
index ac31128..085fa77 100644
--- a/include/configs/lager.h
+++ b/include/configs/lager.h
@@ -82,7 +82,6 @@
 /* SCIF */
 #define CONFIG_SCIF_CONSOLE
 #define CONFIG_CONS_SCIF0
-#define SCIF0_BASE		0xe6e60000
 #undef	CONFIG_SYS_CONSOLE_INFO_QUIET
 #undef	CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
 #undef	CONFIG_SYS_CONSOLE_ENV_OVERWRITE
-- 
1.8.5

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

* [U-Boot] [PATCH 6/9] arm: rmobile: lager: Remove CONFIG_USE_ARCH_MEMSET and MEMCPY
  2014-04-09  1:32 [U-Boot] [PATCH 1/9] arm: rmobile: Add define of SCIF register for R8A7790 and R8A7791 Nobuhiro Iwamatsu
                   ` (3 preceding siblings ...)
  2014-04-09  1:32 ` [U-Boot] [PATCH 5/9] arm: rmobile: lager: Remove define of SCIF register Nobuhiro Iwamatsu
@ 2014-04-09  1:32 ` Nobuhiro Iwamatsu
  2014-04-09  1:32 ` [U-Boot] [PATCH 7/9] arm: rmobile: lager: Enable optimization of thumb Nobuhiro Iwamatsu
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Nobuhiro Iwamatsu @ 2014-04-09  1:32 UTC (permalink / raw)
  To: u-boot

Because do not need these feature to lager board, this delete it.

Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
---
 include/configs/lager.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/include/configs/lager.h b/include/configs/lager.h
index 085fa77..3bc494f 100644
--- a/include/configs/lager.h
+++ b/include/configs/lager.h
@@ -57,8 +57,6 @@
 #define CONFIG_DISPLAY_CPUINFO
 #define CONFIG_DISPLAY_BOARDINFO
 #define CONFIG_BOARD_EARLY_INIT_F
-#define CONFIG_USE_ARCH_MEMSET
-#define CONFIG_USE_ARCH_MEMCPY
 #define CONFIG_TMU_TIMER
 
 /* STACK */
-- 
1.8.5

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

* [U-Boot] [PATCH 7/9] arm: rmobile: lager: Enable optimization of thumb
  2014-04-09  1:32 [U-Boot] [PATCH 1/9] arm: rmobile: Add define of SCIF register for R8A7790 and R8A7791 Nobuhiro Iwamatsu
                   ` (4 preceding siblings ...)
  2014-04-09  1:32 ` [U-Boot] [PATCH 6/9] arm: rmobile: lager: Remove CONFIG_USE_ARCH_MEMSET and MEMCPY Nobuhiro Iwamatsu
@ 2014-04-09  1:32 ` Nobuhiro Iwamatsu
  2014-04-09  1:32 ` [U-Boot] [PATCH 8/9] gpio: r8a7791-gpio: Fix typo in macro Nobuhiro Iwamatsu
  2014-04-09  1:32 ` [U-Boot] [PATCH 9/9] gpio: r8a7790-gpio: " Nobuhiro Iwamatsu
  7 siblings, 0 replies; 9+ messages in thread
From: Nobuhiro Iwamatsu @ 2014-04-09  1:32 UTC (permalink / raw)
  To: u-boot

This adds CONFIG_SYS_THUMB_BUILD to config, in order to enable optimization
of thumb.

Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
---
 include/configs/lager.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/configs/lager.h b/include/configs/lager.h
index 3bc494f..80c9001 100644
--- a/include/configs/lager.h
+++ b/include/configs/lager.h
@@ -36,6 +36,7 @@
 #define CONFIG_CMD_SF
 #define CONFIG_CMD_SPI
 #define CONFIG_SYS_TEXT_BASE	0xE8080000
+#define CONFIG_SYS_THUMB_BUILD
 
 #define	CONFIG_CMDLINE_TAG
 #define	CONFIG_SETUP_MEMORY_TAGS
-- 
1.8.5

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

* [U-Boot] [PATCH 8/9] gpio: r8a7791-gpio: Fix typo in macro
  2014-04-09  1:32 [U-Boot] [PATCH 1/9] arm: rmobile: Add define of SCIF register for R8A7790 and R8A7791 Nobuhiro Iwamatsu
                   ` (5 preceding siblings ...)
  2014-04-09  1:32 ` [U-Boot] [PATCH 7/9] arm: rmobile: lager: Enable optimization of thumb Nobuhiro Iwamatsu
@ 2014-04-09  1:32 ` Nobuhiro Iwamatsu
  2014-04-09  1:32 ` [U-Boot] [PATCH 9/9] gpio: r8a7790-gpio: " Nobuhiro Iwamatsu
  7 siblings, 0 replies; 9+ messages in thread
From: Nobuhiro Iwamatsu @ 2014-04-09  1:32 UTC (permalink / raw)
  To: u-boot

Fix typo from __ASM_R8A7791_H__ to __ASM_R8A7791_GPIO_H__.

Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
---
 arch/arm/include/asm/arch-rmobile/r8a7791-gpio.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/arm/include/asm/arch-rmobile/r8a7791-gpio.h b/arch/arm/include/asm/arch-rmobile/r8a7791-gpio.h
index d3cf0c1..42e8259 100644
--- a/arch/arm/include/asm/arch-rmobile/r8a7791-gpio.h
+++ b/arch/arm/include/asm/arch-rmobile/r8a7791-gpio.h
@@ -1,5 +1,5 @@
-#ifndef __ASM_R8A7791_H__
-#define __ASM_R8A7791_H__
+#ifndef __ASM_R8A7791_GPIO_H__
+#define __ASM_R8A7791_GPIO_H__
 
 /* Pin Function Controller:
  * GPIO_FN_xx - GPIO used to select pin function
@@ -435,4 +435,4 @@ enum {
 	GPIO_FN_MLB_DAT, GPIO_FN_CAN1_RX_B,
 };
 
-#endif /* __ASM_R8A7791_H__ */
+#endif /* __ASM_R8A7791_GPIO_H__ */
-- 
1.8.5

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

* [U-Boot] [PATCH 9/9] gpio: r8a7790-gpio: Fix typo in macro
  2014-04-09  1:32 [U-Boot] [PATCH 1/9] arm: rmobile: Add define of SCIF register for R8A7790 and R8A7791 Nobuhiro Iwamatsu
                   ` (6 preceding siblings ...)
  2014-04-09  1:32 ` [U-Boot] [PATCH 8/9] gpio: r8a7791-gpio: Fix typo in macro Nobuhiro Iwamatsu
@ 2014-04-09  1:32 ` Nobuhiro Iwamatsu
  7 siblings, 0 replies; 9+ messages in thread
From: Nobuhiro Iwamatsu @ 2014-04-09  1:32 UTC (permalink / raw)
  To: u-boot

Fix typo from __ASM_R8A7790_H__ to __ASM_R8A7790_GPIO_H__.

Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
---
 arch/arm/include/asm/arch-rmobile/r8a7790-gpio.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/arm/include/asm/arch-rmobile/r8a7790-gpio.h b/arch/arm/include/asm/arch-rmobile/r8a7790-gpio.h
index 444e361..74b5f1d 100644
--- a/arch/arm/include/asm/arch-rmobile/r8a7790-gpio.h
+++ b/arch/arm/include/asm/arch-rmobile/r8a7790-gpio.h
@@ -1,5 +1,5 @@
-#ifndef __ASM_R8A7790_H__
-#define __ASM_R8A7790_H__
+#ifndef __ASM_R8A7790_GPIO_H__
+#define __ASM_R8A7790_GPIO_H__
 
 /* Pin Function Controller:
  * GPIO_FN_xx - GPIO used to select pin function
@@ -384,4 +384,4 @@ enum {
 	GPIO_FN_TCLK1_B,
 };
 
-#endif /* __ASM_R8A7790_H__ */
+#endif /* __ASM_R8A7790_GPIO_H__ */
-- 
1.8.5

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

end of thread, other threads:[~2014-04-09  1:32 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-09  1:32 [U-Boot] [PATCH 1/9] arm: rmobile: Add define of SCIF register for R8A7790 and R8A7791 Nobuhiro Iwamatsu
2014-04-09  1:32 ` [U-Boot] [PATCH 2/9] arm: rmobile: koelsch: Remove define of SCIF register Nobuhiro Iwamatsu
2014-04-09  1:32 ` [U-Boot] [PATCH 3/9] arm: rmobile: koelsch: Remove CONFIG_USE_ARCH_MEMSET and MEMCPY Nobuhiro Iwamatsu
2014-04-09  1:32 ` [U-Boot] [PATCH 4/9] arm: rmobile: koelsch: Enable optimization of thumb Nobuhiro Iwamatsu
2014-04-09  1:32 ` [U-Boot] [PATCH 5/9] arm: rmobile: lager: Remove define of SCIF register Nobuhiro Iwamatsu
2014-04-09  1:32 ` [U-Boot] [PATCH 6/9] arm: rmobile: lager: Remove CONFIG_USE_ARCH_MEMSET and MEMCPY Nobuhiro Iwamatsu
2014-04-09  1:32 ` [U-Boot] [PATCH 7/9] arm: rmobile: lager: Enable optimization of thumb Nobuhiro Iwamatsu
2014-04-09  1:32 ` [U-Boot] [PATCH 8/9] gpio: r8a7791-gpio: Fix typo in macro Nobuhiro Iwamatsu
2014-04-09  1:32 ` [U-Boot] [PATCH 9/9] gpio: r8a7790-gpio: " Nobuhiro Iwamatsu

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.