lkml.org 
[lkml]   [2012]   [Jan]   [3]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    Date
    From
    Subject[18/75] MXC PWM: should active during DOZE/WAIT/DBG mode
    3.1-stable review patch.  If anyone has any objections, please let me know.

    ------------------

    From: Jason Chen <jason.chen@linaro.org>

    commit c0d96aed8c6dd925afe9ea35491a0cd458642a86 upstream.

    Signed-off-by: Jason Chen <jason.chen@linaro.org>
    Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
    Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

    ---
    arch/arm/plat-mxc/pwm.c | 7 ++++++-
    1 file changed, 6 insertions(+), 1 deletion(-)

    --- a/arch/arm/plat-mxc/pwm.c
    +++ b/arch/arm/plat-mxc/pwm.c
    @@ -32,6 +32,9 @@
    #define MX3_PWMSAR 0x0C /* PWM Sample Register */
    #define MX3_PWMPR 0x10 /* PWM Period Register */
    #define MX3_PWMCR_PRESCALER(x) (((x - 1) & 0xFFF) << 4)
    +#define MX3_PWMCR_DOZEEN (1 << 24)
    +#define MX3_PWMCR_WAITEN (1 << 23)
    +#define MX3_PWMCR_DBGEN (1 << 22)
    #define MX3_PWMCR_CLKSRC_IPG_HIGH (2 << 16)
    #define MX3_PWMCR_CLKSRC_IPG (1 << 16)
    #define MX3_PWMCR_EN (1 << 0)
    @@ -77,7 +80,9 @@ int pwm_config(struct pwm_device *pwm, i
    writel(duty_cycles, pwm->mmio_base + MX3_PWMSAR);
    writel(period_cycles, pwm->mmio_base + MX3_PWMPR);

    - cr = MX3_PWMCR_PRESCALER(prescale) | MX3_PWMCR_EN;
    + cr = MX3_PWMCR_PRESCALER(prescale) |
    + MX3_PWMCR_DOZEEN | MX3_PWMCR_WAITEN |
    + MX3_PWMCR_DBGEN | MX3_PWMCR_EN;

    if (cpu_is_mx25())
    cr |= MX3_PWMCR_CLKSRC_IPG;



    \
     
     \ /
      Last update: 2012-01-03 23:59    [W:4.149 / U:0.024 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site