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