]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
drivers/qe: Change QE RISC ALLOCATION to support 4 RISCs
authorHaiying Wang <Haiying.Wang@freescale.com>
Thu, 21 May 2009 19:34:14 +0000 (15:34 -0400)
committerKumar Gala <galak@kernel.crashing.org>
Fri, 12 Jun 2009 22:16:59 +0000 (17:16 -0500)
Also define the QE_RISC_ALLOCATION_RISCs to MACROs instead of using enum, and
define MAX_QE_RISC for QE based silicons.

Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
Acked-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
drivers/qe/qe.c
drivers/qe/qe.h
drivers/qe/uec.c
drivers/qe/uec.h
include/asm-ppc/immap_qe.h

index 918bfa748e0932cc73c96d164f3f1cfe342b10c3..f5096228d081cc3c965a0f9d58aec65b3e772b87 100644 (file)
@@ -258,9 +258,6 @@ int qe_set_mii_clk_src(int ucc_num)
        return 0;
 }
 
-/* The maximum number of RISCs we support */
-#define MAX_QE_RISC     2
-
 /* Firmware information stored here for qe_get_firmware_info() */
 static struct qe_firmware_info qe_firmware_info;
 
index d78edba23e93f342b2c9c53f4920a15a8650e22e..2128f5697e9bf98d9f29fec848a6867ddf695dc9 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2006 Freescale Semiconductor, Inc.
+ * Copyright (C) 2006-2009 Freescale Semiconductor, Inc.
  *
  * Dave Liu <daveliu@freescale.com>
  * based on source code of Shlomi Gridish
@@ -46,11 +46,16 @@ typedef struct qe_snum {
 
 /* QE RISC allocation
 */
-typedef enum qe_risc_allocation {
-       QE_RISC_ALLOCATION_RISC1                = 1,  /* RISC 1 */
-       QE_RISC_ALLOCATION_RISC2                = 2,  /* RISC 2 */
-       QE_RISC_ALLOCATION_RISC1_AND_RISC2      = 3   /* RISC 1 or RISC 2 */
-} qe_risc_allocation_e;
+#define        QE_RISC_ALLOCATION_RISC1        0x1  /* RISC 1 */
+#define        QE_RISC_ALLOCATION_RISC2        0x2  /* RISC 2 */
+#define        QE_RISC_ALLOCATION_RISC3        0x4  /* RISC 3 */
+#define        QE_RISC_ALLOCATION_RISC4        0x8  /* RISC 4 */
+#define        QE_RISC_ALLOCATION_RISC1_AND_RISC2      (QE_RISC_ALLOCATION_RISC1 | \
+                                                QE_RISC_ALLOCATION_RISC2)
+#define        QE_RISC_ALLOCATION_FOUR_RISCS   (QE_RISC_ALLOCATION_RISC1 | \
+                                        QE_RISC_ALLOCATION_RISC2 | \
+                                        QE_RISC_ALLOCATION_RISC3 | \
+                                        QE_RISC_ALLOCATION_RISC4)
 
 /* QE CECR commands for UCC fast.
 */
index e67c0bab64449b062273b749a7de15f6d3782447..d02c8c98e8549813a8d7af9870dc5017aff0c088 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2006 Freescale Semiconductor, Inc.
+ * Copyright (C) 2006-2009 Freescale Semiconductor, Inc.
  *
  * Dave Liu <daveliu@freescale.com>
  *
