blob: 50f03e3d90555f78a6c5a81fcc893a7781f4fb72 [file] [log] [blame]
Simon Glasse2be5532019-12-06 21:41:40 -07001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * (C) Copyright 2009
4 * Vipin Kumar, ST Micoelectronics, vipin.kumar@st.com.
5 * Copyright 2019 Google Inc
6 */
7
8#include <common.h>
9#include <dm.h>
Simon Glassf0c98902019-12-06 21:41:42 -070010#include <spl.h>
Simon Glass9daae2c2019-12-10 21:28:20 -070011#include <asm/lpss.h>
Simon Glasse2be5532019-12-06 21:41:40 -070012#include "designware_i2c.h"
13
Simon Glass9daae2c2019-12-10 21:28:20 -070014enum {
15 VANILLA = 0, /* standard I2C with no tweaks */
16 INTEL_APL, /* Apollo Lake I2C */
17};
18
Simon Glasse2be5532019-12-06 21:41:40 -070019/* BayTrail HCNT/LCNT/SDA hold time */
20static struct dw_scl_sda_cfg byt_config = {
21 .ss_hcnt = 0x200,
22 .fs_hcnt = 0x55,
23 .ss_lcnt = 0x200,
24 .fs_lcnt = 0x99,
25 .sda_hold = 0x6,
26};
27
Simon Glass9daae2c2019-12-10 21:28:20 -070028/* Have a weak function for now - possibly should be a new uclass */
29__weak void lpss_reset_release(void *regs);
30
Simon Glassf0c98902019-12-06 21:41:42 -070031static int designware_i2c_pci_ofdata_to_platdata(struct udevice *dev)
Simon Glasse2be5532019-12-06 21:41:40 -070032{
33 struct dw_i2c *priv = dev_get_priv(dev);
34
Simon Glassf0c98902019-12-06 21:41:42 -070035 if (spl_phase() < PHASE_SPL) {
36 u32 base;
37 int ret;
38
39 ret = dev_read_u32(dev, "early-regs", &base);
40 if (ret)
41 return log_msg_ret("early-regs", ret);
42
43 /* Set i2c base address */
44 dm_pci_write_config32(dev, PCI_BASE_ADDRESS_0, base);
45
46 /* Enable memory access and bus master */
47 dm_pci_write_config32(dev, PCI_COMMAND, PCI_COMMAND_MEMORY |
48 PCI_COMMAND_MASTER);
49 }
50
51 if (spl_phase() < PHASE_BOARD_F) {
52 /* Handle early, fixed mapping into a different address space */
53 priv->regs = (struct i2c_regs *)dm_pci_read_bar32(dev, 0);
54 } else {
55 priv->regs = (struct i2c_regs *)
56 dm_pci_map_bar(dev, PCI_BASE_ADDRESS_0, PCI_REGION_MEM);
57 }
58 if (!priv->regs)
59 return -EINVAL;
60
Simon Glasse2be5532019-12-06 21:41:40 -070061 /* Save base address from PCI BAR */
Simon Glasse2be5532019-12-06 21:41:40 -070062 if (IS_ENABLED(CONFIG_INTEL_BAYTRAIL))
63 /* Use BayTrail specific timing values */
64 priv->scl_sda_cfg = &byt_config;
Simon Glassc38e2b32020-01-23 11:48:15 -070065 if (dev_get_driver_data(dev) == INTEL_APL)
66 priv->has_spk_cnt = true;
Simon Glasse2be5532019-12-06 21:41:40 -070067
Simon Glass9e5d1742020-01-23 11:48:11 -070068 return designware_i2c_ofdata_to_platdata(dev);
Simon Glassf0c98902019-12-06 21:41:42 -070069}
70
71static int designware_i2c_pci_probe(struct udevice *dev)
72{
Simon Glass9daae2c2019-12-10 21:28:20 -070073 struct dw_i2c *priv = dev_get_priv(dev);
74
75 if (dev_get_driver_data(dev) == INTEL_APL) {
76 /* Ensure controller is in D0 state */
77 lpss_set_power_state(dev, STATE_D0);
78
79 lpss_reset_release(priv->regs);
80 }
81
Simon Glasse2be5532019-12-06 21:41:40 -070082 return designware_i2c_probe(dev);
83}
84
85static int designware_i2c_pci_bind(struct udevice *dev)
86{
Simon Glasse2be5532019-12-06 21:41:40 -070087 char name[20];
88
89 /*
90 * Create a unique device name for PCI type devices
91 * ToDo:
92 * Setting req_seq in the driver is probably not recommended.
93 * But without a DT alias the number is not configured. And
94 * using this driver is impossible for PCIe I2C devices.
95 * This can be removed, once a better (correct) way for this
96 * is found and implemented.
Simon Glassf5bdce22019-12-06 21:41:41 -070097 *
98 * TODO(sjg@chromium.org): Perhaps if uclasses had platdata this would
99 * be possible. We cannot use static data in drivers since they may be
100 * used in SPL or before relocation.
Simon Glasse2be5532019-12-06 21:41:40 -0700101 */
Simon Glassf5bdce22019-12-06 21:41:41 -0700102 dev->req_seq = gd->arch.dw_i2c_num_cards++;
103 sprintf(name, "i2c_designware#%u", dev->req_seq);
Simon Glasse2be5532019-12-06 21:41:40 -0700104 device_set_name(dev, name);
105
106 return 0;
107}
108
Simon Glassf0c98902019-12-06 21:41:42 -0700109static const struct udevice_id designware_i2c_pci_ids[] = {
110 { .compatible = "snps,designware-i2c-pci" },
Simon Glass9daae2c2019-12-10 21:28:20 -0700111 { .compatible = "intel,apl-i2c", .data = INTEL_APL },
Simon Glassf0c98902019-12-06 21:41:42 -0700112 { }
113};
114
Simon Glasse2be5532019-12-06 21:41:40 -0700115U_BOOT_DRIVER(i2c_designware_pci) = {
116 .name = "i2c_designware_pci",
117 .id = UCLASS_I2C,
Simon Glassf0c98902019-12-06 21:41:42 -0700118 .of_match = designware_i2c_pci_ids,
Simon Glasse2be5532019-12-06 21:41:40 -0700119 .bind = designware_i2c_pci_bind,
Simon Glassf0c98902019-12-06 21:41:42 -0700120 .ofdata_to_platdata = designware_i2c_pci_ofdata_to_platdata,
Simon Glasse2be5532019-12-06 21:41:40 -0700121 .probe = designware_i2c_pci_probe,
122 .priv_auto_alloc_size = sizeof(struct dw_i2c),
123 .remove = designware_i2c_remove,
124 .flags = DM_FLAG_OS_PREPARE,
125 .ops = &designware_i2c_ops,
126};
127
128static struct pci_device_id designware_pci_supported[] = {
129 /* Intel BayTrail has 7 I2C controller located on the PCI bus */
130 { PCI_VDEVICE(INTEL, 0x0f41) },
131 { PCI_VDEVICE(INTEL, 0x0f42) },
132 { PCI_VDEVICE(INTEL, 0x0f43) },
133 { PCI_VDEVICE(INTEL, 0x0f44) },
134 { PCI_VDEVICE(INTEL, 0x0f45) },
135 { PCI_VDEVICE(INTEL, 0x0f46) },
136 { PCI_VDEVICE(INTEL, 0x0f47) },
Simon Glass9daae2c2019-12-10 21:28:20 -0700137 { PCI_VDEVICE(INTEL, 0x5aac), .driver_data = INTEL_APL },
138 { PCI_VDEVICE(INTEL, 0x5aae), .driver_data = INTEL_APL },
139 { PCI_VDEVICE(INTEL, 0x5ab0), .driver_data = INTEL_APL },
140 { PCI_VDEVICE(INTEL, 0x5ab2), .driver_data = INTEL_APL },
141 { PCI_VDEVICE(INTEL, 0x5ab4), .driver_data = INTEL_APL },
142 { PCI_VDEVICE(INTEL, 0x5ab6), .driver_data = INTEL_APL },
Simon Glasse2be5532019-12-06 21:41:40 -0700143 {},
144};
145
146U_BOOT_PCI_DEVICE(i2c_designware_pci, designware_pci_supported);