Kill a few more warnings.
[coreboot.git] / src / southbridge / intel / i82801bx / i82801bx_smbus.h
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2005 Yinghai Lu <yinghailu@gmail.com>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 #include <device/smbus_def.h>
22
23 static void smbus_delay(void)
24 {
25         inb(0x80);
26 }
27
28 static int smbus_wait_until_ready(void)
29 {
30         unsigned loops = SMBUS_TIMEOUT;
31         unsigned char byte;
32         do {
33                 smbus_delay();
34                 if (--loops == 0)
35                         break;
36                 byte = inb(SMBUS_IO_BASE + SMBHSTSTAT);
37         } while (byte & 1);
38         return loops ? 0 : -1;
39 }
40
41 static int smbus_wait_until_done(void)
42 {
43         unsigned loops = SMBUS_TIMEOUT;
44         unsigned char byte;
45         do {
46                 smbus_delay();
47                 if (--loops == 0)
48                         break;
49                 byte = inb(SMBUS_IO_BASE + SMBHSTSTAT);
50         } while ((byte & 1) || (byte & ~((1 << 6) | (1 << 0))) == 0);
51         return loops ? 0 : -1;
52 }
53
54 static int smbus_wait_until_blk_done(void)
55 {
56         unsigned loops = SMBUS_TIMEOUT;
57         unsigned char byte;
58         do {
59                 smbus_delay();
60                 if (--loops == 0)
61                         break;
62                 byte = inb(SMBUS_IO_BASE + SMBHSTSTAT);
63         } while ((byte & (1 << 7)) == 0);
64         return loops ? 0 : -1;
65 }
66
67 static int do_smbus_read_byte(unsigned device, unsigned address)
68 {
69         unsigned char global_status_register;
70         unsigned char byte;
71
72         if (smbus_wait_until_ready() < 0) {
73                 return SMBUS_WAIT_UNTIL_READY_TIMEOUT;
74         }
75         /* Setup transaction */
76         /* Disable interrupts */
77         outb(inb(SMBUS_IO_BASE + SMBHSTCTL) & (~1), SMBUS_IO_BASE + SMBHSTCTL);
78         /* Set the device I'm talking too */
79         outb(((device & 0x7f) << 1) | 1, SMBUS_IO_BASE + SMBXMITADD);
80         /* Set the command/address... */
81         outb(address & 0xff, SMBUS_IO_BASE + SMBHSTCMD);
82         /* Set up for a byte data read */
83         outb((inb(SMBUS_IO_BASE + SMBHSTCTL) & 0xe3) | (0x2 << 2),
84              (SMBUS_IO_BASE + SMBHSTCTL));
85         /* Clear any lingering errors, so the transaction will run */
86         outb(inb(SMBUS_IO_BASE + SMBHSTSTAT), SMBUS_IO_BASE + SMBHSTSTAT);
87
88         /* Clear the data byte... */
89         outb(0, SMBUS_IO_BASE + SMBHSTDAT0);
90
91         /* Start the command */
92         outb((inb(SMBUS_IO_BASE + SMBHSTCTL) | 0x40),
93              SMBUS_IO_BASE + SMBHSTCTL);
94
95         /* Poll for transaction completion */
96         if (smbus_wait_until_done() < 0) {
97                 return SMBUS_WAIT_UNTIL_DONE_TIMEOUT;
98         }
99
100         global_status_register = inb(SMBUS_IO_BASE + SMBHSTSTAT);
101
102         /* Ignore the "In Use" status... */
103         global_status_register &= ~(3 << 5);
104
105         /* Read results of transaction */
106         byte = inb(SMBUS_IO_BASE + SMBHSTDAT0);
107         if (global_status_register != (1 << 1)) {
108                 return SMBUS_ERROR;
109         }
110         return byte;
111 }
112