]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
powerpc/p2041: fixup portal config info
authorHaiying Wang <Haiying.Wang@freescale.com>
Wed, 28 Sep 2011 14:51:13 +0000 (10:51 -0400)
committerKumar Gala <galak@kernel.crashing.org>
Fri, 14 Oct 2011 04:38:10 +0000 (23:38 -0500)
P2041 has 10 qman portals, we need to configure all of them:
* As there are only 4 physical cores sdest can only be 0 to 3
* 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/p2041_ids.c

index 112ea56cdfb9619f774b251fc01947af020843ae..8d254961e2f3ee78cba7300221116a32d5484091 100644 (file)
 #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, 2),
+       SET_QP_INFO(7, 8, 4, 3),
+       SET_QP_INFO(9, 10, 5, 0),
+       SET_QP_INFO(11, 12, 1, 1),
+       SET_QP_INFO(13, 14, 2, 2),
+       SET_QP_INFO(15, 16, 3, 3),
+       SET_QP_INFO(17, 18, 4, 0), /* for now sdest to 0 */
+       SET_QP_INFO(19, 20, 5, 0), /* for now sdest to 0 */
 };
 #endif