summaryrefslogtreecommitdiff
path: root/target/waldux/config/Config.in.rtc
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2018-03-03 15:46:47 +0100
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2018-03-07 20:44:04 +0100
commit9bb871a0bb4c239239944d28bd4d5cfa19d84f62 (patch)
treeb1c2eee95a3b475748c89d0075f604bb159a3271 /target/waldux/config/Config.in.rtc
parenta4767b13763b91dfb0aa75d2985d63d7ed9cb64c (diff)
add support for waldux
Diffstat (limited to 'target/waldux/config/Config.in.rtc')
-rw-r--r--target/waldux/config/Config.in.rtc67
1 files changed, 67 insertions, 0 deletions
diff --git a/target/waldux/config/Config.in.rtc b/target/waldux/config/Config.in.rtc
new file mode 100644
index 000000000..bcd4a37da
--- /dev/null
+++ b/target/waldux/config/Config.in.rtc
@@ -0,0 +1,67 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+menu "RTC device support"
+depends on ADK_TARGET_WITH_RTC
+
+config ADK_WALDUX_KERNEL_RTC_CLASS
+ bool
+
+config ADK_WALDUX_KERNEL_RTC_HCTOSYS
+ bool
+
+config ADK_WALDUX_KERNEL_RTC_INTF_DEV
+ bool
+
+config ADK_WALDUX_KERNEL_RTC_INTF_DEV_UIE_EMUL
+ bool
+
+config ADK_WALDUX_KERNEL_RTC_DRV_PCF8523
+ bool "RTC support for Solidrun IMX6 (PCF8523)"
+ select ADK_WALDUX_KERNEL_RTC_CLASS
+ select ADK_WALDUX_KERNEL_RTC_HCTOSYS
+ select ADK_WALDUX_KERNEL_RTC_INTF_DEV
+ select ADK_WALDUX_KERNEL_RTC_INTF_DEV_UIE_EMUL
+ default y if ADK_TARGET_SYSTEM_SOLIDRUN_IMX6
+ default n
+ depends on ADK_TARGET_SYSTEM_SOLIDRUN_IMX6
+ help
+ PCF8523 RTC.
+
+config ADK_WALDUX_KERNEL_RTC_DRV_PXA
+ bool "RTC support for Sharp Zaurus"
+ select ADK_WALDUX_KERNEL_RTC_CLASS
+ select ADK_WALDUX_KERNEL_RTC_HCTOSYS
+ select ADK_WALDUX_KERNEL_RTC_INTF_DEV
+ default y if ADK_TARGET_SYSTEM_SHARP_ZAURUS
+ default n
+ depends on ADK_TARGET_SYSTEM_SHARP_ZAURUS
+ help
+ Sharp Zaurus RTC.
+
+config ADK_WALDUX_KERNEL_RTC_DRV_AT91SAM9
+ bool "RTC support for AT91SAM9 (Fox G20)"
+ select ADK_WALDUX_KERNEL_RTC_CLASS
+ select ADK_WALDUX_KERNEL_RTC_HCTOSYS
+ select ADK_WALDUX_KERNEL_RTC_INTF_DEV
+ default y if ADK_TARGET_SYSTEM_ACMESYSTEMS_FOXG20
+ default n
+ depends on ADK_TARGET_SYSTEM_ACMESYSTEMS_FOXG20
+ help
+ Fox G20 RTC support.
+
+config ADK_WALDUX_KERNEL_RTC_DRV_CMOS
+ bool "RTC support for PC CMOS"
+ select ADK_WALDUX_KERNEL_RTC_CLASS
+ select ADK_WALDUX_KERNEL_RTC_HCTOSYS
+ select ADK_WALDUX_KERNEL_RTC_INTF_DEV
+ default y if ADK_TARGET_SYSTEM_IBM_X40
+ default y if ADK_TARGET_SYSTEM_LEMOTE_YEELONG
+ default y if ADK_TARGET_MODEL_PCENGINES_ALIX1C
+ default y if ADK_TARGET_SYSTEM_ASUS_P5BVM
+ default n
+ depends on (ADK_TARGET_MODEL_PCENGINES_ALIX1C || ADK_TARGET_SYSTEM_IBM_X40 || ADK_TARGET_SYSTEM_LEMOTE_YEELONG || ADK_TARGET_SYSTEM_ASUS_P5BVM)
+ help
+ PC CMOS RTC support.
+
+endmenu