mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
482734aa66
This implements a driver using a RTC-based backing store for the DM bootcount implementation. The node configuring this feature will be compatible with 'u-boot,bootcount-rtc' and the underlying RTC device shall be reference through the property 'rtc'. An offset into the RTC device's register space can be provided through the 'offset' property. Tested on a RK3399-Q7 on a Flamingo carrier board using the SRAM area of the carrier board's RV3029 RTC. Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
12 lines
471 B
Makefile
12 lines
471 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
|
|
obj-$(CONFIG_BOOTCOUNT_GENERIC) += bootcount.o
|
|
obj-$(CONFIG_BOOTCOUNT_AT91) += bootcount_at91.o
|
|
obj-$(CONFIG_BOOTCOUNT_AM33XX) += bootcount_davinci.o
|
|
obj-$(CONFIG_BOOTCOUNT_RAM) += bootcount_ram.o
|
|
obj-$(CONFIG_BOOTCOUNT_ENV) += bootcount_env.o
|
|
obj-$(CONFIG_BOOTCOUNT_I2C) += bootcount_i2c.o
|
|
obj-$(CONFIG_BOOTCOUNT_EXT) += bootcount_ext.o
|
|
|
|
obj-$(CONFIG_DM_BOOTCOUNT) += bootcount-uclass.o
|
|
obj-$(CONFIG_DM_BOOTCOUNT_RTC) += rtc.o
|