]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - drivers/gpio/intel_ich6_gpio.c
rockchip: video: rk_vop: migrate to livetree
[people/ms/u-boot.git] / drivers / gpio / intel_ich6_gpio.c
index 7e679a086e3c7abdde640d85d2348d58d2e8a728..ffc3ccb2767596b230f838a06433715318784342 100644 (file)
 #include <dm.h>
 #include <errno.h>
 #include <fdtdec.h>
+#include <pch.h>
 #include <pci.h>
+#include <asm/cpu.h>
 #include <asm/gpio.h>
 #include <asm/io.h>
 #include <asm/pci.h>
 
+DECLARE_GLOBAL_DATA_PTR;
+
 #define GPIO_PER_BANK  32
 
 struct ich6_bank_priv {
@@ -42,107 +46,71 @@ struct ich6_bank_priv {
        uint16_t use_sel;
        uint16_t io_sel;
        uint16_t lvl;
+       u32 lvl_write_cache;
+       bool use_lvl_write_cache;
 };
 
-/* 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;
-}
+#define GPIO_USESEL_OFFSET(x)  (x)
+#define GPIO_IOSEL_OFFSET(x)   (x + 4)
+#define GPIO_LVL_OFFSET(x)     (x + 8)
 
-static int gpio_ich6_ofdata_to_platdata(struct udevice *dev)
+static int _ich6_gpio_set_value(struct ich6_bank_priv *bank, unsigned offset,
+                               int value)
 {
-       struct ich6_bank_platdata *plat = dev_get_platdata(dev);
-       pci_dev_t pci_dev;                      /* handle for 0:1f:0 */
-       u8 tmpbyte;
-       u16 tmpword;
-       u32 tmplong;
-       u16 gpiobase;
-       int offset;
-
-       /* Where should it be? */
-       pci_dev = PCI_BDF(0, 0x1f, 0);
+       u32 val;
 
-       /* Is the device present? */
-       tmpword = x86_pci_read_config16(pci_dev, PCI_VENDOR_ID);
-       if (tmpword != PCI_VENDOR_ID_INTEL) {
-               debug("%s: wrong VendorID\n", __func__);
-               return -ENODEV;
-       }
+       if (bank->use_lvl_write_cache)
+               val = bank->lvl_write_cache;
+       else
+               val = inl(bank->lvl);
 
-       tmpword = x86_pci_read_config16(pci_dev, PCI_DEVICE_ID);
-       debug("Found %04x:%04x\n", PCI_VENDOR_ID_INTEL, tmpword);
-       /*
-        * We'd like to validate the Device ID too, but pretty much any
-        * value is either a) correct with slight differences, or b)
-        * correct but undocumented. We'll have to check a bunch of other
-        * things instead...
-        */
+       if (value)
+               val |= (1UL << offset);
+       else
+               val &= ~(1UL << offset);
+       outl(val, bank->lvl);
+       if (bank->use_lvl_write_cache)
+               bank->lvl_write_cache = val;
 
-       /* I/O should already be enabled (it's a RO bit). */
-       tmpword = x86_pci_read_config16(pci_dev, PCI_COMMAND);
-       if (!(tmpword & PCI_COMMAND_IO)) {
-               debug("%s: device IO not enabled\n", __func__);
-               return -ENODEV;
-       }
+       return 0;
+}
 
