blob: 0f4e82e05b3a185e4755469f8927b78f437ac22a [file] [log] [blame]
York Sund2404142012-10-08 07:44:20 +00001/*
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
28struct 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
Poonam Aggrwale1dbdd82012-12-23 19:24:16 +000058#ifdef CONFIG_SYS_SRIO
York Sund2404142012-10-08 07:44:20 +000059struct srio_liodn_id_table srio_liodn_tbl[] = {
60 SET_SRIO_LIODN_1(1, 307),
61 SET_SRIO_LIODN_1(2, 387),
62};
63int srio_liodn_tbl_sz = ARRAY_SIZE(srio_liodn_tbl);
Poonam Aggrwale1dbdd82012-12-23 19:24:16 +000064#endif
York Sund2404142012-10-08 07:44:20 +000065
66struct liodn_id_table liodn_tbl[] = {
67#ifdef CONFIG_SYS_DPAA_QBMAN
68 SET_QMAN_LIODN(62),
69 SET_BMAN_LIODN(63),
70#endif
71
72 SET_SDHC_LIODN(1, 552),
73
74 SET_USB_LIODN(1, "fsl-usb2-mph", 553),
75
76 SET_PCI_LIODN(CONFIG_SYS_FSL_PCIE_COMPAT, 1, 148),
77
78 SET_DMA_LIODN(1, 147),
79 SET_DMA_LIODN(2, 227),
80
Poonam Aggrwale1dbdd82012-12-23 19:24:16 +000081#ifndef CONFIG_PPC_B4420
York Sund2404142012-10-08 07:44:20 +000082 SET_GUTS_LIODN("fsl,rapidio-delta", 199, rio1liodnr, 0),
83 SET_GUTS_LIODN(NULL, 200, rio2liodnr, 0),
84 SET_GUTS_LIODN(NULL, 201, rio1maintliodnr, 0),
85 SET_GUTS_LIODN(NULL, 202, rio2maintliodnr, 0),
Poonam Aggrwale1dbdd82012-12-23 19:24:16 +000086#endif
York Sund2404142012-10-08 07:44:20 +000087
88 /* SET_NEXUS_LIODN(557), -- not yet implemented */
89};
90int liodn_tbl_sz = ARRAY_SIZE(liodn_tbl);
91
92#ifdef CONFIG_SYS_DPAA_FMAN
93struct liodn_id_table fman1_liodn_tbl[] = {
94 SET_FMAN_RX_1G_LIODN(1, 0, 88),
95 SET_FMAN_RX_1G_LIODN(1, 1, 89),
96 SET_FMAN_RX_1G_LIODN(1, 2, 90),
97 SET_FMAN_RX_1G_LIODN(1, 3, 91),
98 SET_FMAN_RX_1G_LIODN(1, 4, 92),
99 SET_FMAN_RX_1G_LIODN(1, 5, 93),
Poonam Aggrwale1dbdd82012-12-23 19:24:16 +0000100#ifndef CONFIG_PPC_B4420
York Sund2404142012-10-08 07:44:20 +0000101 SET_FMAN_RX_10G_LIODN(1, 0, 94),
102 SET_FMAN_RX_10G_LIODN(1, 1, 95),
Poonam Aggrwale1dbdd82012-12-23 19:24:16 +0000103#endif
York Sund2404142012-10-08 07:44:20 +0000104};
105int fman1_liodn_tbl_sz = ARRAY_SIZE(fman1_liodn_tbl);
106#endif
107
108struct liodn_id_table sec_liodn_tbl[] = {
109 SET_SEC_JR_LIODN_ENTRY(0, 454, 458),
110 SET_SEC_JR_LIODN_ENTRY(1, 455, 459),
111 SET_SEC_JR_LIODN_ENTRY(2, 456, 460),
112 SET_SEC_JR_LIODN_ENTRY(3, 457, 461),
113 SET_SEC_RTIC_LIODN_ENTRY(a, 453),
114 SET_SEC_RTIC_LIODN_ENTRY(b, 549),
115 SET_SEC_RTIC_LIODN_ENTRY(c, 550),
116 SET_SEC_RTIC_LIODN_ENTRY(d, 551),
117 SET_SEC_DECO_LIODN_ENTRY(0, 541, 610),
118 SET_SEC_DECO_LIODN_ENTRY(1, 542, 611),
119 SET_SEC_DECO_LIODN_ENTRY(2, 543, 612),
120 SET_SEC_DECO_LIODN_ENTRY(3, 544, 613),
121 SET_SEC_DECO_LIODN_ENTRY(4, 545, 614),
122 SET_SEC_DECO_LIODN_ENTRY(5, 546, 615),
123 SET_SEC_DECO_LIODN_ENTRY(6, 547, 616),
124 SET_SEC_DECO_LIODN_ENTRY(7, 548, 617),
125};
126int sec_liodn_tbl_sz = ARRAY_SIZE(sec_liodn_tbl);
127
128#ifdef CONFIG_SYS_DPAA_RMAN
129struct liodn_id_table rman_liodn_tbl[] = {
130 /* Set RMan block 0-3 liodn offset */
131 SET_RMAN_LIODN(0, 678),
132 SET_RMAN_LIODN(1, 679),
133 SET_RMAN_LIODN(2, 680),
134 SET_RMAN_LIODN(3, 681),
135};
136int rman_liodn_tbl_sz = ARRAY_SIZE(rman_liodn_tbl);
137#endif
138
139struct liodn_id_table liodn_bases[] = {
140 [FSL_HW_PORTAL_SEC] = SET_LIODN_BASE_2(462, 558),
141#ifdef CONFIG_SYS_DPAA_FMAN
142 [FSL_HW_PORTAL_FMAN1] = SET_LIODN_BASE_1(973),
143#endif
144#ifdef CONFIG_SYS_DPAA_RMAN
145 [FSL_HW_PORTAL_RMAN] = SET_LIODN_BASE_1(922),
146#endif
147};