public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/11 v3] Fix and Re-organise PWM Timer
@ 2013-03-28 14:32 Akshay Saraswat
  2013-03-28 14:32 ` [U-Boot] [PATCH 01/11 v3] Exynos5: config: enable time command Akshay Saraswat
                   ` (10 more replies)
  0 siblings, 11 replies; 14+ messages in thread
From: Akshay Saraswat @ 2013-03-28 14:32 UTC (permalink / raw)
  To: u-boot

This patch set tries to fix few bugs in timer and re-organises PWM
clock code.

Changes since v2:
	- Patch-1: New patch.
	- Patch-2: None.
	- Patch-3: None.
	- Patch-4: None.
	- Patch-5: Fixed typo paremters in commit message.
	- Patch-6: None.
	- Patch-7: Added "Acked-by: Simon Glass".
	- Patch-8:
		 Fixed typo peripherial to peripheral.
		- Made exynos5_get_periph_rate static.
		- Added an empty line.
		- Replaced "enum periph_id" with "int" in function arguments.
		- Removed "#include <asm/arch/periph.h>" from clk.h.
		- Added "Acked-by: Simon Glass".
	- Patch-9: None.
	- Patch-10:
       		- Replaced "exynos5_get_pwm_clk" with "clock_get_periph_rate" in get_pwm_clk
		  instead of replacing everywhere.
		- Added "Acked-by: Simon Glass".
	- Patch-11: New patch.

Changes since v1:
	- Patch-1: Added "Acked-by: Simon Glass".
	- Patch-2: Added "Acked-by: Simon Glass".
	- Patch-3: Added "Acked-by: Simon Glass".
	- Patch-4: Added "Acked-by: Simon Glass".
	- Patch-5: Added "Acked-by: Simon Glass".
	- Patch-6: None.
	- Patch-7: Fixed few nits.
	- Patch-8: Added "Acked-by: Simon Glass".
	- Patch-9: Restored get_pwm_clk call in case of non-exynos5 cpu.

Akshay Saraswat (11):
  Exynos5: config: enable time command
  Exynos: Change get_timer() to work correctly
  Exynos: Add timer_get_us function
  Exynos: pwm: Fix two bugs in the exynos pwm      configuration code
  Exynos: Avoid a divide by zero by specifying a non-zero      period
    for pwm 4
  Exynos: Tidy up the pwm_config function in the exynos      pwm driver
  Exynos: Add peripherial id for pwm
  Exynos: clock: Add generic api to get the clk freq
  Exynos: clock: Correct pwm source clk selection
  Exynos: pwm: Use generic api to get pwm clk freq
  Exynos: pwm: Remove dead code of function exynos5_get_pwm_clk

 arch/arm/cpu/armv7/exynos/clock.c         | 167 ++++++++++++++++++++++++++----
 arch/arm/cpu/armv7/s5p-common/pwm.c       |  42 ++++----
 arch/arm/cpu/armv7/s5p-common/timer.c     | 117 ++++++++++-----------
 arch/arm/include/asm/arch-exynos/clk.h    |  15 +++
 arch/arm/include/asm/arch-exynos/periph.h |   5 +
 board/samsung/smdk5250/setup.h            |   2 +-
 include/configs/exynos5250-dt.h           |   3 +
 7 files changed, 244 insertions(+), 107 deletions(-)

