2012-10-30 15:03:43 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2019-03-01 12:43:02 +01:00
|
|
|
#include <device/pci_ops.h>
|
2012-10-30 15:03:43 +01:00
|
|
|
#include <device/pci_def.h>
|
2020-01-06 11:31:34 +01:00
|
|
|
#include <device/smbus_host.h>
|
2012-10-30 15:03:43 +01:00
|
|
|
#include "pch.h"
|
|
|
|
|
2020-01-06 18:41:42 +01:00
|
|
|
uintptr_t smbus_base(void)
|
2012-10-30 15:03:43 +01:00
|
|
|
{
|
2020-01-06 18:41:42 +01:00
|
|
|
return SMBUS_IO_BASE;
|
|
|
|
}
|
2012-10-30 15:03:43 +01:00
|
|
|
|
2020-01-06 18:41:42 +01:00
|
|
|
int smbus_enable_iobar(uintptr_t base)
|
|
|
|
{
|
2012-10-30 15:03:43 +01:00
|
|
|
/* Set the SMBus device statically. */
|
2020-01-06 18:41:42 +01:00
|
|
|
pci_devfn_t dev = PCI_DEV(0x0, 0x1f, 0x3);
|
2012-10-30 15:03:43 +01:00
|
|
|
|
|
|
|
/* Check to make sure we've got the right device. */
|
2020-01-06 18:41:42 +01:00
|
|
|
if (pci_read_config16(dev, 0x0) != 0x8086)
|
|
|
|
return -1;
|
2012-10-30 15:03:43 +01:00
|
|
|
|
|
|
|
/* Set SMBus I/O base. */
|
|
|
|
pci_write_config32(dev, SMB_BASE,
|
2020-01-06 18:41:42 +01:00
|
|
|
base | PCI_BASE_ADDRESS_SPACE_IO);
|
2012-10-30 15:03:43 +01:00
|
|
|
|
|
|
|
/* Set SMBus enable. */
|
|
|
|
pci_write_config8(dev, HOSTC, HST_EN);
|
|
|
|
|
|
|
|
/* Set SMBus I/O space enable. */
|
|
|
|
pci_write_config16(dev, PCI_COMMAND, PCI_COMMAND_IO);
|
|
|
|
|
2020-01-06 18:41:42 +01:00
|
|
|
return 0;
|
2012-10-30 15:03:43 +01:00
|
|
|
}
|
|
|
|
|
2019-10-24 05:46:03 +02:00
|
|
|
int smbus_read_byte(unsigned int device, unsigned int address)
|
2012-10-30 15:03:43 +01:00
|
|
|
{
|
|
|
|
return do_smbus_read_byte(SMBUS_IO_BASE, device, address);
|
|
|
|
}
|