Re: i2c-davinci.c: CPU FREQ causes lock up due to xfr_complete

2014-07-29 Thread Jon Cormier
Grygorii,

Unfortunately I don't have access to a booting mainline kernel to try
and work on this.  Its also currently a bit over my head.

cheers,
-Jonathan

On Tue, Jul 29, 2014 at 1:30 PM, Grygorii Strashko
 wrote:
> Hi Jon,
>
> On 07/29/2014 06:53 PM, Jon Cormier wrote:
>> A slimmer patch suggested by Grygorii Strashko 
>
>
> Ok. The problem seems to be deeper than at first look.
> You have sequence (in Mainline kernel):
> cpufreq:
>  |- notify CPUFREQ_PRECHANGE
> |- i2c-davinci will lock & put I2C in reset
>  |- cpufreq_driver->target_index
> |- davinci_target()
>|- pdata->set_voltage() - It will try to use I2C to set new voltage,
>while I2C is in reset or locked! Bug!
>  |- notify CPUFREQ_POSTCHANGE
> |- i2c-davinci will re-enable I2C and adjust I2C clock
>
> I see few possible ways to solve it:
> 1) use CLK notifier instead of CPUfreq notifiers
> 2) do smth similar to "61c7cff8 i2c: S3C24XX I2C frequency scaling support"
>   + "9bcd04bf i2c: s3c2410: grab adapter lock while changing i2c clock"
> 3) update I2C clock in CPUFREQ_POSTCHANGE - may be unsafe
>
> Regards,
> -grygorii
>
>>
>> Author: Cormier, Jonathan 
>> Date:   Tue Jul 29 11:50:04 2014 -0400
>>
>>  i2c: davinci: Change xfr_complete completion to use i2c_lock_adapter
>>
>>  There are several problems with the use of a completion for this task:
>>
>>  1. If no I2C transfer has occurred, a cpufreq transition will block 
>> forever.
>>  2. Once an I2C transfer has occurred the cpufreq transition will
>> never block since the completion is never reinitialized.
>>  3. Even if you do reinitialize the completion for every I2C
>> transfer, (1) is not solved and there is still a race condition where
>> the cpufreq transition could start just before an I2C transfer starts
>> and the I2C transfer occurs during the cpufreq transition.
>>
>>  Author: Grygorii Strashko 
>>  Author: Cormier, Jonathan 
>>  Signed-off-by: Cormier, Jonathan 
>>
>> diff --git a/drivers/i2c/busses/i2c-davinci.c 
>> b/drivers/i2c/busses/i2c-davinci.c
>> index a76d85f..f8e7b7f 100644
>> --- a/drivers/i2c/busses/i2c-davinci.c
>> +++ b/drivers/i2c/busses/i2c-davinci.c
>> @@ -111,7 +111,6 @@ struct davinci_i2c_dev {
>>   u8terminate;
>>   struct i2c_adapteradapter;
>>   #ifdef CONFIG_CPU_FREQ
>> -struct completionxfr_complete;
>>   struct notifier_blockfreq_transition;
>>   #endif
>>   };
>> @@ -452,10 +451,6 @@ i2c_davinci_xfer(struct i2c_adapter *adap, struct
>> i2c_msg msgs[], int num)
>>   return ret;
>>   }
>>
>> -#ifdef CONFIG_CPU_FREQ
>> -complete(&dev->xfr_complete);
>> -#endif
>> -
>>   return num;
>>   }
>>
>> @@ -596,11 +591,12 @@ static int i2c_davinci_cpufreq_transition(struct
>> notifier_block *nb,
>>
>>   dev = container_of(nb, struct davinci_i2c_dev, freq_transition);
>>   if (val == CPUFREQ_PRECHANGE) {
>> -wait_for_completion(&dev->xfr_complete);
>> +i2c_lock_adapter(&dev->adapter);
>>   davinci_i2c_reset_ctrl(dev, 0);
>>   } else if (val == CPUFREQ_POSTCHANGE) {
>>   i2c_davinci_calc_clk_dividers(dev);
>>   davinci_i2c_reset_ctrl(dev, 1);
>> +i2c_unlock_adapter(&dev->adapter);
>>   }
>>
>>   return 0;
>> @@ -669,9 +665,7 @@ static int davinci_i2c_probe(struct platform_device 
>> *pdev)
>>   }
>>
>>   init_completion(&dev->cmd_complete);
>> -#ifdef CONFIG_CPU_FREQ
>> -init_completion(&dev->xfr_complete);
>> -#endif
>> +
>>   dev->dev = get_device(&pdev->dev);
>>   dev->irq = irq->start;
>>   platform_set_drvdata(pdev, dev);
>>
>> On Tue, Jul 29, 2014 at 11:36 AM, Jon Cormier  
>> wrote:
>>> Okay here is my attempt.
>>>
>>> Author: Cormier, Jonathan 
>>> Date:   Tue Jul 29 11:26:22 2014 -0400
>>>
>>>  i2c: davinci: Change xfr_complete completion to a mutex
>>>
>>>  There are several problems with the use of a completion for this task:
>>>
>>>  1. If no I2C transfer has occurred, a cpufreq transition will block 
>>> forever.
>>>  2. Once an I2C transfer has occurred the cpufreq transition will
>>> never block since the completion is never reinitialized.
>>>  3. Even if you do reinitia

