Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Librem5
uboot-imx
Commits
7acd6c21
Commit
7acd6c21
authored
Dec 16, 2004
by
stroese
Browse files
CPCI440 board update
parent
c491b442
Changes
4
Hide whitespace changes
Inline
Side-by-side
board/esd/cpci440/Makefile
View file @
7acd6c21
...
...
@@ -25,7 +25,7 @@ include $(TOPDIR)/config.mk
LIB
=
lib
$(BOARD)
.a
OBJS
=
$(BOARD)
.o strataflash.o
OBJS
=
$(BOARD)
.o strataflash.o
../common/misc.o
SOBJS
=
init.o
$(LIB)
:
$(OBJS) $(SOBJS)
...
...
board/esd/cpci440/config.mk
View file @
7acd6c21
...
...
@@ -31,6 +31,7 @@ ifeq ($(ramsym),1)
TEXT_BASE
=
0x07FD0000
else
TEXT_BASE
=
0xFFFC0000
#TEXT_BASE = 0x01fc0000
endif
PLATFORM_CPPFLAGS
+=
-DCONFIG_440
=
1
...
...
board/esd/cpci440/cpci440.c
View file @
7acd6c21
...
...
@@ -26,6 +26,9 @@
#include <asm/processor.h>
extern
void
lxt971_no_sleep
(
void
);
long
int
fixed_sdram
(
void
);
int
board_early_init_f
(
void
)
...
...
@@ -77,6 +80,12 @@ int checkboard (void)
printf
(
"
\t
PLB: %lu MHz
\n
"
,
sysinfo
.
freqPLB
/
1000000
);
printf
(
"
\t
OPB: %lu MHz
\n
"
,
sysinfo
.
freqOPB
/
1000000
);
printf
(
"
\t
EPB: %lu MHz
\n
"
,
sysinfo
.
freqEPB
/
1000000
);
/*
* Disable sleep mode in LXT971
*/
lxt971_no_sleep
();
return
(
0
);
}
...
...
@@ -101,6 +110,7 @@ long int fixed_sdram( void )
{
uint
reg
;
#if 1
/* test-only */
/*--------------------------------------------------------------------
* Setup some default
*------------------------------------------------------------------*/
...
...
@@ -136,4 +146,7 @@ long int fixed_sdram( void )
}
return
(
64
*
1024
*
1024
);
/* 64 MB */
#else
return
(
32
*
1024
*
1024
);
/* 64 MB */
#endif
}
board/esd/cpci440/u-boot.lds
View file @
7acd6c21
...
...
@@ -28,11 +28,13 @@ SEARCH_DIR(/lib); SEARCH_DIR(/usr/lib); SEARCH_DIR(/usr/local/lib); SEARCH_DIR(/
SECTIONS
{
.resetvec 0xFFFFFFFC :
/* .resetvec 0x01FFFFFC :*/
{
*(.resetvec)
} = 0xffff
.bootpg 0xFFFFF000 :
/* .bootpg 0x01FFF000 :*/
{
cpu/ppc4xx/start.o (.bootpg)
} = 0xffff
...
...
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