aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/skylake/bootblock
diff options
context:
space:
mode:
authorAamir Bohra <aamir.bohra@intel.com>2017-03-31 21:02:16 +0530
committerMartin Roth <martinroth@google.com>2017-04-11 17:03:20 +0200
commitc1f260e49a6af71025c9fee2cea10ee4f48186b2 (patch)
tree2651e5f12e8dc42b86667d5ffaa6b5e1f22d08e0 /src/soc/intel/skylake/bootblock
parent01d75f4172e73fbcdc08ce0a13eaa0efb400ff12 (diff)
soc/intel/skylake: Use intel/common/uart driver
Change-Id: Id132df15ae5a6aef75d6434df18fc71d8d28c3ca Signed-off-by: Aamir Bohra <aamir.bohra@intel.com> Reviewed-on: https://review.coreboot.org/19003 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/soc/intel/skylake/bootblock')
-rw-r--r--src/soc/intel/skylake/bootblock/uart.c29
1 files changed, 5 insertions, 24 deletions
diff --git a/src/soc/intel/skylake/bootblock/uart.c b/src/soc/intel/skylake/bootblock/uart.c
index cf06359eae..26b81c0589 100644
--- a/src/soc/intel/skylake/bootblock/uart.c
+++ b/src/soc/intel/skylake/bootblock/uart.c
@@ -15,16 +15,15 @@
* GNU General Public License for more details.
*/
-#include <arch/io.h>
#include <console/uart.h>
#include <device/pci_def.h>
+#include <gpio.h>
#include <intelblocks/lpss.h>
#include <intelblocks/pcr.h>
-#include <stdint.h>
+#include <intelblocks/uart.h>
#include <soc/bootblock.h>
#include <soc/pci_devs.h>
#include <soc/pcr_ids.h>
-#include <gpio.h>
/* Serial IO UART controller legacy mode */
#define PCR_SERIAL_IO_GPPRVRW7 0x618
@@ -33,8 +32,8 @@
#define PCR_SIO_PCH_LEGACY_UART2 (1 << 2)
/* Clock divider parameters for 115200 baud rate */
-#define CLOCK_DIV_M_VAL 0x30
-#define CLOCK_DIV_N_VAL 0xc35
+#define CLK_M_VAL 0x30
+#define CLK_N_VAL 0xc35
/* UART2 pad configuration. Support RXD and TXD for now. */
static const struct pad_config uart2_pads[] = {
@@ -44,27 +43,9 @@ static const struct pad_config uart2_pads[] = {
void pch_uart_init(void)
{
- device_t dev = PCH_DEV_UART2;
- u32 tmp;
uintptr_t base = uart_platform_base(CONFIG_UART_FOR_CONSOLE);
- /* Set configured UART2 base address */
- pci_write_config32(dev, PCI_BASE_ADDRESS_0, (u32)base);
-
- /* Enable memory access and bus master */
- tmp = pci_read_config32(dev, PCI_COMMAND);
- tmp |= PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER;
- pci_write_config32(dev, PCI_COMMAND, tmp);
-
- /* Take UART2 out of reset */
- lpss_reset_release(base);
-
- /*
- * Set M and N divisor inputs and enable clock.
- * Main reference frequency to UART is:
- * 120MHz * M / N = 120MHz * 48 / 3125 = 1843200Hz
- */
- lpss_clk_update(base, CLOCK_DIV_M_VAL, CLOCK_DIV_N_VAL);
+ uart_common_init(PCH_DEV_UART2, base, CLK_M_VAL, CLK_N_VAL);
/* Put UART2 in byte access mode for 16550 compatibility */
if (!IS_ENABLED(CONFIG_DRIVERS_UART_8250MEM_32))