Re: i2c-davinci.c: CPU FREQ causes lock up due to xfr_complete

2014-07-29 Thread Jon Cormier
A slimmer patch suggested by Grygorii Strashko 

Author: Cormier, Jonathan 
Date:   Tue Jul 29 11:50:04 2014 -0400

i2c: davinci: Change xfr_complete completion to use i2c_lock_adapter

There are several problems with the use of a completion for this task:

1. If no I2C transfer has occurred, a cpufreq transition will block forever.
2. Once an I2C transfer has occurred the cpufreq transition will
never block since the completion is never reinitialized.
3. Even if you do reinitialize the completion for every I2C
transfer, (1) is not solved and there is still a race condition where
the cpufreq transition could start just before an I2C transfer starts
and the I2C transfer occurs during the cpufreq transition.

Author: Grygorii Strashko 
Author: Cormier, Jonathan 
Signed-off-by: Cormier, Jonathan 

diff --git a/drivers/i2c/busses/i2c-davinci.c b/drivers/i2c/busses/i2c-davinci.c
index a76d85f..f8e7b7f 100644
--- a/drivers/i2c/busses/i2c-davinci.c
+++ b/drivers/i2c/busses/i2c-davinci.c
@@ -111,7 +111,6 @@ struct davinci_i2c_dev {
 u8terminate;
 struct i2c_adapteradapter;
 #ifdef CONFIG_CPU_FREQ
-struct completionxfr_complete;
 struct notifier_blockfreq_transition;
 #endif
 };
@@ -452,10 +451,6 @@ i2c_davinci_xfer(struct i2c_adapter *adap, struct
i2c_msg msgs[], int num)
 return ret;
 }

-#ifdef CONFIG_CPU_FREQ
-complete(&dev->xfr_complete);
-#endif
-
 return num;
 }

@@ -596,11 +591,12 @@ static int i2c_davinci_cpufreq_transition(struct
notifier_block *nb,

 dev = container_of(nb, struct davinci_i2c_dev, freq_transition);
 if (val == CPUFREQ_PRECHANGE) {
-wait_for_completion(&dev->xfr_complete);
+i2c_lock_adapter(&dev->adapter);
 davinci_i2c_reset_ctrl(dev, 0);
 } else if (val == CPUFREQ_POSTCHANGE) {
 i2c_davinci_calc_clk_dividers(dev);
 davinci_i2c_reset_ctrl(dev, 1);
+i2c_unlock_adapter(&dev->adapter);
 }

 return 0;
@@ -669,9 +665,7 @@ static int davinci_i2c_probe(struct platform_device *pdev)
 }

 init_completion(&dev->cmd_complete);
-#ifdef CONFIG_CPU_FREQ
-init_completion(&dev->xfr_complete);
-#endif
+
 dev->dev = get_device(&pdev->dev);
 dev->irq = irq->start;
 platform_set_drvdata(pdev, dev);

