Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
48ec2b53
Commit
48ec2b53
authored
Jun 19, 2009
by
Russell King
Committed by
Russell King
Jun 19, 2009
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'for-rmk' of
git://git.marvell.com/orion
into devel
parents
feb97c36
5587931c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
3 deletions
+19
-3
arch/arm/boot/compressed/head.S
arch/arm/boot/compressed/head.S
+9
-0
arch/arm/mach-orion5x/addr-map.c
arch/arm/mach-orion5x/addr-map.c
+1
-1
arch/arm/mach-orion5x/common.c
arch/arm/mach-orion5x/common.c
+9
-1
arch/arm/mach-orion5x/common.h
arch/arm/mach-orion5x/common.h
+0
-1
No files found.
arch/arm/boot/compressed/head.S
View file @
48ec2b53
...
...
@@ -674,6 +674,15 @@ proc_types:
b
__armv4_mmu_cache_off
b
__armv5tej_mmu_cache_flush
#ifdef CONFIG_CPU_FEROCEON_OLD_ID
/
*
this
conflicts
with
the
standard
ARMv5TE
entry
*/
.
long
0x41009260
@
Old
Feroceon
.
long
0xff00fff0
b
__armv4_mmu_cache_on
b
__armv4_mmu_cache_off
b
__armv5tej_mmu_cache_flush
#endif
.
word
0x66015261
@
FA526
.
word
0xff01fff1
b
__fa526_cache_on
...
...
arch/arm/mach-orion5x/addr-map.c
View file @
48ec2b53
...
...
@@ -200,6 +200,6 @@ void __init orion5x_setup_pcie_wa_win(u32 base, u32 size)
int
__init
orion5x_setup_sram_win
(
void
)
{
return
setup_cpu_win
(
win_alloc_count
,
ORION5X_SRAM_PHYS_BASE
,
return
setup_cpu_win
(
win_alloc_count
++
,
ORION5X_SRAM_PHYS_BASE
,
ORION5X_SRAM_SIZE
,
TARGET_SRAM
,
ATTR_SRAM
,
-
1
);
}
arch/arm/mach-orion5x/common.c
View file @
48ec2b53
...
...
@@ -562,7 +562,7 @@ static struct platform_device orion5x_crypto_device = {
.
resource
=
orion5x_crypto_res
,
};
int
__init
orion5x_crypto_init
(
void
)
static
int
__init
orion5x_crypto_init
(
void
)
{
int
ret
;
...
...
@@ -696,6 +696,14 @@ void __init orion5x_init(void)
disable_hlt
();
}
/*
* The 5082/5181l/5182/6082/6082l/6183 have crypto
* while 5180n/5181/5281 don't have crypto.
*/
if
((
dev
==
MV88F5181_DEV_ID
&&
rev
>=
MV88F5181L_REV_A0
)
||
dev
==
MV88F5182_DEV_ID
||
dev
==
MV88F6183_DEV_ID
)
orion5x_crypto_init
();
/*
* Register watchdog driver
*/
...
...
arch/arm/mach-orion5x/common.h
View file @
48ec2b53
...
...
@@ -38,7 +38,6 @@ void orion5x_spi_init(void);
void
orion5x_uart0_init
(
void
);
void
orion5x_uart1_init
(
void
);
void
orion5x_xor_init
(
void
);
int
orion5x_crypto_init
(
void
);
/*
* PCIe/PCI functions.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment