Re: [U-Boot-Users] [DNX#2006092142000015] [PATCH 1/2] Add support for the MPC8349E-mITX

Hello list,
inside the automatic U-Boot patch tracking system a new ticket [DNX#2006092142000015] was created:
<snip>
From: Timur Tabi timur@freescale.com
PREREQUISITE PATCHES:
- This patch can only be applied after the following patches have been
applied:
- DNX#2006090742000024 "Add support for multiple I2C buses"
- DNX#2006090742000033 "Multi-bus I2C implementation of MPC834x"
- DNX#2006091242000041 "Additional MPC8349 support for multibus i2c"
- DNX#2006091242000078 "Add support for variable flash memory sizes
on 83xx systems" 5) DNX#2006091242000069 "Add support for Errata DDR6 on MPC 834x systems"
CHANGELOG:
- Add support for the Freescale MPC8349E-mITX reference design platform. The second TSEC (Vitesse 7385 switch) is not supported at this time.
Signed-off-by: Timur Tabi timur@freescale.com
board/mpc8349itx/Makefile | 48 ++++ board/mpc8349itx/config.mk | 33 +++ board/mpc8349itx/mpc8349itx.c | 460 +++++++++++++++++++++++++++++++++++++++++ board/mpc8349itx/pci.c | 347 +++++++++++++++++++++++++++++++ board/mpc8349itx/u-boot.lds | 120 +++++++++++ 5 files changed, 1008 insertions(+), 0 deletions(-)
diff --git a/board/mpc8349itx/Makefile b/board/mpc8349itx/Makefile new file mode 100644 index 0000000..31bcdb8 --- /dev/null +++ b/board/mpc8349itx/Makefile @@ -0,0 +1,48 @@ +# +# Copyright (C) Freescale Semiconductor, Inc. 2006. All rights reserved. +# +# See file CREDITS for list of people who contributed to this +# project. +# +# 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 $(TOPDIR)/config.mk
+LIB = $(obj)lib$(BOARD).a
+COBJS := $(BOARD).o pci.o
+SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) +OBJS := $(addprefix $(obj),$(COBJS)) +SOBJS := $(addprefix $(obj),$(SOBJS))
+$(LIB): $(obj).depend $(OBJS)
- $(AR) crv $@ $(OBJS)
+clean:
- rm -f $(SOBJS) $(OBJS)
+distclean: clean
- rm -f $(LIB) core *.bak .depend
+#########################################################################
+include $(SRCTREE)/rules.mk
+sinclude $(obj).depend
+######################################################################### diff --git a/board/mpc8349itx/config.mk b/board/mpc8349itx/config.mk new file mode 100644 index 0000000..2e11311 --- /dev/null +++ b/board/mpc8349itx/config.mk @@ -0,0 +1,33 @@ +# +# Copyright (C) Freescale Semiconductor, Inc. 2006. All rights reserved. +# +# See file CREDITS for list of people who contributed to this +# project. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as
</snip>
Your U-Boot support team
participants (1)
-
DENX Support System