blob: 0e506c9ea2a8021f07b03af72ed64eea31332b58 [file] [log] [blame]
Ian Rayf31dac42017-11-08 15:35:13 +00001#
2# Boot count configuration
3#
4
Alex Kiernanc1e1c1e2018-02-16 15:50:39 +00005menuconfig BOOTCOUNT_LIMIT
Lukasz Majewskid1ec9462018-02-09 23:50:57 +01006 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 Kiernan3dccc102018-02-16 15:50:38 +000011if BOOTCOUNT_LIMIT
Ian Rayf31dac42017-11-08 15:35:13 +000012
Alex Kiernanc1e1c1e2018-02-16 15:50:39 +000013choice
14 prompt "Boot count device"
Alex Kiernanc35e2d92018-02-16 15:50:40 +000015 default BOOTCOUNT_AM33XX if AM33XX || SOC_DA8XX
Alex Kiernanbec8c642018-02-16 15:50:45 +000016 default BOOTCOUNT_AT91 if AT91SAM9XE
Alex Kiernanaa5a8632018-02-16 15:50:46 +000017 default BOOTCOUNT_GENERIC
18
19config BOOTCOUNT_GENERIC
20 bool "Generic default boot counter"
21 help
22 Generic bootcount stored at SYS_BOOTCOUNT_ADDR.
23
24 SYS_BOOTCOUNT_ADDR:
25 Set to the address where the bootcount and bootcount magic
26 will be stored.
Alex Kiernanc1e1c1e2018-02-16 15:50:39 +000027
Ian Rayf31dac42017-11-08 15:35:13 +000028config BOOTCOUNT_EXT
29 bool "Boot counter on EXT filesystem"
30 help
31 Add support for maintaining boot count in a file on an EXT
32 filesystem.
33
Alex Kiernanc35e2d92018-02-16 15:50:40 +000034config BOOTCOUNT_AM33XX
35 bool "Boot counter in AM33XX RTC IP block"
36 depends on AM33XX || SOC_DA8XX
Alex Kiernan3bf5f132018-03-15 22:11:46 +000037 select SPL_AM33XX_ENABLE_RTC32K_OSC if AM33XX
Alex Kiernanc35e2d92018-02-16 15:50:40 +000038 help
39 A bootcount driver for the RTC IP block found on many TI platforms.
40 This requires the RTC clocks, etc, to be enabled prior to use and
41 not all boards with this IP block on it will have the RTC in use.
42
Alex Kiernan04c96ed2018-02-16 15:50:41 +000043config BOOTCOUNT_ENV
44 bool "Boot counter in environment"
45 help
46 If no softreset save registers are found on the hardware
47 "bootcount" is stored in the environment. To prevent a
48 saveenv on all reboots, the environment variable
49 "upgrade_available" is used. If "upgrade_available" is
50 0, "bootcount" is always 0, if "upgrade_available" is
51 1 "bootcount" is incremented in the environment.
52 So the Userspace Application must set the "upgrade_available"
53 and "bootcount" variable to 0, if a boot was successfully.
54
Alex Kiernanff5410d2018-02-16 15:50:42 +000055config BOOTCOUNT_RAM
56 bool "Boot counter in RAM"
57 help
58 Store the bootcount in DRAM protected against against bit errors
59 due to short power loss or holding a system in RESET.
60
Alex Kiernan6cdd70e2018-02-16 15:50:43 +000061config BOOTCOUNT_I2C
62 bool "Boot counter on I2C device"
63 help
64 Enable support for the bootcounter on an i2c (like RTC) device.
65 CONFIG_SYS_I2C_RTC_ADDR = i2c chip address
66 CONFIG_SYS_BOOTCOUNT_ADDR = i2c addr which is used for
67 the bootcounter.
Alex Kiernan6cdd70e2018-02-16 15:50:43 +000068
Alex Kiernanbec8c642018-02-16 15:50:45 +000069config BOOTCOUNT_AT91
70 bool "Boot counter for Atmel AT91SAM9XE"
71 depends on AT91SAM9XE
72
Philipp Tomsichebb73de2018-11-27 23:00:18 +010073config DM_BOOTCOUNT
74 bool "Boot counter in a device-model device"
75 help
76 Enables reading/writing the bootcount in a device-model based
77 backing store. If an entry in /chosen/u-boot,bootcount-device
78 exists, this will be the preferred bootcount device; otherwise
79 the first available bootcount device will be used.
80
Alex Kiernanc1e1c1e2018-02-16 15:50:39 +000081endchoice
82
Philipp Tomsich482734a2018-11-27 23:00:19 +010083if DM_BOOTCOUNT
84
85menu "Backing stores for device-model backed bootcount"
86config DM_BOOTCOUNT_RTC
87 bool "Support RTC devices as a backing store for bootcount"
88 depends on DM_RTC
89 help
90 Enabled reading/writing the bootcount in a DM RTC device.
91 The wrapper device is to be specified with the compatible string
92 'u-boot,bootcount-rtc' and the 'rtc'-property (a phandle pointing
93 to the underlying RTC device) and an optional 'offset' property
94 are supported.
95
96 Accesses to the backing store are performed using the write16
97 and read16 ops of DM RTC devices.
98
Robert Beckettae3d38f2019-10-28 18:44:06 +000099config DM_BOOTCOUNT_I2C_EEPROM
100 bool "Support i2c eeprom devices as a backing store for bootcount"
101 depends on I2C_EEPROM
102 help
103 Enabled reading/writing the bootcount in a DM i2c eeprom device.
104 The wrapper device is to be specified with the compatible string
105 'u-boot,bootcount-i2c-eeprom' and the 'i2c-eeprom'-property (a phandle
106 pointing to the underlying i2c eeprom device) and an optional 'offset'
107 property are supported.
108
Philipp Tomsich482734a2018-11-27 23:00:19 +0100109endmenu
110
111endif
112
Alex Kiernanc9ad6bc2018-07-21 20:25:32 +0000113config BOOTCOUNT_BOOTLIMIT
114 int "Maximum number of reboot cycles allowed"
115 default 0
116 help
117 Set the Maximum number of reboot cycles allowed without the boot
118 counter being cleared.
119 If set to 0 do not set a boot limit in the environment.
120
Alex Kiernan4bc4f8a2018-02-16 15:50:47 +0000121config BOOTCOUNT_ALEN
122 int "I2C address length"
123 default 1
124 depends on BOOTCOUNT_I2C
125 help
126 Length of the the I2C address at SYS_BOOTCOUNT_ADDR for storing
127 the boot counter.
128
Alex Kiernanc1e1c1e2018-02-16 15:50:39 +0000129config SYS_BOOTCOUNT_SINGLEWORD
130 bool "Use single word to pack boot count and magic value"
Alex Kiernanaa5a8632018-02-16 15:50:46 +0000131 depends on BOOTCOUNT_GENERIC
Alex Kiernanc1e1c1e2018-02-16 15:50:39 +0000132 help
133 This option enables packing boot count magic value and boot count
134 into single word (32 bits).
Ian Rayf31dac42017-11-08 15:35:13 +0000135
136config SYS_BOOTCOUNT_EXT_INTERFACE
137 string "Interface on which to find boot counter EXT filesystem"
138 default "mmc"
139 depends on BOOTCOUNT_EXT
140 help
141 Set the interface to use when locating the filesystem to use for the
142 boot counter.
143
144config SYS_BOOTCOUNT_EXT_DEVPART
145 string "Partition of the boot counter EXT filesystem"
146 default "0:1"
147 depends on BOOTCOUNT_EXT
148 help
149 Set the partition to use when locating the filesystem to use for the
150 boot counter.
151
152config SYS_BOOTCOUNT_EXT_NAME
153 string "Path and filename of the EXT filesystem based boot counter"
154 default "/boot/failures"
155 depends on BOOTCOUNT_EXT
156 help
157 Set the filename and path of the file used to store the boot counter.
158
159config SYS_BOOTCOUNT_ADDR
160 hex "RAM address used for reading and writing the boot counter"
Tom Rini39bcbb72018-02-24 16:50:41 -0500161 default 0x44E3E000 if BOOTCOUNT_AM33XX
162 default 0xE0115FF8 if ARCH_LS1043A || ARCH_LS1021A
163 depends on BOOTCOUNT_AM33XX || BOOTCOUNT_GENERIC || BOOTCOUNT_EXT || \
164 BOOTCOUNT_I2C
Ian Rayf31dac42017-11-08 15:35:13 +0000165 help
166 Set the address used for reading and writing the boot counter.
167
Marek Vasut758694f2018-10-11 00:13:54 +0200168config SYS_BOOTCOUNT_MAGIC
169 hex "Magic value for the boot counter"
170 default 0xB001C041
171 help
172 Set the magic value used for the boot counter.
173
Ian Rayf31dac42017-11-08 15:35:13 +0000174endif