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
1b77ca8a
Commit
1b77ca8a
authored
14 years ago
by
Kumar Gala
Browse files
Options
Downloads
Patches
Plain Diff
powerpc/86xx: Convert MPC8641HPCN to use common SRIO init code
Signed-off-by:
Kumar Gala
<
galak@kernel.crashing.org
>
parent
56551362
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
board/freescale/mpc8641hpcn/law.c
+1
-4
1 addition, 4 deletions
board/freescale/mpc8641hpcn/law.c
include/configs/MPC8641HPCN.h
+13
-17
13 additions, 17 deletions
include/configs/MPC8641HPCN.h
with
14 additions
and
21 deletions
board/freescale/mpc8641hpcn/law.c
+
1
−
4
View file @
1b77ca8a
/*
* Copyright 2008,2010 Freescale Semiconductor, Inc.
* Copyright 2008,2010
-2011
Freescale Semiconductor, Inc.
*
* (C) Copyright 2000
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
...
...
@@ -52,9 +52,6 @@
struct
law_entry
law_table
[]
=
{
#if !defined(CONFIG_SPD_EEPROM)
SET_LAW
(
CONFIG_SYS_DDR_SDRAM_BASE
,
LAW_SIZE_256M
,
LAW_TRGT_IF_DDR_1
),
#endif
#if defined(CONFIG_RIO)
SET_LAW
(
CONFIG_SYS_RIO_MEM_PHYS
,
LAW_SIZE_512M
,
LAW_TRGT_IF_RIO
),
#endif
SET_LAW
(
PIXIS_BASE_PHYS
,
LAW_SIZE_64K
,
LAW_TRGT_IF_LBC
),
SET_LAW
(
CONFIG_SYS_FLASH_BASE_PHYS
,
LAW_SIZE_8M
,
LAW_TRGT_IF_LBC
),
...
...
This diff is collapsed.
Click to expand it.
include/configs/MPC8641HPCN.h
+
13
−
17
View file @
1b77ca8a
/*
* Copyright 2006, 2010 Freescale Semiconductor.
* Copyright 2006, 2010
-2011
Freescale Semiconductor.
*
* Srikanth Srinivasan (srikanth.srinivasan@freescale.com)
*
...
...
@@ -57,18 +57,14 @@
*/
#define CONFIG_SYS_SCRATCH_VA 0xe0000000
/*
* set this to enable Rapid IO. PCI and RIO are mutually exclusive
*/
/*#define CONFIG_RIO 1*/
#define CONFIG_SYS_SRIO
#define CONFIG_SRIO1
/* SRIO port 1 */
#ifndef CONFIG_RIO
/* RIO/PCI are mutually exclusive */
#define CONFIG_PCI 1
/* Enable PCI/PCIE */
#define CONFIG_PCIE1 1
/* PCIE controler 1 (ULI bridge) */
#define CONFIG_PCIE2 1
/* PCIE controler 2 (slot) */
#define CONFIG_FSL_PCI_INIT 1
/* Use common FSL init code */
#define CONFIG_SYS_PCI_64BIT 1
/* enable 64-bit PCI resources */
#endif
#define CONFIG_FSL_LAW 1
/* Use common FSL law init code */
#define CONFIG_TSEC_ENET
/* tsec ethernet support */
...
...
@@ -319,13 +315,13 @@ extern unsigned long get_board_sys_clk(unsigned long dummy);
/*
* RapidIO MMU
*/
#define CONFIG_SYS_RIO_MEM_BASE 0x80000000
/* base address */
#define CONFIG_SYS_
S
RIO
1
_MEM_BASE 0x80000000
/* base address */
#ifdef CONFIG_PHYS_64BIT
#define CONFIG_SYS_RIO_MEM_PHYS 0x0000000c00000000ULL
#define CONFIG_SYS_
S
RIO
1
_MEM_PHYS 0x0000000c00000000ULL
#else
#define CONFIG_SYS_RIO_MEM_PHYS CONFIG_SYS_RIO_MEM_BASE
#define CONFIG_SYS_
S
RIO
1
_MEM_PHYS CONFIG_SYS_
S
RIO
1
_MEM_BASE
#endif
#define CONFIG_SYS_RIO_MEM_SIZE 0x20000000
/* 128M */
#define CONFIG_SYS_
S
RIO
1
_MEM_SIZE 0x20000000
/* 128M */
/*
* General PCI
...
...
@@ -514,18 +510,18 @@ extern unsigned long get_board_sys_clk(unsigned long dummy);
| BATL_PP_RW | BATL_CACHEINHIBIT)
#define CONFIG_SYS_IBAT2U CONFIG_SYS_DBAT2U
#else
/* CONFIG_RIO */
#define CONFIG_SYS_DBAT2L (BAT_PHYS_ADDR(CONFIG_SYS_RIO_MEM_PHYS) \
#define CONFIG_SYS_DBAT2L (BAT_PHYS_ADDR(CONFIG_SYS_
S
RIO
1
_MEM_PHYS) \
| BATL_PP_RW | BATL_CACHEINHIBIT | \
BATL_GUARDEDSTORAGE)
#define CONFIG_SYS_DBAT2U (CONFIG_SYS_RIO_MEM_BASE | BATU_BL_512M \
#define CONFIG_SYS_DBAT2U (CONFIG_SYS_
S
RIO
1
_MEM_BASE | BATU_BL_512M \
| BATU_VS | BATU_VP)
#define CONFIG_SYS_IBAT2L (BAT_PHYS_ADDR(CONFIG_SYS_RIO_MEM_PHYS) \
#define CONFIG_SYS_IBAT2L (BAT_PHYS_ADDR(CONFIG_SYS_
S
RIO
1
_MEM_PHYS) \
| BATL_PP_RW | BATL_CACHEINHIBIT)
#define CONFIG_SYS_DBAT2L (CONFIG_SYS_RIO_MEM_PHYS | BATL_PP_RW \
#define CONFIG_SYS_DBAT2L (CONFIG_SYS_
S
RIO
1
_MEM_PHYS | BATL_PP_RW \
| BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
#define CONFIG_SYS_DBAT2U (CONFIG_SYS_RIO_MEM_PHYS | BATU_BL_512M | BATU_VS | BATU_VP)
#define CONFIG_SYS_IBAT2L (CONFIG_SYS_RIO_MEM_PHYS | BATL_PP_RW | BATL_CACHEINHIBIT)
#define CONFIG_SYS_DBAT2U (CONFIG_SYS_
S
RIO
1
_MEM_PHYS | BATU_BL_512M | BATU_VS | BATU_VP)
#define CONFIG_SYS_IBAT2L (CONFIG_SYS_
S
RIO
1
_MEM_PHYS | BATL_PP_RW | BATL_CACHEINHIBIT)
#define CONFIG_SYS_IBAT2U CONFIG_SYS_DBAT2U
#endif
...
...
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