On Tue, Jul 29, 2014 at 11:36 AM, Jon Cormier  wrote:
> Okay here is my attempt.
>
> Author: Cormier, Jonathan 
> Date:   Tue Jul 29 11:26:22 2014 -0400
>
> i2c: davinci: Change xfr_complete completion to a mutex
>
> There are several problems with the use of a completion for this task:
>
> 1. If no I2C transfer has occurred, a cpufreq transition will block 
> forever.
> 2. Once an I2C transfer has occurred the cpufreq transition will
> never block since the completion is never reinitialized.
> 3. Even if you do reinitialize the completion for every I2C
> transfer, (1) is not solved and there is still a race condition where
> the cpufreq transition could start just before an I2C transfer starts
> and the I2C transfer occurs during the cpufreq transition.
>
> Signed-off-by: Cormier, Jonathan 
>
> diff --git a/drivers/i2c/busses/i2c-davinci.c 
> b/drivers/i2c/busses/i2c-davinci.c
> index a76d85f..9eac1c1 100644
> --- a/drivers/i2c/busses/i2c-davinci.c
> +++ b/drivers/i2c/busses/i2c-davinci.c
> @@ -111,7 +111,7 @@ struct davinci_i2c_dev {
>  u8terminate;
>  struct i2c_adapteradapter;
>  #ifdef CONFIG_CPU_FREQ
> -struct completionxfr_complete;
> +struct mutexxfr_lock;
>  struct notifier_blockfreq_transition;
>  #endif
>  };
> @@ -438,10 +438,14 @@ i2c_davinci_xfer(struct i2c_adapter *adap,
> struct i2c_msg msgs[], int num)
>
>  dev_dbg(dev->dev, "%s: msgs: %d\n", __func__, num);
>
> +#ifdef CONFIG_CPU_FREQ
> +mutex_lock(&dev->xfr_lock);
> +#endif
> +
>  ret = i2c_davinci_wait_bus_not_busy(dev, 1);
>  if (ret < 0) {
>  dev_warn(dev->dev, "timeout waiting for bus ready\n");
> -return ret;
> +goto exit;
>  }
>
>  for (i = 0; i < num; i++) {
> @@ -449,14 +453,17 @@ i2c_davinci_xfer(struct i2c_adapter *adap,
> struct i2c_msg msgs[], int num)
>  dev_dbg(dev->dev, "%s [%d/%d] ret: %d\n", __func__, i + 1, num,
>  ret);
>  if (ret < 0)
> -return ret;
> +goto exit;
>  }
> +ret = num;
> +
> +exit:
>
>  #ifdef CONFIG_CPU_FREQ
> -complete(&dev->xfr_complete);
> +mutex_unlock(&dev->xfr_lock);
>  #endif
>
> -return num;
> +return ret;
>  }
>
>  static u32 i2c_davinci_func(struct i2c_ada

Re: i2c-davinci.c: CPU FREQ causes lock up due to xfr_complete

2014-07-29 Thread Jon Cormier
ng CPUFREQ_PRECHANGE before calling
set_voltage which relied tried talking to the pmic over i2c causing a
hang.

@@ -101,17 +101,17 @@ static int davinci_target(struct cpufreq_policy *policy,

cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);

/* if moving to higher frequency, up the voltage beforehand */
if (pdata->set_voltage && freqs.new > freqs.old) {
ret = pdata->set_voltage(idx);
if (ret)
goto out;
}

I fixed this by moving the cpufreq_notifiy.  This doesn't apply to the
later kernels as the davinci cpufreq driver has changed quite a bit.
Unfortunately I don't have the setup to test a patch against a newer
kernel right now.

Author: Cormier, Jonathan 
Date:   Tue Jul 29 11:22:50 2014 -0400

ARM: DAVINCI: Reorder cpufreq_nofity_transistion so that
set_voltage happens first.

set_voltage may make use of the i2c bus to communicate with the
PMIC.  In this case we dont want the i2c to reset until after we set
the voltage.

Signed-off-by: Cormier, Jonathan 

diff --git a/arch/arm/mach-davinci/cpufreq.c b/arch/arm/mach-davinci/cpufreq.c
index 5bba707..cbaee6c 100644
--- a/arch/arm/mach-davinci/cpufreq.c
+++ b/arch/arm/mach-davinci/cpufreq.c
@@ -102,8 +102,6 @@ static int davinci_target(struct cpufreq_policy *policy,
 if (ret)
 return -EINVAL;

-cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
-
 /* if moving to higher frequency, up the voltage beforehand */
 if (pdata->set_voltage && freqs.new > freqs.old) {
 ret = pdata->set_voltage(idx);
@@ -111,6 +109,8 @@ static int davinci_target(struct cpufreq_policy *policy,
 goto out;
 }

+cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
+
 ret = clk_set_rate(armclk, idx);
 if (ret)
 goto out;

On Tue, Jul 29, 2014 at 10:38 AM, Brian Niebuhr  wrote:
>
>
>> -Original Message-
>> From: davinci-linux-open-source-boun...@linux.davincidsp.com
>> [mailto:davinci-linux-open-source-boun...@linux.davincidsp.com] On
>> Behalf Of Jon Cormier
>> Sent: Tuesday, July 29, 2014 9:20 AM
>> To: davinci-linux-open-source@linux.davincidsp.com
>> Cc: Tim Iskander
>> Subject: i2c-davinci.c: CPU FREQ causes lock up due to xfr_complete
>>
>> Reported issue:
>>
>> 1. Enable I2C1, flash the new kernel and reboot
>> 2. Immediately after reboot, attempt to change the processor clock: "echo
>> 456000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_setspeed"
>> 3. Process blocks
>>
>> However, if we do the following:
>> 1. Enable I2C1, flash the new kernel and reboot
>> 2. Immediately after reboot, run: "i2cdetect -y 2 0x08 0x08" or just 
>> "i2cdetect
>> -y 2"
>> 3. Then run: "echo 456000 >
>> /sys/devices/system/cpu/cpu0/cpufreq/scaling_setspeed"
>> 4. Command succeeds
>
> I found this problem as well, and I haven't had time to put together a proper 
> patch.  Right now we're just working around it.  There are several problems 
> with the use of a completion for this task:
>
> 1. If no I2C transfer has occurred, a cpufreq transition will block forever 
> (which is the bug you found)
> 2. Once an I2C transfer has occurred the cpufreq transition will never block 
> since the completion is never reinitialized.
> 3. Even if you do reinitialize the completion for every I2C transfer, (1) is 
> not solved and there is still a race condition where the cpufreq transition 
> could start just before an I2C transfer starts and the I2C transfer occurs 
> during the cpufreq transition.
>
> Personally I think the correct solution is to use a mutex instead of a 
> completion.  The cpufreq code would take the mutex during the prechange 
> callback and release it during the postchange callback.  Likewise the I2C 
> transfer function would hold the mutex while an I2C transfer is ongoing.  
> That way an I2C transfer cannot occur during a cpufreq transition and 
> vice-versa.  As I mentioned, I have not had time to put together a proper 
> patch, but I would be happy to see this issue addressed if someone else can 
> do it.
>
>
>> Here's the kernel hung task stack trace:
>>
>> INFO: task sh:1428 blocked for more than 120 seconds.
>> "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
>> sh D c026dc74 0 1428 1426 0x
>> [] (schedule+0x2a8/0x334) from []
>> (schedule_timeout+0x1c/0x218)
>> [] (schedule_timeout+0x1c/0x218) from []
>> (wait_for_common+0xf0/0x1b8)
>> [] (wait_for_common+0xf0/0x1b8) from []
>> (i2c_davinci_cpufreq_transition+0x18/0x50)
>> [] (i2c_davinci_cpufreq_transition

i2c-davinci.c: CPU FREQ causes lock up due to xfr_complete

2014-07-29 Thread Jon Cormier
Reported issue:

1. Enable I2C1, flash the new kernel and reboot
2. Immediately after reboot, attempt to change the processor clock: "echo
456000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_setspeed"
3. Process blocks

However, if we do the following:

1. Enable I2C1, flash the new kernel and reboot
2. Immediately after reboot, run: "i2cdetect -y 2 0x08 0x08" or just
"i2cdetect -y 2"
3. Then run: "echo 456000 >
/sys/devices/system/cpu/cpu0/cpufreq/scaling_setspeed"
4. Command succeeds

Here's the kernel hung task stack trace:

INFO: task sh:1428 blocked for more than 120 seconds.
"echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
sh D c026dc74 0 1428 1426 0x
[] (schedule+0x2a8/0x334) from []
(schedule_timeout+0x1c/0x218)
[] (schedule_timeout+0x1c/0x218) from []
(wait_for_common+0xf0/0x1b8)
[] (wait_for_common+0xf0/0x1b8) from []
(i2c_davinci_cpufreq_transition+0x18/0x50)
[] (i2c_davinci_cpufreq_transition+0x18/0x50) from []
(notifier_call_chain+0x38/0x68)
[] (notifier_call_chain+0x38/0x68) from []
(__srcu_notifier_call_chain+0x40/0x58)
[] (__srcu_notifier_call_chain+0x40/0x58) from []
(srcu_notifier_call_chain+0x14/0x18)
[] (srcu_notifier_call_chain+0x14/0x18) from []
(cpufreq_notify_transition+0xc8/0xfc)
[] (cpufreq_notify_transition+0xc8/0xfc) from []
(davinci_target+0x144/0x154)
[] (davinci_target+0x144/0x154) from []
(__cpufreq_driver_target+0x28/0x38)
[] (__cpufreq_driver_target+0x28/0x38) from []
(cpufreq_set+0x54/0x70)
[] (cpufreq_set+0x54/0x70) from []
(store_scaling_setspeed+0x58/0x6c)
[] (store_scaling_setspeed+0x58/0x6c) from []
(store+0x58/0x74)
[] (store+0x58/0x74) from []
(sysfs_write_file+0x108/0x140)
[] (sysfs_write_file+0x108/0x140) from []
(vfs_write+0xb0/0x118)
[] (vfs_write+0xb0/0x118) from [] (sys_write+0x3c/0x68)
[] (sys_write+0x3c/0x68) from []
(ret_fast_syscall+0x0/0x28)
Kernel panic - not syncing: hung_task: blocked tasks
[] (unwind_backtrace+0x0/0xd0) from [] (panic+0x44/0xc8)
[] (panic+0x44/0xc8) from [] (watchdog+0x1d4/0x21c)
[] (watchdog+0x1d4/0x21c) from [] (kthread+0x78/0x80)
[] (kthread+0x78/0x80) from []
(kernel_thread_exit+0x0/0x8)

According to the stack trace the kernel gets stuck in the
"i2c_davinci_cpufreq_transition" function when it calls
"wait_for_completion(&dev->xfr_complete);"  The two other places this
xfr_complete variable is referenced is the init_completion in the probe and
the complete at the end of the i2c_davinci_xfer function. My understanding
as to what this was intended for was to ensure that a transfer in progress
completed before changing the clock frequency.  But as its currently done
the only thing it does is make sure there has been a completed i2c transfer
on this device ever.  Is my understanding correct?

Currently the workaround is to simply disable the wait_for_completion as
seen below.  How would you fix this to ensure a transfer in progress
completes before changing clocks without hanging if no transfer was ever
attempted?
diff --git a/drivers/i2c/busses/i2c-davinci.c
b/drivers/i2c/busses/i2c-davinci.c
index a76d85f..564247f 100644
--- a/drivers/i2c/busses/i2c-davinci.c
+++ b/drivers/i2c/busses/i2c-davinci.c
@@ -596,7 +596,7 @@ static int i2c_davinci_cpufreq_transition(struct
notifier_block *nb,

dev = container_of(nb, struct davinci_i2c_dev, freq_transition);
if (val == CPUFREQ_PRECHANGE) {
-   wait_for_completion(&dev->xfr_complete);
+   //wait_for_completion(&dev->xfr_complete);
davinci_i2c_reset_ctrl(dev, 0);
} else if (val == CPUFREQ_POSTCHANGE) {
i2c_davinci_calc_clk_dividers(dev);

Patch were this was introduced:
sha: 82c0de11b734c5acec13c0f6007466da81cd16d9  i2c:davinci:Add cpufreq
support

-- 
Jonathan Cormier
CriticalLink
___
Davinci-linux-open-source mailing list
Davinci-linux-open-source@linux.davincidsp.com
http://linux.davincidsp.com/mailman/listinfo/davinci-linux-open-source