5 * Copyright (C) 2008 Michael Brown <mbrown@fensystems.co.uk>.
6 * Copyright (C) 2008 NetXen, Inc.
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of the
11 * License, or any later version.
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
32 /* Drag in hardware definitions */
33 #include "nx_bitops.h"
34 #include "phantom_hw.h"
35 struct phantom_rds { NX_PSEUDO_BIT_STRUCT ( struct phantom_rds_pb ) };
36 struct phantom_sds { NX_PSEUDO_BIT_STRUCT ( struct phantom_sds_pb ) };
37 union phantom_cds { NX_PSEUDO_BIT_STRUCT ( union phantom_cds_pb ) };
39 /* Drag in firmware interface definitions */
44 typedef uint32_t nx_rcode_t;
45 #define NXHAL_VERSION 1
46 #include "nxhal_nic_interface.h"
48 /** SPI controller maximum block size */
49 #define UNM_SPI_BLKSIZE 4
51 /** DMA buffer alignment */
52 #define UNM_DMA_BUFFER_ALIGN 16
54 /** Mark structure as DMA-aligned */
55 #define __unm_dma_aligned __attribute__ (( aligned ( UNM_DMA_BUFFER_ALIGN ) ))
57 /** Dummy DMA buffer size */
58 #define UNM_DUMMY_DMA_SIZE 1024
60 /******************************************************************************
62 * Register definitions
66 #define UNM_128M_CRB_WINDOW 0x6110210UL
67 #define UNM_32M_CRB_WINDOW 0x0110210UL
68 #define UNM_2M_CRB_WINDOW 0x0130060UL
71 * Phantom register blocks
73 * The upper address bits vary between cards. We define an abstract
74 * address space in which the upper 8 bits of the 32-bit register
75 * address encode the register block. This gets translated to a bus
76 * address by the phantom_crb_access_xxx() methods.
79 UNM_CRB_BLK_PCIE = 0x01,
80 UNM_CRB_BLK_CAM = 0x22,
81 UNM_CRB_BLK_ROMUSB = 0x33,
82 UNM_CRB_BLK_TEST = 0x02,
83 UNM_CRB_BLK_PEG_0 = 0x11,
84 UNM_CRB_BLK_PEG_1 = 0x12,
85 UNM_CRB_BLK_PEG_2 = 0x13,
86 UNM_CRB_BLK_PEG_3 = 0x14,
87 UNM_CRB_BLK_PEG_4 = 0x0f,
89 #define UNM_CRB_BASE(blk) ( (blk) << 20 )
90 #define UNM_CRB_BLK(reg) ( (reg) >> 20 )
91 #define UNM_CRB_OFFSET(reg) ( (reg) & 0x000fffff )
93 #define UNM_CRB_PCIE UNM_CRB_BASE ( UNM_CRB_BLK_PCIE )
94 #define UNM_PCIE_SEM2_LOCK ( UNM_CRB_PCIE + 0x1c010 )
95 #define UNM_PCIE_SEM2_UNLOCK ( UNM_CRB_PCIE + 0x1c014 )
97 #define UNM_CRB_CAM UNM_CRB_BASE ( UNM_CRB_BLK_CAM )
99 #define UNM_CAM_RAM ( UNM_CRB_CAM + 0x02000 )
100 #define UNM_CAM_RAM_PORT_MODE ( UNM_CAM_RAM + 0x00024 )
101 #define UNM_CAM_RAM_PORT_MODE_AUTO_NEG 4
102 #define UNM_CAM_RAM_PORT_MODE_AUTO_NEG_1G 5
103 #define UNM_CAM_RAM_DMESG_HEAD(n) ( UNM_CAM_RAM + 0x00030 + (n) * 0x10 )
104 #define UNM_CAM_RAM_DMESG_LEN(n) ( UNM_CAM_RAM + 0x00034 + (n) * 0x10 )
105 #define UNM_CAM_RAM_DMESG_TAIL(n) ( UNM_CAM_RAM + 0x00038 + (n) * 0x10 )
106 #define UNM_CAM_RAM_DMESG_SIG(n) ( UNM_CAM_RAM + 0x0003c + (n) * 0x10 )
107 #define UNM_CAM_RAM_DMESG_SIG_MAGIC 0xcafebabeUL
108 #define UNM_CAM_RAM_NUM_DMESG_BUFFERS 5
109 #define UNM_CAM_RAM_WOL_PORT_MODE ( UNM_CAM_RAM + 0x00198 )
110 #define UNM_CAM_RAM_MAC_ADDRS ( UNM_CAM_RAM + 0x001c0 )
111 #define UNM_CAM_RAM_COLD_BOOT ( UNM_CAM_RAM + 0x001fc )
112 #define UNM_CAM_RAM_COLD_BOOT_MAGIC 0x55555555UL
114 #define UNM_NIC_REG ( UNM_CRB_CAM + 0x02200 )
115 #define UNM_NIC_REG_NX_CDRP ( UNM_NIC_REG + 0x00018 )
116 #define UNM_NIC_REG_NX_ARG1 ( UNM_NIC_REG + 0x0001c )
117 #define UNM_NIC_REG_NX_ARG2 ( UNM_NIC_REG + 0x00020 )
118 #define UNM_NIC_REG_NX_ARG3 ( UNM_NIC_REG + 0x00024 )
119 #define UNM_NIC_REG_NX_SIGN ( UNM_NIC_REG + 0x00028 )
120 #define UNM_NIC_REG_DUMMY_BUF_ADDR_HI ( UNM_NIC_REG + 0x0003c )
121 #define UNM_NIC_REG_DUMMY_BUF_ADDR_LO ( UNM_NIC_REG + 0x00040 )
122 #define UNM_NIC_REG_CMDPEG_STATE ( UNM_NIC_REG + 0x00050 )
123 #define UNM_NIC_REG_CMDPEG_STATE_INITIALIZED 0xff01
124 #define UNM_NIC_REG_CMDPEG_STATE_INITIALIZE_ACK 0xf00f
125 #define UNM_NIC_REG_DUMMY_BUF ( UNM_NIC_REG + 0x000fc )
126 #define UNM_NIC_REG_DUMMY_BUF_INIT 0
127 #define UNM_NIC_REG_XG_STATE_P3 ( UNM_NIC_REG + 0x00098 )
128 #define UNM_NIC_REG_XG_STATE_P3_LINK( port, state_p3 ) \
129 ( ( (state_p3) >> ( (port) * 4 ) ) & 0x0f )
130 #define UNM_NIC_REG_XG_STATE_P3_LINK_UP 0x01
131 #define UNM_NIC_REG_XG_STATE_P3_LINK_DOWN 0x02
132 #define UNM_NIC_REG_RCVPEG_STATE ( UNM_NIC_REG + 0x0013c )
133 #define UNM_NIC_REG_RCVPEG_STATE_INITIALIZED 0xff01
134 #define UNM_NIC_REG_SW_INT_MASK_0 ( UNM_NIC_REG + 0x001d8 )
135 #define UNM_NIC_REG_SW_INT_MASK_1 ( UNM_NIC_REG + 0x001e0 )
136 #define UNM_NIC_REG_SW_INT_MASK_2 ( UNM_NIC_REG + 0x001e4 )
137 #define UNM_NIC_REG_SW_INT_MASK_3 ( UNM_NIC_REG + 0x001e8 )
139 #define UNM_CRB_ROMUSB UNM_CRB_BASE ( UNM_CRB_BLK_ROMUSB )
141 #define UNM_ROMUSB_GLB ( UNM_CRB_ROMUSB + 0x00000 )
142 #define UNM_ROMUSB_GLB_STATUS ( UNM_ROMUSB_GLB + 0x00004 )
143 #define UNM_ROMUSB_GLB_STATUS_ROM_DONE ( 1 << 1 )
144 #define UNM_ROMUSB_GLB_SW_RESET ( UNM_ROMUSB_GLB + 0x00008 )
145 #define UNM_ROMUSB_GLB_SW_RESET_MAGIC 0x0080000fUL
146 #define UNM_ROMUSB_GLB_PEGTUNE_DONE ( UNM_ROMUSB_GLB + 0x0005c )
147 #define UNM_ROMUSB_GLB_PEGTUNE_DONE_MAGIC 0x31
149 #define UNM_ROMUSB_ROM ( UNM_CRB_ROMUSB + 0x10000 )
150 #define UNM_ROMUSB_ROM_INSTR_OPCODE ( UNM_ROMUSB_ROM + 0x00004 )
151 #define UNM_ROMUSB_ROM_ADDRESS ( UNM_ROMUSB_ROM + 0x00008 )
152 #define UNM_ROMUSB_ROM_WDATA ( UNM_ROMUSB_ROM + 0x0000c )
153 #define UNM_ROMUSB_ROM_ABYTE_CNT ( UNM_ROMUSB_ROM + 0x00010 )
154 #define UNM_ROMUSB_ROM_DUMMY_BYTE_CNT ( UNM_ROMUSB_ROM + 0x00014 )
155 #define UNM_ROMUSB_ROM_RDATA ( UNM_ROMUSB_ROM + 0x00018 )
157 #define UNM_CRB_TEST UNM_CRB_BASE ( UNM_CRB_BLK_TEST )
159 #define UNM_TEST_CONTROL ( UNM_CRB_TEST + 0x00090 )
160 #define UNM_TEST_CONTROL_START 0x01
161 #define UNM_TEST_CONTROL_ENABLE 0x02
162 #define UNM_TEST_CONTROL_BUSY 0x08
163 #define UNM_TEST_ADDR_LO ( UNM_CRB_TEST + 0x00094 )
164 #define UNM_TEST_ADDR_HI ( UNM_CRB_TEST + 0x00098 )
165 #define UNM_TEST_RDDATA_LO ( UNM_CRB_TEST + 0x000a8 )
166 #define UNM_TEST_RDDATA_HI ( UNM_CRB_TEST + 0x000ac )
168 #define UNM_CRB_PEG_0 UNM_CRB_BASE ( UNM_CRB_BLK_PEG_0 )
169 #define UNM_PEG_0_HALT_STATUS ( UNM_CRB_PEG_0 + 0x00030 )
170 #define UNM_PEG_0_HALT ( UNM_CRB_PEG_0 + 0x0003c )
172 #define UNM_CRB_PEG_1 UNM_CRB_BASE ( UNM_CRB_BLK_PEG_1 )
173 #define UNM_PEG_1_HALT_STATUS ( UNM_CRB_PEG_1 + 0x00030 )
174 #define UNM_PEG_1_HALT ( UNM_CRB_PEG_1 + 0x0003c )
176 #define UNM_CRB_PEG_2 UNM_CRB_BASE ( UNM_CRB_BLK_PEG_2 )
177 #define UNM_PEG_2_HALT_STATUS ( UNM_CRB_PEG_2 + 0x00030 )
178 #define UNM_PEG_2_HALT ( UNM_CRB_PEG_2 + 0x0003c )
180 #define UNM_CRB_PEG_3 UNM_CRB_BASE ( UNM_CRB_BLK_PEG_3 )
181 #define UNM_PEG_3_HALT_STATUS ( UNM_CRB_PEG_3 + 0x00030 )
182 #define UNM_PEG_3_HALT ( UNM_CRB_PEG_3 + 0x0003c )
184 #define UNM_CRB_PEG_4 UNM_CRB_BASE ( UNM_CRB_BLK_PEG_4 )
185 #define UNM_PEG_4_HALT_STATUS ( UNM_CRB_PEG_4 + 0x00030 )
186 #define UNM_PEG_4_HALT ( UNM_CRB_PEG_4 + 0x0003c )
188 /******************************************************************************
194 /* Board configuration */
196 #define UNM_BRDCFG_START 0x4000
198 struct unm_board_info {
199 uint32_t header_version;
213 uint32_t mac_addr_lo_0;
214 uint32_t mac_addr_lo_1;
215 uint32_t mac_addr_lo_2;
216 uint32_t mac_addr_lo_3;
217 uint32_t mn_sync_mode;
218 uint32_t mn_sync_shift_cclk;
219 uint32_t mn_sync_shift_mclk;
221 uint32_t mn_crystal_freq;
227 uint32_t mn_rd_latency_0;
228 uint32_t mn_rd_latency_1;
229 uint32_t mn_rd_latency_2;
230 uint32_t mn_rd_latency_3;
231 uint32_t mn_rd_latency_4;
232 uint32_t mn_rd_latency_5;
233 uint32_t mn_rd_latency_6;
234 uint32_t mn_rd_latency_7;
235 uint32_t mn_rd_latency_8;
236 uint32_t mn_dll_val[18];
237 uint32_t mn_mode_reg;
238 uint32_t mn_ext_mode_reg;
239 uint32_t mn_timing_0;
240 uint32_t mn_timing_1;
241 uint32_t mn_timing_2;
242 uint32_t sn_sync_mode;
246 uint32_t sn_crystal_freq;
251 uint32_t sn_rd_latency;
252 uint32_t mac_addr_hi_0;
253 uint32_t mac_addr_hi_1;
254 uint32_t mac_addr_hi_2;
255 uint32_t mac_addr_hi_3;
258 uint32_t mn_dll_override;
261 #define UNM_BDINFO_VERSION 1
262 #define UNM_BRDTYPE_P3_HMEZ 0x0022
263 #define UNM_BRDTYPE_P3_10G_CX4_LP 0x0023
264 #define UNM_BRDTYPE_P3_4_GB 0x0024
265 #define UNM_BRDTYPE_P3_IMEZ 0x0025
266 #define UNM_BRDTYPE_P3_10G_SFP_PLUS 0x0026
267 #define UNM_BRDTYPE_P3_10000_BASE_T 0x0027
268 #define UNM_BRDTYPE_P3_XG_LOM 0x0028
269 #define UNM_BRDTYPE_P3_4_GB_MM 0x0029
270 #define UNM_BRDTYPE_P3_10G_CX4 0x0031
271 #define UNM_BRDTYPE_P3_10G_XFP 0x0032
272 #define UNM_BDINFO_MAGIC 0x12345678
274 /* User defined region */
276 #define UNM_USER_START 0x3e8000
278 #define UNM_FLASH_NUM_PORTS 4
279 #define UNM_FLASH_NUM_MAC_PER_PORT 32
281 struct unm_user_info {
282 uint8_t flash_md5[16 * 64];
283 uint32_t bootld_version;
284 uint32_t bootld_size;
285 uint32_t image_version;
287 uint32_t primary_status;
288 uint32_t secondary_present;
289 /* MAC address , 4 ports, 32 address per port */
290 uint64_t mac_addr[UNM_FLASH_NUM_PORTS * UNM_FLASH_NUM_MAC_PER_PORT];
292 uint8_t serial_num[32];
293 uint32_t bios_version;
295 uint32_t vlan_tag[UNM_FLASH_NUM_PORTS];
298 #endif /* _PHANTOM_H */