2002-11-18 00:14:45 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2002
|
2011-08-04 16:45:45 +00:00
|
|
|
* Daniel Engström, Omicron Ceti AB, daniel@omicron.se
|
2002-11-18 00:14:45 +00:00
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2002-11-18 00:14:45 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _PCI_I386_H_
|
2012-10-10 13:12:57 +00:00
|
|
|
#define _PCI_I386_H_
|
2002-11-18 00:14:45 +00:00
|
|
|
|
2015-03-05 19:25:31 +00:00
|
|
|
#include <pci.h>
|
|
|
|
|
2015-02-02 14:35:25 +00:00
|
|
|
/* bus mapping constants (used for PCI core initialization) */
|
|
|
|
#define PCI_REG_ADDR 0xcf8
|
|
|
|
#define PCI_REG_DATA 0xcfc
|
|
|
|
|
|
|
|
#define PCI_CFG_EN 0x80000000
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
|
2011-11-08 02:33:15 +00:00
|
|
|
#define DEFINE_PCI_DEVICE_TABLE(_table) \
|
|
|
|
const struct pci_device_id _table[]
|
|
|
|
|
2014-11-13 05:42:11 +00:00
|
|
|
struct pci_controller;
|
|
|
|
|
2011-11-08 02:33:22 +00:00
|
|
|
void pci_setup_type1(struct pci_controller *hose);
|
2014-11-13 05:42:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* board_pci_setup_hose() - Set up the PCI hose
|
|
|
|
*
|
|
|
|
* This is called by the common x86 PCI code to set up the PCI controller
|
|
|
|
* hose. It may be called when no memory/BSS is available so should just
|
|
|
|
* store things in 'hose' and not in BSS variables.
|
|
|
|
*/
|
|
|
|
void board_pci_setup_hose(struct pci_controller *hose);
|
2014-11-13 05:42:12 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* pci_early_init_hose() - Set up PCI host before relocation
|
|
|
|
*
|
|
|
|
* This allocates memory for, sets up and returns the PCI hose. It can be
|
2014-12-30 14:53:21 +00:00
|
|
|
* called before relocation. The hose will be stored in gd->hose for
|
2014-11-13 05:42:12 +00:00
|
|
|
* later use, but will become invalid one DRAM is available.
|
|
|
|
*/
|
|
|
|
int pci_early_init_hose(struct pci_controller **hosep);
|
2014-11-13 05:42:14 +00:00
|
|
|
|
2014-11-15 01:18:28 +00:00
|
|
|
int board_pci_pre_scan(struct pci_controller *hose);
|
|
|
|
int board_pci_post_scan(struct pci_controller *hose);
|
|
|
|
|
2014-11-13 05:42:14 +00:00
|
|
|
/*
|
|
|
|
* Simple PCI access routines - these work from either the early PCI hose
|
|
|
|
* or the 'real' one, created after U-Boot has memory available
|
|
|
|
*/
|
2015-03-05 19:25:15 +00:00
|
|
|
unsigned int x86_pci_read_config8(pci_dev_t dev, unsigned where);
|
|
|
|
unsigned int x86_pci_read_config16(pci_dev_t dev, unsigned where);
|
|
|
|
unsigned int x86_pci_read_config32(pci_dev_t dev, unsigned where);
|
2014-11-13 05:42:14 +00:00
|
|
|
|
2015-03-05 19:25:15 +00:00
|
|
|
void x86_pci_write_config8(pci_dev_t dev, unsigned where, unsigned value);
|
|
|
|
void x86_pci_write_config16(pci_dev_t dev, unsigned where, unsigned value);
|
|
|
|
void x86_pci_write_config32(pci_dev_t dev, unsigned where, unsigned value);
|
2014-11-13 05:42:14 +00:00
|
|
|
|
2015-03-05 19:25:31 +00:00
|
|
|
int pci_x86_read_config(struct udevice *bus, pci_dev_t bdf, uint offset,
|
|
|
|
ulong *valuep, enum pci_size_t size);
|
|
|
|
|
|
|
|
int pci_x86_write_config(struct udevice *bus, pci_dev_t bdf, uint offset,
|
|
|
|
ulong value, enum pci_size_t size);
|
|
|
|
|
2015-02-02 14:35:25 +00:00
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
|
|
|
|
#endif /* _PCI_I386_H_ */
|