alarmProcessingDataOperation.c 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. /*
  2. * arch/arm/mach-orion5x/ts78xx-setup.c
  3. *
  4. * Maintainer: Alexander Clouter <alex@digriz.org.uk>
  5. *
  6. * This file is licensed under the terms of the GNU General Public
  7. * License version 2. This program is licensed "as is" without any
  8. * warranty of any kind, whether express or implied.
  9. */
  10. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  11. #include <linux/kernel.h>
  12. #include <linux/init.h>
  13. #include <linux/sysfs.h>
  14. #include <linux/platform_device.h>
  15. #include <linux/mv643xx_eth.h>
  16. #include <linux/ata_platform.h>
  17. #include <linux/m48t86.h>
  18. #include <linux/mtd/nand.h>
  19. #include <linux/mtd/partitions.h>
  20. #include <linux/timeriomem-rng.h>
  21. #include <asm/mach-types.h>
  22. #include <asm/mach/arch.h>
  23. #include <asm/mach/map.h>
  24. #include <mach/orion5x.h>
  25. #include "common.h"
  26. #include "mpp.h"
  27. #include "ts78xx-fpga.h"
  28. /*****************************************************************************
  29. * TS-78xx Info
  30. ****************************************************************************/
  31. /*
  32. * FPGA - lives where the PCI bus would be at ORION5X_PCI_MEM_PHYS_BASE
  33. */
  34. #define TS78XX_FPGA_REGS_PHYS_BASE 0xe8000000
  35. #define TS78XX_FPGA_REGS_VIRT_BASE IOMEM(0xff900000)
  36. #define TS78XX_FPGA_REGS_SIZE SZ_1M
  37. static struct ts78xx_fpga_data ts78xx_fpga = {
  38. .id = 0,
  39. .state = 1,
  40. /* .supports = ... - populated by ts78xx_fpga_supports() */
  41. };
  42. /*****************************************************************************
  43. * I/O Address Mapping
  44. ****************************************************************************/
  45. static struct map_desc ts78xx_io_desc[] __initdata = {
  46. {
  47. .virtual = (unsigned long)TS78XX_FPGA_REGS_VIRT_BASE,
  48. .pfn = __phys_to_pfn(TS78XX_FPGA_REGS_PHYS_BASE),
  49. .length = TS78XX_FPGA_REGS_SIZE,
  50. .type = MT_DEVICE,
  51. },
  52. };
  53. void __init ts78xx_map_io(void)
  54. {
  55. orion5x_map_io();
  56. iotable_init(ts78xx_io_desc, ARRAY_SIZE(ts78xx_io_desc));
  57. }
  58. /*****************************************************************************
  59. * Ethernet
  60. ****************************************************************************/
  61. static struct mv643xx_eth_platform_data ts78xx_eth_data = {
  62. .phy_addr = MV643XX_ETH_PHY_ADDR(0),
  63. };
  64. /*****************************************************************************
  65. * SATA
  66. ****************************************************************************/
  67. static struct mv_sata_platform_data ts78xx_sata_data = {
  68. .n_ports = 2,
  69. };
  70. /*****************************************************************************
  71. * RTC M48T86 - nicked^Wborrowed from arch/arm/mach-ep93xx/ts72xx.c
  72. ****************************************************************************/
  73. #define TS_RTC_CTRL (TS78XX_FPGA_REGS_VIRT_BASE + 0x808)
  74. #define TS_RTC_DATA (TS78XX_FPGA_REGS_VIRT_BASE + 0x80c)
  75. static unsigned char ts78xx_ts_rtc_readbyte(unsigned long addr)
  76. {
  77. writeb(addr, TS_RTC_CTRL);
  78. return readb(TS_RTC_DATA);
  79. }
  80. static void ts78xx_ts_rtc_writebyte(unsigned char value, unsigned long addr)
  81. {
  82. writeb(addr, TS_RTC_CTRL);
  83. writeb(value, TS_RTC_DATA);
  84. }
  85. static struct m48t86_ops ts78xx_ts_rtc_ops = {
  86. .readbyte = ts78xx_ts_rtc_readbyte,
  87. .writebyte = ts78xx_ts_rtc_writebyte,
  88. };
  89. static struct platform_device ts78xx_ts_rtc_device = {
  90. .name = "rtc-m48t86",
  91. .id = -1,
  92. .dev = {
  93. .platform_data = &ts78xx_ts_rtc_ops,
  94. },
  95. .num_resources = 0,
  96. };
  97. /*
  98. * TS uses some of the user storage space on the RTC chip so see if it is
  99. * present; as it's an optional feature at purchase time and not all boards
  100. * will have it present
  101. *
  102. * I've used the method TS use in their rtc7800.c example for the detection
  103. *
  104. * TODO: track down a guinea pig without an RTC to see if we can work out a
  105. * better RTC detection routine
  106. */
  107. static int ts78xx_ts_rtc_load(void)
  108. {
  109. int rc;
  110. unsigned char tmp_rtc0, tmp_rtc1;
  111. tmp_rtc0 = ts78xx_ts_rtc_readbyte(126);
  112. tmp_rtc1 = ts78xx_ts_rtc_readbyte(127);
  113. ts78xx_ts_rtc_writebyte(0x00, 126);
  114. ts78xx_ts_rtc_writebyte(0x55, 127);
  115. if (ts78xx_ts_rtc_readbyte(127) == 0x55) {
  116. ts78xx_ts_rtc_writebyte(0xaa, 127);
  117. if (ts78xx_ts_rtc_readbyte(127) == 0xaa
  118. && ts78xx_ts_rtc_readbyte(126) == 0x00) {
  119. ts78xx_ts_rtc_writebyte(tmp_rtc0, 126);
  120. ts78xx_ts_rtc_writebyte(tmp_rtc1, 127);
  121. if (ts78xx_fpga.supports.ts_rtc.init == 0) {
  122. rc = platform_device_register(&ts78xx_ts_rtc_device);
  123. if (!rc)
  124. ts78xx_fpga.supports.ts_rtc.init = 1;
  125. } else
  126. rc = platform_device_add(&ts78xx_ts_rtc_device);
  127. if (rc)
  128. pr_info("RTC could not be registered: %d\n",
  129. rc);
  130. return rc;
  131. }
  132. }
  133. pr_info("RTC not found\n");
  134. return -ENODEV;
  135. };
  136. static void ts78xx_ts_rtc_unload(void)
  137. {
  138. platform_device_del(&ts78xx_ts_rtc_device);
  139. }
  140. /*****************************************************************************
  141. * NAND Flash
  142. ****************************************************************************/
  143. #define TS_NAND_CTRL (TS78XX_FPGA_REGS_VIRT_BASE + 0x800) /* VIRT */
  144. #define TS_NAND_DATA (TS78XX_FPGA_REGS_PHYS_BASE + 0x804) /* PHYS */
  145. /*
  146. * hardware specific access to control-lines
  147. *
  148. * ctrl:
  149. * NAND_NCE: bit 0 -> bit 2
  150. * NAND_CLE: bit 1 -> bit 1
  151. * NAND_ALE: bit 2 -> bit 0
  152. */
  153. static void ts78xx_ts_nand_cmd_ctrl(struct mtd_info *mtd, int cmd,
  154. unsigned int ctrl)
  155. {
  156. struct nand_chip *this = mtd->priv;
  157. if (ctrl & NAND_CTRL_CHANGE) {
  158. unsigned char bits;
  159. bits = (ctrl & NAND_NCE) << 2;
  160. bits |= ctrl & NAND_CLE;
  161. bits |= (ctrl & NAND_ALE) >> 2;
  162. writeb((readb(TS_NAND_CTRL) & ~0x7) | bits, TS_NAND_CTRL);
  163. }