/* * This file is part of the coreboot project. * * Copyright 2019 9Elements GmbH * * 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. * */ #include #include #include #include static void cavium_uart_init(struct device *dev) { const u8 fn = PCI_FUNC(dev->path.pci.devfn); /* Calling uart_setup with no baudrate will do minimal HW init * enough for the kernel to not panic */ if (!uart_is_enabled(fn)) uart_setup(fn, 0); } static struct device_operations device_ops = { .init = cavium_uart_init, }; static const struct pci_driver soc_cavium_uart __pci_driver = { .ops = &device_ops, .vendor = PCI_VENDOR_CAVIUM, .device = PCI_DEVICE_ID_CAVIUM_THUNDERX_UART, };