1 /* SPDX-License-Identifier: GPL-2.0-only */
5 #include <device/pci_ops.h>
6 #include <console/uart.h>
7 #include <device/pci.h>
9 static unsigned int oxpcie_present
;
10 static DEVTREE_CONST u32 uart0_base
= CONFIG_EARLY_PCI_MMIO_BASE
+ 0x1000;
12 int pci_early_device_probe(u8 bus
, u8 dev
, u32 mmio_base
)
14 pci_devfn_t device
= PCI_DEV(bus
, dev
, 0);
16 u32 id
= pci_s_read_config32(device
, PCI_VENDOR_ID
);
18 case 0xc1181415: /* e.g. Startech PEX1S1PMINI function 0 */
19 /* On this device function 0 is the parallel port, and
20 * function 3 is the serial port. So let's go look for
23 device
= PCI_DEV(bus
, dev
, 3);
24 id
= pci_s_read_config32(device
, PCI_VENDOR_ID
);
28 case 0xc11b1415: /* e.g. Startech PEX1S1PMINI function 3 */
29 case 0xc1581415: /* e.g. Startech MPEX2S952 */
36 /* Sanity-check, we assume fixed location. */
37 if (mmio_base
!= CONFIG_EARLY_PCI_MMIO_BASE
)
40 /* Setup base address on device */
41 pci_s_write_config32(device
, PCI_BASE_ADDRESS_0
, mmio_base
);
43 /* Enable memory on device */
44 u16 reg16
= pci_s_read_config16(device
, PCI_COMMAND
);
45 reg16
|= PCI_COMMAND_MEMORY
;
46 pci_s_write_config16(device
, PCI_COMMAND
, reg16
);
52 static int oxpcie_uart_active(void)
54 return oxpcie_present
;
57 uintptr_t uart_platform_base(unsigned int idx
)
59 if ((idx
< 8) && oxpcie_uart_active())
60 return uart0_base
+ idx
* 0x200;
64 void oxford_remap(u32 new_base
)
67 uart0_base
= new_base
+ 0x1000;
71 unsigned int uart_platform_refclk(void)