per Intel policy to include file commit date using git cmd below. The policy does not apply to non-Intel (C) notices. git log --follow -C90% --format=%ad --date default <file> | tail -1 and then pull just the 4 digit year from the result. Intel copyrights were not added to files where Intel either had no contribution ot the contribution lacked substance (ie license header updates, formatting changes, etc). Contribution date used "--follow -C95%" to get the most accurate date. Note that several files in this patch didn't end the license/(c) block with a blank comment line so these were added as the vast majority of files do have this last blank line. Simply there for consistency. Signed-off-by: paul luse <paul.e.luse@intel.com> Change-Id: Id5b7ce4f658fe87132f14139ead58d6e285c04d4 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/15192 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Community-CI: Mellanox Build Bot
152 lines
3.9 KiB
C
152 lines
3.9 KiB
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright (C) 2019 Intel Corporation.
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef VMD_H
|
|
#define VMD_H
|
|
|
|
#include "spdk/stdinc.h"
|
|
#include "spdk/vmd.h"
|
|
#include "spdk/env.h"
|
|
#include "spdk/util.h"
|
|
#include "spdk/log.h"
|
|
#include "vmd_spec.h"
|
|
|
|
struct vmd_hot_plug;
|
|
struct vmd_adapter;
|
|
struct vmd_pci_device;
|
|
|
|
struct pci_bars {
|
|
uint64_t vaddr;
|
|
uint64_t start;
|
|
uint32_t size;
|
|
};
|
|
|
|
struct vmd_pci_bus {
|
|
struct vmd_adapter *vmd;
|
|
struct vmd_pci_bus *parent; /* parent bus that this bus is attached to(primary bus. */
|
|
struct vmd_pci_device *self; /* Pci device that describes this bus(bar, bus numbers, etc */
|
|
|
|
uint32_t domain : 8;
|
|
uint32_t hotplug_buses : 10;
|
|
uint32_t is_added : 1;
|
|
uint32_t hp_event_queued : 1;
|
|
uint32_t rsv : 12;
|
|
|
|
uint32_t bus_number : 8;
|
|
uint32_t primary_bus : 8;
|
|
uint32_t secondary_bus : 8;
|
|
uint32_t subordinate_bus : 8;
|
|
uint32_t bus_start : 8;
|
|
uint32_t config_bus_number : 8;
|
|
|
|
TAILQ_HEAD(, vmd_pci_device) dev_list; /* list of pci end device attached to this bus */
|
|
TAILQ_ENTRY(vmd_pci_bus) tailq; /* link for all buses found during scan */
|
|
};
|
|
|
|
/*
|
|
* memory element for base address assignment and reuse
|
|
*/
|
|
struct pci_mem_mgr {
|
|
uint32_t size : 30; /* size of memory element */
|
|
uint32_t in_use : 1;
|
|
uint32_t rsv : 1;
|
|
uint64_t addr;
|
|
TAILQ_ENTRY(pci_mem_mgr) tailq;
|
|
};
|
|
|
|
struct vmd_hot_plug {
|
|
uint32_t count : 12;
|
|
uint32_t reserved_bus_count : 4;
|
|
uint32_t max_hotplug_bus_number : 8;
|
|
uint32_t next_bus_number : 8;
|
|
struct pci_bars bar;
|
|
union express_slot_status_register slot_status;
|
|
struct pci_mem_mgr mem[ADDR_ELEM_COUNT];
|
|
uint8_t bus_numbers[RESERVED_HOTPLUG_BUSES];
|
|
struct vmd_pci_bus *bus;
|
|
TAILQ_HEAD(, pci_mem_mgr) free_mem_queue;
|
|
TAILQ_HEAD(, pci_mem_mgr) alloc_mem_queue;
|
|
TAILQ_HEAD(, pci_mem_mgr) unused_mem_queue;
|
|
};
|
|
|
|
struct vmd_pci_device {
|
|
struct spdk_pci_device pci;
|
|
struct pci_bars bar[6];
|
|
|
|
struct vmd_pci_device *parent_bridge;
|
|
struct vmd_pci_bus *bus, *parent;
|
|
struct vmd_pci_bus *bus_object; /* bus tracks pci bus associated with this dev if type 1 dev. */
|
|
struct vmd_pci_bus *subordinate;
|
|
volatile struct pci_header *header;
|
|
volatile struct pci_express_cap *pcie_cap;
|
|
volatile struct pci_msix_capability *msix_cap;
|
|
volatile struct pci_msi_cap *msi_cap;
|
|
volatile struct serial_number_capability *sn_cap;
|
|
volatile struct pci_msix_table_entry *msix_table;
|
|
|
|
TAILQ_ENTRY(vmd_pci_device) tailq;
|
|
|
|
uint32_t class;
|
|
uint16_t vid;
|
|
uint16_t did;
|
|
uint16_t pcie_flags, msix_table_size;
|
|
uint32_t devfn;
|
|
bool hotplug_capable;
|
|
|
|
uint32_t header_type : 1;
|
|
uint32_t multifunction : 1;
|
|
uint32_t hotplug_bridge : 1;
|
|
uint32_t is_added : 1;
|
|
uint32_t is_hooked : 1;
|
|
uint32_t rsv1 : 12;
|
|
uint32_t target : 16;
|
|
|
|
struct vmd_hot_plug hp;
|
|
/* Cached version of the slot_control register */
|
|
union express_slot_control_register cached_slot_control;
|
|
};
|
|
|
|
/*
|
|
* The VMD adapter
|
|
*/
|
|
struct vmd_adapter {
|
|
struct spdk_pci_device *pci;
|
|
uint32_t domain;
|
|
/* physical and virtual VMD bars */
|
|
uint64_t cfgbar, cfgbar_size;
|
|
uint64_t membar, membar_size;
|
|
uint64_t msixbar, msixbar_size;
|
|
volatile uint8_t *cfg_vaddr;
|
|
volatile uint8_t *mem_vaddr;
|
|
volatile uint8_t *msix_vaddr;
|
|
volatile struct pci_msix_table_entry *msix_table;
|
|
uint32_t bar_sizes[6];
|
|
|
|
uint64_t physical_addr;
|
|
uint32_t current_addr_size;
|
|
|
|
uint32_t next_bus_number : 10;
|
|
uint32_t max_pci_bus : 10;
|
|
uint32_t root_port_updated : 1;
|
|
uint32_t scan_completed : 1;
|
|
uint32_t rsv : 10;
|
|
|
|
/* end devices attached to vmd adapters */
|
|
struct vmd_pci_device *target[MAX_VMD_TARGET];
|
|
uint32_t dev_count : 16;
|
|
uint32_t nvme_count : 8;
|
|
uint32_t vmd_index : 8;
|
|
|
|
struct vmd_pci_bus vmd_bus;
|
|
|
|
TAILQ_HEAD(, vmd_pci_bus) bus_list;
|
|
|
|
struct event_fifo *hp_queue;
|
|
};
|
|
|
|
struct vmd_pci_device *vmd_find_device(const struct spdk_pci_addr *addr);
|
|
|
|
#endif /* VMD_H */
|