Re: [U-Boot] [PATCH v3 1/4] kconfig: arm: introduce symbol for ARM CPUs

2014-10-28 Thread Georges Savoundararadj
Hi Masahiro, Le 28/10/2014 16:57, Masahiro YAMADA a écrit : Hi Georges, I have another one I'd like you to fix. [5] Please fix Tegra too. --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -668,6 +668,8 @@ config TEGRA bool "NVIDIA Tegra" select SPL sele

Re: [U-Boot] [PATCH v3 1/4] kconfig: arm: introduce symbol for ARM CPUs

2014-10-28 Thread Masahiro YAMADA
Hi Albert, 2014-10-28 16:01 GMT+09:00 Albert ARIBAUD : > Hello Masahiro, > > On Tue, 28 Oct 2014 02:23:42 +0900, Masahiro YAMADA > wrote: >> Hi Albert, >> >> >> 2014-10-28 2:09 GMT+09:00 Albert ARIBAUD : >> >> Tom and Albert, >> >> >> >> If Georges fixes those problems, is it possible to apply

Re: [U-Boot] [PATCH v3 1/4] kconfig: arm: introduce symbol for ARM CPUs

2014-10-28 Thread Masahiro YAMADA
Hi Georges, I have another one I'd like you to fix. [5] Please fix Tegra too. --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -668,6 +668,8 @@ config TEGRA bool "NVIDIA Tegra" select SPL select OF_CONTROL if !SPL_BUILD + select CPU_ARM720T if SPL_BUILD +

Re: [U-Boot] [PATCH v3 1/4] kconfig: arm: introduce symbol for ARM CPUs

2014-10-28 Thread Albert ARIBAUD
Hello Masahiro, On Tue, 28 Oct 2014 02:23:42 +0900, Masahiro YAMADA wrote: > Hi Albert, > > > 2014-10-28 2:09 GMT+09:00 Albert ARIBAUD : > >> Tom and Albert, > >> > >> If Georges fixes those problems, is it possible to apply it shortly on > >> the mainline? > >> (directly u-boot/master? or via

Re: [U-Boot] [PATCH v3 1/4] kconfig: arm: introduce symbol for ARM CPUs

2014-10-27 Thread Masahiro YAMADA
Hi Albert, 2014-10-28 2:09 GMT+09:00 Albert ARIBAUD : >> Tom and Albert, >> >> If Georges fixes those problems, is it possible to apply it shortly on >> the mainline? >> (directly u-boot/master? or via u-boot-arm/master?) > > I'm ok with this patch going in (through either tree). However: > >> Si

Re: [U-Boot] [PATCH v3 1/4] kconfig: arm: introduce symbol for ARM CPUs

2014-10-27 Thread Albert ARIBAUD
Hello Masahiro, On Tue, 28 Oct 2014 01:50:31 +0900, Masahiro YAMADA wrote: > Hi Georges, > > This patch is really appreciated, but I found some mistakes. > Please see below: > > > > 2014-10-27 7:25 GMT+09:00 Georges Savoundararadj : > > > +config SYS_CPU > > +default "arm720t" if CPU

Re: [U-Boot] [PATCH v3 1/4] kconfig: arm: introduce symbol for ARM CPUs

2014-10-27 Thread Masahiro YAMADA
Hi Georges, This patch is really appreciated, but I found some mistakes. Please see below: 2014-10-27 7:25 GMT+09:00 Georges Savoundararadj : > +config SYS_CPU > +default "arm720t" if CPU_ARM720T > +default "arm920t" if CPU_ARM920T > +default "arm926ejs" if CPU_ARM926EJ

[U-Boot] [PATCH v3 1/4] kconfig: arm: introduce symbol for ARM CPUs

2014-10-26 Thread Georges Savoundararadj
This commit introduces a Kconfig symbol for each ARM CPU: CPU_ARM720T, CPU_ARM920T, CPU_ARM926EJS, CPU_ARM946ES, CPU_ARM1136, CPU_ARM1176, CPU_V7, CPU_PXA, CPU_SA1100. Also, it adds the CPU feature Kconfig symbol HAS_VBAR which is selected for CPU_ARM1176 and CPU_V7. For each target, the correspon