OpenCores
URL https://opencores.org/ocsvn/ion/ion/trunk

Subversion Repositories ion

[/] [ion/] [trunk/] [src/] [common/] [makefile] - Diff between revs 34 and 66

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 34 Rev 66
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# This makefile does not contain any targets, only definitions used by the
# This makefile does not contain any targets, only definitions used by the
# makefiles of all the code samples.
# makefiles of all the code samples.
# It is meant to be included and not used standalone.
# It is meant to be included and not used standalone.
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# SYSTEM PARAMETERS
# SYSTEM PARAMETERS
#
#
# You can define here the size and address of the memory blocks of the system,
# You can define here the default size and address of the memory blocks of the
# though you can't change the number and type of blocks here (see
# system as seen by the linker, though you can't change the number and type of
# /vhdl/mips_cache_*.vhdl).
# blocks here (see /vhdl/mips_cache_*.vhdl and /vhdl/mips_pkg.vhdl).
# Addresses are duplicated in the linker script (ion*.lds).
 
#
#
#-------------------------------------------------------------------------------
# The samples' makefiles will probably redefine the values, anyway.
# KNOWN PROBLEMS AND WORKAROUNDS
 
#
 
# 1.- LINK PROBLEM IF FLAG '-G0' NOT USED
 
#       If flag '-G0' is not used on gcc, linker fails with 'relocation
 
#       truncated to fit: R_MIPS_GPREL16' error message.
 
#       This only happens when you use global or static veriables, initialized
 
#       or not.
 
#       (See explaination in the project docs about $gp indexed addressing in
 
#       MIPS architectures and the -G0 flag).
 
#
#
#     SUSPECTED CAUSE:
#-------------------------------------------------------------------------------
#       I'm sure there is something wrong with my linker script.
# NOTE:
#       With the default link scripts this does not happen. Yet we need to use
# A link script '/src/ion_noxram.lds' was used in previous versions of the
#       a script so that we can split code and data (including read-only) to
# project. It is no longer used. It is known to be buggy and will be removed.
#       different sections (and later to different ram blocks).
 
#
 
#     WORKAROUND:
 
#       Use -G0 flag so that _gp indexing is disabled. There is a performance
 
#       hit, though. In effect we're telling the compiler to NOT use $gp for
 
#       indexed access to any global variables.
 
#       This is only necessary for the 'bare' target (no external ram and no
 
#       cache) and will have to be fixed for regular targets (by using a
 
