2010-12-08 06:42:47 +01:00
|
|
|
#include "smbus.h"
|
2005-07-08 04:49:49 +02:00
|
|
|
|
|
|
|
#define SMBUS_IO_BASE 0x0f00
|
|
|
|
|
|
|
|
static void enable_smbus(void)
|
|
|
|
{
|
2008-04-01 04:36:59 +02:00
|
|
|
device_t dev = PCI_DEV(0x0, 0x1f, 0x3);
|
|
|
|
|
2015-01-05 22:01:01 +01:00
|
|
|
printk(BIOS_SPEW, "SMBus controller enabled\n");
|
2008-04-01 04:36:59 +02:00
|
|
|
|
2005-07-08 04:49:49 +02:00
|
|
|
pci_write_config32(dev, 0x20, SMBUS_IO_BASE | 1);
|
2015-01-05 22:01:01 +01:00
|
|
|
printk(BIOS_DEBUG, "%08x", pci_read_config32(dev, 0x20));
|
2006-04-06 23:37:10 +02:00
|
|
|
/* Set smbus enable */
|
2005-07-08 04:49:49 +02:00
|
|
|
pci_write_config8(dev, 0x40, 1);
|
2006-04-06 23:37:10 +02:00
|
|
|
/* Set smbus iospace enable */
|
2005-07-08 04:49:49 +02:00
|
|
|
pci_write_config8(dev, 0x4, 1);
|
|
|
|
/* SMBALERT_DIS */
|
|
|
|
pci_write_config8(dev, 0x11, 4);
|
2008-04-01 04:36:59 +02:00
|
|
|
|
2005-07-08 04:49:49 +02:00
|
|
|
/* Disable interrupt generation */
|
|
|
|
outb(0, SMBUS_IO_BASE + SMBHSTCTL);
|
|
|
|
|
2006-04-06 23:37:10 +02:00
|
|
|
/* clear any lingering errors, so the transaction will run */
|
|
|
|
outb(inb(SMBUS_IO_BASE + SMBHSTSTAT), SMBUS_IO_BASE + SMBHSTSTAT);
|
2005-07-08 04:49:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int smbus_read_byte(unsigned device, unsigned address)
|
|
|
|
{
|
|
|
|
return do_smbus_read_byte(SMBUS_IO_BASE, device, address);
|
|
|
|
}
|
|
|
|
|
2010-04-15 14:39:29 +02:00
|
|
|
#ifdef UNUSED_CODE
|
2005-07-08 04:49:49 +02:00
|
|
|
static void smbus_write_byte(unsigned device, unsigned address, unsigned char val)
|
|
|
|
{
|
|
|
|
if (smbus_wait_until_ready(SMBUS_IO_BASE) < 0) {
|
|
|
|
return;
|
|
|
|
}
|
2010-04-27 08:56:47 +02:00
|
|
|
|
2015-01-05 22:01:01 +01:00
|
|
|
printk(BIOS_DEBUG, "Unimplemented smbus_write_byte() called.\n");
|
2006-04-06 23:37:10 +02:00
|
|
|
|
2005-07-08 04:49:49 +02:00
|
|
|
#if 0
|
|
|
|
/* setup transaction */
|
|
|
|
/* disable interrupts */
|
|
|
|
outw(inw(SMBUS_IO_BASE + SMBGCTL) & ~((1<<10)|(1<<9)|(1<<8)|(1<<4)),
|
|
|
|
SMBUS_IO_BASE + SMBGCTL);
|
|
|
|
/* set the device I'm talking too */
|
|
|
|
outw(((device & 0x7f) << 1) | 1, SMBUS_IO_BASE + SMBHSTADDR);
|
|
|
|
outb(address & 0xFF, SMBUS_IO_BASE + SMBHSTCMD);
|
|
|
|
/* set up for a byte data write */ /* FIXME */
|
|
|
|
outw((inw(SMBUS_IO_BASE + SMBGCTL) & ~7) | (0x1), SMBUS_IO_BASE + SMBGCTL);
|
|
|
|
/* clear any lingering errors, so the transaction will run */
|
|
|
|
/* Do I need to write the bits to a 1 to clear an error? */
|
|
|
|
outw(inw(SMBUS_IO_BASE + SMBGSTATUS), SMBUS_IO_BASE + SMBGSTATUS);
|
|
|
|
|
|
|
|
/* clear the data word...*/
|
|
|
|
outw(val, SMBUS_IO_BASE + SMBHSTDAT);
|
|
|
|
|
|
|
|
/* start the command */
|
|
|
|
outw((inw(SMBUS_IO_BASE + SMBGCTL) | (1 << 3)), SMBUS_IO_BASE + SMBGCTL);
|
|
|
|
|
|
|
|
/* poll for transaction completion */
|
|
|
|
smbus_wait_until_done(SMBUS_IO_BASE);
|
2010-04-27 08:56:47 +02:00
|
|
|
#endif
|
2005-07-08 04:49:49 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-04-27 08:56:47 +02:00
|
|
|
static int smbus_write_block(unsigned device, unsigned length, unsigned cmd,
|
2005-07-08 04:49:49 +02:00
|
|
|
unsigned data1, unsigned data2)
|
|
|
|
{
|
|
|
|
unsigned char byte;
|
|
|
|
unsigned char stat;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* chear the PM timeout flags, SECOND_TO_STS */
|
|
|
|
outw(inw(0x0400 + 0x66), 0x0400 + 0x66);
|
2010-04-27 08:56:47 +02:00
|
|
|
|
2005-07-08 04:49:49 +02:00
|
|
|
if (smbus_wait_until_ready(SMBUS_IO_BASE) < 0) {
|
|
|
|
return -2;
|
|
|
|
}
|
2010-04-27 08:56:47 +02:00
|
|
|
|
2005-07-08 04:49:49 +02:00
|
|
|
/* setup transaction */
|
|
|
|
/* Obtain ownership */
|
|
|
|
outb(inb(SMBUS_IO_BASE + SMBHSTSTAT), SMBUS_IO_BASE + SMBHSTSTAT);
|
|
|
|
for(stat=0;(stat&0x40)==0;) {
|
|
|
|
stat = inb(SMBUS_IO_BASE + SMBHSTSTAT);
|
|
|
|
}
|
|
|
|
/* clear the done bit */
|
|
|
|
outb(0x80, SMBUS_IO_BASE + SMBHSTSTAT);
|
|
|
|
/* disable interrupts */
|
|
|
|
outb(inb(SMBUS_IO_BASE + SMBHSTCTL) & (~1), SMBUS_IO_BASE + SMBHSTCTL);
|
2010-04-27 08:56:47 +02:00
|
|
|
|
2005-07-08 04:49:49 +02:00
|
|
|
/* set the device I'm talking too */
|
|
|
|
outb(((device & 0x7f) << 1), SMBUS_IO_BASE + SMBXMITADD);
|
2010-04-27 08:56:47 +02:00
|
|
|
|
2005-07-08 04:49:49 +02:00
|
|
|
/* set the command address */
|
|
|
|
outb(cmd & 0xFF, SMBUS_IO_BASE + SMBHSTCMD);
|
2010-04-27 08:56:47 +02:00
|
|
|
|
2005-07-08 04:49:49 +02:00
|
|
|
/* set the block length */
|
|
|
|
outb(length & 0xFF, SMBUS_IO_BASE + SMBHSTDAT0);
|
2010-04-27 08:56:47 +02:00
|
|
|
|
2005-07-08 04:49:49 +02:00
|
|
|
/* try sending out the first byte of data here */
|
|
|
|
byte=(data1>>(0))&0x0ff;
|
|
|
|
outb(byte,SMBUS_IO_BASE + SMBBLKDAT);
|
|
|
|
/* issue a block write command */
|
2010-04-27 08:56:47 +02:00
|
|
|
outb((inb(SMBUS_IO_BASE + SMBHSTCTL) & 0xE3) | (0x5 << 2) | 0x40,
|
2005-07-08 04:49:49 +02:00
|
|
|
SMBUS_IO_BASE + SMBHSTCTL);
|
|
|
|
|
|
|
|
for(i=0;i<length;i++) {
|
2010-04-27 08:56:47 +02:00
|
|
|
|
2005-07-08 04:49:49 +02:00
|
|
|
/* poll for transaction completion */
|
|
|
|
if (smbus_wait_until_blk_done(SMBUS_IO_BASE) < 0) {
|
|
|
|
return -3;
|
|
|
|
}
|
2010-04-27 08:56:47 +02:00
|
|
|
|
2005-07-08 04:49:49 +02:00
|
|
|
/* load the next byte */
|
|
|
|
if(i>3)
|
|
|
|
byte=(data2>>(i%4))&0x0ff;
|
|
|
|
else
|
|
|
|
byte=(data1>>(i))&0x0ff;
|
|
|
|
outb(byte,SMBUS_IO_BASE + SMBBLKDAT);
|
2010-04-27 08:56:47 +02:00
|
|
|
|
2005-07-08 04:49:49 +02:00
|
|
|
/* clear the done bit */
|
2010-04-27 08:56:47 +02:00
|
|
|
outb(inb(SMBUS_IO_BASE + SMBHSTSTAT),
|
2005-07-08 04:49:49 +02:00
|
|
|
SMBUS_IO_BASE + SMBHSTSTAT);
|
|
|
|
}
|
|
|
|
|
2015-01-05 22:01:01 +01:00
|
|
|
printk(BIOS_DEBUG, "SMBUS Block complete\n");
|
2005-07-08 04:49:49 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2010-04-15 14:39:29 +02:00
|
|
|
#endif
|