]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
MIPS: Netlogic: IRQ mapping for some more SoC blocks
authorJayachandran C <jchandra@broadcom.com>
Fri, 9 May 2014 11:05:34 +0000 (16:35 +0530)
committerRalf Baechle <ralf@linux-mips.org>
Fri, 30 May 2014 14:48:42 +0000 (16:48 +0200)
Add IRQ to IRT (PIC interupt table index) mapping for SATA, GPIO, NAND
and SPI interfaces on the XLP SoC. Fix offsets for few blocks and add
device IDs for a few blocks.

Signed-off-by: Jayachandran C <jchandra@broadcom.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/6911/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/include/asm/netlogic/xlp-hal/iomap.h
arch/mips/include/asm/netlogic/xlp-hal/xlp.h
arch/mips/netlogic/xlp/nlm_hal.c

index 1f23dfaa7167bc150ca51da72b93030176d829fb..14b2f5142c6e740bc03f80cbad8c6996ade14444 100644 (file)
@@ -74,6 +74,8 @@
 #define XLP_IO_USB_OHCI2_OFFSET(node)  XLP_HDR_OFFSET(node, 0, 2, 4)
 #define XLP_IO_USB_OHCI3_OFFSET(node)  XLP_HDR_OFFSET(node, 0, 2, 5)
 
+#define XLP_IO_SATA_OFFSET(node)       XLP_HDR_OFFSET(node, 0, 3, 2)
+
 /* XLP2xx has an updated USB block */
 #define XLP2XX_IO_USB_OFFSET(node, i)  XLP_HDR_OFFSET(node, 0, 4, i)
 #define XLP2XX_IO_USB_XHCI0_OFFSET(node)       XLP_HDR_OFFSET(node, 0, 4, 1)
 #define XLP_IO_SYS_OFFSET(node)                XLP_HDR_OFFSET(node, 0, 6, 5)
 #define XLP_IO_JTAG_OFFSET(node)       XLP_HDR_OFFSET(node, 0, 6, 6)
 
+/* Flash */
 #define XLP_IO_NOR_OFFSET(node)                XLP_HDR_OFFSET(node, 0, 7, 0)
 #define XLP_IO_NAND_OFFSET(node)       XLP_HDR_OFFSET(node, 0, 7, 1)
 #define XLP_IO_SPI_OFFSET(node)                XLP_HDR_OFFSET(node, 0, 7, 2)
-/* SD flash */
-#define XLP_IO_SD_OFFSET(node)         XLP_HDR_OFFSET(node, 0, 7, 3)
-#define XLP_IO_MMC_OFFSET(node, slot)  \
-               ((XLP_IO_SD_OFFSET(node))+(slot*0x100)+XLP_IO_PCI_HDRSZ)
+#define XLP_IO_MMC_OFFSET(node)                XLP_HDR_OFFSET(node, 0, 7, 3)
 
 /* Things have changed drastically in XLP 9XX */
 #define XLP9XX_HDR_OFFSET(n, d, f)     \
 /* XLP9XX on-chip SATA controller */
 #define XLP9XX_IO_SATA_OFFSET(node)            XLP9XX_HDR_OFFSET(node, 3, 2)
 
+/* Flash */
 #define XLP9XX_IO_NOR_OFFSET(node)             XLP9XX_HDR_OFFSET(node, 7, 0)
 #define XLP9XX_IO_NAND_OFFSET(node)            XLP9XX_HDR_OFFSET(node, 7, 1)
 #define XLP9XX_IO_SPI_OFFSET(node)             XLP9XX_HDR_OFFSET(node, 7, 2)
-/* SD flash */
-#define XLP9XX_IO_MMCSD_OFFSET(node)           XLP9XX_HDR_OFFSET(node, 7, 3)
+#define XLP9XX_IO_MMC_OFFSET(node)             XLP9XX_HDR_OFFSET(node, 7, 3)
 
 /* PCI config header register id's */
 #define XLP_PCI_CFGREG0                        0x00
 #define PCI_DEVICE_ID_NLM_NOR          0x1015
 #define PCI_DEVICE_ID_NLM_NAND         0x1016
 #define PCI_DEVICE_ID_NLM_MMC          0x1018
-#define PCI_DEVICE_ID_NLM_XHCI         0x101d
+#define PCI_DEVICE_ID_NLM_SATA         0x101A
+#define PCI_DEVICE_ID_NLM_XHCI         0x101D
 
+#define PCI_DEVICE_ID_XLP9XX_MMC       0x9018
 #define PCI_DEVICE_ID_XLP9XX_SATA      0x901A
 #define PCI_DEVICE_ID_XLP9XX_XHCI      0x901D
 
index 2b0c9599ebe595701127749b138c823ce9488613..bd7dda096506cf4e45746dba95edac076fed13b8 100644 (file)
 #define PIC_I2C_1_IRQ                  31
 #define PIC_I2C_2_IRQ                  32
 #define PIC_I2C_3_IRQ                  33
+#define PIC_SPI_IRQ                    34
+#define PIC_NAND_IRQ                   37
+#define PIC_SATA_IRQ                   38
+#define PIC_GPIO_IRQ                   39
 
 #define PIC_PCIE_LINK_MSI_IRQ_BASE     44      /* 44 - 47 MSI IRQ */
 #define PIC_PCIE_LINK_MSI_IRQ(i)       (44 + (i))
