1 /* 2 * Copyright 2012 Freescale Semiconductor, Inc. 3 * 4 * See file CREDITS for list of people who contributed to this 5 * project. 6 * 7 * This program is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU General Public License as 9 * published by the Free Software Foundation; either version 2 of 10 * the License, or (at your option) any later version. 11 * 12 * This program is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with this program; if not, write to the Free Software 19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 20 * MA 02111-1307 USA 21 */ 22 23 #include <common.h> 24 #include <asm/fsl_portals.h> 25 #include <asm/fsl_liodn.h> 26 27 #ifdef CONFIG_SYS_DPAA_QBMAN 28 struct qportal_info qp_info[CONFIG_SYS_QMAN_NUM_PORTALS] = { 29 /* dqrr liodn, frame data liodn, liodn off, sdest */ 30 SET_QP_INFO(1, 27, 1, 0), 31 SET_QP_INFO(2, 28, 1, 0), 32 SET_QP_INFO(3, 29, 1, 1), 33 SET_QP_INFO(4, 30, 1, 1), 34 SET_QP_INFO(5, 31, 1, 2), 35 SET_QP_INFO(6, 32, 1, 2), 36 SET_QP_INFO(7, 33, 1, 3), 37 SET_QP_INFO(8, 34, 1, 3), 38 SET_QP_INFO(9, 35, 1, 0), 39 SET_QP_INFO(10, 36, 1, 0), 40 SET_QP_INFO(11, 37, 1, 1), 41 SET_QP_INFO(12, 38, 1, 1), 42 SET_QP_INFO(13, 39, 1, 2), 43 SET_QP_INFO(14, 40, 1, 2), 44 SET_QP_INFO(15, 41, 1, 3), 45 SET_QP_INFO(16, 42, 1, 3), 46 SET_QP_INFO(17, 43, 1, 0), 47 SET_QP_INFO(18, 44, 1, 0), 48 SET_QP_INFO(19, 45, 1, 1), 49 SET_QP_INFO(20, 46, 1, 1), 50 SET_QP_INFO(21, 47, 1, 2), 51 SET_QP_INFO(22, 48, 1, 2), 52 SET_QP_INFO(23, 49, 1, 3), 53 SET_QP_INFO(24, 50, 1, 3), 54 SET_QP_INFO(25, 51, 1, 0), 55 }; 56 #endif 57 58 struct srio_liodn_id_table srio_liodn_tbl[] = { 59 SET_SRIO_LIODN_1(1, 307), 60 SET_SRIO_LIODN_1(2, 387), 61 }; 62 int srio_liodn_tbl_sz = ARRAY_SIZE(srio_liodn_tbl); 63 64 struct liodn_id_table liodn_tbl[] = { 65 #ifdef CONFIG_SYS_DPAA_QBMAN 66 SET_QMAN_LIODN(62), 67 SET_BMAN_LIODN(63), 68 #endif 69 70 SET_SDHC_LIODN(1, 552), 71 72 SET_USB_LIODN(1, "fsl-usb2-mph", 553), 73 74 SET_PCI_LIODN("fsl,qoriq-pcie-v2.2", 1, 148), 75 76 SET_DMA_LIODN(1, 147), 77 SET_DMA_LIODN(2, 227), 78 79 SET_GUTS_LIODN("fsl,rapidio-delta", 199, rio1liodnr, 0), 80 SET_GUTS_LIODN(NULL, 200, rio2liodnr, 0), 81 SET_GUTS_LIODN(NULL, 201, rio1maintliodnr, 0), 82 SET_GUTS_LIODN(NULL, 202, rio2maintliodnr, 0), 83 84 /* SET_NEXUS_LIODN(557), -- not yet implemented */ 85 }; 86 int liodn_tbl_sz = ARRAY_SIZE(liodn_tbl); 87 88 #ifdef CONFIG_SYS_DPAA_FMAN 89 struct liodn_id_table fman1_liodn_tbl[] = { 90 SET_FMAN_RX_1G_LIODN(1, 0, 88), 91 SET_FMAN_RX_1G_LIODN(1, 1, 89), 92 SET_FMAN_RX_1G_LIODN(1, 2, 90), 93 SET_FMAN_RX_1G_LIODN(1, 3, 91), 94 SET_FMAN_RX_1G_LIODN(1, 4, 92), 95 SET_FMAN_RX_1G_LIODN(1, 5, 93), 96 SET_FMAN_RX_10G_LIODN(1, 0, 94), 97 SET_FMAN_RX_10G_LIODN(1, 1, 95), 98 }; 99 int fman1_liodn_tbl_sz = ARRAY_SIZE(fman1_liodn_tbl); 100 #endif 101 102 struct liodn_id_table sec_liodn_tbl[] = { 103 SET_SEC_JR_LIODN_ENTRY(0, 454, 458), 104 SET_SEC_JR_LIODN_ENTRY(1, 455, 459), 105 SET_SEC_JR_LIODN_ENTRY(2, 456, 460), 106 SET_SEC_JR_LIODN_ENTRY(3, 457, 461), 107 SET_SEC_RTIC_LIODN_ENTRY(a, 453), 108 SET_SEC_RTIC_LIODN_ENTRY(b, 549), 109 SET_SEC_RTIC_LIODN_ENTRY(c, 550), 110 SET_SEC_RTIC_LIODN_ENTRY(d, 551), 111 SET_SEC_DECO_LIODN_ENTRY(0, 541, 610), 112 SET_SEC_DECO_LIODN_ENTRY(1, 542, 611), 113 }; 114 int sec_liodn_tbl_sz = ARRAY_SIZE(sec_liodn_tbl); 115 116 #ifdef CONFIG_SYS_DPAA_RMAN 117 struct liodn_id_table rman_liodn_tbl[] = { 118 /* Set RMan block 0-3 liodn offset */ 119 SET_RMAN_LIODN(0, 678), 120 SET_RMAN_LIODN(1, 679), 121 SET_RMAN_LIODN(2, 680), 122 SET_RMAN_LIODN(3, 681), 123 }; 124 int rman_liodn_tbl_sz = ARRAY_SIZE(rman_liodn_tbl); 125 #endif 126 127 struct liodn_id_table liodn_bases[] = { 128 [FSL_HW_PORTAL_SEC] = SET_LIODN_BASE_2(462, 558), 129 #ifdef CONFIG_SYS_DPAA_FMAN 130 [FSL_HW_PORTAL_FMAN1] = SET_LIODN_BASE_1(973), 131 #endif 132 #ifdef CONFIG_SYS_DPAA_RMAN 133 [FSL_HW_PORTAL_RMAN] = SET_LIODN_BASE_1(922), 134 #endif 135 }; 136