summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/common/block/uart
diff options
context:
space:
mode:
authorAamir Bohra <aamir.bohra@intel.com>2017-04-26 19:30:41 +0530
committerMartin Roth <martinroth@google.com>2017-05-09 17:55:28 +0200
commit83f7baec308cffee0709e38c95e3b4726915e2ea (patch)
tree9e9169e15d686e33d11600927f1a04298c3b3a59 /src/soc/intel/common/block/uart
parent502131a6ad3f3eae89ccd85402708ae90a6f2b4f (diff)
downloadcoreboot-83f7baec308cffee0709e38c95e3b4726915e2ea.tar.gz
coreboot-83f7baec308cffee0709e38c95e3b4726915e2ea.tar.bz2
coreboot-83f7baec308cffee0709e38c95e3b4726915e2ea.zip
soc/intel/common: Add PCI configuration code for UART
Add PCI configuration code support for intel/common/ block/uart module. Change-Id: Ibce5623ffb879f2427b759106d1f350601837e4b Signed-off-by: Aamir Bohra <aamir.bohra@intel.com> Reviewed-on: https://review.coreboot.org/19490 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/soc/intel/common/block/uart')
-rw-r--r--src/soc/intel/common/block/uart/Makefile.inc3
-rw-r--r--src/soc/intel/common/block/uart/uart.c37
2 files changed, 38 insertions, 2 deletions
diff --git a/src/soc/intel/common/block/uart/Makefile.inc b/src/soc/intel/common/block/uart/Makefile.inc
index 13f5da880f19..0ec5314d660f 100644
--- a/src/soc/intel/common/block/uart/Makefile.inc
+++ b/src/soc/intel/common/block/uart/Makefile.inc
@@ -1 +1,2 @@
-bootblock-$(CONFIG_SOC_INTEL_COMMON_BLOCK_UART) += uart.c \ No newline at end of file
+bootblock-$(CONFIG_SOC_INTEL_COMMON_BLOCK_UART) += uart.c
+ramstage-$(CONFIG_SOC_INTEL_COMMON_BLOCK_UART) += uart.c \ No newline at end of file
diff --git a/src/soc/intel/common/block/uart/uart.c b/src/soc/intel/common/block/uart/uart.c
index 729a31ba1e29..8c5e4542f630 100644
--- a/src/soc/intel/common/block/uart/uart.c
+++ b/src/soc/intel/common/block/uart/uart.c
@@ -12,8 +12,10 @@
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
-
+#include <device/device.h>
+#include <device/pci.h>
#include <device/pci_def.h>
+#include <device/pci_ids.h>
#include <intelblocks/lpss.h>
#include <intelblocks/uart.h>
@@ -33,3 +35,36 @@ void uart_common_init(device_t dev, uintptr_t baseaddr, uint32_t clk_m_val,
/* Set M and N divisor inputs and enable clock */
lpss_clk_update(baseaddr, clk_m_val, clk_n_val);
}
+
+#if ENV_RAMSTAGE
+
+__attribute__((weak)) void pch_uart_read_resources(struct device *dev)
+{
+ pci_dev_read_resources(dev);
+}
+
+static struct device_operations device_ops = {
+ .read_resources = &pch_uart_read_resources,
+ .set_resources = &pci_dev_set_resources,
+ .enable_resources = &pci_dev_enable_resources,
+};
+
+static const unsigned short pci_device_ids[] = {
+ PCI_DEVICE_ID_INTEL_SPT_UART0,
+ PCI_DEVICE_ID_INTEL_SPT_UART1,
+ PCI_DEVICE_ID_INTEL_SPT_UART2,
+ PCI_DEVICE_ID_INTEL_KBP_H_UART0,
+ PCI_DEVICE_ID_INTEL_KBP_H_UART1,
+ PCI_DEVICE_ID_INTEL_KBP_H_UART2,
+ PCI_DEVICE_ID_INTEL_APL_UART0,
+ PCI_DEVICE_ID_INTEL_APL_UART1,
+ PCI_DEVICE_ID_INTEL_APL_UART2,
+ PCI_DEVICE_ID_INTEL_APL_UART3,
+};
+
+static const struct pci_driver pch_uart __pci_driver = {
+ .ops = &device_ops,
+ .vendor = PCI_VENDOR_ID_INTEL,
+ .devices = pci_device_ids,
+};
+#endif /* ENV_RAMSTAGE */