Skip to content

Commit

Permalink
nds32/lib: add generic funcs in NDS32 lib
Browse files Browse the repository at this point in the history
Add Makefile, board.c, interrupts.c and bootm.c functions
to nds32 architecture.

Signed-off-by: Macpaul Lin <[email protected]>
  • Loading branch information
Macpaul Lin authored and wdenx committed Oct 21, 2011
1 parent 445a886 commit 463d47f
Show file tree
Hide file tree
Showing 5 changed files with 890 additions and 0 deletions.
35 changes: 35 additions & 0 deletions arch/nds32/config.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#
# (C) Copyright 2000-2002
# Wolfgang Denk, DENX Software Engineering, [email protected].
#
# (C) Copyright 2011
# Shawn Lin, Andes Technology Corporation <[email protected]>
# Macpaul Lin, Andes Technology Corporation <[email protected]>
#
# 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

CROSS_COMPILE ?= nds32le-linux-

CONFIG_STANDALONE_LOAD_ADDR = 0x300000 -T nds32.lds

PLATFORM_RELFLAGS += -fno-strict-aliasing -fno-common -mrelax
PLATFORM_RELFLAGS += -gdwarf-2
PLATFORM_CPPFLAGS += -DCONFIG_NDS32 -D__nds32__ -G0 -ffixed-10 -fpie

LDFLAGS_u-boot = --gc-sections --relax
46 changes: 46 additions & 0 deletions arch/nds32/lib/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
#
# (C) Copyright 2000-2006
# Wolfgang Denk, DENX Software Engineering, [email protected].
#
# Copyright (C) 2011 Andes Technology Corporation
# Shawn Lin, Andes Technology Corporation <[email protected]>
# Macpaul Lin, Andes Technology Corporation <[email protected]>
#
# 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$(ARCH).o

OBJS := board.o bootm.o interrupts.o

all: $(LIB)

$(LIB): $(OBJS) $(SOBJS)
$(call cmd_link_o_target, $(OBJS))

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

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

sinclude $(obj).depend

#########################################################################
Loading

0 comments on commit 463d47f

Please sign in to comment.