]> git.ipfire.org Git - thirdparty/u-boot.git/blame - arch/powerpc/cpu/mpc85xx/t1024_ids.c
SPDX: Convert all of our single license tags to Linux Kernel style
[thirdparty/u-boot.git] / arch / powerpc / cpu / mpc85xx / t1024_ids.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
f6050790
SL
2/*
3 * Copyright 2014 Freescale Semiconductor, Inc.
f6050790
SL
4 */
5
6#include <common.h>
7#include <asm/fsl_portals.h>
8#include <asm/fsl_liodn.h>
9
10#ifdef CONFIG_SYS_DPAA_QBMAN
11struct qportal_info qp_info[CONFIG_SYS_QMAN_NUM_PORTALS] = {
12 /* dqrr liodn, frame data liodn, liodn off, sdest */
13 SET_QP_INFO(1, 27, 1, 0),
14 SET_QP_INFO(2, 28, 1, 0),
15 SET_QP_INFO(3, 29, 1, 1),
16 SET_QP_INFO(4, 30, 1, 1),
17 SET_QP_INFO(5, 31, 1, 2),
18 SET_QP_INFO(6, 32, 1, 2),
19 SET_QP_INFO(7, 33, 1, 3),
20 SET_QP_INFO(8, 34, 1, 3),
21 SET_QP_INFO(9, 35, 1, 0),
22 SET_QP_INFO(10, 36, 1, 0),
23};
24#endif
25
26struct liodn_id_table liodn_tbl[] = {
27#ifdef CONFIG_SYS_DPAA_QBMAN
28 SET_QMAN_LIODN(62),
29 SET_BMAN_LIODN(63),
30#endif
31
32 SET_SDHC_LIODN(1, 552),
33
34 SET_USB_LIODN(1, "fsl-usb2-mph", 553),
35 SET_USB_LIODN(2, "fsl-usb2-dr", 554),
36
37 SET_SATA_LIODN(1, 555),
38
39 SET_PCI_LIODN_BASE(CONFIG_SYS_FSL_PCIE_COMPAT, 1, 148),
40 SET_PCI_LIODN_BASE(CONFIG_SYS_FSL_PCIE_COMPAT, 2, 228),
41 SET_PCI_LIODN_BASE(CONFIG_SYS_FSL_PCIE_COMPAT, 3, 308),
42
8d3eaa97
TL
43 SET_DMA_LIODN(1, "fsl,elo3-dma", 147),
44 SET_DMA_LIODN(2, "fsl,elo3-dma", 227),
f6050790
SL
45 /* SET_NEXUS_LIODN(557), -- not yet implemented */
46 SET_QE_LIODN(559),
47 SET_TDM_LIODN(560),
48};
49int liodn_tbl_sz = ARRAY_SIZE(liodn_tbl);
50
51#ifdef CONFIG_SYS_DPAA_FMAN
97a8d010 52struct fman_liodn_id_table fman1_liodn_tbl[] = {
b99b6452 53 SET_FMAN_RX_10G_TYPE2_LIODN(1, 0, 88),
f6050790
SL
54 SET_FMAN_RX_1G_LIODN(1, 1, 89),
55 SET_FMAN_RX_1G_LIODN(1, 2, 90),
56 SET_FMAN_RX_1G_LIODN(1, 3, 91),
f6050790
SL
57};
58int fman1_liodn_tbl_sz = ARRAY_SIZE(fman1_liodn_tbl);
59#endif
60
61struct liodn_id_table sec_liodn_tbl[] = {
62 SET_SEC_JR_LIODN_ENTRY(0, 454, 458),
63 SET_SEC_JR_LIODN_ENTRY(1, 455, 459),
64 SET_SEC_JR_LIODN_ENTRY(2, 456, 460),
65 SET_SEC_JR_LIODN_ENTRY(3, 457, 461),
66 SET_SEC_RTIC_LIODN_ENTRY(a, 453),
67 SET_SEC_RTIC_LIODN_ENTRY(b, 549),
68 SET_SEC_RTIC_LIODN_ENTRY(c, 550),
69 SET_SEC_RTIC_LIODN_ENTRY(d, 551),
70 SET_SEC_DECO_LIODN_ENTRY(0, 541, 610),
71 SET_SEC_DECO_LIODN_ENTRY(1, 542, 611),
72};
73int sec_liodn_tbl_sz = ARRAY_SIZE(sec_liodn_tbl);
74
75struct liodn_id_table liodn_bases[] = {
76 [FSL_HW_PORTAL_SEC] = SET_LIODN_BASE_2(462, 558),
77#ifdef CONFIG_SYS_DPAA_FMAN
78 [FSL_HW_PORTAL_FMAN1] = SET_LIODN_BASE_1(973),
79#endif
80};