USB: serial: option: reimplement interface masking
[linux/fpc-iii.git] / arch / arm / mach-prima2 / rtciobrg.c
blobd4852d24dc7d44010c400ba9425847f96c81eee8
1 /*
2 * RTC I/O Bridge interfaces for CSR SiRFprimaII/atlas7
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.
8 */
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/io.h>
13 #include <linux/regmap.h>
14 #include <linux/of.h>
15 #include <linux/of_address.h>
16 #include <linux/of_device.h>
17 #include <linux/of_platform.h>
19 #define SIRFSOC_CPUIOBRG_CTRL 0x00
20 #define SIRFSOC_CPUIOBRG_WRBE 0x04
21 #define SIRFSOC_CPUIOBRG_ADDR 0x08
22 #define SIRFSOC_CPUIOBRG_DATA 0x0c
25 * suspend asm codes will access this address to make system deepsleep
26 * after DRAM becomes self-refresh
28 void __iomem *sirfsoc_rtciobrg_base;
29 static DEFINE_SPINLOCK(rtciobrg_lock);
32 * symbols without lock are only used by suspend asm codes
33 * and these symbols are not exported too
35 void sirfsoc_rtc_iobrg_wait_sync(void)
37 while (readl_relaxed(sirfsoc_rtciobrg_base + SIRFSOC_CPUIOBRG_CTRL))
38 cpu_relax();
41 void sirfsoc_rtc_iobrg_besyncing(void)
43 unsigned long flags;
45 spin_lock_irqsave(&rtciobrg_lock, flags);
47 sirfsoc_rtc_iobrg_wait_sync();
49 spin_unlock_irqrestore(&rtciobrg_lock, flags);
51 EXPORT_SYMBOL_GPL(sirfsoc_rtc_iobrg_besyncing);
53 u32 __sirfsoc_rtc_iobrg_readl(u32 addr)
55 sirfsoc_rtc_iobrg_wait_sync();
57 writel_relaxed(0x00, sirfsoc_rtciobrg_base + SIRFSOC_CPUIOBRG_WRBE);
58 writel_relaxed(addr, sirfsoc_rtciobrg_base + SIRFSOC_CPUIOBRG_ADDR);
59 writel_relaxed(0x01, sirfsoc_rtciobrg_base + SIRFSOC_CPUIOBRG_CTRL);
61 sirfsoc_rtc_iobrg_wait_sync();
63 return readl_relaxed(sirfsoc_rtciobrg_base + SIRFSOC_CPUIOBRG_DATA);
66 u32 sirfsoc_rtc_iobrg_readl(u32 addr)
68 unsigned long flags, val;
70 /* TODO: add hwspinlock to sync with M3 */
71 spin_lock_irqsave(&rtciobrg_lock, flags);
73 val = __sirfsoc_rtc_iobrg_readl(addr);
75 spin_unlock_irqrestore(&rtciobrg_lock, flags);
77 return val;
79 EXPORT_SYMBOL_GPL(sirfsoc_rtc_iobrg_readl);
81 void sirfsoc_rtc_iobrg_pre_writel(u32 val, u32 addr)
83 sirfsoc_rtc_iobrg_wait_sync();
85 writel_relaxed(0xf1, sirfsoc_rtciobrg_base + SIRFSOC_CPUIOBRG_WRBE);
86 writel_relaxed(addr, sirfsoc_rtciobrg_base + SIRFSOC_CPUIOBRG_ADDR);
88 writel_relaxed(val, sirfsoc_rtciobrg_base + SIRFSOC_CPUIOBRG_DATA);
91 void sirfsoc_rtc_iobrg_writel(u32 val, u32 addr)
93 unsigned long flags;
95 /* TODO: add hwspinlock to sync with M3 */
96 spin_lock_irqsave(&rtciobrg_lock, flags);
98 sirfsoc_rtc_iobrg_pre_writel(val, addr);
100 writel_relaxed(0x01, sirfsoc_rtciobrg_base + SIRFSOC_CPUIOBRG_CTRL);
102 sirfsoc_rtc_iobrg_wait_sync();
104 spin_unlock_irqrestore(&rtciobrg_lock, flags);
106 EXPORT_SYMBOL_GPL(sirfsoc_rtc_iobrg_writel);
109 static int regmap_iobg_regwrite(void *context, unsigned int reg,
110 unsigned int val)
112 sirfsoc_rtc_iobrg_writel(val, reg);
113 return 0;
116 static int regmap_iobg_regread(void *context, unsigned int reg,
117 unsigned int *val)
119 *val = (u32)sirfsoc_rtc_iobrg_readl(reg);
120 return 0;
123 static struct regmap_bus regmap_iobg = {
124 .reg_write = regmap_iobg_regwrite,
125 .reg_read = regmap_iobg_regread,
129 * devm_regmap_init_iobg(): Initialise managed register map
131 * @iobg: Device that will be interacted with
132 * @config: Configuration for register map
134 * The return value will be an ERR_PTR() on error or a valid pointer
135 * to a struct regmap. The regmap will be automatically freed by the
136 * device management code.
138 struct regmap *devm_regmap_init_iobg(struct device *dev,
139 const struct regmap_config *config)
141 const struct regmap_bus *bus = &regmap_iobg;
143 return devm_regmap_init(dev, bus, dev, config);
145 EXPORT_SYMBOL_GPL(devm_regmap_init_iobg);
147 static const struct of_device_id rtciobrg_ids[] = {
148 { .compatible = "sirf,prima2-rtciobg" },
152 static int sirfsoc_rtciobrg_probe(struct platform_device *op)
154 struct device_node *np = op->dev.of_node;
156 sirfsoc_rtciobrg_base = of_iomap(np, 0);
157 if (!sirfsoc_rtciobrg_base)
158 panic("unable to map rtc iobrg registers\n");
160 return 0;
163 static struct platform_driver sirfsoc_rtciobrg_driver = {
164 .probe = sirfsoc_rtciobrg_probe,
165 .driver = {
166 .name = "sirfsoc-rtciobrg",
167 .of_match_table = rtciobrg_ids,
171 static int __init sirfsoc_rtciobrg_init(void)
173 return platform_driver_register(&sirfsoc_rtciobrg_driver);
175 postcore_initcall(sirfsoc_rtciobrg_init);
177 MODULE_AUTHOR("Zhiwu Song <zhiwu.song@csr.com>");
178 MODULE_AUTHOR("Barry Song <baohua.song@csr.com>");
179 MODULE_DESCRIPTION("CSR SiRFprimaII rtc io bridge");
180 MODULE_LICENSE("GPL v2");