2015-05-06 00:07:29 +02:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 Google Inc.
|
2015-04-21 00:20:28 +02:00
|
|
|
* Copyright (C) 2015 Intel Corp.
|
2015-05-06 00:07:29 +02:00
|
|
|
*
|
|
|
|
* 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 <arch/io.h>
|
|
|
|
#include <cbmem.h>
|
|
|
|
#include <console/console.h>
|
|
|
|
#include <device/device.h>
|
|
|
|
#include <device/pci.h>
|
|
|
|
#include <device/pci_ids.h>
|
|
|
|
#include <reg_script.h>
|
|
|
|
|
|
|
|
#include <soc/iomap.h>
|
|
|
|
#include <soc/iosf.h>
|
|
|
|
#include <soc/lpc.h>
|
|
|
|
#include <soc/nvs.h>
|
|
|
|
#include <soc/pattrs.h>
|
|
|
|
#include <soc/pci_devs.h>
|
2015-04-21 00:20:28 +02:00
|
|
|
#include <soc/pm.h>
|
2015-05-06 00:07:29 +02:00
|
|
|
#include <soc/ramstage.h>
|
|
|
|
#include "chip.h"
|
|
|
|
|
|
|
|
|
2015-04-21 00:20:28 +02:00
|
|
|
/*
|
|
|
|
* The LPE audio devices needs 1MiB of memory reserved aligned to a 512MiB
|
|
|
|
* address. Just take 1MiB @ 512MiB.
|
|
|
|
*/
|
2015-05-06 00:07:29 +02:00
|
|
|
#define FIRMWARE_PHYS_BASE (512 << 20)
|
2018-01-21 23:37:24 +01:00
|
|
|
#define FIRMWARE_PHYS_LENGTH (2 << 20)
|
2015-05-06 00:07:29 +02:00
|
|
|
#define FIRMWARE_PCI_REG_BASE 0xa8
|
|
|
|
#define FIRMWARE_PCI_REG_LENGTH 0xac
|
|
|
|
#define FIRMWARE_REG_BASE_C0 0x144000
|
|
|
|
#define FIRMWARE_REG_LENGTH_C0 (FIRMWARE_REG_BASE_C0 + 4)
|
|
|
|
|
2018-05-24 22:29:44 +02:00
|
|
|
static void assign_device_nvs(struct device *dev, u32 *field,
|
|
|
|
unsigned int index)
|
2015-05-06 00:07:29 +02:00
|
|
|
{
|
|
|
|
struct resource *res;
|
|
|
|
|
|
|
|
res = find_resource(dev, index);
|
|
|
|
if (res)
|
|
|
|
*field = res->base;
|
|
|
|
}
|
|
|
|
|
2018-05-24 22:29:44 +02:00
|
|
|
static void lpe_enable_acpi_mode(struct device *dev)
|
2015-05-06 00:07:29 +02:00
|
|
|
{
|
|
|
|
static const struct reg_script ops[] = {
|
|
|
|
/* Disable PCI interrupt, enable Memory and Bus Master */
|
|
|
|
REG_PCI_OR32(PCI_COMMAND,
|
2015-04-21 00:20:28 +02:00
|
|
|
PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER
|
|
|
|
| PCI_COMMAND_INT_DISABLE),
|
2015-05-06 00:07:29 +02:00
|
|
|
/* Enable ACPI mode */
|
|
|
|
REG_IOSF_OR(IOSF_PORT_0x58, LPE_PCICFGCTR1,
|
|
|
|
LPE_PCICFGCTR1_PCI_CFG_DIS |
|
|
|
|
LPE_PCICFGCTR1_ACPI_INT_EN),
|
|
|
|
REG_SCRIPT_END
|
|
|
|
};
|
|
|
|
global_nvs_t *gnvs;
|
|
|
|
|
|
|
|
/* Find ACPI NVS to update BARs */
|
2015-04-21 00:20:28 +02:00
|
|
|
gnvs = cbmem_find(CBMEM_ID_ACPI_GNVS);
|
2015-05-06 00:07:29 +02:00
|
|
|
if (!gnvs) {
|
|
|
|
printk(BIOS_ERR, "Unable to locate Global NVS\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Save BAR0, BAR1, and firmware base to ACPI NVS */
|
|
|
|
assign_device_nvs(dev, &gnvs->dev.lpe_bar0, PCI_BASE_ADDRESS_0);
|
2018-01-18 02:39:52 +01:00
|
|
|
assign_device_nvs(dev, &gnvs->dev.lpe_bar1, PCI_BASE_ADDRESS_2);
|
2015-05-06 00:07:29 +02:00
|
|
|
assign_device_nvs(dev, &gnvs->dev.lpe_fw, FIRMWARE_PCI_REG_BASE);
|
|
|
|
|
|
|
|
/* Device is enabled in ACPI mode */
|
|
|
|
gnvs->dev.lpe_en = 1;
|
|
|
|
|
|
|
|
/* Put device in ACPI mode */
|
|
|
|
reg_script_run_on_dev(dev, ops);
|
|
|
|
}
|
|
|
|
|
2018-05-24 22:29:44 +02:00
|
|
|
static void setup_codec_clock(struct device *dev)
|
2015-05-06 00:07:29 +02:00
|
|
|
{
|
|
|
|
uint32_t reg;
|
|
|
|
u32 *clk_reg;
|
2015-04-21 00:20:28 +02:00
|
|
|
struct soc_intel_braswell_config *config;
|
2015-05-06 00:07:29 +02:00
|
|
|
const char *freq_str;
|
|
|
|
|
|
|
|
config = dev->chip_info;
|
2015-08-22 00:36:53 +02:00
|
|
|
switch (config->lpe_codec_clk_src) {
|
|
|
|
case LPE_CLK_SRC_XTAL:
|
|
|
|
/* XTAL driven bit2=0 */
|
|
|
|
freq_str = "19.2MHz External Crystal";
|
|
|
|
reg = CLK_SRC_XTAL;
|
2015-05-06 00:07:29 +02:00
|
|
|
break;
|
2015-08-22 00:36:53 +02:00
|
|
|
case LPE_CLK_SRC_PLL:
|
|
|
|
/* PLL driven bit2=1 */
|
|
|
|
freq_str = "19.2MHz PLL";
|
|
|
|
reg = CLK_SRC_PLL;
|
2015-05-06 00:07:29 +02:00
|
|
|
break;
|
|
|
|
default:
|
2015-08-22 00:36:53 +02:00
|
|
|
reg = CLK_SRC_XTAL;
|
|
|
|
printk(BIOS_DEBUG, "LPE codec clock default to using Crystal\n");
|
2015-05-06 00:07:29 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Default to always running. */
|
|
|
|
reg |= CLK_CTL_ON;
|
|
|
|
|
|
|
|
|
|
|
|
printk(BIOS_DEBUG, "LPE Audio codec clock set to %sMHz.\n", freq_str);
|
|
|
|
|
2015-04-21 00:20:28 +02:00
|
|
|
clk_reg = (u32 *) (PMC_BASE_ADDRESS + PLT_CLK_CTL_0);
|
2015-05-06 00:07:29 +02:00
|
|
|
|
|
|
|
write32(clk_reg, (read32(clk_reg) & ~0x7) | reg);
|
|
|
|
}
|
|
|
|
|
2018-05-24 22:29:44 +02:00
|
|
|
static void lpe_stash_firmware_info(struct device *dev)
|
2015-05-06 00:07:29 +02:00
|
|
|
{
|
|
|
|
struct resource *res;
|
|
|
|
struct resource *mmio;
|
|
|
|
|
|
|
|
res = find_resource(dev, FIRMWARE_PCI_REG_BASE);
|
|
|
|
if (res == NULL) {
|
|
|
|
printk(BIOS_DEBUG, "LPE Firmware memory not found.\n");
|
|
|
|
return;
|
|
|
|
}
|
2015-04-21 00:20:28 +02:00
|
|
|
printk(BIOS_DEBUG, "LPE FW Resource: 0x%08x\n", (u32) res->base);
|
2015-05-06 00:07:29 +02:00
|
|
|
|
|
|
|
/* Continue using old way of informing firmware address / size. */
|
|
|
|
pci_write_config32(dev, FIRMWARE_PCI_REG_BASE, res->base);
|
|
|
|
pci_write_config32(dev, FIRMWARE_PCI_REG_LENGTH, res->size);
|
|
|
|
|
2015-04-21 00:20:28 +02:00
|
|
|
/* Also put the address in MMIO space like on C0 BTM */
|
|
|
|
mmio = find_resource(dev, PCI_BASE_ADDRESS_0);
|
2017-03-17 01:49:42 +01:00
|
|
|
write32((void *)(uintptr_t)(mmio->base + FIRMWARE_REG_BASE_C0),
|
2015-04-21 00:20:28 +02:00
|
|
|
res->base);
|
2017-03-17 01:49:42 +01:00
|
|
|
write32((void *)(uintptr_t)(mmio->base + FIRMWARE_REG_LENGTH_C0),
|
2015-04-21 00:20:28 +02:00
|
|
|
res->size);
|
2015-05-06 00:07:29 +02:00
|
|
|
}
|
|
|
|
|
2015-04-21 00:20:28 +02:00
|
|
|
|
2018-05-24 22:29:44 +02:00
|
|
|
static void lpe_init(struct device *dev)
|
2015-05-06 00:07:29 +02:00
|
|
|
{
|
2015-04-21 00:20:28 +02:00
|
|
|
struct soc_intel_braswell_config *config = dev->chip_info;
|
2015-05-06 00:07:29 +02:00
|
|
|
|
2018-10-17 10:56:26 +02:00
|
|
|
printk(BIOS_SPEW, "%s/%s (%s)\n",
|
2015-04-21 00:20:28 +02:00
|
|
|
__FILE__, __func__, dev_name(dev));
|
2015-05-06 00:07:29 +02:00
|
|
|
|
2015-04-21 00:20:28 +02:00
|
|
|
lpe_stash_firmware_info(dev);
|
2015-05-06 00:07:29 +02:00
|
|
|
setup_codec_clock(dev);
|
|
|
|
|
|
|
|
if (config->lpe_acpi_mode)
|
|
|
|
lpe_enable_acpi_mode(dev);
|
|
|
|
}
|
|
|
|
|
2018-05-24 22:29:44 +02:00
|
|
|
static void lpe_read_resources(struct device *dev)
|
2015-05-06 00:07:29 +02:00
|
|
|
{
|
2018-01-18 02:39:52 +01:00
|
|
|
struct resource *res;
|
2015-05-06 00:07:29 +02:00
|
|
|
pci_dev_read_resources(dev);
|
|
|
|
|
2018-01-18 02:39:52 +01:00
|
|
|
/*
|
|
|
|
* Allocate the BAR1 resource at index 2 to fulfil the Windows driver
|
|
|
|
* interface requirements even though the PCI device has only one BAR
|
|
|
|
*/
|
|
|
|
res = new_resource(dev, PCI_BASE_ADDRESS_2);
|
|
|
|
res->base = 0;
|
|
|
|
res->size = 0x1000;
|
|
|
|
res->limit = 0xffffffff;
|
|
|
|
res->gran = 12;
|
|
|
|
res->align = 12;
|
|
|
|
res->flags = IORESOURCE_MEM;
|
|
|
|
|
2015-05-06 00:07:29 +02:00
|
|
|
reserved_ram_resource(dev, FIRMWARE_PCI_REG_BASE,
|
|
|
|
FIRMWARE_PHYS_BASE >> 10,
|
|
|
|
FIRMWARE_PHYS_LENGTH >> 10);
|
|
|
|
}
|
|
|
|
|
2018-05-24 22:29:44 +02:00
|
|
|
static void lpe_set_resources(struct device *dev)
|
2018-01-18 02:39:52 +01:00
|
|
|
{
|
|
|
|
struct resource *res;
|
|
|
|
|
|
|
|
res = find_resource(dev, PCI_BASE_ADDRESS_2);
|
|
|
|
if (res != NULL)
|
|
|
|
res->flags |= IORESOURCE_STORED;
|
|
|
|
|
|
|
|
pci_dev_set_resources(dev);
|
|
|
|
}
|
|
|
|
|
2015-05-06 00:07:29 +02:00
|
|
|
static const struct device_operations device_ops = {
|
|
|
|
.read_resources = lpe_read_resources,
|
2018-01-18 02:39:52 +01:00
|
|
|
.set_resources = lpe_set_resources,
|
2015-05-06 00:07:29 +02:00
|
|
|
.enable_resources = pci_dev_enable_resources,
|
|
|
|
.init = lpe_init,
|
|
|
|
.enable = NULL,
|
|
|
|
.scan_bus = NULL,
|
|
|
|
.ops_pci = &soc_pci_ops,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct pci_driver southcluster __pci_driver = {
|
|
|
|
.ops = &device_ops,
|
|
|
|
.vendor = PCI_VENDOR_ID_INTEL,
|
|
|
|
.device = LPE_DEVID,
|
|
|
|
};
|