Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ezynq
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Elphel
ezynq
Commits
182c3a98
Commit
182c3a98
authored
Sep 24, 2013
by
Oleg Dzhimiev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
switched to arch_cpu_init function from lowlevel_init
parent
bb274fcf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
4 deletions
+13
-4
cpu.c
u-boot-tree/arch/arm/cpu/armv7/zynq/cpu.c
+13
-4
No files found.
u-boot-tree/arch/arm/cpu/armv7/zynq/cpu.c
View file @
182c3a98
...
...
@@ -24,17 +24,23 @@
#include <asm/io.h>
#include <asm/arch/sys_proto.h>
#include <asm/arch/hardware.h>
#ifndef CONFIG_EZYNQ
void
lowlevel_init
(
void
)
{
}
#ifndef CONFIG_EZYNQ
int
arch_cpu_init
(
void
)
{
zynq_slcr_unlock
();
/* remap DDR to zero, FILTERSTART */
writel
(
0
,
&
scu_base
->
filter_start
);
/* Device config APB, unlock the PCAP */
writel
(
0x757BDF0D
,
&
devcfg_base
->
unlock
);
writel
(
0xFFFFFFFF
,
&
devcfg_base
->
rom_shadow
);
#if (CONFIG_SYS_SDRAM_BASE == 0)
/* remap DDR to zero, FILTERSTART */
writel
(
0
,
&
scu_base
->
filter_start
);
/* OCM_CFG, Mask out the ROM, map ram into upper addresses */
writel
(
0x1F
,
&
slcr_base
->
ocm_cfg
);
/* FPGA_RST_CTRL, clear resets on AXI fabric ports */
...
...
@@ -45,8 +51,11 @@ void lowlevel_init(void)
writel
(
0x0
,
&
slcr_base
->
ddr_urgent_sel
);
/* Urgent write, ports S2/S3 */
writel
(
0xC
,
&
slcr_base
->
ddr_urgent
);
#endif
zynq_slcr_lock
();
return
0
;
}
#endif
void
reset_cpu
(
ulong
addr
)
...
...
@@ -62,4 +71,4 @@ void enable_caches(void)
/* Enable D-cache. I-cache is already enabled in start.S */
dcache_enable
();
}
#endif
#endif
\ No newline at end of file
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