floppy.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /*
  2. * linux/include/asm-arm/floppy.h
  3. *
  4. * Copyright (C) 1996-2000 Russell King
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * Note that we don't touch FLOPPY_DMA nor FLOPPY_IRQ here
  11. */
  12. #ifndef __ASM_ARM_FLOPPY_H
  13. #define __ASM_ARM_FLOPPY_H
  14. #define fd_outb(val,port) \
  15. do { \
  16. if ((port) == FD_DOR) \
  17. fd_setdor((val)); \
  18. else \
  19. outb((val),(port)); \
  20. } while(0)
  21. #define fd_inb(port) inb((port))
  22. #define fd_request_irq() request_irq(IRQ_FLOPPYDISK,floppy_interrupt,\
  23. SA_INTERRUPT|SA_SAMPLE_RANDOM,"floppy",NULL)
  24. #define fd_free_irq() free_irq(IRQ_FLOPPYDISK,NULL)
  25. #define fd_disable_irq() disable_irq(IRQ_FLOPPYDISK)
  26. #define fd_enable_irq() enable_irq(IRQ_FLOPPYDISK)
  27. #define fd_request_dma() request_dma(DMA_FLOPPY,"floppy")
  28. #define fd_free_dma() free_dma(DMA_FLOPPY)
  29. #define fd_disable_dma() disable_dma(DMA_FLOPPY)
  30. #define fd_enable_dma() enable_dma(DMA_FLOPPY)
  31. #define fd_clear_dma_ff() clear_dma_ff(DMA_FLOPPY)
  32. #define fd_set_dma_mode(mode) set_dma_mode(DMA_FLOPPY, (mode))
  33. #define fd_set_dma_addr(addr) set_dma_addr(DMA_FLOPPY, virt_to_bus((addr)))
  34. #define fd_set_dma_count(len) set_dma_count(DMA_FLOPPY, (len))
  35. #define fd_cacheflush(addr,sz)
  36. /* need to clean up dma.h */
  37. #define DMA_FLOPPYDISK DMA_FLOPPY
  38. /* Floppy_selects is the list of DOR's to select drive fd
  39. *
  40. * On initialisation, the floppy list is scanned, and the drives allocated
  41. * in the order that they are found. This is done by seeking the drive
  42. * to a non-zero track, and then restoring it to track 0. If an error occurs,
  43. * then there is no floppy drive present. [to be put back in again]
  44. */
  45. static unsigned char floppy_selects[2][4] =
  46. {
  47. { 0x10, 0x21, 0x23, 0x33 },
  48. { 0x10, 0x21, 0x23, 0x33 }
  49. };
  50. #define fd_setdor(dor) \
  51. do { \
  52. int new_dor = (dor); \
  53. if (new_dor & 0xf0) \
  54. new_dor = (new_dor & 0x0c) | floppy_selects[fdc][new_dor & 3]; \
  55. else \
  56. new_dor &= 0x0c; \
  57. outb(new_dor, FD_DOR); \
  58. } while (0)
  59. /*
  60. * Someday, we'll automatically detect which drives are present...
  61. */
  62. static inline void fd_scandrives (void)
  63. {
  64. #if 0
  65. int floppy, drive_count;
  66. fd_disable_irq();
  67. raw_cmd = &default_raw_cmd;
  68. raw_cmd->flags = FD_RAW_SPIN | FD_RAW_NEED_SEEK;
  69. raw_cmd->track = 0;
  70. raw_cmd->rate = ?;
  71. drive_count = 0;
  72. for (floppy = 0; floppy < 4; floppy ++) {
  73. current_drive = drive_count;
  74. /*
  75. * Turn on floppy motor
  76. */
  77. if (start_motor(redo_fd_request))
  78. continue;
  79. /*
  80. * Set up FDC
  81. */
  82. fdc_specify();
  83. /*
  84. * Tell FDC to recalibrate
  85. */
  86. output_byte(FD_RECALIBRATE);
  87. LAST_OUT(UNIT(floppy));
  88. /* wait for command to complete */
  89. if (!successful) {
  90. int i;
  91. for (i = drive_count; i < 3; i--)
  92. floppy_selects[fdc][i] = floppy_selects[fdc][i + 1];
  93. floppy_selects[fdc][3] = 0;
  94. floppy -= 1;
  95. } else
  96. drive_count++;
  97. }
  98. #else
  99. floppy_selects[0][0] = 0x10;
  100. floppy_selects[0][1] = 0x21;
  101. floppy_selects[0][2] = 0x23;
  102. floppy_selects[0][3] = 0x33;
  103. #endif
  104. }
  105. #define FDC1 (0x3f0)
  106. #define FLOPPY0_TYPE 4
  107. #define FLOPPY1_TYPE 4
  108. #define N_FDC 1
  109. #define N_DRIVE 4
  110. #define FLOPPY_MOTOR_MASK 0xf0
  111. #define CROSS_64KB(a,s) (0)
  112. /*
  113. * This allows people to reverse the order of
  114. * fd0 and fd1, in case their hardware is
  115. * strangely connected (as some RiscPCs
  116. * and A5000s seem to be).
  117. */
  118. static void driveswap(int *ints, int dummy, int dummy2)
  119. {
  120. floppy_selects[0][0] ^= floppy_selects[0][1];
  121. floppy_selects[0][1] ^= floppy_selects[0][0];
  122. floppy_selects[0][0] ^= floppy_selects[0][1];
  123. }
  124. #define EXTRA_FLOPPY_PARAMS ,{ "driveswap", &driveswap, NULL, 0, 0 }
  125. #endif