Ian Ray | 542a48e | 2017-11-08 15:35:13 +0000 | [diff] [blame] | 1 | # |
| 2 | # Boot count configuration |
| 3 | # |
| 4 | |
Alex Kiernan | aa0abed | 2018-02-16 15:50:39 +0000 | [diff] [blame] | 5 | menuconfig BOOTCOUNT_LIMIT |
Lukasz Majewski | 6dd8c90 | 2018-02-09 23:50:57 +0100 | [diff] [blame] | 6 | bool "Enable support for checking boot count limit" |
| 7 | help |
| 8 | Enable checking for exceeding the boot count limit. |
| 9 | More information: http://www.denx.de/wiki/DULG/UBootBootCountLimit |
| 10 | |
Alex Kiernan | 4aa943f | 2018-02-16 15:50:38 +0000 | [diff] [blame] | 11 | if BOOTCOUNT_LIMIT |
Ian Ray | 542a48e | 2017-11-08 15:35:13 +0000 | [diff] [blame] | 12 | |
Alex Kiernan | aa0abed | 2018-02-16 15:50:39 +0000 | [diff] [blame] | 13 | choice |
| 14 | prompt "Boot count device" |
Alex Kiernan | 8845635 | 2018-02-16 15:50:40 +0000 | [diff] [blame] | 15 | default BOOTCOUNT_AM33XX if AM33XX || SOC_DA8XX |
Alex Kiernan | aa0abed | 2018-02-16 15:50:39 +0000 | [diff] [blame] | 16 | |
Ian Ray | 542a48e | 2017-11-08 15:35:13 +0000 | [diff] [blame] | 17 | config BOOTCOUNT_EXT |
| 18 | bool "Boot counter on EXT filesystem" |
| 19 | help |
| 20 | Add support for maintaining boot count in a file on an EXT |
| 21 | filesystem. |
| 22 | |
Alex Kiernan | 8845635 | 2018-02-16 15:50:40 +0000 | [diff] [blame] | 23 | config BOOTCOUNT_AM33XX |
| 24 | bool "Boot counter in AM33XX RTC IP block" |
| 25 | depends on AM33XX || SOC_DA8XX |
| 26 | help |
| 27 | A bootcount driver for the RTC IP block found on many TI platforms. |
| 28 | This requires the RTC clocks, etc, to be enabled prior to use and |
| 29 | not all boards with this IP block on it will have the RTC in use. |
| 30 | |
Alex Kiernan | c5037a8 | 2018-02-16 15:50:41 +0000 | [diff] [blame^] | 31 | config BOOTCOUNT_ENV |
| 32 | bool "Boot counter in environment" |
| 33 | help |
| 34 | If no softreset save registers are found on the hardware |
| 35 | "bootcount" is stored in the environment. To prevent a |
| 36 | saveenv on all reboots, the environment variable |
| 37 | "upgrade_available" is used. If "upgrade_available" is |
| 38 | 0, "bootcount" is always 0, if "upgrade_available" is |
| 39 | 1 "bootcount" is incremented in the environment. |
| 40 | So the Userspace Application must set the "upgrade_available" |
| 41 | and "bootcount" variable to 0, if a boot was successfully. |
| 42 | |
Alex Kiernan | aa0abed | 2018-02-16 15:50:39 +0000 | [diff] [blame] | 43 | endchoice |
| 44 | |
| 45 | config SYS_BOOTCOUNT_SINGLEWORD |
| 46 | bool "Use single word to pack boot count and magic value" |
| 47 | help |
| 48 | This option enables packing boot count magic value and boot count |
| 49 | into single word (32 bits). |
Ian Ray | 542a48e | 2017-11-08 15:35:13 +0000 | [diff] [blame] | 50 | |
| 51 | config SYS_BOOTCOUNT_EXT_INTERFACE |
| 52 | string "Interface on which to find boot counter EXT filesystem" |
| 53 | default "mmc" |
| 54 | depends on BOOTCOUNT_EXT |
| 55 | help |
| 56 | Set the interface to use when locating the filesystem to use for the |
| 57 | boot counter. |
| 58 | |
| 59 | config SYS_BOOTCOUNT_EXT_DEVPART |
| 60 | string "Partition of the boot counter EXT filesystem" |
| 61 | default "0:1" |
| 62 | depends on BOOTCOUNT_EXT |
| 63 | help |
| 64 | Set the partition to use when locating the filesystem to use for the |
| 65 | boot counter. |
| 66 | |
| 67 | config SYS_BOOTCOUNT_EXT_NAME |
| 68 | string "Path and filename of the EXT filesystem based boot counter" |
| 69 | default "/boot/failures" |
| 70 | depends on BOOTCOUNT_EXT |
| 71 | help |
| 72 | Set the filename and path of the file used to store the boot counter. |
| 73 | |
| 74 | config SYS_BOOTCOUNT_ADDR |
| 75 | hex "RAM address used for reading and writing the boot counter" |
| 76 | default 0x7000A000 |
| 77 | depends on BOOTCOUNT_EXT |
| 78 | help |
| 79 | Set the address used for reading and writing the boot counter. |
| 80 | |
| 81 | endif |