blob: b7e379ab97984cbcffd1c4e9bb87350510f69151 [file] [log] [blame]
Bill Richardson55ae10f2012-10-20 11:44:34 +00001/*
2 * Copyright (c) 2012 The Chromium OS Authors.
Wolfgang Denk1a459662013-07-08 09:37:19 +02003 * SPDX-License-Identifier: GPL-2.0+
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
29#include <common.h>
Simon Glass74141122014-10-10 07:49:18 -060030#include <dm.h>
31#include <errno.h>
32#include <fdtdec.h>
Bin Meng3ddc1c72016-02-01 01:40:47 -080033#include <pch.h>
Bill Richardson55ae10f2012-10-20 11:44:34 +000034#include <pci.h>
Simon Glass15cf75e2016-03-11 22:07:14 -070035#include <syscon.h>
36#include <asm/cpu.h>
Bill Richardson55ae10f2012-10-20 11:44:34 +000037#include <asm/gpio.h>
38#include <asm/io.h>
Simon Glass1b4f25f2014-11-12 22:42:24 -070039#include <asm/pci.h>
Bill Richardson55ae10f2012-10-20 11:44:34 +000040
Simon Glass8b097912015-07-31 09:31:31 -060041DECLARE_GLOBAL_DATA_PTR;
42
Simon Glass74141122014-10-10 07:49:18 -060043#define GPIO_PER_BANK 32
44
Simon Glass74141122014-10-10 07:49:18 -060045struct ich6_bank_priv {
46 /* These are I/O addresses */
Bin Mengb71eec32014-12-17 15:50:38 +080047 uint16_t use_sel;
48 uint16_t io_sel;
49 uint16_t lvl;
Bill Richardson57be9172012-10-20 11:44:36 +000050};
Bill Richardson55ae10f2012-10-20 11:44:34 +000051
Gabriel Huau5318f182015-05-25 22:27:37 -070052#define GPIO_USESEL_OFFSET(x) (x)
53#define GPIO_IOSEL_OFFSET(x) (x + 4)
54#define GPIO_LVL_OFFSET(x) (x + 8)
55
Gabriel Huau5318f182015-05-25 22:27:37 -070056static int _ich6_gpio_set_value(uint16_t base, unsigned offset, int value)
57{
58 u32 val;
59
60 val = inl(base);
61 if (value)
62 val |= (1UL << offset);
63 else
64 val &= ~(1UL << offset);
65 outl(val, base);
66
67 return 0;
68}
69
Gabriel Huau5318f182015-05-25 22:27:37 -070070static int _ich6_gpio_set_direction(uint16_t base, unsigned offset, int dir)
71{
72 u32 val;
73
74 if (!dir) {
75 val = inl(base);
76 val |= (1UL << offset);
77 outl(val, base);
78 } else {
79 val = inl(base);
80 val &= ~(1UL << offset);
81 outl(val, base);
82 }
83
84 return 0;
85}
86
Gabriel Huau5318f182015-05-25 22:27:37 -070087static int gpio_ich6_ofdata_to_platdata(struct udevice *dev)
88{
89 struct ich6_bank_platdata *plat = dev_get_platdata(dev);
Bin Meng3ddc1c72016-02-01 01:40:47 -080090 u32 gpiobase;
Gabriel Huau5318f182015-05-25 22:27:37 -070091 int offset;
Bin Meng3ddc1c72016-02-01 01:40:47 -080092 int ret;
Gabriel Huau5318f182015-05-25 22:27:37 -070093
Bin Meng3ddc1c72016-02-01 01:40:47 -080094 ret = pch_get_gpio_base(dev->parent, &gpiobase);
95 if (ret)
96 return ret;
97
Simon Glass74141122014-10-10 07:49:18 -060098 offset = fdtdec_get_int(gd->fdt_blob, dev->of_offset, "reg", -1);
99 if (offset == -1) {
100 debug("%s: Invalid register offset %d\n", __func__, offset);
101 return -EINVAL;
102 }
Simon Glassd6d50db2016-03-06 19:28:13 -0700103 plat->offset = offset;
Simon Glass74141122014-10-10 07:49:18 -0600104 plat->base_addr = gpiobase + offset;
105 plat->bank_name = fdt_getprop(gd->fdt_blob, dev->of_offset,
106 "bank-name", NULL);
Bill Richardson55ae10f2012-10-20 11:44:34 +0000107
Bill Richardson55ae10f2012-10-20 11:44:34 +0000108 return 0;
109}
110
Simon Glass1b4f25f2014-11-12 22:42:24 -0700111static int ich6_gpio_probe(struct udevice *dev)
Bill Richardson55ae10f2012-10-20 11:44:34 +0000112{
Simon Glass74141122014-10-10 07:49:18 -0600113 struct ich6_bank_platdata *plat = dev_get_platdata(dev);
Simon Glasse564f052015-03-05 12:25:20 -0700114 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
Simon Glass74141122014-10-10 07:49:18 -0600115 struct ich6_bank_priv *bank = dev_get_priv(dev);
Simon Glass15cf75e2016-03-11 22:07:14 -0700116 struct udevice *pinctrl;
Simon Glass74141122014-10-10 07:49:18 -0600117
Simon Glass15cf75e2016-03-11 22:07:14 -0700118 /* Set up pin control if available */
119 syscon_get_by_driver_data(X86_SYSCON_PINCONF, &pinctrl);
Bin Meng27955732014-12-12 21:05:23 +0800120
Simon Glass74141122014-10-10 07:49:18 -0600121 uc_priv->gpio_count = GPIO_PER_BANK;
122 uc_priv->bank_name = plat->bank_name;
123 bank->use_sel = plat->base_addr;
124 bank->io_sel = plat->base_addr + 4;
125 bank->lvl = plat->base_addr + 8;
126
127 return 0;
128}
129
Simon Glass1b4f25f2014-11-12 22:42:24 -0700130static int ich6_gpio_request(struct udevice *dev, unsigned offset,
131 const char *label)
Simon Glass74141122014-10-10 07:49:18 -0600132{
133 struct ich6_bank_priv *bank = dev_get_priv(dev);
Bill Richardson55ae10f2012-10-20 11:44:34 +0000134 u32 tmplong;
Bill Richardson55ae10f2012-10-20 11:44:34 +0000135
136 /*
137 * Make sure that the GPIO pin we want isn't already in use for some
138 * built-in hardware function. We have to check this for every
139 * requested pin.
140 */
Simon Glass74141122014-10-10 07:49:18 -0600141 tmplong = inl(bank->use_sel);
142 if (!(tmplong & (1UL << offset))) {
Bill Richardson57be9172012-10-20 11:44:36 +0000143 debug("%s: gpio %d is reserved for internal use\n", __func__,
Simon Glass74141122014-10-10 07:49:18 -0600144 offset);
145 return -EPERM;
Bill Richardson55ae10f2012-10-20 11:44:34 +0000146 }
147
Bill Richardson55ae10f2012-10-20 11:44:34 +0000148 return 0;
149}
150
Simon Glass74141122014-10-10 07:49:18 -0600151static int ich6_gpio_direction_input(struct udevice *dev, unsigned offset)
Bill Richardson55ae10f2012-10-20 11:44:34 +0000152{
Simon Glass74141122014-10-10 07:49:18 -0600153 struct ich6_bank_priv *bank = dev_get_priv(dev);
Bill Richardson57be9172012-10-20 11:44:36 +0000154
Simon Glasse7cc0b62015-08-22 15:58:58 -0600155 return _ich6_gpio_set_direction(bank->io_sel, offset, 0);
Bill Richardson55ae10f2012-10-20 11:44:34 +0000156}
157
Simon Glass74141122014-10-10 07:49:18 -0600158static int ich6_gpio_direction_output(struct udevice *dev, unsigned offset,
159 int value)
Bill Richardson55ae10f2012-10-20 11:44:34 +0000160{
Gabriel Huau5318f182015-05-25 22:27:37 -0700161 int ret;
Simon Glass74141122014-10-10 07:49:18 -0600162 struct ich6_bank_priv *bank = dev_get_priv(dev);
Bill Richardson55ae10f2012-10-20 11:44:34 +0000163
Simon Glasse7cc0b62015-08-22 15:58:58 -0600164 ret = _ich6_gpio_set_direction(bank->io_sel, offset, 1);
Gabriel Huau5318f182015-05-25 22:27:37 -0700165 if (ret)
166 return ret;
Axel Lin0a547452014-12-07 12:48:27 +0800167
Gabriel Huau5318f182015-05-25 22:27:37 -0700168 return _ich6_gpio_set_value(bank->lvl, offset, value);
Bill Richardson55ae10f2012-10-20 11:44:34 +0000169}
170
Simon Glass74141122014-10-10 07:49:18 -0600171static int ich6_gpio_get_value(struct udevice *dev, unsigned offset)
Bill Richardson55ae10f2012-10-20 11:44:34 +0000172{
Simon Glass74141122014-10-10 07:49:18 -0600173 struct ich6_bank_priv *bank = dev_get_priv(dev);
Bill Richardson55ae10f2012-10-20 11:44:34 +0000174 u32 tmplong;
Bill Richardson57be9172012-10-20 11:44:36 +0000175 int r;
Bill Richardson55ae10f2012-10-20 11:44:34 +0000176
Simon Glass74141122014-10-10 07:49:18 -0600177 tmplong = inl(bank->lvl);
178 r = (tmplong & (1UL << offset)) ? 1 : 0;
Bill Richardson57be9172012-10-20 11:44:36 +0000179 return r;
Bill Richardson55ae10f2012-10-20 11:44:34 +0000180}
181
Simon Glass74141122014-10-10 07:49:18 -0600182static int ich6_gpio_set_value(struct udevice *dev, unsigned offset,
183 int value)
Bill Richardson55ae10f2012-10-20 11:44:34 +0000184{
Simon Glass74141122014-10-10 07:49:18 -0600185 struct ich6_bank_priv *bank = dev_get_priv(dev);
Gabriel Huau5318f182015-05-25 22:27:37 -0700186 return _ich6_gpio_set_value(bank->lvl, offset, value);
Bill Richardson55ae10f2012-10-20 11:44:34 +0000187}
Simon Glass74141122014-10-10 07:49:18 -0600188
189static int ich6_gpio_get_function(struct udevice *dev, unsigned offset)
190{
191 struct ich6_bank_priv *bank = dev_get_priv(dev);
192 u32 mask = 1UL << offset;
193
194 if (!(inl(bank->use_sel) & mask))
195 return GPIOF_FUNC;
196 if (inl(bank->io_sel) & mask)
197 return GPIOF_INPUT;
198 else
199 return GPIOF_OUTPUT;
200}
201
202static const struct dm_gpio_ops gpio_ich6_ops = {
203 .request = ich6_gpio_request,
204 .direction_input = ich6_gpio_direction_input,
205 .direction_output = ich6_gpio_direction_output,
206 .get_value = ich6_gpio_get_value,
207 .set_value = ich6_gpio_set_value,
208 .get_function = ich6_gpio_get_function,
209};
210
211static const struct udevice_id intel_ich6_gpio_ids[] = {
212 { .compatible = "intel,ich6-gpio" },
213 { }
214};
215
216U_BOOT_DRIVER(gpio_ich6) = {
217 .name = "gpio_ich6",
218 .id = UCLASS_GPIO,
219 .of_match = intel_ich6_gpio_ids,
220 .ops = &gpio_ich6_ops,
221 .ofdata_to_platdata = gpio_ich6_ofdata_to_platdata,
222 .probe = ich6_gpio_probe,
223 .priv_auto_alloc_size = sizeof(struct ich6_bank_priv),
224 .platdata_auto_alloc_size = sizeof(struct ich6_bank_platdata),
225};