gpio.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /*
  2. * This program is free software; you can redistribute it and/or modify it
  3. * under the terms of the GNU General Public License as published by the
  4. * Free Software Foundation; either version 2 of the License, or (at your
  5. * option) any later version.
  6. *
  7. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
  8. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  9. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
  10. * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  11. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  12. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  13. * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  14. * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  15. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  16. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  17. *
  18. * You should have received a copy of the GNU General Public License along
  19. * with this program; if not, write to the Free Software Foundation, Inc.,
  20. * 675 Mass Ave, Cambridge, MA 02139, USA.
  21. */
  22. #include <linux/config.h>
  23. #include <linux/module.h>
  24. #include <au1000.h>
  25. #include <au1xxx_gpio.h>
  26. #define gpio1 sys
  27. #if !defined(CONFIG_SOC_AU1000)
  28. static AU1X00_GPIO2 * const gpio2 = (AU1X00_GPIO2 *)GPIO2_BASE;
  29. #define GPIO2_OUTPUT_ENABLE_MASK 0x00010000
  30. int au1xxx_gpio2_read(int signal)
  31. {
  32. signal -= 200;
  33. /* gpio2->dir &= ~(0x01 << signal); //Set GPIO to input */
  34. return ((gpio2->pinstate >> signal) & 0x01);
  35. }
  36. void au1xxx_gpio2_write(int signal, int value)
  37. {
  38. signal -= 200;
  39. gpio2->output = (GPIO2_OUTPUT_ENABLE_MASK << signal) |
  40. (value << signal);
  41. }
  42. void au1xxx_gpio2_tristate(int signal)
  43. {
  44. signal -= 200;
  45. gpio2->dir &= ~(0x01 << signal); /* Set GPIO to input */
  46. }
  47. #endif
  48. int au1xxx_gpio1_read(int signal)
  49. {
  50. /* gpio1->trioutclr |= (0x01 << signal); */
  51. return ((gpio1->pinstaterd >> signal) & 0x01);
  52. }
  53. void au1xxx_gpio1_write(int signal, int value)
  54. {
  55. if(value)
  56. gpio1->outputset = (0x01 << signal);
  57. else
  58. gpio1->outputclr = (0x01 << signal); /* Output a Zero */
  59. }
  60. void au1xxx_gpio1_tristate(int signal)
  61. {
  62. gpio1->trioutclr = (0x01 << signal); /* Tristate signal */
  63. }
  64. int au1xxx_gpio_read(int signal)
  65. {
  66. if(signal >= 200)
  67. #if defined(CONFIG_SOC_AU1000)
  68. return 0;
  69. #else
  70. return au1xxx_gpio2_read(signal);
  71. #endif
  72. else
  73. return au1xxx_gpio1_read(signal);
  74. }
  75. void au1xxx_gpio_write(int signal, int value)
  76. {
  77. if(signal >= 200)
  78. #if defined(CONFIG_SOC_AU1000)
  79. ;
  80. #else
  81. au1xxx_gpio2_write(signal, value);
  82. #endif
  83. else
  84. au1xxx_gpio1_write(signal, value);
  85. }
  86. void au1xxx_gpio_tristate(int signal)
  87. {
  88. if(signal >= 200)
  89. #if defined(CONFIG_SOC_AU1000)
  90. ;
  91. #else
  92. au1xxx_gpio2_tristate(signal);
  93. #endif
  94. else
  95. au1xxx_gpio1_tristate(signal);
  96. }
  97. void au1xxx_gpio1_set_inputs(void)
  98. {
  99. gpio1->pininputen = 0;
  100. }
  101. EXPORT_SYMBOL(au1xxx_gpio1_set_inputs);
  102. EXPORT_SYMBOL(au1xxx_gpio_tristate);
  103. EXPORT_SYMBOL(au1xxx_gpio_write);
  104. EXPORT_SYMBOL(au1xxx_gpio_read);