drivers/net/amd8111e.c: Fix continuation line formats
[deliverable/linux.git] / drivers / net / sfc / mcdi_pcol.h
CommitLineData
f0d37f42
SH
1/****************************************************************************
2 * Driver for Solarflare Solarstorm network controllers and boards
3 * Copyright 2009 Solarflare Communications Inc.
4 *
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 */
9
10
11#ifndef MCDI_PCOL_H
12#define MCDI_PCOL_H
13
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)
24
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)
29
30/* The current version of the MCDI protocol.
31 *
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
34 */
35#define MCDI_PCOL_VERSION 1
36
37/**
38 * MCDI version 1
39 *
40 * Each MCDI request starts with an MCDI_HEADER, which is a 32byte
41 * structure, filled in by the client.
42 *
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)
49 *
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.
53 *
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).
58 *
59 * Some MCDI commands support completion by event, in which any associated
60 * response data is included in the event.
61 *
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).
66 */
67
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
88
89/* Maximum number of payload bytes */
90#define MCDI_CTL_SDU_LEN_MAX 0xfc
91
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
96 *
97 * Both events share a common structure:
98 *
99 * 0 32 33 36 44 52 60
100 * | Data | Cont | Level | Src | Code | Rsvd |
101 * |
102 * \ There is another event pending in this notification
103 *
104 * If Code==CMDDONE, then the fields are further interpreted as:
105 *
106 * - LEVEL==INFO Command succeded
107 * - LEVEL==ERR Command failed
108 *
109 * 0 8 16 24 32
110 * | Seq | Datalen | Errno | Rsvd |
111 *
112 * These fields are taken directly out of the standard MCDI header, i.e.,
113 * LEVEL==ERR, Datalen == 0 => Reboot
114 *
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.
119 *
120 * 0 7 8
121 * | command | Resync | = 0xc0
122 *
123 * Since the event is written in big-endian byte order, this works
124 * providing bits 56-63 of the event are 0xc0.
125 *
126 * 56 60 63
127 * | Rsvd | Code | = 0xc0
128 *
129 * Which means for convenience the event code is 0xc for all MC
130 * generated events.
131 */
132#define FSE_AZ_EV_CODE_MCDI_EVRESPONSE 0xc
133
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
181
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
198
199#define MC_CMD_ERR_CODE_OFST 0
200
201
202/* MC_CMD_READ32: (debug, variadic out)
203 * Read multiple 32byte words from MC memory
204 */
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
212
213/* MC_CMD_WRITE32: (debug, variadic in)
214 * Write multiple 32byte words to MC memory
215 */
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
221
222/* MC_CMD_COPYCODE: (debug)
223 * Copy MC code between two locations and jump
224 */
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
234
235/* MC_CMD_SET_FUNC: (debug)
236 * Select function for function-specific commands.
237 */
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
242
243/* MC_CMD_GET_BOOT_STATUS:
244 * Get the instruction address from which the MC booted.
245 */
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)
260
261/* MC_CMD_GET_ASSERTS: (debug, variadic out)
262 * Get (and optionally clear) the current assertion status.
263 *
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
267 */
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
289
290/* MC_CMD_LOG_CTRL:
291 * Determine the output stream for various events and messages
292 */
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
300
301/* MC_CMD_GET_VERSION:
302 * Get version information about the MC firmware
303 */
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
324
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)
330
331/* Test execution limits */
332#define MC_TESTEXEC_VARIANT_COUNT 16
333#define MC_TESTEXEC_RESULT_COUNT 7
334
335/* MC_CMD_SET_TESTVARS: (debug, variadic in)
336 * Write variant words for test.
337 *
338 * The user supplies a bitmap of the variants they wish to set.
339 * They must ensure that IN.LEN >= 4 + 4 * ffs(BITMAP)
340 */
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
348
349/* MC_CMD_GET_TESTRCS: (debug, variadic out)
350 * Return result words from test.
351 */
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
358
359/* MC_CMD_RUN_TEST: (debug)
360 * Run the test exported by this firmware image
361 */
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
365
366/* MC_CMD_CSR_READ32: (debug, variadic out)
367 * Read 32bit words from the indirect memory map
368 */
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)
380
381/* MC_CMD_CSR_WRITE32: (debug, variadic in)
382 * Write 32bit dwords to the indirect memory map
383 */
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
393
394/* MC_CMD_JTAG_WORK: (debug, fpga only)
395 * Process JTAG work buffer for RBF acceleration.
396 *
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)
401 */
402#define MC_CMD_JTAG_WORK 0x0e
403
404/* MC_CMD_STACKINFO: (debug, variadic out)
405 * Get stack information
406 *
407 * Host: nothing
408 * MC: (thread ptr, stack size, free space) for each thread in system
409 */
410#define MC_CMD_STACKINFO 0x0f
411
412/* MC_CMD_MDIO_READ:
413 * MDIO register read
414 */
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
424
425/* MC_CMD_MDIO_WRITE:
426 * MDIO register write
427 */
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
437
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.
440 */
441#define MC_CMD_MDIO_CLAUSE22 32
442
443/* There are two MDIO buses: one for the internal PHY, and one for external
444 * devices.
445 */
446#define MC_CMD_MDIO_BUS_INTERNAL 0
447#define MC_CMD_MDIO_BUS_EXTERNAL 1
448
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.
451 */
452#define MC_CMD_MDIO_STATUS_GOOD 0x08
453
454
455/* MC_CMD_DBI_WRITE: (debug)
456 * Write DBI register(s)
457 *
458 * Host: address, byte-enables (and VF selection, and cs2 flag),
459 * value [,address ...]
460 * MC: nothing
461 */
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
472
473/* MC_CMD_DBI_READ: (debug)
474 * Read DBI register(s)
475 *
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)
480 */
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))
486
487/* MC_CMD_PORT_READ32: (debug)
488 * Read a 32-bit register from the indirect port register map.
489 *
490 * The port to access is implied by the Shared memory channel used.
491 */
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
498
499/* MC_CMD_PORT_WRITE32: (debug)
500 * Write a 32-bit register to the indirect port register map.
501 *
502 * The port to access is implied by the Shared memory channel used.
503 */
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
510
511/* MC_CMD_PORT_READ128: (debug)
512 * Read a 128-bit register from indirect port register map
513 *
514 * The port to access is implied by the Shared memory channel used.
515 */
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
522
523/* MC_CMD_PORT_WRITE128: (debug)
524 * Write a 128-bit register to indirect port register map.
525 *
526 * The port to access is implied by the Shared memory channel used.
527 */
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
534
535/* MC_CMD_GET_BOARD_CFG:
536 * Returns the MC firmware configuration structure
537 *
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.
542 */
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
561
562/* MC_CMD_DBI_READX: (debug)
563 * Read DBI register(s) -- extended functionality
564 *
565 * Host: vf selection, address, [,vf selection ...]
566 * MC: value [,value ...]
567 */
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))
573
574/* MC_CMD_SET_RAND_SEED:
575 * Set the 16byte seed for the MC psuedo-random generator
576 */
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
581
582/* MC_CMD_LTSSM_HIST: (debug)
583 * Retrieve the history of the LTSSM, if the build supports it.
584 *
585 * Host: nothing
586 * MC: variable number of LTSSM values, as bytes
587 * The history is read-to-clear.
588 */
589#define MC_CMD_LTSSM_HIST 0x1b
590
591/* MC_CMD_DRV_ATTACH:
592 * Inform MCPU that this port is managed on the host (i.e. driver active)
593 */
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
600
601/* MC_CMD_NCSI_PROD: (debug)
602 * Trigger an NC-SI event (and possibly an AEN in response)
603 */
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
614
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
619
620/* MC_CMD_DEVEL: (debug)
621 * Reserved for development
622 */
623#define MC_CMD_DEVEL 0x1e
624
625/* MC_CMD_SHMUART: (debug)
626 * Route UART output to circular buffer in shared memory instead.
627 */
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
632
633/* MC_CMD_PORT_RESET:
634 * Generic per-port reset. There is no equivalent for per-board reset.
635 *
636 * Locks required: None
637 * Return code: 0, ETIME
638 */
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
642
643/* MC_CMD_RESOURCE_LOCK:
644 * Generic resource lock/unlock interface.
645 *
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)
651 */
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
661
662/* MC_CMD_SPI_COMMAND: (variadic in, variadic out)
663 * Read/Write to/from the SPI device.
664 *
665 * Locks required: SPI_LOCK
666 * Return code: 0, ETIME, EINVAL, EACCES (if SPI_LOCK is not held)
667 */
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
679
680/* MC_CMD_I2C_READ_WRITE: (variadic in, variadic out)
681 * Read/Write to/from the I2C bus.
682 *
683 * Locks required: I2C_LOCK
684 * Return code: 0, ETIME, EINVAL, EACCES (if I2C_LOCK is not held)
685 */
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
696
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
718
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
747
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
773
774/* MC_CMD_GET_PHY_CFG:
775 * Report PHY configuration. This guarantees to succeed even if the PHY is in
776 * a "zombie" state.
777 *
778 * Locks required: None
779 * Return code: 0
780 */
781#define MC_CMD_GET_PHY_CFG 0x24
782
783#define MC_CMD_GET_PHY_CFG_IN_LEN 0
784#define MC_CMD_GET_PHY_CFG_OUT_LEN 72
785
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
834
835/* MC_CMD_START_PHY_BIST:
836 * Start a BIST test on the PHY.
837 *
838 * Locks required: PHY_LOCK if doing a PHY BIST
839 * Return code: 0, EINVAL, EACCES (if PHY_LOCK is not held)
840 */
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
844
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
851
852/* MC_CMD_POLL_PHY_BIST: (variadic output)
853 * Poll for BIST completion
854 *
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.
858 *
859 * Locks required: PHY_LOCK if doing a PHY BIST
860 * Return code: 0, EACCES (if PHY_LOCK is not held)
861 */
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
871
872/* MC_CMD_PHY_SPI: (variadic in, variadic out)
873 * Read/Write/Erase the PHY SPI device
874 *
875 * Locks required: PHY_LOCK
876 * Return code: 0, ETIME, EINVAL, EACCES (if PHY_LOCK is not held)
877 */
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
889
890
891/* MC_CMD_GET_LOOPBACK_MODES:
892 * Returns a bitmask of loopback modes evailable at each speed.
893 *
894 * Locks required: None
895 * Return code: 0
896 */
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
904
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
914 */
915#define MC_CMD_FCNTL_AUTO 3
916
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
924
925/* MC_CMD_GET_LINK:
926 * Read the unified MAC/PHY link state
927 *
928 * Locks required: None
929 * Return code: 0, ETIME
930 */
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
955
956/* MC_CMD_SET_LINK:
957 * Write the unified MAC/PHY link configuration
958 *
959 * A loopback speed of "0" is supported, and means
960 * (choose any available speed)
961 *
962 * Locks required: None
963 * Return code: 0, EINVAL, ETIME
964 */
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
978
979/* MC_CMD_SET_ID_LED:
980 * Set indentification LED state
981 *
982 * Locks required: None
983 * Return code: 0, EINVAL
984 */
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
992
993/* MC_CMD_SET_MAC:
994 * Set MAC configuration
995 *
996 * The MTU is the MTU programmed directly into the XMAC/GMAC
997 * (inclusive of EtherII, VLAN, bug16011 padding)
998 *
999 * Locks required: None
1000 * Return code: 0, EINVAL
1001 */
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
1014
1015/* MC_CMD_PHY_STATS:
1016 * Get generic PHY statistics
1017 *
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.
1021 *
1022 * Locks required: None
1023 * Returns: 0, ETIME
1024 * Response methods: shared memory, event
1025 */
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
1031
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
8704a2c8
GB
1093#define MC_CMD_GMAC_DMABUF_START 64
1094#define MC_CMD_GMAC_DMABUF_END 95
f0d37f42 1095/* Insert new members here. */
8704a2c8 1096#define MC_CMD_MAC_GENERATION_END 96
f0d37f42
SH
1097#define MC_CMD_MAC_NSTATS (MC_CMD_MAC_GENERATION_END+1)
1098
1099/* MC_CMD_MAC_STATS:
1100 * Get unified GMAC/XMAC statistics
1101 *
1102 * This call returns unified statistics maintained by the MC as it
1103 * switches between the GMAC and XMAC. The MC will write out all
1104 * supported stats. The driver should zero initialise the buffer to
1105 * guarantee consistent results.
1106 *
1107 * Locks required: None
1108 * Returns: 0
1109 * Response methods: shared memory, event
1110 */
1111#define MC_CMD_MAC_STATS 0x2e
1112#define MC_CMD_MAC_STATS_IN_LEN 16
1113#define MC_CMD_MAC_STATS_IN_DMA_ADDR_LO_OFST 0
1114#define MC_CMD_MAC_STATS_IN_DMA_ADDR_HI_OFST 4
1115#define MC_CMD_MAC_STATS_IN_CMD_OFST 8
1116#define MC_CMD_MAC_STATS_CMD_DMA_LBN 0
1117#define MC_CMD_MAC_STATS_CMD_DMA_WIDTH 1
1118#define MC_CMD_MAC_STATS_CMD_CLEAR_LBN 1
1119#define MC_CMD_MAC_STATS_CMD_CLEAR_WIDTH 1
1120#define MC_CMD_MAC_STATS_CMD_PERIODIC_CHANGE_LBN 2
1121#define MC_CMD_MAC_STATS_CMD_PERIODIC_CHANGE_WIDTH 1
1122/* Fields only relevent when PERIODIC_CHANGE is set */
1123#define MC_CMD_MAC_STATS_CMD_PERIODIC_ENABLE_LBN 3
1124#define MC_CMD_MAC_STATS_CMD_PERIODIC_ENABLE_WIDTH 1
1125#define MC_CMD_MAC_STATS_CMD_PERIODIC_CLEAR_LBN 4
1126#define MC_CMD_MAC_STATS_CMD_PERIODIC_CLEAR_WIDTH 1
1127#define MC_CMD_MAC_STATS_CMD_PERIOD_MS_LBN 16
1128#define MC_CMD_MAC_STATS_CMD_PERIOD_MS_WIDTH 16
1129#define MC_CMD_MAC_STATS_IN_DMA_LEN_OFST 12
1130
1131#define MC_CMD_MAC_STATS_OUT_LEN 0
1132
1133/* Callisto flags */
1134#define MC_CMD_SFT9001_ROBUST_LBN 0
1135#define MC_CMD_SFT9001_ROBUST_WIDTH 1
1136#define MC_CMD_SFT9001_SHORT_REACH_LBN 1
1137#define MC_CMD_SFT9001_SHORT_REACH_WIDTH 1
1138
1139/* MC_CMD_SFT9001_GET:
1140 * Read current callisto specific setting
1141 *
1142 * Locks required: None
1143 * Returns: 0, ETIME
1144 */
1145#define MC_CMD_SFT9001_GET 0x30
1146#define MC_CMD_SFT9001_GET_IN_LEN 0
1147#define MC_CMD_SFT9001_GET_OUT_LEN 4
1148#define MC_CMD_SFT9001_GET_OUT_FLAGS_OFST 0
1149
1150/* MC_CMD_SFT9001_SET:
1151 * Write current callisto specific setting
1152 *
1153 * Locks required: None
1154 * Returns: 0, ETIME, EINVAL
1155 */
1156#define MC_CMD_SFT9001_SET 0x31
1157#define MC_CMD_SFT9001_SET_IN_LEN 4
1158#define MC_CMD_SFT9001_SET_IN_FLAGS_OFST 0
1159#define MC_CMD_SFT9001_SET_OUT_LEN 0
1160
1161
1162/* MC_CMD_WOL_FILTER_SET:
1163 * Set a WoL filter
1164 *
1165 * Locks required: None
1166 * Returns: 0, EBUSY, EINVAL, ENOSYS
1167 */
1168#define MC_CMD_WOL_FILTER_SET 0x32
1169#define MC_CMD_WOL_FILTER_SET_IN_LEN 192 /* 190 rounded up to a word */
1170#define MC_CMD_WOL_FILTER_SET_IN_FILTER_MODE_OFST 0
1171#define MC_CMD_WOL_FILTER_SET_IN_WOL_TYPE_OFST 4
1172
1173/* There is a union at offset 8, following defines overlap due to
1174 * this */
1175#define MC_CMD_WOL_FILTER_SET_IN_DATA_OFST 8
1176
1177#define MC_CMD_WOL_FILTER_SET_IN_MAGIC_MAC_OFST \
1178 MC_CMD_WOL_FILTER_SET_IN_DATA_OFST
1179
1180#define MC_CMD_WOL_FILTER_SET_IN_IPV4_SYN_SRC_IP_OFST \
1181 MC_CMD_WOL_FILTER_SET_IN_DATA_OFST
1182#define MC_CMD_WOL_FILTER_SET_IN_IPV4_SYN_DST_IP_OFST \
1183 (MC_CMD_WOL_FILTER_SET_IN_DATA_OFST + 4)
1184#define MC_CMD_WOL_FILTER_SET_IN_IPV4_SYN_SRC_PORT_OFST \
1185 (MC_CMD_WOL_FILTER_SET_IN_DATA_OFST + 8)
1186#define MC_CMD_WOL_FILTER_SET_IN_IPV4_SYN_DST_PORT_OFST \
1187 (MC_CMD_WOL_FILTER_SET_IN_DATA_OFST + 10)
1188
1189#define MC_CMD_WOL_FILTER_SET_IN_IPV6_SYN_SRC_IP_OFST \
1190 MC_CMD_WOL_FILTER_SET_IN_DATA_OFST
1191#define MC_CMD_WOL_FILTER_SET_IN_IPV6_SYN_DST_IP_OFST \
1192 (MC_CMD_WOL_FILTER_SET_IN_DATA_OFST + 16)
1193#define MC_CMD_WOL_FILTER_SET_IN_IPV6_SYN_SRC_PORT_OFST \
1194 (MC_CMD_WOL_FILTER_SET_IN_DATA_OFST + 32)
1195#define MC_CMD_WOL_FILTER_SET_IN_IPV6_SYN_DST_PORT_OFST \
1196 (MC_CMD_WOL_FILTER_SET_IN_DATA_OFST + 34)
1197
1198#define MC_CMD_WOL_FILTER_SET_IN_BITMAP_MASK_OFST \
1199 MC_CMD_WOL_FILTER_SET_IN_DATA_OFST
1200#define MC_CMD_WOL_FILTER_SET_IN_BITMAP_OFST \
1201 (MC_CMD_WOL_FILTER_SET_IN_DATA_OFST + 48)
1202#define MC_CMD_WOL_FILTER_SET_IN_BITMAP_LEN_OFST \
1203 (MC_CMD_WOL_FILTER_SET_IN_DATA_OFST + 176)
1204#define MC_CMD_WOL_FILTER_SET_IN_BITMAP_LAYER3_OFST \
1205 (MC_CMD_WOL_FILTER_SET_IN_DATA_OFST + 177)
1206#define MC_CMD_WOL_FILTER_SET_IN_BITMAP_LAYER4_OFST \
1207 (MC_CMD_WOL_FILTER_SET_IN_DATA_OFST + 178)
1208
1209#define MC_CMD_WOL_FILTER_SET_OUT_LEN 4
1210#define MC_CMD_WOL_FILTER_SET_OUT_FILTER_ID_OFST 0
1211
1212/* WOL Filter types enumeration */
1213#define MC_CMD_WOL_TYPE_MAGIC 0x0
1214 /* unused 0x1 */
1215#define MC_CMD_WOL_TYPE_WIN_MAGIC 0x2
1216#define MC_CMD_WOL_TYPE_IPV4_SYN 0x3
1217#define MC_CMD_WOL_TYPE_IPV6_SYN 0x4
1218#define MC_CMD_WOL_TYPE_BITMAP 0x5
1219#define MC_CMD_WOL_TYPE_MAX 0x6
1220
1221#define MC_CMD_FILTER_MODE_SIMPLE 0x0
1222#define MC_CMD_FILTER_MODE_STRUCTURED 0xffffffff
1223
1224/* MC_CMD_WOL_FILTER_REMOVE:
1225 * Remove a WoL filter
1226 *
1227 * Locks required: None
1228 * Returns: 0, EINVAL, ENOSYS
1229 */
1230#define MC_CMD_WOL_FILTER_REMOVE 0x33
1231#define MC_CMD_WOL_FILTER_REMOVE_IN_LEN 4
1232#define MC_CMD_WOL_FILTER_REMOVE_IN_FILTER_ID_OFST 0
1233#define MC_CMD_WOL_FILTER_REMOVE_OUT_LEN 0
1234
1235
1236/* MC_CMD_WOL_FILTER_RESET:
1237 * Reset (i.e. remove all) WoL filters
1238 *
1239 * Locks required: None
1240 * Returns: 0, ENOSYS
1241 */
1242#define MC_CMD_WOL_FILTER_RESET 0x34
1243#define MC_CMD_WOL_FILTER_RESET_IN_LEN 0
1244#define MC_CMD_WOL_FILTER_RESET_OUT_LEN 0
1245
1246/* MC_CMD_SET_MCAST_HASH:
1247 * Set the MCASH hash value without otherwise
1248 * reconfiguring the MAC
1249 */
1250#define MC_CMD_SET_MCAST_HASH 0x35
1251#define MC_CMD_SET_MCAST_HASH_IN_LEN 32
1252#define MC_CMD_SET_MCAST_HASH_IN_HASH0_OFST 0
1253#define MC_CMD_SET_MCAST_HASH_IN_HASH1_OFST 16
1254#define MC_CMD_SET_MCAST_HASH_OUT_LEN 0
1255
1256/* MC_CMD_NVRAM_TYPES:
1257 * Return bitfield indicating available types of virtual NVRAM partitions
1258 *
1259 * Locks required: none
1260 * Returns: 0
1261 */
1262#define MC_CMD_NVRAM_TYPES 0x36
1263#define MC_CMD_NVRAM_TYPES_IN_LEN 0
1264#define MC_CMD_NVRAM_TYPES_OUT_LEN 4
1265#define MC_CMD_NVRAM_TYPES_OUT_TYPES_OFST 0
1266
1267/* Supported NVRAM types */
1268#define MC_CMD_NVRAM_TYPE_DISABLED_CALLISTO 0
1269#define MC_CMD_NVRAM_TYPE_MC_FW 1
1270#define MC_CMD_NVRAM_TYPE_MC_FW_BACKUP 2
1271#define MC_CMD_NVRAM_TYPE_STATIC_CFG_PORT0 3
1272#define MC_CMD_NVRAM_TYPE_STATIC_CFG_PORT1 4
1273#define MC_CMD_NVRAM_TYPE_DYNAMIC_CFG_PORT0 5
1274#define MC_CMD_NVRAM_TYPE_DYNAMIC_CFG_PORT1 6
1275#define MC_CMD_NVRAM_TYPE_EXP_ROM 7
1276#define MC_CMD_NVRAM_TYPE_EXP_ROM_CFG_PORT0 8
1277#define MC_CMD_NVRAM_TYPE_EXP_ROM_CFG_PORT1 9
1278#define MC_CMD_NVRAM_TYPE_PHY_PORT0 10
1279#define MC_CMD_NVRAM_TYPE_PHY_PORT1 11
1280#define MC_CMD_NVRAM_TYPE_LOG 12
1281
1282/* MC_CMD_NVRAM_INFO:
1283 * Read info about a virtual NVRAM partition
1284 *
1285 * Locks required: none
1286 * Returns: 0, EINVAL (bad type)
1287 */
1288#define MC_CMD_NVRAM_INFO 0x37
1289#define MC_CMD_NVRAM_INFO_IN_LEN 4
1290#define MC_CMD_NVRAM_INFO_IN_TYPE_OFST 0
1291#define MC_CMD_NVRAM_INFO_OUT_LEN 24
1292#define MC_CMD_NVRAM_INFO_OUT_TYPE_OFST 0
1293#define MC_CMD_NVRAM_INFO_OUT_SIZE_OFST 4
1294#define MC_CMD_NVRAM_INFO_OUT_ERASESIZE_OFST 8
1295#define MC_CMD_NVRAM_INFO_OUT_FLAGS_OFST 12
1296#define MC_CMD_NVRAM_PROTECTED_LBN 0
1297#define MC_CMD_NVRAM_PROTECTED_WIDTH 1
1298#define MC_CMD_NVRAM_INFO_OUT_PHYSDEV_OFST 16
1299#define MC_CMD_NVRAM_INFO_OUT_PHYSADDR_OFST 20
1300
1301/* MC_CMD_NVRAM_UPDATE_START:
1302 * Start a group of update operations on a virtual NVRAM partition
1303 *
1304 * Locks required: PHY_LOCK if type==*PHY*
1305 * Returns: 0, EINVAL (bad type), EACCES (if PHY_LOCK required and not held)
1306 */
1307#define MC_CMD_NVRAM_UPDATE_START 0x38
1308#define MC_CMD_NVRAM_UPDATE_START_IN_LEN 4
1309#define MC_CMD_NVRAM_UPDATE_START_IN_TYPE_OFST 0
1310#define MC_CMD_NVRAM_UPDATE_START_OUT_LEN 0
1311
1312/* MC_CMD_NVRAM_READ:
1313 * Read data from a virtual NVRAM partition
1314 *
1315 * Locks required: PHY_LOCK if type==*PHY*
1316 * Returns: 0, EINVAL (bad type/offset/length), EACCES (if PHY_LOCK required and not held)
1317 */
1318#define MC_CMD_NVRAM_READ 0x39
1319#define MC_CMD_NVRAM_READ_IN_LEN 12
1320#define MC_CMD_NVRAM_READ_IN_TYPE_OFST 0
1321#define MC_CMD_NVRAM_READ_IN_OFFSET_OFST 4
1322#define MC_CMD_NVRAM_READ_IN_LENGTH_OFST 8
1323#define MC_CMD_NVRAM_READ_OUT_LEN(_read_bytes) (_read_bytes)
1324#define MC_CMD_NVRAM_READ_OUT_READ_BUFFER_OFST 0
1325
1326/* MC_CMD_NVRAM_WRITE:
1327 * Write data to a virtual NVRAM partition
1328 *
1329 * Locks required: PHY_LOCK if type==*PHY*
1330 * Returns: 0, EINVAL (bad type/offset/length), EACCES (if PHY_LOCK required and not held)
1331 */
1332#define MC_CMD_NVRAM_WRITE 0x3a
1333#define MC_CMD_NVRAM_WRITE_IN_TYPE_OFST 0
1334#define MC_CMD_NVRAM_WRITE_IN_OFFSET_OFST 4
1335#define MC_CMD_NVRAM_WRITE_IN_LENGTH_OFST 8
1336#define MC_CMD_NVRAM_WRITE_IN_WRITE_BUFFER_OFST 12
1337#define MC_CMD_NVRAM_WRITE_IN_LEN(_write_bytes) (12 + _write_bytes)
1338#define MC_CMD_NVRAM_WRITE_OUT_LEN 0
1339
1340/* MC_CMD_NVRAM_ERASE:
1341 * Erase sector(s) from a virtual NVRAM partition
1342 *
1343 * Locks required: PHY_LOCK if type==*PHY*
1344 * Returns: 0, EINVAL (bad type/offset/length), EACCES (if PHY_LOCK required and not held)
1345 */
1346#define MC_CMD_NVRAM_ERASE 0x3b
1347#define MC_CMD_NVRAM_ERASE_IN_LEN 12
1348#define MC_CMD_NVRAM_ERASE_IN_TYPE_OFST 0
1349#define MC_CMD_NVRAM_ERASE_IN_OFFSET_OFST 4
1350#define MC_CMD_NVRAM_ERASE_IN_LENGTH_OFST 8
1351#define MC_CMD_NVRAM_ERASE_OUT_LEN 0
1352
1353/* MC_CMD_NVRAM_UPDATE_FINISH:
1354 * Finish a group of update operations on a virtual NVRAM partition
1355 *
1356 * Locks required: PHY_LOCK if type==*PHY*
1357 * Returns: 0, EINVAL (bad type/offset/length), EACCES (if PHY_LOCK required and not held)
1358 */
1359#define MC_CMD_NVRAM_UPDATE_FINISH 0x3c
1360#define MC_CMD_NVRAM_UPDATE_FINISH_IN_LEN 4
1361#define MC_CMD_NVRAM_UPDATE_FINISH_IN_TYPE_OFST 0
1362#define MC_CMD_NVRAM_UPDATE_FINISH_OUT_LEN 0
1363
1364/* MC_CMD_REBOOT:
1365 * Reboot the MC. The AFTER_ASSERTION flag is intended to be used
1366 * when the driver notices an assertion failure, to allow two ports to
1367 * both recover (semi-)gracefully.
1368 *
1369 * Locks required: NONE
1370 * Returns: Nothing. You get back a response with ERR=1, DATALEN=0
1371 */
1372#define MC_CMD_REBOOT 0x3d
1373#define MC_CMD_REBOOT_IN_LEN 4
1374#define MC_CMD_REBOOT_IN_FLAGS_OFST 0
1375#define MC_CMD_REBOOT_FLAGS_AFTER_ASSERTION 1
1376#define MC_CMD_REBOOT_OUT_LEN 0
1377
1378/* MC_CMD_SCHEDINFO:
1379 * Request scheduler info. from the MC.
1380 *
1381 * Locks required: NONE
1382 * Returns: An array of (timeslice,maximum overrun), one for each thread,
1383 * in ascending order of thread address.s
1384 */
1385#define MC_CMD_SCHEDINFO 0x3e
1386#define MC_CMD_SCHEDINFO_IN_LEN 0
1387
1388
1389/* MC_CMD_SET_REBOOT_MODE: (debug)
1390 * Set the mode for the next MC reboot.
1391 *
1392 * Locks required: NONE
1393 *
1394 * Sets the reboot mode to the specified value. Returns the old mode.
1395 */
1396#define MC_CMD_REBOOT_MODE 0x3f
1397#define MC_CMD_REBOOT_MODE_IN_LEN 4
1398#define MC_CMD_REBOOT_MODE_IN_VALUE_OFST 0
1399#define MC_CMD_REBOOT_MODE_OUT_LEN 4
1400#define MC_CMD_REBOOT_MODE_OUT_VALUE_OFST 0
1401#define MC_CMD_REBOOT_MODE_NORMAL 0
1402#define MC_CMD_REBOOT_MODE_SNAPPER 3
1403
1404/* MC_CMD_DEBUG_LOG:
1405 * Null request/response command (debug)
1406 * - sequence number is always zero
1407 * - only supported on the UART interface
1408 * (the same set of bytes is delivered as an
1409 * event over PCI)
1410 */
1411#define MC_CMD_DEBUG_LOG 0x40
1412#define MC_CMD_DEBUG_LOG_IN_LEN 0
1413#define MC_CMD_DEBUG_LOG_OUT_LEN 0
1414
1415/* Generic sensor enumeration. Note that a dual port NIC
1416 * will EITHER expose PHY_COMMON_TEMP OR PHY0_TEMP and
1417 * PHY1_TEMP depending on whether there is a single sensor
1418 * in the vicinity of the two port, or one per port.
1419 */
1420#define MC_CMD_SENSOR_CONTROLLER_TEMP 0 /* degC */
1421#define MC_CMD_SENSOR_PHY_COMMON_TEMP 1 /* degC */
1422#define MC_CMD_SENSOR_CONTROLLER_COOLING 2 /* bool */
1423#define MC_CMD_SENSOR_PHY0_TEMP 3 /* degC */
1424#define MC_CMD_SENSOR_PHY0_COOLING 4 /* bool */
1425#define MC_CMD_SENSOR_PHY1_TEMP 5 /* degC */
1426#define MC_CMD_SENSOR_PHY1_COOLING 6 /* bool */
1427#define MC_CMD_SENSOR_IN_1V0 7 /* mV */
1428#define MC_CMD_SENSOR_IN_1V2 8 /* mV */
1429#define MC_CMD_SENSOR_IN_1V8 9 /* mV */
1430#define MC_CMD_SENSOR_IN_2V5 10 /* mV */
1431#define MC_CMD_SENSOR_IN_3V3 11 /* mV */
1432#define MC_CMD_SENSOR_IN_12V0 12 /* mV */
1433
1434
1435/* Sensor state */
1436#define MC_CMD_SENSOR_STATE_OK 0
1437#define MC_CMD_SENSOR_STATE_WARNING 1
1438#define MC_CMD_SENSOR_STATE_FATAL 2
1439#define MC_CMD_SENSOR_STATE_BROKEN 3
1440
1441/* MC_CMD_SENSOR_INFO:
1442 * Returns information about every available sensor.
1443 *
1444 * Each sensor has a single (16bit) value, and a corresponding state.
1445 * The mapping between value and sensor is nominally determined by the
1446 * MC, but in practise is implemented as zero (BROKEN), one (TEMPERATURE),
1447 * or two (VOLTAGE) ranges per sensor per state.
1448 *
1449 * This call returns a mask (32bit) of the sensors that are supported
1450 * by this platform, then an array (indexed by MC_CMD_SENSOR) of byte
1451 * offsets to the per-sensor arrays. Each sensor array has four 16bit
1452 * numbers, min1, max1, min2, max2.
1453 *
1454 * Locks required: None
1455 * Returns: 0
1456 */
1457#define MC_CMD_SENSOR_INFO 0x41
1458#define MC_CMD_SENSOR_INFO_IN_LEN 0
1459#define MC_CMD_SENSOR_INFO_OUT_MASK_OFST 0
1460#define MC_CMD_SENSOR_INFO_OUT_OFFSET_OFST(_x) \
1461 (4 + (_x))
1462#define MC_CMD_SENSOR_INFO_OUT_MIN1_OFST(_ofst) \
1463 ((_ofst) + 0)
1464#define MC_CMD_SENSOR_INFO_OUT_MAX1_OFST(_ofst) \
1465 ((_ofst) + 2)
1466#define MC_CMD_SENSOR_INFO_OUT_MIN2_OFST(_ofst) \
1467 ((_ofst) + 4)
1468#define MC_CMD_SENSOR_INFO_OUT_MAX2_OFST(_ofst) \
1469 ((_ofst) + 6)
1470
1471/* MC_CMD_READ_SENSORS
1472 * Returns the current (value, state) for each sensor
1473 *
1474 * Returns the current (value, state) [each 16bit] of each sensor supported by
1475 * this board, by DMA'ing a sparse array (indexed by the sensor type) into host
1476 * memory.
1477 *
1478 * The MC will send a SENSOREVT event every time any sensor changes state. The
1479 * driver is responsible for ensuring that it doesn't miss any events. The board
1480 * will function normally if all sensors are in STATE_OK or state_WARNING.
1481 * Otherwise the board should not be expected to function.
1482 */
1483#define MC_CMD_READ_SENSORS 0x42
1484#define MC_CMD_READ_SENSORS_IN_LEN 8
1485#define MC_CMD_READ_SENSORS_IN_DMA_ADDR_LO_OFST 0
1486#define MC_CMD_READ_SENSORS_IN_DMA_ADDR_HI_OFST 4
1487#define MC_CMD_READ_SENSORS_OUT_LEN 0
1488
1489
1490/* MC_CMD_GET_PHY_STATE:
1491 * Report current state of PHY. A "zombie" PHY is a PHY that has failed to
1492 * boot (e.g. due to missing or corrupted firmware).
1493 *
1494 * Locks required: None
1495 * Return code: 0
1496 */
1497#define MC_CMD_GET_PHY_STATE 0x43
1498
1499#define MC_CMD_GET_PHY_STATE_IN_LEN 0
1500#define MC_CMD_GET_PHY_STATE_OUT_LEN 4
1501#define MC_CMD_GET_PHY_STATE_STATE_OFST 0
1502/* PHY state enumeration: */
1503#define MC_CMD_PHY_STATE_OK 1
1504#define MC_CMD_PHY_STATE_ZOMBIE 2
1505
1506
1507/* 802.1Qbb control. 8 Tx queues that map to priorities 0 - 7. Use all 1s to
1508 * disable 802.Qbb for a given priority. */
1509#define MC_CMD_SETUP_8021QBB 0x44
1510#define MC_CMD_SETUP_8021QBB_IN_LEN 32
1511#define MC_CMD_SETUP_8021QBB_OUT_LEN 0
1512#define MC_CMD_SETUP_8021QBB_IN_TXQS_OFFST 0
1513
1514
1515/* MC_CMD_WOL_FILTER_GET:
1516 * Retrieve ID of any WoL filters
1517 *
1518 * Locks required: None
1519 * Returns: 0, ENOSYS
1520 */
1521#define MC_CMD_WOL_FILTER_GET 0x45
1522#define MC_CMD_WOL_FILTER_GET_IN_LEN 0
1523#define MC_CMD_WOL_FILTER_GET_OUT_LEN 4
1524#define MC_CMD_WOL_FILTER_GET_OUT_FILTER_ID_OFST 0
1525
1526
1527/* MC_CMD_ADD_LIGHTSOUT_OFFLOAD:
1528 * Offload a protocol to NIC for lights-out state
1529 *
1530 * Locks required: None
1531 * Returns: 0, ENOSYS
1532 */
1533#define MC_CMD_ADD_LIGHTSOUT_OFFLOAD 0x46
1534
1535#define MC_CMD_ADD_LIGHTSOUT_OFFLOAD_IN_LEN 16
1536#define MC_CMD_ADD_LIGHTSOUT_OFFLOAD_IN_PROTOCOL_OFST 0
1537
1538/* There is a union at offset 4, following defines overlap due to
1539 * this */
1540#define MC_CMD_ADD_LIGHTSOUT_OFFLOAD_IN_DATA_OFST 4
1541#define MC_CMD_ADD_LIGHTSOUT_OFFLOAD_IN_ARPMAC_OFST 4
1542#define MC_CMD_ADD_LIGHTSOUT_OFFLOAD_IN_ARPIP_OFST 10
1543#define MC_CMD_ADD_LIGHTSOUT_OFFLOAD_IN_NSMAC_OFST 4
1544#define MC_CMD_ADD_LIGHTSOUT_OFFLOAD_IN_NSSNIPV6_OFST 10
1545#define MC_CMD_ADD_LIGHTSOUT_OFFLOAD_IN_NSIPV6_OFST 26
1546
1547#define MC_CMD_ADD_LIGHTSOUT_OFFLOAD_OUT_LEN 4
1548#define MC_CMD_ADD_LIGHTSOUT_OFFLOAD_OUT_FILTER_ID_OFST 0
1549
1550
1551/* MC_CMD_REMOVE_LIGHTSOUT_PROTOCOL_OFFLOAD:
1552 * Offload a protocol to NIC for lights-out state
1553 *
1554 * Locks required: None
1555 * Returns: 0, ENOSYS
1556 */
1557#define MC_CMD_REMOVE_LIGHTSOUT_OFFLOAD 0x47
1558#define MC_CMD_REMOVE_LIGHTSOUT_OFFLOAD_IN_LEN 8
1559#define MC_CMD_REMOVE_LIGHTSOUT_OFFLOAD_OUT_LEN 0
1560
1561#define MC_CMD_REMOVE_LIGHTSOUT_OFFLOAD_IN_PROTOCOL_OFST 0
1562#define MC_CMD_REMOVE_LIGHTSOUT_OFFLOAD_IN_FILTER_ID_OFST 4
1563
1564/* Lights-out offload protocols enumeration */
1565#define MC_CMD_LIGHTSOUT_OFFLOAD_PROTOCOL_ARP 0x1
1566#define MC_CMD_LIGHTSOUT_OFFLOAD_PROTOCOL_NS 0x2
1567
1568
1569/* MC_CMD_MAC_RESET_RESTORE:
1570 * Restore MAC after block reset
1571 *
1572 * Locks required: None
1573 * Returns: 0
1574 */
1575
1576#define MC_CMD_MAC_RESET_RESTORE 0x48
1577#define MC_CMD_MAC_RESET_RESTORE_IN_LEN 0
1578#define MC_CMD_MAC_RESET_RESTORE_OUT_LEN 0
1579
1580#endif /* MCDI_PCOL_H */
This page took 0.10666 seconds and 5 git commands to generate.