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
f50cc09b
Commit
f50cc09b
authored
20 years ago
by
Wolfgang Denk
Browse files
Options
Downloads
Patches
Plain Diff
Patch by Steven Scholz, 13 March 2005:
fix cache enabling for AT91RM9200
parent
ea287deb
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG
+3
-0
3 additions, 0 deletions
CHANGELOG
cpu/at91rm9200/start.S
+14
-15
14 additions, 15 deletions
cpu/at91rm9200/start.S
with
17 additions
and
15 deletions
CHANGELOG
+
3
−
0
View file @
f50cc09b
...
...
@@ -2,6 +2,9 @@
Changes for U-Boot 1.1.3:
======================================================================
* Patch by Steven Scholz, 13 March 2005:
fix cache enabling for AT91RM9200
* Patch by Masami Komiya, 30 Mar 2005:
add SNTP support and expand time server and time offset fields of
DHCP support. See doc/README.SNTP
...
...
This diff is collapsed.
Click to expand it.
cpu/at91rm9200/start.S
+
14
−
15
View file @
f50cc09b
...
...
@@ -127,21 +127,20 @@ reset:
*
is
why
it
's called lowlevelinit
*/
bl
lowlevelinit
/*
in
lowlevel
.
S
*/
bl
icache_enable
;
/*------------------------------------
Read
/
modify
/
write
CP15
control
register
-------------------------------------
read
cp15
control
register
(
cp15
r1
)
in
r0
------------------------------------*/
mrc
p15
,
0
,
r0
,
c1
,
c0
,
0
/
*
Reset
bit
:
Little
Endian
end
fast
bus
mode
*/
ldr
r3
,
=
0xC0000080
/
*
Set
bit
:
Asynchronous
clock
mode
,
Not
Fast
Bus
*/
ldr
r4
,
=
0xC0000000
bic
r0
,
r0
,
r3
orr
r0
,
r0
,
r4
/
*
write
r0
in
cp15
control
register
(
cp15
r1
)
*/
mcr
p15
,
0
,
r0
,
c1
,
c0
,
0
/
*
*
Read
/
modify
/
write
CP15
control
register
*
disable
MMU
,
enable
I
-
Cache
,
select
Asychronous
Clocking
Mode
*/
mrc
p15
,
0
,
r0
,
c1
,
c0
,
0
@
read
cp15
control
register
(
cp15
r1
)
in
r0
bic
r0
,
r0
,
#
0x00002300
@
clear
bits
13
,
9
:
8
(--
V
-
--
RS
)
bic
r0
,
r0
,
#
0x0000008f
@
clear
bits
7
,
3
:
0
(
B
---
WCAM
)
orr
r0
,
r0
,
#
0x00000002
@
set
bit
2
(
A
)
Align
orr
r0
,
r0
,
#
0x00000004
@
set
bit
3
(
C
)
D
-
Cache
orr
r0
,
r0
,
#
0x00001000
@
set
bit
12
(
I
)
I
-
Cache
orr
r0
,
r0
,
#
0xC0000000
@
set
bits
31
:
30
(
iA
,
nF
)
mcr
p15
,
0
,
r0
,
c1
,
c0
,
0
@
write
r0
in
cp15
control
register
(
cp15
r1
)
#endif /* CONFIG_BOOTBINFUNC */
/
*
*
relocate
exeception
table
...
...
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