2011-04-27 01:47:04 +02:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Google Inc
|
|
|
|
*
|
|
|
|
* This program 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; version 2 of the License.
|
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*/
|
|
|
|
|
2014-02-15 09:19:23 +01:00
|
|
|
#define __SIMPLE_DEVICE__
|
|
|
|
|
2011-04-27 01:47:04 +02:00
|
|
|
#include <stdint.h>
|
2014-02-15 09:19:23 +01:00
|
|
|
#include <stddef.h>
|
2011-04-27 01:47:04 +02:00
|
|
|
#include <arch/io.h>
|
2013-06-19 21:25:44 +02:00
|
|
|
#include <arch/early_variables.h>
|
2014-03-15 00:32:55 +01:00
|
|
|
#include <boot/coreboot_tables.h>
|
2014-02-17 20:34:42 +01:00
|
|
|
#include <console/uart.h>
|
2014-03-15 00:32:55 +01:00
|
|
|
#include <device/pci.h>
|
2011-04-27 01:47:04 +02:00
|
|
|
#include <device/pci_def.h>
|
|
|
|
|
2014-02-15 09:19:23 +01:00
|
|
|
static unsigned int oxpcie_present CAR_GLOBAL;
|
2014-02-14 11:45:09 +01:00
|
|
|
static ROMSTAGE_CONST u32 uart0_base = CONFIG_EARLY_PCI_MMIO_BASE + 0x1000;
|
2014-02-15 09:19:23 +01:00
|
|
|
|
2014-02-14 11:45:09 +01:00
|
|
|
int pci_early_device_probe(u8 bus, u8 dev, u32 mmio_base)
|
2011-04-27 01:47:04 +02:00
|
|
|
{
|
2014-02-14 11:45:09 +01:00
|
|
|
pci_devfn_t device = PCI_DEV(bus, dev, 0);
|
2011-04-27 01:47:04 +02:00
|
|
|
|
2014-02-14 11:45:09 +01:00
|
|
|
u32 id = pci_read_config32(device, PCI_VENDOR_ID);
|
2011-05-10 00:19:29 +02:00
|
|
|
switch (id) {
|
2014-02-14 11:45:09 +01:00
|
|
|
case 0xc1181415: /* e.g. Startech PEX1S1PMINI function 0 */
|
2011-05-10 00:19:29 +02:00
|
|
|
/* On this device function 0 is the parallel port, and
|
|
|
|
* function 3 is the serial port. So let's go look for
|
|
|
|
* the UART.
|
|
|
|
*/
|
2014-02-14 11:45:09 +01:00
|
|
|
device = PCI_DEV(bus, dev, 3);
|
|
|
|
id = pci_read_config32(device, PCI_VENDOR_ID);
|
2011-05-10 00:19:29 +02:00
|
|
|
if (id != 0xc11b1415)
|
2014-02-14 11:45:09 +01:00
|
|
|
return -1;
|
2011-05-10 00:19:29 +02:00
|
|
|
break;
|
2014-02-14 11:45:09 +01:00
|
|
|
case 0xc11b1415: /* e.g. Startech PEX1S1PMINI function 3 */
|
2011-05-10 00:19:29 +02:00
|
|
|
case 0xc1581415: /* e.g. Startech MPEX2S952 */
|
|
|
|
break;
|
2011-10-05 10:52:08 +02:00
|
|
|
default:
|
|
|
|
/* No UART here. */
|
2014-02-14 11:45:09 +01:00
|
|
|
return -1;
|
2011-05-10 00:19:29 +02:00
|
|
|
}
|
|
|
|
|
2014-02-14 11:45:09 +01:00
|
|
|
/* Sanity-check, we assume fixed location. */
|
|
|
|
if (mmio_base != CONFIG_EARLY_PCI_MMIO_BASE)
|
|
|
|
return -1;
|
|
|
|
|
2011-04-27 01:47:04 +02:00
|
|
|
/* Setup base address on device */
|
2014-02-14 11:45:09 +01:00
|
|
|
pci_write_config32(device, PCI_BASE_ADDRESS_0, mmio_base);
|
2011-04-27 01:47:04 +02:00
|
|
|
|
|
|
|
/* Enable memory on device */
|
2014-02-14 11:45:09 +01:00
|
|
|
u16 reg16 = pci_read_config16(device, PCI_COMMAND);
|
2011-04-27 01:47:04 +02:00
|
|
|
reg16 |= PCI_COMMAND_MEMORY;
|
2011-05-10 00:19:29 +02:00
|
|
|
pci_write_config16(device, PCI_COMMAND, reg16);
|
2011-04-27 01:47:04 +02:00
|
|
|
|
2014-02-15 09:19:23 +01:00
|
|
|
car_set_var(oxpcie_present, 1);
|
2014-02-14 11:45:09 +01:00
|
|
|
return 0;
|
2014-02-15 09:19:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static int oxpcie_uart_active(void)
|
|
|
|
{
|
|
|
|
return (car_get_var(oxpcie_present));
|
|
|
|
}
|
|
|
|
|
2014-10-16 12:53:48 +02:00
|
|
|
uintptr_t uart_platform_base(int idx)
|
2014-02-15 09:19:23 +01:00
|
|
|
{
|
2015-03-20 07:51:57 +01:00
|
|
|
if ((idx >= 0) && (idx < 8) && oxpcie_uart_active())
|
|
|
|
return uart0_base + idx * 0x200;
|
2014-02-15 09:19:23 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2011-04-27 01:47:04 +02:00
|
|
|
|
2014-02-15 09:19:23 +01:00
|
|
|
#ifndef __PRE_RAM__
|
|
|
|
void oxford_remap(u32 new_base)
|
|
|
|
{
|
|
|
|
uart0_base = new_base + 0x1000;
|
2011-04-27 01:47:04 +02:00
|
|
|
}
|
|
|
|
|
2014-03-15 00:32:55 +01:00
|
|
|
void uart_fill_lb(void *data)
|
2014-02-15 09:19:23 +01:00
|
|
|
{
|
2014-03-15 00:32:55 +01:00
|
|
|
struct lb_serial serial;
|
|
|
|
serial.type = LB_SERIAL_TYPE_MEMORY_MAPPED;
|
2014-03-14 21:28:29 +01:00
|
|
|
serial.baseaddr = uart_platform_base(CONFIG_UART_FOR_CONSOLE);
|
2014-03-15 00:32:55 +01:00
|
|
|
serial.baud = default_baudrate();
|
2015-01-10 01:54:19 +01:00
|
|
|
serial.regwidth = 1;
|
2014-03-15 00:32:55 +01:00
|
|
|
lb_add_serial(&serial, data);
|
|
|
|
|
|
|
|
lb_add_console(LB_TAG_CONSOLE_SERIAL8250MEM, data);
|
2014-02-15 09:19:23 +01:00
|
|
|
}
|
2011-10-05 10:52:08 +02:00
|
|
|
#endif
|
2014-02-17 18:37:52 +01:00
|
|
|
|
|
|
|
unsigned int uart_platform_refclk(void)
|
|
|
|
{
|
|
|
|
return 62500000;
|
|
|
|
}
|