@@ -46,8 +46,13 @@ static uec_info_t eth1_uec_info = {
        .num_threads_tx         = UEC_NUM_OF_THREADS_4,
        .num_threads_rx         = UEC_NUM_OF_THREADS_4,
 #endif
+#if (MAX_QE_RISC == 4)
+       .risc_tx                        = QE_RISC_ALLOCATION_FOUR_RISCS,
+       .risc_rx                        = QE_RISC_ALLOCATION_FOUR_RISCS,
+#else
        .risc_tx                        = QE_RISC_ALLOCATION_RISC1_AND_RISC2,
        .risc_rx                        = QE_RISC_ALLOCATION_RISC1_AND_RISC2,
+#endif
        .tx_bd_ring_len         = 16,
        .rx_bd_ring_len         = 16,
        .phy_address            = CONFIG_SYS_UEC1_PHY_ADDR,
@@ -69,8 +74,13 @@ static uec_info_t eth2_uec_info = {
        .num_threads_tx         = UEC_NUM_OF_THREADS_4,
        .num_threads_rx         = UEC_NUM_OF_THREADS_4,
 #endif
+#if (MAX_QE_RISC == 4)
+       .risc_tx                        = QE_RISC_ALLOCATION_FOUR_RISCS,
+       .risc_rx                        = QE_RISC_ALLOCATION_FOUR_RISCS,
+#else
        .risc_tx                        = QE_RISC_ALLOCATION_RISC1_AND_RISC2,
        .risc_rx                        = QE_RISC_ALLOCATION_RISC1_AND_RISC2,
+#endif
        .tx_bd_ring_len         = 16,
        .rx_bd_ring_len         = 16,
        .phy_address            = CONFIG_SYS_UEC2_PHY_ADDR,
@@ -92,8 +102,13 @@ static uec_info_t eth3_uec_info = {
        .num_threads_tx         = UEC_NUM_OF_THREADS_4,
        .num_threads_rx         = UEC_NUM_OF_THREADS_4,
 #endif
+#if (MAX_QE_RISC == 4)
+       .risc_tx                        = QE_RISC_ALLOCATION_FOUR_RISCS,
+       .risc_rx                        = QE_RISC_ALLOCATION_FOUR_RISCS,
+#else
        .risc_tx                        = QE_RISC_ALLOCATION_RISC1_AND_RISC2,
        .risc_rx                        = QE_RISC_ALLOCATION_RISC1_AND_RISC2,
+#endif
        .tx_bd_ring_len         = 16,
        .rx_bd_ring_len         = 16,
        .phy_address            = CONFIG_SYS_UEC3_PHY_ADDR,
@@ -115,8 +130,13 @@ static uec_info_t eth4_uec_info = {
        .num_threads_tx         = UEC_NUM_OF_THREADS_4,
        .num_threads_rx         = UEC_NUM_OF_THREADS_4,
 #endif
+#if (MAX_QE_RISC == 4)
+       .risc_tx                        = QE_RISC_ALLOCATION_FOUR_RISCS,
+       .risc_rx                        = QE_RISC_ALLOCATION_FOUR_RISCS,
+#else
        .risc_tx                        = QE_RISC_ALLOCATION_RISC1_AND_RISC2,
        .risc_rx                        = QE_RISC_ALLOCATION_RISC1_AND_RISC2,
+#endif
        .tx_bd_ring_len         = 16,
        .rx_bd_ring_len         = 16,
        .phy_address            = CONFIG_SYS_UEC4_PHY_ADDR,
@@ -138,8 +158,13 @@ static uec_info_t eth5_uec_info = {
        .num_threads_tx         = UEC_NUM_OF_THREADS_4,
        .num_threads_rx         = UEC_NUM_OF_THREADS_4,
 #endif
+#if (MAX_QE_RISC == 4)
+       .risc_tx                        = QE_RISC_ALLOCATION_FOUR_RISCS,
+       .risc_rx                        = QE_RISC_ALLOCATION_FOUR_RISCS,
+#else
        .risc_tx                        = QE_RISC_ALLOCATION_RISC1_AND_RISC2,
        .risc_rx                        = QE_RISC_ALLOCATION_RISC1_AND_RISC2,
+#endif
        .tx_bd_ring_len         = 16,
        .rx_bd_ring_len         = 16,
        .phy_address            = CONFIG_SYS_UEC5_PHY_ADDR,
@@ -161,8 +186,13 @@ static uec_info_t eth6_uec_info = {
        .num_threads_tx         = UEC_NUM_OF_THREADS_4,
        .num_threads_rx         = UEC_NUM_OF_THREADS_4,
 #endif
+#if (MAX_QE_RISC == 4)
+       .risc_tx                        = QE_RISC_ALLOCATION_FOUR_RISCS,
+       .risc_rx                        = QE_RISC_ALLOCATION_FOUR_RISCS,
+#else
        .risc_tx                        = QE_RISC_ALLOCATION_RISC1_AND_RISC2,
        .risc_rx                        = QE_RISC_ALLOCATION_RISC1_AND_RISC2,
+#endif
        .tx_bd_ring_len         = 16,
        .rx_bd_ring_len         = 16,
        .phy_address            = CONFIG_SYS_UEC6_PHY_ADDR,
index 414982cdec9ae0d5f67739541710484c4fbfb1cd..4fd10962c92172979559a5cc0ff1b8702bf9a211 100644 (file)
@@ -654,8 +654,8 @@ typedef struct uec_info {
        ucc_fast_info_t                 uf_info;
        uec_num_of_threads_e            num_threads_tx;
        uec_num_of_threads_e            num_threads_rx;
-       qe_risc_allocation_e            risc_tx;
-       qe_risc_allocation_e            risc_rx;
+       unsigned int                    risc_tx;
+       unsigned int                    risc_rx;
        u16                             rx_bd_ring_len;
        u16                             tx_bd_ring_len;
        u8                              phy_address;
index 44c0c0aa12ac244780429376abbaeaa1e57473ef..41e4583210f2c7c2c846030352a5a7caa8c19d92 100644 (file)
@@ -607,4 +607,12 @@ extern qe_map_t *qe_immr;
 #define QE_MURAM_SIZE          0x4000UL
 #endif
 
+#if defined(CONFIG_MPC8323)
+#define MAX_QE_RISC     1
+#elif defined(CONFIG_MPC8569)
+#define MAX_QE_RISC     4
+#else
+#define MAX_QE_RISC    2
+#endif
+
 #endif                         /* __IMMAP_QE_H__ */