misc-spruce.c 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. /*
  2. * Misc. bootloader code for IBM Spruce reference platform
  3. *
  4. * Authors: Johnnie Peters <jpeters@mvista.com>
  5. * Matt Porter <mporter@mvista.com>
  6. *
  7. * Derived from arch/ppc/boot/prep/misc.c
  8. *
  9. * 2000-2001 (c) MontaVista, Software, Inc. This file is licensed under
  10. * the terms of the GNU General Public License version 2. This program
  11. * is licensed "as is" without any warranty of any kind, whether express
  12. * or implied.
  13. */
  14. #include <linux/types.h>
  15. #include <linux/pci.h>
  16. #include <asm/bootinfo.h>
  17. extern unsigned long decompress_kernel(unsigned long load_addr, int num_words,
  18. unsigned long cksum);
  19. /* Define some important locations of the Spruce. */
  20. #define SPRUCE_PCI_CONFIG_ADDR 0xfec00000
  21. #define SPRUCE_PCI_CONFIG_DATA 0xfec00004
  22. /* PCI configuration space access routines. */
  23. unsigned int *pci_config_address = (unsigned int *)SPRUCE_PCI_CONFIG_ADDR;
  24. unsigned char *pci_config_data = (unsigned char *)SPRUCE_PCI_CONFIG_DATA;
  25. void cpc700_pcibios_read_config_byte(unsigned char bus, unsigned char dev_fn,
  26. unsigned char offset, unsigned char *val)
  27. {
  28. out_le32(pci_config_address,
  29. (((bus & 0xff)<<16) | (dev_fn<<8) | (offset&0xfc) | 0x80000000));
  30. *val= (in_le32((unsigned *)pci_config_data) >> (8 * (offset & 3))) & 0xff;
  31. }
  32. void cpc700_pcibios_write_config_byte(unsigned char bus, unsigned char dev_fn,
  33. unsigned char offset, unsigned char val)
  34. {
  35. out_le32(pci_config_address,
  36. (((bus & 0xff)<<16) | (dev_fn<<8) | (offset&0xfc) | 0x80000000));
  37. out_8(pci_config_data + (offset&3), val);
  38. }
  39. void cpc700_pcibios_read_config_word(unsigned char bus, unsigned char dev_fn,
  40. unsigned char offset, unsigned short *val)
  41. {
  42. out_le32(pci_config_address,
  43. (((bus & 0xff)<<16) | (dev_fn<<8) | (offset&0xfc) | 0x80000000));
  44. *val= in_le16((unsigned short *)(pci_config_data + (offset&3)));
  45. }
  46. void cpc700_pcibios_write_config_word(unsigned char bus, unsigned char dev_fn,
  47. unsigned char offset, unsigned short val)
  48. {
  49. out_le32(pci_config_address,
  50. (((bus & 0xff)<<16) | (dev_fn<<8) | (offset&0xfc) | 0x80000000));
  51. out_le16((unsigned short *)(pci_config_data + (offset&3)), val);
  52. }
  53. void cpc700_pcibios_read_config_dword(unsigned char bus, unsigned char dev_fn,
  54. unsigned char offset, unsigned int *val)
  55. {
  56. out_le32(pci_config_address,
  57. (((bus & 0xff)<<16) | (dev_fn<<8) | (offset&0xfc) | 0x80000000));
  58. *val= in_le32((unsigned *)pci_config_data);
  59. }
  60. void cpc700_pcibios_write_config_dword(unsigned char bus, unsigned char dev_fn,
  61. unsigned char offset, unsigned int val)
  62. {
  63. out_le32(pci_config_address,
  64. (((bus & 0xff)<<16) | (dev_fn<<8) | (offset&0xfc) | 0x80000000));
  65. out_le32((unsigned *)pci_config_data, val);
  66. }
  67. #define PCNET32_WIO_RDP 0x10
  68. #define PCNET32_WIO_RAP 0x12
  69. #define PCNET32_WIO_RESET 0x14
  70. #define PCNET32_DWIO_RDP 0x10
  71. #define PCNET32_DWIO_RAP 0x14
  72. #define PCNET32_DWIO_RESET 0x18
  73. /* Processor interface config register access */
  74. #define PIFCFGADDR 0xff500000
  75. #define PIFCFGDATA 0xff500004
  76. #define PLBMIFOPT 0x18 /* PLB Master Interface Options */
  77. #define MEM_MBEN 0x24
  78. #define MEM_TYPE 0x28
  79. #define MEM_B1SA 0x3c
  80. #define MEM_B1EA 0x5c
  81. #define MEM_B2SA 0x40
  82. #define MEM_B2EA 0x60
  83. unsigned long
  84. get_mem_size(void)
  85. {
  86. int loop;
  87. unsigned long mem_size = 0;
  88. unsigned long mem_mben;
  89. unsigned long mem_type;
  90. unsigned long mem_start;
  91. unsigned long mem_end;
  92. volatile int *mem_addr = (int *)0xff500008;
  93. volatile int *mem_data = (int *)0xff50000c;
  94. /* Get the size of memory from the memory controller. */
  95. *mem_addr = MEM_MBEN;
  96. asm("sync");
  97. mem_mben = *mem_data;
  98. asm("sync");
  99. for(loop = 0; loop < 1000; loop++);
  100. *mem_addr = MEM_TYPE;
  101. asm("sync");
  102. mem_type = *mem_data;
  103. asm("sync");
  104. for(loop = 0; loop < 1000; loop++);
  105. *mem_addr = MEM_TYPE;
  106. /* Confirm bank 1 has DRAM memory */
  107. if ((mem_mben & 0x40000000) &&
  108. ((mem_type & 0x30000000) == 0x10000000)) {
  109. *mem_addr = MEM_B1SA;
  110. asm("sync");
  111. mem_start = *mem_data;
  112. asm("sync");
  113. for(loop = 0; loop < 1000; loop++);
  114. *mem_addr = MEM_B1EA;
  115. asm("sync");
  116. mem_end = *mem_data;
  117. asm("sync");
  118. for(loop = 0; loop < 1000; loop++);
  119. mem_size = mem_end - mem_start + 0x100000;
  120. }
  121. /* Confirm bank 2 has DRAM memory */
  122. if ((mem_mben & 0x20000000) &&
  123. ((mem_type & 0xc000000) == 0x4000000)) {
  124. *mem_addr = MEM_B2SA;
  125. asm("sync");
  126. mem_start = *mem_data;
  127. asm("sync");
  128. for(loop = 0; loop < 1000; loop++);
  129. *mem_addr = MEM_B2EA;
  130. asm("sync");
  131. mem_end = *mem_data;
  132. asm("sync");
  133. for(loop = 0; loop < 1000; loop++);
  134. mem_size += mem_end - mem_start + 0x100000;
  135. }
  136. return mem_size;
  137. }
  138. unsigned long
  139. load_kernel(unsigned long load_addr, int num_words, unsigned long cksum,
  140. void *ign1, void *ign2)
  141. {
  142. int csr0;
  143. int csr_id;
  144. int pci_devfn;
  145. int found_multi = 0;
  146. unsigned short vendor;
  147. unsigned short device;
  148. unsigned short command;
  149. unsigned char header_type;
  150. unsigned int bar0;
  151. volatile int *pif_addr = (int *)0xff500000;
  152. volatile int *pif_data = (int *)0xff500004;
  153. /*
  154. * Gah, these firmware guys need to learn that hardware
  155. * byte swapping is evil! Disable all hardware byte
  156. * swapping so it doesn't hurt anyone.
  157. */
  158. *pif_addr = PLBMIFOPT;
  159. asm("sync");
  160. *pif_data = 0x00000000;
  161. asm("sync");
  162. /* Search out and turn off the PcNet ethernet boot device. */
  163. for (pci_devfn = 1; pci_devfn < 0xff; pci_devfn++) {
  164. if (PCI_FUNC(pci_devfn) && !found_multi)
  165. continue;
  166. cpc700_pcibios_read_config_byte(0, pci_devfn,
  167. PCI_HEADER_TYPE, &header_type);
  168. if (!PCI_FUNC(pci_devfn))
  169. found_multi = header_type & 0x80;
  170. cpc700_pcibios_read_config_word(0, pci_devfn, PCI_VENDOR_ID,
  171. &vendor);
  172. if (vendor != 0xffff) {
  173. cpc700_pcibios_read_config_word(0, pci_devfn,
  174. PCI_DEVICE_ID, &device);
  175. /* If this PCI device is the Lance PCNet board then turn it off */
  176. if ((vendor == PCI_VENDOR_ID_AMD) &&
  177. (device == PCI_DEVICE_ID_AMD_LANCE)) {
  178. /* Turn on I/O Space on the board. */
  179. cpc700_pcibios_read_config_word(0, pci_devfn,
  180. PCI_COMMAND, &command);
  181. command |= 0x1;
  182. cpc700_pcibios_write_config_word(0, pci_devfn,
  183. PCI_COMMAND, command);
  184. /* Get the I/O space address */
  185. cpc700_pcibios_read_config_dword(0, pci_devfn,
  186. PCI_BASE_ADDRESS_0, &bar0);
  187. bar0 &= 0xfffffffe;
  188. /* Reset the PCNet Board */
  189. inl (bar0+PCNET32_DWIO_RESET);
  190. inw (bar0+PCNET32_WIO_RESET);
  191. /* First do a work oriented read of csr0. If the value is
  192. * 4 then this is the correct mode to access the board.
  193. * If not try a double word ortiented read.
  194. */
  195. outw(0, bar0 + PCNET32_WIO_RAP);
  196. csr0 = inw(bar0 + PCNET32_WIO_RDP);
  197. if (csr0 == 4) {
  198. /* Check the Chip id register */
  199. outw(88, bar0 + PCNET32_WIO_RAP);
  200. csr_id = inw(bar0 + PCNET32_WIO_RDP);
  201. if (csr_id) {
  202. /* This is the valid mode - set the stop bit */
  203. outw(0, bar0 + PCNET32_WIO_RAP);
  204. outw(csr0, bar0 + PCNET32_WIO_RDP);
  205. }
  206. } else {
  207. outl(0, bar0 + PCNET32_DWIO_RAP);
  208. csr0 = inl(bar0 + PCNET32_DWIO_RDP);
  209. if (csr0 == 4) {
  210. /* Check the Chip id register */
  211. outl(88, bar0 + PCNET32_WIO_RAP);
  212. csr_id = inl(bar0 + PCNET32_WIO_RDP);
  213. if (csr_id) {
  214. /* This is the valid mode - set the stop bit*/
  215. outl(0, bar0 + PCNET32_WIO_RAP);
  216. outl(csr0, bar0 + PCNET32_WIO_RDP);
  217. }
  218. }
  219. }
  220. }
  221. }
  222. }
  223. return decompress_kernel(load_addr, num_words, cksum);
  224. }