e1aae158ce577318a559a5332a8b4fe9de0ad0d3
[platform/kernel/u-boot.git] / arch / x86 / cpu / pci.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (c) 2011 The Chromium OS Authors.
4  * (C) Copyright 2008,2009
5  * Graeme Russ, <graeme.russ@gmail.com>
6  *
7  * (C) Copyright 2002
8  * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
9  */
10
11 #include <common.h>
12 #include <dm.h>
13 #include <errno.h>
14 #include <malloc.h>
15 #include <pci.h>
16 #include <asm/io.h>
17 #include <asm/pci.h>
18
19 int pci_x86_read_config(pci_dev_t bdf, uint offset, ulong *valuep,
20                         enum pci_size_t size)
21 {
22         outl(bdf | (offset & 0xfc) | PCI_CFG_EN, PCI_REG_ADDR);
23         switch (size) {
24         case PCI_SIZE_8:
25                 *valuep = inb(PCI_REG_DATA + (offset & 3));
26                 break;
27         case PCI_SIZE_16:
28                 *valuep = inw(PCI_REG_DATA + (offset & 2));
29                 break;
30         case PCI_SIZE_32:
31                 *valuep = inl(PCI_REG_DATA);
32                 break;
33         }
34
35         return 0;
36 }
37
38 int pci_x86_write_config(pci_dev_t bdf, uint offset, ulong value,
39                          enum pci_size_t size)
40 {
41         outl(bdf | (offset & 0xfc) | PCI_CFG_EN, PCI_REG_ADDR);
42         switch (size) {
43         case PCI_SIZE_8:
44                 outb(value, PCI_REG_DATA + (offset & 3));
45                 break;
46         case PCI_SIZE_16:
47                 outw(value, PCI_REG_DATA + (offset & 2));
48                 break;
49         case PCI_SIZE_32:
50                 outl(value, PCI_REG_DATA);
51                 break;
52         }
53
54         return 0;
55 }
56
57 int pci_x86_clrset_config(pci_dev_t bdf, uint offset, ulong clr, ulong set,
58                           enum pci_size_t size)
59 {
60         ulong value;
61         int ret;
62
63         ret = pci_x86_read_config(bdf, offset, &value, size);
64         if (ret)
65                 return ret;
66         value &= ~clr;
67         value |= set;
68
69         return pci_x86_write_config(bdf, offset, value, size);
70 }
71
72 void pci_assign_irqs(int bus, int device, u8 irq[4])
73 {
74         pci_dev_t bdf;
75         int func;
76         u16 vendor;
77         u8 pin, line;
78
79         for (func = 0; func < 8; func++) {
80                 bdf = PCI_BDF(bus, device, func);
81                 pci_read_config16(bdf, PCI_VENDOR_ID, &vendor);
82                 if (vendor == 0xffff || vendor == 0x0000)
83                         continue;
84
85                 pci_read_config8(bdf, PCI_INTERRUPT_PIN, &pin);
86
87                 /* PCI spec says all values except 1..4 are reserved */
88                 if ((pin < 1) || (pin > 4))
89                         continue;
90
91                 line = irq[pin - 1];
92                 if (!line)
93                         continue;
94
95                 debug("Assigning IRQ %d to PCI device %d.%x.%d (INT%c)\n",
96                       line, bus, device, func, 'A' + pin - 1);
97
98                 pci_write_config8(bdf, PCI_INTERRUPT_LINE, line);
99         }
100 }