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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2. ** asm-m68k/pcmcia.c -- Amiga Linux PCMCIA support
  3. **                      most information was found by disassembling card.resource
  4. **                      I'm still looking for an official doc !
  5. **
  6. ** Copyright 1997 by Alain Malek
  7. **
  8. ** This file is subject to the terms and conditions of the GNU General Public
  9. ** License.  See the file COPYING in the main directory of this archive
  10. ** for more details.
  11. **
  12. ** Created: 12/10/97 by Alain Malek
  13. */
  14. #include <linux/types.h>
  15. #include <linux/sched.h>
  16. #include <linux/timer.h>
  17. #include <asm/amigayle.h>
  18. #include <asm/amipcmcia.h>
  19. /* gayle config byte for program voltage and access speed */
  20. static unsigned char cfg_byte = GAYLE_CFG_0V|GAYLE_CFG_150NS;
  21. void pcmcia_reset(void)
  22. {
  23. unsigned long reset_start_time = jiffies;
  24. unsigned char b;
  25. gayle_reset = 0x00;
  26. while (time_before(jiffies, reset_start_time + 1*HZ/100));
  27. b = gayle_reset;
  28. }
  29. /* copy a tuple, including tuple header. return nb bytes copied */
  30. /* be carefull as this may trigger a GAYLE_IRQ_WR interrupt ! */
  31. int pcmcia_copy_tuple(unsigned char tuple_id, void *tuple, int max_len)
  32. {
  33. unsigned char id, *dest;
  34. int cnt, pos, len;
  35. dest = tuple;
  36. pos = 0;
  37. id = gayle_attribute[pos];
  38. while((id != CISTPL_END) && (pos < 0x10000)) {
  39. len = (int)gayle_attribute[pos+2] + 2;
  40. if (id == tuple_id) {
  41. len = (len > max_len)?max_len:len;
  42. for (cnt = 0; cnt < len; cnt++) {
  43. *dest++ = gayle_attribute[pos+(cnt<<1)];
  44. }
  45. return len;
  46. }
  47. pos += len<<1;
  48. id = gayle_attribute[pos];
  49. }
  50. return 0;
  51. }
  52. void pcmcia_program_voltage(int voltage)
  53. {
  54. unsigned char v;
  55. switch (voltage) {
  56. case PCMCIA_0V:
  57. v = GAYLE_CFG_0V;
  58. break;
  59. case PCMCIA_5V:
  60. v = GAYLE_CFG_5V;
  61. break;
  62. case PCMCIA_12V:
  63. v = GAYLE_CFG_12V;
  64. break;
  65. default:
  66. v = GAYLE_CFG_0V;
  67. }
  68. cfg_byte = (cfg_byte & 0xfc) | v;
  69. gayle.config = cfg_byte;
  70. }
  71. void pcmcia_access_speed(int speed)
  72. {
  73. unsigned char s;
  74. if (speed <= PCMCIA_SPEED_100NS)
  75. s = GAYLE_CFG_100NS;
  76. else if (speed <= PCMCIA_SPEED_150NS)
  77. s = GAYLE_CFG_150NS;
  78. else if (speed <= PCMCIA_SPEED_250NS)
  79. s = GAYLE_CFG_250NS;
  80. else
  81. s = GAYLE_CFG_720NS;
  82. cfg_byte = (cfg_byte & 0xf3) | s;
  83. gayle.config = cfg_byte;
  84. }
  85. void pcmcia_write_enable(void)
  86. {
  87. gayle.cardstatus = GAYLE_CS_WR|GAYLE_CS_DA;
  88. }
  89. void pcmcia_write_disable(void)
  90. {
  91. gayle.cardstatus = 0;
  92. }