2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2014-11-13 05:42:11 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2011 The Chromium OS Authors.
|
|
|
|
* (C) Copyright 2008,2009
|
|
|
|
* Graeme Russ, <graeme.russ@gmail.com>
|
|
|
|
*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2015-03-05 19:25:31 +00:00
|
|
|
#include <dm.h>
|
2014-11-13 05:42:12 +00:00
|
|
|
#include <errno.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <log.h>
|
2014-11-13 05:42:12 +00:00
|
|
|
#include <malloc.h>
|
2014-11-13 05:42:11 +00:00
|
|
|
#include <pci.h>
|
2015-03-05 19:25:31 +00:00
|
|
|
#include <asm/io.h>
|
2014-11-13 05:42:11 +00:00
|
|
|
#include <asm/pci.h>
|
|
|
|
|
2019-09-01 03:23:18 +00:00
|
|
|
int pci_x86_read_config(pci_dev_t bdf, uint offset, ulong *valuep,
|
|
|
|
enum pci_size_t size)
|
2015-03-05 19:25:31 +00:00
|
|
|
{
|
|
|
|
outl(bdf | (offset & 0xfc) | PCI_CFG_EN, PCI_REG_ADDR);
|
|
|
|
switch (size) {
|
|
|
|
case PCI_SIZE_8:
|
|
|
|
*valuep = inb(PCI_REG_DATA + (offset & 3));
|
|
|
|
break;
|
|
|
|
case PCI_SIZE_16:
|
|
|
|
*valuep = inw(PCI_REG_DATA + (offset & 2));
|
|
|
|
break;
|
|
|
|
case PCI_SIZE_32:
|
|
|
|
*valuep = inl(PCI_REG_DATA);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-09-01 03:23:18 +00:00
|
|
|
int pci_x86_write_config(pci_dev_t bdf, uint offset, ulong value,
|
|
|
|
enum pci_size_t size)
|
2015-03-05 19:25:31 +00:00
|
|
|
{
|
|
|
|
outl(bdf | (offset & 0xfc) | PCI_CFG_EN, PCI_REG_ADDR);
|
|
|
|
switch (size) {
|
|
|
|
case PCI_SIZE_8:
|
|
|
|
outb(value, PCI_REG_DATA + (offset & 3));
|
|
|
|
break;
|
|
|
|
case PCI_SIZE_16:
|
|
|
|
outw(value, PCI_REG_DATA + (offset & 2));
|
|
|
|
break;
|
|
|
|
case PCI_SIZE_32:
|
|
|
|
outl(value, PCI_REG_DATA);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2015-04-24 10:10:03 +00:00
|
|
|
|
2019-09-01 03:23:18 +00:00
|
|
|
int pci_x86_clrset_config(pci_dev_t bdf, uint offset, ulong clr, ulong set,
|
|
|
|
enum pci_size_t size)
|
2019-09-25 14:11:37 +00:00
|
|
|
{
|
|
|
|
ulong value;
|
|
|
|
int ret;
|
|
|
|
|
2019-09-01 03:23:18 +00:00
|
|
|
ret = pci_x86_read_config(bdf, offset, &value, size);
|
2019-09-25 14:11:37 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
value &= ~clr;
|
|
|
|
value |= set;
|
|
|
|
|
2019-09-01 03:23:18 +00:00
|
|
|
return pci_x86_write_config(bdf, offset, value, size);
|
2019-09-25 14:11:37 +00:00
|
|
|
}
|
|
|
|
|
2015-07-15 08:23:40 +00:00
|
|
|
void pci_assign_irqs(int bus, int device, u8 irq[4])
|
2015-04-24 10:10:03 +00:00
|
|
|
{
|
|
|
|
pci_dev_t bdf;
|
2015-07-15 08:23:40 +00:00
|
|
|
int func;
|
|
|
|
u16 vendor;
|
2015-04-24 10:10:03 +00:00
|
|
|
u8 pin, line;
|
|
|
|
|
2015-07-15 08:23:40 +00:00
|
|
|
for (func = 0; func < 8; func++) {
|
|
|
|
bdf = PCI_BDF(bus, device, func);
|
2016-02-01 09:40:57 +00:00
|
|
|
pci_read_config16(bdf, PCI_VENDOR_ID, &vendor);
|
2015-07-15 08:23:40 +00:00
|
|
|
if (vendor == 0xffff || vendor == 0x0000)
|
|
|
|
continue;
|
2015-04-24 10:10:03 +00:00
|
|
|
|
2016-02-01 09:40:57 +00:00
|
|
|
pci_read_config8(bdf, PCI_INTERRUPT_PIN, &pin);
|
2015-04-24 10:10:03 +00:00
|
|
|
|
2015-07-15 08:23:40 +00:00
|
|
|
/* PCI spec says all values except 1..4 are reserved */
|
|
|
|
if ((pin < 1) || (pin > 4))
|
|
|
|
continue;
|
2015-04-24 10:10:03 +00:00
|
|
|
|
2015-07-15 08:23:40 +00:00
|
|
|
line = irq[pin - 1];
|
2015-07-15 08:23:41 +00:00
|
|
|
if (!line)
|
|
|
|
continue;
|
2015-04-24 10:10:03 +00:00
|
|
|
|
2015-07-15 08:23:40 +00:00
|
|
|
debug("Assigning IRQ %d to PCI device %d.%x.%d (INT%c)\n",
|
|
|
|
line, bus, device, func, 'A' + pin - 1);
|
2015-04-24 10:10:03 +00:00
|
|
|
|
2016-02-01 09:40:57 +00:00
|
|
|
pci_write_config8(bdf, PCI_INTERRUPT_LINE, line);
|
2015-07-15 08:23:40 +00:00
|
|
|
}
|
2015-04-24 10:10:03 +00:00
|
|
|
}
|