Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Stefan Roese | 0044c42 | 2012-08-16 17:55:41 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2011 |
| 4 | * Heiko Schocher, DENX Software Engineering, hs@denx.de. |
| 5 | * |
Tom Rini | abcaa6e | 2013-11-08 13:53:14 -0500 | [diff] [blame] | 6 | * A bootcount driver for the RTC IP block found on many TI platforms. |
| 7 | * This requires the RTC clocks, etc, to be enabled prior to use and |
| 8 | * not all boards with this IP block on it will have the RTC in use. |
Stefan Roese | 0044c42 | 2012-08-16 17:55:41 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <bootcount.h> |
Tom Rini | 155d424 | 2013-08-28 09:00:28 -0400 | [diff] [blame] | 12 | #include <asm/davinci_rtc.h> |
Stefan Roese | 0044c42 | 2012-08-16 17:55:41 +0000 | [diff] [blame] | 13 | |
| 14 | void bootcount_store(ulong a) |
| 15 | { |
| 16 | struct davinci_rtc *reg = |
| 17 | (struct davinci_rtc *)CONFIG_SYS_BOOTCOUNT_ADDR; |
| 18 | |
| 19 | /* |
Tomas Melin | bac9170 | 2017-08-03 09:16:54 +0300 | [diff] [blame] | 20 | * write RTC kick registers to enable write |
| 21 | * for RTC Scratch registers. Scratch register 2 is |
| 22 | * used for bootcount value. |
Stefan Roese | 0044c42 | 2012-08-16 17:55:41 +0000 | [diff] [blame] | 23 | */ |
| 24 | writel(RTC_KICK0R_WE, ®->kick0r); |
| 25 | writel(RTC_KICK1R_WE, ®->kick1r); |
Tom Rini | 22ee397 | 2013-08-28 09:00:29 -0400 | [diff] [blame] | 26 | raw_bootcount_store(®->scratch2, |
Marek Vasut | 758694f | 2018-10-11 00:13:54 +0200 | [diff] [blame] | 27 | (CONFIG_SYS_BOOTCOUNT_MAGIC & 0xffff0000) | (a & 0x0000ffff)); |
Stefan Roese | 0044c42 | 2012-08-16 17:55:41 +0000 | [diff] [blame] | 28 | } |
| 29 | |
| 30 | ulong bootcount_load(void) |
| 31 | { |
Tom Rini | 22ee397 | 2013-08-28 09:00:29 -0400 | [diff] [blame] | 32 | unsigned long val; |
Stefan Roese | 0044c42 | 2012-08-16 17:55:41 +0000 | [diff] [blame] | 33 | struct davinci_rtc *reg = |
| 34 | (struct davinci_rtc *)CONFIG_SYS_BOOTCOUNT_ADDR; |
| 35 | |
Tom Rini | 22ee397 | 2013-08-28 09:00:29 -0400 | [diff] [blame] | 36 | val = raw_bootcount_load(®->scratch2); |
Marek Vasut | 758694f | 2018-10-11 00:13:54 +0200 | [diff] [blame] | 37 | if ((val & 0xffff0000) != (CONFIG_SYS_BOOTCOUNT_MAGIC & 0xffff0000)) |
Stefan Roese | 0044c42 | 2012-08-16 17:55:41 +0000 | [diff] [blame] | 38 | return 0; |
| 39 | else |
Tom Rini | 22ee397 | 2013-08-28 09:00:29 -0400 | [diff] [blame] | 40 | return val & 0x0000ffff; |
Stefan Roese | 0044c42 | 2012-08-16 17:55:41 +0000 | [diff] [blame] | 41 | } |