1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (c) 2012 The Chromium OS Authors.
7 * This is a GPIO driver for Intel ICH6 and later. The x86 GPIOs are accessed
8 * through the PCI bus. Each PCI device has 256 bytes of configuration space,
9 * consisting of a standard header and a device-specific set of registers. PCI
10 * bus 0, device 31, function 0 gives us access to the chipset GPIOs (among
11 * other things). Within the PCI configuration space, the GPIOBASE register
12 * tells us where in the device's I/O region we can find more registers to
13 * actually access the GPIOs.
15 * PCI bus/device/function 0:1f:0 => PCI config registers
16 * PCI config register "GPIOBASE"
17 * PCI I/O space + [GPIOBASE] => start of GPIO registers
18 * GPIO registers => gpio pin function, direction, value
21 * Danger Will Robinson! Bank 0 (GPIOs 0-31) seems to be fairly stable. Most
22 * ICH versions have more, but the decoding the matrix that describes them is
23 * absurdly complex and constantly changing. We'll provide Bank 1 and Bank 2,
24 * but they will ONLY work for certain unspecified chipsets because the offset
25 * from GPIOBASE changes randomly. Even then, many GPIOs are unimplemented or
26 * reserved or subject to arcane restrictions.
41 DECLARE_GLOBAL_DATA_PTR;
43 #define GPIO_PER_BANK 32
45 struct ich6_bank_priv {
46 /* These are I/O addresses */
51 bool use_lvl_write_cache;
54 #define GPIO_USESEL_OFFSET(x) (x)
55 #define GPIO_IOSEL_OFFSET(x) (x + 4)
56 #define GPIO_LVL_OFFSET(x) (x + 8)
58 static int _ich6_gpio_set_value(struct ich6_bank_priv *bank, unsigned offset,
63 if (bank->use_lvl_write_cache)
64 val = bank->lvl_write_cache;
69 val |= (1UL << offset);
71 val &= ~(1UL << offset);
73 if (bank->use_lvl_write_cache)
74 bank->lvl_write_cache = val;
79 static int _ich6_gpio_set_direction(uint16_t base, unsigned offset, int dir)
85 val |= (1UL << offset);
89 val &= ~(1UL << offset);
96 static int gpio_ich6_of_to_plat(struct udevice *dev)
98 struct ich6_bank_plat *plat = dev_get_plat(dev);
103 ret = pch_get_gpio_base(dev->parent, &gpiobase);
107 offset = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev), "reg", -1);
109 debug("%s: Invalid register offset %d\n", __func__, offset);
112 plat->offset = offset;
113 plat->base_addr = gpiobase + offset;
114 plat->bank_name = fdt_getprop(gd->fdt_blob, dev_of_offset(dev),
120 static int ich6_gpio_probe(struct udevice *dev)
122 struct ich6_bank_plat *plat = dev_get_plat(dev);
123 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
124 struct ich6_bank_priv *bank = dev_get_priv(dev);
127 uc_priv->gpio_count = GPIO_PER_BANK;
128 uc_priv->bank_name = plat->bank_name;
129 bank->use_sel = plat->base_addr;
130 bank->io_sel = plat->base_addr + 4;
131 bank->lvl = plat->base_addr + 8;
133 prop = fdt_getprop(gd->fdt_blob, dev_of_offset(dev),
134 "use-lvl-write-cache", NULL);
136 bank->use_lvl_write_cache = true;
138 bank->use_lvl_write_cache = false;
139 bank->lvl_write_cache = 0;
144 static int ich6_gpio_request(struct udevice *dev, unsigned offset,
147 struct ich6_bank_priv *bank = dev_get_priv(dev);
151 * Make sure that the GPIO pin we want isn't already in use for some
152 * built-in hardware function. We have to check this for every
155 tmplong = inl(bank->use_sel);
156 if (!(tmplong & (1UL << offset))) {
157 debug("%s: gpio %d is reserved for internal use\n", __func__,
165 static int ich6_gpio_direction_input(struct udevice *dev, unsigned offset)
167 struct ich6_bank_priv *bank = dev_get_priv(dev);
169 return _ich6_gpio_set_direction(bank->io_sel, offset, 0);
172 static int ich6_gpio_direction_output(struct udevice *dev, unsigned offset,
176 struct ich6_bank_priv *bank = dev_get_priv(dev);
178 ret = _ich6_gpio_set_direction(bank->io_sel, offset, 1);
182 return _ich6_gpio_set_value(bank, offset, value);
185 static int ich6_gpio_get_value(struct udevice *dev, unsigned offset)
187 struct ich6_bank_priv *bank = dev_get_priv(dev);
191 tmplong = inl(bank->lvl);
192 if (bank->use_lvl_write_cache)
193 tmplong |= bank->lvl_write_cache;
194 r = (tmplong & (1UL << offset)) ? 1 : 0;
198 static int ich6_gpio_set_value(struct udevice *dev, unsigned offset,
201 struct ich6_bank_priv *bank = dev_get_priv(dev);
202 return _ich6_gpio_set_value(bank, offset, value);
205 static int ich6_gpio_get_function(struct udevice *dev, unsigned offset)
207 struct ich6_bank_priv *bank = dev_get_priv(dev);
208 u32 mask = 1UL << offset;
210 if (!(inl(bank->use_sel) & mask))
212 if (inl(bank->io_sel) & mask)
218 static const struct dm_gpio_ops gpio_ich6_ops = {
219 .request = ich6_gpio_request,
220 .direction_input = ich6_gpio_direction_input,
221 .direction_output = ich6_gpio_direction_output,
222 .get_value = ich6_gpio_get_value,
223 .set_value = ich6_gpio_set_value,
224 .get_function = ich6_gpio_get_function,
227 static const struct udevice_id intel_ich6_gpio_ids[] = {
228 { .compatible = "intel,ich6-gpio" },
232 U_BOOT_DRIVER(gpio_ich6) = {
235 .of_match = intel_ich6_gpio_ids,
236 .ops = &gpio_ich6_ops,
237 .of_to_plat = gpio_ich6_of_to_plat,
238 .probe = ich6_gpio_probe,
239 .priv_auto = sizeof(struct ich6_bank_priv),
240 .plat_auto = sizeof(struct ich6_bank_plat),