diff options
author | Tristan Shieh <tristan.shieh@mediatek.com> | 2018-06-12 14:23:01 +0800 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-06-21 09:39:48 +0000 |
commit | 53dabc29f2eb44761f4bc28e7f5e211bfeffb234 (patch) | |
tree | 76f8ee57661c358464728429a721492a371498d1 | |
parent | e96a6d26a6dcef86a41233163a4934e52da10235 (diff) |
mediatek: Move watchdog timer code to a common directory
Move watchdog timer (WDT) code which can be reused into a common
directory under soc/mediatek.
BUG=b:80501386
BRANCH=none
TEST=Boots correctly on Elm
Change-Id: Icbeb04f775c3c0fdc18dd198df8591f5c4b6ddce
Signed-off-by: Tristan Shieh <tristan.shieh@mediatek.com>
Reviewed-on: https://review.coreboot.org/27025
Reviewed-by: Julius Werner <jwerner@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/soc/mediatek/common/include/soc/wdt.h (renamed from src/soc/mediatek/mt8173/include/soc/wdt.h) | 2 | ||||
-rw-r--r-- | src/soc/mediatek/common/wdt.c (renamed from src/soc/mediatek/mt8173/wdt.c) | 2 | ||||
-rw-r--r-- | src/soc/mediatek/mt8173/Makefile.inc | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/soc/mediatek/mt8173/include/soc/wdt.h b/src/soc/mediatek/common/include/soc/wdt.h index ddca10290f..a15434c70d 100644 --- a/src/soc/mediatek/mt8173/include/soc/wdt.h +++ b/src/soc/mediatek/common/include/soc/wdt.h @@ -1,7 +1,7 @@ /* * This file is part of the coreboot project. * - * Copyright 2015 MediaTek Inc. + * Copyright 2018 MediaTek 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 diff --git a/src/soc/mediatek/mt8173/wdt.c b/src/soc/mediatek/common/wdt.c index bd2a614586..c2617531a6 100644 --- a/src/soc/mediatek/mt8173/wdt.c +++ b/src/soc/mediatek/common/wdt.c @@ -1,7 +1,7 @@ /* * This file is part of the coreboot project. * - * Copyright 2015 MediaTek Inc. + * Copyright 2018 MediaTek 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 diff --git a/src/soc/mediatek/mt8173/Makefile.inc b/src/soc/mediatek/mt8173/Makefile.inc index 3bb0ae0b31..b382455c67 100644 --- a/src/soc/mediatek/mt8173/Makefile.inc +++ b/src/soc/mediatek/mt8173/Makefile.inc @@ -28,7 +28,7 @@ bootblock-$(CONFIG_DRIVERS_UART) += ../common/uart.c endif bootblock-y += gpio.c gpio_init.c pmic_wrap.c mt6391.c -bootblock-y += wdt.c +bootblock-y += ../common/wdt.c bootblock-y += mmu_operations.c ################################################################################ @@ -40,7 +40,7 @@ verstage-$(CONFIG_DRIVERS_UART) += ../common/uart.c verstage-y += ../common/timer.c verstage-y += timer.c -verstage-y += wdt.c +verstage-y += ../common/wdt.c verstage-$(CONFIG_SPI_FLASH) += flash_controller.c verstage-y += gpio.c @@ -74,7 +74,7 @@ ramstage-y += pmic_wrap.c mt6391.c i2c.c ramstage-y += mt6311.c ramstage-y += da9212.c ramstage-y += gpio.c -ramstage-y += wdt.c +ramstage-y += ../common/wdt.c ramstage-y += pll.c ramstage-y += rtc.c |