diff options
author | Furquan Shaikh <furquan@google.com> | 2014-11-12 16:23:00 -0800 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-04-10 12:01:55 +0200 |
commit | 8a1ee9bf70d1777636b297158882a5f465af66b7 (patch) | |
tree | 563f3e9a584b20fcf5ca9f69d5b303043beebf66 /src/drivers/ti/Makefile.inc | |
parent | 7f4221c1787eb52874a99ed736f0fd692c71e335 (diff) | |
download | coreboot-8a1ee9bf70d1777636b297158882a5f465af66b7.tar.xz |
rtc: Add an RTC driver for the TI TPS65913 PMIC.
The TPS65913 PMIC has an RTC built into it. This change adds
a driver for it which implements the new RTC API.
BUG=chrome-os-partner:33764
BRANCH=None
TEST=Compiles and boots to kernel prompt on ryu. Timestamps for event log
verified across multiple boots.
Change-Id: I49ec9b78afc53f1cbd4be09e448cdae6077fb710
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Original-Commit-Id: c16c11e620c830e7a73a2a24fe4823ccea0f3c39
Original-Change-Id: If1d549ea2361d0de6be75fd24b9e9810a6df7457
Original-Signed-off-by: Furquan Shaikh <furquan@google.com>
Original-Reviewed-on: https://chromium-review.googlesource.com/229414
Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Original-Tested-by: Furquan Shaikh <furquan@chromium.org>
Original-Commit-Queue: Furquan Shaikh <furquan@chromium.org>
Reviewed-on: http://review.coreboot.org/9425
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/drivers/ti/Makefile.inc')
-rw-r--r-- | src/drivers/ti/Makefile.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/drivers/ti/Makefile.inc b/src/drivers/ti/Makefile.inc index c0ed9c0d3e..037da94f58 100644 --- a/src/drivers/ti/Makefile.inc +++ b/src/drivers/ti/Makefile.inc @@ -2,6 +2,7 @@ ## This file is part of the coreboot project. ## ## Copyright (C) 2012 The Chromium OS Authors. +## 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 @@ -18,3 +19,4 @@ ## subdirs-$(CONFIG_DRIVER_TI_TPS65090) += tps65090/ +subdirs-$(CONFIG_DRIVERS_TI_TPS65913) += tps65913/ |