]> git.ipfire.org Git - people/ms/u-boot.git/blame - mkconfig
mkconfig: add support for SPL CPU
[people/ms/u-boot.git] / mkconfig
CommitLineData
7ebf7443
WD
1#!/bin/sh -e
2
3# Script to create header files and links to configure
4# U-Boot for a specific board.
5#
1d9f4105 6# Parameters: Target Architecture CPU Board [VENDOR] [SOC]
7ebf7443 7#
9329cdfb 8# (C) 2002-2010 DENX Software Engineering, Wolfgang Denk <wd@denx.de>
7ebf7443
WD
9#
10
11APPEND=no # Default: Create new config file
5078cce8 12BOARD_NAME="" # Name to print in make output
804d83a5 13TARGETS=""
7ebf7443 14
a6862bc1
WD
15arch=""
16cpu=""
17board=""
18vendor=""
19soc=""
9329cdfb 20options=""
a6862bc1
WD
21
22if [ \( $# -eq 2 \) -a \( "$1" = "-A" \) ] ; then
23 # Automatic mode
24 line=`egrep -i "^[[:space:]]*${2}[[:space:]]" boards.cfg` || {
25 echo "make: *** No rule to make target \`$2_config'. Stop." >&2
26 exit 1
27 }
28
29 set ${line}
30 # add default board name if needed
31 [ $# = 3 ] && set ${line} ${1}
1285a280
MF
32elif [ "${MAKEFLAGS+set}${MAKELEVEL+set}" = "setset" ] ; then
33 # only warn when using a config target in the Makefile
34 cat <<-EOF
35
36 warning: Please migrate to boards.cfg. Failure to do so will
37 mean removal of your board in the next release.
38
39 EOF
40 sleep 5
a6862bc1
WD
41fi
42
7ebf7443
WD
43while [ $# -gt 0 ] ; do
44 case "$1" in
45 --) shift ; break ;;
46 -a) shift ; APPEND=yes ;;
ed7a196c 47 -n) shift ; BOARD_NAME="${1%_config}" ; shift ;;
804d83a5 48 -t) shift ; TARGETS="`echo $1 | sed 's:_: :g'` ${TARGETS}" ; shift ;;
7ebf7443
WD
49 *) break ;;
50 esac
51done
52
53[ $# -lt 4 ] && exit 1
9329cdfb 54[ $# -gt 7 ] && exit 1
7ebf7443 55
9329cdfb 56# Strip all options and/or _config suffixes
a6862bc1
WD
57CONFIG_NAME="${1%_config}"
58
9329cdfb 59[ "${BOARD_NAME}" ] || BOARD_NAME="${1%_config}"
a6862bc1
WD
60
61arch="$2"
62cpu="$3"
d22650af
AM
63tmp="${cpu#*:}"
64if [ "$tmp" != "$cpu" ] ; then
65 spl_cpu=$tmp
66 cpu="${cpu%:*}"
67fi
a6862bc1
WD
68if [ "$4" = "-" ] ; then
69 board=${BOARD_NAME}
70else
71 board="$4"
72fi
73[ $# -gt 4 ] && [ "$5" != "-" ] && vendor="$5"
74[ $# -gt 5 ] && [ "$6" != "-" ] && soc="$6"
9329cdfb
MV
75[ $# -gt 6 ] && [ "$7" != "-" ] && {
76 # check if we have a board config name in the options field
77 # the options field mave have a board config name and a list
78 # of options, both separated by a colon (':'); the options are
79 # separated by commas (',').
80 #
81 # Check for board name
82 tmp="${7%:*}"
83 if [ "$tmp" ] ; then
84 CONFIG_NAME="$tmp"
85 fi
86 # Check if we only have a colon...
87 if [ "${tmp}" != "$7" ] ; then
88 options=${7#*:}
89 TARGETS="`echo ${options} | sed 's:,: :g'` ${TARGETS}"
90 fi
91}
a6862bc1
WD
92
93if [ "${ARCH}" -a "${ARCH}" != "${arch}" ]; then
94 echo "Failed: \$ARCH=${ARCH}, should be '${arch}' for ${BOARD_NAME}" 1>&2
a8fa379d
NM
95 exit 1
96fi
97
9329cdfb
MV
98if [ "$options" ] ; then
99 echo "Configuring for ${BOARD_NAME} - Board: ${CONFIG_NAME}, Options: ${options}"
100else
101 echo "Configuring for ${BOARD_NAME} board..."
102fi
7ebf7443 103
7ebf7443
WD
104#
105# Create link to architecture specific headers
106#
f9328639
MB
107if [ "$SRCTREE" != "$OBJTREE" ] ; then
108 mkdir -p ${OBJTREE}/include
109 mkdir -p ${OBJTREE}/include2
110 cd ${OBJTREE}/include2
111 rm -f asm
a6862bc1
WD
112 ln -s ${SRCTREE}/arch/${arch}/include/asm asm
113 LNPREFIX=${SRCTREE}/arch/${arch}/include/asm/
f9328639 114 cd ../include
a9d8bc98 115 mkdir -p asm
f9328639
MB
116else
117 cd ./include
118 rm -f asm
a6862bc1 119 ln -s ../arch/${arch}/include/asm asm
f9328639
MB
120fi
121
819833af 122rm -f asm/arch
86c98882 123
a6862bc1
WD
124if [ -z "${soc}" ] ; then
125 ln -s ${LNPREFIX}arch-${cpu} asm/arch
86c98882 126else
a6862bc1 127 ln -s ${LNPREFIX}arch-${soc} asm/arch
86c98882 128fi
7ebf7443 129
a6862bc1 130if [ "${arch}" = "arm" ] ; then
819833af
PT
131 rm -f asm/proc
132 ln -s ${LNPREFIX}proc-armv asm/proc
b783edae
WD
133fi
134
7ebf7443
WD
135#
136# Create include file for Make
137#
a6862bc1 138echo "ARCH = ${arch}" > config.mk
d22650af
AM
139if [ ! -z "$spl_cpu" ] ; then
140 echo 'ifeq ($(CONFIG_SPL_BUILD),y)' >> config.mk
141 echo "CPU = ${spl_cpu}" >> config.mk
142 echo "else" >> config.mk
143 echo "CPU = ${cpu}" >> config.mk
144 echo "endif" >> config.mk
145else
146 echo "CPU = ${cpu}" >> config.mk
147fi
a6862bc1 148echo "BOARD = ${board}" >> config.mk
7ebf7443 149
a6862bc1 150[ "${vendor}" ] && echo "VENDOR = ${vendor}" >> config.mk
1d9f4105 151
a6862bc1 152[ "${soc}" ] && echo "SOC = ${soc}" >> config.mk
7ebf7443 153
7ec1fedd 154# Assign board directory to BOARDIR variable
a6862bc1
WD
155if [ -z "${vendor}" ] ; then
156 BOARDDIR=${board}
7ec1fedd 157else
a6862bc1 158 BOARDDIR=${vendor}/${board}
7ec1fedd
SR
159fi
160
7ebf7443
WD
161#
162# Create board specific header file
163#
164if [ "$APPEND" = "yes" ] # Append to existing config file
165then
166 echo >> config.h
167else
168 > config.h # Create new config file
169fi
170echo "/* Automatically generated - do not edit */" >>config.h
804d83a5
WD
171
172for i in ${TARGETS} ; do
2901f889 173 i="`echo ${i} | sed '/=/ {s/=/ /;q; } ; { s/$/ 1/; }'`"
d24f2d32 174 echo "#define CONFIG_${i}" >>config.h ;
804d83a5
WD
175done
176
5e724ca2
SW
177echo "#define CONFIG_SYS_ARCH \"${arch}\"" >> config.h
178echo "#define CONFIG_SYS_CPU \"${cpu}\"" >> config.h
179echo "#define CONFIG_SYS_BOARD \"${board}\"" >> config.h
180
181[ "${vendor}" ] && echo "#define CONFIG_SYS_VENDOR \"${vendor}\"" >> config.h
182
183[ "${soc}" ] && echo "#define CONFIG_SYS_SOC \"${soc}\"" >> config.h
184
10c32ff5
MF
185cat << EOF >> config.h
186#define CONFIG_BOARDDIR board/$BOARDDIR
52f0aa83 187#include <config_cmd_defaults.h>
10c32ff5 188#include <config_defaults.h>
a6862bc1 189#include <configs/${CONFIG_NAME}.h>
10c32ff5 190#include <asm/config.h>
26750c8a 191#include <config_fallbacks.h>
10c32ff5 192EOF
7ebf7443
WD
193
194exit 0