platform.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /*
  2. * include/asm-arm/arch-ixp2000/platform.h
  3. *
  4. * Various bits of code used by platform-level code.
  5. *
  6. * Author: Deepak Saxena <dsaxena@plexity.net>
  7. *
  8. * Copyright 2004 (c) MontaVista Software, Inc.
  9. *
  10. * This file is licensed under the terms of the GNU General Public
  11. * License version 2. This program is licensed "as is" without any
  12. * warranty of any kind, whether express or implied.
  13. */
  14. #ifndef __ASSEMBLY__
  15. /*
  16. * The IXP2400 B0 silicon contains an erratum (#66) that causes writes
  17. * to on-chip I/O register to not complete fully. What this means is
  18. * that if you have a write to on-chip I/O followed by a back-to-back
  19. * read or write, the first write will happen twice. OR...if it's
  20. * not a back-to-back transaction, the read or write will generate
  21. * incorrect data.
  22. *
  23. * The official work around for this is to set the on-chip I/O regions
  24. * as XCB=101 and then force a read-back from the register.
  25. *
  26. */
  27. #if defined(CONFIG_ARCH_ENP2611) || defined(CONFIG_ARCH_IXDP2400) || defined(CONFIG_ARCH_IXDP2401)
  28. #include <asm/system.h> /* Pickup local_irq_ functions */
  29. static inline void ixp2000_reg_write(volatile unsigned long *reg, unsigned long val)
  30. {
  31. volatile unsigned long dummy;
  32. unsigned long flags;
  33. local_irq_save(flags);
  34. *reg = val;
  35. barrier();
  36. dummy = *reg;
  37. local_irq_restore(flags);
  38. }
  39. #else
  40. #define ixp2000_reg_write(reg, val) (*reg = val)
  41. #endif /* IXDP2400 || IXDP2401 */
  42. /*
  43. * Boards may multiplex different devices on the 2nd channel of
  44. * the slowport interface that each need different configuration
  45. * settings. For example, the IXDP2400 uses channel 2 on the interface
  46. * to access the CPLD, the switch fabric card, and the media card. Each
  47. * one needs a different mode so drivers must save/restore the mode
  48. * before and after each operation.
  49. *
  50. * acquire_slowport(&your_config);
  51. * ...
  52. * do slowport operations
  53. * ...
  54. * release_slowport();
  55. *
  56. * Note that while you have the slowport, you are holding a spinlock,
  57. * so your code should be written as if you explicitly acquired a lock.
  58. *
  59. * The configuration only affects device 2 on the slowport, so the
  60. * MTD map driver does not acquire/release the slowport.
  61. */
  62. struct slowport_cfg {
  63. unsigned long CCR; /* Clock divide */
  64. unsigned long WTC; /* Write Timing Control */
  65. unsigned long RTC; /* Read Timing Control */
  66. unsigned long PCR; /* Protocol Control Register */
  67. unsigned long ADC; /* Address/Data Width Control */
  68. };
  69. void ixp2000_acquire_slowport(struct slowport_cfg *, struct slowport_cfg *);
  70. void ixp2000_release_slowport(struct slowport_cfg *);
  71. /*
  72. * IXP2400 A0/A1 and IXP2800 A0/A1/A2 have broken slowport that requires
  73. * tweaking of addresses in the MTD driver.
  74. */
  75. static inline unsigned ixp2000_has_broken_slowport(void)
  76. {
  77. unsigned long id = *IXP2000_PROD_ID;
  78. unsigned long id_prod = id & (IXP2000_MAJ_PROD_TYPE_MASK |
  79. IXP2000_MIN_PROD_TYPE_MASK);
  80. return (((id_prod ==
  81. /* fixed in IXP2400-B0 */
  82. (IXP2000_MAJ_PROD_TYPE_IXP2000 |
  83. IXP2000_MIN_PROD_TYPE_IXP2400)) &&
  84. ((id & IXP2000_MAJ_REV_MASK) == 0)) ||
  85. ((id_prod ==
  86. /* fixed in IXP2800-B0 */
  87. (IXP2000_MAJ_PROD_TYPE_IXP2000 |
  88. IXP2000_MIN_PROD_TYPE_IXP2800)) &&
  89. ((id & IXP2000_MAJ_REV_MASK) == 0)) ||
  90. ((id_prod ==
  91. /* fixed in IXP2850-B0 */
  92. (IXP2000_MAJ_PROD_TYPE_IXP2000 |
  93. IXP2000_MIN_PROD_TYPE_IXP2850)) &&
  94. ((id & IXP2000_MAJ_REV_MASK) == 0)));
  95. }
  96. static inline unsigned int ixp2000_has_flash(void)
  97. {
  98. return ((*IXP2000_STRAP_OPTIONS) & (CFG_BOOT_PROM));
  99. }
  100. static inline unsigned int ixp2000_is_pcimaster(void)
  101. {
  102. return ((*IXP2000_STRAP_OPTIONS) & (CFG_PCI_BOOT_HOST));
  103. }
  104. void ixp2000_map_io(void);
  105. void ixp2000_uart_init(void);
  106. void ixp2000_init_irq(void);
  107. void ixp2000_init_time(unsigned long);
  108. unsigned long ixp2000_gettimeoffset(void);
  109. struct pci_sys_data;
  110. u32 *ixp2000_pci_config_addr(unsigned int bus, unsigned int devfn, int where);
  111. void ixp2000_pci_preinit(void);
  112. int ixp2000_pci_setup(int, struct pci_sys_data*);
  113. struct pci_bus* ixp2000_pci_scan_bus(int, struct pci_sys_data*);
  114. int ixp2000_pci_read_config(struct pci_bus*, unsigned int, int, int, u32 *);
  115. int ixp2000_pci_write_config(struct pci_bus*, unsigned int, int, int, u32);
  116. /*
  117. * Several of the IXP2000 systems have banked flash so we need to extend the
  118. * flash_platform_data structure with some private pointers
  119. */
  120. struct ixp2000_flash_data {
  121. struct flash_platform_data *platform_data;
  122. int nr_banks;
  123. unsigned long (*bank_setup)(unsigned long);
  124. };
  125. struct ixp2000_i2c_pins {
  126. unsigned long sda_pin;
  127. unsigned long scl_pin;
  128. };
  129. #endif /* !__ASSEMBLY__ */