#       standard link script or fixing mine).
 
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
### Toolchain config ###########################################################
### Toolchain config ###########################################################
ifeq ($(LANG),)
ifeq ($(LANG),)
#****  Customize for Windows/Cygwin
#****  Customize for Windows/Cygwin
# Some common file commands (Cygwin/sh version, use your own)
# Some common file commands (Cygwin/sh version, use your own)
CP = cp
CP = cp
RM = RM
RM = RM
DWIN32 = -DWIN32
DWIN32 = -DWIN32
LINUX_PWD =
LINUX_PWD =
# MIPS GCC cross-toolchain: CodeSourcery -- replace with your own
# MIPS GCC cross-toolchain: CodeSourcery -- replace with your own
BIN_MIPS = C:/desarrollo/SourceryGpp/bin
BIN_MIPS = C:/desarrollo/SourceryGpp/bin
GCC_MIPS  = $(BIN_MIPS)/mips-sde-elf-gcc.exe $(CFLAGS)
GCC_MIPS  = $(BIN_MIPS)/mips-sde-elf-gcc.exe $(CFLAGS)
AS_MIPS   = $(BIN_MIPS)/mips-sde-elf-as
AS_MIPS   = $(BIN_MIPS)/mips-sde-elf-as
LD_MIPS   = $(BIN_MIPS)/mips-sde-elf-ld
LD_MIPS   = $(BIN_MIPS)/mips-sde-elf-ld
DUMP_MIPS = $(BIN_MIPS)/mips-sde-elf-objdump
DUMP_MIPS = $(BIN_MIPS)/mips-sde-elf-objdump
COPY_MIPS = $(BIN_MIPS)/mips-sde-elf-objcopy
COPY_MIPS = $(BIN_MIPS)/mips-sde-elf-objcopy
TO_VHDL   = python ../bin2hdl.py
TO_VHDL   = python ../bin2hdl.py
else
else
#**** Customize for Linux
#**** Customize for Linux
# MIPS GCC cross-toolchain: BuildRoot toolchain in my home directory -- replace with your own
# MIPS GCC cross-toolchain: BuildRoot toolchain in my home directory -- replace with your own
# NOTE: we will not use gcc builtin functions or libc
# NOTE: we will not use gcc builtin functions or libc
BIN_MIPS = /home/jaruiz/desarrollo/uClinux/MIPS/buildroot/buildroot-2010.11/output/staging/usr/bin
BIN_MIPS = /home/jaruiz/desarrollo/uClinux/MIPS/buildroot/buildroot-2010.11/output/staging/usr/bin
GCC_MIPS = $(BIN_MIPS)/mips-unknown-linux-uclibc-gcc $(CFLAGS)
GCC_MIPS = $(BIN_MIPS)/mips-unknown-linux-uclibc-gcc $(CFLAGS)
AS_MIPS = $(BIN_MIPS)/mips-unknown-linux-uclibc-as
AS_MIPS = $(BIN_MIPS)/mips-unknown-linux-uclibc-as
LD_MIPS = $(BIN_MIPS)/mips-unknown-linux-uclibc-ld
LD_MIPS = $(BIN_MIPS)/mips-unknown-linux-uclibc-ld
DUMP_MIPS = $(BIN_MIPS)/mips-unknown-linux-uclibc-objdump
DUMP_MIPS = $(BIN_MIPS)/mips-unknown-linux-uclibc-objdump
COPY_MIPS = $(BIN_MIPS)/mips-unknown-linux-uclibc-objcopy
COPY_MIPS = $(BIN_MIPS)/mips-unknown-linux-uclibc-objcopy
TO_VHDL = python ../bin2hdl.py
TO_VHDL = python ../bin2hdl.py
endif
endif
### System parameters ##########################################################
### System parameters ##########################################################
# FIXME clean up parameter names
# FIXME clean up parameter names
# 'CODE_BRAM' is meant to be a small BRAM (2 to 4KB) used for bootstrapping.
# 'CODE_BRAM' is meant to be a small BRAM (2 to 4KB) used for bootstrapping.
# 'DATA_BRAM' is a small BRAM connected to the data ports, used for debugging.
# 'DATA_BRAM' is a small BRAM connected to the data ports, used for debugging.
# 'XRAM' is meant to be the main external RAM, either SRAM or SDRAM.
# 'XRAM' is meant to be the main external RAM, either SRAM or SDRAM.
# Default location of code BRAM is on the reset vector address
# Default location of code BRAM is on the reset vector address
CODE_BRAM_ADDRESS = 0
CODE_BRAM_ADDRESS = 0
# Default size of code BRAM in 32-bit words
# Default size of code BRAM in 32-bit words
CODE_BRAM_SIZE = 1024
CODE_BRAM_SIZE = 1024
# Default size of data BRAM in 32-bit words
# Default size of data BRAM in 32-bit words
DATA_BRAM_SIZE = 256
DATA_BRAM_SIZE = 256
# Default address of BRAM -- used in some simulation-only tests, see makefiles
# Default address of BRAM -- used in some simulation-only tests, see makefiles
DATA_BRAM_ADDRESS = 0x10000
DATA_BRAM_ADDRESS = 0x10000
# Default size of data external RAM (XRAM) in 32-bit words (for simulation)
# Default size of data external RAM (XRAM) in 32-bit words (for simulation)
XRAM_SIZE = 2048
XRAM_SIZE = 2048
# Default address of XRAM
# Default address of XRAM
XRAM_ADDRESS = 0x80000000
XRAM_ADDRESS = 0x80000000
### Build options ##############################################################
### Build options ##############################################################
# Don't use gcc builtin functions, and try to target MIPS-I architecture
# Don't use gcc builtin functions, and try to target MIPS-I architecture
# This will prevent usage of unimplemented opcodes but will insert nops after
# This will prevent usage of unimplemented opcodes but will insert nops after
# load instructions, which Ion does not need.
# load instructions, which Ion does not need.
# (See comment above about -G0 flag)
# (See comment above about -G0 flag)
CFLAGS = -O2 -Wall -c -s -fno-builtin -mips1 -G0
CFLAGS = -O2 -Wall -c -s -fno-builtin -mips1 -G0
 
 
# For most simulations and demos we'll use these parameters
# LFLAGS: linker options are in the respective makefiles
# Set code to BRAM and use XRAM for data
 
# This will only work for small programs that fit the BRAM
 
LFLAGS_BOOT = -Ttext $(CODE_BRAM_ADDRESS) -Tdata $(XRAM_ADDRESS) -eentry -I elf32-big
 
 
 
# For some simulations we'll want to use TB1 which requires splitting code and
 
# data. Use project 'bare cpu' linker script and build elf-bigendian objects.
 
LFLAGS_BARE = -T../ion_noxram.lds -I elf32-big -eentry
 
 
 
### Project directories ########################################################
### Project directories ########################################################
# VHDL test bench directory, where VHDL output files will be created
# VHDL test bench directory, where VHDL output files will be created
TB_DIR = ../../vhdl/tb
TB_DIR = ../../vhdl/tb
# VHDL DE-1 board demo root directory, for vhdl output
# VHDL DE-1 board demo root directory, for vhdl output
DEMO_DIR = ../../vhdl/demo
DEMO_DIR = ../../vhdl/demo
# Root test code source directory, where python script and vhdl templates are
# Root test code source directory, where python script and vhdl templates are
SRC_DIR = ..
SRC_DIR = ..
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.