From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Schwingen Date: Mon, 14 Jan 2008 09:02:16 +0100 Subject: [U-Boot-Users] resend #2 [PATCH 1/5]: add AcTux board support (common) In-Reply-To: <20080113125113.GA27114@discworld.dascon.de> References: <20080112140030.GB6978@discworld.dascon.de> <20080113125113.GA27114@discworld.dascon.de> Message-ID: <20080114080216.GA16298@discworld.dascon.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi, 2nd resend of the previous patch set with formatting fixed (hopefully). The patch adds 4 boards, called AcTux-1 .. AcTux-4. This patch contains the files that contain changes for multiple boards, the board-specific files follow as separate patches. I have kept the small version of the mach-types.h patch to fir the list size limit - the full version of the patch, with mach-types.h generated from the current ARM machine database, is at: http://www.schwingen.org/actux.diff cu Michael Signed-off-by: Michael Schwingen diff --git a/MAINTAINERS b/MAINTAINERS index 2ef2f5c..9291f48 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -536,6 +536,13 @@ Alex Z?pke lart SA1100 dnp1110 SA1110 +Michael Schwingen + + actux1 xscale + actux2 xscale + actux3 xscale + actux4 xscale + ######################################################################### # x86 Systems: # # # diff --git a/MAKEALL b/MAKEALL index ebc5a22..a058869 100755 --- a/MAKEALL +++ b/MAKEALL @@ -512,6 +512,10 @@ LIST_pxa=" \ " LIST_ixp=" \ + actux1 \ + actux2 \ + actux3 \ + actux4 \ ixdp425 \ ixdpg425 \ pdnb3 \ diff --git a/Makefile b/Makefile index 1983ca0..9a4d5c9 100644 --- a/Makefile +++ b/Makefile @@ -2406,6 +2406,18 @@ SMN42_config : unconfig ## XScale Systems ######################################################################### +actux1_config : unconfig + @$(MKCONFIG) $(@:_config=) arm ixp actux1 + +actux2_config : unconfig + @$(MKCONFIG) $(@:_config=) arm ixp actux2 + +actux3_config : unconfig + @$(MKCONFIG) $(@:_config=) arm ixp actux3 + +actux4_config : unconfig + @$(MKCONFIG) $(@:_config=) arm ixp actux4 + adsvix_config : unconfig @$(MKCONFIG) $(@:_config=) arm pxa adsvix diff --git a/include/asm-arm/mach-types.h b/include/asm-arm/mach-types.h index ab19047..01bfecb 100644 --- a/include/asm-arm/mach-types.h +++ b/include/asm-arm/mach-types.h @@ -742,6 +742,10 @@ extern unsigned int __machine_arch_type; #define MACH_TYPE_AT91SAM9260EK 1099 #define MACH_TYPE_AT91RM9200DF 1119 #define MACH_TYPE_AT91SAM9263EK 1202 +#define MACH_TYPE_ACTUX1 1479 +#define MACH_TYPE_ACTUX2 1480 +#define MACH_TYPE_ACTUX3 1481 +#define MACH_TYPE_ACTUX4 1532 #ifdef CONFIG_ARCH_EBSA110 # ifdef machine_arch_type