vaseboot/include/VasEBoot/pci.h

158 lines
4.7 KiB
C

/*
* VAS_EBOOT -- GRand Unified Bootloader
* Copyright (C) 2008,2009 Free Software Foundation, Inc.
*
* VAS_EBOOT 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 3 of the License, or
* (at your option) any later version.
*
* VAS_EBOOT 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 with VAS_EBOOT. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef VAS_EBOOT_PCI_H
#define VAS_EBOOT_PCI_H 1
#ifndef ASM_FILE
#include <VasEBoot/types.h>
#include <VasEBoot/symbol.h>
#endif
#define VAS_EBOOT_PCI_ADDR_SPACE_MASK 0x01
#define VAS_EBOOT_PCI_ADDR_SPACE_MEMORY 0x00
#define VAS_EBOOT_PCI_ADDR_SPACE_IO 0x01
#define VAS_EBOOT_PCI_ADDR_MEM_TYPE_MASK 0x06
#define VAS_EBOOT_PCI_ADDR_MEM_TYPE_32 0x00 /* 32 bit address */
#define VAS_EBOOT_PCI_ADDR_MEM_TYPE_1M 0x02 /* Below 1M [obsolete] */
#define VAS_EBOOT_PCI_ADDR_MEM_TYPE_64 0x04 /* 64 bit address */
#define VAS_EBOOT_PCI_ADDR_MEM_PREFETCH 0x08 /* prefetchable */
#define VAS_EBOOT_PCI_ADDR_MEM_MASK ~0xf
#define VAS_EBOOT_PCI_ADDR_IO_MASK ~0x03
#define VAS_EBOOT_PCI_REG_PCI_ID 0x00
#define VAS_EBOOT_PCI_REG_VENDOR 0x00
#define VAS_EBOOT_PCI_REG_DEVICE 0x02
#define VAS_EBOOT_PCI_REG_COMMAND 0x04
#define VAS_EBOOT_PCI_REG_STATUS 0x06
#define VAS_EBOOT_PCI_REG_REVISION 0x08
#define VAS_EBOOT_PCI_REG_CLASS 0x08
#define VAS_EBOOT_PCI_REG_CACHELINE 0x0c
#define VAS_EBOOT_PCI_REG_LAT_TIMER 0x0d
#define VAS_EBOOT_PCI_REG_HEADER_TYPE 0x0e
#define VAS_EBOOT_PCI_REG_BIST 0x0f
#define VAS_EBOOT_PCI_REG_ADDRESSES 0x10
/* Beware that 64-bit address takes 2 registers. */
#define VAS_EBOOT_PCI_REG_ADDRESS_REG0 0x10
#define VAS_EBOOT_PCI_REG_ADDRESS_REG1 0x14
#define VAS_EBOOT_PCI_REG_ADDRESS_REG2 0x18
#define VAS_EBOOT_PCI_REG_ADDRESS_REG3 0x1c
#define VAS_EBOOT_PCI_REG_ADDRESS_REG4 0x20
#define VAS_EBOOT_PCI_REG_ADDRESS_REG5 0x24
#define VAS_EBOOT_PCI_REG_CIS_POINTER 0x28
#define VAS_EBOOT_PCI_REG_SUBVENDOR 0x2c
#define VAS_EBOOT_PCI_REG_SUBSYSTEM 0x2e
#define VAS_EBOOT_PCI_REG_ROM_ADDRESS 0x30
#define VAS_EBOOT_PCI_REG_CAP_POINTER 0x34
#define VAS_EBOOT_PCI_REG_IRQ_LINE 0x3c
#define VAS_EBOOT_PCI_REG_IRQ_PIN 0x3d
#define VAS_EBOOT_PCI_REG_MIN_GNT 0x3e
#define VAS_EBOOT_PCI_REG_MAX_LAT 0x3f
#define VAS_EBOOT_PCI_COMMAND_IO_ENABLED 0x0001
#define VAS_EBOOT_PCI_COMMAND_MEM_ENABLED 0x0002
#define VAS_EBOOT_PCI_COMMAND_BUS_MASTER 0x0004
#define VAS_EBOOT_PCI_COMMAND_PARITY_ERROR 0x0040
#define VAS_EBOOT_PCI_COMMAND_SERR_ENABLE 0x0100
#define VAS_EBOOT_PCI_STATUS_CAPABILITIES 0x0010
#define VAS_EBOOT_PCI_STATUS_66MHZ_CAPABLE 0x0020
#define VAS_EBOOT_PCI_STATUS_FAST_B2B_CAPABLE 0x0080
#define VAS_EBOOT_PCI_STATUS_DEVSEL_TIMING_SHIFT 9
#define VAS_EBOOT_PCI_STATUS_DEVSEL_TIMING_MASK 0x0600
#define VAS_EBOOT_PCI_CLASS_DISPLAY_VGA 0x0300
#define VAS_EBOOT_PCI_CLASS_SERIAL_USB 0x0c03
#define VAS_EBOOT_PCI_CLASS_COMMUNICATION_SERIAL 0x0700
#define VAS_EBOOT_PCI_CLASS_COMMUNICATION_MODEM 0x0703
#define VAS_EBOOT_PCI_SERIAL_16550_COMPATIBLE 0x02
#ifndef ASM_FILE
enum
{
VAS_EBOOT_PCI_CLASS_NETWORK = 0x02
};
enum
{
VAS_EBOOT_PCI_CAP_POWER_MANAGEMENT = 0x01
};
enum
{
VAS_EBOOT_PCI_VENDOR_BROADCOM = 0x14e4
};
typedef VasEBoot_uint32_t VasEBoot_pci_id_t;
#ifdef VAS_EBOOT_MACHINE_EMU
#include <VasEBoot/pciutils.h>
#else
typedef VasEBoot_uint32_t VasEBoot_pci_address_t;
struct VasEBoot_pci_device
{
int bus;
int device;
int function;
};
typedef struct VasEBoot_pci_device VasEBoot_pci_device_t;
static inline int
VasEBoot_pci_get_bus (VasEBoot_pci_device_t dev)
{
return dev.bus;
}
static inline int
VasEBoot_pci_get_device (VasEBoot_pci_device_t dev)
{
return dev.device;
}
static inline int
VasEBoot_pci_get_function (VasEBoot_pci_device_t dev)
{
return dev.function;
}
#include <VasEBoot/cpu/pci.h>
#endif
typedef int (*VasEBoot_pci_iteratefunc_t)
(VasEBoot_pci_device_t dev, VasEBoot_pci_id_t pciid, void *data);
VasEBoot_pci_address_t EXPORT_FUNC(VasEBoot_pci_make_address) (VasEBoot_pci_device_t dev,
int reg);
void EXPORT_FUNC(VasEBoot_pci_iterate) (VasEBoot_pci_iteratefunc_t hook,
void *hook_data);
#include <VasEBoot/dma.h>
VasEBoot_uint8_t
EXPORT_FUNC (VasEBoot_pci_find_capability) (VasEBoot_pci_device_t dev, VasEBoot_uint8_t cap);
#endif
#endif /* VAS_EBOOT_PCI_H */