diff options
author | santhosh hassan <sahassan@google.com> | 2019-03-09 02:28:43 -0800 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-03-20 13:54:37 +0000 |
commit | 0eb4db185cfef44ddfdbd91d4fe69a48c127fa84 (patch) | |
tree | 0c484dea0ebd490533e25bfba8846442b35cd926 /src/mainboard/google/mistral/Makefile.inc | |
parent | 0dd80aab25200c4bba26aa6b9fc24f3e967e3f6a (diff) |
google/mistral: Implement board reset
Implement reset using PSHOLD.
Change-Id: I472bf73cc7b227187b284a3730ec5dea5373695c
Signed-off-by: Santhosh HassanĀ <sahassan@google.com>
Signed-off-by: Nitheesh Sekar <nsekar@codeaurora.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/31827
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/mainboard/google/mistral/Makefile.inc')
-rw-r--r-- | src/mainboard/google/mistral/Makefile.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mainboard/google/mistral/Makefile.inc b/src/mainboard/google/mistral/Makefile.inc index 31dc79fff9..dfb0bbc974 100644 --- a/src/mainboard/google/mistral/Makefile.inc +++ b/src/mainboard/google/mistral/Makefile.inc @@ -1,14 +1,18 @@ bootblock-y += memlayout.ld bootblock-y += chromeos.c +bootblock-y += reset.c bootblock-y += bootblock.c verstage-y += memlayout.ld verstage-y += chromeos.c +verstage-y += reset.c romstage-y += memlayout.ld romstage-y += chromeos.c +romstage-y += reset.c ramstage-y += memlayout.ld ramstage-y += chromeos.c +ramstage-y += reset.c ramstage-y += mainboard.c |