floppy.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:4k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Architecture specific parts of the Floppy driver
  3.  *
  4.  * This file is subject to the terms and conditions of the GNU General Public
  5.  * License.  See the file "COPYING" in the main directory of this archive
  6.  * for more details.
  7.  *
  8.  * Copyright (C) 1995 - 2000 Ralf Baechle
  9.  */
  10. #ifndef _ASM_FLOPPY_H
  11. #define _ASM_FLOPPY_H
  12. struct fd_ops {
  13. unsigned char (*fd_inb)(unsigned int port);
  14. void (*fd_outb)(unsigned char value, unsigned int port);
  15. /*
  16.  * How to access the floppy DMA functions.
  17.  */
  18. void (*fd_enable_dma)(int channel);
  19. void (*fd_disable_dma)(int channel);
  20. int (*fd_request_dma)(int channel);
  21. void (*fd_free_dma)(int channel);
  22. void (*fd_clear_dma_ff)(int channel);
  23. void (*fd_set_dma_mode)(int channel, char mode);
  24. void (*fd_set_dma_addr)(int channel, unsigned int a);
  25. void (*fd_set_dma_count)(int channel, unsigned int count);
  26. int (*fd_get_dma_residue)(int channel);
  27. void (*fd_enable_irq)(int irq);
  28. void (*fd_disable_irq)(int irq);
  29. unsigned long (*fd_getfdaddr1)(void);
  30. unsigned long (*fd_dma_mem_alloc)(unsigned long size);
  31. void (*fd_dma_mem_free)(unsigned long addr, unsigned long size);
  32. unsigned long (*fd_drive_type)(unsigned long);
  33. };
  34. extern struct fd_ops *fd_ops;
  35. #define fd_inb(port) fd_ops->fd_inb(port)
  36. #define fd_outb(value,port) fd_ops->fd_outb(value,port)
  37. #define fd_enable_dma() fd_ops->fd_enable_dma(FLOPPY_DMA)
  38. #define fd_disable_dma() fd_ops->fd_disable_dma(FLOPPY_DMA)
  39. #define fd_request_dma() fd_ops->fd_request_dma(FLOPPY_DMA)
  40. #define fd_free_dma() fd_ops->fd_free_dma(FLOPPY_DMA)
  41. #define fd_clear_dma_ff() fd_ops->fd_clear_dma_ff(FLOPPY_DMA)
  42. #define fd_set_dma_mode(mode) fd_ops->fd_set_dma_mode(FLOPPY_DMA, mode)
  43. #define fd_set_dma_addr(addr) fd_ops->fd_set_dma_addr(FLOPPY_DMA, 
  44.                        virt_to_bus(addr))
  45. #define fd_set_dma_count(count) fd_ops->fd_set_dma_count(FLOPPY_DMA,count)
  46. #define fd_get_dma_residue() fd_ops->fd_get_dma_residue(FLOPPY_DMA)
  47. #define fd_enable_irq() fd_ops->fd_enable_irq(FLOPPY_IRQ)
  48. #define fd_disable_irq() fd_ops->fd_disable_irq(FLOPPY_IRQ)
  49. #define fd_request_irq() request_irq(FLOPPY_IRQ, floppy_interrupt, 
  50.             SA_INTERRUPT | SA_SAMPLE_RANDOM, 
  51.             "floppy", NULL)
  52. #define fd_free_irq() free_irq(FLOPPY_IRQ, NULL);
  53. #define fd_dma_mem_alloc(size) fd_ops->fd_dma_mem_alloc(size)
  54. #define fd_dma_mem_free(mem,size) fd_ops->fd_dma_mem_free(mem,size)
  55. #define fd_drive_type(n) fd_ops->fd_drive_type(n)
  56. #define fd_cacheflush(addr,size) dma_cache_wback_inv(addr,size)
  57. #define MAX_BUFFER_SECTORS 24
  58. /*
  59.  * And on Mips's the CMOS info fails also ...
  60.  *
  61.  * FIXME: This information should come from the ARC configuration tree
  62.  *        or whereever a particular machine has stored this ...
  63.  */
  64. #define FLOPPY0_TYPE  fd_drive_type(0)
  65. #define FLOPPY1_TYPE fd_drive_type(1)
  66. #define FDC1 fd_ops->fd_getfdaddr1();
  67. #define N_FDC 1 /* do you *really* want a second controller? */
  68. #define N_DRIVE 8
  69. #define FLOPPY_MOTOR_MASK 0xf0
  70. /*
  71.  * The DMA channel used by the floppy controller cannot access data at
  72.  * addresses >= 16MB
  73.  *
  74.  * Went back to the 1MB limit, as some people had problems with the floppy
  75.  * driver otherwise. It doesn't matter much for performance anyway, as most
  76.  * floppy accesses go through the track buffer.
  77.  *
  78.  * On MIPSes using vdma, this actually means that *all* transfers go thru
  79.  * the * track buffer since 0x1000000 is always smaller than KSEG0/1.
  80.  * Actually this needs to be a bit more complicated since the so much different
  81.  * hardware available with MIPS CPUs ...
  82.  */
  83. #define CROSS_64KB(a,s) ((unsigned long)(a)/K_64 != ((unsigned long)(a) + (s) - 1) / K_64)
  84. #define EXTRA_FLOPPY_PARAMS
  85. #endif /* _ASM_FLOPPY_H */