~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/x86/platform/olpc/olpc-xo1-rtc.c

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0-or-later
  2 /*
  3  * Support for OLPC XO-1 Real Time Clock (RTC)
  4  *
  5  * Copyright (C) 2011 One Laptop per Child
  6  */
  7 
  8 #include <linux/mc146818rtc.h>
  9 #include <linux/platform_device.h>
 10 #include <linux/rtc.h>
 11 #include <linux/of.h>
 12 
 13 #include <asm/msr.h>
 14 #include <asm/olpc.h>
 15 #include <asm/x86_init.h>
 16 
 17 static void rtc_wake_on(struct device *dev)
 18 {
 19         olpc_xo1_pm_wakeup_set(CS5536_PM_RTC);
 20 }
 21 
 22 static void rtc_wake_off(struct device *dev)
 23 {
 24         olpc_xo1_pm_wakeup_clear(CS5536_PM_RTC);
 25 }
 26 
 27 static struct resource rtc_platform_resource[] = {
 28         [0] = {
 29                 .start  = RTC_PORT(0),
 30                 .end    = RTC_PORT(1),
 31                 .flags  = IORESOURCE_IO,
 32         },
 33         [1] = {
 34                 .start  = RTC_IRQ,
 35                 .end    = RTC_IRQ,
 36                 .flags  = IORESOURCE_IRQ,
 37         }
 38 };
 39 
 40 static struct cmos_rtc_board_info rtc_info = {
 41         .rtc_day_alarm = 0,
 42         .rtc_mon_alarm = 0,
 43         .rtc_century = 0,
 44         .wake_on = rtc_wake_on,
 45         .wake_off = rtc_wake_off,
 46 };
 47 
 48 static struct platform_device xo1_rtc_device = {
 49         .name = "rtc_cmos",
 50         .id = -1,
 51         .num_resources = ARRAY_SIZE(rtc_platform_resource),
 52         .dev.platform_data = &rtc_info,
 53         .resource = rtc_platform_resource,
 54 };
 55 
 56 static int __init xo1_rtc_init(void)
 57 {
 58         int r;
 59         struct device_node *node;
 60 
 61         node = of_find_compatible_node(NULL, NULL, "olpc,xo1-rtc");
 62         if (!node)
 63                 return 0;
 64         of_node_put(node);
 65 
 66         pr_info("olpc-xo1-rtc: Initializing OLPC XO-1 RTC\n");
 67         rdmsrl(MSR_RTC_DOMA_OFFSET, rtc_info.rtc_day_alarm);
 68         rdmsrl(MSR_RTC_MONA_OFFSET, rtc_info.rtc_mon_alarm);
 69         rdmsrl(MSR_RTC_CEN_OFFSET, rtc_info.rtc_century);
 70 
 71         r = platform_device_register(&xo1_rtc_device);
 72         if (r)
 73                 return r;
 74 
 75         x86_platform.legacy.rtc = 0;
 76 
 77         device_init_wakeup(&xo1_rtc_device.dev, 1);
 78         return 0;
 79 }
 80 arch_initcall(xo1_rtc_init);
 81 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php