mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
faa8323299
In the Quark SoC, some chipset commands are accomplished by utilizing the internal message network within the host bridge (D0:F0). Accesses to this network are accomplished by populating the message control register (MCR), Message Control Register eXtension (MCRX) and the message data register (MDR). Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Acked-by: Simon Glass <sjg@chromium.org>
77 lines
1.9 KiB
C
77 lines
1.9 KiB
C
/*
|
|
* Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <pci.h>
|
|
#include <asm/arch/device.h>
|
|
#include <asm/arch/msg_port.h>
|
|
|
|
void msg_port_setup(int op, int port, int reg)
|
|
{
|
|
pci_write_config_dword(QUARK_HOST_BRIDGE, MSG_CTRL_REG,
|
|
(((op) << 24) | ((port) << 16) |
|
|
(((reg) << 8) & 0xff00) | MSG_BYTE_ENABLE));
|
|
}
|
|
|
|
u32 msg_port_read(u8 port, u32 reg)
|
|
{
|
|
u32 value;
|
|
|
|
pci_write_config_dword(QUARK_HOST_BRIDGE, MSG_CTRL_EXT_REG,
|
|
reg & 0xffffff00);
|
|
msg_port_setup(MSG_OP_READ, port, reg);
|
|
pci_read_config_dword(QUARK_HOST_BRIDGE, MSG_DATA_REG, &value);
|
|
|
|
return value;
|
|
}
|
|
|
|
void msg_port_write(u8 port, u32 reg, u32 value)
|
|
{
|
|
pci_write_config_dword(QUARK_HOST_BRIDGE, MSG_DATA_REG, value);
|
|
pci_write_config_dword(QUARK_HOST_BRIDGE, MSG_CTRL_EXT_REG,
|
|
reg & 0xffffff00);
|
|
msg_port_setup(MSG_OP_WRITE, port, reg);
|
|
}
|
|
|
|
u32 msg_port_alt_read(u8 port, u32 reg)
|
|
{
|
|
u32 value;
|
|
|
|
pci_write_config_dword(QUARK_HOST_BRIDGE, MSG_CTRL_EXT_REG,
|
|
reg & 0xffffff00);
|
|
msg_port_setup(MSG_OP_ALT_READ, port, reg);
|
|
pci_read_config_dword(QUARK_HOST_BRIDGE, MSG_DATA_REG, &value);
|
|
|
|
return value;
|
|
}
|
|
|
|
void msg_port_alt_write(u8 port, u32 reg, u32 value)
|
|
{
|
|
pci_write_config_dword(QUARK_HOST_BRIDGE, MSG_DATA_REG, value);
|
|
pci_write_config_dword(QUARK_HOST_BRIDGE, MSG_CTRL_EXT_REG,
|
|
reg & 0xffffff00);
|
|
msg_port_setup(MSG_OP_ALT_WRITE, port, reg);
|
|
}
|
|
|
|
u32 msg_port_io_read(u8 port, u32 reg)
|
|
{
|
|
u32 value;
|
|
|
|
pci_write_config_dword(QUARK_HOST_BRIDGE, MSG_CTRL_EXT_REG,
|
|
reg & 0xffffff00);
|
|
msg_port_setup(MSG_OP_IO_READ, port, reg);
|
|
pci_read_config_dword(QUARK_HOST_BRIDGE, MSG_DATA_REG, &value);
|
|
|
|
return value;
|
|
}
|
|
|
|
void msg_port_io_write(u8 port, u32 reg, u32 value)
|
|
{
|
|
pci_write_config_dword(QUARK_HOST_BRIDGE, MSG_DATA_REG, value);
|
|
pci_write_config_dword(QUARK_HOST_BRIDGE, MSG_CTRL_EXT_REG,
|
|
reg & 0xffffff00);
|
|
msg_port_setup(MSG_OP_IO_WRITE, port, reg);
|
|
}
|