net: sun8i_emac: Use consistent clock bitfield definitions
[oweals/u-boot.git] / drivers / rtc / Kconfig
1 #
2 # RTC drivers configuration
3 #
4
5 menu "Real Time Clock"
6
7 config DM_RTC
8         bool "Enable Driver Model for RTC drivers"
9         depends on DM
10         select LIB_DATE
11         help
12           Enable drver model for real-time-clock drivers. The RTC uclass
13           then provides the rtc_get()/rtc_set() interface, delegating to
14           drivers to perform the actual functions. See rtc.h for a
15           description of the API.
16
17 config SPL_DM_RTC
18         bool "Enable Driver Model for RTC drivers in SPL"
19         depends on SPL_DM
20         help
21           Enable drver model for real-time-clock drivers. The RTC uclass
22           then provides the rtc_get()/rtc_set() interface, delegating to
23           drivers to perform the actual functions. See rtc.h for a
24           description of the API.
25
26 config TPL_DM_RTC
27         bool "Enable Driver Model for RTC drivers in TPL"
28         depends on TPL_DM
29         help
30           Enable drver model for real-time-clock drivers. The RTC uclass
31           then provides the rtc_get()/rtc_set() interface, delegating to
32           drivers to perform the actual functions. See rtc.h for a
33           description of the API.
34
35 config RTC_ENABLE_32KHZ_OUTPUT
36         bool "Enable RTC 32Khz output"
37         help
38            Some real-time clocks support the output of 32kHz square waves (such as ds3231),
39            the config symbol choose Real Time Clock device 32Khz output feature.
40
41 config RTC_PCF2127
42         bool "Enable PCF2127 driver"
43         depends on DM_RTC
44         help
45           The PCF2127 is a CMOS Real Time Clock (RTC) and calendar with an integrated
46           Temperature Compensated Crystal (Xtal) Oscillator (TCXO) and a 32.768 kHz quartz
47           crystal optimized for very high accuracy and very low power consumption. The PCF2127
48           has a selectable I2C-bus or SPI-bus, a backup battery switch-over circuit, a
49           programmable watchdog function, a timestamp function, and many other features.
50
51 config RTC_DS1307
52         bool "Enable DS1307 driver"
53         depends on DM_RTC
54         help
55           Support for Dallas Semiconductor (now Maxim) DS1307 and DS1338/9 and
56           compatible Real Time Clock devices.
57
58 config RTC_DS3232
59         bool "Enable DS3232 driver"
60         depends on DM_RTC
61         depends on DM_I2C
62         help
63           Support for Dallas Semiconductor (now Maxim) DS3232 compatible
64           Real Time Clock devices.
65
66 config RTC_ISL1208
67         bool "Enable ISL1208 driver"
68         depends on DM_RTC
69         help
70           The Renesas (formerly Intersil) ISL1208 is a I2C Real Time Clock (RTC) and
71           calendar with automatic leap year correction, 2-byte battery backed SRAM,
72           automatic power switch-over, alarm function and 15 selectable frequency
73           outputs.
74
75           This driver supports reading and writing the RTC/calendar and detects
76           total power failures.
77
78 config RTC_RV3029
79         bool "Enable RV3029 driver"
80         depends on DM_RTC
81         help
82           The MicroCrystal RV3029 is a I2C Real Time Clock (RTC) with 8-byte
83           battery-backed SRAM.
84
85           This driver supports reading and writing the RTC/calendar and the
86           battery-baced SRAM section.
87
88 config RTC_RV8803
89         bool "Enable RV8803 driver"
90         depends on DM_RTC
91         help
92           The Micro Crystal RV8803 is a high accuracy, ultra-low power I2C
93           Real Time Clock (RTC) with temperature compensation.
94
95           This driver supports reading and writing the RTC/calendar and
96           detects total power failures.
97
98 config RTC_RX8010SJ
99         bool "Enable RX8010SJ driver"
100         depends on DM_RTC
101         help
102           Support for Epson RX8010SJ Real Time Clock devices.
103
104 config RTC_RX8025
105         bool "Enable RX8025 driver"
106         help
107           Support for Epson RX8025 Real Time Clock devices.
108
109 config RTC_PL031
110         bool "Enable ARM AMBA PL031 RTC driver"
111         help
112           The ARM PrimeCell Real Time Clock (PL031) is an optional SoC
113           peripheral based on the Advanced Microcontroller Bus Architecture
114           (AMBA). It is emulated in QEMU virtual ARM machines.
115
116 config RTC_MV
117         bool "Enable Marvell RTC driver"
118         depends on DM_RTC
119         help
120           Enable Marvell RTC driver. This driver supports the rtc that is present
121           on some Marvell SoCs.
122
123 config RTC_S35392A
124         bool "Enable S35392A driver"
125         select BITREVERSE
126         help
127           Enable s35392a driver which provides rtc get and set function.
128
129 config RTC_MC146818
130         bool "Enable MC146818 driver"
131         help
132           This is a widely used real-time clock chip originally by Motorola
133           and now available from NXP. It includes a battery-backed real-time
134           clock with a wide array of features and 50 bytes of general-purpose,
135           battery-backed RAM. The driver supports access to the clock and RAM.
136
137 config RTC_M41T62
138         bool "Enable M41T62 driver"
139         help
140           Enable driver for ST's M41T62 compatible RTC devices (like RV-4162).
141           It is a serial (I2C) real-time clock (RTC) with alarm.
142
143 config RTC_STM32
144         bool "Enable STM32 RTC driver"
145         depends on DM_RTC
146         help
147           Enable STM32 RTC driver. This driver supports the rtc that is present
148           on some STM32 SoCs.
149 endmenu