-       /* Header Type must be normal (bits 6-0 only; see spec.) */
-       tmpbyte = x86_pci_read_config8(pci_dev, PCI_HEADER_TYPE);
-       if ((tmpbyte & 0x7f) != PCI_HEADER_TYPE_NORMAL) {
-               debug("%s: invalid Header type\n", __func__);
-               return -ENODEV;
+static int _ich6_gpio_set_direction(uint16_t base, unsigned offset, int dir)
+{
+       u32 val;
+
+       if (!dir) {
+               val = inl(base);
+               val |= (1UL << offset);
+               outl(val, base);
+       } else {
+               val = inl(base);
+               val &= ~(1UL << offset);
+               outl(val, base);
        }
 
-       /* Base Class must be a bridge device */
-       tmpbyte = x86_pci_read_config8(pci_dev, PCI_CLASS_CODE);
-       if (tmpbyte != PCI_CLASS_CODE_BRIDGE) {
-               debug("%s: invalid class\n", __func__);
-               return -ENODEV;
-       }
-       /* Sub Class must be ISA */
-       tmpbyte = x86_pci_read_config8(pci_dev, PCI_CLASS_SUB_CODE);
-       if (tmpbyte != PCI_CLASS_SUB_CODE_BRIDGE_ISA) {
-               debug("%s: invalid subclass\n", __func__);
-               return -ENODEV;
-       }
+       return 0;
+}
 
-       /* Programming Interface must be 0x00 (no others exist) */
-       tmpbyte = x86_pci_read_config8(pci_dev, PCI_CLASS_PROG);
-       if (tmpbyte != 0x00) {
-               debug("%s: invalid interface type\n", __func__);
-               return -ENODEV;
-       }
+static int gpio_ich6_ofdata_to_platdata(struct udevice *dev)
+{
+       struct ich6_bank_platdata *plat = dev_get_platdata(dev);
+       u32 gpiobase;
+       int offset;
+       int ret;
 
-       /*
-        * 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.
-        *
-        * Note we don't need check bit0 here, because the Tunnel Creek
-        * GPIO base address register bit0 is reserved (read returns 0),
-        * while on the Ivybridge the bit0 is used to indicate it is an
-        * I/O space.
-        */
-       tmplong = x86_pci_read_config32(pci_dev, PCI_CFG_GPIOBASE);
-       if (tmplong == 0x00000000 || tmplong == 0xffffffff) {
-               debug("%s: unexpected GPIOBASE value\n", __func__);
-               return -ENODEV;
-       }
+       ret = pch_get_gpio_base(dev->parent, &gpiobase);
+       if (ret)
+               return ret;
 
-       /*
-        * 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 & 0xfffe;
-       offset = fdtdec_get_int(gd->fdt_blob, dev->of_offset, "reg", -1);
+       offset = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev), "reg", -1);
        if (offset == -1) {
                debug("%s: Invalid register offset %d\n", __func__, offset);
                return -EINVAL;
        }
+       plat->offset = offset;
        plat->base_addr = gpiobase + offset;
-       plat->bank_name = fdt_getprop(gd->fdt_blob, dev->of_offset,
+       plat->bank_name = fdt_getprop(gd->fdt_blob, dev_of_offset(dev),
                                      "bank-name", NULL);
 
        return 0;
@@ -153,11 +121,7 @@ static int ich6_gpio_probe(struct udevice *dev)
        struct ich6_bank_platdata *plat = dev_get_platdata(dev);
        struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
        struct ich6_bank_priv *bank = dev_get_priv(dev);
-
-       if (gd->arch.gpio_map) {
-               setup_pch_gpios(plat->base_addr, gd->arch.gpio_map);
-               gd->arch.gpio_map = NULL;
-       }
+       const void *prop;
 
        uc_priv->gpio_count = GPIO_PER_BANK;
        uc_priv->bank_name = plat->bank_name;
@@ -165,6 +129,14 @@ static int ich6_gpio_probe(struct udevice *dev)
        bank->io_sel = plat->base_addr + 4;
        bank->lvl = plat->base_addr + 8;
 
+       prop = fdt_getprop(gd->fdt_blob, dev_of_offset(dev),
+                          "use-lvl-write-cache", NULL);
+       if (prop)
+               bank->use_lvl_write_cache = true;
+       else
+               bank->use_lvl_write_cache = false;
+       bank->lvl_write_cache = 0;
+
        return 0;
 }
 
@@ -192,36 +164,32 @@ static int ich6_gpio_request(struct udevice *dev, unsigned offset,
 static int ich6_gpio_direction_input(struct udevice *dev, unsigned offset)
 {
        struct ich6_bank_priv *bank = dev_get_priv(dev);
-       u32 tmplong;
 
-       tmplong = inl(bank->io_sel);
-       tmplong |= (1UL << offset);
-       outl(bank->io_sel, tmplong);
-       return 0;
+       return _ich6_gpio_set_direction(bank->io_sel, offset, 0);
 }
 
 static int ich6_gpio_direction_output(struct udevice *dev, unsigned offset,
                                       int value)
 {
+       int ret;
        struct ich6_bank_priv *bank = dev_get_priv(dev);
-       u32 tmplong;
 
-       gpio_set_value(offset, value);
+       ret = _ich6_gpio_set_direction(bank->io_sel, offset, 1);
+       if (ret)
+               return ret;
 
-       tmplong = inl(bank->io_sel);
-       tmplong &= ~(1UL << offset);
-       outl(bank->io_sel, tmplong);
-       return 0;
+       return _ich6_gpio_set_value(bank, offset, value);
 }
 
 static int ich6_gpio_get_value(struct udevice *dev, unsigned offset)
-
 {
        struct ich6_bank_priv *bank = dev_get_priv(dev);
        u32 tmplong;
        int r;
 
        tmplong = inl(bank->lvl);
+       if (bank->use_lvl_write_cache)
+               tmplong |= bank->lvl_write_cache;
        r = (tmplong & (1UL << offset)) ? 1 : 0;
        return r;
 }
@@ -230,15 +198,7 @@ static int ich6_gpio_set_value(struct udevice *dev, unsigned offset,
                               int value)
 {
        struct ich6_bank_priv *bank = dev_get_priv(dev);
-       u32 tmplong;
-
-       tmplong = inl(bank->lvl);
-       if (value)
-               tmplong |= (1UL << offset);
-       else
-               tmplong &= ~(1UL << offset);
-       outl(bank->lvl, tmplong);
-       return 0;
+       return _ich6_gpio_set_value(bank, offset, value);
 }
 
 static int ich6_gpio_get_function(struct udevice *dev, unsigned offset)