first round name simplification. drop the <component>_ prefix.
[coreboot.git] / src / southbridge / amd / sb700 / smbus.h
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2010 Advanced Micro Devices, Inc.
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; version 2 of the License.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  */
19
20 #ifndef SB700_SMBUS_H
21 #define SB700_SMBUS_H
22
23 #define SMBHSTSTAT 0x0
24 #define SMBSLVSTAT 0x1
25 #define SMBHSTCTRL 0x2
26 #define SMBHSTCMD  0x3
27 #define SMBHSTADDR 0x4
28 #define SMBHSTDAT0 0x5
29 #define SMBHSTDAT1 0x6
30 #define SMBHSTBLKDAT 0x7
31
32 #define SMBSLVCTRL 0x8
33 #define SMBSLVCMD_SHADOW 0x9
34 #define SMBSLVEVT 0xa
35 #define SMBSLVDAT 0xc
36
37 #define AX_INDXC  0
38 #define AX_INDXP  1
39 #define AXCFG     2
40 #define ABCFG     3
41
42 #define AB_INDX   0xCD8
43 #define AB_DATA   (AB_INDX+4)
44
45 /* Between 1-10 seconds, We should never timeout normally
46  * Longer than this is just painful when a timeout condition occurs.
47  */
48 #define SMBUS_TIMEOUT (100*1000*10)
49
50 #define abcfg_reg(reg, mask, val)       \
51         alink_ab_indx((ABCFG), (reg), (mask), (val))
52 #define axcfg_reg(reg, mask, val)       \
53         alink_ab_indx((AXCFG), (reg), (mask), (val))
54 #define axindxc_reg(reg, mask, val)     \
55         alink_ax_indx(0, (reg), (mask), (val))
56 #define axindxp_reg(reg, mask, val)     \
57         alink_ax_indx(1, (reg), (mask), (val))
58
59 int do_smbus_recv_byte(u32 smbus_io_base, u32 device);
60 int do_smbus_send_byte(u32 smbus_io_base, u32 device, u8 val);
61 int do_smbus_read_byte(u32 smbus_io_base, u32 device, u32 address);
62 int do_smbus_write_byte(u32 smbus_io_base, u32 device, u32 address, u8 val);
63
64
65 #endif