From: psanchez@fosstel.com (Pedro I. Sanchez)
To: linux-arm-kernel@lists.infradead.org
Subject: AT91SAM9260: How to output PCK0 clock on a GPIO pin
Date: Mon, 31 Aug 2009 16:37:15 -0400 [thread overview]
Message-ID: <af2c0bf49afa409b64cb313bb77bae9e@colcan.ca> (raw)
In-Reply-To: <4A9C2B7A.7070306@gabaedevelopment.com>
On Mon, 31 Aug 2009 15:58:50 -0400, Stephen Munnings
<smunnings@gabaedevelopment.com> wrote:
> Sergey Matyukevich wrote:
>> Hi,
>>
>>
>>> And how do I turn on the PMC clocks for the GPIO?
>>>
>>
>> Assigning gpio pin PC6 to TIOB2 peripheral is only a part of the work.
>> Timer counters may operate in different modes. Take a look at
>> the datasheet for at91sam9260, timer counters are covered in chapter 34.
>> It looks like 'waveform mode' is what you need (see 34.5.10, 34.5.11).
>> Before you get desired output on PC6 pin you will have to turn on
>> waveform operating mode for TIOB2 and to configure its wave shapes.
>>
>> Thanks,
>> Sergey
>>
> hmmmm....
>
> PCK0 is *not* a TC pin - it is a clock output from the Power Management
> Controller.
> (Section 25.6)
> It should be as easy as dividing down one of the primary clock sources
> and then enabling
> the appropriate GPIO pin as the appropriate peripheral.
>
> Ahah - there is the problem..... PCK0 is not available on PC6 - it must
> be set as peripheral B
> on pin PC1 or PB30 as Peripheral A - no other choices available...
>
> PC6 is indeed TIOB2 (one of the counter timers)
OK, I see this thread unfolding, thank you!
This is what I have now to test pck0 on PC1:
at91_set_B_periph(AT91_PIN_PC1, 0);
pck0=clk_get(NULL, "pck0");
pll=clk_get(NULL, "plla");
clk_set_parent(pck0, pll);
clk_set_rate(pck0, 50000000);
clk_enable(pck0);
But I don't get a clean clock on PC1. In the end I will still need to get
the TC clock on PC6 but I for the time being I want to be able to generate
any clock out first!
Is there something else to do?
--
Pedro
next prev parent reply other threads:[~2009-08-31 20:37 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-08-31 15:32 AT91SAM9260: How to output PCK0 clock on a GPIO pin Pedro I. Sanchez
2009-08-31 16:58 ` Stephen Munnings
2009-08-31 18:27 ` Pedro I. Sanchez
2009-08-31 18:44 ` Stephen Munnings
2009-08-31 19:02 ` Pedro I. Sanchez
2009-08-31 19:13 ` Stephen Munnings
2009-08-31 19:21 ` Pedro I. Sanchez
2009-08-31 19:33 ` Sergey Matyukevich
2009-08-31 19:58 ` Stephen Munnings
2009-08-31 20:37 ` Pedro I. Sanchez [this message]
2009-08-31 20:44 ` Stephen Munnings
2009-08-31 21:09 ` Pedro I. Sanchez
2009-08-31 20:03 ` Pedro I. Sanchez
2009-08-31 20:33 ` Ryan Mallon
2009-08-31 20:46 ` Pedro I. Sanchez
2009-08-31 20:35 ` Sergey Matyukevich
2009-08-31 21:06 ` Pedro I. Sanchez
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=af2c0bf49afa409b64cb313bb77bae9e@colcan.ca \
--to=psanchez@fosstel.com \
--cc=linux-arm-kernel@lists.infradead.org \
/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.