2009-10-30 13:21:18 +01:00
|
|
|
/*
|
|
|
|
* pcie_host.h
|
|
|
|
*
|
|
|
|
* Copyright (c) 2009 Isaku Yamahata <yamahata at valinux co jp>
|
|
|
|
* VA Linux Systems Japan K.K.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
2010-03-07 16:48:43 +01:00
|
|
|
* with this program; if not, see <http://www.gnu.org/licenses/>.
|
2009-10-30 13:21:18 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PCIE_HOST_H
|
|
|
|
#define PCIE_HOST_H
|
|
|
|
|
2012-12-12 22:05:42 +01:00
|
|
|
#include "hw/pci/pci_host.h"
|
2012-12-17 18:19:49 +01:00
|
|
|
#include "exec/memory.h"
|
2009-10-30 13:21:18 +01:00
|
|
|
|
2012-10-19 22:43:33 +02:00
|
|
|
#define TYPE_PCIE_HOST_BRIDGE "pcie-host-bridge"
|
|
|
|
#define PCIE_HOST_BRIDGE(obj) \
|
|
|
|
OBJECT_CHECK(PCIExpressHost, (obj), TYPE_PCIE_HOST_BRIDGE)
|
|
|
|
|
2013-09-02 16:59:38 +02:00
|
|
|
#define PCIE_HOST_MCFG_BASE "MCFG"
|
2013-09-10 09:16:02 +02:00
|
|
|
#define PCIE_HOST_MCFG_SIZE "mcfg_size"
|
2013-09-02 16:59:38 +02:00
|
|
|
|
2013-09-10 07:43:48 +02:00
|
|
|
/* pcie_host::base_addr == PCIE_BASE_ADDR_UNMAPPED when it isn't mapped. */
|
|
|
|
#define PCIE_BASE_ADDR_UNMAPPED ((hwaddr)-1ULL)
|
|
|
|
|
2009-11-12 06:58:41 +01:00
|
|
|
struct PCIExpressHost {
|
2009-10-30 13:21:18 +01:00
|
|
|
PCIHostState pci;
|
|
|
|
|
|
|
|
/* express part */
|
|
|
|
|
|
|
|
/* base address where MMCONFIG area is mapped. */
|
2012-10-23 12:30:10 +02:00
|
|
|
hwaddr base_addr;
|
2009-10-30 13:21:18 +01:00
|
|
|
|
|
|
|
/* the size of MMCONFIG area. It's host bridge dependent */
|
2012-10-23 12:30:10 +02:00
|
|
|
hwaddr size;
|
2009-10-30 13:21:18 +01:00
|
|
|
|
2011-08-15 16:17:25 +02:00
|
|
|
/* MMCONFIG mmio area */
|
|
|
|
MemoryRegion mmio;
|
2009-11-12 06:58:41 +01:00
|
|
|
};
|
2009-10-30 13:21:18 +01:00
|
|
|
|
|
|
|
void pcie_host_mmcfg_unmap(PCIExpressHost *e);
|
2015-01-06 17:03:08 +01:00
|
|
|
void pcie_host_mmcfg_init(PCIExpressHost *e, uint32_t size);
|
2012-10-19 22:43:32 +02:00
|
|
|
void pcie_host_mmcfg_map(PCIExpressHost *e, hwaddr addr, uint32_t size);
|
2009-10-30 13:21:18 +01:00
|
|
|
void pcie_host_mmcfg_update(PCIExpressHost *e,
|
|
|
|
int enable,
|
2012-10-19 22:43:32 +02:00
|
|
|
hwaddr addr,
|
|
|
|
uint32_t size);
|
2009-10-30 13:21:18 +01:00
|
|
|
|
2013-09-10 09:15:00 +02:00
|
|
|
/*
|
|
|
|
* PCI express ECAM (Enhanced Configuration Address Mapping) format.
|
|
|
|
* AKA mmcfg address
|
|
|
|
* bit 20 - 28: bus number
|
|
|
|
* bit 15 - 19: device number
|
|
|
|
* bit 12 - 14: function number
|
|
|
|
* bit 0 - 11: offset in configuration space of a given device
|
|
|
|
*/
|
|
|
|
#define PCIE_MMCFG_SIZE_MAX (1ULL << 28)
|
|
|
|
#define PCIE_MMCFG_SIZE_MIN (1ULL << 20)
|
|
|
|
#define PCIE_MMCFG_BUS_BIT 20
|
|
|
|
#define PCIE_MMCFG_BUS_MASK 0x1ff
|
|
|
|
#define PCIE_MMCFG_DEVFN_BIT 12
|
|
|
|
#define PCIE_MMCFG_DEVFN_MASK 0xff
|
|
|
|
#define PCIE_MMCFG_CONFOFFSET_MASK 0xfff
|
|
|
|
#define PCIE_MMCFG_BUS(addr) (((addr) >> PCIE_MMCFG_BUS_BIT) & \
|
|
|
|
PCIE_MMCFG_BUS_MASK)
|
|
|
|
#define PCIE_MMCFG_DEVFN(addr) (((addr) >> PCIE_MMCFG_DEVFN_BIT) & \
|
|
|
|
PCIE_MMCFG_DEVFN_MASK)
|
|
|
|
#define PCIE_MMCFG_CONFOFFSET(addr) ((addr) & PCIE_MMCFG_CONFOFFSET_MASK)
|
|
|
|
|
2009-10-30 13:21:18 +01:00
|
|
|
#endif /* PCIE_HOST_H */
|