vnic_resource.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved.
  3. * Copyright 2007 Nuova Systems, Inc. All rights reserved.
  4. *
  5. * This program is free software; you may redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; version 2 of the License.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  10. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  11. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  12. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  13. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  14. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  15. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  16. * SOFTWARE.
  17. *
  18. */
  19. #ifndef _VNIC_RESOURCE_H_
  20. #define _VNIC_RESOURCE_H_
  21. #define VNIC_RES_MAGIC 0x766E6963L /* 'vnic' */
  22. #define VNIC_RES_VERSION 0x00000000L
  23. #define MGMTVNIC_MAGIC 0x544d474dL /* 'MGMT' */
  24. #define MGMTVNIC_VERSION 0x00000000L
  25. /* The MAC address assigned to the CFG vNIC is fixed. */
  26. #define MGMTVNIC_MAC { 0x02, 0x00, 0x54, 0x4d, 0x47, 0x4d }
  27. /* vNIC resource types */
  28. enum vnic_res_type {
  29. RES_TYPE_EOL, /* End-of-list */
  30. RES_TYPE_WQ, /* Work queues */
  31. RES_TYPE_RQ, /* Receive queues */
  32. RES_TYPE_CQ, /* Completion queues */
  33. RES_TYPE_RSVD1,
  34. RES_TYPE_NIC_CFG, /* Enet NIC config registers */
  35. RES_TYPE_RSVD2,
  36. RES_TYPE_RSVD3,
  37. RES_TYPE_RSVD4,
  38. RES_TYPE_RSVD5,
  39. RES_TYPE_INTR_CTRL, /* Interrupt ctrl table */
  40. RES_TYPE_INTR_TABLE, /* MSI/MSI-X Interrupt table */
  41. RES_TYPE_INTR_PBA, /* MSI/MSI-X PBA table */
  42. RES_TYPE_INTR_PBA_LEGACY, /* Legacy intr status */
  43. RES_TYPE_RSVD6,
  44. RES_TYPE_RSVD7,
  45. RES_TYPE_DEVCMD, /* Device command region */
  46. RES_TYPE_PASS_THRU_PAGE, /* Pass-thru page */
  47. RES_TYPE_SUBVNIC, /* subvnic resource type */
  48. RES_TYPE_MQ_WQ, /* MQ Work queues */
  49. RES_TYPE_MQ_RQ, /* MQ Receive queues */
  50. RES_TYPE_MQ_CQ, /* MQ Completion queues */
  51. RES_TYPE_DEPRECATED1, /* Old version of devcmd 2 */
  52. RES_TYPE_DEPRECATED2, /* Old version of devcmd 2 */
  53. RES_TYPE_DEVCMD2, /* Device control region */
  54. RES_TYPE_MAX, /* Count of resource types */
  55. };
  56. struct vnic_resource_header {
  57. u32 magic;
  58. u32 version;
  59. };
  60. struct mgmt_barmap_hdr {
  61. u32 magic; /* magic number */
  62. u32 version; /* header format version */
  63. u16 lif; /* loopback lif for mgmt frames */
  64. u16 pci_slot; /* installed pci slot */
  65. char serial[16]; /* card serial number */
  66. };
  67. struct vnic_resource {
  68. u8 type;
  69. u8 bar;
  70. u8 pad[2];
  71. u32 bar_offset;
  72. u32 count;
  73. };
  74. #endif /* _VNIC_RESOURCE_H_ */