blob: 68160a9512bb18b86f6c59b54994d04411ef20df [file] [log] [blame]
York Sun5f208d12013-03-25 07:40:06 +00001/*
2 * Copyright 2012 Freescale Semiconductor, Inc.
3 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
York Sun5f208d12013-03-25 07:40:06 +00005 */
6
7#include <common.h>
8#include <asm/fsl_portals.h>
9#include <asm/fsl_liodn.h>
10
11#ifdef CONFIG_SYS_DPAA_QBMAN
12struct qportal_info qp_info[CONFIG_SYS_QMAN_NUM_PORTALS] = {
13 /* dqrr liodn, frame data liodn, liodn off, sdest */
14 SET_QP_INFO(1, 27, 1, 0),
15 SET_QP_INFO(2, 28, 1, 0),
16 SET_QP_INFO(3, 29, 1, 1),
17 SET_QP_INFO(4, 30, 1, 1),
18 SET_QP_INFO(5, 31, 1, 2),
19 SET_QP_INFO(6, 32, 1, 2),
20 SET_QP_INFO(7, 33, 1, 3),
21 SET_QP_INFO(8, 34, 1, 3),
22 SET_QP_INFO(9, 35, 1, 0),
23 SET_QP_INFO(10, 36, 1, 0),
York Sun5f208d12013-03-25 07:40:06 +000024};
25#endif
26
27struct srio_liodn_id_table srio_liodn_tbl[] = {
28 SET_SRIO_LIODN_1(1, 307),
29 SET_SRIO_LIODN_1(2, 387),
30};
31int srio_liodn_tbl_sz = ARRAY_SIZE(srio_liodn_tbl);
32
33struct liodn_id_table liodn_tbl[] = {
34#ifdef CONFIG_SYS_DPAA_QBMAN
35 SET_QMAN_LIODN(62),
36 SET_BMAN_LIODN(63),
37#endif
38
39 SET_SDHC_LIODN(1, 552),
40
41 SET_USB_LIODN(1, "fsl-usb2-mph", 553),
42
43 SET_PCI_LIODN("fsl,qoriq-pcie-v2.2", 1, 148),
44
45 SET_DMA_LIODN(1, 147),
46 SET_DMA_LIODN(2, 227),
47
York Sun5f208d12013-03-25 07:40:06 +000048 /* SET_NEXUS_LIODN(557), -- not yet implemented */
49};
50int liodn_tbl_sz = ARRAY_SIZE(liodn_tbl);
51
52#ifdef CONFIG_SYS_DPAA_FMAN
53struct liodn_id_table fman1_liodn_tbl[] = {
54 SET_FMAN_RX_1G_LIODN(1, 0, 88),
55 SET_FMAN_RX_1G_LIODN(1, 1, 89),
56 SET_FMAN_RX_1G_LIODN(1, 2, 90),
57 SET_FMAN_RX_1G_LIODN(1, 3, 91),
58 SET_FMAN_RX_1G_LIODN(1, 4, 92),
59 SET_FMAN_RX_1G_LIODN(1, 5, 93),
York Sun5f208d12013-03-25 07:40:06 +000060};
61int fman1_liodn_tbl_sz = ARRAY_SIZE(fman1_liodn_tbl);
62#endif
63
64struct liodn_id_table sec_liodn_tbl[] = {
65 SET_SEC_JR_LIODN_ENTRY(0, 454, 458),
66 SET_SEC_JR_LIODN_ENTRY(1, 455, 459),
67 SET_SEC_JR_LIODN_ENTRY(2, 456, 460),
68 SET_SEC_JR_LIODN_ENTRY(3, 457, 461),
69 SET_SEC_RTIC_LIODN_ENTRY(a, 453),
70 SET_SEC_RTIC_LIODN_ENTRY(b, 549),
71 SET_SEC_RTIC_LIODN_ENTRY(c, 550),
72 SET_SEC_RTIC_LIODN_ENTRY(d, 551),
73 SET_SEC_DECO_LIODN_ENTRY(0, 541, 610),
74 SET_SEC_DECO_LIODN_ENTRY(1, 542, 611),
75};
76int sec_liodn_tbl_sz = ARRAY_SIZE(sec_liodn_tbl);
77
York Sun5f208d12013-03-25 07:40:06 +000078struct liodn_id_table liodn_bases[] = {
79 [FSL_HW_PORTAL_SEC] = SET_LIODN_BASE_2(462, 558),
80#ifdef CONFIG_SYS_DPAA_FMAN
81 [FSL_HW_PORTAL_FMAN1] = SET_LIODN_BASE_1(973),
82#endif
York Sun5f208d12013-03-25 07:40:06 +000083};