2 * Copyright (c) 2015 Google, Inc
3 * Written by Simon Glass <sjg@chromium.org>
5 * SMBus block read/write support added by Stefan Roese:
6 * Copyright (C) 2016 Stefan Roese <sr@denx.de>
8 * SPDX-License-Identifier: GPL-2.0+
17 /* PCI Configuration Space (D31:F3): SMBus */
20 #define HST_EN (1 << 0)
21 #define SMB_RCV_SLVA 0x09
24 #define SMBHSTSTAT 0x0
27 #define SMBXMITADD 0x4
28 #define SMBHSTDAT0 0x5
29 #define SMBHSTDAT1 0x6
31 #define SMBTRNSADD 0x9
32 #define SMBSLVDATA 0xa
34 #define SMLINK_PIN_CTL 0xe
35 #define SMBUS_PIN_CTL 0xf
37 /* I801 Hosts Status register bits */
38 #define SMBHSTSTS_BYTE_DONE 0x80
39 #define SMBHSTSTS_INUSE_STS 0x40
40 #define SMBHSTSTS_SMBALERT_STS 0x20
41 #define SMBHSTSTS_FAILED 0x10
42 #define SMBHSTSTS_BUS_ERR 0x08
43 #define SMBHSTSTS_DEV_ERR 0x04
44 #define SMBHSTSTS_INTR 0x02
45 #define SMBHSTSTS_HOST_BUSY 0x01
47 /* I801 Host Control register bits */
48 #define SMBHSTCNT_INTREN 0x01
49 #define SMBHSTCNT_KILL 0x02
50 #define SMBHSTCNT_LAST_BYTE 0x20
51 #define SMBHSTCNT_START 0x40
52 #define SMBHSTCNT_PEC_EN 0x80 /* ICH3 and later */
54 /* Auxiliary control register bits, ICH4+ only */
55 #define SMBAUXCTL_CRC 1
56 #define SMBAUXCTL_E32B 2
58 #define SMBUS_TIMEOUT 100 /* 100 ms */
65 static int smbus_wait_until_ready(u32 base)
72 byte = inb(base + SMBHSTSTAT);
75 } while (get_timer(ts) < SMBUS_TIMEOUT);
80 static int smbus_wait_until_done(u32 base)
87 byte = inb(base + SMBHSTSTAT);
88 if (!((byte & 1) || (byte & ~((1 << 6) | (1 << 0))) == 0))
90 } while (get_timer(ts) < SMBUS_TIMEOUT);
95 static int smbus_block_read(u32 base, u8 dev, u8 *buffer,
102 debug("%s (%d): dev=0x%x offs=0x%x len=0x%x\n",
103 __func__, __LINE__, dev, offset, len);
104 if (smbus_wait_until_ready(base) < 0)
107 /* Setup transaction */
109 /* Reset the data buffer index */
110 inb(base + SMBHSTCTL);
112 /* Set the device I'm talking too */
113 outb(((dev & 0x7f) << 1) | 1, base + SMBXMITADD);
114 /* Set the command/address... */
115 outb(offset & 0xff, base + SMBHSTCMD);
116 /* Set up for a block read */
117 outb((inb(base + SMBHSTCTL) & (~(0x7) << 2)) | (0x5 << 2),
119 /* Clear any lingering errors, so the transaction will run */
120 outb(inb(base + SMBHSTSTAT), base + SMBHSTSTAT);
122 /* Start the command */
123 outb((inb(base + SMBHSTCTL) | SMBHSTCNT_START), base + SMBHSTCTL);
125 /* Poll for transaction completion */
126 if (smbus_wait_until_done(base) < 0) {
127 printf("SMBUS read transaction timeout (dev=0x%x)\n", dev);
131 count = inb(base + SMBHSTDAT0);
132 debug("%s (%d): count=%d (len=%d)\n", __func__, __LINE__, count, len);
134 debug("ERROR: len=0 on read\n");
139 debug("ERROR: too few bytes read\n");
144 debug("ERROR: count=%d too high\n", count);
148 /* Read all available bytes from buffer */
149 for (i = 0; i < count; i++)
150 buf_temp[i] = inb(base + SMBBLKDAT);
152 memcpy(buffer, buf_temp, len);
154 /* Return results of transaction */
155 if (!(inb(base + SMBHSTSTAT) & SMBHSTSTS_INTR))
161 static int smbus_block_write(u32 base, u8 dev, u8 *buffer,
166 debug("%s (%d): dev=0x%x offs=0x%x len=0x%x\n",
167 __func__, __LINE__, dev, offset, len);
168 if (smbus_wait_until_ready(base) < 0)
171 /* Setup transaction */
172 /* Set the device I'm talking too */
173 outb(((dev & 0x7f) << 1) & ~0x01, base + SMBXMITADD);
174 /* Set the command/address... */
175 outb(offset, base + SMBHSTCMD);
176 /* Set up for a block write */
177 outb((inb(base + SMBHSTCTL) & (~(0x7) << 2)) | (0x5 << 2),
179 /* Clear any lingering errors, so the transaction will run */
180 outb(inb(base + SMBHSTSTAT), base + SMBHSTSTAT);
182 /* Write count in DAT0 register */
183 outb(len, base + SMBHSTDAT0);
185 /* Write data bytes... */
186 for (i = 0; i < len; i++)
187 outb(*buffer++, base + SMBBLKDAT);
189 /* Start the command */
190 outb((inb(base + SMBHSTCTL) | SMBHSTCNT_START), base + SMBHSTCTL);
192 /* Poll for transaction completion */
193 if (smbus_wait_until_done(base) < 0) {
194 printf("SMBUS write transaction timeout (dev=0x%x)\n", dev);
198 /* Return results of transaction */
199 if (!(inb(base + SMBHSTSTAT) & SMBHSTSTS_INTR))
205 static int intel_i2c_xfer(struct udevice *bus, struct i2c_msg *msg, int nmsgs)
207 struct intel_i2c *i2c = dev_get_priv(bus);
208 struct i2c_msg *dmsg, *omsg, dummy;
210 debug("i2c_xfer: %d messages\n", nmsgs);
212 memset(&dummy, 0, sizeof(struct i2c_msg));
215 * We expect either two messages (one with an offset and one with the
216 * actucal data) or one message (just data)
218 if (nmsgs > 2 || nmsgs == 0) {
219 debug("%s: Only one or two messages are supported", __func__);
223 omsg = nmsgs == 1 ? &dummy : msg;
224 dmsg = nmsgs == 1 ? msg : msg + 1;
226 if (dmsg->flags & I2C_M_RD)
227 return smbus_block_read(i2c->base, dmsg->addr, &dmsg->buf[0],
228 omsg->buf[0], dmsg->len);
230 return smbus_block_write(i2c->base, dmsg->addr, &dmsg->buf[1],
231 dmsg->buf[0], dmsg->len - 1);
234 static int intel_i2c_probe_chip(struct udevice *bus, uint chip_addr,
237 struct intel_i2c *i2c = dev_get_priv(bus);
240 return smbus_block_read(i2c->base, chip_addr, buf, 0, 1);
243 static int intel_i2c_set_bus_speed(struct udevice *bus, unsigned int speed)
248 static int intel_i2c_probe(struct udevice *dev)
250 struct intel_i2c *priv = dev_get_priv(dev);
253 /* Save base address from PCI BAR */
254 priv->base = (ulong)dm_pci_map_bar(dev, PCI_BASE_ADDRESS_4,
258 /* Set SMBus enable. */
259 dm_pci_write_config8(dev, HOSTC, HST_EN);
261 /* Disable interrupts */
262 outb(inb(base + SMBHSTCTL) & ~SMBHSTCNT_INTREN, base + SMBHSTCTL);
264 /* Set 32-byte data buffer mode */
265 outb(inb(base + SMBAUXCTL) | SMBAUXCTL_E32B, base + SMBAUXCTL);
270 static int intel_i2c_bind(struct udevice *dev)
272 static int num_cards __attribute__ ((section(".data")));
275 /* Create a unique device name for PCI type devices */
276 if (device_is_on_pci_bus(dev)) {
279 * Setting req_seq in the driver is probably not recommended.
280 * But without a DT alias the number is not configured. And
281 * using this driver is impossible for PCIe I2C devices.
282 * This can be removed, once a better (correct) way for this
283 * is found and implemented.
285 dev->req_seq = num_cards;
286 sprintf(name, "intel_i2c#%u", num_cards++);
287 device_set_name(dev, name);
293 static const struct dm_i2c_ops intel_i2c_ops = {
294 .xfer = intel_i2c_xfer,
295 .probe_chip = intel_i2c_probe_chip,
296 .set_bus_speed = intel_i2c_set_bus_speed,
299 static const struct udevice_id intel_i2c_ids[] = {
300 { .compatible = "intel,ich-i2c" },
304 U_BOOT_DRIVER(intel_i2c) = {
307 .of_match = intel_i2c_ids,
308 .ops = &intel_i2c_ops,
309 .priv_auto_alloc_size = sizeof(struct intel_i2c),
310 .bind = intel_i2c_bind,
311 .probe = intel_i2c_probe,
314 static struct pci_device_id intel_smbus_pci_supported[] = {
315 /* Intel BayTrail SMBus on the PCI bus */
316 { PCI_VDEVICE(INTEL, 0x0f12) },
317 /* Intel IvyBridge (Panther Point PCH) SMBus on the PCI bus */
318 { PCI_VDEVICE(INTEL, 0x1e22) },
322 U_BOOT_PCI_DEVICE(intel_i2c, intel_smbus_pci_supported);