2 * (C) Copyright 2003 Stefan Roese, stefan.roese@esd-electronics.com
4 * See file CREDITS for list of people who contributed to this
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
31 #define PCI_VENDOR PCI_VENDOR_ID_TUNDRA
32 #define PCI_DEVICE PCI_DEVICE_ID_TUNDRA_CA91C042
35 typedef struct _UNI_DEV UNI_DEV;
47 int universe_init(void)
49 int j, result, lastError = 0;
53 busdevfn = pci_find_device(PCI_VENDOR, PCI_DEVICE, 0);
55 puts("No Tundra Universe found!\n");
59 /* Lets turn Latency off */
60 pci_write_config_dword(busdevfn, 0x0c, 0);
62 dev = malloc(sizeof(*dev));
64 puts("UNIVERSE: No memory!\n");
69 memset(dev, 0, sizeof(*dev));
70 dev->busdevfn = busdevfn;
72 pci_read_config_dword(busdevfn, PCI_BASE_ADDRESS_1, &val);
74 pci_read_config_dword(busdevfn, PCI_BASE_ADDRESS_0, &val);
77 dev->uregs = (UNIVERSE *)val;
79 debug ("UNIVERSE-Base : %p\n", dev->uregs);
82 debug (" Read via mapping, PCI_ID = %08X\n", readl(&dev->uregs->pci_id));
83 if (((PCI_DEVICE <<16) | PCI_VENDOR) != readl(&dev->uregs->pci_id)) {
84 printf ("UNIVERSE: Cannot read PCI-ID via Mapping: %08x\n",
85 readl(&dev->uregs->pci_id));
90 debug ("PCI_BS = %08X\n", readl(&dev->uregs->pci_bs));
92 dev->pci_bs = readl(&dev->uregs->pci_bs);
94 /* turn off windows */
95 for (j=0; j <4; j ++) {
96 writel(0x00800000, &dev->uregs->lsi[j].ctl);
97 writel(0x00800000, &dev->uregs->vsi[j].ctl);
101 * Write to Misc Register
102 * Set VME Bus Time-out
106 writel(0x15040000 | (readl(&dev->uregs->misc_ctl) & 0x00020000), &dev->uregs->misc_ctl);
108 if (readl(&dev->uregs->misc_ctl) & 0x00020000) {
109 debug ("System Controller!\n"); /* test-only */
111 debug ("Not System Controller!\n"); /* test-only */
115 * Lets turn off interrupts
117 writel(0x00000000,&dev->uregs->lint_en); /* Disable interrupts in the Universe first */
118 writel(0x0000FFFF,&dev->uregs->lint_stat); /* Clear Any Pending Interrupts */
120 writel(0x0000, &dev->uregs->lint_map0); /* Map all ints to 0 */
121 writel(0x0000, &dev->uregs->lint_map1); /* Map all ints to 0 */
136 * Create pci slave window (access: pci -> vme)
138 int universe_pci_slave_window(unsigned int pciAddr, unsigned int vmeAddr, int size, int vam, int pms, int vdw)
141 unsigned int ctl = 0;
148 for (i = 0; i < 4; i++) {
149 if (0x00800000 == readl(&dev->uregs->lsi[i].ctl))
154 printf ("universe: No Image available\n");
159 debug ("universe: Using image %d\n", i);
161 writel(pciAddr , &dev->uregs->lsi[i].bs);
162 writel((pciAddr + size), &dev->uregs->lsi[i].bd);
163 writel((vmeAddr - pciAddr), &dev->uregs->lsi[i].to);
165 switch (vam & VME_AM_Axx) {
177 switch (vam & VME_AM_Mxx) {
186 if (vam & VME_AM_SUP) {
191 switch (vdw & VME_FLAG_Dxx) {
203 switch (pms & PCI_MS_Mxx) {
215 ctl |= 0x80000000; /* enable */
217 writel(ctl, &dev->uregs->lsi[i].ctl);
219 debug ("universe: window-addr=%p\n", &dev->uregs->lsi[i].ctl);
220 debug ("universe: pci slave window[%d] ctl=%08x\n", i, readl(&dev->uregs->lsi[i].ctl));
221 debug ("universe: pci slave window[%d] bs=%08x\n", i, readl(&dev->uregs->lsi[i].bs));
222 debug ("universe: pci slave window[%d] bd=%08x\n", i, readl(&dev->uregs->lsi[i].bd));
223 debug ("universe: pci slave window[%d] to=%08x\n", i, readl(&dev->uregs->lsi[i].to));
233 * Create vme slave window (access: vme -> pci)
235 int universe_vme_slave_window(unsigned int vmeAddr, unsigned int pciAddr, int size, int vam, int pms)
238 unsigned int ctl = 0;
245 for (i = 0; i < 4; i++) {
246 if (0x00800000 == readl(&dev->uregs->vsi[i].ctl))
251 printf ("universe: No Image available\n");
256 debug ("universe: Using image %d\n", i);
258 writel(vmeAddr , &dev->uregs->vsi[i].bs);
259 writel((vmeAddr + size), &dev->uregs->vsi[i].bd);
260 writel((pciAddr - vmeAddr), &dev->uregs->vsi[i].to);
262 switch (vam & VME_AM_Axx) {
274 switch (vam & VME_AM_Mxx) {
283 if (vam & VME_AM_SUP) {
288 switch (pms & PCI_MS_Mxx) {
300 ctl |= 0x80f00000; /* enable */
302 writel(ctl, &dev->uregs->vsi[i].ctl);
304 debug ("universe: window-addr=%p\n", &dev->uregs->vsi[i].ctl);
305 debug ("universe: vme slave window[%d] ctl=%08x\n", i, readl(&dev->uregs->vsi[i].ctl));
306 debug ("universe: vme slave window[%d] bs=%08x\n", i, readl(&dev->uregs->vsi[i].bs));
307 debug ("universe: vme slave window[%d] bd=%08x\n", i, readl(&dev->uregs->vsi[i].bd));
308 debug ("universe: vme slave window[%d] to=%08x\n", i, readl(&dev->uregs->vsi[i].to));
318 * Tundra Universe configuration
320 int do_universe(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
322 ulong addr1 = 0, addr2 = 0, size = 0, vam = 0, pms = 0, vdw = 0;
329 addr1 = simple_strtoul(argv[2], NULL, 16);
331 addr2 = simple_strtoul(argv[3], NULL, 16);
333 size = simple_strtoul(argv[4], NULL, 16);
335 vam = simple_strtoul(argv[5], NULL, 16);
337 pms = simple_strtoul(argv[6], NULL, 16);
339 vdw = simple_strtoul(argv[7], NULL, 16);
346 printf("Configuring Universe VME Slave Window (VME->PCI):\n");
347 printf(" vme=%08lx pci=%08lx size=%08lx vam=%02lx pms=%02lx\n",
348 addr1, addr2, size, vam, pms);
349 universe_vme_slave_window(addr1, addr2, size, vam, pms);
352 printf("Configuring Universe PCI Slave Window (PCI->VME):\n");
353 printf(" pci=%08lx vme=%08lx size=%08lx vam=%02lx pms=%02lx vdw=%02lx\n",
354 addr1, addr2, size, vam, pms, vdw);
355 universe_pci_slave_window(addr1, addr2, size, vam, pms, vdw);
358 printf("Universe command %s not supported!\n", argv[1]);
366 universe, 8, 1, do_universe,
367 "initialize and configure Turndra Universe",
369 " - initialize universe\n"
370 "universe vme [vme_addr] [pci_addr] [size] [vam] [pms]\n"
371 " - create vme slave window (access: vme->pci)\n"
372 "universe pci [pci_addr] [vme_addr] [size] [vam] [pms] [vdw]\n"
373 " - create pci slave window (access: pci->vme)\n"
374 " [vam] = VMEbus Address-Modifier: 01 -> A16 Address Space\n"
375 " 02 -> A24 Address Space\n"
376 " 03 -> A32 Address Space\n"
377 " 04 -> Supervisor AM Code\n"
378 " 10 -> Data AM Code\n"
379 " 20 -> Program AM Code\n"
380 " [pms] = PCI Memory Space: 01 -> Memory Space\n"
382 " 03 -> Configuration Space\n"
383 " [vdw] = VMEbus Maximum Datawidth: 01 -> D8 Data Width\n"
384 " 02 -> D16 Data Width\n"
385 " 03 -> D32 Data Width"