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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/arm/mach-footbridge/cats-hw.c
  3.  *
  4.  * CATS machine fixup
  5.  *
  6.  * Copyright (C) 1998, 1999 Russell King, Phil Blundell
  7.  */
  8. #include <linux/sched.h>
  9. #include <linux/ioport.h>
  10. #include <linux/kernel.h>
  11. #include <linux/init.h>
  12. #include <asm/io.h>
  13. #include <asm/mach-types.h>
  14. #define CFG_PORT 0x370
  15. #define INDEX_PORT (CFG_PORT)
  16. #define DATA_PORT (CFG_PORT + 1)
  17. static int __init cats_hw_init(void)
  18. {
  19. if (machine_is_cats()) {
  20. /* Set Aladdin to CONFIGURE mode */
  21. outb(0x51, CFG_PORT);
  22. outb(0x23, CFG_PORT);
  23. /* Select logical device 3 */
  24. outb(0x07, INDEX_PORT);
  25. outb(0x03, DATA_PORT);
  26. /* Set parallel port to DMA channel 3, ECP+EPP1.9, 
  27.    enable EPP timeout */
  28. outb(0x74, INDEX_PORT);
  29. outb(0x03, DATA_PORT);
  30. outb(0xf0, INDEX_PORT);
  31. outb(0x0f, DATA_PORT);
  32. outb(0xf1, INDEX_PORT);
  33. outb(0x07, DATA_PORT);
  34. /* Select logical device 4 */
  35. outb(0x07, INDEX_PORT);
  36. outb(0x04, DATA_PORT);
  37. /* UART1 high speed mode */
  38. outb(0xf0, INDEX_PORT);
  39. outb(0x02, DATA_PORT);
  40. /* Select logical device 5 */
  41. outb(0x07, INDEX_PORT);
  42. outb(0x05, DATA_PORT);
  43. /* UART2 high speed mode */
  44. outb(0xf0, INDEX_PORT);
  45. outb(0x02, DATA_PORT);
  46. /* Set Aladdin to RUN mode */
  47. outb(0xbb, CFG_PORT);
  48. }
  49. return 0;
  50. }
  51. __initcall(cats_hw_init);