blob: 2ed0d0bea9a59738698f33ac47f5cdb0ffa3f6e5 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Bill Richardson55ae10f2012-10-20 11:44:34 +00002/*
3 * Copyright (c) 2012 The Chromium OS Authors.
Bill Richardson55ae10f2012-10-20 11:44:34 +00004 */
5
6/*
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.
14 *
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
Bill Richardson57be9172012-10-20 11:44:36 +000019 *
20 *
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.
Bill Richardson55ae10f2012-10-20 11:44:34 +000027 */
28
Simon Glasse2e7de82023-07-15 21:39:11 -060029#define LOG_CATEGORY UCLASS_GPIO
30
Bill Richardson55ae10f2012-10-20 11:44:34 +000031#include <common.h>
Simon Glass74141122014-10-10 07:49:18 -060032#include <dm.h>
33#include <errno.h>
34#include <fdtdec.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060035#include <log.h>
Bin Meng3ddc1c72016-02-01 01:40:47 -080036#include <pch.h>
Bill Richardson55ae10f2012-10-20 11:44:34 +000037#include <pci.h>
Simon Glass15cf75e2016-03-11 22:07:14 -070038#include <asm/cpu.h>
Simon Glass401d1c42020-10-30 21:38:53 -060039#include <asm/global_data.h>
Bill Richardson55ae10f2012-10-20 11:44:34 +000040#include <asm/gpio.h>
41#include <asm/io.h>
Simon Glass1b4f25f2014-11-12 22:42:24 -070042#include <asm/pci.h>
Bill Richardson55ae10f2012-10-20 11:44:34 +000043
Simon Glass8b097912015-07-31 09:31:31 -060044DECLARE_GLOBAL_DATA_PTR;
45
Simon Glass74141122014-10-10 07:49:18 -060046#define GPIO_PER_BANK 32
47
Simon Glass74141122014-10-10 07:49:18 -060048struct ich6_bank_priv {
49 /* These are I/O addresses */
Bin Mengb71eec32014-12-17 15:50:38 +080050 uint16_t use_sel;
51 uint16_t io_sel;
52 uint16_t lvl;
Bin Meng770ee012017-05-07 19:52:29 -070053 u32 lvl_write_cache;
54 bool use_lvl_write_cache;
Bill Richardson57be9172012-10-20 11:44:36 +000055};
Bill Richardson55ae10f2012-10-20 11:44:34 +000056
Gabriel Huau5318f182015-05-25 22:27:37 -070057#define GPIO_USESEL_OFFSET(x) (x)
58#define GPIO_IOSEL_OFFSET(x) (x + 4)
59#define GPIO_LVL_OFFSET(x) (x + 8)
60
Bin Meng770ee012017-05-07 19:52:29 -070061static int _ich6_gpio_set_value(struct ich6_bank_priv *bank, unsigned offset,
62 int value)
Gabriel Huau5318f182015-05-25 22:27:37 -070063{
64 u32 val;
65
Bin Meng770ee012017-05-07 19:52:29 -070066 if (bank->use_lvl_write_cache)
67 val = bank->lvl_write_cache;
68 else
69 val = inl(bank->lvl);
70
Gabriel Huau5318f182015-05-25 22:27:37 -070071 if (value)
72 val |= (1UL << offset);
73 else
74 val &= ~(1UL << offset);
Bin Meng770ee012017-05-07 19:52:29 -070075 outl(val, bank->lvl);
76 if (bank->use_lvl_write_cache)
77 bank->lvl_write_cache = val;
Gabriel Huau5318f182015-05-25 22:27:37 -070078
79 return 0;
80}
81
Gabriel Huau5318f182015-05-25 22:27:37 -070082static int _ich6_gpio_set_direction(uint16_t base, unsigned offset, int dir)
83{
84 u32 val;
85
86 if (!dir) {
87 val = inl(base);
88 val |= (1UL << offset);
89 outl(val, base);
90 } else {
91 val = inl(base);
92 val &= ~(1UL << offset);
93 outl(val, base);
94 }
95
96 return 0;
97}
98
Simon Glassd1998a92020-12-03 16:55:21 -070099static int gpio_ich6_of_to_plat(struct udevice *dev)
Gabriel Huau5318f182015-05-25 22:27:37 -0700100{
Simon Glass8a8d24b2020-12-03 16:55:23 -0700101 struct ich6_bank_plat *plat = dev_get_plat(dev);
Bin Meng3ddc1c72016-02-01 01:40:47 -0800102 u32 gpiobase;
Gabriel Huau5318f182015-05-25 22:27:37 -0700103 int offset;
Bin Meng3ddc1c72016-02-01 01:40:47 -0800104 int ret;
Gabriel Huau5318f182015-05-25 22:27:37 -0700105
Bin Meng3ddc1c72016-02-01 01:40:47 -0800106 ret = pch_get_gpio_base(dev->parent, &gpiobase);
107 if (ret)
108 return ret;
109
Simon Glasse160f7d2017-01-17 16:52:55 -0700110 offset = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev), "reg", -1);
Simon Glass74141122014-10-10 07:49:18 -0600111 if (offset == -1) {
112 debug("%s: Invalid register offset %d\n", __func__, offset);
113 return -EINVAL;
114 }
Simon Glassd6d50db2016-03-06 19:28:13 -0700115 plat->offset = offset;
Simon Glass74141122014-10-10 07:49:18 -0600116 plat->base_addr = gpiobase + offset;
Simon Glasse160f7d2017-01-17 16:52:55 -0700117 plat->bank_name = fdt_getprop(gd->fdt_blob, dev_of_offset(dev),
Simon Glass74141122014-10-10 07:49:18 -0600118 "bank-name", NULL);
Bill Richardson55ae10f2012-10-20 11:44:34 +0000119
Bill Richardson55ae10f2012-10-20 11:44:34 +0000120 return 0;
121}
122
Simon Glass1b4f25f2014-11-12 22:42:24 -0700123static int ich6_gpio_probe(struct udevice *dev)
Bill Richardson55ae10f2012-10-20 11:44:34 +0000124{
Simon Glass8a8d24b2020-12-03 16:55:23 -0700125 struct ich6_bank_plat *plat = dev_get_plat(dev);
Simon Glasse564f052015-03-05 12:25:20 -0700126 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
Simon Glass74141122014-10-10 07:49:18 -0600127 struct ich6_bank_priv *bank = dev_get_priv(dev);
Bin Meng770ee012017-05-07 19:52:29 -0700128 const void *prop;
Bin Meng27955732014-12-12 21:05:23 +0800129
Simon Glass74141122014-10-10 07:49:18 -0600130 uc_priv->gpio_count = GPIO_PER_BANK;
131 uc_priv->bank_name = plat->bank_name;
132 bank->use_sel = plat->base_addr;
133 bank->io_sel = plat->base_addr + 4;
134 bank->lvl = plat->base_addr + 8;
135
Simon Glassda409cc2017-05-17 17:18:09 -0600136 prop = fdt_getprop(gd->fdt_blob, dev_of_offset(dev),
Bin Meng770ee012017-05-07 19:52:29 -0700137 "use-lvl-write-cache", NULL);
138 if (prop)
139 bank->use_lvl_write_cache = true;
140 else
141 bank->use_lvl_write_cache = false;
142 bank->lvl_write_cache = 0;
143
Simon Glass74141122014-10-10 07:49:18 -0600144 return 0;
145}
146
Simon Glass1b4f25f2014-11-12 22:42:24 -0700147static int ich6_gpio_request(struct udevice *dev, unsigned offset,
148 const char *label)
Simon Glass74141122014-10-10 07:49:18 -0600149{
150 struct ich6_bank_priv *bank = dev_get_priv(dev);
Bill Richardson55ae10f2012-10-20 11:44:34 +0000151 u32 tmplong;
Bill Richardson55ae10f2012-10-20 11:44:34 +0000152
153 /*
154 * Make sure that the GPIO pin we want isn't already in use for some
155 * built-in hardware function. We have to check this for every
156 * requested pin.
157 */
Simon Glass74141122014-10-10 07:49:18 -0600158 tmplong = inl(bank->use_sel);
159 if (!(tmplong & (1UL << offset))) {
Simon Glasse2e7de82023-07-15 21:39:11 -0600160 log_debug("gpio %d is reserved for internal use\n", offset);
Simon Glass74141122014-10-10 07:49:18 -0600161 return -EPERM;
Bill Richardson55ae10f2012-10-20 11:44:34 +0000162 }
163
Bill Richardson55ae10f2012-10-20 11:44:34 +0000164 return 0;
165}
166
Simon Glass74141122014-10-10 07:49:18 -0600167static int ich6_gpio_direction_input(struct udevice *dev, unsigned offset)
Bill Richardson55ae10f2012-10-20 11:44:34 +0000168{
Simon Glass74141122014-10-10 07:49:18 -0600169 struct ich6_bank_priv *bank = dev_get_priv(dev);
Bill Richardson57be9172012-10-20 11:44:36 +0000170
Simon Glasse7cc0b62015-08-22 15:58:58 -0600171 return _ich6_gpio_set_direction(bank->io_sel, offset, 0);
Bill Richardson55ae10f2012-10-20 11:44:34 +0000172}
173
Simon Glass74141122014-10-10 07:49:18 -0600174static int ich6_gpio_direction_output(struct udevice *dev, unsigned offset,
175 int value)
Bill Richardson55ae10f2012-10-20 11:44:34 +0000176{
Gabriel Huau5318f182015-05-25 22:27:37 -0700177 int ret;
Simon Glass74141122014-10-10 07:49:18 -0600178 struct ich6_bank_priv *bank = dev_get_priv(dev);
Bill Richardson55ae10f2012-10-20 11:44:34 +0000179
Simon Glasse7cc0b62015-08-22 15:58:58 -0600180 ret = _ich6_gpio_set_direction(bank->io_sel, offset, 1);
Gabriel Huau5318f182015-05-25 22:27:37 -0700181 if (ret)
182 return ret;
Axel Lin0a547452014-12-07 12:48:27 +0800183
Bin Meng770ee012017-05-07 19:52:29 -0700184 return _ich6_gpio_set_value(bank, offset, value);
Bill Richardson55ae10f2012-10-20 11:44:34 +0000185}
186
Simon Glass74141122014-10-10 07:49:18 -0600187static int ich6_gpio_get_value(struct udevice *dev, unsigned offset)
Bill Richardson55ae10f2012-10-20 11:44:34 +0000188{
Simon Glass74141122014-10-10 07:49:18 -0600189 struct ich6_bank_priv *bank = dev_get_priv(dev);
Bill Richardson55ae10f2012-10-20 11:44:34 +0000190 u32 tmplong;
Bill Richardson57be9172012-10-20 11:44:36 +0000191 int r;
Bill Richardson55ae10f2012-10-20 11:44:34 +0000192
Simon Glass74141122014-10-10 07:49:18 -0600193 tmplong = inl(bank->lvl);
Bin Meng770ee012017-05-07 19:52:29 -0700194 if (bank->use_lvl_write_cache)
195 tmplong |= bank->lvl_write_cache;
Simon Glass74141122014-10-10 07:49:18 -0600196 r = (tmplong & (1UL << offset)) ? 1 : 0;
Bill Richardson57be9172012-10-20 11:44:36 +0000197 return r;
Bill Richardson55ae10f2012-10-20 11:44:34 +0000198}
199
Simon Glass74141122014-10-10 07:49:18 -0600200static int ich6_gpio_set_value(struct udevice *dev, unsigned offset,
201 int value)
Bill Richardson55ae10f2012-10-20 11:44:34 +0000202{
Simon Glass74141122014-10-10 07:49:18 -0600203 struct ich6_bank_priv *bank = dev_get_priv(dev);
Bin Meng770ee012017-05-07 19:52:29 -0700204 return _ich6_gpio_set_value(bank, offset, value);
Bill Richardson55ae10f2012-10-20 11:44:34 +0000205}
Simon Glass74141122014-10-10 07:49:18 -0600206
207static int ich6_gpio_get_function(struct udevice *dev, unsigned offset)
208{
209 struct ich6_bank_priv *bank = dev_get_priv(dev);
210 u32 mask = 1UL << offset;
211
212 if (!(inl(bank->use_sel) & mask))
213 return GPIOF_FUNC;
214 if (inl(bank->io_sel) & mask)
215 return GPIOF_INPUT;
216 else
217 return GPIOF_OUTPUT;
218}
219
220static const struct dm_gpio_ops gpio_ich6_ops = {
221 .request = ich6_gpio_request,
222 .direction_input = ich6_gpio_direction_input,
223 .direction_output = ich6_gpio_direction_output,
224 .get_value = ich6_gpio_get_value,
225 .set_value = ich6_gpio_set_value,
226 .get_function = ich6_gpio_get_function,
227};
228
229static const struct udevice_id intel_ich6_gpio_ids[] = {
230 { .compatible = "intel,ich6-gpio" },
231 { }
232};
233
234U_BOOT_DRIVER(gpio_ich6) = {
235 .name = "gpio_ich6",
236 .id = UCLASS_GPIO,
237 .of_match = intel_ich6_gpio_ids,
238 .ops = &gpio_ich6_ops,
Simon Glassd1998a92020-12-03 16:55:21 -0700239 .of_to_plat = gpio_ich6_of_to_plat,
Simon Glass74141122014-10-10 07:49:18 -0600240 .probe = ich6_gpio_probe,
Simon Glass41575d82020-12-03 16:55:17 -0700241 .priv_auto = sizeof(struct ich6_bank_priv),
Simon Glass8a8d24b2020-12-03 16:55:23 -0700242 .plat_auto = sizeof(struct ich6_bank_plat),
Simon Glass74141122014-10-10 07:49:18 -0600243};