diff mbox

[U-Boot,1/3] powerpc/p5020: fixup portal config info

Message ID 1318455574-14963-1-git-send-email-galak@kernel.crashing.org
State Accepted
Commit 7c7bd635becc7d892e68c91173f7471d29f56abe
Delegated to: Kumar Gala
Headers show

Commit Message

Kumar Gala Oct. 12, 2011, 9:39 p.m. UTC
From: Haiying Wang <Haiying.Wang@freescale.com>

P5020 has 10 qman portals, we need to configure all of them:
* As there are only 2 physical cores sdest can only be 0 or 1
* We assign dqrr & frame data LIODNs for all portals so if they
  are utilized the proper mapping tables can be setup uniquely
  (PAMU stashing)
* We set Portal 6-10 to LIODN offsets 1-5 as the global LIODN
  assignments are tuned around an assumption of at most 5
  partitions.

Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
---
 arch/powerpc/cpu/mpc85xx/p5020_ids.c |   20 ++++++++++----------
 1 files changed, 10 insertions(+), 10 deletions(-)

Comments

Kumar Gala Oct. 14, 2011, 4:21 a.m. UTC | #1
On Oct 12, 2011, at 4:39 PM, Kumar Gala wrote:

> From: Haiying Wang <Haiying.Wang@freescale.com>
> 
> P5020 has 10 qman portals, we need to configure all of them:
> * As there are only 2 physical cores sdest can only be 0 or 1
> * We assign dqrr & frame data LIODNs for all portals so if they
>  are utilized the proper mapping tables can be setup uniquely
>  (PAMU stashing)
> * We set Portal 6-10 to LIODN offsets 1-5 as the global LIODN
>  assignments are tuned around an assumption of at most 5
>  partitions.
> 
> Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
> ---
> arch/powerpc/cpu/mpc85xx/p5020_ids.c |   20 ++++++++++----------
> 1 files changed, 10 insertions(+), 10 deletions(-)

applied

- k
diff mbox

Patch

diff --git a/arch/powerpc/cpu/mpc85xx/p5020_ids.c b/arch/powerpc/cpu/mpc85xx/p5020_ids.c
index 2911c13..4254dd5 100644
--- a/arch/powerpc/cpu/mpc85xx/p5020_ids.c
+++ b/arch/powerpc/cpu/mpc85xx/p5020_ids.c
@@ -27,16 +27,16 @@ 
 #ifdef CONFIG_SYS_DPAA_QBMAN
 struct qportal_info qp_info[CONFIG_SYS_QMAN_NUM_PORTALS] = {
 	/* dqrr liodn, frame data liodn, liodn off, sdest */
-	SET_QP_INFO( 1,  2,  1, 0),
-	SET_QP_INFO( 3,  4,  2, 1),
-	SET_QP_INFO( 5,  6,  3, 2),
-	SET_QP_INFO( 7,  8,  4, 3),
-	SET_QP_INFO( 9, 10,  5, 4),
-	SET_QP_INFO( 0,  0,  0, 5),
-	SET_QP_INFO( 0,  0,  0, 6),
-	SET_QP_INFO( 0,  0,  0, 7),
-	SET_QP_INFO( 0,  0,  0, 0), /* for now sdest to 0 */
-	SET_QP_INFO( 0,  0,  0, 0), /* for now sdest to 0 */
+	SET_QP_INFO(1, 2, 1, 0),
+	SET_QP_INFO(3, 4, 2, 1),
+	SET_QP_INFO(5, 6, 3, 0),
+	SET_QP_INFO(7, 8, 4, 1),
+	SET_QP_INFO(9, 10, 5, 0),
+	SET_QP_INFO(11, 12, 1, 1),
+	SET_QP_INFO(13, 14, 2, 0),
+	SET_QP_INFO(15, 16, 3, 1),
+	SET_QP_INFO(17, 18, 4, 0),
+	SET_QP_INFO(19, 20, 5, 1),
 };
 #endif