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>
This commit is contained in:
parent
01d75f4172
commit
c1f260e49a
|
@ -55,6 +55,7 @@ config CPU_SPECIFIC_OPTIONS
|
|||
select SOC_INTEL_COMMON_BLOCK_PCR
|
||||
select SOC_INTEL_COMMON_BLOCK_RTC
|
||||
select SOC_INTEL_COMMON_BLOCK_SA
|
||||
select SOC_INTEL_COMMON_BLOCK_UART
|
||||
select SOC_INTEL_COMMON_BLOCK_XHCI
|
||||
select SOC_INTEL_COMMON_LPSS_I2C
|
||||
select SOC_INTEL_COMMON_NHLT
|
||||
|
|
|
@ -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))
|
||||
|
|
Loading…
Reference in New Issue