* [PATCH 1/2] at91rm9200: fix lowlovel init PIOC base
@ 2012-01-04 18:07 Jean-Christophe PLAGNIOL-VILLARD
2012-01-04 18:07 ` [PATCH 2/2] at91rm9200_devices: add missing sizes.h Jean-Christophe PLAGNIOL-VILLARD
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2012-01-04 18:07 UTC (permalink / raw)
To: barebox
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
---
MAKEALL | 52 +++++++++++++++++++-----
arch/arm/mach-at91/at91rm9200_lowlevel_init.c | 6 +-
2 files changed, 44 insertions(+), 14 deletions(-)
diff --git a/MAKEALL b/MAKEALL
index 1ba4710..b97cb76 100755
--- a/MAKEALL
+++ b/MAKEALL
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
# Print statistics when we exit
trap exit 1 2 3 15
@@ -18,6 +18,8 @@ filename=`basename $0`
is_print_stats=1
+KEEP=n
+
#-----------------------------------------------------------------------
usage() {
@@ -56,6 +58,8 @@ usage() {
echo "JOBS -j jobs"
echo "BUILDDIR -O build dir"
echo "LOGDIR -l log dir"
+ echo "REGEX -e regex"
+ echo "KEEP -k keep build dir"
echo ""
}
@@ -90,9 +94,15 @@ do_build_target() {
local target_time_start=$(date +%s)
local log_report="${LOGDIR}/${target}/report.log"
local log_err="${LOGDIR}/${target}/errors.log"
+ local builddir="${BUILDDIR}"
- rm -rf "${BUILDDIR}"
- mkdir -p "${BUILDDIR}"
+ if [ "x${KEEP}" = "xy" ]
+ then
+ builddir="${BUILDDIR}/${target}"
+ else
+ rm -rf "${builddir}"
+ fi
+ mkdir -p "${builddir}"
mkdir -p "${LOGDIR}/${target}"
printf "Building ${arch} ${target} \n" >&2 | tee -a "${log_report}"
@@ -108,22 +118,25 @@ do_build_target() {
fi
fi
- MAKE="make -C ${here} CROSS_COMPILE=${cross_compile} ARCH=${arch} O=${BUILDDIR}"
- ${MAKE} -j${JOBS} ${target} 2>&1 > "${log_report}" | tee "${log_err}"
+ MAKE="make -C ${here} CROSS_COMPILE=${cross_compile} ARCH=${arch} O=${builddir} -j${JOBS}"
+ if [ ! -e "${builddir}/.config" ]
+ then
+ ${MAKE} ${target} 2>&1 > "${log_report}" | tee "${log_err}"
+ fi
printf "Configure: " | tee -a "${log_report}"
check_pipe_status
if [ "$?" = "0" ]; then
printf "OK \n" | tee -a "${log_report}"
- ${MAKE} -j${JOBS} -s 2>&1 >> "${log_report}" | tee -a "${log_err}"
+ ${MAKE} -s 2>&1 >> "${log_report}" | tee -a "${log_err}"
printf "Compile: " ${target} | tee -a "${log_report}"
check_pipe_status
if [ "$?" = "0" ]; then
printf "OK \n" | tee -a "${log_report}"
- ${cross_compile}size ${BUILDDIR}/barebox | tee -a "${log_report}"
+ ${cross_compile}size ${builddir}/barebox | tee -a "${log_report}"
else
printf "FAILED \n" | tee -a "${log_report}"
ret=1
@@ -150,8 +163,9 @@ do_build_target() {
do_build() {
local arch=$1
+ local regex=$2
- for i in arch/${arch}/configs/*_defconfig
+ find arch/${arch}/configs -name "${regex}_defconfig" | while read i
do
local target=$(basename $i)
@@ -176,7 +190,7 @@ do_build_all() {
return $build_target
}
-while getopts "hc:j:O:l:a:" Option
+while getopts "hc:j:O:l:a:e:k" Option
do
case $Option in
a )
@@ -194,6 +208,12 @@ case $Option in
O )
BUILDDIR=${OPTARG}
;;
+ e )
+ REGEX=${OPTARG}
+ ;;
+ k )
+ KEEP=y
+ ;;
h )
usage
exit 0
@@ -234,11 +254,16 @@ then
CONFIG="./${CONFIG}"
fi
- . "${CONFIG}"
+ source "${CONFIG}"
fi
[ -d "${LOGDIR}" ] || mkdir ${LOGDIR} || exit 1
+if [ ! "${REGEX}" ]
+then
+ REGEX="*"
+fi
+
if [ ! "${CONFIG}" ] && [ ! "${CROSS_COMPILE+set}" ]
then
echo "You need to specify a CONFIG or a CROSS_COMPILE"
@@ -258,9 +283,14 @@ then
exit 0
fi
+if [ "x${KEEP}" != "xy" ]
+then
+ rm -rf "${BUILDDIR}"
+fi
+
if [ $# -eq 0 ]
then
- do_build ${ARCH}
+ do_build ${ARCH} "${REGEX}"
else
do_build_target ${ARCH} $1
fi
diff --git a/arch/arm/mach-at91/at91rm9200_lowlevel_init.c b/arch/arm/mach-at91/at91rm9200_lowlevel_init.c
index 8d9ae08..dc54bcf 100644
--- a/arch/arm/mach-at91/at91rm9200_lowlevel_init.c
+++ b/arch/arm/mach-at91/at91rm9200_lowlevel_init.c
@@ -101,11 +101,11 @@ void __naked __bare_init board_init_lowlevel(void)
*/
/* PIOC_ASR: Configure PIOC as peripheral (D16/D31) */
- at91_sys_write(AT91_PIOC + PIO_ASR, CONFIG_SYS_PIOC_ASR_VAL);
+ __raw_writel(CONFIG_SYS_PIOC_ASR_VAL, AT91_BASE_PIOC + PIO_ASR);
/* PIOC_BSR */
- at91_sys_write(AT91_PIOC + PIO_BSR, CONFIG_SYS_PIOC_BSR_VAL);
+ __raw_writel(CONFIG_SYS_PIOC_BSR_VAL, AT91_BASE_PIOC + PIO_BSR);
/* PIOC_PDR */
- at91_sys_write(AT91_PIOC + PIO_PDR, CONFIG_SYS_PIOC_PDR_VAL);
+ __raw_writel(CONFIG_SYS_PIOC_PDR_VAL, AT91_BASE_PIOC + PIO_PDR);
/* EBI_CSA : CS1=SDRAM */
at91_sys_write(AT91_EBI_CSA, CONFIG_SYS_EBI_CSA_VAL);
--
1.7.7
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 2/2] at91rm9200_devices: add missing sizes.h
2012-01-04 18:07 [PATCH 1/2] at91rm9200: fix lowlovel init PIOC base Jean-Christophe PLAGNIOL-VILLARD
@ 2012-01-04 18:07 ` Jean-Christophe PLAGNIOL-VILLARD
2012-01-04 18:08 ` [PATCH 1/2 v2] at91rm9200: fix lowlovel init PIOC base Jean-Christophe PLAGNIOL-VILLARD
2012-01-05 8:30 ` [PATCH 1/2] " Sascha Hauer
2 siblings, 0 replies; 5+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2012-01-04 18:07 UTC (permalink / raw)
To: barebox
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
---
arch/arm/mach-at91/at91rm9200_devices.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/arch/arm/mach-at91/at91rm9200_devices.c b/arch/arm/mach-at91/at91rm9200_devices.c
index 1152d07..599eb79 100644
--- a/arch/arm/mach-at91/at91rm9200_devices.c
+++ b/arch/arm/mach-at91/at91rm9200_devices.c
@@ -17,6 +17,7 @@
#include <mach/board.h>
#include <mach/gpio.h>
#include <mach/io.h>
+#include <sizes.h>
#include "generic.h"
--
1.7.7
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/2 v2] at91rm9200: fix lowlovel init PIOC base
2012-01-04 18:07 [PATCH 1/2] at91rm9200: fix lowlovel init PIOC base Jean-Christophe PLAGNIOL-VILLARD
2012-01-04 18:07 ` [PATCH 2/2] at91rm9200_devices: add missing sizes.h Jean-Christophe PLAGNIOL-VILLARD
@ 2012-01-04 18:08 ` Jean-Christophe PLAGNIOL-VILLARD
2012-01-05 8:33 ` Sascha Hauer
2012-01-05 8:30 ` [PATCH 1/2] " Sascha Hauer
2 siblings, 1 reply; 5+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2012-01-04 18:08 UTC (permalink / raw)
To: barebox
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
---
arch/arm/mach-at91/at91rm9200_lowlevel_init.c | 6 +-
2 files changed, 44 insertions(+), 14 deletions(-)
diff --git a/arch/arm/mach-at91/at91rm9200_lowlevel_init.c b/arch/arm/mach-at91/at91rm9200_lowlevel_init.c
index 8d9ae08..dc54bcf 100644
--- a/arch/arm/mach-at91/at91rm9200_lowlevel_init.c
+++ b/arch/arm/mach-at91/at91rm9200_lowlevel_init.c
@@ -101,11 +101,11 @@ void __naked __bare_init board_init_lowlevel(void)
*/
/* PIOC_ASR: Configure PIOC as peripheral (D16/D31) */
- at91_sys_write(AT91_PIOC + PIO_ASR, CONFIG_SYS_PIOC_ASR_VAL);
+ __raw_writel(CONFIG_SYS_PIOC_ASR_VAL, AT91_BASE_PIOC + PIO_ASR);
/* PIOC_BSR */
- at91_sys_write(AT91_PIOC + PIO_BSR, CONFIG_SYS_PIOC_BSR_VAL);
+ __raw_writel(CONFIG_SYS_PIOC_BSR_VAL, AT91_BASE_PIOC + PIO_BSR);
/* PIOC_PDR */
- at91_sys_write(AT91_PIOC + PIO_PDR, CONFIG_SYS_PIOC_PDR_VAL);
+ __raw_writel(CONFIG_SYS_PIOC_PDR_VAL, AT91_BASE_PIOC + PIO_PDR);
/* EBI_CSA : CS1=SDRAM */
at91_sys_write(AT91_EBI_CSA, CONFIG_SYS_EBI_CSA_VAL);
--
1.7.7
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2 v2] at91rm9200: fix lowlovel init PIOC base
2012-01-04 18:08 ` [PATCH 1/2 v2] at91rm9200: fix lowlovel init PIOC base Jean-Christophe PLAGNIOL-VILLARD
@ 2012-01-05 8:33 ` Sascha Hauer
0 siblings, 0 replies; 5+ messages in thread
From: Sascha Hauer @ 2012-01-05 8:33 UTC (permalink / raw)
To: Jean-Christophe PLAGNIOL-VILLARD; +Cc: barebox
On Wed, Jan 04, 2012 at 07:08:59PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Missed v2, used this one instead.
Sascha
> ---
> arch/arm/mach-at91/at91rm9200_lowlevel_init.c | 6 +-
> 2 files changed, 44 insertions(+), 14 deletions(-)
>
> diff --git a/arch/arm/mach-at91/at91rm9200_lowlevel_init.c b/arch/arm/mach-at91/at91rm9200_lowlevel_init.c
> index 8d9ae08..dc54bcf 100644
> --- a/arch/arm/mach-at91/at91rm9200_lowlevel_init.c
> +++ b/arch/arm/mach-at91/at91rm9200_lowlevel_init.c
> @@ -101,11 +101,11 @@ void __naked __bare_init board_init_lowlevel(void)
> */
>
> /* PIOC_ASR: Configure PIOC as peripheral (D16/D31) */
> - at91_sys_write(AT91_PIOC + PIO_ASR, CONFIG_SYS_PIOC_ASR_VAL);
> + __raw_writel(CONFIG_SYS_PIOC_ASR_VAL, AT91_BASE_PIOC + PIO_ASR);
> /* PIOC_BSR */
> - at91_sys_write(AT91_PIOC + PIO_BSR, CONFIG_SYS_PIOC_BSR_VAL);
> + __raw_writel(CONFIG_SYS_PIOC_BSR_VAL, AT91_BASE_PIOC + PIO_BSR);
> /* PIOC_PDR */
> - at91_sys_write(AT91_PIOC + PIO_PDR, CONFIG_SYS_PIOC_PDR_VAL);
> + __raw_writel(CONFIG_SYS_PIOC_PDR_VAL, AT91_BASE_PIOC + PIO_PDR);
>
> /* EBI_CSA : CS1=SDRAM */
> at91_sys_write(AT91_EBI_CSA, CONFIG_SYS_EBI_CSA_VAL);
> --
> 1.7.7
>
>
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] at91rm9200: fix lowlovel init PIOC base
2012-01-04 18:07 [PATCH 1/2] at91rm9200: fix lowlovel init PIOC base Jean-Christophe PLAGNIOL-VILLARD
2012-01-04 18:07 ` [PATCH 2/2] at91rm9200_devices: add missing sizes.h Jean-Christophe PLAGNIOL-VILLARD
2012-01-04 18:08 ` [PATCH 1/2 v2] at91rm9200: fix lowlovel init PIOC base Jean-Christophe PLAGNIOL-VILLARD
@ 2012-01-05 8:30 ` Sascha Hauer
2 siblings, 0 replies; 5+ messages in thread
From: Sascha Hauer @ 2012-01-05 8:30 UTC (permalink / raw)
To: Jean-Christophe PLAGNIOL-VILLARD; +Cc: barebox
On Wed, Jan 04, 2012 at 07:07:28PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> ---
> MAKEALL | 52 +++++++++++++++++++-----
This seems unrelated to this patch.
> arch/arm/mach-at91/at91rm9200_lowlevel_init.c | 6 +-
Applied only this hunk.
Sascha
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-01-05 8:33 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-01-04 18:07 [PATCH 1/2] at91rm9200: fix lowlovel init PIOC base Jean-Christophe PLAGNIOL-VILLARD
2012-01-04 18:07 ` [PATCH 2/2] at91rm9200_devices: add missing sizes.h Jean-Christophe PLAGNIOL-VILLARD
2012-01-04 18:08 ` [PATCH 1/2 v2] at91rm9200: fix lowlovel init PIOC base Jean-Christophe PLAGNIOL-VILLARD
2012-01-05 8:33 ` Sascha Hauer
2012-01-05 8:30 ` [PATCH 1/2] " Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox