2 * r8a7779 Power management support
4 * Copyright (C) 2011 Renesas Solutions Corp.
5 * Copyright (C) 2011 Magnus Damm
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file "COPYING" in the main directory of this archive
13 #include <linux/suspend.h>
14 #include <linux/err.h>
15 #include <linux/pm_clock.h>
16 #include <linux/platform_device.h>
17 #include <linux/delay.h>
18 #include <linux/irq.h>
19 #include <linux/interrupt.h>
20 #include <linux/console.h>
21 #include <asm/system.h>
23 #include <mach/common.h>
24 #include <mach/r8a7779.h>
26 static void __iomem
*r8a7779_sysc_base
;
40 #define PWRSR_OFFS 0x00
41 #define PWROFFCR_OFFS 0x04
42 #define PWRONCR_OFFS 0x0c
43 #define PWRER_OFFS 0x14
45 #define SYSCSR_RETRIES 100
46 #define SYSCSR_DELAY_US 1
48 #define SYSCISR_RETRIES 1000
49 #define SYSCISR_DELAY_US 1
51 #if defined(CONFIG_PM) || defined(CONFIG_SMP)
53 static DEFINE_SPINLOCK(r8a7779_sysc_lock
); /* SMP CPUs + I/O devices */
55 static int r8a7779_sysc_pwr_on_off(struct r8a7779_pm_ch
*r8a7779_ch
,
56 int sr_bit
, int reg_offs
)
60 for (k
= 0; k
< SYSCSR_RETRIES
; k
++) {
61 if (ioread32(r8a7779_sysc_base
+ SYSCSR
) & (1 << sr_bit
))
63 udelay(SYSCSR_DELAY_US
);
66 if (k
== SYSCSR_RETRIES
)
69 iowrite32(1 << r8a7779_ch
->chan_bit
,
70 r8a7779_sysc_base
+ r8a7779_ch
->chan_offs
+ reg_offs
);
75 static int r8a7779_sysc_pwr_off(struct r8a7779_pm_ch
*r8a7779_ch
)
77 return r8a7779_sysc_pwr_on_off(r8a7779_ch
, 0, PWROFFCR_OFFS
);
80 static int r8a7779_sysc_pwr_on(struct r8a7779_pm_ch
*r8a7779_ch
)
82 return r8a7779_sysc_pwr_on_off(r8a7779_ch
, 1, PWRONCR_OFFS
);
85 static int r8a7779_sysc_update(struct r8a7779_pm_ch
*r8a7779_ch
,
86 int (*on_off_fn
)(struct r8a7779_pm_ch
*))
88 unsigned int isr_mask
= 1 << r8a7779_ch
->isr_bit
;
89 unsigned int chan_mask
= 1 << r8a7779_ch
->chan_bit
;
95 spin_lock_irqsave(&r8a7779_sysc_lock
, flags
);
97 iowrite32(isr_mask
, r8a7779_sysc_base
+ SYSCISCR
);
100 ret
= on_off_fn(r8a7779_ch
);
104 status
= ioread32(r8a7779_sysc_base
+
105 r8a7779_ch
->chan_offs
+ PWRER_OFFS
);
106 } while (status
& chan_mask
);
108 for (k
= 0; k
< SYSCISR_RETRIES
; k
++) {
109 if (ioread32(r8a7779_sysc_base
+ SYSCISR
) & isr_mask
)
111 udelay(SYSCISR_DELAY_US
);
114 if (k
== SYSCISR_RETRIES
)
117 iowrite32(isr_mask
, r8a7779_sysc_base
+ SYSCISCR
);
120 spin_unlock_irqrestore(&r8a7779_sysc_lock
, flags
);
122 pr_debug("r8a7779 power domain %d: %02x %02x %02x %02x %02x -> %d\n",
123 r8a7779_ch
->isr_bit
, ioread32(r8a7779_sysc_base
+ PWRSR0
),
124 ioread32(r8a7779_sysc_base
+ PWRSR1
),
125 ioread32(r8a7779_sysc_base
+ PWRSR2
),
126 ioread32(r8a7779_sysc_base
+ PWRSR3
),
127 ioread32(r8a7779_sysc_base
+ PWRSR4
), ret
);
131 int r8a7779_sysc_power_down(struct r8a7779_pm_ch
*r8a7779_ch
)
133 return r8a7779_sysc_update(r8a7779_ch
, r8a7779_sysc_pwr_off
);
136 int r8a7779_sysc_power_up(struct r8a7779_pm_ch
*r8a7779_ch
)
138 return r8a7779_sysc_update(r8a7779_ch
, r8a7779_sysc_pwr_on
);
141 static void __init
r8a7779_sysc_init(void)
143 r8a7779_sysc_base
= ioremap_nocache(0xffd85000, PAGE_SIZE
);
144 if (!r8a7779_sysc_base
)
145 panic("unable to ioremap r8a7779 SYSC hardware block\n");
147 /* enable all interrupt sources, but do not use interrupt handler */
148 iowrite32(0x0131000e, r8a7779_sysc_base
+ SYSCIER
);
149 iowrite32(0, r8a7779_sysc_base
+ SYSCIMR
);
152 #else /* CONFIG_PM || CONFIG_SMP */
154 static inline void r8a7779_sysc_init(void) {}
156 #endif /* CONFIG_PM || CONFIG_SMP */
160 static int pd_power_down(struct generic_pm_domain
*genpd
)
162 return r8a7779_sysc_power_down(to_r8a7779_ch(genpd
));
165 static int pd_power_up(struct generic_pm_domain
*genpd
)
167 return r8a7779_sysc_power_up(to_r8a7779_ch(genpd
));
170 static bool pd_is_off(struct generic_pm_domain
*genpd
)
172 struct r8a7779_pm_ch
*r8a7779_ch
= to_r8a7779_ch(genpd
);
175 st
= ioread32(r8a7779_sysc_base
+ r8a7779_ch
->chan_offs
+ PWRSR_OFFS
);
176 if (st
& (1 << r8a7779_ch
->chan_bit
))
182 static bool pd_active_wakeup(struct device
*dev
)
187 void r8a7779_init_pm_domain(struct r8a7779_pm_domain
*r8a7779_pd
)
189 struct generic_pm_domain
*genpd
= &r8a7779_pd
->genpd
;
191 pm_genpd_init(genpd
, NULL
, false);
192 genpd
->dev_ops
.stop
= pm_clk_suspend
;
193 genpd
->dev_ops
.start
= pm_clk_resume
;
194 genpd
->dev_ops
.active_wakeup
= pd_active_wakeup
;
195 genpd
->dev_irq_safe
= true;
196 genpd
->power_off
= pd_power_down
;
197 genpd
->power_on
= pd_power_up
;
199 if (pd_is_off(&r8a7779_pd
->genpd
))
200 pd_power_up(&r8a7779_pd
->genpd
);
203 void r8a7779_add_device_to_domain(struct r8a7779_pm_domain
*r8a7779_pd
,
204 struct platform_device
*pdev
)
206 struct device
*dev
= &pdev
->dev
;
208 pm_genpd_add_device(&r8a7779_pd
->genpd
, dev
);
209 if (pm_clk_no_clocks(dev
))
210 pm_clk_add(dev
, NULL
);
213 struct r8a7779_pm_domain r8a7779_sh4a
= {
215 .chan_offs
= 0x80, /* PWRSR1 .. PWRER1 */
216 .isr_bit
= 16, /* SH4A */
220 struct r8a7779_pm_domain r8a7779_sgx
= {
222 .chan_offs
= 0xc0, /* PWRSR2 .. PWRER2 */
223 .isr_bit
= 20, /* SGX */
227 struct r8a7779_pm_domain r8a7779_vdp1
= {
229 .chan_offs
= 0x100, /* PWRSR3 .. PWRER3 */
230 .isr_bit
= 21, /* VDP */
234 struct r8a7779_pm_domain r8a7779_impx3
= {
236 .chan_offs
= 0x140, /* PWRSR4 .. PWRER4 */
237 .isr_bit
= 24, /* IMP */
241 #endif /* CONFIG_PM */
243 void __init
r8a7779_pm_init(void)