8a6e635419
The latest whirlwind requirements call for the need to indicate different device states while it is still in coreboot (it could be waiting for recovery or for factory reset trigger). Initialize the LED ring when running on the SP5 hardware (which is the first proper Whirlwind device). BRANCH=storm BUG=chrome-os-partner:36059 TEST=when the device starts the LED ring gets shut down Change-Id: I9dd0bca4849a2a8500322c84c7351aeef00d862e Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Original-Commit-Id: 24e4da56d4c43d03f235d0cfd5995ef235e6a2c5 Original-Change-Id: Ica37301aa27f35897d2bf467ae319fb5e68adc1d Original-Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Original-Reviewed-on: https://chromium-review.googlesource.com/258271 Original-Reviewed-by: David Hendricks <dhendrix@chromium.org> Reviewed-on: http://review.coreboot.org/9859 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
46 lines
1.3 KiB
Makefile
46 lines
1.3 KiB
Makefile
##
|
|
## This file is part of the coreboot project.
|
|
##
|
|
## Copyright 2014 Google 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.
|
|
##
|
|
## 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
##
|
|
|
|
bootblock-y += bootblock.c
|
|
bootblock-y += cdp.c
|
|
bootblock-y += mmu.c
|
|
bootblock-y += reset.c
|
|
|
|
verstage-y += boardid.c
|
|
verstage-y += cdp.c
|
|
verstage-y += chromeos.c
|
|
verstage-y += gsbi.c
|
|
verstage-y += memlayout.ld
|
|
verstage-y += reset.c
|
|
|
|
romstage-y += romstage.c
|
|
romstage-y += cdp.c
|
|
romstage-y += mmu.c
|
|
romstage-y += reset.c
|
|
|
|
ramstage-y += boardid.c
|
|
ramstage-y += cdp.c
|
|
ramstage-y += chromeos.c
|
|
ramstage-y += mainboard.c
|
|
ramstage-y += mmu.c
|
|
ramstage-y += reset.c
|
|
|
|
bootblock-y += memlayout.ld
|
|
romstage-y += memlayout.ld
|
|
ramstage-y += memlayout.ld
|