blob: e26793ab1bd4ab8249c4190143c47d5a7eab4b0a [file] [log] [blame]
Graeme Russ85cc39f2009-02-24 21:14:32 +11001/*
Graeme Russ45fc1d82011-04-13 19:43:26 +10002 * (C) Copyright 2008-2011
3 * Graeme Russ, <graeme.russ@gmail.com>
4 *
Graeme Russ85cc39f2009-02-24 21:14:32 +11005 * (C) Copyright 2002
Albert ARIBAUD60fbc8d2011-08-04 18:45:45 +02006 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
Graeme Russ85cc39f2009-02-24 21:14:32 +11007 *
8 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 */
26
Graeme Russ85cc39f2009-02-24 21:14:32 +110027#include <common.h>
28#include <pci.h>
Graeme Russ0c5ced72010-04-24 00:05:37 +100029#include <asm/io.h>
Graeme Russ85cc39f2009-02-24 21:14:32 +110030#include <asm/pci.h>
Graeme Russ0d992d02011-08-04 22:05:09 +100031#include <asm/arch/pci.h>
32#include <asm/arch/sc520.h>
Graeme Russ85cc39f2009-02-24 21:14:32 +110033
34static struct {
35 u8 priority;
36 u16 level_reg;
37 u8 level_bit;
38} sc520_irq[] = {
Graeme Russ1d977dc2009-08-23 12:59:56 +100039 { SC520_IRQ0, 0, 0x01 },
40 { SC520_IRQ1, 0, 0x02 },
41 { SC520_IRQ2, 1, 0x02 },
42 { SC520_IRQ3, 0, 0x08 },
43 { SC520_IRQ4, 0, 0x10 },
44 { SC520_IRQ5, 0, 0x20 },
45 { SC520_IRQ6, 0, 0x40 },
46 { SC520_IRQ7, 0, 0x80 },
Graeme Russ85cc39f2009-02-24 21:14:32 +110047
Graeme Russ1d977dc2009-08-23 12:59:56 +100048 { SC520_IRQ8, 1, 0x01 },
49 { SC520_IRQ9, 1, 0x02 },
50 { SC520_IRQ10, 1, 0x04 },
51 { SC520_IRQ11, 1, 0x08 },
52 { SC520_IRQ12, 1, 0x10 },
53 { SC520_IRQ13, 1, 0x20 },
54 { SC520_IRQ14, 1, 0x40 },
55 { SC520_IRQ15, 1, 0x80 }
Graeme Russ85cc39f2009-02-24 21:14:32 +110056};
57
Graeme Russ85cc39f2009-02-24 21:14:32 +110058/* The interrupt used for PCI INTA-INTD */
59int sc520_pci_ints[15] = {
60 -1, -1, -1, -1, -1, -1, -1, -1,
61 -1, -1, -1, -1, -1, -1, -1
62};
63
64/* utility function to configure a pci interrupt */
65int pci_sc520_set_irq(int pci_pin, int irq)
66{
67 int i;
Graeme Russ0c5ced72010-04-24 00:05:37 +100068 u8 tmpb;
69 u16 tmpw;
Graeme Russ85cc39f2009-02-24 21:14:32 +110070
Graeme Russ45fc1d82011-04-13 19:43:26 +100071 debug("set_irq(): map INT%c to IRQ%d\n", pci_pin + 'A', irq);
72
Graeme Russ85cc39f2009-02-24 21:14:32 +110073 if (irq < 0 || irq > 15) {
74 return -1; /* illegal irq */
75 }
76
77 if (pci_pin < 0 || pci_pin > 15) {
78 return -1; /* illegal pci int pin */
79 }
80
81 /* first disable any non-pci interrupt source that use
82 * this level */
Graeme Russ1d977dc2009-08-23 12:59:56 +100083
84 /* PCI interrupt mapping (A through D)*/
85 for (i=0; i<=3 ;i++) {
Graeme Russ0c5ced72010-04-24 00:05:37 +100086 if (readb(&sc520_mmcr->pci_int_map[i]) == sc520_irq[irq].priority)
87 writeb(SC520_IRQ_DISABLED, &sc520_mmcr->pci_int_map[i]);
Graeme Russ1d977dc2009-08-23 12:59:56 +100088 }
89
90 /* GP IRQ interrupt mapping */
91 for (i=0; i<=10 ;i++) {
Graeme Russ0c5ced72010-04-24 00:05:37 +100092 if (readb(&sc520_mmcr->gp_int_map[i]) == sc520_irq[irq].priority)
93 writeb(SC520_IRQ_DISABLED, &sc520_mmcr->gp_int_map[i]);
Graeme Russ85cc39f2009-02-24 21:14:32 +110094 }
95
96 /* Set the trigger to level */
Graeme Russ0c5ced72010-04-24 00:05:37 +100097 tmpb = readb(&sc520_mmcr->pic_mode[sc520_irq[irq].level_reg]);
98 tmpb |= sc520_irq[irq].level_bit;
99 writeb(tmpb, &sc520_mmcr->pic_mode[sc520_irq[irq].level_reg]);
Graeme Russ85cc39f2009-02-24 21:14:32 +1100100
101
102 if (pci_pin < 4) {
103 /* PCI INTA-INTD */
104 /* route the interrupt */
Graeme Russ0c5ced72010-04-24 00:05:37 +1000105 writeb(sc520_irq[irq].priority, &sc520_mmcr->pci_int_map[pci_pin]);
Graeme Russ85cc39f2009-02-24 21:14:32 +1100106 } else {
107 /* GPIRQ0-GPIRQ10 used for additional PCI INTS */
Graeme Russ0c5ced72010-04-24 00:05:37 +1000108 writeb(sc520_irq[irq].priority, &sc520_mmcr->gp_int_map[pci_pin - 4]);
Graeme Russ85cc39f2009-02-24 21:14:32 +1100109
110 /* also set the polarity in this case */
Graeme Russ0c5ced72010-04-24 00:05:37 +1000111 tmpw = readw(&sc520_mmcr->intpinpol);
112 tmpw |= (1 << (pci_pin-4));
113 writew(tmpw, &sc520_mmcr->intpinpol);
Graeme Russ85cc39f2009-02-24 21:14:32 +1100114 }
115
116 /* register the pin */
117 sc520_pci_ints[pci_pin] = irq;
118
119
120 return 0; /* OK */
121}
122
123void pci_sc520_init(struct pci_controller *hose)
124{
125 hose->first_busno = 0;
126 hose->last_busno = 0xff;
Graeme Russ6a554572010-04-24 00:05:54 +1000127 hose->region_count = pci_set_regions(hose);
Graeme Russ85cc39f2009-02-24 21:14:32 +1100128
129 pci_setup_type1(hose,
130 SC520_REG_ADDR,
131 SC520_REG_DATA);
132
133 pci_register_hose(hose);
134
135 hose->last_busno = pci_hose_scan(hose);
136
137 /* enable target memory acceses on host brige */
138 pci_write_config_word(0, PCI_COMMAND,
139 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
Graeme Russ85cc39f2009-02-24 21:14:32 +1100140}