mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
b19886b946
QEMU provides an emulated ARM AMBA PrimeCell PL031 RTC. The patch sets the base address in the board include file according to the definition in hw/arm/virt.c of the QEMU source. It defines the Kconfig option for the existing driver, and enables the RTC driver in qemu_arm64_defconfig and qemu_arm_defconfig as well as the date command. We need an RTC to provide the GetTime() runtime service in the UEFI subsystem. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Reviewed-by: Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi> Tested-by: Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi> Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org>
71 lines
2.1 KiB
Text
71 lines
2.1 KiB
Text
#
|
|
# RTC drivers configuration
|
|
#
|
|
|
|
menu "Real Time Clock"
|
|
|
|
config DM_RTC
|
|
bool "Enable Driver Model for RTC drivers"
|
|
depends on DM
|
|
help
|
|
Enable drver model for real-time-clock drivers. The RTC uclass
|
|
then provides the rtc_get()/rtc_set() interface, delegating to
|
|
drivers to perform the actual functions. See rtc.h for a
|
|
description of the API.
|
|
|
|
config RTC_PCF2127
|
|
bool "Enable PCF2127 driver"
|
|
depends on DM_RTC
|
|
help
|
|
The PCF2127 is a CMOS Real Time Clock (RTC) and calendar with an integrated
|
|
Temperature Compensated Crystal (Xtal) Oscillator (TCXO) and a 32.768 kHz quartz
|
|
crystal optimized for very high accuracy and very low power consumption. The PCF2127
|
|
has a selectable I2C-bus or SPI-bus, a backup battery switch-over circuit, a
|
|
programmable watchdog function, a timestamp function, and many other features.
|
|
|
|
config RTC_DS1307
|
|
bool "Enable DS1307 driver"
|
|
depends on DM_RTC
|
|
help
|
|
Support for Dallas Semiconductor (now Maxim) DS1307 and DS1338/9 and
|
|
compatible Real Time Clock devices.
|
|
|
|
config RTC_ISL1208
|
|
bool "Enable ISL1208 driver"
|
|
depends on DM_RTC
|
|
help
|
|
The Renesas (formerly Intersil) ISL1208 is a I2C Real Time Clock (RTC) and
|
|
calendar with automatic leap year correction, 2-byte battery backed SRAM,
|
|
automatic power switch-over, alarm function and 15 selectable frequency
|
|
outputs.
|
|
|
|
This driver supports reading and writing the RTC/calendar and detects
|
|
total power failures.
|
|
|
|
config RTC_RX8010SJ
|
|
bool "Enable RX8010SJ driver"
|
|
depends on DM_RTC
|
|
help
|
|
Support for Epson RX8010SJ Real Time Clock devices.
|
|
|
|
config RTC_PL031
|
|
bool "Enable ARM AMBA PL031 RTC driver"
|
|
help
|
|
The ARM PrimeCell Real Time Clock (PL031) is an optional SoC
|
|
peripheral based on the Advanced Microcontroller Bus Architecture
|
|
(AMBA). It is emulated in QEMU virtual ARM machines.
|
|
|
|
config RTC_MV
|
|
bool "Enable Marvell RTC driver"
|
|
depends on DM_RTC
|
|
help
|
|
Enable Marvell RTC driver. This driver supports the rtc that is present
|
|
on some Marvell SoCs.
|
|
|
|
config RTC_S35392A
|
|
bool "Enable S35392A driver"
|
|
select BITREVERSE
|
|
help
|
|
Enable s35392a driver which provides rtc get and set function.
|
|
|
|
endmenu
|