index 7b277cda31f3b7eddfb56af7cfb5ab46826e1462..9f9814d646a942be2a240bb9632a8e6b81736921 100644 (file)
@@ -66,31 +66,39 @@ void nlm_node_init(int node)
        spin_lock_init(&nodep->piclock);
 }
 
-int nlm_irq_to_irt(int irq)
+static int xlp9xx_irq_to_irt(int irq)
+{
+       switch (irq) {
+       case PIC_GPIO_IRQ:
+               return 12;
+       case PIC_9XX_XHCI_0_IRQ:
+               return 114;
+       case PIC_9XX_XHCI_1_IRQ:
+               return 115;
+       case PIC_UART_0_IRQ:
+               return 133;
+       case PIC_UART_1_IRQ:
+               return 134;
+       case PIC_SATA_IRQ:
+               return 143;
+       case PIC_SPI_IRQ:
+               return 152;
+       case PIC_MMC_IRQ:
+               return 153;
+       case PIC_PCIE_LINK_LEGACY_IRQ(0):
+       case PIC_PCIE_LINK_LEGACY_IRQ(1):
+       case PIC_PCIE_LINK_LEGACY_IRQ(2):
+       case PIC_PCIE_LINK_LEGACY_IRQ(3):
+               return 191 + irq - PIC_PCIE_LINK_LEGACY_IRQ_BASE;
+       }
+       return -1;
+}
+
+static int xlp_irq_to_irt(int irq)
 {
        uint64_t pcibase;
        int devoff, irt;
 
-       /* bypass for 9xx */
-       if (cpu_is_xlp9xx()) {
-               switch (irq) {
-               case PIC_9XX_XHCI_0_IRQ:
-                       return 114;
-               case PIC_9XX_XHCI_1_IRQ:
-                       return 115;
-               case PIC_UART_0_IRQ:
-                       return 133;
-               case PIC_UART_1_IRQ:
-                       return 134;
-               case PIC_PCIE_LINK_LEGACY_IRQ(0):
-               case PIC_PCIE_LINK_LEGACY_IRQ(1):
-               case PIC_PCIE_LINK_LEGACY_IRQ(2):
-               case PIC_PCIE_LINK_LEGACY_IRQ(3):
-                       return 191 + irq - PIC_PCIE_LINK_LEGACY_IRQ_BASE;
-               }
-               return -1;
-       }
-
        devoff = 0;
        switch (irq) {
        case PIC_UART_0_IRQ:
@@ -100,7 +108,7 @@ int nlm_irq_to_irt(int irq)
                devoff = XLP_IO_UART1_OFFSET(0);
                break;
        case PIC_MMC_IRQ:
-               devoff = XLP_IO_SD_OFFSET(0);
+               devoff = XLP_IO_MMC_OFFSET(0);
                break;
        case PIC_I2C_0_IRQ:     /* I2C will be fixed up */
        case PIC_I2C_1_IRQ:
@@ -111,6 +119,18 @@ int nlm_irq_to_irt(int irq)
                else
                        devoff = XLP_IO_I2C0_OFFSET(0);
                break;
+       case PIC_SATA_IRQ:
+               devoff = XLP_IO_SATA_OFFSET(0);
+               break;
+       case PIC_GPIO_IRQ:
+               devoff = XLP_IO_GPIO_OFFSET(0);
+               break;
+       case PIC_NAND_IRQ:
+               devoff = XLP_IO_NAND_OFFSET(0);
+               break;
+       case PIC_SPI_IRQ:
+               devoff = XLP_IO_SPI_OFFSET(0);
+               break;
        default:
                if (cpu_is_xlpii()) {
                        switch (irq) {
@@ -166,18 +186,26 @@ int nlm_irq_to_irt(int irq)
                /* HW bug, PCI IRT entries are bad on early silicon, fix */
                irt = PIC_IRT_PCIE_LINK_INDEX(irq -
                                        PIC_PCIE_LINK_LEGACY_IRQ_BASE);
-       } else if (irq >= PIC_PCIE_LINK_MSI_IRQ(0) &&
-                       irq <= PIC_PCIE_LINK_MSI_IRQ(3)) {
-               irt = -2;
-       } else if (irq >= PIC_PCIE_MSIX_IRQ(0) &&
-                       irq <= PIC_PCIE_MSIX_IRQ(3)) {
-               irt = -2;
        } else {
                irt = -1;
        }
        return irt;
 }
 
+int nlm_irq_to_irt(int irq)
+{
+       /* return -2 for irqs without 1-1 mapping */
+       if (irq >= PIC_PCIE_LINK_MSI_IRQ(0) && irq <= PIC_PCIE_LINK_MSI_IRQ(3))
+               return -2;
+       if (irq >= PIC_PCIE_MSIX_IRQ(0) && irq <= PIC_PCIE_MSIX_IRQ(3))
+               return -2;
+
+       if (cpu_is_xlp9xx())
+               return xlp9xx_irq_to_irt(irq);
+       else
+               return xlp_irq_to_irt(irq);
+}
+
 unsigned int nlm_get_core_frequency(int node, int core)
 {
        unsigned int pll_divf, pll_divr, dfs_div, ext_div;