Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
u-boot-2015.04
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
vesta
u-boot-2015.04
Commits
eb2b4010
Commit
eb2b4010
authored
17 years ago
by
Stefan Roese
Browse files
Options
Downloads
Patches
Plain Diff
POST: Add ppc405 support to cache and UART POST
Signed-off-by:
Stefan Roese
<
sr@denx.de
>
parent
d4024bb7
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
post/cpu/ppc4xx/cache.c
+14
-2
14 additions, 2 deletions
post/cpu/ppc4xx/cache.c
post/cpu/ppc4xx/cache_4xx.S
+44
-0
44 additions, 0 deletions
post/cpu/ppc4xx/cache_4xx.S
post/cpu/ppc4xx/uart.c
+128
-5
128 additions, 5 deletions
post/cpu/ppc4xx/uart.c
with
186 additions
and
7 deletions
post/cpu/ppc4xx/cache.c
+
14
−
2
View file @
eb2b4010
...
@@ -53,14 +53,25 @@ int cache_post_test6 (int tlb, void *p, int size);
...
@@ -53,14 +53,25 @@ int cache_post_test6 (int tlb, void *p, int size);
static
int
tlb
=
-
1
;
/* index to the victim TLB entry */
static
int
tlb
=
-
1
;
/* index to the victim TLB entry */
#ifdef CONFIG_440
static
unsigned
char
testarea
[
CACHE_POST_SIZE
]
static
unsigned
char
testarea
[
CACHE_POST_SIZE
]
__attribute__
((
__aligned__
(
CACHE_POST_SIZE
)));
__attribute__
((
__aligned__
(
CACHE_POST_SIZE
)));
#endif
int
cache_post_test
(
int
flags
)
int
cache_post_test
(
int
flags
)
{
{
void
*
virt
=
(
void
*
)
CFG_POST_CACHE_ADDR
;
void
*
virt
=
(
void
*
)
CFG_POST_CACHE_ADDR
;
int
ints
,
i
,
res
=
0
;
int
ints
;
u32
word0
;
int
res
=
0
;
/*
* All 44x variants deal with cache management differently
* because they have the address translation always enabled.
* The 40x ppc's don't use address translation in U-Boot at all,
* so we have to distinguish here between 40x and 44x.
*/
#ifdef CONFIG_440
int
word0
,
i
;
if
(
tlb
<
0
)
{
if
(
tlb
<
0
)
{
/*
/*
...
@@ -83,6 +94,7 @@ int cache_post_test (int flags)
...
@@ -83,6 +94,7 @@ int cache_post_test (int flags)
}
}
}
}
}
}
#endif
ints
=
disable_interrupts
();
ints
=
disable_interrupts
();
WATCHDOG_RESET
();
WATCHDOG_RESET
();
...
...
This diff is collapsed.
Click to expand it.
post/cpu/ppc4xx/cache_4xx.S
+
44
−
0
View file @
eb2b4010
...
@@ -37,6 +37,13 @@
...
@@ -37,6 +37,13 @@
.
text
.
text
/
*
*
All
44
x
variants
deal
with
cache
management
differently
*
because
they
have
the
address
translation
always
enabled
.
*
The
40
x
ppc
's don'
t
use
address
translation
in
U
-
Boot
at
all
,
*
so
we
have
to
distinguish
here
between
40
x
and
44
x
.
*/
#ifdef CONFIG_440
/*
void
cache_post_disable
(
int
tlb
)
/*
void
cache_post_disable
(
int
tlb
)
*/
*/
cache_post_disable
:
cache_post_disable
:
...
@@ -68,6 +75,43 @@ cache_post_wb:
...
@@ -68,6 +75,43 @@ cache_post_wb:
sync
sync
isync
isync
blr
blr
#else
/*
void
cache_post_disable
(
int
tlb
)
*/
cache_post_disable
:
lis
r0
,
0x0000
ori
r0
,
r0
,
0x0000
mtdccr
r0
sync
isync
blr
/*
void
cache_post_wt
(
int
tlb
)
*/
cache_post_wt
:
lis
r0
,
0x8000
ori
r0
,
r0
,
0x0000
mtdccr
r0
lis
r0
,
0x8000
ori
r0
,
r0
,
0x0000
mtdcwr
r0
sync
isync
blr
/*
void
cache_post_wb
(
int
tlb
)
*/
cache_post_wb
:
lis
r0
,
0x8000
ori
r0
,
r0
,
0x0000
mtdccr
r0
lis
r0
,
0x0000
ori
r0
,
r0
,
0x0000
mtdcwr
r0
sync
isync
blr
#endif
/*
void
cache_post_dinvalidate
(
void
*
p
,
int
size
)
/*
void
cache_post_dinvalidate
(
void
*
p
,
int
size
)
*/
*/
...
...
This diff is collapsed.
Click to expand it.
post/cpu/ppc4xx/uart.c
+
128
−
5
View file @
eb2b4010
...
@@ -38,24 +38,77 @@
...
@@ -38,24 +38,77 @@
#if CONFIG_POST & CFG_POST_UART
#if CONFIG_POST & CFG_POST_UART
/*
* This table defines the UART's that should be tested and can
* be overridden in the board config file
*/
#ifndef CFG_POST_UART_TABLE
#define CFG_POST_UART_TABLE {UART0_BASE, UART1_BASE, UART2_BASE, UART3_BASE}
#endif
#include
<asm/processor.h>
#include
<asm/processor.h>
#include
<serial.h>
#include
<serial.h>
#if defined(CONFIG_440)
#if defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
#define UART0_BASE CFG_PERIPHERAL_BASE + 0x00000300
#define UART0_BASE CFG_PERIPHERAL_BASE + 0x00000300
#define UART1_BASE CFG_PERIPHERAL_BASE + 0x00000400
#define UART1_BASE CFG_PERIPHERAL_BASE + 0x00000400
#define UART2_BASE CFG_PERIPHERAL_BASE + 0x00000500
#define UART2_BASE CFG_PERIPHERAL_BASE + 0x00000500
#define UART3_BASE CFG_PERIPHERAL_BASE + 0x00000600
#define UART3_BASE CFG_PERIPHERAL_BASE + 0x00000600
#else
#define UART0_BASE CFG_PERIPHERAL_BASE + 0x00000200
#define UART1_BASE CFG_PERIPHERAL_BASE + 0x00000300
#endif
#if defined(CONFIG_440SP) || defined(CONFIG_440SPE)
#define UART2_BASE CFG_PERIPHERAL_BASE + 0x00000600
#endif
#if defined(CONFIG_440GP)
#define CR0_MASK 0x3fff0000
#define CR0_EXTCLK_ENA 0x00600000
#define CR0_UDIV_POS 16
#define UDIV_SUBTRACT 1
#define UART0_SDR cntrl0
#define MFREG(a, d) d = mfdcr(a)
#define MTREG(a, d) mtdcr(a, d)
#else
/* #if defined(CONFIG_440GP) */
/* all other 440 PPC's access clock divider via sdr register */
#define CR0_MASK 0xdfffffff
#define CR0_MASK 0xdfffffff
#define CR0_EXTCLK_ENA 0x00800000
#define CR0_EXTCLK_ENA 0x00800000
#define CR0_UDIV_POS 0
#define CR0_UDIV_POS 0
#define UDIV_SUBTRACT 0
#define UDIV_SUBTRACT 0
#define UART0_SDR sdr_uart0
#define UART0_SDR sdr_uart0
#define UART1_SDR sdr_uart1
#define UART1_SDR sdr_uart1
#if defined(CONFIG_440EP) || defined(CONFIG_440EPx) || \
defined(CONFIG_440GR) || defined(CONFIG_440GRx) || \
defined(CONFIG_440SP) || defined(CONFIG_440SPe)
#define UART2_SDR sdr_uart2
#define UART2_SDR sdr_uart2
#endif
#if defined(CONFIG_440EP) || defined(CONFIG_440EPx) || \
defined(CONFIG_440GR) || defined(CONFIG_440GRx)
#define UART3_SDR sdr_uart3
#define UART3_SDR sdr_uart3
#endif
#define MFREG(a, d) mfsdr(a, d)
#define MFREG(a, d) mfsdr(a, d)
#define MTREG(a, d) mtsdr(a, d)
#define MTREG(a, d) mtsdr(a, d)
#endif
/* #if defined(CONFIG_440GP) */
#elif defined(CONFIG_405EP) || defined(CONFIG_405EZ)
#define UART0_BASE 0xef600300
#define UART1_BASE 0xef600400
#define UCR0_MASK 0x0000007f
#define UCR1_MASK 0x00007f00
#define UCR0_UDIV_POS 0
#define UCR1_UDIV_POS 8
#define UDIV_MAX 127
#else
/* CONFIG_405GP || CONFIG_405CR */
#define UART0_BASE 0xef600300
#define UART1_BASE 0xef600400
#define CR0_MASK 0x00001fff
#define CR0_EXTCLK_ENA 0x000000c0
#define CR0_UDIV_POS 1
#define UDIV_MAX 32
#endif
#define UART_RBR 0x00
#define UART_RBR 0x00
#define UART_THR 0x00
#define UART_THR 0x00
...
@@ -71,8 +124,8 @@
...
@@ -71,8 +124,8 @@
#define UART_DLM 0x01
#define UART_DLM 0x01
/*
/*
Line Status Register.
*
Line Status Register.
*/
*/
#define asyncLSRDataReady1 0x01
#define asyncLSRDataReady1 0x01
#define asyncLSROverrunError1 0x02
#define asyncLSROverrunError1 0x02
#define asyncLSRParityError1 0x04
#define asyncLSRParityError1 0x04
...
@@ -84,6 +137,7 @@
...
@@ -84,6 +137,7 @@
DECLARE_GLOBAL_DATA_PTR
;
DECLARE_GLOBAL_DATA_PTR
;
#if defined(CONFIG_440)
static
int
uart_post_init
(
unsigned
long
dev_base
)
static
int
uart_post_init
(
unsigned
long
dev_base
)
{
{
unsigned
long
reg
;
unsigned
long
reg
;
...
@@ -147,6 +201,77 @@ static int uart_post_init (unsigned long dev_base)
...
@@ -147,6 +201,77 @@ static int uart_post_init (unsigned long dev_base)
return
0
;
return
0
;
}
}
#else
/* CONFIG_440 */
static
int
uart_post_init
(
unsigned
long
dev_base
)
{
unsigned
long
reg
;
unsigned
long
tmp
;
unsigned
long
clk
;
unsigned
long
udiv
;
unsigned
short
bdiv
;
volatile
char
val
;
int
i
;
for
(
i
=
0
;
i
<
3500
;
i
++
)
{
if
(
in8
(
dev_base
+
UART_LSR
)
&
asyncLSRTxHoldEmpty1
)
break
;
udelay
(
100
);
}
#if defined(CONFIG_405EZ)
serial_divs
(
gd
->
baudrate
,
&
udiv
,
&
bdiv
);
clk
=
tmp
=
reg
=
0
;
#else
#ifdef CONFIG_405EP
reg
=
mfdcr
(
cpc0_ucr
)
&
~
(
UCR0_MASK
|
UCR1_MASK
);
clk
=
gd
->
cpu_clk
;
tmp
=
CFG_BASE_BAUD
*
16
;
udiv
=
(
clk
+
tmp
/
2
)
/
tmp
;
if
(
udiv
>
UDIV_MAX
)
/* max. n bits for udiv */
udiv
=
UDIV_MAX
;
reg
|=
(
udiv
)
<<
UCR0_UDIV_POS
;
/* set the UART divisor */
reg
|=
(
udiv
)
<<
UCR1_UDIV_POS
;
/* set the UART divisor */
mtdcr
(
cpc0_ucr
,
reg
);
#else
/* CONFIG_405EP */
reg
=
mfdcr
(
cntrl0
)
&
~
CR0_MASK
;
#ifdef CFG_EXT_SERIAL_CLOCK
clk
=
CFG_EXT_SERIAL_CLOCK
;
udiv
=
1
;
reg
|=
CR0_EXTCLK_ENA
;
#else
clk
=
gd
->
cpu_clk
;
#ifdef CFG_405_UART_ERRATA_59
udiv
=
31
;
/* Errata 59: stuck at 31 */
#else
tmp
=
CFG_BASE_BAUD
*
16
;
udiv
=
(
clk
+
tmp
/
2
)
/
tmp
;
if
(
udiv
>
UDIV_MAX
)
/* max. n bits for udiv */
udiv
=
UDIV_MAX
;
#endif
#endif
reg
|=
(
udiv
-
1
)
<<
CR0_UDIV_POS
;
/* set the UART divisor */
mtdcr
(
cntrl0
,
reg
);
#endif
/* CONFIG_405EP */
tmp
=
gd
->
baudrate
*
udiv
*
16
;
bdiv
=
(
clk
+
tmp
/
2
)
/
tmp
;
#endif
/* CONFIG_405EZ */
out8
(
dev_base
+
UART_LCR
,
0x80
);
/* set DLAB bit */
out8
(
dev_base
+
UART_DLL
,
bdiv
);
/* set baudrate divisor */
out8
(
dev_base
+
UART_DLM
,
bdiv
>>
8
);
/* set baudrate divisor */
out8
(
dev_base
+
UART_LCR
,
0x03
);
/* clear DLAB; set 8 bits, no parity */
out8
(
dev_base
+
UART_FCR
,
0x00
);
/* disable FIFO */
out8
(
dev_base
+
UART_MCR
,
0x10
);
/* enable loopback mode */
val
=
in8
(
dev_base
+
UART_LSR
);
/* clear line status */
val
=
in8
(
dev_base
+
UART_RBR
);
/* read receive buffer */
out8
(
dev_base
+
UART_SCR
,
0x00
);
/* set scratchpad */
out8
(
dev_base
+
UART_IER
,
0x00
);
/* set interrupt enable reg */
return
(
0
);
}
#endif
/* CONFIG_440 */
static
void
uart_post_putc
(
unsigned
long
dev_base
,
char
c
)
static
void
uart_post_putc
(
unsigned
long
dev_base
,
char
c
)
{
{
int
i
;
int
i
;
...
@@ -198,9 +323,7 @@ done:
...
@@ -198,9 +323,7 @@ done:
int
uart_post_test
(
int
flags
)
int
uart_post_test
(
int
flags
)
{
{
int
i
,
res
=
0
;
int
i
,
res
=
0
;
static
unsigned
long
base
[]
=
{
static
unsigned
long
base
[]
=
CFG_POST_UART_TABLE
;
UART0_BASE
,
UART1_BASE
,
UART2_BASE
,
UART3_BASE
};
for
(
i
=
0
;
i
<
sizeof
(
base
)
/
sizeof
(
base
[
0
]);
i
++
)
{
for
(
i
=
0
;
i
<
sizeof
(
base
)
/
sizeof
(
base
[
0
]);
i
++
)
{
if
(
test_ctlr
(
base
[
i
],
i
))
if
(
test_ctlr
(
base
[
i
],
i
))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment