2013-09-07 07:41:48 +02:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 Google, Inc.
|
|
|
|
*
|
|
|
|
* 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 wacbmem_entryanty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <arch/io.h>
|
|
|
|
#include <baytrail/iosf.h>
|
|
|
|
|
|
|
|
#if !defined(__PRE_RAM__)
|
|
|
|
#define IOSF_PCI_BASE (CONFIG_MMCONF_BASE_ADDRESS + (IOSF_PCI_DEV << 12))
|
|
|
|
|
|
|
|
static inline void write_iosf_reg(int reg, uint32_t value)
|
|
|
|
{
|
|
|
|
write32(IOSF_PCI_BASE + reg, value);
|
|
|
|
}
|
|
|
|
static inline uint32_t read_iosf_reg(int reg)
|
|
|
|
{
|
|
|
|
return read32(IOSF_PCI_BASE + reg);
|
|
|
|
}
|
|
|
|
#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);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-10-31 17:58:32 +01:00
|
|
|
/* Common sequences for all the port accesses. */
|
|
|
|
static uint32_t iosf_read_port(uint32_t cr, int reg)
|
2013-09-07 07:41:48 +02:00
|
|
|
{
|
2013-10-31 17:58:32 +01:00
|
|
|
cr |= IOSF_REG(reg) | IOSF_BYTE_EN;
|
2013-10-29 16:57:31 +01:00
|
|
|
write_iosf_reg(MCRX_REG, IOSF_REG_UPPER(reg));
|
2013-09-07 07:41:48 +02:00
|
|
|
write_iosf_reg(MCR_REG, cr);
|
|
|
|
return read_iosf_reg(MDR_REG);
|
|
|
|
}
|
|
|
|
|
2013-10-31 17:58:32 +01:00
|
|
|
static void iosf_write_port(uint32_t cr, int reg, uint32_t val)
|
2013-09-07 07:41:48 +02:00
|
|
|
{
|
2013-10-31 17:58:32 +01:00
|
|
|
cr |= IOSF_REG(reg) | IOSF_BYTE_EN;
|
2013-09-07 07:41:48 +02:00
|
|
|
write_iosf_reg(MDR_REG, val);
|
2013-10-29 16:57:31 +01:00
|
|
|
write_iosf_reg(MCRX_REG, IOSF_REG_UPPER(reg));
|
2013-10-28 22:18:38 +01:00
|
|
|
write_iosf_reg(MCR_REG, cr);
|
2013-09-07 07:41:48 +02:00
|
|
|
}
|
2013-09-23 21:17:35 +02:00
|
|
|
|
2013-12-12 02:10:58 +01:00
|
|
|
#define IOSF_READ(port) \
|
|
|
|
IOSF_OPCODE(IOSF_OP_READ_##port) | IOSF_PORT(IOSF_PORT_##port)
|
|
|
|
#define IOSF_WRITE(port) \
|
|
|
|
IOSF_OPCODE(IOSF_OP_WRITE_##port) | IOSF_PORT(IOSF_PORT_##port)
|
|
|
|
|
2013-10-31 17:58:32 +01:00
|
|
|
uint32_t iosf_bunit_read(int reg)
|
|
|
|
{
|
2013-12-12 02:10:58 +01:00
|
|
|
return iosf_read_port(IOSF_READ(BUNIT), reg);
|
2013-10-31 17:58:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void iosf_bunit_write(int reg, uint32_t val)
|
|
|
|
{
|
2013-12-12 02:10:58 +01:00
|
|
|
iosf_write_port(IOSF_WRITE(BUNIT), reg, val);
|
2013-10-31 17:58:32 +01:00
|
|
|
}
|
|
|
|
|
2013-09-23 21:17:35 +02:00
|
|
|
uint32_t iosf_dunit_read(int reg)
|
|
|
|
{
|
2013-12-12 02:10:58 +01:00
|
|
|
return iosf_read_port(IOSF_READ(SYSMEMC), reg);
|
2013-09-23 21:17:35 +02:00
|
|
|
}
|
|
|
|
|
2013-10-11 07:26:04 +02:00
|
|
|
uint32_t iosf_dunit_ch0_read(int reg)
|
|
|
|
{
|
|
|
|
return iosf_dunit_read(reg);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t iosf_dunit_ch1_read(int reg)
|
|
|
|
{
|
|
|
|
uint32_t cr = IOSF_OPCODE(IOSF_OP_READ_SYSMEMC) |
|
2013-10-31 17:58:32 +01:00
|
|
|
IOSF_PORT(IOSF_PORT_DUNIT_CH1);
|
|
|
|
return iosf_read_port(cr, reg);
|
2013-10-11 07:26:04 +02:00
|
|
|
}
|
|
|
|
|
2013-09-23 21:17:35 +02:00
|
|
|
void iosf_dunit_write(int reg, uint32_t val)
|
|
|
|
{
|
2013-12-12 02:10:58 +01:00
|
|
|
iosf_write_port(IOSF_WRITE(SYSMEMC), reg, val);
|
2013-10-04 22:23:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t iosf_punit_read(int reg)
|
|
|
|
{
|
2013-12-12 02:10:58 +01:00
|
|
|
return iosf_read_port(IOSF_READ(PMC), reg);
|
2013-10-04 22:23:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void iosf_punit_write(int reg, uint32_t val)
|
|
|
|
{
|
2013-12-12 02:10:58 +01:00
|
|
|
iosf_write_port(IOSF_WRITE(PMC), reg, val);
|
2013-09-23 21:17:35 +02:00
|
|
|
}
|
2013-10-31 16:20:48 +01:00
|
|
|
|
|
|
|
uint32_t iosf_usbphy_read(int reg)
|
|
|
|
{
|
2013-12-12 02:10:58 +01:00
|
|
|
return iosf_read_port(IOSF_READ(USBPHY), reg);
|
2013-10-31 16:20:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void iosf_usbphy_write(int reg, uint32_t val)
|
|
|
|
{
|
2013-12-12 02:10:58 +01:00
|
|
|
return iosf_write_port(IOSF_WRITE(USBPHY), reg, val);
|
2013-10-31 16:20:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t iosf_ushphy_read(int reg)
|
|
|
|
{
|
2013-12-12 02:10:58 +01:00
|
|
|
return iosf_read_port(IOSF_READ(USHPHY), reg);
|
2013-10-31 16:20:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void iosf_ushphy_write(int reg, uint32_t val)
|
|
|
|
{
|
2013-12-12 02:10:58 +01:00
|
|
|
return iosf_write_port(IOSF_WRITE(USHPHY), reg, val);
|
2013-10-31 16:20:48 +01:00
|
|
|
}
|
2013-10-31 16:46:56 +01:00
|
|
|
|
|
|
|
uint32_t iosf_lpss_read(int reg)
|
|
|
|
{
|
2013-12-12 02:10:58 +01:00
|
|
|
return iosf_read_port(IOSF_READ(LPSS), reg);
|
2013-10-31 16:46:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void iosf_lpss_write(int reg, uint32_t val)
|
|
|
|
{
|
2013-12-12 02:10:58 +01:00
|
|
|
return iosf_write_port(IOSF_WRITE(LPSS), reg, val);
|
2013-10-31 16:46:56 +01:00
|
|
|
}
|
2013-11-01 20:19:24 +01:00
|
|
|
|
|
|
|
uint32_t iosf_ccu_read(int reg)
|
|
|
|
{
|
2013-12-12 02:10:58 +01:00
|
|
|
return iosf_read_port(IOSF_READ(CCU), reg);
|
2013-11-01 20:19:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void iosf_ccu_write(int reg, uint32_t val)
|
|
|
|
{
|
2013-12-12 02:10:58 +01:00
|
|
|
return iosf_write_port(IOSF_WRITE(CCU), reg, val);
|
2013-11-01 20:19:24 +01:00
|
|
|
}
|
2013-11-12 23:37:05 +01:00
|
|
|
|
|
|
|
uint32_t iosf_score_read(int reg)
|
|
|
|
{
|
2013-12-12 02:10:58 +01:00
|
|
|
return iosf_read_port(IOSF_READ(SCORE), reg);
|
2013-11-12 23:37:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void iosf_score_write(int reg, uint32_t val)
|
|
|
|
{
|
2013-12-12 02:10:58 +01:00
|
|
|
return iosf_write_port(IOSF_WRITE(SCORE), reg, val);
|
2013-11-12 23:37:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t iosf_scc_read(int reg)
|
|
|
|
{
|
2013-12-12 02:10:58 +01:00
|
|
|
return iosf_read_port(IOSF_READ(SCC), reg);
|
2013-11-12 23:37:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void iosf_scc_write(int reg, uint32_t val)
|
|
|
|
{
|
2013-12-12 02:10:58 +01:00
|
|
|
return iosf_write_port(IOSF_WRITE(SCC), reg, val);
|
2013-11-12 23:37:05 +01:00
|
|
|
}
|