cmd.h 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. * Atheros AR9170 driver
  3. *
  4. * Basic HW register/memory/command access functions
  5. *
  6. * Copyright 2008, Johannes Berg <johannes@sipsolutions.net>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; see the file COPYING. If not, see
  20. * http://www.gnu.org/licenses/.
  21. *
  22. * This file incorporates work covered by the following copyright and
  23. * permission notice:
  24. * Copyright (c) 2007-2008 Atheros Communications, Inc.
  25. *
  26. * Permission to use, copy, modify, and/or distribute this software for any
  27. * purpose with or without fee is hereby granted, provided that the above
  28. * copyright notice and this permission notice appear in all copies.
  29. *
  30. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  31. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  32. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  33. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  34. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  35. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  36. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  37. */
  38. #ifndef __CMD_H
  39. #define __CMD_H
  40. #include "ar9170.h"
  41. /* basic HW access */
  42. int ar9170_write_mem(struct ar9170 *ar, const __le32 *data, size_t len);
  43. int ar9170_write_reg(struct ar9170 *ar, const u32 reg, const u32 val);
  44. int ar9170_read_reg(struct ar9170 *ar, u32 reg, u32 *val);
  45. int ar9170_echo_test(struct ar9170 *ar, u32 v);
  46. /*
  47. * Macros to facilitate writing multiple registers in a single
  48. * write-combining USB command. Note that when the first group
  49. * fails the whole thing will fail without any others attempted,
  50. * but you won't know which write in the group failed.
  51. */
  52. #define ar9170_regwrite_begin(ar) \
  53. do { \
  54. int __nreg = 0, __err = 0; \
  55. struct ar9170 *__ar = ar;
  56. #define ar9170_regwrite(r, v) do { \
  57. __ar->cmdbuf[2 * __nreg + 1] = cpu_to_le32(r); \
  58. __ar->cmdbuf[2 * __nreg + 2] = cpu_to_le32(v); \
  59. __nreg++; \
  60. if ((__nreg >= PAYLOAD_MAX/2)) { \
  61. if (IS_ACCEPTING_CMD(__ar)) \
  62. __err = ar->exec_cmd(__ar, AR9170_CMD_WREG, \
  63. 8 * __nreg, \
  64. (u8 *) &__ar->cmdbuf[1], \
  65. 0, NULL); \
  66. __nreg = 0; \
  67. if (__err) \
  68. goto __regwrite_out; \
  69. } \
  70. } while (0)
  71. #define ar9170_regwrite_finish() \
  72. __regwrite_out : \
  73. if (__nreg) { \
  74. if (IS_ACCEPTING_CMD(__ar)) \
  75. __err = ar->exec_cmd(__ar, AR9170_CMD_WREG, \
  76. 8 * __nreg, \
  77. (u8 *) &__ar->cmdbuf[1], \
  78. 0, NULL); \
  79. __nreg = 0; \
  80. }
  81. #define ar9170_regwrite_result() \
  82. __err; \
  83. } while (0);
  84. #endif /* __CMD_H */