2012-10-20 11:44:34 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2012 The Chromium OS Authors.
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2012-10-20 11:44:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is a GPIO driver for Intel ICH6 and later. The x86 GPIOs are accessed
|
|
|
|
* through the PCI bus. Each PCI device has 256 bytes of configuration space,
|
|
|
|
* consisting of a standard header and a device-specific set of registers. PCI
|
|
|
|
* bus 0, device 31, function 0 gives us access to the chipset GPIOs (among
|
|
|
|
* other things). Within the PCI configuration space, the GPIOBASE register
|
|
|
|
* tells us where in the device's I/O region we can find more registers to
|
|
|
|
* actually access the GPIOs.
|
|
|
|
*
|
|
|
|
* PCI bus/device/function 0:1f:0 => PCI config registers
|
|
|
|
* PCI config register "GPIOBASE"
|
|
|
|
* PCI I/O space + [GPIOBASE] => start of GPIO registers
|
|
|
|
* GPIO registers => gpio pin function, direction, value
|
2012-10-20 11:44:36 +00:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* Danger Will Robinson! Bank 0 (GPIOs 0-31) seems to be fairly stable. Most
|
|
|
|
* ICH versions have more, but the decoding the matrix that describes them is
|
|
|
|
* absurdly complex and constantly changing. We'll provide Bank 1 and Bank 2,
|
|
|
|
* but they will ONLY work for certain unspecified chipsets because the offset
|
|
|
|
* from GPIOBASE changes randomly. Even then, many GPIOs are unimplemented or
|
|
|
|
* reserved or subject to arcane restrictions.
|
2012-10-20 11:44:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2014-10-10 13:49:18 +00:00
|
|
|
#include <dm.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fdtdec.h>
|
2012-10-20 11:44:34 +00:00
|
|
|
#include <pci.h>
|
|
|
|
#include <asm/gpio.h>
|
|
|
|
#include <asm/io.h>
|
2014-11-13 05:42:24 +00:00
|
|
|
#include <asm/pci.h>
|
|
|
|
#ifdef CONFIG_X86_RESET_VECTOR
|
|
|
|
#include <asm/arch/pch.h>
|
|
|
|
#define SUPPORT_GPIO_SETUP
|
|
|
|
#endif
|
2012-10-20 11:44:34 +00:00
|
|
|
|
2014-10-10 13:49:18 +00:00
|
|
|
#define GPIO_PER_BANK 32
|
|
|
|
|
2012-10-20 11:44:34 +00:00
|
|
|
/* Where in config space is the register that points to the GPIO registers? */
|
|
|
|
#define PCI_CFG_GPIOBASE 0x48
|
|
|
|
|
2014-10-10 13:49:18 +00:00
|
|
|
struct ich6_bank_priv {
|
|
|
|
/* These are I/O addresses */
|
|
|
|
uint32_t use_sel;
|
|
|
|
uint32_t io_sel;
|
|
|
|
uint32_t lvl;
|
2012-10-20 11:44:36 +00:00
|
|
|
};
|
|
|
|
|
2014-11-13 05:42:24 +00:00
|
|
|
#ifdef SUPPORT_GPIO_SETUP
|
|
|
|
static void setup_pch_gpios(const struct pch_gpio_map *gpio)
|
|
|
|
{
|
|
|
|
u16 gpiobase = pci_read_config16(PCH_LPC_DEV, GPIO_BASE) & 0xfffc;
|
|
|
|
|
|
|
|
/* GPIO Set 1 */
|
|
|
|
if (gpio->set1.level)
|
|
|
|
outl(*((u32 *)gpio->set1.level), gpiobase + GP_LVL);
|
|
|
|
if (gpio->set1.mode)
|
|
|
|
outl(*((u32 *)gpio->set1.mode), gpiobase + GPIO_USE_SEL);
|
|
|
|
if (gpio->set1.direction)
|
|
|
|
outl(*((u32 *)gpio->set1.direction), gpiobase + GP_IO_SEL);
|
|
|
|
if (gpio->set1.reset)
|
|
|
|
outl(*((u32 *)gpio->set1.reset), gpiobase + GP_RST_SEL1);
|
|
|
|
if (gpio->set1.invert)
|
|
|
|
outl(*((u32 *)gpio->set1.invert), gpiobase + GPI_INV);
|
|
|
|
if (gpio->set1.blink)
|
|
|
|
outl(*((u32 *)gpio->set1.blink), gpiobase + GPO_BLINK);
|
|
|
|
|
|
|
|
/* GPIO Set 2 */
|
|
|
|
if (gpio->set2.level)
|
|
|
|
outl(*((u32 *)gpio->set2.level), gpiobase + GP_LVL2);
|
|
|
|
if (gpio->set2.mode)
|
|
|
|
outl(*((u32 *)gpio->set2.mode), gpiobase + GPIO_USE_SEL2);
|
|
|
|
if (gpio->set2.direction)
|
|
|
|
outl(*((u32 *)gpio->set2.direction), gpiobase + GP_IO_SEL2);
|
|
|
|
if (gpio->set2.reset)
|
|
|
|
outl(*((u32 *)gpio->set2.reset), gpiobase + GP_RST_SEL2);
|
|
|
|
|
|
|
|
/* GPIO Set 3 */
|
|
|
|
if (gpio->set3.level)
|
|
|
|
outl(*((u32 *)gpio->set3.level), gpiobase + GP_LVL3);
|
|
|
|
if (gpio->set3.mode)
|
|
|
|
outl(*((u32 *)gpio->set3.mode), gpiobase + GPIO_USE_SEL3);
|
|
|
|
if (gpio->set3.direction)
|
|
|
|
outl(*((u32 *)gpio->set3.direction), gpiobase + GP_IO_SEL3);
|
|
|
|
if (gpio->set3.reset)
|
|
|
|
outl(*((u32 *)gpio->set3.reset), gpiobase + GP_RST_SEL3);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO: Move this to device tree, or platform data */
|
|
|
|
void ich_gpio_set_gpio_map(const struct pch_gpio_map *map)
|
|
|
|
{
|
|
|
|
gd->arch.gpio_map = map;
|
|
|
|
}
|
|
|
|
#endif /* SUPPORT_GPIO_SETUP */
|
|
|
|
|
2014-10-10 13:49:18 +00:00
|
|
|
static int gpio_ich6_ofdata_to_platdata(struct udevice *dev)
|
2012-10-20 11:44:34 +00:00
|
|
|
{
|
2014-10-10 13:49:18 +00:00
|
|
|
struct ich6_bank_platdata *plat = dev_get_platdata(dev);
|
|
|
|
pci_dev_t pci_dev; /* handle for 0:1f:0 */
|
2012-10-20 11:44:34 +00:00
|
|
|
u8 tmpbyte;
|
|
|
|
u16 tmpword;
|
|
|
|
u32 tmplong;
|
2014-10-10 13:49:18 +00:00
|
|
|
u32 gpiobase;
|
|
|
|
int offset;
|
2012-10-20 11:44:34 +00:00
|
|
|
|
|
|
|
/* Where should it be? */
|
2014-10-10 13:49:18 +00:00
|
|
|
pci_dev = PCI_BDF(0, 0x1f, 0);
|
2012-10-20 11:44:34 +00:00
|
|
|
|
|
|
|
/* Is the device present? */
|
2014-11-13 05:42:24 +00:00
|
|
|
tmpword = pci_read_config16(pci_dev, PCI_VENDOR_ID);
|
2012-10-20 11:44:34 +00:00
|
|
|
if (tmpword != PCI_VENDOR_ID_INTEL) {
|
|
|
|
debug("%s: wrong VendorID\n", __func__);
|
2014-10-10 13:49:18 +00:00
|
|
|
return -ENODEV;
|
2012-10-20 11:44:34 +00:00
|
|
|
}
|
2012-10-20 11:44:36 +00:00
|
|
|
|
2014-11-13 05:42:24 +00:00
|
|
|
tmpword = pci_read_config16(pci_dev, PCI_DEVICE_ID);
|
2012-10-20 11:44:36 +00:00
|
|
|
debug("Found %04x:%04x\n", PCI_VENDOR_ID_INTEL, tmpword);
|
2012-10-20 11:44:34 +00:00
|
|
|
/*
|
2012-10-20 11:44:36 +00:00
|
|
|
* We'd like to validate the Device ID too, but pretty much any
|
2012-10-20 11:44:34 +00:00
|
|
|
* value is either a) correct with slight differences, or b)
|
2012-10-20 11:44:36 +00:00
|
|
|
* correct but undocumented. We'll have to check a bunch of other
|
|
|
|
* things instead...
|
2012-10-20 11:44:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* I/O should already be enabled (it's a RO bit). */
|
2014-11-13 05:42:24 +00:00
|
|
|
tmpword = pci_read_config16(pci_dev, PCI_COMMAND);
|
2012-10-20 11:44:34 +00:00
|
|
|
if (!(tmpword & PCI_COMMAND_IO)) {
|
|
|
|
debug("%s: device IO not enabled\n", __func__);
|
2014-10-10 13:49:18 +00:00
|
|
|
return -ENODEV;
|
2012-10-20 11:44:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Header Type must be normal (bits 6-0 only; see spec.) */
|
2014-11-13 05:42:24 +00:00
|
|
|
tmpbyte = pci_read_config8(pci_dev, PCI_HEADER_TYPE);
|
2012-10-20 11:44:34 +00:00
|
|
|
if ((tmpbyte & 0x7f) != PCI_HEADER_TYPE_NORMAL) {
|
|
|
|
debug("%s: invalid Header type\n", __func__);
|
2014-10-10 13:49:18 +00:00
|
|
|
return -ENODEV;
|
2012-10-20 11:44:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Base Class must be a bridge device */
|
2014-11-13 05:42:24 +00:00
|
|
|
tmpbyte = pci_read_config8(pci_dev, PCI_CLASS_CODE);
|
2012-10-20 11:44:34 +00:00
|
|
|
if (tmpbyte != PCI_CLASS_CODE_BRIDGE) {
|
|
|
|
debug("%s: invalid class\n", __func__);
|
2014-10-10 13:49:18 +00:00
|
|
|
return -ENODEV;
|
2012-10-20 11:44:34 +00:00
|
|
|
}
|
|
|
|
/* Sub Class must be ISA */
|
2014-11-13 05:42:24 +00:00
|
|
|
tmpbyte = pci_read_config8(pci_dev, PCI_CLASS_SUB_CODE);
|
2012-10-20 11:44:34 +00:00
|
|
|
if (tmpbyte != PCI_CLASS_SUB_CODE_BRIDGE_ISA) {
|
|
|
|
debug("%s: invalid subclass\n", __func__);
|
2014-10-10 13:49:18 +00:00
|
|
|
return -ENODEV;
|
2012-10-20 11:44:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Programming Interface must be 0x00 (no others exist) */
|
2014-11-13 05:42:24 +00:00
|
|
|
tmpbyte = pci_read_config8(pci_dev, PCI_CLASS_PROG);
|
2012-10-20 11:44:34 +00:00
|
|
|
if (tmpbyte != 0x00) {
|
|
|
|
debug("%s: invalid interface type\n", __func__);
|
2014-10-10 13:49:18 +00:00
|
|
|
return -ENODEV;
|
2012-10-20 11:44:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* GPIOBASE moved to its current offset with ICH6, but prior to
|
|
|
|
* that it was unused (or undocumented). Check that it looks
|
|
|
|
* okay: not all ones or zeros, and mapped to I/O space (bit 0).
|
|
|
|
*/
|
2014-11-13 05:42:24 +00:00
|
|
|
tmplong = pci_read_config32(pci_dev, PCI_CFG_GPIOBASE);
|
2012-10-20 11:44:34 +00:00
|
|
|
if (tmplong == 0x00000000 || tmplong == 0xffffffff ||
|
|
|
|
!(tmplong & 0x00000001)) {
|
|
|
|
debug("%s: unexpected GPIOBASE value\n", __func__);
|
2014-10-10 13:49:18 +00:00
|
|
|
return -ENODEV;
|
2012-10-20 11:44:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Okay, I guess we're looking at the right device. The actual
|
|
|
|
* GPIO registers are in the PCI device's I/O space, starting
|
|
|
|
* at the offset that we just read. Bit 0 indicates that it's
|
|
|
|
* an I/O address, not a memory address, so mask that off.
|
|
|
|
*/
|
|
|
|
gpiobase = tmplong & 0xfffffffe;
|
2014-10-10 13:49:18 +00:00
|
|
|
offset = fdtdec_get_int(gd->fdt_blob, dev->of_offset, "reg", -1);
|
|
|
|
if (offset == -1) {
|
|
|
|
debug("%s: Invalid register offset %d\n", __func__, offset);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
plat->base_addr = gpiobase + offset;
|
|
|
|
plat->bank_name = fdt_getprop(gd->fdt_blob, dev->of_offset,
|
|
|
|
"bank-name", NULL);
|
2012-10-20 11:44:34 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-11-13 05:42:24 +00:00
|
|
|
static int ich6_gpio_probe(struct udevice *dev)
|
2012-10-20 11:44:34 +00:00
|
|
|
{
|
2014-10-10 13:49:18 +00:00
|
|
|
struct ich6_bank_platdata *plat = dev_get_platdata(dev);
|
|
|
|
struct gpio_dev_priv *uc_priv = dev->uclass_priv;
|
|
|
|
struct ich6_bank_priv *bank = dev_get_priv(dev);
|
|
|
|
|
2014-11-13 05:42:24 +00:00
|
|
|
#ifdef SUPPORT_GPIO_SETUP
|
|
|
|
if (gd->arch.gpio_map) {
|
|
|
|
setup_pch_gpios(gd->arch.gpio_map);
|
|
|
|
gd->arch.gpio_map = NULL;
|
|
|
|
}
|
|
|
|
#endif
|
2014-10-10 13:49:18 +00:00
|
|
|
uc_priv->gpio_count = GPIO_PER_BANK;
|
|
|
|
uc_priv->bank_name = plat->bank_name;
|
|
|
|
bank->use_sel = plat->base_addr;
|
|
|
|
bank->io_sel = plat->base_addr + 4;
|
|
|
|
bank->lvl = plat->base_addr + 8;
|
2012-10-20 11:44:34 +00:00
|
|
|
|
2014-10-10 13:49:18 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2012-10-20 11:44:34 +00:00
|
|
|
|
2014-11-13 05:42:24 +00:00
|
|
|
static int ich6_gpio_request(struct udevice *dev, unsigned offset,
|
|
|
|
const char *label)
|
2014-10-10 13:49:18 +00:00
|
|
|
{
|
|
|
|
struct ich6_bank_priv *bank = dev_get_priv(dev);
|
|
|
|
u32 tmplong;
|
2012-10-20 11:44:34 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure that the GPIO pin we want isn't already in use for some
|
|
|
|
* built-in hardware function. We have to check this for every
|
|
|
|
* requested pin.
|
|
|
|
*/
|
2014-10-10 13:49:18 +00:00
|
|
|
tmplong = inl(bank->use_sel);
|
|
|
|
if (!(tmplong & (1UL << offset))) {
|
2012-10-20 11:44:36 +00:00
|
|
|
debug("%s: gpio %d is reserved for internal use\n", __func__,
|
2014-10-10 13:49:18 +00:00
|
|
|
offset);
|
|
|
|
return -EPERM;
|
2012-10-20 11:44:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-10-10 13:49:18 +00:00
|
|
|
static int ich6_gpio_direction_input(struct udevice *dev, unsigned offset)
|
2012-10-20 11:44:34 +00:00
|
|
|
{
|
2014-10-10 13:49:18 +00:00
|
|
|
struct ich6_bank_priv *bank = dev_get_priv(dev);
|
2012-10-20 11:44:34 +00:00
|
|
|
u32 tmplong;
|
2012-10-20 11:44:36 +00:00
|
|
|
|
2014-10-10 13:49:18 +00:00
|
|
|
tmplong = inl(bank->io_sel);
|
|
|
|
tmplong |= (1UL << offset);
|
|
|
|
outl(bank->io_sel, tmplong);
|
2012-10-20 11:44:34 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-10-10 13:49:18 +00:00
|
|
|
static int ich6_gpio_direction_output(struct udevice *dev, unsigned offset,
|
|
|
|
int value)
|
2012-10-20 11:44:34 +00:00
|
|
|
{
|
2014-10-10 13:49:18 +00:00
|
|
|
struct ich6_bank_priv *bank = dev_get_priv(dev);
|
2012-10-20 11:44:34 +00:00
|
|
|
u32 tmplong;
|
|
|
|
|
2014-10-10 13:49:18 +00:00
|
|
|
tmplong = inl(bank->io_sel);
|
|
|
|
tmplong &= ~(1UL << offset);
|
|
|
|
outl(bank->io_sel, tmplong);
|
2012-10-20 11:44:34 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-10-10 13:49:18 +00:00
|
|
|
static int ich6_gpio_get_value(struct udevice *dev, unsigned offset)
|
|
|
|
|
2012-10-20 11:44:34 +00:00
|
|
|
{
|
2014-10-10 13:49:18 +00:00
|
|
|
struct ich6_bank_priv *bank = dev_get_priv(dev);
|
2012-10-20 11:44:34 +00:00
|
|
|
u32 tmplong;
|
2012-10-20 11:44:36 +00:00
|
|
|
int r;
|
2012-10-20 11:44:34 +00:00
|
|
|
|
2014-10-10 13:49:18 +00:00
|
|
|
tmplong = inl(bank->lvl);
|
|
|
|
r = (tmplong & (1UL << offset)) ? 1 : 0;
|
2012-10-20 11:44:36 +00:00
|
|
|
return r;
|
2012-10-20 11:44:34 +00:00
|
|
|
}
|
|
|
|
|
2014-10-10 13:49:18 +00:00
|
|
|
static int ich6_gpio_set_value(struct udevice *dev, unsigned offset,
|
|
|
|
int value)
|
2012-10-20 11:44:34 +00:00
|
|
|
{
|
2014-10-10 13:49:18 +00:00
|
|
|
struct ich6_bank_priv *bank = dev_get_priv(dev);
|
2012-10-20 11:44:34 +00:00
|
|
|
u32 tmplong;
|
|
|
|
|
2014-10-10 13:49:18 +00:00
|
|
|
tmplong = inl(bank->lvl);
|
2012-10-20 11:44:34 +00:00
|
|
|
if (value)
|
2014-10-10 13:49:18 +00:00
|
|
|
tmplong |= (1UL << offset);
|
2012-10-20 11:44:34 +00:00
|
|
|
else
|
2014-10-10 13:49:18 +00:00
|
|
|
tmplong &= ~(1UL << offset);
|
|
|
|
outl(bank->lvl, tmplong);
|
2012-10-20 11:44:34 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2014-10-10 13:49:18 +00:00
|
|
|
|
|
|
|
static int ich6_gpio_get_function(struct udevice *dev, unsigned offset)
|
|
|
|
{
|
|
|
|
struct ich6_bank_priv *bank = dev_get_priv(dev);
|
|
|
|
u32 mask = 1UL << offset;
|
|
|
|
|
|
|
|
if (!(inl(bank->use_sel) & mask))
|
|
|
|
return GPIOF_FUNC;
|
|
|
|
if (inl(bank->io_sel) & mask)
|
|
|
|
return GPIOF_INPUT;
|
|
|
|
else
|
|
|
|
return GPIOF_OUTPUT;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct dm_gpio_ops gpio_ich6_ops = {
|
|
|
|
.request = ich6_gpio_request,
|
|
|
|
.direction_input = ich6_gpio_direction_input,
|
|
|
|
.direction_output = ich6_gpio_direction_output,
|
|
|
|
.get_value = ich6_gpio_get_value,
|
|
|
|
.set_value = ich6_gpio_set_value,
|
|
|
|
.get_function = ich6_gpio_get_function,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct udevice_id intel_ich6_gpio_ids[] = {
|
|
|
|
{ .compatible = "intel,ich6-gpio" },
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
U_BOOT_DRIVER(gpio_ich6) = {
|
|
|
|
.name = "gpio_ich6",
|
|
|
|
.id = UCLASS_GPIO,
|
|
|
|
.of_match = intel_ich6_gpio_ids,
|
|
|
|
.ops = &gpio_ich6_ops,
|
|
|
|
.ofdata_to_platdata = gpio_ich6_ofdata_to_platdata,
|
|
|
|
.probe = ich6_gpio_probe,
|
|
|
|
.priv_auto_alloc_size = sizeof(struct ich6_bank_priv),
|
|
|
|
.platdata_auto_alloc_size = sizeof(struct ich6_bank_platdata),
|
|
|
|
};
|