pcic.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:27k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: pcic.c,v 1.22.2.1 2002/01/23 14:35:45 davem Exp $
  2.  * pcic.c: Sparc/PCI controller support
  3.  *
  4.  * Copyright (C) 1998 V. Roganov and G. Raiko
  5.  *
  6.  * Code is derived from Ultra/PCI PSYCHO controller support, see that
  7.  * for author info.
  8.  *
  9.  * Support for diverse IIep based platforms by Pete Zaitcev.
  10.  * CP-1200 by Eric Brower.
  11.  */
  12. #include <linux/config.h>
  13. #include <linux/kernel.h>
  14. #include <linux/types.h>
  15. #include <linux/init.h>
  16. #include <linux/mm.h>
  17. #include <linux/slab.h>
  18. #include <asm/ebus.h>
  19. #include <asm/sbus.h> /* for sanity check... */
  20. #include <asm/swift.h> /* for cache flushing. */
  21. #include <asm/io.h>
  22. #include <linux/ctype.h>
  23. #include <linux/pci.h>
  24. #include <linux/timex.h>
  25. #include <linux/interrupt.h>
  26. #include <asm/irq.h>
  27. #include <asm/oplib.h>
  28. #include <asm/pcic.h>
  29. #include <asm/timer.h>
  30. #include <asm/uaccess.h>
  31. #ifndef CONFIG_PCI
  32. asmlinkage int sys_pciconfig_read(unsigned long bus,
  33.   unsigned long dfn,
  34.   unsigned long off,
  35.   unsigned long len,
  36.   unsigned char *buf)
  37. {
  38. return -EINVAL;
  39. }
  40. asmlinkage int sys_pciconfig_write(unsigned long bus,
  41.    unsigned long dfn,
  42.    unsigned long off,
  43.    unsigned long len,
  44.    unsigned char *buf)
  45. {
  46. return -EINVAL;
  47. }
  48. #else
  49. #ifdef CONFIG_SUN_JSFLASH
  50. extern int jsflash_init(void);
  51. #endif
  52. struct pci_fixup pcibios_fixups[] = {
  53. { 0 }
  54. };
  55. unsigned int pcic_pin_to_irq(unsigned int pin, char *name);
  56. /*
  57.  * I studied different documents and many live PROMs both from 2.30
  58.  * family and 3.xx versions. I came to the amazing conclusion: there is
  59.  * absolutely no way to route interrupts in IIep systems relying on
  60.  * information which PROM presents. We must hardcode interrupt routing
  61.  * schematics. And this actually sucks.   -- zaitcev 1999/05/12
  62.  *
  63.  * To find irq for a device we determine which routing map
  64.  * is in effect or, in other words, on which machine we are running.
  65.  * We use PROM name for this although other techniques may be used
  66.  * in special cases (Gleb reports a PROMless IIep based system).
  67.  * Once we know the map we take device configuration address and
  68.  * find PCIC pin number where INT line goes. Then we may either program
  69.  * preferred irq into the PCIC or supply the preexisting irq to the device.
  70.  */
  71. struct pcic_ca2irq {
  72. unsigned char busno; /* PCI bus number */
  73. unsigned char devfn; /* Configuration address */
  74. unsigned char pin; /* PCIC external interrupt pin */
  75. unsigned char irq; /* Preferred IRQ (mappable in PCIC) */
  76. unsigned int force; /* Enforce preferred IRQ */
  77. };
  78. struct pcic_sn2list {
  79. char *sysname;
  80. struct pcic_ca2irq *intmap;
  81. int mapdim;
  82. };
  83. /*
  84.  * JavaEngine-1 apparently has different versions.
  85.  *
  86.  * According to communications with Sun folks, for P2 build 501-4628-03:
  87.  * pin 0 - parallel, audio;
  88.  * pin 1 - Ethernet;
  89.  * pin 2 - su;
  90.  * pin 3 - PS/2 kbd and mouse.
  91.  *
  92.  * OEM manual (805-1486):
  93.  * pin 0: Ethernet
  94.  * pin 1: All EBus
  95.  * pin 2: IGA (unused)
  96.  * pin 3: Not connected
  97.  * OEM manual says that 501-4628 & 501-4811 are the same thing,
  98.  * only the latter has NAND flash in place.
  99.  *
  100.  * So far unofficial Sun wins over the OEM manual. Poor OEMs...
  101.  */
  102. static struct pcic_ca2irq pcic_i_je1a[] = { /* 501-4811-03 */
  103. { 0, 0x00, 2, 12, 0 }, /* EBus: hogs all */
  104. { 0, 0x01, 1,  6, 1 }, /* Happy Meal */
  105. { 0, 0x80, 0,  7, 0 }, /* IGA (unused) */
  106. };
  107. /* XXX JS-E entry is incomplete - PCI Slot 2 address (pin 7)? */
  108. static struct pcic_ca2irq pcic_i_jse[] = {
  109. { 0, 0x00, 0, 13, 0 }, /* Ebus - serial and keyboard */
  110. { 0, 0x01, 1,  6, 0 }, /* hme */
  111. { 0, 0x08, 2,  9, 0 }, /* VGA - we hope not used :) */
  112. { 0, 0x10, 6,  8, 0 }, /* PCI INTA# in Slot 1 */
  113. { 0, 0x18, 7, 12, 0 }, /* PCI INTA# in Slot 2, shared w. RTC */
  114. { 0, 0x38, 4,  9, 0 }, /* All ISA devices. Read 8259. */
  115. { 0, 0x80, 5, 11, 0 }, /* EIDE */
  116. /* {0,0x88, 0,0,0} - unknown device... PMU? Probably no interrupt. */
  117. { 0, 0xA0, 4,  9, 0 }, /* USB */
  118. /*
  119.  * Some pins belong to non-PCI devices, we hardcode them in drivers.
  120.  * sun4m timers - irq 10, 14
  121.  * PC style RTC - pin 7, irq 4 ?
  122.  * Smart card, Parallel - pin 4 shared with USB, ISA
  123.  * audio - pin 3, irq 5 ?
  124.  */
  125. };
  126. /* SPARCengine-6 was the original release name of CP1200.
  127.  * The documentation differs between the two versions
  128.  */
  129. static struct pcic_ca2irq pcic_i_se6[] = {
  130. { 0, 0x08, 0,  2, 0 }, /* SCSI */
  131. { 0, 0x01, 1,  6, 0 }, /* HME */
  132. { 0, 0x00, 3, 13, 0 }, /* EBus */
  133. };
  134. /*
  135.  * Krups (courtesy of Varol Kaptan)
  136.  * No documentation available, but it was easy to guess
  137.  * because it was very similar to Espresso.
  138.  *  
  139.  * pin 0 - kbd, mouse, serial;
  140.  * pin 1 - Ethernet;
  141.  * pin 2 - igs (we do not use it);
  142.  * pin 3 - audio;
  143.  * pin 4,5,6 - unused;
  144.  * pin 7 - RTC (from P2 onwards as David B. says).
  145.  */
  146. static struct pcic_ca2irq pcic_i_jk[] = {
  147. { 0, 0x00, 0, 13, 0 }, /* Ebus - serial and keyboard */
  148. { 0, 0x01, 1,  6, 0 }, /* hme */
  149. };
  150. /*
  151.  * Several entries in this list may point to the same routing map
  152.  * as several PROMs may be installed on the same physical board.
  153.  */
  154. #define SN2L_INIT(name, map)
  155.   { name, map, sizeof(map)/sizeof(struct pcic_ca2irq) }
  156. static struct pcic_sn2list pcic_known_sysnames[] = {
  157. SN2L_INIT("SUNW,JavaEngine1", pcic_i_je1a), /* JE1, PROM 2.32 */
  158. SN2L_INIT("SUNW,JS-E", pcic_i_jse), /* PROLL JavaStation-E */
  159. SN2L_INIT("SUNW,SPARCengine-6", pcic_i_se6), /* SPARCengine-6/CP-1200 */
  160. SN2L_INIT("SUNW,JS-NC", pcic_i_jk), /* PROLL JavaStation-NC */
  161. SN2L_INIT("SUNW,JSIIep", pcic_i_jk), /* OBP JavaStation-NC */
  162. { NULL, NULL, 0 }
  163. };
  164. /*
  165.  * Only one PCIC per IIep,
  166.  * and since we have no SMP IIep, only one per system.
  167.  */
  168. static int pcic0_up;
  169. static struct linux_pcic pcic0;
  170. unsigned int pcic_regs;
  171. volatile int pcic_speculative;
  172. volatile int pcic_trapped;
  173. static void pci_do_gettimeofday(struct timeval *tv);
  174. static void pci_do_settimeofday(struct timeval *tv);
  175. #define CONFIG_CMD(bus, device_fn, where) (0x80000000 | (((unsigned int)bus) << 16) | (((unsigned int)device_fn) << 8) | (where & ~3))
  176. static int pcic_read_config_dword(struct pci_dev *dev, int where, u32 *value);
  177. static int pcic_write_config_dword(struct pci_dev *dev, int where, u32 value);
  178. static int pcic_read_config_byte(struct pci_dev *dev, int where, u8 *value)
  179. {
  180. unsigned int v;
  181. pcic_read_config_dword(dev, where&~3, &v);
  182. *value = 0xff & (v >> (8*(where & 3)));
  183. return PCIBIOS_SUCCESSFUL;
  184. }
  185. static int pcic_read_config_word(struct pci_dev *dev, int where, u16 *value)
  186. {
  187. unsigned int v;
  188. if (where&1) return PCIBIOS_BAD_REGISTER_NUMBER;
  189. pcic_read_config_dword(dev, where&~3, &v);
  190. *value = 0xffff & (v >> (8*(where & 3)));
  191. return PCIBIOS_SUCCESSFUL;
  192. }
  193. static int pcic_read_config_dword(struct pci_dev *dev, int where, u32 *value)
  194. {
  195. unsigned char bus = dev->bus->number;
  196. unsigned char device_fn = dev->devfn;
  197. /* unsigned char where; */
  198. struct linux_pcic *pcic;
  199. unsigned long flags;
  200. if (where&3) return PCIBIOS_BAD_REGISTER_NUMBER;
  201. if (bus != 0) return PCIBIOS_DEVICE_NOT_FOUND;
  202. pcic = &pcic0;
  203. save_and_cli(flags);
  204. #if 0 /* does not fail here */
  205. pcic_speculative = 1;
  206. pcic_trapped = 0;
  207. #endif
  208. writel(CONFIG_CMD(bus,device_fn,where), pcic->pcic_config_space_addr);
  209. #if 0 /* does not fail here */
  210. nop();
  211. if (pcic_trapped) {
  212. restore_flags(flags);
  213. *value = ~0;
  214. return PCIBIOS_SUCCESSFUL;
  215. }
  216. #endif
  217. pcic_speculative = 2;
  218. pcic_trapped = 0;
  219. *value = readl(pcic->pcic_config_space_data + (where&4));
  220. nop();
  221. if (pcic_trapped) {
  222. pcic_speculative = 0;
  223. restore_flags(flags);
  224. *value = ~0;
  225. return PCIBIOS_SUCCESSFUL;
  226. }
  227. pcic_speculative = 0;
  228. restore_flags(flags);
  229. return PCIBIOS_SUCCESSFUL;
  230. }
  231. static int pcic_write_config_byte(struct pci_dev *dev, int where, u8 value)
  232. {
  233. unsigned int v;
  234. pcic_read_config_dword(dev, where&~3, &v);
  235.         v = (v & ~(0xff << (8*(where&3)))) |
  236.             ((0xff&(unsigned)value) << (8*(where&3)));
  237. return pcic_write_config_dword(dev, where&~3, v);
  238. }
  239. static int pcic_write_config_word(struct pci_dev *dev, int where, u16 value)
  240. {
  241. unsigned int v;
  242. if (where&1) return PCIBIOS_BAD_REGISTER_NUMBER;
  243. pcic_read_config_dword(dev, where&~3, &v);
  244. v = (v & ~(0xffff << (8*(where&3)))) |
  245.     ((0xffff&(unsigned)value) << (8*(where&3)));
  246. return pcic_write_config_dword(dev, where&~3, v);
  247. }
  248. static int pcic_write_config_dword(struct pci_dev *dev, int where, u32 value)
  249. {
  250. unsigned char bus = dev->bus->number;
  251. unsigned char devfn = dev->devfn;
  252. struct linux_pcic *pcic;
  253. unsigned long flags;
  254. if (where&3) return PCIBIOS_BAD_REGISTER_NUMBER;
  255. if (bus != 0) return PCIBIOS_DEVICE_NOT_FOUND;
  256. pcic = &pcic0;
  257. save_and_cli(flags);
  258. writel(CONFIG_CMD(bus,devfn,where), pcic->pcic_config_space_addr);
  259. writel(value, pcic->pcic_config_space_data + (where&4));
  260. restore_flags(flags);
  261. return PCIBIOS_SUCCESSFUL;
  262. }
  263. static struct pci_ops pcic_ops = {
  264. pcic_read_config_byte,
  265. pcic_read_config_word,
  266. pcic_read_config_dword,
  267. pcic_write_config_byte,
  268. pcic_write_config_word,
  269. pcic_write_config_dword,
  270. };
  271. /*
  272.  * On sparc64 pcibios_init() calls pci_controller_probe().
  273.  * We want PCIC probed little ahead so that interrupt controller
  274.  * would be operational.
  275.  */
  276. int __init pcic_probe(void)
  277. {
  278. struct linux_pcic *pcic;
  279. struct linux_prom_registers regs[PROMREG_MAX];
  280. struct linux_pbm_info* pbm;
  281. char namebuf[64];
  282. int node;
  283. int err;
  284. if (pcic0_up) {
  285. prom_printf("PCIC: called twice!n");
  286. prom_halt();
  287. }
  288. pcic = &pcic0;
  289. node = prom_getchild (prom_root_node);
  290. node = prom_searchsiblings (node, "pci");
  291. if (node == 0)
  292. return -ENODEV;
  293. /*
  294.  * Map in PCIC register set, config space, and IO base
  295.  */
  296. err = prom_getproperty(node, "reg", (char*)regs, sizeof(regs));
  297. if (err == 0 || err == -1) {
  298. prom_printf("PCIC: Error, cannot get PCIC registers "
  299.     "from PROM.n");
  300. prom_halt();
  301. }
  302. pcic0_up = 1;
  303. pcic->pcic_res_regs.name = "pcic_registers";
  304. pcic->pcic_regs = (unsigned long)
  305.     ioremap(regs[0].phys_addr, regs[0].reg_size);
  306. if (!pcic->pcic_regs) {
  307. prom_printf("PCIC: Error, cannot map PCIC registers.n");
  308. prom_halt();
  309. }
  310. pcic->pcic_res_io.name = "pcic_io";
  311. if ((pcic->pcic_io = (unsigned long)
  312.     ioremap(regs[1].phys_addr, 0x10000)) == 0) {
  313. prom_printf("PCIC: Error, cannot map PCIC IO Base.n");
  314. prom_halt();
  315. }
  316. pcic->pcic_res_cfg_addr.name = "pcic_cfg_addr";
  317. if ((pcic->pcic_config_space_addr = (unsigned long)
  318.     ioremap(regs[2].phys_addr, regs[2].reg_size * 2)) == 0) {
  319. prom_printf("PCIC: Error, cannot map" 
  320.     "PCI Configuration Space Address.n");
  321. prom_halt();
  322. }
  323. /*
  324.  * Docs say three least significant bits in address and data
  325.  * must be the same. Thus, we need adjust size of data.
  326.  */
  327. pcic->pcic_res_cfg_data.name = "pcic_cfg_data";
  328. if ((pcic->pcic_config_space_data = (unsigned long)
  329.     ioremap(regs[3].phys_addr, regs[3].reg_size * 2)) == 0) {
  330. prom_printf("PCIC: Error, cannot map" 
  331.     "PCI Configuration Space Data.n");
  332. prom_halt();
  333. }
  334. pbm = &pcic->pbm;
  335. pbm->prom_node = node;
  336. prom_getstring(node, "name", namebuf, 63);  namebuf[63] = 0;
  337. strcpy(pbm->prom_name, namebuf);
  338. {
  339. extern volatile int t_nmi[1];
  340. extern int pcic_nmi_trap_patch[1];
  341. t_nmi[0] = pcic_nmi_trap_patch[0];
  342. t_nmi[1] = pcic_nmi_trap_patch[1];
  343. t_nmi[2] = pcic_nmi_trap_patch[2];
  344. t_nmi[3] = pcic_nmi_trap_patch[3];
  345. swift_flush_dcache();
  346. pcic_regs = pcic->pcic_regs;
  347. }
  348. prom_getstring(prom_root_node, "name", namebuf, 63);  namebuf[63] = 0;
  349. {
  350. struct pcic_sn2list *p;
  351. for (p = pcic_known_sysnames; p->sysname != NULL; p++) {
  352. if (strcmp(namebuf, p->sysname) == 0)
  353. break;
  354. }
  355. pcic->pcic_imap = p->intmap;
  356. pcic->pcic_imdim = p->mapdim;
  357. }
  358. if (pcic->pcic_imap == NULL) {
  359. /*
  360.  * We do not panic here for the sake of embedded systems.
  361.  */
  362. printk("PCIC: System %s is unknown, cannot route interruptsn",
  363.     namebuf);
  364. }
  365. return 0;
  366. }
  367. static void __init pcic_pbm_scan_bus(struct linux_pcic *pcic)
  368. {
  369. struct linux_pbm_info *pbm = &pcic->pbm;
  370. pbm->pci_bus = pci_scan_bus(pbm->pci_first_busno, &pcic_ops, pbm);
  371. #if 0 /* deadwood transplanted from sparc64 */
  372. pci_fill_in_pbm_cookies(pbm->pci_bus, pbm, pbm->prom_node);
  373. pci_record_assignments(pbm, pbm->pci_bus);
  374. pci_assign_unassigned(pbm, pbm->pci_bus);
  375. pci_fixup_irq(pbm, pbm->pci_bus);
  376. #endif
  377. }
  378. /*
  379.  * Main entry point from the PCI subsystem.
  380.  */
  381. void __init pcibios_init(void)
  382. {
  383. struct linux_pcic *pcic;
  384. /*
  385.  * PCIC should be initialized at start of the timer.
  386.  * So, here we report the presence of PCIC and do some magic passes.
  387.  */
  388. if(!pcic0_up)
  389. return;
  390. pcic = &pcic0;
  391. /*
  392.  *      Switch off IOTLB translation.
  393.  */
  394. writeb(PCI_DVMA_CONTROL_IOTLB_DISABLE, 
  395.        pcic->pcic_regs+PCI_DVMA_CONTROL);
  396. /*
  397.  *      Increase mapped size for PCI memory space (DMA access).
  398.  *      Should be done in that order (size first, address second).
  399.  *      Why we couldn't set up 4GB and forget about it? XXX
  400.  */
  401. writel(0xF0000000UL, pcic->pcic_regs+PCI_SIZE_0);
  402. writel(0+PCI_BASE_ADDRESS_SPACE_MEMORY, 
  403.        pcic->pcic_regs+PCI_BASE_ADDRESS_0);
  404. pcic_pbm_scan_bus(pcic);
  405. ebus_init();
  406. #ifdef CONFIG_SUN_JSFLASH
  407. jsflash_init();
  408. #endif
  409. }
  410. int pcic_present(void)
  411. {
  412. return pcic0_up;
  413. }
  414. static int __init pdev_to_pnode(struct linux_pbm_info *pbm, 
  415.     struct pci_dev *pdev)
  416. {
  417. struct linux_prom_pci_registers regs[PROMREG_MAX];
  418. int err;
  419. int node = prom_getchild(pbm->prom_node);
  420. while(node) {
  421. err = prom_getproperty(node, "reg", 
  422.        (char *)&regs[0], sizeof(regs));
  423. if(err != 0 && err != -1) {
  424. unsigned long devfn = (regs[0].which_io >> 8) & 0xff;
  425. if(devfn == pdev->devfn)
  426. return node;
  427. }
  428. node = prom_getsibling(node);
  429. }
  430. return 0;
  431. }
  432. static inline struct pcidev_cookie *pci_devcookie_alloc(void)
  433. {
  434. return kmalloc(sizeof(struct pcidev_cookie), GFP_ATOMIC);
  435. }
  436. static void pcic_map_pci_device(struct linux_pcic *pcic,
  437.     struct pci_dev *dev, int node)
  438. {
  439. char namebuf[64];
  440. unsigned long address;
  441. unsigned long flags;
  442. int j;
  443. if (node == 0 || node == -1) {
  444. strcpy(namebuf, "???");
  445. } else {
  446. prom_getstring(node, "name", namebuf, 63); namebuf[63] = 0;
  447. }
  448. for (j = 0; j < 6; j++) {
  449. address = dev->resource[j].start;
  450. if (address == 0) break; /* are sequential */
  451. flags = dev->resource[j].flags;
  452. if ((flags & IORESOURCE_IO) != 0) {
  453. if (address < 0x10000) {
  454. /*
  455.  * A device responds to I/O cycles on PCI.
  456.  * We generate these cycles with memory
  457.  * access into the fixed map (phys 0x30000000).
  458.  *
  459.  * Since a device driver does not want to
  460.  * do ioremap() before accessing PC-style I/O,
  461.  * we supply virtual, ready to access address.
  462.  *
  463.  * Ebus devices do not come here even if
  464.  * CheerIO makes a similar conversion.
  465.  * See ebus.c for details.
  466.  *
  467.  * Note that check_region()/request_region()
  468.  * work for these devices.
  469.  *
  470.  * XXX Neat trick, but it's a *bad* idea
  471.  * to shit into regions like that.
  472.  * What if we want to allocate one more
  473.  * PCI base address...
  474.  */
  475. dev->resource[j].start =
  476.     pcic->pcic_io + address;
  477. dev->resource[j].end = 1;  /* XXX */
  478. dev->resource[j].flags =
  479.     (flags & ~IORESOURCE_IO) | IORESOURCE_MEM;
  480. } else {
  481. /*
  482.  * OOPS... PCI Spec allows this. Sun does
  483.  * not have any devices getting above 64K
  484.  * so it must be user with a weird I/O
  485.  * board in a PCI slot. We must remap it
  486.  * under 64K but it is not done yet. XXX
  487.  */
  488. printk("PCIC: Skipping I/O space at 0x%lx,"
  489.     "this will Oops if a driver attaches;"
  490.     "device '%s' at %02x:%02x)n", address,
  491.     namebuf, dev->bus->number, dev->devfn);
  492. }
  493. }
  494. }
  495. }
  496. static void
  497. pcic_fill_irq(struct linux_pcic *pcic, struct pci_dev *dev, int node)
  498. {
  499. struct pcic_ca2irq *p;
  500. int i, ivec;
  501. char namebuf[64];
  502. if (node == 0 || node == -1) {
  503. strcpy(namebuf, "???");
  504. } else {
  505. prom_getstring(node, "name", namebuf, sizeof(namebuf));
  506. }
  507. if ((p = pcic->pcic_imap) == 0) {
  508. dev->irq = 0;
  509. return;
  510. }
  511. for (i = 0; i < pcic->pcic_imdim; i++) {
  512. if (p->busno == dev->bus->number && p->devfn == dev->devfn)
  513. break;
  514. p++;
  515. }
  516. if (i >= pcic->pcic_imdim) {
  517. printk("PCIC: device %s devfn %02x:%02x not found in %dn",
  518.     namebuf, dev->bus->number, dev->devfn, pcic->pcic_imdim);
  519. dev->irq = 0;
  520. return;
  521. }
  522. i = p->pin;
  523. if (i >= 0 && i < 4) {
  524. ivec = readw(pcic->pcic_regs+PCI_INT_SELECT_LO);
  525. dev->irq = ivec >> (i << 2) & 0xF;
  526. } else if (i >= 4 && i < 8) {
  527. ivec = readw(pcic->pcic_regs+PCI_INT_SELECT_HI);
  528. dev->irq = ivec >> ((i-4) << 2) & 0xF;
  529. } else { /* Corrupted map */
  530. printk("PCIC: BAD PIN %dn", i); for (;;) {}
  531. }
  532. /* P3 */ /* printk("PCIC: device %s pin %d ivec 0x%x irq %xn", namebuf, i, ivec, dev->irq); */
  533. /*
  534.  * dev->irq=0 means PROM did not bother to program the upper
  535.  * half of PCIC. This happens on JS-E with PROM 3.11, for instance.
  536.  */
  537. if (dev->irq == 0 || p->force) {
  538. if (p->irq == 0 || p->irq >= 15) { /* Corrupted map */
  539. printk("PCIC: BAD IRQ %dn", p->irq); for (;;) {}
  540. }
  541. printk("PCIC: setting irq %d at pin %d for device %02x:%02xn",
  542.     p->irq, p->pin, dev->bus->number, dev->devfn);
  543. dev->irq = p->irq;
  544. i = p->pin;
  545. if (i >= 4) {
  546. ivec = readw(pcic->pcic_regs+PCI_INT_SELECT_HI);
  547. ivec &= ~(0xF << ((i - 4) << 2));
  548. ivec |= p->irq << ((i - 4) << 2);
  549. writew(ivec, pcic->pcic_regs+PCI_INT_SELECT_HI);
  550. } else {
  551. ivec = readw(pcic->pcic_regs+PCI_INT_SELECT_LO);
  552. ivec &= ~(0xF << (i << 2));
  553. ivec |= p->irq << (i << 2);
  554. writew(ivec, pcic->pcic_regs+PCI_INT_SELECT_LO);
  555. }
  556.   }
  557. return;
  558. }
  559. /*
  560.  * Normally called from {do_}pci_scan_bus...
  561.  */
  562. void __init pcibios_fixup_bus(struct pci_bus *bus)
  563. {
  564. struct list_head *walk;
  565. int i, has_io, has_mem;
  566. unsigned short cmd;
  567. struct linux_pcic *pcic;
  568. /* struct linux_pbm_info* pbm = &pcic->pbm; */
  569. int node;
  570. struct pcidev_cookie *pcp;
  571. if (!pcic0_up) {
  572. printk("pcibios_fixup_bus: no PCICn");
  573. return;
  574. }
  575. pcic = &pcic0;
  576. /*
  577.  * Next crud is an equivalent of pbm = pcic_bus_to_pbm(bus);
  578.  */
  579. if (bus->number != 0) {
  580. printk("pcibios_fixup_bus: nonzero bus 0x%xn", bus->number);
  581. return;
  582. }
  583. walk = &bus->devices;
  584. for (walk = walk->next; walk != &bus->devices; walk = walk->next) {
  585. struct pci_dev *dev = pci_dev_b(walk);
  586. /*
  587.  * Comment from i386 branch:
  588.  *     There are buggy BIOSes that forget to enable I/O and memory
  589.  *     access to PCI devices. We try to fix this, but we need to
  590.  *     be sure that the BIOS didn't forget to assign an address
  591.  *     to the device. [mj]
  592.  * OBP is a case of such BIOS :-)
  593.  */
  594. has_io = has_mem = 0;
  595. for(i=0; i<6; i++) {
  596. unsigned long f = dev->resource[i].flags;
  597. if (f & IORESOURCE_IO) {
  598. has_io = 1;
  599. } else if (f & IORESOURCE_MEM)
  600. has_mem = 1;
  601. }
  602. pcic_read_config_word(dev, PCI_COMMAND, &cmd);
  603. if (has_io && !(cmd & PCI_COMMAND_IO)) {
  604. printk("PCIC: Enabling I/O for device %02x:%02xn",
  605. dev->bus->number, dev->devfn);
  606. cmd |= PCI_COMMAND_IO;
  607. pcic_write_config_word(dev, PCI_COMMAND, cmd);
  608. }
  609. if (has_mem && !(cmd & PCI_COMMAND_MEMORY)) {
  610. printk("PCIC: Enabling memory for device %02x:%02xn",
  611. dev->bus->number, dev->devfn);
  612. cmd |= PCI_COMMAND_MEMORY;
  613. pcic_write_config_word(dev, PCI_COMMAND, cmd);
  614. }    
  615. node = pdev_to_pnode(&pcic->pbm, dev);
  616. if(node == 0)
  617. node = -1;
  618. /* cookies */
  619. pcp = pci_devcookie_alloc();
  620. pcp->pbm = &pcic->pbm;
  621. pcp->prom_node = node;
  622. dev->sysdata = pcp;
  623. /* fixing I/O to look like memory */
  624. if ((dev->class>>16) != PCI_BASE_CLASS_BRIDGE)
  625. pcic_map_pci_device(pcic, dev, node);
  626. pcic_fill_irq(pcic, dev, node);
  627. }
  628. }
  629. /*
  630.  * pcic_pin_to_irq() is exported to ebus.c.
  631.  */
  632. unsigned int
  633. pcic_pin_to_irq(unsigned int pin, char *name)
  634. {
  635. struct linux_pcic *pcic = &pcic0;
  636. unsigned int irq;
  637. unsigned int ivec;
  638. if (pin < 4) {
  639. ivec = readw(pcic->pcic_regs+PCI_INT_SELECT_LO);
  640. irq = ivec >> (pin << 2) & 0xF;
  641. } else if (pin < 8) {
  642. ivec = readw(pcic->pcic_regs+PCI_INT_SELECT_HI);
  643. irq = ivec >> ((pin-4) << 2) & 0xF;
  644. } else { /* Corrupted map */
  645. printk("PCIC: BAD PIN %d FOR %sn", pin, name);
  646. for (;;) {} /* XXX Cannot panic properly in case of PROLL */
  647. }
  648. /* P3 */ /* printk("PCIC: dev %s pin %d ivec 0x%x irq %xn", name, pin, ivec, irq); */
  649. return irq;
  650. }
  651. /* Makes compiler happy */
  652. static volatile int pcic_timer_dummy;
  653. static void pcic_clear_clock_irq(void)
  654. {
  655. pcic_timer_dummy = readl(pcic0.pcic_regs+PCI_SYS_LIMIT);
  656. }
  657. static void pcic_timer_handler (int irq, void *h, struct pt_regs *regs)
  658. {
  659. pcic_clear_clock_irq();
  660. do_timer(regs);
  661. }
  662. #define USECS_PER_JIFFY  10000  /* We have 100HZ "standard" timer for sparc */
  663. #define TICK_TIMER_LIMIT ((100*1000000/4)/100)
  664. void __init pci_time_init(void)
  665. {
  666. struct linux_pcic *pcic = &pcic0;
  667. unsigned long v;
  668. int timer_irq, irq;
  669. /* A hack until do_gettimeofday prototype is moved to arch specific headers
  670.    and btfixupped. Patch do_gettimeofday with ba pci_do_gettimeofday; nop */
  671. ((unsigned int *)do_gettimeofday)[0] = 
  672.     0x10800000 | ((((unsigned long)pci_do_gettimeofday -
  673.      (unsigned long)do_gettimeofday) >> 2) & 0x003fffff);
  674. ((unsigned int *)do_gettimeofday)[1] = 0x01000000;
  675. BTFIXUPSET_CALL(bus_do_settimeofday, pci_do_settimeofday, BTFIXUPCALL_NORM);
  676. btfixup();
  677. writel (TICK_TIMER_LIMIT, pcic->pcic_regs+PCI_SYS_LIMIT);
  678. /* PROM should set appropriate irq */
  679. v = readb(pcic->pcic_regs+PCI_COUNTER_IRQ);
  680. timer_irq = PCI_COUNTER_IRQ_SYS(v);
  681. writel (PCI_COUNTER_IRQ_SET(timer_irq, 0),
  682. pcic->pcic_regs+PCI_COUNTER_IRQ);
  683. irq = request_irq(timer_irq, pcic_timer_handler,
  684.   (SA_INTERRUPT | SA_STATIC_ALLOC), "timer", NULL);
  685. if (irq) {
  686. prom_printf("time_init: unable to attach IRQ%dn", timer_irq);
  687. prom_halt();
  688. }
  689. __sti();
  690. }
  691. static __inline__ unsigned long do_gettimeoffset(void)
  692. {
  693. struct tasklet_struct *t;
  694. unsigned long offset = 0;
  695. /* 
  696.  * We devide all to 100
  697.  * to have microsecond resolution and to avoid overflow
  698.  */
  699. unsigned long count = 
  700.     readl(pcic0.pcic_regs+PCI_SYS_COUNTER) & ~PCI_SYS_COUNTER_OVERFLOW;
  701. count = ((count/100)*USECS_PER_JIFFY) / (TICK_TIMER_LIMIT/100);
  702. t = &bh_task_vec[TIMER_BH];
  703. if (test_bit(TASKLET_STATE_SCHED, &t->state))
  704. offset = 1000000;
  705. return offset + count;
  706. }
  707. extern volatile unsigned long wall_jiffies;
  708. static void pci_do_gettimeofday(struct timeval *tv)
  709. {
  710.   unsigned long flags;
  711. save_and_cli(flags);
  712. *tv = xtime;
  713. tv->tv_usec += do_gettimeoffset();
  714. /*
  715.  * xtime is atomically updated in timer_bh. The difference
  716.  * between jiffies and wall_jiffies is nonzero if the timer
  717.  * bottom half hasnt executed yet.
  718.  */
  719. if ((jiffies - wall_jiffies) != 0)
  720. tv->tv_usec += USECS_PER_JIFFY;
  721. restore_flags(flags);
  722. if (tv->tv_usec >= 1000000) {
  723. tv->tv_usec -= 1000000;
  724. tv->tv_sec++;
  725. }       
  726. }
  727. static void pci_do_settimeofday(struct timeval *tv)
  728. {
  729. cli();
  730. tv->tv_usec -= do_gettimeoffset();
  731. if(tv->tv_usec < 0) {
  732. tv->tv_usec += 1000000;
  733. tv->tv_sec--;
  734. }
  735. xtime = *tv;
  736. time_adjust = 0; /* stop active adjtime() */
  737. time_status |= STA_UNSYNC;
  738. time_maxerror = NTP_PHASE_LIMIT;
  739. time_esterror = NTP_PHASE_LIMIT;
  740. sti();
  741. }
  742. #if 0
  743. static void watchdog_reset() {
  744. writeb(0, pcic->pcic_regs+PCI_SYS_STATUS);
  745. }
  746. #endif
  747. /*
  748.  * Other archs parse arguments here.
  749.  */
  750. char * __init pcibios_setup(char *str)
  751. {
  752. return str;
  753. }
  754. /*
  755.  */
  756. void pcibios_update_resource(struct pci_dev *pdev, struct resource *res1,
  757.      struct resource *res2, int index)
  758. {
  759. }
  760. void pcibios_align_resource(void *data, struct resource *res,
  761.     unsigned long size, unsigned long align)
  762. {
  763. }
  764. int pcibios_enable_device(struct pci_dev *pdev, int mask)
  765. {
  766. return 0;
  767. }
  768. /*
  769.  * NMI
  770.  */
  771. void pcic_nmi(unsigned int pend, struct pt_regs *regs)
  772. {
  773. pend = flip_dword(pend);
  774. if (!pcic_speculative || (pend & PCI_SYS_INT_PENDING_PIO) == 0) {
  775. /*
  776.  * XXX On CP-1200 PCI #SERR may happen, we do not know
  777.  * what to do about it yet.
  778.  */
  779. printk("Aiee, NMI pend 0x%x pc 0x%x spec %d, hangingn",
  780.     pend, (int)regs->pc, pcic_speculative);
  781. for (;;) { }
  782. }
  783. pcic_speculative = 0;
  784. pcic_trapped = 1;
  785. regs->pc = regs->npc;
  786. regs->npc += 4;
  787. }
  788. static inline unsigned long get_irqmask(int irq_nr)
  789. {
  790. return 1 << irq_nr;
  791. }
  792. static inline char *pcic_irq_itoa(unsigned int irq)
  793. {
  794. static char buff[16];
  795. sprintf(buff, "%d", irq);
  796. return buff;
  797. }
  798. static void pcic_disable_irq(unsigned int irq_nr)
  799. {
  800. unsigned long mask, flags;
  801. mask = get_irqmask(irq_nr);
  802. save_and_cli(flags);
  803. writel(mask, pcic0.pcic_regs+PCI_SYS_INT_TARGET_MASK_SET);
  804. restore_flags(flags);
  805. }
  806. static void pcic_enable_irq(unsigned int irq_nr)
  807. {
  808. unsigned long mask, flags;
  809. mask = get_irqmask(irq_nr);
  810. save_and_cli(flags);
  811. writel(mask, pcic0.pcic_regs+PCI_SYS_INT_TARGET_MASK_CLEAR);
  812. restore_flags(flags);
  813. }
  814. static void pcic_clear_profile_irq(int cpu)
  815. {
  816. printk("PCIC: unimplemented code: FILE=%s LINE=%d", __FILE__, __LINE__);
  817. }
  818. static void pcic_load_profile_irq(int cpu, unsigned int limit)
  819. {
  820. printk("PCIC: unimplemented code: FILE=%s LINE=%d", __FILE__, __LINE__);
  821. }
  822. /* We assume the caller is local cli()'d when these are called, or else
  823.  * very bizarre behavior will result.
  824.  */
  825. static void pcic_disable_pil_irq(unsigned int pil)
  826. {
  827. writel(get_irqmask(pil), pcic0.pcic_regs+PCI_SYS_INT_TARGET_MASK_SET);
  828. }
  829. static void pcic_enable_pil_irq(unsigned int pil)
  830. {
  831. writel(get_irqmask(pil), pcic0.pcic_regs+PCI_SYS_INT_TARGET_MASK_CLEAR);
  832. }
  833. void __init sun4m_pci_init_IRQ(void)
  834. {
  835. BTFIXUPSET_CALL(enable_irq, pcic_enable_irq, BTFIXUPCALL_NORM);
  836. BTFIXUPSET_CALL(disable_irq, pcic_disable_irq, BTFIXUPCALL_NORM);
  837. BTFIXUPSET_CALL(enable_pil_irq, pcic_enable_pil_irq, BTFIXUPCALL_NORM);
  838. BTFIXUPSET_CALL(disable_pil_irq, pcic_disable_pil_irq, BTFIXUPCALL_NORM);
  839. BTFIXUPSET_CALL(clear_clock_irq, pcic_clear_clock_irq, BTFIXUPCALL_NORM);
  840. BTFIXUPSET_CALL(clear_profile_irq, pcic_clear_profile_irq, BTFIXUPCALL_NORM);
  841. BTFIXUPSET_CALL(load_profile_irq, pcic_load_profile_irq, BTFIXUPCALL_NORM);
  842. BTFIXUPSET_CALL(__irq_itoa, pcic_irq_itoa, BTFIXUPCALL_NORM);
  843. }
  844. int pcibios_assign_resource(struct pci_dev *pdev, int resource)
  845. {
  846. return -ENXIO;
  847. }
  848. /*
  849.  * This probably belongs here rather than ioport.c because
  850.  * we do not want this crud linked into SBus kernels.
  851.  * Also, think for a moment about likes of floppy.c that
  852.  * include architecture specific parts. They may want to redefine ins/outs.
  853.  *
  854.  * We do not use horroble macroses here because we want to
  855.  * advance pointer by sizeof(size).
  856.  */
  857. void outsb(unsigned long addr, const void *src, unsigned long count) {
  858. while (count) {
  859. count -= 1;
  860. writeb(*(const char *)src, addr);
  861. src += 1;
  862. addr += 1;
  863. }
  864. }
  865. void outsw(unsigned long addr, const void *src, unsigned long count) {
  866. while (count) {
  867. count -= 2;
  868. writew(*(const short *)src, addr);
  869. src += 2;
  870. addr += 2;
  871. }
  872. }
  873. void outsl(unsigned long addr, const void *src, unsigned long count) {
  874. while (count) {
  875. count -= 4;
  876. writel(*(const long *)src, addr);
  877. src += 4;
  878. addr += 4;
  879. }
  880. }
  881. void insb(unsigned long addr, void *dst, unsigned long count) {
  882. while (count) {
  883. count -= 1;
  884. *(unsigned char *)dst = readb(addr);
  885. dst += 1;
  886. addr += 1;
  887. }
  888. }
  889. void insw(unsigned long addr, void *dst, unsigned long count) {
  890. while (count) {
  891. count -= 2;
  892. *(unsigned short *)dst = readw(addr);
  893. dst += 2;
  894. addr += 2;
  895. }
  896. }
  897. void insl(unsigned long addr, void *dst, unsigned long count) {
  898. while (count) {
  899. count -= 4;
  900. /*
  901.  * XXX I am sure we are in for an unaligned trap here.
  902.  */
  903. *(unsigned long *)dst = readl(addr);
  904. dst += 4;
  905. addr += 4;
  906. }
  907. }
  908. #endif