Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 2 | /* |
Haiying Wang | 325a12f | 2011-01-20 22:26:31 +0000 | [diff] [blame] | 3 | * Copyright 2009-2011 Freescale Semiconductor, Inc. |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef _FSL_LIODN_H_ |
| 7 | #define _FSL_LIODN_H_ |
| 8 | |
Tom Rini | dee15a9 | 2024-04-30 20:40:48 -0600 | [diff] [blame^] | 9 | #include <config.h> |
| 10 | #include <linux/types.h> |
| 11 | #include <asm/ppc.h> |
Ahmed Mansour | aa270b4 | 2017-12-15 16:01:00 -0500 | [diff] [blame] | 12 | #include <fsl_qbman.h> |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 13 | |
Kumar Gala | 2b2b696 | 2011-10-14 00:01:23 -0500 | [diff] [blame] | 14 | struct srio_liodn_id_table { |
| 15 | u32 id[2]; |
| 16 | unsigned long reg_offset[2]; |
| 17 | u8 num_ids; |
| 18 | u8 portid; |
| 19 | }; |
| 20 | #define SET_SRIO_LIODN_1(port, idA) \ |
| 21 | { .id = { idA }, .num_ids = 1, .portid = port, \ |
| 22 | .reg_offset[0] = offsetof(ccsr_gur_t, rio##port##liodnr) \ |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 23 | + CFG_SYS_MPC85xx_GUTS_OFFSET + CFG_SYS_CCSRBAR, \ |
Kumar Gala | 2b2b696 | 2011-10-14 00:01:23 -0500 | [diff] [blame] | 24 | } |
| 25 | |
| 26 | #define SET_SRIO_LIODN_2(port, idA, idB) \ |
| 27 | { .id = { idA, idB }, .num_ids = 2, .portid = port, \ |
| 28 | .reg_offset[0] = offsetof(ccsr_gur_t, rio##port##liodnr) \ |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 29 | + CFG_SYS_MPC85xx_GUTS_OFFSET + CFG_SYS_CCSRBAR, \ |
Kumar Gala | 2b2b696 | 2011-10-14 00:01:23 -0500 | [diff] [blame] | 30 | .reg_offset[1] = offsetof(ccsr_gur_t, rio##port##maintliodnr) \ |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 31 | + CFG_SYS_MPC85xx_GUTS_OFFSET + CFG_SYS_CCSRBAR, \ |
Kumar Gala | 2b2b696 | 2011-10-14 00:01:23 -0500 | [diff] [blame] | 32 | } |
| 33 | |
Liu Gang | 1d5284b | 2013-06-25 18:12:12 +0800 | [diff] [blame] | 34 | #define SET_SRIO_LIODN_BASE(port, id_a) \ |
| 35 | { .id = { id_a }, .num_ids = 1, .portid = port, \ |
| 36 | .reg_offset[0] = offsetof(struct ccsr_rio, liodn) \ |
| 37 | + (port - 1) * 0x200 \ |
Tom Rini | 376b88a | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 38 | + CFG_SYS_FSL_SRIO_ADDR, \ |
Liu Gang | 1d5284b | 2013-06-25 18:12:12 +0800 | [diff] [blame] | 39 | } |
| 40 | |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 41 | struct liodn_id_table { |
| 42 | const char * compat; |
| 43 | u32 id[2]; |
| 44 | u8 num_ids; |
| 45 | phys_addr_t compat_offset; |
| 46 | unsigned long reg_offset; |
| 47 | }; |
| 48 | |
Igal Liberman | e14ec99 | 2015-08-18 14:47:05 +0300 | [diff] [blame] | 49 | struct fman_liodn_id_table { |
| 50 | /* Freescale FMan Device Tree binding was updated for FMan. |
| 51 | * We need to support both new and old compatibles in order not to |
| 52 | * break backward compatibility. |
| 53 | */ |
| 54 | const char *compat[2]; |
| 55 | u32 id[2]; |
| 56 | u8 num_ids; |
| 57 | phys_addr_t compat_offset; |
| 58 | unsigned long reg_offset; |
| 59 | }; |
| 60 | |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 61 | extern u32 get_ppid_liodn(int ppid_tbl_idx, int ppid); |
| 62 | extern void set_liodns(void); |
| 63 | extern void fdt_fixup_liodn(void *blob); |
| 64 | |
| 65 | #define SET_LIODN_BASE_1(idA) \ |
| 66 | { .id = { idA }, .num_ids = 1, } |
| 67 | |
| 68 | #define SET_LIODN_BASE_2(idA, idB) \ |
| 69 | { .id = { idA, idB }, .num_ids = 2 } |
| 70 | |
Igal Liberman | e14ec99 | 2015-08-18 14:47:05 +0300 | [diff] [blame] | 71 | #define SET_FMAN_LIODN_ENTRY(name1, name2, idA, off, compatoff)\ |
| 72 | { .compat[0] = name1, \ |
| 73 | .compat[1] = name2, \ |
| 74 | .id = { idA }, .num_ids = 1, \ |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 75 | .reg_offset = off + CFG_SYS_CCSRBAR, \ |
| 76 | .compat_offset = compatoff + CFG_SYS_CCSRBAR_PHYS, \ |
Igal Liberman | e14ec99 | 2015-08-18 14:47:05 +0300 | [diff] [blame] | 77 | } |
| 78 | |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 79 | #define SET_LIODN_ENTRY_1(name, idA, off, compatoff) \ |
| 80 | { .compat = name, \ |
| 81 | .id = { idA }, .num_ids = 1, \ |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 82 | .reg_offset = off + CFG_SYS_CCSRBAR, \ |
| 83 | .compat_offset = compatoff + CFG_SYS_CCSRBAR_PHYS, \ |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | #define SET_LIODN_ENTRY_2(name, idA, idB, off, compatoff) \ |
| 87 | { .compat = name, \ |
| 88 | .id = { idA, idB }, .num_ids = 2, \ |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 89 | .reg_offset = off + CFG_SYS_CCSRBAR, \ |
| 90 | .compat_offset = compatoff + CFG_SYS_CCSRBAR_PHYS, \ |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | #define SET_GUTS_LIODN(compat, liodn, name, compatoff) \ |
| 94 | SET_LIODN_ENTRY_1(compat, liodn, \ |
Tom Rini | d5c3bf2 | 2022-10-28 20:27:12 -0400 | [diff] [blame] | 95 | offsetof(ccsr_gur_t, name) + CFG_SYS_MPC85xx_GUTS_OFFSET, \ |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 96 | compatoff) |
| 97 | |
| 98 | #define SET_USB_LIODN(usbNum, compat, liodn) \ |
| 99 | SET_GUTS_LIODN(compat, liodn, usb##usbNum##liodnr,\ |
Tom Rini | d5c3bf2 | 2022-10-28 20:27:12 -0400 | [diff] [blame] | 100 | CFG_SYS_MPC85xx_USB##usbNum##_OFFSET) |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 101 | |
| 102 | #define SET_SATA_LIODN(sataNum, liodn) \ |
| 103 | SET_GUTS_LIODN("fsl,pq-sata-v2", liodn, sata##sataNum##liodnr,\ |
Tom Rini | d5c3bf2 | 2022-10-28 20:27:12 -0400 | [diff] [blame] | 104 | CFG_SYS_MPC85xx_SATA##sataNum##_OFFSET) |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 105 | |
Laurentiu TUDOR | 960f87f | 2011-03-15 16:37:36 +0200 | [diff] [blame] | 106 | #define SET_PCI_LIODN(compat, pciNum, liodn) \ |
| 107 | SET_GUTS_LIODN(compat, liodn, pex##pciNum##liodnr,\ |
Tom Rini | d5c3bf2 | 2022-10-28 20:27:12 -0400 | [diff] [blame] | 108 | CFG_SYS_MPC85xx_PCIE##pciNum##_OFFSET) |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 109 | |
Laurentiu Tudor | b173eaf | 2012-10-05 09:48:51 +0000 | [diff] [blame] | 110 | #define SET_PCI_LIODN_BASE(compat, pciNum, liodn) \ |
| 111 | SET_LIODN_ENTRY_1(compat, liodn,\ |
Tom Rini | d5c3bf2 | 2022-10-28 20:27:12 -0400 | [diff] [blame] | 112 | offsetof(ccsr_pcix_t, liodn_base) + CFG_SYS_MPC85xx_PCIE##pciNum##_OFFSET,\ |
| 113 | CFG_SYS_MPC85xx_PCIE##pciNum##_OFFSET) |
Laurentiu Tudor | b173eaf | 2012-10-05 09:48:51 +0000 | [diff] [blame] | 114 | |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 115 | /* reg nodes for DMA start @ 0x300 */ |
Tudor Laurentiu | 7210d9a | 2014-11-20 12:09:31 +0200 | [diff] [blame] | 116 | #define SET_DMA_LIODN(dmaNum, compat, liodn) \ |
| 117 | SET_GUTS_LIODN(compat, liodn, dma##dmaNum##liodnr,\ |
Tom Rini | d5c3bf2 | 2022-10-28 20:27:12 -0400 | [diff] [blame] | 118 | CFG_SYS_MPC85xx_DMA##dmaNum##_OFFSET + 0x300) |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 119 | |
| 120 | #define SET_SDHC_LIODN(sdhcNum, liodn) \ |
| 121 | SET_GUTS_LIODN("fsl,esdhc", liodn, sdmmc##sdhcNum##liodnr,\ |
Tom Rini | d5c3bf2 | 2022-10-28 20:27:12 -0400 | [diff] [blame] | 122 | CFG_SYS_MPC85xx_ESDHC_OFFSET) |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 123 | |
Zhao Qiang | b818ba2 | 2014-03-21 16:21:45 +0800 | [diff] [blame] | 124 | #define SET_QE_LIODN(liodn) \ |
| 125 | SET_GUTS_LIODN("fsl,qe", liodn, qeliodnr,\ |
Tom Rini | d5c3bf2 | 2022-10-28 20:27:12 -0400 | [diff] [blame] | 126 | CFG_SYS_MPC85xx_QE_OFFSET) |
Zhao Qiang | b818ba2 | 2014-03-21 16:21:45 +0800 | [diff] [blame] | 127 | |
Sandeep Singh | 4fb16a1 | 2014-06-05 18:49:57 +0530 | [diff] [blame] | 128 | #define SET_TDM_LIODN(liodn) \ |
| 129 | SET_GUTS_LIODN("fsl,tdm1.0", liodn, tdmliodnr,\ |
Tom Rini | d5c3bf2 | 2022-10-28 20:27:12 -0400 | [diff] [blame] | 130 | CFG_SYS_MPC85xx_TDM_OFFSET) |
Sandeep Singh | 4fb16a1 | 2014-06-05 18:49:57 +0530 | [diff] [blame] | 131 | |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 132 | #define SET_QMAN_LIODN(liodn) \ |
Ahmed Mansour | aa270b4 | 2017-12-15 16:01:00 -0500 | [diff] [blame] | 133 | SET_LIODN_ENTRY_1("fsl,qman", liodn, \ |
| 134 | offsetof(struct ccsr_qman, liodnr) + \ |
Tom Rini | 376b88a | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 135 | CFG_SYS_FSL_QMAN_OFFSET, \ |
| 136 | CFG_SYS_FSL_QMAN_OFFSET) |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 137 | |
| 138 | #define SET_BMAN_LIODN(liodn) \ |
Ahmed Mansour | aa270b4 | 2017-12-15 16:01:00 -0500 | [diff] [blame] | 139 | SET_LIODN_ENTRY_1("fsl,bman", liodn, \ |
| 140 | offsetof(struct ccsr_bman, liodnr) + \ |
Tom Rini | 376b88a | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 141 | CFG_SYS_FSL_BMAN_OFFSET, \ |
| 142 | CFG_SYS_FSL_BMAN_OFFSET) |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 143 | |
| 144 | #define SET_PME_LIODN(liodn) \ |
| 145 | SET_LIODN_ENTRY_1("fsl,pme", liodn, offsetof(ccsr_pme_t, liodnr) + \ |
Tom Rini | 376b88a | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 146 | CFG_SYS_FSL_CORENET_PME_OFFSET, \ |
| 147 | CFG_SYS_FSL_CORENET_PME_OFFSET) |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 148 | |
Andy Fleming | 81177ad | 2012-10-08 07:44:18 +0000 | [diff] [blame] | 149 | #define SET_PMAN_LIODN(num, liodn) \ |
| 150 | SET_LIODN_ENTRY_2("fsl,pman", liodn, 0, \ |
| 151 | offsetof(struct ccsr_pman, ppa1) + \ |
Tom Rini | 376b88a | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 152 | CFG_SYS_FSL_CORENET_PMAN##num##_OFFSET, \ |
| 153 | CFG_SYS_FSL_CORENET_PMAN##num##_OFFSET) |
Andy Fleming | 81177ad | 2012-10-08 07:44:18 +0000 | [diff] [blame] | 154 | |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 155 | /* -1 from portID due to how immap has the registers */ |
| 156 | #define FM_PPID_RX_PORT_OFFSET(fmNum, portID) \ |
Tom Rini | 376b88a | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 157 | CFG_SYS_FSL_FM##fmNum##_OFFSET + \ |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 158 | offsetof(struct ccsr_fman, fm_bmi_common.fmbm_ppid[portID - 1]) |
| 159 | |
Igal Liberman | e14ec99 | 2015-08-18 14:47:05 +0300 | [diff] [blame] | 160 | #ifdef CONFIG_SYS_FMAN_V3 |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 161 | /* enetNum is 0, 1, 2... so we + 8 for 1g to get to HW Port ID */ |
| 162 | #define SET_FMAN_RX_1G_LIODN(fmNum, enetNum, liodn) \ |
Igal Liberman | e14ec99 | 2015-08-18 14:47:05 +0300 | [diff] [blame] | 163 | SET_FMAN_LIODN_ENTRY("fsl,fman-v3-port-rx", "fsl,fman-port-1g-rx", \ |
| 164 | liodn, FM_PPID_RX_PORT_OFFSET(fmNum, enetNum + 8), \ |
Tom Rini | 376b88a | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 165 | CFG_SYS_FSL_FM##fmNum##_RX##enetNum##_1G_OFFSET) |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 166 | |
| 167 | /* enetNum is 0, 1, 2... so we + 16 for 10g to get to HW Port ID */ |
| 168 | #define SET_FMAN_RX_10G_LIODN(fmNum, enetNum, liodn) \ |
Igal Liberman | e14ec99 | 2015-08-18 14:47:05 +0300 | [diff] [blame] | 169 | SET_FMAN_LIODN_ENTRY("fsl,fman-v3-port-rx", "fsl,fman-port-10g-rx", \ |
| 170 | liodn, FM_PPID_RX_PORT_OFFSET(fmNum, enetNum + 16), \ |
Tom Rini | 376b88a | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 171 | CFG_SYS_FSL_FM##fmNum##_RX##enetNum##_10G_OFFSET) |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 172 | |
Shengzhou Liu | 0e24d3a | 2015-05-14 16:51:39 +0800 | [diff] [blame] | 173 | /* enetNum is 0, 1, 2... so we + 8 for type-2 10g to get to HW Port ID */ |
| 174 | #define SET_FMAN_RX_10G_TYPE2_LIODN(fmNum, enetNum, liodn) \ |
Igal Liberman | e14ec99 | 2015-08-18 14:47:05 +0300 | [diff] [blame] | 175 | SET_FMAN_LIODN_ENTRY("fsl,fman-v3-port-rx", "fsl,fman-port-10g-rx", \ |
| 176 | liodn, FM_PPID_RX_PORT_OFFSET(fmNum, enetNum + 8), \ |
Tom Rini | 376b88a | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 177 | CFG_SYS_FSL_FM##fmNum##_RX##enetNum##_1G_OFFSET) |
Igal Liberman | e14ec99 | 2015-08-18 14:47:05 +0300 | [diff] [blame] | 178 | #else |
| 179 | /* enetNum is 0, 1, 2... so we + 8 for 1g to get to HW Port ID */ |
| 180 | #define SET_FMAN_RX_1G_LIODN(fmNum, enetNum, liodn) \ |
| 181 | SET_FMAN_LIODN_ENTRY("fsl,fman-v2-port-rx", "fsl,fman-port-1g-rx", \ |
| 182 | liodn, FM_PPID_RX_PORT_OFFSET(fmNum, enetNum + 8), \ |
Tom Rini | 376b88a | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 183 | CFG_SYS_FSL_FM##fmNum##_RX##enetNum##_1G_OFFSET) |
Shengzhou Liu | 0e24d3a | 2015-05-14 16:51:39 +0800 | [diff] [blame] | 184 | |
Igal Liberman | e14ec99 | 2015-08-18 14:47:05 +0300 | [diff] [blame] | 185 | /* enetNum is 0, 1, 2... so we + 16 for 10g to get to HW Port ID */ |
| 186 | #define SET_FMAN_RX_10G_LIODN(fmNum, enetNum, liodn) \ |
| 187 | SET_FMAN_LIODN_ENTRY("fsl,fman-v2-port-rx", "fsl,fman-port-10g-rx", \ |
| 188 | liodn, FM_PPID_RX_PORT_OFFSET(fmNum, enetNum + 16), \ |
Tom Rini | 376b88a | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 189 | CFG_SYS_FSL_FM##fmNum##_RX##enetNum##_10G_OFFSET) |
Igal Liberman | e14ec99 | 2015-08-18 14:47:05 +0300 | [diff] [blame] | 190 | #endif |
Kim Phillips | e49f1c3 | 2011-04-12 14:12:47 -0500 | [diff] [blame] | 191 | /* |
| 192 | * handle both old and new versioned SEC properties: |
| 193 | * "fsl,secX.Y" became "fsl,sec-vX.Y" during development |
| 194 | */ |
Kumar Gala | 1c9cee9 | 2010-08-17 23:12:37 -0500 | [diff] [blame] | 195 | #define SET_SEC_JR_LIODN_ENTRY(jrNum, liodnA, liodnB) \ |
| 196 | SET_LIODN_ENTRY_2("fsl,sec4.0-job-ring", liodnA, liodnB,\ |
| 197 | offsetof(ccsr_sec_t, jrliodnr[jrNum].ls) + \ |
Tom Rini | 376b88a | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 198 | CFG_SYS_FSL_SEC_OFFSET, \ |
| 199 | CFG_SYS_FSL_SEC_OFFSET + 0x1000 + 0x1000 * jrNum), \ |
Kim Phillips | e49f1c3 | 2011-04-12 14:12:47 -0500 | [diff] [blame] | 200 | SET_LIODN_ENTRY_2("fsl,sec-v4.0-job-ring", liodnA, liodnB,\ |
| 201 | offsetof(ccsr_sec_t, jrliodnr[jrNum].ls) + \ |
Tom Rini | 376b88a | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 202 | CFG_SYS_FSL_SEC_OFFSET, \ |
| 203 | CFG_SYS_FSL_SEC_OFFSET + 0x1000 + 0x1000 * jrNum) |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 204 | |
| 205 | /* This is a bit evil since we treat rtic param as both a string & hex value */ |
| 206 | #define SET_SEC_RTIC_LIODN_ENTRY(rtic, liodnA) \ |
| 207 | SET_LIODN_ENTRY_1("fsl,sec4.0-rtic-memory", \ |
| 208 | liodnA, \ |
| 209 | offsetof(ccsr_sec_t, rticliodnr[0x##rtic-0xa].ls) + \ |
Tom Rini | 376b88a | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 210 | CFG_SYS_FSL_SEC_OFFSET, \ |
| 211 | CFG_SYS_FSL_SEC_OFFSET + 0x6100 + 0x20 * (0x##rtic-0xa)), \ |
Kim Phillips | e49f1c3 | 2011-04-12 14:12:47 -0500 | [diff] [blame] | 212 | SET_LIODN_ENTRY_1("fsl,sec-v4.0-rtic-memory", \ |
| 213 | liodnA, \ |
| 214 | offsetof(ccsr_sec_t, rticliodnr[0x##rtic-0xa].ls) + \ |
Tom Rini | 376b88a | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 215 | CFG_SYS_FSL_SEC_OFFSET, \ |
| 216 | CFG_SYS_FSL_SEC_OFFSET + 0x6100 + 0x20 * (0x##rtic-0xa)) |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 217 | |
| 218 | #define SET_SEC_DECO_LIODN_ENTRY(num, liodnA, liodnB) \ |
| 219 | SET_LIODN_ENTRY_2(NULL, liodnA, liodnB, \ |
| 220 | offsetof(ccsr_sec_t, decoliodnr[num].ls) + \ |
Tom Rini | 376b88a | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 221 | CFG_SYS_FSL_SEC_OFFSET, 0) |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 222 | |
Kumar Gala | 9d8e813 | 2011-09-10 10:44:13 -0500 | [diff] [blame] | 223 | #define SET_RAID_ENGINE_JQ_LIODN_ENTRY(jqNum, rNum, liodnA) \ |
| 224 | SET_LIODN_ENTRY_1("fsl,raideng-v1.0-job-ring", \ |
| 225 | liodnA, \ |
| 226 | offsetof(struct ccsr_raide, jq[jqNum].ring[rNum].cfg1) + \ |
Tom Rini | 376b88a | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 227 | CFG_SYS_FSL_RAID_ENGINE_OFFSET, \ |
Kumar Gala | 9d8e813 | 2011-09-10 10:44:13 -0500 | [diff] [blame] | 228 | offsetof(struct ccsr_raide, jq[jqNum].ring[rNum].cfg0) + \ |
Tom Rini | 376b88a | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 229 | CFG_SYS_FSL_RAID_ENGINE_OFFSET) |
Kumar Gala | 9d8e813 | 2011-09-10 10:44:13 -0500 | [diff] [blame] | 230 | |
Kumar Gala | 4eb3c37 | 2011-10-14 13:28:52 -0500 | [diff] [blame] | 231 | #define SET_RMAN_LIODN(ibNum, liodn) \ |
| 232 | SET_LIODN_ENTRY_1("fsl,rman-inbound-block", liodn, \ |
| 233 | offsetof(struct ccsr_rman, mmitdr) + \ |
Tom Rini | 376b88a | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 234 | CFG_SYS_FSL_CORENET_RMAN_OFFSET, \ |
| 235 | CFG_SYS_FSL_CORENET_RMAN_OFFSET + ibNum * 0x1000) |
Kumar Gala | 4eb3c37 | 2011-10-14 13:28:52 -0500 | [diff] [blame] | 236 | |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 237 | extern struct liodn_id_table liodn_tbl[], liodn_bases[], sec_liodn_tbl[]; |
Kumar Gala | 9d8e813 | 2011-09-10 10:44:13 -0500 | [diff] [blame] | 238 | extern struct liodn_id_table raide_liodn_tbl[]; |
Igal Liberman | e14ec99 | 2015-08-18 14:47:05 +0300 | [diff] [blame] | 239 | extern struct fman_liodn_id_table fman1_liodn_tbl[], fman2_liodn_tbl[]; |
Timur Tabi | ebede50 | 2012-10-05 09:48:52 +0000 | [diff] [blame] | 240 | #ifdef CONFIG_SYS_SRIO |
Kumar Gala | 2b2b696 | 2011-10-14 00:01:23 -0500 | [diff] [blame] | 241 | extern struct srio_liodn_id_table srio_liodn_tbl[]; |
Timur Tabi | ebede50 | 2012-10-05 09:48:52 +0000 | [diff] [blame] | 242 | extern int srio_liodn_tbl_sz; |
| 243 | #endif |
Kumar Gala | 4eb3c37 | 2011-10-14 13:28:52 -0500 | [diff] [blame] | 244 | extern struct liodn_id_table rman_liodn_tbl[]; |
Kumar Gala | 9d8e813 | 2011-09-10 10:44:13 -0500 | [diff] [blame] | 245 | extern int liodn_tbl_sz, sec_liodn_tbl_sz, raide_liodn_tbl_sz; |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 246 | extern int fman1_liodn_tbl_sz, fman2_liodn_tbl_sz; |
Kumar Gala | 4eb3c37 | 2011-10-14 13:28:52 -0500 | [diff] [blame] | 247 | extern int rman_liodn_tbl_sz; |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 248 | |
| 249 | #endif |