All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] Use Tegra's microsecond counter for udelay()
@ 2014-06-12 15:58 ` Peter De Schrijver
  0 siblings, 0 replies; 27+ messages in thread
From: Peter De Schrijver @ 2014-06-12 15:58 UTC (permalink / raw)
  To: Peter De Schrijver
  Cc: Russell King, Daniel Lezcano, Thomas Gleixner, Stephen Warren,
	Thierry Reding, Paul Gortmaker,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	linux-tegra-u79uwXL29TY76Z2rM5mHXA

This patchset introduces support for Tegra's microsecond counter as the
udelay() timer. This is useful on Tegra SoCs which do not have an arch timer
such as Tegra20 and Tegra30. Using the microsecond counter instead of a delay
based loop avoids potential problems during cpu frequency changes.

The set consists of 3 patches:

Patch 1 introduces a new call which is used by the ARM architecture delay
timer code to prevent changing the delay timer after calibration is finished
and thus can be in use.

Patch 2 adds logic to choose the delay timer with the highest resolution. This
allows the same registration code to be used on all Tegra SoCs and yet use the
higher resolution arch timer when available (eg on Tegra114 or Tegra124).

Patch 3 adds the actual delay timer code.

Patch set has been verified on ventana (Tegra20), beaver (Tegra30),
dalmore (Tegra114) and jetson TK1 (Tegra124).

Changes since v1:
* Address review comments

What needs to be done to make progress on this one? I think it's really useful
to have this when CPU DVFS is available.

Peter De Schrijver (3):
  kernel: add calibration_delay_done()
  ARM: choose highest resolution delay timer
  clocksource: tegra: Use us counter as delay timer

 arch/arm/lib/delay.c                |   26 ++++++++++++++++++++++----
 drivers/clocksource/tegra20_timer.c |   13 +++++++++++++
 init/calibrate.c                    |   11 +++++++++++
 3 files changed, 46 insertions(+), 4 deletions(-)

-- 
1.7.7.rc0.72.g4b5ea.dirty

^ permalink raw reply	[flat|nested] 27+ messages in thread
* [PATCH 0/3] Use Tegra's microsecond counter for udelay()
@ 2014-05-20 15:36 ` Peter De Schrijver
  0 siblings, 0 replies; 27+ messages in thread
From: Peter De Schrijver @ 2014-05-20 15:36 UTC (permalink / raw)
  To: Peter De Schrijver
  Cc: Russell King, Daniel Lezcano, Thomas Gleixner, Stephen Warren,
	Thierry Reding, Paul Gortmaker,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	linux-tegra-u79uwXL29TY76Z2rM5mHXA

This patchset introduces support for Tegra's microsecond counter as the
udelay() timer. This is useful on Tegra SoCs which do not have an arch timer
such as Tegra20 and Tegra30. Using the microsecond counter instead of a delay
based loop avoids potential problems during cpu frequency changes.

The set consists of 3 patches:

Patch 1 introduces a new call which is used by the ARM architecture delay
timer code to prevent changing the delay timer after calibration is finished
and thus can be in use.

Patch 2 adds logic to choose the delay timer with the highest resolution. This
allows the same registration code to be used on all Tegra SoCs and yet use the
higher resolution arch timer when available (eg on Tegra114 or Tegra124).

Patch 3 adds the actual delay timer code.

Patch set has been verified on ventana (Tegra20), beaver (Tegra30),
dalmore (Tegra114) and jetson TK1 (Tegra124).

Peter De Schrijver (3):
  kernel: add calibration_delay_done()
  ARM: choose highest resolution delay timer
  clocksource: tegra: Use uS counter as delay timer

 arch/arm/lib/delay.c                |   26 ++++++++++++++++++++++----
 drivers/clocksource/tegra20_timer.c |   13 +++++++++++++
 init/calibrate.c                    |   12 ++++++++++++
 3 files changed, 47 insertions(+), 4 deletions(-)

-- 
1.7.7.rc0.72.g4b5ea.dirty

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

end of thread, other threads:[~2014-06-16 18:52 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-12 15:58 [PATCH 0/3] Use Tegra's microsecond counter for udelay() Peter De Schrijver
2014-06-12 15:58 ` Peter De Schrijver
2014-06-12 15:58 ` Peter De Schrijver
2014-06-12 15:58 ` [PATCH v2 1/3] kernel: add calibration_delay_done() Peter De Schrijver
2014-06-12 15:58   ` Peter De Schrijver
2014-06-12 15:58   ` Peter De Schrijver
2014-06-12 15:58 ` [PATCH v2 2/3] ARM: choose highest resolution delay timer Peter De Schrijver
2014-06-12 15:58   ` Peter De Schrijver
2014-06-12 15:58   ` Peter De Schrijver
2014-06-12 15:58 ` [PATCH v2 3/3] clocksource: tegra: Use us counter as " Peter De Schrijver
2014-06-12 15:58   ` Peter De Schrijver
2014-06-12 15:58   ` Peter De Schrijver
     [not found] ` <1402588713-18766-1-git-send-email-pdeschrijver-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2014-06-12 19:38   ` [PATCH 0/3] Use Tegra's microsecond counter for udelay() Stephen Warren
2014-06-12 19:38     ` Stephen Warren
2014-06-12 19:38     ` Stephen Warren
     [not found]     ` <539A01B4.3050503-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
2014-06-12 22:55       ` Russell King - ARM Linux
2014-06-12 22:55         ` Russell King - ARM Linux
2014-06-12 22:55         ` Russell King - ARM Linux
2014-06-13  7:25     ` Peter De Schrijver
2014-06-13  7:25       ` Peter De Schrijver
2014-06-13  7:25       ` Peter De Schrijver
2014-06-16 18:52   ` Stephen Warren
2014-06-16 18:52     ` Stephen Warren
2014-06-16 18:52     ` Stephen Warren
  -- strict thread matches above, loose matches on Subject: below --
2014-05-20 15:36 Peter De Schrijver
2014-05-20 15:36 ` Peter De Schrijver
2014-05-20 15:36 ` Peter De Schrijver

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.