Merge branch 'wireless-2.6' of git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi...
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / net / sfc / mcdi_pcol.h
blob2a85360a46f0e892aa11b0641e5445da0989285c
1 /****************************************************************************
2 * Driver for Solarflare Solarstorm network controllers and boards
3 * Copyright 2009 Solarflare Communications Inc.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published
7 * by the Free Software Foundation, incorporated herein by reference.
8 */
11 #ifndef MCDI_PCOL_H
12 #define MCDI_PCOL_H
14 /* Values to be written into FMCR_CZ_RESET_STATE_REG to control boot. */
15 /* Power-on reset state */
16 #define MC_FW_STATE_POR (1)
17 /* If this is set in MC_RESET_STATE_REG then it should be
18 * possible to jump into IMEM without loading code from flash. */
19 #define MC_FW_WARM_BOOT_OK (2)
20 /* The MC main image has started to boot. */
21 #define MC_FW_STATE_BOOTING (4)
22 /* The Scheduler has started. */
23 #define MC_FW_STATE_SCHED (8)
25 /* Values to be written to the per-port status dword in shared
26 * memory on reboot and assert */
27 #define MC_STATUS_DWORD_REBOOT (0xb007b007)
28 #define MC_STATUS_DWORD_ASSERT (0xdeaddead)
30 /* The current version of the MCDI protocol.
32 * Note that the ROM burnt into the card only talks V0, so at the very
33 * least every driver must support version 0 and MCDI_PCOL_VERSION
35 #define MCDI_PCOL_VERSION 1
37 /**
38 * MCDI version 1
40 * Each MCDI request starts with an MCDI_HEADER, which is a 32byte
41 * structure, filled in by the client.
43 * 0 7 8 16 20 22 23 24 31
44 * | CODE | R | LEN | SEQ | Rsvd | E | R | XFLAGS |
45 * | | |
46 * | | \--- Response
47 * | \------- Error
48 * \------------------------------ Resync (always set)
50 * The client writes it's request into MC shared memory, and rings the
51 * doorbell. Each request is completed by either by the MC writting
52 * back into shared memory, or by writting out an event.
54 * All MCDI commands support completion by shared memory response. Each
55 * request may also contain additional data (accounted for by HEADER.LEN),
56 * and some response's may also contain additional data (again, accounted
57 * for by HEADER.LEN).
59 * Some MCDI commands support completion by event, in which any associated
60 * response data is included in the event.
62 * The protocol requires one response to be delivered for every request, a
63 * request should not be sent unless the response for the previous request
64 * has been received (either by polling shared memory, or by receiving
65 * an event).
68 /** Request/Response structure */
69 #define MCDI_HEADER_OFST 0
70 #define MCDI_HEADER_CODE_LBN 0
71 #define MCDI_HEADER_CODE_WIDTH 7
72 #define MCDI_HEADER_RESYNC_LBN 7
73 #define MCDI_HEADER_RESYNC_WIDTH 1
74 #define MCDI_HEADER_DATALEN_LBN 8
75 #define MCDI_HEADER_DATALEN_WIDTH 8
76 #define MCDI_HEADER_SEQ_LBN 16
77 #define MCDI_HEADER_RSVD_LBN 20
78 #define MCDI_HEADER_RSVD_WIDTH 2
79 #define MCDI_HEADER_SEQ_WIDTH 4
80 #define MCDI_HEADER_ERROR_LBN 22
81 #define MCDI_HEADER_ERROR_WIDTH 1
82 #define MCDI_HEADER_RESPONSE_LBN 23
83 #define MCDI_HEADER_RESPONSE_WIDTH 1
84 #define MCDI_HEADER_XFLAGS_LBN 24
85 #define MCDI_HEADER_XFLAGS_WIDTH 8
86 /* Request response using event */
87 #define MCDI_HEADER_XFLAGS_EVREQ 0x01
89 /* Maximum number of payload bytes */
90 #define MCDI_CTL_SDU_LEN_MAX 0xfc
92 /* The MC can generate events for two reasons:
93 * - To complete a shared memory request if XFLAGS_EVREQ was set
94 * - As a notification (link state, i2c event), controlled
95 * via MC_CMD_LOG_CTRL
97 * Both events share a common structure:
99 * 0 32 33 36 44 52 60
100 * | Data | Cont | Level | Src | Code | Rsvd |
102 * \ There is another event pending in this notification
104 * If Code==CMDDONE, then the fields are further interpreted as:
106 * - LEVEL==INFO Command succeded
107 * - LEVEL==ERR Command failed
109 * 0 8 16 24 32
110 * | Seq | Datalen | Errno | Rsvd |
112 * These fields are taken directly out of the standard MCDI header, i.e.,
113 * LEVEL==ERR, Datalen == 0 => Reboot
115 * Events can be squirted out of the UART (using LOG_CTRL) without a
116 * MCDI header. An event can be distinguished from a MCDI response by
117 * examining the first byte which is 0xc0. This corresponds to the
118 * non-existent MCDI command MC_CMD_DEBUG_LOG.
120 * 0 7 8
121 * | command | Resync | = 0xc0
123 * Since the event is written in big-endian byte order, this works
124 * providing bits 56-63 of the event are 0xc0.
126 * 56 60 63
127 * | Rsvd | Code | = 0xc0
129 * Which means for convenience the event code is 0xc for all MC
130 * generated events.
132 #define FSE_AZ_EV_CODE_MCDI_EVRESPONSE 0xc
134 #define MCDI_EVENT_DATA_LBN 0
135 #define MCDI_EVENT_DATA_WIDTH 32
136 #define MCDI_EVENT_CONT_LBN 32
137 #define MCDI_EVENT_CONT_WIDTH 1
138 #define MCDI_EVENT_LEVEL_LBN 33
139 #define MCDI_EVENT_LEVEL_WIDTH 3
140 #define MCDI_EVENT_LEVEL_INFO (0)
141 #define MCDI_EVENT_LEVEL_WARN (1)
142 #define MCDI_EVENT_LEVEL_ERR (2)
143 #define MCDI_EVENT_LEVEL_FATAL (3)
144 #define MCDI_EVENT_SRC_LBN 36
145 #define MCDI_EVENT_SRC_WIDTH 8
146 #define MCDI_EVENT_CODE_LBN 44
147 #define MCDI_EVENT_CODE_WIDTH 8
148 #define MCDI_EVENT_CODE_BADSSERT (1)
149 #define MCDI_EVENT_CODE_PMNOTICE (2)
150 #define MCDI_EVENT_CODE_CMDDONE (3)
151 #define MCDI_EVENT_CMDDONE_SEQ_LBN 0
152 #define MCDI_EVENT_CMDDONE_SEQ_WIDTH 8
153 #define MCDI_EVENT_CMDDONE_DATALEN_LBN 8
154 #define MCDI_EVENT_CMDDONE_DATALEN_WIDTH 8
155 #define MCDI_EVENT_CMDDONE_ERRNO_LBN 16
156 #define MCDI_EVENT_CMDDONE_ERRNO_WIDTH 8
157 #define MCDI_EVENT_CODE_LINKCHANGE (4)
158 #define MCDI_EVENT_LINKCHANGE_LP_CAP_LBN 0
159 #define MCDI_EVENT_LINKCHANGE_LP_CAP_WIDTH 16
160 #define MCDI_EVENT_LINKCHANGE_SPEED_LBN 16
161 #define MCDI_EVENT_LINKCHANGE_SPEED_WIDTH 4
162 #define MCDI_EVENT_LINKCHANGE_SPEED_100M 1
163 #define MCDI_EVENT_LINKCHANGE_SPEED_1G 2
164 #define MCDI_EVENT_LINKCHANGE_SPEED_10G 3
165 #define MCDI_EVENT_LINKCHANGE_FCNTL_LBN 20
166 #define MCDI_EVENT_LINKCHANGE_FCNTL_WIDTH 4
167 #define MCDI_EVENT_LINKCHANGE_LINK_FLAGS_LBN 24
168 #define MCDI_EVENT_LINKCHANGE_LINK_FLAGS_WIDTH 8
169 #define MCDI_EVENT_CODE_SENSOREVT (5)
170 #define MCDI_EVENT_SENSOREVT_MONITOR_LBN 0
171 #define MCDI_EVENT_SENSOREVT_MONITOR_WIDTH 8
172 #define MCDI_EVENT_SENSOREVT_STATE_LBN 8
173 #define MCDI_EVENT_SENSOREVT_STATE_WIDTH 8
174 #define MCDI_EVENT_SENSOREVT_VALUE_LBN 16
175 #define MCDI_EVENT_SENSOREVT_VALUE_WIDTH 16
176 #define MCDI_EVENT_CODE_SCHEDERR (6)
177 #define MCDI_EVENT_CODE_REBOOT (7)
178 #define MCDI_EVENT_CODE_MAC_STATS_DMA (8)
179 #define MCDI_EVENT_MAC_STATS_DMA_GENERATION_LBN 0
180 #define MCDI_EVENT_MAC_STATS_DMA_GENERATION_WIDTH 32
182 /* Non-existent command target */
183 #define MC_CMD_ERR_ENOENT 2
184 /* assert() has killed the MC */
185 #define MC_CMD_ERR_EINTR 4
186 /* Caller does not hold required locks */
187 #define MC_CMD_ERR_EACCES 13
188 /* Resource is currently unavailable (e.g. lock contention) */
189 #define MC_CMD_ERR_EBUSY 16
190 /* Invalid argument to target */
191 #define MC_CMD_ERR_EINVAL 22
192 /* Non-recursive resource is already acquired */
193 #define MC_CMD_ERR_EDEADLK 35
194 /* Operation not implemented */
195 #define MC_CMD_ERR_ENOSYS 38
196 /* Operation timed out */
197 #define MC_CMD_ERR_ETIME 62
199 #define MC_CMD_ERR_CODE_OFST 0
202 /* MC_CMD_READ32: (debug, variadic out)
203 * Read multiple 32byte words from MC memory
205 #define MC_CMD_READ32 0x01
206 #define MC_CMD_READ32_IN_LEN 8
207 #define MC_CMD_READ32_IN_ADDR_OFST 0
208 #define MC_CMD_READ32_IN_NUMWORDS_OFST 4
209 #define MC_CMD_READ32_OUT_LEN(_numwords) \
210 (4 * (_numwords))
211 #define MC_CMD_READ32_OUT_BUFFER_OFST 0
213 /* MC_CMD_WRITE32: (debug, variadic in)
214 * Write multiple 32byte words to MC memory
216 #define MC_CMD_WRITE32 0x02
217 #define MC_CMD_WRITE32_IN_LEN(_numwords) (((_numwords) * 4) + 4)
218 #define MC_CMD_WRITE32_IN_ADDR_OFST 0
219 #define MC_CMD_WRITE32_IN_BUFFER_OFST 4
220 #define MC_CMD_WRITE32_OUT_LEN 0
222 /* MC_CMD_COPYCODE: (debug)
223 * Copy MC code between two locations and jump
225 #define MC_CMD_COPYCODE 0x03
226 #define MC_CMD_COPYCODE_IN_LEN 16
227 #define MC_CMD_COPYCODE_IN_SRC_ADDR_OFST 0
228 #define MC_CMD_COPYCODE_IN_DEST_ADDR_OFST 4
229 #define MC_CMD_COPYCODE_IN_NUMWORDS_OFST 8
230 #define MC_CMD_COPYCODE_IN_JUMP_OFST 12
231 /* Control should return to the caller rather than jumping */
232 #define MC_CMD_COPYCODE_JUMP_NONE 1
233 #define MC_CMD_COPYCODE_OUT_LEN 0
235 /* MC_CMD_SET_FUNC: (debug)
236 * Select function for function-specific commands.
238 #define MC_CMD_SET_FUNC 0x04
239 #define MC_CMD_SET_FUNC_IN_LEN 4
240 #define MC_CMD_SET_FUNC_IN_FUNC_OFST 0
241 #define MC_CMD_SET_FUNC_OUT_LEN 0
243 /* MC_CMD_GET_BOOT_STATUS:
244 * Get the instruction address from which the MC booted.
246 #define MC_CMD_GET_BOOT_STATUS 0x05
247 #define MC_CMD_GET_BOOT_STATUS_IN_LEN 0
248 #define MC_CMD_GET_BOOT_STATUS_OUT_LEN 8
249 #define MC_CMD_GET_BOOT_STATUS_OUT_BOOT_OFFSET_OFST 0
250 #define MC_CMD_GET_BOOT_STATUS_OUT_FLAGS_OFST 4
251 /* Reboot caused by watchdog */
252 #define MC_CMD_GET_BOOT_STATUS_FLAGS_WATCHDOG_LBN (0)
253 #define MC_CMD_GET_BOOT_STATUS_FLAGS_WATCHDOG_WIDTH (1)
254 /* MC booted from primary flash partition */
255 #define MC_CMD_GET_BOOT_STATUS_FLAGS_PRIMARY_LBN (1)
256 #define MC_CMD_GET_BOOT_STATUS_FLAGS_PRIMARY_WIDTH (1)
257 /* MC booted from backup flash partition */
258 #define MC_CMD_GET_BOOT_STATUS_FLAGS_BACKUP_LBN (2)
259 #define MC_CMD_GET_BOOT_STATUS_FLAGS_BACKUP_WIDTH (1)
261 /* MC_CMD_GET_ASSERTS: (debug, variadic out)
262 * Get (and optionally clear) the current assertion status.
264 * Only OUT.GLOBAL_FLAGS is guaranteed to exist in the completion
265 * payload. The other fields will only be present if
266 * OUT.GLOBAL_FLAGS != NO_FAILS
268 #define MC_CMD_GET_ASSERTS 0x06
269 #define MC_CMD_GET_ASSERTS_IN_LEN 4
270 #define MC_CMD_GET_ASSERTS_IN_CLEAR_OFST 0
271 #define MC_CMD_GET_ASSERTS_OUT_LEN 140
272 /* Assertion status flag */
273 #define MC_CMD_GET_ASSERTS_OUT_GLOBAL_FLAGS_OFST 0
274 /*! No assertions have failed. */
275 #define MC_CMD_GET_ASSERTS_FLAGS_NO_FAILS 1
276 /*! A system-level assertion has failed. */
277 #define MC_CMD_GET_ASSERTS_FLAGS_SYS_FAIL 2
278 /*! A thread-level assertion has failed. */
279 #define MC_CMD_GET_ASSERTS_FLAGS_THR_FAIL 3
280 /*! The system was reset by the watchdog. */
281 #define MC_CMD_GET_ASSERTS_FLAGS_WDOG_FIRED 4
282 /* Failing PC value */
283 #define MC_CMD_GET_ASSERTS_OUT_SAVED_PC_OFFS_OFST 4
284 /* Saved GP regs */
285 #define MC_CMD_GET_ASSERTS_OUT_GP_REGS_OFFS_OFST 8
286 #define MC_CMD_GET_ASSERTS_OUT_GP_REGS_LEN 124
287 /* Failing thread address */
288 #define MC_CMD_GET_ASSERTS_OUT_THREAD_OFFS_OFST 132
290 /* MC_CMD_LOG_CTRL:
291 * Determine the output stream for various events and messages
293 #define MC_CMD_LOG_CTRL 0x07
294 #define MC_CMD_LOG_CTRL_IN_LEN 8
295 #define MC_CMD_LOG_CTRL_IN_LOG_DEST_OFST 0
296 #define MC_CMD_LOG_CTRL_IN_LOG_DEST_UART (1)
297 #define MC_CMD_LOG_CTRL_IN_LOG_DEST_EVQ (2)
298 #define MC_CMD_LOG_CTRL_IN_LOG_DEST_EVQ_OFST 4
299 #define MC_CMD_LOG_CTRL_OUT_LEN 0
301 /* MC_CMD_GET_VERSION:
302 * Get version information about the MC firmware
304 #define MC_CMD_GET_VERSION 0x08
305 #define MC_CMD_GET_VERSION_IN_LEN 0
306 #define MC_CMD_GET_VERSION_V0_OUT_LEN 4
307 #define MC_CMD_GET_VERSION_V1_OUT_LEN 32
308 #define MC_CMD_GET_VERSION_OUT_FIRMWARE_OFST 0
309 /* Reserved version number to indicate "any" version. */
310 #define MC_CMD_GET_VERSION_OUT_FIRMWARE_ANY 0xffffffff
311 /* The version response of a boot ROM awaiting rescue */
312 #define MC_CMD_GET_VERSION_OUT_FIRMWARE_BOOTROM 0xb0070000
313 #define MC_CMD_GET_VERSION_V1_OUT_PCOL_OFST 4
314 /* 128bit mask of functions supported by the current firmware */
315 #define MC_CMD_GET_VERSION_V1_OUT_SUPPORTED_FUNCS_OFST 8
316 /* The command set exported by the boot ROM (MCDI v0) */
317 #define MC_CMD_GET_VERSION_V0_SUPPORTED_FUNCS { \
318 (1 << MC_CMD_READ32) | \
319 (1 << MC_CMD_WRITE32) | \
320 (1 << MC_CMD_COPYCODE) | \
321 (1 << MC_CMD_GET_VERSION), \
322 0, 0, 0 }
323 #define MC_CMD_GET_VERSION_OUT_VERSION_OFST 24
325 /* Vectors in the boot ROM */
326 /* Point to the copycode entry point. */
327 #define MC_BOOTROM_COPYCODE_VEC (0x7f4)
328 /* Points to the recovery mode entry point. */
329 #define MC_BOOTROM_NOFLASH_VEC (0x7f8)
331 /* Test execution limits */
332 #define MC_TESTEXEC_VARIANT_COUNT 16
333 #define MC_TESTEXEC_RESULT_COUNT 7
335 /* MC_CMD_SET_TESTVARS: (debug, variadic in)
336 * Write variant words for test.
338 * The user supplies a bitmap of the variants they wish to set.
339 * They must ensure that IN.LEN >= 4 + 4 * ffs(BITMAP)
341 #define MC_CMD_SET_TESTVARS 0x09
342 #define MC_CMD_SET_TESTVARS_IN_LEN(_numwords) \
343 (4 + 4*(_numwords))
344 #define MC_CMD_SET_TESTVARS_IN_ARGS_BITMAP_OFST 0
345 /* Up to MC_TESTEXEC_VARIANT_COUNT of 32byte words start here */
346 #define MC_CMD_SET_TESTVARS_IN_ARGS_BUFFER_OFST 4
347 #define MC_CMD_SET_TESTVARS_OUT_LEN 0
349 /* MC_CMD_GET_TESTRCS: (debug, variadic out)
350 * Return result words from test.
352 #define MC_CMD_GET_TESTRCS 0x0a
353 #define MC_CMD_GET_TESTRCS_IN_LEN 4
354 #define MC_CMD_GET_TESTRCS_IN_NUMWORDS_OFST 0
355 #define MC_CMD_GET_TESTRCS_OUT_LEN(_numwords) \
356 (4 * (_numwords))
357 #define MC_CMD_GET_TESTRCS_OUT_BUFFER_OFST 0
359 /* MC_CMD_RUN_TEST: (debug)
360 * Run the test exported by this firmware image
362 #define MC_CMD_RUN_TEST 0x0b
363 #define MC_CMD_RUN_TEST_IN_LEN 0
364 #define MC_CMD_RUN_TEST_OUT_LEN 0
366 /* MC_CMD_CSR_READ32: (debug, variadic out)
367 * Read 32bit words from the indirect memory map
369 #define MC_CMD_CSR_READ32 0x0c
370 #define MC_CMD_CSR_READ32_IN_LEN 12
371 #define MC_CMD_CSR_READ32_IN_ADDR_OFST 0
372 #define MC_CMD_CSR_READ32_IN_STEP_OFST 4
373 #define MC_CMD_CSR_READ32_IN_NUMWORDS_OFST 8
374 #define MC_CMD_CSR_READ32_OUT_LEN(_numwords) \
375 (((_numwords) * 4) + 4)
376 /* IN.NUMWORDS of 32bit words start here */
377 #define MC_CMD_CSR_READ32_OUT_BUFFER_OFST 0
378 #define MC_CMD_CSR_READ32_OUT_IREG_STATUS_OFST(_numwords) \
379 ((_numwords) * 4)
381 /* MC_CMD_CSR_WRITE32: (debug, variadic in)
382 * Write 32bit dwords to the indirect memory map
384 #define MC_CMD_CSR_WRITE32 0x0d
385 #define MC_CMD_CSR_WRITE32_IN_LEN(_numwords) \
386 (((_numwords) * 4) + 8)
387 #define MC_CMD_CSR_WRITE32_IN_ADDR_OFST 0
388 #define MC_CMD_CSR_WRITE32_IN_STEP_OFST 4
389 /* Multiple 32bit words of data to write start here */
390 #define MC_CMD_CSR_WRITE32_IN_BUFFER_OFST 8
391 #define MC_CMD_CSR_WRITE32_OUT_LEN 4
392 #define MC_CMD_CSR_WRITE32_OUT_STATUS_OFST 0
394 /* MC_CMD_JTAG_WORK: (debug, fpga only)
395 * Process JTAG work buffer for RBF acceleration.
397 * Host: bit count, (up to) 32 words of data to clock out to JTAG
398 * (bits 1,0=TMS,TDO for first bit; bits 3,2=TMS,TDO for second bit, etc.)
399 * MC: bit count, (up to) 32 words of data clocked in from JTAG
400 * (bit 0=TDI for first bit, bit 1=TDI for second bit, etc.; [31:16] unused)
402 #define MC_CMD_JTAG_WORK 0x0e
404 /* MC_CMD_STACKINFO: (debug, variadic out)
405 * Get stack information
407 * Host: nothing
408 * MC: (thread ptr, stack size, free space) for each thread in system
410 #define MC_CMD_STACKINFO 0x0f
412 /* MC_CMD_MDIO_READ:
413 * MDIO register read
415 #define MC_CMD_MDIO_READ 0x10
416 #define MC_CMD_MDIO_READ_IN_LEN 16
417 #define MC_CMD_MDIO_READ_IN_BUS_OFST 0
418 #define MC_CMD_MDIO_READ_IN_PRTAD_OFST 4
419 #define MC_CMD_MDIO_READ_IN_DEVAD_OFST 8
420 #define MC_CMD_MDIO_READ_IN_ADDR_OFST 12
421 #define MC_CMD_MDIO_READ_OUT_LEN 8
422 #define MC_CMD_MDIO_READ_OUT_VALUE_OFST 0
423 #define MC_CMD_MDIO_READ_OUT_STATUS_OFST 4
425 /* MC_CMD_MDIO_WRITE:
426 * MDIO register write
428 #define MC_CMD_MDIO_WRITE 0x11
429 #define MC_CMD_MDIO_WRITE_IN_LEN 20
430 #define MC_CMD_MDIO_WRITE_IN_BUS_OFST 0
431 #define MC_CMD_MDIO_WRITE_IN_PRTAD_OFST 4
432 #define MC_CMD_MDIO_WRITE_IN_DEVAD_OFST 8
433 #define MC_CMD_MDIO_WRITE_IN_ADDR_OFST 12
434 #define MC_CMD_MDIO_WRITE_IN_VALUE_OFST 16
435 #define MC_CMD_MDIO_WRITE_OUT_LEN 4
436 #define MC_CMD_MDIO_WRITE_OUT_STATUS_OFST 0
438 /* By default all the MCDI MDIO operations perform clause45 mode.
439 * If you want to use clause22 then set DEVAD = MC_CMD_MDIO_CLAUSE22.
441 #define MC_CMD_MDIO_CLAUSE22 32
443 /* There are two MDIO buses: one for the internal PHY, and one for external
444 * devices.
446 #define MC_CMD_MDIO_BUS_INTERNAL 0
447 #define MC_CMD_MDIO_BUS_EXTERNAL 1
449 /* The MDIO commands return the raw status bits from the MDIO block. A "good"
450 * transaction should have the DONE bit set and all other bits clear.
452 #define MC_CMD_MDIO_STATUS_GOOD 0x08
455 /* MC_CMD_DBI_WRITE: (debug)
456 * Write DBI register(s)
458 * Host: address, byte-enables (and VF selection, and cs2 flag),
459 * value [,address ...]
460 * MC: nothing
462 #define MC_CMD_DBI_WRITE 0x12
463 #define MC_CMD_DBI_WRITE_IN_LEN(_numwords) \
464 (12 * (_numwords))
465 #define MC_CMD_DBI_WRITE_IN_ADDRESS_OFST(_word) \
466 (((_word) * 12) + 0)
467 #define MC_CMD_DBI_WRITE_IN_BYTE_MASK_OFST(_word) \
468 (((_word) * 12) + 4)
469 #define MC_CMD_DBI_WRITE_IN_VALUE_OFST(_word) \
470 (((_word) * 12) + 8)
471 #define MC_CMD_DBI_WRITE_OUT_LEN 0
473 /* MC_CMD_DBI_READ: (debug)
474 * Read DBI register(s)
476 * Host: address, [,address ...]
477 * MC: value [,value ...]
478 * (note: this does not support reading from VFs, but is retained for backwards
479 * compatibility; see MC_CMD_DBI_READX below)
481 #define MC_CMD_DBI_READ 0x13
482 #define MC_CMD_DBI_READ_IN_LEN(_numwords) \
483 (4 * (_numwords))
484 #define MC_CMD_DBI_READ_OUT_LEN(_numwords) \
485 (4 * (_numwords))
487 /* MC_CMD_PORT_READ32: (debug)
488 * Read a 32-bit register from the indirect port register map.
490 * The port to access is implied by the Shared memory channel used.
492 #define MC_CMD_PORT_READ32 0x14
493 #define MC_CMD_PORT_READ32_IN_LEN 4
494 #define MC_CMD_PORT_READ32_IN_ADDR_OFST 0
495 #define MC_CMD_PORT_READ32_OUT_LEN 8
496 #define MC_CMD_PORT_READ32_OUT_VALUE_OFST 0
497 #define MC_CMD_PORT_READ32_OUT_STATUS_OFST 4
499 /* MC_CMD_PORT_WRITE32: (debug)
500 * Write a 32-bit register to the indirect port register map.
502 * The port to access is implied by the Shared memory channel used.
504 #define MC_CMD_PORT_WRITE32 0x15
505 #define MC_CMD_PORT_WRITE32_IN_LEN 8
506 #define MC_CMD_PORT_WRITE32_IN_ADDR_OFST 0
507 #define MC_CMD_PORT_WRITE32_IN_VALUE_OFST 4
508 #define MC_CMD_PORT_WRITE32_OUT_LEN 4
509 #define MC_CMD_PORT_WRITE32_OUT_STATUS_OFST 0
511 /* MC_CMD_PORT_READ128: (debug)
512 * Read a 128-bit register from indirect port register map
514 * The port to access is implied by the Shared memory channel used.
516 #define MC_CMD_PORT_READ128 0x16
517 #define MC_CMD_PORT_READ128_IN_LEN 4
518 #define MC_CMD_PORT_READ128_IN_ADDR_OFST 0
519 #define MC_CMD_PORT_READ128_OUT_LEN 20
520 #define MC_CMD_PORT_READ128_OUT_VALUE_OFST 0
521 #define MC_CMD_PORT_READ128_OUT_STATUS_OFST 16
523 /* MC_CMD_PORT_WRITE128: (debug)
524 * Write a 128-bit register to indirect port register map.
526 * The port to access is implied by the Shared memory channel used.
528 #define MC_CMD_PORT_WRITE128 0x17
529 #define MC_CMD_PORT_WRITE128_IN_LEN 20
530 #define MC_CMD_PORT_WRITE128_IN_ADDR_OFST 0
531 #define MC_CMD_PORT_WRITE128_IN_VALUE_OFST 4
532 #define MC_CMD_PORT_WRITE128_OUT_LEN 4
533 #define MC_CMD_PORT_WRITE128_OUT_STATUS_OFST 0
535 /* MC_CMD_GET_BOARD_CFG:
536 * Returns the MC firmware configuration structure
538 * The FW_SUBTYPE_LIST contains a 16-bit value for each of the 12 types of
539 * NVRAM area. The values are defined in the firmware/mc/platform/<xxx>.c file
540 * for a specific board type, but otherwise have no meaning to the MC; they
541 * are used by the driver to manage selection of appropriate firmware updates.
543 #define MC_CMD_GET_BOARD_CFG 0x18
544 #define MC_CMD_GET_BOARD_CFG_IN_LEN 0
545 #define MC_CMD_GET_BOARD_CFG_OUT_LEN 96
546 #define MC_CMD_GET_BOARD_CFG_OUT_BOARD_TYPE_OFST 0
547 #define MC_CMD_GET_BOARD_CFG_OUT_BOARD_NAME_OFST 4
548 #define MC_CMD_GET_BOARD_CFG_OUT_BOARD_NAME_LEN 32
549 #define MC_CMD_GET_BOARD_CFG_OUT_CAPABILITIES_PORT0_OFST 36
550 #define MC_CMD_GET_BOARD_CFG_OUT_CAPABILITIES_PORT1_OFST 40
551 #define MC_CMD_GET_BOARD_CFG_OUT_MAC_ADDR_BASE_PORT0_OFST 44
552 #define MC_CMD_GET_BOARD_CFG_OUT_MAC_ADDR_BASE_PORT0_LEN 6
553 #define MC_CMD_GET_BOARD_CFG_OUT_MAC_ADDR_BASE_PORT1_OFST 50
554 #define MC_CMD_GET_BOARD_CFG_OUT_MAC_ADDR_BASE_PORT1_LEN 6
555 #define MC_CMD_GET_BOARD_CFG_OUT_MAC_COUNT_PORT0_OFST 56
556 #define MC_CMD_GET_BOARD_CFG_OUT_MAC_COUNT_PORT1_OFST 60
557 #define MC_CMD_GET_BOARD_CFG_OUT_MAC_STRIDE_PORT0_OFST 64
558 #define MC_CMD_GET_BOARD_CFG_OUT_MAC_STRIDE_PORT1_OFST 68
559 #define MC_CMD_GET_BOARD_CFG_OUT_FW_SUBTYPE_LIST_OFST 72
560 #define MC_CMD_GET_BOARD_CFG_OUT_FW_SUBTYPE_LIST_LEN 24
562 /* MC_CMD_DBI_READX: (debug)
563 * Read DBI register(s) -- extended functionality
565 * Host: vf selection, address, [,vf selection ...]
566 * MC: value [,value ...]
568 #define MC_CMD_DBI_READX 0x19
569 #define MC_CMD_DBI_READX_IN_LEN(_numwords) \
570 (8*(_numwords))
571 #define MC_CMD_DBI_READX_OUT_LEN(_numwords) \
572 (4*(_numwords))
574 /* MC_CMD_SET_RAND_SEED:
575 * Set the 16byte seed for the MC psuedo-random generator
577 #define MC_CMD_SET_RAND_SEED 0x1a
578 #define MC_CMD_SET_RAND_SEED_IN_LEN 16
579 #define MC_CMD_SET_RAND_SEED_IN_SEED_OFST 0
580 #define MC_CMD_SET_RAND_SEED_OUT_LEN 0
582 /* MC_CMD_LTSSM_HIST: (debug)
583 * Retrieve the history of the LTSSM, if the build supports it.
585 * Host: nothing
586 * MC: variable number of LTSSM values, as bytes
587 * The history is read-to-clear.
589 #define MC_CMD_LTSSM_HIST 0x1b
591 /* MC_CMD_DRV_ATTACH:
592 * Inform MCPU that this port is managed on the host (i.e. driver active)
594 #define MC_CMD_DRV_ATTACH 0x1c
595 #define MC_CMD_DRV_ATTACH_IN_LEN 8
596 #define MC_CMD_DRV_ATTACH_IN_NEW_STATE_OFST 0
597 #define MC_CMD_DRV_ATTACH_IN_UPDATE_OFST 4
598 #define MC_CMD_DRV_ATTACH_OUT_LEN 4
599 #define MC_CMD_DRV_ATTACH_OUT_OLD_STATE_OFST 0
601 /* MC_CMD_NCSI_PROD: (debug)
602 * Trigger an NC-SI event (and possibly an AEN in response)
604 #define MC_CMD_NCSI_PROD 0x1d
605 #define MC_CMD_NCSI_PROD_IN_LEN 4
606 #define MC_CMD_NCSI_PROD_IN_EVENTS_OFST 0
607 #define MC_CMD_NCSI_PROD_LINKCHANGE_LBN 0
608 #define MC_CMD_NCSI_PROD_LINKCHANGE_WIDTH 1
609 #define MC_CMD_NCSI_PROD_RESET_LBN 1
610 #define MC_CMD_NCSI_PROD_RESET_WIDTH 1
611 #define MC_CMD_NCSI_PROD_DRVATTACH_LBN 2
612 #define MC_CMD_NCSI_PROD_DRVATTACH_WIDTH 1
613 #define MC_CMD_NCSI_PROD_OUT_LEN 0
615 /* Enumeration */
616 #define MC_CMD_NCSI_PROD_LINKCHANGE 0
617 #define MC_CMD_NCSI_PROD_RESET 1
618 #define MC_CMD_NCSI_PROD_DRVATTACH 2
620 /* MC_CMD_DEVEL: (debug)
621 * Reserved for development
623 #define MC_CMD_DEVEL 0x1e
625 /* MC_CMD_SHMUART: (debug)
626 * Route UART output to circular buffer in shared memory instead.
628 #define MC_CMD_SHMUART 0x1f
629 #define MC_CMD_SHMUART_IN_FLAG_OFST 0
630 #define MC_CMD_SHMUART_IN_LEN 4
631 #define MC_CMD_SHMUART_OUT_LEN 0
633 /* MC_CMD_PORT_RESET:
634 * Generic per-port reset. There is no equivalent for per-board reset.
636 * Locks required: None
637 * Return code: 0, ETIME
639 #define MC_CMD_PORT_RESET 0x20
640 #define MC_CMD_PORT_RESET_IN_LEN 0
641 #define MC_CMD_PORT_RESET_OUT_LEN 0
643 /* MC_CMD_RESOURCE_LOCK:
644 * Generic resource lock/unlock interface.
646 * Locks required: None
647 * Return code: 0,
648 * EBUSY (if trylock is contended by other port),
649 * EDEADLK (if trylock is already acquired by this port)
650 * EINVAL (if unlock doesn't own the lock)
652 #define MC_CMD_RESOURCE_LOCK 0x21
653 #define MC_CMD_RESOURCE_LOCK_IN_LEN 8
654 #define MC_CMD_RESOURCE_LOCK_IN_ACTION_OFST 0
655 #define MC_CMD_RESOURCE_LOCK_ACTION_TRYLOCK 1
656 #define MC_CMD_RESOURCE_LOCK_ACTION_UNLOCK 0
657 #define MC_CMD_RESOURCE_LOCK_IN_RESOURCE_OFST 4
658 #define MC_CMD_RESOURCE_LOCK_I2C 2
659 #define MC_CMD_RESOURCE_LOCK_PHY 3
660 #define MC_CMD_RESOURCE_LOCK_OUT_LEN 0
662 /* MC_CMD_SPI_COMMAND: (variadic in, variadic out)
663 * Read/Write to/from the SPI device.
665 * Locks required: SPI_LOCK
666 * Return code: 0, ETIME, EINVAL, EACCES (if SPI_LOCK is not held)
668 #define MC_CMD_SPI_COMMAND 0x22
669 #define MC_CMD_SPI_COMMAND_IN_LEN(_write_bytes) (12 + (_write_bytes))
670 #define MC_CMD_SPI_COMMAND_IN_ARGS_OFST 0
671 #define MC_CMD_SPI_COMMAND_IN_ARGS_ADDRESS_OFST 0
672 #define MC_CMD_SPI_COMMAND_IN_ARGS_READ_BYTES_OFST 4
673 #define MC_CMD_SPI_COMMAND_IN_ARGS_CHIP_SELECT_OFST 8
674 /* Data to write here */
675 #define MC_CMD_SPI_COMMAND_IN_WRITE_BUFFER_OFST 12
676 #define MC_CMD_SPI_COMMAND_OUT_LEN(_read_bytes) (_read_bytes)
677 /* Data read here */
678 #define MC_CMD_SPI_COMMAND_OUT_READ_BUFFER_OFST 0
680 /* MC_CMD_I2C_READ_WRITE: (variadic in, variadic out)
681 * Read/Write to/from the I2C bus.
683 * Locks required: I2C_LOCK
684 * Return code: 0, ETIME, EINVAL, EACCES (if I2C_LOCK is not held)
686 #define MC_CMD_I2C_RW 0x23
687 #define MC_CMD_I2C_RW_IN_LEN(_write_bytes) (8 + (_write_bytes))
688 #define MC_CMD_I2C_RW_IN_ARGS_OFST 0
689 #define MC_CMD_I2C_RW_IN_ARGS_ADDR_OFST 0
690 #define MC_CMD_I2C_RW_IN_ARGS_READ_BYTES_OFST 4
691 /* Data to write here */
692 #define MC_CMD_I2C_RW_IN_WRITE_BUFFER_OFSET 8
693 #define MC_CMD_I2C_RW_OUT_LEN(_read_bytes) (_read_bytes)
694 /* Data read here */
695 #define MC_CMD_I2C_RW_OUT_READ_BUFFER_OFST 0
697 /* Generic phy capability bitmask */
698 #define MC_CMD_PHY_CAP_10HDX_LBN 1
699 #define MC_CMD_PHY_CAP_10HDX_WIDTH 1
700 #define MC_CMD_PHY_CAP_10FDX_LBN 2
701 #define MC_CMD_PHY_CAP_10FDX_WIDTH 1
702 #define MC_CMD_PHY_CAP_100HDX_LBN 3
703 #define MC_CMD_PHY_CAP_100HDX_WIDTH 1
704 #define MC_CMD_PHY_CAP_100FDX_LBN 4
705 #define MC_CMD_PHY_CAP_100FDX_WIDTH 1
706 #define MC_CMD_PHY_CAP_1000HDX_LBN 5
707 #define MC_CMD_PHY_CAP_1000HDX_WIDTH 1
708 #define MC_CMD_PHY_CAP_1000FDX_LBN 6
709 #define MC_CMD_PHY_CAP_1000FDX_WIDTH 1
710 #define MC_CMD_PHY_CAP_10000FDX_LBN 7
711 #define MC_CMD_PHY_CAP_10000FDX_WIDTH 1
712 #define MC_CMD_PHY_CAP_PAUSE_LBN 8
713 #define MC_CMD_PHY_CAP_PAUSE_WIDTH 1
714 #define MC_CMD_PHY_CAP_ASYM_LBN 9
715 #define MC_CMD_PHY_CAP_ASYM_WIDTH 1
716 #define MC_CMD_PHY_CAP_AN_LBN 10
717 #define MC_CMD_PHY_CAP_AN_WIDTH 1
719 /* Generic loopback enumeration */
720 #define MC_CMD_LOOPBACK_NONE 0
721 #define MC_CMD_LOOPBACK_DATA 1
722 #define MC_CMD_LOOPBACK_GMAC 2
723 #define MC_CMD_LOOPBACK_XGMII 3
724 #define MC_CMD_LOOPBACK_XGXS 4
725 #define MC_CMD_LOOPBACK_XAUI 5
726 #define MC_CMD_LOOPBACK_GMII 6
727 #define MC_CMD_LOOPBACK_SGMII 7
728 #define MC_CMD_LOOPBACK_XGBR 8
729 #define MC_CMD_LOOPBACK_XFI 9
730 #define MC_CMD_LOOPBACK_XAUI_FAR 10
731 #define MC_CMD_LOOPBACK_GMII_FAR 11
732 #define MC_CMD_LOOPBACK_SGMII_FAR 12
733 #define MC_CMD_LOOPBACK_XFI_FAR 13
734 #define MC_CMD_LOOPBACK_GPHY 14
735 #define MC_CMD_LOOPBACK_PHYXS 15
736 #define MC_CMD_LOOPBACK_PCS 16
737 #define MC_CMD_LOOPBACK_PMAPMD 17
738 #define MC_CMD_LOOPBACK_XPORT 18
739 #define MC_CMD_LOOPBACK_XGMII_WS 19
740 #define MC_CMD_LOOPBACK_XAUI_WS 20
741 #define MC_CMD_LOOPBACK_XAUI_WS_FAR 21
742 #define MC_CMD_LOOPBACK_XAUI_WS_NEAR 22
743 #define MC_CMD_LOOPBACK_GMII_WS 23
744 #define MC_CMD_LOOPBACK_XFI_WS 24
745 #define MC_CMD_LOOPBACK_XFI_WS_FAR 25
746 #define MC_CMD_LOOPBACK_PHYXS_WS 26
748 /* Generic PHY statistics enumeration */
749 #define MC_CMD_OUI 0
750 #define MC_CMD_PMA_PMD_LINK_UP 1
751 #define MC_CMD_PMA_PMD_RX_FAULT 2
752 #define MC_CMD_PMA_PMD_TX_FAULT 3
753 #define MC_CMD_PMA_PMD_SIGNAL 4
754 #define MC_CMD_PMA_PMD_SNR_A 5
755 #define MC_CMD_PMA_PMD_SNR_B 6
756 #define MC_CMD_PMA_PMD_SNR_C 7
757 #define MC_CMD_PMA_PMD_SNR_D 8
758 #define MC_CMD_PCS_LINK_UP 9
759 #define MC_CMD_PCS_RX_FAULT 10
760 #define MC_CMD_PCS_TX_FAULT 11
761 #define MC_CMD_PCS_BER 12
762 #define MC_CMD_PCS_BLOCK_ERRORS 13
763 #define MC_CMD_PHYXS_LINK_UP 14
764 #define MC_CMD_PHYXS_RX_FAULT 15
765 #define MC_CMD_PHYXS_TX_FAULT 16
766 #define MC_CMD_PHYXS_ALIGN 17
767 #define MC_CMD_PHYXS_SYNC 18
768 #define MC_CMD_AN_LINK_UP 19
769 #define MC_CMD_AN_COMPLETE 20
770 #define MC_CMD_AN_10GBT_STATUS 21
771 #define MC_CMD_CL22_LINK_UP 22
772 #define MC_CMD_PHY_NSTATS 23
774 /* MC_CMD_GET_PHY_CFG:
775 * Report PHY configuration. This guarantees to succeed even if the PHY is in
776 * a "zombie" state.
778 * Locks required: None
779 * Return code: 0
781 #define MC_CMD_GET_PHY_CFG 0x24
783 #define MC_CMD_GET_PHY_CFG_IN_LEN 0
784 #define MC_CMD_GET_PHY_CFG_OUT_LEN 72
786 #define MC_CMD_GET_PHY_CFG_OUT_FLAGS_OFST 0
787 #define MC_CMD_GET_PHY_CFG_PRESENT_LBN 0
788 #define MC_CMD_GET_PHY_CFG_PRESENT_WIDTH 1
789 #define MC_CMD_GET_PHY_CFG_SHORTBIST_LBN 1
790 #define MC_CMD_GET_PHY_CFG_SHORTBIST_WIDTH 1
791 #define MC_CMD_GET_PHY_CFG_LONGBIST_LBN 2
792 #define MC_CMD_GET_PHY_CFG_LONGBIST_WIDTH 1
793 #define MC_CMD_GET_PHY_CFG_LOWPOWER_LBN 3
794 #define MC_CMD_GET_PHY_CFG_LOWPOWER_WIDTH 1
795 #define MC_CMD_GET_PHY_CFG_POWEROFF_LBN 4
796 #define MC_CMD_GET_PHY_CFG_POWEROFF_WIDTH 1
797 #define MC_CMD_GET_PHY_CFG_TXDIS_LBN 5
798 #define MC_CMD_GET_PHY_CFG_TXDIS_WIDTH 1
799 #define MC_CMD_GET_PHY_CFG_OUT_TYPE_OFST 4
800 /* Bitmask of supported capabilities */
801 #define MC_CMD_GET_PHY_CFG_OUT_SUPPORTED_CAP_OFST 8
802 #define MC_CMD_GET_PHY_CFG_OUT_CHANNEL_OFST 12
803 #define MC_CMD_GET_PHY_CFG_OUT_PRT_OFST 16
804 /* PHY statistics bitmap */
805 #define MC_CMD_GET_PHY_CFG_OUT_STATS_MASK_OFST 20
806 /* PHY type/name string */
807 #define MC_CMD_GET_PHY_CFG_OUT_NAME_OFST 24
808 #define MC_CMD_GET_PHY_CFG_OUT_NAME_LEN 20
809 #define MC_CMD_GET_PHY_CFG_OUT_MEDIA_TYPE_OFST 44
810 #define MC_CMD_MEDIA_XAUI 1
811 #define MC_CMD_MEDIA_CX4 2
812 #define MC_CMD_MEDIA_KX4 3
813 #define MC_CMD_MEDIA_XFP 4
814 #define MC_CMD_MEDIA_SFP_PLUS 5
815 #define MC_CMD_MEDIA_BASE_T 6
816 /* MDIO "MMDS" supported */
817 #define MC_CMD_GET_PHY_CFG_OUT_MMD_MASK_OFST 48
818 /* Native clause 22 */
819 #define MC_CMD_MMD_CLAUSE22 0
820 #define MC_CMD_MMD_CLAUSE45_PMAPMD 1
821 #define MC_CMD_MMD_CLAUSE45_WIS 2
822 #define MC_CMD_MMD_CLAUSE45_PCS 3
823 #define MC_CMD_MMD_CLAUSE45_PHYXS 4
824 #define MC_CMD_MMD_CLAUSE45_DTEXS 5
825 #define MC_CMD_MMD_CLAUSE45_TC 6
826 #define MC_CMD_MMD_CLAUSE45_AN 7
827 /* Clause22 proxied over clause45 by PHY */
828 #define MC_CMD_MMD_CLAUSE45_C22EXT 29
829 #define MC_CMD_MMD_CLAUSE45_VEND1 30
830 #define MC_CMD_MMD_CLAUSE45_VEND2 31
831 /* PHY stepping version */
832 #define MC_CMD_GET_PHY_CFG_OUT_REVISION_OFST 52
833 #define MC_CMD_GET_PHY_CFG_OUT_REVISION_LEN 20
835 /* MC_CMD_START_PHY_BIST:
836 * Start a BIST test on the PHY.
838 * Locks required: PHY_LOCK if doing a PHY BIST
839 * Return code: 0, EINVAL, EACCES (if PHY_LOCK is not held)
841 #define MC_CMD_START_BIST 0x25
842 #define MC_CMD_START_BIST_IN_LEN 4
843 #define MC_CMD_START_BIST_TYPE_OFST 0
845 /* Run the PHY's short BIST */
846 #define MC_CMD_PHY_BIST_SHORT 1
847 /* Run the PHY's long BIST */
848 #define MC_CMD_PHY_BIST_LONG 2
849 /* Run BIST on the currently selected BPX Serdes (XAUI or XFI) */
850 #define MC_CMD_BPX_SERDES_BIST 3
852 /* MC_CMD_POLL_PHY_BIST: (variadic output)
853 * Poll for BIST completion
855 * Returns a single status code, and a binary blob of phy-specific
856 * bist output. If the driver can't succesfully parse the BIST output,
857 * it should still respect the Pass/Fail in OUT.RESULT.
859 * Locks required: PHY_LOCK if doing a PHY BIST
860 * Return code: 0, EACCES (if PHY_LOCK is not held)
862 #define MC_CMD_POLL_BIST 0x26
863 #define MC_CMD_POLL_BIST_IN_LEN 0
864 #define MC_CMD_POLL_BIST_OUT_LEN UNKNOWN
865 #define MC_CMD_POLL_BIST_OUT_RESULT_OFST 0
866 #define MC_CMD_POLL_BIST_RUNNING 1
867 #define MC_CMD_POLL_BIST_PASSED 2
868 #define MC_CMD_POLL_BIST_FAILED 3
869 #define MC_CMD_POLL_BIST_TIMEOUT 4
870 #define MC_CMD_POLL_BIST_OUT_PRIVATE_OFST 4
872 /* MC_CMD_PHY_SPI: (variadic in, variadic out)
873 * Read/Write/Erase the PHY SPI device
875 * Locks required: PHY_LOCK
876 * Return code: 0, ETIME, EINVAL, EACCES (if PHY_LOCK is not held)
878 #define MC_CMD_PHY_SPI 0x27
879 #define MC_CMD_PHY_SPI_IN_LEN(_write_bytes) (12 + (_write_bytes))
880 #define MC_CMD_PHY_SPI_IN_ARGS_OFST 0
881 #define MC_CMD_PHY_SPI_IN_ARGS_ADDR_OFST 0
882 #define MC_CMD_PHY_SPI_IN_ARGS_READ_BYTES_OFST 4
883 #define MC_CMD_PHY_SPI_IN_ARGS_ERASE_ALL_OFST 8
884 /* Data to write here */
885 #define MC_CMD_PHY_SPI_IN_WRITE_BUFFER_OFSET 12
886 #define MC_CMD_PHY_SPI_OUT_LEN(_read_bytes) (_read_bytes)
887 /* Data read here */
888 #define MC_CMD_PHY_SPI_OUT_READ_BUFFER_OFST 0
891 /* MC_CMD_GET_LOOPBACK_MODES:
892 * Returns a bitmask of loopback modes evailable at each speed.
894 * Locks required: None
895 * Return code: 0
897 #define MC_CMD_GET_LOOPBACK_MODES 0x28
898 #define MC_CMD_GET_LOOPBACK_MODES_IN_LEN 0
899 #define MC_CMD_GET_LOOPBACK_MODES_OUT_LEN 32
900 #define MC_CMD_GET_LOOPBACK_MODES_100M_OFST 0
901 #define MC_CMD_GET_LOOPBACK_MODES_1G_OFST 8
902 #define MC_CMD_GET_LOOPBACK_MODES_10G_OFST 16
903 #define MC_CMD_GET_LOOPBACK_MODES_SUGGESTED_OFST 24
905 /* Flow control enumeration */
906 #define MC_CMD_FCNTL_OFF 0
907 #define MC_CMD_FCNTL_RESPOND 1
908 #define MC_CMD_FCNTL_BIDIR 2
909 /* Auto - Use what the link has autonegotiated
910 * - The driver should modify the advertised capabilities via SET_LINK.CAP
911 * to control the negotiated flow control mode.
912 * - Can only be set if the PHY supports PAUSE+ASYM capabilities
913 * - Never returned by GET_LINK as the value programmed into the MAC
915 #define MC_CMD_FCNTL_AUTO 3
917 /* Generic mac fault bitmask */
918 #define MC_CMD_MAC_FAULT_XGMII_LOCAL_LBN 0
919 #define MC_CMD_MAC_FAULT_XGMII_LOCAL_WIDTH 1
920 #define MC_CMD_MAC_FAULT_XGMII_REMOTE_LBN 1
921 #define MC_CMD_MAC_FAULT_XGMII_REMOTE_WIDTH 1
922 #define MC_CMD_MAC_FAULT_SGMII_REMOTE_LBN 2
923 #define MC_CMD_MAC_FAULT_SGMII_REMOTE_WIDTH 1
925 /* MC_CMD_GET_LINK:
926 * Read the unified MAC/PHY link state
928 * Locks required: None
929 * Return code: 0, ETIME
931 #define MC_CMD_GET_LINK 0x29
932 #define MC_CMD_GET_LINK_IN_LEN 0
933 #define MC_CMD_GET_LINK_OUT_LEN 28
934 /* near-side and link-partner advertised capabilities */
935 #define MC_CMD_GET_LINK_OUT_CAP_OFST 0
936 #define MC_CMD_GET_LINK_OUT_LP_CAP_OFST 4
937 /* Autonegotiated speed in mbit/s. The link may still be down
938 * even if this reads non-zero */
939 #define MC_CMD_GET_LINK_OUT_LINK_SPEED_OFST 8
940 #define MC_CMD_GET_LINK_OUT_LOOPBACK_MODE_OFST 12
941 #define MC_CMD_GET_LINK_OUT_FLAGS_OFST 16
942 /* Whether we have overall link up */
943 #define MC_CMD_GET_LINK_LINK_UP_LBN 0
944 #define MC_CMD_GET_LINK_LINK_UP_WIDTH 1
945 #define MC_CMD_GET_LINK_FULL_DUPLEX_LBN 1
946 #define MC_CMD_GET_LINK_FULL_DUPLEX_WIDTH 1
947 /* Whether we have link at the layers provided by the BPX */
948 #define MC_CMD_GET_LINK_BPX_LINK_LBN 2
949 #define MC_CMD_GET_LINK_BPX_LINK_WIDTH 1
950 /* Whether the PHY has external link */
951 #define MC_CMD_GET_LINK_PHY_LINK_LBN 3
952 #define MC_CMD_GET_LINK_PHY_LINK_WIDTH 1
953 #define MC_CMD_GET_LINK_OUT_FCNTL_OFST 20
954 #define MC_CMD_GET_LINK_OUT_MAC_FAULT_OFST 24
956 /* MC_CMD_SET_LINK:
957 * Write the unified MAC/PHY link configuration
959 * A loopback speed of "0" is supported, and means
960 * (choose any available speed)
962 * Locks required: None
963 * Return code: 0, EINVAL, ETIME
965 #define MC_CMD_SET_LINK 0x2a
966 #define MC_CMD_SET_LINK_IN_LEN 16
967 #define MC_CMD_SET_LINK_IN_CAP_OFST 0
968 #define MC_CMD_SET_LINK_IN_FLAGS_OFST 4
969 #define MC_CMD_SET_LINK_LOWPOWER_LBN 0
970 #define MC_CMD_SET_LINK_LOWPOWER_WIDTH 1
971 #define MC_CMD_SET_LINK_POWEROFF_LBN 1
972 #define MC_CMD_SET_LINK_POWEROFF_WIDTH 1
973 #define MC_CMD_SET_LINK_TXDIS_LBN 2
974 #define MC_CMD_SET_LINK_TXDIS_WIDTH 1
975 #define MC_CMD_SET_LINK_IN_LOOPBACK_MODE_OFST 8
976 #define MC_CMD_SET_LINK_IN_LOOPBACK_SPEED_OFST 12
977 #define MC_CMD_SET_LINK_OUT_LEN 0
979 /* MC_CMD_SET_ID_LED:
980 * Set indentification LED state
982 * Locks required: None
983 * Return code: 0, EINVAL
985 #define MC_CMD_SET_ID_LED 0x2b
986 #define MC_CMD_SET_ID_LED_IN_LEN 4
987 #define MC_CMD_SET_ID_LED_IN_STATE_OFST 0
988 #define MC_CMD_LED_OFF 0
989 #define MC_CMD_LED_ON 1
990 #define MC_CMD_LED_DEFAULT 2
991 #define MC_CMD_SET_ID_LED_OUT_LEN 0
993 /* MC_CMD_SET_MAC:
994 * Set MAC configuration
996 * The MTU is the MTU programmed directly into the XMAC/GMAC
997 * (inclusive of EtherII, VLAN, bug16011 padding)
999 * Locks required: None
1000 * Return code: 0, EINVAL
1002 #define MC_CMD_SET_MAC 0x2c
1003 #define MC_CMD_SET_MAC_IN_LEN 24
1004 #define MC_CMD_SET_MAC_IN_MTU_OFST 0
1005 #define MC_CMD_SET_MAC_IN_DRAIN_OFST 4
1006 #define MC_CMD_SET_MAC_IN_ADDR_OFST 8
1007 #define MC_CMD_SET_MAC_IN_REJECT_OFST 16
1008 #define MC_CMD_SET_MAC_IN_REJECT_UNCST_LBN 0
1009 #define MC_CMD_SET_MAC_IN_REJECT_UNCST_WIDTH 1
1010 #define MC_CMD_SET_MAC_IN_REJECT_BRDCST_LBN 1
1011 #define MC_CMD_SET_MAC_IN_REJECT_BRDCST_WIDTH 1
1012 #define MC_CMD_SET_MAC_IN_FCNTL_OFST 20
1013 #define MC_CMD_SET_MAC_OUT_LEN 0
1015 /* MC_CMD_PHY_STATS:
1016 * Get generic PHY statistics
1018 * This call returns the statistics for a generic PHY, by direct DMA
1019 * into host memory, in a sparse array (indexed by the enumerate).
1020 * Each value is represented by a 32bit number.
1022 * Locks required: None
1023 * Returns: 0, ETIME
1024 * Response methods: shared memory, event
1026 #define MC_CMD_PHY_STATS 0x2d
1027 #define MC_CMD_PHY_STATS_IN_LEN 8
1028 #define MC_CMD_PHY_STATS_IN_DMA_ADDR_LO_OFST 0
1029 #define MC_CMD_PHY_STATS_IN_DMA_ADDR_HI_OFST 4
1030 #define MC_CMD_PHY_STATS_OUT_LEN 0
1032 /* Unified MAC statistics enumeration */
1033 #define MC_CMD_MAC_GENERATION_START 0
1034 #define MC_CMD_MAC_TX_PKTS 1
1035 #define MC_CMD_MAC_TX_PAUSE_PKTS 2
1036 #define MC_CMD_MAC_TX_CONTROL_PKTS 3
1037 #define MC_CMD_MAC_TX_UNICAST_PKTS 4
1038 #define MC_CMD_MAC_TX_MULTICAST_PKTS 5
1039 #define MC_CMD_MAC_TX_BROADCAST_PKTS 6
1040 #define MC_CMD_MAC_TX_BYTES 7
1041 #define MC_CMD_MAC_TX_BAD_BYTES 8
1042 #define MC_CMD_MAC_TX_LT64_PKTS 9
1043 #define MC_CMD_MAC_TX_64_PKTS 10
1044 #define MC_CMD_MAC_TX_65_TO_127_PKTS 11
1045 #define MC_CMD_MAC_TX_128_TO_255_PKTS 12
1046 #define MC_CMD_MAC_TX_256_TO_511_PKTS 13
1047 #define MC_CMD_MAC_TX_512_TO_1023_PKTS 14
1048 #define MC_CMD_MAC_TX_1024_TO_15XX_PKTS 15
1049 #define MC_CMD_MAC_TX_15XX_TO_JUMBO_PKTS 16
1050 #define MC_CMD_MAC_TX_GTJUMBO_PKTS 17
1051 #define MC_CMD_MAC_TX_BAD_FCS_PKTS 18
1052 #define MC_CMD_MAC_TX_SINGLE_COLLISION_PKTS 19
1053 #define MC_CMD_MAC_TX_MULTIPLE_COLLISION_PKTS 20
1054 #define MC_CMD_MAC_TX_EXCESSIVE_COLLISION_PKTS 21
1055 #define MC_CMD_MAC_TX_LATE_COLLISION_PKTS 22
1056 #define MC_CMD_MAC_TX_DEFERRED_PKTS 23
1057 #define MC_CMD_MAC_TX_EXCESSIVE_DEFERRED_PKTS 24
1058 #define MC_CMD_MAC_TX_NON_TCPUDP_PKTS 25
1059 #define MC_CMD_MAC_TX_MAC_SRC_ERR_PKTS 26
1060 #define MC_CMD_MAC_TX_IP_SRC_ERR_PKTS 27
1061 #define MC_CMD_MAC_RX_PKTS 28
1062 #define MC_CMD_MAC_RX_PAUSE_PKTS 29
1063 #define MC_CMD_MAC_RX_GOOD_PKTS 30
1064 #define MC_CMD_MAC_RX_CONTROL_PKTS 31
1065 #define MC_CMD_MAC_RX_UNICAST_PKTS 32
1066 #define MC_CMD_MAC_RX_MULTICAST_PKTS 33
1067 #define MC_CMD_MAC_RX_BROADCAST_PKTS 34
1068 #define MC_CMD_MAC_RX_BYTES 35
1069 #define MC_CMD_MAC_RX_BAD_BYTES 36
1070 #define MC_CMD_MAC_RX_64_PKTS 37
1071 #define MC_CMD_MAC_RX_65_TO_127_PKTS 38
1072 #define MC_CMD_MAC_RX_128_TO_255_PKTS 39
1073 #define MC_CMD_MAC_RX_256_TO_511_PKTS 40
1074 #define MC_CMD_MAC_RX_512_TO_1023_PKTS 41
1075 #define MC_CMD_MAC_RX_1024_TO_15XX_PKTS 42
1076 #define MC_CMD_MAC_RX_15XX_TO_JUMBO_PKTS 43
1077 #define MC_CMD_MAC_RX_GTJUMBO_PKTS 44
1078 #define MC_CMD_MAC_RX_UNDERSIZE_PKTS 45
1079 #define MC_CMD_MAC_RX_BAD_FCS_PKTS 46
1080 #define MC_CMD_MAC_RX_OVERFLOW_PKTS 47
1081 #define MC_CMD_MAC_RX_FALSE_CARRIER_PKTS 48
1082 #define MC_CMD_MAC_RX_SYMBOL_ERROR_PKTS 49
1083 #define MC_CMD_MAC_RX_ALIGN_ERROR_PKTS 50
1084 #define MC_CMD_MAC_RX_LENGTH_ERROR_PKTS 51
1085 #define MC_CMD_MAC_RX_INTERNAL_ERROR_PKTS 52
1086 #define MC_CMD_MAC_RX_JABBER_PKTS 53
1087 #define MC_CMD_MAC_RX_NODESC_DROPS 54
1088 #define MC_CMD_MAC_RX_LANES01_CHAR_ERR 55
1089 #define MC_CMD_MAC_RX_LANES23_CHAR_ERR 56
1090 #define MC_CMD_MAC_RX_LANES01_DISP_ERR 57
1091 #define MC_CMD_MAC_RX_LANES23_DISP_ERR 58
1092 #define MC_CMD_MAC_RX_MATCH_FAULT 59
1093 /* Insert new members here. */
1094 #define MC_CMD_MAC_GENERATION_END 60
1095 #define MC_CMD_MAC_NSTATS (MC_CMD_MAC_GENERATION_END+1)
1097 /* MC_CMD_MAC_STATS:
1098 * Get unified GMAC/XMAC statistics
1100 * This call returns unified statistics maintained by the MC as it
1101 * switches between the GMAC and XMAC. The MC will write out all
1102 * supported stats. The driver should zero initialise the buffer to
1103 * guarantee consistent results.
1105 * Locks required: None
1106 * Returns: 0
1107 * Response methods: shared memory, event
1109 #define MC_CMD_MAC_STATS 0x2e
1110 #define MC_CMD_MAC_STATS_IN_LEN 16
1111 #define MC_CMD_MAC_STATS_IN_DMA_ADDR_LO_OFST 0
1112 #define MC_CMD_MAC_STATS_IN_DMA_ADDR_HI_OFST 4
1113 #define MC_CMD_MAC_STATS_IN_CMD_OFST 8
1114 #define MC_CMD_MAC_STATS_CMD_DMA_LBN 0
1115 #define MC_CMD_MAC_STATS_CMD_DMA_WIDTH 1
1116 #define MC_CMD_MAC_STATS_CMD_CLEAR_LBN 1
1117 #define MC_CMD_MAC_STATS_CMD_CLEAR_WIDTH 1
1118 #define MC_CMD_MAC_STATS_CMD_PERIODIC_CHANGE_LBN 2
1119 #define MC_CMD_MAC_STATS_CMD_PERIODIC_CHANGE_WIDTH 1
1120 /* Fields only relevent when PERIODIC_CHANGE is set */
1121 #define MC_CMD_MAC_STATS_CMD_PERIODIC_ENABLE_LBN 3
1122 #define MC_CMD_MAC_STATS_CMD_PERIODIC_ENABLE_WIDTH 1
1123 #define MC_CMD_MAC_STATS_CMD_PERIODIC_CLEAR_LBN 4
1124 #define MC_CMD_MAC_STATS_CMD_PERIODIC_CLEAR_WIDTH 1
1125 #define MC_CMD_MAC_STATS_CMD_PERIOD_MS_LBN 16
1126 #define MC_CMD_MAC_STATS_CMD_PERIOD_MS_WIDTH 16
1127 #define MC_CMD_MAC_STATS_IN_DMA_LEN_OFST 12
1129 #define MC_CMD_MAC_STATS_OUT_LEN 0
1131 /* Callisto flags */
1132 #define MC_CMD_SFT9001_ROBUST_LBN 0
1133 #define MC_CMD_SFT9001_ROBUST_WIDTH 1
1134 #define MC_CMD_SFT9001_SHORT_REACH_LBN 1
1135 #define MC_CMD_SFT9001_SHORT_REACH_WIDTH 1
1137 /* MC_CMD_SFT9001_GET:
1138 * Read current callisto specific setting
1140 * Locks required: None
1141 * Returns: 0, ETIME
1143 #define MC_CMD_SFT9001_GET 0x30
1144 #define MC_CMD_SFT9001_GET_IN_LEN 0
1145 #define MC_CMD_SFT9001_GET_OUT_LEN 4
1146 #define MC_CMD_SFT9001_GET_OUT_FLAGS_OFST 0
1148 /* MC_CMD_SFT9001_SET:
1149 * Write current callisto specific setting
1151 * Locks required: None
1152 * Returns: 0, ETIME, EINVAL
1154 #define MC_CMD_SFT9001_SET 0x31
1155 #define MC_CMD_SFT9001_SET_IN_LEN 4
1156 #define MC_CMD_SFT9001_SET_IN_FLAGS_OFST 0
1157 #define MC_CMD_SFT9001_SET_OUT_LEN 0
1160 /* MC_CMD_WOL_FILTER_SET:
1161 * Set a WoL filter
1163 * Locks required: None
1164 * Returns: 0, EBUSY, EINVAL, ENOSYS
1166 #define MC_CMD_WOL_FILTER_SET 0x32
1167 #define MC_CMD_WOL_FILTER_SET_IN_LEN 192 /* 190 rounded up to a word */
1168 #define MC_CMD_WOL_FILTER_SET_IN_FILTER_MODE_OFST 0
1169 #define MC_CMD_WOL_FILTER_SET_IN_WOL_TYPE_OFST 4
1171 /* There is a union at offset 8, following defines overlap due to
1172 * this */
1173 #define MC_CMD_WOL_FILTER_SET_IN_DATA_OFST 8
1175 #define MC_CMD_WOL_FILTER_SET_IN_MAGIC_MAC_OFST \
1176 MC_CMD_WOL_FILTER_SET_IN_DATA_OFST
1178 #define MC_CMD_WOL_FILTER_SET_IN_IPV4_SYN_SRC_IP_OFST \
1179 MC_CMD_WOL_FILTER_SET_IN_DATA_OFST
1180 #define MC_CMD_WOL_FILTER_SET_IN_IPV4_SYN_DST_IP_OFST \
1181 (MC_CMD_WOL_FILTER_SET_IN_DATA_OFST + 4)
1182 #define MC_CMD_WOL_FILTER_SET_IN_IPV4_SYN_SRC_PORT_OFST \
1183 (MC_CMD_WOL_FILTER_SET_IN_DATA_OFST + 8)
1184 #define MC_CMD_WOL_FILTER_SET_IN_IPV4_SYN_DST_PORT_OFST \
1185 (MC_CMD_WOL_FILTER_SET_IN_DATA_OFST + 10)
1187 #define MC_CMD_WOL_FILTER_SET_IN_IPV6_SYN_SRC_IP_OFST \
1188 MC_CMD_WOL_FILTER_SET_IN_DATA_OFST
1189 #define MC_CMD_WOL_FILTER_SET_IN_IPV6_SYN_DST_IP_OFST \
1190 (MC_CMD_WOL_FILTER_SET_IN_DATA_OFST + 16)
1191 #define MC_CMD_WOL_FILTER_SET_IN_IPV6_SYN_SRC_PORT_OFST \
1192 (MC_CMD_WOL_FILTER_SET_IN_DATA_OFST + 32)
1193 #define MC_CMD_WOL_FILTER_SET_IN_IPV6_SYN_DST_PORT_OFST \
1194 (MC_CMD_WOL_FILTER_SET_IN_DATA_OFST + 34)
1196 #define MC_CMD_WOL_FILTER_SET_IN_BITMAP_MASK_OFST \
1197 MC_CMD_WOL_FILTER_SET_IN_DATA_OFST
1198 #define MC_CMD_WOL_FILTER_SET_IN_BITMAP_OFST \
1199 (MC_CMD_WOL_FILTER_SET_IN_DATA_OFST + 48)
1200 #define MC_CMD_WOL_FILTER_SET_IN_BITMAP_LEN_OFST \
1201 (MC_CMD_WOL_FILTER_SET_IN_DATA_OFST + 176)
1202 #define MC_CMD_WOL_FILTER_SET_IN_BITMAP_LAYER3_OFST \
1203 (MC_CMD_WOL_FILTER_SET_IN_DATA_OFST + 177)
1204 #define MC_CMD_WOL_FILTER_SET_IN_BITMAP_LAYER4_OFST \
1205 (MC_CMD_WOL_FILTER_SET_IN_DATA_OFST + 178)
1207 #define MC_CMD_WOL_FILTER_SET_OUT_LEN 4
1208 #define MC_CMD_WOL_FILTER_SET_OUT_FILTER_ID_OFST 0
1210 /* WOL Filter types enumeration */
1211 #define MC_CMD_WOL_TYPE_MAGIC 0x0
1212 /* unused 0x1 */
1213 #define MC_CMD_WOL_TYPE_WIN_MAGIC 0x2
1214 #define MC_CMD_WOL_TYPE_IPV4_SYN 0x3
1215 #define MC_CMD_WOL_TYPE_IPV6_SYN 0x4
1216 #define MC_CMD_WOL_TYPE_BITMAP 0x5
1217 #define MC_CMD_WOL_TYPE_MAX 0x6
1219 #define MC_CMD_FILTER_MODE_SIMPLE 0x0
1220 #define MC_CMD_FILTER_MODE_STRUCTURED 0xffffffff
1222 /* MC_CMD_WOL_FILTER_REMOVE:
1223 * Remove a WoL filter
1225 * Locks required: None
1226 * Returns: 0, EINVAL, ENOSYS
1228 #define MC_CMD_WOL_FILTER_REMOVE 0x33
1229 #define MC_CMD_WOL_FILTER_REMOVE_IN_LEN 4
1230 #define MC_CMD_WOL_FILTER_REMOVE_IN_FILTER_ID_OFST 0
1231 #define MC_CMD_WOL_FILTER_REMOVE_OUT_LEN 0
1234 /* MC_CMD_WOL_FILTER_RESET:
1235 * Reset (i.e. remove all) WoL filters
1237 * Locks required: None
1238 * Returns: 0, ENOSYS
1240 #define MC_CMD_WOL_FILTER_RESET 0x34
1241 #define MC_CMD_WOL_FILTER_RESET_IN_LEN 0
1242 #define MC_CMD_WOL_FILTER_RESET_OUT_LEN 0
1244 /* MC_CMD_SET_MCAST_HASH:
1245 * Set the MCASH hash value without otherwise
1246 * reconfiguring the MAC
1248 #define MC_CMD_SET_MCAST_HASH 0x35
1249 #define MC_CMD_SET_MCAST_HASH_IN_LEN 32
1250 #define MC_CMD_SET_MCAST_HASH_IN_HASH0_OFST 0
1251 #define MC_CMD_SET_MCAST_HASH_IN_HASH1_OFST 16
1252 #define MC_CMD_SET_MCAST_HASH_OUT_LEN 0
1254 /* MC_CMD_NVRAM_TYPES:
1255 * Return bitfield indicating available types of virtual NVRAM partitions
1257 * Locks required: none
1258 * Returns: 0
1260 #define MC_CMD_NVRAM_TYPES 0x36
1261 #define MC_CMD_NVRAM_TYPES_IN_LEN 0
1262 #define MC_CMD_NVRAM_TYPES_OUT_LEN 4
1263 #define MC_CMD_NVRAM_TYPES_OUT_TYPES_OFST 0
1265 /* Supported NVRAM types */
1266 #define MC_CMD_NVRAM_TYPE_DISABLED_CALLISTO 0
1267 #define MC_CMD_NVRAM_TYPE_MC_FW 1
1268 #define MC_CMD_NVRAM_TYPE_MC_FW_BACKUP 2
1269 #define MC_CMD_NVRAM_TYPE_STATIC_CFG_PORT0 3
1270 #define MC_CMD_NVRAM_TYPE_STATIC_CFG_PORT1 4
1271 #define MC_CMD_NVRAM_TYPE_DYNAMIC_CFG_PORT0 5
1272 #define MC_CMD_NVRAM_TYPE_DYNAMIC_CFG_PORT1 6
1273 #define MC_CMD_NVRAM_TYPE_EXP_ROM 7
1274 #define MC_CMD_NVRAM_TYPE_EXP_ROM_CFG_PORT0 8
1275 #define MC_CMD_NVRAM_TYPE_EXP_ROM_CFG_PORT1 9
1276 #define MC_CMD_NVRAM_TYPE_PHY_PORT0 10
1277 #define MC_CMD_NVRAM_TYPE_PHY_PORT1 11
1278 #define MC_CMD_NVRAM_TYPE_LOG 12
1280 /* MC_CMD_NVRAM_INFO:
1281 * Read info about a virtual NVRAM partition
1283 * Locks required: none
1284 * Returns: 0, EINVAL (bad type)
1286 #define MC_CMD_NVRAM_INFO 0x37
1287 #define MC_CMD_NVRAM_INFO_IN_LEN 4
1288 #define MC_CMD_NVRAM_INFO_IN_TYPE_OFST 0
1289 #define MC_CMD_NVRAM_INFO_OUT_LEN 24
1290 #define MC_CMD_NVRAM_INFO_OUT_TYPE_OFST 0
1291 #define MC_CMD_NVRAM_INFO_OUT_SIZE_OFST 4
1292 #define MC_CMD_NVRAM_INFO_OUT_ERASESIZE_OFST 8
1293 #define MC_CMD_NVRAM_INFO_OUT_FLAGS_OFST 12
1294 #define MC_CMD_NVRAM_PROTECTED_LBN 0
1295 #define MC_CMD_NVRAM_PROTECTED_WIDTH 1
1296 #define MC_CMD_NVRAM_INFO_OUT_PHYSDEV_OFST 16
1297 #define MC_CMD_NVRAM_INFO_OUT_PHYSADDR_OFST 20
1299 /* MC_CMD_NVRAM_UPDATE_START:
1300 * Start a group of update operations on a virtual NVRAM partition
1302 * Locks required: PHY_LOCK if type==*PHY*
1303 * Returns: 0, EINVAL (bad type), EACCES (if PHY_LOCK required and not held)
1305 #define MC_CMD_NVRAM_UPDATE_START 0x38
1306 #define MC_CMD_NVRAM_UPDATE_START_IN_LEN 4
1307 #define MC_CMD_NVRAM_UPDATE_START_IN_TYPE_OFST 0
1308 #define MC_CMD_NVRAM_UPDATE_START_OUT_LEN 0
1310 /* MC_CMD_NVRAM_READ:
1311 * Read data from a virtual NVRAM partition
1313 * Locks required: PHY_LOCK if type==*PHY*
1314 * Returns: 0, EINVAL (bad type/offset/length), EACCES (if PHY_LOCK required and not held)
1316 #define MC_CMD_NVRAM_READ 0x39
1317 #define MC_CMD_NVRAM_READ_IN_LEN 12
1318 #define MC_CMD_NVRAM_READ_IN_TYPE_OFST 0
1319 #define MC_CMD_NVRAM_READ_IN_OFFSET_OFST 4
1320 #define MC_CMD_NVRAM_READ_IN_LENGTH_OFST 8
1321 #define MC_CMD_NVRAM_READ_OUT_LEN(_read_bytes) (_read_bytes)
1322 #define MC_CMD_NVRAM_READ_OUT_READ_BUFFER_OFST 0
1324 /* MC_CMD_NVRAM_WRITE:
1325 * Write data to a virtual NVRAM partition
1327 * Locks required: PHY_LOCK if type==*PHY*
1328 * Returns: 0, EINVAL (bad type/offset/length), EACCES (if PHY_LOCK required and not held)
1330 #define MC_CMD_NVRAM_WRITE 0x3a
1331 #define MC_CMD_NVRAM_WRITE_IN_TYPE_OFST 0
1332 #define MC_CMD_NVRAM_WRITE_IN_OFFSET_OFST 4
1333 #define MC_CMD_NVRAM_WRITE_IN_LENGTH_OFST 8
1334 #define MC_CMD_NVRAM_WRITE_IN_WRITE_BUFFER_OFST 12
1335 #define MC_CMD_NVRAM_WRITE_IN_LEN(_write_bytes) (12 + _write_bytes)
1336 #define MC_CMD_NVRAM_WRITE_OUT_LEN 0
1338 /* MC_CMD_NVRAM_ERASE:
1339 * Erase sector(s) from a virtual NVRAM partition
1341 * Locks required: PHY_LOCK if type==*PHY*
1342 * Returns: 0, EINVAL (bad type/offset/length), EACCES (if PHY_LOCK required and not held)
1344 #define MC_CMD_NVRAM_ERASE 0x3b
1345 #define MC_CMD_NVRAM_ERASE_IN_LEN 12
1346 #define MC_CMD_NVRAM_ERASE_IN_TYPE_OFST 0
1347 #define MC_CMD_NVRAM_ERASE_IN_OFFSET_OFST 4
1348 #define MC_CMD_NVRAM_ERASE_IN_LENGTH_OFST 8
1349 #define MC_CMD_NVRAM_ERASE_OUT_LEN 0
1351 /* MC_CMD_NVRAM_UPDATE_FINISH:
1352 * Finish a group of update operations on a virtual NVRAM partition
1354 * Locks required: PHY_LOCK if type==*PHY*
1355 * Returns: 0, EINVAL (bad type/offset/length), EACCES (if PHY_LOCK required and not held)
1357 #define MC_CMD_NVRAM_UPDATE_FINISH 0x3c
1358 #define MC_CMD_NVRAM_UPDATE_FINISH_IN_LEN 4
1359 #define MC_CMD_NVRAM_UPDATE_FINISH_IN_TYPE_OFST 0
1360 #define MC_CMD_NVRAM_UPDATE_FINISH_OUT_LEN 0
1362 /* MC_CMD_REBOOT:
1363 * Reboot the MC. The AFTER_ASSERTION flag is intended to be used
1364 * when the driver notices an assertion failure, to allow two ports to
1365 * both recover (semi-)gracefully.
1367 * Locks required: NONE
1368 * Returns: Nothing. You get back a response with ERR=1, DATALEN=0
1370 #define MC_CMD_REBOOT 0x3d
1371 #define MC_CMD_REBOOT_IN_LEN 4
1372 #define MC_CMD_REBOOT_IN_FLAGS_OFST 0
1373 #define MC_CMD_REBOOT_FLAGS_AFTER_ASSERTION 1
1374 #define MC_CMD_REBOOT_OUT_LEN 0
1376 /* MC_CMD_SCHEDINFO:
1377 * Request scheduler info. from the MC.
1379 * Locks required: NONE
1380 * Returns: An array of (timeslice,maximum overrun), one for each thread,
1381 * in ascending order of thread address.s
1383 #define MC_CMD_SCHEDINFO 0x3e
1384 #define MC_CMD_SCHEDINFO_IN_LEN 0
1387 /* MC_CMD_SET_REBOOT_MODE: (debug)
1388 * Set the mode for the next MC reboot.
1390 * Locks required: NONE
1392 * Sets the reboot mode to the specified value. Returns the old mode.
1394 #define MC_CMD_REBOOT_MODE 0x3f
1395 #define MC_CMD_REBOOT_MODE_IN_LEN 4
1396 #define MC_CMD_REBOOT_MODE_IN_VALUE_OFST 0
1397 #define MC_CMD_REBOOT_MODE_OUT_LEN 4
1398 #define MC_CMD_REBOOT_MODE_OUT_VALUE_OFST 0
1399 #define MC_CMD_REBOOT_MODE_NORMAL 0
1400 #define MC_CMD_REBOOT_MODE_SNAPPER 3
1402 /* MC_CMD_DEBUG_LOG:
1403 * Null request/response command (debug)
1404 * - sequence number is always zero
1405 * - only supported on the UART interface
1406 * (the same set of bytes is delivered as an
1407 * event over PCI)
1409 #define MC_CMD_DEBUG_LOG 0x40
1410 #define MC_CMD_DEBUG_LOG_IN_LEN 0
1411 #define MC_CMD_DEBUG_LOG_OUT_LEN 0
1413 /* Generic sensor enumeration. Note that a dual port NIC
1414 * will EITHER expose PHY_COMMON_TEMP OR PHY0_TEMP and
1415 * PHY1_TEMP depending on whether there is a single sensor
1416 * in the vicinity of the two port, or one per port.
1418 #define MC_CMD_SENSOR_CONTROLLER_TEMP 0 /* degC */
1419 #define MC_CMD_SENSOR_PHY_COMMON_TEMP 1 /* degC */
1420 #define MC_CMD_SENSOR_CONTROLLER_COOLING 2 /* bool */
1421 #define MC_CMD_SENSOR_PHY0_TEMP 3 /* degC */
1422 #define MC_CMD_SENSOR_PHY0_COOLING 4 /* bool */
1423 #define MC_CMD_SENSOR_PHY1_TEMP 5 /* degC */
1424 #define MC_CMD_SENSOR_PHY1_COOLING 6 /* bool */
1425 #define MC_CMD_SENSOR_IN_1V0 7 /* mV */
1426 #define MC_CMD_SENSOR_IN_1V2 8 /* mV */
1427 #define MC_CMD_SENSOR_IN_1V8 9 /* mV */
1428 #define MC_CMD_SENSOR_IN_2V5 10 /* mV */
1429 #define MC_CMD_SENSOR_IN_3V3 11 /* mV */
1430 #define MC_CMD_SENSOR_IN_12V0 12 /* mV */
1433 /* Sensor state */
1434 #define MC_CMD_SENSOR_STATE_OK 0
1435 #define MC_CMD_SENSOR_STATE_WARNING 1
1436 #define MC_CMD_SENSOR_STATE_FATAL 2
1437 #define MC_CMD_SENSOR_STATE_BROKEN 3
1439 /* MC_CMD_SENSOR_INFO:
1440 * Returns information about every available sensor.
1442 * Each sensor has a single (16bit) value, and a corresponding state.
1443 * The mapping between value and sensor is nominally determined by the
1444 * MC, but in practise is implemented as zero (BROKEN), one (TEMPERATURE),
1445 * or two (VOLTAGE) ranges per sensor per state.
1447 * This call returns a mask (32bit) of the sensors that are supported
1448 * by this platform, then an array (indexed by MC_CMD_SENSOR) of byte
1449 * offsets to the per-sensor arrays. Each sensor array has four 16bit
1450 * numbers, min1, max1, min2, max2.
1452 * Locks required: None
1453 * Returns: 0
1455 #define MC_CMD_SENSOR_INFO 0x41
1456 #define MC_CMD_SENSOR_INFO_IN_LEN 0
1457 #define MC_CMD_SENSOR_INFO_OUT_MASK_OFST 0
1458 #define MC_CMD_SENSOR_INFO_OUT_OFFSET_OFST(_x) \
1459 (4 + (_x))
1460 #define MC_CMD_SENSOR_INFO_OUT_MIN1_OFST(_ofst) \
1461 ((_ofst) + 0)
1462 #define MC_CMD_SENSOR_INFO_OUT_MAX1_OFST(_ofst) \
1463 ((_ofst) + 2)
1464 #define MC_CMD_SENSOR_INFO_OUT_MIN2_OFST(_ofst) \
1465 ((_ofst) + 4)
1466 #define MC_CMD_SENSOR_INFO_OUT_MAX2_OFST(_ofst) \
1467 ((_ofst) + 6)
1469 /* MC_CMD_READ_SENSORS
1470 * Returns the current (value, state) for each sensor
1472 * Returns the current (value, state) [each 16bit] of each sensor supported by
1473 * this board, by DMA'ing a sparse array (indexed by the sensor type) into host
1474 * memory.
1476 * The MC will send a SENSOREVT event every time any sensor changes state. The
1477 * driver is responsible for ensuring that it doesn't miss any events. The board
1478 * will function normally if all sensors are in STATE_OK or state_WARNING.
1479 * Otherwise the board should not be expected to function.
1481 #define MC_CMD_READ_SENSORS 0x42
1482 #define MC_CMD_READ_SENSORS_IN_LEN 8
1483 #define MC_CMD_READ_SENSORS_IN_DMA_ADDR_LO_OFST 0
1484 #define MC_CMD_READ_SENSORS_IN_DMA_ADDR_HI_OFST 4
1485 #define MC_CMD_READ_SENSORS_OUT_LEN 0
1488 /* MC_CMD_GET_PHY_STATE:
1489 * Report current state of PHY. A "zombie" PHY is a PHY that has failed to
1490 * boot (e.g. due to missing or corrupted firmware).
1492 * Locks required: None
1493 * Return code: 0
1495 #define MC_CMD_GET_PHY_STATE 0x43
1497 #define MC_CMD_GET_PHY_STATE_IN_LEN 0
1498 #define MC_CMD_GET_PHY_STATE_OUT_LEN 4
1499 #define MC_CMD_GET_PHY_STATE_STATE_OFST 0
1500 /* PHY state enumeration: */
1501 #define MC_CMD_PHY_STATE_OK 1
1502 #define MC_CMD_PHY_STATE_ZOMBIE 2
1505 /* 802.1Qbb control. 8 Tx queues that map to priorities 0 - 7. Use all 1s to
1506 * disable 802.Qbb for a given priority. */
1507 #define MC_CMD_SETUP_8021QBB 0x44
1508 #define MC_CMD_SETUP_8021QBB_IN_LEN 32
1509 #define MC_CMD_SETUP_8021QBB_OUT_LEN 0
1510 #define MC_CMD_SETUP_8021QBB_IN_TXQS_OFFST 0
1513 /* MC_CMD_WOL_FILTER_GET:
1514 * Retrieve ID of any WoL filters
1516 * Locks required: None
1517 * Returns: 0, ENOSYS
1519 #define MC_CMD_WOL_FILTER_GET 0x45
1520 #define MC_CMD_WOL_FILTER_GET_IN_LEN 0
1521 #define MC_CMD_WOL_FILTER_GET_OUT_LEN 4
1522 #define MC_CMD_WOL_FILTER_GET_OUT_FILTER_ID_OFST 0
1525 /* MC_CMD_ADD_LIGHTSOUT_OFFLOAD:
1526 * Offload a protocol to NIC for lights-out state
1528 * Locks required: None
1529 * Returns: 0, ENOSYS
1531 #define MC_CMD_ADD_LIGHTSOUT_OFFLOAD 0x46
1533 #define MC_CMD_ADD_LIGHTSOUT_OFFLOAD_IN_LEN 16
1534 #define MC_CMD_ADD_LIGHTSOUT_OFFLOAD_IN_PROTOCOL_OFST 0
1536 /* There is a union at offset 4, following defines overlap due to
1537 * this */
1538 #define MC_CMD_ADD_LIGHTSOUT_OFFLOAD_IN_DATA_OFST 4
1539 #define MC_CMD_ADD_LIGHTSOUT_OFFLOAD_IN_ARPMAC_OFST 4
1540 #define MC_CMD_ADD_LIGHTSOUT_OFFLOAD_IN_ARPIP_OFST 10
1541 #define MC_CMD_ADD_LIGHTSOUT_OFFLOAD_IN_NSMAC_OFST 4
1542 #define MC_CMD_ADD_LIGHTSOUT_OFFLOAD_IN_NSSNIPV6_OFST 10
1543 #define MC_CMD_ADD_LIGHTSOUT_OFFLOAD_IN_NSIPV6_OFST 26
1545 #define MC_CMD_ADD_LIGHTSOUT_OFFLOAD_OUT_LEN 4
1546 #define MC_CMD_ADD_LIGHTSOUT_OFFLOAD_OUT_FILTER_ID_OFST 0
1549 /* MC_CMD_REMOVE_LIGHTSOUT_PROTOCOL_OFFLOAD:
1550 * Offload a protocol to NIC for lights-out state
1552 * Locks required: None
1553 * Returns: 0, ENOSYS
1555 #define MC_CMD_REMOVE_LIGHTSOUT_OFFLOAD 0x47
1556 #define MC_CMD_REMOVE_LIGHTSOUT_OFFLOAD_IN_LEN 8
1557 #define MC_CMD_REMOVE_LIGHTSOUT_OFFLOAD_OUT_LEN 0
1559 #define MC_CMD_REMOVE_LIGHTSOUT_OFFLOAD_IN_PROTOCOL_OFST 0
1560 #define MC_CMD_REMOVE_LIGHTSOUT_OFFLOAD_IN_FILTER_ID_OFST 4
1562 /* Lights-out offload protocols enumeration */
1563 #define MC_CMD_LIGHTSOUT_OFFLOAD_PROTOCOL_ARP 0x1
1564 #define MC_CMD_LIGHTSOUT_OFFLOAD_PROTOCOL_NS 0x2
1567 /* MC_CMD_MAC_RESET_RESTORE:
1568 * Restore MAC after block reset
1570 * Locks required: None
1571 * Returns: 0
1574 #define MC_CMD_MAC_RESET_RESTORE 0x48
1575 #define MC_CMD_MAC_RESET_RESTORE_IN_LEN 0
1576 #define MC_CMD_MAC_RESET_RESTORE_OUT_LEN 0
1578 #endif /* MCDI_PCOL_H */