Date:2011-06-28 22:28:59 (12 years 9 months ago)
Author:Maarten ter Huurne
Commit:ba6ccf453ba29606ccc3eae70b28021cd2be0b7d
Message:MIPS: JZ4740: reset: Initialize hibernate wakeup counters.

In hibernation mode only the wakeup logic and the RTC are left running,
so this is what users perceive as power down.

If the counters are not initialized, the corresponding pin (typically
connected to the power button) has to be asserted for two seconds
before the device wakes up. Most users expect a shorter wakeup time.

I took the timing values of 100 ms and 60 ms from BouKiCHi's patch for
the Dingoo A320 kernel.
Files: arch/mips/jz4740/reset.c (2 diffs)

Change Details

arch/mips/jz4740/reset.c
2121#include <asm/mach-jz4740/base.h>
2222#include <asm/mach-jz4740/timer.h>
2323
24#include "reset.h"
25#include "clock.h"
26
2427static void jz4740_halt(void)
2528{
2629    while (1) {
...... 
5356    jz4740_halt();
5457}
5558
56#define JZ_REG_RTC_CTRL 0x00
57#define JZ_REG_RTC_HIBERNATE 0x20
59#define JZ_REG_RTC_CTRL 0x00
60#define JZ_REG_RTC_HIBERNATE 0x20
61#define JZ_REG_RTC_WAKEUP_FILTER 0x24
62#define JZ_REG_RTC_RESET_COUNTER 0x28
5863
59#define JZ_RTC_CTRL_WRDY BIT(7)
64#define JZ_RTC_CTRL_WRDY BIT(7)
65#define JZ_RTC_WAKEUP_FILTER_MASK 0x0000FFE0
66#define JZ_RTC_RESET_COUNTER_MASK 0x00000FE0
6067
61static void jz4740_power_off(void)
68static inline void jz4740_rtc_wait_ready(void __iomem *rtc_base)
6269{
63    void __iomem *rtc_base = ioremap(JZ4740_RTC_BASE_ADDR, 0x24);
6470    uint32_t ctrl;
6571
6672    do {
6773        ctrl = readl(rtc_base + JZ_REG_RTC_CTRL);
6874    } while (!(ctrl & JZ_RTC_CTRL_WRDY));
75}
6976
77static void jz4740_power_off(void)
78{
79    void __iomem *rtc_base = ioremap(JZ4740_RTC_BASE_ADDR, 0x38);
80    unsigned long wakeup_filter_ticks;
81    unsigned long reset_counter_ticks;
82
83    /*
84     * Set minimum wakeup pin assertion time: 100 ms.
85     * Range is 0 to 2 sec if RTC is clocked at 32 kHz.
86     */
87    wakeup_filter_ticks = (100 * jz4740_clock_bdata.rtc_rate) / 1000;
88    if (wakeup_filter_ticks < JZ_RTC_WAKEUP_FILTER_MASK)
89        wakeup_filter_ticks &= JZ_RTC_WAKEUP_FILTER_MASK;
90    else
91        wakeup_filter_ticks = JZ_RTC_WAKEUP_FILTER_MASK;
92    jz4740_rtc_wait_ready(rtc_base);
93    writel(wakeup_filter_ticks, rtc_base + JZ_REG_RTC_WAKEUP_FILTER);
94
95    /*
96     * Set reset pin low-level assertion time after wakeup: 60 ms.
97     * Range is 0 to 125 ms if RTC is clocked at 32 kHz.
98     */
99    reset_counter_ticks = (60 * jz4740_clock_bdata.rtc_rate) / 1000;
100    if (reset_counter_ticks < JZ_RTC_RESET_COUNTER_MASK)
101        reset_counter_ticks &= JZ_RTC_RESET_COUNTER_MASK;
102    else
103        reset_counter_ticks = JZ_RTC_RESET_COUNTER_MASK;
104    jz4740_rtc_wait_ready(rtc_base);
105    writel(reset_counter_ticks, rtc_base + JZ_REG_RTC_RESET_COUNTER);
106
107    jz4740_rtc_wait_ready(rtc_base);
70108    writel(1, rtc_base + JZ_REG_RTC_HIBERNATE);
109
71110    jz4740_halt();
72111}
73112

Archive Download the corresponding diff file



interactive