Skip to content

Commit

Permalink
at91: Add esd gmbh OTC570 board support
Browse files Browse the repository at this point in the history
This patch adds support for esd gmbh OTC570 board.
The OTC570 is based on an Atmel AT91SAM9263 SoC.

Signed-off-by: Daniel Gorsulowski <[email protected]>
  • Loading branch information
Daniel Gorsulowski authored and Tom Rix committed Feb 12, 2010
1 parent 0b692dc commit 44d8025
Show file tree
Hide file tree
Showing 10 changed files with 712 additions and 0 deletions.
1 change: 1 addition & 0 deletions MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -572,6 +572,7 @@ Peter Figuli <[email protected]>
Daniel Gorsulowski <[email protected]>

meesc ARM926EJS (AT91SAM9263 SoC)
otc570 ARM926EJS (AT91SAM9263 SoC)

Sedji Gaouaou<[email protected]>
at91sam9g10ek ARM926EJS (AT91SAM9G10 SoC)
Expand Down
1 change: 1 addition & 0 deletions MAKEALL
Original file line number Diff line number Diff line change
Expand Up @@ -659,6 +659,7 @@ LIST_at91=" \
meesc \
mp2usb \
m501sk \
otc570 \
pm9261 \
pm9263 \
SBC35_A9G20 \
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2870,6 +2870,9 @@ at91sam9g45ekes_config : unconfig
fi;
@$(MKCONFIG) -a at91sam9m10g45ek arm arm926ejs at91sam9m10g45ek atmel at91

otc570_config : unconfig
@$(MKCONFIG) $(@:_config=) arm arm926ejs otc570 esd at91

pm9263_config : unconfig
@$(MKCONFIG) $(@:_config=) arm arm926ejs pm9263 ronetix at91

Expand Down
55 changes: 55 additions & 0 deletions board/esd/otc570/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
#
# (C) Copyright 2003-2008
# Wolfgang Denk, DENX Software Engineering, [email protected].
#
# (C) Copyright 2008
# Stelian Pop <[email protected]>
# Lead Tech Design <www.leadtechdesign.com>
#
# 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-y += $(BOARD).o
COBJS-$(CONFIG_HAS_DATAFLASH) += partition.o

SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
OBJS := $(addprefix $(obj),$(COBJS-y))
SOBJS := $(addprefix $(obj),$(SOBJS))

$(LIB): $(obj).depend $(OBJS) $(SOBJS)
$(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS)

clean:
rm -f $(SOBJS) $(OBJS)

distclean: clean
rm -f $(LIB) core *.bak $(obj).depend

#########################################################################

# defines $(obj).depend target
include $(SRCTREE)/rules.mk

sinclude $(obj).depend

#########################################################################
1 change: 1 addition & 0 deletions board/esd/otc570/config.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
TEXT_BASE = 0x23f00000
Loading

0 comments on commit 44d8025

Please sign in to comment.