oldlatches.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/kernel/oldlatches.c
  3.  *
  4.  *  Copyright (C) David Alan Gilbert 1995/1996,2000
  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.  *  Support for the latches on the old Archimedes which control the floppy,
  11.  *  hard disc and printer
  12.  */
  13. #include <linux/module.h>
  14. #include <linux/kernel.h>
  15. #include <linux/init.h>
  16. #include <linux/sched.h>
  17. #include <asm/io.h>
  18. #include <asm/hardware.h>
  19. #include <asm/mach-types.h>
  20. #include <asm/arch/oldlatches.h>
  21. static unsigned char latch_a_copy;
  22. static unsigned char latch_b_copy;
  23. /* newval=(oldval & ~mask)|newdata */
  24. void oldlatch_aupdate(unsigned char mask,unsigned char newdata)
  25. {
  26. if (machine_is_archimedes()) {
  27. unsigned long flags;
  28. local_save_flags(flags);
  29. latch_a_copy = (latch_a_copy & ~mask) | newdata;
  30. __raw_writeb(latch_a_copy, LATCHA_BASE);
  31. local_restore_flags(flags);
  32. printk("Latch: A = 0x%02xn", latch_a_copy);
  33. } else
  34. BUG();
  35. }
  36. /* newval=(oldval & ~mask)|newdata */
  37. void oldlatch_bupdate(unsigned char mask,unsigned char newdata)
  38. {
  39. if (machine_is_archimedes()) {
  40. unsigned long flags;
  41. local_save_flags(flags);
  42. latch_b_copy = (latch_b_copy & ~mask) | newdata;
  43. __raw_writeb(latch_b_copy, LATCHB_BASE);
  44. local_restore_flags(flags);
  45. printk("Latch: B = 0x%02xn", latch_b_copy);
  46. } else
  47. BUG();
  48. }
  49. static int __init oldlatch_init(void)
  50. {
  51. if (machine_is_archimedes()) {
  52. oldlatch_aupdate(0xff, 0xff);
  53. /* Thats no FDC reset...*/
  54. oldlatch_bupdate(0xff, LATCHB_FDCRESET);
  55. }
  56. return 0;
  57. }
  58. __initcall(oldlatch_init);
  59. EXPORT_SYMBOL(oldlatch_aupdate);
  60. EXPORT_SYMBOL(oldlatch_bupdate);