Tomasz Bursztyka | 66f05ce | 2015-12-03 11:49:29 +0100 | [diff] [blame] | 1 | # Kconfig - RTC configuration options |
| 2 | # |
| 3 | # |
| 4 | # Copyright (c) 2015 Intel Corporation |
| 5 | # |
David B. Kinder | ac74d8b | 2017-01-18 17:01:01 -0800 | [diff] [blame] | 6 | # SPDX-License-Identifier: Apache-2.0 |
Tomasz Bursztyka | 66f05ce | 2015-12-03 11:49:29 +0100 | [diff] [blame] | 7 | # |
| 8 | |
| 9 | # |
| 10 | # Real-Time Clock (RTC) options |
| 11 | # |
Anas Nashif | 9d6deb4 | 2015-11-21 20:58:15 -0500 | [diff] [blame] | 12 | menuconfig RTC |
| 13 | bool "Real-Time Clock" |
| 14 | default n |
| 15 | help |
| 16 | Enable options for Real-Time Clock drivers. |
| 17 | |
| 18 | if RTC |
| 19 | |
Andre Guedes | 7b0076a | 2016-01-06 16:59:18 -0200 | [diff] [blame] | 20 | |
| 21 | config RTC_QMSI |
Andre Guedes | 7b0076a | 2016-01-06 16:59:18 -0200 | [diff] [blame] | 22 | bool "QMSI RTC Driver" |
Anas Nashif | 80e9d63 | 2016-04-17 04:26:38 +0800 | [diff] [blame] | 23 | depends on QMSI |
Andre Guedes | 7b0076a | 2016-01-06 16:59:18 -0200 | [diff] [blame] | 24 | default n |
| 25 | help |
| 26 | Build QMSI RTC driver. |
| 27 | |
Anas Nashif | 1ee7175 | 2016-05-07 11:57:23 -0400 | [diff] [blame] | 28 | config RTC_0_NAME |
| 29 | string "Driver instance name" |
| 30 | default "RTC_0" |
| 31 | depends on RTC |
| 32 | help |
| 33 | RTC driver instance name |
| 34 | |
| 35 | config RTC_0_IRQ_PRI |
| 36 | int "RTC Driver Interrupt priority" |
Andy Gross | 4603565 | 2017-06-06 21:27:19 -0500 | [diff] [blame^] | 37 | depends on RTC_QMSI |
Daniel Leung | 8a05b46 | 2016-03-31 11:10:02 -0700 | [diff] [blame] | 38 | help |
| 39 | RTC interrupt priority. |
| 40 | |
Jithu Joseph | f271d7d | 2016-06-01 20:13:47 -0700 | [diff] [blame] | 41 | config RTC_QMSI_API_REENTRANCY |
| 42 | bool |
| 43 | prompt "RTC shim driver API reentrancy" |
| 44 | default n |
| 45 | help |
| 46 | Enable support for RTC shim driver API reentrancy. |
| 47 | |
Anas Nashif | 9d6deb4 | 2015-11-21 20:58:15 -0500 | [diff] [blame] | 48 | endif # RTC |