ixdp2400.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. /*
  2. * arch/arm/mach-ixp2000/ixdp2400.c
  3. *
  4. * IXDP2400 platform support
  5. *
  6. * Original Author: Naeem Afzal <naeem.m.afzal@intel.com>
  7. * Maintainer: Deepak Saxena <dsaxena@plexity.net>
  8. *
  9. * Copyright (C) 2002 Intel Corp.
  10. * Copyright (C) 2003-2004 MontaVista Software, Inc.
  11. *
  12. * This program is free software; you can redistribute it and/or modify it
  13. * under the terms of the GNU General Public License as published by the
  14. * Free Software Foundation; either version 2 of the License, or (at your
  15. * option) any later version.
  16. */
  17. #include <linux/config.h>
  18. #include <linux/kernel.h>
  19. #include <linux/init.h>
  20. #include <linux/mm.h>
  21. #include <linux/sched.h>
  22. #include <linux/interrupt.h>
  23. #include <linux/device.h>
  24. #include <linux/bitops.h>
  25. #include <linux/pci.h>
  26. #include <linux/ioport.h>
  27. #include <linux/slab.h>
  28. #include <linux/delay.h>
  29. #include <asm/io.h>
  30. #include <asm/irq.h>
  31. #include <asm/pgtable.h>
  32. #include <asm/page.h>
  33. #include <asm/system.h>
  34. #include <asm/hardware.h>
  35. #include <asm/mach-types.h>
  36. #include <asm/mach/pci.h>
  37. #include <asm/mach/map.h>
  38. #include <asm/mach/irq.h>
  39. #include <asm/mach/time.h>
  40. #include <asm/mach/flash.h>
  41. #include <asm/mach/arch.h>
  42. /*************************************************************************
  43. * IXDP2400 timer tick
  44. *************************************************************************/
  45. static void __init ixdp2400_timer_init(void)
  46. {
  47. int numerator, denominator;
  48. int denom_array[] = {2, 4, 8, 16, 1, 2, 4, 8};
  49. numerator = (*(IXDP2400_CPLD_SYS_CLK_M) & 0xFF) *2;
  50. denominator = denom_array[(*(IXDP2400_CPLD_SYS_CLK_N) & 0x7)];
  51. ixp2000_init_time(((3125000 * numerator) / (denominator)) / 2);
  52. }
  53. static struct sys_timer ixdp2400_timer = {
  54. .init = ixdp2400_timer_init,
  55. .offset = ixp2000_gettimeoffset,
  56. };
  57. /*************************************************************************
  58. * IXDP2400 PCI
  59. *************************************************************************/
  60. void __init ixdp2400_pci_preinit(void)
  61. {
  62. ixp2000_reg_write(IXP2000_PCI_ADDR_EXT, 0x00100000);
  63. ixp2000_pci_preinit();
  64. }
  65. int ixdp2400_pci_setup(int nr, struct pci_sys_data *sys)
  66. {
  67. sys->mem_offset = 0xe0000000;
  68. ixp2000_pci_setup(nr, sys);
  69. return 1;
  70. }
  71. static int __init ixdp2400_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
  72. {
  73. if (ixdp2x00_master_npu()) {
  74. /*
  75. * Root bus devices. Slave NPU is only one with interrupt.
  76. * Everything else, we just return -1 b/c nothing else
  77. * on the root bus has interrupts.
  78. */
  79. if(!dev->bus->self) {
  80. if(dev->devfn == IXDP2X00_SLAVE_NPU_DEVFN )
  81. return IRQ_IXDP2400_INGRESS_NPU;
  82. return -1;
  83. }
  84. /*
  85. * Bridge behind the PMC slot.
  86. * NOTE: Only INTA from the PMC slot is routed. VERY BAD.
  87. */
  88. if(dev->bus->self->devfn == IXDP2X00_PMC_DEVFN &&
  89. dev->bus->parent->self->devfn == IXDP2X00_P2P_DEVFN &&
  90. !dev->bus->parent->self->bus->parent)
  91. return IRQ_IXDP2400_PMC;
  92. /*
  93. * Device behind the first bridge
  94. */
  95. if(dev->bus->self->devfn == IXDP2X00_P2P_DEVFN) {
  96. switch(dev->devfn) {
  97. case IXDP2400_MASTER_ENET_DEVFN:
  98. return IRQ_IXDP2400_ENET;
  99. case IXDP2400_MEDIA_DEVFN:
  100. return IRQ_IXDP2400_MEDIA_PCI;
  101. case IXDP2400_SWITCH_FABRIC_DEVFN:
  102. return IRQ_IXDP2400_SF_PCI;
  103. case IXDP2X00_PMC_DEVFN:
  104. return IRQ_IXDP2400_PMC;
  105. }
  106. }
  107. return -1;
  108. } else return IRQ_IXP2000_PCIB; /* Slave NIC interrupt */
  109. }
  110. static void ixdp2400_pci_postinit(void)
  111. {
  112. struct pci_dev *dev;
  113. if (ixdp2x00_master_npu()) {
  114. dev = pci_find_slot(1, IXDP2400_SLAVE_ENET_DEVFN);
  115. pci_remove_bus_device(dev);
  116. } else {
  117. dev = pci_find_slot(1, IXDP2400_MASTER_ENET_DEVFN);
  118. pci_remove_bus_device(dev);
  119. ixdp2x00_slave_pci_postinit();
  120. }
  121. }
  122. static struct hw_pci ixdp2400_pci __initdata = {
  123. .nr_controllers = 1,
  124. .setup = ixdp2400_pci_setup,
  125. .preinit = ixdp2400_pci_preinit,
  126. .postinit = ixdp2400_pci_postinit,
  127. .scan = ixp2000_pci_scan_bus,
  128. .map_irq = ixdp2400_pci_map_irq,
  129. };
  130. int __init ixdp2400_pci_init(void)
  131. {
  132. if (machine_is_ixdp2400())
  133. pci_common_init(&ixdp2400_pci);
  134. return 0;
  135. }
  136. subsys_initcall(ixdp2400_pci_init);
  137. void ixdp2400_init_irq(void)
  138. {
  139. ixdp2x00_init_irq(IXDP2400_CPLD_INT_STAT, IXDP2400_CPLD_INT_MASK, IXDP2400_NR_IRQS);
  140. }
  141. MACHINE_START(IXDP2400, "Intel IXDP2400 Development Platform")
  142. /* Maintainer: MontaVista Software, Inc. */
  143. .phys_ram = 0x00000000,
  144. .phys_io = IXP2000_UART_PHYS_BASE,
  145. .io_pg_offst = ((IXP2000_UART_VIRT_BASE) >> 18) & 0xfffc,
  146. .boot_params = 0x00000100,
  147. .map_io = ixdp2x00_map_io,
  148. .init_irq = ixdp2400_init_irq,
  149. .timer = &ixdp2400_timer,
  150. .init_machine = ixdp2x00_init_machine,
  151. MACHINE_END