From: Pete Popov <ppopov@embeddedalley.com>
To: Nyauyama <ichinoh@mb.neweb.ne.jp>
Cc: linux-mips@linux-mips.org
Subject: Re: QUESTION YAMON's uart3 of au1100
Date: Sat, 15 Jan 2005 19:01:46 -0800 [thread overview]
Message-ID: <41E9D91A.3050201@embeddedalley.com> (raw)
In-Reply-To: <41E9D047.4010603@mb.neweb.ne.jp>
Nyauyama wrote:
> Hello!
>
> I have a question about initialization of YAMON's uart3 of au1100.
> BFC00000(BOOTLOC) is read by processing delay3.
> Why BFC00000?
Looks like just an arbitrary ad-hoc delay routine (delay3) that
reads from uncached space and throws away the value (just a delay).
What's the problem you're having?
Pete
>
>
> #define BOOTLOC (*(volatile unsigned int *)0xbfc00000)
> int delay3(int n)
> {
> int i, j, v;
> for( i = 0; i < n; ++i )
> {
> for( j = 0; j < 1000; ++j )
> v += BOOTLOC;
> }
> return v;
> }
> void init_uart3()
> {
> uart3.uart_module_control = UART_CE; // disable the module, enable the
> clocks
> delay3(100); // 100 ms delay
> uart3.uart_module_control = UART_CE | UART_ME; // enable the module
> delay3(100); // delay another 100 ms
> uart3.uart_interrupt_enable = 0; // disable interrupts
> uart3.uart_fifo_control = UART_TR | UART_RR; // reset the receiver and
> transmitter
> uart3.uart_line_control = UART_WORD_8 | UART_NO_PARITY | UART_STOP_1;
> uart3.uart_clock_divider = 156;
> setbrg3(396000000,2); // set baud rate for default cpu clock
> delay3(100);
> }
>
> Regards,
> Nyauyama.
>
>
>
next prev parent reply other threads:[~2005-01-16 3:01 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-01-16 2:24 QUESTION YAMON's uart3 of au1100 Nyauyama
2005-01-16 3:01 ` Pete Popov [this message]
2005-01-16 9:35 ` Nyauyama
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=41E9D91A.3050201@embeddedalley.com \
--to=ppopov@embeddedalley.com \
--cc=ichinoh@mb.neweb.ne.jp \
--cc=linux-mips@linux-mips.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox