lkml.org 
[lkml]   [2013]   [Dec]   [19]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 3.11 060/208] can: flexcan: use correct clock as base for bit rate calculation
    Date
    3.11.10.2 -stable review patch.  If anyone has any objections, please let me know.

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

    From: Marc Kleine-Budde <mkl@pengutronix.de>

    commit 1a3e5173f5e72cbf7f0c8927b33082e361c16d72 upstream.

    The flexcan IP core uses the peripheral clock ("per") as basic clock for the
    bit timing calculation. However the driver uses the the wrong clock ("ipg").
    This leads to wrong bit rates if the rates on both clock are different.

    This patch fixes the problem by using the correct clock for the bit rate
    calculation.

    Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
    Signed-off-by: Luis Henriques <luis.henriques@canonical.com>
    ---
    drivers/net/can/flexcan.c | 2 +-
    1 file changed, 1 insertion(+), 1 deletion(-)

    diff --git a/drivers/net/can/flexcan.c b/drivers/net/can/flexcan.c
    index cf3c93f..eb6b191 100644
    --- a/drivers/net/can/flexcan.c
    +++ b/drivers/net/can/flexcan.c
    @@ -1010,7 +1010,6 @@ static int flexcan_probe(struct platform_device *pdev)
    err = PTR_ERR(clk_ipg);
    goto failed_clock;
    }
    - clock_freq = clk_get_rate(clk_ipg);

    clk_per = devm_clk_get(&pdev->dev, "per");
    if (IS_ERR(clk_per)) {
    @@ -1018,6 +1017,7 @@ static int flexcan_probe(struct platform_device *pdev)
    err = PTR_ERR(clk_per);
    goto failed_clock;
    }
    + clock_freq = clk_get_rate(clk_per);
    }

    mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
    --
    1.8.3.2


    \
     
     \ /
      Last update: 2013-12-19 15:01    [W:4.148 / U:0.104 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site