2 * RTC I/O Bridge interfaces for CSR SiRFprimaII
3 * ARM access the registers of SYSRTC, GPSRTC and PWRC through this module
5 * Copyright (c) 2011 Cambridge Silicon Radio Limited, a CSR plc group company.
7 * Licensed under GPLv2 or later.
10 #include <linux/kernel.h>
11 #include <linux/module.h>
14 #include <linux/of_address.h>
15 #include <linux/of_device.h>
16 #include <linux/of_platform.h>
18 #define SIRFSOC_CPUIOBRG_CTRL 0x00
19 #define SIRFSOC_CPUIOBRG_WRBE 0x04
20 #define SIRFSOC_CPUIOBRG_ADDR 0x08
21 #define SIRFSOC_CPUIOBRG_DATA 0x0c
24 * suspend asm codes will access this address to make system deepsleep
25 * after DRAM becomes self-refresh
27 void __iomem
*sirfsoc_rtciobrg_base
;
28 static DEFINE_SPINLOCK(rtciobrg_lock
);
31 * symbols without lock are only used by suspend asm codes
32 * and these symbols are not exported too
34 void sirfsoc_rtc_iobrg_wait_sync(void)
36 while (readl_relaxed(sirfsoc_rtciobrg_base
+ SIRFSOC_CPUIOBRG_CTRL
))
40 void sirfsoc_rtc_iobrg_besyncing(void)
44 spin_lock_irqsave(&rtciobrg_lock
, flags
);
46 sirfsoc_rtc_iobrg_wait_sync();
48 spin_unlock_irqrestore(&rtciobrg_lock
, flags
);
50 EXPORT_SYMBOL_GPL(sirfsoc_rtc_iobrg_besyncing
);
52 u32
__sirfsoc_rtc_iobrg_readl(u32 addr
)
54 sirfsoc_rtc_iobrg_wait_sync();
56 writel_relaxed(0x00, sirfsoc_rtciobrg_base
+ SIRFSOC_CPUIOBRG_WRBE
);
57 writel_relaxed(addr
, sirfsoc_rtciobrg_base
+ SIRFSOC_CPUIOBRG_ADDR
);
58 writel_relaxed(0x01, sirfsoc_rtciobrg_base
+ SIRFSOC_CPUIOBRG_CTRL
);
60 sirfsoc_rtc_iobrg_wait_sync();
62 return readl_relaxed(sirfsoc_rtciobrg_base
+ SIRFSOC_CPUIOBRG_DATA
);
65 u32
sirfsoc_rtc_iobrg_readl(u32 addr
)
67 unsigned long flags
, val
;
69 spin_lock_irqsave(&rtciobrg_lock
, flags
);
71 val
= __sirfsoc_rtc_iobrg_readl(addr
);
73 spin_unlock_irqrestore(&rtciobrg_lock
, flags
);
77 EXPORT_SYMBOL_GPL(sirfsoc_rtc_iobrg_readl
);
79 void sirfsoc_rtc_iobrg_pre_writel(u32 val
, u32 addr
)
81 sirfsoc_rtc_iobrg_wait_sync();
83 writel_relaxed(0xf1, sirfsoc_rtciobrg_base
+ SIRFSOC_CPUIOBRG_WRBE
);
84 writel_relaxed(addr
, sirfsoc_rtciobrg_base
+ SIRFSOC_CPUIOBRG_ADDR
);
86 writel_relaxed(val
, sirfsoc_rtciobrg_base
+ SIRFSOC_CPUIOBRG_DATA
);
89 void sirfsoc_rtc_iobrg_writel(u32 val
, u32 addr
)
93 spin_lock_irqsave(&rtciobrg_lock
, flags
);
95 sirfsoc_rtc_iobrg_pre_writel(val
, addr
);
97 writel_relaxed(0x01, sirfsoc_rtciobrg_base
+ SIRFSOC_CPUIOBRG_CTRL
);
99 sirfsoc_rtc_iobrg_wait_sync();
101 spin_unlock_irqrestore(&rtciobrg_lock
, flags
);
103 EXPORT_SYMBOL_GPL(sirfsoc_rtc_iobrg_writel
);
105 static const struct of_device_id rtciobrg_ids
[] = {
106 { .compatible
= "sirf,prima2-rtciobg" },
107 { .compatible
= "sirf,marco-rtciobg" },
111 static int sirfsoc_rtciobrg_probe(struct platform_device
*op
)
113 struct device_node
*np
= op
->dev
.of_node
;
115 sirfsoc_rtciobrg_base
= of_iomap(np
, 0);
116 if (!sirfsoc_rtciobrg_base
)
117 panic("unable to map rtc iobrg registers\n");
122 static struct platform_driver sirfsoc_rtciobrg_driver
= {
123 .probe
= sirfsoc_rtciobrg_probe
,
125 .name
= "sirfsoc-rtciobrg",
126 .owner
= THIS_MODULE
,
127 .of_match_table
= rtciobrg_ids
,
131 static int __init
sirfsoc_rtciobrg_init(void)
133 return platform_driver_register(&sirfsoc_rtciobrg_driver
);
135 postcore_initcall(sirfsoc_rtciobrg_init
);
137 MODULE_AUTHOR("Zhiwu Song <zhiwu.song@csr.com>, "
138 "Barry Song <baohua.song@csr.com>");
139 MODULE_DESCRIPTION("CSR SiRFprimaII rtc io bridge");
140 MODULE_LICENSE("GPL");