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,
|
2017-01-13 22:23:49 +01:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-05-06 00:07:29 +02:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
2019-03-03 07:01:05 +01:00
|
|
|
#include <device/mmio.h>
|
2019-03-01 12:43:02 +01:00
|
|
|
#include <device/pci_ops.h>
|
2015-04-21 00:20:28 +02:00
|
|
|
#include <console/console.h>
|
2015-05-06 00:07:29 +02:00
|
|
|
#include <soc/iosf.h>
|
|
|
|
|
2015-04-21 00:20:28 +02:00
|
|
|
#if ENV_RAMSTAGE
|
2015-05-06 00:07:29 +02:00
|
|
|
#define IOSF_PCI_BASE (CONFIG_MMCONF_BASE_ADDRESS + (IOSF_PCI_DEV << 12))
|
|
|
|
|
|
|
|
static inline void write_iosf_reg(int reg, uint32_t value)
|
|
|
|
{
|
2015-04-21 00:20:28 +02:00
|
|
|
write32((void *)(IOSF_PCI_BASE + reg), value);
|
2015-05-06 00:07:29 +02:00
|
|
|
}
|
|
|
|
static inline uint32_t read_iosf_reg(int reg)
|
|
|
|
{
|
2015-04-21 00:20:28 +02:00
|
|
|
return read32((void *)(IOSF_PCI_BASE + reg));
|
2015-05-06 00:07:29 +02:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
static inline void write_iosf_reg(int reg, uint32_t value)
|
|
|
|
{
|
|
|
|
pci_write_config32(IOSF_PCI_DEV, reg, value);
|
|
|
|
}
|
|
|
|
static inline uint32_t read_iosf_reg(int reg)
|
|
|
|
{
|
|
|
|
return pci_read_config32(IOSF_PCI_DEV, reg);
|
|
|
|
}
|
2015-04-21 00:20:28 +02:00
|
|
|
#endif /* ENV_RAMSTAGE */
|
2015-05-06 00:07:29 +02:00
|
|
|
|
|
|
|
/* Common sequences for all the port accesses. */
|
|
|
|
static uint32_t iosf_read_port(uint32_t cr, int reg)
|
|
|
|
{
|
|
|
|
cr |= IOSF_REG(reg) | IOSF_BYTE_EN;
|
|
|
|
write_iosf_reg(MCRX_REG, IOSF_REG_UPPER(reg));
|
|
|
|
write_iosf_reg(MCR_REG, cr);
|
|
|
|
return read_iosf_reg(MDR_REG);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void iosf_write_port(uint32_t cr, int reg, uint32_t val)
|
|
|
|
{
|
|
|
|
cr |= IOSF_REG(reg) | IOSF_BYTE_EN;
|
|
|
|
write_iosf_reg(MDR_REG, val);
|
|
|
|
write_iosf_reg(MCRX_REG, IOSF_REG_UPPER(reg));
|
|
|
|
write_iosf_reg(MCR_REG, cr);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define IOSF_READ(port) \
|
2015-04-21 00:20:28 +02:00
|
|
|
(IOSF_OPCODE(IOSF_OP_READ_##port) | IOSF_PORT(IOSF_PORT_##port))
|
2015-05-06 00:07:29 +02:00
|
|
|
#define IOSF_WRITE(port) \
|
2015-04-21 00:20:28 +02:00
|
|
|
(IOSF_OPCODE(IOSF_OP_WRITE_##port) | IOSF_PORT(IOSF_PORT_##port))
|
2015-05-06 00:07:29 +02:00
|
|
|
|
|
|
|
uint32_t iosf_bunit_read(int reg)
|
|
|
|
{
|
|
|
|
return iosf_read_port(IOSF_READ(BUNIT), reg);
|
|
|
|
}
|
|
|
|
|
|
|
|
void iosf_bunit_write(int reg, uint32_t val)
|
|
|
|
{
|
|
|
|
iosf_write_port(IOSF_WRITE(BUNIT), reg, val);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t iosf_punit_read(int reg)
|
|
|
|
{
|
|
|
|
return iosf_read_port(IOSF_READ(PMC), reg);
|
|
|
|
}
|
|
|
|
|
|
|
|
void iosf_punit_write(int reg, uint32_t val)
|
|
|
|
{
|
|
|
|
iosf_write_port(IOSF_WRITE(PMC), reg, val);
|
|
|
|
}
|
|
|
|
|
2015-04-21 00:20:28 +02:00
|
|
|
uint32_t iosf_score_read(int reg)
|
2015-05-06 00:07:29 +02:00
|
|
|
{
|
2015-04-21 00:20:28 +02:00
|
|
|
return iosf_read_port(IOSF_READ(SCORE), reg);
|
2015-05-06 00:07:29 +02:00
|
|
|
}
|
|
|
|
|
2015-04-21 00:20:28 +02:00
|
|
|
void iosf_score_write(int reg, uint32_t val)
|
2015-05-06 00:07:29 +02:00
|
|
|
{
|
2015-04-21 00:20:28 +02:00
|
|
|
iosf_write_port(IOSF_WRITE(SCORE), reg, val);
|
2015-05-06 00:07:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t iosf_lpss_read(int reg)
|
|
|
|
{
|
|
|
|
return iosf_read_port(IOSF_READ(LPSS), reg);
|
|
|
|
}
|
|
|
|
|
|
|
|
void iosf_lpss_write(int reg, uint32_t val)
|
|
|
|
{
|
2015-04-21 00:20:28 +02:00
|
|
|
iosf_write_port(IOSF_WRITE(LPSS), reg, val);
|
2015-05-06 00:07:29 +02:00
|
|
|
}
|
|
|
|
|
2015-04-21 00:20:28 +02:00
|
|
|
uint32_t iosf_port58_read(int reg)
|
2015-05-06 00:07:29 +02:00
|
|
|
{
|
2015-04-21 00:20:28 +02:00
|
|
|
return iosf_read_port(IOSF_READ(0x58), reg);
|
2015-05-06 00:07:29 +02:00
|
|
|
}
|
|
|
|
|
2015-04-21 00:20:28 +02:00
|
|
|
void iosf_port58_write(int reg, uint32_t val)
|
2015-05-06 00:07:29 +02:00
|
|
|
{
|
2015-04-21 00:20:28 +02:00
|
|
|
iosf_write_port(IOSF_WRITE(0x58), reg, val);
|
2015-05-06 00:07:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t iosf_scc_read(int reg)
|
|
|
|
{
|
|
|
|
return iosf_read_port(IOSF_READ(SCC), reg);
|
|
|
|
}
|
|
|
|
|
|
|
|
void iosf_scc_write(int reg, uint32_t val)
|
|
|
|
{
|
|
|
|
return iosf_write_port(IOSF_WRITE(SCC), reg, val);
|
|
|
|
}
|
|
|
|
|
2015-09-22 10:53:58 +02:00
|
|
|
uint32_t iosf_usbphy_read(int reg)
|
|
|
|
{
|
|
|
|
return iosf_read_port(IOSF_READ(USBPHY), reg);
|
|
|
|
}
|
|
|
|
|
|
|
|
void iosf_usbphy_write(int reg, uint32_t val)
|
|
|
|
{
|
|
|
|
return iosf_write_port(IOSF_WRITE(USBPHY), reg, val);
|
|
|
|
}
|
2015-05-06 00:07:29 +02:00
|
|
|
|
2015-04-21 00:20:28 +02:00
|
|
|
#if ENV_RAMSTAGE
|
|
|
|
uint64_t reg_script_read_iosf(struct reg_script_context *ctx)
|
|
|
|
{
|
|
|
|
const struct reg_script *step = ctx->step;
|
|
|
|
|
|
|
|
/* Process the request */
|
|
|
|
switch (step->id) {
|
|
|
|
case IOSF_PORT_BUNIT:
|
|
|
|
return iosf_bunit_read(step->reg);
|
|
|
|
case IOSF_PORT_SCORE:
|
|
|
|
return iosf_score_read(step->reg);
|
|
|
|
case IOSF_PORT_LPSS:
|
|
|
|
return iosf_lpss_read(step->reg);
|
|
|
|
case IOSF_PORT_0x58:
|
|
|
|
return iosf_port58_read(step->reg);
|
|
|
|
case IOSF_PORT_SCC:
|
|
|
|
return iosf_scc_read(step->reg);
|
2015-09-22 10:53:58 +02:00
|
|
|
case IOSF_PORT_USBPHY:
|
|
|
|
return iosf_usbphy_read(step->reg);
|
2015-04-21 00:20:28 +02:00
|
|
|
default:
|
|
|
|
printk(BIOS_DEBUG, "No read support for IOSF port 0x%x.\n",
|
|
|
|
step->id);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void reg_script_write_iosf(struct reg_script_context *ctx)
|
|
|
|
{
|
|
|
|
const struct reg_script *step = ctx->step;
|
|
|
|
|
|
|
|
/* Process the request */
|
|
|
|
switch (step->id) {
|
|
|
|
case IOSF_PORT_BUNIT:
|
|
|
|
iosf_bunit_write(step->reg, step->value);
|
|
|
|
break;
|
|
|
|
case IOSF_PORT_SCORE:
|
|
|
|
iosf_score_write(step->reg, step->value);
|
|
|
|
break;
|
|
|
|
case IOSF_PORT_LPSS:
|
|
|
|
iosf_lpss_write(step->reg, step->value);
|
|
|
|
break;
|
|
|
|
case IOSF_PORT_0x58:
|
|
|
|
iosf_port58_write(step->reg, step->value);
|
|
|
|
break;
|
|
|
|
case IOSF_PORT_SCC:
|
|
|
|
iosf_scc_write(step->reg, step->value);
|
|
|
|
break;
|
2015-09-22 10:53:58 +02:00
|
|
|
case IOSF_PORT_USBPHY:
|
|
|
|
iosf_usbphy_write(step->reg, step->value);
|
|
|
|
break;
|
2015-04-21 00:20:28 +02:00
|
|
|
default:
|
|
|
|
printk(BIOS_DEBUG, "No write support for IOSF port 0x%x.\n",
|
|
|
|
step->id);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-30 02:26:36 +02:00
|
|
|
static const struct reg_script_bus_entry reg_script_bus_table = {
|
|
|
|
REG_SCRIPT_TYPE_IOSF, reg_script_read_iosf, reg_script_write_iosf
|
2015-04-21 00:20:28 +02:00
|
|
|
};
|
|
|
|
|
2016-04-30 02:26:36 +02:00
|
|
|
REG_SCRIPT_BUS_ENTRY(reg_script_bus_table);
|
2015-04-21 00:20:28 +02:00
|
|
|
|
|
|
|
#endif /* ENV_RAMSTAGE */
|