Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
U
uboot-imx
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
8
Issues
8
List
Boards
Labels
Milestones
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Librem5
uboot-imx
Commits
b7e042d6
Commit
b7e042d6
authored
Jul 12, 2016
by
Ladislav Michl
Committed by
Tom Rini
Jul 22, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
igep00x0: move sysinfo into C file
Signed-off-by:
Ladislav Michl
<
ladis@linux-mips.org
>
parent
af324436
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
18 deletions
+18
-18
board/isee/igep00x0/igep00x0.c
board/isee/igep00x0/igep00x0.c
+18
-0
board/isee/igep00x0/igep00x0.h
board/isee/igep00x0/igep00x0.h
+0
-18
No files found.
board/isee/igep00x0/igep00x0.c
View file @
b7e042d6
...
...
@@ -21,6 +21,24 @@
DECLARE_GLOBAL_DATA_PTR
;
const
omap3_sysinfo
sysinfo
=
{
DDR_STACKED
,
#if (CONFIG_MACH_TYPE == MACH_TYPE_IGEP0020)
"IGEPv2"
,
#endif
#if (CONFIG_MACH_TYPE == MACH_TYPE_IGEP0030)
"IGEP COM MODULE/ELECTRON"
,
#endif
#if (CONFIG_MACH_TYPE == MACH_TYPE_IGEP0032)
"IGEP COM PROTON"
,
#endif
#if defined(CONFIG_ENV_IS_IN_ONENAND)
"ONENAND"
,
#else
"NAND"
,
#endif
};
#if defined(CONFIG_CMD_NET)
/* GPMC definitions for LAN9221 chips */
static
const
u32
gpmc_lan_config
[]
=
{
...
...
board/isee/igep00x0/igep00x0.h
View file @
b7e042d6
...
...
@@ -7,24 +7,6 @@
#ifndef _IGEP00X0_H_
#define _IGEP00X0_H_
const
omap3_sysinfo
sysinfo
=
{
DDR_STACKED
,
#if (CONFIG_MACH_TYPE == MACH_TYPE_IGEP0020)
"IGEPv2"
,
#endif
#if (CONFIG_MACH_TYPE == MACH_TYPE_IGEP0030)
"IGEP COM MODULE/ELECTRON"
,
#endif
#if (CONFIG_MACH_TYPE == MACH_TYPE_IGEP0032)
"IGEP COM PROTON"
,
#endif
#if defined(CONFIG_ENV_IS_IN_ONENAND)
"ONENAND"
,
#else
"NAND"
,
#endif
};
static
void
setup_net_chip
(
void
);
/*
...
...
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