-- 
1.8.0

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [U-Boot] [PATCH 00/11 v3] Fix and Re-organise PWM Timer
@ 2013-04-01  4:42 Akshay Saraswat
  2013-04-01 11:10 ` Minkyu Kang
  0 siblings, 1 reply; 14+ messages in thread
From: Akshay Saraswat @ 2013-04-01  4:42 UTC (permalink / raw)
  To: u-boot

Hi Minkyu,

>Dear Akshay,
>
>On 28/03/13 23:32, Akshay Saraswat wrote:
>> This patch set tries to fix few bugs in timer and re-organises PWM
>> clock code.
>> 
>> Changes since v2:
>> 	- Patch-1: New patch.
>> 	- Patch-2: None.
>> 	- Patch-3: None.
>> 	- Patch-4: None.
>> 	- Patch-5: Fixed typo paremters in commit message.
>> 	- Patch-6: None.
>> 	- Patch-7: Added "Acked-by: Simon Glass".
>> 	- Patch-8:
>> 		 Fixed typo peripherial to peripheral.
>> 		- Made exynos5_get_periph_rate static.
>> 		- Added an empty line.
>> 		- Replaced "enum periph_id" with "int" in function arguments.
>> 		- Removed "#include <asm/arch/periph.h>" from clk.h.
>> 		- Added "Acked-by: Simon Glass".
>> 	- Patch-9: None.
>> 	- Patch-10:
>>        		- Replaced "exynos5_get_pwm_clk" with "clock_get_periph_rate" in get_pwm_clk
>> 		  instead of replacing everywhere.
>> 		- Added "Acked-by: Simon Glass".
>> 	- Patch-11: New patch.
>> 
>> Changes since v1:
>> 	- Patch-1: Added "Acked-by: Simon Glass".
>> 	- Patch-2: Added "Acked-by: Simon Glass".
>> 	- Patch-3: Added "Acked-by: Simon Glass".
>> 	- Patch-4: Added "Acked-by: Simon Glass".
>> 	- Patch-5: Added "Acked-by: Simon Glass".
>> 	- Patch-6: None.
>> 	- Patch-7: Fixed few nits.
>> 	- Patch-8: Added "Acked-by: Simon Glass".
>> 	- Patch-9: Restored get_pwm_clk call in case of non-exynos5 cpu.
>> 
>> Akshay Saraswat (11):
>>   Exynos5: config: enable time command
>>   Exynos: Change get_timer() to work correctly
>>   Exynos: Add timer_get_us function
>>   Exynos: pwm: Fix two bugs in the exynos pwm      configuration code
>>   Exynos: Avoid a divide by zero by specifying a non-zero      period
>>     for pwm 4
>>   Exynos: Tidy up the pwm_config function in the exynos      pwm driver
>>   Exynos: Add peripherial id for pwm
>>   Exynos: clock: Add generic api to get the clk freq
>>   Exynos: clock: Correct pwm source clk selection
>>   Exynos: pwm: Use generic api to get pwm clk freq
>>   Exynos: pwm: Remove dead code of function exynos5_get_pwm_clk
>> 
>>  arch/arm/cpu/armv7/exynos/clock.c         | 167 ++++++++++++++++++++++++++----
>>  arch/arm/cpu/armv7/s5p-common/pwm.c       |  42 ++++----
>>  arch/arm/cpu/armv7/s5p-common/timer.c     | 117 ++++++++++-----------
>>  arch/arm/include/asm/arch-exynos/clk.h    |  15 +++
>>  arch/arm/include/asm/arch-exynos/periph.h |   5 +
>>  board/samsung/smdk5250/setup.h            |   2 +-
>>  include/configs/exynos5250-dt.h           |   3 +
>>  7 files changed, 244 insertions(+), 107 deletions(-)
>> 
>
>The patch-7 seems to did not reached at mailing list.
>If not, please let me know a link of patchwork.
>
>Thanks,
>Minkyu Kang.
>

I am sorry. I don't know how come this patch was left when the whole
set was posted. I am posting patch-7 now. Please consider it.

Thanks & Regards,
Akshay Saraswat

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2013-04-01 11:10 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-28 14:32 [U-Boot] [PATCH 00/11 v3] Fix and Re-organise PWM Timer Akshay Saraswat
2013-03-28 14:32 ` [U-Boot] [PATCH 01/11 v3] Exynos5: config: enable time command Akshay Saraswat
2013-03-28 14:32 ` [U-Boot] [PATCH 02/11 v3] Exynos: Change get_timer() to work correctly Akshay Saraswat
2013-03-28 14:32 ` [U-Boot] [PATCH 03/11 v3] Exynos: Add timer_get_us function Akshay Saraswat
2013-03-28 14:32 ` [U-Boot] [PATCH 04/11 v3] Exynos: pwm: Fix two bugs in the exynos pwm configuration code Akshay Saraswat
2013-03-28 14:32 ` [U-Boot] [PATCH 05/11 v3] Exynos: Avoid a divide by zero by specifying a non-zero period for pwm 4 Akshay Saraswat
2013-03-28 14:32 ` [U-Boot] [PATCH 06/11 v3] Exynos: Tidy up the pwm_config function in the exynos pwm driver Akshay Saraswat
2013-03-28 14:32 ` [U-Boot] [PATCH 08/11 v3] Exynos: clock: Add generic api to get the clk freq Akshay Saraswat
2013-03-28 14:32 ` [U-Boot] [PATCH 09/11 v3] Exynos: clock: Correct pwm source clk selection Akshay Saraswat
2013-03-28 14:32 ` [U-Boot] [PATCH 10/11 v3] Exynos: pwm: Use generic api to get pwm clk freq Akshay Saraswat
2013-03-28 14:32 ` [U-Boot] [PATCH 11/11 v3] Exynos: pwm: Remove dead code of function exynos5_get_pwm_clk Akshay Saraswat
2013-03-29  1:54 ` [U-Boot] [PATCH 00/11 v3] Fix and Re-organise PWM Timer Minkyu Kang
  -- strict thread matches above, loose matches on Subject: below --
2013-04-01  4:42 Akshay Saraswat
2013-04-01 11:10 ` Minkyu Kang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox