The romstage.c is more board related than soc specific, like setting the pwm regulators, so moving it to mainboard/gru. BRANCH=none BUG=chrome-os-partner:54819 TEST=Bootup on kevin board Change-Id: I83c6cde9f451480e47e2b4b549cedf65b345134c Signed-off-by: Martin Roth <martinroth@chromium.org> Original-Commit-Id: 35feeb07131a6a9de4adde035236987391833474 Original-Change-Id: If2bf245302eb4fb20bb089c1b3ffa03909722443 Original-Signed-off-by: Shunqian Zheng <zhengsq@rock-chips.com> Original-Reviewed-on: https://chromium-review.googlesource.com/375398 Original-Reviewed-by: Julius Werner <jwerner@chromium.org> Reviewed-on: https://review.coreboot.org/16367 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
37 lines
1 KiB
Makefile
37 lines
1 KiB
Makefile
##
|
|
## This file is part of the coreboot project.
|
|
##
|
|
## Copyright 2016 Rockchip Inc.
|
|
##
|
|
## 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; version 2 of the License.
|
|
##
|
|
## 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.
|
|
##
|
|
|
|
subdirs-y += sdram_params/
|
|
|
|
bootblock-y += bootblock.c
|
|
bootblock-y += chromeos.c
|
|
bootblock-y += memlayout.ld
|
|
|
|
verstage-y += chromeos.c
|
|
verstage-y += memlayout.ld
|
|
verstage-y += reset.c
|
|
|
|
romstage-y += boardid.c
|
|
romstage-y += chromeos.c
|
|
romstage-y += memlayout.ld
|
|
romstage-y += romstage.c
|
|
romstage-y += sdram_configs.c
|
|
|
|
ramstage-y += boardid.c
|
|
ramstage-y += chromeos.c
|
|
ramstage-y += mainboard.c
|
|
ramstage-y += memlayout.ld
|
|
ramstage-y += reset.c
|
|
ramstage-y += sdram_configs.c # Needed for ram_code()
|