au1000_generic.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /*
  2. * Alchemy Semi Au1000 pcmcia driver include file
  3. *
  4. * Copyright 2001 MontaVista Software Inc.
  5. * Author: MontaVista Software, Inc.
  6. * ppopov@mvista.com or source@mvista.com
  7. *
  8. * This program is free software; you can distribute it and/or modify it
  9. * under the terms of the GNU General Public License (Version 2) as
  10. * published by the Free Software Foundation.
  11. *
  12. * This program is distributed in the hope it will be useful, but WITHOUT
  13. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  14. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  15. * for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License along
  18. * with this program; if not, write to the Free Software Foundation, Inc.,
  19. * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  20. */
  21. #ifndef __ASM_AU1000_PCMCIA_H
  22. #define __ASM_AU1000_PCMCIA_H
  23. /* include the world */
  24. #include <pcmcia/cs.h>
  25. #include <pcmcia/ss.h>
  26. #include <pcmcia/cistpl.h>
  27. #include "cs_internal.h"
  28. #define AU1000_PCMCIA_POLL_PERIOD (2*HZ)
  29. #define AU1000_PCMCIA_IO_SPEED (255)
  30. #define AU1000_PCMCIA_MEM_SPEED (300)
  31. #define AU1X_SOCK0_IO 0xF00000000ULL
  32. #define AU1X_SOCK0_PHYS_ATTR 0xF40000000ULL
  33. #define AU1X_SOCK0_PHYS_MEM 0xF80000000ULL
  34. /* pcmcia socket 1 needs external glue logic so the memory map
  35. * differs from board to board.
  36. */
  37. #if defined(CONFIG_MIPS_PB1000)
  38. #define AU1X_SOCK1_IO 0xF08000000ULL
  39. #define AU1X_SOCK1_PHYS_ATTR 0xF48000000ULL
  40. #define AU1X_SOCK1_PHYS_MEM 0xF88000000ULL
  41. #endif
  42. struct pcmcia_state {
  43. unsigned detect: 1,
  44. ready: 1,
  45. wrprot: 1,
  46. bvd1: 1,
  47. bvd2: 1,
  48. vs_3v: 1,
  49. vs_Xv: 1;
  50. };
  51. struct pcmcia_configure {
  52. unsigned sock: 8,
  53. vcc: 8,
  54. vpp: 8,
  55. output: 1,
  56. speaker: 1,
  57. reset: 1;
  58. };
  59. struct pcmcia_irqs {
  60. int sock;
  61. int irq;
  62. const char *str;
  63. };
  64. struct au1000_pcmcia_socket {
  65. struct pcmcia_socket socket;
  66. /*
  67. * Info from low level handler
  68. */
  69. struct device *dev;
  70. unsigned int nr;
  71. unsigned int irq;
  72. /*
  73. * Core PCMCIA state
  74. */
  75. struct pcmcia_low_level *ops;
  76. unsigned int status;
  77. socket_state_t cs_state;
  78. unsigned short spd_io[MAX_IO_WIN];
  79. unsigned short spd_mem[MAX_WIN];
  80. unsigned short spd_attr[MAX_WIN];
  81. struct resource res_skt;
  82. struct resource res_io;
  83. struct resource res_mem;
  84. struct resource res_attr;
  85. void * virt_io;
  86. unsigned int phys_io;
  87. unsigned int phys_attr;
  88. unsigned int phys_mem;
  89. unsigned short speed_io, speed_attr, speed_mem;
  90. unsigned int irq_state;
  91. struct timer_list poll_timer;
  92. };
  93. struct pcmcia_low_level {
  94. struct module *owner;
  95. int (*hw_init)(struct au1000_pcmcia_socket *);
  96. void (*hw_shutdown)(struct au1000_pcmcia_socket *);
  97. void (*socket_state)(struct au1000_pcmcia_socket *, struct pcmcia_state *);
  98. int (*configure_socket)(struct au1000_pcmcia_socket *, struct socket_state_t *);
  99. /*
  100. * Enable card status IRQs on (re-)initialisation. This can
  101. * be called at initialisation, power management event, or
  102. * pcmcia event.
  103. */
  104. void (*socket_init)(struct au1000_pcmcia_socket *);
  105. /*
  106. * Disable card status IRQs and PCMCIA bus on suspend.
  107. */
  108. void (*socket_suspend)(struct au1000_pcmcia_socket *);
  109. };
  110. extern int au1x_board_init(struct device *dev);
  111. #endif /* __ASM_AU1000_PCMCIA_H */