cpci405.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. /*
  2. * Board setup routines for the esd CPCI-405 cPCI Board.
  3. *
  4. * Copyright 2001-2006 esd electronic system design - hannover germany
  5. *
  6. * Authors: Matthias Fuchs
  7. * matthias.fuchs@esd-electronics.com
  8. * Stefan Roese
  9. * stefan.roese@esd-electronics.com
  10. *
  11. * This program is free software; you can redistribute it and/or modify it
  12. * under the terms of the GNU General Public License as published by the
  13. * Free Software Foundation; either version 2 of the License, or (at your
  14. * option) any later version.
  15. *
  16. */
  17. #include <linux/init.h>
  18. #include <linux/pci.h>
  19. #include <asm/system.h>
  20. #include <asm/pci-bridge.h>
  21. #include <asm/machdep.h>
  22. #include <asm/todc.h>
  23. #include <linux/serial.h>
  24. #include <linux/serial_core.h>
  25. #include <asm/ocp.h>
  26. #include <asm/ibm_ocp_pci.h>
  27. #include <platforms/4xx/ibm405gp.h>
  28. #ifdef CONFIG_GEN_RTC
  29. void *cpci405_nvram;
  30. #endif
  31. extern bd_t __res;
  32. /*
  33. * Some IRQs unique to CPCI-405.
  34. */
  35. int __init
  36. ppc405_map_irq(struct pci_dev *dev, unsigned char idsel, unsigned char pin)
  37. {
  38. static char pci_irq_table[][4] =
  39. /*
  40. * PCI IDSEL/INTPIN->INTLINE
  41. * A B C D
  42. */
  43. {
  44. {28, 29, 30, 27}, /* IDSEL 15 - cPCI slot 8 */
  45. {29, 30, 27, 28}, /* IDSEL 16 - cPCI slot 7 */
  46. {30, 27, 28, 29}, /* IDSEL 17 - cPCI slot 6 */
  47. {27, 28, 29, 30}, /* IDSEL 18 - cPCI slot 5 */
  48. {28, 29, 30, 27}, /* IDSEL 19 - cPCI slot 4 */
  49. {29, 30, 27, 28}, /* IDSEL 20 - cPCI slot 3 */
  50. {30, 27, 28, 29}, /* IDSEL 21 - cPCI slot 2 */
  51. };
  52. const long min_idsel = 15, max_idsel = 21, irqs_per_slot = 4;
  53. return PCI_IRQ_TABLE_LOOKUP;
  54. };
  55. /* The serial clock for the chip is an internal clock determined by
  56. * different clock speeds/dividers.
  57. * Calculate the proper input baud rate and setup the serial driver.
  58. */
  59. static void __init
  60. cpci405_early_serial_map(void)
  61. {
  62. u32 uart_div;
  63. int uart_clock;
  64. struct uart_port port;
  65. /* Calculate the serial clock input frequency
  66. *
  67. * The uart clock is the cpu frequency (provided in the board info
  68. * structure) divided by the external UART Divisor.
  69. */
  70. uart_div = ((mfdcr(DCRN_CHCR_BASE) & CHR0_UDIV) >> 1) + 1;
  71. uart_clock = __res.bi_procfreq / uart_div;
  72. /* Setup serial port access */
  73. memset(&port, 0, sizeof(port));
  74. #if defined(CONFIG_UART0_TTYS0)
  75. port.membase = (void*)UART0_IO_BASE;
  76. port.irq = UART0_INT;
  77. #else
  78. port.membase = (void*)UART1_IO_BASE;
  79. port.irq = UART1_INT;
  80. #endif
  81. port.uartclk = uart_clock;
  82. port.regshift = 0;
  83. port.iotype = UPIO_MEM;
  84. port.flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST;
  85. port.line = 0;
  86. if (early_serial_setup(&port) != 0) {
  87. printk("Early serial init of port 0 failed\n");
  88. }
  89. #if defined(CONFIG_UART0_TTYS0)
  90. port.membase = (void*)UART1_IO_BASE;
  91. port.irq = UART1_INT;
  92. #else
  93. port.membase = (void*)UART0_IO_BASE;
  94. port.irq = UART0_INT;
  95. #endif
  96. port.line = 1;
  97. if (early_serial_setup(&port) != 0) {
  98. printk("Early serial init of port 1 failed\n");
  99. }
  100. }
  101. void __init
  102. cpci405_setup_arch(void)
  103. {
  104. ppc4xx_setup_arch();
  105. ibm_ocp_set_emac(0, 0);
  106. cpci405_early_serial_map();
  107. #ifdef CONFIG_GEN_RTC
  108. TODC_INIT(TODC_TYPE_MK48T35,
  109. cpci405_nvram, cpci405_nvram, cpci405_nvram, 8);
  110. #endif
  111. }
  112. void __init
  113. bios_fixup(struct pci_controller *hose, struct pcil0_regs *pcip)
  114. {
  115. unsigned int bar_response, bar;
  116. /* Disable region first */
  117. out_le32((void *) &(pcip->pmm[0].ma), 0x00000000);
  118. /* PLB starting addr, PCI: 0x80000000 */
  119. out_le32((void *) &(pcip->pmm[0].la), 0x80000000);
  120. /* PCI start addr, 0x80000000 */
  121. out_le32((void *) &(pcip->pmm[0].pcila), PPC405_PCI_MEM_BASE);
  122. /* 512MB range of PLB to PCI */
  123. out_le32((void *) &(pcip->pmm[0].pciha), 0x00000000);
  124. /* Enable no pre-fetch, enable region */
  125. out_le32((void *) &(pcip->pmm[0].ma), ((0xffffffff -
  126. (PPC405_PCI_UPPER_MEM -
  127. PPC405_PCI_MEM_BASE)) | 0x01));
  128. /* Disable region one */
  129. out_le32((void *) &(pcip->pmm[1].ma), 0x00000000);
  130. out_le32((void *) &(pcip->pmm[1].la), 0x00000000);
  131. out_le32((void *) &(pcip->pmm[1].pcila), 0x00000000);
  132. out_le32((void *) &(pcip->pmm[1].pciha), 0x00000000);
  133. out_le32((void *) &(pcip->pmm[1].ma), 0x00000000);
  134. out_le32((void *) &(pcip->ptm1ms), 0x00000001);
  135. /* Disable region two */
  136. out_le32((void *) &(pcip->pmm[2].ma), 0x00000000);
  137. out_le32((void *) &(pcip->pmm[2].la), 0x00000000);
  138. out_le32((void *) &(pcip->pmm[2].pcila), 0x00000000);
  139. out_le32((void *) &(pcip->pmm[2].pciha), 0x00000000);
  140. out_le32((void *) &(pcip->pmm[2].ma), 0x00000000);
  141. out_le32((void *) &(pcip->ptm2ms), 0x00000000);
  142. out_le32((void *) &(pcip->ptm2la), 0x00000000);
  143. /* Zero config bars */
  144. for (bar = PCI_BASE_ADDRESS_1; bar <= PCI_BASE_ADDRESS_2; bar += 4) {
  145. early_write_config_dword(hose, hose->first_busno,
  146. PCI_FUNC(hose->first_busno), bar,
  147. 0x00000000);
  148. early_read_config_dword(hose, hose->first_busno,
  149. PCI_FUNC(hose->first_busno), bar,
  150. &bar_response);
  151. }
  152. }
  153. void __init
  154. cpci405_map_io(void)
  155. {
  156. ppc4xx_map_io();
  157. #ifdef CONFIG_GEN_RTC
  158. cpci405_nvram = ioremap(CPCI405_NVRAM_PADDR, CPCI405_NVRAM_SIZE);
  159. #endif
  160. }
  161. void __init
  162. platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
  163. unsigned long r6, unsigned long r7)
  164. {
  165. ppc4xx_init(r3, r4, r5, r6, r7);
  166. ppc_md.setup_arch = cpci405_setup_arch;
  167. ppc_md.setup_io_mappings = cpci405_map_io;
  168. #ifdef CONFIG_GEN_RTC
  169. ppc_md.time_init = todc_time_init;
  170. ppc_md.set_rtc_time = todc_set_rtc_time;
  171. ppc_md.get_rtc_time = todc_get_rtc_time;
  172. ppc_md.nvram_read_val = todc_direct_read_val;
  173. ppc_md.nvram_write_val = todc_direct_write_val;
  174. #endif
  175. }