2019-07-24 17:50:27 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <types.h>
|
2019-12-05 19:35:23 +08:00
|
|
|
#include <pci.h>
|
2019-07-24 17:50:27 +08:00
|
|
|
|
|
|
|
void uart16550_init(__unused bool early_boot) {}
|
2021-05-29 00:26:55 +08:00
|
|
|
|
|
|
|
bool is_pci_dbg_uart(__unused union pci_bdf bdf_value) { return false; }
|
|
|
|
|
|
|
|
bool get_pio_dbg_uart_cfg(__unused uint64_t *pio_address, __unused uint64_t *nbytes) {
|
|
|
|
return false;
|
|
|
|
}
|