1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2009 Reinhard Arlt, reinhard.arlt@esd-electronics.com
5 * base on universe.h by
7 * (C) Copyright 2003 Stefan Roese, stefan.roese@esd-electronics.com
19 #define LPCI_VENDOR PCI_VENDOR_ID_TUNDRA
20 #define LPCI_DEVICE PCI_DEVICE_ID_TUNDRA_TSI148
22 typedef struct _TSI148_DEV TSI148_DEV
;
31 static TSI148_DEV
*dev
;
34 * Most of the TSI148 register are BIGENDIAN
35 * This is the reason for the __raw_writel(htonl(x), x) usage!
44 busdevfn
= pci_find_device(LPCI_VENDOR
, LPCI_DEVICE
, 0);
46 puts("Tsi148: No Tundra Tsi148 found!\n");
50 /* Lets turn Latency off */
51 pci_write_config_dword(busdevfn
, 0x0c, 0);
53 dev
= malloc(sizeof(*dev
));
55 puts("Tsi148: No memory!\n");
59 memset(dev
, 0, sizeof(*dev
));
60 dev
->busdevfn
= busdevfn
;
62 pci_read_config_dword(busdevfn
, PCI_BASE_ADDRESS_0
, &val
);
64 dev
->uregs
= (TSI148
*)val
;
66 debug("Tsi148: Base : %p\n", dev
->uregs
);
69 debug("Tsi148: Read via mapping, PCI_ID = %08X\n",
70 readl(&dev
->uregs
->pci_id
));
71 if (((LPCI_DEVICE
<< 16) | LPCI_VENDOR
) != readl(&dev
->uregs
->pci_id
)) {
72 printf("Tsi148: Cannot read PCI-ID via Mapping: %08x\n",
73 readl(&dev
->uregs
->pci_id
));
78 debug("Tsi148: PCI_BS = %08X\n", readl(&dev
->uregs
->pci_mbarl
));
80 dev
->pci_bs
= readl(&dev
->uregs
->pci_mbarl
);
82 /* turn off windows */
83 for (j
= 0; j
< 8; j
++) {
84 __raw_writel(htonl(0x00000000), &dev
->uregs
->outbound
[j
].otat
);
85 __raw_writel(htonl(0x00000000), &dev
->uregs
->inbound
[j
].itat
);
88 /* Tsi148 VME timeout etc */
89 __raw_writel(htonl(0x00000084), &dev
->uregs
->vctrl
);
92 if ((__raw_readl(&dev
->uregs
->vstat
) & 0x00000100) != 0)
93 printf("Tsi148: System Controller!\n");
95 printf("Tsi148: Not System Controller!\n");
99 * Lets turn off interrupts
101 /* Disable interrupts in Tsi148 first */
102 __raw_writel(htonl(0x00000000), &dev
->uregs
->inten
);
103 /* Disable interrupt out */
104 __raw_writel(htonl(0x00000000), &dev
->uregs
->inteo
);
106 /* Reset all IRQ's */
107 __raw_writel(htonl(0x03ff3f00), &dev
->uregs
->intc
);
108 /* Map all ints to 0 */
109 __raw_writel(htonl(0x00000000), &dev
->uregs
->intm1
);
110 __raw_writel(htonl(0x00000000), &dev
->uregs
->intm2
);
113 val
= __raw_readl(&dev
->uregs
->vstat
);
114 val
&= ~(0x00004000);
115 __raw_writel(val
, &dev
->uregs
->vstat
);
118 debug("Tsi148: register struct size %08x\n", sizeof(TSI148
));
130 * Create pci slave window (access: pci -> vme)
132 int tsi148_pci_slave_window(unsigned int pciAddr
, unsigned int vmeAddr
,
133 int size
, int vam
, int vdw
)
136 unsigned int ctl
= 0;
143 for (i
= 0; i
< 8; i
++) {
144 if (0x00000000 == readl(&dev
->uregs
->outbound
[i
].otat
))
149 printf("Tsi148: No Image available\n");
154 debug("Tsi148: Using image %d\n", i
);
156 printf("Tsi148: Pci addr %08x\n", pciAddr
);
158 __raw_writel(htonl(pciAddr
), &dev
->uregs
->outbound
[i
].otsal
);
159 __raw_writel(0x00000000, &dev
->uregs
->outbound
[i
].otsau
);
160 __raw_writel(htonl(pciAddr
+ size
), &dev
->uregs
->outbound
[i
].oteal
);
161 __raw_writel(0x00000000, &dev
->uregs
->outbound
[i
].oteau
);
162 __raw_writel(htonl(vmeAddr
- pciAddr
), &dev
->uregs
->outbound
[i
].otofl
);
163 __raw_writel(0x00000000, &dev
->uregs
->outbound
[i
].otofu
);
165 switch (vam
& VME_AM_Axx
) {
177 switch (vam
& VME_AM_Mxx
) {
186 if (vam
& VME_AM_SUP
)
189 switch (vdw
& VME_FLAG_Dxx
) {
198 ctl
|= 0x80040000; /* enable, no prefetch */
200 __raw_writel(htonl(ctl
), &dev
->uregs
->outbound
[i
].otat
);
202 debug("Tsi148: window-addr =%p\n",
203 &dev
->uregs
->outbound
[i
].otsau
);
204 debug("Tsi148: pci slave window[%d] attr =%08x\n",
205 i
, ntohl(__raw_readl(&dev
->uregs
->outbound
[i
].otat
)));
206 debug("Tsi148: pci slave window[%d] start =%08x\n",
207 i
, ntohl(__raw_readl(&dev
->uregs
->outbound
[i
].otsal
)));
208 debug("Tsi148: pci slave window[%d] end =%08x\n",
209 i
, ntohl(__raw_readl(&dev
->uregs
->outbound
[i
].oteal
)));
210 debug("Tsi148: pci slave window[%d] offset=%08x\n",
211 i
, ntohl(__raw_readl(&dev
->uregs
->outbound
[i
].otofl
)));
219 unsigned int tsi148_eval_vam(int vam
)
221 unsigned int ctl
= 0;
223 switch (vam
& VME_AM_Axx
) {
234 switch (vam
& VME_AM_Mxx
) {
241 case (VME_AM_PROG
| VME_AM_DATA
):
246 if (vam
& VME_AM_SUP
)
248 if (vam
& VME_AM_USR
)
255 * Create vme slave window (access: vme -> pci)
257 int tsi148_vme_slave_window(unsigned int vmeAddr
, unsigned int pciAddr
,
261 unsigned int ctl
= 0;
268 for (i
= 0; i
< 8; i
++) {
269 if (0x00000000 == readl(&dev
->uregs
->inbound
[i
].itat
))
274 printf("Tsi148: No Image available\n");
279 debug("Tsi148: Using image %d\n", i
);
281 __raw_writel(htonl(vmeAddr
), &dev
->uregs
->inbound
[i
].itsal
);
282 __raw_writel(0x00000000, &dev
->uregs
->inbound
[i
].itsau
);
283 __raw_writel(htonl(vmeAddr
+ size
), &dev
->uregs
->inbound
[i
].iteal
);
284 __raw_writel(0x00000000, &dev
->uregs
->inbound
[i
].iteau
);
285 __raw_writel(htonl(pciAddr
- vmeAddr
), &dev
->uregs
->inbound
[i
].itofl
);
286 if (vmeAddr
> pciAddr
)
287 __raw_writel(0xffffffff, &dev
->uregs
->inbound
[i
].itofu
);
289 __raw_writel(0x00000000, &dev
->uregs
->inbound
[i
].itofu
);
291 ctl
= tsi148_eval_vam(vam
);
292 ctl
|= 0x80000000; /* enable */
293 __raw_writel(htonl(ctl
), &dev
->uregs
->inbound
[i
].itat
);
295 debug("Tsi148: window-addr =%p\n",
296 &dev
->uregs
->inbound
[i
].itsau
);
297 debug("Tsi148: vme slave window[%d] attr =%08x\n",
298 i
, ntohl(__raw_readl(&dev
->uregs
->inbound
[i
].itat
)));
299 debug("Tsi148: vme slave window[%d] start =%08x\n",
300 i
, ntohl(__raw_readl(&dev
->uregs
->inbound
[i
].itsal
)));
301 debug("Tsi148: vme slave window[%d] end =%08x\n",
302 i
, ntohl(__raw_readl(&dev
->uregs
->inbound
[i
].iteal
)));
303 debug("Tsi148: vme slave window[%d] offset=%08x\n",
304 i
, ntohl(__raw_readl(&dev
->uregs
->inbound
[i
].itofl
)));
313 * Create vme slave window (access: vme -> gcsr)
315 int tsi148_vme_gcsr_window(unsigned int vmeAddr
, int vam
)
325 __raw_writel(htonl(vmeAddr
), &dev
->uregs
->gbal
);
326 __raw_writel(0x00000000, &dev
->uregs
->gbau
);
328 ctl
= tsi148_eval_vam(vam
);
329 ctl
|= 0x00000080; /* enable */
330 __raw_writel(htonl(ctl
), &dev
->uregs
->gcsrat
);
337 * Create vme slave window (access: vme -> crcsr)
339 int tsi148_vme_crcsr_window(unsigned int vmeAddr
)
349 __raw_writel(htonl(vmeAddr
), &dev
->uregs
->crol
);
350 __raw_writel(0x00000000, &dev
->uregs
->crou
);
352 ctl
= 0x00000080; /* enable */
353 __raw_writel(htonl(ctl
), &dev
->uregs
->crat
);
360 * Create vme slave window (access: vme -> crg)
362 int tsi148_vme_crg_window(unsigned int vmeAddr
, int vam
)
372 __raw_writel(htonl(vmeAddr
), &dev
->uregs
->cbal
);
373 __raw_writel(0x00000000, &dev
->uregs
->cbau
);
375 ctl
= tsi148_eval_vam(vam
);
376 ctl
|= 0x00000080; /* enable */
377 __raw_writel(htonl(ctl
), &dev
->uregs
->crgat
);
384 * Tundra Tsi148 configuration
386 int do_tsi148(struct cmd_tbl
*cmdtp
, int flag
, int argc
, char *const argv
[])
388 ulong addr1
= 0, addr2
= 0, size
= 0, vam
= 0, vdw
= 0;
395 addr1
= hextoul(argv
[2], NULL
);
397 addr2
= hextoul(argv
[3], NULL
);
399 size
= hextoul(argv
[4], NULL
);
401 vam
= hextoul(argv
[5], NULL
);
403 vdw
= hextoul(argv
[6], NULL
);
407 if (strcmp(argv
[1], "crg") == 0) {
409 printf("Tsi148: Configuring VME CRG Window "
411 printf(" vme=%08lx vam=%02lx\n", addr1
, vam
);
412 tsi148_vme_crg_window(addr1
, vam
);
414 printf("Tsi148: Configuring VME CR/CSR Window "
416 printf(" pci=%08lx\n", addr1
);
417 tsi148_vme_crcsr_window(addr1
);
425 printf("Tsi148: Configuring VME GCSR Window (VME->GCSR):\n");
426 printf(" vme=%08lx vam=%02lx\n", addr1
, vam
);
427 tsi148_vme_gcsr_window(addr1
, vam
);
430 printf("Tsi148: Configuring VME Slave Window (VME->PCI):\n");
431 printf(" vme=%08lx pci=%08lx size=%08lx vam=%02lx\n",
432 addr1
, addr2
, size
, vam
);
433 tsi148_vme_slave_window(addr1
, addr2
, size
, vam
);
436 printf("Tsi148: Configuring PCI Slave Window (PCI->VME):\n");
437 printf(" pci=%08lx vme=%08lx size=%08lx vam=%02lx vdw=%02lx\n",
438 addr1
, addr2
, size
, vam
, vdw
);
439 tsi148_pci_slave_window(addr1
, addr2
, size
, vam
, vdw
);
442 printf("Tsi148: Command %s not supported!\n", argv
[1]);
449 tsi148
, 7, 1, do_tsi148
,
450 "initialize and configure Turndra Tsi148\n",
452 " - initialize tsi148\n"
453 "tsi148 vme [vme_addr] [pci_addr] [size] [vam]\n"
454 " - create vme slave window (access: vme->pci)\n"
455 "tsi148 pci [pci_addr] [vme_addr] [size] [vam] [vdw]\n"
456 " - create pci slave window (access: pci->vme)\n"
457 "tsi148 crg [vme_addr] [vam]\n"
458 " - create vme slave window: (access vme->CRG\n"
459 "tsi148 crcsr [pci_addr]\n"
460 " - create vme slave window: (access vme->CR/CSR\n"
461 "tsi148 gcsr [vme_addr] [vam]\n"
462 " - create vme slave window: (access vme->GCSR\n"
463 " [vam] = VMEbus Address-Modifier: 01 -> A16 Address Space\n"
464 " 02 -> A24 Address Space\n"
465 " 03 -> A32 Address Space\n"
466 " 04 -> Usr AM Code\n"
467 " 08 -> Supervisor AM Code\n"
468 " 10 -> Data AM Code\n"
469 " 20 -> Program AM Code\n"
470 " [vdw] = VMEbus Maximum Datawidth: 02 -> D16 Data Width\n"
471 " 03 -> D32 Data Width\n"