From: NeilBrown <neilb@suse.de>
To: Tony Lindgren <tony@atomide.com>, Russell King <linux@arm.linux.org.uk>
Cc: linux-omap@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
Belisko Marek <marek.belisko@gmail.com>,
"Dr. H. Nikolaus Schaller" <hns@goldelico.com>
Subject: [PATCH 0/2] ARM: OMAP: dmtimers improvements.
Date: Thu, 24 Oct 2013 17:57:40 +1100 [thread overview]
Message-ID: <20131024065536.16889.49902.stgit@notabene.brown> (raw)
I would like to use omap dmtimer for a PWM driver (for the backlight
on my display).
But there are two difficulties.
Unfortunately Jon Hunter (who has helped me with dmtimers before)
seems to have disappeared. So I guess I get to do it myself :-)
Following two patches make dmtimers more usable.
1/ allow the counter to be set even when the timer isn't counting.
2/ move the include file to a more useful location
Any help you can provide in getting these fixes upstream would be appreciated.
Thanks,
NeilBrown
---
NeilBrown (2):
ARM: OMAP2+: dmtimer: allow counter to be set at any time.
ARM: OMAP: move dmtimer.h from plat-omap/include/plat to include/linux
arch/arm/mach-omap1/pm.c | 2
arch/arm/mach-omap1/timer.c | 2
arch/arm/mach-omap2/omap_hwmod_2420_data.c | 2
arch/arm/mach-omap2/omap_hwmod_2430_data.c | 2
arch/arm/mach-omap2/omap_hwmod_2xxx_ipblock_data.c | 2
arch/arm/mach-omap2/omap_hwmod_3xxx_data.c | 2
arch/arm/mach-omap2/omap_hwmod_44xx_data.c | 2
arch/arm/mach-omap2/omap_hwmod_54xx_data.c | 2
arch/arm/mach-omap2/omap_hwmod_7xx_data.c | 2
arch/arm/mach-omap2/timer.c | 2
arch/arm/plat-omap/dmtimer.c | 11 -
arch/arm/plat-omap/include/plat/dmtimer.h | 415 --------------------
drivers/media/rc/ir-rx51.c | 2
drivers/pwm/pwm-omap.c | 2
drivers/staging/tidspbridge/core/dsp-clock.c | 2
include/linux/omap-dmtimer.h | 415 ++++++++++++++++++++
16 files changed, 434 insertions(+), 433 deletions(-)
delete mode 100644 arch/arm/plat-omap/include/plat/dmtimer.h
create mode 100644 include/linux/omap-dmtimer.h
--
Signature
WARNING: multiple messages have this Message-ID (diff)
From: neilb@suse.de (NeilBrown)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/2] ARM: OMAP: dmtimers improvements.
Date: Thu, 24 Oct 2013 17:57:40 +1100 [thread overview]
Message-ID: <20131024065536.16889.49902.stgit@notabene.brown> (raw)
I would like to use omap dmtimer for a PWM driver (for the backlight
on my display).
But there are two difficulties.
Unfortunately Jon Hunter (who has helped me with dmtimers before)
seems to have disappeared. So I guess I get to do it myself :-)
Following two patches make dmtimers more usable.
1/ allow the counter to be set even when the timer isn't counting.
2/ move the include file to a more useful location
Any help you can provide in getting these fixes upstream would be appreciated.
Thanks,
NeilBrown
---
NeilBrown (2):
ARM: OMAP2+: dmtimer: allow counter to be set at any time.
ARM: OMAP: move dmtimer.h from plat-omap/include/plat to include/linux
arch/arm/mach-omap1/pm.c | 2
arch/arm/mach-omap1/timer.c | 2
arch/arm/mach-omap2/omap_hwmod_2420_data.c | 2
arch/arm/mach-omap2/omap_hwmod_2430_data.c | 2
arch/arm/mach-omap2/omap_hwmod_2xxx_ipblock_data.c | 2
arch/arm/mach-omap2/omap_hwmod_3xxx_data.c | 2
arch/arm/mach-omap2/omap_hwmod_44xx_data.c | 2
arch/arm/mach-omap2/omap_hwmod_54xx_data.c | 2
arch/arm/mach-omap2/omap_hwmod_7xx_data.c | 2
arch/arm/mach-omap2/timer.c | 2
arch/arm/plat-omap/dmtimer.c | 11 -
arch/arm/plat-omap/include/plat/dmtimer.h | 415 --------------------
drivers/media/rc/ir-rx51.c | 2
drivers/pwm/pwm-omap.c | 2
drivers/staging/tidspbridge/core/dsp-clock.c | 2
include/linux/omap-dmtimer.h | 415 ++++++++++++++++++++
16 files changed, 434 insertions(+), 433 deletions(-)
delete mode 100644 arch/arm/plat-omap/include/plat/dmtimer.h
create mode 100644 include/linux/omap-dmtimer.h
--
Signature
WARNING: multiple messages have this Message-ID (diff)
From: NeilBrown <neilb@suse.de>
To: Tony Lindgren <tony@atomide.com>, Russell King <linux@arm.linux.org.uk>
Cc: linux-omap@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org
Cc: Belisko Marek <marek.belisko@gmail.com>,
"Dr. H. Nikolaus Schaller" <hns@goldelico.com>
Subject: [PATCH 0/2] ARM: OMAP: dmtimers improvements.
Date: Thu, 24 Oct 2013 17:57:40 +1100 [thread overview]
Message-ID: <20131024065536.16889.49902.stgit@notabene.brown> (raw)
I would like to use omap dmtimer for a PWM driver (for the backlight
on my display).
But there are two difficulties.
Unfortunately Jon Hunter (who has helped me with dmtimers before)
seems to have disappeared. So I guess I get to do it myself :-)
Following two patches make dmtimers more usable.
1/ allow the counter to be set even when the timer isn't counting.
2/ move the include file to a more useful location
Any help you can provide in getting these fixes upstream would be appreciated.
Thanks,
NeilBrown
---
NeilBrown (2):
ARM: OMAP2+: dmtimer: allow counter to be set at any time.
ARM: OMAP: move dmtimer.h from plat-omap/include/plat to include/linux
arch/arm/mach-omap1/pm.c | 2
arch/arm/mach-omap1/timer.c | 2
arch/arm/mach-omap2/omap_hwmod_2420_data.c | 2
arch/arm/mach-omap2/omap_hwmod_2430_data.c | 2
arch/arm/mach-omap2/omap_hwmod_2xxx_ipblock_data.c | 2
arch/arm/mach-omap2/omap_hwmod_3xxx_data.c | 2
arch/arm/mach-omap2/omap_hwmod_44xx_data.c | 2
arch/arm/mach-omap2/omap_hwmod_54xx_data.c | 2
arch/arm/mach-omap2/omap_hwmod_7xx_data.c | 2
arch/arm/mach-omap2/timer.c | 2
arch/arm/plat-omap/dmtimer.c | 11 -
arch/arm/plat-omap/include/plat/dmtimer.h | 415 --------------------
drivers/media/rc/ir-rx51.c | 2
drivers/pwm/pwm-omap.c | 2
drivers/staging/tidspbridge/core/dsp-clock.c | 2
include/linux/omap-dmtimer.h | 415 ++++++++++++++++++++
16 files changed, 434 insertions(+), 433 deletions(-)
delete mode 100644 arch/arm/plat-omap/include/plat/dmtimer.h
create mode 100644 include/linux/omap-dmtimer.h
--
Signature
next reply other threads:[~2013-10-24 6:57 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-10-24 6:57 NeilBrown [this message]
2013-10-24 6:57 ` [PATCH 0/2] ARM: OMAP: dmtimers improvements NeilBrown
2013-10-24 6:57 ` NeilBrown
2013-10-24 6:57 ` [PATCH 1/2] ARM: OMAP2+: dmtimer: allow counter to be set at any time NeilBrown
2013-10-24 6:57 ` NeilBrown
2013-10-24 6:57 ` NeilBrown
2013-10-24 6:57 ` [PATCH 2/2] ARM: OMAP: move dmtimer.h from plat-omap/include/plat to include/linux NeilBrown
2013-10-24 6:57 ` NeilBrown
2013-10-24 6:57 ` NeilBrown
2013-10-24 18:10 ` [PATCH 0/2] ARM: OMAP: dmtimers improvements Shilimkar, Santosh
2013-10-24 18:10 ` Shilimkar, Santosh
2013-10-25 14:31 ` Tony Lindgren
2013-10-25 14:31 ` Tony Lindgren
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20131024065536.16889.49902.stgit@notabene.brown \
--to=neilb@suse.de \
--cc=hns@goldelico.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=linux@arm.linux.org.uk \
--cc=marek.belisko@gmail.com \
--cc=tony@atomide.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.